Skip to content

Instantly share code, notes, and snippets.

@VioletVivirand
Last active August 11, 2016 05:14
Show Gist options
  • Save VioletVivirand/f39da85441b08e218422587d88cf86ae to your computer and use it in GitHub Desktop.
Save VioletVivirand/f39da85441b08e218422587d88cf86ae to your computer and use it in GitHub Desktop.
license: gpl-3.0

Built with blockbuilder.org

This is my first D3 Block, and I'm still working on it, try hard to learn. :)

How to make the TopoJSON file of Kaohsiung

Download from here, extract them, and use the commands below:

$ ogr2ogr -f GeoJSON -where "C_Name IN ('高雄市')" municipality.json County_MOI_1041215.shp
$ ogr2ogr -f GeoJSON -where "C_Name IN ('高雄市')" town.json Town_MOI_1041215.shp
$ topojson -o kh.json --id-property OBJECTID --properties name=NAME --shapefile-encoding big5 municipality.json town.json
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"></script>
<style>
/* CSS goes here. */
.subunit {
fill: #B4E2F2;
/*fill: #000000;*/
}
.subunit:hover {
fill: #70E15E;
}
.place-label {
font-size: 4pt;
/*color: #FFFFFF;*/
}
.place-marker {
fill: brown;
/*stroke: black;*/
/*stroke-width: 1.5px;*/
}
.place-tip {
line-height: 1;
font-size: 8pt;
/*font-weight: bold;*/
padding: 12px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
border-radius: 2px;
}
/* Creates a small triangle extender for the tooltip */
.place-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(0, 0, 0, 0.8);
content: "\25BC";
position: absolute;
text-align: center;
}
/* Style northward tooltips differently */
.place-tip.n:after {
margin: -1px 0 0 0;
top: 100%;
left: 0;
}
</style>
</head>
<body>
<script>
/* JavaScript goes here. */
var width = 960,
height = 720;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("kh.json", function(error, kh) {
if (error) return console.error(error);
// // 測試
// console.log("topojson.feature(kh, kh.objects.town).features");
// console.log(topojson.feature(kh, kh.objects.town).features);
var projection = d3.geo.mercator()
.center([121, 24])
.scale(30000)
.translate([500, -250]);
var path = d3.geo.path()
.projection(projection);
var circle_radius = 2;
// // 畫出高雄的輪廓
// var subunits = topojson.feature(kh, kh.objects.municipality);
// svg.append("path")
// .datum(subunits)
// .attr("d", path);
// 加上 Hover 時要顯示的資訊
var tip = d3.tip()
.attr('class', 'place-tip')
.offset([-10, 0])
.html(function(d) {
return "<span>" + d.properties.name + "</span>";
})
svg.call(tip);
// 畫出高雄各區的輪廓
svg.selectAll(".subunit")
.data(topojson.feature(kh, kh.objects.town).features)
.enter().append("path")
.attr("class", function(d) {
return "subunit " + d.id;
})
.attr("d", path)
.on('mouseover', tip.show)
.on('mouseout', tip.hide);
// 加上各區的 Mark
svg.selectAll(".place-marker")
.data(topojson.feature(kh, kh.objects.town).features)
.enter().append("circle")
.attr("class", function(d) {
return "place-marker " + d.properties.name;
})
.attr("transform", function(d) { // 其實原本位移應該是用 cx, cy,這裡算偷懶?
var centroid = path.centroid(d),
x = centroid[0],
y = centroid[1];
return "translate(" + x + "," + y + ")";
})
.attr("r", circle_radius);
// 加上各區的文字
svg.selectAll(".place-label")
.data(topojson.feature(kh, kh.objects.town).features)
.enter().append("text")
.attr("class", "place-label")
.attr("transform", function(d) {
var centroid = path.centroid(d),
x = centroid[0],
y = centroid[1];
return "translate(" + (x + circle_radius * 2) + "," + y + ")";
})
.attr("dy", ".35em")
.text(function(d) {
return d.properties.name;
});
});
</script>
</body>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"municipality":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"name":"高雄市"},"id":27,"arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35]]}]},"town":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"name":"旗津區"},"id":948,"arcs":[[36,37,38,39,31,40,33,41,35,42,1,43]]},{"type":"Polygon","properties":{"name":"小港區"},"id":949,"arcs":[[44,45,46,47,25,48,49,28,50,30,-40]]},{"type":"Polygon","properties":{"name":"鹽埕區"},"id":183,"arcs":[[51,52,53,54]]},{"type":"Polygon","properties":{"name":"三民區"},"id":184,"arcs":[[55,56,57,58,59,60,-55,61,62]]},{"type":"Polygon","properties":{"name":"新興區"},"id":185,"arcs":[[63,64,-60]]},{"type":"Polygon","properties":{"name":"前金區"},"id":186,"arcs":[[65,-52,-61,-65]]},{"type":"Polygon","properties":{"name":"苓雅區"},"id":187,"arcs":[[66,67,68,-53,-66,-64,-59]]},{"type":"Polygon","properties":{"name":"前鎮區"},"id":188,"arcs":[[69,-45,-39,70,-37,71,-68]]},{"type":"Polygon","properties":{"name":"鼓山區"},"id":242,"arcs":[[-62,-54,-69,-72,-44,2,72]]},{"type":"Polygon","properties":{"name":"左營區"},"id":243,"arcs":[[73,-63,-73,3,74]]},{"type":"Polygon","properties":{"name":"楠梓區"},"id":244,"arcs":[[75,76,77,-75,4,78,79]]},{"type":"Polygon","properties":{"name":"鳳山區"},"id":247,"arcs":[[80,-46,-70,-67,-58,81]]},{"type":"Polygon","properties":{"name":"大寮區"},"id":248,"arcs":[[82,-47,-81,83,84,23]]},{"type":"Polygon","properties":{"name":"大樹區"},"id":249,"arcs":[[22,-85,85,86,87,88,89]]},{"type":"Polygon","properties":{"name":"大社區"},"id":250,"arcs":[[-88,90,-77,91]]},{"type":"Polygon","properties":{"name":"仁武區"},"id":251,"arcs":[[-87,92,-56,-74,-78,-91]]},{"type":"Polygon","properties":{"name":"鳥松區"},"id":252,"arcs":[[-86,-84,-82,-57,-93]]},{"type":"Polygon","properties":{"name":"岡山區"},"id":253,"arcs":[[93,94,95,96,97,98,99,100]]},{"type":"Polygon","properties":{"name":"橋頭區"},"id":254,"arcs":[[101,-80,102,-95]]},{"type":"Polygon","properties":{"name":"燕巢區"},"id":255,"arcs":[[103,-89,-92,-76,-102,-94,104]]},{"type":"Polygon","properties":{"name":"田寮區"},"id":256,"arcs":[[105,106,-105,-101,107,12]]},{"type":"Polygon","properties":{"name":"阿蓮區"},"id":257,"arcs":[[-108,-100,108,11]]},{"type":"Polygon","properties":{"name":"路竹區"},"id":258,"arcs":[[-109,-99,109,110,111,10]]},{"type":"Polygon","properties":{"name":"湖內區"},"id":259,"arcs":[[-112,112,9]]},{"type":"Polygon","properties":{"name":"旗山區"},"id":260,"arcs":[[113,114,21,-90,-104,-107,115]]},{"type":"Polygon","properties":{"name":"美濃區"},"id":261,"arcs":[[116,20,-115,117]]},{"type":"Polygon","properties":{"name":"六龜區"},"id":262,"arcs":[[118,19,-117,119,120,121,122,123]]},{"type":"Polygon","properties":{"name":"甲仙區"},"id":263,"arcs":[[124,125,-123,126,-121,127,15]]},{"type":"Polygon","properties":{"name":"杉林區"},"id":264,"arcs":[[-120,-118,-114,128,14,-128]]},{"type":"Polygon","properties":{"name":"內門區"},"id":265,"arcs":[[-116,-106,13,-129]]},{"type":"Polygon","properties":{"name":"茂林區"},"id":266,"arcs":[[18,-119,129]]},{"type":"MultiPolygon","properties":{"name":"桃源區"},"id":267,"arcs":[[[-127,-122]],[[-130,-124,-126,130,17]]]},{"type":"Polygon","properties":{"name":"那瑪夏區"},"id":268,"arcs":[[-125,16,-131]]},{"type":"Polygon","properties":{"name":"林園區"},"id":344,"arcs":[[24,-48,-83]]},{"type":"Polygon","properties":{"name":"茄萣區"},"id":345,"arcs":[[-111,131,8,-113]]},{"type":"Polygon","properties":{"name":"永安區"},"id":346,"arcs":[[-98,132,7,-132,-110]]},{"type":"Polygon","properties":{"name":"彌陀區"},"id":347,"arcs":[[-97,133,6,-133]]},{"type":"Polygon","properties":{"name":"梓官區"},"id":348,"arcs":[[-103,-79,5,-134,-96]]}]}},"arcs":[[[1472,859],[-2,9],[0,1],[-4,21]],[[1466,890],[-195,200],[-15,2],[-24,27],[-46,36],[-61,64],[-20,20],[-10,14],[-7,15],[-14,11],[-11,13],[-9,19],[-14,9],[-15,7],[-6,3],[-4,-4],[-4,-1],[-1,3],[3,11],[0,8],[2,7],[3,8],[6,6],[4,2],[8,7],[8,22],[-1,6],[1,5],[-2,6],[-2,2],[-1,1],[-3,1],[-3,2],[-4,2],[-3,0],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,1],[0,2],[1,1],[1,0],[1,1],[0,1],[0,1],[0,2],[0,1],[0,4],[0,2],[0,1],[-1,1],[-2,1],[-1,1],[-2,2],[-1,1],[-2,2],[-1,1],[-1,1],[0,1],[-1,1],[-3,1],[-5,3],[-1,0],[-2,1],[-2,1],[-2,1],[-4,2],[-4,3],[-1,0],[-3,2],[-1,0],[-3,2],[-3,1],[-2,1],[0,1],[-1,0],[-2,1],[-1,1],[-1,1],[-3,1],[-2,1],[-1,1],[-1,0],[0,1],[-1,0],[-3,2],[-1,1],[-2,1],[-2,1],[-1,0],[-2,1],[-3,1],[-3,2],[-1,0],[-2,1],[0,1],[0,1],[4,17]],[[936,1506],[0,1],[3,11],[-1,1],[1,1],[15,6],[9,4],[24,10],[6,3],[5,2],[4,2],[2,0],[2,0],[1,0],[5,2],[2,1],[0,1],[0,2],[0,2],[0,1],[0,2],[1,2],[0,2],[0,2],[0,4],[0,4],[0,3],[0,1],[-1,3],[-1,5],[0,1],[-1,2],[-2,2],[-2,2],[-2,1],[-2,1],[-1,2],[-2,2],[-2,5],[-4,5],[0,1],[0,1],[1,0],[0,1],[0,2],[-2,3],[-2,3],[-4,7],[-3,-1],[-1,0],[-2,-1],[-2,1],[-1,1],[-1,1],[0,1],[-1,1],[1,0],[1,-1],[1,0],[1,-2],[1,0],[1,1],[0,1],[-7,3],[-2,5],[-2,5],[0,3],[0,1],[0,1],[-1,0],[-1,1],[-1,2],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[-3,2],[-4,2],[-2,1],[-1,0],[-3,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,2],[-2,2],[-1,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,2],[-1,1],[0,2],[-1,2],[-1,1],[-1,2],[0,2],[-1,1],[-2,5],[0,1],[0,3],[-1,2],[0,1],[0,1],[0,1],[-2,3],[-1,3],[-1,3],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[1,1],[0,1],[0,1],[-1,1],[0,2],[-2,2],[-1,2],[-2,2],[-1,3],[-2,2],[-1,2],[-1,2],[-1,1],[-1,1],[-1,1],[-2,0],[0,1],[0,2],[-1,0],[-1,1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,1],[1,1],[0,1],[0,1],[0,2],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[0,1],[1,0],[-1,2],[-1,4],[0,2],[-1,1],[1,2],[0,1],[-2,2],[0,1],[0,3],[0,2],[0,2],[1,1],[0,1],[2,0],[-1,1],[0,1],[-1,1],[-1,1],[0,2],[0,2],[-1,1],[0,3],[0,1],[-1,1],[-6,5],[-2,5],[-2,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,3],[0,3],[0,2],[1,1],[0,1],[1,1],[1,1],[2,1],[1,2],[2,2],[1,4],[0,2],[0,3],[0,1],[-1,2],[0,2],[0,1],[0,1],[0,2],[1,2],[1,3],[-1,2],[-3,6],[0,5],[1,1],[-1,1],[-1,1],[0,1],[0,1],[1,1],[0,2],[0,3],[1,1],[0,1],[1,1],[0,1],[1,3],[0,1],[0,2],[0,1],[1,1],[0,2],[1,2],[0,2],[1,2],[0,1],[0,2],[1,2],[2,4],[2,2],[1,1],[-2,5],[-1,8],[0,1],[5,5],[1,2],[2,4],[3,3],[5,6],[1,1],[3,10],[4,3],[1,1],[1,0],[2,1],[2,1],[2,1],[1,1],[3,1],[5,5],[1,0],[6,5],[1,2],[4,5],[3,4],[0,1],[0,1],[1,1],[1,1],[1,2],[2,0],[3,1],[4,1],[4,0]],[[947,1997],[3,0],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,1],[0,1],[0,2],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,1],[1,1],[0,1],[0,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,2],[2,1],[1,0],[2,1],[1,1],[1,0],[1,1],[1,0],[1,2],[0,1],[1,1],[1,1],[1,1],[1,1],[2,1],[1,2],[1,1],[1,1],[1,1],[1,1],[1,1],[2,1],[0,1],[1,1],[1,1],[1,1],[1,0],[2,1],[2,1],[1,1],[2,0],[5,2],[1,2],[1,2],[1,1],[2,3],[2,3],[0,2],[0,1],[1,2],[0,1],[0,1],[1,2],[0,1],[0,2],[0,1],[0,2],[0,2],[1,4],[-1,2],[0,3],[0,4],[1,5],[-1,1],[0,1],[-1,2],[-1,3],[0,1],[0,2],[0,3],[0,4],[0,3],[1,2],[0,2],[0,4],[0,2],[-1,4],[-1,5],[-1,4],[0,2],[0,1],[-2,2],[-1,2],[-4,3],[-4,8],[1,11],[2,12],[-1,7],[-4,11],[-2,9],[-11,3],[-1,0],[-8,0],[-5,0],[-6,0],[-6,0],[-11,0],[-6,0],[0,11],[0,32]],[[954,2244],[0,19],[2,1],[4,1],[4,2],[4,1],[5,2],[1,1],[3,2],[2,-1],[1,-1],[3,-1],[2,0],[2,0],[1,0],[1,1],[3,2],[2,2],[1,2],[2,2],[3,4],[1,3],[1,4],[-1,0],[-1,3],[0,1],[0,2],[-1,2],[0,3],[-1,1],[0,1],[0,1],[-1,1],[0,2],[-1,2],[-1,3],[0,1],[0,3],[-1,4],[0,2],[-1,2],[0,1],[-2,3],[0,1],[-1,3],[-2,4],[-2,4],[-1,4],[-2,4],[-2,3],[-2,5],[-2,3],[-1,2],[0,2],[-2,4],[-2,3],[-2,4],[-1,3],[-2,4],[-1,3],[-2,4],[-1,2],[0,1],[-2,5],[-1,1],[-1,2],[-2,3],[-3,7],[0,1],[-6,7],[-1,4],[-1,0],[-1,2],[-1,1],[-1,2],[-2,2],[-1,2],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,-1],[-2,6],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-2,0],[-2,0],[1,1],[1,0],[1,1],[2,0],[2,1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,2],[-1,2],[0,3],[-1,3],[-2,5],[-1,3],[0,2],[0,1],[-1,2],[0,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[2,0],[-2,11],[-3,1]],[[933,2492],[-5,4],[-1,1],[-1,-1],[-2,0],[-1,1],[0,1],[-1,0],[-1,2],[-2,1],[-1,1],[0,1],[-1,1],[-1,2],[0,2],[-1,3],[-1,3],[-2,3],[-1,3],[-2,3],[0,1],[-1,2],[-1,3],[-1,2],[-2,4],[-1,3],[-1,1],[-1,1],[0,1],[-1,1],[-2,2],[-2,2],[-2,1],[-1,1],[-10,-2],[-6,-2],[-4,1],[-6,2],[-7,2],[0,1],[-5,12],[0,1],[-1,1],[0,1],[1,3],[11,7],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-2,3],[-2,2],[-2,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,2],[-1,1],[-1,3],[-1,2],[-1,1],[-1,1],[-1,2],[-1,0],[0,1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,2],[-2,3],[-2,3],[-1,2],[0,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,2],[-1,1],[0,1],[-1,2],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-2,2],[-1,2],[-1,2],[-1,2],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,2],[-2,4],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,2],[-1,1],[-2,6],[-2,2],[0,1],[-1,2],[-2,3],[-4,7],[-2,4],[-2,4],[-1,1],[0,2],[-1,2],[0,1],[0,1],[-1,2],[-1,2],[-1,0],[0,2],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,2],[-1,2],[-1,0]],[[783,2745],[0,1],[-1,2],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-2,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[1,1],[-1,1],[-1,1],[-1,0],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[-2,2],[-1,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[-1,0],[-2,4],[-1,2],[-1,2],[-1,1],[0,1],[-1,3],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[1,0],[0,1],[-1,2],[0,-1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[-1,1],[1,1],[1,0],[1,1],[0,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[1,2],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,0],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[0,2],[-10,12],[-4,6],[-1,2],[-3,9],[-2,2],[-2,1],[-1,1],[-1,1],[-1,0],[-1,0],[-9,-3],[-2,0],[-1,-1],[-11,6],[-8,2],[0,1],[-3,9],[-1,2],[7,2],[8,2],[8,3],[2,1],[-1,0],[-6,-2],[-1,0],[1,1],[0,2],[1,1],[0,2],[1,1],[0,2],[0,1],[0,3],[1,3],[0,4],[-2,3],[-1,7],[-1,5],[-1,1],[0,1],[-1,2],[-13,18],[-5,7],[-10,25],[-2,4],[-3,7],[-1,3],[-2,4],[-15,21],[-9,18],[0,1],[-2,4],[-1,1],[-1,1],[-1,3],[-1,2],[-2,2],[-2,3],[-1,2],[0,2],[-1,2],[0,2],[-1,1],[-1,2],[-1,2],[-2,3],[-1,2],[-2,2],[-1,3],[-2,3],[-2,3],[-2,3],[0,1],[-3,4],[-3,5],[-3,4],[-1,3],[-1,2],[-2,5],[-4,6],[-1,2],[-1,1],[-1,1],[-2,12],[-16,25],[-8,13],[-1,7],[-1,3],[-1,3],[-1,3],[-1,2],[0,1],[-10,13],[-1,10],[-1,2],[-3,5],[-14,24],[-3,9],[0,1],[-2,1],[-1,4],[-2,3],[-2,4],[-2,4],[-1,2],[0,1],[-1,2],[-1,1],[-1,2],[-1,3],[-2,3],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,1],[0,1]],[[467,3339],[-1,1],[0,1],[1,1],[0,1],[-1,3],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-2,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-2,1],[-1,1],[0,1],[-1,1],[-2,2],[-1,3],[-3,3],[-3,3],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-1,0],[-1,0],[-2,0],[-6,-1],[-8,-1],[-8,-2],[-6,-1],[-17,-2],[-2,-1],[-2,0],[-6,-1],[-2,0],[-5,-1],[-2,0],[-9,-1],[-1,0],[-17,-2],[-3,0],[-10,-2],[-1,0],[-9,-1],[-6,-1],[-9,-2],[-12,-1],[-11,-2],[-10,-1],[-4,1],[-9,4],[-1,0],[-3,1],[-7,3],[-2,1],[-7,3],[-4,2],[-8,3],[-7,3],[-1,0],[-2,4],[-2,3],[-2,5],[-3,5],[-4,6],[-5,8],[-6,10],[-7,13],[-5,8],[1,8],[1,10],[2,-1],[177,48],[2,6],[7,2],[1,0],[4,1],[0,2],[0,1],[0,2],[1,1],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[-1,2],[-1,1],[-1,1],[0,1],[-1,1],[-1,3],[-2,3],[-1,1],[-1,2],[0,1],[1,0],[-1,2],[-1,1],[-1,3],[-1,3],[-6,-1],[-6,-1],[-4,9],[-14,38],[-36,85],[1,0],[8,2],[1,0],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[0,1],[-1,2],[-2,4],[-1,1],[-1,1],[0,1],[-1,2],[-1,3],[-2,3],[-2,3],[-2,5],[-3,4],[-3,6],[-1,2],[-1,1],[-2,0],[-2,-1],[-2,0],[-1,0],[-2,1],[-2,0],[1,2],[1,0],[1,2],[1,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-2,0],[-6,-2],[-7,-2],[-11,-3],[-7,-2],[-8,-2],[-9,-3],[-7,-2],[-9,-2],[-8,-3],[-9,-2],[-1,-1],[-1,0],[-1,0],[0,-1],[-3,0],[-1,-1],[-1,0],[-2,0],[0,-1],[-2,-1],[-1,0],[0,1],[0,1],[-1,1],[2,0],[3,1],[2,0],[4,2],[0,-1],[1,0],[1,0],[5,2],[7,2],[7,2],[10,3],[1,0],[0,1],[3,0],[4,1],[5,1],[6,2],[12,3],[6,2],[0,1],[4,1],[0,-1],[13,4],[-3,2],[0,1],[-1,0],[-1,0],[-1,0],[-3,-1],[-2,0],[-3,-1],[-2,0],[-1,0],[-1,0],[-1,1],[-2,2],[-3,2],[-2,2],[-2,2],[-3,2],[-2,2],[-3,3],[-3,2],[-2,2],[-3,3],[-2,1],[-1,1],[-9,8],[-1,0],[-1,1],[-1,2],[0,1],[1,1],[2,1],[4,2],[5,4],[6,3],[6,3],[3,2],[0,1]],[[236,3804],[0,1],[-2,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,2],[0,2],[-1,3],[-2,2],[0,2],[-1,3],[0,2],[-1,1],[-1,1],[-18,35],[-5,-2],[-9,-4],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[4,1],[4,2],[5,3],[7,3],[1,0],[-1,0],[-1,8],[-4,6],[-10,6],[-25,-4],[-1,3],[-1,1],[32,6],[15,3],[0,1],[1,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,0],[-2,0],[-6,-1],[-8,0],[-3,0],[-1,0],[-5,2],[-6,2],[-4,1],[-2,1],[0,1],[-1,1],[7,31],[-1,0],[-1,1],[1,0],[1,1],[1,1],[5,1],[7,1],[3,1],[4,1],[5,1],[1,1],[3,1],[-1,1],[0,1],[0,2],[0,2],[-1,1],[-1,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,2],[0,1],[-3,6],[0,1],[-1,0],[-3,0],[-1,0],[-1,0],[1,1],[1,0],[2,0],[1,0],[0,1],[-8,19],[-2,0],[-1,0],[2,1],[1,0],[-12,31],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,2],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,1],[1,0],[1,1],[1,0],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[-1,2],[-1,1],[-1,0],[0,1],[1,0],[-1,2],[-1,1],[-2,2],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,2],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[0,2],[-1,1],[-1,2],[-2,3],[-1,1],[0,2],[-1,1],[-1,2],[-1,1],[0,1],[-4,5],[0,1],[-1,2],[-1,6],[-2,3],[0,2],[-2,2],[-2,3],[-1,2],[-1,2],[-2,3],[-1,2],[0,1],[-2,3],[-1,2],[-2,5],[-1,1],[-1,2],[-1,1],[-2,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[-1,0],[0,2],[-3,6],[-2,2],[0,2],[-1,1],[-2,2],[-1,3],[-1,2],[-2,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,3],[-1,2],[0,1],[0,1],[-1,3],[-1,1],[-1,1],[-2,4],[-1,3],[-1,3],[-1,1],[-1,2],[-1,2],[-3,3],[-3,3],[-1,3],[-2,4],[-4,5],[-6,12],[0,2],[-3,8],[-1,3],[0,2],[-1,3],[-1,3],[-1,1],[-2,3],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,2],[-1,1],[0,3],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-1,2],[0,2],[-1,3],[0,2],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,2],[-1,2],[-1,1],[-1,2],[0,2],[-1,2],[-1,1],[0,2],[-1,2],[0,2],[-1,1],[0,1],[-1,2],[-1,3],[-2,3],[-1,3],[-1,2],[0,1],[-1,2],[-1,2],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[-1,0],[-1,2],[-1,2],[-2,2],[-1,3],[-1,3],[-1,3],[-2,4],[-1,2],[-1,2],[-2,4],[-1,2],[-1,2],[0,1],[0,1],[1,2],[0,1],[0,2],[1,2],[0,2],[-1,4],[4,0],[6,2],[1,0],[5,2],[7,2],[1,1],[4,2],[4,4],[3,2],[4,3],[5,5],[3,3],[6,4],[5,4],[2,1],[5,4],[3,2],[3,2],[6,3],[5,3],[6,4],[8,4],[9,5],[7,4],[1,0],[9,6],[7,3],[6,4],[7,3],[6,2],[1,1]],[[150,4503],[2,0],[5,2],[4,1],[5,1],[4,0],[5,0],[5,-1],[5,-1],[2,0],[2,0],[3,3],[4,2],[3,2],[5,-1],[5,-1],[4,-1],[8,-3],[8,-3],[8,-5],[5,-2],[9,-5],[11,-7],[9,-4],[7,-4],[7,-4],[7,-4],[7,-4],[5,-3],[6,-3],[7,-3],[7,-3],[11,-3],[1,0],[2,-1],[3,-1],[3,0],[8,0],[7,0],[6,1],[6,1],[6,1],[5,3],[3,-2],[5,-5],[10,-8],[5,-4],[6,-5],[5,-4],[7,-4],[6,-4],[7,-3],[6,-3],[5,-3],[7,-3],[7,-2],[6,-1],[1,0],[6,-2],[8,-1],[7,-1],[8,-1],[6,0],[4,0],[8,0],[5,0],[1,0],[2,1],[3,0],[2,1],[2,2],[6,4],[4,3],[1,0],[0,1],[5,3],[2,2],[5,5],[3,3],[2,2],[2,3],[3,2],[4,6],[5,5],[4,5],[5,5],[3,4],[1,1],[1,1],[3,3],[2,1],[4,3],[2,1],[5,3],[2,1],[4,1],[2,0],[5,1],[3,0],[7,0],[5,-1],[3,-1],[4,-1],[1,0],[1,-1],[5,-2],[2,-1],[3,-3],[1,-2],[2,-4],[1,-2],[0,-2],[-1,-2],[0,-2],[0,-3],[-1,-2],[-1,-6],[0,-1],[0,-5],[0,-2],[-1,-4],[0,-2],[0,-4],[0,-6],[0,-2],[0,-4],[0,-2],[1,-4],[0,-6],[1,-6],[1,-5],[1,-2],[1,-4],[1,-2],[1,-4],[1,-2],[2,-3],[2,-3],[2,-2],[2,-2],[1,-2],[1,-1],[1,0],[1,0],[4,0],[2,-1],[5,0],[3,0],[5,-1],[3,0],[5,-1],[3,0],[4,0],[6,-1],[4,-1],[5,-1],[2,-1],[5,-1],[2,0],[3,-1],[2,0],[3,-1],[6,0],[2,-1],[5,0],[3,-1],[5,-1],[4,-1],[8,-2],[7,-2],[5,-1],[2,-1],[3,-3],[2,-1],[6,-5],[6,-5],[5,-4],[4,-3],[2,-3],[4,-4],[3,-3],[3,-2],[3,-4],[3,-4],[2,-2],[2,-4],[1,-2],[2,-2],[1,-1],[3,-2],[6,-4],[4,-3],[5,-3],[5,-4],[5,-3],[6,-3],[1,0],[4,-3],[6,-3],[6,-3],[6,-2],[6,-3],[6,-2],[1,0],[5,-1],[7,-2],[6,0],[7,-1],[4,0],[2,0],[3,1],[3,1],[5,1],[3,2],[5,2],[2,1],[3,2],[2,2],[1,1]],[[962,4254],[1,2],[1,3],[0,3],[0,2],[-1,3],[-1,3],[-3,3],[-1,2],[-5,3],[-5,5],[-1,2],[-3,2],[-1,2],[-2,2],[-1,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[1,1],[0,1],[1,2],[2,3],[2,3],[1,2],[3,2],[1,1],[1,1],[2,1],[3,1],[2,0],[3,1],[2,0],[5,0],[2,0],[4,0],[3,-1],[4,-1],[3,-1],[5,-2],[5,-3],[4,-2],[6,-3],[6,-3],[7,-4],[3,-1],[3,-1],[4,-2],[2,-1],[4,-1],[3,-1],[4,-1],[2,-1],[5,-2],[2,-1],[2,-1],[3,-1],[2,-1],[3,-1],[1,-1],[3,-2],[3,-2],[2,-1],[5,-3],[4,-2],[5,-3],[2,-1],[3,-1],[4,-1],[5,-2],[5,-2],[2,0],[4,-2],[2,-1],[5,-2],[2,0],[4,-2],[3,-1],[5,-1],[2,0],[6,0],[2,0],[4,0],[3,0],[5,1],[3,0],[4,0],[3,0],[4,1],[1,0],[-1,2],[-2,3],[1,1],[1,0],[5,0],[2,0],[5,0],[2,0],[5,1]],[[1184,4263],[2,0],[4,0],[3,1],[6,0],[1,1],[0,1],[0,3],[0,3],[-1,4],[-1,2],[-1,4],[0,1],[-1,1],[-1,2],[-1,2],[-2,5],[-2,4],[-1,2],[-2,4],[-2,5],[-1,1],[-2,5],[-1,3],[-1,3],[-1,4],[0,2],[0,5],[-1,5],[1,4],[0,1],[3,4],[1,1],[4,1],[2,1],[5,1],[2,0],[5,0],[2,1],[5,-1],[2,0],[7,0],[5,0],[6,0],[4,0],[7,-1],[4,0],[2,0],[4,0],[3,0],[5,0],[2,0],[7,-1],[6,-2],[6,-1],[6,-2],[3,0],[10,-2],[6,-1],[7,-1],[6,-1],[8,-2],[6,-1],[8,-1],[10,-1],[9,-2],[8,-2],[10,-3],[6,-1],[7,-2],[6,-1],[4,-1],[5,-2],[7,-2],[6,-2],[7,-2],[8,-2],[8,-1],[8,-1],[6,-1],[7,-1],[6,-1],[6,0],[7,0],[7,0],[9,0],[8,0],[6,1],[7,-1],[3,1],[2,0],[2,0],[1,0],[3,0],[4,0],[5,1],[1,0],[4,-1],[5,-1],[6,0],[5,-1],[3,-1],[7,-1],[7,-1],[7,0],[7,-1],[7,-1],[6,-2],[5,-2],[7,-3],[2,-2],[5,-3],[2,-2],[2,-1],[2,-1],[0,-1],[1,-2],[2,-1],[0,-1],[1,-2],[3,-3],[4,-5],[2,-3],[2,-3],[2,-1],[3,-3],[2,-2],[3,-2],[2,-2],[3,-1],[1,0],[1,0],[2,0],[3,0],[2,1],[3,2],[2,1],[3,2],[1,2],[2,3],[1,2],[2,3],[2,1],[3,5],[3,2],[1,3],[2,2],[4,4],[2,2],[2,1],[3,3],[1,1],[2,3],[1,2],[2,3],[0,1],[1,2],[0,1],[1,1],[2,1],[1,0],[2,0],[2,0],[2,1],[2,-1],[2,-1],[4,-3],[5,-4],[4,-3],[1,-1],[3,-3],[1,-1],[3,-3],[0,-2],[1,-1],[0,-1],[1,-1],[2,-3],[3,-5],[1,-3],[2,-5],[3,-5],[1,-3],[0,-1],[1,-2],[1,-4],[1,-2],[3,-4],[2,-5],[4,-5],[4,-6],[3,-5],[2,-4],[2,-3],[2,-3],[1,-2],[2,-3],[2,-1],[4,-3],[3,-3],[1,-1],[2,-2],[3,-2],[2,-1],[2,-1],[1,0],[2,0],[5,0],[3,0],[5,1],[3,-1],[4,1],[3,0],[4,1],[3,-1],[4,0],[4,0],[4,0],[3,0],[5,0],[3,0],[5,0],[2,0],[5,0],[3,0],[5,-1],[3,0],[5,0],[3,0],[4,0],[3,0],[4,0],[4,0],[4,1],[3,1],[3,1],[3,0],[4,1],[3,0],[4,0],[3,0],[3,-1],[3,0],[6,-1],[4,0],[3,0],[4,1],[3,1],[4,1],[2,1],[1,0],[3,1],[3,0],[2,0],[3,1],[2,1],[3,1],[3,1],[3,1],[1,0],[2,1],[1,0],[3,0],[2,-1],[1,0],[3,-1],[3,-1],[3,-2],[2,-2],[2,-2],[2,-2],[2,-2],[1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[2018,4184],[0,-1],[0,-1],[1,-1],[1,-2],[1,-1],[2,-1],[2,-1],[2,0],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[1,1],[1,1],[2,1],[1,1],[1,1],[2,0],[2,1],[2,1],[2,0],[3,1],[1,0],[1,0],[1,0],[1,1],[3,0],[2,0],[1,0],[3,1],[3,1],[1,0],[0,1],[1,0],[2,1],[1,0],[1,1],[2,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-2,1],[-1,0],[-4,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[2,0],[1,0],[2,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[-1,0],[-2,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[1,2],[0,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,2],[0,1],[1,2],[1,2],[1,0],[2,1],[1,1],[1,0],[2,0],[2,1],[2,1],[1,1],[2,2],[1,1],[2,0],[1,1],[2,1],[2,1],[1,0],[1,2],[1,1],[1,1],[2,1],[1,0],[2,1],[2,1],[1,0],[1,1],[1,0],[0,1],[-1,0],[-1,2],[-1,2],[4,2],[1,1],[3,3],[0,1],[1,4],[-1,1],[-1,2],[-1,2],[0,3],[1,1],[2,2],[-2,2],[-1,0],[-1,-2],[-1,0],[-3,-3],[-1,-1],[-3,-3],[-1,-1],[-1,-1],[-2,0],[-1,0],[-2,1],[-3,1],[-2,1],[-2,2],[-1,1],[-1,3],[0,1],[1,3],[1,2],[1,3],[2,0],[3,1],[2,0],[4,0],[2,-1],[1,0],[2,1],[1,1],[1,1],[1,3],[1,1],[4,-1],[1,0],[0,-1],[-2,-5],[-1,-1],[2,-1],[0,-1],[0,-1],[3,-1],[1,0],[1,0],[1,2],[1,2],[1,3],[2,3],[1,1],[1,0],[3,1],[6,2],[2,-1],[1,-1],[3,-1],[3,-2],[2,0],[2,1],[2,2],[3,1],[2,0],[4,-1],[1,0],[4,1],[1,0],[1,2],[0,2],[1,1],[0,1],[-2,2],[-2,1],[-2,3],[-1,2],[0,2],[-1,1],[1,1],[0,1],[1,2],[1,2],[1,0],[1,2],[1,1],[1,1],[2,1],[1,1],[2,0],[3,1],[2,0],[4,0],[1,-2],[1,-2],[1,-3],[1,-2],[0,-1],[2,-2],[1,-1],[1,0],[2,0],[1,0],[1,2],[3,2],[0,2],[1,3],[1,2],[1,3],[0,1],[1,3],[2,1],[3,2],[2,1],[2,2],[1,1],[3,3],[2,1],[3,2],[2,1],[4,1],[1,0],[3,-2],[1,-1],[-1,-1],[1,-3],[1,0],[0,-1],[6,0],[4,2],[1,1],[0,1],[0,2],[0,2],[0,3],[-2,1],[0,1],[0,1],[0,1],[2,2],[3,1],[1,1],[2,3],[0,2],[1,1],[0,2],[0,2],[-1,1],[-2,1],[-1,1],[-1,1],[-2,2],[-2,1],[-2,2],[-2,2],[-3,3],[-1,1],[-1,2],[-1,1],[-2,3],[0,1],[-1,3],[0,2],[-1,2],[1,1],[4,3],[1,1],[1,0],[2,0],[2,-1],[3,-1],[2,-1],[5,-1],[2,1],[2,3],[3,4],[1,3],[1,1],[0,4],[0,1],[1,1],[1,0],[1,1],[2,1],[4,0],[5,1],[8,1],[3,0],[1,0],[5,-2],[1,1],[1,0],[1,2],[0,2],[0,1],[0,3],[-1,1],[-2,2],[-1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[2,2],[5,2],[0,2],[1,0],[-1,3],[0,2],[0,2],[0,2],[0,1],[1,1],[1,1],[1,1],[1,0],[2,1],[1,0],[4,0],[2,1],[5,1],[4,0],[6,-1],[3,0],[3,1],[2,1],[1,3],[0,1],[1,3],[0,2],[0,3],[0,2],[0,1],[0,1],[1,0],[2,0],[1,0],[3,-1],[2,-2],[2,0],[2,0],[1,0],[1,0],[0,3],[0,1],[-1,4],[-1,1],[-2,2],[0,1],[1,0],[1,1],[2,0],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[1,0],[4,0],[1,-1],[2,-2],[2,-2],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,1],[1,0],[1,-2],[0,-1],[0,-3],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,1],[1,0],[2,0],[1,-1],[2,-1],[1,-1],[1,-1],[4,-1],[1,-1],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[2,0],[1,-1],[1,0],[2,0],[1,0],[4,3],[1,1],[1,0],[0,1],[0,1],[0,2],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,0],[2,0],[1,1],[1,1],[2,2],[1,2],[1,1],[0,1],[1,1],[0,1],[1,0],[1,-1],[2,-1],[1,-1],[1,0],[1,-1],[1,1],[1,1],[1,0],[1,1],[2,1],[1,1],[1,3],[1,1],[1,1],[1,1],[1,0],[2,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[2,0],[1,0],[1,0],[2,0],[2,1],[1,0],[2,0],[2,3],[1,1],[2,0],[3,0],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[2,0],[2,0],[4,1],[2,0],[1,1],[3,1],[2,1],[1,0],[1,0],[2,0],[2,1],[2,1],[2,0],[1,1],[2,0],[3,1],[2,-1],[3,0],[4,0],[2,-1],[2,0],[2,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[2,0],[1,0],[3,1],[1,0],[0,1],[2,0],[0,-1],[5,-1],[2,-1],[1,-1],[2,-2],[1,-1],[1,-2],[1,0],[1,-1],[1,-2],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-2],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[1,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[2,-1],[1,-2],[1,0],[0,-1],[2,0],[1,-1],[2,-1],[1,0],[2,-1],[2,-1],[1,0],[1,0],[4,1],[3,0],[2,0],[2,0],[5,0],[2,0],[3,0],[2,0],[2,-1],[4,0],[2,0],[3,0],[2,0],[2,0],[1,-1],[1,-2],[1,-1],[1,-2],[0,-2],[0,-2],[0,-1],[0,-2],[2,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[1,-1],[2,-1],[1,-1],[1,0],[0,-2],[1,-1],[1,0],[1,-1],[2,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-2],[2,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0]],[[2676,4424],[1,0],[2,3],[1,1],[1,3],[1,1],[2,3],[2,1],[2,2],[2,1],[3,2],[5,3],[2,0],[4,2],[2,0],[5,2],[5,2],[6,1],[6,2],[6,2],[4,1],[4,0],[2,0],[4,0],[2,0],[3,1],[3,1],[3,2],[3,1],[2,2],[2,1],[0,1],[2,2],[1,2],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[-1,2],[0,3],[0,1],[1,1],[1,1],[1,1],[2,1],[0,1],[1,1],[-1,2],[0,2],[-1,2],[0,2],[0,1],[0,1],[1,1],[1,0],[1,0],[1,2],[0,2],[0,2],[1,3],[1,1],[1,1],[2,0],[0,1],[1,2],[0,1],[1,0],[1,0],[2,1],[1,2],[0,2],[0,2],[0,1],[1,1],[3,0],[1,0],[1,1],[2,2],[2,3],[2,2],[0,2],[0,1],[0,1],[0,2],[-1,2],[0,2],[1,2],[1,0],[0,1],[1,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,2],[1,1],[0,2],[0,1],[1,1],[1,2],[0,1],[1,2],[0,2],[1,2],[1,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,2],[1,1],[0,2],[1,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[1,1],[2,2],[2,2],[3,2],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[1,2],[1,0],[1,1],[2,0],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,2],[0,1],[0,1],[1,0],[2,1],[2,1],[1,1],[2,2],[2,2],[1,0],[1,1],[1,2],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-2,0],[0,1],[-1,0],[1,1],[0,1],[1,1],[1,1],[2,1],[1,2],[1,2],[1,2],[1,2],[0,2],[0,1],[1,1],[1,1],[1,2],[1,2],[1,1],[1,2],[0,2],[0,2],[-1,2],[0,1],[0,1],[-2,3],[-1,3],[0,1],[0,2],[0,1],[1,3],[2,3],[1,2],[1,3],[2,2],[1,1],[4,2],[3,1],[3,1],[4,2],[2,1],[5,2],[3,1],[2,1],[1,2],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[1,1],[0,1],[1,2],[1,1],[1,2],[1,0],[0,1],[1,1],[1,2],[3,4],[1,1],[1,3],[0,1],[1,1],[1,4],[0,2],[0,2],[0,1],[1,2],[1,3],[1,2],[1,2],[1,3],[1,2],[1,5],[2,4],[2,5],[1,2],[0,1],[1,1],[1,0],[1,1],[2,2],[2,2],[2,2],[1,2],[1,1],[1,2],[1,2],[1,3],[1,2],[1,1],[-2,1],[0,1],[0,1],[0,1],[2,2],[1,2],[3,3],[1,3],[1,3],[1,3],[0,2],[0,2],[0,2],[0,2],[0,1],[0,2],[1,2],[0,2],[1,3],[0,2],[0,2],[0,1],[0,2],[0,3],[0,1],[1,5],[0,1],[1,1],[1,2],[1,0],[1,2],[2,1],[2,1],[2,2],[1,2],[1,1],[1,1],[1,1],[0,1],[1,3],[1,1],[1,1],[0,1],[1,1],[1,1],[2,4],[1,2],[1,1],[1,1],[2,2],[1,1],[0,1],[1,1],[1,1],[0,2],[2,1],[1,0],[1,1],[2,1],[2,2],[1,3],[0,1],[1,1],[1,3],[1,3],[0,1],[1,0],[1,1],[1,1],[4,2],[1,1],[0,1],[0,1],[1,2],[0,2],[0,2],[0,1],[0,1],[1,1],[1,1],[1,2],[0,1],[0,2],[1,2],[0,2],[1,3],[1,1],[1,1],[1,0],[1,1],[1,1],[0,1],[1,2],[0,3],[0,2],[0,1],[1,2],[1,1],[1,2],[2,3],[2,3],[1,2],[2,4],[1,2],[1,1],[2,2],[2,1],[2,3],[1,2],[0,2],[0,1],[1,1],[1,2],[2,4],[1,3],[2,3],[1,3],[2,5],[2,4],[1,2],[2,3],[1,1],[1,4],[1,2],[2,3],[0,1],[1,1],[2,3],[1,1],[1,1],[0,2],[1,1],[0,1],[0,2],[0,3],[0,2],[0,3],[-1,2],[0,3],[0,2],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[0,2],[0,3],[1,3],[1,1],[1,0],[2,1],[2,1],[1,0],[3,1],[1,1],[1,1],[1,2],[2,2],[1,1],[1,2],[1,1],[0,2],[0,2],[0,1],[0,1],[1,1],[2,0],[2,1],[2,0],[4,-1],[3,-1],[4,-2],[2,-1],[3,-2],[1,-1],[2,0],[4,-1],[2,-1],[4,-1],[2,-1],[1,-2],[2,-2],[1,-1],[3,-2],[5,-1],[5,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,0],[1,1],[0,1],[2,1],[1,1],[2,1],[2,2],[4,2],[2,1],[4,2],[3,1],[1,0],[1,1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[1,-1],[2,0],[1,0],[2,0],[2,0],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,2],[0,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,2],[0,1],[1,2],[0,1],[-1,1],[-1,2],[0,2],[0,1],[0,2],[1,2],[0,2],[1,3],[0,1],[-1,1],[0,2],[-1,1],[-2,1],[-3,1],[-2,2],[0,3],[-1,2],[-1,2],[-1,1],[-1,1],[-2,0],[-1,0],[-1,1],[-1,1],[0,2],[1,1],[0,1],[1,1],[1,1],[1,1],[1,2],[0,1],[-1,2],[-1,3],[0,1],[-1,1],[0,2],[0,1],[1,2],[0,1],[0,3],[1,1],[2,3],[1,2],[2,2],[0,1],[2,0],[0,2],[1,3],[1,2],[-1,1],[0,1],[1,1],[1,2],[2,3],[1,3],[1,3],[-1,2],[0,1],[1,1],[1,2],[2,2],[2,1],[1,0],[1,0],[1,0],[2,-1],[3,-1],[4,0],[4,0],[2,0],[1,0],[3,-3],[2,-1],[2,-1],[2,-1],[2,0],[2,-1],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,-1],[2,0],[4,-1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[3,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[1,2],[-1,3],[-1,1],[-2,2],[-1,1],[-2,1],[-1,0],[-1,0],[-1,1],[1,2],[0,1],[1,1],[0,2],[0,1],[0,2],[-1,0],[0,2],[-2,1],[-1,1],[-1,1],[-2,2],[-2,1],[-1,2],[-2,2],[-1,2],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,1],[1,1],[2,0],[1,1],[2,1],[1,1],[0,1],[1,1],[0,2],[0,1],[1,1],[1,1],[0,1],[1,2],[1,1],[1,1],[2,1],[2,0],[1,1],[2,0],[3,0],[1,1],[1,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[0,1],[-1,1],[0,2],[-1,2],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,1],[-2,1],[-1,0],[-1,1],[0,2],[-1,1],[1,1],[0,2],[0,2],[1,1],[0,2],[1,2],[2,3],[1,3],[2,3],[1,2],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[2,1],[1,0],[2,0],[2,0],[1,0],[1,-1],[1,-2],[1,-1],[1,-1],[2,-1],[1,-1],[3,-1],[1,0],[2,0],[2,0],[2,1],[2,1],[2,1],[2,0],[2,0],[3,0],[2,0],[2,-1],[3,-1],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[3,-1],[1,0],[2,0],[3,1],[4,1],[3,1],[3,0],[1,0],[1,-1],[1,-1],[1,-2],[2,-1],[1,0],[0,-1],[0,-2],[1,0],[2,-1],[1,0],[3,0],[2,0],[3,0],[2,0],[3,0],[5,-1],[2,-1],[4,0],[3,-1],[1,1],[1,0],[2,1],[2,0],[4,1],[2,1],[4,0],[3,0],[5,0],[3,0],[2,0],[2,1],[2,1],[4,1],[3,1],[6,0],[5,1],[2,-1],[4,0],[1,0],[3,0],[4,0],[3,0],[6,0],[5,0],[2,1],[3,1],[2,1],[1,0],[1,1],[1,0],[1,0],[2,-1],[1,0],[3,-2],[2,-1],[3,-1],[2,-2],[1,-1],[1,-1],[1,0],[1,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,1],[0,1],[-1,3],[-2,2],[-1,3],[-1,1],[-1,1],[0,2],[0,1],[1,1],[1,1],[1,0],[1,1],[1,2],[3,3],[1,2],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,2],[0,1],[1,1],[1,2],[0,1],[1,2],[1,1],[0,2],[1,2],[1,3],[1,1],[0,2],[0,1],[1,2],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[2,2],[1,3],[1,2],[1,3],[0,2],[1,3],[0,2],[2,2],[1,2],[1,2],[1,3],[1,2],[3,2],[1,2],[5,5],[3,2],[4,4],[6,3],[5,4],[3,2],[3,2],[3,1],[2,2],[6,2],[4,2],[2,1],[4,1],[2,1],[3,1],[2,1],[6,2],[2,0],[3,2],[1,1],[2,0],[4,3],[4,2],[2,1],[4,1],[1,1],[2,0],[3,1],[5,1],[2,1],[2,1],[3,1],[1,2],[2,1],[2,2],[1,1],[1,0],[3,3],[2,1],[1,0],[3,2],[2,1],[3,1],[3,2],[3,1],[2,1],[2,2],[3,0],[0,1],[2,0],[2,0],[3,0],[2,1],[1,0],[1,0],[3,1],[2,1],[2,0],[2,2],[1,0],[2,1],[2,0],[2,1],[2,1],[2,1],[1,1],[1,2],[3,3],[2,2],[3,3],[2,2],[3,1],[2,0],[3,0],[1,1],[3,0],[4,2],[1,0],[1,1],[1,1],[2,1],[0,1],[1,2],[1,1],[1,1],[1,1],[2,0],[3,1],[4,3],[3,2],[2,2]],[[3745,5573],[1,1],[1,0],[2,1],[1,0],[1,1],[2,2],[2,1],[1,1],[1,0],[4,2],[2,1],[1,2],[1,1],[1,1],[1,1],[2,1],[2,2],[2,2],[2,2],[1,1],[1,1],[1,2],[2,1],[2,2],[1,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[1,1],[1,0],[1,1],[2,1],[3,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,2],[1,1],[1,1],[1,0],[1,2],[1,1],[2,1],[4,2],[1,1],[0,1],[0,1],[1,1],[2,2],[1,2],[3,3],[1,1],[1,1],[2,2],[1,1],[2,2],[1,1],[3,1],[2,1],[3,1],[2,0],[3,1],[3,0],[2,1],[2,1],[0,1],[0,2],[0,1],[1,1],[2,0],[2,0],[3,1],[1,0],[1,2],[2,1],[2,2],[0,1],[2,1],[3,3],[1,1],[0,2],[0,1],[1,1],[1,2],[2,1],[2,1],[3,1],[3,2],[3,2],[3,2],[4,2],[2,3],[2,2],[3,2],[2,3],[2,2],[2,1],[1,2],[0,1],[1,1],[0,2],[1,0],[1,1],[1,1],[1,2],[1,1],[0,2],[2,1],[2,2],[2,0],[2,2],[3,2],[3,2],[3,2],[2,2],[2,2],[1,1],[1,2],[2,1],[2,0],[3,1],[1,1],[2,1],[2,2],[2,2],[1,2],[2,3],[1,2],[1,1],[3,2],[1,0],[2,1],[2,0],[3,1],[4,2],[3,0],[3,1],[2,0],[3,0],[3,-1],[2,1],[1,1],[1,2],[2,1],[0,1],[1,3],[0,1],[2,1],[3,1],[2,2],[2,2],[1,2],[0,3],[-1,2],[-1,2],[-1,1],[-1,1],[-2,1],[0,2],[-1,1],[-1,2],[0,1],[0,1],[1,2],[-1,1],[1,2],[1,0],[1,1],[2,1],[2,2],[2,1],[3,2],[2,1],[1,1],[3,1],[2,2],[2,2],[2,1],[2,2],[2,1],[2,2],[2,1],[3,2],[1,2],[2,1],[0,1],[0,2],[0,1],[1,2],[2,2],[1,1],[2,1],[2,2],[1,0],[2,1],[2,1],[3,1],[1,1],[2,1],[2,1],[1,1],[2,2],[1,1],[3,1],[1,1],[2,1],[2,1],[1,1],[0,1],[1,1],[2,1],[1,2],[1,1],[1,1],[2,1],[1,1],[2,1],[2,1],[1,1],[2,1],[2,0],[2,1],[2,1],[1,1],[1,0],[1,1],[2,0],[2,1],[1,0],[2,0],[3,0],[2,1],[2,1],[2,0],[1,1],[2,1],[2,0],[2,0],[4,0],[1,0],[3,1],[3,1],[2,0],[3,0],[3,1],[2,1],[3,1],[1,0],[2,2],[2,1],[2,1],[2,2],[1,1],[1,2],[2,0],[2,0],[2,0],[2,0],[2,1],[2,1],[1,1],[2,2],[1,1],[1,1],[1,2],[0,2],[0,1],[0,2],[-1,3],[0,1],[0,2],[0,1],[0,1],[1,1],[2,1],[2,0],[2,1],[3,2],[2,2],[2,1],[2,2],[2,1],[2,1],[3,1],[3,0],[2,1],[4,0],[3,0],[4,1]],[[4194,5918],[2,0],[1,2],[2,2],[2,2],[2,3],[1,1],[1,1],[2,1],[2,0],[3,0],[3,-1],[3,0],[3,0],[3,0],[2,1],[3,2],[3,1],[2,0],[3,1],[3,1],[2,2],[2,1],[1,3],[3,3],[2,3],[2,3],[1,1],[3,1],[3,0],[4,1],[3,0],[3,1],[4,2],[5,1],[3,2],[4,2],[4,2],[5,2],[3,1],[2,1],[2,1],[3,2],[4,2],[4,1],[2,0],[3,0],[2,0],[2,0],[3,1],[3,0],[2,1],[2,1],[2,2],[2,1],[2,1],[3,2],[2,1],[2,1],[1,0],[1,2],[1,1],[1,2],[1,2],[2,2],[3,2],[2,2],[3,3],[2,1],[2,2],[2,2],[2,1],[3,1],[2,1],[1,1],[2,3],[1,1],[2,2],[1,2],[2,3],[2,2],[2,1],[2,2],[1,0],[3,2],[1,1],[2,1],[2,1],[1,1],[0,2],[0,1],[0,1],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[0,2],[0,1],[1,1],[1,1],[1,2],[1,0],[1,1],[1,1],[2,0],[2,2],[1,1],[1,1],[1,2],[1,1],[1,1],[1,2],[2,1],[1,1],[1,1],[2,1],[1,0],[1,1],[3,0],[1,1],[2,1],[2,2],[2,2],[1,1],[1,1],[3,0],[3,0],[2,1],[2,1],[1,1],[1,1],[2,2],[0,1],[0,2],[1,3],[2,2],[1,2],[1,2],[2,2],[1,1],[2,1],[1,1],[2,0],[2,1],[4,0],[2,1],[2,-1],[2,1],[2,0],[1,0],[1,1],[1,1],[1,1],[1,2],[3,3],[1,1],[1,0],[2,0],[2,1],[1,0],[1,1],[1,0],[2,2],[1,1],[1,1],[1,2],[1,1],[1,2],[1,1],[1,1],[1,2],[1,2],[1,1],[2,3],[1,1],[1,2],[2,1],[1,0],[1,0],[4,1],[2,1],[1,2],[1,1],[2,2],[2,1],[1,1],[3,2],[2,2],[1,1],[1,1],[1,2],[0,1],[1,2],[1,2],[1,1],[1,2],[2,1],[1,2],[0,1],[2,1],[1,2],[2,2],[1,2],[1,1],[2,1],[0,1],[2,2],[0,1],[2,2],[1,2],[1,0],[1,2],[2,3],[2,1],[1,2],[1,1],[1,2],[2,1],[2,1],[2,1],[2,0],[1,1],[2,1],[2,1],[1,1],[1,2],[1,1],[1,2],[1,2],[2,2],[0,1],[0,2],[-1,2],[-1,2],[0,1],[-1,1],[-2,3],[-1,1],[0,2],[0,1],[0,2],[1,2],[-1,1],[0,2],[-1,2],[0,1],[-1,2],[0,2],[-1,2],[1,2],[1,1],[3,1],[3,2],[4,1],[4,1],[2,1],[2,2],[1,1],[1,1],[0,1],[2,3],[1,2],[1,2],[1,3],[1,3],[1,2],[1,2],[1,2],[1,3],[0,2],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[1,2],[1,1],[1,1],[1,1],[3,1],[1,1],[2,3],[2,2],[2,2],[3,4],[1,2],[0,2],[1,2],[1,1],[2,2],[1,1],[1,1],[2,2],[1,2],[1,2],[1,3],[2,2],[2,2],[1,1],[1,2],[1,1],[1,2],[2,0],[2,1],[1,2],[2,1],[1,1],[1,1],[0,2],[-1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[2,0],[2,1],[2,0],[1,1],[1,1],[2,1],[1,1],[1,0],[1,1],[1,2],[1,1],[1,1],[1,1],[0,1],[1,1],[0,2],[0,1],[1,2],[0,1],[0,1],[0,2],[0,1],[1,2],[0,1],[1,0],[1,1],[1,2],[1,1],[1,1],[2,1],[1,1],[1,1],[2,2],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[2,2],[2,1],[1,2],[1,1],[2,1],[1,1],[0,1],[1,2],[1,1],[0,1],[1,1],[1,2],[2,1],[1,1],[1,1],[2,1],[1,1],[1,1],[2,1],[2,2],[1,0],[1,2],[1,2],[1,1],[1,2],[1,2],[1,2],[0,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,2],[1,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,2],[0,2],[0,2],[0,2],[0,2],[1,3],[0,2],[1,2],[1,1],[1,3],[1,2],[1,2],[0,1],[0,1],[0,1],[0,1],[-2,2],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,2],[1,1],[0,2],[0,1],[-1,2],[0,1],[-2,2],[0,2],[-1,2],[1,1],[0,2],[0,1],[1,2],[0,1],[-1,1],[0,1],[1,2],[1,1],[2,3],[2,2],[3,3],[1,2],[1,3],[3,5],[1,2],[1,3],[1,1],[1,2],[1,2],[1,2],[1,1],[1,1],[0,2],[1,1],[2,1],[2,1],[2,1],[1,1],[2,1],[1,1],[0,1],[1,1],[0,2],[1,1],[0,2],[1,1],[1,1],[1,2],[2,1],[2,2],[2,2],[1,1],[2,2],[2,2],[1,2],[1,1],[3,-1],[1,1],[1,0],[1,1],[2,1],[2,2],[2,3],[3,2],[2,2],[1,1],[2,2],[1,2],[1,3],[0,1],[1,3],[1,1],[1,1],[1,2],[1,1],[0,2],[1,1],[0,2],[0,1],[-1,2],[0,2],[-1,2],[0,2],[0,2],[1,1],[1,1],[0,1],[1,2],[0,2],[1,1],[2,2],[1,2],[1,2],[2,2],[1,2],[1,3],[1,2],[1,1],[3,0],[2,1],[3,0],[2,1],[1,1],[2,1],[1,2],[1,2],[0,2],[1,1],[0,2],[1,1],[2,1],[1,0],[1,0],[2,0],[1,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,1],[1,2],[0,1],[1,1],[0,2],[1,1],[1,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[1,2],[1,1],[2,2],[2,1],[2,1],[1,2],[2,1],[1,2],[0,2],[1,1],[1,2],[1,1],[2,1],[2,2],[1,3],[1,1],[1,2],[1,2],[1,2],[0,2],[2,1],[1,1],[2,1],[2,0],[3,0],[1,0],[3,0],[3,0],[1,1],[3,2],[1,2],[2,1],[2,1],[3,0],[2,-1],[1,0],[1,1],[2,1],[3,2],[2,2],[2,1],[1,2],[1,1],[2,2],[2,1],[2,0],[2,1],[1,1],[1,2],[1,1],[0,2],[-1,1],[-1,2],[-1,2],[-1,1],[0,2],[0,1],[0,2],[0,2],[1,0],[0,2],[1,1],[1,0],[1,0],[2,-1],[2,0],[1,-1],[2,0],[2,0],[3,0],[2,0],[2,-1],[1,0],[2,0],[2,1],[1,0],[2,1],[1,1],[2,1],[2,1],[2,1],[3,3],[3,1],[2,3],[2,1],[1,2],[3,3],[1,2],[3,2],[3,2],[2,2],[3,1],[3,2],[3,1],[4,2],[2,2],[2,2],[1,3],[2,4],[1,4],[0,4],[0,2],[-1,2],[-2,3],[-2,3],[-1,2],[-2,2],[-3,4],[-2,1],[0,2],[-1,2],[0,1],[1,1],[3,1],[2,1],[1,2],[2,3],[2,2],[1,1],[1,2],[3,1],[2,2],[1,3],[0,3],[1,2],[1,3],[2,2],[2,2],[2,3],[1,0],[2,1],[3,0],[7,1],[4,0],[1,1],[1,1],[1,2],[1,2],[1,2],[1,2],[3,2],[2,2],[1,2],[3,4],[1,3],[1,2],[0,1],[0,2],[0,2],[-1,2],[1,2],[1,2],[1,0],[2,0],[3,0],[4,0],[4,0],[2,0],[3,-1],[5,0],[3,0],[7,-1],[5,0],[7,-1],[2,0],[4,1],[2,1],[2,1],[3,1],[2,2],[2,2],[3,2],[1,0],[4,1],[2,0],[2,1],[2,2],[1,1],[1,2],[2,3],[1,2],[3,2],[3,4],[2,1],[2,3],[2,2],[1,2],[0,2],[0,2],[0,2],[0,1],[2,3],[1,2],[1,2],[3,0],[1,0],[4,1],[1,0],[2,0],[2,0],[3,0],[3,0],[2,1],[1,1],[2,1],[2,2],[4,3],[3,0],[2,1],[1,0],[2,1],[1,2],[3,1],[3,1],[4,1],[2,2],[3,1],[2,2],[2,0],[3,1],[2,1],[1,1],[3,2],[1,1],[-1,1],[0,2],[-1,2],[-2,3],[0,1],[0,2],[-1,2],[0,1],[-3,2],[-2,2],[-1,1],[-2,2],[-3,3],[-3,3],[-1,1],[0,2],[-1,1],[-1,2],[0,1],[-1,3],[1,0],[1,1],[3,1],[3,1],[5,-1],[6,0],[6,0],[4,0],[3,1],[2,0],[3,-1],[4,0],[3,1],[1,1],[3,1],[1,1],[1,1],[3,0],[2,0],[3,0],[2,0],[2,-1],[4,-1],[5,0],[2,0],[1,1],[3,1],[2,1],[2,1],[1,3],[1,2],[1,3],[1,2],[0,3],[0,3],[1,3],[1,1],[2,1],[0,1],[2,3],[2,3],[1,3],[1,3],[1,3],[0,2],[0,1],[0,2],[0,3],[-1,2],[-1,2],[0,3],[0,1],[1,1],[2,2],[2,1],[2,3],[3,2],[1,2],[3,2],[3,1],[3,2],[4,2],[3,2],[3,1],[5,2],[3,1],[3,1],[2,0],[-1,1],[-4,1],[-3,1],[-3,1],[-2,2],[-2,1],[-2,3],[-2,2],[-3,3],[-3,5],[-1,3],[-1,1],[-4,3],[-1,2],[0,3],[-2,0],[0,2],[0,2],[-1,2],[-2,4],[0,1],[-1,4],[-1,2],[-1,3],[-2,2],[-2,3],[-2,3],[0,3],[0,2],[0,1],[-2,1],[-2,2],[-2,3],[0,1],[1,1],[1,2],[2,3],[0,1],[0,1],[1,2],[1,2],[2,1],[2,1],[1,2],[1,2],[2,1],[2,1],[3,1],[5,1],[3,2],[1,1],[-1,2],[0,2],[1,3],[2,4],[1,3],[0,2],[1,4],[1,3],[1,3],[3,4],[2,3],[2,4],[1,3],[1,3],[2,2],[2,2],[1,3],[1,4],[0,2],[1,2],[1,2],[2,3],[2,2],[4,3],[2,1],[3,1],[3,1],[3,3],[1,2],[2,3],[1,1],[1,3],[0,2],[0,3],[-1,3],[-1,2],[1,3],[1,2],[1,3],[1,2],[0,2],[2,2],[3,2],[5,3],[3,4],[3,3],[3,4],[3,4],[3,5],[3,3],[3,4],[2,3],[2,1],[4,0],[5,1],[3,1],[1,1],[1,2],[1,3],[2,2],[2,1],[2,2],[2,1],[2,1],[3,0],[7,0],[5,0],[6,-2],[2,-1],[4,1],[2,0],[4,0],[0,1]],[[5452,7376],[1,0],[0,1],[-1,1],[1,4],[0,3],[1,2],[1,3],[1,2],[1,2],[3,3],[3,2],[3,3],[3,4],[2,3],[1,3],[0,2],[2,6],[0,3],[2,1],[0,2],[0,3],[1,3],[1,4],[1,4],[1,3],[1,3],[2,2],[3,1],[3,2],[3,0],[2,1],[2,3],[1,2],[2,3],[3,3],[2,2],[3,2],[0,2],[0,3],[0,3],[-1,3],[-1,3],[0,3],[0,3],[-1,2],[0,3],[0,4],[0,4],[-1,3],[0,3],[-1,2],[-1,3],[-1,3],[-1,4],[-3,5],[-1,2],[-2,1],[-3,2],[-1,2],[-2,2],[-1,1],[-5,2],[-3,0],[-3,1],[0,-1],[-1,1],[-1,1],[-3,2],[-1,1],[-3,3],[-2,2],[-2,3],[-3,3],[-2,1],[-3,2],[-2,2],[-4,2],[-3,2],[-3,2],[-3,2],[-3,3],[-2,3],[-2,2],[-2,3],[0,1],[0,2],[1,1],[1,2],[0,2],[0,2],[0,1],[0,2],[-1,2],[0,2],[0,3],[0,1],[0,2],[2,2],[1,1],[2,1],[0,2],[0,1],[0,1],[-1,2],[0,2],[0,1],[1,2],[1,1],[2,2],[1,2],[1,1],[0,2],[-1,1],[-2,0],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,3],[1,1],[1,2],[1,2],[2,1],[2,1],[2,2],[1,1],[1,1],[1,2],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,1],[-1,0],[0,1],[0,2],[1,1],[1,1],[1,1],[2,0],[1,1],[0,1],[-1,1],[-2,2],[-2,0],[-1,1],[-1,1],[0,2],[1,1],[1,2],[1,2],[1,2],[-1,1],[-1,1],[-2,1],[0,1],[-1,2],[-2,3],[-1,2],[-1,2],[-1,2],[-2,2],[-1,1],[-1,0],[-2,1],[0,1],[0,1],[-1,1],[-2,1],[0,1],[-1,0],[1,1],[0,2],[0,1],[0,2],[0,2],[1,1],[1,1],[0,1],[0,1],[-1,1],[-2,1],[0,1],[-1,1],[1,3],[1,1],[0,2],[-1,1],[-1,0],[-2,0],[-1,1],[-1,1],[-1,1],[0,1],[1,1],[1,2],[0,1],[0,1],[-2,2],[-1,1],[0,2],[1,1],[1,1],[-1,1],[-1,1],[-1,-1],[-2,-1],[-2,0],[-1,0],[-1,1],[0,2],[0,1],[1,1],[2,1],[2,0],[1,2],[1,2],[-1,2],[1,2],[0,2],[1,2],[3,3],[2,1],[2,2],[0,1],[-1,2],[-2,2],[-2,2],[-3,3],[-4,4],[0,1],[-1,1],[0,1],[0,1],[2,1],[1,1],[2,2],[0,1],[-1,2],[-2,1],[-5,1],[-1,1],[-1,1],[0,2],[-1,2],[-2,2],[-3,2],[-2,2],[-3,3],[-2,2],[-3,3],[-1,3],[-1,3],[-1,2],[-3,2],[-3,2],[-4,3],[-6,5],[-3,2],[0,2],[0,2],[0,2],[-1,1],[-2,2],[-2,3],[-4,3],[-2,1],[-5,3],[-2,3],[-4,3],[-2,3],[-2,3],[0,2],[-1,2],[-1,3],[0,2],[0,3],[0,2],[1,3],[0,3],[0,2],[0,3],[1,3],[0,3],[1,4],[0,3],[-1,4],[0,2],[-1,4],[-1,3],[0,2],[-2,2],[-2,3],[-2,4],[-1,3],[-2,4],[-1,3],[0,3],[0,4],[-1,3],[0,4],[-1,3],[-1,3],[0,2],[-1,3],[-1,2],[-2,3],[-1,1],[-3,1],[-2,1],[-2,1],[-1,2],[-1,1],[-2,2],[-1,2],[-2,2],[-2,1],[-2,2],[-3,2],[-1,1],[-1,2],[0,2],[0,2],[2,2],[1,1],[1,2],[2,2],[2,2],[3,2],[1,0],[1,0],[2,0],[3,0],[2,0],[3,1],[3,0],[3,1],[2,1],[1,1],[1,2],[1,1],[0,2],[-2,2],[0,2],[-1,4],[0,2],[-1,3],[-1,1],[-2,3],[0,1],[-1,1],[0,2],[0,2],[0,1],[1,2],[1,1],[1,1],[2,1],[1,0],[2,0],[2,1],[3,0],[2,1],[1,1],[1,2],[1,2],[1,1],[2,2],[2,1],[2,1],[2,1],[1,1],[1,1],[1,2],[0,2],[-1,2],[0,1],[-1,2],[-2,1],[-2,1],[-2,1],[-3,1],[-1,1],[-2,2],[0,2],[-1,2],[0,3],[0,2],[0,1],[1,2],[1,3],[1,2],[0,1],[1,2],[1,2],[2,2],[1,2],[2,2],[2,1],[1,1],[2,2],[2,2],[3,1],[1,2],[2,2],[1,2],[1,3],[0,2],[-1,3],[-1,3],[-1,2],[-1,3],[-1,3],[-1,2],[-1,3],[-1,2],[0,2],[0,2],[0,3],[0,3],[0,2],[0,3],[-1,3],[-1,2],[-1,2],[-1,1],[-2,1],[-2,1],[-4,2],[-2,1],[-2,1],[-1,2],[0,1],[0,2],[0,1],[1,1],[2,2],[4,1],[4,2],[3,2],[3,3],[2,2],[1,2],[1,1],[0,3],[0,2],[-1,2],[-1,2],[-2,2],[-1,2],[-1,1],[0,2],[-1,2],[-1,2],[-1,3],[-2,2],[-2,2],[-2,1],[-2,1],[-2,1],[0,3],[0,2],[0,2],[1,1],[1,2],[1,2],[1,2],[2,2],[3,2],[3,3],[2,2],[1,2],[0,3],[0,2],[0,2],[2,3],[2,2],[4,1],[5,2],[4,2],[5,1],[5,2],[4,1],[2,2],[2,2],[2,1],[2,0],[3,-1],[1,-1],[2,-1],[3,-4],[2,-5],[3,-5],[2,-3],[2,-4],[2,-3],[2,-5],[1,-4],[3,-5],[5,-5],[4,-4],[5,-4],[4,-4],[5,-2],[6,-2],[4,-1],[1,0],[5,0],[6,0],[10,1],[7,1],[5,2],[5,3],[3,4],[4,5],[3,5],[3,4],[2,4],[3,4],[3,4],[3,3],[4,4],[3,3],[4,0],[4,0],[2,-3],[2,-5],[3,-3],[3,-1],[8,2],[5,0],[5,0],[5,1],[2,0],[1,-1],[0,-2],[0,-5],[1,-3],[3,-2],[5,-2],[2,0],[3,3],[5,1],[4,-1],[5,-2],[5,-3],[4,-1],[3,0],[1,1],[0,4],[1,4],[7,2],[5,-1],[8,-2],[3,-3],[2,-7],[2,-5],[3,-4],[2,-1],[4,2],[7,1],[4,-1],[2,-2],[1,-6],[1,-3],[2,-4],[4,-2],[4,-3],[6,-2],[4,2],[7,3],[4,1],[7,4],[4,1],[10,-2],[6,-3],[5,-2],[5,-1],[2,-3],[0,-5],[0,-5],[0,-4],[4,-3],[5,-2],[5,-3],[0,2],[1,3],[4,2],[6,4],[5,-1],[9,-1],[7,-1],[11,-5],[3,-2],[6,-3],[3,0],[9,-2],[5,0],[5,-3],[5,-1],[6,1],[8,-1],[7,-2],[7,-1],[5,-1],[17,-7],[7,-4],[7,-2],[6,0],[8,-1],[7,-1],[7,-1],[13,-4],[14,-1],[10,0],[12,-1],[16,1],[10,0],[7,-1],[10,6],[9,6],[2,2],[0,3],[1,8],[4,4],[10,6],[5,6],[4,6],[1,4],[-1,4],[-1,4],[-4,4],[-4,2],[-1,1],[3,8],[-1,5],[-2,9],[-3,6],[0,3],[2,5],[2,4],[1,1],[-2,5],[1,6],[1,7],[1,6],[3,7],[0,1],[3,7],[1,3],[2,8],[3,7],[3,4],[2,5],[1,2],[5,3],[4,3],[3,2],[2,5],[4,5],[5,6],[4,4],[4,2],[7,3],[4,1],[5,3],[5,2],[5,2],[4,3],[6,4],[11,7],[4,4],[4,5],[3,3],[2,0],[6,-1],[6,-2],[12,-2],[8,-3],[6,-2],[7,-1],[4,1],[8,2],[7,2],[4,0],[11,0],[4,1],[7,2],[5,0],[7,-1],[8,-1],[11,-4],[10,-3],[9,-3],[9,-3],[8,-2],[4,-1],[9,-2],[11,-2],[8,-1],[12,-3],[8,-1],[-1,1],[0,1],[0,3],[1,2],[0,3],[0,3],[1,4],[1,4],[-1,4],[-1,2],[-2,4],[-1,3],[-2,3],[-1,4],[0,3],[0,3],[0,3],[1,1],[1,4],[2,3],[2,2],[2,3],[2,2],[3,3],[4,3],[2,3],[2,2],[2,2],[2,4],[3,2],[2,1],[1,1],[3,1],[4,2],[4,2],[6,4],[6,2],[1,1],[3,1],[2,1],[2,0],[4,1],[2,1],[3,1],[4,1],[4,0],[7,1],[3,0],[4,1],[2,0],[3,1],[3,1],[3,2],[3,1],[2,3],[3,3],[2,4],[0,2],[1,3],[0,2],[0,3],[0,4],[0,4],[1,4],[1,4],[3,3],[2,2],[3,2],[3,1],[4,1],[7,2],[5,0],[9,0],[11,1],[7,0],[8,0],[7,0],[7,1],[3,0],[3,1],[4,1],[3,2],[3,2],[2,2],[3,3],[2,3],[3,3],[4,3],[1,1],[3,2],[1,0],[1,2],[0,1],[1,3],[0,1],[0,3],[1,2],[2,3],[1,2],[3,2],[3,2],[3,1],[2,1],[4,0],[3,1],[3,1],[3,2],[2,3],[4,7],[1,3],[0,2],[-2,3],[-2,3],[-1,2],[-2,2],[-3,2],[-1,3],[-1,2],[-1,2],[1,4],[0,3],[2,2],[2,2],[3,1],[4,1],[3,0],[5,1],[4,1],[5,1],[5,2],[3,1],[5,3],[7,4],[4,3],[5,6],[2,3],[4,5],[4,5],[1,1],[3,4],[3,6],[1,4],[1,2],[0,1],[-2,3],[-1,1],[-1,1],[-2,2],[-1,0],[-2,1],[-2,1],[-2,1],[-3,1],[-3,3],[0,1],[-1,1],[-1,2],[1,2],[2,4],[2,4],[4,4],[3,3],[3,3],[1,3],[1,2],[0,3],[-1,2],[-1,4],[-4,3],[-1,1],[-2,1],[-1,3],[-2,2],[0,3],[1,2],[1,3],[2,2],[3,3],[4,0],[6,0],[5,0],[6,-2],[8,-2],[6,-2],[6,-2],[6,-3],[5,-3],[2,-1],[2,0],[3,-2],[4,-5],[4,-3],[3,-1],[2,0],[6,0],[7,3],[5,2],[4,3],[4,6],[3,3],[5,2],[6,1],[6,2],[5,-1],[6,-2],[9,-4],[2,-2],[4,-2],[5,-3],[10,-3],[12,-3],[3,-1],[2,1],[2,4],[3,3],[6,4],[5,2],[8,1],[10,2],[8,1],[6,-1],[3,-1],[2,-2],[1,-3],[4,-2],[8,-2],[6,0],[8,-2],[5,0],[8,0],[4,0],[8,-1],[6,0],[3,1],[3,3],[4,6],[3,6],[2,4],[1,3],[2,3],[5,6],[4,2],[5,1],[9,-1],[4,1],[4,3],[1,1],[1,3],[3,5],[7,14],[1,3],[0,5],[1,3],[-2,5],[-1,7],[-2,10],[0,4],[1,4],[1,4],[5,2],[4,1],[6,1],[6,-1],[7,1],[5,0],[4,1],[1,1],[2,3],[1,2],[0,3],[0,3],[-1,4],[-1,3],[-2,4],[-1,3],[0,3],[1,4],[2,4],[2,2],[2,2],[5,1],[5,1],[4,-1],[5,-1],[4,-2],[7,-3],[5,-2],[5,0],[3,0],[3,1],[3,3],[4,5],[2,4],[2,4],[-1,3],[2,4],[2,6],[2,2],[3,4],[4,2],[4,3],[6,3],[5,1],[3,-1],[4,-3],[3,-2],[3,0],[1,3],[1,5],[0,5],[-1,4],[0,4],[1,5],[3,5],[5,7],[6,6],[5,5],[5,5],[7,4],[7,3],[6,4],[0,2],[0,3],[-2,3],[-3,3],[-3,2],[-4,4],[-3,3],[-1,3],[0,1],[0,2],[2,3],[4,2],[5,4],[4,1]],[[7204,8993],[0,1],[4,1],[5,0],[4,-1],[3,-1],[4,-3],[4,-5],[3,-6],[3,-3],[10,-6],[5,-1],[1,2],[3,1],[3,4],[2,2],[6,3],[4,-1],[6,0],[4,1],[4,1],[5,0],[4,-1],[4,-2],[5,-1],[4,2],[5,2],[3,3],[5,1],[4,1],[2,3],[5,4],[2,3],[2,2],[5,1],[6,0],[5,-2],[5,-1],[8,-1],[7,0],[7,1],[5,-1],[8,-5],[6,-1],[3,2],[4,3],[6,4],[3,3],[2,1],[3,2],[3,0],[7,-1],[8,-2],[7,-1],[2,1],[0,2],[0,3],[-1,4],[-1,3],[2,2],[4,4],[3,2],[10,5],[11,4],[7,4],[5,4],[2,4],[1,6],[2,10],[1,8],[0,6],[-1,6],[0,6],[1,4],[2,6],[2,6],[-1,4],[-2,6],[-2,5],[0,3],[2,4],[2,3],[3,1],[2,2],[1,4],[1,3],[2,4],[1,4],[2,2],[2,5],[3,1],[3,2],[6,0],[4,1],[3,1],[4,1],[4,-1],[4,-3],[4,-1],[4,-1],[3,1],[2,2],[2,4],[-1,4],[-4,3],[-3,2],[-2,5],[0,5],[0,4],[2,3],[3,1],[4,0],[4,-2],[2,0],[2,0],[2,2],[1,3],[1,5],[1,4],[2,7],[2,4],[2,6],[4,4],[4,4],[6,2],[7,3],[6,2],[6,1],[7,0],[6,0],[3,1],[2,3],[1,2],[1,6],[0,3],[-2,1],[-6,-1],[-3,0],[-6,0],[-6,2],[-5,2],[-3,5],[-1,4],[0,6],[0,3],[6,3],[2,2],[3,2],[4,2],[5,2],[2,3],[3,1],[2,3],[1,2],[1,4],[2,3],[2,3],[4,1],[4,1],[5,3],[2,2],[1,4],[3,4],[2,5],[3,3],[4,1],[3,2],[1,3],[1,3],[0,5],[0,4],[1,3],[0,3],[2,3],[3,4],[0,2],[0,3],[-1,2],[1,4],[1,4],[2,2],[5,3],[5,3],[4,4],[6,2],[6,2],[3,2],[3,2],[0,3],[1,3],[1,4],[3,3],[6,1],[5,2],[2,2],[1,3],[1,3],[0,2],[0,4],[-1,3],[0,4],[-1,3],[0,4],[1,3],[0,2],[0,3],[-1,3],[0,4],[0,4],[1,4],[1,5],[1,3],[-1,4],[-2,5],[-1,3],[0,2],[-1,3],[2,4],[2,3],[3,2],[5,3],[5,2],[6,1],[5,3],[5,2],[8,3],[4,2],[3,4],[2,4],[2,3],[3,1],[4,0],[4,-1],[5,-3],[6,-4],[9,-3],[4,-1],[4,0],[2,2],[2,2],[2,3],[3,3],[1,3],[0,4],[1,4],[1,3],[3,4],[2,1],[2,2],[4,1],[3,-2],[1,-3],[2,-4],[2,-3],[3,-2],[3,1],[3,1],[3,2],[3,0],[5,0],[4,0],[2,2],[1,2],[2,0],[4,-1],[6,-2],[7,-2],[6,-2],[2,1],[3,2],[1,2],[1,5],[1,1],[2,2],[5,1],[4,1],[3,3],[0,4],[3,1],[7,1],[6,1],[4,3],[1,0],[4,-2],[5,-1],[5,-1],[3,2],[3,2],[3,5],[2,6],[1,3],[2,3],[3,1],[4,2],[2,2],[3,5],[2,2],[3,1],[3,1],[4,-1],[6,-1],[3,1],[3,2],[4,3],[3,3],[5,2],[4,3],[4,4],[1,2],[0,2],[-1,3],[-1,4],[0,3],[1,0],[3,0],[3,0],[4,-1],[5,-2],[5,-1],[5,0],[4,0],[6,-1],[5,-1],[2,0],[4,2],[4,2],[2,1],[4,0],[6,1],[2,0],[7,2],[4,3],[4,5],[2,3],[2,5],[1,3],[0,3],[0,2],[3,2],[4,3],[5,4],[4,-3],[6,-5],[6,-5],[4,-2],[5,0],[5,0],[3,1],[3,1],[1,2],[1,4],[0,4],[2,5],[1,2],[4,2],[4,2],[3,3],[1,3],[1,5],[1,6],[2,3],[2,4],[2,2],[2,3],[2,3],[1,4],[2,3],[2,2],[2,3],[4,6],[2,3],[0,3],[-1,4],[0,3],[1,3],[3,2],[3,1],[2,2],[2,4],[1,4],[1,3],[0,5],[0,4],[1,4],[2,0],[3,-1],[1,-2],[1,-4],[1,-3],[2,-3],[2,-1],[4,-1],[7,1],[4,1],[3,2],[3,2],[5,2],[3,3],[3,5],[0,3],[1,6],[1,6],[1,4],[2,3],[3,4],[1,3],[-1,2],[-1,3],[0,3],[2,2],[4,3],[5,0],[6,0],[8,1],[4,1],[7,4],[7,4],[4,1],[2,4],[0,3],[0,4],[-2,6],[2,3],[6,2],[6,-1],[9,0],[2,-2],[5,-3],[5,-3],[8,-2],[4,-2],[3,1],[5,1],[6,0],[2,3],[3,6],[3,5],[3,2],[5,1],[4,2],[3,3],[4,7],[1,3],[2,3],[2,2],[4,3],[2,1],[4,3],[3,1],[3,1],[4,0],[3,0],[2,-1],[2,-1],[3,0],[3,0],[3,1],[3,1],[2,1],[2,1],[2,3],[3,2],[3,0],[3,0],[3,-1],[5,0],[4,-1],[4,-2],[4,-1],[2,0],[3,1],[1,2],[2,3],[3,3],[3,0],[5,0],[5,-1],[10,1],[4,0],[6,0],[3,1],[4,0],[3,0],[3,-1],[2,0],[2,0],[3,1],[2,1],[3,1],[3,0],[2,-1],[1,0],[5,-4],[4,-4],[2,-1],[2,-1],[3,0],[2,1],[3,1],[3,1],[3,0],[1,-1],[2,-1],[1,-1],[2,-1],[2,-1],[3,0],[3,0],[1,-1],[3,-1],[2,-1],[2,0],[2,0],[2,-1],[1,0],[2,-1],[0,-1],[0,-3],[1,-2],[2,-4],[2,-4],[1,0],[1,-1],[4,1],[2,0],[2,-1],[1,-2],[2,0],[3,-1],[2,-1],[1,1],[1,1],[0,2],[0,2],[-1,2],[-1,3],[-2,2],[1,1],[2,1],[4,1],[8,1],[7,1],[3,0],[2,-1],[4,-1],[2,0],[5,1],[3,1],[3,1],[3,3],[2,2],[3,1],[2,0],[4,1],[4,0],[4,0],[2,1],[4,1],[2,2],[2,2],[2,2],[0,3],[-2,2],[-2,1],[-1,2],[-2,2],[0,3],[-1,3],[1,2],[-1,4],[1,4],[2,2],[3,2],[2,2],[2,2],[3,3],[5,6],[2,2],[2,2],[2,1],[2,1],[1,0],[3,0],[2,0],[2,0],[3,0],[2,1],[3,-1],[2,0],[2,0],[3,1],[3,0],[2,0],[3,-2],[4,-2],[4,-2],[2,-2],[5,0],[5,-1],[4,0],[2,1],[3,2],[3,1],[4,0],[4,0],[4,1],[3,0],[3,0],[5,0],[3,0],[5,1],[4,0],[4,0],[3,1],[3,1],[2,0],[4,0],[4,1],[1,0],[3,1],[2,1],[2,1],[3,-1],[3,0],[3,1],[3,1],[2,1],[3,2],[5,1],[4,1],[4,0],[1,1],[4,0],[2,2],[3,1],[3,2],[4,3],[3,1],[3,1],[5,2],[3,1],[4,1],[4,2],[3,1],[4,1],[6,2],[4,1],[5,2],[4,1],[4,2],[2,2],[3,3],[2,2],[2,2],[2,3],[1,3],[1,3],[0,2],[1,0],[3,-1],[1,0],[2,1],[9,1],[7,4],[9,4],[8,3],[5,1],[9,0],[13,0],[18,-2],[4,1],[7,4],[6,4],[4,2],[4,0],[8,-2],[8,-3],[9,-6],[8,-9],[7,-7],[7,0],[7,2],[9,-1],[9,-1],[16,0],[20,0],[5,1],[9,2],[6,1],[9,0],[8,-1],[9,-1],[7,-2],[6,-2],[6,-3],[4,-4],[5,-5],[6,-6],[6,-2],[6,-2],[7,-1],[14,-2],[9,-3],[16,-6],[14,-4],[7,-1],[7,0],[11,-3],[12,-4],[10,-4],[11,-2],[5,-1],[8,0],[7,-1],[12,-5],[12,-5],[11,-2],[4,1],[16,3],[15,1],[12,3],[10,0],[14,0],[14,-1],[3,-1],[8,-4],[1,-1],[2,-1],[1,-1],[1,-2],[1,-1],[2,-3],[1,-2],[2,-1],[3,-3],[2,-3],[2,-2],[3,-3],[2,-2],[1,-1],[3,-2],[1,-2],[2,-2],[2,-3],[1,-3],[1,-1],[1,-3],[1,-1],[1,-4],[1,-1],[2,-3],[1,-1],[3,-2],[2,-1],[2,-2],[3,-2],[2,-2],[1,-2],[1,-1],[2,-2],[1,-1],[4,-2],[3,-2],[2,-1],[2,-1],[2,-1],[2,-2],[2,-1],[1,-2],[2,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-4],[0,-4],[0,-1],[1,-2],[2,-3],[1,-3],[2,-2],[0,-3],[-1,-2],[-1,-2],[-2,-4],[-2,-3],[-2,-2],[-2,-3],[-2,-1],[-3,-3],[-3,-1],[-4,-1],[-2,-1],[-5,-1],[-3,-1],[-3,-1],[-2,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-2,-2],[-2,-2],[-1,-1],[-3,-2],[-2,0],[-3,-3],[-3,-3],[-1,-1],[-1,-2],[-1,-3],[0,-3],[-1,-7],[1,-6],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-3],[1,-2],[1,-1],[0,-3],[0,-3],[0,-5],[0,-3],[0,-2],[1,-1],[1,-1],[2,-1],[3,-2],[2,-2],[1,-2],[2,-2],[2,-2],[2,-2],[2,-2],[1,-1],[1,-1],[2,-1],[3,-2],[3,-1],[2,-1],[2,-1],[2,-2],[2,-1],[1,-2],[1,-1],[2,-1],[1,-1],[1,-2],[1,-3],[1,-3],[1,-2],[1,-1],[1,-2],[2,-2],[1,-1],[2,-3],[0,-1],[2,-5],[-3,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-3],[1,-2],[0,-2],[-2,-2],[-2,-1],[-5,-3],[-4,-1],[-2,-1],[0,-2],[0,-1],[2,-1],[2,-3],[1,-2],[1,-3],[2,-2],[1,-1],[1,-3],[2,-3],[1,-2],[1,0],[1,0],[4,0],[2,0],[3,1],[4,0],[4,-1],[1,0],[5,0],[3,0],[1,0],[3,-2],[3,-2],[2,-1],[2,0],[3,0],[3,0],[3,0],[4,-1],[3,0],[2,0],[2,-2],[2,-2],[2,-2],[3,-1],[4,0],[3,0],[3,0],[3,-2],[1,-1],[2,-3],[2,-3],[1,-2],[2,-1],[1,-2],[1,-1],[0,-3],[2,-1],[3,-2],[1,-2],[0,-3],[1,-1],[0,-2],[-1,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-1],[0,-3],[0,-2],[2,-2],[2,0],[3,-1],[2,0],[6,-2],[5,-1],[2,0],[3,-1],[3,0],[4,0],[2,0],[3,-1],[2,0],[3,-1],[4,-2],[4,-3],[3,-2],[3,-2],[2,-1],[1,0],[4,0],[5,-1],[3,0],[3,-1],[2,0],[2,-1],[1,-1],[1,-1],[1,-3],[0,-2],[1,-1],[-1,-2],[0,-5],[0,-1],[0,-3],[0,-3],[-1,-3],[0,-1],[0,-2],[-3,-3],[-3,-5],[-2,-2],[-1,-2],[-2,-3],[-1,-3],[-1,-3],[-1,-4],[-1,-3],[-1,-3],[-1,-4],[-1,-3],[-2,-2],[-3,-2],[-2,-2],[-3,-2],[-3,-2],[-4,-2],[-4,-1],[-4,-1],[-3,-1],[-3,0],[-2,-1],[0,-2],[1,-1],[2,-1],[0,-1],[2,0],[2,-1],[3,-3],[2,-1],[1,-1],[1,0],[3,-1],[3,-2],[3,-1],[1,-1],[1,-2],[0,-2],[0,-2],[-1,-1],[-1,-3],[0,-2],[0,-3],[0,-3],[1,-3],[2,-3],[1,-2],[1,-3],[1,-2],[0,-2],[0,-3],[-1,-5],[0,-3],[0,-3],[-1,-2],[-1,-4],[0,-3],[-1,-3],[-2,-4],[-2,-4],[-1,-3],[1,-2],[3,-3],[1,-2],[3,-1],[2,-1],[2,-1],[3,-3],[2,-2],[1,-2],[2,-3],[0,-1],[-1,-1],[-3,-2],[-3,-1],[-2,-2],[-4,-2],[-2,-1],[-4,0],[-7,0],[-2,-1],[-1,0],[-3,-2],[-5,-4],[-6,-5],[-2,-2],[-4,-3],[-3,-2],[-3,-2],[-5,-2],[-2,-2],[-4,-2],[-4,-1],[-3,-1],[-3,-1],[-2,0],[-1,1],[0,1],[0,1],[-2,2],[-1,2],[-1,1],[-2,1],[-2,1],[-2,0],[-2,2],[-2,1],[-2,1],[-2,0],[-3,0],[-3,2],[-2,-1],[-1,0],[-2,-2],[-1,-2],[-3,-4],[-2,-2],[-2,-2],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-1,-2],[-2,-2],[-1,-1],[-2,-1],[-1,-1],[-3,-2],[0,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-2],[-2,-1],[-1,-3],[-1,-1],[-2,-2],[-1,-1],[-2,-2],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-2,-1],[-2,0],[-4,-1],[-3,-1],[-3,-1],[-5,0],[-5,-1],[-4,-1],[-4,-1],[-3,-3],[-2,-1],[-3,-2],[-3,-1],[-3,1],[-4,0],[-3,1],[-3,0],[-3,1],[-1,1],[-2,1],[-2,1],[-1,2],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-5,1],[-8,-1],[-5,0],[-7,-2],[-10,-3],[-5,-3],[-2,-2],[-5,-3],[-3,-1],[-5,-4],[-3,-3],[-4,-4],[-2,-4],[-3,-3],[-1,-4],[-3,-3],[-4,-3],[-3,-3],[-1,-3],[4,-3],[6,-5],[5,-5],[5,-4],[5,-5],[5,-6],[4,-3],[4,-2],[4,-2],[3,0],[6,-2],[5,-1],[5,-2],[7,-4],[4,-3],[3,-4],[2,-3],[0,-4],[1,-4],[-1,-5],[-1,-3],[0,-1],[-4,-3],[-5,-3],[-10,-4],[-9,-2],[-7,-2],[-10,-1],[-10,0],[-10,-2],[-10,-2],[-8,-2],[-5,-1],[-2,-2],[-3,-5],[-2,-4],[-1,-2],[-4,-2],[-4,-3],[-6,-3],[-6,-3],[-3,-5],[-7,-8],[-9,-6],[-6,-6],[-7,-6],[-6,-5],[-5,-5],[-3,-4],[-2,-6],[-5,-4],[-4,-5],[-2,-3],[-1,-4],[0,-3],[-3,-4],[-3,-5],[-3,-3],[-5,-4],[-5,-2],[-7,-3],[-9,-1],[-9,-1],[-5,0],[-1,-1],[-2,-5],[-2,-6],[-1,-9],[-3,-8],[-3,-8],[-2,-7],[-1,-5],[0,-7],[-1,-8],[0,-5],[-1,-3],[1,-7],[1,-7],[2,-7],[0,-5],[0,-4],[0,-7],[1,-6],[1,-3],[0,-1],[6,-2],[7,-1],[4,-1],[4,-1],[4,-1],[3,-1],[6,-3],[6,-3],[4,-2],[3,0],[6,-1],[5,0],[8,-1],[6,-2],[8,-3],[6,-2],[9,0],[12,1],[20,2],[7,1],[6,-1],[8,-1],[8,-3],[11,-5],[9,-5],[4,-2],[6,-5],[5,-3],[5,-2],[9,-4],[6,-5],[6,-3],[9,-4],[4,-2],[4,-2],[1,-3],[2,-4],[2,-4],[1,-3],[-1,-2],[-3,-2],[-2,-2],[-1,-3],[0,-2],[1,-3],[1,-3],[3,-4],[1,-2],[1,-1],[1,-1],[3,-4],[1,-2],[2,-2],[1,-2],[2,-2],[2,-1],[2,-2],[2,-1],[1,-1],[2,-2],[2,-2],[2,-1],[3,-1],[4,0],[1,0],[5,0],[2,0],[3,1],[4,0],[3,0],[4,1],[3,0],[1,1],[6,0],[1,0],[4,1],[2,0],[3,0],[2,0],[4,1],[3,0],[3,2],[1,1],[2,0],[2,3],[2,0],[5,4],[2,1],[2,1],[2,1],[2,2],[3,2],[1,1],[1,1],[1,1],[1,1],[0,2],[1,1],[0,1],[1,3],[-1,2],[0,2],[0,2],[1,1],[1,2],[0,1],[1,1],[1,0],[2,1],[4,0],[1,-1],[2,1],[2,0],[3,1],[2,0],[3,0],[2,0],[2,-2],[1,-3],[2,-2],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-1],[2,-2],[1,-1],[2,-1],[1,0],[1,-2],[1,-3],[-1,-2],[0,-3],[0,-2],[-1,-2],[1,-3],[0,-1],[0,-2],[0,-2],[2,-4],[1,-3],[2,-3],[1,-4],[1,-2],[1,-3],[2,-5],[0,-2],[1,-1],[1,-2],[2,-4],[0,-1],[1,-2],[1,-2],[2,-4],[1,-3],[2,-5],[1,-3],[2,-4],[2,-3],[1,-2],[3,-2],[3,-2],[2,-2],[3,-3],[2,-2],[1,-1],[3,-2],[1,-1],[2,-2],[1,-1],[3,-3],[2,-1],[3,-1],[2,-1],[2,0],[2,-1],[4,-1],[1,-1],[3,0],[3,0],[3,0],[4,1],[1,0],[2,0],[2,0],[2,0],[2,0],[3,-1],[3,0],[3,-1],[1,-1],[2,-2],[2,-2],[1,-2],[2,-2],[1,-3],[1,-4],[1,-3],[1,-3],[1,-2],[1,-1],[2,-3],[2,-2],[3,-1],[7,-1],[5,0],[7,0],[5,0],[3,0],[3,0],[4,-1],[3,-1],[1,0],[3,-1],[1,0],[1,-1],[2,-2],[2,-1],[2,-1],[2,-2],[1,-1],[2,-2],[1,-1],[1,-1],[2,-1],[1,-2],[1,-2],[2,-2],[1,-2],[2,-3],[0,-2],[1,-2],[1,-2],[2,-4],[1,-3],[1,-1],[1,-2],[1,-1],[2,-2],[1,-1],[2,-1],[1,0],[1,-1],[3,-1],[3,-1],[2,-1],[2,-1],[2,-1],[3,-1],[3,-2],[2,0],[2,-1],[2,0],[14,0],[3,1],[2,0],[1,-1],[6,0],[3,-1],[2,0],[3,-1],[2,-1],[1,0],[3,-1],[3,-2],[1,-1],[2,-1],[1,0],[2,-2],[2,-1],[1,-1],[1,-1],[3,-1],[1,-1],[2,-1],[2,0],[1,-1],[2,0],[2,-1],[3,-2],[3,-1],[3,-3],[2,-1],[2,-2],[2,-3],[1,-3],[0,-2],[0,-2],[0,-3],[-1,-2],[0,-1],[-1,-2],[0,-2],[-1,-4],[-1,-2],[-1,-1],[-1,-3],[-1,-1],[-3,-5],[-1,-2],[-1,-1],[-2,-2],[-3,-4],[-2,-3],[-1,-3],[-1,-2],[0,-2],[0,-2],[0,-2],[1,-3],[1,-3],[1,-3],[1,-3],[1,-3],[0,-2],[1,-1],[0,-2],[0,-2],[1,-3],[0,-3],[0,-2],[1,-3],[0,-3],[0,-2],[1,-4],[0,-4],[1,-2],[1,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-1],[-2,-3],[-2,-2],[-2,-2],[-2,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-4],[0,-2],[-2,-5],[1,-6],[-1,-7],[0,-1],[-1,-3],[-2,-2],[-1,-1],[-3,-2],[-5,-2],[-5,-2],[-4,-2],[-4,-1],[-5,0],[-2,-1],[-4,0],[-4,0],[-2,0],[-3,-1],[-3,0],[-3,-1],[-3,-1],[-3,-4],[-4,-2],[-7,-4],[-5,-2],[-7,-4],[-4,-2],[-7,-3],[-4,-2],[-5,-3],[-1,-1],[-4,-2],[-4,-1],[-2,-1],[-3,-2],[-2,0],[-3,0],[-3,1],[-3,0],[-7,2],[-3,1],[-2,0],[-2,1],[-2,-1],[-2,0],[-5,-1],[-3,-1],[-5,0],[-4,-1],[-4,-1],[-2,-1],[0,-2],[1,-3],[0,-2],[0,-3],[1,-1],[-1,-1],[0,-2],[0,-3],[-1,-2],[-1,-2],[-1,-3],[-2,-3],[-1,-3],[-1,-2],[-2,-3],[-2,-3],[-3,-3],[-2,-3],[-4,-5],[-2,-2],[-2,-2],[-1,0],[-1,-1],[-1,-2],[-2,-1],[-2,-1],[-4,-3],[-4,-2],[0,-1],[-2,0],[-1,-1],[-2,-1],[-2,0],[-3,0],[-3,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[-3,-1],[-1,-1],[-2,-1],[-2,-1],[-3,-2],[-2,-1],[-2,-2],[-1,-1],[-2,-3],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-3,-3],[-1,-2],[-2,-1],[-3,-1],[-1,0],[-3,0],[-2,0],[-2,1],[-4,1],[-3,0],[-4,2],[-4,1],[-3,1],[-2,0],[-3,0],[-3,0],[-2,0],[-3,1],[-1,0],[-3,1],[-1,0],[-1,0],[-2,-1],[-2,-2],[-1,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-1],[-4,-1],[-5,-2],[-5,-1],[-5,-1],[-2,-1],[-5,0],[-3,1],[-4,0],[-3,0],[-6,-1],[-1,0],[-4,0],[-5,0],[-1,-1],[-2,0],[-2,0],[-4,1],[-3,0],[-2,0],[-2,0],[-4,0],[-2,0],[-4,0],[-3,-1],[-5,0],[-5,0],[-3,1],[-3,-1],[-2,0],[-2,-1],[-4,-1],[-3,-2],[-2,-1],[-3,-2],[-4,-4],[-3,-3],[-2,-1],[-3,0],[-2,0],[-4,1],[-8,-1],[-6,-2],[-8,-4],[-12,-7],[-12,-8],[-14,-9],[-11,-8],[-7,-3],[-8,-1],[-9,-1],[-22,-8],[-21,-8],[-17,-8],[-9,-2],[-10,0],[-14,-1],[-6,-1],[-3,-2],[-13,-12],[-7,-9],[-6,-6],[-4,-3],[-5,-3],[-8,-3],[-4,0],[-2,0],[-10,5],[-12,3],[-14,2],[-13,1],[-10,2],[-11,4],[-6,2],[-5,1],[-4,0],[-7,-2],[-9,-2],[-14,0],[-14,-1],[-8,0],[-5,0],[-7,3],[-2,1],[-3,0],[-10,-5],[-11,-5],[-6,-6],[-5,-7],[-3,-7],[-4,-6],[-4,-5],[-2,-2],[-8,-2],[-3,-1],[-5,-2],[-5,-3],[-8,-5],[-5,-4],[-6,-7],[-5,-7],[-4,-6],[-2,-5],[-2,-5],[-2,-3],[-3,-5],[-3,-2],[-6,-4],[-11,-3],[-4,-1],[-9,-1],[-7,-2],[-5,-2],[-3,-3],[-2,-4],[-1,-3],[0,-5],[-2,-4],[-1,-4],[0,-5],[-4,-6],[-2,-7],[-1,-7],[-1,-4],[0,-3],[-1,-1],[-4,-6],[-4,-5],[-6,-5],[-10,-7],[-5,-3],[-6,-3],[-2,-2],[-4,-3],[-4,-5],[-4,-3],[-3,-2],[-7,-2],[-5,-1],[-2,-1],[-7,-5],[-7,-4],[-4,-4],[-5,-6],[-3,-4],[-3,-4],[-2,-5],[-4,-7],[-2,-4],[-1,-2],[-1,-1],[-5,-2],[-3,-2],[-6,-5],[-2,-4],[-3,-6],[-3,-4],[-3,-4],[-4,-2],[-5,-1],[-13,-2],[-2,0],[-8,-2],[-6,-1],[-8,-1],[-4,-1],[-8,1],[-2,-1],[-3,-1],[-1,-3],[-3,-5],[-3,-4],[-4,-5],[-2,-4],[-5,-7],[-3,-3],[-3,-4],[-3,-2],[-2,-1],[-2,-3],[-2,-3],[0,-4],[0,-5],[-1,-4],[-2,-6],[-1,-4],[-1,-3],[-4,-2],[-7,-1],[-7,-1],[-6,-4],[-6,-2],[-7,-1],[-7,-1],[-5,-2],[-8,-4],[-6,-3],[-7,-3],[-6,0],[-7,-1],[-5,1],[-7,3],[-6,4],[-7,5],[-5,4],[-5,3],[-4,2],[-8,-1],[-5,-2],[-5,-4],[-6,-6],[-5,-3],[-3,-2],[-2,-6],[-2,-3],[-4,-1],[-9,-1],[-11,-1],[-3,0],[-3,-1],[-1,-3],[0,-2],[-4,-1],[-9,1],[-5,0],[-4,-1],[-5,-3],[-5,-4],[-3,-2],[-3,-3],[-3,-1],[-4,-6],[-1,-4],[-2,-3],[-4,-2],[-5,0],[-5,0],[-3,-3],[-2,-3],[-2,-7],[-2,-11],[-3,-11],[-3,-11],[-4,-10],[-3,-5],[-5,-5],[-6,-10],[-4,-5],[-4,-7],[-4,-5],[-2,-2],[-1,-2],[-2,-5],[0,-7],[3,-5],[1,-6],[2,-9],[0,-5],[-1,-9],[-2,-10],[-1,-9],[0,-10],[1,-8],[0,-11],[1,-8],[1,-11],[-1,-13],[0,-11],[-2,-14],[0,-11],[0,-12],[0,-7],[-1,-7],[-3,-6],[-5,-4],[-6,-4],[-7,-3],[-7,-1],[-4,0],[-9,-3],[-1,-1],[-4,-3],[-4,-7],[-2,-3],[-4,-4],[-2,-3],[0,-4],[-1,-7],[0,-4],[0,-5],[1,-4],[0,-4],[1,-2],[3,-5],[2,-1],[0,-3],[1,-3],[-2,-5],[-3,-3],[-2,-1],[-5,-3],[-3,-1],[-2,-3],[1,-4],[1,-4],[2,-3],[1,-2],[1,-4],[1,-5],[0,-3],[1,-3],[6,-6],[6,-6],[4,-4],[3,-3],[1,-1],[6,-5],[5,-3],[7,-4],[4,-4],[7,-6],[2,-3],[4,-10],[3,-9],[1,-4],[4,-14],[4,-11],[2,-6],[0,-2],[-2,-5],[-3,-2],[-4,-3],[-1,-2],[-2,-5],[0,-8],[-1,-6],[0,-6],[-6,-12],[-5,-8],[-5,-6],[-5,-3],[-5,-1],[-10,1],[-2,1],[-7,2],[-6,2],[-6,1],[-5,0],[-9,-3],[-8,-4],[-6,-3],[-7,-2],[-8,-3],[-4,-1],[-6,-4],[-8,-7],[-9,-7],[-5,-2],[-8,-1],[-4,-2],[-3,-4],[0,-5],[-1,-7],[2,-6],[1,-4],[-1,-4],[-3,-5],[-5,-4],[-8,-2],[-8,-2],[-4,-3],[-3,-6],[0,-5],[-1,-3],[0,-3],[-2,-10],[-1,-8],[1,-10],[0,-7],[0,-6],[0,-6],[-4,-11],[-3,-8],[-1,-7],[0,-4],[0,-6],[1,-3],[1,-4],[1,-3],[-1,-3],[-16,-7],[-19,-9],[-8,-3],[-8,-2],[-13,-1],[-11,-1],[-8,0],[-5,-1],[-4,-3],[-2,-6],[-1,-7],[-2,-8],[-3,-4],[-8,-4],[-5,-2],[-8,-5],[-9,-7],[-4,-2],[-8,-2],[-10,-1],[-3,0],[-6,-1],[-8,-2],[-10,-2],[-11,-4],[-10,-3],[-10,-4],[-3,-2],[2,-4],[9,-7],[8,-7],[5,-3],[7,-3],[5,-4],[4,-3],[5,-5],[4,-6],[4,-6],[4,-3],[8,-3],[9,-5],[9,-3],[8,-2],[10,-2],[4,-1],[2,-3],[2,-9],[1,-7],[2,-8],[4,-11],[4,-9],[3,-9],[4,-11],[4,-8],[0,-4],[0,-3],[-4,-7],[-2,-4],[-2,-7],[-1,-6],[-4,-8],[-4,-8],[-2,-5],[1,-8],[0,-4],[-1,-3],[-3,-5],[-1,-4],[1,-7],[0,-7],[3,-10],[3,-9],[5,-9],[3,-5],[4,-8],[4,-7],[1,-5],[1,-3],[0,-2],[-4,-5],[-8,-6],[-11,-6],[-7,-3],[-4,-2],[-1,-2],[0,-5],[1,-8],[1,-3],[3,-6],[5,-5],[4,-5],[1,-2],[0,-2],[2,-6],[1,-7],[2,-8],[1,-5],[3,-6],[5,-5],[13,-10],[5,-4],[1,-2],[3,-5],[0,-6],[-1,-7],[0,-4],[-1,-6],[0,-5],[-2,-5],[-2,-2],[-2,-2],[-1,-4],[0,-7],[-1,-4],[-3,-5],[-2,-3],[0,-2],[3,-9],[4,-9],[3,-9],[1,-6],[1,-4],[-2,-6],[-2,-5],[0,-3],[-3,-3],[-3,-5],[0,-1],[-3,-4],[-2,-4],[0,-3],[-1,-4],[-3,-7],[-3,-3],[-5,-4],[-2,-3],[-3,-6],[-3,-7],[-3,-5],[-3,-5],[-1,-3],[0,-2],[2,-8],[1,-6],[0,-5],[0,-6],[-2,-5],[-5,-8],[-7,-7],[-7,-7],[-4,-4],[-3,-6],[-3,-6],[0,-7],[-1,-5],[-4,-8],[-7,-6],[-8,-6],[-3,-4],[-3,-4],[-3,-5],[-3,-3],[-7,-3],[-3,-3],[-2,-5],[-2,-3],[-6,-5],[-5,-4],[-2,-4],[-4,-8],[-5,-7],[-2,-6],[-1,-7],[-2,-11],[-2,-10],[-2,-5],[-2,-8],[-2,-4],[-1,-3],[1,-3],[-1,-3],[-4,-9],[-1,-6],[-1,-2],[-5,-5],[-4,-5],[-4,-6],[-6,-6],[-6,-5],[-6,-6],[-4,-8],[-8,-11],[-5,-8],[-4,-6],[-3,-5],[-9,-10],[-5,-5],[-1,-3],[0,-1],[4,-5],[2,-4],[2,-8],[4,-7],[5,-7],[4,-7],[3,-7],[3,-3],[9,-2],[8,-5],[7,-6],[6,-6],[3,-4],[2,-3],[-1,-6],[-1,-4],[0,-2],[2,-1],[8,-2],[4,-1],[9,-5],[8,-4],[7,-2],[7,-3],[3,-1],[5,-5],[4,-3],[2,-3],[1,-1],[2,-5],[0,-3],[1,-4],[0,-3],[1,-4],[1,-2],[3,-3],[3,-4],[2,-3],[3,-2],[1,-3],[1,-4],[0,-3],[0,-4],[1,-4],[0,-3],[0,-5],[-1,-3],[-2,-5],[-1,-3],[-1,-4],[-2,-4],[0,-3],[-1,-5],[-1,-3],[-1,-4],[0,-4],[-1,-5],[-2,-7],[-2,-8],[-1,-5],[-3,-6],[-3,-3],[-6,-2],[-9,-1],[-10,-1],[-11,0],[-9,0],[-13,1],[-10,1],[-10,0],[-7,0],[-4,-1],[-7,-2],[-6,-3],[-6,-4],[-6,-2],[-6,-1],[-6,-2],[-8,-1],[-6,-3],[-7,-2],[-5,0],[-11,1],[-6,1],[-4,0],[-4,-1],[-6,-2],[-7,-3],[-5,-4],[-5,-4],[-4,-4],[-4,-4],[-2,-5],[-1,-4],[-1,-3],[-2,-6],[-1,-6],[0,-6],[0,-8],[0,-5],[2,-7],[3,-9],[3,-8],[3,-6],[2,-5],[2,-4],[0,-5],[-1,-4],[-1,-7],[-1,-3],[1,-6],[1,-4],[0,-3],[-2,-3],[-2,-4],[-1,-3],[1,-6],[0,-4],[0,-2],[0,-6],[-2,-6],[-2,-6],[-1,-5],[0,-3],[2,-4],[0,-5],[-2,-5],[-2,-5],[-2,-5],[-2,-7],[-1,-5],[1,-7],[1,-6],[1,-4],[0,-4],[-1,-3],[-5,-5],[-4,-4],[-5,-5],[-6,-8],[-3,-4],[-3,-3],[-2,-1],[-2,0],[-4,-1],[-7,-1],[-9,0],[-6,1],[-6,1],[-3,0],[-5,3],[-1,0],[-3,-2],[-4,-2],[-4,0],[-8,0],[-10,0],[-5,1],[-3,1],[-2,0],[0,-1],[2,-4],[3,-4],[3,-5],[3,-4],[1,-6],[1,-4],[0,-5],[0,-3],[0,-7],[-1,-6],[0,-3],[-4,-6],[-5,-6],[-5,-4],[-1,-1],[-3,-3],[-2,-6],[-1,-4],[-1,-5],[-3,-4],[-3,-3],[-4,-5],[-2,-4],[-6,-5],[-4,-2],[-6,-2],[-2,-1],[-3,-6],[-3,-4],[-4,-2],[-5,-1],[-7,0],[-4,-1],[-4,-2],[-9,-4],[-12,-3],[-6,-1],[-4,-2],[-3,-3],[-4,-5],[-3,-5],[0,-4],[1,-5],[1,-3],[5,-8],[0,-2],[0,-3],[-2,-7],[0,-2],[1,-3],[-1,-7],[0,-2],[-1,-3],[-3,-6],[-3,-4],[-9,-3],[-4,-1],[-3,-1],[-5,-4],[-7,-4],[-7,-2],[-12,-2],[-10,-3],[-4,-2],[-6,-4],[-5,-5],[-4,-1],[-5,0],[-9,1],[-4,-1],[-6,-4],[-2,-3],[-3,-6],[-2,-5],[-1,-6],[-2,-5],[-4,-6],[-2,-5],[-2,-5],[-2,-4],[-3,-3],[-5,-2],[-7,-2]],[[7487,5050],[-1,0],[-1,-3],[-2,-5],[0,-4],[-1,-4],[1,-6],[2,-5],[2,-3],[5,-8],[2,-6],[2,-4],[1,-2],[-1,-2],[-7,-4],[-9,-6],[-11,-6],[-8,-4],[-9,-3],[-7,-4],[-8,-7],[-11,-6],[-7,-4],[-4,-3],[-7,-4],[-3,-2],[2,-7],[-1,-2],[-2,-3],[-7,-4],[-4,-4],[-3,-3],[-1,-4],[0,-4],[1,-6],[5,-10],[5,-11],[6,-10],[2,-6],[4,-8],[1,-3],[0,-2],[0,-6],[2,-4],[2,-1],[8,-6],[3,-3],[4,-7],[1,-4],[1,-3],[0,-4],[-2,-3],[-4,-5],[-4,-2],[-3,-5],[-1,-3],[-1,-3],[0,-4],[-2,-4],[-3,-4],[-4,-6],[-1,-2],[-3,-7],[-1,-4],[-3,-8],[-1,-5],[-1,-4],[0,-3],[1,-4],[1,-4],[1,-6],[0,-3],[-1,-6],[0,-1],[-2,-7],[0,-7],[-1,-6],[0,-1],[-1,-3],[-1,-4],[0,-4],[0,-4],[3,-8],[1,-2],[2,-6],[1,-4],[1,-1],[-1,-5],[-2,-4],[-1,-4],[0,-2],[1,-2],[6,-6],[8,-8],[4,-4],[4,-5],[5,-9],[5,-5],[1,-3],[3,-6],[3,-7],[3,-3],[3,-2],[4,-3],[5,-3],[3,-5],[2,-6],[3,-7],[3,-5],[2,-7],[2,-4],[2,-5],[2,-6],[1,-3],[1,-3],[2,-5],[0,-5],[0,-3],[1,-4],[2,-5],[3,-5],[3,-2],[5,-2],[6,-1],[3,-1],[4,0],[3,-1],[2,-2],[1,-3],[1,-6],[2,-6],[2,-10],[1,-5],[0,-5],[1,-6],[3,-8],[2,-6],[0,-5],[3,-7],[3,-4],[1,-3],[1,-2],[-1,-2],[-2,-4],[-3,-3],[-6,-3],[-7,-3],[-4,-1],[-6,-2],[-4,-2],[-3,-4],[-2,-3],[-3,-5],[-2,-6],[-2,-4],[-2,-6],[-2,-7],[-2,-5],[-2,-6],[-1,-4],[-1,-3],[0,-3],[1,-3],[1,-4],[2,-3],[5,-5],[7,-6],[6,-6],[3,-2],[4,-1],[4,-2],[9,-4],[4,-2],[6,-5],[3,-1],[3,-4],[-2,-5],[-2,-4],[0,-5],[0,-2],[5,-7],[4,-7],[3,-6],[2,-7],[1,-6],[1,-4],[1,-5],[1,-5],[2,-4],[3,-3],[6,-5],[8,-5],[5,-3],[4,-4],[6,-4],[2,-2],[3,-6],[2,-3],[2,-7],[1,-7],[1,-5],[0,-6],[1,-7],[0,-6],[0,-4],[-1,-3],[1,-4],[5,-9],[4,-6],[3,-5],[3,-4],[5,-3],[3,-2],[8,-3],[5,-2],[8,-3],[8,-2],[7,-1],[8,-2],[8,-2],[8,-1],[6,-1],[10,-3],[5,-1],[7,-3],[8,-3],[6,-2],[5,-1],[7,-3],[11,-3],[4,0],[6,0],[7,1],[10,3],[4,1],[8,1],[8,0],[8,-1],[8,-1],[9,-2],[1,0],[3,0],[4,0],[6,1],[4,0],[1,-1],[2,-2],[2,-2],[2,-3],[4,-5],[2,-3],[4,-4],[1,-3],[7,-4],[3,-2],[3,-2],[2,-2],[1,-2],[4,-5],[3,-2],[4,-4],[3,-2],[5,-4],[2,-3],[5,-4],[1,-3],[0,-5],[0,-4],[0,-1],[2,-5],[2,-3],[2,-5],[1,-2],[-2,-4],[-4,-7],[-5,-9],[-3,-7],[-2,-3],[-3,-4],[-1,-1],[-4,-1],[-5,-1],[-5,-1],[-4,-2],[-3,-2],[-6,-4],[-3,-2],[-6,-2],[-5,-3],[-5,-3],[-3,-2],[-4,-3],[0,-1],[1,-3],[3,-3],[4,-2],[7,-4],[8,-5],[5,-4],[7,-2],[11,-5],[9,-3],[2,-1],[3,0],[7,-2],[2,-1],[5,-3],[5,-2],[7,-3],[11,-3],[6,-3],[6,-2],[4,-2],[4,-2],[2,-2],[0,-3],[-2,-5],[-1,-4],[-6,-4],[-7,-6],[-6,-5],[-5,-4],[-4,-4],[-3,-4],[-1,-3],[1,-2],[4,-6],[5,-6],[4,-3],[5,-5],[2,-4],[0,-2],[-1,-2],[-3,-4],[-3,-5],[-3,-4],[-6,-5],[-4,-5],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-1],[0,-1],[-1,-3],[0,-2],[-1,-2],[0,-3],[0,-3],[-1,-3],[0,-2],[-1,-3],[0,-2],[0,-2],[-3,2],[-6,5],[-3,2],[-5,7],[-4,8],[0,2],[-1,5],[-2,6],[-2,3],[-4,2],[-3,1],[-4,2],[-11,6],[-5,3],[-3,2],[-3,5],[-1,2],[1,5],[2,4],[3,7],[1,2],[0,2],[-3,2],[-3,3],[-7,2],[-8,3],[-6,1],[-4,1],[-3,3],[-3,8],[-3,9],[-3,5],[-5,4],[-6,3],[-5,1],[-3,1],[-6,5],[-5,4],[-3,4],[-2,3],[-2,-1],[-4,-4],[-4,-6],[-3,-4],[-6,-6],[-6,-4],[-7,-5],[-6,-5],[-5,-5],[-5,-4],[-2,-3],[-2,-4],[-2,-3],[-1,-3],[-2,-1],[-4,0],[-7,1],[-9,3],[-10,4],[-9,4],[-10,4],[-7,4],[-3,4],[-4,7],[-5,8],[-5,5],[-5,5],[-1,2],[-1,3],[3,5],[2,4],[1,4],[-1,3],[-2,6],[-3,4],[-3,5],[-3,4],[-4,5],[-5,4],[-5,4],[-7,4],[-5,5],[-4,4],[-3,4],[-3,3],[-3,1],[-5,1],[-8,1],[-7,1],[-7,3],[-7,5],[-5,4],[-6,4],[-3,2],[-5,0],[-10,-1],[-9,-1],[-9,-3],[-7,0],[-6,-1],[-8,1],[-10,2],[-7,2],[-8,2],[-7,1],[-6,0],[-7,-1],[-8,-3],[-8,-4],[-7,-5],[-9,-6],[-9,-9],[-8,-6],[-7,-5],[-5,-2],[-5,-1],[-8,-1],[-11,0],[-7,0],[-5,-1],[-4,-1],[-4,-3],[-5,-5],[-4,-4],[-3,-3],[-2,-5],[-1,-4],[-2,-6],[0,-3],[2,-5],[0,-3],[-1,-2],[-2,-2],[-3,-1],[-5,-1],[-8,-2],[-4,0],[-8,-3],[-4,-2],[-8,-4],[-12,-4],[-11,-4],[-5,-2],[-7,-3],[-4,-2],[-5,-4],[-4,-3],[-5,-3],[-5,-3],[-5,-2],[-6,-2],[-6,0],[-5,-3],[-6,-3],[-4,-2],[-4,-3],[-3,-4],[-4,-3],[-2,-1],[-4,-1],[-4,0],[-7,1],[-4,1],[-6,3],[-5,2],[-6,1],[-6,0],[-8,0],[-5,0],[-7,0],[-8,2],[-5,1],[-5,1],[-5,0],[-4,-1],[-3,-3],[-2,-4],[-1,-2],[-2,-3],[-1,-4],[-2,-4],[-2,-4],[-2,-3],[-2,-3],[-1,-4],[-1,-3],[0,-1],[1,-4],[1,-3],[1,-7],[0,-5],[1,-6],[1,-5],[3,-7],[1,-4],[4,-8],[0,-4],[2,-6],[0,-3],[-1,-4],[-2,-5],[-3,-1],[-6,-2],[-8,-3],[-12,-4],[-5,1],[-5,0],[-7,0],[-8,-1],[-9,-1],[-7,0],[-7,-1],[-2,0],[-3,-2],[-8,-6],[-5,-4],[-6,-4],[-6,-5],[-7,-5],[-5,-6],[-3,-2],[-6,-4],[-6,-2],[-8,-3],[-4,-2],[-7,-2],[-7,0],[-7,2],[-9,3],[-7,4],[-8,4],[-7,4],[-7,4],[-4,3],[-3,4],[-1,0],[-2,4],[-3,8],[-2,4],[-2,6],[-1,4],[-4,5],[-1,1],[-3,1],[-8,3],[-3,3],[-2,1],[-3,5],[-1,4],[-3,6],[-4,3],[-3,4],[-3,3],[-4,3],[-8,3],[-4,1],[-5,6],[-5,5],[-6,7],[-4,5],[-3,3],[-1,4],[-1,0],[-3,4],[-1,1],[-5,0],[-7,1],[-6,0],[-3,2],[-2,2],[0,3],[0,4],[0,3],[-1,5],[-1,5],[0,5],[-2,5],[-2,6],[-2,6],[-1,6],[-2,5],[-2,5],[-3,6],[-2,5],[-3,6],[-3,3],[-4,4],[-2,3],[-4,4],[-3,4],[-2,3],[-5,3],[-1,2],[-3,3],[-4,5],[-4,4],[-3,3],[-4,3],[-4,2],[-1,1],[-6,2],[-5,3],[-6,2],[-3,4],[-4,4],[-2,4],[-3,5],[-2,6],[-3,2],[-5,2],[-8,3],[-3,0],[-3,0],[-10,-4],[-2,-1],[-5,0],[-10,3],[-11,3],[-9,4],[-3,2],[-4,3],[-8,6],[-7,5],[-9,5],[-1,2],[-1,4],[0,7],[-2,3],[-5,4],[-4,3],[-9,7],[-5,4],[-5,5],[-3,3],[-3,6],[-2,5],[-4,4],[-3,2],[-5,2],[-5,1],[-6,1],[-13,1],[-14,0],[-9,1],[-5,0],[-9,2],[-9,2],[-6,2],[-7,1],[-9,1],[-8,2],[-5,2],[-12,4],[-10,3],[-10,6],[-8,5],[-8,5],[-6,3],[-3,3],[-6,3],[-4,3],[-6,5],[-4,3],[-5,6],[-3,2],[-4,2],[-3,1],[-6,0],[-14,2],[-11,2],[-4,1],[-6,3],[-8,2],[-2,0],[-4,0],[-6,-2],[-14,-4],[-13,-4],[-7,-1],[-7,0],[-14,-1],[-13,1],[-11,1],[-14,2],[-3,1],[-3,-1],[-9,-1],[-3,1],[-2,1],[-7,2],[-8,2],[-3,0],[-4,-1],[-9,-2],[-5,-1],[-8,-1],[-6,-2],[-7,-3],[-10,-5],[-10,-6],[-3,-2],[0,-1],[-4,-11],[-3,-8],[-1,-2],[-6,-6],[-5,-5],[-5,-3],[-3,-2],[-7,-5],[-3,-2],[-5,-5],[-2,-2],[-5,-5],[-4,-6],[-6,-5],[-4,-2],[-8,-5],[-10,-6],[-10,-7],[-10,-7],[-10,-7],[-10,-7],[0,-4],[0,-3],[-8,-14],[-3,-7],[-3,-4],[-3,-3],[-2,-1],[-9,-1],[-13,0],[-13,-1],[-12,1],[-5,-3],[-11,-6],[-5,-2],[-4,-1],[-14,-2],[-10,-1],[-12,-1],[-13,-1],[-6,0],[-3,-1],[-1,-2],[-1,-3],[-2,-8],[-2,-10],[-4,-11],[-6,-10],[-6,-9],[-3,-3],[-1,0],[-5,-2],[-7,-2],[-10,-2],[-11,-1],[-14,-2],[-5,0],[-10,1],[-4,1],[-7,2],[-5,1],[-2,2],[-4,3],[-3,4],[-4,7],[-2,2],[-5,1],[-6,1],[-7,0],[-5,0],[-4,0],[-7,-2],[-5,0],[-10,1],[-6,2],[-8,2],[-5,1],[-9,1],[-4,1],[-2,1],[-4,1],[-4,2],[-1,1],[-5,7],[-5,8],[-2,4],[0,7],[-1,12],[0,4],[-5,10],[-3,7],[0,2],[2,6],[3,12],[4,12],[2,8],[0,2],[0,3],[-3,11],[-6,16],[-5,12],[-1,9],[0,12],[0,2],[0,8],[0,3],[0,7],[-1,4],[-2,6],[0,3],[-2,2],[-3,3],[-3,2],[-4,4],[-3,3],[-3,2],[-3,1],[-4,2],[-2,0],[-4,0],[-5,-2],[-6,-3],[-5,-2],[-1,-2],[-3,-1],[-4,-3],[-1,0],[-3,-2],[-3,-3],[-2,-2],[-1,-2],[-1,-1],[-1,-3],[-1,-3],[-1,-2],[-1,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-1],[-4,-1],[-6,0],[-3,-1],[-4,-1],[-2,0],[-3,0]],[[5426,4071],[-1,0],[-5,1],[-2,1],[-3,3],[-1,1],[-2,3],[-1,3],[-1,6],[0,3],[-1,5],[0,1],[0,5],[-1,3],[0,2],[-2,5],[-1,5],[-3,6],[-1,5],[-2,5],[-2,3],[-1,2],[-4,4],[-3,4],[-3,2],[-2,2],[-2,1],[-3,1],[-2,0],[-4,-1],[-3,-1],[-3,-2],[-2,0],[-3,-3],[-2,-1],[-3,-2],[-3,0],[-5,-2],[-5,-1],[-2,-1],[-4,-2],[-2,-1],[-4,-1],[-6,-3],[-3,0],[-4,-1],[-7,-1],[-6,-1],[-6,-1],[-7,-1],[-5,-2],[-5,-3],[-5,-3],[-2,-2],[-3,-2],[-2,-1],[-4,-1],[-4,-2],[-6,-2],[-5,-1],[-6,-1],[-3,0],[-3,0],[-1,-1],[-6,-1],[-7,-1],[-1,0],[-3,-1],[-3,-1],[-5,-1],[-2,0],[-4,-1],[-5,-2],[-3,-1],[-6,-1],[-6,-2],[-5,-1],[-7,-3],[-4,-1],[-2,-1],[-4,-1],[-4,-2],[-3,-2],[-6,-2],[-3,-2],[-2,-1],[-5,-3],[-6,-2],[-5,-3],[-4,-2],[-2,-1],[-5,-3],[-4,-1],[-2,-1],[-3,-2],[-2,0],[-4,-1],[-6,-1],[-3,0],[-4,1],[-7,3],[-6,2],[-5,1],[-6,2],[-6,1],[-7,2],[-5,0],[-4,0],[-4,0],[-6,-1],[-5,-1],[-7,-2],[-6,-1],[-3,-2],[-4,-1],[-5,-2],[-5,-2],[-3,-1],[-5,-1],[-5,-2],[-6,-1],[-5,-2],[-3,-1],[-3,-1],[-6,-3],[-6,-1],[-4,-2],[-4,-1],[-3,-1],[-1,-1],[-4,-1],[-2,-1],[-4,-1],[-2,-1],[-4,-1],[-1,-1],[-5,-2],[-3,-3],[-5,-2],[-4,-3],[-4,-3],[-6,-4],[-7,-4],[-6,-4],[-4,-4],[-1,0],[-2,-2],[-1,0],[-2,-2],[-6,-5],[-6,-4],[-5,-5],[-10,-7],[-5,-4],[-4,-3],[-3,-2],[-4,-4],[-4,-5],[-5,-5],[-5,-5],[-5,-4],[-3,-3],[-1,-2],[-3,-2],[-2,-2],[-1,-1]],[[4809,3938],[-4,-3],[-5,-3],[-4,-3],[-5,-3],[-3,-2],[-5,-3],[-2,-1],[-4,-3],[-2,-1],[-4,-3],[-6,-3],[-5,-4],[-4,-2],[-4,-3],[-3,-2],[-7,-4],[-5,-4],[-6,-4],[-7,-4],[-6,-4],[-6,-4],[-6,-4],[-6,-3],[-2,-2],[-2,-1],[-6,-4],[-6,-4],[-5,-4],[-5,-3],[-4,-2],[-12,-9],[-9,-5],[-10,-7],[-12,-9],[-8,-5],[-8,-5],[-9,-6],[-8,-6],[-9,-6],[-7,-4],[-2,-1],[-6,-5],[-7,-6],[-10,-8],[-9,-7],[-7,-6],[-2,-2],[-6,-5],[-6,-5],[-7,-7],[-4,-5],[-3,-4],[-4,-6],[-4,-6],[-4,-6],[-4,-7],[-4,-6],[-6,-7],[0,-1],[-7,-7],[-6,-5],[-6,-5],[-7,-5],[-10,-8],[-8,-6],[-9,-5],[-6,-4],[-5,-2],[-7,-3],[-7,-3],[-7,-2],[-7,-1],[-5,-2],[-2,-1],[-2,-1],[-3,-2],[-2,-2],[-4,-3],[-3,-3],[-5,-4],[-5,-4],[-4,-4],[-6,-4],[-4,-4],[-4,-3],[-2,-1],[-3,-2],[-3,-1],[-4,-2],[-5,0],[-2,0],[-5,-1],[-3,0],[-4,1],[-3,0],[-4,1],[-1,0],[-5,0],[-6,0],[-7,0],[-6,0],[-6,0],[-3,0],[-2,0],[-2,0],[-4,2],[-5,2],[-4,2],[-2,0],[-4,1],[-7,2],[-6,2],[-6,1],[-4,1],[-4,-1],[-6,-1],[-6,-1],[-5,-1],[-3,0],[-4,2],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-3,3],[-1,0],[-2,0],[-3,-1],[-7,-1],[-9,-1],[-4,0],[-3,0],[-5,-1],[-6,0],[-6,0],[-4,1],[-5,1],[-4,2],[-7,1],[-3,2],[-4,2],[-3,3],[-2,2],[-2,0],[-8,0],[-8,0],[-6,0],[-3,1],[-2,0],[-3,2],[-1,-1],[-1,0],[-5,4],[-5,3],[-3,1],[-1,1],[0,1],[1,2],[3,3],[2,3],[3,4],[-6,-1],[-6,-1],[-7,-2],[-3,-1],[-3,0],[-3,-1],[-4,-1],[-3,-1],[-5,0],[-8,-1],[-2,0],[-8,0],[-1,0],[-5,-1],[-4,0],[-3,0],[-1,0],[0,2],[-2,1],[-1,0],[-2,2],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-3,0],[-2,1],[-1,0],[-3,-1],[-2,-1],[-1,-1],[-4,0],[-6,0],[-5,0],[-1,0],[0,-1],[-4,0],[-2,-1],[-5,-1],[0,-1],[0,-2],[1,-3],[0,-2],[0,-1],[-1,0],[-1,0],[-6,-1],[-7,0],[-6,0],[-3,0],[-4,0],[-3,0],[-4,0],[-6,1],[-4,1],[-3,0],[-3,0],[-4,-1],[-3,-1],[-4,-2],[-4,-1],[-3,0],[-3,-1],[-3,-1],[-4,-2],[-1,-3],[0,-2],[-2,-1],[-5,-1],[-4,-1],[-1,-1],[-4,-1],[-3,-2],[-3,-2],[-3,-2],[-2,-1],[-2,-2],[-4,-1],[-2,-1],[-1,-1],[-1,1],[-1,3],[-3,2],[-2,0],[-5,5],[-4,1],[-4,1],[-2,1],[-2,1],[-5,2],[-5,2],[-5,2],[-3,2],[-3,1],[-3,1],[-1,0],[-2,1],[0,1],[-1,1],[-1,1],[-1,1]],[[3781,3618],[-3,0],[-2,1],[-2,0],[-3,0],[-2,0],[-1,0],[-3,0],[-2,1],[-2,0],[-1,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-3,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-4,0],[-3,1],[-5,0],[-3,1],[-3,0],[-3,1],[-2,1],[-3,0],[-2,1],[-2,1],[-2,2],[-2,1],[-1,0],[-2,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,2],[-2,3],[-2,4],[-2,2],[-1,3],[-2,2],[-2,2],[-1,2],[-2,3],[-4,5],[-2,4],[-1,1],[0,2],[-2,1],[-1,0],[-3,0],[-3,1],[-2,1],[-2,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-3,-1],[-3,0],[-3,-1],[-2,0],[-2,-1],[-1,0],[0,-1],[2,-2],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[2,-1],[3,-3],[2,-1],[0,-1],[1,0],[-1,0],[-1,-1],[-3,0],[-1,0],[-5,-1],[-2,1],[-4,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,1],[-2,1],[-3,1],[-2,1],[-4,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,1],[-1,0],[-5,0],[-4,-1],[-7,-1],[-2,0],[-4,0],[-4,-1],[-6,0],[-4,0],[-5,0],[-4,1],[-3,0],[-3,0],[-3,1],[-1,0],[-4,1],[-5,1],[-2,0],[-1,1],[-2,1],[-1,1],[-2,1],[0,1],[-1,1],[-1,1],[-1,1],[0,2],[1,3],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,-1],[-2,0],[-2,0],[-3,1],[-2,1],[-2,0],[-4,-3],[-1,-2],[-2,-1],[-2,-1],[-1,-1],[-2,0],[-3,-1],[-2,0],[-1,0],[-1,0],[-1,1],[0,2],[0,1],[-3,1],[-3,2],[-2,2],[-2,2],[-3,0],[-2,1],[-3,1],[-2,0],[-6,1],[-1,0],[-4,-3],[-7,-4],[-6,-3],[-2,-1],[-5,-2],[-1,-1],[-1,-1],[-3,-3],[-1,-1],[-2,-4],[-1,-2],[-3,-4],[-1,0],[-2,-4],[-5,-6],[-3,-3],[-1,-2],[-4,-3],[-5,-6],[-5,-5],[-5,-5],[-5,-4],[-5,-2],[-1,-1],[-4,-3],[-4,-2],[0,-1],[0,-2],[1,-5],[0,-5],[1,-6],[0,-2],[1,-4],[0,-4],[0,-5],[1,-5],[0,-6],[1,-6],[0,-1],[0,-4],[-2,-2],[-4,-5],[-3,-3],[-2,-3],[-1,-2],[-2,-3],[0,-1],[-1,0],[-2,-4],[-2,-4],[0,-2],[0,-9],[-1,-7],[0,-5],[-1,-5],[0,-5],[0,-4],[0,-2],[0,-1],[0,-4],[0,-2],[0,-3],[0,-5],[0,-4],[0,-4],[0,-4],[0,-2],[-1,-4],[-2,-2],[-3,-3],[-6,-4],[-1,-1],[-3,-5],[-2,-4],[-3,-5],[0,-2],[0,-3],[0,-3],[0,-5],[-1,-4],[0,-2],[0,-3],[0,-5],[-1,-3],[-1,-5],[0,-5],[-1,-5],[0,-2],[-1,-4],[0,-1],[-1,-5],[-1,-4],[-2,-5],[0,-4],[-1,-3],[-1,-5],[-1,-2],[-1,-3],[0,-2],[-1,-4],[0,-2],[0,-4],[-1,-4],[0,-3],[0,-7],[-1,-4],[0,-6],[0,-2],[-1,-3],[-2,-5],[-2,-5],[-2,-3],[-1,-3],[-1,-2],[-2,-2],[0,-1],[0,-3],[-1,-1],[-1,-4],[-2,-3],[-2,-4],[-3,-5],[-1,-2],[-2,-3],[-2,-1],[0,-2],[-1,-2],[-2,-3],[-1,-1],[-2,-2],[-1,-2],[-1,-3],[-1,-1],[0,-2],[-1,-2],[-1,-4],[-1,-2],[-1,-2],[0,-2],[-2,-3],[-1,-4],[-1,-2],[-3,-6],[-1,-1],[-1,-3],[-1,-1],[-1,-3],[-2,-2],[-2,-3],[-2,-3],[-2,-3],[-2,-4],[-2,-3],[-1,-2],[-2,-3],[-2,-3],[0,-1],[-2,-3],[-1,-2],[-1,-3],[0,-1],[-1,-1],[-1,-2],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-3],[-1,-1],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-3],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,-3],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-3],[0,-4],[0,-3],[0,-1],[0,-2],[-1,-2],[1,-2],[-1,-4],[0,-2],[0,-3],[0,-2],[0,-1],[0,-2],[0,-3],[-1,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-2,-1],[0,-1],[-1,-1],[-2,-2],[-2,-4],[-1,-2],[-2,-4],[-1,-2]],[[3198,3023],[-1,-3],[-1,-3],[-1,-4],[-1,-2],[0,-3],[-1,-3],[-1,-4],[0,-2],[0,-4],[0,-2],[0,-4],[0,-3],[0,-3],[0,-2],[1,-4],[0,-1],[0,-3],[1,-2],[1,-2],[0,-3],[1,-3],[0,-4],[1,-3],[1,-3],[0,-3],[1,-3],[0,-1],[0,-2],[-1,-4],[-1,-2],[-1,-3],[-1,-3],[-1,-2],[0,-2],[0,-2],[-1,-4],[-1,-1],[0,-4],[-1,-3],[0,-3],[0,-2],[1,-3],[0,-2],[1,-4],[1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[1,-3],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[1,-2],[0,-2],[0,-1],[1,-3],[0,-3],[1,-2],[0,-2],[0,-2],[1,-1],[1,-2],[1,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-3],[0,-3],[1,-2],[0,-1],[0,-2],[0,-3],[0,-1],[0,-2],[0,-4],[0,-2],[0,-4],[1,-2],[0,-4],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-4],[1,-2],[0,-4],[0,-2],[0,-3],[0,-2],[0,-4],[0,-2],[0,-4],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[1,-4],[0,-2],[0,-3],[0,-2],[0,-4],[0,-2],[0,-3],[1,-2],[0,-1],[0,-3],[0,-1],[0,-3],[0,-1],[0,-3],[1,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-1],[0,-1],[0,-3],[1,-2],[0,-2],[1,-2],[0,-2],[0,-2],[0,-1],[1,-2],[0,-2],[0,-2],[0,-1],[1,-2],[0,-2],[0,-1],[1,-2],[0,-2],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-2],[1,-2],[0,-2],[1,-3],[0,-3],[0,-3],[0,-4],[1,-2],[0,-2],[0,-2],[1,-3],[0,-3],[0,-2],[1,-4],[0,-2],[0,-1],[0,-4],[0,-3],[0,-3],[0,-3],[0,-5],[0,-2],[0,-4],[0,-3],[0,-3],[0,-3],[0,-5],[0,-5],[0,-4],[0,-4],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-3],[0,-4],[0,-2],[0,-3],[1,-1],[-1,-2],[1,-2],[0,-3],[0,-1],[-1,-10],[0,-4],[-1,-5],[0,-6],[0,-2],[-1,-2],[0,-5],[-1,-4],[0,-1],[-1,-5],[0,-1],[-1,-3],[0,-1],[-1,-4],[-1,-4],[-1,-4],[-1,-5],[-1,-4],[-1,-4],[0,-2],[-1,-4],[-1,-4],[-1,-4],[-1,-5],[-1,-4],[-2,-6],[-1,-4],[-2,-5],[-1,-8],[-2,-6],[-1,-4],[-2,-5],[-2,-6],[-1,-5],[-2,-4],[0,-3],[-1,-2],[-1,-3],[0,-1],[0,-3],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-1],[-1,-4],[-1,-2],[-2,-3],[-1,-2],[-1,-2],[0,-2],[-2,-4],[-2,-4],[-2,-5],[-1,-3],[-2,-4],[-1,-2],[-1,-3],[0,-2],[0,-3],[-1,-4],[0,-2],[0,-3],[0,-2],[-1,-1],[0,-1],[0,-3],[-1,-6],[-2,-6],[-2,-5],[-3,-7],[-1,-1],[-2,-5],[-1,-3],[-2,-5],[-1,-2],[-2,-6],[-2,-5],[-3,-7],[-3,-7],[-1,-2],[-2,-5],[-3,-7],[-3,-6],[-1,-1],[-1,-3],[-3,-5],[-2,-2],[-4,-4],[-2,-2],[-5,-3],[-2,-2],[-6,-2],[-3,-2],[-6,-2],[-3,-2],[-5,-3],[-3,-2],[-5,-3],[-2,-2],[-5,-4],[-1,-1],[-1,-1],[-3,-2],[-1,-3],[-4,-6],[-4,-6],[-3,-6],[-4,-6],[-1,-3],[-1,-2],[-2,-3],[-1,-1],[-2,-5],[-1,-2],[-2,-4],[-2,-2],[-2,-5],[-2,-4],[-2,-2],[0,-2],[-1,-3],[1,-2],[1,-2],[1,-4],[1,-3],[1,-4],[1,-2],[0,-5],[0,-2],[1,-3],[0,-2],[0,-2],[0,-4],[0,-2],[0,-3],[0,-2],[-1,-3],[0,-3],[-1,-1],[0,-1],[-1,-3],[-1,-5],[-1,-1],[-1,-2],[-2,-6],[-1,-2],[-3,-4],[0,-1],[-1,-4],[-1,-2],[-1,-3],[-1,-2],[-1,-4],[-1,-3],[-3,-4],[-1,-4],[-2,-4],[-2,-6],[-1,-2],[-2,-3],[-2,-2],[-2,-2],[-1,-2],[-2,-3],[-2,-1],[-1,-4],[-1,-1],[-1,-4],[-1,-5],[-1,-5],[-1,-6],[0,-2],[-1,-4],[0,-1],[-1,-4],[0,-2],[-1,-4],[0,-2],[0,-3],[-1,-6],[0,-6],[0,-2],[0,-6],[0,-5],[-1,-4],[0,-2],[0,-3],[0,-6],[0,-2],[0,-3],[0,-3],[0,-4],[0,-3],[1,-5],[0,-4],[0,-2],[0,-3],[0,-3],[0,-2],[0,-3],[0,-3],[1,-2],[0,-6],[0,-3]],[[2989,1826],[0,-1],[1,-6],[0,-5],[0,-6],[0,-3],[0,-3],[1,-3],[0,-2],[0,-3],[0,-3],[-1,-8],[0,-4],[-1,-6],[-1,-5],[-1,-8],[-1,-9],[-1,-7],[-1,-5],[0,-6],[-1,-5],[-1,-5],[0,-6],[-1,-5],[0,-4],[0,-1],[0,-5],[0,-6],[0,-8],[0,-6],[0,-6],[0,-5],[0,-5],[0,-1],[0,-4],[0,-6],[0,-5],[0,-3],[1,-3],[2,-4],[1,-6],[2,-5],[0,-2],[1,-3],[-1,-3],[0,-3],[-1,-4],[-1,-5],[-2,-5],[-3,-6],[-1,-3],[-2,-5],[-2,-5],[-2,-6],[-3,-4],[-2,-5],[-2,-4],[-2,-5],[-2,-5],[0,-2],[-1,-4],[-1,-4],[0,-4],[0,-1],[0,-3],[0,-5],[0,-6],[0,-5],[-1,-3],[1,-2],[0,-4],[0,-5],[0,-1],[1,-4],[0,-6],[1,-5],[0,-6],[1,-2],[0,-3],[1,-5],[1,-5],[1,-6],[1,-2],[1,-3],[1,-5],[2,-5],[1,-2],[1,-3],[5,-11],[0,-1],[2,-4],[3,-5],[2,-2],[1,-3],[2,-5],[3,-5],[2,-5],[3,-5],[3,-4],[3,-5],[3,-5],[1,-2],[3,-2],[2,-3],[4,-3],[3,-2],[5,-4],[2,-1],[4,-2],[5,-2],[3,-1],[4,-2],[1,0],[1,-1],[3,-2],[4,-3],[6,-4],[5,-3],[2,-2],[3,-2],[4,-4],[6,-6],[4,-4],[2,-3],[4,-5],[4,-4],[2,-4],[1,-1],[3,-4],[1,-2],[1,-3],[2,-3],[1,-2],[0,-2],[1,-3],[0,-1],[1,-2],[1,-4],[1,-5],[0,-3],[1,-5],[1,-5],[1,-5],[1,-5],[1,-3],[0,-2],[1,-6],[0,-1],[1,-2],[0,-5],[0,-6],[0,-1],[1,-5],[0,-8],[0,-4],[1,-4],[0,-6],[0,-5],[1,-7],[0,-4],[0,-4],[0,-2],[0,-3],[0,-5],[-1,-3],[0,-4],[-2,-5],[-2,-9],[-1,-5],[-2,-5],[-1,-6],[-1,-3],[-1,-5],[-1,-5],[-1,-5],[-1,-6],[-1,-6],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[-1,-4],[0,-1],[-1,-6],[-1,-4],[0,-5],[-1,-6],[-1,-5],[0,-2],[0,-5],[-1,-5],[0,-1],[0,-3],[-1,-5],[-1,-6],[-1,-6],[-1,-4],[-1,-1],[0,-5],[-1,-3],[-1,-6],[-1,-2],[-1,-2],[-1,-3],[-2,-5],[-2,-3],[-2,-5],[-1,-3],[-1,-4],[-1,-6],[-1,-3],[0,-3],[-1,-4],[-1,-9],[-1,-8],[-1,-5],[-1,-4],[-1,-5],[-1,-2],[-1,-3],[-2,-6],[-2,-4],[-1,-2],[-2,-5],[-3,-5],[-3,-5],[-3,-5],[-3,-4],[0,-1],[-4,-4],[-4,-5],[-3,-4],[-3,-3],[-3,-5],[-3,-4],[-2,-5],[-3,-5],[-3,-5],[-2,-5],[-2,-5],[-2,-5],[-2,-6],[-2,-5],[-1,-4],[-3,-8],[0,-4],[-1,-5],[-1,-5],[-1,-1],[0,-1],[-1,-2],[-2,-4],[-2,-1],[-3,-3],[-2,-1],[-4,-2],[-6,-2],[-5,-2],[-6,-2],[-3,-1],[-4,-1],[-2,-1],[-3,-1],[-4,-2],[-6,-3],[-5,-3],[-3,-2],[-1,0],[-1,-1],[-1,0],[-1,-2],[-3,-5],[-1,-2],[-1,-3],[-3,-7],[-1,-3],[-2,-6],[-1,-5],[-2,-5],[0,-2],[-2,-4],[-1,-1],[-1,-4],[0,-2],[-2,-5],[-3,-5],[-2,-5],[-2,-6],[-3,-4],[-2,-5],[-1,-4],[-3,-5],[-2,-4],[-1,-3],[-1,-3],[-1,-1],[-1,-3]],[[2891,656],[-3,-6],[0,-2],[-3,-5],[-2,-5],[-3,-4],[-2,-6],[-3,-5],[-2,-4],[0,-1],[-2,-3],[-1,-2],[-1,-3],[-2,-5],[-2,-5],[-1,-2],[-1,-5],[0,-4],[-1,-5],[-1,-5],[0,-3],[-1,-5],[0,-3],[-1,-6],[-1,-4],[0,-3],[-1,-3],[-1,-2],[-1,-4],[0,-1],[-4,-11],[-2,-4],[-1,-2],[-1,-2],[0,-3],[-2,-5],[-3,-6],[-1,-6],[-2,-4],[-1,-4],[0,-4],[0,-5],[0,-6],[0,-6],[0,-8],[0,-5],[0,-1],[0,-4],[1,-4],[0,-1],[0,-8],[0,-1],[0,-6],[0,-2],[0,-4],[1,-4],[0,-4],[0,-1],[2,-8],[1,-5],[1,-7],[1,-5],[1,-4],[0,-5],[1,-7],[0,-1],[0,-3],[2,-5],[1,-5],[1,-5],[1,-3],[1,-5],[2,-6],[0,-2],[2,-6],[1,-5],[1,-3],[1,-2],[0,-3],[2,-5],[2,-5],[1,-4],[1,-4],[2,-4],[2,-4],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-4],[-1,-7],[-1,-5],[-1,-7],[-1,-5],[0,-5],[-1,-4],[0,-4],[0,-5],[-1,-5],[0,-4],[0,-3],[0,-2],[0,-4],[0,-2],[-1,-2],[0,-4],[-1,-4],[0,-5],[-1,-4],[0,-4],[-1,-4],[0,-5],[0,-3],[0,-1],[-1,-7],[-1,-8],[-1,-5],[-1,-6],[0,-3],[0,-2],[0,-4],[-1,-4],[0,-4],[-1,-4],[0,-4],[-1,-4],[-1,-6],[0,-5],[-1,-5],[0,-3],[0,-2],[0,-1],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[1,-3],[0,-5],[0,-3],[0,-1],[0,-4],[1,-4],[0,-4],[0,-2],[0,-4],[0,-7],[1,-4],[0,-3],[2,-51],[-17,1],[-24,-3],[-15,4],[-65,16],[-16,1],[-17,2],[-20,4],[-18,5],[-24,10],[-42,12],[-11,10],[-16,5],[-12,2],[-32,14],[-22,20],[-26,15],[-20,12],[-32,13],[-23,19],[-44,20],[-18,6],[-22,13],[-49,24],[-20,16],[-83,53],[-50,29],[-7,-3],[-4,-1]],[[2107,321],[-2,0],[-1,6],[4,4],[-1,5],[-34,21],[-12,17],[-45,35],[-50,28],[-35,24],[-18,5],[-33,20],[-48,32],[-13,10],[13,10],[10,9],[4,3],[3,4],[4,4],[0,1],[2,2],[1,1],[-1,2],[-1,1],[-3,4],[-3,2],[-14,12],[-13,11],[-4,5],[-2,1],[0,1],[-11,-6],[-3,-2],[-10,-6],[-2,-1],[-3,-1],[-1,-1],[-5,-2],[-8,-5],[-1,-1],[-3,-2],[-14,-8]],[[1754,566],[-13,-7],[-18,-11]],[[1723,548],[2,14],[3,19],[1,4],[3,22]],[[1732,607],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[1,0],[1,1],[1,0],[4,2],[1,0],[3,2],[2,2],[1,0],[0,1],[6,4],[1,1],[3,2],[2,1],[2,1],[0,1],[2,1],[2,1],[0,1],[1,0],[2,2],[4,3],[6,3],[1,2],[3,2],[3,2],[1,0],[4,0],[5,-1],[3,0],[5,0],[-1,0],[-3,2],[-2,0],[-5,2],[-4,2],[-2,1],[-4,2],[-1,0],[-1,-1],[-5,-3],[-5,-4],[-5,-4],[-1,0],[-11,-8],[-17,-12],[-4,-5],[0,-1]],[[1722,613],[0,-1],[-1,-4]],[[1721,608],[0,-3],[-4,-20],[-1,-8],[-5,-36],[-135,-79],[-106,112],[-114,122],[-53,55],[-27,-3],[0,3],[27,3],[3,6],[3,-1],[-3,-6],[52,-56],[41,25],[77,-82],[44,27],[106,-111],[57,35],[-163,173],[-1,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,-1],[-18,2],[-3,0],[-2,0],[-4,0],[-2,1],[-3,0],[-5,0],[-1,1],[-2,0]],[[1472,768],[-1,0],[-4,0],[-1,0],[-10,2]],[[1456,770],[-1,-4],[-2,-4]],[[1453,762],[-3,1]],[[1450,763],[2,4],[2,4]],[[1454,771],[-3,0],[-1,1],[-1,1],[-3,1],[-8,5],[-1,0],[-6,3],[-9,5],[-1,0],[-3,0],[-1,0],[0,1],[0,2],[1,1],[1,1],[1,2],[2,5],[2,4],[2,2],[8,8],[2,3],[5,7],[0,1],[0,1],[-1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,0],[0,2],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[0,2],[1,0],[1,0],[0,1],[1,1],[1,0],[-1,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,3]],[[1177,1422],[2,-2],[4,-3],[5,-3],[2,-2],[4,-3],[4,-3],[3,-3],[2,-1],[3,-3],[3,-3],[3,-2],[3,-3],[3,-4],[2,-2],[3,-4],[3,-4],[2,-3],[3,-5],[6,-9],[2,-4],[2,-3],[3,-3],[1,-2],[3,-4],[4,-5],[1,-2],[3,-4],[3,-3],[4,-6],[3,-5],[3,-4],[3,-4],[3,-5],[2,-3],[5,-7],[3,-3],[5,-7],[5,-7],[5,-7],[5,-7],[5,-8],[5,-7],[6,-7],[3,-5],[3,-5],[6,-7],[4,-6],[4,-5],[4,-6],[5,-7],[3,-5],[4,-5],[2,-2],[4,-7],[4,-4],[3,-5],[5,-6],[4,-5],[4,-5],[3,-5],[3,-3],[3,-5],[4,-4],[3,-3],[4,-5],[3,-4],[1,-1],[2,-2],[4,-4],[3,-3],[4,-4],[5,-4],[1,-2],[3,-2],[2,-2],[5,-5],[3,-3],[3,-2],[3,-3],[3,-3],[3,-3],[2,-1],[1,-1],[1,-1]],[[1455,1083],[1,-2],[3,-3]],[[1459,1078],[3,-3],[2,-3],[2,-3],[2,-2],[3,-3],[2,-4],[2,-2],[3,-4],[3,-4],[2,-2],[2,-3],[0,-1],[2,-3],[3,-3],[2,-2],[2,-3],[2,-2],[0,-1],[2,-1],[5,-5],[6,-5],[5,-4],[3,-3],[5,-4],[3,-3],[5,-5],[6,-6],[3,-3],[6,-6],[6,-5],[4,-4],[3,-3],[4,-4],[3,-3],[5,-4],[6,-7],[5,-4],[5,-6],[4,-4],[7,-6],[5,-6],[4,-3],[5,-5],[5,-5],[6,-6],[7,-7]],[[1629,903],[14,-14],[8,-8],[8,-8],[7,-8],[-5,-3],[-6,-4],[-8,-6],[-9,-5],[-26,-16],[-1,0],[-9,-5],[-5,-2],[-4,-2],[-5,-2],[-5,-3],[-5,-2],[-4,-2],[-5,-2],[-5,-2],[-5,-2],[-4,-3],[-5,-2],[-5,-2],[-4,-2],[-5,-2],[-5,-2],[-5,-2],[-4,-3],[-5,-2],[-5,-2],[-4,-2],[-5,-2],[-5,-2],[-5,-2],[-3,-1],[-1,-1],[-5,-2],[-5,-2],[-5,-2],[-2,-1]],[[1456,770],[-3,-8]],[[1450,763],[4,8]],[[1472,859],[-6,31]],[[936,1506],[1,0],[3,-1],[4,-1],[3,0],[7,-2],[4,-1],[5,-2],[7,-1],[5,-2],[8,-2],[7,-2],[3,-1],[9,-2],[9,-2],[4,-1],[6,-2],[7,-2],[6,-2],[5,-2],[6,-1],[4,-1],[5,-2],[4,-1],[6,-2],[5,-1],[8,-3],[5,-1],[5,-2],[5,-1],[5,-2],[5,-1],[6,-2],[8,-3],[6,-3],[6,-2],[5,-2],[5,-3],[5,-3],[4,-2],[7,-3],[6,-4],[3,-2],[4,-2],[3,-3],[4,-2],[3,-2]],[[1629,903],[4,8],[1,3],[3,5],[2,5],[2,4],[9,6],[7,4],[8,5],[6,3],[7,5],[4,3],[2,1],[3,2],[6,2],[4,1],[1,1],[3,1],[5,1],[0,7],[1,4],[0,2],[1,5],[2,1],[4,3],[4,4],[3,2],[4,3],[3,2],[3,2],[2,0],[3,1],[4,1],[1,0],[5,0],[9,1],[3,0],[1,0],[1,1],[1,0],[2,1],[2,1],[2,1],[5,2],[4,2],[1,0],[2,2],[4,2],[4,3],[3,1],[4,3],[2,1],[-1,1],[-1,2],[-3,3],[-5,5],[3,2],[6,3],[5,3],[4,2],[4,2],[1,0],[1,1],[1,0],[4,1],[3,1],[3,0],[3,1],[4,1],[2,0],[4,0],[7,1],[6,1],[3,0],[2,0],[2,1],[2,0],[1,1],[1,0],[1,1],[1,2],[1,2],[1,2],[1,3],[1,3],[0,3],[1,6],[2,5],[0,2],[1,2],[2,7],[1,4],[2,3],[1,4],[0,1],[2,5],[2,5],[2,3],[1,3],[1,2],[0,1],[1,2],[0,1],[0,3],[0,8],[0,8],[0,4],[0,4],[0,3],[-1,2]],[[1882,1157],[0,-1],[2,1],[4,0],[3,-1],[1,-1],[2,-1],[3,-2],[4,-2],[4,-1],[3,-1],[4,-1],[4,0],[6,0],[3,0],[1,1],[4,1],[5,1],[4,1],[2,1],[2,0],[5,0],[4,0],[3,0],[3,0],[3,1],[2,0],[2,1],[2,0],[2,2],[3,0],[2,1],[4,1],[4,0],[5,0],[2,1],[3,0],[3,2],[1,1],[1,0],[1,2],[1,1],[1,0],[3,1],[2,0],[5,0],[7,0],[3,-1],[4,0],[6,0],[3,0],[4,-1],[5,0],[7,-1],[6,-1],[3,-1],[2,0],[2,0],[4,0],[3,0],[4,0],[4,0],[7,0],[6,0],[7,0],[7,0],[1,0],[6,-1],[7,0],[7,-1],[3,1],[2,0],[4,1],[3,0],[5,1],[3,1],[5,-1],[2,0],[3,0],[2,0],[2,1],[1,1],[0,2],[1,2],[3,3],[1,1],[3,0],[1,0],[1,2],[1,1],[1,2],[2,0],[2,0],[4,0],[2,0],[3,0],[3,0],[3,0],[4,1],[4,1],[3,1],[2,0],[3,0],[1,0],[4,0],[2,0],[2,0],[4,-1],[2,1],[3,0],[5,1],[0,1],[1,2],[3,3],[1,1],[1,1],[1,1]],[[2237,1190],[1,0],[1,-1],[3,-1],[1,0],[1,0],[0,-1],[-2,-1],[-2,-1],[-1,-1],[0,-1],[1,0],[1,-1],[3,-1],[4,-2],[5,-2],[2,0],[3,-1],[2,0],[2,-3],[1,-2],[1,-1],[2,0],[3,-1],[2,-1],[1,-1],[2,-1],[1,-3],[0,-2],[0,-1],[-1,-4],[0,-1],[0,-2],[0,-2],[-1,-1],[-1,0],[-2,-2],[-1,-1],[-1,-2],[1,-1],[-1,-2],[1,-1],[1,0],[1,-1],[2,-1],[4,-3],[1,-1],[2,-1],[2,-1],[1,0],[2,-1],[3,1],[0,1],[1,0],[0,1],[1,2],[4,0],[3,0],[2,-1],[1,0],[3,-1],[2,0],[2,-2],[3,-2],[4,-2],[4,0],[3,0],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[2,0],[3,1],[2,0],[2,1],[1,0],[1,2],[2,2],[1,0],[2,-1],[4,-1],[3,-1],[1,-1],[1,-2],[2,-3],[1,-1],[1,-1],[3,-3],[3,-3],[3,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[1,-1],[1,-1],[3,-1],[2,0],[2,0],[1,-1],[1,0],[0,-2],[0,-2],[1,-2],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[3,-2],[2,-1],[2,-1],[2,-1],[2,-1],[2,0],[2,-1],[2,-1],[2,-1],[3,0],[2,0],[2,0],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-4],[1,-4],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[1,-1],[1,-2],[0,-1],[0,-2],[0,-2],[1,-2],[1,-3],[1,-3],[1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-3,-1],[-1,0],[-1,0],[-1,-2],[-1,-2],[0,-2],[0,-1],[-1,-1],[-2,0],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[1,-1],[2,-1],[2,-1],[1,0],[0,-1],[0,-2],[0,-2],[0,-2],[2,-3],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[4,-2],[2,-1],[1,-1],[1,-2],[2,0],[1,0],[2,0],[1,1],[2,1],[2,1],[1,0],[1,0],[1,-1],[1,0],[2,0],[3,0],[1,0],[2,0],[1,-4],[0,-4],[1,-1],[0,-1],[2,-1],[0,-1],[1,-1],[-1,-2],[-1,-1],[2,-1],[3,-1],[1,0],[0,1],[1,3],[1,0],[1,1],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,-1],[1,-1],[2,-2],[1,-2],[1,-2],[0,-1],[3,-2],[5,-3],[3,-2],[1,0],[1,0],[-1,1],[1,1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,1],[0,1],[2,0],[0,1],[0,1],[1,1],[2,-1],[2,0],[1,-2],[1,-1],[3,1],[3,3],[4,2],[2,1],[-2,2],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,1],[-4,1],[-2,0],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-2,1],[-1,0],[-1,0],[-1,-1],[0,-2],[-1,0],[-2,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,1],[1,0],[2,-1],[2,0],[0,1],[0,1],[1,0],[0,1],[1,0],[4,-1],[1,0],[0,-1],[0,-2],[-1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,0],[2,-1],[2,0],[1,1],[1,0],[1,2],[1,2],[1,1],[1,0],[1,-2],[2,-2],[2,-2],[1,-2],[2,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-3,-3],[-1,-1],[-2,-2],[-1,-3],[-1,-2],[-1,-2],[0,-1],[1,-2],[1,0],[1,-1],[2,-2],[2,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,-1],[2,-1],[2,-1],[0,-1],[-2,-3],[-1,-4],[-1,-4],[0,-1],[-1,-2],[0,-1],[-1,-3],[0,-2],[1,-1],[0,-3],[1,0],[4,-2],[3,-2],[2,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,1],[-1,0],[-3,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[0,-2],[0,-2],[1,-1],[1,-1],[0,-1],[0,-1],[2,-3],[1,-2],[1,-2],[2,-2],[1,-1],[1,0],[1,-1],[1,0],[1,0],[-1,-1],[-2,-2],[-2,-1],[0,-2],[1,0],[3,-3],[1,-1],[2,-1],[1,-1],[-2,-2],[-1,-1],[0,-1],[-1,0],[-3,2],[-1,0],[-1,-1],[-2,-1],[-2,-1],[0,-1],[0,-1],[2,-2],[1,-1],[1,-1],[1,0],[3,1],[3,1],[4,1],[2,1],[1,0],[1,-1],[1,-3],[0,-2],[0,-1],[2,-2],[1,-1],[1,-2],[1,-1],[1,-1],[3,-1],[0,-1],[-1,-3],[0,-2],[-1,-2],[1,-1],[1,-2],[2,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[0,-2],[0,-4],[0,-2],[1,-1],[0,-1],[0,-2],[1,-2],[1,-1],[2,-1],[4,-1],[3,-1],[1,-1],[2,-3],[1,-1],[1,-2],[1,-2],[0,-2],[1,0],[1,-2],[0,-1],[-2,-2],[-1,-2],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-2,-2],[-3,-3],[0,-2],[-1,-2],[-2,-3],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-1],[0,-2],[-2,-2],[-3,-2],[-3,-3],[-1,-1],[-1,-2],[1,-1],[-1,-3],[0,-2],[-1,-1],[-3,-3],[-1,-2],[-1,-1],[-1,-4],[-1,-1],[-2,-2],[-1,0],[-3,-1],[-4,-1],[-2,-1],[-1,-2],[-2,-1],[-1,-2],[-1,-3],[0,-4],[-1,-3],[-1,-2],[-1,-2],[0,-3],[-1,-2],[-1,-2],[-2,-3],[-1,-1],[-2,-1],[-4,-2],[-3,-3],[-3,-3],[-2,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1]],[[2491,687],[-1,-2],[-4,-2],[-4,-2],[-2,0],[-3,0],[-4,0],[-2,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[-3,1],[-4,0],[-2,0],[-3,0],[-2,-1],[-2,-1],[-3,-2],[-1,0],[-6,0],[-2,0],[-2,-1],[-1,-1],[-2,-1],[0,-2],[0,-1],[0,-2],[1,-3],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,-2],[-1,-1],[-2,-2],[-3,-2],[-2,-1],[-3,-1],[-3,-1],[-3,-1],[-2,0],[-4,-3],[-1,0],[-3,-2],[-2,-1],[-2,-2],[-3,-2],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-4,-3],[-5,-2],[-1,0],[-2,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-2],[-2,-1],[-4,-5],[-4,-3],[-3,-3],[-3,-2],[-2,-2],[-2,0],[-3,-1],[-3,-2],[-1,-1],[-2,-1],[-1,0],[-4,0],[-7,-1],[-4,0],[-2,0],[-6,-2],[-5,-1],[-3,-2],[-5,-1],[-2,-1],[-2,0],[-2,0],[-7,0],[-4,0],[-2,0],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-3,-2],[-4,-2],[-1,-1],[-2,-1],[-3,-3],[-3,-3],[-3,-3],[-2,-3],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[0,-2],[-1,-2],[0,-5],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-3,-3],[0,-1],[-4,-3],[-2,-3],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-4,-1],[-2,-1],[-4,-3],[-4,-3],[-5,-4],[-5,-4],[-6,-4],[-6,-5],[-2,-2],[-2,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[1,-1],[1,-3],[1,-1],[1,-2],[0,-2],[1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-2,-1],[-1,-1],[-2,-2],[0,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[-2,-3],[-1,-1],[-2,-3],[-2,-2],[-1,-2],[-2,-1],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-3,-2],[-1,-1],[-1,-1],[-3,-1],[0,-1],[-1,-1],[-1,0],[2,-2],[0,-1],[1,-1],[0,-1],[-4,0],[-4,0],[-2,0],[-2,-1],[-2,0],[-1,-1],[-3,-1],[-1,-1],[-1,-2],[3,-3],[1,-2],[0,-1],[1,-1],[-1,-1],[-1,-2],[-2,-1],[0,-1],[-3,0],[-2,-2],[-3,-1],[-1,-2],[-1,-1],[-15,-69]],[[1754,566],[-31,-18]],[[1723,548],[9,59]],[[1722,613],[-1,-5]],[[1273,1627],[0,-1],[1,-2],[2,-4],[2,-4],[2,-4],[1,-1],[2,-4],[1,-2],[1,-2],[2,-4],[1,-2],[3,-4],[2,-3],[1,-2],[1,-2],[3,-3],[2,-4],[1,-1],[1,-1],[1,-1],[1,-2],[1,-3],[1,-2],[1,-1],[2,-4],[2,-3],[1,-2],[2,-5],[1,-4],[1,-3],[1,-2],[0,-1],[1,-2],[0,-1],[2,-10],[0,-3],[1,-6],[1,-5],[0,-1]],[[1322,1516],[1,-4],[0,-4],[0,-3],[0,-1],[0,-2],[1,-6],[0,-3],[0,-2],[-1,-10],[0,-2],[0,-5],[-1,-6],[0,-3],[-1,-4],[0,-1]],[[1321,1460],[-1,1],[-10,3],[-2,1],[-11,5],[-9,3],[-10,4],[-8,3],[-1,0],[-9,4],[-8,3],[-4,1],[-9,4],[-2,1],[-2,1],[-6,3],[-4,2],[-4,1],[-5,3],[-4,1],[-5,2],[-2,1],[-5,3],[-9,3],[2,4],[2,2],[-2,1],[-3,2],[-3,1],[-2,2],[-4,2],[-2,1],[-1,1],[-2,1],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,3],[1,1],[1,4],[1,1],[0,1],[5,6],[1,1],[3,5],[4,6],[4,5],[3,4],[3,3],[3,5],[1,1],[1,2],[5,6],[4,5],[2,2],[3,5],[1,1],[3,4],[3,3],[1,2],[5,6],[4,5],[3,4],[1,1],[1,2],[1,1],[1,1],[2,3],[2,2],[2,2],[1,2],[2,2],[1,0],[2,2],[2,1],[3,2],[3,1],[3,1]],[[1264,1657],[0,-1],[0,-1],[0,-2],[0,-2],[1,-2],[1,-3],[1,-4],[1,-4],[1,-3],[2,-5],[2,-3]],[[1738,2106],[1,-3],[1,-2],[0,-1],[0,-2],[-1,-2],[2,-3],[1,-1],[1,-3],[1,-1],[0,-2],[2,-2],[2,-4],[1,-4],[1,-2],[1,-1],[1,-3],[1,-2],[-1,0],[-3,-1],[-2,0],[-3,-1],[-2,-1],[-2,0],[-3,-1],[-1,0],[-2,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[3,1],[4,2],[5,1],[2,1],[2,1],[2,0],[3,2],[1,1],[2,1],[3,0],[1,0],[1,0],[1,2],[2,4],[2,0],[1,1],[2,-1],[3,-1],[1,-2],[1,-1],[2,0],[2,-1],[0,-1],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,-1],[-3,-1],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-4,-2],[-1,0],[-1,0],[-3,-2],[-2,0],[-1,-1],[0,-1],[-3,-2],[-2,0],[0,-2],[-1,0],[-1,-1],[-3,-2],[-1,-2],[0,-1],[1,-1],[1,0],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-4],[1,-3],[2,1],[0,1],[0,1],[0,1],[2,2],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[2,1],[1,-1],[1,-1],[0,-2],[0,-1],[0,-1],[-2,0],[-2,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[0,1],[2,1],[1,0],[2,0],[3,1],[3,0],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[2,0],[2,0],[2,1],[1,1],[2,1],[2,0],[1,1],[2,0],[1,0],[1,0],[2,0],[2,1],[3,1],[3,0],[1,0],[1,0],[3,1],[3,0],[2,0],[3,0],[2,1],[3,0],[1,0],[2,0],[2,1],[3,0],[2,1],[2,0],[2,0],[1,1],[1,0],[2,1],[2,1],[3,1],[2,1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[3,-2],[4,-3],[5,-3],[1,-1],[1,-1]],[[1885,2030],[1,-1],[0,-1],[-1,-7],[0,-2],[-3,-2],[-2,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-5,-3],[-2,-1],[-2,-1],[-3,-3],[0,-1],[0,-3],[0,-1],[-1,0],[-1,-1],[-4,-2],[-2,-1],[-1,-1],[-2,-2],[-1,0],[-2,-2],[-2,-1],[-4,-3],[-1,-1],[-3,-2],[-2,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-3],[-1,-3],[0,-2],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[1,-1],[3,-2],[1,0],[1,-4],[1,-3],[0,-1],[0,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-3],[1,-1],[1,-1],[1,-3],[-1,-1],[-1,-2],[0,-1],[1,-1],[2,-2],[3,-2],[2,-2],[2,-2],[1,-1],[1,-2],[3,-3],[1,0],[0,-1],[0,-1],[-1,-1],[-2,-1],[-2,0],[-1,0],[-2,-1],[-2,0],[-3,0],[-2,0],[-1,0],[-3,1],[-2,0],[-3,1],[-1,0],[-1,1],[-2,0],[-2,0],[-1,0],[-2,0],[-2,1],[-1,0],[-2,0],[-1,0],[-3,2],[-1,2],[-1,1],[-1,0],[-1,1],[-2,-1],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-3,1],[-2,0],[-2,0],[-1,0],[-1,-1],[0,-1],[2,-3],[0,-2],[1,-2],[1,-1],[0,-1],[1,-2],[1,-1],[1,-2],[2,-1],[1,-1],[2,-1],[2,0],[0,-1],[1,0],[1,0],[0,-1],[1,-2],[3,-2],[1,0],[1,0],[1,-1],[3,-1],[2,-1],[2,-2],[2,-3],[2,-3],[2,-2],[2,-2],[1,-2],[3,-4],[1,-1],[2,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[2,-2],[3,-2],[2,-1],[3,-2],[8,-5],[2,-2],[4,-2],[3,-1],[1,-1],[1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[0,-1],[1,0],[1,-1],[1,-1],[2,-1],[3,-2],[2,-1],[1,-1],[1,0],[1,-1],[5,-3],[1,-1],[2,-2],[4,-2],[1,-1],[4,-2],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-2],[2,-1],[5,-3],[5,-3],[0,-1],[5,-2],[2,-2],[3,-1],[0,-1],[2,-1],[2,-1],[1,-1],[1,-1],[1,0],[1,-1],[3,-2],[3,-3],[9,-5],[5,-3],[7,-4],[4,-3],[7,8],[2,2],[4,1],[3,1],[2,0],[2,-1]],[[1974,1782],[1,0],[3,0],[3,-2],[4,-2],[3,-2],[-4,-6],[-3,-5],[-4,-6],[-4,-6],[-3,-6],[-3,-4],[-2,-3],[-3,-7],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[10,-4],[7,-3],[6,-3],[4,-2],[4,-1],[4,-2],[2,-1],[2,-1],[1,-2],[2,1],[1,-1],[2,-2],[3,-3],[1,-1],[1,-2],[-1,-1],[-1,0],[-6,-2],[-9,-2],[-4,0],[-5,-1],[-4,-2],[-2,-1],[-4,-1],[-4,-1],[-4,-1],[-2,-1],[-4,-2],[-4,-1],[-4,-2],[-2,-3],[-1,-2],[0,-2],[-1,-7],[-2,-7],[-1,-6],[1,-1],[0,-2],[0,-2],[0,-1]],[[1944,1648],[-1,0],[-9,1],[-13,2],[-9,1],[-9,2],[-9,1],[-11,2],[-7,1],[-3,0],[-10,2],[-5,1],[-1,0],[-5,1],[-7,1],[-7,0],[-7,1],[-4,1],[-5,1],[-4,0],[-3,1],[-3,0],[-1,0],[-3,1],[-4,1],[-7,1],[-3,0],[-5,1],[-8,2],[-9,1],[-7,1],[-4,0],[-13,2],[-5,1],[-10,2],[-5,0],[-10,2],[-3,1],[-7,1],[-8,1],[-7,1],[-7,1],[-6,1],[-11,2],[-4,0],[-9,2],[-3,0],[-2,0],[-5,1],[-6,1],[-1,0],[-4,1],[-3,0],[-2,-1],[1,-1],[3,-1],[2,-1],[2,-1],[3,-1],[1,-1],[2,-1],[2,-2],[1,-2],[1,-1],[3,-4],[1,-3],[1,-1],[3,-7],[2,-6],[1,-2],[3,-5],[2,-5],[0,-1],[-4,0],[-1,0],[-1,-1],[0,-2],[-2,-2],[-1,-2],[-3,-4],[-2,-1],[-1,0],[-3,2],[-4,3],[-4,3],[-3,2],[-4,3],[-4,3],[-2,1]],[[1625,1653],[-5,3],[-9,6],[-6,4],[-6,4],[-2,2],[-4,3],[-2,1],[-1,0],[-1,0],[-4,1],[-4,0],[-4,0],[-4,0],[-5,1],[-6,0],[-6,0],[-6,0],[-4,0],[-4,0],[-2,0],[-4,-1],[-4,0],[-1,0],[-4,-1],[-2,0],[-3,-1],[-6,-1],[-5,0],[-2,0],[-7,0],[-11,1],[-4,0],[-9,1],[-11,0],[-6,1],[-2,0],[-6,0],[-8,1],[-5,0],[-1,0],[-8,1],[-1,0],[-2,0],[-2,-1],[-2,-1],[-11,-3],[-9,-3],[-4,-1]],[[1400,1670],[-1,0],[-14,-4],[-10,-3],[-14,-4],[-4,-1],[-8,-3],[-6,-1],[-3,-1],[-9,-2],[-5,-2],[-6,-2],[-3,-1],[-6,-1],[-4,-1],[-3,-1],[-1,-1],[-2,0],[-3,-1],[-2,-2],[-2,0],[-5,-3],[-7,-4],[-6,-3],[-3,-2]],[[1264,1657],[0,1],[0,1],[0,1],[-1,4],[0,4],[0,2],[-1,4],[0,1],[0,1],[-1,3],[-1,5],[-1,2],[-2,6],[-1,4],[-2,3],[-1,3],[-1,2],[-2,4],[-4,6],[-2,2],[-2,2],[-1,1],[-1,1],[-1,1],[-4,5],[-4,5],[-1,2],[-1,2],[-2,3],[-2,3],[0,1],[-1,3],[0,2],[0,4],[0,2],[1,4],[1,3],[1,3],[2,3],[3,3],[3,3],[2,2],[2,2],[4,3],[4,3],[3,3],[4,2],[4,3],[2,2],[1,1],[2,1],[3,3],[2,1],[0,1],[3,2],[2,1],[1,2],[2,1],[2,2],[2,1],[1,1],[1,1],[2,1],[1,0],[2,1],[2,1],[2,0],[2,0],[2,1],[2,-1],[2,0],[2,0],[3,-1],[3,-1],[3,-1],[3,-1],[3,-1],[2,-1],[2,0],[2,-1],[1,0],[2,0],[2,-1],[1,0],[5,0],[3,0],[2,-1],[2,0],[1,0],[3,0],[1,0],[3,1],[2,0],[2,1],[2,1],[4,2],[2,1],[2,1],[2,2],[1,1],[2,1],[1,2],[2,1],[2,3],[2,2],[1,1],[3,3],[1,1],[1,1],[1,1],[2,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[5,0],[3,-1],[3,-1],[3,-1],[4,-1],[3,-2],[3,-2],[2,0],[3,-1],[2,0],[2,1],[3,0],[4,1],[3,1],[1,1],[3,1],[3,2],[4,3],[4,3],[4,1],[2,2],[3,1],[3,1],[3,0],[4,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,-1],[2,0],[3,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,1],[2,0],[4,1],[1,0],[2,1],[2,1],[2,1],[1,1],[1,0],[1,2],[2,1],[1,1],[2,1],[2,2],[1,0],[3,2],[4,1],[4,0]],[[1533,1856],[3,0],[4,0],[2,0],[2,1],[2,0],[1,0],[3,-1],[3,1],[5,1],[3,0],[1,1],[2,1],[1,1],[2,1],[2,2],[2,2],[2,2],[0,1],[1,3],[1,2],[0,1],[0,2],[0,3],[1,2],[-1,4],[0,3],[0,2],[-1,2],[-1,3],[-1,3],[-2,3],[-1,2],[-1,1],[-2,2],[-1,4],[-2,3],[-1,2],[0,3],[-1,3],[0,2],[0,1],[-1,2],[0,1],[0,1],[0,2],[1,2],[1,2],[1,2],[0,1],[1,2],[2,2],[2,3],[2,2],[2,3],[4,4],[1,1],[4,4],[5,4],[2,2],[0,1],[1,2],[1,2],[1,0],[1,2],[2,1],[2,2],[2,3],[1,2],[1,2],[1,2],[1,1],[0,2],[0,2],[0,2],[0,3],[-1,1],[0,1],[1,2],[0,1],[1,1],[2,1],[2,1],[1,0],[1,0],[2,1],[2,0],[2,1],[1,0],[4,0],[1,0],[2,0],[2,0],[2,-1],[1,0],[2,0],[1,0],[2,0],[1,1],[1,0],[1,2],[1,2],[1,1],[1,2],[1,1],[1,3],[1,1],[1,1],[1,1],[2,2],[1,1],[1,2],[1,1],[1,0],[1,0],[2,0],[3,0],[1,0],[0,1],[1,1],[1,2],[0,1],[-1,2],[0,2],[0,1],[0,1],[2,3],[0,1],[1,2],[1,1],[1,2],[0,2],[1,4],[1,1],[1,2],[2,1],[3,1],[2,1],[1,1],[1,2],[1,1],[1,2],[5,3],[3,2],[2,2],[2,2],[3,4],[1,2],[2,2],[1,1],[2,1],[2,0],[3,0],[2,0],[1,0],[2,1],[1,1],[0,2],[0,2],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[2,0],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,3],[1,2],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0]],[[1625,1653],[-1,-5],[0,-3],[0,-1],[2,-3],[1,-3],[1,-1],[1,-2],[2,-6],[1,-3],[3,-6],[2,-3],[1,-4],[-2,0],[-3,0],[-4,0],[-4,1],[-8,0],[-7,0],[-6,1],[-7,0],[-3,0],[-5,1],[-3,0],[-1,0],[0,-1],[-1,-1],[0,-3],[0,-2],[1,-1],[2,-3],[1,-3],[3,-6],[1,-2],[3,-6],[1,-2],[0,-1],[-1,0],[-4,-1],[-6,-2],[-5,-2],[-4,-1],[-9,-3],[-7,-2],[-2,0],[0,-1],[1,-1],[1,-3],[3,-5],[2,-5],[3,-7],[4,-9],[-1,-1],[-2,0],[-5,-2],[-8,-2],[-11,-3],[-3,-1],[-1,-1],[-7,-2],[-9,-2],[-2,-1],[-4,-1],[-1,0],[-11,-4],[-3,0],[-5,-2],[-13,-4],[-13,-3],[-9,-3],[-6,-2]],[[1458,1509],[-2,6],[-2,4],[-3,6],[0,1],[-1,3],[-4,9],[-1,3],[-1,1],[1,8],[2,13],[2,12],[2,7],[0,2],[-1,0],[-10,-3],[-13,-3],[-8,-3],[-7,-2],[-4,9],[-2,6],[12,4],[14,4],[1,0],[-2,4],[-5,12],[-1,2],[0,1],[-4,8],[-1,3],[-1,3],[-3,7],[-5,11],[-1,2],[-4,8],[-6,13]],[[1458,1509],[-9,-2],[-8,-2],[-9,-3],[-1,-1],[-7,-1],[-12,-4],[-3,0],[-2,-1],[-12,-3],[-5,-2],[-1,3],[-2,5],[-2,3],[-2,5],[-2,5],[-2,2],[-1,4],[-2,4],[-2,-1],[-8,-2],[-5,-2],[-1,0],[-3,0],[-7,0],[-12,0],[-6,0],[-5,0],[-5,0]],[[1944,1648],[1,-2],[1,-1],[3,-2],[1,-2],[-1,0],[-3,-1],[-3,0],[-7,1],[-3,0],[-2,-1],[-2,-5],[-2,-4],[0,-4],[0,-4],[-1,-2],[0,-2],[-8,0],[-5,-1],[-1,-1],[0,-4],[-1,-4],[-1,0],[-6,-1],[-8,0],[-2,-1],[-7,-1],[-4,-1],[2,-2],[3,-1],[1,-1],[4,-1],[4,-2],[5,-1],[4,-1],[6,-2],[7,-2],[2,0],[2,-1],[3,0],[3,0],[7,-1],[2,0],[2,0],[0,-1],[-3,-6],[2,-1],[5,-2],[5,-2],[5,-2],[0,-1],[-2,-4],[-3,-4],[-2,-4],[-1,-3],[-1,0],[-5,-1],[-7,-1],[-9,-1],[-7,-1],[-9,-1],[-8,-1],[-7,-1],[-2,0],[0,-1],[0,-4],[-1,-3],[-1,-2],[0,-1],[-1,-3],[-1,-3],[-2,-2],[-2,-3],[-3,-4],[-4,-4],[-2,-2],[-4,-5],[5,-3],[4,-2],[3,-2],[4,-2],[4,-2],[2,-1],[2,-1],[3,-2],[1,0],[-7,-8],[-6,-6],[-5,3],[-9,-6],[-6,-5],[-4,-3],[-3,-2],[-5,-1],[-4,0],[-8,-1],[-9,-1],[-1,11],[-2,7],[-1,5],[0,1],[-5,-1],[-7,0],[-6,-1],[-10,-1],[-11,-1],[-11,-1],[-2,0],[-7,-1],[-17,-2],[2,-11],[-5,0],[-5,0],[-4,0],[1,-3],[2,-3],[1,-4],[1,-2],[0,-2],[1,-3],[0,-2],[1,-5],[-1,-3],[0,-4],[-1,-3],[-2,-4],[-1,-4]],[[1742,1434],[-2,-4],[-1,-1],[0,-1],[-1,0],[-2,0],[-7,1],[-9,1],[1,4],[1,8],[0,5],[0,1],[0,3],[0,9],[-6,-2],[-5,-1],[-5,-1],[-2,-1],[-1,6],[0,1],[0,2],[-6,0],[-3,0],[-2,0],[0,3],[-1,0],[-2,0],[-7,-1],[-9,0],[-7,0],[-8,-1],[-4,0],[-10,0],[-3,-1],[1,4],[0,5],[0,5],[-1,2],[0,2],[-2,5],[-2,4],[-1,2],[-5,-1],[-6,-2],[-7,-2],[-8,-2],[-4,-1],[-7,-2],[-1,-1],[-5,-1],[-5,-2],[-6,-2],[-8,-2],[-4,-1],[-2,-1],[-6,-1],[-2,-1],[-3,-1],[-8,-2],[-1,0],[-7,-2],[-10,-3],[-1,-1],[-5,-1],[-5,-1],[-7,-2],[-1,-1],[-4,-1],[-7,-2],[-8,-3],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-2,-1],[2,-4],[2,-5],[-6,-1],[-15,-5],[-11,-3],[-10,-3],[-12,-4],[-14,-4],[-1,0],[-6,-2],[-9,-2],[-3,-1],[-1,-1],[-4,-2],[-4,-1],[-1,-1],[-3,-5],[-3,-6],[-3,-6],[-3,1],[-4,2],[-3,1],[-7,3],[-7,3],[-8,3],[-5,2],[-5,2],[-6,3],[-6,2],[-8,3],[-5,2],[-4,2],[-3,1],[-6,3]],[[1306,1421],[2,5],[1,4],[3,7],[4,10],[3,7],[2,4],[0,2]],[[1742,1434],[3,0],[6,0],[6,1],[6,0],[5,0],[4,0],[5,1],[4,0],[3,0],[2,0],[4,0],[5,1],[4,0],[4,0],[4,0],[0,-3],[1,-3],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-3],[0,-2],[0,-2],[1,0],[1,-1],[3,0],[1,0],[7,0],[7,0],[3,0],[6,0],[7,0],[4,0],[5,-1],[2,0],[9,3],[1,-6],[1,-6],[1,-5],[1,-5],[0,-5],[1,-3],[0,-3],[5,-2],[5,-2],[3,-2],[1,-1],[0,-1],[0,-3],[0,-3],[-5,0],[-4,1],[-8,-5],[-8,-4],[-3,-2],[-4,-3],[-7,-4],[-6,-3],[-7,-4],[-5,-3],[-7,-5],[-6,-3],[-6,-3],[-8,-5],[-4,-2],[-7,-3],[-5,-3],[-7,7],[-2,-1],[-6,-3],[-9,-6],[-2,-1],[-5,-3],[-6,-3],[-5,-3],[-3,-2],[-1,0],[-5,-3],[-3,-2],[-2,-1],[-8,-5],[-7,-4],[-4,-3],[-6,-3],[-5,-3],[-1,-4],[-1,-2],[-1,-3],[0,-2],[-1,-3],[0,-3],[0,-2],[0,-2],[0,-2],[0,-1],[1,-2],[0,-2],[-1,-4],[0,-3],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-1],[-2,-1],[-4,-1],[-5,-2],[-4,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[3,-1],[1,-1],[2,-1],[2,-1],[2,0],[3,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,-1],[3,-2],[1,-1],[2,-1],[4,-2],[1,-1],[1,0],[1,-1],[1,-1],[1,-2],[1,-2],[1,-2],[1,-2],[0,-1],[0,-1],[1,-1],[1,-2],[1,-3],[1,-1],[1,-2],[1,-2],[2,-2],[1,-1],[2,-2],[1,-2],[1,0],[-1,-1],[0,-1],[-1,0],[-2,0],[-4,1],[-4,1],[-4,1],[-3,0],[-1,0],[0,-1],[0,-1],[1,-3],[1,-1],[2,-1],[1,-2],[1,-1],[1,-1],[2,0],[2,-1],[2,-1],[2,0],[2,0],[2,0],[4,1],[1,0],[2,0],[2,0],[3,0],[1,0],[1,0],[1,1],[2,1],[2,2],[3,2],[1,1],[2,0],[2,-1],[2,0],[2,-1],[2,0],[3,-1],[3,1],[3,2],[4,3],[5,3],[1,1],[2,1],[2,1],[1,0],[2,0],[2,0],[2,-1],[3,-1],[1,-1],[1,-1],[1,-1],[0,-1],[2,0],[2,-1],[2,0],[3,0],[1,1],[1,0],[2,2],[1,0],[3,0],[1,1],[2,0],[1,0],[4,-1],[1,0],[6,-1],[3,0],[3,0],[1,0],[1,1],[2,1],[0,1],[1,2],[1,1],[0,2],[1,2],[1,1],[0,1],[0,2],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,2],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[1,2],[1,1],[1,2],[3,2],[2,2],[2,1],[0,1],[2,1],[1,0],[2,0],[1,0],[2,-2],[2,-1],[2,-2],[2,-1],[2,-3],[2,-1],[3,-2],[2,-2],[2,-2],[3,-4],[1,-2],[3,-3],[2,-3],[1,-1],[2,-4],[2,-1],[1,-3],[1,0],[0,-2],[1,-2],[1,-1],[1,-4],[1,-3],[1,-4],[0,-1],[2,-3],[1,-3]],[[1459,1078],[-3,3],[-1,2]],[[1177,1422],[3,2],[6,5],[5,3],[3,3],[3,2],[3,2],[4,3],[3,3],[3,2],[4,3],[5,4],[3,-1],[4,-2],[6,-3],[4,-2],[2,-1],[1,0],[7,-3],[11,-3],[10,-4],[9,-3],[5,-1],[2,-1],[4,-1],[2,-1],[5,-2],[7,-3],[5,-2]],[[947,1997],[0,-1],[1,-3],[0,-3],[0,-1],[1,-2],[1,-1],[1,-1],[3,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,1],[2,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[2,1],[2,1],[1,1],[3,1],[2,1],[1,1],[0,1],[0,1],[1,1],[1,1],[2,2],[2,3],[1,2],[1,1],[0,1],[2,2],[2,0],[2,2],[2,1],[3,2],[2,0],[0,1],[1,0],[2,1],[2,1],[1,1],[2,2],[2,1],[2,1],[1,1],[2,0],[1,1],[2,1],[2,1],[2,0],[1,0],[1,0],[3,1],[3,1],[2,0],[2,1],[1,0],[2,1],[1,0],[2,0],[3,1],[2,1],[4,2],[2,0],[1,0],[2,0],[1,1],[3,0],[2,1],[2,0],[2,1],[1,0],[2,0],[4,0],[2,0],[2,0],[2,0],[2,0],[2,0],[3,1],[2,1],[3,0],[3,1],[2,0],[3,0],[3,0],[2,1],[2,-1],[2,0],[3,0],[2,1],[3,0],[1,0],[2,1],[2,1],[2,1],[2,1],[1,1],[1,1],[1,1],[2,1],[2,0],[1,1],[1,0],[1,0],[2,0],[2,0],[3,-1],[1,0],[1,0],[2,0],[2,0],[3,-1],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[3,1],[3,1],[4,1],[3,0],[2,0],[4,0],[2,-1],[2,0],[2,-1],[2,-1],[1,0],[1,-1],[1,0],[3,-3],[4,-2],[1,-1],[3,-2],[4,-3],[3,-2],[4,-3],[1,-1],[5,-3],[2,-2],[2,-1],[1,0],[2,-1],[8,0],[3,1],[1,0],[8,0],[6,0],[3,0],[2,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[2,-1],[2,0],[2,-1],[2,-1],[3,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-3],[-1,-2],[1,-2],[0,-6],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[1,-1],[4,-2],[4,-2],[2,-1],[3,-1],[1,-1],[1,0],[2,2],[1,1],[0,1],[3,3],[1,2],[1,1],[2,2],[2,2],[3,2],[2,2],[1,1],[0,1],[2,1],[1,2],[3,2],[1,1],[1,1],[16,15],[2,2],[2,1],[2,2],[2,2],[1,0],[1,0],[2,0],[2,0],[0,-1],[1,0],[1,-1],[2,-1],[1,0],[0,-1],[3,-2],[1,-2],[1,-1],[1,-2],[1,-1],[2,-2],[1,-2],[1,-1],[1,-1],[1,-1],[2,-2],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[2,-1],[0,-1],[2,-1],[1,-1],[1,-1],[2,-2],[2,-1],[1,0],[0,-1],[2,-1],[3,-3],[2,-1],[5,-4],[3,-2],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[2,-1],[3,-2],[0,-1],[2,0],[0,-1],[4,-2],[3,-1],[4,-2],[2,0],[0,-1],[1,0],[5,0],[1,0],[7,0],[7,0],[6,0],[5,0],[3,0],[4,0],[1,0],[0,-4],[0,-6],[-1,-6],[0,-6],[0,-6],[0,-5],[-1,-4],[0,-2],[0,-5],[0,-2],[0,-1],[0,-4],[0,-7],[0,-2],[0,-1],[0,-3],[-1,-3],[0,-3],[0,-2],[0,-1],[0,-2],[0,-4],[0,-3],[0,-3],[0,-1],[1,-2],[0,-3],[1,-2],[0,-3],[4,1],[4,1],[7,2],[6,1],[5,1],[4,1],[3,0],[3,1],[2,0],[3,0],[2,0],[1,0],[2,0],[3,-1],[2,0],[1,0],[1,-1],[0,-1],[1,0],[1,-2],[1,-1],[1,-1],[0,-2],[1,-2],[0,-1],[1,-2],[1,-1],[1,-3],[1,-1],[1,-2],[0,-2]],[[1604,2267],[0,-1],[1,-1],[2,-1],[1,-1],[2,-2],[3,-2],[3,-2],[1,-1],[3,-2],[1,-1],[2,-1],[2,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,-2],[1,-2],[2,-1],[3,-2],[2,-1],[2,-2],[2,-2],[4,-2],[3,-2],[3,-3],[2,-1],[1,-1],[2,-2],[2,-1],[3,-2],[4,-3],[4,-3],[4,-3],[2,-2],[1,-1],[1,0],[2,1],[1,1],[2,2],[2,0],[1,-1],[1,-1],[1,-1],[1,-1],[2,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[2,-2],[2,-2],[1,-1],[1,-2],[2,-1],[1,-2],[1,-1],[0,-2],[2,-4],[1,-2],[1,-3],[2,-2],[2,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-4],[0,-2],[2,-1],[2,0],[1,1],[2,2],[2,0],[2,0],[1,-1],[-1,-1],[-2,-2],[0,-1],[0,-1],[-1,-1],[1,-2],[-1,-1],[-1,-3],[0,-2],[-2,-1],[-4,-3],[-4,-3],[-1,-1],[-4,-2],[-3,-4],[-2,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[2,-2],[1,-1],[1,0],[2,-2],[1,-1],[2,-1],[1,-2],[3,-2],[2,-2],[1,0],[2,-1],[1,1],[2,0],[5,1],[1,1],[2,0],[1,0],[1,0],[2,0],[2,-2],[1,0],[2,1],[2,1],[2,0],[1,0],[4,0],[2,-1],[3,-6]],[[954,2244],[4,2],[5,2],[7,3],[4,2],[4,2],[4,2],[5,2],[5,3],[5,3],[11,6],[7,4],[1,1],[0,1],[-1,1],[-1,3],[-3,9],[0,1],[-1,1],[0,2],[0,2],[0,1],[0,1],[0,2],[1,3],[1,1],[0,1],[-1,0],[-1,1],[1,1],[0,2],[0,1],[1,2],[1,1],[2,1],[1,2],[2,1],[3,2],[1,3],[1,1],[0,1],[0,3],[1,2],[0,2],[0,1],[1,1],[2,2],[2,1],[4,2],[2,1],[4,3],[2,0],[0,1],[1,2],[0,3],[0,1],[-1,0],[1,1],[0,2],[1,1],[0,1],[0,1],[0,2],[1,1],[1,2],[1,3],[1,2],[1,3],[1,2],[3,-1],[1,0],[1,-1],[2,0],[0,-1],[1,-2],[1,0],[2,-2],[2,-1],[2,-1],[1,-1],[0,2],[-1,1],[0,2],[-1,3],[-1,3],[0,2],[0,1],[5,1],[5,1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-4],[0,-1],[0,-2],[1,-1],[1,-1],[1,0],[4,-1],[5,-1],[13,-3],[4,-1],[15,0],[13,0],[12,0],[13,0],[10,0],[10,0],[14,0],[10,1],[15,0],[12,0],[10,0],[17,0],[5,0],[5,0],[2,0],[16,1],[6,0],[13,0],[11,0],[15,1],[19,0],[1,1],[0,1],[1,1],[1,1],[0,1],[1,2],[-1,2],[0,2],[0,1],[0,1],[0,1],[3,1],[3,-2],[2,-1],[1,2],[2,3],[1,0],[1,1],[2,2],[2,1],[2,2],[2,1],[2,1],[1,0],[1,1],[3,3],[1,1],[0,1],[2,1],[1,1],[1,1],[1,1],[1,1],[1,1],[4,3],[4,2],[1,1],[1,1],[0,-1],[5,-3],[6,-5],[1,0],[7,-4],[6,-2],[2,-1],[3,-1],[2,0],[2,-1],[1,0],[0,-8],[-17,-5],[-14,-4],[-4,-1],[-11,-3],[-10,-3],[-2,0],[2,-2],[2,-1],[1,-1],[1,-1],[0,-1],[2,-1],[1,-1],[3,-3],[1,-2],[4,1],[1,-2],[4,-7],[3,-7],[4,-9],[4,-9],[1,0],[5,0],[9,0],[6,0],[9,0],[3,0],[7,0],[5,0],[10,0],[0,-4],[1,-8],[0,-4],[0,-2],[1,0],[6,-3],[10,-4],[4,-2],[-4,-5],[6,-3],[10,-6],[7,-3],[10,-5],[7,-4],[1,0],[4,-2],[32,30],[12,11],[3,-1],[1,-2],[4,-3],[3,-3],[1,-1],[0,-1],[2,-2],[1,-1],[3,-3],[1,-2],[5,-5],[6,-6],[5,-4]],[[1789,2857],[0,-1],[2,-1],[1,-2],[2,-2],[1,-2],[0,-1],[0,-2],[0,-2],[0,-3],[1,-3],[0,-1],[1,-2],[1,-1],[2,-1],[1,-2],[3,-2],[4,-2],[1,-1],[1,0],[1,0],[3,1],[3,1],[5,1],[3,1],[1,0],[0,-1],[1,-2],[0,-2],[0,-2],[1,-4],[0,-2],[0,-2],[1,-4],[1,-3],[0,-4],[1,-2],[0,-2],[2,0],[2,-1],[3,0],[3,-1],[2,0],[2,-1],[1,-1]],[[1846,2796],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[-1,-3],[0,-2],[0,-2],[-1,-4],[0,-2],[0,-2],[-1,-3],[-1,-3],[0,-2],[0,-1],[1,-2],[0,-1],[1,0],[2,-1],[2,1],[1,0],[2,0],[3,2],[3,1],[1,0],[1,0],[2,-1],[2,0],[2,-1],[1,-1],[4,-2],[2,-2],[1,-2],[1,-1],[0,-2],[1,-1],[2,-1],[2,0],[2,0],[2,-1],[2,0],[3,0],[2,0],[3,0],[2,0],[2,-1],[2,0],[1,-1],[1,0],[0,-1],[-1,-1],[-2,-1],[-3,-3],[-3,-3],[-4,-3],[-5,-5],[-4,-4],[-4,-4],[-6,-5],[-3,-3],[-3,-3],[-3,-3],[1,-1],[2,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-2],[-1,-2],[0,-1],[0,-1],[1,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,-2],[1,0],[1,0],[3,0],[2,1],[2,0],[2,1],[1,-1],[2,0],[1,0],[3,-1],[0,-1],[1,-1],[-1,-4],[0,-3],[0,-1],[-1,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-2,-2],[0,-2],[1,-2],[-1,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[1,0],[4,-2],[2,-1],[2,-1],[1,-1],[1,-1],[1,-1],[2,-2],[1,-2],[1,-2],[1,-1],[1,-3],[1,-1],[1,-3],[0,-1],[0,-1],[0,-2],[1,0],[0,-2],[1,0],[1,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-2],[-1,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[-1,0],[-2,-1],[-2,-1],[-2,0],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-2,-1],[-3,0],[-3,0],[-4,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[0,-1],[0,-3],[0,-2],[0,-4],[0,-2],[0,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[2,-1],[1,-1],[2,-1],[1,-1],[2,-1],[2,-1],[1,-1],[3,-2],[5,-3],[5,-3],[4,-3],[9,-6],[3,-2]],[[1863,2519],[0,-1],[-2,1],[-3,1],[-1,1],[-2,2],[-2,1],[-2,0],[-1,0],[-2,1],[-1,1],[-2,1],[-1,1],[-2,1],[-2,1],[-2,0],[-1,0],[-4,1],[-3,0],[-2,0],[-2,0],[-1,-1],[-2,0],[-2,-1],[-4,-1],[-1,0],[-4,-1],[-6,-3],[-6,-2],[4,-5],[5,-7],[3,-3],[-4,-3],[-1,-1],[-5,-2],[-3,-1],[-1,-1],[-5,-2],[-4,-2],[-4,-2],[-4,-3],[-1,-1],[-2,-1],[-5,1],[-2,1],[-1,2],[-1,4],[-2,1],[-2,1],[-1,1],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-4,-2],[-4,-3],[-2,-1],[-2,-1],[-3,0],[-1,0],[-4,-1],[-5,-1],[-2,0],[-3,-1],[-1,0],[-3,-1],[-5,-1],[-2,-2],[1,-1],[2,-1],[2,-1],[5,-2],[2,-2],[2,-1],[2,0],[1,-1],[2,-2],[2,-2],[3,-3],[2,-3],[4,-4],[3,-4],[5,-5],[2,-3],[1,-1],[1,-2],[3,-3],[2,-4],[2,-3],[3,-4],[2,-4],[2,-4],[3,-3],[0,-2],[1,-1],[0,-2],[-3,-6],[-2,-6],[-2,-4],[-2,-1],[-3,0],[-5,1],[-5,1],[-2,1],[-2,1],[-3,1],[-2,1],[-1,0],[-3,0],[-1,0],[-1,-1],[-3,-1],[-3,-2],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-2],[2,-2],[3,-3],[2,-1],[2,-1],[3,-3],[2,-2],[1,-2],[0,-1],[1,-2],[0,-2],[0,-1],[1,-1],[4,-2],[2,-1],[2,-1],[5,-2],[2,-1],[1,0],[1,-1],[4,-2],[1,0],[1,-2],[1,-1],[2,-2],[1,0],[0,-1],[-2,-1],[-2,-1],[-4,-3],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,1],[-4,1],[-5,2],[-2,1],[-6,1],[-4,1],[-6,2],[-2,0],[-6,2],[-4,1],[-6,1],[-4,1],[-6,1],[-3,1],[-2,-4],[-1,-2],[-1,-2],[-2,-4],[-3,-3],[-2,-5],[-2,-2],[-1,-3],[-2,-2],[-1,-1],[-2,-3],[-2,-2],[-2,-3],[-3,-3],[-2,-2],[-2,-2],[-4,-3],[-4,-3],[-4,-3],[-6,-4],[-4,-4],[-5,-3],[-4,-3],[-4,-3],[-5,-4],[-1,-1],[-2,-1],[-1,0],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-5,-4],[-1,0],[-1,-2],[-2,-1],[-7,-6],[-4,-3],[1,0]],[[933,2492],[3,4],[2,3],[2,3],[2,3],[3,2],[1,2],[1,1],[3,3],[3,1],[2,3],[0,1],[1,1],[2,2],[2,2],[3,3],[2,3],[4,5],[2,1],[2,3],[1,1],[2,2],[2,2],[2,1],[2,2],[2,2],[1,1],[1,1],[3,3],[1,1],[1,2],[2,1],[1,1],[1,1],[2,2],[1,1],[2,2],[0,1],[1,1],[1,2],[1,2],[1,1],[1,2],[1,1],[0,1],[1,1],[1,1],[2,2],[1,2],[1,1],[2,1],[1,2],[2,1],[1,1],[2,1],[1,1],[2,2],[2,1],[1,1],[2,1],[2,2],[2,1],[2,1],[1,1],[2,1],[1,1],[1,1],[1,1],[1,0],[1,1],[2,1],[1,1]],[[1045,2606],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[2,0],[2,0],[1,1],[1,1],[2,1],[0,1],[3,2],[1,1],[2,1],[1,0],[3,2],[3,3],[2,1],[3,2],[2,1],[1,1],[0,1],[1,0],[1,0],[2,-1],[1,0],[2,-1],[1,-1],[2,-2],[2,-1],[1,-1],[2,-2],[2,-1],[2,-1],[1,-1],[1,1],[1,1],[3,1],[2,1],[1,0],[1,1],[3,0],[2,0],[2,1],[2,0],[1,1],[2,0],[2,0],[3,1],[8,1],[3,1],[1,0],[3,1],[1,0],[3,0],[1,1],[3,0],[0,1],[0,1],[0,2],[-1,2],[0,3],[-1,3],[0,1],[0,2],[-1,2],[0,2],[0,1],[1,0],[2,0],[4,1],[5,0],[2,0],[0,1],[2,3],[1,3],[1,4],[2,6],[2,5],[2,5],[2,6],[3,5],[1,3],[1,0],[3,-1],[4,-1],[5,-1],[5,-1],[4,-1],[3,-1],[4,-1],[4,-1],[5,-1],[5,-1],[3,-1],[4,-1],[5,-1],[4,-1],[2,0],[1,-1],[23,-6],[1,1],[4,9],[3,9],[12,-3],[24,-5],[1,-1],[3,0],[4,0],[1,-1],[1,1],[2,0],[1,1],[2,0],[2,1],[1,1],[2,0],[2,0],[1,1],[4,1],[2,-1],[1,-1],[3,-2],[4,-2],[8,-3],[0,-1],[-1,-2],[-2,-4],[-2,-4],[5,-3],[2,0],[5,-3],[4,-1],[-4,-6],[0,-1],[0,-1],[1,-1],[2,-1],[2,-1],[2,-1],[3,-1],[4,-3],[4,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[1,0],[2,-2],[7,-5],[-1,-2],[-1,-1],[-1,-2],[0,-1],[1,-1],[1,0],[2,-1],[-1,-3],[-6,-9],[2,-1],[4,-3],[2,-2],[2,-1],[2,-2],[1,-1],[1,0],[1,-1],[1,0],[0,1],[0,1],[0,2],[1,1],[0,2],[1,1],[1,2],[0,1],[1,1],[1,1],[1,2],[2,1],[1,1],[1,1],[1,1],[2,1],[1,1],[3,1],[2,3],[1,0],[1,1],[0,1],[1,1],[0,2],[0,1],[1,2],[1,1],[1,1],[2,1],[1,1],[1,0],[2,0],[2,0],[2,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-3],[0,-1],[0,-2],[1,-2],[0,-2],[1,-1],[2,-1],[1,-2],[2,-2],[1,-1],[2,0],[1,-1],[1,0],[2,0],[2,0],[2,0],[1,0],[2,1],[1,1],[2,0],[1,1],[1,1],[2,1],[0,1],[2,0],[1,1],[2,1],[1,1],[2,1],[2,1],[3,2],[1,0],[3,1],[1,-1],[1,-1],[1,0],[2,-1],[4,-2],[3,0],[1,-1],[1,-2],[2,-2],[1,-2],[1,0],[1,1],[2,0],[5,1],[3,1],[4,1],[4,1],[2,0],[2,1],[3,0],[2,0],[2,0],[6,0],[1,0],[2,0],[2,0],[2,0],[2,0],[5,0],[2,-1],[2,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[2,1],[4,2],[4,2],[1,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[-1,3],[-2,2],[-1,2],[-2,2],[-1,1],[-4,2],[-3,3],[-2,1],[0,1],[-1,1],[1,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[-2,2],[-1,2],[-1,0],[-1,1],[-2,1],[-1,2],[-2,1],[-1,1],[-1,1],[-1,0],[-3,1],[-2,0],[-3,3],[0,1],[0,1],[0,1],[0,1],[1,1],[2,1],[1,0],[2,1],[2,-1],[2,0],[3,0],[2,-1],[2,-1],[3,-3],[1,0],[2,0],[2,0],[1,0],[4,-1],[2,0],[3,-1],[4,0],[4,-1],[5,0],[2,-1],[2,1],[3,1],[3,1],[2,0],[2,1],[2,1],[3,1],[1,1],[2,1],[3,1],[1,1],[2,1],[2,2],[3,1],[3,1],[2,1],[1,0],[2,-1],[1,-1],[2,-1],[1,-2],[2,-3],[2,-2],[1,-2],[2,-2],[2,-1],[1,-1],[3,-1],[4,-1],[3,0],[2,0],[2,-1],[2,-1],[2,-1],[2,0],[1,-1],[2,0],[2,0],[1,-1],[1,0],[2,0],[5,-1],[1,0],[1,0],[1,1],[0,1],[1,0],[2,0],[2,-1],[3,0],[4,-2],[2,0],[2,0],[1,0],[2,0],[1,1],[1,-1],[1,0],[0,-2],[0,-2],[0,-2],[0,-1],[1,0],[0,1],[2,1],[2,1],[4,2],[2,2],[1,2],[3,2],[2,3],[1,1],[2,3],[2,2],[2,1],[2,1],[1,1],[1,0],[1,0],[2,-1],[4,-1],[3,0],[1,0],[1,0],[-1,0],[-1,1],[-1,3],[-3,2],[-4,5],[-4,5],[-3,3],[-4,4],[-5,6],[-6,7],[3,2],[4,2],[3,3],[4,3],[3,2],[4,1],[3,2],[4,2],[3,2],[2,2],[-3,2],[-3,2],[-3,4],[-3,2],[-6,6],[-4,3],[-3,2],[-4,3],[-2,3],[1,1],[1,1],[0,1],[3,3],[1,1],[2,2],[1,1],[2,2],[3,3],[1,1],[3,4],[4,3],[4,3],[3,2],[4,4],[6,5],[1,1],[-1,0],[-4,1],[-1,0],[-1,1],[-2,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[0,2],[1,1],[0,1],[1,1],[1,1],[0,1],[1,2],[1,2],[1,2],[1,2],[0,3],[1,2],[1,2],[0,3],[0,2],[0,1],[0,2],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[1,1],[0,3],[0,2],[0,1],[1,3],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[2,0],[2,0],[1,0],[2,-1],[2,0],[2,-1],[1,0],[2,0],[3,0],[1,-1],[1,-1],[1,-2],[1,-2],[1,-2],[0,-2],[1,-1],[0,-1],[1,0],[2,1],[1,0],[3,0],[1,0],[3,0],[2,0],[1,1],[1,0],[2,1],[1,1],[1,0],[1,0],[2,0],[2,0],[1,0],[2,1],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-1],[2,-1]],[[2323,1687],[0,-1],[1,-4],[1,-2],[0,-2],[0,-4],[1,0],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[2,-2],[1,-2],[2,-3],[2,-3],[1,-1],[1,-1],[2,-3],[1,-3],[3,-4],[2,-3],[2,-3],[1,-3],[1,-1],[1,-2],[2,-3],[1,-3],[2,-2],[0,-2],[1,0],[1,-1],[0,-1],[2,-1],[2,-3],[2,-4],[3,-3],[0,-1],[2,-2],[1,-2],[2,-2],[2,-1],[1,0],[2,-1],[2,-1],[1,-1],[2,0],[1,-1],[2,-1],[2,-2],[1,-1],[2,-1],[2,0],[1,0],[2,1],[3,0],[4,2],[3,1],[2,1],[4,2],[3,1],[1,1],[1,0],[1,-1],[0,-1],[1,-1],[2,-5],[2,-3],[1,-3],[1,-2],[1,-2],[2,-2],[2,-3],[1,-2],[2,-1],[0,-2],[1,-1],[1,-2],[0,-2],[0,-1],[-1,-1],[-2,-1],[-5,-1],[-6,-2],[-1,-1],[-1,0],[-2,-1],[-6,-3],[-6,-3],[-5,-2],[-1,0],[-2,0],[-2,-1],[-3,0],[-3,-1],[-3,0],[-1,-1],[-2,0],[-2,-1],[-2,0],[-1,-1],[-2,-1],[-3,0],[-1,-1],[-3,0],[-3,-1],[-3,0],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,-1],[-3,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[2,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-3],[1,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[1,-1],[2,-3],[0,-2],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-5],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-2,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,-1],[-2,0],[-3,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-2],[-2,-2],[-1,-2],[-1,0],[0,-1],[0,-3],[-1,-1],[-2,-2],[-1,-1],[-1,0],[0,-2],[-1,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-3],[0,-2],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-2],[1,0],[0,-2],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,-2],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-1],[-1,0],[-2,1],[-3,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-2,-3],[-1,-1],[0,-1],[-1,0],[-3,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[2,-1],[1,-2],[2,-1],[1,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[3,-2],[1,-1],[1,-1],[2,-2],[2,-2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[-2,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[2,-1],[2,-2],[1,-1]],[[1974,1782],[0,1],[3,1],[1,1],[2,1],[1,0],[1,1],[2,0],[3,0],[2,0],[1,0],[1,0],[1,0],[3,0],[2,0],[1,0],[2,0],[2,0],[2,1],[2,0],[2,-1],[2,0],[1,0],[1,-1],[1,-1],[2,-1],[1,-1],[0,-2],[1,-3],[0,-1],[2,-1],[1,0],[1,0],[6,3],[3,2],[4,2],[1,0],[1,0],[1,-1],[3,-1],[3,-2],[2,-1],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[0,-1],[1,0],[1,-1],[2,-1],[3,-2],[2,-1],[1,-2],[1,0],[2,-2],[2,-2],[1,-2],[2,-1],[1,-1],[1,-1],[1,-2],[1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[2,-1],[2,-1],[1,0],[0,-2],[0,-2],[0,-1],[2,-2],[1,-2],[2,-2],[1,-2],[1,-1],[1,-1],[1,0],[2,-1],[3,-2],[1,1],[1,2],[1,0],[0,1],[0,4],[0,2],[1,2],[0,2],[0,1],[1,2],[0,1],[0,2],[1,2],[0,2],[1,1],[0,1],[0,3],[0,1],[0,2],[0,1],[1,2],[0,1],[1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[-1,1],[-1,1],[0,1],[1,1],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[2,0],[1,0],[3,0],[2,0],[1,0],[0,-1],[1,-1],[0,-1],[5,-2],[4,-1],[4,-2],[2,-1],[1,0],[2,-1],[2,-1],[2,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,-1],[0,-1],[0,-2],[-1,-2],[0,-2],[0,-1],[1,-1],[2,-1],[1,0],[2,-1],[3,-2],[2,-1],[2,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[2,-1],[3,-1],[2,0],[1,2],[0,1],[1,3],[1,1],[1,3],[0,1],[1,1],[1,0],[2,0],[2,0],[2,0],[1,-1],[1,0],[2,0],[2,1],[4,0],[2,0],[2,0],[1,1],[1,1],[2,1],[0,1],[2,0],[1,1],[4,1],[2,1],[4,1],[2,2],[2,0],[1,1],[0,1],[0,1],[-1,2],[0,1],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[0,1],[3,2],[2,1],[4,0],[3,1],[3,0],[6,1],[3,0],[2,1],[0,-3],[0,-1],[0,-1],[1,-1],[2,-3],[2,-3],[2,-2],[2,-3],[2,-3],[1,0],[0,-1],[1,0],[1,0],[1,1],[2,0],[1,1],[3,1],[3,1],[3,1],[3,1],[4,1],[5,1],[2,1],[1,0],[1,-2],[2,-3],[1,-2],[2,-5],[3,-5],[1,-3],[1,-3],[2,-3],[1,-2],[1,-1],[1,-1],[0,-2],[-1,-1],[-2,0],[-1,-1],[-1,0],[-3,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-2],[0,-1],[2,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,-1],[1,-2],[1,-3],[2,-4],[1,-2],[2,-4],[1,-2],[2,-5],[2,-3],[0,-1],[2,-3],[0,-1],[3,-6],[1,-2],[2,-3],[0,-1],[1,-1],[1,-1],[0,-1]],[[2891,656],[-6,0],[-7,0],[-6,-1],[-7,0],[-10,0],[-8,0],[-12,-1],[-7,0],[-9,0],[-13,-1],[-9,0],[-4,0],[-4,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-3,-1],[-2,-2],[-3,-1],[-2,-2],[-3,-1],[-1,0],[-1,0],[0,-1],[-2,1],[-6,1],[-3,0],[-2,0],[-1,1],[-1,0],[-2,1],[-1,0],[-2,1],[-2,0],[-1,-1],[-4,0],[-3,-1],[-2,0],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-2],[-1,0],[0,-1],[-3,1],[-5,0],[-4,0],[-4,1],[-4,0],[-4,0],[-4,0],[-4,1],[-4,0],[-3,0],[-3,0],[-3,0],[-1,0],[-3,1],[-4,2],[-3,1],[-1,0],[-2,1],[-3,1],[-1,1],[-1,0],[-4,1],[-5,2],[-2,0],[-1,1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-6,0],[-6,1],[-4,0],[-6,0],[-2,1],[-4,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-2,0],[-2,1],[-5,2],[-2,1],[-3,1],[-2,1],[-3,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,1],[-2,1],[-1,1],[-2,1],[-1,0],[-2,1],[-2,1],[-2,1],[-2,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,-2],[-1,0],[-2,0],[-3,0],[-3,1],[-2,1],[-2,2],[-2,1],[-3,1],[0,1],[-1,0],[-2,0],[-2,-1],[-4,-1],[-5,-1],[-4,-1],[-3,-1],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-3,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-3,1],[-2,1],[-1,1]],[[2323,1687],[0,1],[1,1],[0,2],[0,1],[0,1],[1,1],[1,1],[1,0],[2,1],[5,1],[5,1],[4,1],[6,1],[5,1],[6,1],[3,1],[1,1],[1,2],[1,1],[1,1],[1,1],[2,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[2,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,0],[2,1],[1,0],[1,1],[2,1],[1,1],[1,1],[3,3],[2,2],[1,1],[1,0],[1,0],[2,-2],[3,-2],[1,-1],[1,0],[1,0],[1,0],[2,1],[3,1],[1,1],[2,1],[1,1],[2,0],[1,1],[1,0],[4,0],[3,0],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,1],[2,0],[2,1],[1,1],[2,1],[3,2],[1,0],[2,1],[0,1],[3,2],[1,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[5,-1],[2,0],[1,0],[4,0],[4,0],[2,0],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[2,1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,1],[1,0],[2,0],[2,0],[1,-1],[1,0],[2,1],[1,0],[2,1],[1,0],[1,1],[1,0],[1,1],[1,2],[1,0],[1,0],[4,1],[4,0],[5,0],[2,0],[3,0],[2,0],[5,-1],[3,0],[1,-1],[1,0],[2,-2],[1,-1],[0,-1],[1,0],[2,0],[4,0],[1,0],[1,-1],[1,0],[4,-2],[4,-2],[2,-1],[2,0],[1,0],[2,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0]],[[2593,1740],[1,-1],[2,0],[2,0],[3,0],[3,0],[4,0],[2,0],[2,1],[3,1],[1,0],[1,1],[1,0],[5,-1],[1,1],[2,0],[4,0],[1,0],[4,1],[2,0],[1,1],[2,1],[1,1],[1,1],[2,0],[3,1],[2,1],[1,0],[3,0],[3,0],[7,0],[3,-1],[2,0],[1,0],[2,0],[2,0],[3,-1],[3,-1],[4,-1],[2,-1],[2,-1],[3,-1],[2,0],[1,0],[2,-1],[3,0],[2,1],[2,0],[2,-1],[2,0],[2,0],[1,1],[1,0],[1,0],[1,-1],[1,-1],[2,0],[1,0],[2,0],[1,0],[2,0],[3,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[6,1],[5,0],[2,0],[1,0],[3,0],[2,0],[1,0],[-1,3],[0,2],[0,1],[0,1],[2,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,1],[1,0],[1,2],[1,0],[2,1],[1,1],[2,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[1,1],[2,1],[1,1],[1,1],[1,1],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,1],[1,0],[1,0],[1,-1],[3,0],[1,0],[1,1],[1,1],[2,2],[2,1],[1,1],[1,1],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[2,1],[3,2],[2,2],[0,1],[1,1],[0,2],[1,1],[1,0],[2,3],[2,2],[1,0],[2,1],[1,0],[3,1],[5,0],[2,0],[1,1],[1,0],[2,2],[2,2],[1,1],[1,1],[2,1],[1,2],[2,1],[2,1],[2,1],[2,2],[1,0],[3,1],[2,0],[3,1],[3,0],[1,0],[3,0],[4,0],[4,0],[2,0],[2,0],[4,0],[3,0],[4,0],[4,0],[3,1],[2,0],[1,0],[1,1],[4,1],[2,1],[1,0],[2,1],[1,0],[1,0],[3,1],[3,1],[1,1],[3,1],[2,0],[2,1],[3,1],[4,1],[1,1],[1,0],[3,1],[5,2],[3,0],[2,1],[3,1],[3,1],[2,0],[4,2],[2,0],[2,1],[3,1]],[[2593,1740],[2,2],[1,1],[1,1],[1,2],[0,1],[1,1],[0,2],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-2,1],[-1,0],[-3,3],[-2,2],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[1,1],[2,1],[2,2],[2,2],[1,1],[2,1],[3,2],[1,0],[0,1],[1,1],[1,1],[1,1],[1,2],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,2],[-1,1],[-1,3],[0,1],[-1,0],[0,2],[-1,3],[-1,2],[0,2],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-2,0],[-3,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[1,2],[1,1],[2,2],[1,1],[1,0],[0,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,1],[0,2],[0,2],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[-1,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,1],[0,1],[0,1],[1,2],[0,2],[0,1],[1,2],[0,1],[1,1],[1,1],[1,1],[2,1],[1,1],[1,2],[1,1],[0,1],[0,1],[2,2],[0,1],[1,1],[0,1],[0,2],[1,2],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,2],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,2],[0,1],[1,0],[1,1],[1,0],[2,0],[0,1],[1,0],[1,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[2,1],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[-3,1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[-1,1],[0,2],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,2],[-1,1],[0,2],[1,2],[1,2],[1,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,2],[0,2],[1,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[1,2],[0,2],[0,2],[0,1],[1,1],[0,2],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-3,2],[-3,2],[-2,1],[-3,2],[-2,1],[-2,1],[-2,2],[-2,2],[-2,1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-2,0],[-1,1],[-2,0],[0,1],[-3,1],[-1,1],[-1,0],[2,2],[2,1],[1,1],[0,1],[0,2],[-1,2],[0,3],[-1,2],[0,1],[0,1],[0,1],[-1,1],[-2,3],[-2,3],[-2,4],[-1,1],[-1,2],[-2,3],[-2,1],[-2,2],[-1,1],[0,1],[0,3],[1,3],[1,3],[0,3],[-1,3],[0,1],[-1,0],[-2,0],[-3,0],[-2,0],[-1,1],[-2,0],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,2],[1,2],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[2,3],[2,2],[1,2],[-1,1],[-1,1],[1,1],[1,0],[1,0],[2,0],[2,0],[2,0],[0,1],[1,0],[0,1],[-1,1],[-1,1],[0,1],[1,1],[1,0],[2,1],[2,0],[1,-1],[1,0],[2,0],[2,1],[1,0],[0,1],[-1,1],[-3,1],[-3,2],[-4,1],[-2,1],[-2,1],[-1,1],[-3,3],[-2,2],[-2,1],[-3,0],[-3,1],[-1,0],[-2,1],[-3,0],[-1,1],[-1,0],[-1,1],[-1,2],[0,1],[-2,2],[0,1],[0,1],[1,1],[0,2],[-1,1],[-2,1],[-2,1],[-2,1],[-4,0],[-2,0],[-2,0],[-4,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[0,1],[-1,4],[1,3],[-1,1],[-1,1],[-3,0],[-2,0],[-2,0],[-3,-1],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,2],[-1,0],[-2,1],[-1,1],[1,2],[0,3],[0,2],[2,2],[0,2],[0,2],[-1,2],[0,1],[-1,2],[1,1],[0,1],[3,1],[2,1],[1,1],[1,1],[0,1],[0,2],[1,3],[1,2],[1,2],[2,2],[2,1],[2,1],[2,0],[3,2],[2,2],[2,1],[0,2],[1,2],[1,2],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[2,2],[1,2],[0,1],[0,1],[1,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,2],[0,2],[-1,4],[-1,1],[-1,2],[-2,2],[-2,2],[-2,1],[0,2],[1,2],[0,1],[0,1],[1,1]],[[2491,2255],[2,1],[2,1],[3,2],[2,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,0],[4,1],[2,0],[1,0],[1,1],[2,4],[-1,1],[0,1],[0,2],[0,1],[1,1],[0,1],[1,1],[4,1],[3,0],[2,1],[2,0],[0,1],[4,6],[0,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,2],[0,1],[1,2],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,2],[0,2],[-1,1],[0,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-2,1],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[2,1],[1,1],[1,0],[1,2],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,2],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[2,1],[1,1],[1,1],[1,0],[1,1],[1,2],[2,1],[1,1],[1,1],[2,0],[2,1],[1,0],[1,1],[1,1],[1,1],[0,1],[1,2],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[2,0],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[2,1],[1,1],[1,1],[1,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[-2,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,2],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,2],[1,1],[0,1],[1,2],[1,1],[0,1],[2,1],[1,0],[0,1],[2,2],[0,2],[1,2],[1,1],[0,1],[1,1],[1,1],[1,2],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,2],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[1,1],[1,2],[1,1],[1,2],[0,1],[1,1],[1,2],[3,8],[0,1],[0,3],[-1,1],[-4,3],[-3,2],[-7,3],[-4,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-3,-2],[-2,-1],[-2,-1],[-2,0],[-1,0],[-1,2],[-2,4],[0,1],[0,2],[1,3],[1,1],[1,1],[1,0],[2,0],[1,1],[0,1],[2,4],[0,1],[0,1],[-1,2],[-1,1],[-2,1],[-1,2],[-1,3],[0,3],[0,2],[1,3],[3,5],[0,2],[1,2],[1,4],[2,3],[0,1],[-1,3],[0,1],[1,3],[1,4],[2,4],[2,4],[2,4],[-1,2],[-1,1],[-1,0],[-5,2],[-1,1],[0,2],[0,2],[1,2],[0,2],[-1,1],[-5,6],[-3,2],[-2,1],[-1,0],[-1,0],[-3,-3],[-4,-3],[-2,-1],[-2,-1],[-3,-1],[-1,0],[-2,1],[-1,0],[-2,1],[-1,1],[-3,0],[-2,1],[-3,1]],[[2545,2659],[1,2],[1,1],[1,1],[4,3],[4,2],[2,2],[2,2],[1,2],[0,2],[1,1],[1,1],[4,2],[1,2],[1,2],[2,1],[1,1],[0,1],[1,1],[0,2],[0,2],[2,2],[1,1],[1,1],[1,0],[0,-1],[1,-1],[2,-2],[3,-3],[2,-1],[2,-1],[3,-1],[2,0],[1,0],[2,1],[2,0],[1,3],[1,0],[1,0],[2,-1],[2,0],[2,0],[4,1],[3,2],[3,0],[1,1],[1,0],[1,0],[2,0],[4,-1],[3,-1],[2,0],[4,1],[2,2],[2,2],[3,3],[2,4],[2,5],[1,2],[3,2],[1,2],[1,1],[2,2],[2,2],[2,1],[6,4],[5,4],[2,0],[1,0],[2,0],[3,0],[2,1],[1,0],[1,2],[1,0],[1,1],[2,2],[1,0],[0,1],[0,1],[1,2],[1,3],[1,1],[1,0],[0,1],[1,0],[2,0],[1,0],[1,1],[2,2],[1,1],[0,1],[0,2],[0,1],[-1,2],[0,2],[-1,2],[0,4],[0,2],[0,1],[0,1],[0,1],[2,1],[1,1],[2,2],[3,2],[2,2],[1,1],[2,2],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-2,0],[-1,1],[-1,1],[-2,1],[-2,2],[-2,1],[-1,1],[-1,0],[0,1],[1,2],[1,2],[1,1],[1,1],[2,2],[2,1],[1,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,2],[-1,1],[-1,3],[-1,2],[0,1],[3,3],[2,2],[1,1],[0,1],[0,2],[0,2],[-1,2],[-2,2],[-2,1],[0,1],[0,1],[-1,2],[0,2],[1,1],[1,1],[1,2],[1,2],[1,3],[2,3],[0,1],[0,3],[0,2],[0,2],[0,1],[-1,2],[-1,1],[-1,2],[-2,1],[-1,1],[1,0],[0,1],[2,3],[1,2],[1,3],[0,1]],[[2712,2886],[1,2],[1,1],[3,2],[2,2],[3,1],[2,2],[1,2],[0,1],[1,2],[1,1],[2,1],[3,4],[1,2],[0,2],[1,5],[0,1],[1,0],[1,0],[3,1],[1,0],[1,1],[1,2],[1,2],[2,2],[2,3],[3,3],[3,2],[1,2],[1,1],[3,3],[1,1],[2,1],[2,1],[1,1],[2,1],[1,2],[2,1],[1,1],[2,0],[2,1],[1,0],[0,2],[0,4],[0,2],[0,1],[1,3],[0,2],[-1,1],[-1,1],[-2,1],[-2,1],[-2,0],[-3,2],[-2,2],[-1,2],[-1,1],[0,2],[0,1],[1,3],[0,2],[0,1],[-1,3],[0,1],[0,1],[1,1],[1,3],[0,2],[1,4],[1,3],[1,1],[0,1],[1,0],[0,1],[4,1],[2,1],[2,1],[2,1],[1,2],[1,1],[1,2],[1,1],[2,5],[1,2],[3,3],[1,2],[1,1],[0,2],[0,1],[0,1],[-1,5],[0,1],[0,3],[1,1],[1,2],[1,2],[0,2],[1,2],[1,1],[1,1],[2,1],[1,0],[2,-1],[3,-1],[0,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,-1],[1,0],[3,-1],[1,0],[1,-1],[3,0],[1,1],[3,1],[1,1],[1,1],[2,1],[2,2],[1,0],[1,2],[1,0],[1,0],[2,0],[1,0],[2,0],[2,0],[2,-1],[1,0],[1,0],[2,1],[2,0],[1,0],[3,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,1],[2,1],[1,1],[1,1],[1,0],[1,0],[1,0],[2,1],[2,1],[1,1],[2,1],[2,1],[1,1],[-1,2],[-1,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[2,1],[2,1],[1,1],[3,1],[4,1],[3,0],[5,1],[1,1],[4,0],[1,0],[1,1]],[[2903,3083],[2,-2],[2,-2],[0,-2],[2,-2],[1,-3],[2,-3],[2,-2],[2,-2],[1,-1],[2,-2],[1,-1],[2,-2],[2,-1],[2,-2],[1,-1],[1,-1],[1,-3],[2,-3],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,1],[3,1],[2,0],[1,0],[3,0],[3,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[2,-1],[2,0],[2,0],[2,-1],[2,0],[3,-1],[1,0],[2,-1],[1,0],[2,0],[2,0],[2,0],[5,0],[1,0],[2,0],[1,-1],[3,0],[2,-1],[2,0],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,-1],[2,0],[2,0],[1,0],[1,0],[1,1],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[2,0],[1,1],[1,0],[1,1],[1,0],[1,0],[3,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[2,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[2,0],[1,1],[1,1],[2,0],[1,1],[2,1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,-1],[2,0],[2,0],[2,0],[3,0],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[2,-1],[1,0],[2,-1],[2,-1],[3,-1],[2,0],[2,-1],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[3,0],[1,0]],[[2545,2659],[-2,0],[-4,-2],[-2,0],[-2,0],[-2,-1],[-3,-1],[-2,0],[-3,1],[-4,1],[-2,1],[-3,2],[-3,1],[-1,1],[-2,-1],[-3,0],[-3,0],[-2,0],[-1,0],[-2,1],[-2,1],[-3,1],[-1,2],[0,2],[1,3],[2,1],[3,2],[2,2],[2,2],[0,2],[0,3],[0,2],[-1,1],[-2,2],[-4,1],[-2,2],[0,1],[0,1],[3,3],[0,1],[0,1],[0,1],[0,1],[-2,2],[-3,2],[-2,3],[-2,0],[-2,1],[-1,0],[-3,0],[-2,0],[-3,0],[-1,0],[0,4],[-1,8],[-1,4],[-1,1],[-1,0],[-2,0],[-3,0],[-4,0],[-3,0],[-2,0],[-2,2],[-2,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-3,-1],[-2,-1],[0,-1],[-4,-4],[-3,-4],[-3,-4],[-3,-4],[-2,0],[-2,0],[-3,0],[-3,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-5],[0,-2],[-1,-7],[-1,-2],[-1,0],[-2,-2],[-1,-1],[-3,0],[-2,-1],[-3,-2],[-2,-1],[-2,0],[-2,0],[-3,-1],[-5,-3],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-2,0],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-3,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-2,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[-1,-3],[0,-1],[0,-1],[2,-4],[0,-1],[1,-1],[1,-2],[0,-2],[0,-3],[-1,-3],[-1,-3],[-1,-4],[-1,-5],[-1,-3],[-3,-3],[-2,-3],[-2,-1],[-1,-2],[0,-2],[-1,-3],[0,-2],[-2,-2],[-2,-4],[-1,-1],[-1,-2],[0,-1],[1,-2],[0,-2],[2,-3],[1,0],[1,-1],[0,-1],[-1,-2],[-1,-1],[1,-4],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-3,-3],[-1,-2],[-4,0],[-3,1],[-3,1],[-2,0],[-1,0],[-2,-1],[-1,0],[-3,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-2],[1,-2],[2,-3],[0,-2],[0,-1],[-2,-1],[0,-1],[-1,-1],[0,-1],[-4,-3],[-4,-2],[-2,-1],[-2,-3],[-3,-2],[-1,-1],[-3,-1],[-2,0],[-3,0],[-2,0],[-2,0],[-5,1],[-1,0],[-1,-1],[-1,-2],[-5,-10],[-2,-3],[-2,-1],[-2,-1],[-5,-1],[-1,0],[-1,-2],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,1],[-1,1],[-1,2],[-2,3],[-3,3],[-1,2],[0,3],[-1,2],[-1,1],[-5,3],[-3,2],[-10,9],[-5,5],[-4,4],[-3,2],[-2,2],[-1,2],[-2,3],[-1,2],[-1,1],[-2,0],[-2,1],[-4,2],[-2,0],[-2,0],[-1,1],[-3,2],[-1,1],[-3,2],[-5,3],[-3,1],[-5,2],[-5,1],[-5,1],[-3,1],[-2,2],[-2,0],[-1,1],[-3,-1],[-3,1],[-6,1],[-3,0],[-2,0],[-3,-1],[-2,0],[-3,1],[-4,0],[-1,3],[-1,1],[-2,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,3],[0,2],[-1,1],[-3,2],[-3,1],[-1,0],[-1,-1],[-2,-1],[-1,-3],[-1,-2],[0,-2],[-1,-2],[-3,0],[-1,0],[-3,-3],[-2,-2],[-2,-3],[-1,-1],[-2,-1],[-1,-2],[-1,0],[-1,1],[-1,1],[-1,3],[-1,2],[-1,2],[-1,0],[-5,0],[-4,0],[-1,0],[-4,0],[-3,0],[-1,0],[-1,0],[0,-3],[0,-3],[-2,0],[-4,-1],[-2,1],[0,1],[-2,4],[-2,5],[-1,2],[0,1],[-2,0],[-1,0],[-1,0],[-6,-1],[-3,-1],[-9,-2],[-3,-1],[-6,0],[-7,-2],[-9,-1],[-2,0],[-4,0],[-6,-4],[-4,7],[-2,2],[-2,0],[-3,0],[-1,1],[-1,0],[-1,2],[-1,2],[-1,1],[-1,0],[-3,0],[-1,0],[-1,1],[-1,9],[-1,3],[-1,6],[-7,17],[-1,1],[-1,0],[-1,0],[-3,0]],[[1846,2796],[2,1],[1,0],[2,1],[1,1],[1,0],[2,0],[2,0],[2,-1],[1,-1],[2,-2],[3,-2],[2,-2],[2,-2],[1,-1],[1,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,1],[1,1],[1,1],[2,1],[1,1],[0,1],[1,2],[1,2],[1,1],[1,1],[1,2],[0,1],[1,1],[1,2],[2,1],[1,0],[2,1],[2,1],[2,1],[1,0],[1,1],[0,1],[0,5],[-1,2],[0,2],[0,1],[-1,1],[-1,1],[-1,1],[-1,2],[0,3],[-1,3],[-1,2],[-1,4],[0,1],[0,2],[0,1],[0,1],[1,2],[1,1],[1,1],[1,1],[2,1],[2,1],[2,1],[1,1],[1,0],[2,0],[2,0],[1,-1],[3,-1],[2,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[0,1],[1,1],[1,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-2,1],[-1,3],[-2,1],[0,1],[-1,2],[0,1],[0,2],[-1,1],[1,0],[0,2],[1,1],[1,1],[1,1],[0,1],[2,0],[2,1],[3,0],[2,0],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[1,-1],[2,-1],[0,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,-3],[2,-1],[0,-2],[1,-1],[1,-1],[0,-2],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[3,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,-2],[1,-1],[1,-2],[1,-2],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[4,1],[4,1],[3,1],[7,2],[9,2],[3,1],[2,1],[1,0],[1,0],[2,0],[2,0],[4,0],[7,-1],[2,0],[2,0],[1,0],[1,0],[2,2],[1,0],[1,1],[1,1],[2,0],[2,1],[2,0],[1,0],[2,-1],[2,0],[5,-2],[4,-1],[3,-2],[5,-1],[4,-1],[2,-1],[2,-1],[3,-1],[2,0],[3,0],[2,0],[1,-1],[2,0],[4,0],[3,-1],[2,0],[5,0],[9,-1],[5,-1],[7,-1],[4,-1],[0,-1],[1,3],[2,0],[9,-2],[4,0],[2,-1],[1,0],[1,1],[1,1],[1,1],[3,0],[3,0],[5,0],[8,0],[19,1],[2,-4],[4,-6],[3,-3],[2,-3],[2,-1],[1,0],[1,0],[4,4],[6,6],[9,9],[2,2],[1,1],[0,2],[0,1],[-3,3],[-2,3],[-1,2],[1,1],[1,1],[2,0],[4,2],[2,0],[5,0],[4,-1],[6,0],[3,0],[2,0],[3,-2],[2,-1],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[3,-6],[2,-3],[2,-2],[1,-2],[2,-2],[2,-1],[2,1],[2,2],[1,1],[0,4],[1,2],[-1,3],[1,3],[0,3],[1,5],[0,3],[0,1],[1,2],[0,1],[1,2],[0,2],[0,3],[0,1],[0,1],[2,1],[1,1],[3,3],[3,1],[1,0],[4,1],[1,-1],[4,0],[3,1],[3,0],[3,0],[2,1],[2,0],[2,0],[0,-1],[2,0],[4,1],[2,0],[2,1],[0,2],[0,3],[1,4],[1,2],[1,1],[2,-1],[4,-1],[2,-2],[2,-1],[2,0],[2,-1],[3,0],[3,1],[1,1],[1,3],[0,3],[-1,2],[-2,3],[-1,2],[0,1],[1,3],[1,1],[2,1],[5,1],[3,0],[2,1],[2,1],[3,0],[3,1],[2,1],[2,1],[3,2],[2,1],[1,1],[0,2],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[0,3],[1,3],[0,3],[0,2],[0,2],[0,1],[0,2],[1,0],[0,2],[0,2],[0,4],[0,2],[1,1],[0,1],[1,1],[1,0],[4,0],[3,1],[3,0],[3,0],[3,0],[2,-1],[5,0],[4,-1],[3,0],[3,0],[2,-1],[1,0],[1,0],[1,-1],[3,-2],[2,-2],[2,-1],[0,-1],[2,-2],[1,-1],[2,0],[2,-1],[1,0],[1,1],[2,0],[1,1],[2,1],[1,0],[2,1],[2,1],[2,1],[1,1],[1,1],[1,0],[1,1],[1,2],[1,2],[2,1],[1,1],[1,1],[1,2],[1,1],[0,2],[0,1],[1,2],[0,2],[1,1],[2,0],[3,-1],[3,-1],[1,0],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,-1],[1,0],[2,-2],[1,0],[1,-1],[2,0],[0,-1],[1,0],[0,-2],[1,-1],[1,-1],[1,1],[2,1],[3,1],[2,1],[1,0],[3,-1],[2,0],[2,-1],[2,-3],[1,0],[1,-1],[1,1],[1,0],[2,1],[2,0],[1,-1],[1,0],[2,-1],[0,-1],[1,-2],[0,-1],[1,-3],[1,-2],[1,-1],[1,-2],[1,0],[1,0],[1,1],[2,1],[1,0],[2,1],[2,0],[1,1],[2,1],[2,1],[1,1],[0,2],[0,2],[0,1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[0,1],[1,2],[-1,1],[0,4],[-1,1],[0,4],[-1,2],[1,1],[0,1],[2,2],[2,2],[2,2],[2,1],[0,1],[1,0],[1,0],[1,1],[2,0],[1,1],[2,2],[0,1],[0,1],[1,1],[1,1],[1,0],[2,3],[3,2],[2,2],[2,1],[2,1],[2,1],[1,0],[1,0],[1,-1],[0,-1],[2,-1],[2,0],[2,0],[1,2],[1,1],[1,0],[1,0],[1,0],[2,0],[2,-1],[2,-1],[1,-1],[1,0],[1,0],[2,1],[2,1],[2,1],[1,1],[2,1],[2,1],[1,0],[2,1],[2,0],[2,-1],[1,-2],[1,-1],[1,-1],[1,-2],[2,-2],[1,-1],[2,-2],[1,-2],[0,-2],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[2,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[2,-2],[1,-1],[2,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-3],[0,-1],[1,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[-2,-3],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[2,-2],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,2],[0,1],[1,2],[1,1],[1,1],[1,0],[1,-1],[1,-1],[4,0],[2,0],[1,0],[0,-1],[0,-2],[1,-2],[4,-2],[0,-1],[0,-1],[2,-3],[1,-2],[0,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[1,-2],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[4,-2],[4,-1],[2,-1],[2,-1],[1,0],[1,0]],[[2491,2255],[-1,0],[-2,1],[-4,4],[-4,2],[-3,2],[-1,2],[-1,0],[-2,0],[-1,1],[-2,1],[-1,1],[-2,1],[-1,2],[-1,1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,-1],[-2,-2],[-1,-1],[-2,-2],[-3,-2],[-2,-2],[-1,-1],[-3,-1],[-2,-2],[-2,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-2,-2],[-2,-2],[-1,-1],[-2,-1],[-2,-1],[0,-2],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-3,0],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-2],[-2,-2],[-1,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-3,-2],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,1],[-1,0],[-3,-1],[-1,-1],[-1,-1],[0,-1],[1,-1],[1,-2],[0,-1],[0,-1],[1,-2],[0,-2],[1,-1],[0,-3],[1,-2],[0,-3],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[-3,-1],[-1,0],[-3,-1],[-3,-1],[-1,-1],[-1,0],[0,-2],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-3,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,-2],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[-3,-2],[-1,0],[-2,0],[-2,-1],[-1,-1],[-1,-2],[-2,-3],[-1,-1],[-2,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,0],[0,-3],[1,-3],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-3,-2],[-3,-1],[-1,0],[-1,-2],[-2,0],[0,-1],[-2,-2],[-2,-2],[-1,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[0,-1],[-2,-1],[0,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,1],[-1,0],[-2,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,-1],[0,-1],[0,-2],[1,-1],[-2,-4],[-1,0],[-3,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[2,-3],[1,-1],[0,-1],[-4,-5],[-2,-3],[-3,-5],[-2,-3],[-3,-5],[-2,-1],[-1,-2],[-1,0],[-2,-1],[-5,-1],[-2,-1],[-2,-1],[-3,-2],[-3,-2],[-2,-1],[-2,-2],[-2,-3],[-1,-1],[-1,-2],[-3,-2],[-1,-1],[-1,0],[-1,0],[-3,-1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-3],[-1,-1],[-1,0],[-1,-1],[-4,0],[-9,-1],[-1,0],[-1,2],[-1,2],[0,1],[-2,1],[-1,1],[-1,0],[-3,0],[-4,0],[-6,0],[-1,0],[-4,-1],[-1,0],[-3,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,2],[-1,1],[0,2],[0,1],[-1,1],[0,1],[-1,1],[-1,3],[-1,3],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-2,2],[0,1],[-2,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,3],[0,1],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,-1],[-1,-1],[-2,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-3,-1],[-2,-1],[-3,0],[-3,-2],[-2,-2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,0],[-3,-1],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-3,1],[-2,1],[-2,0],[-2,1],[-1,1],[-1,0],[-2,2],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-2,0],[-1,-1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[-2,1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-2],[-2,0],[-1,-1],[-1,0],[-2,0]],[[2015,3557],[1,-2],[0,-1],[1,-1],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-2,0],[-1,0],[-4,0],[-3,1],[-4,0],[-3,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[0,-2],[1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-3,0],[-2,0],[-4,0],[-1,-1],[-1,0],[-2,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[2,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,0],[0,-1],[2,-2],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-2,-1],[-2,-2],[-3,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-3,2],[0,1],[-1,0],[-1,1],[-2,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-2],[1,-1],[0,-2],[1,0],[0,-2],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-3,1],[-1,1],[-1,0],[-2,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,2],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,2],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,0],[-1,0],[-1,1],[-1,0],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,0],[0,-2],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-3,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-2,0],[-1,1],[-1,-1],[-3,0],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-2,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-2],[-1,-1],[-2,-1],[-2,-1],[0,-1],[-2,0],[-1,0],[-3,1],[-4,-1],[-4,0],[-3,1],[-1,1],[-3,3],[-1,2],[-1,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[2,1],[1,0],[2,1],[2,1],[3,1],[1,1],[1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,2],[1,0],[1,1],[0,1],[1,0],[1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,1],[-2,0],[-1,0],[-2,1],[-2,2],[-1,1],[-2,1],[-2,2],[-1,0],[0,1],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-2,-3],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-3,-1],[-2,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,1],[-2,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-2],[-2,-2],[0,-1],[-1,-2],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[1,-1],[0,-2],[0,-1],[2,-2],[2,-2],[2,-2],[1,-1],[1,-1],[1,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[8,-10],[18,3],[0,-1],[-1,-3],[-1,-1],[0,-1],[-1,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[1,-1],[1,0],[2,-2],[2,0],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[1,-4],[0,-2],[1,-4],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-2],[0,-2],[0,-1],[1,-1],[0,-1],[1,-3],[1,-3],[1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-3,0],[-1,0],[-1,1],[-2,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,-1],[1,-1],[1,-1],[2,-1],[0,-1],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,-2],[0,-1],[1,-1],[2,-3],[2,-3],[1,-2],[1,-2],[1,-2],[2,-3],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-3],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-3],[-1,-3],[0,-2],[0,-3],[0,-4],[0,-3],[0,-1]],[[1603,3014],[-2,0],[-2,1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[-2,2],[-2,1],[0,1],[-2,1],[-1,2],[-2,1],[-1,1],[-2,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-3,2],[-3,1],[-3,2],[-1,0],[-2,2],[-3,1],[-3,2],[-1,0],[-1,0],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-2,-1],[-3,-1],[-1,-1],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,2],[-1,1],[-1,2],[0,1],[-1,3],[-1,2],[-1,2],[-1,2],[0,1],[-2,3],[-1,3],[0,1],[-2,3],[-1,2],[0,1],[-1,1],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-2,1],[-2,0],[-2,1],[-2,0],[-2,1],[-1,1],[-3,0],[-1,1],[-2,0],[-1,0],[-3,1],[-3,1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[2,-2],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-3,0],[-3,1],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-3],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-4],[-1,-3],[0,-2],[-1,-1],[-1,-4],[-1,-2],[-1,-2],[0,1],[-1,2],[-2,4],[-1,1],[-3,4],[-1,2],[-2,3],[-2,1],[-1,1],[-1,0],[-1,1],[-2,0],[-3,1],[-2,1],[-1,0],[-3,1],[-1,0],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-2],[-1,0],[0,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[-2,-1],[-2,-1],[-3,0],[-3,-1],[-2,1],[-2,0],[-2,1],[-1,0],[-1,1],[-1,2],[-2,2],[-2,1],[-1,1],[-2,2],[-2,0],[-1,1],[-3,0],[-2,1],[-1,0],[-4,0],[-4,0],[-1,0],[-3,0],[-1,0],[-1,-1],[-2,0],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[2,0],[1,-1],[1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-2,2],[-2,1],[-2,1],[-2,1],[-1,1],[-1,0],[-1,-1],[-2,0],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-3],[1,-2],[0,-1],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-3,-2],[-4,-2],[-3,-2],[-2,-1],[-3,-2],[-4,-2],[-2,0],[-1,-1],[-3,0],[-1,0],[-2,0],[-1,1],[-2,2],[0,1],[-1,1],[0,2],[-1,2],[0,2],[-1,0],[0,1],[-2,0],[-1,1],[-1,0],[-2,-1],[-2,0],[-2,1],[-3,1],[-1,1],[-3,1],[-3,2],[-2,1],[-2,2],[-1,0],[-2,1],[-1,1],[-2,0],[-1,0],[-1,0],[-2,-1],[-2,-1],[-2,-1],[-3,-2],[-2,-1],[-2,-1],[-2,-1],[-4,-1],[-2,-1]],[[1145,2976],[0,5],[0,1],[0,4],[-1,3],[0,3],[-2,3],[-1,2],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-3,1],[-2,0],[-2,1],[-2,0],[-2,0],[-1,0],[-4,-1],[-3,0],[-2,1],[-3,0],[-3,1],[-4,1],[-3,2],[-2,1],[-4,1],[-2,0],[-4,2],[-2,0],[-1,1],[0,-1],[0,-2],[-1,-2],[-1,-2],[0,-1],[0,-2],[0,-6],[0,-4],[0,-4],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-2],[-2,0],[-2,0],[-5,0],[-3,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,0],[-1,0],[0,3],[-1,5],[0,3],[-1,4],[0,2],[-1,3],[0,2],[1,1],[1,0],[0,2],[-1,3],[0,2],[0,1],[0,1],[-1,0],[-2,-1],[-2,-1],[-1,1],[-1,0],[0,1],[-1,-1],[-3,-2],[-1,-1],[-3,-2],[-2,0],[-3,-3],[-7,-4],[-2,-1],[-3,-2],[-2,-1],[-2,-1],[-3,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,2],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,1],[-1,1],[-2,0],[-2,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-4,-1],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-2,0],[-4,0],[-1,0]],[[962,3007],[-1,1],[-1,4],[0,3],[-1,2],[0,1],[0,1],[-1,2],[0,2],[0,3],[0,3],[0,1],[1,1],[0,1],[1,1],[2,1],[1,1],[1,1],[1,1],[1,2],[2,1],[1,1],[5,3],[9,6],[6,5],[8,5],[3,2],[-5,5],[-8,9],[-8,8],[-5,5],[-4,4],[-1,1],[-4,-2],[-7,-2],[-3,-1],[-1,2],[-2,2],[-2,2],[-1,0],[-3,0],[-3,0],[-3,-1],[-3,0],[-2,0],[-1,0],[-2,1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-2,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,3],[-1,3],[-1,4],[0,2],[0,1],[3,0],[5,1],[2,0],[-2,3],[-2,5],[-2,3],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[-2,4],[0,1],[0,1],[1,0],[1,1],[0,2],[-1,1],[0,2],[-2,2],[-1,2],[-1,1],[0,2],[-1,1],[0,3],[0,1],[-1,0],[-3,0],[0,2],[0,1],[-1,1],[0,2],[-1,3],[-1,4],[0,2],[-3,-1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,4],[0,1],[0,1],[0,1],[-2,1],[-2,2],[-2,1],[-1,1],[-1,5],[-1,3],[-1,2],[0,2],[0,2],[0,1],[0,2],[0,3],[0,2],[1,1],[0,2],[5,1],[12,3],[4,0],[1,0],[0,1],[1,0],[-1,2],[0,2],[0,2],[0,1],[-1,4],[0,3],[0,2],[-1,1],[0,1],[1,1],[2,2],[0,1],[1,1],[2,1],[4,1],[7,1],[3,0],[3,1],[1,0],[2,0],[1,1],[0,4],[0,5],[0,4],[0,1]],[[936,3259],[5,0],[4,0],[5,1],[1,0],[3,1],[3,1],[3,1],[4,1],[5,2],[4,1],[6,2],[6,3],[5,1],[3,1],[-1,4],[-2,5],[0,4],[-1,1],[0,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[2,1],[2,1],[1,0],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[1,0],[1,0],[2,1],[3,0],[2,1],[2,0],[2,1],[3,0],[1,1],[1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-2,2],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,2],[-2,2],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-3,3],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-2,2],[-2,1],[0,1],[-1,0],[0,2],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[0,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,0],[-2,0],[-2,-2],[-2,0],[-1,-1],[-1,-1],[-1,0],[-3,-3],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-3,2],[-2,2],[-1,1],[-1,1],[0,1],[1,2],[0,1],[0,2],[-1,1],[0,2],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,2],[0,2],[-1,3],[0,2],[0,1],[1,0],[4,0],[2,1],[2,0],[0,1],[0,1],[1,1],[2,0],[1,1],[1,1],[2,1],[0,1],[1,1],[0,1],[1,1],[0,1],[2,0],[1,1],[2,1],[1,0],[1,0],[0,1],[0,2],[0,1],[1,1],[2,3],[1,2],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,2],[0,1],[1,1],[0,1],[0,1],[-1,2],[-1,2],[-1,2],[-1,3],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,2],[-2,3],[-1,1],[0,1],[0,1],[1,1],[1,1],[-3,1],[0,1],[1,1],[0,1],[-1,0],[-1,2],[-2,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,1],[0,3],[0,4],[0,1],[1,2],[0,1],[2,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[-2,2],[0,1],[-1,0],[1,1],[1,2],[2,2],[1,0],[2,3],[2,1],[1,2],[3,2],[2,3],[2,2],[3,2],[2,3],[2,1],[1,2],[1,2],[-2,3],[-2,3],[-2,4],[-2,2]],[[916,3553],[1,0],[7,-1],[4,0],[3,-1],[2,0],[5,-1],[5,0],[3,-1],[6,-1],[2,0],[0,-1],[0,-4],[1,0],[3,0],[4,-1],[5,0],[8,-1],[6,-1],[6,0],[0,-1],[1,0],[2,0],[6,-1],[3,0],[9,-1],[4,0],[5,-1],[4,0],[1,0],[4,-1],[2,0],[4,-1],[2,0],[2,0],[2,-1],[3,0],[2,-1],[1,0],[3,0],[1,0],[1,-1],[2,0],[1,0],[3,0],[1,-1],[2,0],[2,0],[1,-1],[1,0],[3,0],[1,0],[3,-1],[1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[0,-2],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,1],[0,1],[1,0],[2,0],[2,0],[3,-1],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[2,0],[1,0],[3,1],[3,1],[0,1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-2],[2,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[1,-1],[2,-1],[2,-2],[1,0],[0,-1],[1,0],[2,-2],[1,-1],[1,-1],[1,-1],[2,-2],[2,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[1,-1],[1,0],[2,0],[2,0],[2,0],[3,0],[2,0],[1,0],[1,0],[2,0],[2,0],[3,1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[3,1],[1,0],[2,1],[2,0],[1,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,0],[1,0],[2,0],[2,-1],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[1,1],[2,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,2],[1,1],[0,2],[0,2],[1,2],[0,2],[1,1],[0,2],[1,0],[0,1],[1,2],[0,2],[0,2],[0,1],[0,1],[0,2],[-1,2],[0,2],[0,2],[-1,2],[0,2],[1,1],[0,2],[0,1],[0,1],[1,1],[0,2],[1,1],[1,2],[1,1],[1,1],[1,1],[1,0],[2,2],[2,1],[2,1],[2,1],[3,0],[2,0],[2,0],[1,-1],[2,0],[2,-1],[1,-1],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,0],[1,1],[2,1],[1,0],[2,2],[1,1],[2,2],[2,2],[2,2],[2,1],[3,1],[4,0],[3,1],[3,0],[3,1],[1,0],[1,0],[3,2],[2,2],[2,1],[2,2],[1,1],[2,2],[1,1],[1,1],[2,1],[2,0],[1,0],[2,1],[2,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,1],[3,1],[1,0],[3,1],[2,2],[2,1],[2,1],[1,1],[1,1],[1,2],[2,3],[1,1],[2,2],[1,1],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,2],[-1,2],[-1,2],[-1,1],[-1,0],[-1,1],[-1,1],[-3,0],[-1,1],[-2,0],[-1,1],[-1,1],[-2,3],[0,1],[-1,2],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[-2,1],[-1,1],[-2,1],[-2,1],[-3,1],[-2,1],[-1,1],[-2,0],[-2,1],[0,1],[0,1],[0,1],[0,2],[0,1],[2,3],[0,1],[1,3],[2,2],[1,2],[0,1],[1,1],[1,3],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[2,1],[2,1],[1,1],[2,0],[2,1],[1,1],[1,0],[1,1],[1,0],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,2],[0,1],[0,1]],[[1365,3699],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[4,0],[3,-1],[2,0],[1,0],[2,0],[1,0],[3,-1],[2,0],[3,0],[2,-1],[1,0],[3,-1],[3,-1],[3,-1],[2,0],[1,0],[4,-2],[1,0],[3,-1],[1,0],[2,-1],[3,-1],[2,-1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[2,-3],[1,-2],[1,-2],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[3,0],[1,0],[2,0],[2,0],[3,0],[4,0],[5,0],[5,0],[2,0],[4,0],[1,0],[1,-1],[1,-1],[1,0],[1,-2],[3,-1],[2,-2],[2,-2],[2,0],[1,-1],[2,-1],[3,-2],[2,-1],[1,0],[3,-2],[3,-1],[4,-2],[4,-1],[2,-1],[2,-1],[2,-1],[3,-1],[2,0],[2,-1],[1,0],[1,0],[0,1],[1,1],[0,2],[1,3],[0,1],[0,1],[1,2],[0,1],[1,1],[0,1],[1,1],[1,2],[1,1],[0,2],[1,2],[0,1],[1,1],[2,0],[6,0],[8,-1],[1,0],[10,0],[7,0],[2,0],[1,0],[4,-1],[2,1],[1,0],[3,1],[1,0],[3,0],[0,-5],[0,-1],[1,-1],[1,0],[1,-1],[3,1],[3,0],[3,0],[6,1],[2,0],[3,-1],[4,0],[1,0],[6,0],[7,0],[5,0],[1,0],[4,0],[4,8],[6,12],[10,20],[5,9],[1,2],[1,2],[1,-1],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[1,-1],[1,-1],[3,-1],[2,0],[1,-3],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,-1],[1,0],[2,1],[3,3],[0,1],[1,0],[1,0],[1,-1],[2,0],[5,-4],[1,0],[1,-1],[1,-1],[1,0],[2,0],[2,1],[1,0],[2,0],[2,0],[1,0],[1,0],[0,-1],[2,-1],[4,-2],[3,-2],[1,0],[1,0],[2,-1],[2,0],[1,0],[1,1],[0,1],[1,1],[0,1],[1,2],[1,0],[1,0],[1,1],[1,-1],[3,-1],[4,-1],[1,-1],[0,-1],[2,-1],[0,-2],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,-2],[0,-1],[0,-4],[1,-1],[1,0],[3,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[2,-1],[2,-1],[2,0],[1,-1],[4,-1],[0,-3],[0,-2],[0,-1],[2,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,-1],[1,-1],[2,0],[1,-1],[2,0],[1,0],[1,0],[2,0],[2,0],[3,0],[3,0],[1,0],[2,0],[1,0],[2,0],[6,1],[4,1],[2,1],[3,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,0],[3,-1],[2,0],[1,0],[1,0],[2,1],[2,1],[5,2],[2,1],[1,1],[1,1],[0,2],[1,1],[1,1],[1,1],[2,1],[2,1],[1,-1],[2,0],[2,0],[3,-1],[3,-1],[2,0],[1,0],[3,0],[2,0],[3,0],[3,-1],[2,0],[3,0],[1,0],[3,0],[3,1],[4,2],[2,1],[2,0],[1,0],[2,1],[1,1],[1,0],[1,1],[0,1],[0,2],[1,2],[1,2],[1,4],[1,1],[2,3],[2,3],[0,1],[2,2],[2,3],[1,2],[2,3],[2,2],[2,3],[3,3],[1,2],[1,1],[1,1],[2,2],[2,1],[1,2],[2,1],[1,1],[2,3]],[[1938,3724],[1,-2],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[1,-2],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[2,-2],[2,-1],[2,-1],[2,0],[1,-1],[1,-2],[1,-3],[1,-3],[1,-4],[1,-3],[1,-4],[1,-4],[0,-2],[1,-4],[0,-3],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[1,-3],[1,-2],[0,-2],[0,-2],[0,-3],[1,-1],[-1,-2],[0,-2],[0,-2],[0,-1],[1,-2],[1,-1],[0,-2],[1,-1],[1,-1],[2,-2],[2,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-4,-3],[-2,-1],[-5,-4],[-3,-1],[-3,-2],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-2,0],[-5,0],[-3,-1],[-4,1],[-3,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[1,-2],[2,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[1,0],[0,-1],[1,0],[1,0],[3,-1],[2,0],[1,1],[2,0],[1,0],[2,1],[2,1],[3,1],[2,1],[1,0],[1,0],[2,0],[0,-1],[1,0],[7,-1],[6,-1],[2,-1],[2,0],[2,-1],[2,0],[2,-1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[1,-1],[4,-5],[1,-1],[1,-1],[1,-2],[2,-3],[3,-4],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[2,1],[3,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,-2],[2,-1]],[[1603,3014],[0,-1],[1,-2],[0,-2],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[2,-1],[2,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[2,0],[2,0],[2,0],[1,0],[2,1],[1,1],[2,1],[1,0],[1,1],[2,1],[0,1],[1,0],[2,1],[2,0],[2,-1],[3,0],[5,-1],[9,-2],[3,-1],[4,0],[4,-1],[5,-1],[4,0],[5,-1],[1,0],[1,1],[1,0],[1,1],[2,2],[1,1],[1,2],[2,1],[2,2],[5,3],[3,3],[2,1],[3,2],[5,4],[2,2],[4,3],[5,4],[3,2],[5,5],[1,0],[3,3],[2,1],[1,1],[2,2],[2,1],[1,1],[1,1],[2,2],[4,3],[1,1],[2,2],[3,2],[2,1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[2,-3],[1,0],[2,-2],[1,-2],[2,-4],[1,-3],[1,-2],[2,-4],[0,-1],[0,-1],[-1,0],[1,-1],[1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,-3],[3,-5],[1,-2],[3,-6],[2,-4],[2,-4],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-2],[1,-2],[1,-2],[0,-2],[-1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,-2],[1,-3],[0,-2],[2,-2],[2,-2],[2,-2],[1,-1],[1,-2],[0,-1],[1,-2],[0,-3],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[2,-2],[0,-1],[1,0],[1,-1],[1,0],[2,0],[2,-1],[3,0],[-1,-2],[0,-3],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-2],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[2,-2],[1,-1],[1,-1],[1,-1],[2,-1],[2,-2],[2,-1],[2,-3],[5,-4],[3,-2],[4,-4],[1,-1],[2,-2],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-4,-1],[-3,0],[-1,0],[-1,0],[-2,0],[-2,1],[-1,1],[-2,1],[-1,1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,1],[-2,1],[0,-1],[-2,-1],[-3,-2],[-1,0],[-3,-1],[-1,0],[-2,-1],[-1,-1],[-3,0],[-3,0],[-1,1],[-2,0],[-2,0],[-2,0],[-1,0],[0,1],[-1,2],[-1,1],[-1,1],[-1,0],[-2,0],[-1,-1],[-1,0],[0,-1],[-2,-2],[-1,-1],[-1,-2],[0,-2],[-1,-2],[0,-2],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1]],[[1045,2606],[3,3],[1,1],[1,2],[1,2],[0,3],[-1,2],[-1,0],[0,1],[-2,1],[-2,2],[-3,4],[-2,4],[-1,3],[1,4],[1,6],[-1,5],[-2,3],[-4,2],[-3,1],[-5,1],[-3,0],[-9,1],[-1,1],[-2,1],[-1,2],[0,2],[2,2],[3,2],[4,4],[3,3],[3,1],[6,2],[3,1],[4,3],[3,2],[3,4],[3,2],[0,2],[0,1],[0,1],[-2,2],[-9,10],[-5,6],[-2,3],[-1,2],[0,1],[1,2],[1,1],[2,1],[5,0],[3,0],[1,1],[2,3],[1,0],[3,0],[1,0],[-1,-2],[0,-1],[1,0],[5,0],[1,0],[1,1],[1,1],[4,1],[2,0],[1,0],[3,-2],[2,-3],[3,-2],[2,-1],[3,-2],[6,-2],[0,1],[1,3],[0,3],[-1,4],[1,3],[1,2],[1,2],[2,1],[2,3],[3,5],[2,2],[3,3],[2,2],[4,5],[0,1],[6,13],[2,5],[2,6],[1,1],[0,3],[-1,1],[-2,4],[-2,2],[-1,2],[0,1],[0,1],[0,1],[1,1],[1,2],[1,1],[3,2],[3,2],[2,1],[3,2],[3,1],[5,2],[2,1],[2,1],[2,2],[2,1],[0,1],[1,1],[0,2],[0,2],[0,1],[-1,2],[-1,4],[-1,2],[0,1],[0,2],[-1,1],[0,2],[0,2],[0,3],[0,3],[0,2],[1,1],[1,2],[2,1],[1,0],[1,0],[2,1],[1,1],[3,1],[1,1],[3,1],[1,1],[2,1],[1,1],[1,2],[1,1],[1,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,4],[0,1],[0,1],[0,1],[1,4],[0,1],[0,2],[0,5],[0,2],[0,2],[0,2],[-1,3],[-1,4],[0,4],[0,4],[-1,5],[-1,4],[0,3],[-1,1],[-1,2],[-1,1],[-1,2],[-2,1],[-1,1],[-2,1],[-1,1],[-2,1],[-2,2],[-2,2],[-1,3],[-1,0],[0,2],[0,1],[1,1],[2,3],[1,2],[2,2],[3,3],[2,2],[1,2],[0,2],[-1,2],[-1,1],[-1,1],[-2,1],[-2,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[2,1],[1,2],[0,1]],[[2783,3389],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-2,-2],[-2,0],[-1,-1],[-2,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-2],[1,0],[1,-1],[2,0],[1,0],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-2],[0,-1],[2,-2],[3,-2],[1,-1],[0,-1],[2,-2],[1,-3],[0,-2],[-1,0],[0,-1],[-1,0],[-3,-2],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,-3],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[2,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,-1],[1,0],[1,-1],[1,-2],[1,-2],[1,-2],[0,-1],[1,-1],[0,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,-1],[1,-1],[2,0],[2,0],[1,1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-3],[0,-1],[1,0],[1,0],[5,-1],[1,1],[1,0],[2,1],[2,1],[1,0],[2,-2],[3,-3],[0,-2],[1,-1],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[3,-2],[3,-3],[2,-1],[1,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-2],[-1,-2],[0,-2],[0,-1],[2,-1],[1,-1],[2,-2],[0,-1],[1,-2],[1,-1],[2,-2],[1,-1],[4,-1],[2,-1],[2,0],[8,-2],[2,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[0,-2],[-1,-2],[-1,-1],[0,-1],[-2,-2],[-2,-1],[-2,-3],[-2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-3],[1,-1]],[[2015,3557],[-1,2],[-1,0],[-2,3],[-1,2],[-1,1],[0,1],[0,1],[1,1],[-1,1],[0,2],[0,1],[1,1],[1,2],[2,1],[1,2],[2,1],[2,1],[2,2],[2,0],[1,1],[1,1],[1,0],[2,3],[3,3],[2,3],[3,3],[2,2],[2,1],[1,1],[2,1],[3,2],[2,2],[2,1],[1,0],[2,1],[1,0],[2,1],[2,0],[3,0],[3,0],[3,0],[2,-1],[2,0],[3,-1],[4,0],[2,0],[1,0],[2,1],[1,1],[2,0],[2,1],[2,1],[2,1],[2,2],[1,1],[2,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-2],[1,0],[2,-3],[0,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-2],[1,-2],[0,-2],[0,-2],[1,-1],[1,0],[1,-1],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[2,1],[1,1],[2,2],[2,1],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[2,0],[1,-1],[1,0],[1,-1],[0,-1],[1,-2],[1,-1],[1,-2],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[1,0],[1,0],[3,-1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,1],[2,0],[1,1],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[2,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,2],[0,1],[1,1],[1,0],[2,1],[2,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[0,1],[2,1],[0,1],[1,0],[1,1],[3,1],[1,0],[2,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[2,-1],[1,0],[1,0],[1,0],[2,0],[2,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[2,0],[2,0],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-2],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,2],[1,1],[1,2],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,1],[3,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-2],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-2],[2,-1],[2,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[1,-2],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,1],[2,1],[2,1],[1,1],[2,0],[1,0],[1,1],[1,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[3,0],[1,0],[2,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[2,0],[1,-1],[2,0],[1,0],[1,1],[1,1],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-2],[1,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[2,-1],[2,0],[2,0],[1,0],[1,0],[1,0],[2,1],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-2],[0,-1],[1,0],[2,-1],[2,0],[1,0],[1,-1],[2,0],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[0,1],[1,0],[2,1],[1,0],[1,0],[2,0],[2,1],[2,0],[2,0],[2,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[2,0],[1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[2,1],[1,0],[2,0],[2,-1],[1,1],[1,0],[1,0],[1,0],[2,1],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,-1],[2,0],[1,-1],[0,-1],[2,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[2,-1],[1,-2],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,-1],[0,-1],[1,0]],[[2676,4424],[-1,-2],[-2,-2],[0,-1],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-1,-1],[-1,-3],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-1],[1,-2],[0,-1],[1,0],[1,-1],[1,-1],[1,1],[1,0],[3,0],[1,0],[2,0],[2,0],[3,0],[2,0],[2,-1],[1,0],[3,-1],[1,0],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[2,-1],[2,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,-1],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,-1],[2,0],[2,-1],[2,-1],[4,-2],[1,0],[1,-1],[2,-1],[2,-1],[1,0],[1,0],[1,1],[0,1],[1,1],[0,3],[0,3],[1,1],[0,2],[0,1],[1,2],[1,1],[1,1],[2,2],[1,0],[1,1],[2,1],[2,1],[1,0],[2,1],[2,0],[2,1],[2,0],[2,0],[2,-1],[2,0],[1,-1],[2,-1],[0,-1],[2,-2],[1,0],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[-2,-2],[-1,-3],[0,-1],[-2,-3],[-1,-2],[-1,-2],[0,-1],[1,0],[1,-1],[1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-3],[-1,-1],[0,-2],[0,-2],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,2],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,2],[1,1],[1,3],[1,1],[1,0],[1,0],[1,-1],[3,-1],[1,-1],[2,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,-2],[0,-1],[2,-2],[1,-1],[1,-1],[2,-1],[2,-1],[1,-1],[2,-2],[1,-1],[1,0],[1,0],[1,1],[0,1],[0,2],[0,1],[1,1],[1,0],[1,1],[0,-1],[2,0],[3,-1],[1,0],[1,-1],[2,-1],[2,-1],[1,0],[1,0],[1,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-2,0],[-1,-1],[-1,-2],[-1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-2],[0,-2],[0,-2],[0,-2],[1,-2],[0,-1],[1,0],[2,0],[2,1],[2,0],[1,1],[1,2],[1,1],[1,2],[1,2],[1,1],[1,0],[1,0],[1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-2],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-3],[0,-1],[1,-1],[2,-2],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-4,-1],[-1,0],[0,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,1],[3,2],[1,2],[1,1],[0,1],[1,0],[1,1],[1,-1],[1,-1],[0,-2],[0,-1],[1,-1],[2,-1],[1,0],[1,0],[2,-1],[2,-1],[1,-1],[1,-1],[2,0],[1,1],[1,0],[1,1],[2,1],[1,1],[1,1],[2,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,-1],[1,0],[2,-1],[2,0],[1,-1],[1,0],[1,1],[1,1],[1,3],[1,2],[1,1],[1,0],[1,1],[1,0],[1,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,1],[1,0],[2,1],[1,0],[1,1],[3,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-2],[0,-3],[1,-4],[0,-1],[0,-2],[1,-1],[0,-1],[1,-1],[2,-2],[2,-1],[1,-2],[1,-1],[2,-4],[1,-2],[1,-2],[1,-1],[1,-1],[1,0],[2,-1],[2,-1],[2,0],[1,-1],[1,0],[2,-2],[1,-2],[2,-3],[1,-2],[1,-3],[0,-1],[0,-2],[0,-2],[0,-2],[0,-3],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1],[1,-3],[1,-2],[0,-2],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1],[1,-1],[0,-1],[1,1],[1,1],[1,0],[1,0],[7,1],[0,-1],[6,-2],[1,-1],[3,-1],[2,-1],[3,-1],[1,-1],[2,0],[2,-1],[2,-1],[1,0],[4,0],[2,0],[2,0],[2,0],[1,0],[2,0],[1,-1],[3,0],[1,0],[1,0],[3,1],[1,0],[2,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,-1],[1,1],[1,0],[1,0],[1,1],[1,1],[0,1],[2,1],[1,0],[1,0],[2,0],[1,1],[2,0],[1,1],[3,0],[2,1],[3,1],[3,1],[3,1],[1,1],[1,0],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[2,-1],[1,0],[1,0],[1,1],[1,0],[2,1],[0,-1],[1,0],[2,-2],[3,-3]],[[3069,4157],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-3],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[1,-2],[1,-1],[1,-2],[0,-1],[1,0],[0,-2],[0,-3],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[2,0],[3,0],[2,0],[1,-1],[1,0],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-2],[1,-1],[3,-5],[1,-1],[0,-1],[1,-1],[0,-1],[2,-1],[0,-1],[1,-2],[0,-1],[0,-2],[1,-1],[1,-1],[1,-2],[1,-1],[2,-3],[1,-1],[2,-2],[1,-1],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[0,-1],[3,-1],[2,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-3,-1],[-1,0],[-1,-2],[-2,-1],[0,-1],[-2,0],[-2,-1],[-1,0],[-1,-1],[-4,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[2,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-3,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[-2,-2],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-2],[1,0],[1,-1],[0,-1],[1,-1],[1,-2],[1,0],[0,-2],[1,-1],[1,-1],[0,-2],[1,-1],[1,-2],[1,-2],[0,-1],[0,-1],[1,0],[0,-2],[1,-2],[1,-1],[2,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[0,-1],[2,-1],[3,-1],[1,0],[2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,-2],[1,-1],[1,-2],[1,-1],[2,-3],[1,-1],[2,-2],[4,-3],[2,-2],[0,-1],[-1,-1],[0,-1],[-2,0],[-1,-1],[-2,-1],[-3,-1],[-1,-1],[-2,-2],[-3,-1],[-3,-1],[-3,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-3],[-1,-3],[-1,-2],[-1,-1],[-1,0],[-3,-1],[-2,0],[-1,-1],[-2,-1],[-3,-2],[-4,-2],[-2,-2],[-4,-1],[-2,-1],[0,-1],[-2,-3],[-2,-2],[-1,-2],[0,-2],[0,-3],[0,-2],[-1,-3],[0,-2],[-1,-2],[-3,-5],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-2],[-2,-2],[-2,0],[-2,-1],[-3,0],[-4,0],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-3,-2],[-3,-2],[-4,-1],[-4,-1],[-1,0],[-1,-1],[-1,-1],[-1,-3],[-1,-3],[-1,-2],[-2,-3],[-1,-1],[-2,-1],[-2,-1],[-4,0],[-3,-1],[-2,-1],[-2,0],[-3,-2],[-2,-1],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-3,-2],[-2,-1],[-2,-2],[-2,-3],[-2,-2],[-1,-2],[0,-1],[-2,-4],[0,-1],[-1,-1],[-2,-3],[-4,-2],[-3,-3],[-4,-3],[-4,-2],[-4,-2],[-2,-1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-2,-2],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[-2,-1],[-2,-1],[-3,-1],[-2,0],[-3,-1],[-3,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-3,-1],[-3,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[1938,3724],[-1,2],[1,1],[0,2],[0,2],[0,3],[0,2],[1,2],[0,2],[0,2],[0,2],[1,2],[0,1],[0,2],[0,3],[0,1],[0,3],[0,2],[1,1],[0,3],[1,3],[0,2],[1,1],[0,2],[0,1],[0,1],[0,2],[-1,2],[0,2],[-1,4],[0,2],[0,1],[-1,1],[-1,1],[0,2],[1,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[0,2],[0,2],[0,3],[-1,2],[0,1],[-1,2],[0,2],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,1],[2,2],[1,3],[1,1],[1,2],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,2],[0,2],[1,1],[1,1],[1,2],[1,1],[2,3],[3,3],[1,2],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[2,2],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[1,2],[1,1],[1,2],[2,2],[1,1],[2,2],[1,1],[2,1],[1,2],[3,2],[2,1],[2,1],[1,1],[2,1],[0,1],[1,0],[-1,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[2,1],[0,1],[1,0],[0,1],[0,2],[0,2],[0,2],[0,2],[0,1],[1,1],[1,1],[2,2],[0,1],[2,1],[2,3],[1,1],[2,2],[1,1],[1,2],[0,2],[1,1],[0,1],[0,3],[1,1],[0,3],[0,1],[0,1],[1,3],[0,3],[0,2],[1,1],[1,2],[1,1],[1,1],[1,0],[2,2],[3,0],[4,2],[2,1],[2,1],[2,1],[1,1],[1,0],[1,2],[0,1],[1,1],[0,3],[0,1],[0,2],[0,2],[1,2],[1,1],[1,1],[1,1],[2,1],[2,2],[2,1],[2,1],[2,1],[5,3],[4,2],[4,3],[3,1],[1,1],[2,1],[1,1],[2,1],[1,2],[1,1],[2,2],[0,1],[1,2],[1,2],[1,1],[1,2],[1,3],[1,3],[2,1],[1,2],[2,1],[1,1],[1,2],[0,1],[1,2],[1,1],[0,1],[0,1],[0,2],[-1,1],[-1,3],[-1,3],[0,1],[0,2],[-1,1],[-1,3],[-1,2],[0,1],[0,1],[-1,1],[-2,1],[-3,2],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[-2,2],[-1,1],[-1,2],[0,1],[0,1],[0,1],[0,2],[0,3],[1,2],[0,2],[0,1],[1,2],[0,1],[1,2],[1,0],[1,1],[1,1],[2,0],[1,0],[2,1],[3,0],[7,1],[4,1],[4,0],[2,1],[1,0],[0,1],[2,0],[1,2],[0,1],[0,1],[1,2],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[-1,2],[-1,1],[-1,0],[-1,1],[-2,1],[-3,1],[-2,1],[-2,1],[-1,0],[-2,1],[-2,0],[-1,1],[-1,0],[0,1],[0,1],[0,2],[0,2],[0,2],[1,3],[1,2],[1,2],[0,1],[1,1],[2,3],[1,1],[0,1],[1,1],[0,2],[1,1],[0,2],[0,1],[0,1],[-1,1],[-1,2],[-1,2],[-1,1],[-1,0],[-1,1],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,-1],[-3,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,1],[-1,0],[-1,1],[-2,0],[-2,1],[-2,0],[-2,2],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,0],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,-1],[2,-1],[1,-2],[2,-1],[1,-1],[2,-1],[2,-1],[2,-1],[1,-1],[2,-1],[1,-2],[1,-1],[0,-2],[0,-1],[-1,-2],[-1,0],[0,-1],[-3,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-3,0],[-2,0],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[-2,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,4],[0,1],[0,2],[1,2],[0,2],[2,5],[1,1],[1,3],[2,4],[2,3],[2,2],[1,2],[2,2],[2,1],[1,1],[1,1],[2,1],[1,1],[1,1],[2,1]],[[1365,3699],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,2],[0,2],[1,0],[0,2],[0,1],[1,2],[1,1],[2,0],[1,1],[3,0],[2,1],[3,0],[2,0],[1,1],[3,1],[3,0],[1,0],[2,1],[1,0],[1,0],[1,1],[2,1],[2,1],[2,1],[2,1],[3,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,2],[0,1],[0,1],[1,2],[1,1],[0,1],[1,2],[1,3],[0,1],[1,1],[1,2],[0,1],[1,3],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[2,0],[2,1],[1,1],[2,1],[3,1],[1,1],[2,1],[2,1],[1,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,0],[3,1],[4,0],[1,0],[1,1],[1,0],[1,1],[2,1],[1,1],[2,1],[1,1],[1,1],[1,1],[2,1],[1,0],[1,1],[2,0],[1,0],[1,0],[3,0],[1,-1],[2,0],[1,0],[2,0],[3,0],[2,0],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,2],[1,1],[0,3],[1,1],[0,2],[0,2],[0,3],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[-1,2],[0,1],[-1,1],[-1,1],[-1,2],[-1,2],[0,2],[0,1],[0,1],[2,3],[1,2],[1,1],[1,2],[1,1],[0,1],[2,2],[0,1],[2,2],[1,2],[1,2],[1,2],[1,1],[1,1],[1,1],[0,2],[1,2],[1,0],[1,2],[0,1],[1,1],[1,1],[1,2],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,4],[0,1],[-1,1],[0,1],[-1,0],[0,2],[0,1],[-1,1],[-1,1],[-1,0],[-1,2],[0,1],[-1,1],[0,2],[0,2],[0,1],[0,2],[-1,1],[0,1],[-1,0],[0,2],[0,1],[1,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[-2,1],[-3,2],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[1,2],[0,1],[0,1],[1,2],[1,1],[0,1],[0,1],[0,1],[-1,2],[-1,2],[0,2],[-1,1],[1,2],[0,2],[1,1],[0,2],[0,2],[0,2],[0,1],[1,2],[0,1],[0,4],[0,2],[1,4],[-1,2],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-2,0],[0,1],[-2,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[2,1],[1,1],[0,1],[0,1],[1,0],[1,1],[3,0],[1,1],[1,0],[1,1],[1,0],[0,2],[0,1],[-1,2],[-1,3],[0,3],[0,1],[-1,2],[-1,3],[0,2],[0,2],[0,1],[0,2],[0,3],[-1,1],[0,1],[-2,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,2],[-1,1],[0,1],[-2,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[2,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[-1,1],[-2,2],[-1,1],[0,1],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,1],[-3,0],[-2,0],[-1,0],[-2,1],[-1,0],[-1,1],[1,1],[0,2],[1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-2,0],[-3,1],[-11,3],[-2,0],[-1,0],[0,-4],[-1,-3],[0,-2],[0,-4],[-1,-6],[0,-2],[-2,0],[-8,1],[-9,0],[-11,1],[-13,1],[-6,0],[-12,1],[-5,0],[-11,1],[-7,0],[-2,0],[0,5],[0,5],[0,7],[1,7],[0,7],[0,6],[0,3],[-1,0],[-1,0],[-1,0],[-1,2],[-2,1],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,2],[-1,2],[-1,3],[0,1],[0,1],[0,2],[-1,1],[0,1],[1,1],[1,2],[1,0],[0,1],[2,1],[1,2],[0,1],[0,1],[0,3],[0,1],[-1,1],[-2,1],[-1,1],[-1,1],[0,2],[0,2],[-1,1],[0,1],[-2,1],[-2,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,2],[0,2],[-1,5],[0,2],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-2,1],[-2,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-3,-1],[-1,0],[-2,0],[-3,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-4,0],[-2,-1],[-5,2],[-1,0],[-3,1],[-3,1],[-1,1],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,2],[-2,0],[-1,1],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-2,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,1],[-2,1],[-2,3],[-1,0],[0,1],[0,1],[1,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[916,3553],[-2,3],[-2,3],[-2,4],[-3,3],[-1,2],[-1,2],[1,0],[3,1],[6,3],[6,3],[3,1],[5,2],[5,3],[4,1],[3,2],[-1,2],[-1,1],[-3,5],[-3,3],[-5,8],[-5,7],[-1,2],[-3,4],[-3,-1],[-3,-2],[-1,0],[-4,-2],[-4,-2],[-4,-2],[-5,-2],[-3,-2],[-5,-2],[-5,-2],[-4,-1],[-4,-3],[-4,-1],[-4,-2],[-1,0],[-1,0],[-1,1],[-2,4],[-2,2],[-2,2],[-1,0],[-1,0],[-2,0],[-3,-1],[-2,-1],[-4,-2],[-2,0],[-3,-1],[-2,-1],[-2,0],[-1,-1],[-3,0],[-2,0],[-1,0],[-1,1],[-1,1],[-2,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[-3,1],[-3,0],[-3,0],[-3,0],[-2,0],[-3,-1],[-2,0],[-3,0],[-3,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,3],[-1,4],[0,4],[-1,2],[-1,0],[0,1],[-1,1],[-1,2],[0,1],[-1,2],[0,2],[0,1],[-1,0],[-1,1],[-1,-1],[-3,0],[-2,-1],[-1,0],[-1,0],[-1,4],[-1,1],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,4],[-1,2],[0,1],[-1,2],[0,2],[0,2],[0,1],[-2,2],[-1,2],[-2,2],[0,1],[0,1],[1,1],[1,0],[2,1],[1,1],[0,1],[-1,1],[-2,3],[-2,3],[-1,2],[-2,0],[-2,-1],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-1,1],[-1,2],[0,1],[0,1],[0,2],[0,3],[0,2],[-1,1],[0,2],[0,2],[-1,2],[0,2],[0,2],[0,2],[0,2],[0,1],[-2,1],[-3,1],[-4,2],[-3,2],[0,1],[-1,2],[-1,0],[-1,1],[-3,1],[-2,1],[-1,0],[-3,1],[-2,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,0],[-2,-1],[-3,-1],[-3,0],[-3,-1],[-3,0],[-3,0],[-2,-1],[-3,0],[-2,-1],[-2,0],[-3,0],[-5,-1],[-2,0],[-4,-1],[-1,-1],[-4,-1],[-3,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[-2,2],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-2,2],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[1,-2],[1,-2],[1,0],[0,-2],[2,-3],[0,-1],[-1,0],[-2,-1],[-2,-1],[-3,-1],[-5,-2],[-4,-2],[-4,-1],[-2,-1],[-3,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,2],[-1,2],[-1,2],[-2,4],[-2,4],[-2,3],[-2,3],[-1,2],[-1,2],[-2,4],[-1,2],[-1,2],[-2,4],[-1,1],[-1,2],[-2,4],[-2,3],[-1,2],[-1,2],[-1,2],[-1,2],[-1,3],[-2,4],[-1,1],[-1,1],[-2,1],[-1,0],[-3,1],[-2,0],[-1,0],[-1,1],[-2,0],[-3,1],[-4,1],[-6,1],[-1,0],[-3,1],[-3,1],[-2,1],[-4,1],[-3,1],[-2,1],[-2,1],[-1,1],[-3,1],[-3,2],[-2,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[-2,1],[-4,2],[-9,5],[-5,3],[-4,2],[-6,3],[-7,4],[-6,3],[-7,4],[-4,2]],[[443,3814],[1,2],[3,2],[3,3],[1,1],[2,2],[3,3],[2,2],[2,3],[3,2],[2,2],[2,3],[3,2],[3,4],[3,2],[3,3],[2,2],[2,3],[3,3],[2,2],[4,3],[3,3],[3,3],[2,3],[3,2],[1,1],[0,1],[1,3],[1,6],[1,6],[0,2],[1,4],[0,3],[0,1],[0,1],[-1,1],[0,1],[0,2],[1,1],[0,3],[0,1],[1,3],[1,4],[1,5],[1,3],[0,1],[2,3],[1,1],[1,4],[2,3],[2,3],[2,1],[1,2],[1,2],[1,2],[-3,1],[-3,1],[-5,1],[-4,2],[-4,1],[-3,1],[-5,2],[-3,1],[-4,1],[-3,1],[1,1],[0,3],[1,2],[1,2],[0,1],[-3,1],[-3,1],[-3,1],[-1,1],[1,1],[1,3],[1,2],[2,4],[2,3],[1,2],[1,1],[1,3],[1,2],[0,1],[1,1],[1,2],[2,1],[1,1],[1,2],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[2,0],[2,0],[3,-1],[1,0],[2,0]],[[518,4008],[1,0],[2,0],[3,0],[2,0],[1,1],[1,0],[2,0],[2,1],[1,0],[2,1],[1,1],[1,1],[1,0],[2,1],[0,1],[1,0],[1,1],[0,1],[1,0],[2,1],[1,1],[1,2],[1,1],[1,1],[0,1],[1,1],[1,0],[1,0],[7,1],[5,0],[1,1],[2,0],[2,0],[1,1],[1,0],[2,1],[1,0],[2,1],[2,0],[3,0],[2,0],[2,0],[1,0],[2,0],[1,-1],[1,0],[4,0],[1,0],[2,0],[2,-1],[3,0],[1,0],[1,0],[2,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[2,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-2],[2,-2],[3,-4],[1,-1],[3,-2],[2,-2],[2,-2],[2,-2],[2,-3],[2,-3],[1,-1],[3,-3],[3,-2],[2,-1],[2,-1],[2,-1],[1,1],[2,1],[6,2],[2,2],[3,1],[4,-4],[2,-1],[2,-2],[1,1],[1,1],[3,2],[1,1],[4,2],[2,2],[3,2],[1,1],[2,1],[2,2],[4,2],[1,0],[1,1],[0,-1],[1,-1],[1,1],[1,1],[1,0],[3,2],[5,2],[4,2],[1,1],[1,-1],[1,-1],[2,-2],[3,-4],[1,-2],[1,-2],[1,-1],[2,-2],[1,-1],[1,0],[2,1],[1,1],[2,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[2,0],[1,0],[2,0],[2,-1],[2,-1],[2,-2],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[3,1],[3,1],[3,2],[4,0],[1,1],[1,0],[0,2],[-1,2],[0,3],[1,1],[1,1],[2,0],[4,2],[4,2],[4,1],[2,1],[1,1],[2,1],[2,0],[1,1],[1,0],[1,1],[0,1],[-1,1],[-1,2],[-1,0],[0,2],[-1,1],[0,1],[1,1],[1,0],[2,1],[2,1],[2,1],[1,0],[1,1],[1,1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[2,0],[2,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,1],[4,0],[2,1],[1,0],[2,0],[1,0],[2,0],[3,0],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[3,0],[1,0],[2,0],[3,0],[3,1],[3,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[1,1],[1,2],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[-1,2],[0,1],[1,1],[1,1],[0,1],[1,2],[5,0],[0,-1],[0,-2],[4,0],[3,1],[6,0],[2,0],[1,0],[-3,5],[-1,3],[-3,7],[-1,2],[-4,8],[-1,1],[-3,6],[0,1],[1,1],[1,0],[1,1],[0,1],[1,2],[0,3],[0,3],[0,2],[-1,5],[0,2],[-1,2],[0,4],[-1,3],[-1,3],[0,5],[-1,3],[0,1],[0,3],[0,2],[0,1],[0,2],[3,0],[2,0],[-1,2],[0,1],[0,2],[0,2],[-1,4],[-1,5],[-1,5],[0,3],[4,-1],[7,0],[7,0],[5,1],[4,0],[2,0],[2,1],[2,0],[2,1],[2,1],[3,1],[2,1],[2,1],[3,0],[7,1],[3,1],[2,0],[4,1],[3,0],[4,0],[2,0],[1,0],[2,0],[2,0],[2,1],[1,0],[0,1],[1,1],[0,1],[0,2],[0,3],[0,2],[0,3],[0,2],[0,3],[0,1],[0,1],[1,2],[0,1],[1,1],[1,2],[1,1],[1,1],[0,1],[0,2],[1,0],[1,2],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,2],[1,2],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[-2,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,2],[-1,0],[0,2],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,2],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,2]],[[518,4008],[0,2],[0,2],[0,2],[-2,0],[-2,0],[-3,0],[-1,0],[-2,1],[-4,0],[-2,0],[-1,0],[1,1],[0,1],[1,0],[0,1],[0,5],[-1,5],[0,5],[0,1],[-1,14],[0,5],[0,4],[0,5],[-1,5],[0,4],[0,4],[0,4],[0,4],[0,5],[0,5],[0,4],[0,4],[-1,5],[0,3],[0,3],[0,3],[0,1],[-1,0],[-4,1],[-7,1],[-8,2],[-7,1],[-8,1],[-3,0],[-3,0],[-5,0],[-4,0],[-4,0],[-4,0],[-5,1],[-6,1],[-4,1],[-2,0],[-2,1],[-2,0],[-2,1],[-2,0],[-4,-1],[-3,0],[-4,-1],[-3,-1],[-2,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,2],[-3,2],[-3,2],[-4,1],[-1,0],[-4,3],[-4,1],[-2,1],[-3,2],[-3,0],[-2,1],[-1,0],[-1,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-1,-1],[-3,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,1],[-1,1],[0,1],[2,2],[1,1],[1,2],[1,1],[1,3],[1,2],[1,1],[1,3],[2,2],[1,1],[1,1],[2,1],[2,1],[1,0],[2,1],[1,0],[4,0],[3,0],[4,0],[4,0],[3,0],[1,0],[2,0],[2,1],[2,0],[1,1],[2,1],[3,1],[6,3],[7,3],[2,1],[3,2],[2,2],[2,2],[2,2],[2,3],[1,3],[0,2],[1,3],[0,1],[0,3],[-1,2],[0,2],[0,1],[-2,6],[-1,1],[-1,3],[-2,3],[-1,3],[-2,3],[-1,2],[-1,2],[-1,2],[-1,2],[-2,2],[-2,2],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[-2,2],[-2,1],[-3,1],[-2,1],[-2,1],[-3,3],[-3,2],[-1,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,-1],[-2,0],[-2,0],[-3,0],[-3,-1],[-4,0],[-2,0],[-1,-1],[-1,-1],[-3,-3],[-1,0],[-2,-2],[-1,0],[0,-1],[1,-2],[1,-1],[1,-2],[1,0],[0,-1],[1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-2],[-1,-1],[-1,-1],[0,-1],[-1,-3],[-1,-2],[0,-1],[-1,-2],[-1,-3],[0,-1],[-1,-3],[0,-2],[0,-1],[0,-3],[0,-2],[-1,-3],[0,-2],[-1,-1],[0,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,1],[-2,1],[-2,1],[-1,0],[-3,2],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-2,1],[-1,1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[-1,1],[-1,-1],[-1,0],[-1,0],[0,1],[-2,1],[-2,2],[-1,1],[-2,3],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,3],[-2,3],[-1,3],[-1,2],[-1,5],[-4,10],[-1,2],[-2,6],[-2,8],[-1,2],[0,2],[-1,4],[-1,3],[-1,4],[-1,3],[-1,3],[0,2],[-1,3],[0,2],[-1,2],[0,1],[0,2],[-1,2],[0,2],[0,1],[1,3],[1,3],[3,5],[2,3],[1,1],[0,1],[0,1],[0,5],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,5],[-1,2],[-1,3],[-2,4],[-1,1],[0,1],[2,1],[3,0],[3,2],[2,0],[1,-12],[1,-6],[0,-1],[1,0],[8,1],[6,0],[9,1],[1,1],[0,7],[-1,6],[-2,10],[-1,8],[-1,5],[-1,9],[-1,10],[9,1],[1,0],[-1,1],[-3,3],[-2,1],[-3,3],[-4,2],[-3,2],[-2,1],[-3,2],[-5,1],[-4,2],[-2,1],[-6,2],[-7,3],[-9,3],[-11,5],[-9,3],[-4,2],[-5,2],[-4,2],[-3,1],[-1,2],[-2,2],[-3,3],[-2,4],[-3,3],[-2,3],[-3,4],[-2,3],[-1,1],[0,1],[-1,2],[0,2],[0,1],[0,2],[0,4],[-1,6],[0,2],[-1,4],[-1,6],[-1,4],[0,4],[-1,5],[-1,3],[-1,2],[-1,1],[-4,3],[-4,3],[-3,2],[-2,1],[-2,2],[-2,1],[-2,3],[-2,2],[-1,2]],[[3952,5099],[2,0],[1,0],[2,0],[2,-1],[1,-1],[-1,-1],[0,-3],[0,-3],[0,-2],[0,-1],[1,0],[1,-1],[2,0],[1,0],[2,0],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,0],[1,0],[1,1],[2,1],[2,1],[1,0],[1,0],[3,0],[2,1],[4,0],[2,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,-1],[2,-1],[2,-2],[2,-1],[1,-1],[1,-1],[2,0],[2,0],[2,0],[1,0],[2,-1],[2,-1],[2,0],[2,-1],[2,-1],[1,-1],[1,0],[3,-3],[2,-1],[2,-2],[3,-3],[3,-2],[2,-2],[1,0],[2,-3],[1,-1],[1,-2],[1,-4],[1,-4],[1,-5],[0,-1],[2,-6],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,-2],[-3,-5],[-1,-2],[-3,-5],[-1,-2],[-2,-5],[-1,-3],[-2,-3],[-1,-3],[-2,-3],[-2,-3],[-2,-4],[-1,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-1],[-1,-1],[-5,-3],[-4,-2],[-3,-1],[-2,-1],[-1,-1],[-3,-2],[-2,-1],[-1,-3],[-2,-3],[-4,-5],[-2,-3],[-2,-4],[-1,-1],[-1,-2],[-1,-3],[-1,-2],[0,-1],[-2,-4],[-1,-2],[-2,-5],[-1,-2],[-2,-5],[-1,-3],[-2,-4],[-1,-4],[-1,-3],[0,-1],[0,-2],[0,-1],[0,-3],[1,-1],[0,-2],[1,-3],[1,-3],[2,-5],[0,-2],[1,-1],[0,-4],[1,-2],[1,-4],[1,-2],[1,-5],[1,-2],[1,-5],[1,-1],[1,-6],[1,-3],[1,-4],[1,-2],[1,-4],[0,-2],[2,-5],[1,-3],[1,-3],[0,-3],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-2],[-2,-1],[-3,-2],[-2,-1],[-1,0],[-2,0],[-2,0],[-2,1],[-3,0],[-3,0],[-3,0],[-4,-1],[-1,0],[-3,-1],[-4,-1],[-2,-2],[-3,-2],[-2,-1],[-3,-2],[-1,-1],[-2,-3],[-2,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-4],[0,-2],[0,-1],[-1,-2],[-1,-2],[0,-1],[0,-2],[-1,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[1,-3],[0,-1],[0,-3],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-2],[2,-1],[2,-2],[0,-1],[1,-2],[2,-2],[1,-2],[1,-2],[1,-2],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,0],[-1,-2],[-2,-1],[-1,0],[-3,-1],[-3,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[2,-2],[2,-2],[2,-1],[1,-2],[2,-3],[1,-1],[1,-2],[2,-2],[0,-1],[1,-2],[2,-2],[1,-2],[1,-1],[1,-1],[1,-1],[2,-4],[1,-2],[2,-1],[1,-1],[1,-2],[2,-2],[2,-4],[1,-2],[1,-1],[2,-4],[2,-2],[1,-2],[1,-2],[2,-3],[1,-2],[1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-3,-3],[-2,-3],[-2,-2],[-2,-3],[-2,-1],[-2,-2],[-1,-2],[-2,-1],[-3,-2],[-2,-2],[-1,-2],[-1,0],[-2,-2],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-2,-1],[-2,-1],[-1,-2],[-1,-1],[-4,-5],[-2,-5],[-1,-1],[0,-1],[-2,-3],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-3],[-1,-2],[0,-2],[0,-2],[-1,-1],[-1,-2],[-2,-3],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-3],[-3,-2],[-2,-2],[-2,-2],[-2,-2],[-3,-2],[-1,-2],[-2,-2],[-1,-1],[-2,-2],[-1,-3],[0,-1],[0,-3],[-1,-2],[0,-1],[0,-1],[-2,-4],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,-1],[0,-1],[0,-1],[0,-2],[2,-1],[1,-2],[2,-1],[2,-1],[1,-2],[2,-2],[2,-1],[3,-2],[3,-2],[0,-1],[2,-1],[0,-1],[1,-1],[2,-3],[0,-1],[1,-2],[0,-3],[1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-1],[-1,-1]],[[3909,4414],[0,-1],[0,-1],[-2,-3],[-1,-1],[-4,-4],[-1,-1],[-1,-2],[-2,-2],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,1],[-3,-1],[-3,-1],[-2,-1],[-3,-1],[-4,-1],[-2,-1],[-1,-1],[-3,-2],[-3,-2],[-1,-1],[-3,-2],[-3,-2],[-3,-2],[-3,-2],[-4,-2],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-4],[0,-2],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-3,-2],[-1,-1],[-4,-1],[-2,-2],[-3,-2],[-3,-2],[-3,-2],[-2,-2],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[0,-1],[-2,-3],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-2,-1],[0,-1],[-2,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-2],[0,-2],[-1,0],[-1,-2],[-1,-3],[-1,-2],[-1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[1,-2],[1,-1],[1,-1],[0,-1],[2,-2],[1,0],[1,0],[2,1],[1,1],[1,0],[1,0],[1,0],[1,-2],[0,-1],[1,0],[2,-4],[4,-6],[-4,-8],[-3,-5],[-1,-2],[0,-2],[-1,-3],[-1,-1],[-1,-3],[-1,-3],[-1,-2],[0,-1],[-1,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,-1],[0,-2],[1,-2],[0,-2],[0,-1],[1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-2,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-3,-2],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[0,-2],[-2,-2],[0,-2],[0,-1],[2,-5],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-2,1],[-2,0],[-1,1],[-2,0],[-2,0],[-3,0],[0,-1],[2,-2],[1,-1],[1,-1],[1,-1],[1,-2],[2,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[4,-2],[0,-1],[1,0],[2,-3],[1,-2],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-3],[-2,-2],[0,-2],[-1,0],[-2,1],[-3,0],[-2,0],[-1,0],[0,-2],[0,-2],[0,-2],[0,-2],[2,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-3,0],[-3,0],[-3,0],[-1,-1],[-2,0],[-2,-1],[-3,-1],[-3,0],[-1,0],[-3,0],[-1,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,2],[-1,0],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,-3],[-2,-2],[-1,-3],[-1,-2],[-3,-5],[-2,-5],[-1,-1],[-1,-2],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,-2],[-2,-3],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-2],[-1,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[3,-1],[2,1],[2,0],[1,0],[1,0],[3,1],[1,0],[2,0],[1,0],[1,-1],[3,0],[1,-1],[3,-1],[1,0],[2,0],[1,0],[1,1],[2,0],[1,0],[2,0],[2,-1],[2,0],[3,0],[1,0],[1,-2],[1,-1],[1,-2],[0,-2],[1,-1],[1,-1],[1,0],[3,-1],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[3,0],[2,0],[2,0],[2,-1],[1,0],[2,0],[2,0],[1,-1],[1,0],[1,0],[2,0],[3,0],[1,0],[2,0],[2,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[2,1],[1,0],[1,1],[2,0],[2,1],[4,1],[1,0],[4,0],[6,0],[2,-1],[1,0],[1,-1],[2,-1],[3,-2],[2,-1],[1,0],[1,-1],[4,0],[2,-1],[2,0],[3,-1],[5,0],[3,-1],[4,0],[1,0],[3,0],[3,1],[3,0],[2,0],[1,0],[1,0],[2,-1],[1,-1],[2,-1],[1,0],[1,-1],[2,-1],[9,0],[15,0],[16,0],[5,0],[5,0],[4,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[3,-1],[1,0],[2,0],[1,-1],[1,-1],[1,-1],[1,-3],[0,-2],[1,-3],[0,-4],[1,-4],[0,-1],[0,-3],[0,-1],[1,-2],[0,-2],[1,-1],[1,-1],[4,0],[2,0],[1,0],[3,-1],[1,0],[1,0],[1,0],[2,-1],[1,-1],[2,0],[1,-2],[1,0],[0,-2],[0,-1],[-1,-2],[0,-6],[-1,-7],[0,-2],[0,-2],[0,-4],[-1,-2],[0,-4],[-1,-6],[-1,-7],[0,-6],[-1,-7],[-1,-7],[0,-1],[0,-6],[-1,-7],[0,-8],[-1,-8],[0,-3],[-1,-5],[-1,-7],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-3],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-3,0],[-3,0],[-3,0],[-2,0],[-4,1],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-3,-1],[-4,-1],[-5,-2],[-1,0],[-4,-1],[-2,-1],[-3,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-3,0],[-3,0],[-3,-1],[-2,1],[-4,0],[-2,0],[-4,0],[-2,0],[-3,0],[0,1],[-3,0],[0,-1],[0,-6],[0,-4],[0,-2],[0,-3],[0,-3],[0,-7],[0,-7],[0,-4],[0,-2],[0,-4],[0,-3],[0,-5],[0,-4],[-1,-5],[0,-4],[0,-3],[-1,-2],[0,-2],[-2,-4],[-1,-1],[-2,-3],[-5,-7],[-2,-1],[-2,-3],[-5,-6],[-3,-4],[-3,-3],[-2,-3]],[[3069,4157],[1,1],[1,1],[1,1],[2,0],[1,1],[0,1],[1,1],[1,0],[1,0],[1,2],[1,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,1],[1,0],[2,1],[2,1],[2,1],[1,0],[1,0],[1,0],[1,1],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,-1],[2,0],[1,-1],[2,0],[1,0],[1,-1],[2,0],[2,0],[2,0],[3,0],[2,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,1],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[3,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,1],[2,0],[1,1],[1,0],[2,-1],[2,-1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,1],[2,2],[1,1],[2,1],[1,1],[3,1],[1,1],[1,1],[1,0],[1,1],[2,1],[2,1],[2,0],[1,1],[3,0],[3,1],[4,1],[4,0],[2,0],[3,1],[2,0],[2,0],[3,0],[3,0],[3,0],[2,0],[3,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,0],[2,-2],[1,1],[0,1],[1,2],[1,1],[1,1],[1,1],[1,1],[1,0],[2,0],[2,0],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,2],[2,2],[1,1],[1,2],[2,1],[1,1],[2,1],[2,1],[2,1],[3,1],[2,2],[2,0],[2,1],[2,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[1,2],[0,1],[1,2],[1,2],[0,1],[1,1],[1,2],[1,1],[2,1],[2,1],[2,1],[1,1],[1,1],[2,0],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[2,0],[1,0],[1,-1],[1,0],[2,0],[1,-1],[2,-1],[1,-1],[2,-1],[1,0],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[2,1],[1,1],[1,1],[0,1],[1,0],[1,2],[0,2],[1,1],[1,2],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,1],[2,1],[1,1],[1,1],[2,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,2],[-1,1],[0,2],[0,1],[0,1],[-1,2],[0,1],[0,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[0,2],[1,2],[0,1],[1,2],[1,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[2,4],[1,1],[0,1],[1,1],[2,1],[0,1],[0,1],[0,1],[0,1],[0,1],[2,1],[1,1],[2,2],[1,1],[0,1],[0,2],[0,2],[0,1],[0,1],[1,1],[1,1],[0,2],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[1,0],[2,1],[1,0],[1,1],[1,1],[1,1],[-1,1],[1,0],[0,1],[2,2],[1,1],[0,1],[0,1],[-2,2],[0,1],[-1,1],[0,1],[1,1],[2,1],[1,2],[3,3],[2,2],[0,1],[2,3],[1,2],[2,2],[1,2],[3,3],[1,2],[0,1],[-1,1],[0,1],[0,1],[5,0],[3,-1],[1,0],[1,1],[1,0],[0,1],[-1,2],[-1,1],[0,2],[0,1],[0,1],[1,0],[1,1],[4,1],[3,1],[1,1],[1,2],[1,1],[2,1],[1,2],[0,1],[0,2],[-1,1],[-1,4],[-2,3],[0,1],[0,1],[1,0],[2,2],[4,2],[3,2],[3,2],[2,2],[2,2],[1,1],[1,2],[1,1],[2,1],[1,1],[1,1],[0,1],[1,1],[0,2],[0,3],[0,1],[0,2],[0,2],[0,1],[1,1],[2,1],[1,1],[2,1],[3,2],[2,2],[1,1],[2,2],[1,1],[3,1],[2,1],[4,0],[2,1],[2,1],[2,1],[2,1],[1,0],[0,1],[0,1],[-1,2],[-1,1],[0,2],[0,2],[1,1],[0,1],[0,1],[-1,3],[0,1],[1,1],[1,2],[0,2],[0,1],[0,1],[2,1],[2,0],[3,2],[5,2],[3,1],[0,1],[1,0],[0,1],[0,2],[0,2],[0,2],[-1,2],[0,1],[1,1],[1,0],[1,0],[1,0],[1,1],[0,2],[-1,2],[1,1],[2,3],[1,2],[1,2],[0,1],[1,0],[0,2],[-1,1],[-1,2],[-1,1],[-1,0],[-1,2],[-1,1],[0,1],[0,2],[0,2],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[-2,1],[-3,2],[-2,2],[0,1],[-2,1],[-1,1],[-4,0],[-2,1],[-1,0],[-1,2],[0,1],[0,2],[0,1],[1,1],[0,1],[2,1],[2,1],[2,1],[1,0],[2,1],[3,0],[2,1],[1,0],[3,0],[2,1],[2,1],[3,2],[2,1],[2,1],[1,0],[2,1],[2,2],[1,1],[0,2],[0,1],[1,2],[0,2],[0,5],[0,2],[0,2],[0,1],[0,1],[1,1],[1,1],[1,2],[0,1],[1,2],[0,2],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-2,2],[-1,1],[-2,0],[-3,2],[-3,3],[-1,1],[-3,2],[-3,3],[-1,1],[-1,1],[0,2],[-1,3],[-1,1],[0,3],[0,1],[-1,3],[0,2],[0,1],[0,3],[0,2],[1,2],[1,2],[0,2],[1,4],[2,3],[1,5],[1,2],[1,2],[0,1],[0,1],[0,2],[-1,3],[-1,1],[0,1],[0,1],[0,1],[1,1],[2,3],[2,1],[1,2],[2,2],[0,1],[1,2],[1,1],[1,4],[1,3],[2,2],[1,1],[1,1],[0,2],[0,2],[1,1],[-1,2],[1,4],[-1,6],[1,2],[1,-1],[1,0],[2,-1],[2,-1],[2,-2],[2,-2],[2,-2],[1,-1],[0,-1],[1,-2],[2,-3],[1,-2],[1,-3],[0,-1],[0,-2],[0,-2],[0,-2],[1,-1],[1,-3],[2,-3],[2,-3],[2,-2],[3,-3],[2,-2],[2,-3],[2,-2],[1,-2],[2,-4],[1,-1],[1,-3],[1,-1],[1,-2],[2,-3],[1,-2],[2,0],[3,-1],[3,0],[2,-1],[3,-1],[1,0],[2,-3],[1,0],[1,0],[1,1],[0,1],[1,1],[1,0],[2,0],[0,-2],[-1,-1],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,1],[2,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-2],[0,-2],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,1],[2,1],[1,0],[2,-2],[1,-1],[1,-1],[1,-1],[2,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,2],[3,1],[2,1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,1],[2,2],[1,0],[1,1],[2,1],[1,2],[1,1],[0,1],[0,2],[0,1],[1,1],[1,1],[1,0],[1,0],[1,-1],[2,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[-2,2],[0,2],[0,3],[1,2],[0,1],[2,3],[2,2],[3,2],[3,2],[3,3],[3,2],[2,3],[1,2],[0,1],[2,2],[1,2],[0,1],[0,2],[0,2],[-1,3],[0,1],[-1,2],[0,1],[0,1],[1,2],[1,1],[0,2],[1,4],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,3],[0,1],[1,1],[2,1],[2,1],[0,1],[1,0],[1,1],[0,1],[0,1],[1,1],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[2,1],[0,1],[1,2],[1,1],[1,2],[0,2],[0,2],[-1,0],[0,1],[-1,1],[-2,1],[-1,1],[-1,1],[0,2],[1,2],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,2],[0,2],[0,2],[-1,1],[0,3],[1,1],[1,2],[0,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,1],[1,2],[0,1],[0,2],[-1,1],[-5,3],[1,1],[3,2],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[3,1],[2,2],[1,1],[1,1],[1,1],[1,0],[1,-1],[1,0],[1,1],[2,0],[2,1],[1,1],[1,1],[0,1],[-1,0],[-2,3],[-1,1],[0,1],[1,1],[2,1],[2,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[0,1],[1,1],[0,1],[2,2],[2,0],[0,1],[1,0],[1,1],[1,0],[1,0],[2,0],[2,-1],[2,-1],[1,0],[1,-1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[0,2],[1,1],[1,1],[1,1],[1,0],[1,0],[2,1],[1,1],[2,2],[3,3],[1,1],[1,2],[1,2],[1,2],[2,1],[1,1],[2,1],[2,1],[3,2],[1,1],[1,1],[0,1],[2,3],[1,1],[0,1],[1,0],[1,0],[1,1],[2,1],[0,1],[1,1],[1,1],[2,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,2],[1,1],[2,1],[1,0],[1,0],[1,0],[1,2],[1,1],[2,1],[1,0],[2,-1],[1,0],[1,0],[3,1],[1,1],[1,1],[2,0],[2,0],[2,0],[1,1],[2,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,2],[2,3],[1,2],[1,0],[0,1],[-1,1],[-3,3],[-3,2],[-2,3],[-2,3],[-1,2],[-1,2],[0,2],[-1,2],[0,1],[-1,1],[-1,1],[0,1],[0,1],[1,3],[0,1],[0,1],[1,2],[2,1],[1,2],[1,2],[0,1],[-2,2],[-1,1],[-1,3],[-2,3],[-1,2],[-1,1],[-2,1],[-2,2],[-2,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[1,2],[1,1],[2,2],[2,1],[1,1],[2,1],[2,1],[0,1],[0,2],[0,1],[0,2],[1,2],[1,2],[1,1],[1,3],[1,1],[2,3],[0,1],[0,2],[0,1],[-2,1],[-1,1],[-2,2],[-2,0],[-1,2],[1,1],[1,1],[1,2],[0,1],[0,1],[0,2],[0,2],[-1,3],[0,1],[0,1],[1,1],[1,3],[1,2],[0,1],[1,3],[1,2],[0,1],[1,3],[1,3],[0,4],[-1,2],[1,0],[3,3],[2,3],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,1],[2,1],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[0,1],[2,0],[2,0],[2,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,1],[2,1],[2,2],[1,1],[1,0],[1,1],[3,1],[2,1],[2,1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[2,0],[2,1],[2,2],[1,0],[2,0],[2,1],[1,0],[1,1],[0,1],[1,2],[1,1],[1,0],[1,0],[2,-1],[2,-1],[3,0],[1,0],[2,-1],[2,0],[1,0],[1,1],[2,0],[3,1],[2,1],[2,1],[1,0],[2,1],[1,0],[1,2],[1,1],[1,1],[1,3],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[1,2],[1,0],[2,1],[1,0],[1,0],[2,-1]],[[5135,5078],[0,-1],[0,-2],[1,-1],[1,-1],[1,-1],[2,0],[2,-1],[2,-1],[2,-1],[3,-2],[2,-1],[4,-2],[2,-1],[1,-1],[1,-1],[2,-2],[1,-1],[1,-2],[4,-5],[3,-5],[3,-3],[0,-1],[2,-3],[2,-1],[1,-1],[1,-1],[0,-2],[1,-2],[1,-1],[0,-1],[1,0],[1,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-2],[1,-2],[0,-2],[0,-3],[0,-2],[0,-1],[-2,-2],[-2,-1],[-1,-2],[0,-1],[0,-2],[0,-3],[0,-2],[1,-4],[1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-3],[0,-4],[-1,0],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,-3],[0,-3],[-1,-2],[-1,-3],[-1,-3],[-2,-2],[-1,-1],[0,-2],[0,-2],[1,-2],[1,-3],[2,-2],[1,-2],[0,-1],[1,-2],[1,-2],[0,-2],[0,-2],[0,-3],[-1,-3],[0,-2],[-1,-1],[-1,-3],[-1,-1],[-2,-2],[-2,-2],[-1,-1],[0,-1],[-1,-2],[1,-1],[1,-3],[1,-2],[0,-2],[0,-3],[0,-3],[-1,-1],[0,-2],[-1,-3],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,-2],[-1,-1],[0,-1],[-1,-3],[0,-2],[-1,-2],[0,-3],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-2],[-1,-3],[-1,-1],[0,-2],[0,-1],[1,-1],[1,-1],[1,-1],[2,-1],[2,-1],[2,-1],[1,-1],[2,-2],[2,-1],[2,-1],[1,-1],[2,-2],[1,-2],[1,-1],[0,-2],[1,-2],[0,-2],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[0,-3],[1,-1],[0,-1],[1,-1],[1,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-2],[1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-2,-1],[-2,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-3,0],[-2,-1],[-1,0],[-1,-1],[-4,-1],[-1,0],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-3,0],[-5,-2],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[-2,-2],[-1,0],[-1,-1],[-3,-3],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,-2],[-1,-1],[0,-2],[1,-1],[0,-1],[1,-3],[1,-3],[0,-1],[1,-3],[0,-2],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,-3],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[0,-1],[-2,-2],[-1,-1],[-1,-1],[-2,0],[-2,0],[-2,-1],[-2,-1],[-2,0],[-2,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-2,-3],[-2,-2],[-1,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[2,-3],[1,-2],[0,-1],[1,-2],[1,-2],[0,-1],[1,-2],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,-3],[-2,-5],[0,-1],[-1,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[-1,-4],[-1,-3],[-1,-1],[-1,-3],[0,-1],[-1,-3],[-1,-2],[0,-2],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-3,-2],[-2,-2],[-2,-1],[-2,-1],[0,-1],[-2,-1],[-4,-2],[-2,-2],[-3,-2],[-1,-2],[-2,-1],[-1,-2],[-2,-3],[-1,-1],[-1,-2],[-2,-2],[-2,-1],[-2,-1],[-3,-1],[-3,-1],[-5,0],[-4,0],[-3,1],[-2,0],[-2,0],[-2,1],[-5,2],[-5,2],[-5,2],[-3,1],[-2,2],[-2,2],[-1,2],[-2,3],[-2,2],[-1,2],[-2,3],[-2,2],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-2,-1],[-3,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,0],[-5,0],[-5,0],[-3,1],[-3,0],[-3,0],[-3,0],[-1,0],[-3,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-2,-1],[-2,0],[-1,-1],[-2,-1],[-2,-1],[0,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,-2],[2,-1],[2,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-2],[0,-2],[0,-2],[1,-2],[1,-2],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-2,-2],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-2],[1,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-2],[0,-1],[-1,-1],[0,-5],[1,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-4],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-3,0],[-1,0],[-3,-1],[-3,0],[-2,-1],[-3,0],[-1,0],[-1,-1],[-3,-1],[-2,-1],[-2,0],[-2,-1],[-1,0],[-1,-1],[0,-1],[-2,-2],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,0],[2,-1],[2,-1],[2,-1],[1,-1],[1,-1],[2,-1],[2,0],[1,-1],[1,-1],[2,-2],[1,-1],[1,0],[2,0],[2,-1],[2,-1],[1,-1],[1,-1],[2,-1],[1,-2],[1,0],[1,-1],[2,0],[3,0],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-2,-2],[0,-2],[-2,-2],[0,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-2,0],[-3,-2],[-1,-1],[-2,-1],[-2,-2],[-2,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[0,-2],[-1,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-3],[1,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[-3,-6],[-3,-4],[-1,-3],[0,-1],[1,-1],[1,-1],[2,-1],[2,-1],[4,-2],[2,-2],[1,-2],[1,-1],[-1,-3],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-3],[1,-2],[0,-3],[0,-2],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-3,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-3],[0,-1],[1,-1],[1,-2],[1,-1],[2,-1],[1,-1],[2,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,-1],[0,-1],[2,-2],[1,-2],[2,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[-1,-2],[-1,-1],[-2,-2],[-3,-1],[-3,-2],[-2,-1],[-2,-2],[0,-1],[0,-3],[0,-3],[1,-1],[1,-1],[1,-2],[2,-2],[2,-1],[2,-1],[1,-1],[1,-2],[0,-1],[-1,-2],[0,-2],[-1,-3],[-1,-2],[0,-1],[-1,-1],[-3,-1],[-1,-1],[-2,-1],[-3,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-3],[0,-3],[0,-2],[-2,-2],[-1,-4],[0,-1],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-3,-1],[-2,-1],[-2,-2],[-2,-1],[0,-1],[0,-1],[2,-4],[3,-3],[2,-2],[1,-1],[1,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-4],[0,-2],[0,-2],[-1,-1],[-1,-1],[-2,-2],[-4,-2],[-1,-1],[-1,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[2,-2],[2,-1],[4,-4],[1,-1],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[0,-1],[-1,-2],[-1,-1],[-2,-1],[-2,-2],[-1,0],[0,-1],[1,-2],[2,-2],[1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[2,-1],[2,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-2],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[-1,-3],[0,-1],[-1,-1],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,-1]],[[3909,4414],[2,0],[4,2],[2,2],[4,1],[3,2],[4,2],[3,1],[2,1],[2,1],[3,1],[2,1],[3,2],[3,2],[4,2],[2,1],[1,0],[1,0],[2,0],[4,1],[5,0],[4,0],[5,0],[4,0],[4,0],[1,0],[1,0],[2,2],[3,1],[3,2],[1,1],[1,0],[1,1],[1,2],[1,1],[1,2],[1,1],[1,2],[1,2],[1,1],[1,1],[1,1],[1,0],[2,1],[1,0],[2,0],[3,1],[1,0],[2,0],[2,0],[2,2],[2,0],[4,2],[3,1],[1,1],[1,1],[1,2],[0,1],[0,3],[0,1],[1,5],[0,2],[1,1],[-1,2],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,2],[1,1],[0,2],[1,1],[1,2],[1,1],[1,2],[1,1],[1,2],[0,1],[1,1],[0,1],[0,2],[1,1],[0,2],[0,2],[0,2],[1,1],[2,1],[1,1],[1,0],[1,1],[2,0],[1,0],[2,1],[2,1],[1,0],[2,1],[2,0],[2,1],[1,0],[2,1],[1,0],[2,1],[1,1],[2,1],[1,2],[6,5],[2,2],[3,3],[1,1],[1,2],[2,2],[1,2],[1,1],[1,0],[2,0],[2,0],[1,-1],[1,0],[3,0],[1,0],[1,0],[1,1],[1,0],[3,-1],[1,0],[3,-1],[1,0],[1,0],[4,1],[2,0],[3,1],[1,1],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,1],[2,1],[1,2],[1,1],[1,2],[1,1],[3,1],[2,1],[2,1],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[-1,2],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[1,1],[2,2],[0,1],[1,1],[0,1],[2,1],[1,1],[2,1],[1,2],[2,1],[2,1],[1,1],[2,1],[2,1],[2,2],[2,1],[1,0],[1,2],[1,1],[0,2],[1,2],[0,1],[1,2],[0,1],[2,2],[2,2],[1,2],[2,2],[1,1],[3,2],[2,1],[3,3],[3,2],[2,1],[2,1],[2,2],[2,1],[2,1],[3,2],[3,2],[4,2],[3,3],[3,1],[1,1],[2,1],[4,1],[4,0],[4,1],[1,0],[2,0],[5,0],[2,1],[1,0],[1,1],[1,0],[2,0],[1,0],[2,0],[1,0],[2,1],[1,1],[3,0],[2,1],[2,1],[0,1],[3,0],[1,1],[1,0],[1,0],[1,1],[0,1],[1,1],[1,1],[1,0],[1,1],[1,2],[0,1],[0,1],[1,1],[0,1],[3,3],[2,1],[1,1],[2,1],[2,1],[2,1],[0,1],[2,0],[1,0],[1,1],[1,0],[1,2],[1,2],[1,1],[2,2],[1,2],[1,2],[1,1],[1,3],[1,2],[0,1],[1,3],[2,2],[1,1],[1,2],[1,1],[2,3],[2,1],[1,0],[2,1],[1,0],[2,0],[4,1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[2,1],[1,0],[1,0],[2,0],[1,1],[1,0],[2,1],[1,1],[2,1],[2,1],[3,2],[2,1],[3,1],[2,1],[1,1],[2,1],[1,1],[2,0],[1,0],[1,0],[2,-1],[3,-1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[3,0],[1,0],[2,0],[2,-1],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[0,-1],[1,0],[2,0],[2,-1],[2,0],[2,-1],[1,-1],[2,0],[2,-1],[1,-1],[2,0],[1,0],[1,0],[2,1],[4,0],[3,1],[3,0],[1,0],[1,0],[1,0],[1,-2],[1,-1],[1,-1],[1,0],[1,0],[2,1],[2,0],[1,1],[1,0],[2,0],[1,0],[2,-1],[2,-1],[2,-1],[3,-1],[2,-1],[6,0],[3,-1],[2,0],[3,-1],[4,-2],[1,0],[2,0],[3,2],[2,1],[1,1],[3,2],[2,1],[2,1],[1,1],[1,0],[2,0],[3,0],[3,0],[3,0],[2,0],[1,0],[2,1],[2,0],[2,0],[3,0],[2,0],[1,1],[2,0],[3,1],[1,0],[2,0],[1,1],[2,1],[1,0],[1,1],[3,2],[2,2],[3,2],[1,1],[3,1],[2,0],[2,1],[2,0],[1,0],[0,1],[1,1],[1,0],[1,2],[1,2],[2,2],[2,2],[2,1],[1,1],[3,2],[1,1],[2,2],[3,2],[1,1],[1,0],[3,2],[1,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[1,2],[1,2],[1,2],[0,2],[2,2],[0,1],[1,1],[2,3],[1,2],[1,2],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,6],[0,2],[0,3],[0,2],[0,1],[1,1],[3,1],[3,0],[2,1],[2,0],[2,1],[1,1],[2,1],[2,2],[1,1],[2,2],[0,1],[1,1],[0,2],[1,2],[0,2],[0,3],[1,3],[1,2],[1,3],[0,1],[1,2],[0,2],[0,2],[-1,3],[-1,2],[-1,2],[-2,5],[-2,4],[-1,2],[-2,2],[-2,2],[-2,3],[-1,1],[-2,1],[-1,2],[-1,1],[-2,2],[-2,1],[-2,1],[-3,2],[-2,1],[-2,2],[-2,1],[-1,1],[0,1],[-1,1],[0,1],[1,4],[0,1],[0,3],[1,3],[1,3],[1,3],[2,3],[1,3],[2,3],[0,2],[2,2],[2,2],[1,1],[2,2],[3,2],[0,1],[3,3],[3,3],[2,2],[2,2],[1,2],[1,1],[2,3],[1,1],[2,4],[0,1],[1,2],[1,3],[1,1],[2,3],[1,2],[2,2],[2,1],[1,1],[1,1],[2,2],[3,2],[2,2],[2,1],[2,2],[3,1],[2,2],[3,2],[2,1],[2,2],[3,2],[1,1],[1,1],[1,1],[1,1],[2,2],[1,1],[1,2],[1,1],[3,3],[1,2],[2,2],[2,2],[2,3],[2,2],[1,1],[2,1],[2,2],[2,1],[2,2],[2,1],[1,0],[1,0],[8,1],[2,0],[2,0],[2,0],[2,0],[2,1],[2,1],[4,2],[2,1],[1,1],[2,2],[1,1],[2,1],[2,2],[1,1],[1,2],[0,1],[1,1],[1,0],[1,1],[2,0],[1,-1],[2,1],[1,0],[3,1],[1,1],[1,1],[3,2],[1,2],[0,1],[3,2],[2,3],[1,1],[1,1],[3,2],[4,1],[2,1],[1,1],[3,3],[2,1],[1,1],[2,0],[3,0],[1,0],[3,0],[2,-1],[3,-1],[2,-2],[3,-2],[4,-2],[4,-3],[5,-3],[2,-1],[6,-1],[1,-1],[1,1],[2,0],[2,0],[3,0],[4,1],[4,0],[2,0],[3,0],[2,-1],[3,0],[2,-1],[1,0],[2,-1],[2,0],[3,-1],[3,0],[3,1],[2,0],[1,1],[1,0],[4,0],[1,1],[1,0],[3,0],[5,1],[4,0],[6,1],[3,1],[4,0],[2,1],[1,1],[0,2],[1,1],[0,4],[2,9],[1,3],[0,4],[1,3],[1,3],[0,2],[1,2],[0,2],[1,3],[1,2],[2,3],[1,2],[2,3],[2,3],[0,2],[2,2],[1,3],[2,4],[1,1],[1,2],[2,1],[1,1],[1,0],[2,0],[1,0],[1,0],[1,-1],[2,1],[3,1],[3,1],[1,0],[2,0],[2,1],[1,0],[1,0],[1,1],[1,1],[0,1],[0,1],[-1,2],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[2,1],[1,1],[1,1],[1,1],[1,2],[1,1],[0,1],[1,0],[1,1],[0,2],[1,0],[2,-2],[2,-1],[3,-3],[2,-2],[3,-3],[2,-1],[1,-1],[1,-1],[2,-1],[2,-1],[2,-1],[2,-1],[3,-1],[1,-1],[1,0],[2,-1],[0,-1],[2,-1],[2,-2],[2,-1],[1,-2],[2,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-3],[1,-2],[1,-1],[1,0],[3,-1],[4,0],[2,-1],[3,0],[3,0],[3,0],[2,0],[7,-1],[1,0],[3,0],[4,-1],[2,0],[2,0],[3,-1],[2,0],[5,0],[2,-1],[3,0],[2,0],[3,0],[3,0],[2,0],[3,0],[3,0],[3,0],[2,1],[2,0],[2,0],[2,0],[2,0],[3,1],[3,0],[3,0],[2,0],[3,0],[2,0],[2,0],[3,0],[4,0],[4,0],[2,0],[2,0],[2,0],[2,0],[2,-1],[6,-1],[4,-2],[4,-1],[3,-1],[3,-2],[4,-2],[2,-1],[2,0],[2,1],[4,0],[1,0],[5,0]],[[5673,5125],[-4,-11],[-3,-8],[-3,-10],[-4,-6],[-16,-19],[-10,-15],[-8,-14],[-7,-9],[-9,-12],[-6,-10],[-3,-5],[-2,-8],[-3,-7],[-7,-9],[-2,-4],[-1,-5],[1,-6],[1,-5],[3,-5],[4,-7],[5,-7],[5,-10],[4,-9],[6,-8],[5,-5],[1,-4],[0,-12],[-1,-9],[-3,-6],[0,-7],[0,-3],[2,-4],[3,-3],[9,-9],[9,-7],[7,-8],[3,-5],[3,-4],[3,-6],[2,-5],[5,-15],[10,-22],[0,-1],[2,-2],[2,-2],[5,-5],[4,-5],[2,-1],[6,-6],[2,-2],[0,-1],[0,-3],[-1,-3],[0,-1],[-3,-2],[-1,-1],[-2,-1],[-2,0],[-2,-1],[-1,-1],[0,-1],[-1,-2],[0,-3],[0,-4],[-1,-3],[-1,-2],[-1,-3],[-1,-3],[-1,-2],[0,-3],[0,-4],[1,-2],[1,-7],[0,-2],[1,-2],[-1,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[1,-2],[0,-3],[1,-4],[0,-2],[0,-8],[0,-5],[-1,-3],[0,-4],[-1,-3],[0,-2],[0,-1],[1,-1],[1,-3],[2,-3],[1,-2],[0,-2],[0,-2],[-1,-2],[-1,-1],[0,-2],[-1,-3],[-2,-3],[-1,-2],[0,-2],[-2,-3],[0,-2],[-1,0],[0,-1],[0,-1],[0,-4],[-1,-4],[0,-1],[-1,-1],[-1,-3],[-1,-2],[-2,-3],[-1,-2],[-1,-2],[-1,-3],[0,-2],[0,-2],[1,-3],[1,-6],[1,-4],[1,-2],[0,-3],[0,-4],[-1,-2],[0,-1],[0,-4],[-1,-1],[0,-2],[-1,-3],[-1,-2],[-1,-3],[0,-3],[-1,-3],[-1,-4],[-1,-3],[-2,-4],[-1,-2],[0,-4],[0,-3],[-1,-4],[0,-3],[1,-4],[0,-3],[1,-5],[2,-2],[1,-2],[2,-1],[1,-2],[1,-1],[2,-4],[2,-5],[0,-2],[-1,-2],[-1,-1],[-2,-4],[-1,-3],[-1,-5],[-1,-4],[-3,-4],[-2,-5],[-2,-3],[-3,-4],[-3,-2],[-2,-4],[-2,-3],[-3,-4],[-2,-2],[-1,-2],[-2,-2],[-3,-3],[-5,-5],[-4,-3],[-2,-2],[-1,-2],[-1,-3],[-1,-2],[-3,-4],[-3,-3],[-4,-4],[-3,-2],[-3,-2],[-3,-3],[-3,-4],[-1,-1],[-2,-4],[-1,-2],[-1,-1],[-3,-4],[-1,-3],[-2,-3],[0,-2],[-1,-3],[-2,-4],[-1,-3],[-2,-4],[-1,-3],[-2,-2],[-1,-2],[-2,-2],[-2,-4],[-2,-3],[-3,-4],[-2,-3],[-3,-4],[-3,-2],[-3,-3],[-2,-2],[-2,-5],[-2,-2],[-4,-7],[-3,-4],[-1,-2],[-2,-3],[0,-2],[-1,-1],[-1,-5],[0,-2],[-1,-4],[0,-1],[-1,-2],[-2,-7],[-2,-4],[-4,-5],[-3,-4],[-2,-2],[-3,-3],[-2,-2],[-2,-2],[-3,-3],[-3,-2],[-2,-2],[-2,-2],[-3,-2],[-2,-2],[-1,-1],[-2,-2],[-2,-2],[-3,-2],[-1,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-2,-2],[-2,-1],[-1,-1],[-2,-1],[-2,-2],[-2,-2],[-2,-3],[-2,-2],[-2,-3],[-2,-3],[-3,-3],[-3,-3],[-2,-2],[-2,-3],[-3,-3],[-2,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-3],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-3,-2],[-1,-2],[-1,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[0,-2],[1,-5],[-1,-2],[0,-3],[-1,-2],[0,-3],[0,-2],[-1,-1],[-1,-5],[-1,-3],[0,-2],[0,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-3],[0,-2],[0,-4],[-1,-2],[0,-2],[0,-3],[0,-2],[0,-4],[0,-2],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-3],[-2,-3],[-1,-2],[0,-3]],[[5135,5078],[0,2],[-2,4],[-1,2],[-1,2],[-1,3],[-2,3],[-1,2],[-1,3],[-2,4],[-3,5],[-2,3],[-3,5],[-2,5],[-1,2],[-1,1],[-1,1],[0,2],[0,2],[-1,3],[0,5],[-1,3],[-1,5],[-1,2],[0,4],[-1,3],[-1,2],[-1,2],[-2,1],[-1,2],[-1,1],[-2,1],[-3,2],[-2,1],[-1,1],[0,1],[-1,2],[-2,4],[-1,7],[-1,2],[0,1],[0,2],[0,1],[1,2],[1,2],[2,1],[1,2],[0,1],[1,2],[1,2],[1,1],[0,1],[0,3],[0,2],[0,2],[0,2],[-2,4],[0,2],[-1,3],[0,1],[-1,3],[-1,2],[-1,2],[-1,2],[0,2],[1,4],[0,3],[0,2],[0,1],[0,2],[-1,1],[0,2],[-1,0],[-1,3],[-1,1],[-1,2],[-2,2],[0,1],[-2,3],[-1,2],[-1,3],[-1,3],[-1,4],[-1,4],[0,2],[0,1],[0,1],[0,1],[0,1],[1,2],[1,3],[1,3],[2,2],[2,4],[1,2],[0,1],[1,0],[-1,1],[0,1],[-1,2],[0,2],[-1,2],[0,1],[-1,1],[0,1],[1,1],[1,1],[1,2],[1,2],[1,2],[1,0],[1,1],[1,2],[1,1],[2,2],[2,2],[1,1],[0,1],[0,1],[1,1],[0,1],[2,1],[2,2],[3,2],[2,3],[3,3],[1,2],[2,1],[2,2],[1,0],[0,2],[-1,0],[-2,3],[-1,1],[0,1],[0,2],[0,1],[-1,2],[0,2],[-1,1],[0,1],[0,1],[-1,2],[0,2],[0,2],[-1,2],[-1,1],[0,2],[2,2],[1,1],[0,1],[1,0],[0,1],[0,2],[-1,3],[0,2],[0,2],[-1,2],[0,1],[0,2],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[0,2],[0,3],[0,1],[-1,1],[0,1],[0,2],[0,2],[0,1],[-2,1],[-1,1],[0,1],[-1,0],[-1,2],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,5],[0,3],[0,2],[1,1],[1,1],[0,1],[2,1],[2,2],[1,1],[1,2],[1,1],[0,1],[1,2],[2,3],[1,2],[0,1],[1,2],[0,2],[0,3],[0,2],[0,2],[1,3],[0,2],[1,2],[1,2],[1,2],[0,1],[-1,1],[-1,2],[-1,2],[-2,1],[-1,2],[0,1],[-1,2],[0,2],[0,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,1],[-2,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,2],[-1,2],[0,2],[-1,2],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-2,1],[-1,1],[-2,0],[-1,1],[-1,0],[-3,1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[-1,2],[-1,1],[-2,2],[-1,1],[-1,2],[-2,2],[-2,1],[-2,1],[-2,2],[-2,1],[-1,1],[-2,1],[-3,2],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,2],[-1,1],[-1,2],[-2,2],[-1,1],[-2,2],[-2,1],[-1,1],[-1,1],[-2,1],[-1,2],[-2,1],[-1,2],[-2,0],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,0],[-2,2],[-1,0],[-3,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-2,1],[-2,1],[-1,0],[-2,1],[-1,1],[-1,0],[-2,1],[-3,1],[-3,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,2],[0,2],[0,4],[1,3],[0,1],[-1,0],[0,1],[0,2],[1,1],[0,3],[0,2],[-1,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,3],[-1,2],[-1,4],[0,1],[0,2],[0,2],[0,1],[-1,1],[-1,1],[-2,0]],[[4956,5659],[4,0],[4,0],[2,1],[3,1],[4,2],[2,2],[2,1],[1,1],[2,1],[1,1],[2,2],[1,1],[1,2],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[3,3],[2,2],[1,1],[1,1],[2,3],[2,1],[1,1],[2,0],[3,1],[2,1],[3,0],[2,1],[1,0],[2,0],[3,0],[3,1],[1,0],[3,0],[1,0],[0,1],[2,3],[1,2],[2,2],[2,2],[2,2],[4,4],[1,2],[3,3],[2,1],[3,2],[3,3],[3,1],[2,2],[2,1],[4,2],[2,2],[3,2],[3,1],[3,1],[2,1],[2,0],[1,1],[3,1],[2,1],[1,1],[2,1],[1,1],[2,1],[1,2],[1,0],[1,1],[1,1],[1,1],[1,2],[2,1],[1,1],[1,1],[1,0],[1,1],[1,1],[2,2],[1,1],[1,1],[1,2],[1,0],[0,2],[0,1],[1,4],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[3,-1],[2,0],[1,1],[3,0],[2,1],[2,1],[1,1],[0,1],[-1,1],[-1,2],[-1,2],[-2,4],[-2,2],[-1,2],[0,3],[-2,4],[-1,1],[0,1],[1,2],[0,1],[0,1],[-1,1],[-3,1],[-2,2],[-2,1],[-1,1],[-1,1],[0,2],[-1,2],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,2],[0,2],[0,1],[0,3],[0,2],[0,1],[1,1],[1,3],[1,3],[1,2],[0,4],[1,2],[1,3],[0,1],[1,3],[1,2],[1,2],[2,4],[1,2],[0,1],[0,1],[1,1],[0,1],[1,3],[1,2],[1,3],[1,2],[1,2],[0,3],[0,2],[1,1],[0,1],[1,1],[1,2],[2,2],[1,2],[2,1],[1,2],[0,1],[1,1],[0,2],[1,3],[1,2],[1,2],[0,1],[3,5],[0,2],[1,2],[2,2],[1,2],[0,2],[-1,1],[-1,1],[-2,2],[-3,1],[-2,1],[-1,1],[-4,2],[-4,1],[-1,1],[-1,1],[0,1],[-1,3],[-1,2],[0,2],[-2,2],[-1,2],[1,1],[1,2],[1,0],[2,1],[5,2],[3,1],[3,1],[1,1],[4,2],[3,2],[4,2],[7,3],[1,0],[3,1],[5,3],[4,2],[4,2],[3,2],[3,3],[3,2],[2,3],[3,3],[2,2],[5,5],[3,2],[1,2],[1,2],[1,3],[2,3],[1,2],[1,0],[5,2],[4,1],[3,2],[3,1],[2,1],[0,1],[1,1],[2,0],[1,1],[1,0],[2,0],[2,0],[2,-1],[1,0],[2,0],[1,0],[1,1],[2,1],[1,1],[3,2],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,1],[2,2],[1,2],[3,3],[1,1],[2,2],[2,2],[3,2],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,2],[2,2],[2,3],[1,2],[1,2],[0,1],[1,1],[1,1],[1,1],[1,2],[2,3],[1,1],[1,2],[1,2],[1,2],[1,1],[2,2],[0,1],[1,1],[1,1],[0,2],[1,1],[0,2],[0,1],[-1,4],[0,1],[0,2],[-1,2],[0,1],[0,1],[-1,4],[-1,2],[-1,3],[0,2],[0,2],[0,2],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-2,2],[-3,4],[-2,2],[-1,1],[-1,3],[-1,2],[-1,4],[0,2],[0,1],[-1,4],[0,2],[-2,2],[-1,1],[-3,3],[-1,2],[-1,1],[-3,2],[-2,1],[-1,1],[0,1],[-1,2],[0,1],[1,2],[1,1],[2,2],[2,1],[1,1],[2,2],[1,1],[0,1],[1,1],[1,1],[1,1],[2,0],[2,1],[2,0],[2,0],[2,1],[3,0],[1,0],[3,1],[1,0],[3,1],[3,2],[3,1],[2,1],[3,1],[2,1],[1,1],[1,1],[1,1],[1,1],[1,0],[2,1],[1,1],[2,1],[1,0],[3,1],[2,1],[2,1],[2,2],[1,1],[3,1],[2,1],[1,0],[1,0],[2,0],[3,0],[2,0],[1,0],[1,1],[1,1],[1,1],[1,1],[2,1],[2,1],[3,1],[2,1],[2,0],[1,0],[3,0],[4,-1],[5,-2],[4,-1],[3,-1],[2,-1],[1,-1],[3,0],[1,-1],[3,0],[3,0],[2,0],[2,0],[1,1],[2,0],[3,1],[2,1],[2,1],[1,1],[0,1],[-2,2],[0,1],[-1,1],[-1,2],[0,1],[0,1],[1,2],[1,1],[1,1],[1,2],[0,2],[1,2],[0,1],[1,2],[2,1],[1,1],[1,1],[1,1],[1,1],[1,1],[2,0],[0,1],[1,1],[0,1],[1,3],[1,1],[1,2],[1,2],[0,1],[1,2],[2,4],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[-2,2],[-2,1],[-1,2],[-2,2],[-1,2],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,3],[-1,2],[0,1],[-1,1],[-1,1],[-1,0],[-1,2],[-2,2],[0,2],[-1,2],[0,1],[1,1],[0,2],[2,3],[1,1],[1,1],[2,2],[1,1],[1,1],[1,1],[3,3],[1,2],[2,1],[2,2],[0,1],[1,1],[0,2],[1,2],[1,1],[1,2],[1,1],[2,3],[1,1],[1,2],[1,1],[1,0],[2,1],[1,0],[0,1],[1,1],[1,2],[2,2],[0,2],[1,1],[2,3],[0,1],[2,2],[3,3],[1,2],[1,1],[2,3],[1,3],[1,1],[2,2],[3,2],[3,3],[2,3],[4,3],[2,3],[0,1],[1,1],[1,3],[2,6],[1,3],[2,3],[0,2],[1,3],[0,2],[0,2],[-1,2],[1,3],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[-1,2],[0,1],[1,1],[1,2],[2,2],[2,1],[1,2],[1,2],[1,1],[2,1],[1,1],[3,1],[2,1],[2,2],[2,1],[1,1],[1,0],[3,2],[1,1],[2,2],[2,2],[3,2],[3,3],[2,2],[4,2],[2,2],[3,1],[2,1],[2,2],[3,1],[4,1],[1,0],[1,0],[1,0],[1,1],[1,0],[4,1],[1,2],[1,1],[1,0],[1,1],[1,1],[2,0],[1,0],[3,0],[3,0],[2,1],[1,0],[2,0],[3,0],[2,1],[4,0],[1,1],[2,1],[3,1],[5,3],[2,2],[2,1]],[[5617,6487],[0,-1],[2,-2],[1,-1],[1,-2],[2,-2],[1,-2],[0,-1],[1,-2],[1,-2],[0,-3],[1,-2],[1,-1],[1,-2],[2,-2],[1,-1],[2,-1],[4,-2],[2,-1],[1,-1],[4,-1],[3,-1],[2,-1],[3,-2],[2,-1],[1,-1],[1,-1],[2,-3],[1,-1],[1,-1],[2,-1],[4,-1],[3,-2],[3,-2],[1,-1],[1,0],[1,-1],[4,-4],[3,-3],[3,-3],[1,-1],[1,0],[2,-1],[3,-1],[4,-1],[3,-1],[2,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-2],[0,-4],[0,-3],[1,-3],[0,-1],[1,-2],[1,-2],[2,-2],[1,-2],[4,-5],[1,-3],[2,-3],[1,-2],[1,-2],[1,-3],[1,-1],[0,-2],[-1,-1],[-2,-4],[-1,-1],[-1,-2],[-2,-2],[-1,-1],[-2,-2],[-3,-3],[-2,-2],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-2],[-1,-2],[0,-1],[0,-2],[0,-2],[1,-2],[2,-4],[1,-3],[4,-5],[3,-3],[1,-2],[2,-2],[1,-1],[2,-2],[1,-1],[0,-2],[1,-1],[0,-2],[0,-2],[0,-1],[1,-2],[2,-3],[2,-2],[1,-1],[3,-1],[2,-2],[2,-1],[1,-1],[2,-2],[1,-2],[2,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[1,-2],[1,-1],[2,-2],[1,-1],[1,-2],[2,-1],[1,-2],[2,-2],[1,-1],[0,-1],[1,-1],[0,-1],[2,-2],[1,0],[2,-1],[1,-1],[2,-2],[1,-1],[2,-2],[1,-3],[1,-1],[2,-1],[2,-2],[2,-2],[2,-1],[2,-2],[2,0],[3,-1],[1,0],[2,-1],[3,0],[2,-2],[1,-1],[1,0],[2,0],[1,-1],[2,-1],[1,-1],[2,0],[1,0],[2,1],[1,1],[3,1],[0,1],[1,1],[0,1],[2,0],[1,1],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[1,-1],[1,0],[2,-1],[1,1],[1,0],[1,0],[2,0],[1,0],[2,0],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[2,-1],[1,0],[3,0],[3,0],[2,1],[1,1],[1,1],[0,1],[2,1],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,-1],[0,-2],[-1,-2],[1,-1],[2,-1],[3,1],[2,0],[2,1],[1,0],[0,1],[1,1],[-1,2],[0,2],[-1,2],[1,2],[1,3],[0,2],[1,1],[2,2],[2,1],[1,2],[1,2],[1,2],[1,2],[1,1],[2,2],[3,1],[1,1],[2,3],[1,2],[2,2],[3,3],[2,3],[2,3],[3,2],[3,2],[2,2],[1,1],[2,1],[3,3],[3,3],[3,3],[2,2],[3,2],[2,2],[2,2],[1,1],[1,1],[2,3],[2,2],[2,3],[3,2],[2,2],[2,4],[1,2],[2,3],[2,3],[1,2],[1,3],[1,3],[2,4],[1,3],[2,4],[1,2],[2,4],[2,3],[1,1],[2,3],[1,3],[1,1],[1,3],[1,2],[0,1],[-1,1],[0,1],[-2,2],[-1,3],[-1,3],[0,2],[0,1],[0,2],[1,4],[-1,1],[-3,2],[-8,1],[-2,0],[-3,2],[-2,1],[-1,1],[-1,1],[-4,2],[-3,3],[-4,3],[-4,4],[-2,2],[-4,2],[-3,3],[-2,1],[-2,0],[-2,0],[-1,0],[-2,0],[-2,1],[-3,2],[-2,1],[-2,1],[-2,0],[-3,0],[-2,0],[-5,1],[-3,1],[-2,0],[-2,1],[-3,3],[-3,3],[-3,3],[-2,3],[-3,4],[-2,3],[-3,4],[-3,4],[-2,3],[-1,4],[-1,2],[-2,4],[-1,2],[-1,2],[-2,3],[-2,4],[-2,1],[-2,3],[-1,1],[-2,3],[-2,3],[-1,1],[-4,6],[-3,2],[-3,4],[-2,3],[-3,3],[-2,2],[-2,3],[-2,4],[-1,1],[-1,3],[-1,3],[-1,3],[-2,4],[-2,3],[-2,3],[-1,5],[-1,2],[-2,4],[-1,4],[-2,4],[-2,2],[-1,3],[0,1],[-1,3],[0,1],[0,2],[-2,1],[-2,2],[-3,1],[-4,2],[-4,2],[-3,2],[-4,3],[-1,1],[-4,4],[-6,4],[-2,2],[-2,1],[-1,1],[-2,1],[-4,1],[-3,1],[-1,0],[-3,1],[-2,0],[-2,0],[-1,0]],[[5727,6586],[2,2],[2,3],[3,5],[1,2],[1,2],[1,3],[1,2],[1,4],[1,3],[0,2],[0,3],[0,3],[1,3],[0,3],[1,2],[1,3],[1,2],[2,3],[1,3],[3,4],[2,3],[1,1],[1,1],[1,2],[0,3],[0,1],[1,1],[0,2],[1,1],[2,2],[2,4],[0,2],[1,4],[0,2],[1,2],[0,1],[2,4],[1,1],[1,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[1,1],[2,3],[2,1],[2,2],[1,2]],[[5776,6700],[1,-1],[2,-1],[4,-3],[4,-4],[2,-3],[3,-3],[2,-2],[2,-1],[3,-3],[3,-2],[1,-1],[4,-3],[3,-3],[3,-2],[4,-3],[3,-1],[2,-2],[4,-2],[2,-1],[3,-1],[2,0],[1,0],[1,0],[3,-1],[2,-1],[3,-1],[1,-1],[4,-2],[1,0],[2,-1],[1,-1],[2,-1],[4,-3],[2,-2],[4,-2],[2,-1],[1,-1],[1,0],[1,-1],[3,0],[1,-1],[1,0],[1,1],[1,0],[2,1],[3,2],[1,0],[2,1],[1,0],[3,0],[2,0],[3,0],[3,0],[2,0],[2,0],[2,0],[2,0],[2,-1],[3,0],[3,-1],[2,-1],[1,-1],[3,-1],[2,-2],[1,-1],[1,-2],[2,-3],[1,-3],[1,-1],[1,-3],[2,-3],[1,-2],[1,-2],[1,-2],[1,-2],[2,-3],[1,-3],[2,-2],[2,-2],[2,-1],[1,-1],[1,-1],[3,-4],[3,-3],[2,-2],[3,-2],[2,-2],[2,-2],[2,-2],[3,-4],[2,-3],[2,-3],[0,-1],[1,-1],[1,-1],[1,-1],[3,-2],[2,-2],[3,-1],[2,-1],[2,-1],[2,-1],[2,-1],[3,-2],[3,-1],[3,-2],[2,-1],[4,-2],[4,-3],[4,-2],[4,-3],[4,-2],[2,-3],[3,-2],[1,-2],[2,-3],[2,-6],[1,-2],[2,-2],[2,-3],[2,-3],[2,-2],[1,-1],[1,-2],[3,-3],[4,-6],[2,-4],[2,-2],[5,-7],[4,-3],[3,-3],[2,-3],[2,-2],[1,-1],[2,-2],[6,-5],[4,-3],[3,-2],[2,-2],[3,-2],[2,-1],[2,-1],[2,-1],[3,-1],[3,0],[3,-1],[8,-2],[5,-1],[7,-3],[3,0],[3,-1],[2,1],[3,0],[5,1],[5,0],[4,1],[3,1],[5,1],[3,1],[4,0],[2,1],[2,1],[2,1],[2,2],[1,1],[5,4],[5,4],[7,5],[6,3],[2,1],[6,2],[3,1],[5,3],[9,2],[6,2],[6,1],[9,2],[4,0],[7,0],[4,-1],[5,0],[7,-1],[7,-1],[3,0],[10,-1],[8,0],[6,0],[5,0],[4,-1],[3,-1],[5,-2],[3,0],[4,0],[5,1],[4,2],[3,1],[2,0],[2,0],[2,1],[3,0],[3,1],[4,2],[4,2],[3,3],[3,2],[3,3],[2,1],[2,2],[4,0],[13,0],[3,0],[4,-1],[5,-2],[7,-3],[2,-1],[3,-4],[2,-3],[2,-3],[3,-2],[3,-2],[5,-3],[2,-1],[4,-2],[3,0],[5,-1],[4,-1],[4,-1],[3,0],[5,-1],[3,-1],[5,-1],[3,-1],[5,-1],[4,0],[7,0],[3,0],[3,1],[4,2],[4,0],[3,-1],[5,-1],[2,-1],[6,2],[5,2],[2,0],[5,0],[1,0],[2,0],[0,-1],[-1,0],[-3,-1],[-2,-1],[-2,-2],[-2,-2],[-1,-4],[0,-2],[1,-3],[2,-5],[0,-3],[0,-3],[-1,-3],[-1,-3],[-1,-1],[-2,-1],[-3,0],[-2,-1],[-2,-1],[-1,-2],[-1,-3],[-2,-3],[-2,-3],[-3,-3],[-1,-3],[-1,-1],[0,-1],[0,-2],[1,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,-2],[0,-3],[0,-4],[0,-4],[-2,-2],[0,-2],[-1,-2],[-1,-1],[-2,-1],[-3,-2],[-3,-2],[-3,-4],[-4,-4],[-2,-3],[-3,-2],[-3,-3],[-2,-3],[-2,-2],[-3,-2],[-3,-3],[-2,-3],[-3,-4],[-3,-2],[-2,-1],[-2,-2],[-1,-3],[-2,-4],[-1,-2],[-3,-2],[-3,-1],[-2,-2],[-2,-3],[-1,-1],[-3,-1],[-4,-2],[-4,-2],[-4,-3],[-2,-1],[-2,-1],[-5,-1],[-2,0],[-3,-2],[-4,-1],[-2,-2],[-3,-2],[-5,-5],[-3,-3],[-2,-1],[-4,-2],[-2,-1],[-3,-1],[-4,-2],[-3,-3],[-2,-1],[-4,-2],[-4,-3],[-2,-2],[-3,-3],[-2,-1],[-1,-1],[-3,-1],[-4,-2],[-4,-1],[-6,-1],[-4,0],[-5,1],[-3,1],[-6,2],[-3,1],[-2,1],[-4,2],[-7,2],[-6,3],[-4,2],[-6,2],[-4,3],[-2,2],[-3,1],[-5,2],[-5,2],[-4,1],[-4,1],[-3,1],[-3,0],[-5,1],[-5,0],[-3,0],[-5,0],[-3,1],[-4,2],[-3,1],[-5,1],[-4,1],[-5,0],[-3,-1],[-3,-1],[-2,0],[-3,-2],[-1,0],[-5,-1],[-4,-1],[-6,-1],[-6,-1],[-2,-1],[-5,-2],[-3,-2],[-4,-2],[-3,-2],[-5,-2],[-5,-3],[-5,-2],[-5,-1],[-2,-1],[-3,-2],[-3,-1],[-4,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-2],[0,-2],[0,-3],[0,-2],[1,-3],[1,-3],[0,-2],[-1,-4],[0,-3],[1,-2],[1,-2],[1,-2],[1,-4],[1,-4],[-1,-4],[-1,-6],[-1,-4],[-2,-4],[-2,-3],[0,-2],[-1,-5],[-2,-2],[-3,-3],[-4,-4],[-1,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-5,-2],[-3,-2],[-3,-2],[-3,-2],[-2,-2],[0,-2],[0,-3],[1,-3],[0,-2],[0,-2],[1,-2],[4,-6],[1,-2],[2,-4],[2,-5],[5,-5],[3,-3],[0,-1],[2,-1],[0,-2],[2,-2],[4,-7],[2,-6],[1,-3],[0,-2],[-1,-3],[-1,-4],[0,-3],[-1,-1],[1,-3],[1,-4],[1,-2],[2,-12],[1,-4],[2,-9],[0,-4],[0,-9],[-1,-6],[0,-6],[-2,-7],[-2,-6],[-1,-7],[0,-1],[1,-1],[2,0],[5,0],[5,-1],[3,0],[1,0],[2,0],[2,0],[2,0],[3,-1],[5,-1],[3,-2],[2,-1],[2,-1],[2,-3],[2,-4],[1,-3],[1,-4],[1,-3],[1,-5],[1,-4],[2,-4],[3,-3],[2,-4],[2,-3],[1,-1],[2,-1],[2,-1],[3,-2],[2,-2],[2,0],[3,-1],[2,-1],[3,-2],[4,-3],[2,-4],[2,-3],[2,-3],[2,-5],[1,-2],[2,-1],[2,-3],[1,-1],[1,-3],[1,-3],[0,-2],[2,-3],[2,-3],[1,-1],[2,-2],[4,-3],[3,-3],[5,-3],[4,-2],[4,-1],[5,-3],[2,-1],[3,-2],[2,-2],[2,-4],[1,-1],[2,-2],[4,-2],[3,-3],[5,-3],[3,-2],[5,-1],[2,-1],[5,-3],[5,-2],[2,-1],[2,-2],[0,-2],[0,-2],[-1,-4],[-2,-2],[-2,-4],[-2,-3],[-2,-5],[-1,-3],[-2,-2],[-5,-4],[-4,-3],[-5,0],[-8,0],[-5,-1],[-2,0],[-2,-2],[-1,-2],[-2,-3],[-2,-4],[-2,-4],[-4,-5],[-5,-5],[-1,-2],[-3,-2],[-4,-2],[-5,-2],[-9,-2],[-9,-2],[-1,-1],[-2,-3],[-3,-7],[-3,-7],[-2,-4],[-2,-5],[-1,-2],[-1,-1],[-4,-4],[-3,-4],[-2,-3],[-3,-5],[-1,-5],[-1,-1],[0,-4],[1,-5],[-1,-2],[0,-3],[-3,-3],[-3,-2],[-3,-2],[-5,-2],[-8,-4],[-6,-3],[-3,-1],[-4,0],[-3,-1],[-4,0],[-4,-1],[-5,-2],[-6,-3],[-8,-4],[-2,-1],[-1,0],[-3,-2],[-2,-1],[-7,-2],[-3,0],[-4,0],[-1,0],[-2,0],[-7,-3],[-2,-1],[-10,-3],[-3,-2],[-6,-3],[-4,-2],[-4,-3],[-1,-1],[-1,-2],[0,-1],[-2,-3],[-1,-3],[-2,-2],[-3,-5],[-3,-3],[-2,-4],[-2,-2],[-2,-2],[-2,-5],[-2,-4],[-1,-3],[-2,-4],[-1,-2],[-1,-5],[0,-3],[-1,-5],[-1,-5],[-1,-4],[-1,-3],[-1,-2],[-1,-2],[0,-1],[-2,-4],[0,-2],[0,-4],[-1,-3],[0,-7],[0,-2],[1,-4],[0,-5],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-2],[-4,-3],[-2,-2],[-2,-2],[-1,-2],[-1,-1],[-2,-6],[-1,-2],[0,-1],[-1,-2],[0,-3],[-4,-4],[-2,-2],[-1,-1],[-1,-2],[-2,-1],[-2,-2],[-3,-3],[-2,-3],[-2,-1],[-2,-1],[-3,-3],[-4,-3],[-2,-2],[-3,-2],[-5,-3],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-2],[-2,-1],[-3,-2],[-2,-1],[-1,-1],[-4,-4],[0,-1],[-2,-1],[-2,-2],[-2,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-2,-2],[-1,0],[-2,-1],[-1,0],[-4,-1],[-3,-1],[-2,0],[-2,-1],[-1,-1],[-2,-1],[-3,-2],[-3,-3],[-2,-2],[-2,-2],[-2,-1],[-1,-2],[-3,-4],[-1,-1],[-2,-3],[-2,-2],[-4,-4],[-1,-1],[-3,-2],[-6,-5],[-2,-2],[-4,-3],[-3,-2],[-4,-4],[-2,-1],[-4,-3],[-3,-3],[-3,-2],[-1,-2],[-1,-1],[0,-1],[-2,-5],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-2,-2],[-1,-2],[0,-1],[-1,-1],[-2,-3],[-2,-2],[-2,-1],[-1,-1],[-1,-1],[-4,-3],[-3,-1],[-3,-2],[-2,-1],[-3,-1],[-3,-2],[-3,-1],[-3,-1],[-3,0],[-2,-1],[-3,-2],[-3,-1],[-2,-2],[-5,-3],[-2,-2],[-4,-4],[-2,-3],[-4,-4],[-1,-2],[-2,-3],[-2,-1],[-1,-1],[0,-2],[-1,0],[-1,-1],[-2,0],[-2,-1],[-3,-1],[-2,0],[-2,0],[-2,-2],[-2,-1],[-3,-2],[-4,-1],[-4,-2],[-2,-2],[-1,-1],[2,-2],[1,-1],[2,-1],[3,-2],[7,-2],[4,-2],[4,-2],[3,-2],[2,-2],[3,-2],[2,-1],[4,-2],[2,-1],[1,-1],[4,-1],[5,-2],[4,-1],[7,-3],[5,-2],[2,-1],[5,-1],[2,-1],[2,0],[4,0],[6,-1],[6,-1],[4,0],[3,-1],[1,-1],[2,0],[4,-1],[2,0],[2,0],[3,0],[6,1],[4,0],[3,0],[2,0],[4,-1],[4,0],[2,-1],[3,-2],[1,-1],[2,-1],[4,-1],[4,-2],[5,0],[5,-1],[2,-1],[5,0],[4,-1],[9,-2],[3,0],[2,-1],[4,-1],[11,-2],[16,-3],[-8,-10],[-2,-3],[-5,-8],[-2,-3],[-5,-7],[-3,-4],[-6,-5],[-7,-5],[-6,-4],[-8,-4],[-5,-3],[-4,-2],[-4,-1],[-5,-1],[-7,-1],[-15,-1],[-8,0],[-6,0],[-4,-1],[-2,-1],[-8,-4],[-5,-3],[-4,-2],[-6,-2],[-2,0],[-8,-1],[-5,0],[-3,-1],[-3,-2],[-4,-1],[-2,-1],[-12,-4],[-5,-1],[-3,-2],[-4,-3],[-2,-1],[-5,-3],[-6,-4],[-6,-4],[-4,-2],[-9,-4],[-6,-3],[-4,-1],[-4,-4],[-5,-4],[-2,-2],[-11,-10],[-6,-6],[-5,-5],[-2,-5]],[[5452,7376],[4,-2],[1,0],[2,-1],[2,0],[4,0],[3,-1],[4,-3],[2,-1],[2,-2],[1,-1],[2,-2],[3,-2],[1,-1],[1,-2],[2,-2],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[2,-1],[1,-2],[1,-1],[2,-2],[2,-2],[2,-3],[1,-1],[1,-1],[4,-3],[0,-1],[2,-1],[1,-1],[3,-3],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[2,-2],[1,-3],[0,-2],[1,-2],[0,-1],[1,-4],[0,-1],[1,-2],[1,-3],[0,-1],[2,-1],[1,-1],[3,-1],[5,-2],[3,0],[3,-1],[7,0],[2,-1],[4,1],[2,0],[2,0],[4,0],[4,0],[3,-1],[4,-1],[5,-1],[3,-1],[3,0],[3,-1],[3,1],[3,0],[3,0],[2,0],[6,0],[3,-1],[4,0],[3,-1],[2,0],[4,-1],[2,-1],[5,-2],[2,-1],[2,-1],[2,-1],[3,-2],[2,-1],[4,-1],[2,0],[3,0],[2,0],[2,0],[3,1],[3,0],[4,0],[3,0],[4,0],[4,0],[12,0],[5,-1],[3,0],[3,0],[2,0],[3,0],[2,0],[2,-1],[3,-1],[1,0],[2,-1],[7,-3],[5,-2],[7,-2],[5,-2],[8,-3],[6,-3],[3,0],[5,-1],[11,-1],[9,0],[1,0],[2,-1],[3,-2],[2,-3],[4,-2],[4,-2],[8,-4],[4,-3],[1,0],[0,-1],[0,-1],[-2,-3],[-2,-3],[-3,-3],[-1,-2],[-1,-2],[0,-4],[-1,-3],[-2,-5],[-3,-5],[-3,-5],[0,-2],[-1,-2],[0,-2],[0,-6],[1,-3],[1,-4],[2,-4],[1,-5],[0,-2],[0,-2],[-1,-3],[-1,-2],[-2,-2],[0,-4],[0,-3],[0,-2],[0,-4],[1,-3],[0,-5],[0,-3],[0,-4],[0,-4],[-2,-5],[0,-3],[0,-3],[2,-2],[3,-3],[2,-1],[2,-4],[3,-4],[3,-4],[1,-2],[2,-3],[1,0],[2,-2],[4,-3],[3,0],[2,-2],[2,-1],[1,-1],[2,-3],[1,-3],[0,-1],[2,-3],[4,-3],[5,-4],[2,-1],[5,-3],[7,-5],[5,-4],[2,-1],[2,-1],[5,-1],[3,0],[4,0],[7,0],[6,0],[2,0],[1,-1],[2,-1],[2,0],[1,-2],[1,-1],[2,-2],[1,-2],[2,-4],[1,-3],[2,-4],[0,-2],[2,-4],[1,-4],[1,-3],[1,-4],[1,-3],[1,-3],[0,-1]],[[5908,7011],[0,-2],[-1,-2],[-2,-4],[-2,-3],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-3],[-5,-6],[-2,-4],[-2,-3],[-1,-3],[-2,-2],[-1,-1],[-3,-2],[-4,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-3],[-3,-2],[-1,-3],[-1,-2],[-1,-3],[0,-2],[-2,-3],[-2,-3],[-2,-1],[-2,-3],[-1,-3],[0,-1],[0,-2],[-1,-3],[-2,-3],[0,-1],[0,-4],[-1,-4],[0,-3],[0,-4],[0,-3],[-1,-2],[0,-2],[-1,-3],[-2,-3],[-2,-4],[-1,-2],[-2,-2],[-1,-3],[0,-4],[0,-1],[0,-2],[2,-6],[1,-4],[0,-6],[0,-4],[0,-2],[-2,-4],[-1,-4],[-1,-3],[-2,-4],[-2,-2],[-3,-2],[-3,-3],[-2,-2],[-3,-5],[-2,-2],[-3,-3],[-1,-2],[-1,-2],[-2,-3],[-2,-4],[-1,-4],[-1,-5],[-1,-4],[-1,-5],[0,-5],[-1,-3],[-3,-7],[-1,-2],[-1,-3],[-1,-1],[-2,-3],[-1,-1],[-1,-1],[-1,-3],[-2,-2],[-1,-2],[-1,-4],[-1,-3],[-2,-4],[-2,-2],[-1,-2],[-2,-5],[-2,-3],[-2,-5],[0,-2],[-2,-2],[0,-2],[-1,-3],[0,-3],[0,-2],[0,-3],[0,-3],[0,-2],[0,-4],[0,-1],[0,-2],[0,-2]],[[5727,6586],[0,-1],[-1,-3],[-3,-3],[-2,-1],[-1,-1],[-1,-1],[-2,-3],[-1,-2],[-3,-4],[-5,-7],[-2,-2],[-1,-1],[-4,-1],[-3,-2],[-5,-2],[-3,-1],[-3,-2],[-9,-3],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-2,-2],[-2,-3],[-1,-1],[-2,-2],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-7,-6],[-3,-2],[-4,-3],[-3,-2],[-3,-3],[-2,-2],[-3,-3],[-3,-3],[-3,-3],[-2,-2],[-3,-2],[-1,-1],[-2,-2],[-4,-4],[-1,-2]],[[4956,5659],[0,1],[-2,1],[-1,1],[-2,0],[-2,1],[-3,1],[-1,1],[-1,0],[-2,1],[-1,0],[-4,1],[-2,0],[-7,0],[-6,0],[-4,0],[-3,1],[-4,0],[-1,0],[-3,1],[-2,0],[-3,1],[-2,1],[-1,0],[-2,0],[-3,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[-2,2],[-2,1],[-2,1],[-2,2],[-1,1],[-1,2],[1,2],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,2],[0,1],[0,3],[0,1],[0,2],[0,2],[0,1],[0,1],[-1,2],[0,2],[-1,2],[-1,1],[0,2],[-2,2],[-1,1],[-2,2],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-2,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,2],[-2,3],[-1,1],[-1,1],[-3,3],[-1,1],[0,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-3,3],[-1,1],[-2,2],[-1,0],[-3,2],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-2,1],[0,1],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,2],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-2,1],[-1,1],[-1,0],[-2,1],[-2,0],[-2,1],[-1,0],[-1,1],[-1,1],[-1,2],[-2,3],[0,1],[-1,2],[-1,1],[-2,1],[0,1],[-2,0],[-2,1],[-2,0],[-1,0],[-3,0],[-2,-1],[-3,-1],[-2,0],[-1,-1],[-1,1],[-1,0],[-1,1],[-2,1],[-2,3],[-1,1],[-2,3],[-1,1],[-1,2],[-1,2],[-1,1],[-2,2],[-2,2],[-1,1],[-1,3],[-1,1],[-1,2],[-1,1],[-2,1],[-1,0],[-1,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-2,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,-2],[-1,-2],[-2,-1],[-2,-2],[-2,-2],[-3,-2],[-1,-1],[-6,-5],[-2,-1],[-4,-2],[-1,-1],[-2,-1],[-1,-1],[-4,-1],[-3,-1],[-4,-2],[-3,0],[-3,-1],[-1,0],[-6,-2],[-3,-1],[-2,0],[-2,-1],[-3,-2],[-3,-1],[-2,-1],[-2,-2],[-2,-1],[-2,-1],[-2,-2],[-3,-1],[-1,0],[-1,-1],[-2,-2],[-2,-1],[-1,-2],[-1,-1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-2,-1],[-2,-2],[-2,0],[-4,-1],[-5,-1],[-4,-1],[-4,-1],[-7,-1],[-4,-1],[-2,0],[-2,1],[-5,0],[-4,0],[-4,1],[-5,0],[-2,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-2,1],[-2,0],[0,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-5,0],[-2,0],[-2,0],[-2,0],[-2,1],[-3,1],[-5,0],[-3,0],[-3,0],[-2,0],[-4,-1],[-3,0],[-6,0],[-2,0],[-1,0],[-3,-1],[-3,1],[-2,0],[-4,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,2],[-2,3],[0,1],[-1,-1],[-2,0],[-2,0],[-1,-1],[-2,-1],[-2,0],[-2,-1],[-2,0],[-4,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,-1],[-3,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-2,-1],[0,-1],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-1],[-2,-2],[-2,-2],[-1,-1],[-1,-2],[-1,-1],[-2,-2],[0,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-3,1],[-1,1],[-1,0],[-3,1],[-1,2],[-4,2],[-2,1],[-2,2],[-4,3],[-2,1],[-2,2],[-2,1],[-2,2],[-2,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-3,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,2],[-1,0],[-2,1],[0,1],[-1,2],[-1,2],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-2,1],[-3,0],[-2,1],[-2,0],[-3,1],[-2,0],[-4,0],[-4,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[0,2],[-1,2],[1,2],[0,3],[-1,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[-1,2],[1,3],[0,4],[0,2],[0,1],[0,1],[0,1],[0,2],[1,2],[0,1],[1,4],[0,2],[1,1],[0,1],[0,2],[-1,6],[0,3],[0,2],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[0,1],[0,2],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,2],[1,1],[0,2],[1,6],[-1,2],[0,2],[1,4],[0,1],[0,3],[0,2],[1,1],[0,2],[1,2],[1,3],[0,2],[1,2],[0,2],[0,1],[0,3],[-1,2],[0,2],[0,2],[-1,2],[-1,3],[0,3],[-2,3],[-1,2],[0,2],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-2,2],[-1,2],[-1,2],[-1,2],[-1,1],[-1,2],[0,4],[-1,2],[0,4],[-1,3],[-1,2],[0,1],[-1,1],[-2,0],[-1,1],[-2,1],[-1,0],[-2,1],[-2,2],[-2,1],[-1,1],[-2,2],[0,1],[-3,5],[-1,2]],[[3952,5099],[0,1],[-2,2],[0,1],[0,1],[0,1],[2,0],[1,2],[1,2],[0,2],[-1,2],[0,4],[0,2],[0,2],[0,1],[1,1],[1,1],[2,2],[1,1],[1,0],[0,2],[0,2],[2,2],[1,2],[1,1],[2,3],[1,1],[1,1],[0,1],[0,1],[1,1],[1,1],[2,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[2,1],[1,1],[0,1],[0,4],[0,1],[0,2],[0,1],[-1,2],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[1,1],[0,1],[1,0],[2,1],[1,0],[1,1],[1,2],[2,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,1],[0,1],[1,2],[1,1],[0,1],[0,2],[0,2],[1,1],[0,2],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[-1,2],[0,1],[-1,2],[0,1],[0,1],[1,0],[1,1],[2,1],[2,1],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,1],[2,2],[1,1],[2,1],[1,1],[0,1],[0,1],[0,3],[0,1],[1,1],[1,1],[1,1],[1,2],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-2,0],[-2,1],[-1,1],[-1,1],[-1,1],[0,1],[0,2],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[1,1],[1,0],[3,2],[2,1],[2,1],[1,0],[2,1],[1,1],[0,1],[0,2],[0,2],[0,1],[0,1],[2,0],[2,1],[2,1],[2,1],[3,1],[2,1],[1,0],[1,0],[3,0],[1,1],[3,0],[1,1],[3,1],[2,0],[1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[1,1],[-1,2],[0,3],[0,2],[0,2],[0,1],[1,2],[2,2],[0,1],[1,0],[1,1],[0,1],[0,2],[-1,1],[-1,2],[0,2],[-1,0],[-1,1],[-1,1],[-1,1],[-1,2],[0,2],[1,1],[0,1],[2,2],[1,1],[1,1],[1,1],[1,2],[2,3],[1,1],[1,2],[0,1],[0,2],[0,3],[0,3],[0,3],[0,1],[1,2],[0,1],[2,3],[1,3],[2,2],[2,3],[1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[2,1],[2,1],[1,1],[1,1],[2,2],[2,1],[2,1],[1,1],[2,1],[2,2],[1,0],[1,2],[2,0],[1,1],[1,1],[0,1],[2,0],[2,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[-1,2],[0,1],[1,0],[1,1],[1,0],[1,1],[0,1],[0,2],[0,1],[1,2],[1,2],[1,2],[1,1],[2,1],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,2],[-1,3],[-1,2],[0,1],[1,2],[0,2],[1,1],[1,2],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,3],[1,1],[0,1],[1,1],[1,2],[0,1],[1,2],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[-1,2],[-1,1],[0,3],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,2],[-1,1],[0,1],[0,2],[0,1],[1,1],[2,1],[1,1],[1,2],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,2],[-5,2],[-1,1],[-2,2],[-2,1],[-2,1],[-1,1],[-2,1],[-1,2],[-1,1],[-4,3],[-1,1],[-2,2],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-3,-2],[-3,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-2,0],[-2,-1],[-3,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-2,-2],[-3,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-2,0],[-1,-1],[-3,-2],[-2,-1],[-1,-1],[-4,-2],[-2,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-3,-1],[-3,-2],[-3,-1],[-3,-2],[-4,-1],[-2,-2],[-4,-1],[-4,-1],[-4,-1],[-7,-1],[-3,-1],[-4,-1],[-5,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,-1],[-3,-1],[-2,0],[-1,0],[-2,0],[-2,1],[-4,1],[-2,0],[-2,1],[-2,1],[-3,0],[-3,-1],[-4,0],[-3,0],[-4,0],[-2,0],[-4,0],[-4,1],[-2,0],[-1,0],[-1,1],[-1,0],[-3,3],[-1,0],[-2,1],[-1,2],[-1,2],[-2,1],[-2,2],[-2,1],[-3,2],[-1,1],[-3,2],[-2,2],[-3,1],[-1,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-2,1],[-2,1],[-3,2],[-1,1],[-3,0],[-3,2],[-2,1],[-2,1],[-1,1],[-1,1],[-2,1],[-1,0],[-1,2],[0,2],[0,2],[0,2],[-1,2],[-2,1],[-1,1],[-1,1],[-2,0],[-1,1],[-1,2],[-2,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,0],[-1,0],[-4,1],[-5,0],[-3,0],[-2,0],[-1,0],[-2,1],[-1,1],[-2,2],[-2,1],[-1,2],[-2,1],[0,1],[-2,1],[-1,0],[-2,1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-1,2],[-2,4],[-3,4],[0,1],[-3,2],[-3,1],[-3,2]],[[5673,5125],[10,-1],[5,-1],[7,-2],[11,-6],[13,-7],[7,-3],[6,-1],[15,-4],[3,-1],[9,-4],[7,-2],[20,-6],[10,-4],[11,-3],[13,-2],[9,0],[12,0],[7,1],[8,1],[4,3],[3,2],[7,13],[4,7],[3,3],[4,2],[5,1],[10,3],[8,2],[5,1],[5,-1],[6,-1],[5,0],[5,0],[5,1],[8,4],[12,9],[6,3],[9,6],[10,10],[4,3],[8,4],[9,4],[9,6],[10,10],[11,8],[3,1],[7,2],[5,2],[4,4],[7,4],[7,2],[9,2],[10,1],[6,0],[4,0],[3,0],[4,1],[0,1],[3,1],[8,4],[9,5],[3,2],[7,2],[6,3],[4,1],[2,2],[2,1],[1,3],[2,6],[2,5],[2,3],[3,3],[3,2],[4,2],[4,1],[1,1],[3,3],[2,4],[1,2],[4,2],[2,2],[4,2],[6,2],[9,3],[7,2],[6,1],[4,1],[4,1],[4,3],[3,2],[1,2],[2,4],[1,3],[0,3],[1,3],[2,2],[2,2],[3,2],[3,1],[10,3],[3,2],[4,2],[4,4],[2,1],[2,2],[4,1],[5,1],[5,1],[4,2],[2,0],[1,0],[1,-1],[1,-1],[3,-3],[3,-3],[2,-4],[1,-5],[0,-1],[1,-1],[1,-2],[3,-3],[1,-2],[0,-1],[2,-4],[2,-2],[3,-4],[2,-3],[0,-2],[1,-1],[5,-5],[4,-4],[2,-2],[2,-3],[2,-2],[1,-2],[2,-2],[5,-2],[6,-2],[8,-1],[5,-1],[7,-2],[3,-1],[3,-2],[4,-3],[3,-3],[3,-3],[4,-2],[4,-2],[6,-1],[6,-1],[3,0],[5,-3],[4,-2],[6,-3],[5,-3],[3,-4],[3,-4],[4,-3],[4,-4],[5,-3],[3,-3],[2,-5],[2,-2],[3,-9],[2,-7],[3,-8],[2,-6],[2,-5],[2,-2],[5,-6],[3,-1],[5,-2],[7,-1],[6,-1],[6,-1],[5,-1],[4,-1],[1,-2],[4,-3],[4,-4],[1,-4],[3,-3],[2,-2],[10,-2],[11,-3],[4,-1],[4,-1],[3,1],[4,2],[8,5],[5,2],[5,5],[5,6],[3,2],[2,0],[5,0],[11,1],[7,0],[11,-1],[14,-3],[9,-1],[7,-2],[11,-1],[7,0],[6,0],[2,0],[2,0],[5,1],[7,0],[3,0],[2,-1],[5,-3],[2,0],[2,-1],[3,0],[4,1],[7,2],[4,1],[7,0],[3,0],[8,0],[2,0],[6,-1],[6,-1],[4,-2],[8,-2],[3,0],[4,0],[3,-1],[5,0],[2,0],[6,1],[8,1],[3,0],[8,1],[6,0],[5,1],[6,2],[5,2],[6,5],[4,3],[1,2],[1,3],[1,3],[1,4],[3,3],[5,6],[4,3],[4,2],[5,3],[3,1],[3,3],[3,2],[3,3],[1,4],[4,6],[2,6],[2,6],[1,3],[2,3],[4,2],[4,1],[7,3],[6,2],[4,1],[6,2],[5,2],[2,2],[4,2],[7,2],[4,1],[3,2],[4,2],[2,1],[1,0],[2,-2],[4,-5],[2,-2],[2,-1],[3,-1],[1,0],[4,-1],[4,-1],[4,-1],[6,-1],[4,-2],[4,-2],[2,-2],[5,-3],[4,-1],[6,-5],[3,-2],[5,-3],[5,-3],[3,-2],[4,-1],[3,-1],[7,1],[4,0],[2,0],[4,-1],[6,-1],[3,-1],[3,-2],[3,-2],[4,-4],[3,-3],[1,-2],[4,-2],[3,-2],[3,-1],[2,0],[6,0],[9,0],[6,-1],[9,-1],[5,-1],[5,-2],[3,-2],[5,-3],[3,-2],[7,-4],[4,-1],[4,0],[11,-1],[4,0],[5,1],[5,1],[4,1],[3,2],[4,4],[3,2],[4,2],[4,2],[5,0],[6,0],[4,0],[5,0],[5,0],[4,1],[4,1],[3,2],[4,4],[5,5],[4,2],[2,9],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,-2],[1,-2],[1,-4],[0,-2],[1,-1],[2,-3],[4,-7],[2,-4],[3,-5],[1,-2],[1,-3],[2,-2],[1,-2],[2,-2],[4,-5],[2,-2],[2,-1],[1,-1],[1,-1],[1,0],[2,-1],[2,-1],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[6,-4],[2,-1],[3,-2],[3,-2],[5,-4],[3,-2],[2,-2],[5,-5],[3,-3],[3,-3],[3,-4],[1,-2],[2,0],[0,-1],[2,0],[1,-1],[2,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[2,-1],[1,0],[2,0],[3,-1],[8,0],[3,-1],[1,0],[1,0],[4,-1],[4,-1],[2,0],[2,0],[2,0],[3,-1],[3,0],[4,0],[2,0],[2,-1],[1,0],[1,-1],[5,-2],[3,-2],[5,-1],[3,-2],[3,0],[1,0],[1,-1],[3,0],[1,0],[1,0],[5,-1],[3,-2],[2,0],[3,-1],[4,0],[2,-1],[3,0],[2,-1],[4,-1],[3,-1],[2,-1],[3,-1],[9,-6],[8,-4],[2,-1],[4,-3],[2,-2]],[[5908,7011],[1,-1],[1,-2],[3,-3],[3,-2],[5,-1],[4,-1],[3,-1],[4,1],[4,2],[3,0],[5,0],[8,0],[2,0],[3,0],[2,0],[3,-1],[4,-2],[3,-2],[4,-3],[5,-2],[2,-2],[4,-2],[2,-1],[3,-2],[3,-1],[2,0],[1,0],[1,1],[3,2],[2,4],[1,3],[1,3],[0,1],[3,4],[3,4],[2,3],[4,4],[1,2],[3,3],[3,3],[3,4],[3,2],[2,1],[4,2],[3,1],[6,3],[3,2],[6,2],[6,1],[2,1],[5,4],[2,1],[5,3],[3,3],[4,3],[2,2],[4,1],[3,2],[2,1],[3,1],[5,0],[2,0],[1,0],[3,2],[3,3],[2,2],[3,1],[1,1],[4,1],[2,1],[2,2],[1,2],[2,2],[4,3],[3,3],[1,3],[0,2],[1,2],[2,1],[2,2],[5,4],[4,3],[3,1],[2,1],[3,1],[3,1],[5,3],[4,2],[2,1],[1,2],[2,2],[2,2],[2,1],[3,3],[3,2],[2,2],[3,2],[2,0],[2,-1],[4,-1],[3,-3],[3,-4],[1,-2],[3,-6],[2,-2],[1,-1],[2,-1],[4,-1],[4,1],[4,0],[3,1],[1,2],[3,2],[2,3],[2,3],[2,1],[2,1],[1,0],[3,1],[7,1],[7,3],[7,2],[3,1],[3,1],[3,2],[3,1],[4,2],[3,2],[2,1],[2,1],[0,1],[2,2],[0,2],[0,2],[2,3],[2,2],[2,1],[2,2],[1,1],[1,2],[1,3],[2,5],[2,6],[1,4],[1,1],[1,2],[3,2],[3,1],[2,2],[2,2],[2,2],[0,3],[2,1],[0,2],[2,1],[2,0],[4,0],[6,1],[6,1],[5,2],[7,3],[5,2],[2,2],[2,2],[2,2],[2,2],[2,1],[3,1],[4,1],[2,0],[2,2],[2,2],[2,2],[2,2],[2,2],[3,2],[5,2],[4,2],[3,2],[3,2],[2,1],[3,3],[2,1],[2,4],[2,3],[2,4],[1,4],[3,6],[1,4],[1,4],[0,1],[1,2],[1,2],[0,1],[3,3],[5,4],[3,4],[3,4],[2,3],[2,1],[4,3],[5,2],[4,2],[4,2],[3,2],[4,2],[2,2],[4,4],[3,3],[2,2],[3,4],[3,4],[2,5],[1,3],[1,5],[1,2],[2,3],[2,3],[4,3],[2,1],[3,3],[2,2],[1,3],[1,2],[0,5],[1,4],[1,3],[2,3],[3,5],[1,2],[1,3],[0,4],[-1,3],[0,4],[0,3],[1,2],[1,3],[1,4],[1,4],[1,3],[0,5],[1,3],[1,3],[2,4],[2,5],[2,2],[0,2],[0,1],[0,7],[0,4],[1,5],[1,4],[1,3],[0,4],[1,3],[-1,5],[0,3],[-1,3],[0,2],[0,1],[2,1],[6,1],[6,2],[3,1],[2,1],[3,3],[2,3],[3,3],[3,3],[3,5],[2,1],[2,1],[2,2],[6,2],[2,3],[2,1],[1,1],[1,2],[0,1],[1,2],[0,3],[1,4],[1,4],[2,6],[2,4],[2,3],[2,4],[2,2],[2,1],[5,3],[2,2],[3,4],[4,4],[2,3],[3,2],[2,3],[2,2],[2,0],[2,1],[4,1],[4,1],[5,2],[3,1],[4,3],[1,2],[2,2],[0,1],[1,2],[1,4],[1,3],[2,3],[1,3],[1,3],[0,2],[0,3],[-1,3],[-2,4],[-2,3],[-3,3],[-3,3],[-2,2],[-1,1],[-1,1],[-2,4],[-1,3],[0,2],[-1,2],[-2,2],[-1,0],[0,2],[0,1],[3,1],[3,2],[5,2],[1,2],[2,1],[1,2],[2,3],[1,0],[3,2],[5,2],[7,3],[5,2],[6,2],[2,2],[1,2],[1,3],[0,4],[1,6],[0,4],[2,2],[1,3],[4,5],[2,5],[2,6],[1,1],[2,5],[3,6],[2,3],[1,3],[1,3],[0,6],[1,4],[0,6],[-1,5],[0,4],[0,2],[-1,1],[-4,5],[-1,2],[0,4],[2,6],[3,4],[3,3],[3,3],[2,3],[2,4],[4,5],[1,5],[2,6],[1,3],[1,2],[2,2],[3,2],[3,1],[3,3],[2,3],[4,4],[3,2],[3,3],[3,3],[4,3],[2,2],[0,2],[1,3],[0,7],[1,2],[2,4],[1,4],[1,4],[1,4],[-1,3],[-1,3],[0,4],[-1,4],[-1,3],[-1,4],[0,3],[-1,3],[0,2],[1,1],[0,1],[3,1],[7,2],[2,1],[2,2],[2,2],[2,4],[4,6],[3,6],[2,4],[6,10],[3,4],[5,9],[2,3],[0,4],[-1,3],[-1,3],[0,2],[-2,2],[-1,1],[-1,3],[0,2],[0,2],[1,2],[4,3],[3,3],[2,3],[1,1],[2,1],[2,0],[5,0],[3,1],[2,0],[1,1],[3,4],[2,2],[1,3],[1,3],[0,4],[1,2],[2,1],[2,2],[6,4],[4,2],[1,2],[2,3],[2,2],[2,4],[0,2],[2,6],[1,3],[3,6],[1,4],[1,3],[1,2],[1,4],[0,4],[2,7],[1,3],[2,4],[2,2],[2,3],[3,4],[4,5],[3,2],[4,3],[2,1],[0,2],[0,2],[-2,3],[-2,3],[-1,2],[-3,7],[-3,7],[-3,7],[-3,5],[-3,4],[-2,2],[1,3],[2,2],[2,2],[2,4],[2,3],[2,1],[1,1],[3,0],[2,0],[5,0],[2,1],[2,0],[1,1],[0,2],[-1,8],[0,3],[0,3],[-2,6],[-1,4],[0,1],[1,3],[2,4],[2,5],[2,4],[3,3],[3,7],[5,5],[2,3],[2,2],[3,4],[4,4],[2,1],[0,1],[7,0],[5,0],[4,0],[4,-1],[6,-1],[3,-1],[5,-1],[4,0],[2,0],[2,0],[2,1],[1,2],[0,3],[1,4],[2,4],[5,4],[4,3],[5,3],[4,2],[4,4],[3,4],[1,1],[1,6],[0,4],[0,6],[0,3],[0,3],[2,4],[2,3],[4,3],[4,3],[4,2],[2,2],[2,2],[5,2],[2,0],[6,1],[6,-1],[6,1],[3,1],[3,2],[5,3],[6,4],[5,2],[3,3],[2,1],[1,2],[2,2],[2,3],[2,3],[2,3],[2,3],[3,5],[0,3],[2,3],[1,3],[1,2],[3,5],[2,2],[3,4],[3,3],[3,4],[3,4],[5,6],[4,5],[2,2],[4,3],[3,2],[3,4],[2,3],[4,3],[2,3],[2,1],[1,2],[1,3],[1,3],[0,3],[0,3],[0,3],[0,1],[-1,3],[0,4],[0,6],[0,5],[0,2],[2,4],[1,5],[3,3],[2,4],[3,4],[3,2],[2,2],[5,4],[4,3],[2,0],[4,0],[7,-1],[5,1],[3,0],[5,2],[5,1],[4,2],[4,1],[2,0],[4,2],[6,2],[1,1],[3,1],[3,1],[5,1],[3,0],[5,0],[2,1],[2,1],[2,1],[1,2],[1,3],[0,4],[1,3],[1,2],[1,3],[1,3],[1,1],[0,3],[0,1],[-1,3],[0,4],[1,1],[0,2],[1,2],[2,2],[3,3],[2,1],[0,1],[0,1],[2,1],[1,1],[4,3],[2,2],[1,3],[1,2],[0,5],[0,4],[-1,4],[0,5],[0,4],[1,2],[2,3],[2,3],[6,4],[5,4],[6,3],[8,5],[3,3],[4,2],[1,1],[1,2],[0,1],[-1,2],[-1,3],[-1,3],[-1,1],[0,2],[1,1],[3,2],[10,5],[9,5],[6,3],[5,2],[7,5],[4,2],[5,5],[5,3],[5,4],[5,2],[6,2],[2,2],[3,4],[1,2],[4,3],[2,1],[7,3],[6,4],[7,3],[5,2],[4,2],[4,1],[7,0],[4,1],[3,0],[2,1],[1,0],[1,2],[0,3],[-1,4],[0,4],[-1,5],[-1,6],[-1,3],[-1,6],[0,3],[0,4],[1,4],[1,2],[0,3],[-1,1],[-2,1],[-8,4],[-2,1],[-4,3],[-4,4],[-4,5],[-3,4],[-3,5],[-9,12],[-5,5],[-4,3],[-4,3],[-8,4],[-7,4],[-7,3],[-4,3],[-3,3],[-6,3],[-3,3],[-4,1],[-4,2],[-4,2],[-3,2],[-3,2],[-2,1],[-2,2],[-2,2],[-1,2],[-2,3],[-1,1],[0,2],[-1,3],[0,2],[1,3],[1,3],[1,5],[2,3],[1,2],[2,3],[2,4],[0,3],[1,6],[2,4],[0,3],[-2,3],[-3,4],[-2,2],[-4,3],[-5,3],[-4,2],[-5,2],[-3,1],[-4,2],[-2,1],[-3,2],[-2,2],[-3,3],[-3,3],[-2,3],[-2,2],[-3,4],[-4,5],[-3,4],[-5,4],[-2,3],[-1,1],[-3,3],[-2,3],[-2,3],[-3,4],[-2,2],[-3,5],[-2,2],[-2,5],[-2,3],[-3,4],[-3,3],[-3,3],[-3,3],[-4,4],[-2,2]],[[443,3814],[-1,0],[-5,3],[-7,4],[-6,3],[-6,3],[-9,4],[-6,4],[-4,2],[-6,3],[-6,3],[-5,3],[-2,1],[-4,2],[-1,1],[-2,0],[-1,1],[-1,0],[-3,0],[-3,0],[-4,0],[-4,0],[-4,0],[-2,0],[-2,0],[-2,0],[-5,-1],[-4,0],[-3,0],[-4,0],[-2,0],[-1,0],[-3,0],[-3,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-2,0],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-2],[-3,-3],[-1,-1],[-3,-2],[-1,-1],[-3,-3],[-3,-2],[-1,-1],[-1,-1],[-6,-3],[-2,-2],[-2,-2],[-1,0],[-8,-2],[-5,-1],[-4,-1]],[[936,3259],[-4,-1],[-3,0],[-2,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-2,0],[-3,1],[-1,0],[-2,0],[-1,1],[-2,1],[-3,1],[-1,1],[-3,2],[-3,2],[-2,1],[-2,1],[-3,1],[-4,2],[-4,1],[-3,1],[-3,2],[-5,1],[-4,1],[-2,0],[-2,1],[-4,1],[-3,0],[-4,1],[-3,0],[-3,1],[-4,0],[-4,1],[-4,0],[-4,0],[-5,0],[-3,0],[-3,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,-1],[2,-1],[2,0],[3,-1],[2,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,-1],[-1,-1],[-2,-2],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,1],[-1,0],[-3,0],[-2,0],[-2,1],[-4,0],[-4,1],[-4,0],[-3,1],[-4,1],[-2,0],[-3,1],[-3,0],[-5,1],[-3,1],[-5,1],[-5,2],[-3,2],[-2,1],[-3,1],[-3,2],[-1,0],[-1,1],[-2,2],[-2,3],[-2,2],[-1,3],[-1,1],[-1,0],[-1,1],[-1,1],[-3,1],[-2,1],[-3,2],[-2,1],[-1,0],[-3,2],[-1,1],[-3,1],[-3,1],[-1,1],[0,1],[-4,2],[-3,2],[-4,3],[-1,1],[-3,2],[-3,2],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,1],[-3,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-2,0],[-2,0],[-2,-1],[-6,0],[-7,-2],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-3,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-2,1],[-2,0],[-4,1],[-4,0],[-3,1],[-3,0],[-5,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-4,2],[-1,1],[-2,1],[-4,2],[-2,1],[-2,1],[-2,1],[-2,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-2,1],[-1,0],[-4,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,-1],[0,-1],[-1,-2],[0,-2],[-1,0],[-1,0],[-1,0]],[[962,3007],[-4,-2],[-1,-1],[-2,-1],[-1,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-4,-1],[-1,0],[-3,-1],[-1,2],[-2,2],[-4,0],[-3,-1],[-2,-1],[-4,-2],[-3,-1],[1,-1],[2,-4],[2,-4],[0,-1],[-1,-1],[-2,-1],[-3,-1],[-3,-1],[-4,-1],[-1,-1],[-1,0],[0,-2],[-1,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-3],[-2,-3],[-2,-2],[-1,-1],[-3,-2],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-4,-2],[-3,-1],[-4,-2],[-1,0],[0,-2],[0,-2],[0,-2],[0,-3],[2,-4],[2,-6],[0,-2],[1,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-3,-1],[-3,-1],[2,-2],[0,-1],[2,-3],[2,-3],[1,-3],[2,-3],[1,-3],[0,-1],[0,-1],[1,-2],[2,-3],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,-3],[-1,-3],[-2,-2],[-1,-2],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,1],[-1,0],[-1,1],[-1,0],[-2,-1],[-2,0],[-3,-1],[-3,0],[-1,0],[-2,0],[-3,0],[0,-3],[0,-2],[-1,-3],[-1,-4],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[1,-6],[0,-4],[0,-2],[-1,0],[-2,1],[-2,0],[-1,0],[-1,1],[-1,0],[-2,1],[-3,1],[-1,1],[-2,0],[0,1],[0,1],[0,3],[0,3],[0,2],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[-3,0],[-5,0],[-6,0],[-2,1],[0,-1],[0,-2],[-1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[3,0],[4,-1],[3,-1],[2,0],[0,-2],[-1,-3],[-1,-2],[0,-3],[-2,-4],[0,-2],[-1,-1],[0,-1],[3,-2],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,-3],[-3,-3],[-3,-3],[-1,-1],[-1,-1],[1,-1],[5,-2],[3,-2],[2,-2],[1,0],[3,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-2],[1,-2],[1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,-2],[-1,0],[0,-1]]],"transform":{"scale":[0.00008744525102510314,0.00010033371337133393],"translate":[120.1746653780001,22.46847671900008]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment