Skip to content

Instantly share code, notes, and snippets.

@HarryStevens
Last active February 7, 2018 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save HarryStevens/1c07d73efaf074de05e63a33431eb80a to your computer and use it in GitHub Desktop.
Save HarryStevens/1c07d73efaf074de05e63a33431eb80a to your computer and use it in GitHub Desktop.
Basic Map Functions
license: gpl-3.0
node_modules

Some simple, frequently used functions for creating a map with D3.js and Topojson.

This block also uses the libraries chroma and jeezy.

  • centerZoom - Automatically centers and scales your map to its container, and returns your map's outer boundaries in case you want to draw them.
  • drawOuterBoundary - Uses the boundary returned from centerZoom to draw a boundary around your whole map.
  • drawPlaces - Draws place names, if your topojson has places.
  • drawSubunits - Draws subunits.
  • fillSubUnits - Fills subunits according to specified limits and color scale.
  • drawTip - Draws and positions and tooltip based on the data of the selected subunit.
  • drawLegend - Draws a legend according to specified limits and color scale.

See this tutorial for more on making maps with D3. I got most of the centerZoom function from this block.

dist no value
Rae Bareli 58 76
Saharanpur 60 21
Sant Ravi Das Nagar 62 26
Shahjahanpur 63 22
Shravasti 64 15
Siddharth Nagar 65 92
Sitapur 66 20
Sonbhadra 67 63
Sultanpur 68 11
Unnao 69 51
Varanasi 70 12
Agra 1 48
Aligarh 2 16
Allahabad 3 56
Amethi 75 30
Azamgarh 6 46
Baghpat 7 96
Bahraich 8 39
Barabanki 12 83
Bareilly 13 93
Chitrakoot 19 81
Firozabad 26 28
Ghazipur 29 76
Gonda 30 26
Gorakhpur 31 51
Hamirpur 32 98
Hardoi 33 38
Jalaun 35 66
Jaunpur 36 96
Jhansi 37 64
Kushinagar 44 72
Lakhimpur Kheri 43 68
Maharajganj 48 35
Mahoba 47 89
Mirzapur 53 48
Ambedkar Nagar 4 31
Amroha 38 97
Auraiya 5 40
Ballia 9 39
Balrampur 10 67
Banda 11 56
Basti 14 10
Bijnor 15 12
Budaun 16 30
Bulandshahr 17 75
Chandauli 18 37
Deoria 20 76
Etah 21 59
Etawah 22 57
Faizabad 23 15
Farrukhabad 24 21
Fatehpur 25 90
Gautam Buddha Nagar 27 97
Ghaziabad 28 32
Shamli 72 73
Hapur 73 93
Hathras 34 16
Kannauj 39 52
Kanpur Dehat 40 88
Kanpur Nagar 41 51
Kasganj 71 32
Kaushambi 42 70
Lalitpur 45 80
Lucknow 46 31
Mainpuri 49 55
Mathura 50 74
Mau 51 64
Meerut 52 58
Moradabad 54 83
Muzaffarnagar 55 24
Pilibhit 56 46
Pratapgarh 57 24
Rampur 59 80
Sambhal 74 34
Sant Kabir Nagar 61 96
<html>
<head>
<style>
body {
margin: 0;
font-family: "Helvetica Neue", sans-serif;
}
#map .subunit {
fill: #ddd;
stroke: #fff;
stroke-width: 1px;
}
#map .subunit.selected {
stroke: #000;
stroke-width: 2px;
}
#map .subunit-boundary {
fill: none;
stroke: #3a403d;
}
#map .place,
.place-label {
pointer-events: none;
}
#map .place-label {
font-size: .7em;
text-shadow: 0px 0px 2px #fff;
}
#tip {
position: absolute;
background: #fff;
opacity: .9;
padding: 10px;
}
#legend {
position: absolute;
left: 10px;
top: 10px;
}
#legend .legend-title {
margin-bottom: 4px;
font-weight: bold;
}
#legend .legend-item {
margin-bottom: 4px;
font-size: .8em;
}
#legend .legend-swatch,
#legend .legend-value {
display: inline-block;
vertical-align: bottom;
}
#legend .legend-swatch {
width: 16px;
height: 16px;
margin-right: 4px;
}
</style>
</head>
<body>
<div id="tip"></div>
<div id="legend">
<div class="legend-title">Legend</div>
</div>
<div id="map"></div>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://unpkg.com/d3-moveto@0.0.3/build/d3-moveto.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.20/topojson.min.js"></script>
<script src="https://unpkg.com/jeezy@1.12.0/lib/jeezy.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chroma-js/1.3.4/chroma.min.js"></script>
<script>
var match_property = "dist",
value_property = "value",
colors = ["#edf8fb", "#b2e2e2", "#66c2a4", "#2ca25f", "#006d2c"],
breakType = "e";
var width = window.innerWidth,
height = window.innerHeight;
var projection = d3.geoMercator();
var path = d3.geoPath()
.projection(projection)
.pointRadius(2);
var svg = d3.select("#map").append("svg")
.attr("width", width)
.attr("height", height);
d3.queue()
.defer(d3.json, "map.json")
.defer(d3.csv, "data.csv")
.await(ready);
function ready(error, geo, data) {
if (error) throw error;
centerZoom(geo, width, height);
drawSubUnits(geo);
drawPlaces(geo);
drawOuterBoundary(geo);
fillSubUnits(data);
drawTip(data);
drawLegend(data);
window.addEventListener("resize", resize);
function resize(){
var width = window.innerWidth,
height = window.innerHeight;
svg.attr("width", width).attr("height", height);
centerZoom(geo, width, height);
d3.selectAll("path").attr("d", path);
d3.selectAll("text").attr("transform", function(d) { return "translate(" + projection(d.geometry.coordinates) + ")"; });
}
}
function drawLegend(data, breakType, breakCount) {
var breakCount = colors.length;
var limits = chroma.limits(data.map(function(d) {
return +d[value_property];
}), breakType, breakCount);
colors.forEach(function(color, color_index) {
d3.select("#legend").append("div")
.attr("class", "legend-item")
.html("<div class='legend-swatch' style='background: " + color + "'></div><div class='legend-value'>" + jz.str.numberLakhs(limits[color_index].toFixed(1)) + " - " + jz.str.numberLakhs(limits[color_index + 1].toFixed(1)) + "</div>");
});
}
function fillSubUnits(data, breakType, breakCount) {
var breakCount = colors.length;
var limits = chroma.limits(data.map(function(d) {
return +d[value_property];
}), breakType, breakCount);
svg.selectAll(".subunit")
.style("fill", function(d, i) {
var match = matchData(d, data);
var return_color = [];
limits.forEach(function(limit, limit_index) {
if (+match[value_property] >= limit && +match[value_property] <= limits[limit_index + 1]) {
return_color.push(colors[limit_index]);
}
});
return return_color[0];
});
}
function drawTip(data) {
svg.selectAll(".subunit")
.on("mouseover", function(d) {
d3.select("#tip").style("display", "block");
var match = matchData(d, data);
// make the content
var keys = Object.keys(match);
var content = keys.map(function(key) {
return "<b>" + key + "</b>: " + match[key];
}).join("<br />");
d3.select("#tip").html(content);
d3.select(".subunit." + jz.str.toSlugCase(d.properties[match_property])).classed("selected", true).moveToFront();
d3.selectAll(".place").moveToFront();
d3.selectAll(".place-label").moveToFront();
})
.on("mousemove", function() {
// tip positioning
var coordinates = [0, 0];
coordinates = d3.mouse(this);
var x = coordinates[0];
var y = coordinates[1];
d3.select("#tip")
.style("left", x + 20)
.style("top", y - 20);
})
.on("mouseout", function() {
d3.select("#tip").style("display", "none");
d3.selectAll(".subunit").classed("selected", false);
d3.select(".subunit-boundary").moveToFront();
});
}
function matchData(d, data) {
return data.filter(function(e) {
return d.properties[match_property] == e[match_property];
})[0];
}
function centerZoom(data, width, height) {
projection.fitSize([width, height], topojson.feature(data, data.objects.polygons));
}
function drawOuterBoundary(data) {
var boundary = topojson.mesh(data, data.objects.polygons, function(a, b) { return a === b; });
svg.append("path")
.datum(boundary)
.attr("d", path)
.attr("class", "subunit-boundary");
}
function drawPlaces(data) {
svg.append("path")
.datum(topojson.feature(data, data.objects.places))
.attr("d", path)
.attr("class", "place");
svg.selectAll(".place-label")
.data(topojson.feature(data, data.objects.places).features)
.enter().append("text")
.attr("class", "place-label")
.attr("transform", function(d) {
return "translate(" + projection(d.geometry.coordinates) + ")";
})
.attr("dy", ".35em")
.attr("x", function(d) {
return projection(d.geometry.coordinates)[0] <= width / 2 ? -6 : 6;
})
.style("text-anchor", function(d) {
return projection(d.geometry.coordinates)[0] <= width / 2 ? "end" : "start";
})
.text(function(d) {
return d.properties.name;
});
}
function drawSubUnits(data) {
svg.selectAll(".subunit")
.data(topojson.feature(data, data.objects.polygons).features)
.enter().append("path")
.attr("class", function(d) {
return "subunit " + jz.str.toSlugCase(d.properties[match_property]);
})
.attr("d", path);
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"polygons":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"dist":"Rae Bareli","no":58},"arcs":[[0,1,2,3,4,5]]},{"type":"Polygon","properties":{"dist":"Saharanpur","no":60},"arcs":[[6,7,8]]},{"type":"Polygon","properties":{"dist":"Sant Ravi Das Nagar","no":62},"arcs":[[9,10,11,12]]},{"type":"Polygon","properties":{"dist":"Shahjahanpur","no":63},"arcs":[[13,14,15,16,17,18]]},{"type":"Polygon","properties":{"dist":"Shravasti","no":64},"arcs":[[19,20,21,22,23,24]]},{"type":"Polygon","properties":{"dist":"Siddharth Nagar","no":65},"arcs":[[25,26,27,28,29,30]]},{"type":"Polygon","properties":{"dist":"Sitapur","no":66},"arcs":[[31,32,33,34,35]]},{"type":"Polygon","properties":{"dist":"Sonbhadra","no":67},"arcs":[[36,37,38]]},{"type":"Polygon","properties":{"dist":"Sultanpur","no":68},"arcs":[[39,40,41,42,43,44]]},{"type":"Polygon","properties":{"dist":"Unnao","no":69},"arcs":[[45,-4,46,47,48]]},{"type":"Polygon","properties":{"dist":"Varanasi","no":70},"arcs":[[49,-10,50,51,52]]},{"type":"Polygon","properties":{"dist":"Agra","no":1},"arcs":[[53,54,55,56,57,58]]},{"type":"Polygon","properties":{"dist":"Aligarh","no":2},"arcs":[[59,60,61,62,63,64,65,66]]},{"type":"Polygon","properties":{"dist":"Allahabad","no":3},"arcs":[[67,-12,68,69,70,71,72]]},{"type":"Polygon","properties":{"dist":"Amethi","no":75},"arcs":[[73,-44,74,-1,75]]},{"type":"Polygon","properties":{"dist":"Azamgarh","no":6},"arcs":[[76,77,78,79,-41,80]]},{"type":"Polygon","properties":{"dist":"Baghpat","no":7},"arcs":[[81,82,83,84,85]]},{"type":"MultiPolygon","properties":{"dist":"Bahraich","no":8},"arcs":[[[-24,86]],[[-22,87,88,-32,89,90]]]},{"type":"Polygon","properties":{"dist":"Barabanki","no":12},"arcs":[[-89,91,92,-76,-6,93,-33]]},{"type":"Polygon","properties":{"dist":"Bareilly","no":13},"arcs":[[94,-17,95,96,97]]},{"type":"Polygon","properties":{"dist":"Chitrakoot","no":19},"arcs":[[98,-71,99,100,101]]},{"type":"Polygon","properties":{"dist":"Firozabad","no":26},"arcs":[[102,103,-56,104,105,106]]},{"type":"Polygon","properties":{"dist":"Ghazipur","no":29},"arcs":[[107,108,109,-52,110,-79,111]]},{"type":"Polygon","properties":{"dist":"Gonda","no":30},"arcs":[[112,-30,113,114,-92,-88,-21]]},{"type":"Polygon","properties":{"dist":"Gorakhpur","no":31},"arcs":[[115,116,117,-77,118,119,120]]},{"type":"Polygon","properties":{"dist":"Hamirpur","no":32},"arcs":[[121,122,123,124,125,126,127]]},{"type":"Polygon","properties":{"dist":"Hardoi","no":33},"arcs":[[-35,128,-49,129,130,131,-14,132]]},{"type":"Polygon","properties":{"dist":"Jalaun","no":35},"arcs":[[133,-126,134,135,136]]},{"type":"Polygon","properties":{"dist":"Jaunpur","no":36},"arcs":[[-80,-111,-51,-13,-68,137,-42]]},{"type":"Polygon","properties":{"dist":"Jhansi","no":37},"arcs":[[-125,138,139,140,141,-135]]},{"type":"Polygon","properties":{"dist":"Kushinagar","no":44},"arcs":[[142,143,-116,144]]},{"type":"Polygon","properties":{"dist":"Lakhimpur Kheri","no":43},"arcs":[[-90,-36,-133,-19,145,146]]},{"type":"Polygon","properties":{"dist":"Maharajganj","no":48},"arcs":[[-145,-121,147,-27,148]]},{"type":"Polygon","properties":{"dist":"Mahoba","no":47},"arcs":[[149,150,-139,-124]]},{"type":"Polygon","properties":{"dist":"Mirzapur","no":53},"arcs":[[-50,151,-39,152,-69,-11]]},{"type":"Polygon","properties":{"dist":"Ambedkar Nagar","no":4},"arcs":[[153,-119,-81,-40,154,155]]},{"type":"Polygon","properties":{"dist":"Amroha","no":38},"arcs":[[156,157,158,159,160,161]]},{"type":"Polygon","properties":{"dist":"Auraiya","no":5},"arcs":[[162,-137,163,164,165]]},{"type":"Polygon","properties":{"dist":"Ballia","no":9},"arcs":[[166,-108,167,168]]},{"type":"Polygon","properties":{"dist":"Balrampur","no":10},"arcs":[[-20,169,-31,-113]]},{"type":"Polygon","properties":{"dist":"Banda","no":11},"arcs":[[-101,170,-150,-123,171]]},{"type":"Polygon","properties":{"dist":"Basti","no":14},"arcs":[[172,-156,173,-114,-29]]},{"type":"Polygon","properties":{"dist":"Bijnor","no":15},"arcs":[[174,-162,175,176,177]]},{"type":"Polygon","properties":{"dist":"Budaun","no":16},"arcs":[[178,-96,-16,179,180,-61,181]]},{"type":"Polygon","properties":{"dist":"Bulandshahr","no":17},"arcs":[[-159,182,-67,183,184]]},{"type":"Polygon","properties":{"dist":"Chandauli","no":18},"arcs":[[185,-37,-152,-53,-110]]},{"type":"Polygon","properties":{"dist":"Deoria","no":20},"arcs":[[186,-169,187,-117,-144]]},{"type":"Polygon","properties":{"dist":"Etah","no":21},"arcs":[[188,189,-107,190,191]]},{"type":"Polygon","properties":{"dist":"Etawah","no":22},"arcs":[[192,-165,193,-57,-104,194]]},{"type":"Polygon","properties":{"dist":"Faizabad","no":23},"arcs":[[-174,-155,-45,-74,-93,-115]]},{"type":"Polygon","properties":{"dist":"Farrukhabad","no":24},"arcs":[[-15,-132,195,196,-189,197,-180]]},{"type":"Polygon","properties":{"dist":"Fatehpur","no":25},"arcs":[[-3,198,-102,-172,-122,199,-47]]},{"type":"Polygon","properties":{"dist":"Gautam Buddha Nagar","no":27},"arcs":[[200,-184,-66,201,202]]},{"type":"Polygon","properties":{"dist":"Ghaziabad","no":28},"arcs":[[203,-203,204,-85,205]]},{"type":"Polygon","properties":{"dist":"Shamli","no":72},"arcs":[[206,-82,207,-8]]},{"type":"Polygon","properties":{"dist":"Hapur","no":73},"arcs":[[-160,-185,-201,-204,208]]},{"type":"Polygon","properties":{"dist":"Hathras","no":34},"arcs":[[209,-63,210,-191,-106,211,-54]]},{"type":"Polygon","properties":{"dist":"Kannauj","no":39},"arcs":[[-131,212,213,-166,-193,214,-196]]},{"type":"Polygon","properties":{"dist":"Kanpur Dehat","no":40},"arcs":[[215,-127,-134,-163,-214]]},{"type":"Polygon","properties":{"dist":"Kanpur Nagar","no":41},"arcs":[[-130,-48,-200,-128,-216,-213]]},{"type":"Polygon","properties":{"dist":"Kasganj","no":71},"arcs":[[-198,-192,-211,-62,-181]]},{"type":"Polygon","properties":{"dist":"Kaushambi","no":42},"arcs":[[-72,-99,-199,216]]},{"type":"Polygon","properties":{"dist":"Lalitpur","no":45},"arcs":[[-141,217]]},{"type":"Polygon","properties":{"dist":"Lucknow","no":46},"arcs":[[-5,-46,-129,-34,-94]]},{"type":"Polygon","properties":{"dist":"Mainpuri","no":49},"arcs":[[-197,-215,-195,-103,-190]]},{"type":"MultiPolygon","properties":{"dist":"Mathura","no":50},"arcs":[[[-55,-212,-105]],[[-210,-59,218,-64]]]},{"type":"Polygon","properties":{"dist":"Mau","no":51},"arcs":[[-188,-168,-112,-78,-118]]},{"type":"Polygon","properties":{"dist":"Meerut","no":52},"arcs":[[-176,-161,-209,-206,-84,219]]},{"type":"Polygon","properties":{"dist":"Moradabad","no":54},"arcs":[[220,221,222,-157,-175]]},{"type":"Polygon","properties":{"dist":"Muzaffarnagar","no":55},"arcs":[[-177,-220,-83,-207,-7,223]]},{"type":"Polygon","properties":{"dist":"Pilibhit","no":56},"arcs":[[-146,-18,-95,224]]},{"type":"Polygon","properties":{"dist":"Pratapgarh","no":57},"arcs":[[-43,-138,-73,-217,-2,-75]]},{"type":"Polygon","properties":{"dist":"Rampur","no":59},"arcs":[[-97,-179,225,-222,226]]},{"type":"Polygon","properties":{"dist":"Sambhal","no":74},"arcs":[[-223,-226,-182,-60,-183,-158]]},{"type":"Polygon","properties":{"dist":"Sant Kabir Nagar","no":61},"arcs":[[-28,-148,-120,-154,-173]]}]},"places":{"type":"GeometryCollection","geometries":[{"type":"Point","properties":{"name":"Chandigarh"},"coordinates":[2851,8679]},{"type":"Point","properties":{"name":"Jammu"},"coordinates":[1930,9457]},{"type":"Point","properties":{"name":"Sholapur"},"coordinates":[2432,3582]},{"type":"Point","properties":{"name":"Aurangabad"},"coordinates":[2155,4451]},{"type":"Point","properties":{"name":"Nasik"},"coordinates":[1421,4492]},{"type":"Point","properties":{"name":"Dispur"},"coordinates":[9998,6891]},{"type":"Point","properties":{"name":"Jullundur"},"coordinates":[2274,8919]},{"type":"Point","properties":{"name":"Allahabad"},"coordinates":[5264,6622]},{"type":"Point","properties":{"name":"Moradabad"},"coordinates":[3794,7945]},{"type":"Point","properties":{"name":"Agra"},"coordinates":[3440,7292]},{"type":"Point","properties":{"name":"Aligarh"},"coordinates":[3463,7574]},{"type":"Point","properties":{"name":"Meerut"},"coordinates":[3290,8007]},{"type":"Point","properties":{"name":"Gwalior"},"coordinates":[3519,6925]},{"type":"Point","properties":{"name":"Vadodara"},"coordinates":[1135,5394]},{"type":"Point","properties":{"name":"Rajkot"},"coordinates":[0,5394]},{"type":"Point","properties":{"name":"Srinagar"},"coordinates":[1914,9999]},{"type":"Point","properties":{"name":"Vijayawada"},"coordinates":[4687,3132]},{"type":"Point","properties":{"name":"Thiruvananthapuram"},"coordinates":[2932,0]},{"type":"Point","properties":{"name":"Kochi"},"coordinates":[2586,592]},{"type":"Point","properties":{"name":"Cuttack"},"coordinates":[7196,4675]},{"type":"Point","properties":{"name":"Hubli"},"coordinates":[2062,2679]},{"type":"Point","properties":{"name":"Mangalore"},"coordinates":[1932,1718]},{"type":"Point","properties":{"name":"Mysore"},"coordinates":[2794,1488]},{"type":"Point","properties":{"name":"Gulbarga"},"coordinates":[2871,3456]},{"type":"Point","properties":{"name":"Kolhapur"},"coordinates":[1632,3202]},{"type":"Point","properties":{"name":"Nanded"},"coordinates":[3100,4167]},{"type":"Point","properties":{"name":"Akola"},"coordinates":[2962,4768]},{"type":"Point","properties":{"name":"Guwahati"},"coordinates":[9999,6898]},{"type":"Point","properties":{"name":"Kota"},"coordinates":[2401,6515]},{"type":"Point","properties":{"name":"Lucknow"},"coordinates":[4823,7169]},{"type":"Point","properties":{"name":"Saharanpur"},"coordinates":[3220,8385]},{"type":"Point","properties":{"name":"Ranchi"},"coordinates":[6928,5808]},{"type":"Point","properties":{"name":"Bhagalpur"},"coordinates":[7716,6534]},{"type":"Point","properties":{"name":"Raipur"},"coordinates":[5166,4974]},{"type":"Point","properties":{"name":"Jabalpur"},"coordinates":[4365,5732]},{"type":"Point","properties":{"name":"Indore"},"coordinates":[2415,5552]},{"type":"Point","properties":{"name":"Pondicherry"},"coordinates":[4307,1341]},{"type":"Point","properties":{"name":"Salem"},"coordinates":[3519,1238]},{"type":"Point","properties":{"name":"Tiruchirappalli"},"coordinates":[3762,902]},{"type":"Point","properties":{"name":"Kozhikode"},"coordinates":[2370,1074]},{"type":"Point","properties":{"name":"Bhubaneshwar"},"coordinates":[7165,4597]},{"type":"Point","properties":{"name":"Jamshedpur"},"coordinates":[7342,5581]},{"type":"Point","properties":{"name":"Vishakhapatnam"},"coordinates":[5963,3605]},{"type":"Point","properties":{"name":"Amritsar"},"coordinates":[1941,9038]},{"type":"Point","properties":{"name":"Varanasi"},"coordinates":[5817,6574]},{"type":"Point","properties":{"name":"Asansol"},"coordinates":[7717,5930]},{"type":"Point","properties":{"name":"Bhilai"},"coordinates":[5070,4967]},{"type":"Point","properties":{"name":"Bhopal"},"coordinates":[3152,5761]},{"type":"Point","properties":{"name":"Madurai"},"coordinates":[3490,555]},{"type":"Point","properties":{"name":"Coimbatore"},"coordinates":[2932,976]},{"type":"Point","properties":{"name":"Hyderabad"},"coordinates":[3662,3476]},{"type":"Point","properties":{"name":"Pune"},"coordinates":[1454,3918]},{"type":"Point","properties":{"name":"Nagpur"},"coordinates":[3953,4949]},{"type":"Point","properties":{"name":"Jaipur"},"coordinates":[2389,7195]},{"type":"Point","properties":{"name":"Kanpur"},"coordinates":[4539,7015]},{"type":"Point","properties":{"name":"Patna"},"coordinates":[6833,6689]},{"type":"Point","properties":{"name":"Chennai"},"coordinates":[4520,1793]},{"type":"Point","properties":{"name":"Ahmedabad"},"coordinates":[849,5675]},{"type":"Point","properties":{"name":"Surat"},"coordinates":[973,4960]},{"type":"Point","properties":{"name":"New Delhi"},"coordinates":[3053,7850]},{"type":"Point","properties":{"name":"Bangalore"},"coordinates":[3223,1746]},{"type":"Point","properties":{"name":"Mumbai"},"coordinates":[981,4108]},{"type":"Point","properties":{"name":"Kolkata"},"coordinates":[8356,5466]}]}},"arcs":[[[5038,7061],[4,-3],[-8,-11],[-3,-1],[-2,0],[1,-1],[-4,0],[-2,-3],[4,-3],[1,-1],[3,-7],[3,-4],[3,-5],[0,-4],[-1,-2],[3,0],[1,-3],[0,-2],[-1,-1],[-4,-1],[0,-1],[1,-2],[3,0],[1,-1],[5,-2],[4,-2],[2,-3],[2,-4],[2,-4],[5,-2],[1,-2],[-1,-2],[-4,-3],[-3,-5],[0,-4],[0,-3],[-3,-1],[-8,2],[-5,0],[-1,-1],[-1,-2],[2,-2],[2,-1],[7,0],[1,0],[1,-2],[5,-1],[1,-1],[0,-3],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-3,-2],[-7,1],[-1,-4],[-3,0],[-1,1],[-1,0],[-1,-1],[-2,-2],[-1,-2],[0,-1],[3,-4],[0,-1],[-2,-2],[-3,-1],[-1,-1],[0,-5],[0,-1],[1,-1],[6,0],[2,-1],[1,-1],[1,-2],[-1,0],[-2,1],[-4,0],[0,-2],[3,-4],[1,-4],[2,-2],[1,-1],[-2,0],[-2,1],[-1,-4],[-2,-2],[0,-1],[1,-1],[-1,-1],[3,-2],[2,0],[2,-1],[0,-2],[0,-3],[0,-1],[-2,-5],[-4,-4],[-3,-3],[-2,0],[-2,0],[-1,-1],[1,-2],[4,-4],[-1,-2],[-5,-2],[2,-4],[-1,-1],[0,-2],[-1,0],[-1,-1],[-1,0],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[-5,1],[-4,0],[-2,0],[-2,-1],[-1,-2],[0,-1],[3,-2],[0,-1],[-1,-2],[0,-2],[2,-1],[0,-2],[0,-3],[4,-3],[4,-3],[7,-2],[2,-3],[4,-1],[1,-2],[3,-3],[4,-1],[3,-4],[7,-1],[6,-1],[5,0],[3,-2],[4,-6],[3,-1]],[[5071,6806],[1,-2],[-1,-1],[-4,2],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,0],[-2,-1],[-2,-3],[-3,-2],[-4,-2],[-7,-1],[-1,1],[-3,-1],[-1,-1],[1,-4],[0,-1],[-1,-1],[-2,0],[-1,0],[-3,0],[-4,1],[-1,-1],[-2,0],[-5,1],[-4,-5],[2,-2],[0,-2],[1,-1],[3,-1],[1,-1],[2,0],[1,0],[1,0],[2,-2],[0,-2],[0,-1],[-2,-1],[-4,-4],[-2,-1]],[[5021,6762],[-1,0],[-3,4],[-9,6],[-6,3],[-4,1],[-3,0],[-4,0],[-8,3],[-9,1],[-2,2],[-1,1],[-2,1],[-2,1],[-1,2],[-1,1],[0,3],[-1,5],[-1,6],[1,3],[0,2],[-3,1],[-4,0],[0,3],[-11,-1],[-3,1],[-3,0],[-1,1],[1,2],[-1,1],[-7,1],[-4,1],[-3,0],[-2,-1],[-7,3],[-1,1],[2,6],[-7,3],[-2,0],[-2,1],[-11,5],[-2,1],[-2,3],[0,2],[1,1],[-3,3],[-6,5],[-3,5],[-2,1],[-3,2],[-4,2],[-2,1],[-2,1],[-7,1],[-5,-1],[-5,-1],[-1,1],[-2,1],[-3,0],[-8,-1],[-4,0],[-11,-5],[-4,1],[-8,0],[-2,0],[-6,-4],[-5,0],[-2,-1],[-5,-2],[-4,-1],[-8,-2],[-7,1],[-4,3],[-6,5],[-4,2],[-7,4],[-3,2],[-6,1],[-6,2],[-13,2],[-7,3],[-4,2],[-4,2],[0,3],[0,4]],[[4706,6884],[5,-3],[3,0],[3,0],[0,1],[0,3],[-2,2],[0,3],[-3,2],[2,3],[2,4],[5,-1],[4,3],[4,2],[3,2],[3,-1],[1,0],[3,3],[2,1],[3,1],[4,-1],[3,0],[2,2],[2,2],[-4,2],[-2,2],[2,3],[5,-2],[4,0],[5,1],[1,1],[5,-1],[0,-3],[5,0],[1,4],[-3,0],[3,3],[0,3],[2,2],[3,1],[3,0],[2,1],[-1,3],[1,-1],[1,1],[1,0],[1,1],[2,4],[3,4],[4,2],[4,2],[3,4],[1,1],[-3,1],[1,2],[-3,0],[2,2],[-2,1],[-3,0],[0,4],[-2,2],[-5,2],[-1,0],[-4,1],[-2,2],[-2,2],[-3,1],[0,3],[2,3],[1,1],[4,4],[4,-1],[3,-1],[2,2],[2,-2],[-1,-1],[-1,-2],[1,-1],[9,2],[2,-1],[1,-2],[0,-2],[1,-2],[3,3],[4,1],[5,-1],[1,-2],[1,-2],[5,4],[2,3],[4,-4],[1,-1],[0,-3],[0,-1],[0,-2],[-3,-3],[1,-2],[2,-1],[1,-3],[4,0],[5,0],[2,1],[3,0],[2,1],[2,1],[5,0],[0,1],[1,2],[0,2],[0,2],[-1,1],[0,4],[4,4],[3,0],[2,1],[3,2],[1,0],[3,-1],[2,0],[1,2],[5,3],[0,1],[-3,0],[-2,0],[-1,0],[0,1],[-1,0],[-2,-1],[1,4],[0,2],[-1,2],[-2,1],[0,2],[0,1],[2,1],[0,1],[0,1],[-2,-1],[0,2],[-1,0],[-1,1],[-1,1],[-1,-2],[-1,1],[-1,0],[-2,1],[0,1],[1,2],[-2,3],[-4,2],[-1,1],[-1,2],[-1,2],[0,2],[-1,2],[-1,1],[-2,0],[0,1],[0,1],[1,1],[1,1],[-1,1],[2,1],[0,-1],[1,0],[0,-1],[0,-2],[1,1],[1,0],[1,1],[1,1],[1,1],[0,1],[0,2],[-1,1],[-1,0],[-1,1],[-2,1],[0,1],[1,1],[1,0],[1,0],[3,-1],[1,1],[-2,2],[-2,0],[-1,0],[-1,0],[0,1],[2,1],[3,0],[0,-1],[1,1],[-1,1],[-2,0],[0,1],[0,2],[0,2],[0,1],[-1,1]],[[4860,7045],[1,0],[3,-1],[2,-2],[2,0],[4,-1],[1,-1],[3,-1],[0,-2],[2,-1],[0,-2],[2,-1],[1,0],[2,-1],[1,0],[5,4],[2,2],[4,2],[1,0],[1,1],[0,1],[0,2],[3,2],[3,1],[2,1],[0,1],[0,3],[0,1],[3,2],[2,1],[1,0],[5,-2],[3,0],[2,1],[1,2],[2,2],[0,2],[1,1],[1,1],[2,2],[1,1],[7,0],[2,0],[1,2]],[[4939,7068],[4,1],[2,0],[2,1],[1,0],[-1,2],[1,1],[3,0],[6,-3],[1,-1],[3,-1],[1,0],[3,2],[3,-1],[3,-2],[5,-2],[3,-1],[2,-2],[8,-2],[6,-1],[3,-2],[3,-3],[2,-2],[1,-1],[0,-3],[7,-1],[3,2],[1,2],[1,1],[2,-1],[3,-1],[1,-1],[2,0],[4,0],[2,1],[6,5],[2,6]],[[3344,8269],[-4,-4],[-9,-8],[-2,-3],[-4,1],[-3,-1],[-2,-2],[-4,-1],[-3,-3],[-5,-2],[-2,-2],[-4,3],[-2,1],[-2,1],[-2,0],[0,-2],[-2,-1],[-10,2],[-6,-7],[-6,-7],[-3,-1],[-2,-5],[-2,0],[-2,2],[-1,2],[0,3],[0,3],[-8,5],[-2,1],[-1,1],[-1,3],[-5,1],[-7,2],[-4,0],[-11,2],[-7,0],[-4,2],[-4,1],[-3,-2],[1,-3],[-3,-1],[-3,2],[-2,1],[-2,-1],[-2,0],[-3,1],[-4,1],[-2,1]],[[3185,8255],[1,4],[-3,2],[0,1],[1,1],[-1,1],[-4,0],[-3,1],[-5,4],[-3,1],[-4,0],[-1,-1],[-1,-1],[0,-2],[-2,-2],[-2,-2],[-2,1],[-5,2],[-2,-1],[-2,-1],[-2,0],[-1,1],[-4,-2],[-2,-1],[-3,0],[-3,1],[-2,1],[-3,1],[-2,-2],[-2,1],[-1,-1],[-5,0],[-2,-2],[-2,0],[-2,1],[-2,2],[-2,1],[-7,2],[-3,2],[0,1],[-2,1],[-5,1],[-1,0],[-1,0],[-2,-1],[0,-2],[-1,0],[-3,1],[-2,1],[-2,1],[-3,1],[-1,-1],[-10,6],[-2,0],[-4,3],[-1,-1],[-2,-1],[-4,-2],[-1,0],[-2,-2],[-5,1],[-4,0],[-4,1],[-3,1],[-3,1],[-3,-2],[-4,2],[-2,1]],[[3020,8279],[4,1],[1,0],[1,2],[-2,4],[-8,8],[0,2],[-4,1],[-1,2],[1,2],[1,2],[1,2],[-1,2],[1,2],[2,1],[4,1],[3,1],[2,2],[5,2],[1,2],[-1,2],[0,2],[1,2],[0,1],[5,3],[2,2],[-1,6],[0,1],[5,6],[1,3],[1,1],[0,4],[1,3],[0,2],[-2,3],[0,1],[3,3],[0,2],[1,1],[3,2],[4,2],[4,4],[6,5],[0,2],[3,1],[1,2],[0,3],[2,2],[7,3],[2,2],[0,1],[4,3],[-1,1],[0,1],[1,2],[1,2],[1,1],[1,3],[1,2],[0,2],[-1,2],[0,2],[3,1],[2,0],[3,2],[2,1],[3,0],[3,1],[4,-1],[6,1],[3,1],[3,2],[5,3],[4,3],[6,3],[2,0],[4,0],[5,1],[2,0],[6,3],[3,2],[0,1],[-2,0],[-2,0],[-3,1],[-1,2],[3,1],[2,1],[2,2],[1,2],[1,3],[-1,1],[-2,1],[0,1],[2,3],[4,5],[4,-1],[2,1],[2,0],[3,0],[3,2],[2,3],[2,1],[6,2],[2,2],[1,3],[2,3],[2,3],[3,4],[1,2],[4,3],[7,7],[1,3],[1,4],[1,2],[3,2],[4,2],[2,1],[5,3],[4,1],[3,2],[2,3],[0,3],[-2,2],[0,3],[2,3],[4,5],[5,5],[-1,2],[-3,2],[-5,1],[1,2],[-2,1],[-2,3],[-2,2],[2,0],[0,1],[1,0],[1,0],[0,1],[1,1],[2,0],[1,0],[2,-1],[1,-1],[1,0],[1,1],[1,0],[2,0],[1,0],[2,-1],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,1],[2,1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-2],[2,-1],[2,0],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[2,-2],[1,-1],[2,-2],[2,-1],[1,-2],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[3,-1],[1,0],[3,-2],[1,0],[1,0],[1,-1],[1,0],[4,-2],[2,-1],[3,-1],[0,-1],[2,-1],[5,-2],[2,-1],[2,0],[1,-1],[2,-1],[3,0],[2,-1],[2,-1],[2,0],[2,-1],[2,0],[1,-1],[2,0],[2,-1],[2,-1],[1,-1],[2,0],[2,-1],[1,1],[1,0],[1,1],[1,0],[3,-1],[1,-1],[4,0],[0,-1],[3,0],[2,-1],[1,-1],[2,0],[1,-1],[2,-1],[1,0],[2,-1],[1,-1],[1,-1],[2,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-1],[-2,0],[-2,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-4],[0,-1],[-1,-2],[-1,0],[-1,-2],[-1,-1],[-1,0],[-4,-4],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,-2],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-2,1],[-1,1],[-1,0],[-2,-1],[0,-1],[-2,-2],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-2],[-2,-2],[-1,-2],[-1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[2,-1],[2,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-2,0],[-2,-2],[-1,-1],[-1,-1],[0,-1],[-2,-4],[-1,-2],[-4,-1],[1,-1],[6,-5],[0,-2],[0,-1],[-2,-2],[-3,-2],[-2,-1],[0,-2],[-2,-1],[-2,-2],[-2,-2],[1,0],[3,-1],[2,-1],[0,-2],[2,-4],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-3],[-2,-1],[-1,-2],[-4,1],[0,-2],[1,-3],[-1,-2],[1,-2],[1,-1],[2,-2],[1,-1],[8,-2],[1,-4],[-1,-2],[1,-1],[4,-1],[1,-3],[1,-3],[-1,-2],[0,-1],[4,-2],[1,-2],[6,-5],[-2,-2],[0,-1],[2,-1],[-1,-2],[1,-2],[-2,-4],[0,-1],[1,-3],[2,-3],[1,-1],[-1,-1],[-2,-2],[-2,-4],[0,-1],[2,-1],[3,0],[6,-1],[6,-3],[1,-1],[-3,-5],[1,-1],[6,-2],[3,-2]],[[5668,6599],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-2],[1,-1],[1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-4],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[1,-2]],[[5658,6542],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,4],[0,1],[-1,0],[-2,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-3,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,-2],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-2],[-1,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-2,0],[0,1],[-1,0],[-2,1],[-3,2],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[0,-1],[-1,-2],[-1,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,2],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-2,-2],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[3,0],[1,-1],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,0],[-2,-1]],[[5466,6516],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,1],[-2,1],[-1,0],[-2,1],[-1,1],[0,1],[-2,2],[0,1],[-1,1],[0,1],[-1,4],[1,1],[0,1],[0,1],[1,3],[1,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[1,2],[0,1],[1,1],[0,1],[0,1],[1,2],[0,1],[2,-1],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,1],[0,1],[2,2],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,2],[0,1],[-1,2],[0,1],[1,1],[0,1],[1,0],[1,0],[2,0],[1,1],[0,1],[1,0],[1,2],[1,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,2],[-2,1],[-1,0],[-1,0],[1,1],[0,1],[2,2],[1,0],[2,-1],[1,0],[1,1],[1,2],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,2],[1,2],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-2,2],[-1,1],[-2,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-3,0],[-1,1],[-1,0],[0,1],[1,2],[0,1],[0,1],[0,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,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,2],[1,0],[1,1],[1,-1],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[0,1],[1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-2],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,1],[1,0],[1,1],[1,2],[0,1],[0,1],[-1,0],[-1,1],[-1,2],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[1,1],[1,1]],[[5495,6655],[1,-1],[1,1],[0,-1],[1,0],[1,0],[1,0],[2,-2],[1,0],[1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,0],[3,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-2,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[0,1],[0,1],[1,1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,0],[2,0],[2,-1],[1,0],[1,0],[2,0],[2,-1],[1,0],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[1,-1],[1,-1],[1,0],[2,0],[1,1],[1,0],[1,0],[2,1],[0,1],[2,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[1,-1],[2,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[2,0],[1,0],[2,0],[1,1],[0,1],[1,1],[0,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[1,2],[1,-1],[1,0],[3,0],[1,0],[2,-2],[1,-1],[1,-1],[1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-4],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[1,1],[1,0],[2,0],[2,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[2,1],[2,0],[2,0],[1,-1],[2,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[2,-1],[1,0],[1,0],[2,1],[2,0],[1,0],[2,1],[1,0],[1,0],[3,1],[4,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[3,-1],[1,-1],[1,0]],[[4413,7528],[-2,-1],[0,-1],[0,-1],[1,-2],[6,-3],[0,-1],[-4,-1],[-3,-1],[-5,0],[-2,0],[-2,-1],[-2,-2],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,-2],[-2,-2],[-2,-1],[-1,1],[-2,-2],[-2,-1],[-3,1],[-3,-1],[-3,0],[-8,2],[-2,-1],[-3,0],[-4,-5],[-3,-1],[-6,0],[-3,1],[-6,2],[-2,-3],[2,-1],[2,-3],[-3,-1],[-5,0],[-3,1],[-4,0],[-3,-1],[1,-9],[-3,-3],[-3,-3],[-2,-4],[-2,-1],[-5,0],[-8,2],[-4,0],[-6,1],[-2,1],[-1,1],[-8,5],[-2,3],[-10,12],[-4,2],[-2,0],[-4,1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[0,-5],[0,-3],[0,-2],[-2,-6],[-2,-1],[-2,-1],[-3,0],[-2,-1],[-6,-3],[-1,-2],[-1,-4],[-3,-3],[0,-3],[1,-2],[1,-1],[4,-1],[1,-2],[-1,-1],[0,-2],[1,-3],[1,-2],[1,-1],[4,0],[1,-2],[-2,-3],[2,-3],[-1,-2],[-3,-4],[0,-2],[2,-1],[5,-1],[2,-2],[1,-2],[1,-1],[-1,-6],[1,-1],[1,-1],[0,-1],[-2,-3],[2,-3],[-1,-2],[-5,-2],[-2,-2],[0,-1]],[[4248,7412],[-2,1],[-2,0],[-2,-1],[-2,0],[0,1],[0,1],[1,5],[-4,1],[-5,-1],[-2,1],[-1,1],[-6,0],[1,3],[-2,0],[-2,1],[0,2],[1,3],[1,2],[-1,2],[1,3],[-3,11],[1,1],[-1,3],[-6,1],[0,1],[2,7],[5,5],[0,1],[-3,0],[0,2],[0,1],[1,2],[1,1],[1,2],[-4,-1],[-1,1],[1,1],[2,2],[-11,-3],[-5,-4],[-1,-1],[0,-1],[-3,-1],[-3,0],[-4,-1],[0,-2],[1,-1],[4,-2],[1,-1],[1,-2],[-3,0],[-5,2],[-1,-1],[-1,-2],[-2,0],[-2,0],[-7,0],[-1,0],[-2,-1],[-3,0],[0,2],[-1,2],[-2,0],[-3,0],[-3,-3],[-1,0],[-1,0],[-6,3],[-1,0],[-4,-3],[-4,0],[-10,2],[-1,1],[3,5],[-1,1],[-1,2],[-1,2],[-7,4],[-2,0],[-2,0],[-1,0],[-1,1],[-3,1],[-3,0],[-3,-3],[-2,-1],[-4,1],[-7,4],[-4,1],[-5,0],[-2,0],[-3,-1],[-1,2],[-6,0],[-4,0],[-3,0],[2,2]],[[4073,7482],[1,0],[1,2],[1,2],[-1,3],[-1,1],[-3,2],[-1,1],[0,5],[-1,1],[-2,2],[1,2],[0,2],[-1,2],[-3,3],[0,2],[3,2],[4,1],[4,0],[2,0],[0,4],[-1,2],[-3,1],[0,3],[2,4],[0,5],[1,2],[2,2],[1,2],[2,1],[2,0],[2,1],[-1,1],[1,4],[3,1],[2,0],[1,0],[0,-1],[2,0],[2,0],[3,2],[1,1],[0,2],[0,1],[0,1],[1,2],[2,0],[1,0],[4,-2],[1,-1],[1,0],[4,2],[3,2],[1,-1],[3,-2],[4,2],[-1,1],[1,1],[1,1],[5,0],[2,-2],[2,-1],[4,1],[0,1],[-1,1],[-3,3],[-1,0],[-1,1],[-2,5],[-1,1],[-1,1],[0,2],[-2,3],[0,2],[2,7],[1,4],[1,1],[8,1],[0,2],[0,2],[0,1],[2,1],[-4,3],[-2,3],[-2,1],[-1,0],[-1,2],[1,2],[2,3],[0,2],[9,6],[3,7],[-1,1],[-1,0]],[[4143,7626],[5,6],[-1,2],[0,1],[5,2],[2,2],[1,1],[3,1],[2,-1],[3,1],[3,3],[2,1],[6,-1],[6,4],[3,3],[2,2],[5,-2],[3,-1],[6,1],[2,-1],[5,1],[1,1],[0,4],[2,2],[-1,2],[-1,4],[3,2],[-4,3],[0,1],[-2,0],[-1,4],[0,2],[-1,0],[1,2],[2,1],[1,3],[1,2],[1,4],[2,2],[0,1],[4,2],[-3,3],[1,1],[-1,2],[1,1],[1,1],[4,1],[6,-1],[2,2],[1,1],[0,4],[-1,0],[-1,3],[3,3],[1,-1],[3,1],[1,1],[-2,2],[-2,3],[1,1],[2,0],[1,0]],[[4232,7721],[8,-6],[1,-2],[2,-1],[-1,-1],[1,-1],[1,-1],[1,0],[2,0],[3,0],[4,0],[1,-1],[2,0],[0,-3],[0,-1],[-2,0],[-2,0],[-3,-2],[-1,-1],[-2,-1],[-1,-2],[1,-2],[2,-1],[2,1],[3,-1],[2,-1],[-2,-2],[-1,-1],[-3,-1],[1,-2],[1,0],[1,0],[3,1],[2,0],[2,1],[1,0],[3,-1],[0,-2],[2,-1],[1,0],[2,-1],[1,-1],[3,-1],[1,-1],[3,-1],[1,-1],[2,1],[2,1],[0,1],[1,1],[1,0],[2,0],[2,0],[2,1],[1,2],[2,1],[0,2],[1,2],[1,0],[2,2],[0,2],[0,3],[-1,1],[-1,1],[-1,2],[-1,1],[0,2],[-1,2],[0,1],[0,2],[1,0],[1,0],[2,0],[4,0],[2,1],[5,-3],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[2,0],[2,1],[4,-2],[0,-1],[-1,-2],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[2,0],[2,-1],[-1,-4],[0,-1],[-2,-2],[-3,-2],[3,-1],[0,-1],[-3,1],[-1,0],[-1,1],[-1,0],[-2,-1],[-1,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[7,-3],[1,1],[1,1],[3,1],[5,1],[1,0],[3,0],[1,-1],[4,-2],[1,-1],[1,-1],[2,-1],[4,0],[0,-2],[1,-1],[1,-1],[1,0],[2,1],[1,0],[2,0],[2,0],[2,0],[0,1],[-1,3],[2,3],[1,2],[1,1],[0,1],[0,2],[0,1],[-1,3],[1,1],[0,1],[0,2],[-1,3],[-1,1],[-1,2],[-1,0],[0,2],[0,2],[1,7],[0,2],[-1,2],[-1,3],[0,3],[0,2],[0,4],[-1,2],[-1,2],[0,3],[0,3],[-2,6],[-1,1],[-1,2],[0,1],[0,1],[0,1],[1,1],[1,1],[1,2],[2,2],[1,1],[1,0],[4,1],[3,0],[2,0],[2,1],[1,0],[3,0],[1,1],[2,0],[1,1],[1,0],[4,2],[3,5],[0,2],[5,-2],[6,-1],[4,-1],[3,-1],[2,0],[2,-1],[3,-5],[3,-1],[8,12],[3,0],[1,0],[1,1],[1,3],[-1,1],[0,2],[1,0],[3,1],[9,0],[1,1],[7,0],[3,0],[3,-2],[3,-3],[0,-1],[2,-1],[1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[4,0],[1,-1],[1,0],[0,-1],[1,0],[6,2],[1,2],[1,1],[0,1],[-1,2],[0,4],[1,2],[2,1],[2,1],[3,0],[7,-1],[2,3],[2,2],[4,4],[1,2],[-1,4],[-2,1],[-1,2],[0,3],[-2,1],[-1,1],[1,3],[1,1],[2,1],[9,1],[10,-1],[7,-1]],[[4526,7795],[2,-2],[3,-4],[5,-3],[2,-2],[5,-5],[2,-1],[3,-1],[1,-1],[1,-4],[3,-4],[0,-5],[2,-7],[3,-2],[1,-1],[0,-1],[0,-3],[-1,-1],[-6,-5],[-1,-1],[-1,-2],[-8,-6],[-6,-7],[-5,-4],[-2,-4],[1,-1],[1,0],[-1,-1],[1,-2],[0,-1],[1,-1],[-1,-4],[-1,-1],[0,-3],[-2,-1],[-1,-1],[-2,-2],[0,-2],[1,-2],[-1,-3],[2,-3],[1,1],[2,-1],[1,-1],[0,-1],[-1,-4],[-3,-2],[0,-2],[0,-2],[-1,-2],[-8,2],[-3,-3],[-7,1],[-3,2],[-2,-1],[-1,-1],[-3,-7],[0,-1],[0,-3],[2,-2],[-1,-4],[0,-1],[2,-1],[-1,-3],[3,-2],[2,-2],[0,-1],[-1,-5],[-1,-1],[-1,-1],[-2,-3],[-1,-1],[-2,0],[-3,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,-1],[-8,-7],[-4,-2],[-1,-1],[-2,-2],[-1,0],[-2,0],[-4,2],[-3,-2],[2,-1],[-2,-2],[-2,0],[-2,-2],[-2,0],[0,-1],[-6,-2],[-11,0],[0,-3],[-3,-2],[1,-2],[-1,-2],[-2,-2],[-3,-1],[-2,0],[2,-1],[-5,-2],[-3,-2],[-1,-2],[1,-6],[-3,-3],[-3,0],[-3,-2],[-1,0],[-1,0],[-3,1],[2,2],[1,1],[-1,1],[-2,0],[-7,-3],[-6,-1],[-2,-1],[-1,-1],[1,-1],[-1,-4],[3,-9],[4,-2],[7,-5],[1,-4],[0,-2],[-1,0],[-2,-1],[-1,-2],[-5,-2],[-1,0],[-1,-1],[0,-2],[3,-2],[7,0],[0,-2],[-4,-2],[2,-2],[1,-2],[-2,-1],[1,-1],[2,-1],[-1,-1],[2,-1],[0,-3],[2,-2],[0,-1],[1,-2]],[[5436,7556],[-1,-3],[-1,-5],[-1,-2],[-1,-2],[0,-2],[-2,-1],[-3,-4],[-2,1],[-2,-3],[-6,2],[-1,-1],[-3,-3],[-3,-3],[0,-2],[-1,0],[-2,-1],[-2,-1],[-1,-2],[1,-2],[-1,-3],[-3,-2],[-2,-1],[-3,-1],[5,-4],[-1,-2],[-1,-3],[2,-1],[-1,-1],[-3,-1],[1,-2],[-2,-3],[-2,0],[-5,-5],[-3,1],[-5,-5],[2,-2],[0,-2],[-6,-4],[1,-5],[-4,-4],[-3,-1],[-2,-1],[-4,1],[-2,-3],[-5,-1],[-5,-6],[-2,-1],[-2,-3],[-1,-2],[2,-3],[3,-2],[0,-3],[1,-1],[-1,-3],[2,-2],[2,1],[3,5],[2,-2],[1,-2],[-2,-1],[-4,-2],[1,-1],[0,-1],[5,-1],[0,-1],[-5,0],[2,-4],[2,-2],[0,-7],[3,-2],[-2,-18],[5,-4],[2,1],[2,-1],[0,-2],[-2,-3],[7,-2],[-2,-2],[-2,-4]],[[5373,7386],[-3,1],[-4,0],[-2,3],[-1,0],[-2,0],[-3,-1],[-2,1],[-1,0],[-1,0],[-2,-1],[-2,1],[-3,0],[-3,-2],[-1,-1],[-2,0],[-3,1],[-2,3],[0,2],[-2,1],[-2,1],[-2,0],[-1,0],[-1,2],[-1,1],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,-1],[-2,-2],[-1,0],[-1,0],[-3,-2],[0,2],[-3,-1],[0,2],[-2,0],[-1,-2],[1,-2],[-2,0],[-1,-2],[-3,-1],[-1,-2],[-1,-1],[3,-1],[0,-6],[2,0],[1,-1],[0,-1],[-4,-3],[-1,0],[-2,0],[-3,-2],[-2,-1],[-2,0],[0,-1],[-1,-2],[1,-1],[2,-2],[0,-1],[-1,-1],[3,-1],[0,-1],[-4,-3],[0,-1],[0,-1],[2,-1],[3,-1],[1,-1],[0,-2],[-2,-2],[-1,0],[-2,0],[-4,1],[-1,1],[-1,-1],[-2,-1],[-2,0],[0,2],[-1,0],[0,1],[-1,3],[-2,0],[-2,-1],[-1,-1],[0,1],[0,1],[-1,0],[-7,-2],[-1,1],[-1,-1],[-1,1],[-1,-2],[-1,0],[-2,-5],[-3,-5],[-1,-1],[2,-2],[-1,-4],[-2,-1],[-3,0],[-1,-2],[0,-1],[-2,0],[-1,1],[-1,0],[-1,-3],[-2,1],[-3,2],[-3,1],[-2,1],[2,2],[0,1],[0,1],[-2,0],[0,2],[-3,1],[-1,-1],[-1,-1],[-4,2],[0,1],[1,0],[1,2],[-2,2],[-1,-1],[-2,1],[-1,2],[-2,-1],[-1,0],[-2,1],[-1,1],[-2,1],[0,1],[-2,1],[-1,1],[-1,1],[-2,0],[-1,1],[-3,-1],[-1,-1],[-2,-1],[0,1]],[[5205,7355],[-1,1],[-1,1],[-1,1],[-8,3],[-1,1],[-1,1],[1,1],[1,1],[3,2],[5,1],[4,-1],[1,1],[2,1],[2,0],[2,0],[7,-1],[4,-1],[4,1],[1,1],[0,1],[-1,1],[-11,2],[-6,3],[-3,2],[-2,1],[-2,0],[-3,0],[-2,0],[-3,-1],[-1,0],[-5,0],[-1,0],[0,3],[1,2],[2,2],[1,2],[-2,4],[2,3],[-1,1],[0,4],[3,5],[2,4],[-3,2],[-6,3],[4,2],[-1,1],[0,1],[0,1],[-1,2],[-5,3],[-2,1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,1],[-2,2],[0,4],[-2,1],[-5,1],[-1,0],[1,3],[1,1],[0,2],[-2,1],[-2,-1],[-1,-1],[-3,0],[-2,1],[-1,3],[-4,3],[-2,-1],[-2,0],[0,1],[-1,2],[-3,0],[-4,-1],[-1,2],[-2,0],[-1,1],[-1,1],[0,1],[1,1],[-1,1],[-1,1],[0,2],[-4,1],[-3,-3],[-3,2],[1,5],[1,4],[-2,2],[-1,0],[-2,1],[1,2],[1,1],[2,2],[0,1],[-2,1],[-1,0],[-2,-1],[-3,-1],[-1,0],[-2,1],[-2,1],[-4,3],[2,2],[-4,1],[-3,1],[-1,2],[-1,2],[-2,0],[-1,0],[-2,0],[-1,0],[-3,-3],[-2,3],[-1,2],[-3,2],[-1,0],[-1,0],[-3,0],[-4,-1],[-4,0],[-1,0],[-1,1],[0,1],[0,3],[3,1],[3,0],[2,3],[-1,1],[0,2],[3,0],[2,0],[1,1],[1,1],[-1,2],[1,2],[4,3],[1,0],[0,-2],[-1,-4],[1,-1],[2,2],[1,-2],[1,-1],[2,0],[0,1],[0,1],[0,2],[0,1],[-2,2],[-1,1],[1,0],[3,0],[6,-3],[1,0],[1,1],[4,5],[2,-1],[4,-2],[2,-2],[3,2],[2,0],[0,-1],[-1,-2],[1,-1],[3,-2],[0,-1],[-2,-3],[-1,0],[-3,1],[-1,0],[-2,-2],[0,-1],[1,-1],[4,-2],[2,-1],[2,-5],[1,-2],[2,-2],[3,0],[6,4],[3,5],[2,1],[1,1],[-2,2],[-14,10],[-1,9],[18,9],[-10,8],[-19,9],[-3,6],[-1,8],[-8,9],[-8,8],[-3,7],[0,5],[1,10],[17,3],[16,-2],[12,0],[17,0],[5,5],[12,12],[0,2]],[[5174,7613],[13,-1],[9,0]],[[5196,7612],[0,-1],[1,0],[0,-1],[4,-2],[1,0],[1,-1],[0,-1],[3,-1],[0,-1],[5,-3],[1,0],[-1,-1],[1,0],[1,-1],[2,-1],[4,-2],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[4,-2],[1,-1],[7,-4],[2,-2],[1,0],[2,-1],[0,-1],[3,0],[1,0]],[[5248,7579],[1,-1],[4,0],[4,0],[1,0],[1,-1],[4,-1],[3,-3],[4,-1],[6,-4],[6,-3],[3,-3],[2,-2],[6,-1],[3,0],[11,2],[0,6],[2,3],[4,2],[0,2],[4,4],[2,3],[4,2],[1,3],[3,2],[11,0],[16,-2],[10,0],[8,-1],[2,0],[1,1],[1,-1],[5,-5],[4,-4],[1,-1],[4,-4],[7,-3],[3,-4],[1,-1],[8,-2],[5,-1],[2,3],[3,-1],[3,-1],[5,-2],[2,-1],[7,-2]],[[5693,7422],[11,-1],[8,0],[5,-1],[8,-1],[15,2],[7,-1],[10,0],[11,1],[14,0],[2,0],[2,0],[4,-4],[3,-6],[2,-1],[2,-2],[3,-1],[18,-3],[9,-2],[3,0],[5,-2],[17,1],[3,1],[9,0],[8,1],[10,0],[7,0],[8,1],[1,0],[4,-1],[7,-1],[4,-3],[3,-4],[4,-4],[1,-2],[2,-1],[4,-2],[6,-2],[1,0],[8,-5],[7,-4],[-3,-6],[0,-1],[3,-5],[10,-7]],[[5959,7356],[-1,1],[-3,0],[-2,1],[-1,-1],[-6,-2],[-4,-1],[1,-2],[-1,-2],[-1,-1],[-3,-2],[-5,-3],[-3,-1],[0,-1],[2,-1],[3,-2],[-2,-2],[-1,1],[-3,-1],[-2,-1],[-3,-3],[-1,0],[-1,0],[-4,-1],[-1,-1],[-1,-1],[-1,-1],[3,-5],[0,-2],[0,-1],[-2,0],[-2,-2],[-2,-2],[-4,-2],[-7,0],[-4,0],[-3,-2],[-1,-1],[1,-1],[-1,-3],[0,-3],[3,2],[2,-2],[1,-2],[-1,-1],[-3,-2],[-1,-1],[4,-2],[1,-2],[0,-6],[-1,-1],[-7,-2],[-1,-1],[5,0],[0,-1],[-1,-1],[-2,0],[-2,0],[-2,0],[0,1],[0,2],[2,2],[0,1],[-1,1],[-4,2],[-2,0],[-3,-3],[-1,0],[-3,1],[-2,0],[-2,-1],[0,-1],[1,-3],[4,-6],[2,-2],[5,-4],[0,-1],[-1,-2],[-2,-1],[-2,0],[-3,1],[-3,1],[-1,-1],[0,-1],[1,-1],[1,0],[0,-2],[2,-1],[-1,-2],[1,-3],[0,-1],[3,-1],[1,-2],[1,-2],[-1,-2],[4,-3],[1,-1],[1,0],[0,-1],[-1,-1],[-3,-1],[-1,1],[0,1],[-1,1],[-2,0],[-1,-1],[-1,-1],[1,-1]],[[5877,7245],[-5,-4],[-2,-3],[-1,-3],[-1,0],[-1,-1],[-2,1],[-3,-1],[-2,3],[-2,3],[-3,1],[-2,-1],[0,-1],[0,-2],[2,-2],[0,-1],[1,-2],[-8,0],[1,-3],[0,-1],[-3,-1],[-2,1],[-2,2],[-1,0],[-1,0],[-1,-3],[-5,-4],[1,-2],[0,-1],[0,-4],[-1,-5],[0,-1],[-2,0],[-2,0],[-2,-1],[-2,-3],[-1,-1],[2,-1],[0,-1],[-1,-1],[-2,1],[-2,-1],[-1,-1],[0,-3],[-2,-1],[-2,-1],[2,-3],[-3,-1],[-3,0],[-4,1],[-2,1],[-1,0],[-2,-2],[-3,0],[-2,1],[-1,0],[-3,0],[-4,1],[-3,0],[-2,0],[-6,2]],[[5780,7196],[1,2],[-7,2],[-3,2],[-2,1],[0,4],[1,2],[2,2],[1,1],[-1,3],[-2,3],[-1,1],[-3,1],[2,1],[0,2],[-1,1],[-2,0],[-1,-1],[-6,-1],[-2,-1],[0,-3],[2,-3],[-2,0],[-3,-3],[-1,1],[-2,-1],[-1,0],[-2,-1],[-2,1],[-6,-5],[-4,-4],[-3,-2],[-3,0],[-1,0],[-2,0],[0,1],[0,3],[-1,1],[-1,-3],[-1,-1],[-4,1],[0,1],[2,1],[1,1],[3,2],[0,2],[1,5],[-1,2],[-1,0],[-1,0],[-1,-1],[1,-3],[-1,0],[-2,0],[-1,2],[-6,3],[-5,2],[-1,-1],[-2,-1],[-1,1],[0,2],[2,2],[0,1],[-4,-1],[-2,-1],[1,-2],[0,-1],[-2,-1],[-6,0],[-2,1],[0,1],[0,4],[-4,0],[-2,1],[-3,-1],[0,1],[1,3],[-1,2],[1,2],[1,2],[-3,-1],[-5,0],[-4,1],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-3,-1],[-3,-1],[-1,1],[-2,1],[-1,1],[-2,0],[-5,-2],[-2,0],[-5,1],[-2,0],[-1,-2],[0,-1],[0,-1],[-3,0],[0,-1],[-1,0],[-4,2]],[[5631,7228],[-9,4],[-9,2],[-2,0],[-2,1],[1,2],[-1,0],[1,2],[0,1],[0,1],[1,0],[0,1],[-4,2],[0,2],[1,0],[0,1],[-3,0],[-2,2],[1,2],[0,1],[0,1],[1,0],[2,0],[1,0],[0,3],[-2,2],[-2,1],[0,1],[-1,0],[-1,0],[0,2],[-1,0],[-2,2],[1,2],[-1,3],[-1,0],[-1,-1],[-1,3],[-3,2],[-2,1],[-6,-1],[-1,2],[-3,2],[-2,-3],[-1,1],[2,5],[-4,1],[0,1],[-1,3],[-2,0],[0,1],[1,1],[-1,1]],[[5573,7288],[-1,2],[-2,0],[0,2],[-1,-1],[-1,0],[0,1],[-2,1],[1,-2],[-4,1],[-1,-1],[5,-2],[0,-1],[-1,0],[-2,0],[-4,1],[-1,0],[-2,-2],[-3,-1],[-1,1],[-4,3],[-2,2],[-1,3],[1,1],[0,1],[4,2],[2,1],[1,1],[2,1],[3,0],[5,4],[3,1],[1,-1],[2,-1],[3,-2],[5,0],[2,-1],[1,-1],[1,-4],[2,-1],[3,2],[4,1],[8,0],[2,-1],[2,0],[1,1],[3,0],[1,1],[0,1],[-3,3],[-2,1],[-1,0],[-5,2],[1,1],[3,0],[1,0],[0,3],[-1,1],[-1,0],[-10,-1],[-1,0],[-2,1],[-1,0],[-1,-1],[-2,-1],[-2,0],[0,1],[0,1],[2,2],[4,4],[-1,1],[-1,0],[-8,1],[-3,1],[0,1],[4,1],[1,2],[5,1],[3,0],[1,0],[-1,3],[-1,0],[-5,0],[-2,-1],[-2,0],[1,4],[3,3],[0,1],[-4,0],[-6,1],[0,2],[0,1],[2,1],[6,3],[3,1],[1,2],[-2,0],[-5,-2],[-4,-2],[-2,-1],[-1,0],[-1,3],[0,1],[1,1],[1,2],[3,2],[2,0],[2,0],[4,-2],[1,2],[-2,2],[0,1],[-4,1],[-1,0],[-4,-2],[-5,-1],[-2,0],[-2,1],[-1,2],[1,0],[2,0],[3,1],[4,2],[1,1],[-2,3],[0,2],[2,3],[3,3],[2,1],[3,0],[2,0],[4,-2],[2,3],[2,-2],[1,0],[2,1],[2,1],[1,1],[3,5],[2,0],[1,4],[0,1],[4,0],[1,1],[3,2],[0,1],[-1,3],[1,0],[2,0],[1,1],[-1,1],[0,1],[3,0],[1,0],[1,-3],[5,1],[0,-2],[0,-1],[2,0],[2,3],[2,-1],[1,1],[2,0],[1,0],[1,-1],[0,-2],[1,-2],[1,0],[1,2],[0,-2],[-2,-1],[2,0],[1,0],[3,3],[1,-2],[1,0],[3,1],[2,1],[3,1],[1,-2],[1,1],[2,2],[2,0],[1,0],[0,-2],[-2,-1],[-1,0],[-4,0],[-2,0],[1,-2],[2,0],[3,1],[2,0],[5,3],[3,0],[1,-1],[1,0],[1,1],[1,-1],[0,-2],[2,1],[-1,3],[0,1],[1,0],[2,-1],[2,-2],[1,-1],[0,1],[-2,4],[1,0],[1,0],[2,-3],[2,0],[2,0],[-1,-1],[-2,-2],[1,-1],[1,-1],[1,1],[3,3],[1,0],[0,-1],[0,-1],[1,0],[1,1],[0,1],[1,2],[1,0],[3,0],[2,-3],[2,-1],[3,1],[3,2],[-2,4],[-1,2],[-2,2],[-4,4],[-1,1],[-2,1],[-2,1],[0,2],[-1,1],[-2,-1],[-3,1],[-1,0],[-1,2],[0,2],[3,3],[3,2],[1,2],[2,5],[1,-1],[2,0],[1,0]],[[5004,7493],[3,-1],[2,-1],[1,-2],[2,-4],[0,-4],[0,-5],[-2,-2],[-2,-1],[0,-2],[-1,-3],[-2,-4],[0,-1],[6,-3],[1,0],[0,-11],[1,-2],[1,-4],[-1,-2],[-1,1],[-5,1],[-2,-2],[-1,-4],[1,0],[6,1],[1,-3],[3,-1],[0,-1],[-2,-1],[-1,-1],[0,-2],[2,0],[0,-1],[-1,-1],[-1,-3],[1,-1],[2,-2],[4,-2],[0,-1],[0,-1],[0,-3],[1,-2],[-1,-3],[0,-1],[2,-3],[1,0],[1,0],[3,-3],[2,-2],[0,-3],[-1,-3],[2,0],[1,-1],[2,0],[1,0],[-1,-2],[6,-3],[1,-2],[0,-1],[1,-3],[3,-2],[2,-3],[2,-2],[6,-1],[3,-2],[2,-2],[1,-2],[0,-2],[-1,-1],[-1,-5],[-1,-1]],[[5056,7359],[-3,0],[-5,2],[-1,-1],[1,-2],[3,-2],[0,-1],[0,-1],[-1,0],[-3,0],[-1,-1],[1,-1],[-2,0],[-1,0],[-2,0],[0,-1],[5,-1],[1,-2],[-4,0],[-1,0],[-1,-5],[-4,-2],[-1,-3],[1,-1],[5,-1],[0,-1],[-4,-3],[1,0],[0,-1],[-3,1],[-2,-1],[-2,-1],[-1,-2],[-4,0],[-3,-2],[-1,1],[-1,0],[-2,7],[-8,0],[-1,2],[-1,2],[2,2],[1,4],[-3,-1],[-1,0],[-2,0],[0,1],[-1,2],[4,4],[0,3],[-2,2],[-5,2],[-3,2],[1,2],[-1,2],[1,1],[-1,2],[-1,1],[-2,-1],[-1,-1],[-2,-4],[-1,0],[-1,-1],[-1,-2],[-1,-2],[-3,1],[-1,0],[-4,2],[-1,0],[0,-1],[-1,-1],[1,-2],[-1,-2],[0,-2],[-2,0],[-2,0],[-2,2],[-1,0],[-4,-1],[-2,1],[-1,-2],[1,-3],[4,0],[2,0],[-1,-2],[-3,-2],[1,-2],[2,-1],[2,-1],[1,-2],[-3,-2],[0,-1],[2,-2],[0,-1],[-1,-1],[-2,-1],[-1,0],[-1,1],[0,2],[-2,1],[-1,-1],[-3,-3],[-4,-3],[2,-4],[0,-1],[-2,-2],[-1,0],[-4,0],[-6,2],[-2,1],[1,4],[-2,1],[-2,1],[-1,2],[-2,1],[-3,-1],[-5,-3],[-2,0],[-1,1],[-3,3],[-4,1],[-1,0],[-1,1],[-2,0],[-3,0],[-6,-1],[-2,-1],[-1,0],[-2,0],[-2,-1],[0,-2],[1,-3],[-1,0],[-1,0],[-1,-1],[-1,-2],[1,-1],[-2,-1],[-1,-1],[1,-1],[2,-2],[1,0],[-1,-1],[-2,0],[-2,0],[-2,-1],[-3,-1],[-1,0],[-2,0],[-2,0],[-2,3],[-3,0],[-2,-1],[-3,1],[-3,-1],[-1,0],[-4,1],[-2,-1],[-5,0],[-2,0],[-10,3],[-4,2],[-1,-2],[0,-1],[-1,-3],[-1,-1],[1,-2],[-2,0],[0,1],[-1,0],[-1,0],[0,-1],[-3,-3],[-2,-4],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-2,-3],[3,-4],[1,-3],[-1,-2],[-1,-2],[-1,-1]],[[4826,7289],[-1,0],[-3,-1],[-3,-2],[0,-1],[-1,0],[-2,1],[-2,0],[-3,-5],[-2,-3],[0,-1],[-3,0],[-3,1],[-2,-1],[-6,-1],[-2,-1],[-2,0],[-2,-3],[-3,-2],[-2,-1],[-1,-1],[-1,0],[-2,-2],[-1,0],[-2,1]],[[4777,7267],[1,1],[-1,2],[0,1],[-1,-1],[-3,1],[-3,0],[-2,0],[0,1],[1,3],[0,1],[-2,2],[0,1],[7,1],[0,1],[0,1],[-1,3],[2,2],[0,1],[-2,0],[-1,0],[1,2],[-1,2],[-3,1],[0,2],[-1,1],[0,1],[-4,1],[1,2],[0,2],[-1,1],[-4,3],[-1,2],[-4,-2],[-3,0],[-2,-1],[-2,1],[0,1],[-4,3],[-2,1],[-1,2],[0,3],[-2,0],[-4,-1],[-2,-1],[-1,1],[1,2],[0,1],[-3,1],[-6,0],[-3,-2],[-4,-3],[-1,-1],[-4,-2],[-1,2],[-5,1],[-2,0],[-1,1],[-7,1],[-1,1],[-1,1],[1,2],[-1,1],[-1,1],[-3,0],[0,1],[2,2],[-1,1],[1,1],[4,1],[-4,1],[-3,2],[-1,-2],[-1,0],[-2,0],[-1,-1],[1,-1],[-2,0],[-2,1],[-1,2],[-2,3],[-2,-1],[-5,-1],[0,-1],[1,-1],[0,-1],[-2,0],[-1,1],[-1,5],[-1,1],[-3,-2],[-1,1],[-1,2],[-2,1],[-2,-1],[-2,0],[-1,0],[-1,1],[1,0],[2,1],[-2,3],[-2,0],[-2,-3],[-1,-3],[0,-2],[-2,0],[-4,1],[-2,-2],[-2,-1],[-3,-1],[-3,-1],[-5,0],[-1,-2],[-2,1],[-5,-1],[1,2],[4,3],[4,0],[-1,1],[-1,3],[-1,5],[-2,0],[0,4],[0,1],[-3,0],[-2,1],[-1,2],[0,2],[1,1],[2,1],[0,1],[-3,1],[-4,0],[-1,2],[0,3],[0,1],[-1,1],[-3,0],[-4,0],[-1,-1],[0,-1],[-3,0],[-1,1],[2,1],[1,1],[-1,1],[-2,1],[-1,2],[0,1],[0,1],[1,0],[3,-1],[1,-1],[1,0],[0,3],[0,1],[-1,0],[-3,-1],[-2,1],[-1,2],[-1,3],[0,1],[1,4],[-2,1],[0,1],[2,1],[-1,0],[-2,1],[-6,0],[-1,2],[-4,1],[-2,2],[0,1],[2,1],[2,-1],[0,1],[-4,4],[-3,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,0],[-1,2],[2,1],[0,1],[-1,1],[-2,0],[-2,1],[-2,1],[1,2],[-1,1],[-1,0],[-3,0],[-1,1],[-4,1],[-2,-1],[-2,0],[-1,0],[-2,1],[-1,1],[-2,4],[0,3],[-3,4],[-5,2],[-3,3],[1,2],[-1,1],[-2,2],[1,2],[-1,1],[-2,0],[2,2],[1,2],[0,1],[-1,0],[-2,1],[0,1],[0,3],[-2,0],[-2,1],[-1,1],[-1,2],[0,1],[1,1],[1,0],[6,2],[-1,1],[-2,-1],[3,2],[1,2],[-1,1],[-2,0],[-2,0],[-1,0],[-2,0],[0,1],[1,1],[-1,1],[0,1],[-1,0],[1,1],[-1,0],[-1,1],[1,2],[-1,0],[0,1],[0,2],[3,2],[1,1],[0,3],[-1,2],[1,7],[-1,1],[1,2]],[[4532,7492],[1,2],[1,0],[2,2],[9,4],[4,1],[0,1],[5,1],[1,1],[3,0],[2,-1],[0,1],[2,0],[1,0],[1,0],[0,1],[2,1],[1,0],[1,-1],[1,1],[1,1],[1,2],[2,2],[4,4],[2,0],[2,2],[3,1],[2,0],[1,0],[3,-1],[8,3],[1,0],[1,1],[-1,3],[-4,2],[0,1],[2,2],[3,0],[2,-2],[0,-1],[0,-2],[2,-1],[0,2],[4,5],[3,1],[5,-2],[1,2],[1,1],[1,0],[1,1],[0,1],[2,3],[3,1],[3,0],[1,3],[1,1],[0,1],[7,-3],[1,0],[2,-2],[1,-1],[-1,-3],[0,-1],[1,-1],[0,-2],[1,-2],[1,0],[4,1],[0,-1],[1,-4],[2,0],[1,-1],[0,-2],[1,-1],[1,0],[2,0],[5,2],[2,0],[4,-2],[3,0],[1,0],[2,0],[0,3],[0,3],[0,2],[1,1],[3,2],[0,3],[2,1],[2,4],[3,2],[0,1],[0,2],[1,3],[3,7],[1,1],[3,-1],[2,-2],[0,-4],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,3],[2,2],[2,1],[1,-3],[2,-1],[2,0],[5,1],[8,-4],[2,0],[2,-1],[4,-2],[5,-4],[3,-3],[1,0],[1,4],[0,4],[1,1],[1,0],[2,-1],[5,-2],[0,4],[2,1],[1,-1],[3,-2],[1,1],[1,0],[5,3],[1,-1],[2,-1],[2,-1],[3,-1],[3,-3],[1,-2],[1,-1],[2,-1],[3,0],[2,1],[3,1],[1,1],[1,1],[0,1],[0,3],[2,1],[0,4],[1,0],[3,1],[4,-1],[0,2],[1,1],[6,3],[2,1],[1,0],[2,1],[2,2],[1,1],[1,0],[2,-1],[1,-1],[1,-1],[-1,-2],[0,-2],[1,0],[3,1],[1,2],[2,1],[2,1],[2,0],[1,-1],[1,0],[1,2],[3,2],[0,1],[-1,2],[2,3],[3,0],[2,0],[0,1],[2,7],[3,4],[5,2],[2,0],[2,0],[1,-1],[-2,-2],[-4,-1],[1,-2],[4,0],[1,-2],[3,0],[4,1],[2,-1],[2,0],[1,-2],[-2,-2],[-3,-3],[-1,-1],[0,-1],[0,-3],[-5,-5],[0,-4],[1,-1],[2,-1],[3,0],[4,0],[1,0],[4,-2],[2,-2],[1,3],[3,-2],[2,1],[1,0],[2,-3],[1,0],[2,2],[9,-2],[2,4],[1,1],[5,-2],[1,-2],[4,0],[1,-5],[0,-1],[2,0],[2,0],[0,-2],[0,-1],[1,-1],[2,0],[2,0],[1,1],[0,1],[2,-1],[3,4],[2,-1],[6,3],[1,-1],[-1,-3],[1,-4],[1,-2],[1,0],[2,-1],[3,-1],[3,1],[6,2],[1,0],[5,-2],[4,-1],[1,-1],[4,-2],[2,-1],[5,-1],[2,-2],[0,-1],[-1,-1],[-5,-2],[-4,2],[-2,0],[-2,0],[-1,-1],[-3,-2],[0,-3],[-2,0],[-2,-1],[1,-2],[2,0],[1,-1],[3,-1],[1,0],[1,-1],[0,-2],[2,0],[2,-1],[2,-1],[2,2],[0,1],[1,1],[4,0],[0,1],[0,1],[1,1],[2,-2],[5,1],[0,-1],[0,-3],[2,-1],[2,-1],[2,0],[3,-1],[1,-1],[1,-3],[0,-2],[-1,-1],[-7,-2],[-1,-2],[1,-2],[3,-2],[1,0],[5,0],[2,1],[2,1],[7,1],[4,0]],[[5866,6373],[-4,-2],[-1,-2],[-3,-3],[2,-1],[-1,-1],[1,-1],[-2,-2],[-1,-2],[2,-1],[3,-2],[1,-2],[5,-1],[4,-1],[6,-2],[5,-2],[3,-3],[2,-2],[1,-3],[3,-3],[4,0],[3,-2],[1,-1],[3,2],[1,-3],[3,2],[5,0],[2,1],[9,4],[6,-2],[3,-1],[4,0],[2,2],[2,-1],[4,1],[5,2],[2,1],[1,-3],[5,-5],[4,1],[-1,1],[0,4],[3,3],[1,2],[3,0],[1,3],[1,2],[3,3],[0,1],[-5,3],[0,3],[1,1],[3,-1],[2,-2],[3,-2],[4,0],[3,1],[4,-1],[7,0],[5,1],[2,0],[2,3]],[[6003,6360],[3,-2],[5,-1],[3,-1],[4,-2],[3,-3],[4,-2],[4,-5],[1,-1],[4,-3],[5,0],[2,0],[2,1],[2,1],[2,0],[1,-2],[1,-1],[0,-3],[-2,-3],[0,-2],[0,-2],[2,-1],[1,0],[2,1],[1,0],[1,-1],[1,-3],[2,0],[4,-4],[2,-1],[0,-1],[-5,-3],[-2,-2],[-1,-3],[0,-3],[1,-1],[2,0],[2,0],[4,-3],[3,1],[1,0],[0,-1],[-2,-5],[9,0],[1,-1],[0,-1],[-1,-1],[-2,-2],[-4,-1],[-4,-4],[0,-2],[1,-3],[2,-1],[1,-1],[0,-2],[-1,-2],[0,-3],[-3,-5],[0,-2],[-6,-2],[-6,-1],[0,-2],[2,-3],[1,-1],[-6,-1],[-2,0],[-10,-2],[-4,-1],[-8,-1],[-5,0],[-12,-3],[-2,-1],[-1,-1],[-1,-1],[0,-2],[1,-2],[0,-1],[-1,-2],[-2,-3],[0,-2],[0,-1],[-2,-1],[-1,-3],[4,-7],[1,0],[4,0],[-1,-10],[1,-1],[6,1],[2,-1],[4,-1],[2,-1],[0,-3],[2,-1],[0,-1],[2,-1],[1,-1],[0,-2],[1,-1],[1,-2],[2,-2],[1,0],[0,-1],[-2,-1],[-3,-1],[-3,-5],[-2,-1],[-1,-2],[-2,0],[-6,0],[-2,0],[-1,-1],[-6,-4],[-3,-3],[-3,-1],[-2,-1],[3,-4],[0,-1],[0,-1],[3,0],[1,-1],[3,-1],[2,-3],[1,-4],[0,-4],[-4,-5],[0,-2],[-1,-1],[-5,-2],[-2,-2],[0,-1],[1,-5],[0,-1],[-2,-1],[1,-2],[1,-1],[0,-2],[-4,-6],[-1,-2],[-1,-3],[-4,-6],[-1,-4],[-2,-3],[-1,-1],[0,-4],[-3,-3],[0,-2],[-2,-2],[-8,-3],[-2,2],[-2,0],[0,-2],[0,-2],[-1,-1],[-9,-7],[-2,-1],[-2,-3],[-2,-4],[-2,-2],[0,-2],[2,-4],[-2,-3],[0,-2],[-1,0],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-3,0],[-3,1],[-3,0],[-2,-2],[-1,-1],[1,-2],[-1,-1],[-4,-1],[-2,-2],[-3,-1],[0,-1],[0,-2],[-2,-2],[-1,-1],[1,-3],[0,-2],[-3,-3],[-1,-2],[-1,-3],[-5,-3],[1,-2],[-1,-2],[-3,-1],[-3,0],[-3,-1],[-2,0],[-1,-1],[-4,-1],[-1,0],[-5,-1],[-3,-2],[-1,-2],[-1,-2],[-3,-2],[-20,-4],[-12,-1],[-8,1],[-3,2],[-6,-1],[-2,1],[-13,-2],[-4,0],[-15,-2],[-2,0],[-5,1],[-3,1],[-1,1],[-2,4],[-2,0],[-2,1],[-6,1],[-7,3],[-4,2],[-3,3],[-5,2],[-1,1],[-4,5],[-3,4],[-3,1],[-10,6],[-6,-1],[-4,2],[-1,1],[0,2],[1,4],[0,4],[1,2],[-2,1],[-4,1],[-3,0],[-8,0],[-7,1],[-3,1],[-2,4],[-1,3],[2,2],[6,3],[3,7],[2,7],[-3,0],[-3,-2],[-1,2],[-2,1],[-3,-2],[-2,1],[-5,2],[-9,-1],[-1,2],[-2,4],[-18,11],[-3,4],[4,3],[0,3],[2,3],[4,0],[5,-5],[15,-2],[0,4],[1,3],[6,4],[0,6],[-2,7],[-2,9],[3,1],[2,1],[3,1],[3,2],[1,3],[-1,5],[0,4],[2,1],[1,2],[4,7],[1,7],[-3,3],[0,2],[1,2],[0,5],[1,2],[-2,4],[-1,2],[0,3],[1,1],[-2,1],[-1,2],[-4,-3],[-5,-1],[-8,0],[-3,2],[-2,4],[0,1],[3,11],[2,2],[1,3],[2,-1],[4,2],[-3,1],[-1,4],[1,6],[2,4],[-4,2],[5,5],[2,5],[-10,5],[-1,9],[0,4],[-1,4],[2,0],[8,-2],[4,1],[2,-1],[0,-4],[17,2],[9,2],[-2,14],[0,5],[-5,-1],[-8,0],[-4,1],[1,2],[3,2],[-1,7],[0,5],[-2,2],[-9,-1],[-8,1],[-6,-2],[-2,1],[-4,-1],[-3,1],[-2,2],[1,5],[1,3],[0,2],[-2,2],[-3,2],[-9,6],[-4,0],[-6,-2],[-4,-3],[-3,0],[-13,-3],[-7,-3],[-7,-4],[-14,-3],[-7,-1],[-3,2],[-2,8]],[[5589,6318],[1,4],[6,1],[4,2],[0,6],[-4,2],[-2,2],[0,3],[0,4],[4,0],[5,2],[-1,6],[0,4],[-3,5],[0,5],[-1,3],[0,3],[12,3],[4,4],[1,2],[5,-2],[3,-1],[7,-5],[4,0],[1,4],[5,0],[0,-4],[-1,-4],[-2,-5],[3,-1],[6,1],[6,-1],[3,1],[4,2],[4,1],[6,4],[3,1],[1,2],[-1,3],[1,3],[2,-1],[4,-2],[4,-1],[9,0],[2,1],[2,0],[4,2],[3,1],[7,3],[10,2],[3,4],[4,0],[4,1],[3,-3],[4,-2],[13,0],[4,-2],[3,0],[6,1],[6,-2],[3,1],[3,1],[-1,4],[4,3],[2,-2],[1,-4],[2,-1],[9,-1],[1,8],[3,0],[3,2],[5,4],[3,5],[0,3],[4,2],[3,2],[4,1],[1,-2],[1,-8],[0,-2],[-1,-2],[1,-8],[7,-4],[1,-1],[-2,-2],[-3,-1],[-3,-3],[1,-3],[4,-2],[4,1],[6,3],[1,-2],[3,0],[0,-2],[2,-4],[1,1],[14,6],[3,0],[6,0]],[[5442,6995],[2,-1],[8,-3],[1,-1],[2,0],[1,-1],[2,0],[2,1],[0,3],[6,0],[2,-1],[2,-1],[1,-3],[1,1],[2,0],[0,1],[2,1],[3,1],[2,1],[2,-1],[3,-2],[2,0],[2,-1],[-2,-5],[1,0],[1,1],[1,0],[1,1],[1,0],[2,0],[3,-1],[9,0],[4,0],[2,0],[6,-1],[3,-1],[-1,-5],[4,-1],[1,-1],[2,0],[1,-2],[0,-4],[0,-3],[-1,-2],[1,-1],[3,-2],[5,-1],[6,-4],[0,-1],[1,-2],[0,-1],[2,0],[-1,4],[2,0],[0,-2],[2,-1],[2,-1],[2,2],[1,-5],[-2,-1],[-2,0],[1,-1],[2,0],[2,-1],[3,0],[3,0],[3,-3],[2,1],[2,2],[4,-1],[5,2],[4,2],[2,0],[2,-2],[5,-3],[3,1],[3,-1],[1,0],[4,2],[4,-4],[3,-1],[2,-2],[2,0],[1,0],[0,-3],[1,-1],[2,0],[0,1],[3,-1],[3,1],[3,1],[-1,1],[1,0],[2,0],[3,-4],[2,0],[3,0],[1,-1],[3,-1],[2,-1],[1,1],[2,2],[3,-3],[4,4],[2,1],[2,1],[0,-2],[1,-2],[3,0],[2,2]],[[5661,6936],[0,-5],[1,0],[-1,-2],[-3,-3],[1,-1],[1,-2],[2,0],[1,0],[2,-2],[1,-2],[0,-3],[-2,-6],[2,-6],[-2,-4],[0,-1],[4,-1],[0,-2],[-2,0],[-4,-1]],[[5662,6895],[-3,2],[-2,2],[-2,1],[-4,1],[-3,-2],[-3,-1],[-2,0],[-1,1],[2,2],[2,0],[2,1],[1,2],[-2,0],[-3,0],[-5,-2],[-3,1],[0,1],[0,3],[-2,0],[-1,0],[-1,2],[-1,1],[-3,1],[-2,1],[-3,0],[-1,-4],[1,-1],[-2,-2],[-2,1],[-3,3],[-2,-1],[0,-2],[1,-3],[0,-2],[-2,0],[-3,-1],[0,-2],[0,-2],[2,-1],[-3,-1],[-2,0],[-1,-2],[1,-1],[4,-1],[-2,-3],[-3,0],[-2,1],[-1,1],[-1,0],[-2,-1],[-4,2],[-1,2],[-2,1],[-3,-1],[-1,0],[-2,0],[-1,0],[-1,-2],[-1,0],[-3,0],[-2,-1],[-2,-1],[-3,0],[-1,1],[-3,3],[-3,-1],[-2,-4],[-8,1],[-3,0],[-3,0],[-2,0],[0,-3],[1,-5],[-2,-2],[-1,0],[-2,-2],[1,-2],[4,0],[1,-3],[2,-2],[4,-3],[3,-1],[2,0],[2,0],[1,-2],[0,-2],[-2,-1],[-4,0],[-1,-3],[2,0],[0,-4],[6,-2],[1,0],[2,1],[2,0],[7,-1],[5,-3],[0,-1],[-1,-2],[-2,-3],[2,-1],[2,0],[2,0],[1,-5],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[0,1],[0,1],[0,2],[-1,0],[0,3],[0,1],[0,1],[0,1],[-1,1],[-3,2],[-11,0],[-5,0],[-4,1],[-2,0]],[[5543,6839],[-3,1],[-5,1],[-6,-1],[-1,2],[1,4],[0,1],[-4,1],[-3,-1],[-3,1],[-2,0],[-10,-9],[-1,0],[-3,-1],[-1,1],[-1,1],[2,1],[0,2],[-5,2],[-2,2],[-3,1],[-2,0],[-1,0],[0,1],[0,3],[-2,-1],[-1,0],[-1,1],[-3,1],[-8,0],[-4,1],[-2,-1],[-2,-2],[-6,3],[-1,3],[-3,1],[-2,0],[-1,-1],[0,-1],[-6,-4],[-1,-3],[-2,-2],[-3,-1],[-4,-1],[-2,-2],[-2,-1],[-1,0],[-1,3],[-2,2],[-2,1],[0,2],[-2,2],[-6,0],[-1,3],[-10,3],[-4,1],[-4,-1],[-3,1],[-2,2],[-2,1],[0,2],[-1,1],[-4,1],[-1,-1],[-1,-3],[-1,-1],[-5,1],[-2,-1],[-2,-1],[-4,-1],[-1,0],[-2,-1],[-1,-2],[-3,0],[-3,3]],[[5363,6859],[1,4],[4,1],[1,1],[0,1],[2,1],[1,2],[1,2],[-2,1],[-1,1],[-3,1],[-3,0],[-1,1],[-2,2],[1,2],[-1,1],[-1,2],[1,2],[0,1],[0,2],[4,1],[-3,7],[-2,1],[-9,2],[-1,1],[0,3],[-1,2],[-3,1],[-6,1],[-3,0],[-6,3],[-5,4],[-1,1],[-1,6],[-2,2],[-1,0],[-3,-2],[-2,-1],[-3,0],[-2,2],[-1,2],[-4,0],[-3,0],[-2,2],[-2,2],[-5,2],[-1,1],[1,2],[-1,2],[0,2],[-3,2],[-2,1],[-3,-1],[-4,4],[-2,0],[-2,0],[1,2],[0,2],[-3,0],[-7,-1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,5],[-2,6],[-1,1],[-14,3],[0,2],[2,1],[3,1],[2,0],[4,-2],[4,0],[2,1],[0,1],[1,0],[3,0],[3,2],[5,6],[1,4],[0,2],[3,3],[2,2],[4,-2],[6,-1],[1,0],[1,0],[1,2],[1,1],[3,-1],[2,-1],[3,0],[1,0],[2,1],[1,3],[0,1],[-2,2],[1,1],[1,-1],[1,-1],[1,1],[0,1],[-1,2],[1,1],[3,1],[0,1],[-1,2],[-4,3],[2,3],[1,0],[1,2],[1,0],[1,4],[-2,1],[-2,-1],[-2,1],[-1,-1],[-1,0],[-2,1],[-3,-2],[3,-1],[-2,-1],[-9,2],[1,2],[-2,5],[3,0],[4,-1],[7,2],[0,3],[-4,3],[-4,0],[-3,1],[2,1],[-1,1],[1,0],[0,1],[-1,0],[1,4],[-1,1]],[[5295,7034],[0,1],[2,2],[1,1],[3,-1],[2,-2],[1,0],[3,-1],[2,0],[1,0],[2,1],[1,0],[5,-1],[1,1],[6,1],[5,-2],[0,-1],[-1,-1],[3,-2],[1,-1],[4,-1],[3,-1],[2,1],[1,-1],[-2,-4],[3,0],[1,1],[1,1],[1,2],[2,1],[1,-1],[2,-1],[0,-2],[2,0],[1,1],[3,-1],[-1,-3],[0,-1],[4,-1],[1,0],[2,1],[3,2],[3,0],[3,-2],[4,0],[2,1],[3,1],[5,-1],[2,-1],[1,-2],[0,-2],[2,-1],[3,0],[3,4],[3,-1],[1,-1],[1,-1],[0,-2],[-5,-1],[-1,-2],[6,-2],[2,0],[3,1],[2,0],[2,-1],[-4,-3],[1,-2],[4,0],[2,-3],[3,-1],[3,0],[3,0],[2,0],[0,-4],[1,-1],[3,0],[12,0]],[[4650,7231],[10,-3],[0,-3],[3,-3],[2,0],[4,-1],[-1,-2],[0,-2],[-2,-2],[2,-2],[-1,-3],[-4,-1],[1,2],[-2,1],[-1,-1],[-2,0],[-4,-1],[-2,-3],[-1,-1],[0,-2],[-1,-2],[9,-4],[2,1],[2,2],[0,2],[1,2],[8,1],[1,-1],[0,-2],[1,-2],[1,-3],[3,-3],[1,-2],[0,-1],[9,-3],[-2,-3],[-5,-2],[0,-3],[4,-1],[5,-1],[4,-2],[2,-1],[2,0],[4,-2],[3,-1],[2,0],[6,-4],[-1,-5],[2,-2],[3,-1],[3,-3],[3,-2],[2,-3],[0,-3],[2,-1],[2,-2],[6,-2],[-1,-6],[8,0],[-1,-3],[-1,-1],[-3,-1],[-2,0],[-4,-3],[-7,1],[-6,2],[-4,0],[-2,-1],[0,-1],[2,-1],[1,-2],[2,0],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[-1,-2],[1,-2],[2,-1],[0,-1],[-1,1],[-2,0],[0,-1],[4,-2],[3,-2],[1,-3],[-2,-2],[-4,-1],[-2,-1],[-1,-2],[1,-1],[2,0],[1,0],[5,-4],[-1,-2],[7,-4],[3,2],[2,1],[3,1],[-1,3],[2,2],[2,2],[2,1],[3,-1],[-1,-1],[2,-1],[2,-1],[0,-1],[-1,-2],[2,-2],[2,0],[3,1],[1,0],[0,-2],[3,-2],[2,-2],[0,-2],[3,1],[2,1],[2,1],[3,1],[3,0],[2,1],[3,1],[5,0],[1,-1],[3,-3],[1,-1],[9,-3],[1,-2],[2,-1],[2,-1],[-1,-2],[-2,-1],[-2,-1],[2,-3],[2,1],[2,2],[1,-1],[1,1],[2,0],[0,-1],[-2,-3],[2,-1],[-1,-2],[0,-2],[3,-1],[3,-1],[1,-1],[1,3],[1,0],[2,-2],[2,-1],[1,1],[1,0],[0,-1],[2,1],[0,-2],[3,-1],[-1,0],[-1,0],[2,-4],[3,-2],[1,-1],[-1,0],[-1,0],[2,-1],[1,0],[1,0],[3,1],[1,0],[0,-2],[2,-1],[2,0],[2,-1],[1,-1],[1,0],[0,-1],[-1,0],[-1,-1],[2,-1],[1,1],[1,1],[3,-1],[0,-1],[0,-1],[2,1],[1,-1],[-1,-1],[1,-1],[0,-2],[4,0],[2,0]],[[4706,6884],[-2,3],[-3,2],[-2,2],[-2,2],[-2,1],[-2,0],[-3,0],[-4,0],[-3,0],[-5,1],[-2,1],[-4,8],[-1,2],[3,5],[1,3],[0,3],[-2,5],[-2,2],[-3,0],[-3,-1],[-2,0],[-4,0],[-4,1],[-1,1]],[[4654,6925],[-2,1],[-1,2],[0,4],[1,5],[-1,3],[-3,9],[-5,9],[-3,4],[-1,2],[1,4],[-1,3],[0,2],[-1,3],[-3,1],[-3,1],[-7,4],[-5,2],[-7,4],[-7,4],[-5,3],[-6,2],[-5,3],[-5,2],[-2,2],[-3,2],[-4,3],[1,6],[-3,3],[-3,1],[-4,1],[-3,0],[-8,3],[-7,3],[-3,3],[-6,6],[-3,2],[-6,5],[-3,3],[-3,5],[-1,5],[1,5],[2,5],[1,6],[0,2],[-5,6],[-4,5],[-6,6],[-1,2],[-1,2],[-4,4],[-7,5],[-3,1],[-3,1],[-4,-1],[-9,-1],[-9,2],[-9,8],[-5,6],[-3,1],[-4,3],[-4,4],[-4,6],[-3,7],[1,3],[0,4],[-2,4],[-4,7],[-2,6],[0,6],[2,4],[-1,3],[-3,3],[-6,3],[1,3],[0,1],[-6,5],[-1,1],[-4,3],[-2,0],[-5,0]],[[4408,7196],[2,3],[1,2],[2,2],[2,2],[3,1],[2,1],[2,1],[2,3],[9,1],[-1,3],[-1,2],[0,2],[2,2],[1,1],[1,2],[3,1],[3,0],[0,-1],[0,-1],[-2,-1],[3,-1],[2,-1],[2,1],[1,2],[3,-2],[2,1],[1,0],[-1,-2],[2,-1],[2,0],[3,3],[1,-1],[3,2],[2,2],[0,1],[3,0],[2,0],[1,0],[-1,-3],[-1,-2],[1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-3],[1,-2],[2,-1],[3,1],[3,1],[4,2],[3,2],[4,-1],[3,-1],[1,1],[1,0],[3,1],[1,1],[1,3],[1,4],[2,3],[0,4],[1,1],[1,1],[1,1],[5,0],[0,1],[-3,3],[2,1],[2,0],[3,-1],[9,1],[1,0],[0,-2],[2,-1],[1,0],[3,1],[2,0],[1,0],[0,-1],[1,0],[1,-1],[-1,-2],[-1,-1],[-3,-2],[-2,-2],[2,-2],[2,-2],[3,0],[3,-2],[4,1],[2,0],[0,-1],[0,-1],[3,-5],[2,-2],[0,-1],[0,-4],[0,-2],[2,-2],[5,-5],[3,-3],[2,1],[2,1],[2,-1],[2,1],[3,1],[2,0],[1,-2],[2,-1],[0,-2],[1,-1],[1,-4],[2,-1],[2,-1],[4,-5],[4,5],[3,5],[-2,2],[0,2],[1,7],[4,1],[4,1],[1,1],[1,3],[0,1],[-2,1],[1,2],[2,1],[4,2],[2,1],[2,0],[2,1],[3,-1],[1,1],[0,2],[4,2],[3,-1],[3,-1],[3,2],[3,2],[2,3],[3,1],[2,1],[5,-1],[1,-1],[2,0],[3,4],[1,0],[2,-1],[1,0]],[[5830,6539],[-1,0],[-3,-6],[-2,-3],[-4,-3],[-1,-1],[-4,-2],[-1,0],[-3,0],[-1,0],[-2,1],[-3,0],[-1,0],[-2,0],[-2,0],[-3,1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,1],[-1,0],[-2,1],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-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,-2],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[1,1],[1,0],[2,1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[3,-1],[1,0],[1,0],[0,1],[-1,1],[-2,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[1,1],[2,0],[1,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0]],[[5668,6599],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[1,2],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[3,0],[1,0],[0,1],[-1,1],[0,1],[-1,1],[-2,0],[-1,1],[-1,1],[-1,-1],[-1,0],[-1,1],[1,1],[1,1],[0,1],[0,1],[1,0],[1,0],[2,1],[3,0],[2,0],[2,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-2,1],[-2,1],[-1,0],[0,2],[1,1],[1,2],[0,1],[1,2],[0,-1],[1,0],[1,1],[1,0],[1,1],[0,2],[0,2],[0,2],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[2,1],[1,1],[1,0],[1,1],[1,1],[3,1],[2,0],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,2],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,0],[2,0],[3,-1],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,2],[2,1],[0,1],[1,0],[1,1],[2,-1],[0,-1],[1,-1],[1,-1],[0,-1],[2,-1],[1,0],[3,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[2,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[2,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[1,-1],[1,0],[1,-1],[1,0],[2,0],[2,0],[1,0],[0,1],[2,2],[2,1],[0,1],[0,1],[1,0],[0,1],[2,2],[0,1],[1,0],[1,1],[2,0],[1,0],[1,0],[2,0],[2,-1],[3,-2],[1,0],[2,1],[0,1],[-1,1],[-2,0],[1,2],[4,5],[2,2],[2,-1],[2,-1],[6,-11],[1,-1],[2,0],[2,2],[3,3],[2,1],[2,0],[3,-2]],[[5849,6660],[1,-2],[1,-3],[-1,-1],[-2,0],[-3,-1],[0,-2],[3,-3],[3,-3],[5,-7],[1,-1],[1,0],[1,1],[1,3],[1,0],[2,0],[2,-3],[1,0],[2,0],[1,1],[0,1],[0,1],[-1,1],[-3,1],[-2,2],[-2,3],[1,1],[1,1],[3,0],[2,0],[2,-2],[7,-5],[4,0],[6,0],[2,-2],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[2,2],[2,0],[1,0],[2,0],[3,-5]],[[5900,6644],[-2,-2],[0,-3],[-3,-4],[-4,-2],[-4,-2],[-4,-3],[-4,-4],[-3,-4],[0,-2],[5,-1],[7,-1],[2,-1],[6,-3],[7,-2],[2,-1],[2,-6],[-1,-2],[-2,-5],[-1,-3],[-3,-5],[0,-3],[-2,-3],[-3,-4],[-4,-4],[-2,-2],[-5,-3],[-3,0],[-1,0],[-10,2],[-2,1],[-6,1],[-5,1],[-5,-1],[-3,-1],[-2,0],[-6,-1],[-7,-2],[-6,-2],[-4,-3],[-2,-1],[-2,-2],[1,-2],[4,0],[4,-2],[9,-2],[0,-1],[-2,-4],[3,-1],[1,-3],[2,-2],[4,-2],[1,0],[1,-2],[-5,0],[-2,1],[-3,0],[-3,0],[-5,-2]],[[3411,7342],[1,0],[0,-1]],[[3412,7341],[0,-5],[0,-6]],[[3412,7330],[-1,-2],[0,-5],[1,-2],[13,0],[2,1],[0,1],[-1,1],[-4,4],[-1,1],[3,2],[6,1],[5,-2],[2,-1],[5,-3],[2,-1],[0,-2],[1,-5],[3,-6],[0,-3],[-3,-5],[-1,-2],[1,-5],[2,-1],[2,1],[3,0],[2,1],[3,3],[12,4],[2,1],[4,0],[3,-1],[2,-2],[2,-4],[2,-1],[3,-1],[5,0],[4,1],[3,0],[3,4],[2,0],[6,1],[0,-7],[6,0],[8,3],[2,0],[2,-1],[4,-4],[2,-2],[1,-2],[0,-1],[-1,-3],[-2,-2],[-5,-6],[-1,-2],[-1,-2],[1,-2],[3,-4],[9,-3],[1,-1],[0,-2],[-1,-5],[1,-1],[2,-1],[4,0],[7,2],[2,2],[0,3],[-1,2],[-3,1],[-4,2],[-1,1],[1,1],[1,1],[2,0],[2,0],[2,-1],[2,-1],[3,-2],[0,-2],[3,-4],[2,-1],[2,-1],[5,1],[1,2],[1,3],[-1,3],[0,2],[1,4],[1,1],[2,1],[3,0],[2,0],[2,0],[1,-4],[1,-2],[2,0],[2,2],[3,4],[3,1],[6,0],[6,-1],[2,-1],[0,-1],[-1,-2],[-2,-1],[-4,-1],[-3,1],[-3,0],[-2,-2],[-2,-2],[-1,0],[-3,-1],[-3,0],[-3,-1],[-2,-1],[0,-3],[1,-5],[-1,-3],[0,-3],[0,-1],[2,-1],[2,1],[5,7],[2,1],[7,-1],[5,3],[2,0],[6,-4],[4,-3],[3,-2],[3,-1],[7,0],[4,-1],[3,-1],[3,-2],[1,-7],[1,-2],[5,-5],[1,-2],[-1,-5],[1,-2],[3,0],[3,0],[6,3],[3,1],[2,-3],[1,-2],[-1,-4],[0,-2],[2,-1],[2,-1],[6,0],[2,0],[2,-1],[1,-3],[0,-5],[1,-4],[2,-2],[2,-2],[3,0],[3,1],[1,1],[1,2],[-2,3],[-2,1],[-3,0],[-1,0],[0,7],[-1,2],[-5,2],[2,4],[3,0],[3,-2],[6,-4],[2,0],[11,1],[2,-1],[-1,-4],[1,-3],[8,-7],[4,-2],[1,0],[2,0],[0,2],[0,2],[-4,5],[0,1],[1,1],[5,0],[3,-1],[2,-1],[1,-1],[-2,-2],[-1,-5],[0,-1],[1,-2],[6,-3],[0,-1],[2,-8],[0,-1],[3,-1],[3,0],[3,1],[3,0],[3,-2],[2,1],[1,2],[0,2],[0,4],[-1,2],[0,3],[1,2],[3,0],[6,-3],[4,2],[2,0],[1,-1],[1,-3],[2,-2],[2,0],[2,0],[2,0],[0,1],[3,7],[2,0],[2,-1],[3,-1]],[[3787,7194],[-1,-2],[-2,-4],[0,-2],[0,-2],[2,-1],[3,0],[1,1],[0,1],[1,4],[0,1],[3,1],[2,-1],[4,-8],[2,-1],[3,0],[0,-2],[-2,-3],[0,-1],[2,-1],[4,0],[6,2],[1,0],[2,-2],[2,-5],[2,-2],[4,-2],[2,-2],[4,-4],[2,-3],[2,-3],[0,-1],[-2,-3],[-2,-2],[-3,-1],[-2,0],[-2,0],[-4,1],[-2,1],[-2,1],[-5,0],[-4,-1],[-2,-4],[-1,-2],[-3,-9]],[[3802,7133],[-3,0],[-2,1],[-3,3],[-3,4],[-2,2],[-2,1],[-2,-1],[-2,-3],[-3,-1],[-1,0],[-2,1],[-1,2],[2,2],[0,2],[-3,1],[-12,-2],[-3,0],[-3,-1],[-2,-2],[-3,-5],[-4,-2],[-4,0],[-10,2],[-4,0],[-2,-1],[-2,-2],[-1,-2],[-2,-2],[-2,0],[-13,0],[-4,0],[-3,2],[-2,1],[-10,3],[-4,3],[-5,2],[-11,1],[-8,2],[-5,0],[-3,1],[-4,1],[-2,2],[-6,8],[-2,2],[-2,2],[-6,-1],[-6,-2],[-5,0],[-2,1],[-2,3],[-3,4],[-2,4],[-2,2],[-1,3],[-1,1],[-5,1],[-5,0],[-9,-2],[-3,0],[-7,0],[-3,0],[-6,-2],[-3,-1],[-3,-2],[-1,-3],[-1,-3],[0,-3],[0,-3],[-3,-2],[-2,0],[-4,1],[-5,3],[-7,3],[-2,0],[-4,-1],[1,1],[1,4],[-3,1],[-1,2],[-2,2],[-2,4],[-3,5],[0,2],[1,0],[4,-4],[2,-1],[10,2],[2,5],[1,0],[7,2],[3,2],[0,2],[3,2],[1,3],[0,3],[-2,1],[-3,1],[-2,-2],[-3,1],[-4,0],[-1,1],[-1,2],[-1,1],[-1,1],[-2,1],[-2,2],[-2,-2],[-2,-3],[-1,-1],[-2,1],[-5,2],[-8,1],[-5,2],[-5,-1],[-3,1],[-3,1],[-3,0],[-3,0],[-6,-1],[-2,0],[-1,-1],[0,-1],[0,-1],[2,-2],[1,-1],[0,-3],[-1,-1],[-3,1],[-2,0],[-2,0],[-1,-1],[0,-2],[1,-1],[2,-4],[-1,-2],[-1,0],[-2,2],[-2,1],[-1,-1],[1,-2],[0,-1],[-2,0],[-6,2],[-3,1],[-2,2],[-1,0],[-2,-1],[-2,1],[-2,-1],[-3,1],[2,-5],[-1,-7],[0,-1],[2,-2],[0,-1],[-1,0],[-3,1],[-1,0],[-1,-1],[-2,-3],[-2,-2],[-2,0],[-3,0],[0,1],[5,4],[0,1],[-3,1],[-2,1],[3,3],[-1,2],[-1,1],[-1,3],[-1,1],[-4,1],[-4,0],[-3,0],[-3,-3],[-2,-2],[-3,0],[-2,1],[-2,1],[-1,2],[1,1],[-2,1],[-10,-5],[-2,1],[-1,1],[-1,2],[-2,1],[-3,1],[-6,0],[-1,1],[1,1],[-1,1],[-4,1],[-1,-2],[1,-2],[1,-1],[1,-5],[-1,-2],[-2,-2],[-3,0],[-3,1],[-1,1],[-3,2],[-2,2],[-11,3],[-4,1],[-2,2],[-5,0],[-2,2],[-3,-1],[-3,1],[-2,1],[-3,0],[-1,-2],[-4,0],[-3,2],[-4,2],[0,1],[-4,1],[-6,0],[-2,-4],[-2,-2],[-2,2],[-5,-1],[-3,-1],[-2,-3],[-4,-5],[4,-1],[0,-1],[1,-2],[-1,-2],[-1,-2],[-5,-1],[-4,0],[-1,-1],[-1,-2],[-2,1],[-1,2],[-2,0],[-2,0],[-2,-2],[-1,0],[-3,-5],[-1,-1],[-3,-1],[-16,-4],[-4,1],[-1,-2],[-1,-2],[-2,-2],[-2,0],[-1,0],[-1,4],[-2,-1],[-3,-3],[-5,0],[-3,-1],[-2,-1],[-1,-1],[-4,-1],[-5,-1],[-5,2],[-4,0],[-3,-1],[-4,1],[-1,1],[1,4],[1,1],[-1,2],[-3,0],[-2,0],[-2,1],[-1,-4],[-3,-12],[-2,-3],[-2,-2],[0,-3],[1,-2],[3,-2],[3,-1],[-2,-3],[-3,-2],[-3,-3],[-15,-3],[4,6],[2,2],[2,1],[-4,4],[-3,0],[-2,-1],[-3,0],[-3,-2],[-2,-1],[-1,3],[1,3],[1,3],[3,6],[1,4],[-3,3],[-3,2],[-1,2],[-1,0],[-3,3],[2,2],[2,2],[-1,1],[0,4],[2,0],[2,0],[2,0],[3,4],[4,-1],[2,1],[0,1],[0,4],[5,1],[4,3],[4,2],[7,0],[11,4],[12,3],[6,1],[11,2],[2,5],[1,0],[2,0],[1,-2],[2,1],[4,2],[17,8],[4,3],[1,0],[2,0],[2,-2],[2,-1],[2,1],[1,3],[10,1],[5,2],[4,1],[2,2],[4,-1],[6,-1],[2,2],[0,2],[2,0],[2,1],[-1,1],[-2,1],[0,1],[2,0],[0,1],[0,1],[1,2],[3,2],[-1,0],[-4,0],[-2,1],[0,1],[-1,2],[-1,0],[-4,-1],[-2,-2],[-1,-4],[0,-4],[1,0],[0,-2],[-3,0],[-1,-1],[-3,2],[-2,-1],[-2,2],[-2,1],[0,3],[-1,2],[-6,5],[2,3],[0,2],[-3,2],[-3,0],[-1,-1],[-3,-7],[-2,-2],[-1,-1],[-3,0],[-4,2],[-4,0],[-2,-2],[-2,-3],[-1,1],[-1,2],[-1,1],[-2,1],[-6,0],[-2,0],[-2,1],[-2,0],[-1,3],[-2,0],[-5,1],[-3,-1],[-3,-1],[-2,1],[1,4],[1,1],[2,1],[1,3],[0,2],[-1,1],[1,1],[-1,3],[-1,0],[-4,-1],[-4,2],[-3,-2],[-3,-3],[-2,-1],[-2,0],[-2,0],[-4,2],[1,1],[1,2],[0,4],[-2,1],[1,0],[-2,1],[-6,0],[0,1],[2,1],[3,1],[2,2],[4,-1],[4,0],[1,2],[3,1],[3,1],[5,0],[9,3],[4,-1],[2,2],[2,-1],[2,1],[1,2],[-1,1],[0,2],[-1,1],[0,2],[0,1],[2,0],[4,2],[0,2],[-1,2],[1,2],[4,2],[4,0],[1,0],[2,0],[1,-1],[2,0],[4,1],[5,1],[4,2],[2,2],[3,3],[0,2],[-3,3],[-5,2],[-4,1],[-3,0],[-1,1],[0,2],[2,4],[0,2],[-2,1],[-1,1],[1,2]],[[3262,7322],[4,-1],[3,0],[6,0],[3,-1],[3,1],[3,3],[4,2],[0,-1],[2,-1],[2,-1],[2,0],[1,1],[2,0],[8,-2],[3,0],[9,0],[2,0],[3,-2],[3,-1],[2,0],[2,0],[2,3],[-1,3],[1,2],[5,1],[1,1],[3,0],[2,0],[2,5],[1,1],[8,2],[4,3],[1,0],[-1,1],[3,-1],[1,-1],[-1,-9],[2,-2],[1,-2],[2,-2],[4,0],[4,2],[2,2],[0,2],[0,2],[-5,1],[-2,1],[-2,2],[1,3],[1,2],[2,1],[4,1],[5,-1],[4,-1],[4,-1],[1,-3],[-1,-10],[-1,-4],[1,-1],[1,-2],[5,-1],[2,-1],[4,1],[2,1],[1,2],[0,2],[-4,6],[0,2],[1,1],[3,2],[3,1],[5,6],[1,0]],[[3661,7666],[3,0],[4,-2],[1,-3],[1,-7],[1,0],[1,-2],[9,-2],[4,-3],[7,-4],[4,1],[3,2],[2,0],[1,1],[2,2],[3,0],[3,1]],[[3710,7650],[2,-1],[-2,-4],[6,-2],[2,-1],[5,-2],[-4,-1],[-1,-1],[3,-1],[1,-1],[1,-1],[2,-2]],[[3725,7633],[-3,-1],[-2,-2],[-5,-12],[-2,-2],[3,-6],[-1,-1],[-2,-2],[-2,-1],[-3,-3],[1,-2],[-3,-2],[-5,-4],[3,-2],[-4,-4],[-6,-4],[-1,-2],[-3,-1],[-3,-1],[-4,2],[-1,-2],[2,-2],[0,-1],[-6,-2],[-2,-2],[-1,-2],[-1,-2],[-1,0],[0,-1],[-2,-1],[1,-2],[-4,-4],[-1,1],[-2,-1],[0,-1],[5,-3],[5,-2],[-2,-3],[0,-1],[2,-1],[0,-1],[0,-2],[1,-1],[1,-1],[-1,-2],[-4,-4],[-2,-1],[-4,1],[-1,1],[-2,0],[-1,1],[-6,1]],[[3656,7543],[-1,0],[-3,0],[-2,1],[0,1],[-2,1],[0,2],[-2,1],[-2,1],[-6,-14],[-14,-14],[-6,-14],[-11,-13],[-19,-9],[-27,-1],[-20,13],[-7,-3],[0,1],[-1,3],[-4,-1],[-3,2],[-2,2],[-4,2],[-7,3],[-1,1],[5,2],[-4,5],[1,1],[2,2],[0,2],[-1,3],[-4,2],[-2,0],[-2,0],[-4,-1],[-1,0],[-2,2],[-4,2],[-2,0],[-3,0],[-2,0],[-2,-2],[-8,1],[-2,-1],[-6,3],[-2,0],[-5,-1],[-2,1],[2,2],[-1,1],[-3,5],[-3,-1],[-5,-2],[-2,-1],[0,-4],[-2,0],[-2,-1],[-3,-1],[-4,-2],[0,-2],[0,-1],[2,-1],[5,-1],[4,-1],[-2,-2],[-4,-3],[-3,1],[-2,0],[-3,2],[-3,-5],[0,-2],[3,0],[1,-1],[0,-2],[-2,-2],[-4,-1],[-1,-2],[0,-2],[2,-6],[8,-6],[-1,-2],[-2,-3],[3,-3],[1,-1],[-2,-1],[-6,1],[-3,-1],[-2,-1],[-2,-1],[-2,-2],[-1,-3],[2,-4],[5,-5],[-1,0],[-7,0],[-4,-1],[0,-1],[-3,0],[-1,4],[-4,3],[-4,-4],[-5,0],[-2,0],[-3,0],[-2,-2],[-5,-4],[-2,-1],[-5,-1]],[[3382,7455],[-1,1],[-3,1],[-1,-1],[-2,-1],[-2,-2],[-2,-1],[-2,0],[-1,1],[-1,0],[-1,3],[-4,5],[-1,2],[0,2],[3,3],[0,3],[0,1],[-3,5],[-2,6],[-3,1],[-2,1],[-1,-1],[-3,2],[-1,3],[-1,1],[-3,0],[-1,-2],[-1,0],[-2,1],[-9,6],[-1,1],[2,1],[1,3],[1,2],[-2,1],[1,3],[0,2],[0,2],[-1,1],[0,1],[0,2],[2,4],[2,1],[2,1],[3,1],[3,0],[3,0],[3,0],[0,1],[-2,3],[-2,1],[-2,4],[-2,1],[-1,3],[-1,2],[0,2],[0,2],[1,3],[0,2],[-4,4],[-2,0],[-3,0],[-6,6],[0,2],[10,5],[2,2],[-2,0],[-4,0],[-9,1],[-2,1],[-1,1],[-2,1],[-2,4],[0,2],[1,4],[0,1],[-2,1],[-4,1],[-2,2],[-2,5],[-2,1],[-2,2],[-2,0],[-9,5],[-3,0],[-2,1],[-7,-2],[-5,0],[-2,1],[-3,2],[-2,4],[-1,1],[-2,1],[-6,0],[-2,-2],[-1,-2],[-4,-4],[-2,-3],[-1,-1],[-3,0],[-4,1],[-2,0],[-5,0],[-2,-1],[-1,0],[-1,-2],[-1,0],[-4,0],[-2,-1],[-1,-1],[1,-2],[-1,-1],[-2,-1],[-2,0],[-2,0],[-3,0],[-2,1],[-5,1],[-1,1],[-2,2]],[[3205,7589],[6,4],[2,3],[0,3],[0,3],[-4,0],[-6,0],[-2,1],[-1,2],[2,2],[6,2],[3,2],[1,2],[-7,5],[-4,2],[-1,3],[-1,1],[-3,2],[-2,2],[-1,1],[-2,2],[-5,2],[-1,2],[2,3],[0,1],[-2,5],[-3,2],[-1,2]],[[3181,7648],[6,0],[3,0],[2,-1],[3,1],[5,1],[3,-1],[7,1],[5,0],[2,0],[9,0],[2,1],[3,3],[4,2],[2,1],[1,0],[2,1],[3,3],[3,-3],[0,1],[2,-3],[2,1],[4,0],[1,0],[4,-1],[1,0],[1,1],[1,2],[2,0],[3,4],[1,-1],[2,0],[4,-1],[1,-2],[4,-3],[3,-3],[3,-3],[2,-1],[2,2],[3,-1],[1,0],[2,0],[2,1],[2,0],[5,3],[-3,5],[1,1],[2,2],[1,2],[-1,3],[3,1],[2,2],[1,2],[-1,3],[7,3]],[[3316,7677],[2,0],[0,-3],[2,-3],[1,-1],[1,-2],[1,0],[4,3],[2,1],[3,0],[2,0],[4,1],[3,0],[-1,3],[-1,2],[3,0],[2,1],[2,0],[2,2],[2,0],[1,1],[1,1],[2,1],[2,1],[2,-3],[1,-2],[-2,0],[3,-4],[-1,-1],[-2,-2],[-2,-3],[3,-2],[5,1],[3,0],[1,0],[3,-3],[10,-6],[5,0],[4,-3],[2,-2],[4,1],[6,-4],[-1,-3],[0,-1],[3,0],[3,1],[4,0],[2,1],[2,0],[1,-1],[2,-1],[1,1],[3,0],[2,0],[4,-2],[2,0],[3,1],[0,5],[9,5],[4,3],[1,4],[7,4],[8,-2],[4,0],[2,-1],[2,-2],[2,0],[3,0],[4,2],[1,-1],[-2,-4],[1,-1],[3,0],[5,2],[2,1],[3,-3],[4,-1],[3,-4],[0,-3],[-3,-4],[1,-1],[2,-1],[4,-1],[4,0],[4,3],[4,3],[1,1],[2,-1],[4,0],[3,1],[4,2],[7,6],[1,0],[4,-3],[1,-1],[2,1],[1,1],[4,1],[1,1],[1,3],[3,0],[7,0],[3,1],[1,1],[4,1],[2,0],[2,-2],[4,0],[7,3],[3,1],[1,0],[3,1],[1,2],[3,0],[1,1],[2,4],[4,1],[2,-1],[2,1],[1,-1],[2,-1],[3,-1],[2,-1],[1,-2],[0,-3],[2,-2],[0,-1],[-3,-5],[2,-2],[3,1],[3,4],[6,-3],[0,-2],[2,-2],[2,1],[3,-2],[3,1],[2,2],[6,-2],[4,0],[6,5],[6,5]],[[5412,6711],[-1,-1],[0,-1],[-1,-2],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[1,-2],[2,-1],[0,-1],[2,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-2],[1,0],[1,0],[1,0],[1,-1],[1,1],[2,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-2],[1,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[-1,-2],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[2,1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[3,-1],[2,-1],[1,0],[1,-1],[2,-2]],[[5466,6516],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[2,-1],[0,-1],[1,-1],[2,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[0,-1],[-2,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-3,0],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[-2,-2],[-2,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-6,-7],[-2,-2],[-2,-3],[-1,-1],[-7,0],[-4,-1],[-5,-6],[0,-3],[-1,-2],[-2,-1],[-7,2],[-3,-3],[-3,-6],[-2,-1],[-3,0],[-3,-2],[0,-2],[-6,-5],[-1,0],[-3,0],[-1,1],[-4,2],[-1,1],[-2,2],[-4,-1],[0,-3],[1,-4],[-1,-2],[-1,-2],[-1,-1],[-4,-2],[-2,2],[-3,1],[0,-3],[0,-1],[-4,0],[-1,-1],[1,-1],[-1,-2],[3,-1],[4,1],[2,-3],[-7,-2],[-4,0],[0,-2],[-6,-1],[4,-2],[4,-4],[2,-2],[1,-2]],[[5389,6370],[-3,0],[-2,2],[-4,2],[-5,2],[-3,-1],[-4,2],[-6,2],[-3,0],[-6,4],[-9,3],[-4,-2],[-3,0],[-7,-2],[-4,1],[-1,-1],[-2,-4],[-1,0],[-1,0],[-1,3],[-4,1],[0,2],[-5,1],[-1,1],[-1,2],[-3,2],[1,4],[-2,2],[-4,0],[-1,1],[-2,0],[-1,1],[-2,1],[-3,3],[1,3],[0,2],[2,2],[4,4],[0,4],[-1,2],[-2,2],[-2,12],[-1,1],[0,1],[1,2],[0,1],[-3,1],[0,1],[2,4],[1,1],[0,2],[-1,1],[-3,1],[-1,0],[-1,-1],[2,-2],[1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,0],[-1,0],[-1,3],[-4,1],[-2,0],[-1,-1],[-1,0],[-1,1],[-6,1],[-2,1],[-3,3],[-2,1],[-3,0],[-18,-3],[-1,0],[-4,2],[-1,1],[-4,2],[-10,3],[-1,1],[-1,1],[-2,0],[-1,1],[-1,1],[-1,1],[-1,2],[-8,2],[-1,-3],[0,-2],[-2,-1],[-2,0],[-10,1],[-1,1],[1,3],[-1,2],[-2,3],[-1,1],[-2,0],[-4,-1],[-1,0],[-1,3],[0,2],[0,1],[-1,0],[-2,-2],[-3,0],[0,-2],[-1,0],[-4,-3],[-2,0],[-3,0],[-2,-2],[-2,0],[-4,1],[-2,1],[-1,1],[1,0],[2,0],[0,1],[-2,1],[-1,1],[-4,2],[0,1],[1,1],[4,0],[2,1],[3,4],[3,0],[0,1],[2,1],[2,0],[1,1],[-5,3],[2,3],[0,1],[-1,1],[-3,0],[-1,-1],[-1,-3],[-2,0],[-1,-3],[-1,-2],[-2,0],[1,5],[-1,1],[1,1],[-6,2],[1,2],[1,1],[-1,2],[1,1],[2,1],[3,1],[2,1],[1,0],[2,-1],[1,1],[1,1],[0,3],[0,1],[-1,2],[-1,0],[-1,3],[-2,1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-7,1],[3,6],[-1,1],[-4,2],[-3,0],[-2,1],[-4,-2],[-5,-1],[0,1],[-4,-1],[-3,0]],[[5119,6517],[2,2],[-9,2],[-3,0],[0,5],[0,6],[0,2],[2,0],[0,3],[8,0],[1,0],[6,0],[1,1],[3,1],[-1,0],[-2,4],[-1,3],[-1,5],[-1,1],[-2,5],[1,2]],[[5123,6559],[1,1],[11,6],[8,4],[3,1],[7,7],[5,2],[6,2],[10,2],[16,0],[13,-1],[12,-2],[6,-1],[2,-1],[10,-6],[2,-2],[2,-1],[3,0],[3,1],[2,1],[2,3],[3,4],[-1,2],[-1,1],[-4,4],[-4,5],[0,1],[2,4],[9,9],[2,1],[4,2],[6,1],[9,3],[5,1],[2,1],[7,1],[2,1],[2,1],[1,2],[3,3],[1,1],[1,4],[0,2],[-17,12],[1,1],[-3,2],[-2,2],[-3,-1],[-4,-1],[-1,-2],[0,-4],[-2,-1],[-5,-3],[-3,-1],[-16,-4],[-8,0],[-4,1],[-6,2],[-5,2],[-5,4],[-5,6],[-2,1],[-16,-1],[-4,0],[-5,0],[-3,2],[-1,2],[-4,5],[-1,1],[-1,7],[1,7],[-2,3],[-8,4],[-4,2],[-5,0]],[[5153,6677],[0,6],[-3,2],[1,1],[1,1],[4,2],[1,0],[0,7],[-1,1],[-4,2],[0,-1],[-1,-1],[-2,1],[-1,1],[1,1],[-1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[5,-1],[5,-1],[3,1],[2,-1],[0,-1],[-3,-2],[1,-1],[1,-1],[2,-2],[0,-1],[-4,0],[-1,-1],[0,-1],[1,-1],[1,-2],[3,-2],[1,-1],[2,-2],[2,0],[0,-1],[2,-1],[2,1],[1,1],[0,1],[5,2],[3,2],[1,1],[1,0],[1,0],[4,1],[3,0],[2,-1],[3,-1],[4,-2],[2,0],[3,3],[1,2],[0,1],[-4,1],[-2,1],[0,1],[-1,2],[1,3],[-2,0],[-9,0],[-1,1],[0,2],[1,1],[2,1],[4,0],[2,-1],[1,0],[3,2],[1,0],[4,-1],[4,-1],[2,0],[1,0],[1,1],[2,3],[1,2],[-1,3],[-4,1],[-1,1],[6,7],[-2,1],[-1,3],[1,2],[0,1],[2,1],[4,1],[2,1],[3,1],[8,2],[3,0],[3,0],[2,-1],[8,-2],[-2,-4],[1,-2],[1,0],[3,0],[4,0],[2,2],[4,-3],[3,0],[0,-2],[2,-1],[2,3],[4,-1],[2,0],[0,-1],[0,-1],[2,-2],[2,0],[2,3],[4,-2],[2,-1],[5,1],[0,2],[0,1],[2,1],[1,1],[1,1],[-1,3],[1,3],[3,3],[1,0],[4,-4],[1,-1],[6,0],[4,0],[2,0],[1,-1],[2,-1],[2,1],[2,1],[0,1],[2,2],[4,-1],[1,0],[2,1],[2,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[-2,-2],[-1,-1],[-2,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[2,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[-2,-2],[0,-1],[1,0],[2,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,1],[1,1],[1,0],[1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[-1,-1],[1,0]],[[5196,7065],[0,-2],[0,-2],[-1,-1],[0,-2],[1,-2],[-2,-3],[0,-1],[1,-5],[-2,-1],[-2,0],[-6,1],[-1,-1],[-1,-1],[0,-2],[0,-1],[6,-3],[2,0],[2,-1],[2,-1],[1,-1],[3,-1],[1,0],[1,1],[-1,3],[5,1],[0,1],[1,1],[-1,1],[-3,0],[-1,1],[3,2],[1,0],[3,1],[1,1],[1,0],[4,-1],[0,1],[4,-1],[2,1],[1,1],[2,-1],[2,-1],[4,-1],[2,1],[1,0],[2,0],[1,-1],[2,-1],[1,0],[3,-3],[1,1],[0,1],[3,0],[-1,2],[2,0],[2,-1],[2,-1],[1,-1],[2,-3],[1,-1],[3,0],[4,-3],[3,0],[1,4],[3,0],[2,0],[1,4],[3,0],[4,1],[2,0],[2,-1],[2,-1],[2,-1],[3,-2],[-1,0],[-3,0],[0,-1],[1,-2],[1,-3],[4,1],[4,-1]],[[5363,6859],[-4,1],[-4,2],[-4,-1],[-4,1],[-10,-1],[-6,0],[-1,1],[0,1],[0,2],[-6,2],[-4,0],[0,-1],[0,-1],[1,-4],[-1,0],[-10,4],[-1,0],[-1,-1],[0,-1],[-2,-2],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[-2,-1],[-2,1],[-5,1],[-3,1],[-1,3],[-5,0],[0,1],[0,2],[-2,1],[-1,1],[-4,0],[-6,-2],[-1,-1],[1,-2],[1,-2],[-3,-2],[0,-1],[-2,-1],[-1,-2],[-5,-1],[-2,-2],[-2,0],[-2,1],[-2,-1],[-1,-1],[-1,0],[-3,1],[-8,3],[-2,1],[0,-4],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-3,0],[-2,1],[-2,2],[-3,3],[1,2],[0,1],[-1,1],[-2,1],[2,2],[0,1],[0,1],[0,2],[-5,1],[-2,2],[-4,1],[-3,3],[-7,3],[-1,-1],[-2,-1],[-2,-3],[1,-1],[1,-3],[0,-1],[-2,-2],[-5,3],[-1,-2],[-4,2],[-4,2],[-1,1],[0,2],[0,4],[-1,1],[-2,0],[2,3],[1,3],[0,1],[0,1],[-2,1],[-1,0],[-4,-2],[-2,0],[-3,1],[-2,3],[-1,0],[-1,0],[-2,1],[1,2],[2,2],[1,1],[-1,2],[-2,2],[-3,2],[-3,1],[-1,1],[0,3],[-1,1],[-2,1],[-3,1],[-1,1],[-1,-1],[-1,-1],[-1,-3],[-1,-5],[-3,-2],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-2,0],[-3,0],[-6,1],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-1,1],[0,-1],[-3,-1],[-3,-2],[-1,0],[-1,-1],[0,-3],[1,-2],[-2,-2],[0,-1],[2,0],[3,1],[2,-1],[2,-4],[3,-2],[-1,-2],[4,-2],[-3,-4],[-3,-1],[-3,0],[-1,-2],[-3,0],[-2,1],[-1,1],[0,1],[-1,-4],[0,-2],[-4,-3],[-2,0],[-1,-2],[2,-1],[2,0],[1,1],[3,0],[1,0],[0,2],[1,1],[1,-1],[3,-3],[-4,-2],[-1,-1],[2,0],[6,1],[1,-1],[1,0],[3,2],[1,-1],[1,-1],[0,-2],[0,-1],[0,-1],[-3,-3],[-2,-3],[4,-4],[1,0],[1,-1],[2,0],[2,-2],[3,0],[2,-2],[2,-1],[0,-3],[-1,0],[-1,0],[-2,0],[-2,0],[-5,3],[-7,-2],[-1,-1],[-4,0],[-2,0],[-3,-1],[-3,-3],[-2,0],[-1,0],[-1,1],[-2,0],[0,2],[-4,3],[-1,1],[-4,-2],[-3,-2],[1,-1],[4,-1],[1,0],[2,0],[0,-1],[0,-2],[-2,-2],[-4,0],[-2,0],[-1,-1],[-1,-4],[0,-1],[-3,0],[-1,1],[0,1],[-1,1],[-2,0],[-1,-1],[-1,-1],[-5,-1],[-3,-1],[-1,0],[2,3],[-3,1],[-2,-1],[-1,-1],[1,-3],[-1,-1]],[[5038,7061],[3,4],[2,1],[4,-1],[1,-4],[1,-1],[1,0],[1,-1],[2,-1],[1,1],[3,-1],[2,-1],[4,-1],[4,-1],[2,1],[2,0],[2,-1],[2,1],[-1,1],[0,1],[1,0],[4,1],[1,0],[3,-2],[2,-3],[2,-2],[0,-1],[2,2],[3,-5],[1,-1],[1,0],[1,1],[1,1],[1,0],[3,1],[6,0],[1,-1],[0,-4],[0,-1],[-3,0],[-1,0],[1,-1],[0,-1],[4,0],[5,0],[3,0],[3,-2],[1,1],[2,0],[0,1],[-4,3],[-2,3],[3,2],[1,1],[0,1],[3,3],[0,1],[2,2],[-1,1],[-4,0],[0,1],[1,2],[2,1],[1,2],[2,0],[1,0],[3,0],[1,1],[0,1],[0,3],[3,3],[0,1],[-1,2],[-1,0],[-1,0],[-4,-1],[-1,1],[-1,4],[3,1],[1,1],[-2,5],[4,2],[1,1],[-2,2],[-2,2],[0,1],[2,1],[2,0],[4,-1],[1,-4],[1,-1],[2,0],[6,-1],[4,-1],[1,-1],[1,-3],[3,-3],[5,1],[0,1],[-1,1],[8,1],[1,-1],[3,-3],[1,-1],[3,0],[2,-1],[1,-1],[1,-2],[0,-1],[4,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-4,1],[-5,3],[-2,0],[-1,-1],[0,-1],[1,-4],[-1,-1],[-1,-2],[1,-1],[0,-1],[2,1],[5,2],[2,-2],[2,-1],[2,1],[2,1],[2,1],[6,1],[1,0],[1,-1],[1,-1]],[[5878,6986],[6,3],[8,2],[3,-1],[7,1],[5,-1],[13,0],[4,-1],[10,-4],[17,-9],[4,-2],[4,-2],[3,0],[4,0],[4,-2],[2,1],[3,1],[1,0],[2,-2],[4,-4],[5,-2],[13,-9],[5,-4],[0,-4],[8,-4],[5,-1],[6,-1],[4,1],[4,2],[10,1],[4,0],[10,-1]],[[6056,6944],[-5,-6],[-2,-1],[-7,0],[-3,-1],[-3,-1],[-6,-8],[-1,-3],[-6,-5],[-2,-3],[-2,-2],[0,-4],[-5,-2],[0,-2],[-1,-2],[-2,-1],[-2,-2],[4,-2],[-1,-1],[1,-2],[2,-6],[0,-3],[-1,-2],[-1,-1],[-1,0],[-1,-1],[2,-2],[2,-3],[-4,1],[-2,0],[-1,-3],[1,-2],[-1,-1],[-3,1],[-3,-2],[0,-2],[-3,0],[-5,-4],[-5,-1],[-1,1],[-1,1],[-2,0],[-2,3],[-3,1],[-11,5],[-1,1],[1,1],[1,1],[0,1],[-1,0],[-2,-1],[-1,3],[-1,0],[-1,0],[-1,-2],[-1,-1],[-3,0],[-3,1],[1,2],[1,2],[-4,1],[-2,0],[-4,0],[-3,0],[-5,0],[-1,-1],[0,-2],[0,-1],[1,-4],[-1,-1],[-1,1],[-3,0],[-1,2],[-5,1],[4,-4],[2,-1],[3,-1],[1,-1],[-3,-3],[-1,0],[-2,-1],[-2,3],[-1,-1],[-1,-3],[-2,-2],[-1,0],[-1,-1],[0,-2],[-1,-2],[-2,-1],[-2,-1],[-4,0],[-2,-2],[-2,0],[1,-1],[2,0],[-1,-6],[-1,-4],[-2,-1],[1,-2],[0,-2],[-2,-3],[6,-2],[1,0],[-1,-4],[-3,-2],[0,-2],[2,-2],[-1,-2],[1,-2],[0,-4],[1,-3],[-1,-2],[-4,-1],[-4,-2],[-6,-2],[-1,-1],[0,-2],[2,-2],[1,-1],[1,-2],[-5,-2],[0,-3],[2,0],[1,-1],[1,0],[1,-1],[1,-2],[2,-3],[2,-2],[2,0],[2,1],[2,-1],[1,2],[2,-1],[2,1],[1,-1],[1,-1],[1,-2],[2,-1],[0,-2],[1,-2],[4,0],[4,-1],[1,2],[3,0],[2,1],[2,2],[-1,3],[1,0],[1,-1],[2,-2],[1,0],[1,0],[2,1],[4,-2],[1,-1],[2,0],[5,-1],[0,-2],[3,0],[2,-1],[1,-1],[2,0],[-1,-1],[-2,-1],[-1,-1],[6,0],[3,-1],[1,-1],[2,-2],[3,-1],[2,0],[2,-1],[-1,-2],[-1,1],[-1,-1],[-2,0],[0,-2]],[[5979,6763],[-3,-2],[-2,1],[-3,1],[-2,-1],[-1,-2],[-3,-2],[3,-2],[-2,-1],[-1,-3],[-5,-1],[0,-2],[0,-1],[-3,-3],[2,-2],[1,-3],[-10,0],[0,2],[-1,1],[-2,1],[-1,1],[-1,2],[-2,0],[-1,1],[-2,0],[-2,-1],[-5,-1],[-1,-3],[-4,1],[0,1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,2],[1,2],[-4,0],[-3,0],[-1,1],[-2,1],[-2,1],[-1,-1],[-1,-2],[0,-2],[3,-1],[5,-2],[2,1],[3,0],[0,-3],[1,-2],[-2,-5],[0,-1],[4,-3],[2,0],[2,-1],[1,-2],[3,-3],[0,-1],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-3,1],[-2,1],[-1,-1],[-1,0],[-6,0],[-3,-1],[-2,-1],[-2,-4],[-1,-5],[-2,0],[-3,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[-2,1],[-3,0],[-2,-1],[-2,-1],[-1,-2],[2,-3],[-1,-3],[-1,-1],[-4,1],[-2,1],[-3,1],[-2,4],[-2,0],[-7,1],[-4,0],[-1,0],[-3,1],[-1,-4],[-3,1],[-4,0],[-3,0]],[[5846,6699],[-1,2],[0,1],[0,1],[6,4],[1,3],[-1,1],[-1,1],[-5,0],[-3,-1],[-2,1],[-1,1],[-4,1],[-2,1],[1,4],[-5,-2],[-1,3],[-2,0],[-2,0],[-2,0],[0,1],[-2,1],[-1,1],[-1,0],[-2,-1],[-1,-4],[0,-1],[-1,-3],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,2],[-1,0],[-1,1],[-1,1],[-1,1],[-2,1],[-2,2],[-1,1],[-1,1],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-2,2],[0,1],[-2,1],[1,2],[-1,1],[-1,-1],[-1,0],[-2,0],[0,2],[0,1],[0,1],[0,1],[1,0],[1,2],[1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-2,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,1],[0,1],[-2,0],[-1,1],[-1,2],[-1,0],[-1,1],[-2,1],[-2,1],[-1,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,1],[-2,2],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-2,0],[-2,0],[-2,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,2],[0,1],[1,0],[0,1],[2,2],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[2,2],[0,1],[2,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[-1,2],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,1],[-2,0],[-1,1],[1,0],[0,1],[1,1],[-1,0],[-2,1],[-1,0],[0,1],[1,1],[0,1],[-2,2],[0,1],[0,1],[-1,1],[-1,3],[-1,1],[-1,1],[-2,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[1,0],[0,4],[2,6],[-4,0],[-8,-1],[-1,1],[4,2],[0,1],[3,0],[0,3],[-1,0],[-6,-1],[-2,1],[0,1],[0,1],[4,1],[2,1],[-3,4],[-4,2],[0,2],[3,5],[1,2],[-1,1],[-3,2],[-4,0],[-4,2],[-1,1],[0,3],[0,1],[-1,2],[-2,0],[-1,1],[1,2],[-2,3],[-1,2],[1,1],[4,0],[1,3]],[[5661,6936],[5,2],[1,1],[0,2],[4,0],[1,-2],[3,0],[3,-1],[5,-2],[1,-2],[4,-1],[6,5],[2,1],[2,0],[-3,-4],[1,-4],[0,-2],[0,-2],[-2,-2],[6,-6],[4,0],[3,-3],[2,-4],[4,2],[1,-1],[0,-3],[3,1],[4,-1],[2,0],[5,-1],[2,0],[2,-3],[4,0],[1,-1],[1,-2],[1,-1],[2,-1],[2,0],[2,0],[2,0],[1,-2],[2,0],[3,0],[-1,3],[1,1],[2,1],[3,-2],[4,4],[0,2],[-1,2],[-5,-1],[-2,0],[0,3],[-3,3],[-3,1],[-1,0],[1,1],[2,1],[1,0],[2,0],[-2,2],[-1,2],[4,2],[2,3],[3,1],[-1,3],[2,3],[-4,4],[-1,2],[1,2],[-1,2],[2,4],[0,1],[-1,2],[-2,3],[0,3],[-5,1],[0,5],[3,-1],[4,-1],[2,1],[2,2],[3,5],[2,2],[-3,2],[-4,1],[-4,1],[-1,1],[1,3],[3,3],[1,0],[1,3],[13,3],[3,1],[1,1],[-2,1],[1,1],[-2,0],[-1,1],[3,5],[1,2],[-1,2],[-5,4],[1,3],[9,-5],[4,-1],[3,0],[1,2],[-2,1],[-2,1],[2,1],[1,1],[3,3],[3,-1],[5,-2],[-3,-5],[2,-2],[-2,-3],[0,-3],[-1,-2],[-1,-1],[-4,0],[-3,0],[-3,-2],[-1,-2],[0,-2],[1,-1],[2,-1],[2,1],[1,0],[0,-2],[1,0],[1,1],[4,2],[4,-2],[2,-1],[2,0],[2,-4],[-4,-3],[-1,-2],[1,-3],[1,-2],[2,-1],[3,1],[1,1],[3,-2],[1,0],[2,0],[1,1],[5,-3],[5,1],[2,-1],[2,-1],[1,-1],[3,-3],[1,-2],[0,-2],[-1,-2],[-1,-1],[2,-2],[3,-3],[1,-1],[6,-1],[2,0],[1,-2],[1,0],[2,-1],[2,1],[1,3],[1,-1],[1,-2],[4,0],[3,-1],[1,2],[2,-1],[3,1],[0,3],[1,4],[-1,2],[2,2],[-1,1],[0,3],[-1,2],[0,3],[1,4],[1,4],[5,6],[4,5]],[[3025,8124],[3,-1],[11,-1],[2,-1],[0,-2],[0,-1],[6,-2],[4,-1],[8,1],[7,2],[3,0],[4,-1],[1,-1]],[[3074,8116],[0,-2],[0,-1],[2,0],[3,-1],[2,0],[6,0],[1,0],[4,-2],[2,-1],[4,1],[2,0],[2,0],[4,-2],[1,-1],[3,-2],[11,-3],[5,0],[3,0],[5,-2],[1,1],[1,2],[1,2],[2,0],[2,0],[3,-1],[4,0],[6,-3],[2,-2],[4,0],[3,-2],[4,-1],[3,1],[1,0],[1,-1],[1,-2],[5,-3],[1,-2],[3,-1],[2,-2],[0,-1],[1,0]],[[3185,8085],[-3,-6],[-6,-10],[-3,-6],[-4,-6],[-2,-4],[0,-5],[0,-4],[0,-2],[0,-2],[1,-3],[2,-3],[-1,-1],[2,-5],[-2,-5],[0,-3],[5,-2],[0,-2],[-1,-1],[5,-5],[0,-1],[3,-4],[2,-1],[-3,-6],[2,-2],[-1,-3],[-5,-4],[-2,-9],[-3,-1]],[[3171,7979],[-2,1],[-4,-1],[-1,-1],[0,-2],[-1,-1],[-1,-2],[-2,-2],[0,-2],[-2,-3],[-2,-2],[-2,-2],[-7,-2],[1,-11],[4,-2],[-1,-3],[-3,0],[-6,-3],[6,-4],[0,-2],[-3,-1],[0,-2],[4,-5],[0,-4],[-2,-2],[-11,2],[-7,2],[-3,2],[0,4],[-5,1],[-2,-3],[-2,-1],[-6,2],[-2,0],[-2,-2],[-3,-1],[-5,0],[-1,2],[0,2],[0,2],[-2,1],[-1,6],[-2,1],[-2,2],[-2,0],[-5,0],[-3,0],[-3,-1],[-1,-1],[-2,-1],[-1,-1],[-5,-1],[-3,1],[-1,1],[0,1],[-4,1]],[[3061,7942],[-3,4],[0,4],[-2,2],[-1,1],[-3,1],[-3,0],[-3,0],[-1,2],[-3,3],[0,3],[2,1],[8,1],[3,1],[6,2],[2,2],[0,1],[-3,2],[-6,1],[-3,2],[4,6],[0,2],[-7,3],[0,3],[0,2],[6,8],[2,4],[3,6],[-1,2],[-4,2],[-5,2],[-8,6],[-6,4],[-1,2],[1,5],[-3,5],[-4,2],[-3,1],[-5,3],[-3,3],[-2,2],[2,3],[5,5],[1,3],[-5,7],[0,4],[2,3],[4,4],[-1,8],[-1,2],[-2,3],[-2,2],[-1,2],[1,1],[7,4],[1,2],[-1,4],[-3,5],[-3,3],[4,6],[3,3],[-1,2]],[[5196,7612],[2,-1],[2,-1],[26,-17],[3,-2],[19,-12]],[[5205,7355],[-1,-1],[-1,-1],[-1,-1],[-9,0],[-2,1],[-4,-1],[-1,0],[-2,-2],[-1,-3],[0,-1],[3,-1],[10,-3],[1,0],[0,-6],[-1,-3],[-1,-2],[-2,-1],[-5,-2],[-2,0],[0,-1],[-1,-1],[1,-5],[0,-1],[-3,0],[-4,0],[-2,-1],[0,-1],[-2,-3],[0,-1],[1,-1],[1,-1],[-1,-2],[1,0],[-1,-2],[2,-3],[-1,0],[-1,0],[-3,2],[-1,-2],[-2,-1],[0,-1],[0,-1],[-1,-1],[-3,-1],[0,-1],[-1,-1],[-1,-1],[1,-1],[2,1],[1,0],[-1,-4],[-1,-3],[1,-2],[0,-1],[-2,1],[-3,0],[-1,0],[0,-1],[0,-2],[0,-3],[0,-1],[-1,0],[-2,0],[-4,0],[-4,1],[-1,-1],[-1,-1],[-3,-1],[0,-2],[-2,-1],[-2,-4],[0,-1],[-4,2],[-2,1],[0,1],[-4,0],[0,-2],[-2,-2],[-3,-2],[-5,-3],[-2,-2],[1,-2],[2,-3],[-1,0],[-1,0],[-1,0],[0,-2],[1,-1],[-1,-1],[-1,1],[-1,0],[-3,3],[-1,1],[-2,0],[-4,0],[-1,-1],[-3,-4],[0,-3],[-1,-2]],[[5102,7250],[-2,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-5,1],[0,4],[-1,9],[-2,1],[-7,3],[-4,4],[-1,2],[-1,2],[-1,8],[-1,7],[0,1],[0,1],[7,2],[2,1],[0,2],[-2,3],[-3,4],[-2,1],[-2,3],[-1,0],[-1,8],[0,4],[-1,3],[0,3],[2,6],[0,4],[1,5],[0,3],[-1,3],[-6,3],[-8,5]],[[5004,7493],[-1,2],[-3,5],[0,1],[3,4],[2,3],[-1,0],[-1,1],[0,2],[0,1],[0,1],[-1,1],[-1,3],[0,1],[0,2],[0,1],[-6,5],[5,7],[0,1],[0,2],[-2,2],[-4,2],[-1,2],[1,1],[11,2],[1,1],[0,2],[0,2],[-4,0],[-2,1],[0,4],[0,3],[-3,1],[-1,0],[-2,3],[-1,3],[1,3],[-2,4],[1,1],[8,4],[4,4],[1,1],[-3,0],[-2,1],[2,2],[0,1],[-1,2],[-3,3],[-6,5],[-4,1],[-7,1],[-3,2],[-2,5],[-1,3],[-4,0],[-2,1],[-1,1],[-1,2],[-2,1],[-5,3],[-2,2],[-8,6],[-3,3],[-6,6],[-3,2],[0,2],[0,2],[-1,1],[-2,3],[-1,1],[3,5],[7,6],[4,5],[0,2],[-1,1],[-4,5],[-7,4],[-2,1],[-7,4],[-6,5],[-2,2],[0,2],[-6,8],[-6,8],[-3,2],[-8,2],[-2,1],[-3,3],[-2,3],[-2,2],[1,4],[0,5],[-3,2],[-8,4],[-2,1],[1,2],[5,9],[2,3],[3,3],[1,4],[-1,4],[-1,2],[-2,0],[-7,3],[0,2],[1,3],[3,3],[6,7],[4,-3],[1,0],[1,-1],[2,-1],[4,-2]],[[4899,7769],[1,-1],[3,-2],[5,-1],[28,-4],[21,-3],[5,-1],[4,-1],[1,0],[3,-6],[5,-5],[2,-3],[0,-3],[-1,-10],[1,-1],[22,-21],[5,-3],[1,-1],[3,-1],[10,-9],[-1,-6],[3,-3],[-1,-2],[-4,-1],[-4,0],[-2,0],[1,-1],[0,-1],[2,0],[1,0],[0,-1],[1,-2],[1,1],[3,1],[4,-4],[-5,-2],[-1,-3],[1,-1],[8,2],[4,0],[13,1],[1,1],[2,2],[1,2],[0,1],[-1,1],[-4,0],[0,1],[-1,0],[0,1],[1,2],[3,1],[-1,1],[1,1],[2,0],[5,-1],[10,0],[8,-2],[8,-3],[2,-1],[-1,-1],[2,-2],[0,-1],[0,-3],[6,-4],[2,-2],[3,0],[5,-3],[-2,-3],[0,-11],[13,-5],[10,-4],[5,-2],[4,-2],[16,-8],[3,-2],[5,-1],[1,-1],[9,-3],[0,-1],[3,-3],[1,0],[5,-1],[1,0],[2,-2],[2,0]],[[5102,7250],[0,-1],[2,0],[2,-1],[3,-1],[1,-1],[3,0],[3,-1],[4,0],[7,2],[2,-1],[2,-1],[2,0],[2,-2],[0,-1],[-5,-3],[-2,-1],[1,-2],[7,-4],[1,-1],[4,2],[3,1],[3,1],[6,0],[6,-1],[3,0],[3,-2],[0,-1],[1,0],[1,-1],[3,-1],[2,0],[-1,-2],[1,-3],[-1,-2],[2,-3],[0,-2],[-1,-1],[2,-4],[3,1],[4,0],[13,-3],[3,0],[9,0],[1,0],[2,-1],[0,-2],[0,-1],[-5,-3],[-1,-1],[-1,-2],[0,-3],[0,-1],[4,-1],[1,-1],[3,-4],[8,-7],[2,-1],[3,0],[3,0],[6,-5],[2,-1],[10,-2],[1,-1],[7,-5],[4,-2],[6,-3],[3,0],[4,-1]],[[5269,7162],[-1,-3],[1,-4],[1,-1],[1,-1],[0,-2],[-2,0],[-4,-1],[-4,2],[-1,0],[-2,-1],[-3,1],[-2,0],[0,-2],[-1,0],[-1,-1],[-3,0],[-2,-1],[-1,-2],[-1,-3],[1,-3],[1,-1],[1,-1],[11,-3],[2,-1],[1,-1],[0,-3],[-1,-3],[1,-1],[0,-1],[-1,-1],[0,-1],[-3,0],[0,-2],[-2,0],[0,-2],[-1,-1],[-1,-2],[1,-1],[4,-2],[0,-1],[1,-2],[2,-2],[0,-1],[0,-1],[-10,2],[-1,0],[-4,-7],[-1,-2],[-2,0],[-1,0],[0,2],[1,1],[0,2],[2,3],[-8,4],[-2,-5],[0,-1],[-1,-2],[-1,0],[-4,2],[-2,0],[-3,6],[-1,1],[-5,-6],[1,-2],[0,-1],[1,-1],[2,-1],[-3,-2],[-2,-1],[-1,-2],[-2,-3],[-2,-2],[1,-2],[3,-2],[1,-1],[0,-1],[-1,-3],[0,-1],[1,-1],[0,-1],[2,-1],[-3,-3],[-5,-1],[-1,-1],[-2,-2],[-2,-3],[-3,0],[0,-2],[-2,0],[-1,-1],[-1,1],[-3,-1]],[[4939,7068],[0,1],[0,1],[-1,1],[1,1],[6,3],[0,2],[3,1],[-1,1],[-2,0],[0,1],[-3,1],[2,3],[0,1],[-4,2],[0,1],[1,2],[4,2],[5,5],[0,1],[0,2],[3,2],[2,1],[0,2],[3,1],[1,2],[0,2],[1,1],[1,0],[2,0],[1,0],[0,1],[0,1],[-1,1],[-1,3],[1,1],[-3,1],[-3,2],[0,2],[0,3],[0,1],[-2,1],[-5,6],[0,1],[2,1],[8,4],[3,2],[-4,2],[-7,2],[-1,-3],[0,-1],[-1,-1],[-1,0],[-3,1],[0,1],[-2,0],[-1,0],[-1,0],[-2,-4],[-2,-1],[-2,1],[0,7],[0,2],[4,3],[1,1],[-4,0],[-1,2],[-1,0],[-3,-1],[-1,0],[-2,0],[-2,2],[-1,1],[-1,3],[-2,3],[-1,0],[-2,1],[-10,0],[-3,1],[-2,0],[-1,3],[1,2],[-1,3],[2,1],[3,3],[-2,5],[-1,1],[-2,1],[-1,1],[1,1],[4,3],[0,1],[-1,2],[-1,1],[0,2],[-3,0],[-1,-1],[-3,-2],[-3,0],[-1,3],[-2,1],[-1,2],[-2,2],[-1,1],[-5,1],[0,1],[-2,1],[-1,0],[-1,2],[0,2],[1,1],[1,2],[3,2],[1,-1],[2,0],[2,1],[1,1],[0,1],[-1,1],[-2,1],[-1,1],[-3,-3],[-4,1],[-3,-2],[-5,3],[0,2],[1,0],[1,3],[-2,2],[-1,0],[-1,0],[-6,3],[-2,0],[-2,1],[-2,3],[-1,4],[1,2],[2,3],[1,2],[-1,1],[-2,0],[-3,0],[-5,-1],[-2,5],[-1,3],[1,1],[1,1],[2,1],[1,2],[3,-1],[1,3],[4,0],[7,-3],[1,-1],[6,3],[2,-1],[2,1],[7,3],[1,2],[-1,2],[-9,3],[-5,2],[0,1],[2,3],[0,2],[-1,2],[-1,1],[-3,1],[-1,4],[-1,1],[-6,2],[-4,-3],[-1,0],[-4,2],[-1,-1],[0,-1],[-5,2],[-2,1],[-2,-1],[-2,-2],[-3,2],[-1,2],[-3,1],[-3,2],[-3,1]],[[4212,7951],[4,-3],[-3,-1],[-1,-2],[2,-3],[1,-2],[1,-1],[1,-1],[1,-4],[1,-2],[0,-3],[0,-2],[-1,-1],[0,-2],[0,-5],[1,-1],[1,-1],[2,-1],[3,-1],[0,-1],[0,-2],[-1,-2],[2,-1],[0,-1],[-1,-2],[-1,0],[-1,-1],[-3,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-3,-2],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[0,-2],[1,-2],[1,-1],[0,-2],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-7,-5],[1,-1],[3,-1],[-1,-2],[-1,-2],[-2,-1],[4,-6],[0,-2],[3,-1],[4,1],[3,0],[4,2],[4,1],[2,-1],[2,-3],[0,-1],[0,-3],[4,0],[3,0],[2,0],[2,0],[-1,-2],[0,-2],[-4,-2],[-1,-5],[1,-2],[2,-1],[4,2],[3,1],[4,0],[0,-1],[-3,-4],[0,-2],[-1,-4],[1,0],[2,-2],[5,-1],[2,0],[-2,2],[1,1],[4,2],[3,-1],[1,-5],[13,-4],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-3],[-2,-5],[0,-4],[2,-1],[4,-3],[1,-2],[-2,-1],[-4,-2],[-2,0],[-2,2],[1,2],[-2,2],[-3,1],[-4,-2],[0,-2],[2,-3],[0,-5],[1,-4],[-2,-3],[-5,-1],[-2,3],[-1,0],[-4,-1],[-3,-5],[-3,-2],[-6,-2],[1,-1],[3,-1],[3,-1],[0,-2],[1,-1],[0,-1],[2,1],[2,0],[2,0],[1,-1],[0,-3],[-1,-2],[-2,-1],[0,-3],[-2,-2],[-1,-2],[0,-1],[-4,-3],[-1,-1],[-3,-3],[0,-1],[1,-2],[0,-1],[1,-1],[1,-1],[2,-1],[3,-2],[2,-2],[3,0],[3,-1],[1,-1],[1,-2],[0,-2],[1,-3],[-1,-2],[-5,0],[-3,0],[-1,3],[-2,-1],[0,-1],[-2,-1]],[[4143,7626],[-2,3],[-3,3],[-3,4],[0,1],[1,1],[1,1],[5,3],[2,2],[1,1],[0,3],[0,4],[-1,2],[0,3],[0,3],[-3,3],[-5,3],[-6,2],[-2,1],[-3,2],[-6,6],[-2,1],[-5,1],[-2,1],[-2,2],[0,2],[0,1],[-2,-1],[-4,0],[-2,-1],[-3,1],[-2,1],[-3,1],[-1,1],[-6,-1],[0,-2],[-1,0],[-2,1],[-2,-1],[-3,-2],[-1,-1],[-2,1],[-1,1],[-3,-1],[-4,-4],[-1,0],[-3,1],[0,1],[0,3],[0,1],[-3,2],[-1,1],[-2,0],[-4,-1],[-4,0],[-4,-1],[-6,-2],[-3,-2],[0,1],[-3,2],[-1,1],[-4,0],[-6,4],[-3,1],[-2,0],[-8,2],[-3,0],[-2,-1],[-4,-5],[-2,0],[-2,0],[-2,0],[-3,2],[-2,0],[-6,-2],[-1,1],[-1,0],[-2,4],[-2,2],[-6,-1],[-3,0],[-2,2],[0,1],[-3,3],[0,1],[1,1],[1,0],[2,3],[-1,1],[1,1],[-1,2],[-1,1],[-3,2],[-4,1],[-6,4],[-1,3],[1,1],[0,2],[-1,1],[2,2],[2,2],[0,1],[0,3],[-2,2],[-1,1],[-1,1],[1,4],[-1,1],[-3,1],[-3,-1],[-1,1],[-2,3],[-1,1],[-1,2],[0,1],[3,9],[-3,2],[-1,1],[0,1],[-4,2],[-1,0],[-3,2],[-3,1],[-5,1],[-6,2],[-2,-1],[-4,2],[-1,0],[-1,-1],[-2,0]],[[3906,7768],[0,19],[3,1],[1,0],[4,-1],[3,0],[1,1],[3,0],[3,1],[-1,1],[-1,2],[4,1],[2,0],[2,0],[2,0],[2,3],[-4,3],[0,1],[3,0],[1,-1],[3,0],[3,0],[3,0],[1,1],[1,2],[-2,5],[3,0],[6,1],[5,0],[5,-2],[3,1],[1,1],[7,1],[0,1],[4,3],[1,1],[1,0],[1,1],[1,2],[3,3],[1,2],[-1,2],[-1,2],[0,1],[2,2],[1,0],[2,1],[2,2],[3,4],[3,-1],[3,0],[2,3],[3,3],[1,3],[6,-2],[1,2],[1,2],[1,3],[1,1],[2,0],[2,1],[2,3],[0,1],[-2,1],[-1,2],[0,2],[1,3],[0,3],[0,1],[6,1],[2,2],[2,1],[1,1],[2,1],[1,2],[2,1],[1,2],[1,1],[2,1],[1,2],[2,2],[1,1],[1,3],[1,1],[1,2],[1,2],[1,2],[0,2],[1,1],[2,1],[9,2],[2,0],[3,1],[1,0],[2,0],[1,-1],[2,1],[1,2],[2,1],[3,1],[2,1],[2,1],[0,3],[-3,2],[-2,1],[0,3],[2,1],[2,-2],[2,-1],[3,0],[2,0],[2,-1],[1,0],[2,1],[0,2],[-1,2],[-2,1],[-1,2],[1,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[-1,2],[-2,0],[0,2],[-1,1],[0,1],[-2,2],[0,1],[1,1],[2,1],[1,0],[1,0],[2,-2],[3,0],[3,1],[2,0],[1,2],[1,1],[0,2],[0,1],[-1,1],[-3,0],[-3,0],[-3,2],[1,2],[1,0],[1,0],[3,-1],[3,1],[2,1],[-1,1],[-2,0],[-3,2],[-2,0],[-1,0],[-2,2],[-1,0],[-1,1],[0,2],[1,2],[1,-1],[1,1],[1,0],[2,-1],[2,-1],[1,0],[1,1],[0,1],[2,2]],[[4100,7962],[1,-2],[2,-2],[1,-1],[0,-1],[0,-2],[1,-2],[1,-1],[1,-1],[3,0],[1,0],[2,0],[2,1],[1,1],[2,0],[3,0],[3,0],[4,0],[2,-1],[2,1],[0,1],[2,1],[4,0],[3,0],[2,-1],[2,0],[3,0],[2,0],[3,0],[1,0],[2,2],[2,1],[1,1],[1,1],[2,2],[2,2],[1,1],[2,1],[1,0],[2,0],[3,-3],[1,-1],[1,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,-3],[0,-1],[2,-2],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[3,0],[1,0],[1,1],[1,1],[1,1],[5,4],[3,0],[3,-1],[2,1],[2,1],[3,0],[2,-2],[4,-2]],[[4952,6622],[0,-1],[-4,-2],[-11,-5],[-4,-2],[-1,-4],[0,-5],[1,-2],[1,-1],[2,-3],[3,-2],[6,-3],[3,-1],[9,-3],[8,-2],[3,0],[3,0],[9,-2],[0,-1],[3,-7],[4,-3],[2,-1],[3,0],[1,0],[2,3],[1,1],[4,1],[11,3],[4,1],[9,0],[8,-2],[2,0],[11,-3],[5,-2],[1,-1],[1,-1],[1,-4],[0,-1],[-2,-4],[-1,-1],[-5,-5],[-1,-1],[0,-3],[2,-1],[2,-1],[7,0],[9,-1],[5,-1],[8,-2],[3,-1],[3,1],[1,1],[2,1],[7,0],[2,0],[2,1],[3,0],[3,0],[5,1],[6,3],[4,2],[3,1],[2,2]],[[5119,6517],[-1,-1],[-4,0],[-1,1],[-4,0],[-1,0],[-1,-1],[-1,-2],[1,-1],[1,-1],[8,-3],[1,-1],[0,-1],[-5,-3],[0,-1],[3,-1],[0,-2],[-3,0],[-2,1],[-2,1],[-3,1],[-2,1],[-2,-1],[-2,-1],[-1,-3],[0,-2],[0,-1],[-2,0],[-3,2],[-1,0],[-1,0],[-1,-1],[-1,0],[1,-1],[3,-2],[-1,-3],[2,-1],[2,-1],[4,-2],[4,0],[3,-1],[-1,-1],[-2,-1],[-1,-1],[-3,1],[2,-3],[-2,-5],[-1,0],[-3,1],[0,-3],[-1,-1],[-1,1],[-2,1],[-2,1],[-4,0],[-3,2],[0,1],[0,1],[-10,1],[-6,2],[-2,1],[-3,1],[-5,0],[-1,1],[-1,1],[2,1],[2,0],[2,0],[7,-1],[4,0],[2,0],[0,1],[-2,4],[-3,3],[1,1],[-1,0],[-4,1],[-1,0],[-1,-1],[-1,-1],[-7,1],[1,-1],[2,-2],[0,-1],[-1,0],[-1,-1],[-2,0],[-3,1],[-1,0],[-1,2],[-1,1],[1,1],[-1,1],[-3,-1],[-2,2],[-4,0],[-1,0],[1,1],[0,1],[-2,1],[-2,2],[-1,2],[-1,2],[-1,1],[-1,1],[-2,0],[-4,0],[-3,1],[0,1],[-5,-1],[-3,-2],[-1,-4],[0,-2],[0,-1],[3,-2],[-1,-2],[1,-3],[1,-2],[1,-1],[1,-1],[-3,0],[0,-1],[-1,0],[-1,1],[-1,2],[-1,0],[0,1],[0,2],[-1,1],[0,1],[0,1],[-1,2],[0,1],[1,5],[0,3],[-1,0],[-6,1],[-1,-1],[-3,-1],[-1,1],[-3,1],[-2,0],[-1,-1],[0,-1],[2,-2],[1,-2],[-2,-2],[-3,-1],[-2,-1],[-1,-1],[2,-4],[-3,-1],[1,-2],[0,-2],[-1,-1],[-4,-1],[-1,-3],[0,-1],[1,-1],[2,-1],[1,-2],[2,-2],[-3,-3],[4,-2],[1,-1],[-1,-1],[-3,-3],[1,-2],[-2,-1],[0,-1],[-2,-4],[-3,-2],[-1,-2],[-2,-1],[-2,-4],[-4,-3],[-1,-1],[-2,-1],[-3,-1],[-1,0],[-1,0],[-1,0],[0,-2],[-1,-1],[2,-1],[2,-2],[1,-2],[0,-2],[-5,-3],[-1,-1],[2,-2],[1,-1],[0,-2],[-1,-1],[1,-5],[0,-1],[2,0],[1,-1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-2,1],[-6,0],[5,2],[2,0],[-5,4],[-3,2],[-2,2],[-2,0],[-2,1],[-2,1],[-1,0],[-1,-2],[-2,-3],[1,-1],[-1,-2],[0,-3],[-2,-1],[0,-1],[-1,-1],[1,-1],[0,-2],[-2,1],[-2,0],[-2,-1],[-3,-4],[0,-2],[1,-3],[-1,0],[-2,0],[-3,2],[-3,2],[-2,1],[-1,2],[-1,1],[-2,0],[-2,2],[-1,2],[-1,0],[-3,0],[-2,4],[-2,1],[0,1],[1,3],[-1,1],[-2,1],[-9,1],[-3,0],[-2,0],[-2,-1],[-8,1],[-1,-1],[-2,0],[1,-1],[-1,-1],[0,-1],[-1,1],[-4,3],[-1,-1],[3,-3],[1,-1],[3,-1],[0,-1],[-2,0],[0,-1],[-1,-1],[-2,1],[-1,0],[-4,3],[-2,-1],[-3,-1],[-3,-1],[-2,-2],[-1,2],[1,2],[-4,0],[-3,0],[-3,-3],[-2,-2],[-2,0],[1,5],[0,2],[-1,1],[-3,0],[0,2],[1,2],[0,2],[-1,2],[-1,2],[-3,0],[-1,-1],[-3,-1],[-3,0],[-3,-1],[-2,-1],[-6,-2],[-2,-1],[0,-1],[3,-3],[1,-1],[-1,-1],[-1,1],[-2,0],[-3,2],[-1,1],[-2,0],[-2,-2],[-1,-1],[-9,-2],[-7,0],[-3,-1],[-3,2],[-4,-1],[-2,1],[-7,2],[1,5],[-6,3],[-1,1],[0,2],[2,1],[3,0],[3,0],[3,0],[3,0],[1,3],[2,1],[6,0],[4,3],[1,2],[1,2],[-4,4],[-1,3],[-5,4],[-1,3],[4,0],[3,5],[3,1],[4,3],[7,4],[2,3],[-5,2],[0,1],[1,3],[2,1],[1,2],[0,3],[-3,4],[-1,1],[1,1],[1,1],[2,2],[1,4],[5,-1],[1,0],[1,2],[6,5],[1,1],[1,1],[-5,3],[-3,1],[-2,1],[-4,7],[-4,-2],[-2,-1],[-1,1],[-1,0],[-6,0],[-3,1],[-3,0],[0,-1],[0,-2],[3,-4],[0,-1],[0,-1],[-2,-3],[-2,-6],[-1,-2],[2,-3],[1,-2],[-2,-6],[-3,-1],[-1,2],[-1,1],[-1,1],[1,1],[-1,1],[-1,2],[-4,0],[-1,1],[0,3],[-2,1],[-2,1],[-1,0],[-2,-1],[-1,0],[-2,-2],[-2,0],[0,-1],[-3,3],[-1,1],[-4,-2],[-3,0],[-4,0],[-5,-1],[-1,-2],[-2,1],[-1,2],[0,1],[-2,0],[0,1],[-3,1],[-2,-1],[-1,0],[0,-1],[-2,-2],[-5,0],[-1,-1],[0,-2],[1,-1],[3,0],[5,0],[2,-1],[2,-1],[-3,-2],[0,-5],[0,-1],[3,-2],[1,0],[2,2],[6,-1],[2,-1],[1,-1],[0,-1],[7,-3],[5,0],[1,-3],[1,-3],[-1,-2],[-1,-1],[-5,0],[-5,0],[-2,1],[-3,-1],[-5,0],[-3,2],[-1,2],[-6,-2]],[[4728,6470],[0,2],[-2,2],[-5,2],[-2,1],[0,1],[-1,0],[2,0],[2,1],[1,1],[0,2],[-1,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,1],[0,1],[-2,7],[0,2],[-3,2],[0,4],[1,1],[2,2],[-1,2],[2,0],[3,1],[3,0],[3,3],[0,4],[-2,1],[1,3],[3,1],[6,1],[2,-1],[1,-1],[4,0],[3,1],[2,1],[3,4],[2,2],[1,0],[3,0],[2,0],[6,2],[2,2],[-2,0],[0,2],[-2,0],[-1,1],[-1,0],[-3,1],[-3,-1],[-1,0],[-3,1],[-3,1],[-1,0],[-2,0],[-2,1],[1,2],[-1,1],[1,3],[1,2],[2,0],[3,0],[3,1],[4,2],[3,1],[4,-3],[1,-1],[3,-2],[2,-1],[2,2],[2,3],[0,2],[-3,1],[-9,4],[-2,3],[-2,4],[-1,1],[-5,2],[-3,2],[-1,0],[2,4],[0,1],[-1,1],[0,1],[1,1],[2,-1],[2,0],[0,3],[5,-1],[3,1],[1,2],[2,-1],[1,3],[2,0],[1,-1],[1,-1],[4,2],[1,0],[1,0],[1,2],[2,0],[4,0],[1,1],[4,3],[2,1],[3,2],[1,2],[4,1],[1,1],[1,3],[3,4],[1,3],[4,1],[1,0],[0,1],[1,6],[6,2],[4,2],[0,2],[-1,1],[0,1],[1,0],[3,-1],[6,1],[1,0],[1,2],[2,1],[1,3],[0,2],[1,2],[2,1],[2,0],[2,-1],[3,0],[2,-1],[1,0],[5,1],[1,-1],[1,-1],[1,0],[2,5],[1,1],[2,0],[1,-1],[2,0],[0,4],[4,1],[2,2],[0,2],[3,0],[3,1],[1,1],[0,2],[-1,0],[-1,3],[-2,2],[-2,2],[-3,3],[5,1],[1,1],[1,2]],[[4871,6658],[2,-2],[4,-3],[5,-2],[3,0],[5,-2],[3,0],[9,-2],[3,1],[3,-1],[8,-1],[5,-1],[11,-2],[2,-1],[3,-1],[2,-1],[5,-1],[4,-2],[4,-1],[2,-4],[0,-7],[-2,-3]],[[3773,7362],[-2,-2],[-2,-1],[2,-2],[0,-1],[0,-6],[-1,-2],[0,-3],[0,-1],[4,-1],[0,-2],[-2,-2],[0,-2],[-3,-1],[-3,1],[-4,-2],[-4,-3],[1,-2],[2,1],[6,-1],[6,0],[4,-4],[0,-3],[3,0],[4,-3],[3,-1],[3,-2],[2,-2],[0,-1],[-2,-4],[-1,-1],[-1,-1],[-9,-1],[-2,-1],[-1,-2],[6,-2],[3,-4],[7,0],[10,-7],[5,0],[1,0],[2,-2],[4,-1],[4,-1],[2,0],[2,-4],[0,-2],[-3,1],[-4,2],[-4,0],[-4,-2],[0,-3],[1,0],[0,-3],[3,-1],[1,1],[0,1],[2,-1],[1,-1],[-1,-2],[-1,-2],[-2,-2],[1,-2],[-2,-1],[-10,5],[-1,0],[-4,-2],[3,-1],[2,-3],[0,-3],[0,-1],[-3,-1],[1,-1],[-2,-6],[4,-2],[-1,-1],[-2,-1],[-3,-1],[5,-3],[2,0],[3,0],[2,-1],[-7,-4],[-1,-3],[1,-1],[2,1],[3,-1],[5,-2],[0,-1],[-3,-1],[-2,-2],[1,-2],[2,-2],[0,-3],[2,-2],[2,-1],[2,0],[1,3],[2,2],[1,0],[2,-1],[1,-2],[-1,-2],[-2,-2],[-3,-2],[0,-2],[1,-3]],[[3815,7211],[-10,-5],[-3,0],[-3,0],[-2,-1],[-7,-9],[-3,-2]],[[3412,7330],[3,2],[2,0],[1,1],[2,3]],[[3420,7336],[1,1],[4,1],[1,5],[0,3],[-1,1],[-3,1],[-1,2],[0,2],[1,2],[3,0],[2,0],[3,1],[2,0],[4,-2],[1,0],[-1,1],[-1,1],[2,0],[3,-1],[4,2],[1,2],[3,0],[1,1],[-1,1],[1,1],[1,2],[2,0],[3,-1],[3,-1],[0,-1],[6,-2],[1,1],[1,2],[1,3],[1,1],[3,0],[1,0],[-2,2],[-2,2],[-4,1],[-9,1],[0,3],[2,2],[2,0],[4,0],[3,3],[1,0],[2,1],[1,-1],[3,-2],[4,-4],[4,-2],[1,0],[6,1],[2,-1],[5,-1],[2,1],[5,5],[1,1],[2,0],[2,2],[3,-1],[3,1],[1,1],[-2,3],[3,0],[0,1],[0,3],[4,-2],[2,-1],[3,1]],[[3524,7385],[9,-1],[5,2],[1,-1],[2,0],[3,-1],[2,-1],[1,-1],[2,-2],[5,1],[3,-1],[1,0],[1,-1],[5,2],[3,-2],[0,-1],[3,0],[1,-1],[-1,-2],[0,-1],[-3,-1],[1,-2],[-1,-2],[1,-3],[-2,-1],[0,-3],[-3,-3],[1,-5],[1,-2],[1,-2],[1,-1],[6,-1],[2,1],[3,1],[2,1],[3,3],[-1,3],[1,2],[1,0],[6,-3],[2,1],[2,3],[4,3],[4,-1],[2,-1],[1,-3],[2,-1],[2,0],[4,2],[0,2],[2,2],[0,4],[2,4],[2,0],[2,1],[3,-1],[2,1],[10,-4],[3,0],[4,4],[2,1],[3,0],[6,-7],[1,-2],[1,-2],[2,-1],[4,3],[1,1],[-2,2],[1,1],[2,2],[-2,2],[-1,3],[0,2],[3,1],[0,3],[-1,0],[-2,0],[-5,4],[-1,2],[-2,3],[-1,2],[0,2],[3,1],[2,0],[2,-2],[3,0],[2,0],[2,2],[6,5],[-1,5],[1,2],[3,1],[1,0],[1,-1],[2,-2],[1,-2],[5,0],[2,-2],[1,-1],[2,0],[5,6],[0,2],[2,1],[2,2],[2,1],[7,1],[1,0],[1,1],[0,2],[1,3],[1,1],[1,0],[3,3],[-1,2],[4,2],[5,-2],[1,-1],[2,0],[1,-2],[2,-3],[3,0],[5,-1],[2,2],[3,-1],[2,0],[1,-2],[1,-2],[0,-3],[-2,0],[-5,-5],[-1,-2],[-2,-7],[-2,-2],[2,-2],[0,-2],[0,-1],[9,0],[4,-1],[1,-1],[1,-4],[1,-2],[-1,-1],[0,-1],[2,-1],[2,-1],[1,-2],[4,-1],[5,-1],[6,-1],[1,-4],[0,-6],[0,-2]],[[6163,6779],[-1,-1],[0,-2],[1,0],[1,-1],[4,0],[1,3],[0,1],[2,0],[0,-1],[1,-1],[-2,-3],[0,-1],[4,-3],[2,-2],[2,-1],[1,-1],[7,-3],[4,-3],[1,0],[5,2],[1,-1],[0,-1],[-2,-2],[2,-1],[2,-1],[3,-2],[2,-2],[1,-1],[-3,-3],[-1,-1],[1,0],[1,0],[3,1],[6,5],[2,-4],[2,0],[0,1],[-1,3],[0,1],[1,0],[3,-2],[1,0],[2,1],[0,1],[0,1],[1,1],[2,-1],[1,-1],[3,-5],[4,-1],[1,-2],[1,-3],[6,-1],[4,-2],[0,1],[2,2],[4,-2],[-2,-1],[-1,-2],[1,-1],[2,0],[1,1],[3,2],[1,4],[2,0],[4,-2],[3,-1],[2,-1],[1,-1],[-1,-1],[2,-1],[1,-1],[-1,-1],[-2,-1],[0,-1],[1,-1],[1,0],[3,-2],[1,0],[0,-2],[-1,0],[-2,0],[-1,-1],[-2,0],[-4,0],[-2,-5],[1,-1],[7,-2],[0,-5],[0,-1],[1,0],[3,1],[1,0],[-2,-3],[-1,-1],[-2,-1],[-3,0],[-1,-3],[-1,-2],[-1,-2],[-2,-1],[0,-3],[-2,-3],[-3,-1],[-1,-1],[-1,-1],[3,-5],[3,-1],[1,-2],[2,-4],[2,-5],[-1,-1],[1,-2],[-1,-1],[-1,0],[-1,1],[-2,2],[-1,0],[1,-4],[-1,-3],[-1,-1],[-1,-3]],[[6257,6663],[-2,-1],[-1,-2],[-7,-8],[-1,-2],[-2,-1],[-2,-1],[-3,0],[-3,0],[-2,-1],[-2,-3],[2,-4],[-3,-3],[-1,-1],[-2,-1],[-2,-2],[-2,-4],[-2,-1],[-6,-3],[-2,-1],[-3,0],[-1,0],[-3,3],[-1,0],[-1,-1],[-2,-3],[-1,-2],[1,0],[2,0],[1,0],[3,0],[1,-1],[4,0],[2,0],[2,-2],[0,-1],[0,-2],[-4,-2],[-3,0],[-2,2],[-1,0],[-7,-2],[-3,0],[-1,0],[-1,-1],[5,-1],[1,-1],[-1,-3],[-2,-3],[-1,-1],[-7,-3],[-5,0],[-3,0],[-1,0],[0,-3],[-1,-2],[-5,2],[0,2],[1,1],[3,0],[0,1],[-3,1],[-1,0],[-1,0],[-3,-2],[-1,0],[-1,1],[-1,3],[-2,0],[-1,-1],[-1,-3],[-1,-1],[-3,1],[-2,0],[-3,-2],[-2,-3],[-1,0],[-2,1],[-1,3],[-1,0],[0,-1],[-2,-3],[-6,-2],[-1,-1],[1,-1],[5,-1],[1,-1],[-2,-1],[-3,-1],[-3,-1],[-2,0],[-2,1],[-2,2],[-1,-1],[1,-2],[-1,0],[-1,0],[-3,2],[0,-1],[0,-2],[0,-1],[-2,0],[-1,-2],[1,-2],[-1,-1],[0,-2],[-2,0],[-4,1],[-1,-1],[0,-1],[0,-1],[-2,0],[-1,-2],[-1,-1],[-3,1],[-2,1],[-1,0],[-2,-1],[-7,-2],[-2,0],[-2,-1],[-1,-2],[-3,0],[-1,-3],[-3,-1],[0,1],[0,2],[-1,0],[-4,0],[-1,0],[-2,0],[-4,1],[-2,-1]],[[6073,6567],[0,1],[-5,2],[0,1],[0,2],[3,6],[4,1],[1,0],[-3,4],[-1,1],[-1,1],[-3,4],[-1,2],[1,2],[2,3],[-7,3],[-8,3],[-23,15],[-6,4],[-5,4],[-4,4],[-3,3],[-3,2],[-2,-1],[-6,2],[-7,-1],[-3,-1],[-2,-1],[-3,-1],[-6,-3],[-2,-1],[-4,-2],[-2,-1],[-3,1],[-5,2],[-6,2],[-3,4],[-2,4],[-3,4],[-2,1],[-8,3],[-4,1],[-6,2],[-3,1],[-3,0],[-2,0],[-4,0],[-4,1],[-3,1],[-3,1],[-3,-1],[-2,-2],[-2,-1],[-3,-5]],[[5849,6660],[3,2],[2,5],[3,2],[-1,6],[-4,-1],[-3,2],[-2,1],[1,1],[3,1],[0,2],[0,3],[-1,2],[-2,1],[-2,1],[-1,4],[1,5],[0,2]],[[5979,6763],[3,0],[5,-2],[2,-3],[2,-1],[2,0],[2,0],[2,2],[1,3],[-2,2],[3,1],[2,-1],[2,2],[3,0],[1,3],[-2,0],[1,3],[3,-1],[0,2],[7,1],[3,1],[2,-3],[2,0],[0,1],[5,0],[4,2],[1,2],[2,0],[1,-1],[7,-4],[2,1],[1,1],[1,4],[3,1],[2,1],[2,1],[2,1],[7,1],[12,-1],[3,0],[1,1],[2,1],[6,2],[2,1],[4,0],[1,1],[5,0],[0,2],[4,-1],[2,0],[2,-1],[2,-3],[4,1],[3,-3],[0,6],[1,1],[1,3],[3,0],[2,1],[6,-1],[4,-3],[2,-2],[1,-1],[2,-1],[3,0],[1,-2],[4,0],[2,0],[0,-1],[1,0],[1,-1],[7,1],[3,0],[1,0],[0,-1],[-3,-1],[0,-1],[0,-1],[1,-1],[2,1],[2,1],[0,-1]],[[5373,7386],[1,-3],[1,-2],[1,0],[1,1],[2,2],[1,0],[2,0],[1,-1],[1,-1],[1,0],[1,1],[1,2],[1,1],[2,-1],[3,0],[0,-3],[1,-1],[0,-1],[-4,-4],[-1,-1],[1,-1],[2,-1],[4,0],[1,-1],[2,0],[1,-1],[0,-1],[1,-1],[2,0],[2,-3],[0,-1],[2,-2],[0,-1],[0,-1],[-2,-1],[0,-1],[4,-3],[1,-2],[1,-1],[2,1],[0,1],[3,0],[2,-1],[1,0],[1,1],[1,-1],[2,-1],[1,-1],[1,-1],[2,1],[1,0],[1,-2],[4,-1],[2,0],[0,-1],[-1,-1],[0,-1],[6,-1],[1,-1],[3,0],[6,-5],[1,-1],[3,-1],[1,-1],[3,0],[0,-1],[0,-3],[1,-1],[2,0],[3,0],[0,-1],[2,-1],[1,1],[1,-1],[0,-1],[-1,-1],[1,-1],[1,0],[1,1],[3,0],[1,-1],[-1,-1],[1,-1],[2,0],[2,0],[-1,-2],[0,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[0,-2],[0,-1],[-1,-2],[-1,-1],[-4,0],[-2,2],[-2,2],[-3,3],[-2,1],[-2,0],[-3,-2],[-9,-4],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-1,-3],[0,-3],[-3,-4],[0,-1],[-1,-4],[2,-2],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[3,1],[1,-1],[-1,-1],[-1,-2],[13,-2],[24,-11],[15,-8],[15,-12],[9,-7],[20,8],[9,11],[5,9],[5,13],[7,2]],[[5631,7228],[-1,-1],[-5,0],[-4,0],[-3,0],[-2,0],[0,-2],[-4,-1],[-3,-2],[-2,0],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-3],[-3,-1],[-2,0],[-2,-2],[-4,-2],[-3,0],[-6,0],[-3,-1],[-1,-3],[-4,-1],[0,-5],[-1,-2],[-2,-2],[-5,-4],[-3,-1],[-4,3],[-2,2],[-4,2],[-2,1],[-1,2],[-3,1],[-1,1],[-1,-2],[-2,-1],[-1,0],[-18,8],[-4,0],[-1,-1],[-1,-1],[-2,0],[-2,-2],[-2,0],[-2,-2],[-1,0],[-2,0],[-2,0],[-2,1],[-5,3],[-2,2],[-4,2],[-1,1],[0,5],[-2,1],[-2,2],[-2,1],[-3,-3],[-5,-2],[-3,-3],[-2,-3],[1,-1],[-3,0],[-1,0],[-3,-1],[0,-1],[-1,-2],[-1,0],[-6,2],[-5,-3],[-3,0],[-2,-3],[-2,-5],[6,-3],[1,-2],[0,-2],[-3,-5],[-2,-3],[-3,-3],[0,-2],[4,-3],[-1,-1],[1,-4],[2,-2],[1,-6],[1,-1],[2,0],[1,-2],[-2,-1],[-2,0],[-5,3],[-6,-4]],[[5444,7152],[-5,3],[-4,1],[0,4],[-10,2],[-4,-2],[-2,-1],[-5,2],[-7,0],[-3,0],[-4,-2],[-2,-2],[-8,1],[-1,-1],[-9,-5],[-5,0],[-8,-2],[-3,0],[-2,0],[-6,1],[-2,0],[-11,-5],[-3,-2],[-3,-2],[-2,0],[-4,-1],[-3,-1],[-2,0],[-13,2],[-4,1],[-11,1],[-2,1],[-1,2],[-3,6],[-3,3],[-4,4],[-3,1],[-2,1],[-9,1],[-2,-1]],[[6075,7183],[-4,-10],[-4,-1],[-1,-1],[0,-2],[1,0],[8,-3],[0,-2],[6,-2],[0,-4],[2,-1],[1,-1],[2,-1],[2,-1],[2,0],[6,-8],[1,-2],[-1,-2],[-1,-2],[1,-2],[0,-2],[-2,0],[-1,-3],[5,-1],[5,0],[1,0],[3,-1],[1,0],[1,-1],[-1,-2],[-1,0],[-1,-1],[-1,-4],[1,-2],[3,-1],[2,-1],[0,-5],[-1,0],[-1,-4],[-1,0],[2,-2],[1,-2],[1,-5],[0,-2],[0,-3],[3,-4]],[[6115,7092],[-1,-2],[0,-1],[2,-1],[-1,-2],[1,-7],[-3,-2],[-2,-1],[-2,0],[0,-1],[1,-1],[-1,-2],[1,-2],[4,-2],[1,-2],[-1,-2],[1,-1],[-2,-1],[1,-1],[0,-1],[-1,-3],[-3,2],[-2,-1],[-1,-2],[1,-2],[0,-2],[-2,-1],[-1,-1],[-1,-1],[1,-2],[0,-1],[-3,-3],[0,-5],[-1,-1],[-2,-1],[-3,-1],[-6,1],[-2,0],[-2,-1],[-3,-1],[-3,1],[-2,0],[-1,-1],[2,-3],[0,-2],[-1,-1],[-2,-1],[-2,0],[-1,3],[-1,1],[-3,-2],[-2,-1],[-7,2],[0,-1],[-4,0],[-4,0],[-2,-2],[-1,-1],[-2,-3],[0,-1],[1,-2],[1,-2],[0,-2],[-1,0],[-4,0],[-2,0],[1,-2],[5,-6],[4,-3],[0,-1],[0,-3],[5,-3],[-8,-4],[-3,-1],[0,-3],[1,-1],[3,-1],[1,0],[3,3],[4,0],[6,1],[1,-1],[0,-1],[-5,-3],[-1,-2],[1,0],[2,0],[5,1],[2,0],[0,-4],[1,-4],[1,-3],[2,-1],[2,0],[2,2],[3,6],[1,1],[5,-2],[0,1],[-1,1],[-1,2],[-1,1],[-7,1],[2,2],[6,0],[6,2],[2,0],[1,-1],[1,-2],[-3,-5],[-1,-2],[1,-3],[2,-2],[2,-1],[10,5],[2,-1],[0,-1],[-2,-2],[-2,-1],[-2,-2],[0,-2],[2,-1],[3,0],[4,-1],[-4,-3],[2,-1],[1,-1],[1,-2],[1,-1],[1,1],[4,2],[1,0],[2,-1],[0,-1],[-4,-2],[-2,0],[-1,-1],[-2,-6],[1,-1],[4,1],[8,5],[5,2],[2,0],[2,-2],[1,-2],[1,-3],[0,-5],[-1,-1],[-2,-1],[-10,-3],[-1,-2],[-2,-9],[-1,-3],[-1,-2],[1,-4]],[[6117,6923],[-3,-2],[-5,3],[-5,2],[2,3],[3,2],[-6,0],[-2,2],[-5,0],[-4,1],[-2,-1],[-3,1],[-4,2],[-3,2],[-11,6],[-12,0],[-1,0]],[[5878,6986],[-3,1],[-3,1],[-4,1],[-7,0],[-2,0],[-2,-1],[-2,0],[-1,1],[-1,2],[-2,1],[-4,3]],[[5847,6995],[6,3],[0,3],[3,-1],[1,2],[3,0],[1,3],[-2,1],[1,1],[1,3],[-1,3],[-5,6],[1,2],[2,2],[2,2],[5,2],[16,2],[5,2],[8,2],[1,0],[1,-1],[1,-2],[5,-2],[1,-1],[1,0],[2,1],[1,2],[1,2],[-1,4],[1,2],[2,1],[2,2],[-2,1],[-5,2],[-2,-1],[-2,-1],[-3,0],[-3,1],[-3,2],[-3,1],[-1,2],[-3,5],[-4,2],[1,2],[1,0],[0,2],[-1,2],[-2,1],[0,4],[-1,2],[-3,1],[-3,0],[-2,-1],[-1,2],[-2,2],[-2,2],[0,2],[1,2],[2,0],[1,1],[1,-1],[4,1],[1,3],[2,1],[0,2],[-1,0],[0,1],[1,3],[-1,1],[0,2],[-2,1],[-2,0],[-8,0],[-2,0],[-1,2],[2,1],[1,2],[4,4],[0,1],[-1,1],[-1,0],[-2,-1],[-2,-1],[-1,1],[-2,2],[-2,0],[-1,1],[0,3],[-3,0],[3,6],[2,2],[1,0],[2,-1],[1,-1],[3,-1],[0,1],[-1,2],[0,1],[1,0],[4,-1],[1,1],[0,1],[4,1],[2,0],[1,1],[-1,2],[2,2],[3,1],[1,1],[-2,4],[2,1],[-1,4],[0,1],[-3,1],[-1,1],[0,1],[-1,-1],[-1,-3],[-1,-1],[-3,0],[-2,-1],[-3,1],[0,3],[2,2],[-1,4],[-4,4],[-3,3],[2,1],[3,1],[2,0],[3,3],[2,4],[-2,2],[0,1],[0,1],[1,3],[2,0],[3,4],[1,3],[-1,1],[1,1],[1,1],[-1,1],[0,1],[1,3],[1,1],[3,-2],[3,-3],[3,-2],[1,1],[3,3],[1,0],[3,-2],[16,2],[4,1],[-1,2],[1,2],[0,2],[-1,1],[-3,1],[-2,1],[2,1],[3,-1],[2,0],[1,1],[1,1],[-1,1],[-1,1],[-4,3],[0,1],[1,2],[-1,1],[0,1],[2,0],[3,-2],[2,1],[1,1],[0,1],[-1,1],[-4,2],[-4,-1],[-1,-1],[-2,-1],[-2,0],[-1,2],[0,1],[3,0],[3,2],[0,1],[-1,1],[-5,4],[5,0],[2,0],[2,1],[2,1],[3,2],[1,2],[-1,1],[-2,3]],[[5919,7224],[1,1],[2,1],[1,-2],[1,-4],[1,-2],[3,-1],[4,-1],[4,0],[3,1],[3,0],[1,-2],[-1,0],[1,-1],[1,-3],[2,-1],[1,-2],[3,0],[3,0],[-2,-4],[1,-4],[1,-2],[5,-2],[0,-3],[4,-5],[1,0],[6,1],[0,1],[-3,2],[1,1],[0,2],[4,0],[4,6],[1,0],[1,2],[-2,1],[1,1],[0,1],[-2,1],[0,1],[8,0],[3,4],[3,-1],[2,0],[4,-1],[7,0],[18,0],[2,0],[0,-2],[-2,-2],[0,-1],[2,0],[5,2],[2,0],[4,-1],[1,0],[4,-2],[4,-2],[0,-2],[-3,-1],[0,-2],[3,0],[0,-2],[3,0],[0,-2],[1,-1],[5,-1],[0,-4],[17,-2],[3,-1],[5,-1]],[[4496,6806],[5,1],[9,2],[3,0],[4,-2],[2,-2],[5,-8],[3,-2],[4,-2],[3,-1],[3,1],[12,3],[2,1]],[[4551,6797],[-1,-2],[2,-9],[-1,-2],[-3,0],[-5,-6],[-1,-2],[-2,-1],[-7,1],[-3,0],[-3,-1],[-3,-1],[-2,-2],[4,-6],[-2,-1],[-4,-2],[-2,1],[-2,1],[-3,-2],[-4,-3],[-3,2],[-2,0],[-3,-1],[-3,-1],[-3,-1],[-1,-2],[1,-1],[1,0],[4,-1],[8,-2],[1,-1],[2,-1],[1,-2],[1,-2],[2,-1],[8,-1],[6,-2],[5,-4],[2,-1],[3,-2],[1,-1],[1,-2],[-1,-1],[1,0],[2,-2],[2,-1],[3,-2],[1,-1],[2,-5],[-1,-2],[-6,3],[-5,1],[-2,0],[-4,-2],[-4,-4],[0,-5],[1,-2],[1,-1],[3,-5],[1,-6],[-2,-2],[-4,-3],[-1,-1],[-2,0],[-5,-1],[-2,0],[-4,-3],[4,-3],[2,-1],[1,-1],[-3,-4],[-2,-5],[-1,-1],[-3,0],[-1,1],[-2,0],[-1,0],[-1,1],[-4,0],[-5,-5],[-1,-3],[-3,-3],[-4,-1],[-4,0],[-1,-1],[-3,-7],[0,-2],[-1,-1],[4,0],[3,-1],[-1,-5],[3,-2],[-1,-1],[0,-2],[-2,-2],[-2,0],[-2,-1],[1,-2],[4,-2],[-1,-2],[2,-1],[1,-1],[-7,-1],[-2,6],[-3,-2],[-3,-5],[1,-7],[-2,-3],[-20,6],[-2,1],[-3,-1],[0,-2],[-4,-10],[-3,-2],[-1,-2],[-1,-2],[1,-1]],[[4442,6605],[-5,-2],[-2,-1],[-2,1],[-2,1],[-1,1],[-3,2],[-4,1],[-3,1],[-3,3],[-1,0],[-2,0],[-4,0],[-1,-1],[-11,3],[-1,2],[0,2],[-2,1],[1,3],[3,2],[0,3],[2,3],[1,3],[-1,5],[-8,-2],[-3,0],[-6,1],[-2,1],[1,1],[0,1],[1,2],[2,2],[2,1],[0,4],[-4,3],[0,2],[-3,1],[-4,0],[-1,0],[5,3],[3,2],[5,1],[2,1],[-1,1],[0,5],[1,2],[3,2],[2,4],[-4,0],[-5,2],[-3,5],[0,2],[0,2],[-3,0],[-1,0],[-6,5],[-5,3],[-5,2],[-2,0],[-1,0],[-1,-4],[-3,-2],[0,-1],[3,-2],[4,-3],[-1,-2],[-4,-4],[0,-1],[-3,-1],[-2,0],[-3,0],[-3,1],[-5,1],[-3,-1],[-1,-2],[-3,-1],[-1,-1],[-1,-2],[-1,0],[-7,-1],[-2,0],[-2,0],[-2,-3],[-1,-2],[0,-2],[-2,-4],[-1,-1],[-3,-1],[-1,1],[-9,1],[-1,0],[-2,-1],[-1,-3],[2,-2],[1,-2],[0,-1],[-3,-1],[-1,-2],[-1,-1],[-2,-6],[0,-1],[-2,0],[-3,1],[1,2],[-4,1],[-7,2],[-5,2],[-2,2],[-1,1],[0,3],[-1,1],[-3,-4],[-1,-3],[-1,0],[-5,2],[-1,1],[2,5],[0,2],[0,1],[-1,1],[-2,0],[-4,2],[-1,2],[-6,3],[-8,-2],[0,-1],[2,-1],[0,-1],[0,-1],[-4,-2],[-3,0],[-7,0],[-1,0],[-1,1],[-1,1],[-2,0],[-1,0],[-1,-2],[1,-2],[2,-1],[1,-1],[-2,-2],[2,-3],[0,-4],[-1,0],[-8,-1],[-2,0],[-1,-1],[0,-1],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[-1,0],[-1,-1],[-2,0],[-4,1],[-1,0],[-3,-2],[-2,0],[-4,3],[0,1],[-2,1],[0,1],[-2,0],[-2,0],[-1,-1],[-2,-3],[-2,1],[-2,0],[-2,-1],[-3,-3],[-2,-1],[-1,0],[-1,1],[0,1],[1,4],[-12,0],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-2,1],[-1,3],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,-2],[-1,0],[-2,0],[-5,2],[-2,1],[-4,-2],[-3,2],[-1,1],[-4,4],[-4,-1],[-3,0],[-4,2],[-5,-2],[-3,0],[-3,1],[-4,2],[-2,1],[-2,1],[-1,0],[-2,0],[-4,2]],[[4093,6650],[4,3],[3,2],[2,2],[1,2],[0,1],[-2,2],[-2,4],[0,1],[2,2],[5,1],[2,1],[-1,2],[-1,1],[-2,0],[-8,-2],[-2,-1],[-1,0],[-2,2],[-2,4],[-1,1],[-2,3],[0,3],[1,4],[-1,2],[-4,3],[-3,3],[0,1],[0,1],[4,1],[3,1],[3,-1],[7,0],[2,0],[2,1],[1,1],[-1,2],[-8,0],[-3,2],[-1,1],[0,1],[3,4],[1,2],[0,1],[-1,1],[-5,2],[-1,1],[0,1],[0,2],[0,4],[4,3],[6,3],[3,2],[0,1],[0,1],[-1,0],[-7,1],[-4,1],[-1,1],[0,1],[1,4],[-4,3],[-1,0],[-1,1],[1,1],[2,1],[3,0],[4,0],[3,0],[2,0],[2,1],[1,1],[1,1],[0,2],[-1,2],[-1,1]],[[4097,6757],[1,4],[1,1],[3,0],[5,0],[5,-3],[3,-2],[2,-2],[2,-1],[3,-1],[2,0],[2,1],[2,1],[1,1],[0,3],[0,2],[-3,4],[0,1],[0,2],[2,2],[8,5],[3,2],[4,3],[3,1],[1,0],[2,-1],[5,-3],[5,-4],[1,-1],[2,-4],[1,-1],[2,-1],[2,0],[2,0],[2,1],[1,2],[3,3],[2,2],[4,4],[1,1],[0,1],[0,2],[-2,2],[-1,1],[-2,0],[-4,0],[-7,-2],[-4,0],[-2,1],[-1,1],[-2,1],[-1,4],[0,2],[1,1],[2,1],[3,2],[2,0],[2,-1],[6,-1],[5,-1],[3,-1],[1,0],[5,1],[6,3],[7,1],[1,0],[1,2],[-1,3],[-3,2],[-1,1],[0,1],[1,2],[1,1],[4,1],[1,0],[2,0],[3,-1],[4,-2],[5,-5],[1,0],[1,-2],[1,0],[2,-1],[2,0],[4,2],[3,2],[1,3],[2,2],[1,1],[2,-1],[3,-2],[3,-3],[1,-3],[1,0],[2,0],[2,0],[3,1],[4,1],[3,1],[1,-1],[5,-2],[2,-2],[2,-3],[2,-6],[2,-2],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,-1],[6,0],[2,0],[3,2],[1,3],[0,3],[-2,8],[0,2],[2,1],[4,0],[1,0],[2,-2],[0,-3],[6,-5],[1,-1],[5,-1],[2,-1],[4,1],[2,0],[-2,6],[-1,2],[0,6],[1,7],[-1,1],[-6,4],[-3,2],[0,3],[1,1],[1,3],[3,1],[8,-1],[2,0],[0,-2],[-2,-1],[-3,-1],[-2,-2],[0,-1],[1,0],[3,-1],[4,0],[1,0],[2,4],[1,1],[2,1],[3,0],[2,-1],[1,0],[4,3],[5,-3],[0,1],[5,4],[1,2],[-3,3],[0,1],[2,3],[1,0],[4,0],[1,1],[4,2],[1,3],[0,3],[-1,1],[-1,1],[-2,0],[-1,0],[-4,-3],[0,-1],[-4,-2],[-4,0],[-4,0],[0,1],[2,4],[1,2],[2,0],[3,0],[6,-1],[2,1],[0,1],[-1,2],[0,2],[1,3],[0,2],[0,1],[-4,4],[0,1],[-2,0],[0,1],[0,2],[-1,1],[-4,3],[-1,1]],[[4346,6872],[2,0],[1,1],[3,9],[3,3],[-1,9],[0,2],[1,2],[1,1],[5,1],[4,-1],[2,-1],[0,-1]],[[4367,6897],[1,-1],[1,-3],[1,-4],[-1,-3],[-1,-2],[-1,-3],[-2,-6],[-2,-6],[1,-2],[0,-1],[2,0],[3,-2],[4,0],[7,-1],[4,0],[6,0],[7,1],[7,1],[5,1],[6,1],[5,1],[6,0],[3,-1],[4,-3],[2,-3],[3,-3],[0,-4],[-1,-4],[-2,-4],[-2,-2],[-3,-3],[-3,0],[-2,-1],[-2,-2],[1,-1],[0,-1],[6,-3],[7,-1],[2,0],[6,-3],[4,-2],[2,-3],[4,-2],[8,-3],[14,-3],[6,-9],[1,-2],[2,-1],[10,2]],[[4777,7267],[-4,-2],[-1,1],[-5,1],[-3,1],[-2,2],[-2,1],[-1,-1],[-1,0],[-1,-5],[-3,0],[-4,2],[-1,-4],[-1,-1],[-3,4],[-3,0],[-5,1],[-2,0],[-2,-1],[-1,-1],[-4,-4],[-2,-1],[-4,-2],[1,-3],[0,-1],[-1,0],[-4,0],[-1,-3],[-1,0],[-1,1],[-3,-1],[-2,1],[-3,1],[-2,2],[-4,1],[-2,0],[-5,1],[-3,1],[-2,-2],[0,-2],[4,-1],[3,-1],[0,-1],[-1,0],[-1,0],[-5,1],[-2,-2],[-4,-1],[-3,0],[0,-1],[-1,-3],[-1,-2],[-2,-1],[-3,0],[-1,0],[-1,1],[-2,1],[-2,-1],[1,-1],[-2,0],[-2,0],[-4,-1],[-1,-1],[-1,-1],[2,0],[3,0],[0,-1],[-4,-3],[-5,-1],[-4,-3]],[[4408,7196],[-6,3],[-6,5],[-3,5]],[[4393,7209],[-1,4],[-2,5],[-2,2],[-2,3],[-3,4],[-1,3],[-2,2],[-3,4],[-4,2],[-2,3],[-1,4],[1,5],[1,3],[-2,2],[-3,2],[-3,0],[-7,1],[-4,3],[-1,2],[-6,2],[-3,10],[-1,4],[-4,6],[-2,0],[-3,1],[-4,1],[-10,-1],[-3,0],[-1,2],[2,1],[3,5],[-4,1],[-2,0],[-1,-1],[-6,0],[-3,-1],[-3,0],[-6,1],[-5,-1],[-4,3],[-8,5],[-6,3],[-7,2],[-9,5],[-4,1]],[[4252,7312],[1,0],[-9,3],[-4,2],[0,1],[2,5],[-2,1],[-1,0],[-1,2],[0,1],[1,2],[2,1],[4,-1],[7,5],[2,1],[1,1],[0,1],[-2,4],[-1,1],[1,6],[-2,3],[-1,4],[-1,2],[-1,1],[-2,4],[-2,2],[-4,2],[-5,5],[0,2],[3,5],[1,1],[6,3],[1,1],[2,3],[4,2],[0,2],[-3,2],[1,4],[2,1],[2,0],[2,1],[3,1],[3,3],[0,2],[-4,2],[-1,1],[0,1],[-2,2],[-7,2]],[[4413,7528],[2,1],[8,2],[2,2],[1,1],[1,-1],[1,0],[3,-1],[2,0],[3,1],[0,-1],[0,-1],[1,-1],[1,0],[1,1],[4,-1],[5,1],[-1,-5],[-2,-4],[1,-2],[4,1],[2,1],[2,2],[4,4],[2,-2],[3,-1],[3,1],[2,-1],[1,1],[1,1],[1,0],[4,-3],[4,6],[1,0],[2,-1],[2,-1],[5,1],[5,-1],[-1,0],[-3,-2],[-1,-1],[1,0],[1,0],[3,0],[1,0],[1,1],[2,-1],[1,-2],[-3,-1],[-1,-1],[2,-1],[2,1],[3,2],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[3,0],[1,0],[1,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[1,0],[2,0],[2,3],[1,0],[1,0],[0,-2],[-1,-2],[0,-2],[-2,-4],[2,-1],[4,0],[3,-2],[1,-1],[-2,-1],[1,-1],[1,0],[0,-2],[-1,1],[-1,-1],[0,-1],[1,0],[0,-1],[3,-2],[4,-1]],[[4147,6979],[1,-2],[1,-1],[3,-3],[1,-1],[5,-2],[7,3],[2,1],[4,3],[3,1],[5,0],[2,-3],[0,-2],[-2,-3],[-1,-1],[-2,-1],[-5,-2],[-6,-3],[-3,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-3],[2,-3],[3,-4],[2,-3],[4,-2],[8,-3],[6,-2],[1,-2],[1,0],[9,-2],[12,-1],[6,-2],[3,0],[3,-1],[1,-2],[0,-1],[-3,-4],[-1,-2],[0,-2],[1,0],[1,-1],[2,0],[2,-1],[6,-2],[6,-2],[7,-1],[5,-1],[2,0],[8,-3],[6,-1],[7,0],[4,0],[1,-1],[1,-2],[0,-2],[-1,-1],[-1,-2],[-2,-1],[-1,-2],[-7,-4],[0,-2],[0,-2],[13,-3],[2,-2],[5,-5],[2,-1],[3,0],[7,-2],[7,0],[6,0],[4,1],[6,4],[2,0],[2,0],[6,-4],[1,0],[2,-1],[5,-3],[8,-2],[3,1]],[[4097,6757],[-5,-3],[-2,-1],[-1,0],[0,1],[-2,-1],[-4,0],[-4,1],[-7,-1],[-1,-1],[-5,-4],[-3,-1],[-3,0],[-2,1],[0,1],[-2,1],[-3,1],[-4,2],[-3,2],[2,2],[2,2],[1,3],[0,1],[-3,2],[-3,0],[-4,-1],[-2,-5],[-1,-2],[-4,-2],[-2,1],[-3,2],[-4,2],[-2,1],[-2,0],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-6,-2],[-1,1],[-2,0],[-2,1],[-1,0],[-7,3],[-6,2],[-3,0],[-8,1],[-7,1],[-1,1],[-3,2],[-3,1],[-2,1],[3,4],[2,5],[-3,0],[1,2],[2,5],[-4,1],[-1,-1],[-1,-1],[1,-1],[-1,0],[0,-2],[-3,0],[-4,1],[-1,1],[3,6],[0,2],[2,4],[-3,0],[-4,0],[-3,0],[-5,0],[0,-1],[-1,-5],[-1,-3],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,-2],[-2,0],[-7,3],[-4,2],[1,1],[1,4],[-4,3],[-1,2],[-1,2],[0,1],[0,1],[1,0],[3,-1],[4,-1],[0,-2],[2,-1],[1,0],[1,1],[0,4],[1,1],[2,0],[4,0],[4,-1],[1,0],[1,2],[1,3],[-6,2],[-15,2],[0,2],[-2,1],[-9,2],[-1,0],[-1,-1],[-3,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-4,2],[-5,1],[-4,-2],[-2,0],[-8,4],[-3,1],[-4,0]],[[3876,6817],[0,1],[-1,3],[2,2],[1,2],[-2,1],[-2,1],[1,1],[1,1],[2,0],[2,0],[2,0],[2,2],[0,1],[0,2],[1,1],[0,1],[0,1],[-1,1],[1,2],[2,2],[0,3],[-2,2],[-1,2],[2,1],[2,1],[5,3],[3,4],[3,0],[2,2],[2,3],[1,1],[3,0],[3,-1],[0,2],[1,0],[1,1],[0,2],[1,2],[0,1],[-2,1],[-4,0],[-1,0],[-9,5],[-1,1],[1,3],[-1,2],[-1,1],[-4,1],[-2,1],[-5,2],[0,1],[1,1],[3,0],[4,5],[2,0],[3,0],[7,-2],[2,0],[1,1],[1,0],[3,1],[0,2],[1,2],[1,3],[-4,1],[-2,1],[-8,6],[1,1],[2,1],[1,1],[4,1],[1,-1],[1,-1],[3,-1],[5,0],[1,1],[-1,1],[-1,1],[0,1],[5,1],[-1,2],[0,1],[-1,3],[0,2],[0,1],[2,1],[2,0],[1,0],[1,-1],[2,0],[3,-1],[3,2],[3,-1],[1,0],[1,0],[-1,3],[1,1],[2,1],[1,1],[-2,3],[-2,0],[-1,-1],[-2,1],[-1,0],[0,2],[-2,0],[-2,1],[0,2],[4,-1],[1,0],[-1,2],[3,4],[2,1],[3,0],[2,2],[1,0],[1,-1],[2,1],[1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[1,-1],[1,0],[2,0],[1,4],[-1,4],[0,2],[2,0],[2,2],[0,2],[1,1],[2,1],[1,0],[4,-2],[3,2],[2,1],[3,0],[1,2],[-5,2],[-1,1],[0,1],[0,1],[4,-1],[1,0],[1,1],[-2,1],[1,1],[3,1],[1,1],[-1,1],[-4,-1],[-2,3],[-2,1],[-3,0],[-2,1],[-1,1],[-1,-2],[-2,0],[0,2],[-1,0],[-1,0],[-2,0],[-2,0],[-3,1],[-1,1],[2,3],[4,2],[1,1],[-1,1],[1,2],[-2,1],[-3,6],[3,5],[3,-1],[2,-1],[2,-1],[7,2],[1,0],[0,3],[1,4],[2,3],[1,1]],[[3971,7008],[9,0],[2,0],[7,-2],[4,-1],[1,-1],[2,1],[3,-2],[1,0],[6,2],[1,1],[2,2],[2,-3],[4,-1],[9,0],[3,0],[8,2],[4,1],[5,2],[2,0],[4,-1],[1,-1],[2,-4],[3,-4],[7,-3],[2,-1],[5,-2],[11,2],[3,1],[11,4],[13,3],[7,2],[8,1],[2,0],[8,-1],[1,0],[3,-2],[2,-2],[1,-2],[1,-4],[0,-4],[0,-2],[1,-3],[4,-6],[0,-1],[1,0]],[[5412,6711],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,3],[0,1],[1,2],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[2,0],[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,0],[0,1],[1,1],[-1,1],[-1,0],[0,1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[3,0],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-2,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[1,2],[0,2],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[1,1],[1,1],[1,1],[1,0],[1,0],[2,0],[1,0],[2,-1],[1,-1],[2,-1],[1,-1],[1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[2,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[2,0],[1,0],[3,0],[2,0],[1,1],[1,0],[2,2],[-1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,-1],[1,-1],[1,0],[1,1],[0,1],[0,1],[2,1],[0,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0],[0,1],[-1,1],[0,1],[2,0],[2,1],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[1,1],[0,1],[2,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[1,2],[1,1],[1,2],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,1],[0,1],[0,1],[-3,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-3,0],[-1,1],[0,1],[1,1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[0,1],[0,1],[1,1],[1,3],[1,1],[1,-1],[2,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[1,0],[2,-1],[1,0],[2,0],[1,1],[1,1],[1,0],[2,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[2,0],[0,1],[1,1],[-2,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,3]],[[4093,6650],[-2,-2],[-1,-3],[-2,-4],[-4,-3],[-2,-1],[-2,-2],[3,-8],[0,-1],[-1,-1],[-3,-1],[-9,-6],[-4,-4],[0,-1],[4,-8],[0,-2],[-2,-1],[-6,0],[-3,-4],[-2,-2],[-5,-3],[-2,0],[-2,-7],[-4,-4],[-3,-2],[-2,-2],[0,-1],[2,-4],[2,-1]],[[4043,6572],[-5,-4],[-3,-3],[-1,-5],[-1,-2],[0,-3],[0,-1],[0,-1],[1,-2],[1,-1],[1,-2],[2,0],[1,0],[1,0],[2,1],[1,1],[4,4],[1,3],[5,-5],[3,-4],[3,-2],[2,0],[2,1],[2,1],[4,4],[1,0],[2,-1],[1,-1],[2,-3],[-1,-2],[-1,-1],[0,-5],[1,-2],[0,-3],[-1,-1],[-4,2],[-1,-1],[3,-3],[5,-3],[-1,-2],[-6,-4],[-2,3],[-1,1],[0,1],[0,4],[-1,0],[-4,-1],[-1,0],[-1,0],[-1,1],[-4,2],[-1,2],[-2,3],[-5,2],[-2,1],[-3,0],[0,-1],[1,0],[2,-3],[1,-4],[0,-1],[-1,-1],[-1,-5],[0,-3],[1,-2],[2,-3],[3,-1],[1,-1],[5,-4],[3,-4],[1,-1],[2,-4],[-4,-4],[-2,-3],[-1,-1],[-4,0],[-5,1],[-2,-5],[-2,0],[-1,2],[-1,0],[-4,-1],[-1,0],[-2,3],[4,4],[-2,1],[1,1],[-1,3],[-1,1],[-3,2],[-2,0],[-5,0],[-5,-1],[-2,-2],[-3,-2],[4,-1],[1,-1],[0,-1],[6,1],[1,0],[1,-1],[1,0],[-3,-4],[0,-2],[1,-2],[0,-1],[0,-1],[-2,1],[-4,2],[-2,0],[-1,-1],[-1,-1],[-2,-1],[-2,0],[-2,-1],[1,5],[-5,1],[-1,1],[1,3],[0,2],[-2,0],[-1,1],[-1,1],[-1,1],[-1,0],[-2,-1],[-2,-1],[-4,0],[-1,-1],[0,-2],[1,-3],[6,-1],[-1,-4],[-2,0],[-1,0],[-2,-2],[-5,0],[-6,1],[-3,1],[-3,-3],[-2,0],[-2,1],[-1,0],[-3,2],[5,4],[-1,1],[-8,5],[5,6],[1,2],[-6,2],[-2,1],[-6,2],[-1,1],[0,2],[-1,1],[-1,2],[-7,-6],[-3,-2],[0,-4],[-2,-4],[-2,-1],[-3,0],[-3,-4],[-2,0],[-1,0],[-4,1],[-3,1],[0,1],[2,4],[5,7],[-2,2],[-2,0],[-1,1],[0,2],[8,9],[3,0],[3,3],[1,1],[0,2],[-2,1],[-4,1],[-8,2],[0,2],[2,2],[-1,1],[-7,0],[-1,0],[-1,0],[0,2],[3,4],[-1,3],[-1,1],[-4,1],[-6,0],[-2,-1],[-5,-5],[-2,-3],[-1,-3],[1,-1],[7,-3],[2,0],[1,-1],[1,0],[-1,-3],[0,-1],[3,-3],[-1,-3],[0,-4],[-1,-1],[-2,1],[-2,0],[-3,1],[-2,2],[-4,5],[-2,1],[-6,0],[-2,0],[-3,-1],[-8,-3],[-3,-2],[-2,-1],[-3,-3],[-3,-4],[0,-2],[-4,-2],[-8,-5],[-1,1],[-1,1],[0,2],[-1,2],[0,2],[-1,2],[0,1],[1,3],[3,1],[2,2],[1,2],[-1,2],[-4,4],[-2,3],[0,2],[2,5],[2,2],[2,-1],[2,-3],[3,0],[3,2],[5,9],[3,1],[2,-1],[2,-1],[2,-1],[3,-2],[2,0],[2,0],[2,0],[1,1],[0,2],[-2,2],[0,1],[2,2],[3,0],[5,0],[3,0],[0,3],[-9,8],[0,2],[2,12],[-2,1],[-1,-1],[-2,0],[-1,-1],[-4,-4],[-2,-1],[-2,-1],[-1,2],[0,1],[0,1],[-3,2],[-2,0],[-1,-1],[-2,-2],[-2,1],[-4,1],[-5,1],[-3,0],[-1,-1],[0,-2],[0,-2],[-2,-1],[-5,-2],[-2,-2],[-1,-1],[2,-1],[3,-2],[1,-3],[2,-4],[0,-2],[-1,-1],[-4,0],[-2,-7],[-2,-3],[-1,-2],[-3,-8],[0,-1],[-2,-1],[-3,2],[-5,7],[-6,6],[-3,2],[1,3],[2,6],[1,1],[-1,1],[-2,1],[-2,0],[-5,-4],[-1,0],[-2,1],[-1,1],[0,2],[1,3],[3,2],[3,0],[5,-2],[2,0],[1,3],[3,0],[2,1],[3,4],[2,1],[2,0],[1,0],[1,1],[0,1],[-1,2],[-3,1],[1,2],[3,4],[8,6],[6,4],[4,1],[4,0],[5,0],[3,1],[2,2],[2,1],[3,0],[4,1],[6,0],[3,-1],[1,-1],[-2,-2],[-4,-1],[-4,-5],[-2,0],[-8,2],[-7,0],[-1,-2],[0,-3],[2,-1],[4,-1],[5,-1],[6,-4],[5,1],[4,6],[4,2],[9,-1],[2,2],[0,2],[-2,3],[-2,1],[-1,2],[-2,6],[3,3],[-1,2],[-3,4],[-1,1],[-6,2],[-2,-1],[-3,-1],[-2,-2],[-2,-2],[-8,4],[-4,3],[1,2],[4,0],[3,4],[3,2],[2,1],[2,4],[0,3],[0,3],[-1,2],[-3,3],[-4,3],[-1,1],[0,1],[0,2],[2,1],[6,-1],[3,1],[1,1],[1,4],[-1,4],[-3,3],[-2,1],[-3,0],[-1,-2],[-1,-2],[-1,-3],[-1,-1],[-1,2],[-2,5],[-2,1],[-4,-1],[-6,1],[-1,0],[-1,0],[-3,-2],[-3,-2],[0,-3],[5,-4],[0,-2],[-1,-1],[-12,-2],[-2,-1],[-3,0],[-2,0],[-1,-1],[-3,-2],[-1,-2],[2,-2],[7,-3],[2,-2],[1,-3],[3,-5],[0,-2],[-2,-3],[-4,-3],[-4,-4],[-1,-1],[-2,0],[-5,2],[-2,1],[-1,2],[1,1],[7,0],[1,0],[2,0],[3,1],[1,1],[-1,1],[-3,1],[0,1],[-2,0],[-1,2],[-2,1],[-5,1],[-3,2],[-9,3],[-4,0],[-3,0],[-1,0],[-4,-3],[-2,0],[-2,0],[-4,2],[-2,1],[-1,2],[-1,4],[-2,2],[-2,-2],[-3,-4],[0,-10],[1,-2],[2,-1],[6,-1],[2,-2],[2,-4],[1,-2],[2,-1],[3,0],[3,1],[2,2],[3,1],[3,1],[3,-1],[4,-1],[4,-2],[1,-1],[-1,-1],[-2,-1],[-6,1],[-2,-1],[-1,-1],[-6,-1],[-9,0],[-4,-1],[-2,-1],[-1,-1],[-1,-2],[0,-2],[1,-1],[1,-1],[2,1],[1,2],[2,1],[2,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[1,-1],[3,-2],[0,-3],[2,-4],[0,-1],[0,-1],[-4,0],[-3,-3],[-7,-1],[-5,2],[-2,0],[-2,0],[-2,0],[-2,0],[-2,2],[0,1],[0,2],[2,4],[0,1],[-4,1],[-2,1],[0,1],[-2,0],[-1,0],[0,-1],[-1,-1],[-2,0],[-6,1],[1,1],[0,2],[-2,0],[-2,-2],[-2,0],[-1,0],[-1,2],[0,2],[0,1],[-2,5],[1,2],[1,1],[1,-1],[3,-5],[2,0],[7,4],[8,4],[1,1],[-1,2],[-3,2],[-2,3],[-2,1],[-2,0],[-1,-2],[-1,-1],[-1,-1],[-2,0],[-6,2],[-3,0],[-1,0],[-2,-2],[-3,1],[-3,-1],[0,-2],[2,-5],[0,-2],[-2,-2],[-2,-1],[-3,-1],[-2,1],[-1,1],[-1,3],[-5,0],[-2,-1],[-2,-2],[-2,-5],[-1,-2],[-2,-1],[-3,0],[-1,1],[-4,2],[-2,0],[-1,-1],[-2,-4],[1,-1],[2,1],[3,0],[2,-1],[2,-2],[0,-6],[0,-2],[-1,-2],[-7,-1],[-3,0],[-5,4],[-5,2],[-3,1],[-2,-1],[0,-2],[0,-2],[3,-1],[0,-1],[0,-4],[0,-1],[1,-2],[2,0],[2,-2],[0,-1],[-1,-1],[-3,-1],[-1,0],[-3,-4],[-3,-1],[-1,0],[-5,-1],[-2,1],[-3,2],[0,4],[-1,1],[-2,-1],[-3,-2],[-2,-3],[-3,-1],[-1,-1],[-1,-4],[-4,2],[-1,1],[-4,1],[-4,1],[-2,-1],[-3,-2],[-1,-3],[0,-3],[4,-3],[4,-2],[5,1],[16,8],[4,1],[2,-2],[1,-2],[1,-1],[7,2],[2,-1],[1,-2],[1,-2],[4,-1],[3,0],[4,0],[3,-1],[3,-1],[2,-3],[0,-2],[-1,-2],[-2,-4],[0,-4],[0,-1]],[[3702,6532],[-2,-1],[-3,-2],[-4,-4],[-8,-8],[-3,-2],[-9,-3],[-5,-4],[-5,-5],[-3,-2],[-6,-2],[-2,-1],[-4,-3],[-3,-1]],[[3645,6494],[-5,4],[-4,3],[-2,2],[0,1],[1,1],[3,1],[7,-1],[0,1],[2,3],[0,1],[-1,1],[-3,0],[-1,-1],[-4,0],[-5,1],[-4,4],[-1,1],[-2,2],[-5,1],[-2,0],[-1,1],[-1,2],[0,1],[0,1],[1,1],[4,3],[2,1],[-1,1],[-2,1],[-5,0],[-3,1],[-2,3],[-1,3],[-2,1],[-4,0],[-1,1],[0,2],[3,3],[1,3],[-4,4],[-4,2],[0,6],[-2,1],[-6,0],[-6,2],[-2,1],[-2,1],[1,2],[2,2],[6,3],[2,1],[0,2],[-2,4],[0,1],[-2,3],[-3,1],[-7,2],[-3,0],[-1,2],[1,2],[2,4],[2,0],[2,0],[1,0],[3,3],[2,1],[5,3],[1,1],[0,5],[1,5],[1,2],[3,4],[2,4],[1,0],[1,0],[4,-4],[3,0],[2,1],[3,0],[2,1],[1,0],[1,1],[3,6],[1,1],[1,0],[2,1],[3,2],[5,-1],[2,0],[0,1],[-1,5],[-3,2],[-2,3],[0,1],[0,4],[1,1],[2,-2],[1,0],[0,1],[-1,2],[-2,2],[-1,2],[1,2],[1,2],[6,7],[2,1],[2,1],[1,-1],[2,-2],[1,-1],[1,0],[2,-1],[3,0],[1,1],[1,3],[1,2],[4,2],[5,3],[3,0],[2,0],[10,-3],[8,0],[2,-1],[2,-2],[2,0],[3,-1],[6,2],[3,0],[2,0],[3,-1],[2,-1],[2,1],[1,3],[2,1],[2,-1],[1,1],[1,1],[2,3],[1,1],[1,0],[5,-1],[1,-2],[0,-3],[1,-1],[3,-1],[7,-1],[2,0],[8,7],[4,3],[2,1],[5,0],[4,2],[2,1],[3,1],[2,1],[6,1],[5,-3],[3,1],[4,2],[3,0],[5,1],[9,1],[5,1],[2,1],[3,2],[1,3],[1,2],[1,3],[0,8],[0,3],[-1,2],[-6,7],[-4,1],[1,1],[1,2],[-1,1],[-6,2],[-8,2],[-4,3],[-2,2],[-1,2],[0,3],[0,2],[2,1],[2,0],[4,0],[1,2],[5,1],[2,6],[5,5],[1,2],[2,1],[1,1],[2,1],[1,-1],[3,0],[3,0],[1,0],[2,3],[0,2],[-1,1],[-3,1],[-1,0],[-3,-2],[-2,-1],[-1,1],[-1,3],[1,1],[5,3],[2,1],[9,-3],[3,-2],[0,-1],[0,-2],[0,-3],[1,-1],[3,-2],[3,-1],[3,2],[1,1],[0,6],[1,5],[0,2],[-6,3],[-3,-1],[-2,2],[2,6],[2,2],[3,3],[1,0],[2,1],[1,0],[1,0],[2,-1],[2,-1],[3,0],[0,2],[-1,5],[2,2],[1,2],[-2,3],[-1,1],[-2,2],[0,1],[8,4],[2,2],[2,2],[1,2],[3,1],[3,2],[4,1],[-2,-1],[1,0],[1,-1],[1,0],[1,1],[1,1],[-2,1]],[[6246,7334],[-1,-1],[0,-3],[1,-4],[2,-2],[3,-2],[2,-1],[6,-1],[11,-2],[3,-1],[1,-1],[0,-1],[3,-1],[1,-1],[0,-1],[0,-1],[-2,-1],[1,-1],[1,-1],[6,-3],[1,-2],[3,-7],[-1,-1],[-2,-2],[-5,-3],[-1,-2],[-4,-5],[-3,-3],[0,-1],[1,-2],[-1,-2],[0,-1],[-2,-1],[-3,-1],[-1,-1],[0,-3],[0,-1],[1,-2],[-1,-4],[1,-1],[1,-1],[2,0],[4,0],[7,2],[3,0],[2,1],[4,2],[2,0],[2,0],[2,0],[2,2],[3,0],[1,-2],[3,-2],[-1,0],[-1,-1],[1,-2],[-1,-1],[-2,-1],[-3,-4],[-7,0],[0,-1],[2,-3],[8,-3],[6,-3],[3,0],[2,0],[2,0],[0,-4],[-2,-3],[0,-3],[-2,-3],[4,-3],[1,-1],[2,-1],[-1,-1],[3,-2],[-2,-2],[-3,0],[-2,-1],[3,-1],[1,-1],[-1,-4],[2,0],[0,-3],[-1,0],[-2,-2],[-1,1],[1,-2],[-2,-2],[-2,0],[-2,0],[-1,-2],[2,-1],[0,-1],[3,1],[1,-1],[-1,-2],[1,-1],[4,0],[1,0],[0,-6],[-2,-2],[-1,0],[2,-2],[1,0],[1,-1],[-1,-1],[2,-3],[3,-1],[1,-1],[5,-2],[2,-1],[5,2],[1,-1],[-1,-1],[2,-1],[1,0],[2,4],[2,0],[0,3],[-1,0],[1,2],[3,-2],[1,0],[1,-1],[5,0],[1,-1],[3,-2],[5,1],[0,-1],[-1,-1],[0,-2],[0,-1],[-3,-1],[0,-6],[9,-7],[3,-1],[6,-1],[2,1],[2,3],[-1,1],[0,1],[0,2],[2,1],[2,1],[2,0],[4,1],[6,4],[5,0],[1,-1],[3,0],[3,-2],[3,-1],[2,-1],[3,-5],[-1,-3],[1,-3],[-2,-1],[-2,-3],[3,0],[-1,-2],[2,-3],[-1,-2],[-1,-4],[-3,-7],[-3,-3],[-5,-4],[4,-4],[1,-3],[4,-3],[2,-1],[2,1],[1,1],[1,2],[2,1],[3,0],[2,1],[4,3],[4,0],[5,1],[4,-6],[2,-2],[4,-7],[2,-11],[1,-1],[6,-1],[3,-1],[3,1],[2,-1],[6,0],[17,-3],[1,-11],[1,-2],[4,-5],[-7,-1],[-3,1],[-5,-2],[-2,0],[-4,-2],[-10,2],[-10,-1],[-2,-1],[-7,0],[-2,1],[-2,0],[-2,-1],[-1,-4],[-1,0],[-2,1],[-1,-2],[-4,1],[-1,-2],[-2,0],[-5,1],[-2,2],[-3,0],[-6,1],[-4,0],[-1,1],[-3,0],[0,1],[-3,1],[-4,1],[-2,0],[-1,1],[-8,1],[-4,-1],[-4,1],[0,-1],[-9,2],[2,2],[0,2],[-6,0],[-1,-1],[-4,1],[-3,-1],[-1,1],[0,-2],[-3,1],[-4,0],[-1,-1],[-3,0],[0,1],[-2,0],[0,1],[-5,1],[-1,1],[-1,-1],[1,-2],[-1,-1],[2,-1],[-1,-2],[-1,-1],[2,-2],[-1,-1],[1,-2],[-1,-3],[0,-1],[-1,-2],[-4,-2],[0,-2],[-2,-1],[-2,-1],[-3,-3],[-1,-2],[-2,-2],[-1,-2],[0,-3]],[[6318,7049],[-4,1],[0,3],[-3,0],[-1,1],[-2,1],[-3,3],[-6,2],[-3,1],[-2,3],[0,1],[-2,2],[-2,0],[-2,0],[-2,4],[-1,3],[-3,2],[-6,3],[-1,2],[0,1],[1,4],[-1,3],[-2,3],[-2,3],[1,3],[-2,0],[-1,1],[-3,0],[-5,1],[-3,0],[-2,1],[-2,1],[-1,1],[-2,0],[-1,2],[-2,0],[-2,1],[-1,2],[0,2],[-3,1],[-1,1],[1,3],[-1,2],[-2,3],[-1,2],[-2,2],[-3,1],[-2,3],[-6,-1],[-3,0],[-3,1],[-3,3],[-2,-1],[0,-2],[0,-1],[-2,-1],[-8,1],[-3,0],[-2,-6],[0,-2],[-1,-1],[-1,-1],[-1,-2],[-4,-1],[-1,-2],[-4,0],[-3,-2],[-1,0],[-3,-2],[-3,2],[-2,-2],[-2,-1],[-2,-1],[-2,0],[-3,1],[-3,0],[-3,1],[-2,-1],[0,-1],[1,-2],[-4,0],[-2,-1],[-2,-1],[-5,0],[0,1],[1,2],[0,3],[-4,1],[-1,0],[-3,0],[-1,-2],[-1,-2],[-4,-3],[-2,0],[-1,-1],[-4,-6],[0,-2],[-3,0],[-3,0],[-5,-1]],[[6075,7183],[4,0],[1,6],[-1,2],[2,5],[2,1],[3,3],[1,0],[1,-1],[1,-1],[3,1],[2,1],[3,-2],[1,-2],[0,-3],[5,-1],[2,5],[1,2],[2,0],[4,0],[1,4],[0,1],[-2,1],[-1,1],[0,1],[1,2],[1,0],[7,-1],[7,-1],[5,0],[2,-1],[2,-1],[3,0],[1,3],[0,4],[3,0],[9,-1],[4,-3],[1,-1],[3,0],[2,1],[1,2],[0,3],[1,4],[1,4],[1,2],[2,1],[2,0],[6,0],[3,0],[2,3],[-7,2],[-2,1],[-1,2],[-1,1],[0,2],[1,3],[2,1],[1,1],[-1,0],[-5,1],[-2,0],[0,3],[-3,4],[2,1],[2,1],[3,-1],[2,-1],[3,-2],[1,-1],[1,1],[2,1],[1,2],[0,6],[-1,0],[-8,1],[1,1],[5,3],[4,1],[1,0],[2,1],[0,2],[2,3],[1,1],[4,0],[5,1],[2,1],[1,2],[-1,5],[1,4],[0,4],[2,2],[1,4],[5,3],[1,1],[-1,0],[-15,-4],[-3,0],[-2,0],[1,2],[1,0],[3,1],[2,1],[3,1],[4,3],[0,1],[-4,2],[0,1],[-1,1],[-1,5],[1,1],[2,1],[1,0],[1,-1],[2,-3],[1,-2],[1,0],[1,0],[4,1],[2,1],[0,2],[-1,2],[-1,3],[0,2],[-3,2],[-3,-2],[-3,0],[-4,2],[-2,0],[0,4],[1,1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[3,1],[2,0],[8,0],[1,1],[2,1],[0,1],[-3,2],[-2,2],[-1,3],[2,5],[1,1],[3,0],[6,2],[4,1],[1,0],[2,1],[0,-1],[2,-5],[2,0],[3,1],[1,0],[3,-1],[3,-3]],[[4526,7795],[4,5],[5,5],[1,1],[1,0],[2,-1],[6,-1],[8,-6],[2,1],[7,-1],[6,5],[1,2],[2,0],[2,0],[3,0],[2,1],[1,0],[3,0],[1,2],[1,2],[2,1],[1,1],[0,1],[2,1],[1,4],[-1,1],[-2,1],[-6,2],[-2,1],[0,1],[-2,2],[-2,2],[-1,2],[-3,3],[-2,2],[-2,1],[-1,2],[0,1],[-1,3],[-3,2],[-1,2],[2,2],[1,1],[-3,1],[-2,0],[-6,-1],[-2,0],[-2,4],[-5,3],[-4,2],[-3,0],[-6,0],[-4,1],[-1,2],[0,4],[2,3],[10,12],[1,1],[3,4]],[[4542,7885],[0,-1],[0,-2],[2,-5],[0,-1],[5,-2],[6,-3],[2,-1],[1,-2],[3,0],[-2,-2],[1,-2],[1,0],[3,0],[1,-1],[1,-2],[1,0],[1,0],[3,1],[2,0],[8,2],[5,1],[5,0],[1,0],[3,0],[2,-1],[1,-1],[2,-2],[3,0],[1,0],[2,-2],[2,-1],[1,-1],[1,-1],[-1,0],[-1,0],[1,-1],[1,-3],[1,-2],[2,-4],[0,-2],[-1,0],[0,-1],[3,0],[2,1],[1,0],[1,-1],[6,-3],[2,-2],[3,0],[2,-2],[2,-3],[1,-2],[1,1],[2,0],[3,8],[-2,0],[-2,1],[-3,15],[-2,3],[0,1],[-2,8],[-1,8],[1,2],[16,7],[5,1],[2,-1],[5,0],[2,-1],[4,-1],[6,-2],[-4,-7],[-1,0],[1,0],[7,-2],[-1,-1],[-2,-2],[4,1],[4,0],[1,-2],[1,-3],[10,0],[4,2],[4,-3],[1,-1],[3,1],[5,2],[1,-5],[5,-3],[-1,-4],[0,-1],[-1,-1],[4,0],[5,-1],[-2,-6],[6,-3],[1,-1],[4,-4],[4,2],[1,1],[1,0],[6,-3],[0,3],[5,-1],[4,-1],[5,-1],[0,-6],[0,-1],[2,0],[5,-1],[3,-1],[-2,-6],[2,-2],[5,-1],[4,0],[2,0],[1,0],[7,-3],[6,-5],[1,0],[0,-2],[5,1],[5,-3],[-2,6],[7,2],[3,-1],[7,-1],[2,-2],[2,0],[1,-1],[1,0],[-1,-3],[-3,-2],[2,-6],[0,-1],[1,-1],[3,-2],[1,-1],[0,1],[0,3],[2,-1],[-1,-2],[4,0],[2,0],[1,1],[0,1],[5,2],[1,-1],[-6,-3],[5,-2],[1,0],[3,1],[0,-4],[1,1],[2,0],[3,0],[2,3],[6,-1],[-7,-3],[0,-1],[1,0],[-1,-2],[6,-2],[0,4],[5,-1],[3,3],[2,2],[8,-1],[1,0],[-2,-5],[3,-3],[3,2],[1,1],[3,-4],[-9,-5],[1,-1],[1,-1],[2,-2],[4,-3],[1,6],[4,-1],[1,0],[10,-6],[2,-1]],[[5919,7224],[-4,3],[2,5],[0,1],[-1,0],[-3,0],[-1,0],[-5,-1],[-4,-3],[-6,-2],[-3,0],[3,2],[0,1],[-2,1],[-2,-1],[-1,0],[0,2],[-2,0],[-1,-1],[2,-2],[0,-1],[-1,0],[-1,0],[-2,2],[-1,1],[-2,-3],[-1,0],[-1,0],[0,2],[0,1],[0,2],[1,1],[2,0],[0,1],[-2,1],[-2,-1],[-1,0],[1,1],[3,3],[2,2],[-1,1],[-1,0],[-2,0],[-1,2],[-4,1]],[[5959,7356],[1,0],[1,0],[1,0],[2,-2],[2,1],[3,0],[2,-1],[-1,1],[1,1],[0,1],[3,0],[0,-1],[2,0],[1,-1],[2,0],[1,0],[3,1],[0,1],[4,1],[-1,1],[3,1],[1,-1],[0,2],[0,1],[3,2],[2,0],[0,1],[2,0],[1,1],[-1,2],[0,1],[1,1],[4,0],[2,2],[-1,2],[1,1],[-1,0],[0,1],[0,1],[1,1],[2,2],[2,0],[1,0],[0,1],[4,2],[0,1],[0,2],[1,0],[0,1],[-1,0],[0,2],[-3,0],[-2,1],[-1,1],[-1,2],[-3,2],[-1,1],[1,1],[-1,0],[0,1],[3,1],[1,1],[1,-1],[1,0],[1,1],[2,4],[-1,1],[0,1],[1,1],[0,1],[-2,-1],[-1,0],[0,1],[0,1],[-4,0],[1,1],[1,1],[-1,1],[8,0],[35,-1],[5,0],[8,-1],[21,0],[27,-1],[3,-1],[12,-4],[13,-4],[9,-4],[3,-1],[1,0],[6,-3],[1,0],[18,-7],[6,-3],[17,-6],[1,0],[7,-3],[9,-4],[11,-6],[2,-1],[-1,-1],[-1,0],[0,-3],[-3,-2],[-9,-3],[-1,-1],[0,-1],[1,0],[3,-1],[3,1],[1,-1],[1,-1],[1,-1],[1,-1],[2,0],[2,0],[6,2],[8,4],[2,1],[2,0],[5,0],[4,-2],[4,-3],[0,-3],[1,-2],[-2,-3],[-2,-2],[-4,-2],[-3,-2],[-3,-1]],[[4442,6605],[1,-1],[3,0],[3,2],[2,0],[3,-1],[1,-4],[-3,-1],[-2,1],[-2,0],[-1,-1],[-1,-2],[0,-1],[5,-1],[-1,-2],[-5,-1],[-2,-1],[-3,-5],[-3,-2],[-3,-4]],[[4434,6581],[-2,1],[-5,1],[-2,-1],[-3,-3],[-1,-1],[-4,0],[-3,-1],[-5,0],[-4,0],[-6,2],[-1,-1],[-3,-5],[-1,0],[-2,-2],[2,-9],[-2,-1],[-5,-2],[-2,-2],[-1,-2],[0,-1],[2,-2],[-1,-1],[1,-2],[-2,0],[-7,-2],[-4,2],[-1,0],[-2,0],[-7,-1],[-3,2],[0,-1],[-4,-2],[-1,-2],[1,-3],[-4,0],[-2,0],[-4,-7],[-1,1],[0,4],[-2,3],[0,1],[-2,0],[-1,0],[-1,0],[0,-3],[-1,0],[-1,-1],[-3,0],[-6,3],[-1,0],[-3,-3],[-3,-1],[-1,-1],[-3,0],[-2,0],[-1,-1],[0,-1],[1,-1],[3,-3],[4,-2],[-3,-3],[-1,-1],[-1,-3],[1,-1],[2,-4],[0,-3],[2,-1],[0,-1],[-1,-6],[0,-2],[1,-1],[5,-1],[0,-1],[-4,-1],[-3,-1],[-3,-1],[-2,-3],[0,-2],[0,-2],[-2,-3],[1,-2],[4,-3],[1,-2],[-3,0],[-4,0],[-5,0],[-2,1],[-1,1],[-1,1],[-2,2],[-1,0],[-5,0],[-6,3],[-2,1],[-9,2],[-3,2],[-3,1],[-3,3],[-2,1],[-1,0],[-2,0],[-7,-3],[-1,0],[-3,-1],[-5,0],[-10,1],[-4,0],[-2,0],[-1,-1],[-2,-2],[-3,0],[-2,1],[-1,0],[-6,1],[-1,0],[-1,-1],[-2,1],[-6,4],[-7,-4],[-1,0],[-1,-1],[-2,0],[-1,1],[0,1],[1,1],[0,3],[2,3],[-1,0],[-3,-3],[-1,0],[-1,0],[-2,3],[-4,1],[-1,1],[-3,6],[-1,1],[-3,0],[-5,-3],[-3,-3],[-3,-3],[-1,-2],[-1,-1],[-2,0],[-1,-1],[1,-2],[-1,-1],[-4,-2],[-2,-2],[0,-1],[2,-6],[0,-1],[0,-1],[-1,-1],[-1,0],[-4,0],[-3,0],[-3,-3],[-1,-2],[0,-1],[0,-1],[-1,0],[-3,1],[-5,1],[-6,4],[5,13],[0,1],[-1,0],[-5,-3],[-3,-3],[-3,-2],[-4,-2],[-3,0],[0,1],[0,1],[0,1],[2,2],[0,2],[-1,2],[-1,2],[-2,1],[-4,0],[-1,0],[1,-1],[0,-1],[0,-2],[-1,-2],[-3,-3],[-3,-1],[-2,0],[-3,1],[-1,1],[0,1],[-1,4],[-1,2],[-1,2],[-1,2],[-1,1],[0,2],[2,6],[4,4],[5,4],[1,2],[0,2],[1,3],[1,0],[4,-1],[2,-1],[1,0],[1,0],[1,0],[2,0],[2,1],[3,3],[0,3],[-5,1],[-2,1],[2,4],[1,2],[2,3],[2,1],[0,-1],[1,0],[2,1],[2,2],[1,4],[2,1],[1,0],[1,0],[5,-1],[2,-1],[3,0],[2,1],[1,1],[0,1],[-3,0],[-3,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-7,1],[-2,-1],[0,-3],[-1,0],[-9,-6],[-3,0],[-5,0],[-7,1],[1,7],[-5,2],[-2,1],[-1,-1],[-1,0],[-2,1],[-2,2],[-1,0],[-2,1],[-1,0],[-1,-1],[1,-6],[0,-2],[-1,-1],[-2,-2],[-1,0],[-3,1],[-1,1],[1,4],[-1,4],[-4,0],[-5,1],[0,1],[5,4],[0,1],[-2,1],[-2,3],[2,3],[4,3],[-1,1],[-5,-1],[-2,0],[-2,2],[-8,0],[-2,1],[-5,0],[0,-1],[0,-2],[-1,-1],[-4,0],[-3,-1]],[[5830,6539],[1,0],[3,-1],[4,-2],[2,-1],[5,0],[3,-1],[1,-1],[2,-6],[2,0],[4,0],[2,0],[0,-2],[0,-1],[3,-1],[3,0],[6,0],[1,0],[3,-5],[10,-1],[7,1],[1,0],[2,0],[3,-1],[3,-2],[1,-2],[-1,-2],[-2,-1],[-3,0],[0,-3],[0,-5],[-1,-2],[-1,-2],[-2,-1],[-3,0],[-1,-2],[-1,0],[-4,-1],[0,1],[-1,1],[-1,0],[-1,0],[0,-2],[-3,0],[-1,-1],[1,-1],[1,-1],[-1,0],[0,-1],[2,-1],[1,-2],[-1,-1],[0,-1],[-4,0],[-2,-1],[0,-2],[1,-1],[3,0],[-1,-6],[1,-7],[-1,-1],[-3,0],[-2,0],[-2,0],[-1,1],[-4,2],[-3,0],[-5,-1],[-3,0],[-4,2],[-1,0],[-2,0],[-1,-1],[-3,-3],[1,0],[2,-1],[2,-1],[0,-2],[0,-1],[-3,0],[0,-1],[1,-1],[0,-1],[3,-1],[1,-1],[0,-1],[-2,0],[0,-2],[3,-2],[1,-2],[-1,-2],[-1,-1],[-2,-1],[0,-1],[1,-2],[1,-2],[1,-2],[1,-3],[-7,-4],[0,-6],[2,-9],[2,-2],[2,-3],[3,-7],[0,-2],[-1,-3],[1,-3],[3,-4],[-1,-3],[2,-5],[3,-4],[3,0],[3,0],[5,1],[2,-1],[3,-5],[-2,-1],[-4,-2],[-2,0],[-2,0]],[[5589,6318],[-5,1],[-4,-1],[-7,-1],[-4,3],[-6,-1],[-8,-1],[-2,1],[2,4],[-2,2],[-6,4],[-5,0],[-6,-4],[-3,-5],[2,-3],[0,-3],[3,-4],[-2,-3],[0,-2],[-2,-3],[0,-2],[2,-3],[-1,-2],[4,-5],[-3,-3],[-4,0],[-3,0],[-4,0],[-12,1],[-3,1],[-2,2],[-2,4],[-5,2],[-2,0],[-3,-1],[-2,0],[-2,-2],[-3,-1],[-5,0],[-2,0],[-1,1],[3,5],[-2,3],[1,3],[-1,4],[1,1],[-2,3],[2,2],[-3,0],[-3,0],[-1,1],[-2,3],[-4,1],[-3,1],[-2,-1],[4,-2],[-7,-4],[-2,0],[0,3],[-6,1],[-1,-2],[0,-3],[-2,2],[-1,2],[0,6],[3,2],[4,2],[-1,4],[2,2],[-2,4],[0,5],[3,1],[1,6],[-1,1],[-1,6],[-2,0],[0,-3],[-1,-5],[-3,1],[-2,3],[-2,0],[-1,1],[-1,-1],[1,-2],[1,-3],[-7,3],[-5,-3],[2,-1],[5,-2],[1,-3],[-1,-3],[-2,4],[-3,1],[-4,-1],[-3,2],[-7,-2],[9,6],[2,4],[-3,2],[1,2],[-1,3],[2,0],[4,-1],[3,1],[-2,1],[0,2],[2,3],[-4,1],[-3,-1],[-3,0],[-3,1],[-1,2],[1,1],[5,4],[2,2],[-4,-1],[-3,-2],[-4,-1],[-1,-2],[-4,-1],[5,-2],[-5,-2],[-2,-1],[-6,2],[-7,3],[-1,-2],[-1,-3],[-7,0],[-2,0],[0,3],[-2,2],[-2,2]],[[5768,7047],[6,-3],[5,-5],[4,-2],[4,-3],[3,0],[3,-1],[1,-1],[8,-3],[4,-1],[8,-3],[9,-2],[2,-2],[2,-2],[0,-3],[2,-2],[3,-5],[5,-4],[4,-5],[6,-5]],[[5442,6995],[5,2],[4,2],[1,0],[2,2],[3,-1],[2,0],[2,9],[1,1],[4,1],[4,3],[2,3],[0,1],[0,2],[3,1],[0,1],[0,1],[0,2],[3,0],[2,0],[2,4],[2,2],[1,1],[3,2],[1,1],[-2,1],[-2,0],[2,6],[3,7],[1,1],[3,2],[0,1],[1,4],[2,2],[1,2],[2,1],[3,-1],[1,0],[2,1],[2,0],[5,-2],[5,0],[0,-1],[1,-2],[-2,-3],[-3,-1],[2,-3],[3,1],[3,-2],[1,-1],[3,0],[3,1],[1,1],[0,1],[3,1],[3,2],[2,-4],[2,-1],[2,0],[1,2],[1,2],[1,0],[3,3],[2,-1],[3,3],[1,0],[2,1],[1,2],[3,2],[-4,2],[0,2],[-3,0],[-1,1],[2,3],[2,1],[3,-1],[2,2],[3,0],[1,2],[0,2],[-5,5],[2,3],[3,6]],[[5565,7091],[4,-3],[5,-2],[5,-2],[17,-4],[12,-5],[2,0],[3,-3],[3,0],[5,-1],[2,0],[5,0],[6,0],[4,0],[5,0],[4,2],[7,-1],[1,-3],[2,-1],[6,-3],[2,-2],[0,-3],[2,-2],[3,-1],[4,0],[2,-3],[1,-1],[7,-1],[5,2],[5,1],[3,0],[5,-1],[4,1],[4,1],[2,2],[5,1],[6,1],[2,0],[12,-4],[1,-3],[4,-2],[3,-1],[6,-3],[2,-1],[2,0],[5,2],[3,-1],[6,-1],[-1,1]],[[3748,8076],[0,-1],[0,-3],[2,-7],[2,-1],[-1,-6],[4,-4],[-3,-2],[-5,-4],[3,-3],[1,-1],[5,1],[3,1],[2,2],[2,-1],[3,1],[2,-2],[-3,-3],[-3,-1],[-3,-1],[0,-2],[1,-1],[4,-2],[1,-1],[0,-1],[-5,-3],[-11,-8],[-1,-2],[0,-2],[-8,-5],[-3,-1],[-2,-4],[5,-9],[7,-2],[1,-1],[1,-2],[9,-7],[-3,-3],[-6,-3],[-3,-5],[1,-1],[7,-2],[2,-2],[0,-2],[-3,-1],[-3,-3],[-1,-3],[1,-1],[-3,-3],[-2,-1],[-3,-1],[-1,-1],[0,-2],[-4,-3],[-1,-3],[-3,-1],[-6,-4],[-2,1],[-2,0],[-4,-4],[-1,-2],[2,-5],[-1,-2]],[[3719,7931],[-3,1],[-3,0],[-3,-1],[-1,1],[-4,-3],[-5,1],[-3,-2],[-1,0],[-4,-1],[-8,-1],[-1,-4],[-2,0],[-2,1],[-2,-2],[-4,1],[-2,-2],[-5,2],[-2,-3],[-1,-1],[-7,3],[-3,1],[-4,-4],[-5,0],[-4,2],[-4,3],[-3,-4],[-2,0],[-1,1],[-2,2],[-2,0],[-4,-3],[-4,0],[1,-3],[5,-2],[2,-1],[0,-3],[0,-2],[-1,0],[-2,-2],[0,-2],[-1,-2],[1,-2],[2,-1],[0,-3],[1,-5],[-1,-1],[0,-2],[-1,-2],[-3,-2],[6,-2],[1,-1],[0,-3],[1,0],[-1,-4],[-1,-1],[-3,0],[-4,-4],[0,-1],[2,-2],[2,-3],[-1,-4],[2,-3],[1,-1],[2,1],[2,0],[2,-1],[1,-2],[-2,-4],[5,-2],[1,-1],[-1,-2],[-2,-2],[-1,-1],[0,-3],[1,-2],[-2,-2],[-1,-2],[3,-1],[2,-3],[-6,-5],[-2,-3],[5,-4],[-1,-4],[0,-2],[1,-3],[0,-2],[-2,-1],[-1,-2],[-3,-4],[-2,2],[-2,1],[-3,1],[-4,0],[-1,-1],[-3,0],[-2,0],[-6,-5],[-5,-3],[-1,-2],[-3,-3],[-10,-2],[-5,2],[-3,0],[-1,-2],[-1,-3],[-4,-2],[-2,-1],[-1,-2],[0,-3]],[[3568,7775],[-3,2],[-1,2],[-1,3],[1,3],[1,2],[2,2],[7,3],[1,2],[0,2],[-1,1],[-11,3],[-2,2],[0,5],[-1,2],[-1,0],[-9,2],[-10,0],[-4,0],[-2,2],[-1,2],[0,6],[-1,1],[0,1],[2,3],[0,1],[-1,2],[-1,4],[7,9],[-7,10],[-3,6]],[[3529,7858],[-6,15],[0,2],[-2,5],[-4,3],[-5,5],[-10,6],[-3,2],[-3,4],[0,3],[0,3],[0,2],[-3,6],[0,3],[0,2],[-5,2],[-2,2],[0,3],[1,3],[-2,5],[1,4],[-2,0],[1,3],[-3,1],[1,1],[1,2],[2,2],[-2,5]],[[3484,7952],[-1,4],[-2,3],[-2,2],[-3,0],[-4,0],[-4,1],[-4,2],[-5,3],[-1,1],[0,2],[5,5],[-6,9],[0,3],[3,4],[6,4],[3,2],[4,2],[2,3],[-1,7],[3,10],[-2,3],[1,1],[-1,1],[-1,1],[0,1],[2,2],[0,1],[-5,3],[-1,1],[-1,2],[1,1],[2,1],[1,2],[6,2]],[[3479,8041],[2,-1],[4,-1],[8,0],[4,0],[2,0],[6,-3],[-1,-5],[1,-1],[1,0],[1,1],[3,1],[1,-1],[2,0],[2,1],[1,1],[5,-1],[6,-4],[2,2],[2,0],[1,-1],[4,-1],[1,-2],[3,-1],[3,-1],[2,2],[2,0],[3,0],[2,-1],[3,2],[2,0],[4,0],[1,0],[1,-1],[3,-1],[1,-1],[1,1],[1,-1],[2,1],[3,4],[3,-2],[-2,-1],[1,-2],[2,0],[2,0],[3,0],[2,0],[1,1],[2,0],[1,0],[2,3],[6,-3],[7,-5],[4,1],[2,1],[2,0],[2,0],[1,0],[1,0],[1,1],[4,-2],[3,0],[3,3],[1,0],[2,-1],[1,2],[4,1],[1,0],[4,1],[1,1],[1,0],[1,2],[1,1],[2,0],[2,1],[3,2],[1,0],[2,0],[2,0],[5,-2],[3,2],[3,-2],[3,-2],[1,2],[2,0],[1,0],[1,0],[7,7],[2,1],[4,0],[2,-1],[1,0],[2,0],[2,-1],[4,2],[2,0],[1,1],[2,0],[-1,2],[2,0],[4,-1],[1,1],[6,-1],[2,2],[2,1],[2,-1],[3,3],[3,1],[-3,3],[-1,1],[1,2],[6,3],[1,1],[2,-1],[3,1],[4,3],[2,2],[2,2],[1,4],[-2,-1],[-4,0],[-5,2],[-2,2],[3,3],[3,1],[1,0],[4,-2],[2,1],[2,1]],[[4268,7143],[0,-2],[-4,-3],[-1,-1],[-2,-2],[-3,0],[-2,1],[-3,-5],[-3,-1],[-2,-1],[-4,0],[-2,-1],[-2,0],[-2,0],[-2,0],[-7,-1],[0,-2],[1,-1],[4,-2],[3,-1],[1,-1],[1,-3],[2,0],[1,0],[1,-2],[4,-1],[1,-2],[3,-5],[0,-1],[-3,-6],[1,-1],[2,-2],[-1,-2],[-2,-2],[-2,-2],[0,-1],[-3,-1],[-10,-7],[-5,-5],[-2,-1],[-4,1],[-3,-4],[-1,0],[-2,1],[-2,0],[-1,-1],[-2,-2],[-1,-2],[0,-2],[0,-4],[1,-2],[3,-1],[2,0],[0,-1],[-1,-2],[-1,-1],[-2,-4],[-5,-3],[4,-2],[1,-1],[0,-3],[0,-3],[-1,-1],[0,-2],[1,-1],[0,-1],[-5,1],[-3,1],[-3,-2],[-2,-2],[0,-1],[5,-3],[-1,-1],[-1,-1],[-5,-1],[-2,-1],[-2,0],[-1,-1],[0,-1],[2,-4],[-1,-1],[-2,-1],[-2,1],[-4,-5],[-2,-1],[-2,0],[-1,0],[-1,-1],[0,-2],[2,-2],[1,-1],[-1,-2],[-2,-3],[-4,-4],[-2,-2],[-2,-1],[-3,0],[-6,-6],[-11,-8],[-1,-1],[-3,0]],[[3971,7008],[-1,1],[-1,0],[-6,2],[-2,1],[-2,1],[-3,0],[-1,0],[-1,-1],[0,-1],[-3,0],[-1,0],[0,-1],[-1,-2],[-1,1],[-2,0],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,2],[-2,-1],[-2,1],[-1,0],[0,2],[8,9],[1,1]],[[3942,7025],[1,1],[2,1],[2,2],[1,3],[3,0],[1,-1],[5,1],[4,-1],[3,0],[1,2],[1,2],[6,0],[3,-1],[5,-4],[1,0],[1,0],[2,1],[4,0],[2,4],[0,2],[-1,3],[0,2],[2,1],[3,0],[2,0],[2,2],[1,2],[1,0],[6,1],[1,2],[5,1],[1,0],[0,4],[-1,1],[1,3],[2,2],[3,3],[12,10],[-1,2],[1,2],[2,1],[1,0],[3,0],[4,0],[2,-1],[1,2],[4,3],[2,1],[4,2],[2,1],[2,2],[-1,1],[1,1],[0,1],[2,1],[0,2],[-1,1],[-2,1],[-2,1],[0,1],[1,1],[4,2],[-5,2],[-1,2],[1,1],[-1,0],[4,3],[1,3],[1,0],[1,-1],[3,1],[1,1],[1,4],[2,1],[3,1],[0,1],[1,2],[-2,1],[-1,5],[0,4],[-2,1],[-2,1],[-2,2],[1,5],[0,1],[1,2],[3,1],[1,4],[0,1],[-2,3],[-1,2],[2,1],[6,5],[-1,2],[-3,2],[-1,1],[0,2],[1,2],[2,3],[0,5],[1,4],[-2,1],[-1,1],[2,1],[0,2],[-2,1],[1,1],[0,3],[1,1],[2,1],[0,2],[0,5]],[[4073,7202],[2,0],[3,4],[2,0],[2,0],[1,-1],[1,0],[2,-2],[3,0],[4,-3],[1,-1],[4,1],[1,0],[0,2],[2,0],[5,0],[4,1],[1,0],[3,1],[2,0],[0,-2],[1,-1],[-1,0],[-2,-1],[0,-1],[3,1],[1,-1],[3,1],[1,-1],[0,-1],[0,-1],[2,-4],[2,1],[0,-1],[0,-2],[0,-2],[1,0],[3,1],[1,0],[5,-4],[0,2],[1,0],[1,0],[0,-2],[3,-2],[0,-1],[4,-1],[1,-1],[1,0],[2,-1],[4,-2],[3,2],[2,-1],[1,-2],[4,1],[2,0],[4,-1],[2,-2],[3,-2],[5,-1],[4,1],[3,1],[-2,1],[0,2],[2,1],[2,1],[2,1],[4,3],[0,1],[4,1],[2,0],[1,-1],[2,-2],[1,-1],[3,1],[2,1],[0,2],[3,1],[6,0],[4,-2],[1,-3],[-1,-1],[2,-1],[0,-1],[0,-3],[2,-2],[2,0],[6,-4],[3,-2],[3,-3],[4,-1],[-2,-2],[-1,-2],[7,-5],[0,-2],[2,-2],[3,0],[2,0],[3,2],[1,1],[2,0],[3,-5],[2,0],[1,0],[1,-1],[-1,-2],[-1,-1],[2,0],[0,-1]],[[6318,6873],[10,0],[6,0],[4,-1],[8,-6],[4,-2],[6,-8],[4,-3],[11,-6],[4,-3],[-1,-8],[0,-5],[2,0],[1,3],[2,0],[8,-4],[1,1],[3,4],[6,-2],[5,-2],[5,-2],[3,-1],[2,-3],[4,-2],[5,-1],[5,-3],[4,-2],[4,-3],[2,0],[4,0],[2,0],[3,0],[14,4],[2,1],[2,0],[6,-4],[10,-5],[11,-2],[0,-3],[4,-5],[2,-4],[1,-1],[0,-3],[2,0],[2,1],[6,-2],[3,1],[5,-1],[2,-2],[6,2],[3,0],[11,-6],[10,2],[2,-2],[4,-4],[-1,-1],[-5,2],[-4,-2],[3,-2],[0,-8],[3,-1],[6,-1],[1,5],[4,-2],[7,-3],[8,-4],[5,-4],[6,-3],[3,-2],[2,-1],[0,-1],[-1,-1],[1,-6],[-3,0],[-2,2],[-4,-2],[-1,-5],[2,-1],[5,-2],[4,-2],[2,-2],[1,-4],[1,-2],[-3,0],[-6,1],[-8,4],[-19,-1],[2,-6],[-1,-8],[-1,-5],[-2,-2],[-10,4],[3,13],[-3,-1],[-1,-4],[-2,-12],[-4,-2],[-5,1],[-3,-1],[-5,0],[0,5],[-11,-2],[-2,2],[1,2],[0,1],[-2,0],[0,2],[-2,2],[-3,1],[0,1],[-5,-1],[-3,0],[-4,0],[0,-7],[-6,2],[-4,0],[-3,4],[2,3],[-2,3],[-2,0],[1,2],[-6,2],[1,1],[2,3],[-4,1],[-3,-2],[-2,0],[-1,0],[2,-2],[-1,-1],[-1,1],[-6,2],[-8,1],[-3,0],[-3,-3],[0,-2],[-1,-4],[0,-7],[-1,-9],[-1,-4],[-3,-1],[0,2],[-7,-1],[-1,1],[-2,1],[-2,0],[-2,0],[0,-1],[5,-2],[-2,-2],[-2,-1],[-6,0],[-2,1],[-10,0],[-7,0],[-7,0],[-7,2],[-2,2],[-1,7],[-1,5],[-10,4],[-3,3],[-6,1],[-3,2],[-2,0],[2,-2],[-2,-2],[-4,-1],[-3,0],[-2,1],[3,2],[2,0],[0,1],[-1,2],[-5,-3],[-8,0],[-6,-2],[-5,-3],[-7,-6],[2,-5],[0,-4],[3,-8],[-2,-6],[-9,-2],[-14,-4],[-6,-2],[-7,-4],[-4,-2],[-17,-10],[-6,-3],[-2,-1],[-7,-1],[-2,-1]],[[6163,6779],[3,2],[4,3],[0,4],[0,1],[2,2],[3,1],[3,3],[2,1],[1,1],[5,1],[1,0],[2,2],[1,2],[2,1],[1,2],[2,0],[0,2],[0,1],[-2,1],[-3,0],[-1,0],[-1,1],[1,4],[-1,1],[3,10],[2,3],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,-1],[-2,0],[-1,0],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,1],[1,1],[1,0],[0,1],[1,3],[-1,0],[-1,3],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-3,0],[0,1],[-2,0],[-3,1],[-2,1],[-1,0],[-3,0],[-2,0],[-1,0],[-6,2],[-2,0],[-1,-1],[0,-1],[-1,-1],[-2,1],[-2,0],[-1,0],[-2,1],[-6,6],[1,2],[1,6],[1,4],[3,1],[-1,2],[-3,3],[0,2],[6,0],[3,4],[2,2],[3,1],[2,1],[2,-1],[1,-2],[2,0],[2,1],[1,-1],[1,-1],[2,-1],[1,1],[2,1],[1,0],[3,-1],[2,0],[0,1],[-2,3],[1,0],[2,0],[2,-1],[2,0],[-2,3],[2,-1],[11,3],[2,1],[2,3],[2,5],[1,1],[1,1],[0,2],[-2,2],[-6,3],[-4,2],[-1,1],[2,2],[10,4],[2,1],[1,1],[0,2],[0,2]],[[6201,6910],[3,-1],[4,0],[4,0],[3,1],[5,0],[6,-2],[1,-2],[1,-3],[-1,-3],[7,-9],[5,-3],[3,-3],[5,-2],[4,0],[4,0],[4,0],[4,2],[4,1],[4,1],[3,0],[3,-2],[3,-2],[1,-2],[6,0],[4,0],[3,-2],[6,1],[9,-7],[4,-1],[2,0],[2,-1],[1,2]],[[5436,7556],[2,0],[4,-2],[10,-8],[10,-4],[1,-1],[24,-14],[6,-3],[10,-4],[7,-2],[7,-3],[7,-9],[10,-6],[0,-1],[5,-1],[5,-3],[2,-1],[5,-1],[5,-3],[8,-1],[4,0],[4,3],[1,-1],[3,0],[1,1],[4,1],[7,2],[7,-2],[4,1],[1,-1],[4,1],[1,0],[2,0],[3,1],[11,3],[4,-1],[3,3],[2,1],[1,0],[6,-2],[1,0],[4,3],[0,1],[5,-1],[8,2],[4,3],[1,-2],[7,-1],[4,0],[5,3],[1,-2],[1,0],[2,2],[-1,-4],[0,-3],[2,-3],[3,-2],[1,-1],[-1,-2],[-1,-1],[0,-2],[1,0],[0,-1],[-2,-1],[2,-1],[-1,0],[0,-1],[-1,0],[1,-1],[3,-1],[-1,-1],[1,0],[1,0],[1,0],[3,-2],[0,-1],[0,-1],[-1,0],[-1,-1],[3,0],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[1,-1],[-2,-1],[2,-1],[-1,-1],[-2,0],[3,-1],[-2,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[2,-1],[-1,-2],[3,-1],[3,-2],[0,-1],[-2,-1],[-1,-3],[-1,0],[1,-1],[-1,0],[0,-1],[2,-2],[-2,-1],[-2,-1],[1,-2],[1,0],[-3,-1],[-1,-1],[-1,1],[0,-1],[1,0],[1,0],[-2,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,-1],[2,0],[0,-1],[1,1],[-1,-1],[0,-1],[0,-1],[1,1],[1,-1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[0,1],[-2,0],[1,-2],[-3,1],[0,-4],[-1,0],[0,-2]],[[4728,6470],[-1,0],[-1,0],[-1,-1],[-1,-1],[-3,0],[-6,-1],[-4,-2],[-2,0],[0,2],[1,1],[-2,1],[0,1],[1,1],[2,1],[0,2],[1,2],[-6,2],[0,-1],[-1,-2],[-1,0],[-3,-2],[-2,1],[-1,4],[-2,1],[-2,1],[-3,1],[0,1],[-1,0],[0,-1],[-3,-1],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,2],[-4,1],[-1,2],[-3,1],[3,1],[3,0],[1,1],[0,1],[2,1],[0,1],[0,1],[1,1],[5,-1],[0,1],[-2,3],[-1,3],[-1,-1],[-4,1],[-3,-2],[-2,1],[0,3],[1,2],[-2,1],[-1,2],[-3,0],[-1,-6],[-1,-2],[0,-2],[4,-1],[1,-1],[0,-1],[-2,0],[-2,-2],[-2,-3],[2,-6],[1,0],[0,-1],[3,-1],[3,-5],[0,-2],[-1,0],[-4,2],[-1,2],[-3,1],[-4,1],[-3,-1],[-2,0],[-2,1],[-1,2],[-1,-1],[0,-4],[0,-2],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-2,1],[-4,3],[-1,0],[-5,2],[-1,1],[-1,1],[0,3],[-1,1],[-1,1],[-4,2],[-3,0],[-2,-1],[-4,0],[-1,0],[-2,0],[-1,0],[0,-1],[1,-1],[5,-2],[3,0],[2,0],[1,-1],[-1,-3],[-1,-1],[-2,-1],[4,-2],[1,-2],[0,-2],[-1,-1],[-1,-1],[-2,-1],[0,-3],[-4,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-4,6],[-1,4],[-2,2],[-1,-2],[-4,-1],[0,1],[0,1],[-1,1],[-1,1],[1,0],[1,1],[0,1],[-2,0],[-3,0],[-1,-1],[-1,-2],[0,-1],[-3,0],[-1,0],[-6,2],[-1,-5],[-1,-1],[-1,0],[-3,2],[1,1],[-2,1],[-3,-1],[-1,-1],[-1,-1],[0,-1],[-2,-2],[-6,1],[-1,-1],[0,-1],[-1,-2],[2,-1],[4,0],[1,-1],[1,-1],[0,-1],[-1,-1],[-2,0],[0,-1],[-1,0],[0,-2],[2,0],[2,0],[1,-4],[3,-1],[-1,-1],[-2,-1],[-5,-1],[-1,4],[0,2],[-1,1],[-4,0],[-2,-1],[-1,-1],[-2,-2],[-2,2],[-3,0],[-4,-6],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-7,4],[-4,2],[-5,0],[-6,4],[1,1],[1,0],[1,1],[1,1],[1,2],[1,3],[1,2],[0,1],[0,2],[3,1],[3,1],[5,2],[3,3],[1,3],[1,2],[-1,2],[5,3],[7,5],[3,2],[1,2],[1,4],[1,2],[3,1],[3,0],[5,3],[3,2],[3,1],[8,0],[6,0],[3,3],[1,1],[-1,3],[-2,4],[-3,3],[-1,2],[-3,4],[-1,2],[-1,9],[-4,1],[-4,-2],[0,-1],[-2,0],[-7,3],[-3,2],[-2,2],[-1,2],[0,2],[-1,1],[-4,4],[-1,0],[-9,0],[-4,1],[-3,3],[-1,1],[0,2],[3,3],[1,2],[0,9],[-1,3],[-3,5],[0,2],[1,1],[2,1],[2,3],[-1,4],[0,2],[-1,2],[-6,6],[-3,2],[-3,1],[-5,4],[-6,0],[-2,1],[-1,-2],[-1,-2],[-2,-2],[0,-2],[-1,-1],[-8,2],[-1,0],[-6,-2],[-2,0],[-4,1],[-2,1],[0,1],[0,1],[-2,0],[-1,-1],[0,-1],[-1,-1],[0,-7],[-1,-2],[-2,-1],[-5,0],[-3,-1],[-3,-1],[-1,-2],[1,-2],[-3,-1],[-4,-1],[-4,-2],[-2,-2],[-3,-4],[-1,-1],[-2,2],[-6,0],[-5,3]],[[4551,6797],[7,2],[11,2],[6,0],[3,-1],[6,0],[9,-1],[8,-2],[7,-3],[17,-5],[3,-1],[9,-1],[4,-1],[3,-1],[3,0],[2,-1],[0,-1],[-1,-3],[-1,-3],[-2,-2],[-6,-3],[-3,-1],[-7,0],[-5,1],[-11,-1],[-5,-1],[-3,-3],[0,-2],[2,-3],[2,-1],[4,-3],[6,-4],[3,-1],[11,-4],[4,0],[6,0],[15,3],[2,-2],[0,-2],[-2,-5],[-9,-9],[0,-1],[2,-4],[8,-3],[4,-1],[3,-2],[4,-1],[3,0],[3,0],[4,0],[4,-1],[12,-1],[8,-3],[2,0],[1,0],[8,-1],[8,-4],[4,0],[6,0],[5,0],[7,0],[5,1],[8,2],[5,2],[4,2],[5,3],[4,4],[2,2],[4,2],[5,-2],[1,-1],[2,-8],[3,-4],[0,-4],[2,-1],[3,-1],[5,0],[3,0],[8,1],[8,2],[6,2],[2,0],[3,-1],[2,-1],[0,-1],[1,-2],[1,-2],[0,-3],[-2,-5],[-1,-3],[0,-3],[0,-3],[2,-2],[5,-5],[3,0],[3,0],[1,1],[3,2],[9,2],[10,5],[3,0],[2,0],[2,-2],[1,-1],[1,-1],[0,-2],[0,-2],[-2,-8],[-4,-3],[-9,-3],[-2,-1],[-2,-1],[1,-3],[6,-4],[4,-3],[0,-1]],[[5780,7196],[-6,-1],[-3,0],[0,1],[-1,1],[-5,2],[-2,1],[-4,0],[-1,0],[1,4],[-2,0],[-1,1],[-2,-1],[-3,-1],[-1,-2],[-1,-3],[-5,0],[-1,-3],[0,-1],[1,-1],[1,0],[3,1],[2,0],[3,0],[-1,-2],[0,-3],[-2,-2],[-4,0],[0,-1],[2,-1],[1,-2],[3,-2],[1,-2],[-7,1],[-3,-1],[-2,0],[-2,-2],[-2,-2],[1,-2],[0,-1],[-1,-1],[-2,1],[-2,-1],[-1,0],[0,-4],[0,-2],[2,0],[3,1],[2,0],[2,-1],[2,0],[1,-3],[3,-1],[2,0],[3,1],[2,0],[1,-1],[3,0],[0,-3],[2,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-2],[-1,-1],[1,-1],[1,-1],[-1,-2],[0,-2],[1,1],[1,-1],[0,-1],[4,1],[1,0],[0,1],[1,0],[1,0],[1,1],[2,-2],[2,1],[10,4],[0,-2],[-1,-2],[-1,-1],[-1,0],[-3,-8],[2,0],[3,2],[3,-2],[1,0],[0,-1],[2,0],[-1,-2],[1,-1],[2,0],[2,0],[0,-1],[1,-1],[1,0],[3,-2],[-1,-2],[-1,-1],[2,-1],[2,-4],[2,-1],[3,-4],[-1,-1],[0,-4],[0,-2],[-1,-1],[-2,1],[-2,-3],[1,-1],[2,-3],[-2,-1],[-4,0],[-3,1],[0,2],[-4,0],[-3,-2],[-3,-2],[-2,-2],[-1,-2],[-4,-1],[-1,-3],[3,-1],[0,-3],[3,0],[0,-2],[3,-3],[0,-1],[-1,-1],[-3,1],[-6,4],[-2,1],[-1,-1],[0,-1],[1,-1],[-1,-1],[-2,0],[-2,-3],[0,-2],[-2,1],[-2,-2],[-1,-2],[1,-3],[2,-2],[1,-4],[4,0],[-1,-2],[1,0],[3,0],[1,-5],[1,-1],[2,-1],[0,-3],[-5,2],[-3,0],[-1,-2],[1,-1],[1,-3]],[[5565,7091],[-3,2],[-4,0],[-9,0],[-9,-2],[-6,-3],[-5,1],[-5,2],[-5,2],[-7,5],[-7,6],[-12,9],[-5,5],[-1,1],[-14,5],[-4,3],[-3,1],[-2,0],[-2,-1],[-2,0],[-4,1],[-4,0],[-3,2],[-1,4],[-2,2],[-3,4],[2,8],[-1,4]],[[3796,8118],[-2,0],[-1,-1],[-1,1],[-4,1],[-1,-1],[-3,-1],[-3,0],[-3,-1],[-1,1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-3,0],[-2,0],[-2,0],[-1,0],[0,-2],[-3,-1],[-1,-1],[-1,-2],[1,-1],[1,-1],[-4,-4],[-4,-3],[-1,-1],[1,-1],[2,-1],[-1,-2],[-3,-3],[1,-1],[4,1],[3,2],[2,2],[2,-1],[-1,0],[1,-1],[-1,-2],[-2,-2],[-3,-1],[0,1],[-3,0],[-2,-2],[-3,0],[-2,-2],[-2,-1],[-2,-2],[-1,-2],[1,-1],[1,1],[3,-1],[0,-2]],[[3479,8041],[5,5],[1,4],[0,2],[-3,3],[-1,1],[0,7],[1,3],[3,5],[3,1],[4,0],[1,1],[1,2],[2,2],[1,2],[-1,2],[-1,2],[-6,6],[0,2],[0,3],[1,1],[-1,1],[2,2],[-1,3],[1,1],[1,1],[2,4]],[[3494,8107],[0,3],[-1,2],[-4,6],[-3,3],[-1,4],[-3,5],[0,3],[-1,2],[-2,1],[-3,2],[-2,2],[-2,0],[-1,2],[-2,5],[-1,1],[-1,1],[-6,0],[-1,1],[-2,3],[-5,3],[0,2],[-1,2],[1,2],[7,3],[0,1],[-1,2],[-1,1],[-3,0],[-1,0],[-2,3],[-2,2],[-4,2],[-1,2],[-1,5],[-2,2],[-6,4],[2,1],[0,1],[0,1],[-1,0],[-4,-1],[-1,1],[-2,2],[-2,0],[-1,3],[-1,1],[-1,3],[0,6],[1,6],[0,6],[1,0],[1,0]],[[3428,8219],[3,4],[5,0],[6,0],[1,0],[7,-1],[2,0],[0,4],[0,1],[2,3],[-1,1],[-1,1],[-1,1],[2,3],[2,2],[3,2],[4,1],[5,0],[2,0],[2,-1],[2,1],[3,5],[1,4],[2,2],[1,1],[1,0],[4,1],[1,1],[3,3],[9,5],[2,7],[13,2],[8,4],[5,6],[0,2],[14,3],[4,-6],[16,9],[8,6],[11,6],[13,15],[3,-1],[7,-3],[16,-4],[6,-1],[5,0],[2,0],[5,-4],[4,-2],[10,-2],[6,0],[4,-1],[7,-3],[1,-7],[5,-3],[0,-2],[2,-7],[1,-1],[0,-5],[0,-2],[1,-2],[0,-3],[1,-4],[3,-4],[4,-4],[1,-2],[1,0],[15,-12],[7,-5],[14,-7],[4,-2],[3,-2],[9,-2],[5,-3],[13,-7],[4,-3],[4,-2],[7,0],[9,0],[2,-1],[3,0],[2,-2],[11,-7],[4,-1],[6,-2],[5,0],[7,-2],[2,-1],[4,1],[3,-1],[8,-2],[9,-1],[4,0],[4,-1],[3,0],[3,-1],[2,0],[10,2],[1,-2],[-7,-1],[-4,-2],[-1,-9],[-3,-3],[-2,-3],[-2,-2],[-5,-2],[-1,-2],[-2,0],[-2,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-8,-2],[-2,0],[-2,0],[0,-2],[1,-1],[1,0],[0,-1],[-1,0],[-3,-1],[-2,0],[-5,1],[-1,1],[0,3],[2,2],[-2,0],[-1,-1],[-1,-1],[0,-3],[-5,-7],[-3,-1],[0,-1],[1,-1],[0,-2],[3,-2],[-1,0],[-3,-1],[-1,-2],[-3,1],[1,4],[-1,2],[-1,-2],[-5,-1],[-2,0],[-1,1],[1,1],[-1,1],[-3,1],[-5,-3],[0,-1],[-2,-2],[0,-1],[-4,0],[-1,1],[-2,0],[0,-1],[-1,-1],[0,-2],[1,-2],[0,-1],[-3,1],[-1,0],[-2,0],[-1,-1],[4,-2],[3,0],[2,0],[3,-2],[4,-1],[7,-4],[2,-1],[1,-2],[-4,0]],[[3868,7805],[2,0],[2,-7],[2,-3],[2,-1],[0,-5],[4,-1],[1,1],[3,0],[7,-4],[4,-3],[2,-6],[9,-8]],[[4073,7482],[-7,2],[-9,4],[-2,1],[-1,2],[0,1],[-3,1],[-3,1],[-2,0],[-1,-1],[1,-2],[4,-2],[0,-1],[-2,0],[-4,1],[-5,2],[-2,2],[-7,2],[1,3],[-1,1],[-3,0],[-4,1],[-4,4],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-2,1],[-1,1],[-1,1],[-3,1],[-2,1]],[[4006,7504],[1,1],[-1,5],[1,2],[1,2],[-1,2],[-5,3],[-2,2],[-2,3],[-2,2],[-3,0],[-3,2],[-1,1],[1,2],[-2,0],[-1,1],[-1,7],[-1,2],[0,2],[-1,4],[-2,2],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-3,0],[-1,1],[3,4],[-1,2],[-2,1],[-4,2],[-2,2],[-2,0],[-7,-3],[-3,-3],[-2,0],[-1,0],[-2,2],[-3,1],[-1,0],[-3,0],[-1,1],[0,1],[-1,0],[-9,-2],[-4,-1],[-6,1],[-2,1],[-3,0],[-3,0],[-2,0],[-3,-1],[-2,1],[2,2],[3,3],[2,2],[-1,0],[-6,3],[-1,0],[-6,2],[-6,-2],[-1,-3],[-4,-3],[-1,-1],[-2,0],[-3,1],[-2,0],[-3,-1],[-2,-1],[-3,1],[-5,1],[0,1],[0,1],[0,2],[2,3],[-1,2],[-4,4],[-2,2],[-2,2],[-8,9],[-4,-2],[-4,-1],[-3,1],[-3,1],[-2,2],[-2,2],[-5,3],[-6,1],[-3,3],[-2,3],[-4,1],[-1,1],[-1,-2],[-2,0],[-2,0],[-2,0],[-2,0],[-7,4],[-2,0],[-4,-5],[-6,3],[-3,0],[-2,2],[-2,-1],[-3,1],[-3,1],[-1,2],[-3,3],[-3,2],[-1,3],[-1,1],[-10,3],[-2,10],[-3,1],[-1,2],[1,1],[-3,1],[-7,0],[-2,1],[-3,2],[-4,-3],[-5,0]],[[3710,7650],[4,3],[2,3],[0,3],[-1,2],[-2,1],[-3,1],[-3,0],[0,2],[2,0],[2,0],[3,5],[-2,2],[5,4],[-6,3],[-1,-2],[-1,1],[-1,2],[1,1],[4,0],[1,4],[1,1],[6,0],[3,1],[0,4],[-1,1],[-2,-1],[-1,2],[-5,2],[4,5],[3,0],[3,4],[2,1],[4,2],[5,4],[-3,1],[0,4],[1,4],[0,1],[3,2],[-1,2],[5,3],[-3,6],[7,9],[-2,2],[-2,2],[3,2],[4,4],[1,1],[4,-1],[3,3],[3,1],[2,5],[2,2],[3,1],[6,0],[5,2],[1,1],[4,-3],[5,0],[2,0],[1,2],[0,1],[5,4],[-5,3],[3,3],[7,-1],[2,-2],[2,1],[2,2],[-1,3],[4,4],[-1,2],[0,2],[5,5],[6,-2],[3,3],[4,0],[4,2],[2,-1],[1,1],[1,2],[2,1],[0,1],[2,1],[0,2],[3,-1],[3,3],[7,-3],[3,3],[2,0],[2,-2],[2,1],[3,-2],[5,2]],[[3568,7775],[2,-1],[1,-2],[0,-2],[-2,-2],[-4,-5],[3,-5],[4,-6],[2,-3],[1,-2],[2,-3],[0,-3],[1,-3],[5,-7],[7,-5],[10,-4],[4,0],[4,-1],[2,-3],[1,-6],[3,-2],[4,-4],[3,-4],[4,-7],[2,-1],[2,-2],[3,0],[6,-6],[5,-2],[4,-4],[2,-4],[2,-3],[10,-7]],[[3316,7677],[0,2],[-5,8],[-5,6],[-8,8],[-7,5],[-7,5],[-2,4],[-8,5],[-1,4],[1,6],[0,4],[0,5],[-3,6],[-1,8],[0,6],[-6,6],[-10,7],[-10,3],[-5,4],[-2,4],[-1,3],[2,1],[2,0],[4,0],[5,2],[1,1],[0,1],[-2,2],[-3,2],[1,3],[1,1],[0,1],[6,3],[3,1],[1,1],[3,1],[2,1],[2,0],[2,0],[1,3],[4,1],[2,1],[0,1],[1,1],[6,2],[2,0],[-1,2],[0,3],[0,2],[1,1],[2,1],[-1,3],[-1,3],[-1,2]],[[3281,7833],[3,1],[4,0],[4,0],[2,0],[2,-3],[1,1],[1,-1],[2,2],[2,1],[2,1],[5,0],[2,1],[2,2],[0,4],[1,2],[2,1],[3,1],[5,0],[2,1],[2,1],[2,4],[4,6],[5,3],[3,0],[2,1],[5,1],[2,1],[2,0],[4,3],[2,4],[2,1],[7,-3],[2,0],[2,-2],[2,0],[4,-2],[5,-1],[0,3],[3,3],[1,2],[-3,1],[-1,1],[-1,1],[1,2],[1,1],[2,-1],[2,0],[2,2],[-2,1],[0,1],[1,1],[2,1],[6,7],[2,2],[4,0],[2,0],[2,1],[1,1],[2,2],[3,1],[4,-1],[2,-1],[4,-4],[1,0],[5,0],[5,-1],[0,-1],[1,-4],[3,-2],[4,-3],[4,-2],[9,-4],[5,-2],[3,2],[1,1],[4,-2],[2,-1],[0,-4],[1,-1],[2,-1],[13,-3],[4,-2],[4,3],[3,-1],[3,1],[10,-5],[3,0],[2,-1],[14,0]],[[6073,6567],[-1,-1],[6,0],[1,0],[-1,-1],[-1,0],[-6,-2],[-1,-1],[-1,-1],[-1,0],[-2,1],[-1,0],[0,-1],[0,-3],[-3,-2],[-2,0],[-2,1],[-2,-3],[-1,0],[0,1],[-1,1],[-2,0],[0,-2],[-2,-1],[-2,1],[-1,0],[-4,-4],[-1,-1],[1,-1],[0,-1],[-4,-3],[-1,-2],[-2,0],[-2,0],[-5,3],[-1,0],[-3,-2],[-1,-1],[0,-3],[-1,0],[-3,3],[-2,1],[0,-1],[0,-2],[-1,0],[-4,1],[-1,-1],[-1,-1],[-1,-2],[0,-3],[-2,-2],[-1,-1],[0,-2],[-2,-1],[-1,0],[0,-1],[-1,-2],[-1,-1],[-2,2],[-1,1],[-1,-1],[-1,-3],[-1,-1],[-3,0],[-3,-1],[-2,1],[-3,0],[-1,-3],[-2,-2],[-1,-1],[-3,0],[0,-1],[1,-1],[2,0],[3,0],[0,-4],[-1,-1],[-1,-3],[3,-2],[1,-1],[1,-1],[0,-3],[-1,-4],[3,-1],[0,-2],[-2,-5],[-3,0],[-2,1],[-2,0],[0,-6],[-1,-4],[-2,-1],[0,-1],[-1,-3],[-2,-5],[2,-1],[1,0],[0,-3],[-1,0],[-2,1],[0,1],[-1,0],[-1,0],[-1,-2],[1,-1],[-2,-3],[-1,-1],[0,-4],[1,-4],[1,-1],[3,0],[6,-1],[1,-1],[1,0],[1,-3],[0,-3],[0,-1],[-2,-5],[0,-2],[-1,-4],[2,0],[1,-1],[2,-1],[3,-2],[1,-1],[0,-2],[0,-4],[0,-7],[0,-2],[0,-1],[-1,0],[-2,-1],[0,-1],[0,-1],[4,-4],[0,-1],[-2,0],[-1,-1],[0,-1],[1,0],[3,-1],[1,-1],[0,-1],[-1,0],[-2,-1],[-2,-2],[1,0],[6,-3],[5,-6],[1,-1],[1,-1],[1,-1],[2,-1],[0,-1],[0,-3],[1,-1],[1,-1],[1,-2],[0,-2],[-3,-2],[0,-1],[1,-2],[-2,-2],[-1,-2],[1,-1]],[[6318,7049],[0,-2],[-2,-1],[-6,-2],[-5,-2],[-3,0],[-7,-2],[-1,0],[-4,2],[-3,0],[-4,0],[-2,-1],[-1,-1],[-1,-2],[0,-4],[-2,-1],[-3,0],[-5,1],[-1,1],[0,1],[1,1],[-3,1],[-2,1],[-2,0],[-8,-1],[-6,-1],[0,-2],[0,-1],[3,-2],[0,-2],[-1,-2],[-1,-9],[-1,-2],[1,-2],[-1,-5],[3,0],[5,-1],[9,-2],[4,-1],[8,-1],[9,-1],[1,0],[3,5],[1,0],[5,-1],[3,0],[1,2],[3,-3],[-1,-1],[1,-3],[2,-1],[0,-1],[6,-5],[-1,0],[2,-2],[1,1],[1,-1],[1,-1],[1,0],[1,-1],[4,0],[0,-1],[3,-2],[0,-2],[5,-1],[0,-1],[3,-1],[1,1],[1,2],[3,0],[1,-1],[1,1],[2,-1],[9,0],[1,-1],[5,0],[1,-1],[11,-3],[2,1],[7,-1],[-1,-5],[-1,-1],[0,-8],[4,-7],[3,-2],[-1,-2],[-4,-3],[-2,-4],[2,-3],[-1,-3],[-1,-2],[2,-1],[0,-1],[-2,-1],[-2,-1],[-3,-1],[-1,-1],[0,-2],[2,-2],[-1,-1],[-2,0],[-4,7],[-2,-2],[-7,2],[-1,-1],[-5,1],[0,-2],[-2,-2],[2,-1],[-1,-3],[-5,0],[0,-1],[-4,0],[0,-2],[-2,1],[-4,-2],[1,-2],[-1,-1],[0,-1],[-3,0],[0,1],[-7,1],[-1,-1],[-3,1],[-2,1],[-6,1],[-1,2],[0,1],[-4,0],[-1,1],[-1,-1],[-2,0],[-1,1],[-1,-1],[0,-1],[-2,-1],[1,-3],[1,-1],[3,-1],[2,1],[2,-2],[-2,-2],[-1,-2],[0,-1],[2,-1],[0,-1],[-1,-1],[-3,0],[-3,0],[-3,-3],[1,-4],[-1,-1],[6,-4],[2,-1],[2,0],[2,-1],[1,-1],[-1,-3],[-2,1],[-2,-4],[7,-3],[4,-2],[2,-4],[-2,0],[1,-2],[-1,-2],[2,-2],[1,-1],[0,-2]],[[6201,6910],[-5,2],[0,5],[-1,2],[-2,2],[-2,4],[-5,1],[-6,3],[-5,4],[0,1],[-3,2],[0,1],[-2,1],[-2,0],[-5,-1],[-8,-1],[-3,-1],[-3,-2],[-4,-2],[-4,-1],[-7,-1],[-3,-1],[-3,-4],[-8,-1],[-3,0]],[[3996,7455],[1,0],[6,0],[6,-2],[2,0],[2,-1],[1,-8],[1,-3],[-1,-1],[0,-3],[5,-4],[4,0],[4,-2],[8,0],[2,-2],[0,-2],[-1,-2],[-2,-4],[-4,-1],[-3,-3],[-2,-5],[2,-2],[1,-1],[-1,-4],[4,-4],[-1,-3],[0,-3],[-1,-3],[-1,0],[-3,-2],[-7,0],[-3,-1],[5,-4],[3,-1],[4,-4],[2,-7],[2,-4],[3,-4],[0,-2],[-2,-1],[-4,-2],[-1,-1],[-1,-2]],[[4026,7357],[0,-1],[-5,-2],[-3,1],[-2,0],[0,1],[-4,-1],[-3,1],[-2,1],[-2,2],[-5,3],[0,5],[-2,1],[-4,2],[-3,2],[-2,3],[-1,1],[-2,0],[-5,-1],[-5,0],[-2,1],[0,2],[-1,2],[-2,2],[-4,3],[-2,1],[-3,0],[0,1],[1,2],[-2,0],[-1,3],[0,3],[-1,1],[-6,-1],[-7,-3],[-2,0],[-7,-2],[-3,1],[-16,4],[-4,0],[-5,0],[-2,1],[-1,0],[-1,-1],[-2,0],[-2,0],[-5,-1],[-1,-2],[-4,0],[-1,-1],[-3,0],[0,2],[-1,1],[-3,0],[-5,1],[0,1],[0,1],[-2,1],[0,3],[1,1],[0,1],[-1,0],[-4,-2],[-2,2],[-8,6],[-6,2],[-2,0],[-1,-1],[-2,-3],[0,-1],[-2,-2],[-3,-4],[0,-2],[-5,-2],[0,-2],[-1,-1],[-3,-1],[-2,-2],[-4,-2],[-1,-1],[1,-1],[-1,-2],[3,0],[2,-1],[2,-3],[-1,-2],[-1,-1],[-3,-3],[1,-1],[-4,-3],[-1,-2],[-1,0],[-4,-2],[-2,-1],[-6,1],[-2,-1],[-2,-1],[-3,-1],[-5,0],[-1,-4],[-1,0],[-2,-1],[-1,1],[-5,1],[-4,3],[-3,-3],[-3,-2],[-2,0],[-2,1],[-1,1],[-2,1],[-3,1]],[[3524,7385],[-1,5],[1,2],[2,3],[-1,2],[-1,0],[-2,-2],[-2,-1],[-2,0],[-2,0],[0,2],[2,5],[2,4],[2,1],[2,0],[1,1],[-1,1],[0,2],[2,3],[0,1],[1,1],[2,1],[0,3],[-2,3],[1,1],[-1,2],[1,1],[3,-1],[2,1],[2,2],[-1,2],[-2,2],[4,2],[3,-2],[1,1],[3,0],[1,0],[2,1],[1,-1],[1,-2],[2,-1],[1,0],[5,3],[1,0],[1,0],[2,0],[2,1],[0,1],[3,2],[-2,2],[-4,3],[4,2],[1,0],[2,0],[3,-4],[2,1],[1,0],[3,2],[5,-3],[2,1],[-3,4],[0,1],[3,2],[-1,2],[0,1],[2,1],[3,0],[2,1],[1,0],[0,2],[2,0],[0,-1],[3,-1],[2,-1],[2,-1],[5,1],[1,-2],[-2,-3],[1,-1],[2,0],[2,3],[5,0],[2,0],[3,2],[-2,2],[1,2],[3,2],[1,0],[0,-1],[4,-2],[3,0],[1,0],[3,3],[6,1],[5,2],[2,2],[1,2],[1,0],[2,1],[1,1],[3,1],[1,2],[1,0],[8,-2],[2,0],[3,2],[1,-1],[3,3],[-3,3],[1,2],[-2,1],[1,2],[3,1],[0,1],[1,2],[-1,2],[2,2],[0,1],[2,0],[0,1],[-2,1],[-1,1],[-1,4],[3,1],[1,1],[2,1],[-5,4],[0,1],[1,1],[8,6],[-1,2],[-3,2],[-2,2]],[[3675,7516],[2,2],[2,1],[1,1],[5,2],[0,2],[-3,4],[3,2],[1,1],[7,3],[1,-1],[6,-6],[4,0],[6,1],[6,0],[1,-1],[0,-4],[1,-3],[2,-2],[3,0],[3,0],[7,-1],[3,0],[4,2],[2,0],[3,-1],[3,-2],[4,-1],[3,1],[2,1],[1,-4],[1,-2],[3,-4],[0,-1],[-1,0],[0,-2],[-1,-2],[2,-1],[0,-6],[3,-1],[1,-4],[2,0],[3,-1],[2,1],[1,-2],[2,-2],[1,-2],[2,-1],[2,-2],[1,-1],[2,-2],[1,-1],[-1,-1],[1,-1],[1,1],[2,-2],[3,0],[3,-1],[7,2],[-1,-1],[4,-1],[4,-4],[2,0],[2,-3],[3,-1],[1,-3],[1,1],[2,1],[3,-1],[3,1],[5,-2],[9,-3],[1,0],[-1,-2],[0,-1],[-1,-2],[1,-1],[1,0],[2,0],[4,0],[0,1],[-1,2],[1,2],[3,0],[1,-1],[3,0],[1,0],[2,-2],[0,-2],[2,-4],[-3,-4],[0,-2],[-1,-2],[7,1],[4,4],[3,0],[4,0],[2,0],[4,3],[4,2],[2,-1],[3,-2],[1,-1],[2,1],[1,1],[3,5],[0,3],[2,2],[2,2],[3,4],[0,9],[0,4],[2,3],[5,2],[8,-3],[3,-6],[0,-3],[2,-5],[3,-3],[6,-3],[5,-3],[4,-2],[5,-2],[6,-1],[3,-2],[4,-2],[3,-5],[2,-2],[9,1],[7,3],[4,2],[5,1],[9,5],[0,2]],[[4062,7212],[-3,-4],[0,-1],[0,-2],[2,0],[4,-1],[3,-1],[2,-3],[3,2]],[[3942,7025],[-1,1],[-1,0],[0,5],[-2,0],[-2,-1],[-1,0],[0,1],[0,1],[-3,2],[-2,2],[0,1],[0,2],[-3,0],[-1,0],[1,4],[0,1],[-7,2],[0,1],[1,3],[-2,0],[-2,-1],[-2,-1],[-1,2],[-2,-1],[-2,1],[-1,1],[1,1],[3,0],[1,0],[-1,1],[-3,2],[0,1],[0,2],[0,1],[-2,2],[-1,1],[-6,-3],[0,3],[1,1],[-2,3],[2,1],[5,4],[6,0],[1,2],[-1,1],[-1,2],[0,3],[-1,2],[-2,2],[-2,2],[-2,1],[0,1],[1,2],[1,1],[2,4],[1,1],[1,3],[0,1],[-1,1],[-2,2],[-1,0],[-2,0],[-2,0],[-5,-1],[-2,-1],[-2,-1],[-8,-6],[-2,0],[-3,0],[-1,1],[0,1],[1,2],[6,8],[0,1],[-1,1],[-8,3],[-9,2],[-2,1],[-2,0],[-10,-3],[-3,-1],[-3,0],[-3,1],[-5,3],[-1,1],[-5,4],[-14,15],[-3,2],[-3,0],[-12,-1],[-1,-1]],[[3815,7211],[10,-2],[3,0],[2,2],[1,3],[4,1],[2,2],[4,-4],[2,-1],[3,0],[4,0],[3,2],[4,1],[4,0],[5,-2],[3,0],[2,2],[0,1],[-2,1],[1,2],[3,2],[1,0],[2,0],[0,-2],[3,-2],[7,-1],[1,-1],[2,-2],[1,-2],[3,-1],[7,-4],[1,-3],[2,-1],[2,-2],[2,0],[1,1],[2,2],[2,1],[1,1],[0,1],[5,3],[3,2],[1,1],[1,3],[4,0],[0,1],[3,1],[3,4],[1,0],[3,2],[4,0],[3,1],[1,-1],[1,-1],[1,-2],[1,-1],[2,0],[3,1],[2,1],[-1,1],[-3,4],[0,1],[1,0],[2,0],[1,0],[3,-1],[2,-1],[2,1],[0,2],[3,-3],[2,0],[3,2],[14,0],[2,-1],[0,1],[0,1],[1,0],[0,1],[7,1],[4,-2],[1,-2],[0,-5],[2,-3],[1,-1],[3,-1],[5,0],[2,0],[2,1],[2,1],[3,0],[1,1],[2,1],[2,0],[1,1],[2,0],[2,-1],[3,1],[2,0],[1,0],[1,2],[2,1],[0,-1],[0,-3],[2,1],[2,-1],[1,1],[2,-1],[3,-1],[1,0],[1,1],[3,0],[2,-1],[3,-1],[1,0],[0,-1],[1,-2],[0,-2],[2,-1]],[[4252,7312],[0,-1],[-2,-1],[-1,0],[-3,1],[-4,2],[-2,-1],[-1,-1],[-2,-6],[-1,-1],[-3,-3],[-2,-7],[-2,-1],[-3,-1],[-4,0],[-3,2],[-3,2],[-1,0],[-3,1],[-4,2],[-2,1],[-6,1],[-3,-1],[-2,-4],[-3,-3],[-6,-2],[-2,-1],[-4,1],[-2,-1],[-2,-1],[-2,0],[-6,3],[-1,2],[-3,2],[-2,4],[-1,1],[-3,1],[0,4],[-1,2],[-2,1],[-5,0],[-1,1],[-5,0],[-4,1],[-3,-2],[-3,0],[-4,1],[-10,0],[-3,0],[-2,1],[-2,2],[-2,2],[-1,1],[-7,0],[-1,-1],[1,-3],[0,-1],[0,-1],[-2,-2],[-2,-2],[-3,-1],[-1,0],[0,-1]],[[4095,7304],[-2,1],[-3,2],[-2,0],[-3,1],[0,2],[-1,1],[-4,3],[-3,-2],[-1,-2],[-3,0],[-5,2],[0,1],[0,1],[0,1],[1,1],[-1,1],[-1,1],[0,1],[-2,1],[-7,2],[-1,0],[0,2],[1,0],[-1,1],[1,0],[1,1],[2,2],[-1,2],[1,1],[0,1],[-1,1],[0,3],[-1,3],[-1,0],[-2,-1],[-3,0],[-1,-1],[-2,-1],[-2,1],[-1,0],[-3,1],[0,3],[1,5],[-6,1],[-3,-1],[-2,1],[-1,1],[-1,6],[-4,2],[-2,1]],[[3996,7455],[-2,0],[-4,1],[-1,1],[1,2],[4,3],[1,2],[-1,1],[0,2],[-2,1],[-5,0],[-5,3],[-6,2],[-6,1],[-1,1],[0,1],[2,1],[1,1],[-2,7],[0,2],[1,1],[-2,4],[-4,2],[0,1],[1,1],[3,2],[2,4],[3,0],[1,-1],[2,0],[3,0],[2,2],[3,0],[3,0],[2,0],[3,3],[6,0],[7,-2]],[[5021,6762],[-1,-2],[0,-3],[-1,-1],[-3,0],[-1,-1],[-4,-3],[-1,-1],[1,-2],[0,-2],[-4,0],[-1,-1],[-2,-1],[-3,1],[-1,-2],[-2,0],[-1,0],[0,-2],[-3,0],[-2,1],[-3,-3],[-4,-1],[-2,1],[-2,2],[-1,1],[-4,-4],[2,-1],[-3,-1],[-1,-2],[0,-1],[0,-1],[-1,-2],[-2,-5],[-1,-1],[-2,0],[-5,2],[-3,1],[-3,-1],[-1,0],[1,-2],[-2,-4],[0,-2],[3,-2],[1,-2],[0,-2],[2,0],[5,1],[2,0],[1,0],[0,-2],[1,0],[4,-1],[1,-1],[-1,-1],[-2,-1],[-1,0],[-5,0],[-2,-1],[1,-1],[0,-2],[-1,-3],[-1,-2],[-1,0],[-1,-2],[0,-1],[2,-1],[2,0],[-1,-4],[0,-6],[-2,-3],[-1,-2],[0,-2],[4,0],[3,0],[2,-1],[2,-1],[0,-1],[1,-1],[3,0],[-1,-3],[2,-2],[2,0],[-1,-1],[4,-3],[1,-3],[0,-2],[1,0],[2,-2],[-2,-6],[0,-2],[-2,0],[-1,-1],[0,-2],[0,-1],[3,-1],[6,-1],[-1,-4],[-1,-1],[-1,-1],[-3,-2],[-1,0],[-2,1],[-1,-1],[-2,-2],[-3,0],[-2,0],[0,-2],[0,-1],[-3,-1],[-1,-1],[1,-1],[-1,-3],[-4,-5],[2,-1],[-1,-1],[-1,-1],[-3,2],[-3,1],[-7,2]],[[4496,6806],[-1,2],[-3,12],[-1,1],[-4,1],[-1,2],[1,1],[3,2],[3,0],[7,4],[2,2],[1,4],[0,2],[1,2],[2,3],[2,1],[-3,1],[3,3],[-2,1],[0,1],[2,1],[-2,2],[1,1],[2,0],[1,3],[2,0],[1,2],[1,0],[4,-2],[4,4],[1,0],[5,-2],[5,5],[0,4],[1,1],[3,2],[-1,5],[2,4],[2,0],[2,1],[5,3],[6,0],[4,5],[4,1],[6,1],[2,1],[6,5],[3,1],[2,1],[9,-3],[1,0],[-1,4],[7,2],[2,4],[11,0],[1,0],[3,-1],[1,1],[0,1],[4,3],[3,1],[2,0],[4,-2],[2,0],[3,0],[2,1],[-2,1],[1,2],[3,0],[4,0],[2,0],[1,1],[-2,1],[1,4],[2,3],[5,1],[5,1]],[[3214,7865],[2,-1],[-1,-1],[3,-3],[3,-1],[2,0],[3,3],[1,1],[2,-1],[8,-3],[3,-3],[2,-3],[1,-2],[0,-1],[6,-5],[1,-2],[5,1],[2,1],[2,2],[6,3],[1,0],[3,-2],[3,-2],[3,-3],[1,-5],[1,-2],[1,-1],[3,-2]],[[3181,7648],[0,1],[2,7],[1,0],[1,2],[2,0],[2,-4],[2,-1],[1,1],[1,2],[-1,2],[0,2],[3,4],[0,1],[0,4],[-5,1],[0,1],[1,1],[2,1],[1,5],[1,1],[6,1],[10,2],[5,5],[-2,3],[-4,1],[-4,0],[-8,1],[-2,-3],[-4,-1],[-1,3],[-1,7],[5,1],[6,-3],[1,-2],[3,0],[2,3],[-1,4],[-2,1],[-1,3],[10,5],[2,2],[-1,3],[-6,0],[-7,0],[-4,1],[-8,2],[-9,3],[-1,3],[3,2],[8,-1],[2,0],[1,5],[0,3],[1,3],[-7,6],[-4,2],[-4,2],[-1,2],[2,1],[9,3],[4,4],[-1,4],[-3,4],[-8,6],[-1,2],[3,1],[1,4],[-3,2],[-6,1],[-2,2],[-4,1],[-4,1],[-4,5],[-1,4],[-3,1],[-5,0],[-5,1],[-1,1],[2,2],[-1,2],[-5,0],[-5,2],[-4,1],[-2,2],[0,3],[-2,2],[-8,2],[-3,2],[0,3],[-2,2],[-1,1],[-4,5],[-4,2],[-2,1],[-3,3],[-4,4],[-1,2],[0,5],[1,1],[6,6],[1,1],[3,0],[6,2],[2,1],[2,0],[0,4],[0,2],[-1,2],[-2,1],[-5,2],[-3,3],[-1,0],[1,1],[1,2],[0,5],[1,3],[0,3],[3,1],[1,1]],[[3113,7883],[2,0],[1,-1],[6,-1],[1,1],[3,0],[1,1],[1,0],[3,1],[2,0],[2,-1],[2,-1],[4,2],[3,0],[2,-1],[2,-2],[-1,-2],[-2,-1],[-2,-4],[1,-2],[-1,-5],[1,-1],[1,-1],[1,-2],[6,0],[4,-2],[4,-1],[4,1],[10,4],[2,-1],[1,-1],[2,-1],[3,2],[2,1],[7,3],[2,2],[1,0],[3,-2],[2,0],[1,2],[1,1],[2,0],[1,-1],[1,-1],[2,-1],[1,0],[2,-2],[1,-1],[2,0],[1,0]],[[3281,7916],[-5,-5],[-16,-7],[-11,-5],[0,-2],[-5,-1],[-1,-1],[-1,-2],[1,0],[-5,-1],[-6,0],[-3,-1],[-3,0],[-5,-6],[-4,1],[-1,-2],[-1,-2],[2,-1],[0,-2],[0,-2],[3,0],[2,-1],[2,-2],[1,-1],[1,-1],[-1,-1],[-1,-1],[-2,1],[-2,1],[-1,-1],[-4,1],[0,-2],[2,-1],[0,-2],[-3,-2]],[[3113,7883],[0,3],[-3,3],[0,2],[1,3],[0,1],[-3,1],[-5,0],[-2,0],[-3,-2],[-1,-1],[-4,1],[-1,3],[1,1],[-2,3],[-2,2],[-2,1],[-3,0],[-3,0],[-2,1],[-2,2],[1,3],[-2,2],[-2,-1],[-3,1],[-5,5],[-3,3],[-2,1],[2,1],[1,1],[-3,0],[-2,0],[-2,0],[-3,1],[-3,2],[-1,3],[0,5],[9,-1],[2,9]],[[3171,7979],[2,-3],[0,-2],[-1,-2],[4,-1],[2,0],[9,-2],[3,-1],[5,2],[4,-3],[6,-1],[3,-1],[6,0],[2,2],[2,1],[3,-2],[3,-1],[5,0],[3,2],[2,-1],[1,-5],[2,-2],[10,2],[3,0],[15,0],[2,-1],[-1,-1],[1,-2],[2,0],[5,1],[3,2],[3,0],[3,0],[1,-3],[1,-2],[1,-2],[2,-2],[1,-2],[-1,-1],[2,-3],[-1,-2],[-2,-3],[7,-4],[1,-2],[0,-4],[-1,-3],[0,-2],[-3,-1],[-4,-3],[-3,0],[-1,-2],[-1,-2],[-1,-1]],[[3185,8255],[0,-1],[-1,-2],[0,-1],[3,-1],[1,-1],[-1,-3],[1,-1],[1,-1],[4,-2],[-5,-4],[-1,-2],[-2,-2],[5,-4],[0,-1],[-2,-1],[-3,0],[-4,-1],[0,-2],[1,-2],[0,-1],[0,-2],[-2,-2],[-2,-1],[-3,1],[-3,-2],[1,-1],[-4,-3],[3,-2],[6,-2],[0,-1],[-1,-1],[0,-2],[-4,0],[-2,-1],[-2,-5],[-2,-3],[-6,-4],[7,-4],[3,-2],[1,1],[2,-1],[1,-1],[0,-1],[-3,-4],[-6,-2],[-4,-3],[0,-2],[-1,-2],[-1,-5],[-1,-1],[-2,-4],[-5,-14],[-5,-5],[-6,-4],[-7,-1],[-2,-2],[-3,-3],[-3,-2],[-6,2],[-5,1],[-5,-5],[-1,-4],[1,-4],[-2,-2],[-3,-3],[-3,2],[-5,2],[-4,2],[-8,-1],[-11,-3]],[[3025,8124],[6,6],[-1,2],[-1,1],[0,3],[2,1],[-1,2],[-3,2],[-9,0],[-2,0],[-2,2],[-1,3],[1,2],[-1,4],[0,1],[2,1],[5,1],[3,1],[4,3],[0,1],[-3,0],[-3,2],[-2,1],[-2,4],[0,4],[5,4],[1,2],[1,2],[-1,2],[-3,1],[-4,1],[-3,2],[-1,2],[0,3],[0,2],[3,2],[1,2],[-2,5],[-2,2],[-5,2],[-3,1],[-6,7],[0,2],[0,2],[2,2],[3,1],[4,1],[3,1],[-2,5],[-2,5],[-4,4],[-2,1],[-1,2],[-1,2],[3,3],[1,2],[0,2],[3,1],[1,1],[-1,4],[2,1],[2,1],[1,3],[5,3],[4,2],[1,1],[0,2],[-6,5],[0,2],[1,2],[2,2],[3,1]],[[3281,7916],[1,-2],[2,-2],[1,-4],[1,-1],[2,-1],[2,1],[3,0],[6,-2],[2,1],[3,2],[4,2],[3,1],[2,-1],[2,0],[2,2],[1,1],[5,1],[2,1],[2,2],[1,1],[0,1],[-2,1],[0,1],[2,3],[2,1],[2,0],[3,-1],[3,1],[1,3],[6,0],[2,1],[7,1],[2,1],[3,0],[7,-3],[2,2],[-1,4],[0,3],[-1,2],[2,3],[-3,0],[-2,2],[0,1],[1,1],[0,3],[-1,2],[1,2],[2,2],[2,0],[3,-1],[2,-1],[3,-1],[0,2],[1,2],[3,0],[6,-2],[6,-1],[2,-1],[1,-2],[0,-1],[1,-1],[1,0],[-2,-1],[0,-1],[3,-1],[5,3],[3,0],[3,0],[2,-1],[3,0],[2,4],[2,1],[4,0],[1,1],[4,-3],[2,0],[2,0],[0,2],[4,2],[2,-1],[2,2],[4,-1],[2,1],[4,-1],[8,-3],[4,1],[5,-1],[5,-1],[2,2],[3,0],[5,1],[3,-1]],[[3411,7342],[-15,9],[-2,21],[0,16],[0,12],[1,11],[-6,4],[1,1],[1,1],[-2,2],[0,2],[-2,2],[-1,3],[0,1],[-2,2],[-3,0],[-1,0],[-3,0],[-2,1],[-3,2],[0,1],[0,3],[1,1],[4,1],[2,1],[1,2],[1,2],[2,0],[2,1],[1,3],[0,1],[-4,7]],[[3656,7543],[0,-2],[-1,-1],[1,-2],[2,-1],[1,-1],[1,0],[-2,-3],[1,-2],[-1,-1],[0,-1],[1,-1],[1,0],[-1,-1],[-3,-1],[-1,-1],[1,-1],[6,-4],[3,-1],[6,-2],[4,-1]],[[3420,7336],[-8,5]],[[4393,7209],[-4,0],[-2,0],[-1,1],[-1,1],[-2,1],[-2,-1],[-4,-4],[-3,-1],[0,-1],[7,-3],[-1,-1],[-2,0],[0,-1],[-2,-1],[-1,0],[-1,0],[0,1],[-1,3],[-1,1],[-1,1],[-3,-1],[-2,4],[-1,0],[-3,-2],[-5,-1],[0,-5],[-2,-3],[1,0],[2,-1],[2,1],[1,-2],[-4,-7],[0,-1],[4,-3],[-2,-1],[0,-2],[-3,-2],[0,-1],[11,-6],[-5,-3],[-1,0],[-2,-2],[-1,0],[-4,0],[-5,3],[-2,-2],[-4,-1],[-4,1],[-5,1],[-1,-3],[-1,-4],[1,-1],[2,-5]],[[4335,7156],[0,-1],[-2,-1],[-2,-1],[-3,2],[-6,3],[-1,1],[-2,1],[-2,0],[-4,-7],[0,-2],[2,-1],[5,-1],[0,-1],[-7,-6],[-3,-3],[-2,-1],[-3,0],[-2,0],[-2,0],[-1,1],[-3,0],[-1,3],[-1,1],[-1,0],[-2,0],[-2,0],[-2,-1],[-4,-2],[-6,-3],[-1,1],[-2,2],[-1,1],[-2,0],[-4,2]],[[4062,7212],[4,-1],[6,2],[4,-2],[2,3],[1,2],[2,0],[3,2],[0,2],[5,2],[1,5],[-1,1],[1,1],[2,2],[5,7],[1,4],[0,5],[5,3],[4,1],[3,0],[3,2],[0,2],[0,4],[2,2],[1,3],[-1,1],[-3,0],[-2,0],[-3,-2],[-2,0],[-2,1],[-2,0],[-6,2],[-1,2],[-1,3],[-1,2],[1,1],[7,3],[1,1],[1,2],[1,1],[-5,5],[-4,2],[-1,2],[2,1],[0,1],[0,1],[-1,6],[0,3],[1,2]],[[4335,7156],[4,-3],[6,-2],[5,-3],[5,-2],[5,-2],[-1,-2],[4,-3],[-1,-8],[4,-2],[1,-4],[5,-2],[3,-2],[3,-6],[0,-4],[-2,-3],[3,-1],[4,-1],[1,-3],[2,-4],[1,-2],[0,-4],[2,-4],[2,-2],[1,-3],[1,-4],[1,-6],[4,0],[1,1],[3,-1],[3,0],[3,0],[6,-1],[0,-2],[0,-3],[3,-1],[1,1],[6,0],[1,1],[1,1],[3,0],[1,-1],[0,-4],[3,-2],[4,2],[1,-2],[2,-1],[1,-1],[2,0],[2,-1],[1,-1],[2,0],[0,-2],[-2,-2],[2,-5],[4,1],[4,2],[2,0],[1,-3],[-4,0],[0,-2],[-4,-3],[1,-1],[5,2],[2,-2],[2,1],[2,-1],[4,-1],[-5,-3],[1,-2],[3,-2],[1,-2],[-5,-2],[-6,-3],[-2,-1],[-2,1],[-1,0],[1,-2],[0,-2],[2,-2],[4,-3],[-2,-1],[-6,2],[-2,1],[-2,0],[1,-3],[-4,0],[0,-3],[2,-3],[2,-1],[0,-4],[2,-2],[-1,-3],[1,-2],[2,0],[-2,-2],[1,-5],[2,1],[2,0],[2,-1],[-3,-1],[0,-1],[1,-2],[-5,0],[3,-2],[2,-2],[2,0],[1,0],[1,-1],[-4,-1],[-1,-2],[-3,-2],[3,0],[3,0],[-1,-2],[3,-3],[-3,-3],[1,-2],[2,-3],[0,-2],[0,-3],[3,-1],[1,-1],[0,-2],[1,-2],[0,-1],[-4,1],[-2,-1],[1,-1],[-1,0],[-1,0],[-3,2],[-2,1],[-3,0],[-2,-1],[-1,-1],[0,-2],[0,-2],[4,-3],[2,-3],[-5,-3],[0,-1],[-1,-1],[-3,-2],[-2,-1],[-2,1],[1,1],[-4,3],[-3,3],[-3,1],[-4,0],[-2,0],[-3,-2],[-5,-2],[-3,-1],[-6,3],[-2,0],[-4,-2],[-1,-2],[-2,0],[-3,0],[-2,0],[-2,-1],[-2,-2],[-1,-2],[-2,-3],[-1,-1],[3,-2],[2,-1],[-2,-4],[-2,-2],[2,-2],[0,-1],[0,-3],[-1,-4],[2,-1],[3,-1],[3,-4],[-3,-2],[-2,-2],[-2,0],[-2,0],[-1,-1],[-1,0],[-2,-2],[-5,-2],[-3,0],[-2,1],[-3,0],[-1,-1]],[[5021,6762],[1,-3],[12,-10],[2,-2],[8,0],[5,0],[3,-2],[1,-2],[1,-4],[-1,-2],[-1,-2],[-1,-2],[-5,-3],[-2,-4],[-3,-1],[-2,0],[-3,-1],[1,-2],[0,-1],[1,-3],[4,-2],[1,-2],[3,-1],[4,-1],[5,1],[5,-2],[2,-3],[4,-2],[2,-2],[3,-3],[3,-1],[9,-7],[2,-1],[3,1],[4,-1],[3,-2],[1,-1],[1,-1],[3,0],[7,-2],[2,1],[5,0],[1,-1],[3,-5],[4,-6],[1,-5],[4,-2],[5,-1],[5,2],[3,2],[0,1],[2,1],[6,0],[3,1],[1,2],[1,1]],[[3702,6532],[1,-2],[3,-7],[11,-18],[1,-3],[1,-8],[0,-8],[0,-2],[0,-2],[4,-1],[6,-1],[1,0],[2,-2],[2,-2],[3,-3],[0,-1],[2,-2],[1,-2],[1,-10],[-3,-4],[-1,-2],[0,-4],[0,-2],[-2,-8],[-4,-7],[0,-1],[1,-1],[8,-4],[-1,-2],[0,-2],[1,-1],[6,2],[1,-7],[2,-3],[1,-4],[3,-2],[3,-2],[2,0],[6,-1],[2,0],[2,-3],[1,-1],[5,0],[3,-1],[2,-1],[4,-3],[1,0],[2,-1],[4,0],[2,0],[1,-2],[4,-1],[2,0],[1,-2],[0,-3],[1,-2],[1,-5],[4,-6],[1,-2],[-1,-1],[-1,-1],[-5,-3],[-1,-1],[-1,-11],[3,-5],[0,-1],[-1,-3],[1,-8],[0,-2],[2,-3],[0,-2],[-1,-1],[-2,-2],[-1,-1],[-3,-1],[0,-4],[-1,-2],[-1,-2],[-5,-1],[0,-1],[-2,-3],[0,-1],[1,-3],[2,-2],[1,-3],[0,-5],[0,-5],[0,-2],[2,-1],[7,-2],[5,-2],[8,2],[2,3],[1,1],[3,-1],[2,0],[1,0],[3,1],[4,0],[1,0],[1,5],[2,2],[1,1],[3,0],[2,-3],[2,0],[1,1],[2,2],[1,5],[2,1],[3,1],[4,-3],[5,-7],[0,-2],[1,-1],[5,-4],[1,0],[1,-6],[2,-3],[9,-6],[6,-3],[1,-2],[-3,-4],[0,-3],[0,-1],[2,-2],[1,-1],[-1,-3],[0,-3],[2,-1],[1,-1],[6,-1],[1,0],[1,-2],[-1,-1],[-5,-2],[-3,-1],[-2,0],[-6,0],[-3,0],[-1,1],[1,1],[1,2],[-1,1],[-1,1],[-2,1],[-2,-1],[-3,-3],[-3,-2],[0,-2],[0,-2],[3,-4],[2,-2],[7,0],[2,-1],[5,-5],[1,-2],[2,0],[4,1],[3,0],[4,0],[5,1],[1,-2],[1,-3],[1,-3],[0,-1],[-3,-2],[-2,-6],[-1,-2],[-2,-5],[-2,-5],[0,-1],[1,-4],[0,-1],[-1,-2],[-1,-1],[-2,-1],[-3,-1],[-2,-2],[-2,-3],[-6,-5],[-2,-1],[-2,-1],[-8,-5],[0,-2],[2,-3],[1,-1],[-1,-4],[-1,-1],[-12,-5],[-3,-2],[0,-3],[1,-1],[0,-6],[-1,-3],[-2,-1],[-6,-2],[-2,0],[-5,1],[-4,-1],[-3,-2],[-2,-2],[-2,-1],[-2,0],[-2,3],[-1,0],[-1,0],[-1,-2],[-1,-4],[-1,-4],[-1,-1],[-5,0],[-2,0],[-2,2],[-1,2],[-2,4],[-1,3],[0,1],[-3,1],[-1,1],[-3,7],[-1,1],[1,1],[3,4],[-3,3],[-2,1],[-1,-5],[-1,-1],[-1,-2],[-2,0],[-1,0],[-2,0],[-1,1],[-1,1],[0,3],[-2,0],[-3,0],[-2,-4],[-1,-1],[-4,0],[-2,0],[-4,-2],[-3,1],[-5,3],[-2,0],[-2,0],[-2,0],[-2,1],[-1,2],[-2,6],[-2,2],[-5,3],[-2,2],[-3,1],[-1,1],[-2,-2],[-2,0],[-2,1],[-1,3],[1,1],[2,3],[0,1],[-1,1],[-3,0],[-5,2],[-1,1],[-1,2],[-3,6],[-3,1],[-1,0],[-2,3],[-1,2],[0,1],[-2,1],[-4,-1],[-2,1],[-2,0],[-2,0],[-12,6],[-2,1],[-1,2],[-1,2],[-3,1],[-4,1],[-3,0],[-4,-3],[-3,-3],[-4,-4],[-1,-2],[-1,-2],[0,-6],[-2,-1],[-4,-2],[-2,-1],[-2,-1],[-5,-2],[-3,-4],[0,-2],[0,-4],[-4,-3],[-1,-1],[-2,0],[-2,0],[-2,0],[-2,-4],[-2,-1],[-5,0],[-3,-1],[-2,0],[-1,1],[-1,1],[-2,3],[-2,1],[-1,1],[-1,1],[-1,1],[-5,1],[-4,2],[-1,1],[0,1],[0,1],[-1,2],[-2,1],[-2,1],[-1,1],[-1,2],[-1,2],[1,2],[2,1],[2,1],[3,3],[2,4],[8,6],[0,1],[-1,2],[-1,1],[-4,0],[-2,1],[-4,5],[-2,1],[-7,2],[-2,1],[-1,1],[-6,4],[-5,3],[-4,1],[-7,4],[-3,3],[0,2],[5,5],[0,1],[-2,2],[-1,1],[-5,1],[-4,0],[-3,2],[0,1],[-1,1],[2,4],[0,1],[-1,1],[-5,2],[-4,3],[-2,3],[1,2],[3,2],[6,2],[4,1],[5,1],[2,2],[0,5],[2,3],[2,8],[1,3],[0,4],[-1,2],[-2,3],[-3,3],[-1,5],[1,1],[5,4],[0,2],[0,1],[-5,6],[-2,3],[0,3],[-1,2],[-7,7],[-5,5],[-3,4],[-1,3],[1,1],[2,3],[0,1],[1,4],[-1,2],[-3,4],[-4,8],[-7,6],[0,1],[-2,3],[-2,2],[-6,1],[-2,0],[-2,1],[-1,3],[0,3],[0,3],[1,2],[0,2],[2,1],[3,1],[6,2],[5,1],[2,2],[4,5],[1,1],[7,3],[10,6],[1,0],[2,1],[2,3],[1,1],[10,5],[3,1],[6,7],[2,2],[2,1],[8,3],[2,1],[2,3],[1,4],[0,3],[-3,7],[-2,8],[-1,2],[0,5],[1,1],[0,1],[2,1],[1,0],[7,3],[5,1],[4,1],[4,1],[2,2],[5,6],[3,1],[3,0],[4,-1],[3,0],[4,-1],[3,0],[5,1]],[[3262,7322],[-2,2],[-3,1],[-1,3],[-2,0],[-5,-1],[-1,2],[-2,3],[3,0],[1,2],[-2,1],[0,3],[-3,2],[-2,1],[-4,1],[0,1],[3,1],[1,0],[2,2],[3,1],[2,1],[1,4],[0,4],[0,1],[-1,2],[-2,1],[-1,-1],[-1,-2],[-6,0],[-3,-1],[-2,-1],[-1,-2],[-3,0],[-1,1],[-2,1],[-1,0],[-2,1],[-9,3],[-1,2],[-1,2],[-1,0],[-3,0],[-4,2],[-3,2],[-3,2],[-1,2],[-2,0],[0,1],[-3,2],[-5,2],[-5,1],[-4,-2],[-3,1],[-8,3],[-4,1],[-2,1],[-1,2],[-1,5],[-1,1],[-5,2],[1,5],[1,2],[1,2],[1,1],[2,0],[1,2],[0,3],[-2,1],[-5,0],[-2,3],[-2,1],[-5,1],[-1,1],[-1,2],[0,3],[0,3],[-1,2],[-3,2],[0,2],[-3,1],[-8,0],[-1,0],[-3,0],[-6,2],[-2,2],[-1,3],[1,2],[2,2],[0,1],[-3,2],[-1,3],[0,2],[0,1],[0,1],[1,1],[3,0],[2,4],[2,2],[1,1],[-7,3],[-3,-2],[-1,0],[-7,6],[1,2],[9,8],[4,6],[1,2],[-2,2],[-1,3],[0,2],[-1,2],[1,2],[0,4],[-1,1],[-1,4],[-1,1],[-3,1],[-2,-1],[-1,0],[-5,1],[-3,0],[-2,2],[0,4],[6,3],[1,1],[-1,1],[-2,1],[0,2],[-2,3],[0,1],[1,0],[0,2],[-1,1],[0,2],[1,1],[0,5],[-1,2],[-2,2],[-1,1],[-2,0],[-6,1],[-1,1],[1,2],[2,2],[3,1],[1,0],[-1,4],[5,1],[3,0],[3,-1],[2,2],[3,0],[2,1],[-1,2],[2,4],[1,0],[1,1],[3,2],[2,0],[4,-1],[6,1],[3,1],[2,0],[3,0],[6,-1],[5,-1],[4,1],[1,0],[-1,1],[-3,3],[-1,1],[0,1],[-1,3],[1,1],[1,1],[2,3],[1,0],[1,0],[4,-1],[3,-2],[6,-4],[2,0],[6,3],[5,4],[2,2],[1,4],[-1,3],[-1,1],[0,3],[-1,1],[4,3],[3,2],[2,-1],[1,-3],[1,-1],[1,0],[2,0],[3,2],[3,0],[1,0],[3,-2]],[[3185,8085],[2,1],[2,0],[5,-3],[2,-1],[1,4],[2,1],[2,0],[2,0],[3,0],[0,3],[2,1],[3,1],[1,1],[1,1],[2,1],[3,0],[2,2],[4,2],[1,1],[-1,2],[3,2],[0,1],[6,3],[1,3],[2,-1],[2,-2],[3,-1],[3,0],[3,-1],[3,-1],[1,-4],[2,-2],[1,-2],[3,-2],[6,0],[2,8],[4,3],[3,0],[4,-1],[3,-1],[-1,-2],[5,-2],[1,-2],[-1,-2],[3,-1],[4,-1],[2,1],[3,0],[8,-3],[1,1],[3,-1],[2,0],[1,0],[8,-4],[8,-3],[0,-1],[-1,-3],[-1,-1],[1,-1],[1,0],[3,0],[4,0],[2,0],[4,6],[2,0],[3,-1],[6,1],[3,0],[2,-1],[2,2],[1,0],[3,2],[0,2],[1,0],[1,3],[2,2],[1,0],[2,0],[2,-1],[3,-2],[4,-1],[5,-2],[1,0],[2,2],[2,0],[3,-1],[2,1],[2,-1],[1,0],[0,1],[1,1],[0,2],[1,2],[3,1],[2,2],[3,0],[2,0],[4,-1],[1,0],[0,1],[3,0],[3,2],[3,-1],[3,0],[2,2],[2,3],[0,1],[1,0],[10,-1],[1,1],[2,1],[4,4],[15,0],[2,0],[5,-1],[5,-1],[4,-1],[2,0],[2,-1],[2,1],[3,0],[8,-1]],[[3796,8118],[11,-6],[2,1],[1,-3],[1,-1],[1,0],[3,-2],[7,-2],[1,0],[3,1],[3,1],[1,1],[1,0],[1,-2],[4,0],[1,1],[1,0],[2,2],[1,-1],[0,-2],[2,-1],[3,-1],[3,-4],[2,-2],[-1,-1],[-1,-1],[6,-2],[1,-2],[1,-1],[2,0],[0,-1],[1,-1],[-3,-1],[3,-2],[3,-1],[-1,-1],[-1,-1],[2,-2],[1,-3],[2,-1],[0,-1],[-2,-2],[1,-1],[0,-1],[1,-1],[-1,-1],[-2,-1],[-2,-1],[0,-1],[1,0],[1,-2],[7,-1],[3,2],[1,2],[5,-2],[5,-1],[3,1],[1,3],[2,0],[2,0]],[[3892,8069],[2,-3],[-1,-2],[-1,-1],[-2,1],[-2,1],[-1,0],[1,-2],[1,0],[1,-3],[1,-3],[0,-1],[-2,0],[-3,-2],[-1,-3],[-4,-2],[1,-1],[3,-2],[1,-1],[-4,1],[-1,0],[0,-1],[1,-3],[-1,-3],[-3,2],[-2,0],[-2,-1],[2,-3],[2,-2],[-1,-1],[-1,-2],[1,-2],[0,-2],[4,-5],[0,-2],[-1,-4],[-1,-2],[-2,-1],[-1,-2],[-1,-1],[-1,0],[-4,-2],[-2,-2],[-4,0],[-2,-1],[2,-1],[-4,-4],[-8,2],[-2,-2],[4,-3],[-4,-5],[9,-4],[-2,-1],[2,-3],[0,-2],[-3,0],[-2,0],[2,-2],[-1,-1],[-2,0],[0,-1],[0,-2],[0,-6],[-1,-2],[1,-3],[7,-1],[1,-1],[0,-2],[2,-1],[1,-1],[-2,-1],[1,-4],[3,-1],[3,-1],[2,1],[2,-1],[1,-1],[2,0],[3,-2],[1,0],[0,-1],[-1,-3],[-2,-1],[2,-1],[-1,-1],[4,-3],[3,-1],[1,1],[2,0],[2,1],[2,-1],[0,-1],[1,-3],[-2,-2],[0,-4],[-1,-2],[-3,-1],[-3,-2],[-2,-2],[3,-1],[2,0],[2,-1],[2,0],[2,-1],[1,-2],[0,-2],[-3,-2],[-4,-2],[-4,-3],[0,-2],[-3,-3],[1,-1],[-1,-1],[0,-2],[-1,-1],[1,-3],[-13,-3],[-3,1],[-4,0],[-8,-5],[-4,-1],[-5,2],[-3,1],[-1,3],[2,1],[1,1],[-1,3],[-2,2],[-4,1],[-2,0],[-1,-1],[1,-6],[3,-2],[-7,-9],[3,-3],[-3,-5],[2,-1],[6,-5],[2,-1],[9,-5],[0,-3],[2,-3],[3,-1],[3,0],[0,-2],[4,-1],[0,-4],[1,-1],[5,-2],[2,-2],[-1,-1],[1,-2],[8,-4],[0,-2],[1,-6],[-2,1],[-3,0],[-1,-2],[1,-3],[2,-1],[2,-3],[1,-2],[0,-2],[-1,-1],[-2,1]],[[3874,7818],[-7,1],[-2,4],[-4,2],[-2,-2],[0,-5],[-2,-1],[-3,1],[-4,2],[-2,-2],[1,-5],[-12,-3],[-13,-4],[-10,2],[-5,-2],[-6,-6],[-5,-2],[-4,0],[-4,1],[-2,2],[-2,1],[-4,0],[-4,1],[0,2],[-3,2],[-3,0],[-5,0],[-8,-1],[-6,1],[-1,4],[1,2],[-4,4],[-2,2],[0,1],[1,2],[1,1],[-1,3],[0,3],[-1,3],[0,1],[2,0],[6,4],[-1,4],[2,1],[0,1],[-1,1],[0,2],[2,0],[2,0],[4,-2],[1,0],[1,0],[-1,2],[1,1],[-2,1],[1,2],[1,3],[1,0],[-4,4],[-2,0],[-2,1],[-5,0],[0,1],[2,4],[0,2],[-1,3],[-2,2],[-2,0],[-2,0],[-4,0],[-2,2],[-2,2],[-2,1],[-1,1],[-3,2],[0,1],[-4,0],[2,4],[5,4],[1,1],[-1,5],[0,3],[0,3],[2,2],[-2,3],[2,3],[0,2],[6,1],[0,2],[-4,1],[1,0],[2,1],[2,1],[-1,1],[-3,0],[0,3],[-3,1],[-3,3],[-2,0],[-2,-3],[-3,2],[-4,-1],[0,2],[3,1],[3,2],[-1,3],[-2,2],[-4,-2],[-5,2]],[[3344,8269],[5,-1],[4,0],[2,1],[2,1],[1,2],[1,0],[2,0],[1,1],[2,2],[3,0],[3,2],[2,0],[0,2],[2,1],[2,0],[2,0],[2,0],[6,-1],[5,0],[-2,2],[1,0],[1,0],[-1,1],[1,0],[3,2],[2,1],[2,0],[1,0],[2,0],[3,0],[1,0],[1,0],[1,0],[3,-2],[1,-1],[-3,-1],[-1,-1],[-1,0],[1,-2],[1,0],[-1,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[2,-1],[1,-2],[1,-1],[1,0],[2,-2],[0,-1],[1,0],[2,1],[1,1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[1,-2],[2,-2],[1,0],[1,-1],[-1,-2],[-1,-2],[0,-2],[1,-2],[0,-1],[1,-2],[-1,-1],[-2,1],[-2,-1],[-2,0],[-1,0],[-1,1],[-1,1],[-2,0],[-1,-1],[0,-1],[1,-1],[0,-2],[1,0],[-1,-2],[-1,-1],[0,-1],[-1,-1],[1,-1],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[1,-1],[2,0],[1,1],[1,1],[1,0],[1,-1],[-1,-2],[-1,-5],[-1,0],[-1,-2],[0,-2],[1,-1],[4,-4]],[[4212,7951],[1,0],[4,-1],[1,-1],[5,-2],[2,0],[4,0],[0,1],[0,1],[3,2],[5,0],[1,3],[1,1],[2,0],[2,1],[3,-1],[1,1],[1,2],[1,1],[1,1],[2,0],[1,0],[5,1],[2,0],[2,-1],[2,1],[2,2],[2,1],[0,1],[5,-2],[1,0],[6,1],[8,-6],[0,-1],[0,-1],[2,-1],[1,1],[3,0],[1,-1],[1,-1],[0,-1],[1,-2],[-1,-1],[-4,-1],[-2,0],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[3,-1],[1,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-2,0],[-1,2],[-1,0],[-2,-3],[0,-3],[1,1],[4,-2],[1,1],[3,0],[1,0],[0,1],[1,1],[2,0],[1,1],[1,-1],[1,1],[0,1],[-1,2],[1,1],[0,1],[-2,2],[1,1],[4,3],[1,2],[2,0],[2,-1],[4,0],[1,0],[3,1],[2,-1],[0,-1],[1,-1],[2,-2],[5,-1],[2,0],[0,-4],[0,-1],[-2,0],[-5,0],[-3,1],[-2,1],[-2,-1],[-1,-2],[-1,-2],[3,-2],[3,-2],[3,0],[3,-1],[3,0],[4,0],[2,1],[5,1],[3,0],[-1,-1],[-1,-2],[-2,-1],[-2,-2],[1,-2],[1,-1],[3,-2],[3,-1],[3,-3],[-1,0],[1,-2],[3,-3],[1,-2],[1,-3],[0,-2],[3,-3],[6,-2],[5,-1],[7,-1],[4,1],[6,0],[6,3],[1,1],[1,1],[4,3],[5,4],[3,4],[1,1],[1,0],[0,1],[0,1],[0,1],[2,2],[1,4],[-2,3],[-2,1],[-2,1],[-1,1],[3,2],[1,0],[0,2],[12,10],[2,-1],[3,-1],[1,0],[2,-2],[16,1],[5,0],[1,0],[2,-2],[3,-1],[4,-2],[7,-7],[2,-1],[1,-1],[1,0],[0,-1],[4,-3],[5,-2],[9,-5],[8,-3],[4,0],[4,1],[1,0],[0,-1],[3,0],[2,0],[2,1],[1,-1],[4,-3],[2,-2],[0,-2],[-2,-2],[-2,-1],[2,-2],[3,-2],[2,-2],[2,-1],[1,-1],[6,0],[2,1],[1,-1],[1,-1],[2,-1],[2,0],[5,-2],[1,-2],[1,-2]],[[3868,7805],[0,3],[6,7],[-1,2],[1,1]],[[3892,8069],[0,1],[0,1],[1,0],[2,0],[3,-2],[3,-2],[2,-3],[0,-4],[2,-1],[2,-1],[2,-1],[-1,-2],[2,-1],[1,-2],[3,1],[5,-1],[2,1],[2,1],[2,1],[1,2],[-2,1],[-2,0],[-2,1],[-3,0],[-2,0],[0,2],[2,2],[0,2],[-1,1],[0,2],[1,0],[2,-2],[2,-1],[2,0],[2,1],[-1,1],[0,2],[-2,1],[-1,2],[1,1],[1,0],[1,1],[3,-1],[2,-2],[4,-4],[4,0],[2,0],[7,-1],[9,-6],[4,-2],[4,-1],[2,0],[2,2],[6,-2],[2,-2],[4,-2],[1,-5],[-1,-3],[-3,-3],[-1,-4],[1,-5],[3,-3],[5,-2],[6,-2],[-3,-3],[0,-3],[-3,-1],[1,-2],[1,-2],[3,-1],[1,-1],[1,-1],[5,2],[3,-1],[-1,3],[7,-1],[1,1],[2,2],[4,-2],[5,-3],[7,-4],[1,-3],[2,-1],[3,-2],[4,-2],[3,-2],[2,-2],[1,0],[1,-1],[3,-3],[3,-2],[5,-3],[1,0],[2,0],[1,0],[1,2],[3,0],[2,-1],[2,0],[4,0],[2,0],[2,0],[3,-1],[3,0],[1,0],[1,0],[0,1],[-1,1],[0,1],[1,2],[1,1],[1,1],[2,-2],[1,-2],[1,0],[1,-1],[1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[1,-1],[1,-1],[2,1],[3,0],[3,0],[1,-1],[1,-1],[1,-1],[-1,-3],[-1,-2],[1,-2],[0,-4],[0,-1],[0,-2],[-2,-3]]],"transform":{"scale":[0.0020972083373785896,0.0025602548047876147],"translate":[70.79806305138851,8.501929601827328]}}
{
"name": "1c07d73efaf074de05e63a33431eb80a",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"array-source": {
"version": "0.0.4",
"resolved": "https://registry.npmjs.org/array-source/-/array-source-0.0.4.tgz",
"integrity": "sha512-frNdc+zBn80vipY+GdcJkLEbMWj3xmzArYApmUGxoiV8uAu/ygcs9icPdsGdA26h0MkHUMW6EN2piIvVx+M5Mw=="
},
"commander": {
"version": "2.11.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz",
"integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ=="
},
"file-source": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/file-source/-/file-source-0.6.1.tgz",
"integrity": "sha1-rhidSZN2a4Zad/g63Pm5pQTNN9w=",
"requires": {
"stream-source": "0.3.5"
}
},
"indian-ocean": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/indian-ocean/-/indian-ocean-3.0.2.tgz",
"integrity": "sha512-n4CQMRU8dfrF3/YwGNMPT8V8VMjUr76R6KXdNI0qiTxbWrPUWcKu6SGh4TkfHRiUY5+JAh/GGAXkLZ0hJeXFDg==",
"requires": {
"shapefile": "0.6.6"
}
},
"jeezy": {
"version": "1.12.0",
"resolved": "https://registry.npmjs.org/jeezy/-/jeezy-1.12.0.tgz",
"integrity": "sha512-tiaIeaQxBm3msnbOhYe6H4VbDsGSh+L1eudHM35TYGj94x1kw/oeX1Kv96Jmu7jfBsv7akMJH4fTram5g62x3Q=="
},
"path-source": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/path-source/-/path-source-0.1.3.tgz",
"integrity": "sha512-dWRHm5mIw5kw0cs3QZLNmpUWty48f5+5v9nWD2dw3Y0Hf+s01Ag8iJEWV0Sm0kocE8kK27DrIowha03e1YR+Qw==",
"requires": {
"array-source": "0.0.4",
"file-source": "0.6.1"
}
},
"shapefile": {
"version": "0.6.6",
"resolved": "https://registry.npmjs.org/shapefile/-/shapefile-0.6.6.tgz",
"integrity": "sha512-rLGSWeK2ufzCVx05wYd+xrWnOOdSV7xNUW5/XFgx3Bc02hBkpMlrd2F1dDII7/jhWzv0MSyBFh5uJIy9hLdfuw==",
"requires": {
"array-source": "0.0.4",
"commander": "2.11.0",
"path-source": "0.1.3",
"slice-source": "0.4.1",
"stream-source": "0.3.5",
"text-encoding": "0.6.4"
}
},
"slice-source": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/slice-source/-/slice-source-0.4.1.tgz",
"integrity": "sha1-QKV6wDxmaLXaIA4FN44AC/KmHXk="
},
"stream-source": {
"version": "0.3.5",
"resolved": "https://registry.npmjs.org/stream-source/-/stream-source-0.3.5.tgz",
"integrity": "sha512-ZuEDP9sgjiAwUVoDModftG0JtYiLUV8K4ljYD1VyUMRWtbVf92474o4kuuul43iZ8t/hRuiDAx1dIJSvirrK/g=="
},
"text-encoding": {
"version": "0.6.4",
"resolved": "https://registry.npmjs.org/text-encoding/-/text-encoding-0.6.4.tgz",
"integrity": "sha1-45mpgiV6J22uQou5KEXLcb3CbRk="
}
}
}
{
"name": "1c07d73efaf074de05e63a33431eb80a",
"version": "1.0.0",
"description": "Some simple, frequently used functions for creating a map with [D3.js](https://github.com/d3) and [Topojson](https://github.com/mbostock/topojson).",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://gist.github.com/1c07d73efaf074de05e63a33431eb80a.git"
},
"author": "Harry Stevens <harryjosephstevens@gmail.com> (http://harryjstevens.com/)",
"license": "ISC",
"bugs": {
"url": "https://gist.github.com/1c07d73efaf074de05e63a33431eb80a"
},
"homepage": "https://gist.github.com/1c07d73efaf074de05e63a33431eb80a",
"dependencies": {
"indian-ocean": "^3.0.2",
"jeezy": "^1.12.0"
}
}
var io = require("indian-ocean"),
jz = require("jeezy");
var json = io.readDataSync("map.json");
var props = json.objects.polygons.geometries.map(d => d.properties);
props.forEach(d => {
d.value = jz.num.randBetween(10, 100);
return d;
});
io.writeDataSync("data.csv", props);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment