Instantly share code, notes, and snippets.
Last active
November 8, 2015 19:45
-
Star
(0)
0
You must be signed in to star a gist -
Fork
(0)
0
You must be signed in to fork a gist
-
Save zanarmstrong/a40f50dc6a16844d5346 to your computer and use it in GitHub Desktop.
practicing making a map
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Goal: practice getting data from other sources and making a map using d3 and topo.json | |
Code adapted from Mike Bostock's example: "Let's make a map": http://bost.ocks.org/mike/map/. | |
Much of the code was copied directly. | |
Adapted where appropriate to get data about Scandinavia and to highlight only Sweden on the map. | |
One challenge was handling the many very small territories under Scandinavian rule around the world, | |
with different country codes. | |
Source data from Natural Earth Data: http://www.naturalearthdata.com/ | |
ogr2ogr from GDAL and topoJSON from node.js were used to process data. | |
# to select only Swedish place names | |
ogr2ogr \ | |
-f GeoJSON \ | |
-where "ISO_A2 IN ('SE')" \ | |
places.json \ | |
ne_10m_populated_places.shp | |
# to get geo data for Sweden, Norway, Denmark, and Finland | |
ogr2ogr \ | |
-f GeoJSON \ | |
-where "ADM0_A3 IN ('SWE', 'NOR', 'DNK', 'FIN')" \ | |
subunits.json \ | |
ne_10m_admin_0_map_subunits.shp | |
# to combine that two files into one | |
topojson \ | |
-o scandinavia.json \ | |
--id-property SU_A3 \ | |
--properties name=NAME \ | |
-- \ | |
subunits.json \ | |
places.json | |
Note that original dbf files are corrupted for non-English characters. In this instance, I corrected the spellings manually. More information here: http://www.naturalearthdata.com/forums/topic/bad-adm1name-encoding-in-version-3-0-0-and-missing-diacritics-in-name/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.subunit.SWE { fill: #8fb1e6; } | |
.subunit.NOW { fill: white; } | |
.subunit.FIN { fill: white; } | |
.subunit.DNK { fill: white; } | |
.subunit.DNB { fill: white; } | |
.place, | |
.place-label { | |
fill: #444; | |
} | |
.subunit-label { | |
fill: black; | |
fill-opacity: .5; | |
font-size: 20px; | |
font-weight: 300; | |
text-anchor: middle; | |
} | |
.subunit-boundary { | |
fill: none; | |
stroke: #777; | |
} | |
text { | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-size: 10px; | |
pointer-events: none; | |
} | |
</style> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://d3js.org/topojson.v1.min.js"></script> | |
<script> | |
var width = 960, | |
height = 1160; | |
var svg = d3.select("body").append("svg") | |
.attr("width", width) | |
.attr("height", height); | |
d3.json("scandinavia.json", function(error, sweden) { | |
if (error) return console.error(error); | |
var subunits = topojson.feature(sweden, sweden.objects.subunits) | |
// remove other territories from naming, etc | |
var featureData = topojson.feature(sweden, sweden.objects.subunits).features | |
.filter(function(d){ | |
if (Array('DNK', 'FIN', 'NOW', 'SWE', 'DNB').indexOf(d.id)> -1){return d} | |
}); | |
// define our projection - and where to crop the world | |
var projection = d3.geo.albers() | |
.center([15, 63]) | |
.rotate([0, 0]) | |
.parallels([65, 70]) | |
.scale(3000) | |
.translate([width / 2, height / 2]); | |
// generate path, using the albers projection defined above | |
var path = d3.geo.path() | |
.projection(projection); | |
// draw paths, note that this still includes things like svalbard, | |
// but it's out of the range of the map | |
svg.append("path") | |
.datum(subunits) | |
.attr("d", path); | |
// define sub-units, so that we can use classes to style | |
svg.selectAll(".subunit") | |
.data(featureData) | |
.enter().append("path") | |
.attr("class", function(d) { return "subunit " + d.id; }) | |
.attr("d", path); | |
// define the boundary of countries so we can style | |
svg.append("path") | |
.datum(featureData) | |
.attr("d", path) | |
.attr("class", "subunit-boundary"); | |
// introduce places (cities) | |
svg.append("path") | |
.datum(topojson.feature(sweden, sweden.objects.places)) | |
.attr("d", path) | |
.attr("class", "place"); | |
// label the cities | |
svg.selectAll(".place-label") | |
.data(topojson.feature(sweden, sweden.objects.places).features) | |
.enter().append("text") | |
.attr("class", "place-label") | |
.attr("transform", function(d) {return "translate(" + projection(d.geometry.coordinates) + ")"; }) | |
.attr("dy", ".35em") | |
.text(function(d) { return d.properties.name; }); | |
// locate the labels | |
svg.selectAll(".place-label") | |
.attr("x", function(d) { return d.geometry.coordinates[0] > 15.8 ? 6 : -6; }) | |
.style("text-anchor", function(d) { return d.geometry.coordinates[0] > 15.8 ? "start" : "end"; }); | |
// label the countries | |
svg.selectAll(".subunit-label") | |
.data(featureData.filter(function(d) {if(d.id != 'DNB'){return d}})) | |
.enter().append("text") | |
.attr("class", function(d) {return "subunit-label " + d.id; }) | |
.attr("transform", function(d) { | |
var centerLabel = path.centroid(d); | |
if(d.id == 'NOW'){centerLabel = [centerLabel[0] - 30, centerLabel[1] + 130]}; | |
if(d.id == 'SWE'){centerLabel = [centerLabel[0] - 30, centerLabel[1] + 15]}; | |
console.log(centerLabel, path.centroid(d), d) | |
return "translate(" + centerLabel + ")"; }) | |
.attr("dy", ".35em") | |
.text(function(d) {return d.properties.name; }); | |
}); | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"type":"Topology","objects":{"subunits":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"name":"Bouvet I."},"id":"BVT","arcs":[[0]]},{"type":"Polygon","properties":{"name":"Bornholm"},"id":"DNB","arcs":[[1]]},{"type":"MultiPolygon","properties":{"name":"Denmark"},"id":"DNK","arcs":[[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]]]},{"type":"MultiPolygon","properties":{"name":"Finland"},"id":"FIN","arcs":[[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57,58,59]]]},{"type":"Polygon","properties":{"name":"Jan Mayen I."},"id":"NJM","arcs":[[60]]},{"type":"MultiPolygon","properties":{"name":"Norway"},"id":"NOW","arcs":[[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[-60,155,156]],[[157]]]},{"type":"MultiPolygon","properties":{"name":"Svalbard Is."},"id":"NSV","arcs":[[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]]]},{"type":"MultiPolygon","properties":{"name":"Sweden"},"id":"SWE","arcs":[[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220,-156,-59]]]}]},"places":{"type":"GeometryCollection","geometries":[{"type":"Point","properties":{"name":"Bollnäs"},"coordinates":[5959,8563]},{"type":"Point","properties":{"name":"Gävle"},"coordinates":[6147,8513]},{"type":"Point","properties":{"name":"Kalmar"},"coordinates":[5959,8217]},{"type":"Point","properties":{"name":"Växjö"},"coordinates":[5597,8233]},{"type":"Point","properties":{"name":"Örebro"},"coordinates":[5691,8410]},{"type":"Point","properties":{"name":"Norrköping"},"coordinates":[5916,8359]},{"type":"Point","properties":{"name":"Halmstad"},"coordinates":[5138,8217]},{"type":"Point","properties":{"name":"Karlstad"},"coordinates":[5289,8416]},{"type":"Point","properties":{"name":"Skelleftå"},"coordinates":[7031,8816]},{"type":"Point","properties":{"name":"Visby"},"coordinates":[6412,8288]},{"type":"Point","properties":{"name":"Trollhättan"},"coordinates":[5009,8335]},{"type":"Point","properties":{"name":"Borås"},"coordinates":[5153,8295]},{"type":"Point","properties":{"name":"Kristianstad"},"coordinates":[5437,8170]},{"type":"Point","properties":{"name":"Helsingborg"},"coordinates":[5102,8171]},{"type":"Point","properties":{"name":"Jönköping"},"coordinates":[5445,8298]},{"type":"Point","properties":{"name":"Ornskoldsvik"},"coordinates":[6509,8709]},{"type":"Point","properties":{"name":"Linkoping"},"coordinates":[5787,8346]},{"type":"Point","properties":{"name":"Östersund"},"coordinates":[5558,8699]},{"type":"Point","properties":{"name":"Kiruna"},"coordinates":[6860,9044]},{"type":"Point","properties":{"name":"Umeå"},"coordinates":[6865,8746]},{"type":"Point","properties":{"name":"Uppsala"},"coordinates":[6257,8453]},{"type":"Point","properties":{"name":"Göteborg"},"coordinates":[4938,8297]},{"type":"Point","properties":{"name":"Luleå"},"coordinates":[7314,8877]},{"type":"Point","properties":{"name":"Sundsvall"},"coordinates":[6182,8641]},{"type":"Point","properties":{"name":"Malmö"},"coordinates":[5180,8137]},{"type":"Point","properties":{"name":"Stockholm"},"coordinates":[6364,8415]}]}},"arcs":[[[2941,5],[4,0],[2,-1],[-1,-1],[-2,-1],[-1,0],[-6,-1],[-14,0],[-4,-1],[-1,0],[-1,0],[-1,1],[-2,2],[8,2],[10,1],[9,-1]],[[5675,8103],[-1,0],[-1,0],[-1,-1],[2,-1],[0,-1],[-3,-1],[-5,-1],[-1,-1],[1,-1],[0,-1],[-3,-1],[-3,0],[-3,-1],[-12,1],[-9,0],[-13,1],[-16,1],[-18,1],[-19,3],[-4,1],[3,2],[1,3],[1,4],[1,1],[2,1],[4,1],[2,1],[2,2],[2,0],[3,0],[10,-2],[3,-1],[5,-1],[9,-1],[9,-1],[6,0],[5,0],[4,-2],[2,0],[3,-1],[17,-2],[11,-1],[4,-1]],[[4764,8090],[11,-1],[5,-1],[4,0],[7,-3],[5,-1],[6,0],[42,-4],[-3,1],[-2,1],[-1,0],[6,1],[6,0],[6,1],[2,0],[-2,0],[-1,1],[1,1],[0,1],[18,-3],[2,-1],[5,-1],[4,-1],[4,0],[-3,0],[-1,0],[4,-2],[11,-1],[3,-1],[1,-1],[1,-1],[-3,-1],[-3,-1],[-2,0],[-2,0],[-2,-1],[9,-1],[0,-1],[-8,-2],[-10,-1],[-37,2],[-12,-1],[-11,-1],[-9,-1],[-5,0],[-22,2],[-14,3],[-26,3],[-11,0],[-13,1],[-12,1],[-5,1],[-3,1],[2,1],[6,1],[7,-1],[6,1],[5,1],[-4,0],[-3,1],[-13,3],[-1,0],[0,1],[3,2],[10,2],[3,-1],[34,2],[5,-1]],[[4552,8086],[4,0],[3,0],[3,0],[1,0],[-1,2],[3,-1],[3,-2],[2,-1],[5,0],[3,0],[1,1],[-3,1],[4,-1],[4,0],[3,-1],[0,-1],[2,0],[3,0],[-18,-1],[-5,-1],[-3,0],[-6,0],[-40,8],[-4,2],[-1,1],[3,-1],[20,-2],[6,-1],[6,-1],[2,-1]],[[5064,8094],[4,-3],[-1,-1],[-2,0],[-4,0],[-5,0],[-28,1],[-8,0],[-8,-1],[-8,-1],[-13,-3],[-4,-1],[-7,0],[-15,2],[4,0],[-1,1],[1,1],[2,0],[2,0],[-1,0],[-2,1],[-1,0],[5,1],[3,1],[3,-1],[1,1],[-1,1],[4,0],[5,-1],[4,0],[2,0],[8,0],[2,1],[-1,1],[1,1],[2,0],[-7,1],[-3,1],[-1,1],[1,0],[3,0],[4,0],[5,-1],[8,-1],[19,0],[20,-1],[8,-1]],[[4422,8100],[14,-3],[8,-1],[10,0],[8,-1],[6,-2],[5,-1],[4,-1],[9,-5],[0,-1],[-4,0],[-6,0],[-4,-1],[-4,0],[-5,-1],[-3,0],[-4,1],[-11,1],[-4,0],[0,1],[6,0],[8,0],[7,-1],[7,-1],[0,1],[-12,1],[-10,1],[-3,0],[-2,0],[-3,-1],[-3,0],[-9,0],[-8,1],[-4,2],[1,3],[-2,0],[5,0],[6,-2],[5,0],[5,0],[-1,0],[-2,1],[2,0],[-2,1],[-10,1],[-1,1],[3,0],[0,1],[-19,-1],[-3,1],[-2,0],[-3,0],[-3,0],[-1,1],[1,0],[4,1],[2,0],[-5,0],[-3,0],[-4,0],[-4,0],[0,1],[20,2],[9,0],[9,0]],[[4667,8089],[-23,-14],[-2,-1],[-4,0],[-5,0],[-3,1],[-6,4],[-2,1],[-4,1],[-7,1],[6,0],[4,0],[2,1],[4,1],[2,1],[2,0],[2,0],[1,0],[6,0],[0,1],[-1,1],[-3,-1],[-2,0],[-2,0],[-2,1],[4,2],[5,1],[13,3],[5,0],[14,4],[1,2],[8,4],[9,2],[5,0],[-11,-9],[-4,-3],[-12,-4]],[[4099,8126],[4,0],[5,0],[3,-1],[0,-1],[-3,-1],[1,-1],[2,-1],[1,-1],[2,-1],[-5,0],[-7,1],[-5,2],[-7,3],[-2,2],[2,1],[8,0],[1,-2]],[[4550,8139],[16,-2],[4,-1],[2,-1],[3,-1],[2,0],[4,0],[4,0],[7,-1],[-4,0],[-4,0],[-2,0],[-1,-1],[1,0],[3,-1],[1,0],[-2,-1],[-2,0],[-2,0],[-2,0],[-9,-2],[4,-2],[8,0],[5,2],[2,0],[15,1],[9,1],[1,0],[0,1],[-1,0],[-2,0],[-2,0],[-2,1],[-2,0],[-1,0],[1,1],[3,0],[3,-1],[1,0],[3,1],[-1,1],[-2,1],[-1,1],[1,0],[3,-1],[0,2],[-1,1],[0,1],[4,0],[7,-1],[11,-4],[1,0],[0,-1],[1,0],[1,-1],[5,-1],[2,-1],[-1,0],[-2,-1],[-7,-1],[-11,0],[-16,0],[-4,0],[-3,-1],[-1,-1],[2,0],[4,0],[4,0],[-1,1],[-1,0],[2,1],[5,-1],[15,0],[4,-1],[23,-6],[1,-1],[6,-3],[2,-1],[-2,0],[-3,1],[-4,0],[-4,0],[-2,-1],[2,-1],[6,-2],[2,-1],[0,-2],[0,-1],[-2,-1],[-3,-2],[-1,0],[0,-2],[-1,0],[-6,-2],[-2,-1],[-2,0],[-2,-1],[-3,-1],[-3,0],[-10,0],[-10,0],[-4,0],[-4,0],[-4,-1],[-3,0],[-4,-1],[-5,0],[-10,1],[-15,0],[-5,0],[-3,1],[-2,0],[-2,0],[-2,0],[-6,0],[-3,0],[-19,2],[-6,1],[-2,-1],[0,-2],[-4,1],[-5,1],[-4,0],[-5,0],[-9,0],[-4,0],[18,3],[3,1],[-4,1],[-3,1],[-3,1],[-4,1],[-4,-1],[-3,0],[-2,0],[-4,0],[-5,1],[-4,0],[-2,0],[0,-2],[8,-2],[0,-1],[-2,0],[-8,0],[0,1],[1,0],[0,1],[-3,1],[-1,1],[1,1],[1,1],[-4,1],[-9,0],[-3,0],[-3,1],[-1,0],[0,1],[-2,0],[-1,1],[1,0],[2,1],[0,1],[-2,1],[-1,1],[1,2],[-3,1],[-3,0],[-7,0],[-3,0],[-4,0],[-5,2],[4,0],[4,0],[4,0],[2,1],[-13,1],[2,0],[6,0],[-2,1],[-4,1],[-10,0],[-3,0],[-8,2],[7,0],[6,-1],[7,-1],[6,0],[-23,4],[-9,0],[2,1],[2,0],[3,0],[3,1],[8,2],[13,0],[4,0],[1,0],[0,-1],[2,-1],[12,-1],[12,1],[23,3],[30,2],[10,1],[6,0],[6,0],[2,0],[2,-1],[3,0],[1,1],[-1,1],[4,0],[7,0]],[[5074,8135],[-6,-1],[-5,2],[-3,2],[0,1],[3,1],[3,1],[3,0],[2,1],[3,1],[4,2],[3,0],[1,0],[0,-1],[14,-6],[-8,-2],[-4,0],[-4,0],[-4,-1],[-2,0]],[[4616,8159],[4,-1],[3,0],[2,1],[1,0],[1,0],[-3,-1],[-6,-2],[-2,-1],[1,-3],[-3,-1],[-7,-1],[-8,0],[-7,2],[-2,3],[2,1],[2,1],[3,0],[4,1],[4,1],[2,1],[-1,1],[-3,1],[-4,1],[-5,0],[-3,1],[1,2],[2,1],[4,0],[3,0],[2,-3],[3,-1],[6,-1],[6,0],[-3,-1],[0,-1],[0,-1],[1,0]],[[5015,8177],[20,-2],[17,0],[5,-1],[8,-1],[7,0],[12,-2],[-3,-1],[-10,-3],[-3,-1],[-7,-3],[-3,-1],[7,-2],[3,-1],[1,-1],[2,-1],[2,-2],[3,-2],[3,0],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[1,0],[2,-1],[-5,-1],[-9,-3],[-9,-2],[-1,0],[-3,-1],[-5,-1],[-4,1],[-3,0],[-3,0],[-4,0],[-17,-1],[-5,-1],[-15,-3],[-11,-4],[6,-4],[11,-2],[4,0],[15,-1],[4,0],[10,-1],[5,-2],[2,-1],[1,-1],[1,-1],[3,-2],[-3,-1],[-2,0],[-12,-2],[-49,-2],[-4,0],[-6,-1],[-4,-1],[-3,-2],[1,-1],[-2,-1],[-1,0],[-3,0],[-2,0],[2,2],[-3,1],[-4,0],[-5,0],[-2,-1],[-2,0],[-1,0],[-1,-1],[2,0],[6,-1],[20,0],[9,-1],[2,-2],[-2,0],[-1,-1],[-2,0],[-2,0],[-5,-1],[-2,0],[2,0],[9,-4],[-1,-1],[-3,-1],[-5,0],[-5,0],[-4,0],[-8,-2],[-5,0],[-8,1],[-13,2],[-8,0],[1,0],[1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[1,-1],[-1,-1],[-3,-1],[0,-1],[2,-1],[3,0],[3,0],[3,0],[0,1],[-1,0],[2,0],[6,1],[1,-1],[4,-1],[2,-1],[8,-1],[4,0],[4,0],[5,0],[4,0],[4,-1],[6,-1],[7,-2],[-21,-3],[-3,-1],[-9,-3],[-1,-1],[-3,0],[-6,-2],[-2,0],[-4,-1],[0,-2],[3,-5],[-1,-2],[-5,0],[-4,1],[-1,1],[-4,1],[-7,2],[-2,1],[0,2],[3,1],[6,2],[-4,0],[-4,1],[-1,0],[3,2],[-3,0],[-1,0],[-2,1],[-11,2],[-1,0],[-1,1],[-1,1],[1,0],[-2,1],[-4,1],[-4,0],[-2,1],[-1,2],[0,1],[-1,1],[-2,1],[-5,0],[0,1],[9,1],[2,0],[3,0],[5,-1],[3,0],[2,0],[5,1],[1,0],[2,0],[3,0],[5,1],[-3,1],[-4,2],[-3,1],[-15,1],[-5,0],[-1,0],[-3,1],[-2,0],[-15,0],[-4,1],[-4,1],[-3,0],[12,0],[25,-2],[12,-1],[-5,2],[-15,2],[-6,2],[21,1],[1,0],[-1,0],[-5,1],[-13,0],[-4,1],[3,1],[2,1],[-4,1],[-5,0],[-4,-1],[-3,0],[-4,-1],[-3,0],[-8,1],[-18,1],[-4,0],[-3,0],[-17,1],[-3,0],[-6,-1],[-3,0],[-16,0],[0,-1],[4,0],[-8,0],[-5,0],[-4,1],[-2,3],[4,-1],[3,0],[3,1],[1,1],[-2,-1],[-2,0],[-6,0],[-1,0],[1,2],[-2,1],[-4,0],[-13,2],[-2,1],[2,0],[4,0],[3,0],[0,1],[-2,0],[-3,1],[-4,0],[-2,0],[-2,-1],[-1,0],[-2,-1],[-3,0],[-2,0],[-3,2],[0,1],[6,0],[4,0],[2,0],[2,0],[3,1],[3,0],[2,0],[5,1],[3,0],[-1,1],[-3,1],[1,0],[-2,2],[-4,3],[-3,1],[-3,0],[-4,1],[-5,0],[-4,-1],[-2,0],[-2,1],[1,1],[1,0],[2,0],[4,0],[6,1],[2,1],[0,1],[-4,2],[-10,2],[-11,1],[-26,1],[0,1],[37,-1],[-4,2],[-14,1],[-6,0],[-3,1],[-1,1],[-2,0],[-4,0],[-12,1],[-4,0],[0,1],[37,-2],[8,1],[14,1],[9,0],[-3,0],[-2,0],[-3,-1],[-2,0],[4,-1],[6,-1],[7,-1],[5,1],[-9,1],[3,1],[2,0],[4,-1],[8,0],[4,1],[8,1],[8,0],[4,0],[3,1],[1,1],[0,1],[1,1],[0,1],[-5,1],[-1,1],[6,-1],[6,0],[5,0],[5,1],[8,0],[7,2],[1,3],[-8,2],[-7,1],[-15,0],[-18,1],[-6,1],[-2,1],[30,-2],[6,0],[36,-1],[5,-1],[9,0],[17,1],[8,1],[5,0],[3,0],[-1,-1],[-7,-1],[-2,-1],[3,-1],[-2,-1],[-3,0],[-4,1],[1,1],[-7,0],[-3,-1],[-2,0],[11,-4],[5,-2],[-4,-1],[-3,-1],[-8,1],[-3,0],[-4,-2],[-3,0],[-4,0],[0,-1],[3,0],[12,0],[3,1],[4,0],[4,1],[4,0],[2,-1],[2,-1],[2,-1],[0,-1],[-19,-1],[-4,0],[-2,0],[3,-1],[4,0],[10,0],[2,0],[2,1],[4,-1],[6,-2],[1,-1],[-1,0],[-2,-2],[4,1],[3,1],[10,4],[1,0],[-1,0],[-2,1],[-1,1],[1,0],[2,1],[4,2],[3,1],[9,0],[4,1],[4,2],[-5,2],[-6,2],[2,2],[4,0],[8,-2],[5,0],[2,-1],[-1,-1],[-1,-1],[2,-1],[2,0],[1,-1],[5,-2],[4,-3],[1,-3],[-7,-2],[-8,1],[-4,0],[-2,-1],[-1,-1],[-9,-2],[-3,-1],[5,0],[7,1],[5,1],[1,1],[4,0],[3,0],[4,-1],[2,-1],[-7,1],[-1,0],[1,-1],[4,0],[7,-1],[3,1],[5,3],[1,1],[-10,9],[0,2],[-1,1],[-6,4],[-3,1],[-4,1],[-5,0],[-18,-2],[-7,0],[-4,1],[4,2],[12,1],[22,3],[36,5],[19,2],[19,0]],[[4840,8218],[-4,0],[-4,0],[-5,0],[-3,1],[0,1],[2,0],[20,1],[10,0],[-1,0],[-2,-1],[-4,0],[-3,-1],[-3,0],[-3,-1]],[[4216,8238],[-1,0],[1,-1],[2,-1],[1,0],[-1,0],[-3,-3],[-1,-1],[-2,0],[-1,0],[-2,1],[-1,0],[-2,1],[-6,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[2,-3],[2,-1],[4,0],[-1,0],[-2,0],[-2,-1],[-2,1],[2,-1],[2,0],[-3,-1],[-4,-1],[-3,-1],[-3,-1],[-10,-2],[-1,-1],[-19,-1],[-6,0],[-2,0],[-7,2],[-2,1],[-6,1],[-6,0],[-1,1],[-7,-1],[-3,0],[1,1],[1,0],[2,1],[2,0],[2,0],[1,0],[0,1],[-1,1],[-1,0],[7,1],[17,0],[5,2],[-3,0],[-2,0],[-3,0],[-3,0],[2,1],[4,1],[2,1],[-1,0],[0,1],[0,1],[2,0],[2,0],[2,0],[7,0],[13,0],[7,1],[5,0],[5,1],[8,3],[5,-1],[4,1],[2,1],[3,0],[-1,-1],[-3,-1]],[[4749,8266],[2,-1],[-1,-1],[-1,-1],[-5,0],[-6,1],[-18,-1],[4,-1],[3,-1],[-1,-1],[-6,-1],[-3,-1],[-2,-1],[-4,-1],[-7,0],[-5,1],[-6,2],[-8,0],[-7,1],[-4,0],[-3,1],[7,1],[8,1],[6,1],[9,0],[6,0],[4,1],[17,0],[10,1],[6,0],[3,0],[2,0]],[[4578,8288],[-7,-4],[7,-4],[12,-3],[8,-3],[-6,-4],[0,-3],[5,-8],[-4,-1],[-12,-2],[-6,-1],[-8,-3],[-4,-2],[-3,-3],[-5,-4],[-3,-1],[-2,0],[-2,-1],[-3,0],[-11,0],[-3,0],[-4,0],[-20,2],[-14,3],[-10,1],[-8,1],[-6,0],[-4,0],[-7,-2],[-4,0],[4,0],[5,1],[4,0],[4,1],[5,-1],[23,-4],[8,-1],[9,-1],[5,0],[19,0],[4,-1],[-7,-1],[-1,-1],[-1,-1],[-1,-2],[-1,0],[2,-2],[2,-3],[1,-3],[2,-2],[5,-3],[2,-1],[3,0],[-3,-1],[-2,0],[-5,0],[-3,0],[-11,0],[-3,0],[-5,-1],[-4,1],[-4,1],[-5,0],[-6,-1],[-5,0],[-2,0],[-4,-1],[-4,0],[-7,-1],[-8,0],[-11,-2],[-33,-1],[11,0],[35,1],[8,1],[3,0],[1,1],[1,0],[1,0],[2,0],[3,0],[2,0],[2,0],[3,0],[3,1],[1,0],[1,1],[4,0],[8,0],[-1,0],[-1,-1],[4,0],[11,-1],[10,1],[6,0],[6,1],[4,-2],[1,-3],[-4,-2],[-16,-2],[-11,-2],[-2,0],[-2,-3],[-1,0],[2,-1],[-1,-1],[-3,-1],[-2,-1],[7,0],[2,1],[0,2],[1,3],[2,1],[10,1],[8,2],[4,0],[5,0],[1,-1],[1,-1],[0,-1],[1,0],[7,-1],[18,-2],[19,0],[55,1],[8,0],[8,-1],[3,0],[8,-3],[14,-2],[0,-1],[-5,-1],[-3,-1],[-1,-2],[-1,-2],[-2,-2],[-22,-5],[-11,-2],[-4,-1],[-1,-1],[1,-2],[-4,-2],[-7,0],[-8,1],[-6,1],[6,1],[3,0],[1,1],[-1,1],[-2,0],[-3,0],[-3,1],[-5,0],[-6,-1],[-5,-2],[-8,-1],[2,-2],[3,-2],[1,-1],[-2,-1],[-4,0],[-4,0],[-3,0],[-2,1],[-3,1],[-1,1],[1,0],[4,1],[3,0],[-2,1],[-2,0],[-10,1],[-2,0],[-5,-1],[-7,0],[-4,0],[-3,1],[-5,1],[5,1],[8,1],[4,0],[3,0],[4,-1],[4,-1],[4,2],[-4,1],[0,1],[7,2],[-3,0],[-4,0],[-3,1],[-2,0],[-3,1],[-6,-1],[-3,1],[-1,-1],[-1,-1],[-2,0],[-4,0],[-1,-1],[-7,-2],[-5,-2],[-13,-1],[-6,-2],[-3,-2],[2,-1],[4,-1],[3,-1],[2,-2],[-1,-1],[-3,-2],[-4,-1],[5,0],[4,0],[2,0],[-6,-2],[-1,-1],[0,-2],[0,-2],[-1,-1],[-6,-1],[0,-1],[-2,0],[-2,0],[-3,0],[-1,-1],[1,0],[1,-1],[1,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[-3,0],[-2,1],[-4,1],[-1,0],[0,1],[-1,0],[-3,1],[-3,0],[-22,0],[-3,-1],[-2,0],[-2,0],[-1,-1],[-6,0],[-13,0],[-5,0],[6,-2],[33,-1],[2,0],[0,-1],[-4,-2],[-2,-1],[4,-1],[6,1],[0,-1],[-10,-1],[-3,-1],[3,-1],[-1,0],[-2,-1],[-6,1],[-25,-1],[-12,-1],[-7,-1],[-14,1],[-9,2],[-2,0],[-24,0],[-5,0],[-1,0],[-1,0],[0,-1],[5,0],[17,0],[3,0],[12,-3],[2,0],[2,-1],[2,-1],[5,0],[22,0],[-3,-1],[-13,-2],[-6,-1],[-3,-1],[-6,0],[-2,0],[0,-1],[-1,-1],[-15,0],[-5,-1],[-3,0],[-3,0],[-5,0],[-3,0],[1,0],[-3,-1],[-9,-1],[-4,0],[4,-1],[5,0],[11,1],[2,0],[3,0],[13,-1],[1,-1],[-1,-1],[-2,-1],[-4,0],[-8,0],[-3,-1],[1,-1],[3,-1],[1,0],[-1,-1],[-1,-1],[5,-1],[3,0],[3,-1],[0,-1],[-3,0],[0,-1],[3,0],[8,-3],[3,0],[3,-1],[1,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-3,0],[-4,0],[-3,0],[-14,0],[-3,0],[-2,-1],[-1,0],[-3,-1],[-5,0],[-4,0],[-3,-1],[-1,0],[0,-1],[1,0],[5,0],[0,-1],[-7,0],[-4,0],[-2,0],[2,0],[3,-1],[7,0],[3,0],[3,-1],[6,-1],[-6,-2],[-4,0],[-5,-1],[-10,0],[-5,-1],[2,-1],[3,0],[14,1],[5,0],[2,0],[2,1],[2,0],[2,0],[2,0],[5,0],[10,-2],[5,-1],[13,0],[3,-1],[2,-1],[5,-5],[0,-1],[-2,0],[-4,0],[-3,0],[-3,0],[-2,-1],[3,0],[3,0],[2,-1],[2,0],[1,-1],[0,-1],[-1,-1],[-3,0],[-3,0],[-3,2],[-2,0],[-10,0],[-3,0],[-4,1],[2,0],[0,1],[-4,1],[-1,0],[1,1],[6,0],[-1,1],[-5,1],[-7,-1],[-1,0],[-3,-2],[-3,-1],[-1,0],[-2,0],[-1,0],[-4,0],[-2,-1],[-4,0],[-9,-2],[-4,-1],[-1,-1],[-3,-1],[-4,0],[-5,1],[-4,0],[-3,0],[-3,-1],[-3,0],[-3,0],[-17,0],[-4,0],[-2,1],[-1,1],[-1,1],[-4,1],[-49,2],[-19,1],[-18,1],[-6,-1],[-16,-1],[-8,0],[-9,1],[2,1],[-1,1],[3,2],[-2,2],[-4,1],[-2,2],[1,3],[2,2],[4,2],[2,1],[-24,1],[-3,0],[-1,0],[-1,-3],[-1,-1],[-2,0],[-3,0],[-4,-1],[-3,-1],[-4,1],[-3,0],[-3,2],[1,2],[1,2],[1,2],[4,1],[10,0],[10,0],[5,-1],[-3,0],[-3,-1],[-4,-1],[1,0],[14,-1],[12,0],[5,0],[0,1],[-5,3],[-3,3],[-1,3],[0,1],[2,1],[1,1],[-1,1],[-2,2],[-3,3],[-1,2],[-4,1],[-5,1],[-9,0],[-15,0],[-12,1],[-9,1],[-21,6],[0,1],[5,0],[-5,1],[-5,0],[-5,0],[-4,-1],[-3,-1],[1,-1],[6,-1],[-2,0],[-1,0],[-3,-1],[5,0],[7,-1],[5,-1],[2,-2],[-3,0],[-28,4],[-5,1],[-14,1],[-4,0],[0,1],[13,7],[4,2],[3,3],[1,3],[-11,15],[-1,1],[-1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[6,-6],[4,-2],[1,-1],[-1,0],[-2,-1],[-1,-1],[1,-1],[2,0],[11,1],[11,1],[5,1],[9,1],[10,2],[1,1],[-2,1],[-3,1],[-4,1],[-8,2],[0,3],[-3,2],[-6,2],[-8,1],[-18,2],[-5,0],[-2,-1],[0,-3],[0,-2],[-2,-1],[1,-1],[-1,-1],[-3,0],[-1,1],[-1,0],[-1,1],[-1,6],[1,1],[5,5],[1,2],[-2,25],[1,2],[1,1],[11,6],[4,2],[4,1],[1,0],[1,-1],[2,0],[0,-1],[-5,-2],[-2,-1],[2,0],[1,-1],[4,0],[1,0],[1,-1],[1,0],[2,-1],[10,0],[2,0],[-3,-1],[1,0],[-1,-2],[2,0],[2,0],[2,0],[-1,1],[7,1],[12,0],[10,-1],[5,0],[2,-1],[11,-1],[4,0],[3,1],[2,1],[2,0],[1,0],[7,-3],[1,-1],[-1,0],[0,-1],[2,0],[3,-1],[5,-1],[3,0],[4,0],[14,0],[1,0],[2,1],[1,1],[0,1],[0,1],[2,1],[1,1],[1,0],[-1,1],[-7,1],[-2,0],[-2,0],[-1,0],[-1,1],[-1,1],[-4,0],[0,1],[4,0],[10,0],[15,5],[4,0],[9,1],[13,0],[1,0],[-6,0],[-10,1],[-2,0],[2,1],[3,1],[3,1],[7,1],[11,2],[5,0],[2,0],[5,0],[2,0],[3,0],[1,0],[2,0],[1,1],[5,0],[5,-1],[5,0],[2,-1],[1,-2],[3,-1],[4,-1],[3,-1],[3,-1],[-7,0],[-6,-2],[-6,-1],[1,-1],[-3,0],[-6,-2],[-3,-1],[0,-1],[1,-2],[2,-1],[4,0],[4,1],[3,3],[3,0],[4,0],[4,0],[-1,1],[-2,0],[-2,0],[-3,-1],[2,1],[2,1],[1,0],[2,1],[1,0],[-1,-1],[6,0],[8,0],[5,0],[4,-1],[3,0],[3,0],[3,-1],[-1,0],[-6,-2],[-2,-1],[3,0],[1,-1],[1,0],[2,-1],[6,0],[1,-1],[1,0],[1,0],[2,0],[3,1],[2,0],[3,0],[3,0],[0,1],[-5,1],[-8,-1],[-1,0],[-3,0],[-2,0],[1,1],[1,0],[0,3],[4,2],[2,2],[-5,2],[-2,0],[-1,1],[-5,-1],[-9,0],[-3,-1],[-5,0],[-5,-1],[-2,1],[3,1],[11,1],[2,2],[2,1],[-1,0],[-6,1],[-2,0],[-2,0],[-2,1],[-1,0],[-1,1],[-1,1],[0,1],[1,0],[6,2],[1,0],[0,1],[-1,1],[-2,1],[-2,0],[-2,0],[-4,1],[4,1],[5,2],[4,1],[8,1],[1,1],[2,0],[2,0],[1,0],[2,1],[35,2],[8,0],[27,-2],[-3,-1],[2,-1],[3,0],[3,0],[2,1],[9,2],[4,1],[4,1],[9,1],[8,1],[11,-1],[25,1],[-14,2],[-7,0],[-5,1],[-2,0],[-2,0],[-8,-2],[-5,-1],[-5,0],[-4,1],[-4,0],[-5,0],[-8,-1],[-9,-1],[-21,0],[-53,-3],[-5,0],[-4,0],[-26,4],[1,-1],[-2,-1],[-8,0],[-5,-1],[-3,0],[-4,0],[1,0],[-4,1],[-4,0],[-4,-1],[-4,-1],[-4,0],[-4,-1],[-4,0],[-2,-1],[-2,1],[-5,1],[-5,0],[-4,-1],[3,0],[-8,-2],[-12,-1],[-8,1],[-6,-1],[-5,0],[-3,-1],[-1,-1],[-3,-1],[-4,-1],[-3,0],[-1,-2],[0,-1],[-1,0],[-1,-1],[-1,0],[-8,-2],[-5,0],[-3,0],[-1,-1],[-1,0],[-4,0],[-4,-1],[-2,-1],[2,-2],[0,-1],[-4,-1],[0,-1],[10,1],[2,-1],[2,0],[-2,-1],[-3,0],[-3,-1],[-3,1],[-5,0],[-3,0],[-3,0],[-5,0],[-3,-1],[12,0],[3,0],[5,0],[2,-1],[17,2],[3,-1],[1,0],[-1,-2],[4,-1],[1,-1],[-3,-1],[-3,0],[-3,-1],[-3,0],[-2,0],[3,-1],[-5,0],[-6,1],[-6,2],[-3,1],[-2,1],[-5,1],[-7,0],[-6,0],[-4,1],[-5,1],[-4,1],[-3,1],[-3,3],[-1,0],[-4,0],[-6,1],[-4,0],[3,-3],[1,-1],[0,-1],[-4,0],[-1,1],[-1,4],[3,3],[5,2],[42,12],[13,2],[19,5],[7,2],[9,0],[19,-2],[11,0],[21,1],[10,1],[11,2],[4,0],[59,-1],[21,0],[21,2],[20,2],[18,3],[50,16],[9,3],[16,3],[8,2],[3,1],[6,1],[11,1],[22,-1],[21,1],[19,1],[17,2],[28,5],[16,2],[6,1],[7,0],[7,0],[5,-1],[-12,-1],[-12,-2],[-20,-5]],[[7381,8452],[-4,0],[-3,0],[0,1],[2,0],[1,0],[1,0],[6,1],[5,0],[2,0],[2,0],[3,0],[1,0],[-2,0],[-14,-2]],[[7726,8460],[-3,0],[-3,0],[-2,-1],[-4,0],[-3,1],[-1,0],[-1,0],[1,1],[4,0],[5,1],[6,-1],[2,0],[-1,0],[0,-1]],[[7483,8464],[-2,0],[-3,0],[-2,1],[1,1],[6,0],[1,1],[-2,0],[-4,0],[-1,0],[2,1],[5,0],[7,0],[3,0],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,-1],[-1,-1]],[[7382,8468],[0,-3],[0,-1],[-2,-1],[-1,0],[-3,1],[-3,0],[-4,0],[-1,-1],[-2,0],[-2,1],[-3,1],[-2,1],[0,1],[-1,1],[2,1],[4,0],[2,0],[1,-1],[0,-1],[5,0],[-1,2],[2,1],[5,-1],[4,-1]],[[7502,8470],[-1,0],[-3,0],[-2,-1],[-1,1],[-1,0],[-3,0],[-4,-1],[-7,0],[-2,0],[-3,0],[-1,1],[3,0],[2,1],[2,0],[2,1],[2,0],[6,1],[5,-1],[3,0],[2,-1],[1,0],[0,-1]],[[7274,8472],[-4,0],[-6,0],[-1,0],[-3,0],[2,1],[3,0],[3,0],[4,0],[3,0],[2,0],[3,-1],[-1,0],[-5,0]],[[7192,8474],[-6,-1],[4,0],[2,-1],[-3,-1],[-3,0],[-3,0],[-6,0],[-3,0],[-6,0],[-2,0],[-3,-1],[-2,1],[-3,0],[-2,1],[4,0],[4,0],[10,0],[-3,1],[-3,0],[-9,0],[8,2],[10,1],[10,0],[9,-1],[-2,-1],[-2,0]],[[7251,8477],[0,-1],[-3,0],[-3,0],[-2,0],[-2,0],[1,0],[4,-1],[-18,0],[8,-1],[-2,0],[-2,0],[-3,0],[1,0],[1,-1],[-5,-1],[-7,0],[-8,0],[-5,0],[2,1],[-1,1],[4,0],[1,0],[0,1],[-4,0],[1,1],[3,1],[5,0],[13,1],[13,0],[8,-1]],[[7353,8474],[-6,0],[-3,0],[1,1],[1,1],[1,0],[0,1],[1,0],[2,0],[15,1],[2,0],[-4,-2],[-6,0],[-5,-1],[-1,0],[4,0],[1,-1],[-3,0]],[[7135,8477],[13,0],[-9,0],[-4,-1],[-1,-1],[-2,0],[-2,1],[-3,0],[-8,0],[-3,1],[-3,0],[-2,0],[-5,0],[4,1],[5,1],[11,0],[3,-1],[6,-1]],[[7279,8473],[-7,0],[-7,1],[-3,2],[3,1],[11,0],[7,1],[4,1],[4,0],[3,-1],[-14,-2],[1,0],[3,-1],[2,0],[-7,-2]],[[8178,8478],[-4,0],[-4,0],[-1,1],[2,0],[4,0],[8,0],[-3,-1],[-2,0]],[[7340,8478],[-9,-1],[-5,1],[3,2],[5,1],[6,1],[5,-1],[1,-1],[-6,-2]],[[7183,8482],[4,0],[3,0],[-2,-1],[-2,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[0,1],[2,1],[3,1],[4,0],[1,0],[-2,-1]],[[8127,8479],[0,-1],[-6,1],[-1,0],[1,1],[3,1],[-7,0],[-5,1],[-2,2],[4,1],[4,0],[20,-4],[-1,0],[-4,0],[-4,-1],[-2,-1]],[[7472,8478],[0,-1],[1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[2,0],[3,0],[-1,-1],[3,-3],[-8,-2],[-19,-2],[0,-1],[2,0],[1,0],[3,0],[-2,-1],[-3,-1],[-1,0],[-6,0],[-3,0],[-3,-1],[-3,1],[-3,2],[-2,-1],[-8,-2],[-1,0],[-1,0],[1,-1],[-2,0],[1,1],[-1,1],[-2,0],[-3,0],[-1,1],[2,0],[2,1],[1,1],[-3,-1],[-8,-1],[-4,-1],[-10,-1],[-4,0],[0,2],[0,1],[1,1],[-1,1],[1,1],[0,1],[-3,0],[-6,1],[-3,1],[4,0],[9,1],[5,0],[23,0],[0,1],[-43,0],[3,2],[1,2],[4,2],[6,0],[-5,-2],[-1,-1],[4,0],[23,1],[9,1],[4,0],[45,1],[7,1],[5,2],[6,1],[7,1],[9,0],[-2,-2],[-5,-1],[-5,0],[-5,-1],[-2,-1],[-1,-1],[-1,0],[-7,-1],[-1,0]],[[7273,8484],[-2,0],[1,1],[4,0],[3,0],[-1,0],[-2,0],[-3,-1]],[[7267,8486],[4,0],[-4,-2],[-3,0],[-4,0],[-4,0],[-3,1],[-3,0],[-2,1],[1,0],[3,0],[3,0],[4,0],[8,0]],[[7356,8484],[-2,-1],[-4,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,-1],[-11,0],[-3,0],[4,1],[-3,1],[-6,0],[-5,0],[-4,0],[9,0],[-4,-2],[-6,1],[-6,0],[-5,0],[-2,0],[-1,1],[1,2],[6,0],[6,1],[27,-1],[17,-1],[4,-1]],[[7377,8488],[4,0],[3,0],[3,0],[1,-1],[-5,-1],[-7,-1],[-7,0],[-6,0],[1,0],[2,1],[2,1],[-5,0],[-4,-1],[-9,1],[4,1],[5,1],[5,0],[6,1],[1,-1],[6,-1]],[[7324,8489],[-2,0],[-5,0],[-3,0],[0,1],[1,0],[22,1],[7,0],[3,-1],[-2,0],[-21,-1]],[[7325,8491],[-22,-2],[-2,0],[4,2],[4,0],[2,0],[14,1],[0,-1]],[[7125,8491],[2,-1],[-1,-1],[-2,0],[-2,0],[-1,1],[-1,0],[-1,0],[-5,0],[-2,1],[2,1],[1,0],[3,0],[4,0],[3,-1]],[[8341,8491],[-3,0],[-3,1],[-4,1],[1,1],[11,0],[4,0],[1,1],[1,1],[2,0],[2,0],[10,-1],[2,0],[-1,-1],[-3,0],[-15,-1],[-3,0],[-2,-2]],[[7265,8493],[-7,0],[-3,0],[-3,0],[3,-1],[7,0],[3,-1],[-2,-1],[8,1],[3,-1],[2,0],[-5,-1],[-3,0],[4,0],[2,0],[2,0],[0,-1],[-4,0],[-4,-1],[-5,1],[-4,0],[-1,0],[-1,0],[-2,-1],[-1,0],[0,1],[0,1],[-5,0],[-3,0],[-7,1],[-6,0],[-4,1],[-2,1],[1,1],[4,0],[5,1],[4,0],[-11,2],[1,1],[1,1],[2,0],[4,0],[3,0],[11,-2],[2,0],[1,-1],[1,0],[3,0],[2,0],[4,-2]],[[7207,8497],[-3,0],[-2,1],[3,1],[5,2],[7,1],[5,0],[-1,-1],[-2,-1],[-6,-1],[-3,-1],[-3,-1]],[[7119,8499],[-1,0],[-5,0],[-8,1],[-3,0],[2,2],[-2,1],[-3,0],[-2,2],[5,0],[6,-2],[6,-1],[1,-1],[4,-2]],[[7151,8503],[5,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[0,-1],[1,0],[-4,0],[-3,-1],[3,-1],[-6,1],[-6,1],[-5,1],[-3,2],[-3,-1],[-2,0],[-2,0],[-1,1],[2,1],[4,1],[10,0],[4,-2],[12,0]],[[7113,8505],[-4,0],[-2,1],[-1,0],[-1,1],[-5,0],[-2,0],[-3,1],[-2,1],[1,0],[6,1],[1,0],[1,1],[2,0],[2,0],[1,-1],[2,-1],[2,0],[-2,-1],[-1,-1],[1,-1],[4,0],[0,-1]],[[7096,8526],[2,0],[2,0],[1,0],[1,0],[2,0],[2,0],[0,-1],[-1,0],[-3,0],[-10,1],[-1,0],[-1,0],[-1,0],[-2,1],[4,0],[4,0],[1,-1]],[[7119,8529],[-2,-1],[-4,0],[-6,1],[-2,-1],[-8,0],[-3,1],[-4,0],[6,1],[12,-1],[5,1],[-1,0],[-1,0],[0,1],[2,0],[2,0],[1,1],[-7,1],[-4,0],[-5,1],[6,1],[4,0],[4,0],[4,-1],[4,-1],[9,-1],[-5,-1],[-4,0],[-2,0],[-1,-2]],[[7134,8551],[8,-1],[1,0],[1,0],[-2,0],[-8,1],[-5,-1],[-4,0],[-1,0],[1,0],[-1,1],[-1,0],[1,1],[2,0],[1,0],[-1,0],[2,1],[4,0],[3,0],[-2,-1],[1,-1]],[[7162,8583],[-2,0],[-5,0],[-4,1],[2,0],[3,1],[9,-1],[1,0],[-1,-1],[-2,0],[-1,0]],[[7094,8683],[1,-1],[-1,-1],[-2,0],[-4,1],[-2,-1],[-4,0],[-5,1],[-2,0],[0,1],[1,0],[2,0],[0,-1],[1,1],[1,0],[-1,1],[-3,0],[-2,1],[1,1],[2,0],[1,0],[1,0],[1,-1],[6,0],[3,0],[3,-1],[2,-1]],[[7061,8706],[10,-1],[9,0],[10,1],[10,0],[0,-1],[-4,0],[-3,0],[-4,-2],[0,-1],[1,0],[-1,0],[3,-1],[13,0],[2,0],[1,0],[2,0],[2,0],[1,1],[-1,0],[-1,0],[0,1],[6,1],[9,0],[10,0],[6,-1],[-2,-1],[0,-1],[1,0],[2,-1],[-5,-1],[-7,0],[-3,0],[4,1],[-4,0],[-17,-2],[2,0],[5,-1],[-4,0],[-5,-1],[-9,0],[-3,1],[-3,1],[-2,1],[-5,0],[-3,0],[-3,0],[-4,0],[-3,1],[5,0],[-3,1],[-7,1],[-2,1],[-1,0],[-4,3],[-1,0]],[[7285,8709],[6,-2],[-1,0],[-2,-1],[-4,0],[-4,0],[-1,0],[-1,1],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,0],[1,1],[2,1],[3,0],[5,0],[2,0],[-1,0],[-3,1],[-1,0],[1,0],[1,0],[1,0],[1,0],[2,0]],[[7333,8708],[1,0],[0,-1],[-2,0],[-3,-1],[-3,-1],[-5,0],[-8,1],[-9,0],[5,0],[5,-1],[1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-12,0],[-2,1],[1,0],[-1,0],[-2,1],[2,0],[1,0],[2,1],[-2,1],[-2,0],[-1,1],[2,0],[4,0],[4,0],[3,0],[2,0],[2,0],[1,-1],[3,0],[1,0],[0,1],[2,0],[2,0],[1,-1],[1,0],[2,0],[1,0],[2,1],[1,1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,-1]],[[7127,8708],[-9,-2],[-1,2],[-2,0],[-4,-1],[-3,0],[-11,2],[1,1],[1,0],[3,0],[6,0],[8,1],[8,1],[7,-1],[-1,-1],[-3,-2]],[[7293,8714],[2,-1],[3,0],[1,0],[-1,0],[-3,0],[1,0],[1,-1],[-2,0],[-4,0],[-8,0],[-3,0],[-3,-1],[-1,0],[-3,-1],[-4,0],[-2,0],[-2,0],[0,1],[2,0],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[2,1],[4,0],[4,-1],[4,1],[3,0],[1,0],[1,0]],[[7463,8743],[1,-1],[1,1],[1,0],[3,0],[2,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-2,0],[-2,0],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[-4,-1],[-5,1],[-4,1],[-2,1],[-1,0],[-1,0],[-1,1],[5,0],[2,0],[2,1],[4,0],[7,1],[4,0],[2,-1],[1,0]],[[7949,8838],[2,-1],[6,0],[7,0],[13,0],[9,0],[7,-1],[-8,0],[-15,0],[-20,0],[-14,0],[-4,-1],[-18,-2],[6,-2],[15,0],[3,0],[-3,0],[-2,0],[-3,0],[-3,0],[-2,-1],[-2,0],[-3,0],[-4,-1],[-5,0],[-3,1],[3,1],[-1,0],[-2,1],[-3,1],[-6,-2],[-7,0],[-8,1],[-4,2],[-2,1],[-2,1],[6,1],[16,2],[20,0],[22,1],[11,-1],[3,-1],[-5,0]],[[8903,9131],[-28,-3],[-28,-2],[-60,-5],[-11,0],[1,-1],[3,-1],[4,0],[47,0],[19,0],[17,-2],[-12,-6],[-7,-2],[-60,-14],[-3,-1],[0,-1],[3,-2],[4,-2],[43,-19],[6,-2],[9,0],[67,-4],[67,-3],[7,-1],[7,-1],[19,-5],[9,-2],[40,-10],[15,-3],[69,-7],[-5,-1],[-3,-1],[-1,-1],[-2,-5],[-1,-1],[-6,-3],[-4,-2],[-93,-15],[-2,-1],[-3,-1],[-1,-1],[-3,0],[-12,-2],[-77,-18],[-11,-6],[9,-5],[54,-12],[10,-4],[7,-1],[0,-1],[1,-1],[1,0],[2,-1],[26,-6],[3,-1],[3,-3],[1,-2],[4,-2],[6,-3],[13,-4],[33,-8],[20,-3],[5,-2],[5,-3],[7,-6],[2,-1],[9,-3],[3,-1],[7,-4],[8,-3],[2,-2],[7,-6],[1,-2],[-1,-2],[-3,0],[-8,0],[-15,1],[-55,-2],[-15,-1],[7,-2],[17,-2],[8,-1],[-3,-1],[-19,-3],[-3,-1],[-1,-1],[-2,-2],[3,-7],[-3,-3],[-24,-4],[-9,-3],[11,-1],[33,0],[16,-1],[1,-3],[-2,0],[-3,-1],[-2,0],[0,-1],[3,-1],[4,0],[3,0],[-1,-1],[-6,-1],[-36,-1],[-9,-1],[-7,-2],[-3,-4],[11,-6],[15,-5],[19,-3],[23,-1],[43,0],[10,-1],[3,0],[1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[3,-1],[2,0],[10,-2],[4,-1],[-2,-1],[-5,-2],[-5,0],[-40,-3],[-2,0],[-1,-1],[1,0],[2,0],[1,-2],[1,0],[1,-1],[0,-1],[3,0],[-1,-1],[11,-1],[8,-1],[-2,-2],[-5,-2],[-2,-2],[5,-1],[9,-1],[17,-2],[37,-1],[11,-2],[7,-1],[5,-1],[6,-1],[13,-1],[8,-1],[5,-1],[-2,-1],[-4,-2],[0,-1],[3,-1],[4,-2],[6,-3],[-2,-2],[-6,-2],[-10,-3],[-42,-7],[-15,-4],[-15,-3],[-35,-2],[-13,-2],[-4,0],[5,-2],[56,-10],[33,-4],[14,-3],[5,-1],[6,-1],[78,-6],[36,-7],[47,-4],[6,-1],[5,-1],[2,-2],[0,-1],[2,-2],[2,-1],[3,-1],[6,-2],[15,-1],[6,-1],[15,-4],[6,-1],[3,0],[6,-1],[3,-2],[4,-2],[8,-1],[-21,-6],[-9,-3],[-7,-3],[-11,-7],[-4,-1],[-11,-3],[-4,-1],[-6,-4],[-3,-2],[-6,0],[-12,-2],[-4,0],[-2,-1],[-5,-2],[-33,-5],[-3,-1],[-6,-3],[-4,-1],[-4,0],[-27,-3],[-21,-3],[-9,-1],[-4,-1],[-3,0],[-6,-3],[-30,-6],[-33,-5],[-45,-11],[-40,-9],[-31,-5],[-5,-1],[-6,-3],[-4,-1],[-34,-6],[-7,-1],[-15,-1],[-5,-1],[-4,-1],[-5,-2],[-4,-1],[-34,-6],[-7,-1],[-2,-1],[-4,-1],[-14,-4],[-17,-2],[-35,-3],[-12,-2],[-17,-2],[-13,-2],[-4,0],[-8,-2],[-14,-3],[-4,-1],[-4,-1],[-9,-3],[-21,0],[-11,-2],[-33,-5],[-22,-5],[-22,-3],[-34,-7],[-5,-1],[-21,-3],[-20,-4],[-4,1],[-3,1],[-4,0],[-5,0],[1,-1],[1,0],[1,0],[-4,-1],[1,-1],[3,-1],[-3,-1],[-2,0],[4,0],[1,0],[-8,-2],[-3,0],[-16,1],[2,1],[7,0],[4,1],[-9,0],[-5,0],[-4,-1],[-2,-1],[1,0],[2,-1],[2,-1],[-8,1],[-20,2],[-8,0],[2,0],[1,-1],[1,0],[-1,-1],[-2,0],[-1,0],[2,-1],[2,0],[2,0],[2,-1],[-12,1],[-20,2],[-11,1],[-18,0],[-4,0],[0,1],[6,0],[12,0],[-5,1],[-17,2],[3,1],[-3,1],[-5,-1],[-3,-1],[1,-1],[3,-1],[1,-1],[-5,-1],[-1,1],[-1,0],[-5,0],[-3,0],[-3,1],[-3,1],[-1,-1],[-2,-1],[-2,0],[-2,0],[-4,1],[-2,1],[-2,0],[-3,-1],[-2,0],[0,-1],[-1,-1],[-2,0],[-3,-2],[-5,0],[-11,0],[6,-1],[2,-1],[-1,-1],[-1,1],[-8,1],[-2,0],[-21,-1],[-7,0],[2,1],[1,0],[2,1],[-4,0],[-5,0],[-5,0],[-3,-1],[-1,-1],[1,-1],[-1,0],[-2,-1],[-5,0],[-2,-1],[-3,0],[-4,1],[-5,1],[-3,1],[-4,0],[-6,0],[-4,-1],[-5,-1],[-6,1],[-6,1],[-5,1],[-2,1],[4,1],[6,1],[5,0],[6,2],[1,1],[-1,2],[1,0],[3,1],[10,1],[10,0],[20,-2],[-5,3],[-7,2],[-10,0],[-10,0],[-5,-1],[-9,-3],[-21,-6],[-2,-3],[7,-2],[-4,-1],[-2,-1],[-2,0],[-7,0],[-1,0],[1,-1],[-2,0],[-3,0],[-4,1],[0,-1],[-1,0],[-1,0],[-3,0],[-3,-1],[0,-1],[-2,0],[-4,1],[-3,1],[-3,1],[-2,1],[-3,0],[-3,1],[-4,1],[-4,0],[0,-1],[3,-1],[7,-2],[-22,1],[-2,0],[-4,-1],[-2,0],[-2,0],[-10,2],[-7,0],[-3,1],[-9,1],[-7,1],[-8,1],[-7,0],[13,-1],[2,-1],[5,-1],[6,-1],[2,0],[0,-1],[1,-1],[-2,0],[-4,0],[-2,0],[1,-1],[3,-1],[8,-1],[5,-1],[2,0],[3,0],[2,-1],[-1,-1],[-1,-1],[-2,0],[-12,-1],[-1,2],[-9,3],[2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-14,2],[-5,1],[-6,0],[9,-2],[5,-1],[4,0],[-2,-2],[-6,-1],[0,-1],[2,-1],[7,-2],[2,-2],[-5,0],[-3,1],[-3,0],[-3,1],[1,0],[-3,1],[-5,1],[-5,0],[-4,0],[-7,2],[-4,0],[-4,-1],[2,-1],[8,-1],[16,-1],[-16,-1],[0,-1],[-4,0],[-7,1],[-18,3],[-2,0],[1,1],[1,1],[3,0],[-5,1],[0,1],[13,0],[-3,1],[-5,0],[-5,0],[-4,-1],[-7,-1],[-18,-1],[4,0],[1,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-33,0],[0,2],[-3,0],[-8,0],[1,-1],[1,0],[-8,-1],[-21,0],[-2,0],[0,-1],[-1,0],[-3,0],[-4,0],[8,-1],[3,-1],[-2,0],[-3,0],[4,-1],[-5,0],[-14,-1],[-5,0],[0,1],[1,0],[-10,-1],[-2,0],[4,-1],[-1,0],[-4,0],[-4,-1],[-4,0],[-3,1],[3,1],[2,1],[1,1],[-1,1],[-5,0],[-3,-1],[-6,-4],[-2,0],[-20,0],[-5,0],[-2,1],[8,0],[0,2],[-6,1],[-9,-1],[5,-2],[-3,0],[-7,-1],[-3,0],[-12,0],[-8,-1],[-1,0],[-2,0],[0,-1],[0,-1],[-1,0],[-3,0],[-2,0],[0,1],[-1,1],[-3,0],[-14,2],[-4,0],[-1,0],[3,-1],[3,-1],[4,0],[1,0],[-2,-1],[-3,-1],[-3,0],[-3,0],[-2,-1],[16,1],[-1,-1],[-2,0],[-5,-1],[5,-1],[-16,-2],[-9,-2],[-5,-1],[-5,0],[-7,0],[2,1],[7,2],[2,1],[-4,0],[-6,-1],[-11,-2],[-1,1],[-5,0],[-4,-1],[-4,-1],[1,1],[3,1],[3,0],[3,1],[1,0],[0,1],[0,1],[2,1],[-12,0],[-5,0],[-4,-1],[3,-1],[-7,-1],[-2,0],[-4,0],[-8,1],[-6,0],[-4,-1],[5,-1],[-4,0],[-4,0],[-4,0],[-4,1],[-2,0],[-8,-1],[-3,0],[-3,0],[-4,-1],[-4,0],[-2,1],[4,1],[-4,0],[-3,0],[-2,-1],[-2,-1],[-4,0],[-3,-1],[-16,0],[-17,-3],[-7,1],[-38,-1],[-3,0],[-3,1],[-2,1],[-3,0],[-15,-1],[-10,-1],[-6,0],[3,1],[10,3],[3,1],[7,0],[3,0],[1,1],[-2,1],[0,1],[2,1],[-8,-1],[-3,0],[-2,-1],[-1,0],[-1,-1],[-4,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-3,-1],[-5,0],[-2,-1],[-8,-2],[-9,-1],[-21,-2],[-3,-1],[0,-1],[2,-2],[4,0],[-39,-2],[-3,0],[-15,0],[-5,0],[-4,0],[-14,-1],[-4,0],[4,1],[6,2],[3,0],[10,0],[33,3],[9,0],[-2,2],[2,0],[2,0],[3,0],[8,0],[6,1],[5,1],[5,1],[4,2],[4,2],[2,1],[-4,0],[-16,-6],[-6,-1],[-5,0],[1,0],[0,1],[1,0],[-3,0],[-2,1],[-3,0],[-2,-1],[1,0],[-9,0],[-3,-1],[-1,0],[-1,0],[-2,0],[-1,1],[3,2],[4,1],[17,1],[4,1],[5,2],[4,0],[-12,1],[-23,-1],[-11,0],[-6,1],[-5,0],[-4,1],[-1,1],[1,1],[4,1],[7,1],[-4,1],[-2,0],[-2,-1],[-1,-1],[-2,0],[-4,0],[-2,-1],[-1,1],[-2,1],[-4,1],[-8,0],[-5,1],[-3,0],[3,1],[0,1],[-2,0],[-2,1],[12,3],[5,1],[16,3],[4,1],[1,1],[2,1],[1,0],[7,1],[2,1],[0,1],[-5,0],[-6,-1],[-6,-2],[-3,-1],[-13,1],[-15,-1],[-33,-5],[-29,-1],[-14,-2],[-6,0],[3,1],[13,1],[-5,1],[4,2],[2,0],[11,1],[-11,0],[-6,-1],[-11,-1],[-5,0],[-13,-1],[2,1],[0,1],[1,0],[2,1],[4,0],[5,2],[7,1],[1,1],[12,2],[8,1],[1,1],[-2,1],[-10,-2],[-9,0],[-19,0],[5,2],[-37,-1],[-8,0],[-3,0],[-7,1],[-16,2],[-4,0],[-11,1],[-1,0],[-1,1],[-1,0],[-5,-1],[-4,0],[-4,0],[-7,1],[0,1],[-1,0],[-3,0],[-1,0],[-2,0],[-1,1],[-1,0],[1,1],[-11,0],[1,0],[1,1],[1,1],[-4,0],[-7,0],[-7,0],[-4,0],[-3,-1],[1,0],[6,-2],[-10,0],[-5,0],[-5,0],[1,1],[3,2],[0,2],[0,1],[1,1],[3,1],[6,0],[-3,0],[-1,1],[0,1],[3,1],[-16,-2],[-5,-1],[-5,-1],[-12,0],[-4,-1],[-1,0],[2,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-3,-1],[-7,-1],[-7,0],[-5,1],[6,1],[-4,1],[-12,3],[4,0],[10,0],[-5,1],[-16,0],[-8,-1],[-2,0],[-2,0],[-4,1],[-2,0],[0,1],[1,0],[1,0],[2,0],[-3,1],[7,0],[4,0],[2,0],[-11,2],[-5,0],[-5,1],[-4,1],[-2,1],[0,1],[17,0],[3,0],[1,1],[-1,0],[-2,1],[-2,1],[11,0],[-5,0],[-5,1],[-5,0],[-4,1],[3,0],[2,0],[3,0],[-5,2],[-3,0],[-3,0],[1,1],[-1,1],[-4,1],[-3,-1],[-2,1],[-1,0],[-1,0],[-1,1],[3,1],[-4,1],[3,0],[11,0],[6,0],[5,1],[-2,0],[-3,0],[-6,0],[-2,1],[-4,1],[2,0],[4,1],[2,0],[2,0],[2,-1],[2,0],[3,0],[-1,1],[-1,1],[-1,0],[-2,1],[-3,0],[-1,0],[-1,1],[-1,0],[-10,4],[-4,0],[3,1],[1,0],[-6,1],[-2,1],[-1,1],[5,0],[10,-1],[6,-1],[5,0],[-1,1],[-3,1],[-6,0],[6,0],[14,-1],[7,1],[-3,0],[-4,1],[-1,1],[3,1],[-2,1],[-2,1],[-2,1],[2,0],[6,0],[-2,0],[-1,0],[-2,0],[-1,1],[3,1],[-3,0],[3,0],[3,0],[8,0],[-1,1],[-1,0],[7,1],[8,0],[-4,2],[-4,1],[-12,0],[3,1],[3,1],[2,0],[-1,1],[9,0],[0,1],[0,1],[0,1],[-2,1],[-1,0],[0,1],[-1,2],[-2,0],[-3,1],[-3,0],[-7,1],[-3,0],[7,1],[15,-1],[7,1],[-4,1],[-3,1],[-8,1],[-16,1],[-4,1],[31,-1],[8,1],[-4,2],[-2,1],[-3,0],[-6,-1],[-4,1],[-9,2],[-2,0],[0,1],[1,0],[4,0],[6,0],[27,-1],[15,-2],[7,0],[-16,3],[-8,2],[-6,3],[-4,0],[-5,1],[-3,0],[-1,1],[2,1],[0,1],[-6,1],[0,1],[4,0],[8,-1],[4,0],[-6,1],[-17,2],[-4,1],[1,1],[2,1],[1,1],[0,1],[-3,1],[-4,0],[-3,0],[1,1],[-7,2],[-4,1],[-2,1],[2,0],[2,1],[1,0],[-5,1],[-1,0],[0,1],[-2,1],[-2,0],[-11,0],[-2,0],[-1,0],[-5,0],[-3,1],[4,1],[-3,1],[-11,0],[10,5],[2,2],[1,3],[1,1],[4,-2],[4,2],[1,1],[-2,1],[4,1],[7,1],[3,1],[1,1],[-2,0],[-6,1],[5,3],[-6,0],[-2,-1],[-3,-1],[-4,-1],[1,2],[3,2],[1,1],[0,3],[1,1],[-12,0],[-4,0],[-2,1],[0,1],[1,1],[3,0],[-2,2],[-15,-4],[-1,-1],[4,-1],[-6,0],[-1,1],[2,2],[1,1],[-1,0],[-2,0],[-2,0],[2,1],[2,1],[1,0],[-3,0],[-5,0],[-4,0],[-4,-1],[0,1],[4,2],[1,2],[-4,-1],[-3,0],[-2,0],[-1,2],[1,1],[2,1],[3,1],[4,0],[-1,1],[-5,1],[4,1],[5,1],[5,0],[5,0],[-4,2],[-17,0],[-3,1],[-3,0],[-3,-1],[-4,-1],[1,2],[3,3],[-1,1],[5,1],[6,0],[6,1],[3,1],[-1,1],[-1,0],[-1,0],[-2,0],[-4,1],[-2,1],[-2,1],[2,1],[3,1],[5,0],[5,-1],[3,0],[1,1],[1,0],[4,1],[2,0],[1,2],[0,1],[1,1],[4,0],[6,0],[16,-1],[4,1],[2,0],[5,1],[1,0],[2,1],[0,1],[3,1],[2,1],[1,1],[1,0],[8,1],[-4,2],[0,1],[0,2],[-1,1],[1,0],[3,1],[2,0],[2,-1],[1,0],[1,1],[3,1],[6,0],[10,-2],[7,0],[7,-1],[8,-1],[7,1],[-10,2],[-16,2],[-4,1],[-2,1],[5,1],[-3,0],[-3,0],[-4,0],[-2,0],[-1,1],[0,1],[0,1],[-3,0],[1,1],[3,0],[7,0],[-9,1],[-3,0],[-1,2],[2,0],[5,1],[4,0],[4,0],[13,-2],[7,0],[5,1],[5,0],[6,-1],[7,0],[5,0],[-4,1],[-7,0],[-4,0],[0,1],[10,1],[3,0],[10,0],[5,0],[11,1],[6,0],[-2,-1],[-1,0],[2,-3],[0,-1],[-2,-1],[6,0],[18,-2],[-3,1],[-3,2],[6,0],[3,1],[2,0],[1,1],[1,1],[1,0],[2,1],[4,0],[2,0],[2,-1],[3,0],[3,0],[7,1],[3,0],[2,0],[5,-1],[4,0],[1,1],[2,0],[1,0],[2,0],[10,2],[5,1],[3,1],[2,0],[5,-2],[5,1],[5,2],[5,1],[-2,0],[-2,1],[-2,1],[-3,1],[-7,1],[-11,2],[-2,1],[-4,0],[-3,0],[-3,0],[-2,1],[-1,2],[5,1],[8,0],[6,-1],[7,-2],[7,0],[8,0],[8,-1],[-20,3],[-9,2],[-2,2],[3,1],[2,0],[7,0],[4,0],[0,-1],[-2,-1],[1,0],[5,-1],[6,0],[4,-1],[-1,-1],[3,0],[4,1],[3,0],[0,1],[-2,0],[1,1],[1,1],[1,0],[1,0],[4,3],[2,1],[3,0],[2,0],[1,1],[2,1],[9,-1],[-1,1],[-10,2],[4,1],[2,0],[2,1],[-1,0],[0,1],[10,-1],[4,1],[2,1],[-1,1],[0,1],[1,0],[4,0],[4,-1],[2,0],[1,0],[1,1],[2,0],[2,0],[3,0],[3,-1],[3,0],[1,-1],[-1,-1],[3,-1],[5,-1],[1,-1],[3,0],[5,0],[4,1],[2,0],[2,1],[3,0],[2,0],[1,0],[0,1],[0,1],[1,0],[4,1],[7,1],[4,0],[-4,1],[-12,1],[16,0],[-5,1],[-2,0],[6,0],[4,0],[2,0],[1,0],[0,1],[0,1],[-1,0],[-4,0],[-2,1],[1,1],[5,0],[4,0],[3,0],[4,-2],[4,-1],[3,1],[-2,1],[0,1],[0,1],[13,2],[3,1],[3,0],[11,0],[3,0],[2,1],[3,0],[-1,0],[-2,0],[0,1],[3,0],[3,1],[7,0],[18,0],[7,0],[5,1],[6,0],[5,0],[5,0],[5,1],[-7,1],[-4,1],[0,1],[2,1],[-2,1],[0,1],[3,4],[3,0],[5,0],[8,0],[1,-1],[3,0],[2,0],[3,0],[2,0],[2,0],[8,-1],[15,0],[4,1],[-4,2],[-5,1],[-4,1],[2,1],[3,0],[6,0],[2,0],[6,1],[2,1],[1,1],[5,1],[5,0],[1,0],[4,1],[-2,0],[1,1],[1,1],[3,1],[5,0],[3,-1],[11,1],[4,1],[2,0],[4,3],[5,0],[10,-1],[4,-1],[-2,1],[-1,1],[-1,1],[1,1],[3,1],[7,2],[3,1],[3,2],[2,1],[5,0],[10,1],[3,1],[-1,1],[3,0],[3,0],[3,0],[2,1],[1,0],[9,0],[9,0],[1,1],[0,1],[0,1],[2,0],[2,0],[7,0],[2,0],[2,1],[1,1],[1,0],[5,1],[5,0],[4,0],[4,2],[-1,1],[4,1],[-1,1],[1,2],[2,1],[6,1],[1,1],[1,0],[1,1],[2,0],[3,0],[7,2],[9,1],[5,0],[3,1],[-2,1],[-1,0],[0,1],[3,1],[3,0],[7,1],[-9,1],[-3,1],[5,0],[5,0],[19,-2],[2,0],[2,1],[-3,1],[1,1],[5,1],[10,0],[1,1],[8,1],[29,1],[42,3],[5,0],[4,0],[2,-1],[2,-1],[3,-1],[2,0],[1,1],[2,0],[3,-1],[1,-1],[1,0],[4,-1],[3,-1],[5,0],[5,0],[0,-1],[-2,0],[-2,0],[-4,0],[8,-1],[22,1],[2,1],[-3,1],[1,1],[3,2],[1,0],[-2,1],[-3,0],[-3,0],[-3,0],[-4,0],[-6,1],[-9,1],[-4,0],[-8,3],[1,0],[3,0],[1,1],[-2,0],[4,0],[24,0],[4,-1],[8,-1],[6,-1],[5,0],[4,1],[1,1],[-2,1],[-2,0],[-2,1],[1,1],[-1,0],[-1,1],[1,1],[-6,1],[-3,0],[-1,1],[0,1],[-1,0],[-2,1],[-1,0],[-8,1],[-26,1],[1,2],[2,1],[8,1],[3,0],[2,1],[1,1],[-1,1],[3,0],[3,0],[2,0],[3,1],[-2,0],[-3,0],[-1,0],[2,1],[1,1],[-4,0],[-2,0],[-2,0],[3,1],[3,2],[4,1],[-1,1],[-2,0],[-1,0],[2,0],[2,1],[3,0],[-16,3],[3,0],[6,0],[4,0],[2,1],[4,1],[2,0],[-3,2],[3,2],[-1,2],[-7,1],[-7,2],[-17,2],[-5,1],[-7,0],[-5,-1],[-5,0],[-6,2],[-1,0],[-1,1],[-2,1],[-2,0],[-3,1],[-6,-1],[-3,1],[-4,0],[-12,0],[-4,0],[-3,1],[-5,1],[-2,0],[-9,1],[-9,0],[-9,0],[-8,-1],[-6,-1],[-3,0],[-5,0],[-2,0],[-1,1],[-1,3],[-2,0],[-15,1],[-3,1],[-4,1],[-3,1],[-1,1],[3,2],[3,2],[13,4],[4,1],[1,0],[4,1],[7,0],[2,0],[1,1],[-4,0],[-12,-1],[-2,0],[-2,0],[-2,0],[-1,-1],[1,-1],[-1,0],[-6,-1],[-10,-3],[-6,-1],[-6,0],[-5,0],[-4,0],[-6,-1],[-1,0],[-1,-1],[-1,0],[-3,0],[-11,1],[-7,1],[-2,0],[-9,1],[-10,1],[3,-1],[0,-1],[-1,-1],[-5,-1],[-4,1],[-4,0],[-4,1],[-2,1],[0,1]],[[7783,8894],[0,1],[-9,2],[-5,3],[-7,2],[-5,1],[1,2],[0,1],[-6,4],[-3,1],[-2,0],[-6,1],[-2,0],[-2,1],[-13,5],[-5,1],[-25,1],[-8,1],[-6,1],[-8,4],[-2,2],[-4,2],[0,1],[2,1],[1,1],[0,1],[-1,1],[-1,1],[-1,1],[-4,1],[-1,1],[2,2],[6,1],[7,1],[6,0],[0,1],[5,1],[8,0],[4,1],[1,1],[12,1],[5,1],[2,1],[1,1],[-1,1],[-2,2],[2,1],[2,1],[1,2],[0,1],[-3,3],[8,2],[3,1],[5,1],[6,0],[3,0],[2,0],[-1,1],[-10,4],[-6,2],[-5,1],[-9,1],[-13,4],[-6,1],[-7,0],[-4,1],[-6,1],[-8,3],[-2,0],[-1,1],[-1,1],[0,1],[-2,1],[-3,0],[-6,1],[-5,1],[-4,1],[-2,2],[3,0],[2,1],[3,1],[2,1],[-5,0],[-1,0],[1,2],[2,1],[4,1],[27,1],[6,2],[5,2],[-8,0],[0,2],[3,2],[1,2],[-3,0],[-5,1],[-16,0],[-16,1],[-10,0],[-9,0],[-9,0],[-8,1],[-2,2],[2,1],[6,1],[4,2],[-3,1],[7,1],[8,1],[4,0],[-1,2],[-1,1],[-6,2],[-2,1],[-2,3],[-3,1],[-1,1],[0,5],[-1,1],[-1,2],[1,2],[4,1],[8,1],[17,1],[7,0],[6,2],[1,1],[-5,1],[-16,1],[-21,3],[-6,1],[-18,2],[-2,0],[0,1],[-10,4],[-2,1],[-4,1],[-8,0],[-19,-2],[-6,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,2],[0,1],[-2,0],[1,2],[-4,1],[-10,2],[-3,0],[-1,1],[-1,1],[-2,0],[-3,1],[-35,3],[-6,1],[-10,2],[-6,1],[-14,-1],[-7,1],[-7,2],[-6,0],[-5,0],[-4,0],[-4,0],[-10,1],[-10,0],[-15,1],[-19,0],[-1,1],[-16,1],[-54,0],[-8,1],[-1,0],[1,1],[-1,0],[-1,0],[-1,1],[-3,0],[-3,1],[-7,1],[-2,0],[-10,2],[-43,1],[-4,3],[-13,1],[-21,2],[-18,1],[-8,1],[-2,0],[-7,3],[-2,0],[-2,1],[-5,1],[-16,0],[-3,0],[-1,0],[-1,1],[-2,0],[-2,0],[-14,3],[-15,2],[-19,2],[-39,2],[-5,1],[1,1],[7,1],[4,1],[0,1],[-6,1],[-11,1],[-16,2],[-28,0],[-12,1]],[[6955,9131],[22,5],[6,0],[68,-4],[9,-1],[6,1],[14,3],[-29,7],[7,3],[4,1],[4,0],[50,4],[76,-1],[6,-1],[66,-14],[18,-4],[32,-5],[4,0],[3,-2],[3,-1],[18,-4],[18,-2],[4,0],[6,-7],[3,-1],[4,-1],[27,1],[6,1],[6,-1],[60,-3],[39,1],[12,-1],[7,-1],[18,-3],[5,-1],[66,5],[38,1],[22,2],[7,3],[5,3],[15,1],[18,0],[47,-3],[8,-1],[5,-1],[34,-3],[35,-1],[43,-2],[21,-2],[18,-3],[7,-3],[4,0],[6,0],[5,1],[3,1],[3,2],[7,0],[6,0],[15,1],[6,1],[5,0],[3,1],[3,1],[-3,1],[2,1],[1,0],[0,4],[1,1],[3,2],[10,2],[43,4],[11,1],[11,0],[28,-1],[6,0],[6,1],[3,1],[3,1],[4,1],[7,1],[3,1],[1,1],[3,1],[10,1],[2,1],[-1,1],[-2,0],[-5,1],[-1,0],[-1,0],[1,1],[-1,0],[-3,1],[0,1],[1,0],[1,1],[0,2],[1,1],[1,0],[1,1],[-1,0],[-3,2],[-1,0],[-4,2],[1,2],[9,6],[2,1],[22,4],[-2,1],[-7,3],[6,1],[3,1],[2,0],[0,2],[1,1],[3,1],[-1,0],[-2,1],[-1,0],[3,1],[14,1],[6,2],[4,1],[0,2],[-5,2],[-4,0],[-1,1],[2,1],[3,1],[5,1],[7,0],[35,1],[4,1],[3,0],[2,1],[11,2],[11,3],[24,3],[7,1],[-3,1],[3,1],[8,1],[4,2],[8,0],[41,1],[15,-1],[21,1],[8,0],[13,-1],[7,0],[6,0],[17,-2],[5,0],[49,2],[10,2],[-2,0],[-4,1],[-1,0],[2,0],[4,1],[3,0],[4,0],[15,2],[28,1],[2,2],[9,1],[13,1],[29,-1],[18,1],[7,0],[7,-1],[13,-4],[43,-8],[5,-1],[45,-2],[0,-2],[6,-2],[9,-1],[8,0],[76,-4],[77,-4],[3,-1],[13,-6],[33,-9],[-27,-6],[-85,-12],[-3,-1],[-2,-2],[-4,-5],[1,-2],[2,0],[27,-4]],[[270,9290],[6,-2],[0,-1],[-5,-2],[-7,0],[-5,-1],[2,-1],[3,-2],[1,-1],[-5,-1],[-93,-5],[-5,0],[-11,1],[-6,0],[-29,-1],[-9,-1],[-9,-1],[-38,-6],[-4,0],[-8,0],[-4,-1],[-2,0],[-4,-1],[-2,-1],[-5,0],[-8,-1],[-8,0],[-6,1],[1,0],[1,1],[1,0],[-10,2],[-2,1],[7,1],[7,0],[3,0],[3,0],[8,2],[8,0],[2,0],[2,1],[2,0],[5,1],[20,0],[9,1],[11,1],[2,0],[1,1],[9,1],[28,0],[2,1],[1,0],[1,0],[2,0],[5,0],[2,1],[3,0],[7,2],[2,1],[4,1],[2,0],[10,3],[6,1],[11,2],[32,0],[3,0],[5,1],[2,1],[6,0],[18,0],[9,0],[5,0],[5,0]],[[4714,8395],[2,0],[5,0],[1,0],[2,0],[0,-1],[-2,0],[-2,-1],[-3,0],[-1,-1],[1,0],[-2,-1],[-3,0],[-3,0],[-1,0],[-1,0],[-2,1],[-2,0],[0,1],[0,1],[0,1],[2,1],[4,0],[4,0],[1,-1]],[[4671,8397],[4,0],[6,1],[3,0],[0,-1],[-1,-1],[-6,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-3,0],[-1,1],[-2,1],[3,0],[3,1],[2,0],[1,0],[-1,-1],[-1,0],[-1,0]],[[3444,8399],[3,0],[3,0],[3,0],[7,-1],[5,0],[5,1],[4,0],[6,-1],[3,0],[0,-1],[0,-2],[-6,0],[-20,2],[-15,1],[-6,1],[2,0],[2,0],[4,0]],[[3407,8401],[-2,0],[-2,0],[-1,1],[1,0],[-1,0],[-1,0],[-1,0],[-6,1],[-3,1],[-1,1],[-1,1],[1,0],[1,1],[3,0],[2,0],[2,0],[3,0],[1,0],[2,-1],[3,0],[2,-1],[1,-1],[1,0],[-1,-1],[-3,-2]],[[3536,8406],[-11,0],[-6,1],[0,2],[5,1],[8,1],[7,0],[13,-1],[7,0],[-2,-1],[-9,-2],[-12,-1]],[[3367,8411],[3,-1],[5,0],[1,-2],[0,-2],[-4,-1],[-1,-3],[-8,-1],[-6,-1],[-7,0],[-5,1],[-2,1],[-3,2],[0,1],[2,2],[0,1],[0,1],[-2,1],[3,1],[12,-1],[-11,3],[-2,1],[0,1],[3,1],[3,0],[2,1],[-5,1],[-2,1],[2,1],[5,0],[9,-3],[2,-2],[2,0],[2,-1],[2,0],[1,-1],[-1,-1],[-1,-1],[1,0]],[[3351,8451],[2,-1],[1,0],[1,-1],[2,0],[3,0],[2,0],[5,-2],[3,-1],[3,-1],[3,0],[4,-2],[2,-1],[-8,-2],[-5,0],[-4,0],[2,0],[7,1],[-2,1],[-1,2],[-2,1],[-4,0],[0,-1],[-3,0],[-4,0],[-4,1],[-1,0],[-2,0],[-3,0],[-1,-1],[-1,0],[0,-1],[1,-1],[-2,-1],[-6,-1],[-2,-1],[2,-1],[3,0],[4,1],[4,1],[-4,-2],[-1,0],[1,-1],[2,0],[1,-1],[-2,-1],[2,0],[-2,-1],[-2,0],[-2,0],[-5,-1],[-1,0],[-1,1],[-3,0],[-3,1],[-2,1],[0,2],[1,2],[3,2],[6,2],[7,1],[-10,0],[-4,1],[-2,1],[-3,-1],[-4,0],[-3,0],[-1,1],[1,1],[3,1],[2,0],[0,2],[1,-1],[3,0],[1,0],[1,1],[1,0],[2,0],[3,0],[-2,1],[-8,2],[3,0],[2,0],[6,0],[2,-1],[2,-1],[6,-1],[2,0],[2,0]],[[3418,8449],[-4,-1],[-14,-3],[-7,0],[-7,1],[-1,0],[3,1],[4,-1],[3,0],[1,1],[-1,1],[-2,0],[-3,0],[-2,0],[-1,-1],[-3,0],[-4,0],[-3,0],[-2,1],[-1,0],[-2,1],[-4,3],[-3,1],[-4,1],[2,1],[0,1],[-1,0],[-2,1],[9,2],[2,1],[-4,0],[-1,0],[2,1],[2,0],[2,1],[3,0],[3,0],[2,-1],[2,0],[10,-1],[8,-1],[6,-2],[5,-2],[5,-2],[0,-1],[1,-2],[1,-1]],[[3456,8468],[0,-3],[-2,-2],[-11,-3],[4,-1],[4,-2],[-4,0],[-7,1],[-5,0],[-10,-2],[-5,0],[-4,1],[-2,3],[-1,1],[-3,-1],[-2,0],[-5,0],[-6,0],[-5,1],[-4,1],[-2,1],[3,0],[17,1],[1,0],[-2,1],[-1,1],[1,0],[2,1],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,1],[1,0],[16,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[2,0],[7,0],[2,0],[1,-1]],[[3362,8469],[1,0],[1,0],[1,0],[2,0],[2,0],[2,-1],[1,-1],[-1,0],[0,-1],[0,-1],[-4,-1],[-1,0],[-2,-1],[-3,0],[-2,0],[0,1],[-1,0],[-3,0],[-3,0],[-3,0],[-1,1],[0,1],[-6,1],[1,1],[4,1],[2,1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,0],[1,1],[1,0],[1,0],[-1,0],[-3,1],[-1,1],[-1,1],[-1,0],[-3,1],[0,1],[3,0],[1,0],[2,0],[4,-1],[2,-1],[-1,0],[2,-1]],[[3323,8487],[1,-2],[-3,-1],[-8,0],[2,0],[7,-1],[2,-1],[2,-1],[1,-1],[0,-1],[1,-1],[-2,-1],[-5,0],[-4,0],[-2,1],[-1,1],[-2,1],[-2,1],[-3,0],[-2,-1],[-5,0],[-7,1],[-4,1],[-2,2],[-1,0],[2,1],[12,0],[3,0],[4,-1],[3,2],[-4,0],[-3,0],[-3,1],[-4,0],[-1,1],[-2,2],[-1,0],[3,2],[-1,0],[-2,1],[-1,0],[-3,2],[1,1],[5,0],[2,0],[1,0],[5,-3],[16,-4],[5,-2]],[[3308,8502],[29,-2],[10,-2],[2,-2],[0,-1],[-3,-1],[-12,-1],[-3,0],[-2,1],[-1,1],[1,0],[3,1],[-12,1],[-4,1],[2,0],[1,0],[1,0],[0,1],[-4,0],[-1,0],[0,1],[-1,0],[-2,1],[-3,0],[-3,-1],[-3,0],[-4,1],[-3,1],[-4,3],[3,-1],[1,0],[1,0],[11,-2]],[[3261,8510],[1,0],[1,0],[2,0],[2,-1],[-2,-1],[-1,0],[1,-1],[-2,0],[-3,-1],[-5,1],[-4,0],[-1,1],[2,-1],[0,1],[-1,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[2,1],[2,0],[2,-1],[2,0],[1,-1],[1,0],[1,0],[0,-1],[-1,0]],[[3459,8498],[-3,0],[-6,0],[-3,0],[-1,-1],[-2,-1],[-19,-1],[-6,1],[-4,0],[-6,2],[-4,0],[-2,1],[-10,2],[-16,3],[4,0],[11,0],[5,1],[1,0],[2,0],[3,1],[10,1],[10,1],[5,1],[7,0],[2,1],[2,1],[0,1],[1,1],[4,1],[6,0],[7,0],[5,-1],[0,-4],[0,-2],[-3,-3],[0,-2],[2,-3],[-2,-1]],[[3260,8532],[1,0],[7,0],[3,0],[3,0],[-1,0],[-2,0],[1,-1],[3,0],[2,-1],[6,-2],[1,0],[-1,-1],[2,0],[-1,0],[-2,0],[-4,0],[-5,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-4,0],[-2,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[1,0],[-1,1],[-1,0],[1,0],[3,1],[10,0],[2,0],[-2,-1],[-3,0]],[[3240,8539],[0,-1],[-1,-1],[-3,0],[-3,-1],[-1,1],[1,1],[0,1],[-2,-1],[-2,-1],[-2,0],[-2,0],[-1,1],[-1,1],[-2,0],[-2,0],[0,1],[-1,1],[1,0],[-1,0],[0,1],[4,0],[1,0],[1,0],[1,1],[1,0],[3,0],[2,0],[2,0],[0,-1],[2,0],[-1,-1],[2,-1],[3,0],[1,-1]],[[3276,8548],[1,-1],[2,1],[0,1],[-1,1],[2,0],[2,0],[2,0],[2,0],[-1,1],[-1,0],[-1,0],[3,0],[2,0],[2,0],[2,-1],[6,-4],[0,-1],[-4,-1],[-10,-1],[-4,-1],[-3,-1],[-3,1],[-2,2],[-4,1],[0,-1],[-7,-1],[-2,0],[-1,-1],[-1,-1],[-2,0],[-1,1],[0,1],[0,3],[0,1],[-1,0],[-1,1],[1,1],[6,0],[3,0],[5,-2],[2,-1],[2,1],[0,1],[-6,4],[4,0],[3,0],[3,-3],[1,-1]],[[3279,8587],[0,-1],[0,-1],[0,1],[-1,0],[-2,0],[-2,0],[-4,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[0,1],[2,0],[2,0],[2,0],[1,1],[2,0],[2,0],[0,-1],[1,0],[2,-1],[1,0],[2,-1]],[[3290,8604],[64,-4],[-5,-1],[-6,-1],[-14,0],[3,0],[2,1],[0,1],[-3,1],[-8,-3],[-9,-1],[-10,-1],[-22,-1],[-6,0],[-5,1],[0,1],[2,0],[5,0],[2,0],[1,1],[3,0],[-6,0],[-16,1],[-7,0],[5,1],[5,1],[5,1],[0,1],[10,1],[10,0]],[[3317,8612],[3,0],[1,0],[1,0],[3,1],[5,0],[3,0],[4,-2],[-1,-1],[-2,0],[-2,-2],[-1,0],[-1,-1],[-2,-1],[-4,0],[-5,0],[-8,0],[-2,0],[-3,1],[-1,0],[0,1],[2,0],[3,0],[2,0],[1,0],[1,0],[0,1],[-13,2],[-3,1],[0,1],[0,1],[2,0],[4,-1],[13,-1]],[[3466,8633],[2,0],[1,-1],[2,0],[3,0],[10,0],[5,0],[1,-1],[-3,0],[-1,-1],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[-1,-1],[-1,0],[-3,-1],[-18,-1],[-36,0],[-2,1],[-2,0],[-1,0],[-1,1],[-1,0],[-3,1],[19,-1],[5,1],[-4,0],[-5,1],[-9,0],[-2,0],[1,1],[4,0],[4,0],[-1,1],[-1,0],[-1,0],[4,2],[8,0],[17,0],[2,0],[2,0],[2,0],[2,0]],[[3470,8638],[2,0],[3,0],[0,-1],[-2,-1],[1,0],[-2,-1],[-7,0],[-6,0],[-1,0],[-1,1],[-1,-1],[-2,0],[-1,0],[-3,0],[-5,0],[-3,0],[2,1],[5,0],[5,1],[5,0],[1,0],[2,1],[2,0],[5,0],[1,0]],[[3436,8636],[-8,0],[-5,0],[-1,0],[0,1],[-1,1],[3,0],[5,0],[4,0],[4,0],[4,-1],[-1,-1],[-4,0]],[[3551,8637],[3,-1],[-3,0],[-2,0],[-5,0],[-38,-6],[-15,-1],[2,1],[5,1],[3,1],[-2,0],[-2,0],[-1,0],[2,2],[-3,2],[-4,1],[-1,1],[2,2],[5,1],[6,1],[6,0],[7,1],[6,0],[6,-1],[5,-2],[1,0],[0,-1],[1,-1],[3,0],[3,0],[10,-1]],[[3586,8644],[11,-2],[9,1],[4,-1],[3,0],[-1,0],[-1,-1],[-1,0],[-36,-1],[-18,1],[-15,3],[41,0],[4,0]],[[3747,8665],[3,-1],[-1,-1],[-39,-2],[-15,-1],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[-3,0],[0,1],[3,0],[2,0],[2,0],[2,1],[-2,1],[2,1],[5,1],[4,-1],[-1,0],[6,0],[26,1],[6,0],[6,-1]],[[3724,8674],[6,-1],[6,1],[8,0],[7,0],[5,-1],[0,-1],[-11,0],[-4,-1],[2,0],[2,-1],[2,0],[-1,-1],[-3,-1],[-5,1],[-6,1],[-13,1],[-4,1],[1,0],[3,0],[4,0],[-4,1],[-2,0],[0,1],[3,1],[4,-1]],[[3983,8691],[-3,-1],[-7,-2],[-7,-1],[-8,0],[-5,0],[-2,0],[-2,0],[-3,0],[-1,1],[-4,0],[-13,1],[0,1],[5,0],[1,0],[1,1],[1,1],[2,0],[1,0],[2,0],[10,-1],[17,1],[8,0],[7,-1]],[[3928,8687],[4,-1],[2,0],[-5,-1],[-5,0],[-9,-1],[-3,0],[-3,-1],[-17,-2],[-4,0],[-4,0],[-4,1],[-2,1],[-17,1],[-4,0],[-2,1],[2,1],[5,0],[9,1],[-3,0],[-1,1],[4,1],[-4,0],[-2,0],[-2,0],[0,1],[5,0],[16,0],[-3,-1],[6,0],[5,0],[9,-2],[2,0],[1,1],[-3,1],[2,0],[4,1],[1,0],[3,1],[0,1],[-5,2],[8,0],[4,0],[3,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[3,0],[2,-1],[4,-1]],[[4075,8697],[-18,0],[-5,0],[-3,0],[-1,1],[-3,2],[-1,1],[-2,0],[1,0],[4,1],[5,0],[6,0],[10,-2],[3,0],[4,-1],[2,0],[0,-1],[2,0],[-4,-1]],[[4047,8697],[-39,-2],[-10,1],[-12,2],[2,1],[13,1],[13,2],[7,1],[8,0],[5,-1],[5,-1],[4,-2],[-1,-1],[4,-1],[1,0]],[[4116,8703],[15,-2],[6,-1],[-2,-2],[-33,-1],[-12,0],[-6,1],[-13,3],[-6,1],[1,1],[1,2],[1,0],[2,1],[3,-1],[2,0],[2,0],[2,-1],[2,0],[3,1],[2,0],[3,-1],[3,-1],[4,-1],[2,1],[-1,1],[0,1],[2,1],[4,0],[4,0],[3,-1],[6,-2]],[[4026,8710],[-1,0],[-1,0],[-1,-1],[-11,0],[-4,0],[-6,-1],[-4,0],[-1,1],[-10,1],[-4,0],[4,1],[15,-1],[-7,1],[-37,2],[-5,0],[1,2],[-1,0],[-2,1],[7,0],[7,1],[14,0],[6,0],[12,2],[7,1],[15,0],[8,-1],[5,-2],[11,-2],[2,-1],[-7,-2],[-3,-1],[-2,0],[-7,-1]],[[4229,8734],[2,-1],[-1,0],[-1,-1],[-2,0],[1,-1],[3,0],[3,-2],[6,0],[8,1],[8,0],[9,-2],[1,0],[0,-1],[3,0],[9,0],[-8,-1],[-8,-1],[-58,-4],[-33,0],[-13,-1],[-21,-1],[-16,-2],[-6,0],[-17,0],[-4,0],[-10,2],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-3,0],[-3,0],[-1,1],[1,1],[-2,0],[2,1],[3,1],[4,1],[23,3],[5,1],[42,0],[18,0],[4,0],[3,0],[-10,1],[-22,1],[-10,1],[5,0],[4,0],[9,0],[39,2],[9,0],[2,-1],[3,0],[2,0],[1,1],[2,1],[4,0],[8,0],[7,1],[4,0]],[[4265,8733],[1,0],[5,0],[1,0],[1,0],[1,0],[2,0],[1,0],[-2,-1],[-7,0],[-5,-1],[-8,-1],[-11,1],[-4,0],[3,1],[1,0],[2,1],[1,0],[1,1],[2,0],[7,0],[5,0],[3,0],[0,-1]],[[4189,8745],[-1,-1],[3,0],[2,-1],[0,-2],[1,0],[1,-1],[1,-1],[0,-1],[-8,-1],[-11,-1],[-47,-1],[-16,-1],[-4,1],[16,1],[-13,0],[-3,-1],[-4,1],[-6,0],[-13,-1],[-6,0],[-5,0],[-4,0],[-6,1],[14,1],[44,1],[53,4],[-4,1],[-4,0],[-5,-1],[-3,0],[2,1],[12,2],[4,-1],[4,1],[4,0],[4,0],[-1,0],[-1,0]],[[4454,8761],[3,0],[1,-1],[-4,-1],[-5,0],[-4,0],[-2,0],[-3,1],[-4,0],[1,0],[4,0],[2,1],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[2,1],[5,0],[2,0],[2,1],[3,-1],[3,0],[1,-1],[2,0]],[[4790,8806],[6,-2],[-1,1],[1,0],[3,0],[9,-2],[3,0],[2,0],[2,-2],[2,0],[0,-1],[-4,0],[-6,0],[-1,0],[1,-1],[-1,0],[-5,0],[-6,1],[-8,1],[-2,0],[1,1],[1,0],[4,1],[0,1],[-2,1],[1,1]],[[4758,8804],[9,-1],[4,-3],[7,-1],[26,0],[6,-2],[-3,0],[-2,-1],[-3,-2],[-6,1],[-18,0],[-3,1],[-4,1],[-9,0],[-15,0],[-12,3],[3,1],[6,0],[13,0],[-8,2],[-25,0],[-9,0],[-2,1],[1,2],[3,1],[3,0],[5,0],[4,0],[9,-1],[20,-2]],[[4787,8807],[-2,-1],[-1,0],[1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-4,1],[-4,0],[-3,1],[-3,1],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-11,0],[-1,1],[3,0],[0,1],[-3,0],[1,0],[3,1],[28,1],[3,0],[-1,-1],[7,0],[3,-1],[-1,-1]],[[4753,8826],[14,-1],[-1,0],[-1,0],[-10,-2],[-9,-1],[-11,-1],[-12,0],[1,1],[1,0],[-2,0],[-3,0],[-2,0],[-3,0],[4,1],[4,1],[3,1],[0,1],[-2,-1],[-18,0],[-15,-1],[-8,-2],[-7,0],[-7,0],[-5,0],[61,7],[3,1],[4,-1],[5,0],[7,-1],[3,0],[3,-1],[1,0],[2,-1]],[[4662,8823],[-19,-1],[1,1],[1,0],[-8,0],[4,1],[3,1],[2,1],[4,1],[4,0],[16,0],[5,1],[12,1],[9,1],[16,1],[0,1],[6,0],[8,0],[5,-1],[-1,0],[-1,0],[-33,-4],[-15,-1],[-14,-2],[-5,-1]],[[4886,8841],[-3,0],[-4,-1],[-9,-1],[-4,0],[-4,-1],[3,0],[3,0],[0,-1],[-3,0],[-4,-1],[-3,0],[-1,0],[0,1],[1,1],[-2,0],[-5,-1],[-5,0],[-6,-1],[-5,0],[-9,1],[2,1],[-1,0],[1,1],[1,0],[2,1],[3,0],[3,1],[3,0],[19,1],[7,0],[4,-1],[3,0],[1,0],[1,0],[1,0],[2,1],[5,0],[3,0],[0,-1]],[[4999,8844],[-8,-2],[6,0],[8,0],[6,-1],[-2,-1],[-7,-1],[-10,-1],[-17,-1],[-6,0],[-9,1],[-5,0],[-5,0],[-12,1],[-5,0],[4,0],[9,0],[4,0],[0,1],[-2,0],[1,1],[4,1],[9,0],[5,1],[-3,0],[-3,0],[-1,0],[-1,1],[1,0],[0,1],[1,1],[4,1],[6,1],[6,1],[6,0],[4,-1],[8,-2],[7,-1],[-3,-1]],[[5031,8871],[11,-3],[1,-1],[0,-2],[1,-1],[2,0],[3,-1],[4,-1],[4,0],[-4,0],[-7,-1],[-4,-1],[-12,0],[-3,-1],[-3,-1],[-3,0],[-4,-1],[-23,0],[-6,0],[-2,0],[2,-2],[1,0],[5,0],[2,-1],[-3,-1],[-3,0],[-6,-1],[-3,-1],[-24,-2],[-6,0],[5,1],[5,2],[6,3],[-3,0],[-2,0],[-3,0],[-2,1],[4,1],[3,1],[3,1],[5,1],[3,0],[3,-1],[3,0],[1,0],[4,1],[2,1],[-7,0],[-1,0],[-1,1],[-2,0],[-1,0],[3,1],[9,1],[13,2],[14,2],[-1,0],[-1,1],[-1,0],[0,1],[-13,-2],[-7,0],[-7,0],[8,1],[-7,0],[6,2],[3,1],[1,1],[-2,0],[-2,0],[-1,1],[5,0],[3,1],[3,1],[6,-1],[4,-2],[2,-1],[3,0],[12,-1],[2,0]],[[4928,8884],[2,0],[4,1],[4,0],[2,-1],[-2,-1],[-3,0],[-6,-1],[3,-1],[1,-1],[-1,0],[-3,-1],[-8,-2],[-2,0],[-2,0],[-1,0],[-1,0],[-2,1],[-3,0],[-2,-1],[-3,0],[-2,1],[5,0],[-5,0],[-16,0],[-5,1],[1,1],[5,2],[6,1],[3,1],[16,1],[8,0],[7,-1]],[[5110,8905],[-14,-2],[-12,0],[-30,-5],[-7,0],[-8,-1],[3,1],[4,0],[2,1],[2,0],[-25,0],[3,1],[11,2],[3,1],[4,2],[3,1],[4,0],[26,3],[6,0],[5,-1],[-7,-2],[-2,-1],[1,0],[5,0],[5,1],[5,0],[5,1],[10,1],[14,1],[13,0],[11,-1],[-3,-1],[-8,0],[-29,-2]],[[5080,8920],[1,-1],[-5,-1],[-10,-1],[18,0],[-4,-1],[-4,0],[0,-1],[9,0],[5,0],[2,0],[-2,-1],[-2,0],[-9,-1],[-3,0],[-3,0],[-10,-2],[-56,-3],[10,2],[3,0],[4,1],[3,0],[3,1],[7,1],[2,0],[-3,1],[-5,-1],[-8,0],[-5,0],[4,0],[7,1],[3,1],[13,0],[4,0],[1,1],[1,0],[1,1],[9,0],[12,2],[-8,1],[-9,0],[-9,0],[-8,-1],[0,1],[22,2],[2,0],[2,0],[2,1],[3,0],[4,0],[4,-1],[1,-1],[1,-1]],[[5127,8929],[1,0],[3,0],[1,0],[2,0],[1,0],[4,0],[2,-1],[1,0],[1,0],[2,-1],[1,-1],[-2,-1],[-3,0],[-2,-1],[-3,0],[-5,-1],[-3,0],[-6,0],[-6,0],[-2,1],[-2,1],[-5,0],[-4,0],[-1,0],[1,0],[2,1],[6,1],[4,0],[9,2],[0,1],[1,0],[2,-1]],[[5161,8939],[-1,-2],[-2,-1],[-2,0],[-3,0],[-2,0],[-2,1],[0,1],[-2,-1],[-1,0],[-2,-1],[1,-1],[3,-1],[1,-1],[-6,0],[-2,1],[-2,0],[-2,0],[-3,0],[-1,1],[-1,0],[-3,0],[-3,0],[2,1],[8,0],[1,1],[-3,1],[-2,1],[-2,0],[-1,1],[3,0],[14,1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[2,1],[1,0],[0,1],[2,0],[5,0],[1,-1],[-3,-1]],[[5462,8989],[-5,-1],[-6,-1],[5,-3],[0,-1],[-4,0],[1,-1],[1,0],[-3,-1],[-4,0],[-4,0],[-2,1],[0,1],[-1,0],[-1,1],[-10,1],[-7,1],[-18,1],[5,1],[4,0],[8,2],[-2,1],[3,0],[15,-2],[5,0],[4,0],[5,1],[6,2],[7,2],[6,-1],[-3,-2],[-5,-2]],[[5499,9012],[3,0],[2,0],[-1,-1],[-5,-1],[-6,0],[-19,-1],[-3,0],[-4,-1],[-4,1],[-3,0],[1,0],[4,1],[-1,0],[1,0],[3,0],[2,0],[2,1],[7,1],[15,1],[4,0],[3,0],[-1,-1]],[[5665,9053],[8,-1],[5,-1],[11,0],[4,0],[1,-1],[4,0],[2,0],[1,0],[4,0],[0,1],[4,0],[2,0],[0,-1],[-3,-1],[-9,0],[-1,0],[-1,0],[-19,-1],[-4,0],[-6,1],[-23,0],[-10,-1],[-2,1],[-2,1],[1,1],[3,1],[-2,1],[2,0],[9,0],[5,-1],[3,0],[2,1],[2,0],[6,1],[3,1],[1,0],[0,-1],[-1,-1]],[[5855,9056],[2,-1],[1,0],[-2,-1],[-9,0],[-10,0],[-13,0],[-14,2],[-5,0],[-6,-2],[-4,0],[-3,0],[-8,0],[-22,0],[-3,0],[-1,0],[-2,1],[-3,0],[3,0],[3,0],[3,1],[3,0],[9,1],[67,0],[7,-1],[7,0]],[[5703,9052],[-20,0],[-3,1],[-1,1],[-2,0],[1,1],[2,0],[1,1],[3,0],[5,1],[3,0],[0,1],[2,0],[2,-1],[4,-1],[4,-2],[3,-1],[-4,-1]],[[5195,9059],[9,0],[-4,-1],[-4,-1],[-5,1],[-4,-1],[-3,0],[0,-1],[2,0],[4,-1],[2,1],[4,1],[2,0],[2,-2],[2,-1],[1,-2],[0,-1],[-2,0],[-4,-1],[-12,0],[-3,0],[-11,2],[-4,1],[2,-2],[-4,0],[-2,0],[0,-1],[3,0],[4,0],[8,0],[4,-1],[1,0],[-1,-1],[-2,-1],[-4,0],[0,-1],[-1,0],[-5,-1],[-22,-1],[-3,-1],[-3,-1],[-7,-1],[-13,0],[2,1],[9,1],[3,1],[1,0],[-1,1],[-1,1],[2,1],[2,0],[5,2],[2,1],[1,1],[2,1],[1,0],[4,0],[1,0],[1,1],[0,1],[11,3],[3,1],[5,1],[8,1],[4,0],[3,1],[-2,0],[-2,1],[-1,0],[0,1],[6,-1],[18,-1],[-3,0],[-3,-1],[-2,-1],[-3,0],[-3,0]],[[5265,9059],[-4,0],[0,-1],[-2,-2],[-1,0],[-2,0],[-6,1],[-3,0],[-12,-2],[-7,-1],[-3,1],[0,1],[-1,1],[-1,1],[-5,-1],[-1,0],[0,-1],[-2,-1],[-2,0],[-2,1],[0,1],[0,1],[1,0],[2,1],[14,3],[5,0],[4,-1],[5,-1],[3,-1],[4,0],[2,2],[-4,1],[-6,2],[-3,0],[3,2],[9,0],[16,0],[2,-1],[4,-1],[3,0],[-6,-3],[-4,-2]],[[5616,9073],[-6,-2],[-7,1],[-7,0],[-4,1],[5,2],[16,2],[13,0],[3,-2],[-13,-2]],[[5462,9078],[7,-2],[-6,-2],[-10,-1],[-9,1],[-4,1],[-2,1],[2,1],[-9,0],[-11,0],[-4,1],[9,0],[-3,1],[11,1],[7,0],[6,-1],[7,-1],[9,0]],[[5398,9075],[7,-1],[8,0],[13,2],[9,-1],[8,-1],[-11,-4],[-11,0],[-3,-1],[-2,-1],[-2,0],[-20,0],[-3,0],[-3,-1],[-3,0],[-2,1],[-3,0],[-3,0],[-1,0],[-2,-1],[-2,0],[-3,0],[-16,0],[3,-1],[9,-1],[4,0],[1,-1],[-2,-1],[-3,0],[-12,-1],[-3,1],[-1,0],[-2,1],[-1,0],[-5,0],[-2,-1],[-1,0],[-3,-1],[2,-1],[1,0],[2,0],[-4,-1],[-4,0],[-4,0],[-5,0],[1,1],[-1,0],[-3,0],[-2,0],[0,2],[-7,1],[-8,0],[-4,-2],[1,0],[1,-1],[2,0],[1,0],[-1,-1],[-2,0],[-1,0],[-2,-1],[-3,-1],[-3,0],[-13,2],[7,3],[24,4],[-6,0],[-13,-2],[-7,0],[3,0],[2,0],[2,1],[1,1],[-2,0],[-2,0],[-4,0],[12,1],[-3,0],[-9,1],[9,1],[13,1],[10,1],[-4,0],[-4,0],[-4,0],[-15,1],[32,4],[7,-1],[3,0],[2,0],[3,-1],[3,0],[5,0],[4,1],[4,-1],[5,0],[2,0],[2,0],[3,1],[2,0],[4,1],[7,2],[10,1],[15,0],[6,-3],[-10,-2]],[[5676,9087],[-28,-5],[-5,-1],[1,1],[0,1],[-1,0],[-2,0],[-1,-1],[-13,-1],[4,-1],[4,0],[-10,-1],[-40,-5],[-7,0],[-4,0],[1,1],[4,2],[8,1],[-4,0],[-2,1],[-2,0],[-1,1],[-4,0],[-2,-1],[-4,-1],[2,-1],[-2,-1],[-4,-1],[-6,0],[-2,0],[-3,0],[-1,-1],[1,0],[10,-1],[-3,0],[-10,-2],[-10,0],[-4,0],[-8,-1],[-5,-1],[-19,0],[-3,0],[-3,-1],[-2,0],[-4,0],[-7,1],[-4,0],[1,-1],[1,0],[-4,-1],[-8,0],[-7,0],[-8,-1],[-4,0],[3,1],[1,1],[1,0],[-1,0],[-2,1],[-1,0],[-1,1],[9,1],[19,1],[9,1],[-12,-1],[-7,0],[-5,1],[4,1],[5,0],[9,0],[-5,1],[-3,1],[2,2],[6,1],[7,-1],[8,-2],[7,0],[-2,1],[1,0],[3,0],[2,1],[1,0],[2,0],[5,-1],[5,0],[0,1],[-3,1],[-4,1],[-2,0],[-3,0],[-2,0],[1,1],[-10,1],[-3,0],[25,1],[6,0],[11,-1],[6,0],[-2,1],[-7,1],[-2,1],[26,1],[4,0],[0,-1],[2,-1],[4,-1],[3,0],[0,1],[-1,1],[2,1],[3,1],[4,0],[4,0],[8,-1],[5,0],[1,-1],[1,-1],[-1,0],[-16,-3],[7,0],[14,1],[7,1],[2,0],[1,3],[3,1],[8,0],[18,-1],[13,2],[9,0],[16,0],[-4,-1]],[[5969,9087],[2,-1],[-4,-1],[-39,0],[-12,-1],[-9,-1],[-4,0],[-2,0],[-5,1],[5,1],[13,1],[-3,0],[-3,0],[-7,1],[5,2],[7,3],[6,1],[7,1],[28,1],[4,-1],[7,0],[3,-1],[2,0],[1,0],[1,-1],[1,-1],[2,0],[5,-1],[3,-1],[-6,0],[-12,0],[-4,-1],[3,-1],[5,0]],[[5584,9091],[-10,0],[-3,2],[-11,1],[-7,1],[-6,1],[4,1],[12,1],[10,-1],[17,0],[19,0],[15,-1],[16,0],[0,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-9,-1],[-31,0]],[[6132,9111],[-62,-3],[-5,1],[1,1],[2,0],[1,1],[1,0],[1,1],[8,1],[8,1],[15,3],[6,1],[3,0],[2,0],[1,-1],[6,-2],[5,0],[13,-2],[4,-1],[-10,-1]],[[6160,9118],[7,0],[7,0],[-4,1],[-11,1],[-3,1],[0,1],[4,1],[22,0],[11,-1],[9,-1],[9,-2],[-22,-2],[-11,-3],[-9,-1],[-9,0],[-7,1],[-4,1],[-1,2],[-3,2],[-12,1],[-5,1],[-1,1],[5,1],[6,-1],[10,-2],[6,-1],[6,-1]],[[5630,9120],[-13,-1],[-2,0],[-8,1],[-4,0],[0,1],[3,1],[-1,1],[2,0],[3,0],[6,1],[14,-1],[6,0],[3,-2],[-2,-1],[-7,0]],[[5852,9126],[1,-1],[-2,-1],[-1,-1],[1,-1],[3,-1],[2,-1],[-2,-1],[-9,-4],[-1,-1],[0,-1],[-2,0],[-4,-1],[-2,-1],[-3,0],[-15,-2],[10,0],[12,1],[10,1],[9,2],[4,0],[5,0],[3,-2],[-1,-1],[-3,-1],[-4,-2],[-3,-1],[-2,-1],[-2,0],[-2,0],[-2,0],[-3,-1],[-4,-1],[-1,0],[-6,0],[-13,-1],[-4,0],[-2,-2],[1,-1],[2,0],[1,-1],[-1,-2],[-3,0],[-3,-1],[-3,-1],[10,1],[5,1],[3,1],[0,1],[0,1],[0,1],[5,1],[5,1],[17,1],[11,1],[6,1],[5,0],[4,-3],[4,-1],[5,1],[2,1],[-2,2],[-6,1],[-1,0],[-3,1],[-1,0],[2,1],[6,1],[2,0],[7,1],[25,-1],[-3,2],[-5,1],[-13,1],[-4,0],[-3,1],[-1,1],[1,1],[3,1],[20,1],[3,0],[4,0],[7,-1],[3,0],[4,0],[3,0],[0,1],[-8,1],[-3,1],[-1,1],[2,1],[14,-3],[18,-1],[9,0],[2,0],[1,-1],[0,-1],[3,-1],[18,1],[6,0],[-4,-1],[-8,-1],[-3,-1],[4,0],[5,0],[4,0],[2,-1],[-7,-1],[0,-1],[2,0],[-2,-2],[12,-1],[-3,-1],[-7,-1],[6,-1],[-1,-1],[-3,-1],[-5,-1],[-2,-1],[-3,0],[-2,0],[-1,-1],[1,-1],[1,0],[1,-1],[1,0],[-2,-1],[-4,-1],[-5,0],[-9,1],[-17,0],[-29,-1],[-16,-1],[-3,-1],[-3,1],[-3,0],[-2,1],[-3,-1],[-3,-1],[-3,-2],[-4,-2],[-9,-1],[-4,-1],[-7,-3],[-6,-1],[-9,-1],[-6,0],[0,1],[-1,1],[0,1],[2,1],[1,2],[-1,1],[-1,0],[-1,1],[0,1],[-3,0],[0,-1],[1,-1],[0,-1],[-2,-1],[-1,0],[-7,-1],[-2,0],[-4,1],[-3,0],[-2,0],[1,-1],[7,-1],[2,-1],[-6,0],[-2,1],[-2,0],[-3,1],[-3,0],[-2,-1],[-2,-1],[-3,0],[1,0],[0,-1],[1,-1],[-8,0],[-4,0],[-4,0],[2,0],[3,-1],[3,0],[3,0],[-3,-1],[-12,-2],[-1,-1],[-3,0],[-6,0],[-4,0],[2,1],[1,0],[-5,0],[-7,1],[-4,1],[-35,-1],[-9,0],[-4,2],[5,0],[4,0],[7,2],[4,1],[16,1],[8,1],[14,3],[10,1],[-7,1],[-1,0],[-1,1],[-2,0],[-3,1],[-2,-1],[2,-1],[0,-1],[-2,-1],[-24,-3],[-7,-1],[-1,0],[-5,1],[-2,0],[-1,-1],[-2,0],[-11,-1],[-9,-2],[-16,0],[-6,-1],[7,0],[3,0],[1,-1],[-3,0],[-17,-2],[-3,0],[-4,-2],[-7,-1],[-11,-1],[-9,0],[-3,1],[1,0],[1,0],[2,0],[1,1],[-3,1],[3,1],[6,1],[5,0],[3,1],[8,3],[5,1],[16,3],[7,1],[7,1],[4,0],[20,0],[-6,0],[-16,0],[-5,1],[2,1],[7,0],[14,0],[-13,0],[-2,1],[0,1],[-1,0],[-21,0],[4,2],[5,1],[5,1],[7,0],[10,-1],[3,0],[-4,2],[20,0],[3,0],[6,-2],[5,0],[-3,1],[-12,3],[4,0],[7,-1],[4,0],[-2,1],[-1,0],[0,1],[25,0],[2,0],[3,-1],[1,0],[4,0],[3,0],[3,0],[3,0],[-3,0],[-3,1],[-2,0],[-3,1],[-4,0],[-12,0],[-4,0],[-4,1],[-5,1],[-4,1],[0,2],[1,1],[1,1],[28,0],[3,0],[3,0],[2,0],[3,0],[6,-1],[5,0],[12,-1],[-7,0],[-1,1],[-1,0],[-2,1],[-7,1],[-32,0],[-6,0],[-4,1],[-1,1],[1,2],[-1,1],[2,0],[6,-1],[2,0],[3,0],[1,1],[1,0],[3,1],[6,0],[13,-1],[6,1],[-4,0],[-7,0],[-6,1],[-4,1],[1,1],[6,1],[11,0],[-1,1],[-1,0],[-2,1],[-3,0],[3,1],[5,2],[4,0],[7,1],[24,-1],[18,2],[7,-1],[5,0]],[[5971,9127],[12,-1],[12,0],[11,0],[4,0],[4,-1],[1,-1],[-5,-1],[1,-2],[-5,-1],[-21,0],[-10,1],[-9,0],[-12,3],[-14,1],[-5,1],[10,2],[13,0],[13,-1]],[[5685,9124],[0,-1],[3,0],[3,0],[5,-1],[-7,0],[-3,-1],[-3,-1],[7,0],[13,3],[6,-1],[-3,-3],[-2,-1],[-8,-2],[15,1],[4,1],[1,0],[2,0],[1,0],[1,0],[1,-1],[9,1],[-3,-1],[-2,-2],[-3,-1],[-5,0],[-7,0],[-4,0],[-2,0],[1,-1],[6,-1],[-5,-1],[-2,0],[9,-1],[11,0],[8,-1],[1,-3],[-5,-2],[-9,-1],[-64,-5],[-45,0],[-7,1],[2,0],[2,0],[1,1],[-13,0],[0,1],[2,1],[4,0],[10,1],[17,1],[6,0],[14,0],[2,0],[2,1],[1,0],[2,1],[6,0],[12,0],[6,1],[-3,1],[-2,0],[0,1],[1,2],[-29,1],[-8,-1],[5,0],[13,-1],[-4,-1],[-8,-2],[-7,0],[-7,0],[1,1],[-1,1],[-2,-1],[-6,-2],[-5,-1],[-5,0],[-4,1],[-8,-1],[-5,0],[3,1],[0,1],[-1,1],[-3,-1],[-2,0],[-2,-2],[-3,0],[-5,-1],[-7,1],[-6,1],[-4,1],[-1,-1],[-3,-1],[-7,-2],[-2,0],[0,-2],[-2,0],[-13,0],[-4,0],[-5,-1],[-7,0],[-13,0],[-4,1],[-1,1],[1,1],[3,1],[-3,1],[-1,-1],[-2,0],[-2,0],[-2,0],[-2,0],[-2,2],[2,0],[3,1],[7,0],[1,1],[9,0],[18,1],[0,1],[-6,0],[-18,1],[4,1],[7,2],[9,0],[5,0],[1,0],[1,-2],[1,-1],[3,-1],[3,-1],[5,0],[4,0],[-2,1],[-2,0],[-2,0],[-2,0],[2,2],[2,0],[4,1],[5,0],[-7,1],[-2,0],[2,2],[3,0],[5,0],[5,0],[3,0],[-1,-1],[3,0],[-3,-3],[2,-1],[7,0],[19,2],[10,1],[10,-1],[-3,0],[0,-1],[2,-1],[3,0],[3,0],[5,1],[4,1],[-1,0],[0,1],[1,1],[2,0],[-11,2],[8,1],[3,1],[5,-2],[4,0],[0,-1],[0,-1],[2,-1],[1,-1],[3,1],[2,1],[-1,1],[7,2],[8,-1],[9,-1],[8,-1],[-3,2],[-6,1],[-7,1],[-5,1],[2,1],[-3,1],[-9,2],[-2,1],[-2,1],[0,1],[18,3],[4,0],[5,0],[3,0],[4,-1],[3,-1],[1,-1],[-5,-1],[10,-2],[3,0],[-2,0],[-1,0]],[[6201,9128],[-5,0],[-6,0],[-2,1],[1,0],[1,1],[-1,1],[1,0],[3,1],[5,1],[8,2],[7,0],[23,1],[2,0],[3,-1],[-1,0],[-3,0],[-2,-1],[1,0],[-1,-1],[-1,0],[-4,-1],[-5,0],[-6,-1],[-4,0],[-4,-1],[-5,-2],[-5,0]],[[5831,9130],[-13,-1],[-30,-1],[-9,0],[-7,2],[-4,0],[-4,-1],[4,0],[3,-1],[2,-1],[0,-1],[-1,-1],[-8,-3],[-7,-1],[-9,-1],[-7,0],[-3,2],[2,1],[0,1],[0,1],[-1,1],[2,1],[5,2],[1,1],[14,3],[6,2],[6,2],[10,1],[11,1],[23,1],[8,1],[12,4],[7,1],[-1,0],[-1,1],[4,1],[8,0],[4,0],[10,2],[30,2],[7,0],[4,-2],[-1,-1],[-3,-2],[-5,-1],[-3,-2],[-2,-3],[-3,-1],[-4,-1],[-11,0],[-10,-2],[-3,0],[-3,-1],[-3,0],[-4,-2],[-1,0],[-4,0],[-4,-1],[-1,0],[0,-1],[-3,-1],[-3,0],[-7,-1]],[[6280,9170],[4,-1],[4,0],[7,2],[4,1],[4,1],[6,-1],[3,-1],[4,-3],[-2,0],[-5,-1],[-2,-1],[-2,0],[-1,-1],[0,-1],[-4,-1],[2,-1],[3,0],[3,0],[4,2],[2,1],[2,1],[6,0],[4,1],[2,0],[7,0],[18,-2],[-2,0],[-5,-1],[-9,0],[3,-1],[-2,-1],[-10,-2],[9,-1],[5,0],[3,1],[-1,1],[3,0],[6,0],[5,0],[2,-1],[0,-3],[2,0],[3,0],[-1,-1],[-1,-1],[-2,0],[-3,0],[-13,0],[-14,-1],[-8,-1],[-4,-1],[4,0],[0,-1],[0,-1],[1,0],[2,-1],[6,0],[2,-1],[-4,-1],[-6,0],[-11,0],[8,-1],[5,0],[2,-1],[2,-1],[4,0],[5,0],[5,0],[-5,-1],[-7,-1],[-32,-1],[-27,1],[-22,-2],[-22,0],[-7,0],[1,1],[2,1],[7,2],[-8,0],[-6,0],[-6,-1],[-6,-1],[-10,-2],[-34,-3],[-10,-2],[-7,-3],[3,0],[6,0],[4,0],[-7,-1],[-13,-1],[-13,-1],[-8,1],[1,1],[3,1],[5,0],[4,0],[-2,0],[-1,0],[2,1],[3,1],[4,0],[4,0],[-7,1],[-67,-2],[-3,1],[-7,0],[-1,1],[3,2],[7,1],[13,-2],[5,0],[-1,2],[23,1],[10,-1],[6,1],[3,1],[-1,0],[-1,0],[-1,0],[0,1],[20,1],[7,2],[-21,-2],[-8,0],[-17,1],[-18,0],[0,1],[2,0],[1,0],[1,0],[1,1],[-5,0],[-2,0],[-3,0],[16,1],[33,0],[14,2],[-5,-1],[-2,0],[-2,0],[0,1],[1,0],[-1,1],[-2,1],[-3,0],[-1,-1],[-3,0],[-7,0],[-14,0],[0,1],[2,0],[2,0],[2,1],[-19,-1],[-4,1],[-2,1],[4,0],[50,0],[-1,0],[-5,1],[3,0],[-9,0],[-5,0],[-4,1],[4,1],[4,0],[9,0],[-7,0],[-6,1],[-20,-1],[-22,0],[0,1],[4,0],[3,0],[6,1],[-1,0],[-1,1],[3,0],[3,0],[7,0],[3,-1],[1,0],[2,0],[2,1],[2,0],[4,0],[5,0],[4,-1],[4,0],[7,1],[4,0],[31,0],[22,-2],[7,0],[-2,1],[-5,0],[-9,1],[-8,1],[-3,0],[38,0],[12,1],[-40,1],[-20,1],[-13,4],[9,0],[5,-1],[4,-1],[4,-1],[5,0],[4,0],[-2,1],[-1,0],[16,0],[4,0],[-5,1],[-10,2],[-5,0],[3,1],[6,0],[7,0],[7,-1],[4,0],[7,0],[3,0],[3,-1],[3,-1],[5,0],[5,0],[12,-2],[4,0],[11,0],[-7,1],[-3,0],[-3,1],[-2,0],[-3,2],[-1,0],[-17,2],[-4,1],[-2,0],[-2,1],[2,1],[1,0],[0,1],[-1,0],[11,0],[9,-2],[15,-4],[3,0],[6,-1],[6,0],[3,1],[-1,1],[-5,0],[-1,1],[-1,2],[-1,1],[-1,0],[0,1],[2,0],[3,0],[3,0],[3,0],[2,-1],[7,-2]],[[6538,9194],[4,-1],[-2,-1],[-1,0],[-2,-1],[5,0],[10,0],[20,-1],[3,0],[5,-1],[6,-1],[4,-1],[-1,-2],[-6,-1],[-15,-1],[-13,-3],[-8,0],[-9,0],[-9,-1],[-2,0],[-2,-1],[-3,-1],[-1,0],[2,-1],[4,-1],[4,0],[4,0],[2,-2],[-3,-1],[-13,-1],[-8,0],[-25,0],[-3,0],[-8,-1],[-4,0],[-18,0],[-52,-2],[-16,0],[-6,1],[-10,2],[-5,0],[-13,0],[-7,0],[-6,2],[3,0],[5,1],[2,1],[-2,1],[3,-1],[2,0],[5,0],[2,0],[3,0],[5,1],[5,0],[24,-1],[6,0],[1,-1],[4,0],[-1,-1],[-1,0],[3,0],[2,0],[4,1],[2,0],[5,0],[2,1],[3,0],[5,1],[3,0],[-18,0],[-4,0],[-3,0],[-25,5],[7,1],[24,-1],[-2,0],[10,0],[29,0],[31,-1],[5,1],[-9,0],[-48,1],[-8,1],[-2,1],[-4,1],[2,1],[5,1],[6,1],[3,0],[2,-1],[4,-1],[4,0],[7,0],[3,0],[1,0],[-1,-1],[0,-1],[5,0],[3,0],[1,1],[3,1],[6,2],[6,0],[16,0],[-3,-3],[6,-4],[10,-1],[13,0],[-5,0],[-1,1],[1,1],[3,2],[8,3],[-3,1],[-20,3],[-4,0],[-2,1],[3,2],[9,0],[11,-1],[8,0],[-3,1],[4,0],[5,0],[4,0]],[[6964,9188],[-13,-1],[-12,1],[-5,1],[-2,0],[-1,2],[2,1],[5,1],[1,1],[1,1],[1,0],[3,0],[5,1],[27,0],[2,0],[0,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[2,-2],[4,-1],[-4,-2],[-10,-1]],[[9153,9191],[0,-1],[18,0],[2,0],[-5,-1],[-7,0],[-19,-1],[-11,-1],[-6,-1],[-4,1],[-5,0],[-4,1],[-4,-1],[4,-1],[-3,0],[-9,-1],[-19,0],[5,2],[15,2],[7,2],[-5,2],[2,2],[6,1],[8,0],[22,-1],[5,0],[1,-1],[0,-1],[1,0],[1,0],[5,-1],[0,-1],[-1,0]],[[7209,9198],[-3,-1],[-3,1],[-1,0],[-2,0],[-1,1],[4,0],[4,0],[4,0],[4,0],[-1,-1],[-3,0],[-2,0]],[[6734,9192],[-46,-1],[-11,0],[2,1],[16,3],[5,2],[3,0],[11,1],[23,2],[8,1],[6,1],[5,1],[6,0],[4,0],[4,-1],[6,-1],[-5,-2],[-10,-2],[-8,-2],[-9,-2],[-10,-1]],[[6808,9204],[-11,-1],[-7,1],[-2,0],[-2,0],[4,0],[7,1],[7,-1],[4,0]],[[7028,9203],[5,0],[33,0],[-27,-2],[-2,-1],[-8,-1],[-11,-1],[-12,0],[-9,1],[-6,2],[-4,1],[0,1],[5,1],[5,1],[5,1],[8,0],[6,-1],[12,-2]],[[7048,9205],[-15,-1],[2,1],[6,1],[7,1],[5,0],[1,-1],[-6,-1]],[[6628,9208],[2,-1],[5,1],[5,0],[5,1],[6,-1],[-4,0],[-3,-2],[0,-1],[11,-1],[12,-2],[7,0],[-1,2],[5,1],[7,1],[16,1],[5,0],[4,-1],[2,-1],[-1,-1],[-2,0],[0,-1],[2,-1],[3,1],[3,0],[3,1],[4,0],[4,0],[4,0],[3,-1],[0,-1],[-8,-2],[-25,-1],[-2,0],[-2,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-4,-1],[-1,0],[-3,-1],[-9,-1],[-3,-1],[-1,0],[-1,-1],[-2,0],[-7,-1],[-10,-1],[-49,-2],[-8,1],[-8,2],[-2,1],[-47,5],[-19,0],[-7,2],[-1,1],[9,0],[23,-1],[4,1],[7,1],[5,0],[-14,1],[-7,0],[-3,2],[3,1],[7,0],[14,1],[12,-1],[3,1],[4,0],[3,0],[3,0],[2,0],[1,-1],[1,0],[4,0],[10,1],[-4,1],[-4,0],[-4,1],[-1,1],[5,0],[4,0],[4,0],[21,2],[4,0],[0,-1],[0,-1]],[[6528,9208],[2,-1],[3,0],[2,1],[15,3],[4,-1],[3,0],[11,-1],[2,-1],[-4,-1],[-5,0],[-7,-1],[-17,0],[-17,-2],[-8,-1],[-2,-1],[-2,0],[-1,0],[-1,0],[-4,0],[-4,1],[0,1],[4,0],[1,1],[-6,0],[-1,0],[-1,1],[4,1],[7,1],[2,1],[-1,0],[1,1],[-2,0],[0,1],[4,0],[8,0],[6,-1],[4,-1],[0,-1]],[[7018,9209],[-7,-1],[-9,0],[-4,1],[-2,1],[-1,1],[3,2],[6,1],[6,-1],[13,-2],[0,-1],[-5,-1]],[[6704,9210],[-3,0],[-11,0],[-17,0],[-14,1],[-3,0],[-2,1],[1,1],[6,1],[10,1],[9,-1],[24,-2],[5,-1],[-1,-1],[-4,0]],[[6989,9211],[1,0],[4,-1],[1,-2],[-2,-1],[-4,0],[-5,0],[-5,0],[-5,1],[-4,0],[-3,0],[-3,-1],[-3,-1],[-3,0],[-5,0],[-3,0],[-3,0],[1,1],[1,0],[1,2],[0,1],[-2,1],[-4,0],[-3,-1],[-1,0],[1,-2],[-11,0],[1,-1],[-3,0],[-9,0],[-4,0],[-5,1],[-4,0],[-3,1],[-2,1],[-1,0],[1,1],[0,1],[2,2],[3,1],[6,1],[5,1],[15,1],[5,0],[0,1],[1,1],[2,0],[7,0],[34,0],[10,0],[7,-1],[4,-1],[0,-1],[-4,-2],[-4,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1]],[[6623,9221],[2,0],[4,-1],[0,-1],[0,-1],[3,0],[1,-1],[1,-1],[-5,-2],[-1,0],[0,-1],[1,0],[-1,0],[-12,-2],[-8,0],[-9,0],[-16,2],[-5,0],[-4,1],[2,0],[10,1],[4,0],[3,0],[3,-1],[2,0],[0,2],[4,1],[5,0],[1,1],[-5,0],[-1,1],[-1,0],[-3,1],[-2,0],[1,0],[3,1],[7,-1],[2,0],[2,0],[1,0],[0,1],[1,0],[2,1],[2,0],[2,-1],[1,0],[1,1],[2,-1]],[[6739,9221],[4,-1],[4,0],[4,-1],[4,0],[5,-1],[3,-1],[3,-2],[7,1],[2,0],[3,2],[1,1],[5,-1],[11,-1],[-2,-1],[2,-1],[4,-1],[6,0],[30,-2],[10,0],[0,-1],[-23,-1],[-7,0],[3,-1],[-2,-1],[-3,0],[-9,-1],[-37,0],[-10,1],[-6,1],[-1,1],[1,2],[-1,1],[-1,0],[-2,0],[-2,1],[-6,2],[-2,1],[-4,0],[-2,1],[-8,1],[-17,1],[-5,1],[3,1],[3,0],[7,-1],[0,1],[-1,1],[6,0],[15,1],[3,0],[1,-1],[0,-1],[1,-1]],[[7214,9222],[-4,0],[-3,0],[-3,1],[-3,1],[1,1],[2,2],[0,2],[-1,1],[1,0],[1,0],[1,0],[2,1],[2,0],[4,0],[2,0],[12,-2],[2,-1],[-1,-1],[-7,-3],[-4,-1],[-4,-1]],[[7439,9231],[0,-1],[1,-1],[4,-1],[4,0],[1,2],[-1,1],[6,1],[5,-1],[5,-1],[1,-2],[5,-1],[31,0],[-3,0],[-2,-1],[-2,0],[-1,-1],[4,0],[6,0],[5,-1],[5,-1],[2,-1],[0,-1],[-4,0],[-63,1],[-67,2],[-15,3],[-2,0],[1,1],[5,1],[5,0],[5,0],[3,-1],[4,0],[8,-1],[-7,1],[-1,1],[-1,1],[2,1],[2,0],[11,-1],[10,1],[6,-1],[2,1],[3,0],[3,0],[2,-1],[1,0],[1,1],[2,1],[4,0],[3,0],[1,-1]],[[7628,9248],[4,0],[9,0],[4,0],[-3,0],[2,-1],[7,-2],[-1,0],[-2,-1],[-1,-1],[-1,-1],[3,-1],[5,0],[5,-1],[5,0],[-1,0],[-4,-1],[-1,0],[1,-1],[5,0],[2,-1],[-7,-2],[-10,-2],[-43,-4],[-21,-1],[-6,-1],[5,0],[6,0],[6,0],[4,-1],[-39,-2],[-14,-1],[-12,1],[-5,1],[1,2],[6,2],[3,1],[2,1],[1,1],[-1,1],[-14,-4],[-8,-1],[-7,1],[-3,0],[-4,0],[-4,0],[-3,0],[-3,1],[-15,2],[-4,1],[6,0],[14,0],[5,1],[-10,1],[-3,0],[-3,1],[1,0],[6,0],[3,1],[2,0],[2,0],[1,0],[1,0],[0,1],[2,0],[5,0],[1,0],[2,0],[2,1],[1,0],[25,2],[4,0],[2,-1],[5,0],[7,1],[5,0],[-5,1],[-5,0],[-1,1],[5,0],[4,0],[6,0],[5,-1],[2,-1],[-1,-1],[-1,-1],[0,-1],[4,0],[3,0],[4,3],[4,1],[-5,0],[-2,1],[3,0],[6,0],[4,0],[8,-1],[5,0],[-3,1],[-2,0],[6,1],[22,-1],[8,0],[-6,1],[-6,1],[-12,1],[1,0],[2,1],[2,1],[-14,0],[-2,0],[17,1],[5,0],[4,-1]],[[7702,9255],[3,0],[3,0],[3,0],[3,0],[22,0],[3,0],[13,-1],[3,-1],[2,0],[2,-1],[1,0],[0,-2],[4,0],[11,-1],[-7,-3],[-21,-1],[-19,-4],[-14,0],[-15,0],[-13,0],[-3,1],[-6,2],[-3,1],[-1,0],[0,1],[0,1],[-2,0],[-10,0],[5,1],[4,1],[0,1],[-6,1],[5,0],[2,0],[1,1],[-11,1],[-2,1],[1,1],[3,0],[6,1],[5,2],[3,0],[24,0],[6,0],[-2,-1],[-1,0],[2,-1],[3,0],[-2,0],[-1,-1],[-1,0],[-3,0]],[[7603,9265],[9,-1],[2,0],[1,-1],[2,-1],[3,0],[4,0],[-6,-1],[-11,0],[-6,0],[4,-1],[4,0],[9,0],[-3,-1],[-5,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-4,0],[-9,0],[-3,0],[-2,0],[0,-2],[-2,-1],[-1,0],[-2,0],[-2,0],[-3,0],[-8,-1],[4,-1],[1,0],[-21,1],[-3,0],[-2,0],[-1,-1],[-2,-1],[-1,0],[-2,0],[2,-1],[3,0],[6,0],[-3,0],[-4,-2],[-2,0],[-5,0],[-10,0],[-4,0],[12,-1],[-5,-2],[-8,0],[-9,1],[-8,0],[5,0],[1,-1],[-3,-1],[-5,-1],[-5,1],[-11,0],[-6,0],[13,-1],[-3,-1],[-2,0],[-3,0],[-3,-1],[-4,1],[-7,0],[-2,0],[-3,0],[-5,-1],[-3,-1],[-3,1],[-2,0],[0,1],[3,0],[-21,1],[-11,0],[-2,-1],[-2,0],[2,-1],[-3,-1],[-3,0],[-1,1],[-2,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-2,0],[-11,2],[-7,0],[-3,-2],[-2,-1],[-4,0],[-5,1],[-1,0],[-4,1],[-2,0],[-6,-1],[-7,0],[-8,0],[-4,1],[5,1],[-6,1],[-4,-1],[-6,-3],[-5,-1],[-9,0],[-7,0],[-3,0],[2,2],[3,0],[5,2],[4,1],[10,1],[5,1],[-2,0],[-5,0],[18,2],[5,1],[-55,0],[-2,-1],[-3,0],[-2,-1],[-7,1],[-6,0],[3,1],[7,1],[4,1],[-15,0],[-7,0],[-7,1],[9,1],[13,-1],[36,-2],[6,0],[5,1],[1,1],[1,0],[-2,1],[-3,1],[8,0],[13,-1],[22,-3],[0,1],[-3,1],[-4,1],[-3,2],[3,1],[5,0],[2,0],[1,0],[3,-1],[4,-1],[5,0],[5,0],[4,0],[-3,1],[1,1],[4,1],[5,0],[7,-1],[19,-1],[1,-1],[-3,-1],[-9,-1],[-2,0],[3,-1],[5,0],[5,0],[5,1],[4,1],[3,-1],[1,-1],[1,-1],[1,-1],[2,-1],[2,1],[1,1],[0,1],[3,1],[6,0],[12,0],[-4,1],[-6,1],[2,1],[-3,1],[-6,0],[-5,2],[-2,0],[-1,1],[1,0],[7,0],[12,1],[-2,-1],[-1,0],[4,0],[10,0],[4,-1],[-3,0],[0,-1],[4,0],[8,0],[4,0],[2,0],[-3,-1],[-6,-1],[6,-1],[6,-1],[5,0],[6,0],[-4,1],[5,1],[5,0],[3,1],[-1,1],[5,0],[11,-1],[6,0],[-2,0],[-3,1],[-1,1],[1,0],[15,0],[4,0],[-2,0],[-2,1],[-4,0],[-3,0],[-1,0],[0,1],[-14,0],[-4,1],[-5,1],[4,1],[12,0],[-2,0],[-2,0],[-2,0],[-2,1],[6,0],[11,-2],[6,0],[4,0],[2,1],[-2,1],[-4,0],[0,1],[6,-1],[13,-2],[6,-1],[4,0],[10,0],[2,1],[0,1],[-4,1],[0,1],[0,1],[-2,1],[3,1],[4,0],[3,0],[4,-1],[3,-1],[2,0]],[[7762,9277],[8,0],[18,0],[9,-1],[-8,0],[-19,0],[-8,-1],[1,0],[1,0],[1,-1],[-3,0],[32,0],[8,-1],[-8,0],[-3,-1],[-3,0],[-4,0],[2,0],[-4,-1],[-4,0],[-4,1],[-4,0],[-3,-1],[-1,0],[-3,-1],[-8,0],[-5,0],[-4,1],[-2,1],[-3,0],[-18,1],[8,1],[16,0],[7,1],[-8,0],[-15,0],[-8,0],[-5,1],[2,1],[13,0],[-3,0],[-1,1],[-2,0],[8,1],[30,-1],[-2,0],[-1,-1]],[[7927,9284],[2,-1],[4,1],[3,0],[4,0],[-4,-1],[-1,0],[3,-1],[-2,0],[-7,0],[-3,-1],[3,0],[0,-1],[-4,-1],[-4,-1],[-8,1],[-4,0],[-4,0],[-4,1],[-8,0],[-5,1],[1,1],[7,1],[6,0],[5,0],[3,-1],[-1,0],[4,0],[3,0],[1,0],[-1,1],[-6,1],[1,1],[8,0],[4,-1],[1,0],[1,0],[2,0]],[[6955,9131],[-61,0],[-61,-1],[56,-8],[2,-1],[2,-7],[-1,-1],[-4,-2],[-23,-7],[-20,-4],[-45,-5],[67,-5],[-55,-8],[-10,-1],[-9,0],[-105,5],[-104,6],[-79,-1],[-13,1],[-38,4],[-11,1],[-57,-2],[-4,-1],[-3,0],[-1,-1],[-5,-7],[0,-2],[13,-15],[-6,-2],[-43,-11],[-7,-2],[-7,-1],[-6,0],[-67,5],[-67,5],[-5,-1],[-19,-4],[-96,-10],[-6,-1],[-5,-1],[-36,-17],[-5,-2],[-24,-5],[-13,-2],[-14,-1],[-40,-1],[-4,0],[-13,-6],[73,-16],[2,-2],[-7,-9],[-4,-1],[-7,-1],[-14,-1],[-43,-6],[-20,-3],[-87,-22],[-56,-8],[0,-2],[11,-8],[2,-1],[1,-2],[1,-2],[-2,-1],[-101,-9],[-60,-1],[-60,-1],[25,-21],[1,-3],[-3,-1],[-16,-5],[-2,-1],[-12,-18],[1,-3],[1,-4],[-1,-4],[-7,-2],[-19,-2],[-5,-1],[-3,-2],[-7,-7],[-1,-1],[-5,-2],[-33,-7],[-62,-15],[-61,-15],[69,-7],[10,0],[18,-1],[9,-1],[4,-1],[11,-18],[0,-1],[-3,-1],[-39,-12],[-4,0],[-6,0],[-83,3],[-82,3],[-59,-3],[-53,-5],[-17,-2],[-47,-11],[-44,-11],[-29,-5],[12,-7],[0,-2],[-4,-1],[-49,-13],[15,-6],[38,-15],[-27,-6],[-3,-1],[1,-1],[14,-12],[-1,-1],[-3,-2],[-9,-4],[-3,-2],[1,-1],[44,-18],[1,-1],[7,-4],[0,-1],[1,-3],[-19,-18],[-18,-19],[3,-1],[27,-5],[11,-1],[19,-4],[6,0],[9,-1],[16,0],[8,0],[7,-1],[61,-13],[3,-1],[0,-1],[-8,-7],[-3,-2],[-5,-2],[-17,-4],[-2,0],[-1,-1],[-5,-5],[0,-1],[-2,0],[-5,-1],[-26,1],[-14,0],[-54,-3],[-6,-1],[0,-1],[9,-4],[5,-2],[5,-5],[3,-3],[7,-3],[24,-7],[26,-11],[4,-2],[1,-2],[-2,-3],[-3,-2],[-3,-1],[-5,-1],[-13,-3],[-3,-1],[-1,-1],[2,-2],[6,-5],[1,-3],[-3,-3],[-7,-3],[-8,-2],[-37,-7],[-34,-4],[-10,-1],[-37,1],[-12,-1],[-4,0],[-6,-1],[-1,-3],[2,-1],[7,-1],[2,0],[2,-2],[1,-1],[-2,-3],[0,-1],[-1,0],[-9,-3],[-6,-1],[-31,-3],[-5,-1],[-1,-2],[2,-1],[25,-15],[5,-5],[1,-2],[0,-1],[-2,-1],[-4,-2],[-2,-1],[-6,-4],[-1,-4],[-3,-2],[-6,-3],[-2,-2],[-1,-2],[-7,-4],[-12,-2],[-16,0],[-15,0],[-7,1],[0,4],[-3,3]],[[4807,8389],[-8,3],[-1,1],[-1,2],[-1,0],[-5,2],[-6,1],[-7,0],[-23,0],[-8,0],[-3,1],[1,1],[2,0],[4,0],[2,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,1],[0,1],[1,0],[-1,1],[-3,0],[-7,-1],[4,-1],[0,-1],[-1,-1],[-3,0],[-4,0],[-2,0],[-5,2],[2,-2],[1,-1],[-2,0],[-14,0],[2,1],[-3,1],[-5,0],[-2,1],[-2,0],[-10,1],[-2,0],[2,-1],[-1,-2],[-2,0],[-4,0],[-2,0],[-2,1],[0,2],[1,1],[-5,-1],[-2,0],[-3,0],[-3,0],[0,-1],[-2,-1],[-4,0],[-5,2],[-5,0],[1,2],[-4,1],[1,2],[-2,-1],[-3,-1],[-3,-1],[-1,2],[3,2],[4,2],[4,1],[-4,1],[-2,0],[-2,1],[-3,0],[-2,0],[-4,-2],[-1,0],[-7,1],[-2,1],[-1,2],[-4,1],[3,1],[1,1],[-2,1],[-4,0],[-9,1],[-1,0],[2,2],[6,2],[4,1],[3,0],[2,-1],[-1,-1],[-3,-2],[4,0],[3,0],[2,1],[1,1],[0,1],[-2,1],[-2,0],[-2,1],[-3,1],[-1,2],[0,2],[2,1],[-4,2],[-3,1],[-2,2],[-1,3],[-4,-1],[-5,1],[-3,2],[0,2],[4,1],[5,4],[3,1],[10,2],[6,-2],[4,-4],[5,-3],[2,3],[4,3],[3,2],[-3,3],[2,0],[-3,1],[-7,0],[-5,1],[-2,-1],[-2,-1],[-2,0],[-10,1],[-1,-1],[-3,0],[-2,0],[-10,0],[-6,0],[-5,-1],[-7,-2],[-1,0],[6,-1],[-2,-1],[-1,-1],[0,-1],[0,-3],[2,-2],[2,-1],[4,-2],[5,-1],[5,0],[5,-1],[4,-1],[2,-2],[1,-1],[-5,-2],[-11,-3],[-14,-2],[-11,1],[-3,1],[-1,1],[2,4],[-3,3],[-1,1],[-1,1],[-1,1],[-1,0],[-6,1],[-1,1],[-2,0],[-2,0],[-1,0],[-4,0],[-8,1],[-7,1],[-6,0],[-4,-1],[3,0],[5,-2],[3,0],[3,0],[3,-1],[15,-1],[4,-1],[3,-1],[1,-2],[0,-2],[-1,-2],[-2,-2],[-4,-1],[-8,1],[-14,2],[-8,0],[3,-1],[4,-2],[6,-1],[4,0],[5,-1],[9,-3],[21,-1],[4,-1],[1,-1],[-2,-2],[-6,-2],[0,-1],[4,-1],[8,-1],[4,-1],[-2,-1],[-4,-1],[-3,-1],[-2,-1],[-4,0],[-8,1],[-10,1],[-3,-1],[0,-2],[1,-1],[-1,0],[-6,-1],[-1,0],[-1,-1],[-2,-1],[-1,-2],[0,-1],[0,-1],[-6,0],[0,-1],[2,-2],[2,-2],[-3,1],[-1,1],[-1,1],[-3,1],[-1,-2],[1,-3],[-2,-1],[-1,1],[-6,5],[-2,0],[0,-1],[-3,-2],[0,-1],[1,0],[2,-1],[2,-1],[-1,-1],[-5,0],[-7,-1],[-8,-1],[-7,1],[3,0],[9,1],[1,1],[-1,1],[-4,0],[-7,-1],[-3,0],[-6,-1],[-4,0],[-2,0],[-5,1],[-3,0],[3,-3],[-4,-2],[-7,-1],[-6,0],[-26,0],[-8,1],[6,0],[1,2],[-2,1],[-4,1],[-8,2],[-4,0],[-2,-1],[-2,0],[-6,2],[-1,0],[-2,0],[-1,0],[-1,1],[0,1],[-3,0],[-1,-1],[0,-1],[0,-1],[-4,0],[-2,1],[-2,1],[-1,1],[-1,1],[-3,0],[3,1],[-1,1],[-2,0],[-7,-1],[-14,0],[5,-1],[14,-2],[3,-2],[5,-1],[9,0],[8,-2],[-1,-2],[-1,0],[-1,0],[-1,1],[-2,0],[-2,-1],[-2,0],[-7,0],[3,0],[2,-1],[2,0],[1,-1],[-6,0],[-16,-1],[1,0],[2,-1],[-8,0],[-24,0],[9,-1],[3,-1],[-3,0],[-9,0],[-4,0],[-1,-1],[-5,0],[-7,1],[-6,0],[-3,-1],[5,0],[3,0],[2,0],[-1,-1],[-2,0],[-1,0],[-11,-1],[-5,0],[-4,2],[-1,-1],[-6,-3],[3,0],[5,0],[2,-1],[2,1],[8,1],[6,0],[5,0],[5,0],[6,-1],[-3,-1],[-11,-1],[-5,-1],[5,0],[4,1],[0,-1],[-3,0],[-5,-1],[-5,-1],[-3,-1],[-8,-1],[-13,0],[-39,0],[-3,0],[-2,0],[-1,-1],[2,0],[18,-1],[6,0],[-12,1],[-4,1],[27,-1],[0,-2],[-7,0],[-21,-1],[-8,0],[7,0],[15,0],[7,0],[4,-1],[-3,0],[-9,-2],[-14,-2],[-13,-2],[-10,1],[-2,0],[0,-1],[-1,0],[-2,0],[-2,0],[-2,1],[-1,0],[-6,0],[-2,0],[1,0],[5,-1],[2,-1],[-1,-1],[1,-1],[-1,-2],[-4,-1],[-4,-1],[-15,-2],[-5,-1],[-7,-1],[-4,-1],[-6,0],[-3,-1],[-2,-1],[-4,-1],[-2,-1],[-5,0],[-4,0],[-3,-1],[-3,0],[-2,0],[-1,-1],[-2,-1],[-3,0],[-3,0],[-1,0],[-1,1],[-2,0],[-8,-2],[-7,-2],[-2,-1],[3,-1],[-4,-1],[-5,1],[-5,0],[-5,-1],[-3,1],[-3,1],[-2,-1],[1,-1],[0,-1],[-4,0],[-8,0],[-2,0],[-7,-1],[-2,0],[-3,-1],[-8,0],[-4,-1],[2,0],[3,0],[1,0],[-3,-1],[-2,-1],[-5,-1],[-1,0],[0,-1],[0,-1],[-5,-1],[-3,1],[-4,1],[-3,0],[-5,-2],[-3,-1],[-3,0],[-3,0],[-8,1],[-3,0],[-1,0],[-3,1],[-2,1],[6,0],[4,1],[3,0],[-5,2],[-3,1],[-4,2],[-6,0],[4,-2],[1,-1],[-1,-1],[-3,-2],[-13,-1],[-4,-2],[5,-1],[-10,-1],[-37,0],[-10,-1],[-4,0],[-8,0],[-2,0],[2,-1],[-5,0],[-1,0],[-2,0],[0,-1],[-3,-1],[-5,0],[-4,2],[0,-1],[0,-1],[-44,0],[-28,1],[-4,1],[0,1],[-14,-1],[-4,-1],[-2,1],[-3,0],[-17,-1],[0,-1],[-1,0],[0,-1],[-2,0],[-2,0],[-8,-1],[-4,0],[-3,0],[2,1],[-1,2],[5,1],[8,0],[5,1],[3,1],[2,-1],[2,0],[2,0],[2,0],[4,2],[2,0],[0,1],[-5,0],[-15,-2],[-3,0],[-4,-1],[-18,-1],[-5,0],[4,1],[6,2],[4,1],[-4,0],[-13,-3],[-5,-1],[1,1],[2,1],[0,1],[-1,1],[-3,-1],[-4,0],[-3,-1],[-4,0],[-4,1],[-4,0],[-3,1],[11,1],[5,0],[18,0],[6,1],[4,1],[-7,0],[-13,-1],[-7,0],[-6,1],[-11,3],[-6,0],[8,-4],[-1,-1],[-12,0],[-6,0],[-3,1],[2,1],[0,1],[-1,1],[0,1],[-5,-4],[-3,-1],[4,0],[1,0],[2,-1],[1,0],[3,-1],[4,0],[5,-1],[2,0],[0,-1],[-4,0],[-2,0],[-5,0],[-3,0],[-24,0],[-5,1],[-13,2],[-3,1],[5,0],[4,1],[3,1],[1,2],[3,0],[13,1],[5,0],[-3,0],[-2,0],[5,2],[12,1],[9,2],[19,1],[-4,1],[-6,-1],[-11,-1],[-13,-2],[-4,0],[-3,1],[-7,2],[-2,1],[2,1],[4,1],[4,0],[5,-1],[3,2],[-5,1],[-5,-1],[-6,0],[-5,0],[0,-4],[2,-2],[-15,0],[-15,2],[-23,1],[-12,1],[-14,1],[-2,1],[-4,0],[-4,0],[-4,0],[-3,1],[-3,0],[-15,1],[-13,1],[-5,1],[-3,0],[-7,1],[-2,0],[-2,0],[-5,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-2,1],[-6,0],[-22,0],[-9,1],[-5,2],[-8,0],[-9,0],[-13,2],[1,1],[-9,2],[-10,3],[-5,3],[-6,2],[-1,1],[-3,1],[-7,2],[4,1],[8,1],[2,1],[1,2],[0,1],[-1,2],[-2,1],[2,0],[4,0],[2,1],[2,1],[-2,0],[-3,1],[-2,2],[-1,0],[0,1],[2,0],[3,-1],[2,0],[7,-2],[5,-1],[2,2],[-2,1],[-6,1],[-10,1],[2,1],[3,0],[2,0],[3,0],[-3,1],[-9,-1],[-4,1],[3,0],[1,1],[2,2],[39,-4],[-2,-2],[-2,-3],[1,-2],[3,-1],[4,4],[5,0],[11,0],[4,1],[0,1],[1,1],[7,0],[3,0],[4,-1],[8,-1],[4,0],[5,-2],[3,-1],[29,-4],[10,-1],[22,1],[-6,0],[-20,1],[-4,0],[-5,1],[-4,1],[-1,1],[1,1],[3,1],[7,2],[5,1],[16,1],[101,5],[0,1],[-64,-2],[-13,-2],[-32,-1],[-8,-1],[-22,-6],[-12,4],[-2,1],[3,1],[5,1],[6,0],[4,0],[-3,1],[-4,1],[-3,0],[-4,0],[-9,0],[-4,0],[-5,0],[-5,2],[-4,1],[-1,2],[5,1],[7,1],[23,1],[7,0],[14,1],[4,0],[-9,1],[-12,-1],[-7,0],[5,2],[8,3],[4,0],[11,2],[10,2],[19,1],[17,3],[11,0],[21,0],[-28,0],[-6,0],[-26,-3],[-12,-1],[-9,1],[-7,2],[36,0],[0,1],[-3,1],[-3,0],[-3,1],[-1,-1],[-2,-1],[-4,0],[-1,1],[-2,0],[-2,0],[-1,0],[-3,-1],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-3,1],[-1,1],[-1,1],[-1,-2],[-4,0],[-5,0],[-5,0],[3,1],[2,1],[1,0],[2,1],[3,1],[3,0],[6,1],[11,1],[6,1],[5,1],[1,0],[2,-1],[1,1],[2,0],[3,1],[1,1],[0,1],[1,1],[5,1],[43,3],[28,1],[-10,1],[-39,-2],[-15,-2],[-8,0],[3,1],[3,1],[3,2],[2,1],[0,1],[1,2],[2,1],[3,1],[-6,-1],[-4,-1],[-3,-3],[-1,-2],[-1,0],[-2,-1],[-5,-2],[-4,-1],[-9,-3],[-2,-1],[-3,0],[-10,-2],[-4,-1],[-9,-1],[-3,0],[-5,0],[-2,2],[-4,0],[2,-1],[-2,0],[-2,0],[-1,0],[0,-1],[2,0],[2,0],[1,-1],[1,0],[-11,-2],[-5,0],[-3,1],[-1,1],[-2,0],[-2,1],[-1,0],[-1,1],[0,1],[1,1],[8,0],[54,3],[-5,1],[-6,0],[-8,-1],[-11,-1],[-29,1],[-3,0],[-4,0],[-2,1],[-3,1],[-2,0],[-1,0],[-3,2],[-1,0],[-3,0],[-4,-1],[-3,0],[6,-2],[1,-1],[-2,-1],[-5,-1],[-7,-1],[-6,1],[-3,1],[1,-2],[-4,-1],[-11,-1],[4,-1],[16,2],[7,0],[5,0],[4,-1],[12,-2],[1,-1],[0,-2],[-3,0],[-14,0],[-5,0],[-3,-1],[-3,0],[-8,0],[-1,0],[0,-1],[-1,0],[-3,-1],[-1,0],[-3,0],[-10,-1],[-2,0],[-1,1],[2,1],[3,0],[4,0],[0,1],[-6,2],[-4,2],[-4,2],[-6,0],[2,-1],[2,0],[1,0],[-1,-2],[-1,-3],[-2,-1],[-4,-1],[-5,-2],[-5,0],[-7,0],[-5,1],[-5,1],[-2,2],[1,1],[2,2],[1,1],[-2,1],[-5,0],[-2,-2],[0,-1],[0,-3],[0,-1],[-1,-1],[-2,0],[-3,0],[-1,1],[-1,1],[-1,1],[-3,2],[-1,0],[2,2],[0,1],[-1,1],[-1,0],[-3,0],[-1,0],[0,-4],[-8,-1],[-16,6],[-6,0],[-2,1],[-1,2],[-1,2],[0,1],[-1,0],[1,1],[3,0],[3,0],[7,0],[0,1],[-9,0],[0,1],[4,0],[4,1],[12,3],[3,2],[5,1],[5,0],[5,1],[5,-1],[1,0],[2,-3],[3,-1],[1,2],[2,1],[-2,1],[-4,1],[0,1],[3,1],[6,2],[12,2],[-1,-1],[-1,0],[3,-1],[1,0],[1,0],[1,-1],[-1,-2],[-1,-2],[-3,-1],[-1,-1],[0,-1],[1,0],[1,-1],[-1,-1],[0,-1],[-6,0],[-1,0],[-1,-1],[-4,0],[-3,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[2,0],[1,0],[3,0],[2,1],[15,1],[2,0],[3,1],[0,1],[2,1],[1,2],[-3,0],[-1,1],[2,2],[4,1],[3,1],[4,1],[7,-1],[4,0],[16,0],[6,-1],[2,-1],[-1,-1],[-2,-2],[6,0],[3,0],[2,1],[0,2],[1,0],[5,1],[7,0],[14,0],[0,1],[-21,-1],[-6,0],[-4,1],[2,1],[10,2],[1,0],[1,1],[2,0],[14,1],[3,0],[1,0],[0,1],[0,1],[3,0],[2,0],[2,-1],[1,0],[2,-1],[12,0],[12,0],[29,4],[2,1],[2,0],[3,0],[2,0],[3,1],[1,1],[17,0],[5,1],[-16,0],[-28,-3],[-20,-3],[-4,0],[-4,-1],[-9,1],[-5,0],[-2,1],[0,1],[2,1],[3,0],[1,1],[-1,2],[1,0],[2,1],[-5,0],[-3,-1],[-1,-2],[-1,-1],[-3,-1],[-7,-1],[-7,0],[-5,-1],[-5,1],[-5,1],[-7,2],[-6,1],[-4,0],[-2,0],[3,2],[-4,-1],[-5,0],[-5,-1],[-3,1],[5,1],[6,0],[11,2],[-1,2],[8,1],[11,1],[9,1],[25,0],[2,0],[1,1],[1,0],[0,1],[-1,0],[-7,1],[15,5],[20,2],[45,2],[0,1],[-5,0],[-2,0],[1,2],[-2,0],[-2,0],[-3,0],[-3,-1],[-1,0],[-4,-1],[-8,-1],[-8,-1],[-6,0],[0,2],[-5,3],[-2,2],[16,1],[3,1],[2,1],[4,1],[6,2],[1,0],[-3,1],[14,1],[4,0],[3,1],[5,1],[2,1],[3,0],[1,0],[0,1],[1,0],[1,0],[2,0],[7,1],[8,1],[6,0],[8,2],[6,1],[8,0],[9,0],[15,-1],[-11,-4],[-5,-2],[1,-2],[-2,-1],[-7,-2],[-2,0],[-2,-6],[-2,-2],[0,-2],[0,-2],[1,-2],[2,0],[0,4],[1,2],[4,2],[7,3],[1,1],[0,1],[-2,1],[6,2],[8,5],[5,2],[4,0],[7,1],[4,1],[7,2],[4,1],[4,1],[5,0],[33,2],[21,-1],[11,0],[6,2],[-48,0],[2,0],[2,0],[2,1],[1,1],[3,0],[2,0],[2,0],[13,4],[-7,0],[-9,-1],[-8,-2],[-6,-1],[-8,-3],[-3,0],[-16,-1],[-9,-1],[-14,-2],[-4,-1],[-6,0],[-6,0],[-3,1],[2,2],[17,2],[5,2],[-11,-1],[-20,-3],[-12,-1],[-7,-1],[-13,-1],[-7,0],[-6,0],[-12,-2],[-5,-1],[-6,0],[-6,1],[-5,1],[-4,1],[-3,3],[-2,0],[-2,0],[-1,-1],[1,-1],[1,0],[2,-1],[5,-2],[5,-1],[2,0],[-1,-1],[-3,0],[-8,1],[-6,-1],[-8,0],[-3,-1],[4,0],[12,0],[-2,-2],[-6,-1],[-3,-1],[2,-1],[1,0],[2,-1],[-2,-1],[-3,-1],[-4,0],[-4,-1],[-5,1],[-11,1],[-5,0],[-5,0],[-2,-1],[-2,-1],[-2,-2],[-8,-2],[-5,-1],[-2,-1],[-3,0],[-4,0],[-3,0],[-2,-1],[0,-1],[4,-3],[1,-3],[-4,-2],[-8,-1],[-9,0],[1,1],[-4,0],[-4,-2],[-4,0],[-7,1],[-2,0],[0,1],[-1,1],[-2,0],[-1,0],[1,2],[3,0],[8,0],[5,0],[5,0],[3,1],[2,1],[-10,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-3,0],[-1,1],[-2,1],[-2,0],[2,0],[4,1],[1,1],[-6,2],[1,1],[4,1],[15,1],[0,1],[-7,0],[-10,-1],[-8,-1],[-7,-1],[0,-1],[-1,-1],[-3,0],[-4,0],[-6,0],[-5,0],[-4,0],[-2,1],[3,1],[4,0],[1,1],[-4,1],[9,1],[16,1],[9,0],[0,1],[-20,0],[-6,-1],[7,2],[3,1],[-2,0],[-4,0],[-3,0],[-3,-1],[-4,-1],[1,1],[3,1],[3,0],[1,1],[1,0],[6,2],[3,1],[1,1],[2,1],[1,1],[4,0],[9,1],[3,0],[1,1],[-5,0],[-5,-1],[-2,0],[-3,0],[-3,-1],[-3,0],[-2,-1],[-1,1],[-1,0],[-3,-1],[-5,-1],[-3,-2],[-1,-1],[-3,-1],[-9,-4],[0,-1],[-3,0],[-10,-2],[-8,-1],[-3,-1],[-1,0],[-1,-1],[-2,-1],[-5,1],[-8,1],[3,0],[1,0],[0,1],[-12,1],[-4,0],[3,1],[2,0],[7,1],[-8,1],[-16,-1],[-6,0],[17,3],[3,1],[-8,0],[-25,1],[-2,0],[0,1],[1,1],[1,1],[3,0],[4,0],[7,0],[-4,1],[-3,0],[-10,1],[-2,0],[-2,0],[2,1],[7,2],[21,0],[7,1],[-3,0],[-8,2],[2,1],[1,1],[-6,1],[0,1],[10,3],[6,0],[7,-1],[7,-1],[5,-1],[2,0],[12,-3],[7,-1],[12,-1],[10,0],[11,0],[8,1],[-1,1],[4,1],[6,0],[4,1],[1,1],[0,1],[-1,3],[0,2],[1,3],[2,3],[5,1],[-4,1],[0,1],[3,1],[3,1],[-5,0],[-5,-1],[-10,0],[-1,1],[2,1],[4,1],[2,1],[-5,0],[-3,-1],[-3,-1],[-4,-1],[-3,0],[-4,-1],[-2,0],[-3,0],[-11,0],[-2,-1],[3,-3],[-2,-1],[-6,0],[-14,-1],[-17,-3],[-16,-1],[-6,0],[-6,0],[-6,1],[-8,1],[-7,2],[-15,2],[-3,1],[9,0],[8,-1],[16,-2],[1,0],[-16,4],[-18,3],[4,0],[11,-1],[-5,2],[-7,0],[-8,0],[-7,1],[-11,3],[-6,1],[-8,0],[6,1],[7,0],[7,0],[11,-2],[12,-1],[9,-1],[7,-1],[24,-1],[6,-1],[-1,-1],[2,-2],[4,-1],[5,-1],[5,-1],[-2,1],[-1,0],[-1,1],[5,0],[9,-2],[5,0],[-4,1],[-6,1],[-5,1],[2,1],[4,0],[7,-2],[2,0],[-1,1],[-2,1],[-3,0],[1,1],[-7,1],[-3,0],[-1,1],[0,1],[-1,0],[-2,0],[-10,0],[-6,1],[-7,0],[-2,1],[-2,0],[0,1],[6,1],[5,0],[10,1],[6,0],[-4,2],[5,1],[17,2],[4,-1],[4,0],[4,0],[4,0],[3,0],[6,1],[-7,0],[-6,1],[-2,1],[5,1],[-5,-1],[-17,-2],[-12,0],[-5,-1],[-2,-1],[-6,-2],[-13,0],[-12,0],[-4,2],[-1,-1],[-4,-1],[-4,-1],[-3,1],[3,1],[-4,0],[-11,0],[-5,1],[-1,1],[-3,2],[-2,1],[-1,0],[-1,1],[0,1],[-1,0],[-5,1],[-1,1],[2,0],[5,1],[6,-1],[5,0],[4,-1],[2,0],[-1,-3],[1,-1],[2,-1],[2,0],[1,1],[-2,4],[0,1],[4,0],[4,1],[3,0],[-1,2],[-1,-1],[-1,0],[-2,0],[-7,-1],[-3,0],[-13,1],[-3,0],[-2,1],[0,1],[1,2],[2,1],[12,2],[16,0],[16,-1],[18,-2],[7,0],[15,-1],[11,0],[3,0],[1,0],[1,-1],[1,-1],[3,0],[2,1],[-1,0],[-2,1],[0,1],[1,1],[3,0],[4,1],[9,1],[9,0],[10,-1],[7,0],[-7,1],[-3,1],[1,0],[9,0],[4,0],[4,0],[5,1],[10,0],[8,1],[4,-1],[-2,-2],[0,-1],[3,0],[3,1],[3,1],[3,0],[3,0],[-2,1],[-1,0],[7,1],[7,0],[20,0],[8,0],[4,0],[16,0],[8,0],[15,-1],[8,0],[7,-1],[3,-1],[-1,-1],[-6,-1],[7,0],[3,0],[4,1],[2,0],[4,0],[4,0],[3,0],[3,-1],[-2,0],[-3,-2],[-3,-1],[4,0],[4,0],[0,1],[1,1],[2,1],[7,1],[6,1],[6,1],[13,0],[6,1],[5,1],[4,2],[2,2],[2,0],[3,0],[5,-1],[3,0],[32,-1],[12,0],[3,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[3,0],[14,0],[4,0],[2,-1],[4,-2],[4,-2],[2,0],[0,-1],[-1,-1],[-4,-1],[-4,0],[-7,-1],[-15,-2],[21,2],[11,0],[9,0],[15,-2],[4,-1],[0,-1],[-6,-4],[6,1],[6,2],[3,2],[-2,2],[-2,0],[-12,0],[-2,1],[-3,0],[-9,4],[-2,1],[-2,0],[-3,1],[-2,2],[-1,1],[4,1],[10,0],[25,0],[7,2],[3,0],[3,1],[19,-1],[3,0],[5,-1],[7,-1],[16,0],[-4,0],[-4,0],[-2,1],[-9,1],[-2,1],[3,0],[11,2],[2,0],[3,1],[6,0],[36,1],[11,1],[10,1],[-8,0],[-7,0],[-8,-1],[-35,-1],[-14,0],[-7,0],[-3,2],[-1,2],[-1,1],[0,1],[-2,0],[-2,0],[-2,0],[0,2],[10,1],[3,2],[1,1],[2,1],[10,1],[3,1],[4,2],[3,1],[5,0],[6,0],[5,1],[5,1],[4,1],[-20,-2],[-33,-5],[-5,0],[-9,0],[-5,0],[4,0],[4,-1],[2,-1],[-1,-1],[-14,-3],[-1,-1],[5,-1],[5,-1],[4,-1],[3,-3],[3,-1],[4,0],[4,-1],[-9,-1],[-4,-1],[-3,0],[-2,0],[-6,1],[-1,0],[-4,1],[-1,0],[-4,0],[-9,-1],[-3,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-3,0],[-30,-1],[-8,-1],[-5,-1],[-4,1],[-4,1],[5,1],[9,2],[6,1],[-12,-1],[-7,-1],[-7,0],[-19,2],[-34,1],[-25,2],[3,1],[8,1],[4,1],[9,4],[2,0],[5,1],[1,1],[2,2],[1,0],[2,1],[-1,1],[-3,0],[-1,0],[-14,-7],[-8,-2],[-9,-1],[-2,0],[-4,1],[-2,0],[-2,0],[-3,0],[-2,-1],[3,-1],[3,-2],[0,-1],[3,-1],[-16,1],[-1,0],[3,-1],[2,0],[3,-1],[1,0],[0,-1],[1,-1],[0,-1],[-3,-1],[-2,0],[-12,-1],[-15,0],[-21,0],[-18,2],[-7,3],[-10,-2],[-14,-1],[-13,0],[-13,1],[11,1],[5,1],[2,1],[-23,-2],[-15,-1],[-16,0],[-5,0],[-1,2],[0,1],[-2,-1],[-2,0],[-1,-2],[-2,0],[-3,0],[-5,0],[-3,0],[-2,-1],[-5,0],[-27,-1],[-5,0],[-14,-3],[-13,-1],[-11,0],[-9,1],[-9,3],[-4,-1],[-5,-1],[-13,0],[-1,0],[-1,0],[-3,0],[-2,1],[-1,1],[-2,0],[2,1],[4,0],[5,-1],[5,1],[-6,0],[-5,1],[-5,0],[-4,-1],[-4,0],[-16,1],[-3,0],[3,2],[14,0],[25,-2],[-1,1],[-1,0],[0,1],[8,0],[-12,2],[-7,1],[-7,0],[-28,-1],[-7,1],[4,0],[6,0],[5,1],[2,0],[-7,0],[-5,0],[-3,0],[-2,1],[-2,0],[-2,0],[-4,0],[2,1],[4,1],[8,0],[6,1],[5,0],[3,0],[3,1],[2,0],[10,0],[5,0],[4,2],[6,1],[6,-1],[5,0],[4,0],[3,-1],[2,-1],[2,-1],[3,-2],[2,-1],[4,0],[0,1],[0,1],[-2,2],[-2,1],[-3,1],[-8,0],[-4,1],[43,1],[45,0],[-7,1],[-11,0],[-91,-1],[-3,-1],[-6,-1],[-8,0],[-8,-1],[-5,0],[-3,1],[-4,1],[-3,1],[1,1],[3,1],[4,1],[4,0],[2,-1],[1,-1],[1,0],[4,1],[-1,1],[1,1],[1,0],[8,0],[0,1],[-1,0],[-5,-1],[-5,0],[-10,0],[-9,0],[-10,0],[26,2],[25,1],[5,1],[-1,0],[8,0],[12,-1],[10,-1],[6,2],[35,-3],[8,0],[6,1],[-2,0],[5,0],[10,1],[4,0],[2,1],[3,0],[3,1],[3,0],[11,0],[6,0],[3,-1],[5,-1],[2,0],[6,0],[-6,1],[-8,2],[-6,0],[-13,0],[-6,0],[-6,-1],[-7,-1],[-2,0],[-12,0],[-8,-1],[-7,0],[-5,0],[1,2],[-11,0],[-25,0],[-8,1],[-18,1],[-9,1],[2,1],[-2,1],[4,0],[11,0],[2,0],[8,0],[26,0],[0,1],[-6,0],[-37,2],[-6,0],[44,0],[-4,0],[-2,0],[0,-1],[22,0],[5,1],[-18,1],[-18,1],[11,1],[5,1],[-13,0],[-10,-1],[-3,0],[-55,0],[-6,0],[-1,1],[-5,2],[-1,0],[2,1],[2,1],[3,0],[-2,0],[1,1],[2,1],[4,0],[-1,0],[-1,1],[-2,0],[4,0],[3,1],[8,0],[4,0],[4,-1],[1,0],[1,-1],[1,0],[4,0],[1,0],[4,-1],[1,0],[3,0],[2,0],[5,1],[-8,1],[-2,1],[5,0],[10,1],[-30,-1],[4,1],[6,1],[6,1],[27,2],[6,0],[-2,1],[-2,0],[10,0],[9,0],[-4,1],[-4,0],[-2,0],[-1,1],[2,0],[15,3],[8,1],[21,-1],[9,0],[4,0],[9,0],[5,0],[8,-1],[9,0],[4,-1],[6,-1],[6,-1],[-7,-1],[-9,0],[-8,0],[-5,-2],[7,0],[20,2],[44,1],[4,0],[2,-1],[-1,-1],[-1,-1],[-3,-2],[-6,-2],[0,-1],[4,1],[3,0],[3,1],[3,1],[2,3],[2,1],[4,0],[5,0],[11,-2],[9,-2],[6,-1],[14,0],[-3,1],[-3,0],[-5,1],[-3,0],[-3,1],[-4,1],[-4,0],[-4,0],[0,1],[54,0],[5,0],[11,-2],[6,0],[21,0],[7,0],[4,0],[3,1],[4,2],[4,1],[5,1],[6,0],[6,0],[6,0],[13,-1],[6,0],[2,-1],[2,0],[3,-1],[2,1],[4,1],[2,0],[2,1],[-4,0],[-7,0],[-4,0],[-3,0],[-11,1],[-1,0],[-2,0],[-1,1],[-2,-1],[-2,0],[-1,0],[-24,-1],[-4,-1],[-3,-1],[-3,-1],[-8,-1],[-51,3],[-38,-1],[-4,0],[-10,2],[-4,0],[-14,0],[-13,0],[-4,1],[-4,-1],[-6,0],[-4,0],[-1,-1],[-3,0],[-1,0],[-2,0],[-16,2],[0,1],[48,0],[6,0],[0,1],[-74,1],[-30,1],[-15,-1],[-2,0],[-1,0],[-3,1],[-18,-1],[-11,-1],[-6,-1],[-13,1],[-6,0],[-6,-1],[-3,-1],[-5,1],[-9,1],[4,1],[3,1],[3,2],[4,0],[1,0],[1,-1],[2,0],[2,0],[2,1],[1,0],[2,0],[2,0],[3,-1],[1,0],[2,0],[1,1],[2,1],[9,1],[3,0],[2,2],[7,0],[8,-1],[6,1],[-3,1],[-4,0],[-7,0],[-3,0],[-3,1],[-4,1],[-21,3],[-23,0],[-4,1],[2,0],[2,0],[4,1],[-4,0],[-7,1],[-2,1],[1,0],[3,1],[1,0],[-1,0],[-1,1],[-1,0],[1,0],[3,0],[7,0],[1,0],[2,0],[2,0],[0,1],[5,1],[3,0],[7,-1],[7,-1],[3,-1],[1,0],[2,0],[2,0],[0,-1],[-2,-1],[1,-1],[11,-2],[17,-1],[14,-2],[2,-4],[2,0],[3,0],[3,1],[8,3],[1,1],[1,0],[3,0],[3,0],[4,-1],[3,0],[-7,2],[-33,1],[-5,1],[-2,0],[0,1],[5,2],[2,1],[2,1],[6,0],[5,0],[11,-1],[23,-1],[4,0],[2,-1],[1,-1],[2,-1],[7,0],[14,-2],[-5,1],[-8,1],[-6,2],[-1,2],[5,0],[7,1],[13,-1],[3,1],[12,1],[5,0],[6,0],[5,-1],[4,-1],[1,-1],[0,-1],[-1,-2],[-3,-2],[-13,-3],[-2,-2],[15,3],[6,2],[5,4],[3,-1],[18,-3],[2,0],[-1,-2],[9,1],[9,0],[19,0],[37,-1],[-65,3],[-3,1],[-6,1],[-2,1],[-3,0],[-11,3],[-12,1],[-2,1],[1,1],[3,0],[4,0],[9,-1],[5,-1],[11,0],[-3,1],[-5,0],[-9,0],[-2,1],[-2,0],[-2,1],[-4,0],[7,3],[12,2],[13,1],[11,0],[27,3],[15,1],[6,-2],[1,0],[7,-3],[5,-2],[5,-1],[11,-2],[5,-1],[16,-4],[2,-2],[-1,-1],[-6,-2],[15,2],[-3,2],[-20,7],[-18,4],[-5,2],[-2,2],[3,2],[8,0],[10,1],[5,0],[6,-1],[2,0],[7,-3],[0,2],[0,1],[-1,1],[-3,0],[0,1],[4,0],[20,1],[9,1],[5,1],[3,-1],[6,-1],[31,-1],[0,-1],[-2,-2],[1,-2],[2,-1],[22,-4],[3,-1],[1,0],[1,-1],[2,-3],[-1,-1],[-2,-1],[-12,-4],[-1,-1],[4,-1],[7,-1],[8,0],[18,1],[6,1],[4,0],[3,0],[8,-1],[-9,2],[-28,-2],[-12,1],[-1,1],[3,1],[9,2],[3,1],[0,1],[-3,4],[1,1],[2,0],[3,1],[14,0],[23,-2],[6,0],[4,1],[7,1],[7,0],[6,-1],[3,-1],[5,-1],[6,0],[4,-1],[0,1],[-10,2],[-9,1],[-3,1],[-6,0],[-31,-1],[-33,2],[-15,1],[-10,4],[8,0],[3,0],[3,0],[-29,6],[-2,0],[-5,0],[-10,0],[-5,1],[4,0],[4,1],[-23,-1],[-49,-3],[-20,0],[-9,0],[-4,1],[-5,1],[-4,0],[-4,0],[-5,0],[-5,0],[-5,0],[7,1],[20,0],[18,1],[4,1],[5,0],[19,0],[9,0],[24,0],[-5,0],[-9,2],[-11,-1],[-21,0],[0,1],[15,0],[5,0],[-7,1],[-63,-1],[1,1],[-1,0],[2,1],[-2,1],[-2,0],[-1,1],[1,0],[2,1],[6,1],[7,0],[51,1],[5,-1],[6,-1],[4,-1],[1,-1],[1,0],[3,2],[0,1],[-3,0],[3,1],[2,0],[2,0],[1,-1],[10,2],[10,1],[6,1],[5,-1],[24,-3],[5,-1],[0,-1],[-1,0],[1,0],[4,0],[1,0],[0,1],[-2,0],[-1,1],[1,0],[3,1],[-2,0],[-3,1],[-2,0],[-2,1],[10,1],[38,-1],[-2,-1],[-3,0],[-4,-1],[-4,0],[3,-1],[11,0],[2,-1],[1,-1],[3,-2],[1,-1],[1,0],[1,0],[3,2],[1,1],[-1,0],[-3,1],[-1,0],[6,3],[3,0],[9,-1],[25,-1],[11,-1],[16,-3],[13,0],[7,-1],[2,-1],[2,-1],[2,-1],[4,1],[2,1],[0,1],[1,1],[4,0],[44,2],[-8,0],[-56,-1],[-10,1],[-5,0],[-4,1],[-2,2],[1,1],[6,1],[8,-1],[5,-1],[-1,-2],[6,-1],[3,1],[0,2],[-6,2],[0,1],[3,1],[12,1],[10,1],[52,2],[26,0],[11,1],[5,-1],[6,0],[20,-3],[4,0],[-4,2],[-15,2],[-5,1],[3,0],[2,1],[1,0],[1,1],[-6,0],[-11,-1],[-21,0],[-11,-1],[-51,-2],[-28,-3],[-8,0],[-25,0],[-6,1],[8,0],[2,1],[-2,0],[-6,1],[8,1],[16,2],[49,2],[-5,0],[-11,0],[-38,-2],[-8,-1],[-4,0],[-11,0],[-9,-1],[-80,-1],[-5,0],[3,0],[2,1],[2,0],[1,1],[-1,0],[-4,1],[-1,0],[1,1],[4,1],[7,1],[12,1],[37,-1],[-6,1],[-9,2],[-5,0],[-27,-1],[-3,1],[-11,3],[-2,1],[-5,1],[-11,0],[3,0],[4,1],[21,1],[18,3],[7,0],[15,1],[16,1],[8,0],[6,-1],[10,-1],[7,-1],[12,-1],[1,-1],[3,-2],[14,0],[14,1],[13,2],[12,2],[5,0],[21,-1],[1,0],[-1,0],[-2,-1],[-5,-1],[-19,-2],[6,0],[33,2],[3,1],[8,0],[4,0],[10,1],[8,0],[24,-2],[2,0],[2,-1],[2,-1],[2,0],[1,-1],[2,-3],[4,-2],[3,-2],[8,-1],[21,-1],[10,0],[22,-4],[8,-1],[7,0],[8,-1],[6,-1],[1,-2],[6,2],[-1,1],[-5,1],[-21,3],[-18,2],[-11,1],[-19,2],[-15,2],[-3,1],[-1,1],[1,1],[2,1],[3,0],[4,1],[-3,0],[-3,0],[-2,0],[-2,1],[-2,0],[-1,1],[-2,1],[-4,0],[-10,1],[-20,3],[-1,0],[-2,1],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[2,0],[2,-1],[1,0],[1,0],[-5,-1],[-8,0],[-7,0],[-2,1],[4,1],[9,1],[4,1],[8,2],[3,1],[5,1],[5,0],[6,0],[5,0],[4,0],[4,-1],[3,-1],[-1,-2],[3,-1],[4,-1],[4,0],[17,-1],[5,-1],[4,-1],[2,0],[4,0],[2,-1],[2,0],[2,0],[0,-1],[-7,-1],[3,-1],[4,-1],[-2,-2],[0,-1],[4,0],[6,1],[4,0],[3,0],[20,-3],[8,0],[4,0],[-3,2],[-17,0],[-6,1],[5,0],[29,-1],[5,-1],[3,0],[4,-1],[2,-1],[4,0],[8,-1],[4,0],[-19,4],[-6,1],[-17,0],[-5,1],[-5,0],[-13,3],[-2,1],[54,1],[5,1],[-6,0],[-16,0],[-7,0],[-5,0],[3,1],[12,2],[-8,0],[-15,-2],[-22,-2],[-5,0],[-1,0],[-2,1],[-1,0],[-2,1],[-6,0],[8,1],[19,0],[8,1],[-8,0],[-31,0],[-10,0],[-5,0],[-4,1],[0,1],[1,1],[-2,0],[-4,2],[-5,1],[-3,1],[5,1],[7,0],[6,-1],[4,-1],[7,-1],[-1,-1],[5,0],[2,0],[2,1],[-2,0],[-1,1],[2,0],[-4,1],[-5,1],[-11,1],[72,-1],[23,-2],[-4,2],[-11,1],[-3,1],[3,1],[7,0],[57,2],[22,1],[-18,0],[-51,-1],[-6,0],[-3,0],[-2,2],[-2,1],[-5,1],[-11,2],[-6,0],[-6,1],[9,1],[44,1],[8,1],[7,1],[-9,0],[-4,0],[-3,0],[-2,1],[-2,1],[-1,0],[-9,1],[2,1],[6,1],[11,-1],[5,1],[6,0],[5,1],[1,0],[8,0],[4,-1],[4,-1],[5,-1],[2,2],[9,0],[9,0],[7,0],[-5,0],[-2,1],[2,1],[6,2],[1,0],[3,0],[8,-1],[15,-3],[2,-1],[1,-1],[1,0],[4,-1],[-6,-1],[-5,-2],[-3,-1],[1,-2],[7,2],[4,1],[12,0],[17,2],[39,1],[10,2],[-6,0],[-13,-1],[-31,-1],[-7,0],[-3,0],[-3,0],[-3,0],[-6,2],[0,1],[4,1],[70,3],[0,1],[-1,0],[-2,0],[-3,0],[-22,-1],[-7,0],[-8,0],[-3,1],[-2,0],[-3,1],[-2,0],[1,-1],[1,-1],[3,-1],[3,0],[-19,0],[-10,1],[-4,1],[3,2],[7,0],[12,0],[-2,2],[5,0],[6,-1],[4,0],[4,1],[6,1],[6,1],[5,0],[-3,-1],[-1,-1],[1,-1],[3,0],[3,-1],[3,1],[10,3],[4,0],[5,1],[5,0],[4,-1],[6,-2],[3,0],[-3,2],[-4,1],[-5,1],[-7,0],[6,1],[7,0],[14,1],[14,1],[7,1],[6,-1],[-1,-1],[5,-1],[10,-2],[4,-1],[2,-1],[1,-2],[-2,-1],[22,-3],[11,-2],[3,-1],[-4,-3],[-3,-1],[-22,-4],[5,0],[9,1],[9,0],[11,2],[8,0],[8,-1],[12,-2],[9,0],[17,0],[7,0],[3,-1],[1,-3],[2,0],[1,1],[0,2],[1,0],[1,0],[0,1],[-2,0],[-1,0],[0,1],[-5,1],[-38,1],[-3,0],[-3,1],[-2,0],[-1,1],[-1,1],[2,1],[3,0],[5,1],[3,1],[14,1],[34,1],[4,-1],[9,-1],[4,0],[3,0],[7,1],[7,0],[8,0],[8,-1],[7,-1],[8,0],[26,2],[1,-1],[15,0],[6,-2],[3,0],[3,0],[5,2],[2,0],[8,0],[1,0],[4,0],[3,1],[2,1],[-22,0],[-10,1],[-5,2],[5,2],[12,1],[21,0],[0,1],[-10,0],[-5,0],[1,1],[4,0],[4,0],[4,1],[2,1],[-16,-1],[-8,0],[-8,-1],[-4,0],[-9,-1],[-3,0],[-3,-1],[-4,0],[-3,0],[-4,0],[4,0],[2,1],[1,1],[3,0],[2,0],[0,1],[1,0],[1,0],[1,1],[2,0],[1,0],[5,1],[8,1],[13,1],[5,0],[9,3],[30,2],[6,0],[6,-1],[8,0],[9,1],[6,0],[6,1],[8,3],[6,0],[16,1],[25,0],[4,1],[1,0],[-1,1],[-2,1],[-3,0],[-3,0],[2,1],[1,0],[-5,1],[-15,0],[-6,0],[-6,1],[-6,0],[-6,0],[-32,-1],[-3,0],[-1,1],[0,1],[0,1],[1,0],[3,0],[15,1],[5,1],[3,1],[3,1],[18,1],[32,2],[6,1],[5,1],[3,1],[-10,-1],[-3,1],[-4,0],[-14,0],[-24,1],[-2,0],[-3,1],[0,1],[3,0],[6,1],[15,2],[4,1],[-8,-1],[-6,0],[-18,-3],[-5,-3],[-1,0],[-6,-1],[-49,-5],[-6,-1],[-6,-1],[-5,-1],[-5,-1],[-7,0],[-28,-2],[-7,0],[-10,-2],[-12,-1],[-5,-1],[5,0],[4,0],[4,0],[14,2],[3,0],[16,1],[30,3],[8,1],[16,-2],[7,0],[6,-1],[4,-2],[-5,0],[-6,-1],[-5,-1],[-3,-1],[-2,0],[-1,-2],[-1,0],[-1,0],[-4,-1],[-2,0],[-9,-2],[-23,-1],[-16,-2],[-16,0],[-7,-1],[-2,0],[-5,-3],[-2,0],[-9,-1],[-8,0],[-27,-3],[-3,0],[-9,-1],[-7,0],[-3,0],[-19,0],[-3,-1],[-5,-1],[-3,0],[-6,0],[-21,-2],[-9,-1],[-10,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-8,0],[-3,1],[-1,2],[-4,2],[3,0],[1,1],[-4,0],[-8,0],[-4,1],[-4,1],[-2,0],[1,1],[5,1],[-2,0],[-2,1],[-6,0],[1,1],[1,0],[1,0],[-1,1],[10,1],[19,1],[18,1],[8,0],[8,2],[7,1],[-6,0],[-10,-2],[-6,0],[1,1],[2,1],[2,0],[3,0],[-2,1],[-5,0],[-4,-1],[-4,0],[-5,0],[-11,-1],[-12,-2],[-18,0],[-12,-2],[-18,0],[-1,0],[-1,-1],[-1,0],[-3,0],[-1,0],[-8,-1],[-10,-1],[2,2],[4,1],[-4,1],[0,1],[39,3],[14,0],[-46,-1],[-9,1],[28,4],[39,3],[10,0],[-10,0],[-4,1],[-5,0],[23,2],[5,0],[1,-1],[-2,0],[0,-1],[4,0],[3,1],[8,1],[23,1],[11,2],[13,-1],[6,0],[-6,2],[-3,0],[-4,0],[-4,0],[-7,-1],[-7,0],[-8,-1],[-9,0],[-7,-1],[-5,0],[7,2],[27,2],[10,1],[-4,0],[-2,0],[-3,-1],[-3,0],[-2,0],[-1,1],[-2,0],[-15,-2],[-7,0],[-6,0],[2,1],[6,1],[3,1],[1,1],[1,1],[1,1],[5,0],[-1,0],[0,1],[3,1],[-3,0],[-3,1],[-1,1],[0,1],[4,1],[5,0],[11,-1],[4,-1],[2,0],[20,1],[3,0],[3,1],[-7,0],[-19,0],[2,1],[4,0],[4,0],[4,0],[-2,1],[-1,0],[0,1],[10,0],[-3,0],[-2,0],[0,1],[2,1],[-2,0],[-1,0],[0,1],[-1,0],[5,0],[4,-1],[4,0],[3,1],[-1,0],[5,0],[10,1],[5,-1],[11,-1],[2,0],[-2,1],[-10,1],[-18,1],[3,1],[6,1],[12,0],[-1,1],[-1,0],[6,0],[11,0],[-2,1],[4,0],[7,0],[3,1],[3,0],[3,0],[4,0],[-8,0],[-2,1],[0,2],[0,1],[5,0],[1,0],[-1,0],[5,0],[6,0],[9,-2],[-1,1],[-3,1],[-8,1],[10,0],[4,0],[8,-1],[3,0],[8,0],[0,1],[-6,0],[-3,0],[-2,1],[-2,1],[-2,0],[-3,0],[-1,0],[-1,1],[-2,0],[-21,0],[2,1],[3,0],[3,1],[3,0],[8,0],[13,-2],[7,-1],[-2,1],[-2,1],[-3,1],[-1,-1],[-1,1],[-1,0],[1,1],[2,0],[1,0],[3,0],[3,0],[2,-1],[2,0],[3,-1],[1,0],[13,0],[3,0],[1,-1],[1,0],[1,-1],[2,0],[14,-2],[5,0],[5,1],[-13,2],[-3,0],[4,1],[-2,1],[-5,1],[-5,0],[-17,-1],[-6,1],[3,1],[6,1],[2,0],[3,0],[6,0],[3,-1],[0,1],[1,0],[1,1],[7,0],[3,-1],[5,0],[3,-1],[-1,2],[-2,0],[-3,1],[-3,1],[6,0],[5,-1],[5,-1],[4,-1],[1,0],[2,1],[2,0],[2,1],[2,-1],[3,0],[2,0],[2,0],[-7,1],[-1,1],[2,0],[2,0],[6,0],[-3,1],[1,1],[0,1],[-1,0],[-3,1],[-3,0],[-2,1],[2,0],[2,0],[4,1],[1,0],[0,1],[4,0],[5,-1],[14,-1],[2,0],[0,-1],[-1,-1],[1,-1],[3,-1],[2,0],[4,0],[16,-3],[2,-1],[0,-1],[-3,-1],[5,0],[14,0],[6,1],[5,-1],[6,0],[5,-1],[-2,-1],[-3,-1],[-12,-3],[-10,-3],[5,0],[5,1],[8,2],[18,2],[3,1],[-5,0],[-2,0],[2,1],[6,2],[3,0],[2,0],[4,0],[2,-1],[3,1],[5,0],[10,1],[22,1],[10,1],[-51,-2],[2,1],[1,2],[2,1],[4,0],[10,0],[5,1],[-3,0],[-2,0],[-2,1],[-1,1],[16,0],[-5,-1],[-2,0],[6,0],[20,2],[22,1],[7,1],[-28,0],[-6,-1],[-2,1],[0,1],[2,0],[-1,1],[-5,1],[-5,-1],[-5,-1],[-3,0],[2,-1],[2,0],[3,0],[3,0],[-5,-1],[-6,-1],[-8,0],[-5,1],[-2,1],[-5,1],[-2,1],[-3,0],[-3,1],[-2,0],[1,1],[-3,1],[-2,0],[-2,1],[0,1],[2,0],[2,0],[2,0],[1,0],[-1,1],[-2,0],[-2,0],[-2,0],[6,1],[14,0],[12,2],[7,0],[6,-1],[7,1],[-2,0],[-3,0],[0,1],[-3,0],[-4,0],[-3,1],[55,1],[8,1],[4,0],[-24,0],[2,1],[-7,0],[-11,1],[-6,0],[8,1],[26,0],[-1,0],[-1,1],[2,0],[-16,-1],[-9,0],[-8,0],[14,1],[4,2],[5,0],[5,1],[11,0],[24,2],[17,1],[4,0],[3,1],[7,1],[3,0],[38,-2],[-9,2],[-10,1],[-21,0],[-5,0],[-8,-1],[-4,0],[-16,-1],[-41,-4],[-28,-2],[-2,0],[3,-1],[0,-1],[-17,-1],[-6,-1],[-7,0],[-4,0],[-3,-1],[-4,-1],[-5,-1],[-5,-1],[-6,0],[-27,-2],[-6,1],[3,0],[14,1],[7,1],[3,0],[2,0],[14,3],[2,0],[-19,0],[-11,1],[-11,-1],[-5,1],[5,1],[6,0],[57,2],[33,2],[8,1],[-6,0],[-17,-1],[-83,-3],[5,1],[31,4],[5,0],[7,0],[14,-2],[5,0],[5,1],[5,0],[5,1],[-4,0],[-7,-1],[-4,0],[-2,0],[-11,2],[4,1],[15,1],[5,-1],[10,0],[3,0],[-1,0],[-2,1],[-1,0],[3,0],[2,0],[3,0],[3,0],[11,0],[13,1],[2,0],[10,1],[4,0],[-4,0],[-3,1],[-1,1],[3,0],[14,2],[8,1],[8,1],[8,0],[8,-1],[0,-1],[1,-1],[2,0],[2,1],[1,1],[2,0],[2,1],[1,-1],[1,0],[0,-1],[3,0],[3,0],[4,0],[2,1],[5,-1],[4,0],[3,-1],[3,-1],[-1,-1],[2,0],[3,0],[1,0],[1,0],[1,0],[1,1],[-2,0],[-2,1],[-2,1],[-1,0],[3,1],[20,0],[14,2],[7,1],[16,-1],[8,1],[3,1],[5,1],[23,0],[7,1],[-4,0],[-2,0],[-2,0],[4,1],[4,0],[5,0],[5,1],[9,2],[13,2],[4,0],[2,0],[1,1],[1,1],[3,0],[4,1],[22,4],[2,1],[-2,1],[-8,-2],[-9,-1],[-3,-1],[-5,-1],[-36,-6],[-24,-2],[-3,0],[-3,0],[-6,-1],[-3,0],[-17,-1],[-9,1],[-5,0],[3,2],[20,0],[7,2],[-3,0],[-6,0],[-2,0],[-3,1],[0,1],[-5,0],[-9,-1],[-6,0],[0,1],[9,1],[4,0],[5,0],[12,0],[6,0],[3,1],[37,-1],[8,1],[-7,0],[-22,0],[-17,1],[-3,0],[-7,-1],[-3,0],[1,1],[-7,0],[-21,0],[-6,-1],[-5,-1],[-5,-1],[-7,0],[2,1],[11,2],[2,0],[5,2],[2,0],[9,1],[9,0],[8,0],[6,2],[-4,0],[-12,-1],[2,1],[4,0],[13,2],[2,0],[2,0],[1,0],[1,-1],[20,0],[6,0],[3,-1],[4,-1],[4,0],[4,0],[-7,2],[-9,0],[-9,0],[-9,1],[-2,1],[-1,1],[-1,1],[-3,1],[-6,1],[-3,1],[12,0],[5,0],[4,-1],[1,0],[-1,0],[0,-1],[2,0],[2,0],[2,1],[2,0],[7,-1],[12,-3],[7,-1],[-17,4],[-2,1],[4,1],[31,1],[-9,1],[-31,-1],[0,1],[3,0],[5,0],[3,1],[-5,0],[-9,0],[-4,1],[-4,1],[2,0],[5,1],[5,0],[-5,0],[-3,2],[-2,1],[1,2],[-6,-2],[-3,-2],[-6,-2],[-11,1],[5,1],[5,1],[4,1],[2,1],[-5,-1],[-11,-2],[-6,-1],[-8,1],[-2,1],[2,1],[3,2],[-5,0],[-3,0],[-3,0],[-4,1],[1,0],[0,1],[0,1],[-2,0],[4,1],[7,2],[4,0],[4,2],[2,0],[2,1],[5,0],[2,1],[4,0],[7,0],[7,0],[5,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[10,0],[-2,-1],[-3,0],[-1,-1],[0,-1],[1,0],[10,-1],[8,1],[5,0],[7,-1],[4,0],[4,0],[2,0],[-2,1],[-4,0],[-5,1],[-10,0],[-3,0],[-2,0],[-2,1],[-2,1],[0,1],[-2,0],[-6,1],[-9,1],[-2,0],[-4,2],[2,1],[11,1],[5,1],[2,1],[4,0],[3,0],[3,-1],[3,-1],[4,0],[-3,1],[2,2],[-4,1],[-7,0],[-9,-1],[-3,0],[-1,1],[1,1],[1,0],[3,1],[1,0],[1,0],[0,1],[1,1],[4,1],[5,1],[25,3],[7,1],[7,-1],[16,-1],[3,0],[5,-1],[3,-1],[5,0],[9,1],[4,-1],[2,0],[2,-1],[2,-1],[2,0],[4,0],[2,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[8,-2],[4,0],[-2,1],[-3,2],[-1,1],[-4,1],[-1,1],[-1,1],[-2,0],[-15,0],[-17,1],[-8,1],[-4,1],[4,1],[5,1],[1,1],[-4,1],[4,1],[13,1],[4,1],[-9,0],[-18,-2],[-50,-1],[1,0],[0,1],[1,0],[1,0],[-3,0],[-3,1],[-7,0],[4,0],[15,3],[5,0],[8,0],[15,2],[41,1],[7,0],[3,0],[2,0],[1,1],[13,0],[4,1],[12,1],[19,2],[51,2],[9,-1],[3,-1],[-4,-1],[-8,-1],[-8,0],[21,0],[-2,-1],[-6,-2],[-3,-1],[-1,-1],[2,-1],[2,0],[4,0],[2,1],[7,2],[3,0],[6,1],[17,0],[8,0],[3,0],[3,0],[4,-1],[7,0],[2,0],[1,1],[-2,1],[-11,0],[-17,0],[-22,1],[7,2],[13,2],[14,0],[12,-1],[-2,-1],[-6,-1],[-3,0],[7,0],[11,1],[32,2],[3,0],[2,0],[2,1],[1,1],[6,0],[4,1],[8,1],[6,0],[6,1],[2,2],[-3,0],[-8,0],[-12,-2],[-19,-1],[-6,0],[-6,-2],[-2,0],[-24,0],[-5,1],[-4,1],[-3,0],[-3,-1],[0,-1],[-4,-1],[-5,0],[-19,-1],[-6,0],[-4,1],[11,1],[-2,1],[-3,0],[-3,0],[-3,0],[-3,0],[-14,-2],[-8,0],[-13,-1],[-20,0],[-10,0],[-19,-3],[-32,-2],[-6,0],[-2,2],[5,1],[8,0],[6,1],[5,1],[6,1],[37,3],[41,0],[9,1],[-7,0],[-23,0],[1,1],[3,0],[7,1],[-5,0],[-4,0],[-8,0],[-3,0],[-2,0],[-1,1],[-3,0],[-4,1],[-3,1],[-1,-1],[2,-1],[4,-1],[1,-1],[-1,0],[-4,0],[-21,-2],[-3,0],[-13,0],[-5,0],[3,1],[2,0],[1,1],[-3,0],[-4,0],[-8,-1],[-8,0],[-6,1],[-5,1],[-4,1],[33,2],[7,2],[-1,1],[-1,0],[-1,1],[-2,1],[-11,0],[3,1],[4,0],[8,0],[-4,1],[-7,0],[-4,0],[-2,1],[-1,0],[-2,1],[-3,0],[-6,0],[-6,0],[-5,1],[-5,1],[30,1],[3,0],[4,-1],[13,-1],[5,0],[2,-1],[1,-1],[2,-1],[-1,-1],[0,-1],[32,1],[8,0],[-25,0],[-5,0],[0,2],[4,1],[1,1],[-7,0],[0,1],[6,0],[10,1],[6,0],[20,0],[6,0],[6,1],[6,-1],[12,-1],[12,-1],[12,0],[-5,1],[-6,1],[-34,1],[-5,1],[12,1],[22,2],[29,0],[-9,0],[-43,0],[-7,-1],[-12,-2],[-6,-1],[-14,0],[-16,-1],[-7,0],[-8,1],[1,1],[2,1],[7,1],[-2,0],[-1,1],[4,0],[9,0],[10,1],[11,0],[6,0],[-7,1],[-29,0],[-19,1],[5,1],[5,0],[6,-1],[5,0],[6,1],[5,-1],[5,0],[5,0],[6,0],[12,1],[6,0],[16,-2],[6,0],[-6,2],[-10,1],[-49,2],[-10,1],[7,0],[56,0],[1,-1],[4,-1],[3,0],[38,0],[6,1],[-5,0],[0,1],[24,0],[12,0],[9,1],[-41,0],[-8,0],[-16,-1],[-8,0],[-7,0],[-1,2],[4,1],[7,0],[30,-1],[8,1],[-7,1],[-37,0],[-3,0],[-2,0],[-8,1],[8,1],[16,1],[18,0],[19,-1],[52,-1],[-10,1],[-34,1],[-4,0],[-6,1],[-5,1],[-8,-1],[-4,1],[-2,1],[1,0],[2,0],[1,0],[-3,1],[-6,0],[-3,0],[-2,1],[0,1],[-1,0],[-6,1],[-14,-1],[-6,1],[5,1],[5,1],[6,0],[36,0],[9,1],[-2,0],[-1,1],[-2,0],[18,0],[6,0],[1,1],[4,1],[1,0],[3,0],[3,0],[6,0],[8,0],[-4,-1],[-5,-1],[-5,0],[-6,-1],[7,-1],[4,-1],[5,0],[-1,1],[-5,0],[11,1],[1,1],[1,0],[1,0],[7,0],[2,0],[3,1],[0,1],[-3,2],[-4,1],[2,0],[3,1],[1,1],[5,0],[3,0],[2,-1],[1,0],[0,-1],[3,-2],[3,-1],[9,-1],[4,0],[2,0],[4,0],[2,0],[2,0],[3,0],[1,1],[1,0],[5,1],[4,2],[0,1],[-5,1],[6,0],[34,1],[4,-1],[9,-1],[4,0],[9,0],[3,0],[3,-1],[-1,-1],[4,0],[5,1],[1,1],[-3,1],[-7,1],[-13,0],[-28,1],[-20,-1],[-5,1],[4,0],[4,1],[4,1],[4,1],[-4,1],[2,1],[4,0],[4,1],[21,0],[-3,0],[-3,-1],[-3,-2],[-1,0],[3,-1],[4,0],[4,1],[4,1],[-2,0],[0,1],[-1,0],[-1,0],[51,1],[8,-1],[6,-2],[2,0],[2,0],[0,1],[-1,1],[-3,0],[-3,1],[-17,1],[-32,0],[6,1],[7,1],[8,0],[6,-1],[5,0],[7,0],[6,0],[9,1],[6,1],[3,0],[24,-1],[22,1],[0,-1],[-10,0],[-3,0],[2,-2],[-3,0],[-4,-1],[-3,-1],[2,-1],[10,-1],[8,-1],[4,-1],[4,0],[-1,1],[-4,1],[-9,1],[-4,1],[3,1],[14,2],[3,1],[13,1],[5,0],[8,-2],[5,0],[16,0],[5,0],[10,-1],[4,-1],[13,0],[7,-1],[2,-1],[0,-1],[-4,-2],[6,-1],[8,-1],[8,0],[7,0],[-2,1],[-9,1],[-3,0],[0,1],[0,1],[7,1],[2,1],[-1,0],[-5,2],[-12,1],[-6,1],[8,1],[10,0],[61,-3],[6,0],[-2,1],[-3,0],[-3,0],[-3,1],[3,1],[-23,-1],[-13,1],[-34,1],[-5,0],[-7,0],[-10,-2],[-6,0],[-6,1],[5,0],[6,0],[5,1],[3,1],[-14,0],[-3,0],[-3,0],[-4,-1],[-6,0],[-35,1],[3,1],[5,0],[5,0],[4,1],[2,0],[5,3],[-7,0],[-19,-1],[-7,0],[-3,-1],[-1,0],[-1,-1],[-1,0],[-3,0],[-2,0],[-16,0],[-32,0],[4,-1],[7,0],[3,0],[-5,-1],[-32,-2],[-14,0],[13,1],[5,1],[0,2],[2,0],[-4,0],[-5,0],[-9,-1],[-11,-1],[-39,0],[-5,0],[-4,-1],[-5,0],[-5,1],[15,1],[4,1],[-1,0],[3,1],[8,1],[9,2],[26,4],[2,1],[-1,0],[-7,0],[2,0],[3,0],[4,1],[2,1],[7,0],[21,0],[7,0],[6,0],[5,-1],[-2,0],[-1,-1],[-3,-1],[7,0],[7,1],[7,1],[6,0],[8,1],[9,0],[15,2],[-25,-1],[-28,1],[2,0],[3,1],[-5,0],[-9,0],[-3,0],[3,1],[-3,0],[-3,1],[-4,0],[-3,0],[3,1],[6,1],[7,1],[46,3],[16,1],[5,-1],[8,0],[7,-1],[3,-2],[-3,0],[-3,0],[-6,0],[-2,0],[-4,1],[-7,0],[-5,1],[-5,1],[-5,-2],[4,0],[7,-2],[5,0],[-11,-2],[-29,0],[-13,-1],[6,0],[31,-1],[7,1],[5,0],[4,1],[5,1],[6,0],[5,0],[4,0],[4,1],[4,0],[4,0],[-1,-1],[1,0],[2,0],[3,-1],[-4,0],[-3,-1],[-8,0],[2,0],[3,-1],[-2,-1],[-2,0],[-3,-1],[-1,-1],[4,0],[8,2],[5,0],[2,0],[1,1],[1,0],[0,1],[1,0],[2,0],[31,1],[13,0],[11,-2],[1,-1],[3,-1],[12,-4],[0,-1],[0,-1],[1,0],[1,0],[6,-2],[7,-1],[9,-1],[-10,-1],[5,-1],[8,0],[10,2],[-2,1],[-13,1],[-4,1],[-1,1],[-4,2],[-1,0],[-2,1],[-6,1],[-11,1],[4,1],[8,1],[4,1],[-6,0],[-4,0],[-2,0],[7,2],[9,2],[44,3],[26,0],[-7,1],[-47,-1],[-26,-3],[-13,0],[-55,1],[-6,0],[-3,1],[0,1],[1,1],[7,1],[-1,0],[-4,0],[8,1],[8,0],[16,-1],[8,0],[3,0],[3,-2],[2,0],[3,1],[2,1],[-11,2],[1,0],[4,0],[-4,1],[-4,1],[-4,0],[-4,-1],[2,-1],[1,0],[-6,0],[-7,0],[-7,1],[-6,0],[-12,-1],[-7,0],[-3,1],[4,2],[33,3],[-8,0],[-3,0],[-4,0],[4,2],[2,0],[4,0],[3,0],[9,-1],[10,-1],[31,-1],[-5,1],[-2,0],[34,-1],[-17,2],[-9,0],[-14,0],[-7,0],[-12,2],[0,1],[45,0],[14,-1],[33,-4],[5,0],[4,1],[-4,0],[-3,0],[-3,1],[-3,0],[1,1],[0,1],[-28,2],[-9,0],[3,1],[4,1],[4,0],[4,1],[-4,0],[-4,0],[-11,-2],[-4,0],[-43,2],[2,1],[6,1],[0,1],[-3,1],[-3,0],[-2,-1],[-1,-1],[-5,2],[-4,1],[-3,-1],[1,-1],[5,-2],[1,-1],[-18,-2],[-11,-2],[-9,0],[-7,-2],[-3,0],[-4,0],[-29,-3],[-20,-1],[-4,-1],[-4,0],[-19,-1],[-7,1],[-13,0],[-6,1],[35,3],[-22,1],[2,1],[5,0],[6,-1],[4,0],[5,1],[56,1],[-7,0],[-8,0],[-9,0],[-5,2],[5,0],[5,1],[-37,-1],[-11,-1],[2,0],[1,1],[-1,0],[-2,0],[0,1],[-2,1],[-4,0],[-4,-1],[-2,0],[-2,0],[-2,1],[-2,0],[5,1],[4,1],[4,0],[15,0],[20,1],[25,0],[9,1],[-6,1],[-53,-2],[0,1],[2,0],[2,0],[4,0],[3,1],[11,1],[13,1],[8,0],[12,-1],[25,0],[9,-1],[-4,0],[-3,-1],[-2,0],[1,-2],[25,5],[8,0],[5,0],[29,2],[12,0],[2,0],[-6,-2],[-2,-1],[-1,0],[1,-1],[1,-1],[2,0],[2,0],[3,0],[-4,1],[0,1],[2,1],[3,0],[4,1],[4,0],[4,1],[1,1],[35,1],[8,0],[8,-1],[3,-1],[1,-1],[1,-1],[2,0],[2,0],[1,1],[2,1],[3,1],[11,2],[3,0],[2,1],[3,1],[-3,0],[3,1],[8,1],[15,-1],[0,1],[-38,1],[-12,1],[9,1],[2,1],[-5,0],[-3,0],[-9,-1],[-2,-1],[-7,-1],[-43,1],[-2,0],[-2,1],[-2,0],[-4,1],[-4,0],[-2,0],[-3,-1],[-32,-3],[2,0],[3,0],[4,0],[4,-1],[-10,-1],[-10,0],[-9,2],[-8,2],[3,0],[3,1],[4,0],[4,0],[3,2],[11,2],[14,1],[11,1],[-2,-1],[1,-1],[2,-1],[4,0],[1,0],[0,1],[1,0],[10,0],[3,0],[8,2],[2,0],[0,2],[1,0],[6,0],[-1,0],[-1,-1],[4,0],[9,0],[5,-1],[-4,0],[-4,-1],[3,0],[3,-1],[2,-1],[-6,-1],[-15,1],[-7,0],[3,-1],[0,-1],[-1,0],[-2,-1],[3,0],[3,0],[3,-1],[3,1],[-2,1],[2,0],[16,0],[6,1],[1,0],[3,1],[11,0],[4,0],[5,1],[6,1],[4,1],[4,0],[-8,1],[-4,1],[0,2],[4,0],[6,0],[6,0],[3,1],[-1,1],[-1,0],[0,1],[1,0],[3,1],[4,0],[8,0],[6,0],[1,-1],[1,-2],[4,0],[-2,-1],[-2,0],[-2,-1],[-3,0],[4,-1],[4,0],[5,1],[3,0],[2,-1],[-1,-2],[-2,-1],[-5,-1],[1,-1],[4,-2],[-2,-1],[-3,-1],[-4,0],[-2,-1],[27,-2],[8,-2],[4,-1],[1,-2],[0,-2],[1,-1],[4,-1],[11,0],[4,-1],[2,0],[30,-4],[11,-1],[7,0],[-6,1],[-7,0],[-4,1],[3,2],[-33,1],[-10,2],[-4,0],[1,1],[2,1],[2,0],[0,1],[-1,2],[1,1],[-3,1],[-4,0],[-9,1],[9,0],[7,0],[6,-1],[25,-5],[1,-1],[10,-1],[3,0],[-1,1],[-1,0],[-3,1],[1,1],[3,0],[1,0],[-4,1],[-10,0],[-3,1],[-5,1],[-9,1],[0,1],[5,0],[6,0],[4,0],[6,-2],[6,-1],[7,0],[8,0],[7,0],[-5,0],[-10,1],[-4,0],[0,1],[3,1],[6,1],[-32,1],[2,1],[4,1],[4,1],[4,0],[4,0],[2,1],[3,1],[6,0],[14,-2],[27,-1],[5,0],[-1,0],[-4,0],[3,1],[3,0],[-26,1],[-5,1],[-8,1],[-5,1],[-13,-1],[-23,-2],[-14,1],[1,0],[3,1],[-8,0],[-4,1],[-3,1],[12,-1],[7,0],[9,1],[10,0],[2,1],[-1,0],[-2,0],[4,1],[4,-1],[5,0],[4,0],[-2,1],[-3,1],[-9,0],[0,1],[31,-2],[11,0],[-4,1],[-10,0],[-13,2],[-2,0],[-2,0],[0,1],[-1,1],[-3,-1],[-6,-1],[-2,0],[-55,0],[-2,0],[5,1],[7,1],[31,0],[2,0],[-2,1],[-2,0],[-35,1],[-16,1],[-4,1],[4,0],[7,2],[5,0],[5,0],[8,-1],[5,0],[3,0],[2,0],[3,1],[3,-1],[2,0],[1,-1],[2,0],[5,-1],[12,1],[2,-1],[26,-1],[12,-2],[0,-3],[42,-4],[7,0],[8,0],[-13,1],[-2,1],[-2,1],[-21,2],[-7,1],[-5,2],[3,1],[-9,1],[-10,1],[-26,1],[-13,1],[-4,1],[-5,0],[-12,0],[-6,0],[10,1],[-4,0],[-7,0],[-4,1],[10,1],[22,0],[16,2],[63,1],[7,-1],[19,-1],[10,0],[5,-1],[2,-1],[-1,0],[-9,-2],[-3,0],[6,0],[34,1],[9,1],[4,1],[18,0],[5,0],[7,-2],[1,0],[3,-2],[1,-1],[6,-1],[25,-2],[-4,-2],[-1,0],[1,-1],[1,0],[2,0],[1,-1],[-1,-1],[-2,-1],[0,-1],[4,0],[5,1],[2,0],[0,1],[-3,1],[0,1],[5,1],[11,0],[-7,3],[-9,1],[-20,2],[-4,0],[-3,1],[-3,1],[-2,1],[-2,1],[2,1],[5,0],[4,1],[-1,1],[18,0],[40,-3],[19,-1],[-8,2],[-42,2],[7,1],[34,0],[40,-1],[25,-2],[12,1],[-13,0],[-47,4],[-34,0],[18,5],[0,1],[-5,0],[-10,-1],[-10,-1],[-17,0],[-9,-1],[-16,-3],[-49,-1],[-11,1],[5,0],[14,1],[3,0],[-1,1],[-5,1],[-5,0],[-5,0],[-2,1],[-5,0],[-2,0],[-3,0],[-18,-2],[-2,-1],[-10,-1],[-25,0],[-17,-1],[-31,0],[-6,0],[-2,1],[0,1],[-1,1],[-2,1],[-3,1],[-2,0],[-1,1],[2,0],[3,1],[14,1],[9,-1],[5,0],[4,0],[3,1],[-1,1],[-3,0],[-5,0],[-3,0],[-2,1],[-2,1],[-1,1],[2,1],[6,1],[8,1],[16,1],[26,2],[27,1],[8,1],[8,0],[6,-1],[6,-1],[9,-1],[0,-1],[2,-1],[9,0],[4,0],[5,0],[4,0],[-1,1],[-3,0],[-5,0],[-3,0],[-4,1],[-2,0],[-2,0],[-1,1],[1,1],[2,0],[2,0],[21,1],[10,1],[5,0],[9,-1],[5,0],[5,0],[4,0],[8,-2],[4,0],[5,-1],[4,0],[7,0],[20,1],[19,-2],[5,1],[-13,1],[-30,1],[-11,2],[-4,1],[-6,1],[-7,0],[-6,-1],[-6,0],[-7,0],[-14,2],[7,1],[17,1],[14,1],[8,1],[7,0],[25,-2],[36,-1],[15,-2],[0,2],[-11,1],[-21,1],[-42,2],[18,1],[15,2],[5,1],[8,0],[7,1],[3,0],[3,0],[5,-1],[6,-1],[7,0],[6,0],[7,0],[-6,2],[-28,1],[1,1],[2,1],[-46,-1],[-15,-2],[-8,0],[3,1],[10,3],[3,0],[7,0],[2,1],[1,1],[-1,1],[-3,0],[-7,0],[16,3],[11,2],[12,2],[5,1],[-2,0],[-6,0],[-3,1],[7,0],[49,1],[21,2],[15,0],[30,0],[-17,1],[-2,1],[1,1],[1,1],[3,1],[3,1],[-6,0],[-15,0],[-6,0],[3,1],[0,3],[3,1],[7,1],[16,1],[6,2],[-2,1],[3,1],[5,1],[4,1],[-2,0],[-1,1],[-1,0],[1,1],[-1,0],[-2,0],[-1,1],[1,1],[1,0],[1,0],[7,0],[11,1],[2,0],[1,1],[2,0],[3,0],[6,0],[5,-1],[4,-1],[10,-2],[1,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[1,0],[18,0],[5,0],[4,-1],[4,-1],[2,-1],[-1,-1],[-2,-3],[-1,-1],[4,0],[1,-1],[-1,-1],[-2,0],[-1,-1],[1,-1],[5,2],[2,1],[1,1],[0,3],[0,1],[2,1],[5,1],[3,-1],[2,-2],[1,-1],[2,-1],[6,-1],[6,0],[4,-1],[2,0],[3,-1],[3,0],[1,1],[-1,1],[-3,0],[-2,1],[-2,0],[4,1],[10,1],[21,0],[9,-1],[16,-1],[18,-1],[1,0],[1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-8,2],[-5,0],[-63,3],[-8,1],[-4,0],[-2,1],[-1,0],[-1,1],[-1,1],[-3,1],[-4,0],[-8,0],[-9,0],[-5,1],[-3,0],[0,1],[2,1],[3,0],[3,0],[-5,2],[1,1],[6,0],[16,1],[15,1],[52,1],[2,-1],[1,-1],[0,-1],[-1,0],[-2,-1],[-2,0],[4,0],[4,0],[3,0],[3,-1],[2,-1],[0,-1],[1,0],[4,-1],[18,-2],[-2,-1],[3,-1],[10,-1],[15,-2],[5,0],[48,-1],[7,-1],[-2,-2],[-5,-1],[-15,-1],[-13,1],[-3,0],[-6,-1],[-6,-1],[1,0],[2,-1],[2,0],[2,0],[7,1],[2,0],[4,1],[4,-1],[1,-1],[-5,0],[3,-1],[9,-1],[4,0],[4,0],[7,1],[3,1],[8,-1],[15,-1],[7,1],[-5,1],[-5,0],[-4,1],[-2,2],[1,0],[1,1],[2,0],[0,1],[-2,1],[-4,1],[-19,3],[-6,0],[-6,0],[-33,0],[-9,0],[-2,1],[-6,1],[0,1],[-1,1],[-2,0],[-6,0],[-6,1],[-4,1],[-2,1],[3,2],[6,1],[8,1],[26,1],[4,0],[6,-1],[3,0],[4,0],[3,-1],[-2,1],[-3,1],[-2,1],[-1,1],[-19,0],[-11,-1],[-11,0],[-5,-1],[-4,-1],[-5,1],[-5,0],[-3,1],[-4,4],[33,6],[3,3],[5,1],[5,0],[10,0],[4,0],[8,2],[4,0],[10,1],[35,-1],[9,1],[18,1],[42,1],[11,-1],[-2,-1],[-2,0],[-9,-2],[1,-1],[1,-1],[-2,-1],[-5,-1],[-4,-1],[-4,-1],[4,-1],[6,-1],[2,-1],[-2,-2],[-4,-1],[-13,-4],[-2,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[3,-1],[1,-1],[-1,-1],[-7,0],[-8,-1],[-7,-1],[-5,-2],[37,4],[3,1],[4,2],[2,2],[-4,1],[11,5],[-1,0],[-1,0],[0,1],[-1,0],[5,0],[9,0],[29,-1],[16,-1],[15,0],[12,0],[-8,0],[-10,0],[-10,1],[-8,1],[-7,0],[-9,0],[-7,1],[-3,2],[-1,1],[-3,1],[-1,0],[0,1],[0,1],[3,1],[5,1],[5,1],[-2,1],[4,1],[9,1],[4,0],[8,3],[3,1],[4,0],[0,-1],[-1,-1],[-5,-1],[-3,-3],[9,1],[6,1],[11,4],[8,3],[7,3],[2,1],[3,0],[1,0],[0,-1],[-1,0],[1,-2],[0,-1],[2,-1],[3,0],[3,-1],[1,0],[0,2],[-2,3],[2,1],[6,1],[8,1],[6,1],[5,-1],[24,-5],[2,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-2,0],[-2,-1],[-3,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-4,-3],[1,-1],[1,0],[11,-2],[2,0],[0,-1],[0,-1],[0,-1],[-2,-1],[-2,0],[-9,0],[-9,-1],[-4,-1],[7,-1],[-3,0],[-3,-1],[-2,-1],[-1,-1],[3,-1],[-2,-2],[-6,0],[-6,0],[-2,-2],[-4,-2],[-5,-1],[-13,-1],[-13,-2],[-14,-1],[-4,0],[1,0],[3,-1],[1,0],[-15,-3],[-5,-1],[7,-1],[6,1],[6,1],[7,1],[4,2],[6,1],[36,3],[10,0],[2,1],[18,5],[4,1],[12,2],[4,1],[2,2],[1,1],[2,1],[3,0],[2,0],[3,0],[4,0],[3,-1],[11,-1],[17,-2],[34,-1],[4,0],[4,-1],[3,0],[4,0],[-10,1],[-22,2],[-8,1],[-6,2],[-2,1],[-5,1],[-20,1],[-12,1],[-2,1],[1,1],[9,2],[4,2],[-2,2],[-5,1],[-7,1],[7,1],[31,0],[33,2],[4,1],[4,1],[1,1],[-2,1],[-4,1],[-2,1],[9,0],[52,5],[10,0],[0,-1],[-26,-2],[-15,-3],[-6,-1],[5,-1],[5,1],[5,-1],[3,-1],[-3,0],[-1,0],[-2,0],[-1,-1],[13,-2],[6,0],[7,1],[-4,0],[-7,1],[-2,1],[5,0],[7,0],[5,1],[-2,1],[6,1],[20,0],[4,0],[-2,-1],[-9,-2],[-3,-1],[5,0],[7,0],[6,1],[4,1],[0,1],[-3,4],[27,0],[-5,1],[-8,0],[-7,1],[-7,0],[4,3],[6,2],[9,1],[10,1],[14,0],[39,-3],[-1,-1],[3,-1],[9,-1],[-7,-2],[7,-1],[9,-1],[9,0],[17,-1],[35,-4],[6,-1],[2,-2],[4,-1],[22,-2],[-4,0],[-5,0],[-8,0],[5,-1],[7,0],[7,0],[6,0],[3,1],[-2,1],[-7,1],[-1,1],[-11,2],[-22,2],[5,0],[15,-1],[4,1],[-1,1],[-6,1],[-10,0],[-3,1],[-1,1],[0,1],[-1,1],[-2,1],[0,1],[3,1],[-1,1],[-1,0],[2,0],[3,1],[10,-1],[6,1],[4,0],[2,-1],[-2,-2],[6,-1],[2,1],[0,3],[-2,2],[4,0],[7,0],[3,0],[0,1],[-38,-1],[-19,0],[-16,1],[9,2],[34,0],[5,0],[4,1],[7,1],[7,1],[3,0],[1,2],[-18,-2],[-3,0],[-5,-1],[-7,0],[-28,1],[-2,-1],[-3,-1],[-3,0],[-20,-1],[-7,0],[-13,3],[-5,0],[-23,-1],[-7,1],[-3,1],[-7,2],[-1,1],[4,0],[6,1],[4,1],[-32,-1],[-11,0],[-4,0],[-3,1],[-2,0],[-3,1],[-3,0],[-8,1],[-1,0],[6,1],[8,1],[9,1],[7,0],[16,1],[8,1],[-1,-2],[2,-1],[11,-2],[0,1],[0,1],[3,1],[1,1],[1,1],[0,1],[1,1],[4,1],[4,0],[5,0],[3,0],[0,-1],[0,-1],[1,0],[5,-1],[6,-1],[11,0],[6,-1],[20,-3],[2,-1],[1,0],[3,-1],[2,-1],[10,-1],[2,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[2,0],[2,0],[2,0],[2,0],[-5,1],[-11,0],[-4,1],[-1,2],[4,1],[39,4],[5,0],[5,-1],[-3,0],[-6,-1],[-2,-1],[6,0],[15,1],[5,0],[2,0],[1,-1],[0,-3],[2,-1],[6,0],[3,1],[0,1],[-3,2],[29,0],[9,0],[3,-1],[-4,-1],[-6,-2],[-4,0],[4,-1],[1,-1],[1,-2],[2,-1],[-3,-1],[-7,0],[-3,-1],[9,0],[31,1],[28,-2],[8,0],[-6,1],[-6,1],[-43,1],[2,1],[6,3],[4,2],[-1,0],[7,1],[7,0],[8,0],[11,-1],[9,-1],[3,0],[3,0],[2,1],[3,-1],[-1,-1],[2,0],[17,0],[68,-1],[2,-1],[-1,0],[-26,-5],[-5,0],[-8,-1],[-16,-1],[-43,-1],[-18,0],[-9,0],[-10,-1],[-25,-2],[4,0],[6,0],[7,0],[8,1],[59,1],[16,2],[36,1],[26,2],[9,1],[-4,-3],[0,-1],[-1,-1],[1,-1],[2,-2],[2,-1],[3,0],[5,0],[8,1],[7,0],[3,-1],[-1,-1],[-1,-1],[1,-1],[6,-1],[-3,-1],[-3,0],[-4,0],[-3,-1],[7,0],[8,0],[29,3],[4,0],[3,0],[1,0],[1,0],[3,-1],[1,0],[-1,0],[-6,-2],[5,0],[21,2],[11,1],[2,0],[2,1],[4,1],[5,0],[4,0],[-12,1],[-45,1],[-5,0],[-23,4],[4,0],[8,0],[4,0],[3,1],[4,0],[19,0],[5,1],[6,1],[-6,1],[-13,0],[-5,1],[6,1],[18,0],[4,1],[-21,0],[-12,0],[-8,2],[7,0],[26,1],[7,0],[17,0],[3,0],[1,1],[6,0],[-7,0],[-7,1],[-42,-1],[5,1],[20,1],[40,1],[10,1],[-24,0],[2,0],[6,2],[-5,0],[-9,-1],[-5,0],[5,1],[7,3],[5,0],[6,1],[7,0],[12,2],[25,3],[15,3],[6,0],[18,1],[63,-1],[26,-1],[3,-1],[6,0],[3,-1],[2,1],[0,1],[-3,0],[-7,0],[-13,3],[-6,0],[-28,1],[-2,1],[2,0],[23,3],[6,1],[2,0],[2,0],[2,0],[2,1],[1,1],[0,2],[2,0],[2,1],[10,1],[4,1],[4,0],[9,-1],[16,0],[5,0],[27,-4],[8,-1],[9,0],[9,1],[3,1],[-3,2],[-15,2],[-4,1],[1,0],[2,0],[-16,1],[-5,1],[-5,1],[-3,0],[-4,0],[-12,0],[-27,1],[-13,0],[-6,1],[-5,1],[5,1],[0,1],[1,2],[22,1],[7,1],[5,-1],[-2,-1],[10,0],[4,-1],[-1,-1],[13,0],[13,-1],[10,-2],[4,0],[4,2],[-3,0],[-2,1],[-7,1],[2,1],[0,1],[1,0],[4,1],[5,0],[7,-1],[7,0],[3,1],[-20,2],[-7,0],[3,1],[2,0],[-8,1],[-3,0],[-2,1],[4,0],[5,1],[5,0],[5,0],[-4,0],[-8,0],[-4,1],[5,0],[7,1],[6,0],[26,-1],[2,0],[1,0],[2,-1],[2,0],[7,-1],[3,0],[3,-1],[-2,0],[-4,-1],[-4,0],[39,0],[-4,1],[2,2],[3,1],[-4,0],[5,1],[9,-1],[7,-1],[-2,-2],[-7,-1],[-8,-1],[-9,-1],[-8,-1],[4,0],[9,0],[4,0],[4,-1],[10,0],[4,0],[0,1],[2,1],[9,2],[5,1],[2,0],[2,0],[2,-1],[1,0],[4,-1],[12,-2],[2,-1],[6,-2],[-5,-3],[3,0],[2,0],[2,1],[2,0],[2,1],[4,0],[7,0],[2,0],[10,5],[1,1],[-2,1],[-3,0],[-3,1],[-3,1],[-2,1],[6,2],[12,-1],[28,-3],[0,-1],[-2,-1],[-4,-1],[-4,0],[-12,-2],[-5,0],[5,-1],[5,0],[11,2],[2,0],[4,-1],[4,0],[1,0],[7,2],[7,0],[10,1],[10,0],[5,-1],[1,0],[2,-1],[2,-1],[2,0],[3,0],[2,1],[2,1],[1,0],[8,0],[7,1],[7,0],[6,-1],[2,-1],[2,0],[0,-1],[-7,-1],[-6,-1],[-11,0],[-5,-1],[-11,-2],[-7,-1],[-22,-1],[1,-1],[1,0],[4,-1],[-4,-1],[-5,-1],[-5,0],[-9,-1],[-11,-2],[-15,0],[-4,-2],[-18,-2],[-11,-1],[-4,-1],[-8,-1],[-4,-1],[-32,-3],[-6,-1],[40,2],[10,-2],[-11,-1],[-43,0],[9,-1],[34,0],[11,-2],[-5,0],[-4,0],[-1,-1],[4,-2],[0,-1],[-2,-1],[-13,1],[-10,0],[-18,-3],[3,0],[4,0],[6,0],[-4,-1],[-3,0],[0,-1],[4,-1],[4,1],[6,0],[5,1],[4,-1],[1,-1],[-1,-1],[-34,-4],[-7,0],[-3,0],[-3,-1],[-2,0],[-1,0],[-2,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[1,-1],[-1,-1],[-4,-1],[-1,-4],[5,-1],[9,-2],[8,0],[-1,3],[-2,0],[-3,1],[-1,0],[1,2],[4,0],[16,1],[-2,0],[-3,-2],[4,0],[4,0],[3,0],[3,0],[-7,0],[-3,-1],[-3,0],[3,-1],[2,-1],[3,0],[5,-1],[6,1],[10,0],[6,1],[6,0],[4,2],[9,3],[3,1],[4,1],[5,0],[5,0],[3,0],[4,1],[4,1],[2,1],[3,1],[15,2],[6,2],[-6,1],[-22,1],[5,1],[50,7],[50,9],[6,1],[7,0],[8,1],[7,2],[5,1],[10,5],[4,1],[3,1],[8,0],[4,0],[2,1],[3,1],[2,1],[6,1],[15,2],[12,2],[16,3],[56,6],[18,0],[-1,0],[-2,-1],[11,-1],[-2,-1],[1,0],[2,0],[1,-1],[-1,-1],[-2,0],[-3,-1],[-3,0],[-3,-1],[-3,0],[-1,-1],[1,-1],[2,0],[3,0],[3,0],[4,0],[3,1],[3,-1],[-1,0],[-2,-1],[-4,-1],[-3,-1],[-3,-1],[-1,-2],[1,-1],[-12,-2],[-70,-4],[8,-1],[29,2],[9,0],[20,-1],[8,-1],[-13,-6],[1,-1],[-3,-1],[-5,0],[-3,-1],[0,-1],[1,-1],[2,0],[2,-1],[-9,-1],[-5,-1],[-2,-1],[1,-1],[2,-1],[0,-1],[-2,-1],[-1,0],[-1,-1],[2,-1],[9,0],[3,0],[2,0],[1,1],[1,0],[2,1],[4,0],[6,0],[3,0],[-4,1],[-1,1],[2,0],[5,1],[1,0],[7,0],[7,0],[7,0],[7,1],[4,1],[1,1],[2,1],[31,0],[-3,-1],[4,0],[24,1],[6,0],[6,-1],[-3,1],[-8,0],[-2,1],[-5,1],[-11,2],[-3,0],[6,1],[2,0],[2,1],[-6,0],[-2,0],[4,2],[7,1],[8,1],[6,0],[2,0],[4,-1],[2,0],[3,0],[10,0],[17,-1],[5,0],[-7,1],[-24,2],[-8,1],[2,1],[12,2],[-4,1],[-10,0],[-4,1],[7,2],[7,0],[34,1],[7,-1],[3,1],[3,1],[-5,0],[-6,0],[-3,1],[2,1],[5,2],[3,1],[6,0],[65,-2],[-35,2],[4,0],[3,0],[3,1],[3,0],[-3,1],[-3,0],[-2,1],[-2,0],[-5,0],[-2,0],[-1,0],[0,1],[-1,0],[-2,0],[-8,-1],[-4,0],[-2,1],[1,1],[4,1],[1,0],[-4,0],[-5,-1],[-4,-1],[-4,0],[-34,1],[-9,1],[-7,1],[2,2],[4,1],[5,0],[42,-2],[-2,1],[-2,1],[-6,1],[-4,0],[-10,1],[-4,0],[-2,2],[7,1],[53,-2],[5,-1],[2,-2],[5,-1],[6,0],[5,1],[-2,1],[-1,1],[1,1],[3,1],[-8,0],[-3,1],[-1,1],[-1,1],[0,1],[2,1],[8,1],[10,-1],[7,1],[2,2],[15,-2],[3,-1],[-7,-2],[6,0],[15,0],[6,0],[10,-1],[5,-1],[20,1],[5,1],[4,0],[5,1],[5,0],[4,-1],[1,0],[0,-1],[1,0],[3,0],[1,0],[14,2],[5,1],[6,0],[4,0],[5,-1],[5,0],[2,-1],[-2,-1],[-5,-1],[-4,0],[-3,-1],[4,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[4,1],[9,0],[-1,0],[-2,-1],[-2,0],[-3,-1],[6,0],[26,2],[35,0],[9,-2],[2,0],[2,0],[0,-1],[-2,0],[-2,-2],[-6,-1],[-1,-1],[-4,-2],[-9,0],[-18,0],[4,-1],[4,0],[5,0],[5,0],[-5,-1],[-6,-1],[-13,0],[2,0],[1,-1],[1,0],[1,0],[-32,0],[4,0],[4,-1],[9,0],[-8,-2],[-10,0],[-10,0],[-10,0],[-13,1],[-5,0],[-9,-1],[-3,1],[1,1],[-3,0],[-3,0],[-3,-1],[-4,0],[-2,0],[-30,-1],[-3,0],[-2,1],[-6,-1],[-3,0],[4,-1],[8,0],[4,0],[-4,-1],[-4,0],[-3,0],[-2,-1],[20,1],[10,0],[20,0],[1,-1],[1,0],[3,0],[17,0],[6,0],[6,-1],[-14,-2],[-33,-2],[-14,-1],[1,0],[-19,-2],[-10,-1],[-7,0],[-11,-1],[-6,0],[34,0],[84,5],[23,3],[7,0],[4,-1],[-3,-4],[-12,-3],[-16,-2],[-25,-2],[-6,-1],[-9,-1],[-20,-1],[-9,-1],[-5,-2],[3,-1],[2,0],[3,-3],[2,1],[5,3],[3,0],[4,1],[8,0],[-5,-1],[-4,-1],[28,2],[29,1],[-24,-2],[-7,-1],[-2,-1],[2,-1],[8,1],[6,1],[5,0],[-1,0],[-4,0],[-2,-1],[1,0],[5,-1],[2,1],[10,2],[8,1],[9,1],[10,1],[9,0],[-3,-2],[-4,0],[-5,-1],[-4,-1],[-4,-1],[-8,-2],[-10,-2],[-2,-1],[-1,-1],[2,-1],[2,-2],[-1,-1],[-3,-2],[0,-3],[5,-5],[0,-2],[-3,-1],[-3,-1],[-4,-1],[-9,-2],[-6,-1],[-8,0],[-6,0],[12,-1],[15,2],[13,2],[8,3],[2,2],[-2,0],[-2,1],[-2,2],[1,2],[-1,0],[-1,1],[-1,2],[1,1],[5,2],[2,1],[1,2],[0,1],[0,1],[4,1],[2,1],[8,1],[7,0],[1,1],[0,1],[1,0],[6,1],[8,1],[9,0],[7,0],[0,-1],[3,-2],[4,0],[5,0],[1,1],[-1,0],[-2,1],[2,1],[4,0],[7,1],[-17,1],[-6,0],[-12,2],[-2,0],[1,1],[18,5],[1,1],[2,1],[2,1],[4,1],[4,0],[10,0],[8,-1],[2,1],[-2,1],[-8,1],[-9,0],[-3,1],[7,2],[20,3],[12,3],[8,1],[8,2],[8,0],[61,1],[6,0],[5,-1],[-10,0],[0,-1],[38,0],[9,-1],[0,-1],[0,-1],[1,0],[2,0],[2,-1],[4,0],[19,-1],[6,0],[-6,-1],[-20,-2],[6,-1],[23,0],[-5,0],[-6,-1],[-12,0],[2,-1],[2,0],[3,0],[3,0],[-3,-1],[-5,0],[-6,-1],[-5,0],[1,0],[2,0],[-3,-1],[5,-1],[6,0],[9,3],[6,0],[29,1],[42,3],[11,0],[8,-2],[1,-2],[-5,-2],[-14,-2],[-5,-1],[33,1],[4,0],[2,1],[3,0],[2,1],[21,3],[8,0],[18,1],[8,-1],[24,-2],[-5,-1],[-7,-1],[-14,0],[8,-1],[26,0],[22,-3],[3,0],[-5,-1],[-14,-1],[-27,-1],[-6,-1],[3,0],[3,0],[2,0],[1,-1],[-9,0],[-20,1],[-9,0],[0,-1],[38,-1],[68,3],[11,0],[19,-1],[4,-1],[-9,-1],[40,-4],[2,-2],[11,-1],[6,-1],[2,1],[4,1],[20,1],[5,0],[6,-2],[4,-1],[4,0],[13,-3],[-3,-1],[-4,-1],[-3,0],[1,-1],[2,-1],[4,0],[4,-1],[3,-1],[-9,0],[-25,-2],[-90,-1],[-8,-1],[0,-1],[-6,-1],[-21,-1],[-6,-1],[-4,-1],[7,-1],[-7,-2],[-9,-1],[-40,-1],[-6,-1],[-1,-1],[4,0],[6,0],[-110,2],[-110,2],[2,0],[-67,2],[-67,2],[-9,0],[-4,-1],[36,0],[-5,-1],[-10,-1],[-11,-1],[-7,0],[4,-1],[8,-1],[16,0],[10,1],[3,0],[11,-1],[4,0],[-22,0],[-6,-1],[45,-1],[16,-1],[34,0],[-2,-1],[-1,0],[9,0],[5,0],[2,-1],[-2,0],[-13,-1],[7,-1],[43,1],[11,-1],[69,-3],[-5,0],[-21,-2],[-10,-1],[-10,-1],[-11,-1],[-5,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-2,0],[-6,-1],[11,0],[6,0],[8,2],[10,2],[5,0],[3,0],[4,0],[3,0],[3,0],[3,-1],[6,1],[9,-1],[11,1],[6,0],[-2,-1],[1,-1],[2,0],[-1,-1],[8,-2],[-5,-1],[-4,-2],[-9,-1],[-11,-1],[-1,-1],[-5,-1],[-3,0],[-2,-1],[-3,-1],[-5,0],[-10,-1],[-4,0],[8,0],[-2,-1],[-7,-1],[-4,-1],[8,0],[4,1],[6,1],[27,3],[8,1],[25,0],[19,-1],[1,0],[20,3],[9,0],[7,0],[-4,-1],[-6,-2],[-4,-1],[-11,0],[-4,-1],[0,-1],[4,1],[5,1],[12,0],[10,1],[3,0],[4,-1],[3,-1],[15,-2],[2,1],[1,0],[-2,1],[-4,0],[-10,3],[-2,1],[5,0],[13,0],[4,1],[1,1],[-4,0],[-4,1],[-4,1],[1,1],[1,1],[0,2],[-1,1],[18,0],[11,0],[3,0],[5,-1],[-1,-1],[-11,-1],[7,0],[17,0],[6,0],[1,-1],[0,-1],[0,-1],[2,-1],[0,-1],[0,-3],[0,-2],[-6,-2],[-11,0],[5,-1],[16,1],[3,0],[2,1],[1,2],[-2,0],[0,1],[4,0],[0,1],[1,0],[-1,1],[-2,1],[-1,1],[2,0],[-2,2],[8,0],[50,0],[5,-1],[-3,-1],[-2,0],[1,-1],[3,0],[4,0],[4,0],[8,1],[1,0],[12,1],[1,-3],[6,-1],[2,-1],[1,-1],[0,-1],[4,-1],[7,-2],[0,-5],[-1,-2],[-6,-2],[-11,-1],[-23,-1],[-57,1],[-7,1],[-43,6],[-15,1],[-11,0],[-10,0],[-5,0],[1,-1],[5,-1],[15,0],[2,-1],[2,-1],[1,-2],[-2,-1],[-3,-1],[-4,-1],[-7,0],[-2,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-3,-1],[-29,-3],[-8,-2],[-4,0],[-12,-1],[-34,0],[-6,0],[-15,-2],[-14,-1],[-40,0],[-13,-1],[-10,-2],[-2,-1],[-2,-2],[-2,-1],[-1,0],[0,-1],[-2,-1],[-5,-1],[-1,-1],[-4,-3],[-3,-1],[-4,-1],[-12,-2],[-12,-2],[-13,-1],[-13,0],[-8,0],[-5,0]],[[8137,9288],[1,-1],[29,1],[-1,-1],[-4,-2],[0,-1],[5,0],[12,1],[6,0],[-1,-1],[4,0],[6,1],[4,0],[5,0],[11,1],[5,-1],[1,-2],[-10,-1],[-13,-1],[-10,-1],[3,0],[5,0],[4,-1],[5,0],[0,-1],[-6,-1],[-2,0],[6,0],[8,0],[8,0],[7,0],[5,1],[9,1],[5,0],[12,1],[5,0],[2,-1],[-2,-1],[-7,-1],[-15,-1],[-2,0],[-4,-1],[-4,0],[-24,0],[-5,0],[-6,-1],[-5,0],[-23,0],[-11,1],[-6,0],[-3,-2],[6,0],[3,0],[0,-1],[-20,1],[-16,-1],[-11,-1],[-5,1],[-3,0],[-7,2],[-8,1],[-9,0],[28,2],[6,1],[-17,0],[-4,1],[-4,0],[-30,-2],[-5,0],[-3,1],[0,1],[0,1],[13,1],[-8,1],[4,0],[5,1],[11,0],[4,0],[5,-1],[5,0],[4,0],[-1,1],[-2,0],[-2,0],[4,1],[4,0],[8,-1],[7,0],[1,0],[4,0],[4,-1],[10,1],[17,-2],[2,-1],[-1,2],[-3,1],[-4,1],[-30,3],[3,1],[9,-1],[5,1],[3,0],[3,1],[3,0],[3,-1]],[[6613,9537],[21,-2],[8,-1],[3,0],[-1,-1],[-3,0],[-1,-1],[2,0],[0,-1],[-2,0],[-3,0],[-6,-2],[-1,0],[0,-1],[-11,-2],[2,0],[-6,-1],[-22,-1],[-7,0],[-3,2],[-1,0],[-3,0],[-3,0],[-9,1],[-3,0],[-5,1],[-15,2],[-12,3],[-6,1],[7,2],[13,1],[25,0],[11,-1],[20,1],[11,0]],[[7979,9679],[-5,0],[-6,0],[-3,0],[1,1],[5,2],[6,1],[9,1],[15,3],[60,6],[16,4],[-1,0],[3,1],[7,1],[4,0],[6,0],[18,0],[0,-1],[-4,0],[-40,-6],[-24,-2],[-11,-1],[-6,-1],[1,0],[1,-1],[-10,-1],[-32,-3],[-6,-2],[1,-1],[2,0],[0,-1],[-3,0],[-4,0]],[[7587,9809],[22,-2],[12,-1],[0,-1],[-18,-1],[-5,0],[0,-1],[-5,-1],[-49,-1],[-9,0],[-8,-2],[-3,-2],[4,-2],[11,-2],[58,-2],[6,-1],[18,-2],[22,-1],[11,-2],[4,0],[73,-2],[13,1],[9,1],[9,1],[38,1],[5,0],[6,0],[5,1],[4,-1],[3,-1],[3,-1],[8,0],[6,-1],[4,-3],[-21,-2],[-21,-3],[-4,-3],[-18,-2],[-13,-3],[-4,0],[-4,-1],[-4,-1],[-4,0],[-8,-1],[-2,-1],[-5,-2],[-11,-3],[-5,-1],[-37,-4],[-46,-2],[-35,-4],[-8,0],[-20,-4],[4,-2],[-12,-2],[-73,-1],[-52,-1],[-21,1],[-32,1],[-6,0],[-5,0],[-2,0],[-1,1],[-3,0],[-3,2],[9,1],[18,1],[-3,2],[0,1],[-2,0],[-8,1],[-6,2],[-2,0],[-1,0],[3,1],[3,1],[30,2],[9,1],[17,1],[13,2],[7,1],[4,1],[-26,0],[-14,-1],[-7,-2],[-6,1],[2,0],[5,1],[6,1],[-10,1],[-13,1],[-15,0],[-36,-2],[-2,0],[-9,-2],[-12,-1],[-97,-2],[-96,-1],[-12,-1],[-52,-1],[-13,0],[-27,0],[-7,0],[-6,1],[-1,1],[4,1],[12,1],[-3,1],[-7,0],[-7,1],[5,1],[-2,0],[-3,0],[-6,0],[3,1],[3,0],[7,0],[-2,1],[-2,0],[74,3],[7,0],[4,1],[0,1],[-1,1],[0,1],[1,0],[3,1],[1,0],[-1,1],[-1,0],[0,1],[1,1],[2,1],[1,0],[16,2],[8,2],[12,0],[5,1],[0,2],[10,1],[19,2],[1,1],[-2,0],[-3,1],[-1,1],[4,0],[25,1],[-3,1],[-3,1],[-3,0],[-4,0],[-6,0],[-50,2],[-12,1],[-17,1],[-85,7],[-1,0],[6,1],[21,2],[83,3],[82,3],[82,-1],[82,0],[22,1],[10,1],[101,2],[22,-1],[17,-1],[45,-2]],[[7154,9838],[6,-2],[12,1],[22,1],[7,1],[28,-1],[2,0],[2,0],[1,-1],[2,0],[5,0],[4,0],[3,0],[9,-1],[6,0],[10,0],[14,2],[5,0],[5,0],[1,0],[1,-1],[1,-1],[8,-3],[5,-1],[12,0],[4,-1],[3,-1],[0,-1],[-1,0],[-6,-2],[-2,0],[2,-1],[2,-1],[3,0],[1,-1],[-1,-2],[1,0],[3,-1],[-1,-1],[-2,-1],[-1,-2],[4,-1],[-2,-1],[8,-1],[-94,-2],[-94,-1],[-95,-2],[-11,0],[1,1],[2,0],[-53,1],[-7,0],[-7,-1],[-2,0],[-1,-1],[-1,0],[-5,-1],[-6,0],[-6,1],[-5,0],[11,1],[3,0],[-5,0],[0,1],[12,0],[-1,2],[5,0],[8,1],[5,0],[-2,1],[-4,1],[-4,0],[-5,1],[-60,1],[3,0],[6,1],[6,0],[6,1],[21,-1],[6,1],[2,1],[0,1],[-3,1],[-2,0],[-6,1],[-12,0],[-30,3],[-71,2],[2,1],[2,0],[3,1],[80,2],[81,2],[19,0],[16,-1],[15,1],[10,2],[-1,0],[-3,1],[-1,0],[17,2],[29,1],[28,-1],[12,-2]],[[8387,9841],[-2,0],[-5,0],[-6,1],[1,0],[1,1],[-3,1],[-12,0],[-40,3],[-1,1],[-5,2],[-10,2],[11,2],[13,0],[27,0],[5,-1],[3,-1],[23,-3],[6,-1],[14,-1],[44,-1],[-12,-1],[-5,-1],[1,-1],[-10,-1],[-32,0],[-6,-1]],[[4772,9835],[-7,-2],[23,2],[21,0],[4,-1],[2,0],[2,-2],[2,0],[4,-1],[8,0],[6,-1],[45,-3],[26,0],[7,-1],[-5,-1],[-1,0],[1,-1],[2,-1],[38,-6],[12,-1],[-1,-2],[4,0],[4,-1],[3,-1],[1,-1],[2,-1],[1,0],[-1,-1],[-4,0],[-5,0],[-4,0],[-11,2],[-30,0],[-8,0],[-6,1],[-12,2],[8,2],[2,0],[-2,1],[-4,0],[-7,1],[-42,3],[-5,1],[-3,1],[-3,0],[-28,2],[-11,1],[-15,1],[-9,1],[-33,-2],[-10,1],[-9,1],[-10,2],[-9,3],[-1,2],[-7,0],[-4,1],[-3,2],[-5,1],[-7,2],[-8,1],[-15,1],[3,2],[1,0],[-6,0],[-30,3],[-4,1],[-13,1],[-7,1],[-5,1],[4,2],[5,0],[2,1],[-2,2],[-3,1],[-5,1],[-11,1],[7,1],[11,0],[66,-2],[36,-3],[1,-1],[-2,-2],[9,-1],[16,0],[3,0],[5,-1],[11,-3],[-28,-3],[14,-1],[7,-1],[2,-1],[1,-1],[19,-1],[6,-1],[-3,0],[-1,-1],[3,-1],[5,-1],[2,0],[-2,-1]],[[8922,9862],[7,-1],[87,0],[34,1],[19,0],[10,-1],[-88,-3],[1,-1],[-23,0],[-72,3],[-9,1],[-5,1],[-58,-2],[-59,-1],[-62,-4],[-4,0],[-57,2],[4,0],[40,2],[9,1],[9,0],[7,2],[3,0],[50,0],[9,1],[6,1],[-2,2],[86,-1],[48,-2],[10,-1]],[[9199,9866],[-8,0],[-11,0],[-11,1],[-5,2],[56,0],[2,0],[1,-1],[4,0],[-6,-1],[-9,0],[-16,0],[3,-1]],[[6858,9877],[-3,0],[64,0],[6,0],[5,0],[13,-1],[45,-2],[10,0],[6,-2],[-31,-2],[-47,-1],[-22,-1],[-11,0],[-11,0],[-10,1],[-6,1],[-28,0],[-13,1],[-5,0],[13,1],[8,1],[-1,1],[-5,1],[1,0],[4,1],[2,1],[-2,0],[-3,0],[-2,0],[-3,0],[21,1],[7,-1],[-2,0]],[[6845,9895],[6,-1],[-1,-1],[-7,0],[-8,0],[-5,0],[-6,1],[-7,0],[-78,-1],[-6,0],[-3,1],[0,1],[5,1],[-10,1],[-3,0],[9,1],[11,0],[21,0],[15,-1],[45,-1],[22,-1]],[[4708,9919],[-2,0],[9,0],[5,-1],[2,-1],[-17,1],[-4,0],[-5,-1],[-4,0],[-5,-1],[-24,0],[-10,1],[-6,1],[-4,1],[26,0],[-8,1],[-17,0],[-7,1],[38,1],[28,-2],[9,0],[-2,-1],[-2,0]],[[4707,9923],[-6,-1],[-63,1],[-7,0],[-7,1],[-2,0],[7,1],[8,1],[37,0],[33,-3]],[[6066,9933],[7,-1],[8,1],[6,1],[-2,0],[-7,2],[-2,0],[1,1],[4,1],[18,1],[72,-1],[30,-2],[38,-1],[7,-2],[10,-1],[13,0],[49,-5],[10,-2],[12,0],[9,-1],[15,-2],[-7,-3],[-12,-1],[-24,-1],[-10,0],[-4,-1],[-9,-2],[-15,-1],[4,-1],[-7,-2],[-11,0],[-12,0],[-11,-1],[19,-1],[14,1],[4,0],[4,-1],[1,-2],[3,-1],[-5,-2],[-1,0],[-1,-1],[1,-1],[2,0],[2,-1],[-5,-2],[-29,-1],[5,-2],[10,1],[17,1],[18,0],[9,1],[13,2],[8,1],[7,1],[3,2],[1,1],[2,1],[4,1],[4,2],[4,1],[6,2],[8,1],[9,1],[15,1],[25,0],[12,-2],[12,-1],[25,0],[40,-4],[6,-1],[2,-1],[2,-2],[1,-1],[5,0],[9,-1],[5,0],[6,-1],[-1,0],[-4,-1],[-2,-1],[1,-1],[4,0],[5,0],[4,-1],[-5,0],[-5,-1],[-5,0],[-3,-1],[1,-2],[2,0],[7,-2],[-22,-2],[-37,-1],[-8,-1],[14,0],[45,0],[20,-2],[4,-1],[-1,-1],[-7,-1],[1,-1],[6,-1],[27,0],[8,-1],[25,0],[6,1],[5,0],[4,1],[6,1],[8,0],[20,0],[3,0],[44,-3],[13,0],[28,1],[12,-1],[-2,0],[-2,0],[-1,-1],[-3,0],[-2,0],[1,-1],[2,0],[1,0],[2,-1],[2,-1],[3,0],[19,-2],[3,-1],[-1,0],[-4,-2],[-2,-1],[19,0],[6,1],[4,0],[11,-1],[29,-1],[58,-4],[110,-3],[110,-3],[12,-1],[6,0],[13,0],[5,0],[1,-1],[-3,-1],[-3,0],[-3,-1],[0,-1],[2,-1],[4,0],[4,0],[-5,-2],[-5,-1],[-6,0],[-11,-1],[-7,0],[-7,-1],[-4,-1],[2,0],[5,-2],[1,0],[-2,-1],[-5,0],[-6,0],[-16,1],[-33,-1],[-1,-1],[-6,-1],[-14,1],[-12,1],[-11,0],[-2,0],[-3,0],[-3,1],[-4,1],[-2,0],[-2,0],[-3,-1],[-39,1],[-12,-1],[-3,-1],[-2,-1],[-3,-1],[-7,0],[-17,0],[-10,1],[-4,0],[-52,0],[-3,-1],[-7,0],[-12,0],[-7,0],[-11,0],[-4,-1],[-1,-1],[-62,1],[-21,-1],[-21,-2],[-1,0],[1,-1],[4,-1],[13,-2],[6,-1],[-81,-2],[-80,-1],[-8,-1],[11,-2],[6,-1],[8,-3],[-1,-1],[-3,-1],[-4,-1],[-9,-1],[-3,0],[3,0],[-2,-1],[-4,0],[-3,-1],[0,-1],[2,-1],[15,-1],[8,0],[4,-1],[1,-1],[-1,-1],[-4,0],[-5,-1],[-3,0],[-18,0],[-6,-1],[-1,-1],[3,0],[14,-2],[17,-2],[7,-1],[-8,-1],[-59,-5],[-53,2],[-21,0],[-21,-2],[5,-1],[18,-2],[-6,-2],[-8,0],[-9,-1],[-8,0],[1,-1],[-2,-1],[-4,-1],[-4,0],[8,-2],[3,0],[4,-1],[5,0],[4,0],[3,-1],[-2,-2],[3,-2],[1,-2],[-2,-1],[-22,-5],[-1,-1],[3,-2],[-2,-1],[-16,-4],[6,-2],[-2,-2],[-14,-2],[-11,-1],[-23,1],[-15,0],[-5,0],[-4,0],[-8,1],[-5,0],[-29,-1],[-16,0],[-4,0],[2,-2],[-8,-1],[-18,-1],[1,-1],[1,0],[3,0],[3,0],[-2,-1],[-2,0],[-3,-1],[-3,0],[-5,-3],[-6,-1],[-14,-1],[-5,-1],[2,0],[-3,-1],[0,-1],[3,-1],[1,-1],[0,-1],[-2,0],[-8,-1],[-6,-2],[-2,-1],[1,-2],[4,-2],[-4,-1],[-9,-1],[-4,0],[-2,-1],[0,-1],[-6,-1],[-2,0],[3,-1],[1,0],[0,-1],[-2,0],[-4,-1],[-53,1],[4,-1],[22,-1],[14,-2],[13,-1],[-8,-2],[-47,-6],[-7,-2],[1,-1],[-19,-1],[-10,0],[-4,-2],[5,-1],[33,-1],[12,-1],[6,-1],[7,-1],[2,-1],[-1,-1],[-8,-1],[-16,-1],[2,-1],[1,-1],[-7,0],[-15,-1],[-4,-1],[2,-1],[-2,0],[-20,-1],[-10,-1],[-13,-1],[-51,1],[-6,0],[-1,1],[1,1],[-4,0],[-11,0],[-11,1],[-5,0],[-6,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-1,-1],[-5,0],[-6,0],[-5,1],[2,1],[8,1],[-3,0],[0,1],[1,1],[2,1],[-3,0],[-3,0],[-6,1],[3,1],[-1,1],[-3,1],[-25,1],[-13,1],[-28,1],[-14,1],[-14,2],[-47,4],[-42,2],[6,2],[12,1],[35,1],[3,0],[8,2],[7,0],[13,-1],[7,1],[12,1],[25,1],[33,-1],[6,0],[4,-1],[1,0],[0,-1],[-4,0],[5,-1],[21,1],[-3,2],[3,1],[6,0],[26,0],[9,0],[5,1],[-10,1],[-39,0],[-9,-1],[-5,0],[-3,0],[-11,1],[-8,1],[-9,0],[-8,0],[-6,2],[-1,0],[1,1],[-2,1],[-2,0],[-1,0],[-3,1],[-6,0],[-7,-1],[-4,0],[0,-1],[-17,0],[-7,0],[-1,-1],[4,-1],[10,-1],[-6,-1],[-18,0],[-16,-1],[-5,0],[-7,1],[-80,0],[-11,1],[-14,0],[-11,1],[-9,1],[-7,1],[3,1],[1,0],[-1,1],[-3,0],[-9,0],[-5,0],[-4,0],[3,1],[2,1],[2,0],[-9,1],[-100,4],[-32,-1],[-6,1],[-12,1],[-6,0],[-12,3],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[3,1],[-38,1],[-4,1],[-1,1],[3,1],[4,1],[-39,4],[-6,1],[-4,1],[2,0],[3,1],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[18,-1],[5,1],[-8,1],[-16,1],[-8,1],[1,1],[0,1],[-1,0],[-2,1],[10,0],[29,2],[85,2],[19,-1],[17,-3],[-3,-1],[-4,-1],[-4,0],[-5,0],[5,-1],[8,0],[16,0],[14,0],[7,0],[5,1],[0,2],[1,1],[2,0],[31,0],[21,1],[11,0],[23,-1],[83,-1],[83,0],[6,-1],[4,-1],[11,-1],[14,0],[8,-1],[16,-3],[5,0],[18,0],[5,0],[-1,0],[-6,2],[6,0],[21,0],[-9,1],[-41,1],[-16,1],[-9,2],[-9,0],[-3,1],[-9,1],[-12,1],[-103,2],[-103,1],[-13,0],[-6,0],[-4,0],[-8,1],[-4,1],[-10,0],[-5,1],[-3,0],[28,2],[41,0],[19,1],[88,2],[87,2],[88,1],[22,2],[62,1],[63,0],[20,-1],[14,0],[5,0],[4,-1],[6,0],[6,0],[5,0],[-11,1],[-13,1],[-24,1],[-9,0],[-8,1],[-14,3],[6,1],[7,0],[7,-1],[6,0],[16,2],[6,0],[-2,0],[-2,1],[-2,0],[-2,1],[3,0],[3,0],[3,0],[2,1],[-57,-2],[-8,-1],[-3,-2],[-8,-1],[-104,-1],[-105,-1],[-45,3],[-9,0],[-58,-1],[-51,-5],[-75,-1],[-12,-1],[-11,0],[-24,2],[-11,-1],[26,-1],[-8,-1],[-33,0],[-24,1],[-15,-1],[-7,0],[-12,2],[-8,0],[-15,-1],[-23,-2],[-13,-2],[-10,1],[-7,1],[-6,0],[-14,-1],[-6,1],[-5,0],[-3,1],[-5,1],[13,1],[7,0],[4,2],[-8,1],[-10,1],[-11,0],[-11,1],[4,1],[1,1],[0,1],[-2,1],[-2,1],[-5,2],[0,1],[3,2],[4,0],[2,1],[-3,1],[-4,1],[-8,1],[-4,1],[6,1],[19,0],[21,1],[10,0],[6,1],[3,0],[21,0],[12,0],[16,-2],[38,-5],[4,0],[2,0],[1,-1],[2,-1],[2,0],[10,0],[4,0],[3,1],[-1,0],[-1,2],[-1,1],[-5,1],[-17,2],[-7,1],[2,1],[94,1],[94,1],[-2,0],[-8,1],[7,1],[15,1],[6,0],[7,1],[11,2],[12,0],[13,2],[29,1],[32,0],[14,-1],[18,-1],[6,0],[3,1],[-5,1],[-18,1],[-4,1],[-6,2],[5,1],[7,0],[36,3],[8,-1],[8,0],[9,0],[38,1],[6,1],[3,0],[9,0],[35,-2],[76,1],[75,0],[37,3],[12,0],[12,1],[17,1],[5,0],[1,1],[-9,1],[-14,0],[-81,-4],[-52,1],[-6,1],[-4,0],[-1,1],[-1,1],[-2,0],[-10,0],[-27,-1],[-5,0],[-9,2],[-5,0],[4,0],[4,0],[8,1],[7,1],[2,0],[2,1],[3,2],[2,0],[3,1],[4,1],[35,3],[7,1],[3,1],[3,1],[4,0],[3,0],[18,0],[4,1],[1,2],[-10,0],[-37,0],[-3,0],[0,1],[-1,1],[-2,0],[-12,1],[-7,0],[-7,-1],[-9,-2],[-9,-1],[-8,0],[-4,-1],[-2,-1],[4,0],[0,-1],[-3,-1],[-4,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-64,-3],[1,-2],[-11,-1],[-66,-1],[-65,-1],[-23,2],[-19,4],[-1,2],[-4,1],[-4,0],[-7,1],[3,0],[2,1],[3,0],[1,0],[40,1],[5,0],[5,1],[5,2],[3,2],[3,2],[2,1],[-6,1],[-1,1],[-1,1],[-6,0],[-2,1],[-2,0],[4,1],[4,0],[7,1],[-5,1],[-11,1],[-4,1],[-5,0],[-7,0],[-11,-2],[-16,-3],[-3,-1],[-1,-1],[-1,-1],[-4,0],[1,-1],[2,0],[2,0],[2,-1],[-5,-1],[3,0],[2,0],[0,-1],[-2,-1],[3,0],[3,0],[2,0],[2,-1],[-12,0],[-36,-1],[-8,-2],[1,0],[4,-1],[-14,-1],[-15,1],[-28,3],[4,1],[3,0],[4,1],[1,1],[-2,1],[-6,2],[-21,1],[-11,-1],[-12,-1],[-12,-2],[-21,0],[-10,-1],[19,-1],[4,0],[1,-1],[-1,-1],[-1,0],[-1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[1,-1],[3,-1],[4,0],[3,-1],[-6,-1],[-14,1],[-7,-1],[-21,-3],[8,-2],[15,-1],[27,0],[10,0],[8,-1],[7,-2],[7,-2],[-17,-1],[-49,1],[1,-1],[-6,-1],[-7,1],[-14,1],[-7,0],[-6,0],[-5,-1],[-4,-1],[3,-1],[6,0],[4,-1],[1,0],[3,-2],[-9,0],[-36,-3],[-6,-1],[-6,-1],[-9,0],[2,1],[4,1],[4,1],[4,1],[-18,-1],[-4,0],[-2,0],[-3,0],[-4,0],[-3,-1],[-2,-1],[0,-2],[-5,1],[-6,1],[-23,1],[-6,0],[-6,0],[6,-1],[15,-2],[4,-1],[-82,0],[-83,1],[-16,-1],[-11,-1],[-6,0],[-11,1],[-8,2],[-4,0],[9,1],[2,1],[-1,0],[-2,1],[-1,1],[3,0],[-22,2],[11,0],[-4,2],[-7,1],[-47,1],[-21,2],[-14,2],[-7,1],[-11,2],[-12,0],[-4,1],[40,2],[110,0],[46,2],[-13,1],[-14,0],[-26,-1],[-64,0],[-63,0],[-9,1],[-5,2],[1,0],[-6,1],[-77,2],[-18,1],[-9,0],[-5,1],[-5,1],[-3,1],[5,1],[-6,1],[-9,1],[-16,0],[-6,0],[-7,1],[-6,1],[-3,0],[5,1],[16,4],[11,1],[25,0],[12,0],[-9,2],[-10,0],[-68,3],[-14,1],[-15,1],[-17,2],[-6,1],[-2,1],[54,1],[80,-3],[80,-3],[52,0],[8,1],[-2,0],[-5,2],[-4,1],[-1,1],[-1,1],[-6,1],[-8,0],[-76,-2],[-21,1],[7,1],[8,0],[16,0],[-6,1],[-6,0],[-13,0],[-54,3],[-14,1],[-7,0],[13,1],[6,0],[10,3],[12,0],[6,1],[-2,0],[-2,1],[-2,0],[-2,0],[11,1],[3,1],[4,1],[2,0],[4,1],[11,0],[22,0],[10,1],[-3,1],[-11,0],[-4,1],[10,1],[3,0],[-1,1],[-2,0],[-1,1],[1,1],[3,0],[-8,1],[-22,-2],[-35,1],[16,-3],[3,-1],[-5,-1],[-10,0],[-11,1],[-6,0],[2,1],[-4,0],[-11,2],[-2,0],[-1,1],[-2,1],[-3,0],[0,1],[-22,-1],[1,-1],[-2,0],[-3,-1],[-6,0],[9,-1],[23,-4],[8,-2],[-6,-1],[-98,-6],[-12,1],[-11,1],[5,1],[-1,0],[-5,1],[-1,1],[-1,2],[-2,2],[-5,2],[-6,1],[-11,0],[-3,1],[-3,0],[-7,3],[-2,0],[-4,0],[-17,1],[-17,4],[14,0],[4,1],[-11,0],[-2,1],[-1,1],[1,0],[2,0],[3,0],[6,1],[2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-2,0],[-10,2],[-12,1],[-11,0],[-6,0],[-5,1],[-4,1],[7,2],[111,0],[-8,1],[-68,1],[2,1],[6,1],[29,2],[98,-1],[6,0],[-1,1],[-6,0],[-18,1],[-28,3],[-4,0],[-4,1],[1,1],[2,0],[1,0],[-1,1],[1,0],[5,1],[-11,1],[9,1],[13,0],[45,-1],[11,0],[8,1],[-8,2],[6,0],[13,0],[5,0],[3,1],[3,1],[4,0],[25,1],[11,0],[8,-2],[4,-1],[12,-1],[4,0],[0,-1],[-1,0],[0,-1],[5,-1],[16,-2],[1,-1],[4,0],[2,0],[2,0],[-1,0],[-4,-2],[15,-1],[8,0],[6,0],[-2,1],[-1,0],[-3,1],[6,1],[7,-1],[19,-3],[4,0],[8,1],[1,0],[2,1],[1,2],[-11,2],[-23,1],[3,1],[-4,0],[1,0],[-4,1],[-3,0],[-2,1],[0,1],[2,1],[7,1],[44,0],[14,-1],[9,-1],[1,0],[3,-1],[4,0],[2,-1],[2,-1],[-2,0],[-9,-1],[10,-1],[34,2],[20,0],[35,2],[10,1],[23,1],[45,1],[24,2],[54,0],[50,1],[10,0],[10,-1],[15,-2],[1,0],[1,-2],[1,0],[-1,-1],[1,-1],[3,-1],[-18,-2],[-37,-3],[-111,-1],[-6,1],[-11,-1],[-42,0],[4,-1],[-4,0],[-86,-6],[-19,0],[-15,0],[-7,0],[-4,-2],[7,0],[15,-1],[7,0],[8,0],[22,1],[46,0],[31,2],[35,0],[25,1],[25,-1],[13,0],[6,-1],[3,-1],[-14,-2],[-5,-1],[-4,0],[-8,-1],[-4,0],[-4,0],[-9,1],[-4,0],[2,-1],[2,-1],[-2,0],[-2,-1],[-1,0],[-1,-1],[9,0],[37,-2],[5,0],[2,1],[-2,0],[-9,2],[8,0],[12,1],[13,-1],[8,0],[2,-1],[0,-1],[2,0],[3,0],[7,0],[20,-1],[5,-1],[1,-1],[5,0],[15,-2],[2,0],[4,-2],[2,0],[3,0],[-3,-2],[0,-1],[1,-1],[-4,0],[1,-1],[6,-1],[5,0],[8,0],[5,0],[10,-1],[7,0],[8,2],[12,3],[-4,1],[-9,2],[-5,1],[-11,1],[-5,0],[2,1],[2,0],[2,0],[2,1],[-4,0],[-2,1],[-3,1],[-10,1],[-5,1],[-2,1],[4,0],[-12,2],[-4,1],[4,1],[12,2],[29,2],[41,0],[7,1],[-8,0],[-16,1],[-8,0],[7,1],[22,1],[9,1],[-7,0],[-4,0],[-3,0],[7,1],[29,4],[21,3],[5,2],[3,0],[5,0],[73,-3],[15,-1],[39,-7],[8,-1],[11,0],[9,-1],[12,-1],[4,-1],[4,0],[-5,-1],[0,-1],[2,-1],[2,0],[2,-1],[1,0],[-2,-1],[3,-1],[5,-1],[10,-1],[-3,-1],[1,-1],[8,-1],[3,-1],[5,-2],[3,-1],[-1,-1],[3,-1],[4,-1],[2,-1],[4,-1],[9,-1],[17,-1],[5,-1],[8,-2],[5,-1],[14,0],[7,-1],[3,-2],[-2,0],[-1,0],[-7,-1],[-16,-2],[-4,-2],[0,-2],[5,-1],[7,0],[22,4],[18,0],[18,-2],[15,-2],[4,-1],[15,-1],[4,-1],[1,-1],[2,-1],[0,-1],[-1,-1],[1,-1],[4,-1],[5,0],[10,-1],[5,-1],[3,0],[8,0],[3,0],[1,-1],[2,-1],[5,-1],[4,0],[21,0],[9,0],[4,1],[-9,2],[1,0],[0,1],[-13,0],[-5,1],[-4,3],[-3,0],[-4,1],[-3,0],[-9,4],[-4,1],[-13,1],[-4,1],[-3,1],[-4,2],[-2,1],[-1,1],[0,1],[0,1],[-2,1],[-4,0],[-27,4],[-12,1],[3,2],[-4,3],[-6,2],[-3,4],[-3,1],[-5,3],[-3,0],[-2,1],[-2,0],[1,1],[3,1],[12,1],[-5,0],[-11,0],[-4,1],[-2,1],[-1,1],[-2,1],[-5,1],[-12,1],[-3,1],[4,1],[-3,1],[-11,1],[1,0],[4,1],[-1,1],[-1,0],[-1,0],[-2,1],[-3,1],[-3,1],[-3,0],[4,1],[2,0],[-4,1],[-3,1],[0,2],[2,1],[7,1],[8,1],[91,-1],[8,1],[-8,1],[-22,1],[-9,2],[-3,1],[-1,0],[1,1],[4,1],[4,0],[15,2],[-3,0],[-2,0],[-2,1],[-1,0],[4,0],[9,1],[15,0],[26,3],[10,0],[8,0],[9,-1],[40,0],[4,-1],[1,0],[2,-2],[1,0],[4,-1],[6,-1],[11,-1],[7,-1],[4,0],[2,-1],[-1,0],[-4,-1],[-1,-1],[3,0],[27,-3]],[[9999,9958],[-10,-1],[-13,-1],[-59,0],[-60,-1],[-47,-3],[-95,-2],[-95,-1],[-96,-2],[-27,2],[-4,1],[1,0],[4,1],[112,2],[113,2],[112,2],[13,1],[6,0],[13,0],[5,1],[47,1],[80,-2]],[[6502,9965],[3,0],[4,0],[3,0],[3,0],[3,-1],[-13,0],[-4,-1],[-4,0],[-6,-1],[-3,-1],[-32,-1],[-9,0],[-36,2],[-32,1],[-10,0],[5,2],[4,1],[8,0],[4,0],[7,1],[15,2],[4,0],[63,-2],[19,-1],[4,-1]],[[7834,9971],[-50,-1],[-9,2],[3,0],[3,1],[1,1],[2,1],[6,1],[6,0],[5,0],[6,-1],[6,-1],[16,-2],[5,-1]],[[7785,9980],[14,-1],[14,-1],[-8,-1],[-10,0],[-48,1],[-8,1],[4,0],[5,1],[6,0],[4,0],[13,0],[14,0]],[[7544,9970],[6,0],[12,0],[-1,-1],[-2,0],[-2,0],[-2,0],[5,0],[14,-1],[10,0],[5,0],[4,-1],[-13,-1],[0,-1],[1,0],[1,-1],[0,-1],[-2,0],[-4,0],[-4,-1],[-8,0],[-34,-1],[-6,-1],[-7,-4],[-5,-1],[0,-1],[3,-1],[10,-1],[14,-1],[15,-1],[11,1],[-9,1],[-5,0],[-7,2],[-9,0],[-4,1],[37,-1],[-3,1],[-1,0],[-2,0],[1,1],[4,0],[8,0],[5,0],[3,0],[2,0],[0,-1],[6,-1],[6,-1],[7,0],[7,1],[-8,2],[-2,0],[3,1],[6,1],[11,0],[-3,-1],[2,0],[3,0],[3,0],[1,-1],[-1,0],[-2,-1],[-5,0],[2,0],[5,-1],[2,0],[9,0],[-1,-1],[-1,-1],[8,0],[8,1],[15,2],[33,1],[7,1],[-15,0],[-3,1],[-2,0],[-2,1],[-2,0],[3,1],[8,0],[3,0],[-13,1],[-5,0],[2,1],[3,0],[2,0],[3,0],[-2,1],[-1,1],[-2,0],[7,1],[8,0],[16,-2],[21,0],[4,0],[5,-1],[4,0],[4,0],[-24,2],[-8,1],[43,-1],[26,-2],[8,1],[-3,1],[-2,0],[31,-1],[9,1],[-3,0],[-4,1],[-5,0],[-4,0],[0,1],[18,-1],[5,1],[-6,1],[-39,0],[-15,1],[9,2],[17,0],[52,-2],[7,0],[21,-2],[-7,0],[-8,-1],[-9,0],[-6,-1],[1,0],[2,-1],[2,0],[-2,0],[-3,-1],[-2,0],[6,-1],[7,0],[8,0],[6,1],[5,1],[29,1],[3,0],[3,1],[1,1],[7,1],[5,1],[6,0],[9,-1],[4,-1],[-2,-1],[-3,0],[-3,0],[-3,-1],[2,-1],[-4,-1],[-12,-2],[9,1],[17,0],[36,0],[16,1],[57,1],[-8,-1],[-23,-1],[11,-2],[11,0],[31,0],[15,1],[7,0],[5,0],[5,-1],[4,-1],[2,-1],[20,2],[10,0],[9,-1],[-4,-1],[-14,-2],[34,0],[21,1],[102,-1],[101,0],[23,-2],[23,-2],[9,-1],[35,0],[11,-1],[-16,-2],[-2,0],[-3,-1],[-3,-1],[2,0],[2,-1],[2,0],[2,0],[-3,-1],[-9,-2],[-4,-1],[8,-1],[21,-2],[3,-2],[-7,-2],[-14,-2],[-54,-1],[-14,0],[-16,-3],[-8,0],[-25,-1],[-4,0],[1,-1],[-5,-1],[-7,0],[-12,0],[-1,-2],[-8,0],[-46,-2],[-18,-2],[-92,-4],[-4,0],[0,-1],[3,0],[7,-1],[2,0],[8,-1],[3,-1],[1,0],[12,-3],[1,-1],[-3,0],[-6,-1],[-18,-2],[-7,0],[4,-1],[-3,-1],[-5,-1],[-5,0],[-33,-2],[-55,-2],[-10,-1],[-43,-2],[-48,0],[-3,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-3,0],[-3,0],[-35,0],[-49,-4],[-64,-1],[-7,-2],[3,-1],[0,-1],[-3,-1],[-5,-1],[-43,-3],[-88,1],[-88,1],[-88,1],[-44,3],[-13,1],[-7,2],[-1,0],[-1,1],[3,3],[56,4],[-89,-2],[-23,1],[-82,-1],[-83,-1],[-49,2],[-80,-1],[-80,-1],[-6,1],[4,0],[7,1],[4,0],[-21,2],[-3,1],[-5,1],[-62,0],[-63,1],[-28,1],[-14,2],[-77,3],[-6,1],[-4,2],[-3,1],[43,2],[92,1],[4,0],[12,-2],[32,-2],[86,-1],[87,-1],[-6,2],[-112,2],[-36,4],[-5,1],[108,0],[107,1],[107,0],[4,1],[-1,0],[-2,1],[-3,0],[12,2],[91,1],[15,1],[-14,2],[-17,0],[-97,-3],[2,0],[6,1],[-23,0],[8,2],[20,0],[8,1],[-101,-1],[-100,0],[-100,-1],[-101,-1],[-41,-3],[-43,1],[-18,-2],[-58,-1],[-17,2],[-5,0],[-19,0],[-16,-1],[-68,1],[-39,-1],[-10,0],[1,0],[4,1],[-5,0],[-5,0],[-3,1],[3,1],[-9,1],[-11,1],[-36,-1],[-5,0],[-2,1],[-7,2],[-6,1],[-17,0],[-3,1],[-10,2],[-8,1],[-9,1],[-19,0],[8,1],[35,2],[27,0],[25,1],[15,0],[9,0],[9,0],[5,2],[-29,0],[5,0],[9,1],[12,1],[4,0],[-1,-1],[6,-1],[13,-1],[6,0],[4,1],[1,1],[-2,0],[-4,1],[9,1],[9,0],[9,1],[8,1],[-23,-2],[-108,1],[-16,1],[-17,0],[-5,0],[-9,1],[-5,1],[11,-1],[14,0],[14,0],[11,1],[-51,1],[-8,1],[-11,2],[-10,0],[-7,-1],[-2,0],[-6,0],[-6,1],[-31,0],[-4,0],[8,0],[16,2],[15,1],[13,1],[7,0],[6,0],[2,-1],[4,0],[12,1],[47,-1],[13,0],[4,0],[7,1],[30,0],[18,-2],[8,0],[7,0],[13,2],[-16,1],[36,0],[13,-1],[12,-2],[52,-3],[14,-2],[7,-1],[7,0],[7,1],[14,1],[3,1],[-1,1],[22,0],[21,1],[-9,2],[-14,0],[-26,0],[-23,1],[-12,1],[-8,2],[-10,1],[-3,0],[-2,1],[-3,0],[-2,0],[-2,1],[1,0],[-1,1],[-1,1],[-1,0],[-2,1],[-4,1],[-15,1],[-4,0],[3,1],[6,0],[3,1],[58,-2],[13,-1],[65,-7],[13,-1],[43,0],[-7,1],[-20,0],[-5,1],[3,1],[25,2],[-2,1],[-6,0],[3,0],[2,0],[3,1],[-4,0],[-11,1],[5,0],[6,0],[6,1],[3,0],[-16,1],[-4,0],[8,0],[17,2],[8,0],[0,1],[-90,0],[-10,0],[-4,1],[-1,2],[0,2],[1,0],[7,1],[10,0],[18,-1],[10,-1],[3,0],[3,0],[-1,1],[-7,0],[-4,2],[1,1],[4,0],[34,0],[8,-1],[-1,-1],[42,0],[6,0],[-4,-2],[-1,0],[7,-1],[8,0],[-2,-1],[4,0],[2,0],[-2,-1],[-2,-1],[1,-1],[5,0],[5,0],[3,1],[5,1],[7,1],[10,1],[36,-1],[8,0],[1,-2],[13,-1],[15,-1],[-2,-2],[-2,0],[-1,-1],[8,-1],[8,-1],[8,0],[40,1],[9,0],[-4,-1],[-11,0],[-4,-1],[-2,-1],[2,-1],[7,-1],[6,-1],[3,-1],[7,0],[7,0],[72,1],[21,2],[10,0],[-2,0],[-2,0],[-1,-1],[-1,0],[2,0],[2,-1],[4,-1],[-3,0],[6,0],[5,0],[6,1],[5,0],[1,1],[0,1],[3,0],[3,0],[2,0],[3,0],[2,1],[13,0],[28,-2],[12,0],[-8,1],[-3,0],[5,1],[11,1],[29,-1],[5,-1],[7,-2],[0,-1],[-4,-1],[-9,0],[-16,-1],[-13,-1],[-28,-4],[5,0],[7,0],[27,2],[14,0],[7,0],[12,-1],[37,-2],[-1,0],[5,-1],[9,-1],[8,-1],[10,-1],[5,-1],[-3,0],[-7,-1],[11,-1],[-5,-2],[-1,0],[9,0],[11,0],[11,0],[9,2],[-6,1],[-6,1],[11,0],[17,-2],[9,0],[-9,2],[-3,0],[-11,1],[-4,0],[-3,1],[24,0],[3,0],[-3,1],[-18,2],[4,1],[4,2],[-1,1],[1,1],[7,1],[5,1],[2,1],[-1,2],[-3,1],[7,1],[16,1],[7,1],[-3,1],[-43,2],[-2,0],[-7,1],[-2,1],[1,1],[4,2],[6,1],[2,1],[16,1],[52,-1],[0,-1],[-3,-1],[-8,-2],[-5,-1],[5,-2],[10,0],[17,-1],[-3,1],[-4,0],[-3,1],[-2,1],[4,0],[14,1],[4,0],[2,0],[1,1],[1,0],[1,1],[2,0],[3,1],[-2,0],[-3,1],[4,0],[-5,1],[-4,1],[3,2],[-3,0],[-4,0],[-4,1],[-2,0],[3,1],[5,0],[10,0],[35,-3],[68,-1],[22,-2],[-4,0],[-4,-1],[-10,0],[4,0],[2,0],[2,0],[-5,-1],[-25,0],[-11,-1],[-5,0],[5,-1]],[[6806,9978],[-19,0],[-6,0],[-5,1],[-1,0],[4,1],[21,2],[15,0],[9,0],[9,-1],[7,-1],[-6,0],[-14,-1],[-14,-1]],[[6991,9989],[-3,0],[-3,0],[1,-1],[-7,1],[-14,1],[-32,1],[-8,0],[5,0],[64,0],[-1,-1],[-2,-1]],[[7122,9994],[2,-1],[3,0],[2,-1],[-45,-1],[-9,0],[-11,0],[-10,0],[-5,2],[8,0],[36,2],[28,-1],[-1,0],[-1,0],[3,0]],[[7044,9995],[-2,-1],[-4,0],[-19,-1],[-2,0],[-3,0],[-2,-1],[-11,0],[-2,0],[-1,1],[-1,0],[0,1],[1,0],[-2,0],[-5,0],[-5,1],[-4,0],[-10,-1],[-5,0],[-3,1],[-4,1],[-3,0],[-17,1],[-7,0],[-3,2],[25,0],[7,-1],[9,-1],[6,0],[28,-1],[31,-1],[8,0]],[[5798,8176],[2,0],[2,0],[3,0],[3,0],[2,0],[-3,-1],[-3,0],[-1,0],[1,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-8,1],[-2,1],[3,1],[3,1],[2,-1]],[[6125,8267],[2,0],[2,0],[1,1],[2,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[-7,0],[-5,-1],[-8,-3],[6,-2],[0,-1],[-4,-2],[0,-1],[-1,0],[-3,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-10,-3],[-1,-1],[-2,-2],[-4,-1],[-5,0],[-5,-1],[1,0],[2,-1],[3,0],[2,0],[-4,-1],[-4,-1],[-6,-2],[1,-1],[2,-1],[-1,-2],[-3,0],[-3,-1],[-3,-4],[-3,-1],[-1,0],[-10,-2],[-2,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-14,-8],[-2,-1],[-1,-2],[-1,-1],[-2,0],[-2,-1],[-2,0],[-3,0],[-1,-1],[-2,-2],[2,0],[0,-1],[-1,0],[-2,-1],[-1,-2],[-2,-1],[-3,-1],[-3,-2],[-3,-1],[-1,-2],[0,-2],[-1,-1],[-3,-1],[-1,-1],[-2,-1],[-11,-5],[-5,-1],[-5,0],[-5,0],[-4,0],[0,1],[0,2],[0,1],[-3,2],[2,1],[0,2],[0,3],[2,1],[-2,2],[-2,1],[-2,1],[2,7],[1,1],[4,2],[5,2],[1,0],[2,2],[39,17],[4,1],[5,0],[7,0],[6,0],[4,1],[4,3],[10,5],[12,4],[11,4],[4,6],[1,0],[2,1],[5,0],[3,1],[1,1],[1,4],[1,1],[5,1],[7,2],[4,1],[4,0],[3,0],[2,-1]],[[6525,8304],[4,-1],[2,1],[4,1],[4,1],[2,1],[-1,1],[-2,0],[-1,1],[4,0],[14,1],[0,-1],[-4,-1],[5,-1],[6,0],[0,1],[3,1],[5,0],[4,0],[4,0],[-2,-1],[1,-1],[2,0],[2,-1],[4,0],[2,-1],[7,-2],[1,0],[-16,-1],[-7,-1],[-1,-3],[-3,1],[-3,0],[-2,0],[0,-1],[-2,0],[-2,-1],[0,-1],[3,-1],[-10,0],[-8,0],[-3,0],[-5,1],[-3,0],[-3,0],[0,-1],[1,0],[0,-1],[-3,-3],[-4,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[1,0],[10,-1],[-2,-1],[-2,-1],[-1,-1],[0,-1],[-2,-1],[-3,-1],[-1,-1],[3,-1],[-2,-1],[1,-1],[3,0],[4,0],[-1,0],[-2,-1],[9,-1],[10,0],[1,0],[1,1],[3,-1],[4,0],[1,0],[2,-1],[1,-1],[1,-1],[-1,-1],[-4,0],[-7,0],[-1,0],[-2,1],[-2,0],[-1,-1],[-3,0],[-1,0],[-8,-1],[-7,-1],[-7,-1],[-6,-1],[-8,-2],[-4,-1],[2,-1],[2,0],[5,0],[2,0],[0,-3],[-8,0],[1,-1],[-21,0],[-7,-1],[0,-1],[4,0],[-6,0],[-29,-3],[-5,-1],[-5,-1],[16,0],[-6,-1],[-16,-1],[-4,-1],[-2,-4],[3,-1],[4,-1],[8,0],[-13,0],[0,-1],[3,0],[-6,-1],[-2,-1],[-3,-1],[-3,-1],[-22,-2],[-8,0],[-7,1],[15,4],[1,1],[-1,1],[-1,1],[3,0],[9,1],[4,1],[1,0],[2,2],[2,1],[-5,0],[-5,-1],[-5,-1],[-6,0],[0,1],[4,0],[2,1],[1,1],[-3,1],[1,0],[1,1],[1,0],[-10,1],[-6,6],[-14,3],[0,1],[3,1],[9,2],[3,1],[1,1],[-1,2],[3,1],[-2,0],[-2,1],[-1,0],[-2,1],[-1,0],[0,1],[-3,1],[-2,2],[-2,2],[0,1],[3,3],[8,2],[38,7],[33,10],[8,2],[12,1],[3,-1],[4,0],[4,0],[3,0],[1,1],[2,1],[1,1],[3,1],[4,1],[5,1],[5,1],[6,0],[4,-1],[4,-1],[2,-1],[1,0],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[2,0]],[[6627,8315],[1,-2],[3,0],[8,1],[8,0],[3,-1],[4,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-3,-1],[-12,1],[-5,-1],[-5,0],[-10,-1],[-5,-1],[3,-1],[2,0],[0,-1],[-7,-3],[-4,0],[-4,1],[-3,0],[-3,1],[-8,2],[1,1],[1,1],[5,1],[2,1],[1,0],[2,1],[2,1],[4,0],[8,0],[4,0],[2,0],[3,0],[4,0],[4,1]],[[4877,8320],[0,-2],[1,0],[1,0],[-2,-2],[-1,-1],[-3,0],[-2,0],[-1,0],[1,1],[-4,1],[-4,-1],[-2,-1],[-2,-2],[-2,-1],[-3,0],[-5,0],[-2,0],[-1,-1],[-2,0],[-4,0],[-2,0],[-1,0],[-2,1],[-6,0],[-1,0],[-1,1],[0,1],[-2,0],[-1,1],[1,0],[3,1],[6,0],[3,0],[-5,0],[-5,0],[-4,0],[-2,1],[2,2],[4,0],[10,0],[22,0],[5,0],[4,1],[4,0],[5,0]],[[4889,8334],[4,-2],[2,-1],[0,-2],[0,-3],[-2,-1],[-5,-1],[-7,0],[-11,-1],[-12,0],[-6,0],[-4,1],[-7,1],[-6,-1],[-6,-1],[-2,0],[-1,-1],[-1,0],[-2,0],[-3,0],[-7,1],[0,-2],[-1,0],[-2,2],[-1,0],[-7,1],[-2,1],[0,1],[5,1],[23,4],[8,1],[6,1],[3,0],[4,0],[7,0],[4,0],[-1,1],[1,1],[3,0],[-1,1],[-1,0],[4,1],[4,0],[8,-1],[3,-1],[4,-1],[5,0]],[[6077,8336],[-3,0],[-2,0],[-3,1],[-1,1],[3,0],[5,0],[3,0],[1,-1],[-1,-1],[-2,0]],[[6643,8341],[-9,0],[-9,1],[-6,3],[8,0],[7,-1],[13,-1],[6,0],[-10,-2]],[[6075,8345],[1,0],[-1,-1],[-2,0],[-3,0],[-2,0],[4,-1],[-1,0],[-2,0],[-2,-1],[1,0],[4,-1],[5,-1],[5,0],[5,0],[2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-3,0],[-4,0],[-4,0],[-5,1],[-3,0],[-1,1],[-1,1],[-1,0],[-1,1],[-3,1],[2,0],[4,1],[2,0],[3,0],[1,0],[1,0],[3,0],[2,0]],[[6424,8387],[-3,-1],[-5,0],[-2,-1],[-2,0],[-2,0],[-1,0],[2,-1],[4,0],[-6,0],[-4,-1],[-8,0],[-5,-1],[-2,0],[-2,1],[-1,0],[4,2],[3,0],[9,1],[3,0],[3,0],[3,1],[1,0],[4,0],[7,1],[1,0],[-1,-1]],[[6392,8391],[-9,-1],[1,0],[1,0],[1,0],[2,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,1],[0,-1],[0,-1],[1,0],[-2,-1],[-3,0],[-3,0],[-4,1],[-1,0],[-2,0],[-4,-1],[-3,-1],[-2,0],[0,1],[1,0],[1,1],[2,1],[2,0],[2,0],[-1,1],[1,0],[2,1],[3,0],[5,0],[5,0],[6,0],[10,0]],[[6268,8384],[-1,0],[0,-1],[2,-1],[-1,0],[-7,2],[0,-1],[-2,0],[-2,1],[0,1],[-1,1],[-2,0],[0,1],[0,1],[2,1],[3,1],[0,1],[0,1],[-1,2],[2,1],[3,0],[0,-1],[1,0],[1,0],[1,0],[2,-1],[2,-1],[2,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[1,-1],[0,-1],[-1,-1],[-1,-1],[-2,0]],[[6448,8394],[-5,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,1],[-3,0],[-1,1],[1,0],[2,0],[2,0],[-1,1],[-2,0],[1,1],[1,-1],[2,1],[2,0],[1,1],[-2,0],[1,0],[10,1],[4,1],[4,1],[3,0],[4,0],[1,-1],[1,-1],[-1,0],[0,-1],[-7,-1]],[[6514,8404],[-16,-2],[-2,0],[1,1],[3,1],[3,1],[3,0],[3,0],[6,0],[2,0],[-3,-1]],[[6524,8409],[-1,-1],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-3,1],[1,1],[3,0],[5,1],[4,0],[3,0],[2,0],[1,0],[2,0],[-1,-1],[-2,0],[-2,0],[-2,-1]],[[6464,8411],[21,-3],[-12,0],[-5,1],[-6,0],[0,-1],[4,-1],[11,0],[-7,-1],[-7,0],[-12,2],[-9,0],[-1,1],[-2,1],[-1,0],[-4,0],[-12,1],[27,0],[15,0]],[[6505,8417],[2,0],[2,-1],[3,0],[2,-1],[1,0],[1,-1],[-1,-1],[-4,-1],[-10,0],[-1,-1],[-1,1],[1,0],[1,1],[1,0],[-1,0],[0,1],[-1,1],[-3,0],[-3,1],[-1,0],[-2,1],[2,0],[9,0],[1,0],[2,0]],[[6400,8416],[-4,0],[-2,0],[-5,0],[2,0],[2,-1],[-2,0],[-5,-1],[-6,1],[-6,0],[-4,1],[-1,0],[-1,1],[-2,0],[0,1],[4,0],[27,-1],[3,-1]],[[6544,8418],[-2,0],[-2,0],[-1,1],[2,0],[3,0],[1,-1],[-1,0]],[[6563,8417],[-2,0],[-4,0],[-3,1],[-1,0],[-1,0],[0,1],[2,0],[3,0],[3,0],[2,-1],[1,0],[0,-1]],[[6554,8420],[-3,-1],[-6,1],[-2,1],[3,1],[6,0],[3,0],[1,0],[2,0],[0,-1],[-4,-1]],[[6502,8429],[1,0],[1,0],[10,0],[-13,-1],[-6,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-3,1],[-1,0],[0,-1],[-1,0],[-2,0],[3,-1],[-1,-1],[-2,0],[-2,0],[-1,1],[0,-3],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,1],[-2,1],[-1,1],[-1,0],[1,1],[2,0],[3,0],[3,0],[2,-1],[0,1],[2,0],[1,0],[2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[2,1],[5,1],[3,0],[4,1],[5,0],[5,0],[5,0],[2,-1],[1,0]],[[6570,8435],[-2,0],[-3,0],[-4,0],[-3,0],[-3,-2],[-2,-1],[-2,0],[-2,0],[-6,1],[-1,0],[3,1],[16,3],[3,1],[3,-1],[3,-1],[1,0],[1,0],[-1,0],[-1,-1]],[[6525,8432],[-3,0],[-4,0],[5,0],[5,1],[4,1],[2,0],[10,2],[14,2],[0,-1],[-5,-1],[-11,-2],[-1,0],[-5,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-6,0]],[[6574,8449],[-1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-3,0],[-3,0],[-4,0],[-3,0],[-2,0],[-1,0],[-1,0],[-2,0],[-6,-1],[-1,1],[2,1],[11,3],[2,1],[2,0],[2,0],[2,0],[3,-1],[1,-1],[0,-1],[0,-1]],[[6525,8476],[1,0],[2,0],[1,0],[1,0],[0,-1],[-6,0],[-5,-1],[-5,1],[-3,0],[-1,0],[-2,1],[0,1],[1,0],[0,1],[2,0],[1,0],[-4,1],[1,0],[5,0],[4,0],[2,-1],[1,0],[1,-1],[2,0],[2,0],[0,-1],[-1,0]],[[6444,8497],[6,-1],[2,-1],[-3,0],[-6,1],[-3,0],[2,-1],[10,-3],[3,-2],[2,0],[3,0],[5,0],[1,-1],[1,0],[3,-2],[1,0],[2,0],[1,0],[1,0],[-1,-1],[-2,0],[-10,1],[-13,2],[-13,2],[-4,1],[-1,2],[1,4],[0,1],[-3,1],[1,1],[3,0],[3,0],[2,-1],[2,0],[1,-1],[0,-1],[3,-1]],[[6363,8666],[3,0],[5,1],[5,0],[3,-1],[-1,-1],[-2,-1],[-1,-1],[-3,0],[-2,0],[-1,0],[2,0],[1,-1],[-1,0],[-11,-1],[-12,1],[-5,1],[2,2],[2,0],[1,1],[3,1],[6,0],[4,0],[2,-1]],[[7006,8733],[-4,0],[1,0],[8,2],[1,0],[1,0],[-2,-1],[-2,-1],[-3,0]],[[7022,8737],[-4,-1],[-1,0],[-2,0],[-4,0],[4,4],[2,1],[2,0],[2,0],[3,1],[5,0],[2,0],[-1,0],[-1,0],[1,-1],[-2,0],[-1,-1],[1,0],[0,-1],[-1,-1],[-2,-1],[-3,0]],[[7024,8742],[-11,-1],[2,0],[-2,1],[-2,0],[-3,0],[-3,0],[6,2],[10,0],[3,-2]],[[7375,8866],[-2,0],[-5,-1],[-3,0],[-19,0],[-2,0],[0,1],[2,0],[3,1],[2,-1],[1,0],[3,0],[4,0],[5,1],[4,0],[4,0],[3,-1]],[[7331,8864],[-3,0],[-2,0],[-2,0],[-11,1],[-1,0],[-2,1],[1,1],[0,1],[2,0],[5,0],[8,-1],[1,0],[-2,0],[0,-1],[3,0],[2,-1],[1,0],[0,-1]],[[7421,8871],[-3,0],[-4,0],[-4,0],[-4,1],[2,1],[4,-1],[2,0],[2,0],[4,0],[1,-1]],[[7348,8872],[2,0],[1,0],[2,-1],[3,0],[5,-1],[-4,-1],[-2,0],[-3,1],[-3,0],[-4,1],[-3,0],[-2,0],[1,-1],[-1,0],[1,-1],[2,0],[1,-1],[-2,0],[-3,1],[-11,1],[-6,2],[-1,1],[2,0],[3,0],[4,0],[18,-1]],[[7427,8877],[-1,-1],[-4,0],[-2,-1],[-1,-1],[-2,0],[-3,0],[-3,0],[1,0],[-2,0],[-7,1],[-1,0],[-1,1],[1,0],[3,0],[3,0],[4,0],[11,1],[4,0]],[[7418,8877],[-3,0],[-5,0],[-2,0],[-1,1],[3,0],[6,0],[2,-1]],[[7507,8885],[0,-1],[-3,0],[-2,0],[0,-1],[2,-1],[-3,1],[-7,1],[-7,1],[-4,1],[1,1],[4,1],[6,0],[6,-1],[1,0],[-3,0],[0,-1],[4,0],[3,-1],[2,0]],[[7698,8888],[0,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[-9,-2],[-9,1],[-4,1],[0,2],[2,0],[2,0],[2,-1],[1,1],[1,1],[1,-1],[2,0],[3,0],[3,0],[3,0],[2,0],[1,0],[2,0],[1,1],[1,0],[1,-1]],[[7467,8886],[-2,-1],[-10,0],[-5,1],[-2,0],[-1,1],[1,1],[0,1],[1,1],[3,0],[10,-2],[3,-1],[2,-1]],[[7783,8894],[-6,-2],[-8,0],[-17,1],[2,-1],[1,0],[2,0],[-6,-1],[-11,1],[-5,-1],[-2,0],[-2,-1],[-1,-1],[-3,0],[-2,0],[-1,1],[-4,0],[-2,0],[-2,1],[-1,0],[0,1],[-2,0],[-2,-1],[-12,0],[-5,1],[-3,1],[-2,1],[-5,0],[-12,0],[-3,0],[-6,-2],[-4,0],[-3,0],[-1,0],[-1,1],[-1,0],[-19,0],[-10,0],[1,1],[-1,1],[-3,0],[-3,-1],[-2,-1],[-2,0],[-1,0],[-2,0],[-2,-1],[3,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-4,0],[-4,0],[-3,1],[-1,2],[1,1],[-5,0],[-3,-1],[-3,-1],[-3,0],[-6,0],[-4,0],[-9,2],[-4,0],[-4,0],[-3,0],[-1,-2],[2,-1],[4,0],[7,-1],[-3,-1],[-15,-1],[-3,0],[-4,-1],[0,-1],[-6,-1],[-6,0],[2,2],[-7,2],[-3,0],[-13,0],[-10,1],[-2,1],[-5,1],[-3,0],[-6,0],[-4,0],[-5,1],[-8,3],[-5,1],[-26,3],[-4,0],[-5,0],[3,-1],[6,-1],[2,-1],[1,0],[1,-2],[1,-1],[1,-1],[1,-1],[-1,-1],[-2,-1],[-3,0],[-3,-1],[-4,0],[2,2],[-6,0],[-14,1],[-3,0],[-8,-2],[-3,0],[-1,1],[2,1],[2,0],[2,1],[-3,1],[-3,0],[-8,1],[0,1],[1,0],[-16,1],[-9,0],[0,-2],[-10,0],[10,-2],[-1,-1],[-3,0],[-8,0],[3,0],[4,-2],[3,-1],[-8,-2],[-9,1],[-10,1],[-8,0],[5,-1],[4,-1],[6,0],[15,0],[5,-1],[4,-1],[3,-2],[-3,0],[-3,0],[-3,0],[-3,-1],[-2,2],[-5,1],[-6,0],[-6,-1],[2,0],[1,-1],[-1,0],[-2,-1],[2,0],[2,-1],[3,-1],[-6,-1],[-17,0],[17,-1],[9,0],[4,2],[-1,0],[-5,1],[-1,1],[1,1],[4,-1],[4,0],[2,-1],[-2,0],[13,-1],[1,-1],[-11,-1],[-1,0],[2,-1],[5,0],[10,-1],[1,0],[2,-1],[2,-1],[-5,-1],[-5,1],[-4,1],[-4,0],[-7,0],[-5,1],[-6,0],[-3,1],[-2,-1],[1,-1],[-7,0],[-24,3],[-17,1],[-7,1],[-4,0],[-10,1],[-8,1],[-14,1],[-4,0],[-2,1],[-5,1],[-3,1],[-7,0],[-3,1],[5,-3],[14,-2],[29,-2],[19,-3],[16,-1],[3,0],[3,-1],[6,-1],[3,0],[4,0],[-6,-1],[-13,0],[-6,0],[-2,-1],[-1,0],[-1,-1],[-3,0],[-2,0],[-2,1],[-2,0],[-6,-1],[-32,2],[-5,0],[11,-3],[6,-1],[5,1],[-5,0],[-1,1],[6,0],[13,-3],[6,0],[-1,-2],[-2,0],[-1,-1],[-4,-1],[-4,1],[-3,0],[-6,1],[-2,0],[1,-1],[2,-1],[-1,-1],[-3,0],[-5,0],[-4,0],[-2,1],[-7,-1],[-7,0],[-7,0],[-20,1],[-4,-1],[3,-1],[-11,0],[-5,1],[-5,1],[-6,0],[-10,-1],[10,-1],[3,0],[-17,0],[-9,0],[-4,-1],[1,0],[2,0],[2,-1],[-10,-1],[5,0],[5,0],[5,-1],[3,-1],[4,0],[5,-1],[5,1],[0,1],[4,0],[5,-1],[7,-1],[8,-1],[3,-1],[0,-1],[-8,-1],[-10,-1],[-11,0],[-8,0],[-2,1],[-4,2],[-3,1],[-3,1],[-4,0],[-4,1],[-5,0],[-6,1],[-7,1],[-8,2],[-8,-1],[1,0],[3,0],[1,0],[-3,-1],[-10,0],[-3,-1],[30,-1],[7,-1],[14,-4],[13,-2],[17,-5],[2,-1],[-5,-1],[-13,0],[3,0],[2,-1],[-1,-1],[-4,-2],[1,0],[1,0],[3,0],[5,-1],[-5,0],[-20,0],[-3,-1],[3,-1],[4,-1],[2,0],[-8,-1],[-2,0],[-2,0],[-5,0],[-2,0],[-1,0],[0,-1],[-1,0],[-4,0],[-3,-1],[-1,-1],[3,0],[-4,-1],[-28,0],[-3,0],[-1,-1],[2,0],[1,-1],[-1,-1],[-2,0],[-3,-1],[-3,0],[-3,-1],[3,-1],[-5,-1],[-5,-1],[2,-1],[-3,-1],[-8,0],[-5,0],[-3,0],[-2,1],[0,1],[-1,0],[-4,1],[-3,-1],[-3,0],[-1,-1],[1,-1],[3,-1],[7,0],[-1,-1],[-1,0],[5,-1],[4,0],[9,0],[15,0],[15,-1],[6,0],[1,-1],[-3,-1],[-12,1],[-4,-1],[4,-1],[5,-1],[10,-1],[0,-1],[-4,0],[-1,0],[0,-1],[3,0],[0,-1],[-6,1],[-11,1],[-6,1],[-5,0],[-4,1],[-5,1],[-6,0],[-2,-1],[0,-1],[3,-1],[4,-1],[6,-1],[8,0],[7,0],[5,-1],[-5,0],[0,-1],[3,-1],[5,0],[5,0],[2,-1],[2,0],[2,0],[2,-1],[2,-1],[3,-1],[3,0],[2,0],[0,1],[-1,0],[2,1],[0,1],[1,0],[5,0],[5,-1],[5,-2],[5,0],[2,1],[2,0],[3,0],[1,0],[0,-2],[2,-1],[3,0],[4,0],[5,0],[-3,-1],[-3,0],[-3,0],[-4,0],[-6,1],[-2,1],[-11,-2],[-7,0],[-2,0],[-1,1],[-2,0],[-2,0],[-1,0],[-1,-1],[2,0],[3,0],[4,-1],[3,-1],[3,1],[3,0],[9,0],[3,0],[1,0],[2,-1],[1,-1],[-3,-1],[0,-1],[3,0],[4,-1],[3,1],[2,1],[2,0],[5,0],[4,-1],[-1,2],[3,0],[3,-1],[2,-1],[0,-1],[-2,0],[-2,0],[-3,0],[-4,-1],[-2,0],[-6,-1],[-3,0],[-13,-3],[-10,-2],[-4,-1],[-6,-1],[-5,1],[-4,1],[-3,1],[1,-1],[0,-1],[-1,-1],[1,0],[1,0],[1,-1],[-4,0],[-7,-1],[-4,0],[-3,1],[-1,0],[-2,0],[-30,-7],[-1,0],[-7,1],[-1,0],[-2,-1],[-6,-2],[-18,-3],[-4,-1],[3,-2],[-2,-1],[-9,-3],[-1,0],[-1,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,0],[-2,-1],[-2,0],[-1,0],[-1,-1],[-5,0],[-4,-1],[-5,-3],[-4,-2],[-2,-1],[-11,-1],[-11,0],[-2,-1],[-1,-1],[2,0],[3,0],[4,0],[-5,-2],[-3,-1],[-2,1],[-5,1],[-3,1],[-5,0],[-11,-2],[0,-1],[-2,0],[-3,-1],[-3,1],[3,1],[-1,0],[-2,1],[-5,1],[-1,0],[-11,-4],[-5,-1],[-5,1],[1,-1],[-1,-1],[2,-2],[-2,-1],[-2,-1],[-3,-1],[-2,0],[-4,0],[-3,1],[0,1],[2,1],[0,1],[-2,1],[-4,1],[-3,0],[-2,-1],[1,-5],[-3,-2],[-3,0],[-4,1],[-2,1],[2,1],[1,1],[1,1],[0,1],[-5,-1],[-4,-1],[-3,-2],[2,-2],[-6,0],[-15,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,1],[-1,0],[-1,0],[-5,0],[-4,0],[-5,0],[-3,-1],[-2,-1],[0,-1],[4,-1],[-18,1],[-3,0],[-4,-1],[-8,0],[-2,-1],[-4,-2],[-8,-1],[-10,-1],[-8,-1],[0,-1],[4,-2],[1,-2],[-1,0],[-6,0],[-2,0],[-3,-1],[-5,-1],[-3,0],[-11,1],[-1,1],[1,1],[-1,0],[-5,1],[1,1],[-3,0],[-6,2],[-13,0],[-3,1],[-5,1],[-5,1],[-5,0],[-6,-1],[2,-1],[3,0],[6,0],[-3,-2],[3,-1],[6,0],[7,-1],[-7,-1],[-3,0],[-4,0],[-1,0],[3,-1],[9,-2],[1,0],[0,-1],[-2,0],[-4,0],[-8,1],[-20,4],[-6,0],[0,-1],[6,-2],[-5,0],[-4,0],[-5,1],[-4,1],[-3,-1],[-1,-1],[0,-3],[-1,-2],[-1,0],[0,-3],[-2,-1],[-3,0],[-3,0],[-1,1],[-5,-1],[-12,0],[-6,-1],[2,0],[3,-1],[-3,-1],[-4,-1],[-2,-1],[4,0],[-3,-1],[-5,0],[-9,1],[-4,-1],[4,-1],[7,-1],[6,0],[-2,-1],[-3,0],[-3,0],[-3,0],[-1,-1],[-1,0],[-1,-1],[-4,0],[-1,1],[-7,1],[-1,0],[-2,1],[-4,0],[-3,1],[2,1],[-3,0],[-4,1],[-3,0],[-4,1],[-5,0],[-3,0],[1,-1],[-3,0],[-13,0],[-10,0],[-4,0],[-4,0],[5,-1],[37,-2],[-4,-1],[-8,-1],[-15,0],[1,0],[0,-1],[-3,0],[-4,0],[-3,0],[-1,1],[0,1],[5,1],[11,0],[-22,1],[-7,0],[3,-1],[2,0],[0,-1],[2,-1],[5,-2],[1,0],[-34,1],[-11,0],[5,0],[6,-1],[5,0],[3,-1],[2,-1],[1,-1],[-4,-1],[-5,1],[-4,0],[-5,0],[-5,0],[-2,-1],[-1,-1],[-2,-1],[-3,0],[8,0],[-11,-2],[-3,0],[-1,0],[-2,-2],[-2,0],[-2,0],[-8,2],[-3,0],[-4,0],[-4,0],[-4,0],[8,-1],[4,-1],[3,-1],[-15,1],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[1,0],[-4,-1],[-5,0],[-14,-1],[6,-1],[60,0],[6,0],[5,-1],[1,-1],[-2,0],[-3,0],[-2,1],[-2,0],[-2,-1],[-5,-1],[-7,1],[-14,1],[-3,-1],[-3,-1],[11,-1],[4,0],[8,0],[5,0],[3,0],[-3,-2],[-9,0],[-17,1],[4,-2],[11,0],[2,-1],[0,-1],[-2,0],[-3,0],[-6,-1],[-2,0],[-2,0],[-2,-1],[-5,0],[-3,0],[-4,0],[-4,0],[-2,0],[0,1],[-1,0],[-8,2],[-4,0],[-4,1],[0,-1],[1,-1],[-11,0],[2,0],[1,-1],[-1,0],[-2,-1],[5,-1],[8,2],[5,-1],[-6,-2],[-4,-1],[-4,0],[-2,0],[-2,-1],[-3,0],[-3,0],[0,1],[1,0],[2,1],[1,0],[-3,0],[-2,0],[-2,-1],[-2,-1],[-5,-1],[-4,0],[-10,0],[1,1],[-4,1],[-4,0],[-9,0],[5,1],[21,0],[6,1],[-10,1],[-5,0],[-3,1],[1,0],[1,0],[-6,0],[-8,-1],[-7,-1],[-3,-1],[-2,0],[-4,0],[-4,1],[-2,0],[0,1],[0,2],[-2,1],[-1,1],[1,0],[2,1],[-1,1],[-3,0],[-3,0],[-4,0],[-1,0],[-5,3],[-2,0],[-2,1],[-3,0],[-3,1],[2,0],[3,1],[-5,0],[-8,-1],[-3,0],[-5,0],[-3,1],[-4,0],[-4,0],[29,-4],[7,-2],[4,-1],[6,-3],[3,-2],[-4,-1],[0,-1],[10,-1],[3,0],[2,-1],[1,0],[0,-1],[2,-1],[7,-2],[2,-1],[0,-1],[-3,-2],[1,0],[1,-1],[-1,0],[-2,0],[-2,0],[-2,0],[-5,1],[-3,0],[-15,0],[5,-1],[36,-3],[1,-1],[1,0],[2,-1],[-5,0],[-17,-2],[-1,0],[-1,1],[-2,2],[1,0],[-1,1],[-3,0],[-2,-1],[-1,0],[-2,-2],[-1,-1],[0,-1],[-1,0],[-2,0],[-5,-1],[3,-1],[-7,-2],[-4,-1],[-5,0],[-2,0],[-4,1],[-3,1],[-12,0],[-9,-1],[-5,-1],[-3,0],[0,-2],[4,0],[4,-1],[3,0],[-31,0],[-3,0],[-3,0],[-4,1],[-1,1],[-11,3],[-10,2],[-3,0],[-4,0],[-3,-2],[-4,0],[-5,-1],[-4,0],[-2,-1],[0,-1],[10,-2],[1,-1],[0,-1],[-2,-1],[-2,0],[-3,0],[-2,0],[2,0],[3,-1],[1,-1],[-1,-1],[0,-1],[2,0],[3,-1],[2,-1],[8,1],[3,0],[4,-1],[2,-1],[1,-1],[2,0],[3,-1],[-2,0],[-2,0],[-3,-1],[20,-1],[5,0],[8,0],[7,-1],[5,-1],[-19,-2],[-6,0],[-1,0],[7,2],[-4,1],[-4,0],[-4,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[-2,-1],[-1,0],[-4,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-5,-1],[5,0],[-2,-1],[-8,-2],[3,0],[3,-1],[2,-1],[-2,0],[-11,0],[-3,0],[-1,-1],[1,-1],[-1,-1],[-5,0],[-2,0],[-2,-1],[-1,-1],[1,-1],[3,-2],[1,0],[-1,-1],[-3,0],[-1,0],[0,-1],[0,-1],[0,1],[1,-1],[1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[3,-1],[12,1],[-1,-1],[-2,0],[-2,-1],[-2,0],[3,0],[1,-1],[-1,-1],[0,-2],[1,-1],[2,0],[11,0],[4,0],[5,1],[4,-1],[3,-1],[1,-1],[0,-1],[-2,0],[-1,-1],[-1,-2],[-1,-1],[-4,0],[-4,0],[-4,0],[-3,0],[-3,1],[-9,3],[-5,2],[-7,0],[0,-1],[2,0],[3,-2],[-9,1],[-3,0],[1,1],[-9,2],[-10,0],[-20,0],[3,-1],[3,0],[8,0],[16,-2],[-2,-1],[-7,-1],[-9,0],[-6,0],[0,-1],[2,0],[5,0],[-7,-1],[-11,1],[-5,-1],[30,-1],[6,-1],[-6,0],[-4,0],[-8,1],[-5,0],[-16,0],[0,-1],[8,0],[4,0],[3,-1],[-10,-1],[-11,0],[6,-1],[24,0],[0,-1],[-22,0],[-3,0],[2,0],[6,-1],[4,0],[6,-1],[2,0],[-9,0],[0,-1],[9,-1],[2,0],[1,-1],[-1,0],[-3,-1],[-2,0],[1,-1],[1,-1],[2,0],[3,0],[3,0],[1,0],[1,0],[3,1],[1,-1],[-1,-1],[-2,0],[-3,0],[-2,0],[-3,-1],[-2,0],[-1,1],[-3,0],[-2,1],[-3,-2],[-4,-1],[-1,0],[1,-1],[7,-1],[7,-1],[7,-1],[1,-1],[17,-2],[-7,0],[-7,0],[-15,1],[3,-1],[7,-1],[7,0],[6,-1],[-10,1],[-5,0],[-12,2],[-4,0],[-5,0],[0,-1],[6,0],[7,-1],[7,-1],[4,-2],[3,-1],[-3,-1],[-6,-1],[-5,-1],[8,-1],[-1,-2],[-2,0],[-3,-1],[4,-1],[1,-1],[-2,0],[-6,0],[2,-1],[7,0],[2,0],[1,0],[0,-1],[-2,0],[-2,-1],[-2,0],[-1,-1],[-1,-1],[1,-1],[2,0],[2,0],[-5,-1],[-1,0],[12,0],[6,0],[3,-1],[-14,0],[-5,-1],[-2,-2],[-1,-1],[1,-1],[5,0],[4,0],[2,-1],[-1,-1],[1,0],[2,-1],[4,0],[2,0],[1,0],[9,-5],[-2,0],[-2,0],[-2,0],[-1,-1],[1,0],[2,0],[2,0],[2,-1],[0,-1],[0,-1],[3,-1],[4,0],[4,0],[1,0],[-3,-1],[-3,-1],[-7,0],[-6,-1],[-9,-2],[-6,0],[-1,0],[0,-1],[2,0],[3,0],[5,1],[2,0],[5,0],[5,-1],[7,-1],[13,-2],[-10,-1],[4,-1],[5,0],[4,0],[1,0],[3,1],[4,0],[32,1],[6,0],[5,0],[3,-1],[9,-1],[3,-1],[-3,0],[-8,-1],[-2,-1],[1,-1],[3,-1],[1,-1],[3,-2],[7,0],[17,-1],[0,1],[-3,2],[8,2],[12,2],[24,1],[7,0],[7,-1],[4,-3],[0,-1],[-1,0],[-3,-1],[-2,0],[0,-1],[6,0],[6,-1],[10,-1],[8,-1],[1,-1],[2,-1],[1,0],[7,-2],[8,-1],[20,-1],[-4,-1],[-6,-1],[-3,0],[0,-1],[3,-1],[2,0],[1,-1],[4,1],[6,1],[5,1],[4,0],[3,0],[7,-1],[17,0],[4,0],[0,-1],[0,-1],[0,-1],[1,0],[5,-1],[-2,0],[-3,0],[-3,0],[-3,-1],[33,-2],[9,-1],[-10,-1],[-38,2],[-7,2],[-12,3],[3,-3],[9,-2],[11,-1],[7,-2],[-4,0],[-3,0],[-6,1],[2,-1],[5,-1],[11,-2],[6,-1],[3,0],[4,0],[3,0],[2,0],[1,1],[0,-2],[0,-1],[1,-1],[5,-2],[1,-1],[1,0],[1,1],[1,1],[-1,2],[-2,1],[5,0],[6,0],[6,0],[8,-1],[8,0],[3,-1],[2,-1],[-1,-3],[2,-1],[10,-2],[2,-1],[-4,2],[-4,1],[-2,2],[3,2],[8,1],[4,0],[0,-1],[0,-2],[1,-1],[10,-5],[9,-4],[4,-1],[10,0],[6,-1],[4,0],[1,0],[0,-1],[-1,0],[1,0],[3,-1],[2,0],[3,0],[-1,0],[-1,1],[4,0],[4,0],[-1,-1],[0,-3],[0,-1],[-8,0],[-3,0],[-17,5],[-7,1],[-7,1],[2,-1],[8,-2],[1,-1],[-2,-2],[-15,-3],[-4,-1],[-6,0],[-10,0],[-5,0],[-4,-1],[-1,-1],[4,0],[9,1],[59,0],[10,-1],[-2,-1],[-4,-1],[-5,-1],[-14,0],[-5,0],[-3,0],[-3,0],[-2,2],[-2,0],[-3,-1],[-5,-1],[-5,-1],[-18,-1],[-5,-1],[-1,-1],[-8,0],[-2,0],[0,-1],[-1,0],[-1,0],[-2,-1],[11,0],[-2,0],[-2,-1],[-3,0],[-3,-1],[-2,0],[-2,1],[-2,0],[-3,0],[4,-1],[2,-1],[-2,0],[-3,0],[-6,-2],[-10,0],[-13,-2],[-13,-1],[-6,-1],[-11,-2],[-8,-1],[-8,-1],[-18,1],[0,-1],[8,-1],[-3,0],[-6,0],[-3,0],[4,-1],[4,0],[-2,-1],[4,-1],[6,0],[4,0],[-7,-1],[-14,0],[-13,0],[-7,2],[2,0],[3,0],[3,0],[3,0],[-1,0],[-1,2],[-1,0],[-3,0],[-5,-1],[-4,0],[-1,0],[-3,1],[-2,0],[-1,0],[-3,-1],[-1,0],[-3,0],[0,-1],[2,-1],[1,0],[-7,-1],[-3,0],[-3,0],[-5,0],[-2,1],[32,-6],[-9,0],[-3,0],[18,-1],[5,1],[3,0],[2,-1],[1,0],[8,3],[15,1],[17,0],[13,-1],[-1,-1],[-2,0],[-2,-1],[7,0],[3,0],[3,1],[-6,3],[-2,1],[11,0],[-9,1],[-4,0],[-3,2],[14,-1],[6,0],[6,-1],[1,-1],[1,0],[16,-2],[-3,-1],[-4,0],[-5,0],[-4,1],[5,-1],[8,0],[7,-1],[4,-1],[-2,-1],[-5,-1],[-12,0],[-4,0],[-3,0],[-4,-1],[-4,1],[-3,0],[-7,0],[-3,0],[-19,0],[-7,0],[1,1],[1,1],[-5,0],[-4,0],[-3,-1],[-4,-1],[3,0],[3,0],[2,-1],[2,-1],[-8,0],[-3,0],[2,-1],[13,-2],[6,0],[6,-1],[6,-1],[3,-1],[-21,3],[-5,0],[0,-1],[4,-1],[4,0],[4,0],[2,-1],[1,-1],[2,0],[4,0],[-1,0],[-1,0],[-1,-1],[6,0],[3,0],[1,0],[-1,-1],[-1,-1],[-3,0],[-2,0],[-5,0],[-9,0],[-9,-1],[-4,-1],[3,0],[2,0],[2,0],[1,-1],[-22,-1],[-7,-1],[4,1],[6,0],[3,1],[-3,0],[2,1],[1,0],[-4,0],[-3,0],[-3,0],[-3,-1],[-3,0],[-8,0],[-3,-1],[-2,0],[-5,-2],[-3,0],[-12,0],[0,-1],[1,0],[0,-1],[-6,1],[-2,0],[-3,-1],[4,-1],[-4,-1],[-6,-2],[-4,-1],[1,-1],[1,-1],[1,0],[-3,-1],[-3,-1],[-4,0],[-4,0],[-3,0],[-1,-1],[-1,-1],[0,-2],[-3,1],[-2,0],[-1,1],[1,1],[-1,1],[-1,0],[-2,1],[-2,0],[-1,0],[-2,0],[-4,0],[-2,0],[-5,2],[-2,0],[0,-1],[3,-1],[4,-1],[-3,-2],[-2,0],[-1,0],[-1,0],[0,1],[1,1],[1,0],[-8,1],[-1,1],[1,2],[-2,1],[0,1],[3,1],[2,2],[-1,2],[0,1],[-1,1],[3,1],[0,1],[-2,1],[-3,-1],[-3,0],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-2,1],[-9,1],[1,1],[5,2],[1,1],[-1,1],[-2,1],[-3,0],[-2,1],[3,-3],[-3,-1],[-3,-1],[-4,0],[-4,-1],[2,-1],[-1,-2],[-1,-1],[4,-1],[-2,-1],[-2,-2],[-1,-1],[-3,0],[-2,0],[-1,-1],[-1,0],[1,0],[2,-1],[2,0],[3,0],[-3,-1],[3,0],[3,-1],[-2,-1],[-4,0],[-5,0],[-5,0],[-5,0],[2,-1],[3,-1],[8,0],[0,-1],[-5,0],[1,0],[2,0],[-6,0],[-18,2],[-8,1],[0,-1],[4,0],[1,-1],[-2,-2],[-2,-2],[2,-1],[1,0],[6,0],[-7,-1],[-28,1],[8,-2],[1,-1],[-5,-1],[-12,0],[-7,0],[0,-2],[-26,1],[-8,0],[-2,0],[-5,2],[-3,0],[-3,0],[-7,-1],[-4,0],[3,0],[8,-1],[2,0],[0,-1],[-1,0],[-2,-1],[-2,0],[5,-1],[10,1],[5,-1],[-6,-1],[-3,-1],[-4,-1],[-5,0],[-14,2],[-8,0],[-5,-1],[11,0],[4,-1],[4,-1],[-5,0],[-21,-1],[-81,1],[-81,2],[0,-1],[3,0],[3,0],[1,-1],[-2,-1],[-3,0],[-10,1],[-4,-1],[3,0],[2,0],[3,0],[1,-1],[5,1],[11,-1],[4,1],[4,0],[3,1],[3,-1],[5,-1],[1,0],[0,-1],[1,-1],[2,0],[3,0],[2,1],[2,0],[1,2],[2,1],[3,0],[3,0],[12,-1],[3,0],[27,0],[5,-1],[5,0],[3,-1],[10,0],[4,-1],[-1,1],[-1,1],[8,-1],[3,0],[-2,-1],[2,-1],[4,-1],[6,0],[-2,-1],[-1,0],[6,0],[0,-1],[-2,0],[3,-1],[9,0],[13,-2],[-6,-1],[-12,0],[-5,0],[2,-1],[-5,-1],[-8,-1],[-6,0],[-1,0],[-3,-1],[-1,0],[-2,0],[-3,1],[-2,0],[-28,1],[-14,1],[-23,1],[-7,0],[9,0],[49,-5],[8,0],[3,0],[2,-1],[0,-1],[-1,-1],[1,-1],[2,0],[4,0],[3,1],[3,0],[1,-1],[1,-1],[-34,1],[4,-1],[9,-1],[3,-1],[0,-1],[3,-1],[3,1],[1,0],[-2,1],[14,0],[5,0],[-3,-1],[-1,0],[-4,0],[-1,0],[-1,-1],[-1,-1],[-2,0],[-9,0],[0,-1],[5,0],[18,-2],[-3,0],[-1,0],[3,-1],[3,0],[2,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-3,0],[-2,0],[1,-1],[2,0],[2,-1],[-7,-2],[-14,1],[-13,3],[-11,1],[4,-1],[9,-1],[3,-2],[-1,0],[-3,0],[-2,0],[5,-1],[8,-2],[5,-1],[-5,-1],[1,-1],[-2,0],[-2,0],[-4,0],[5,-1],[4,0],[4,-1],[3,-1],[-2,0],[-2,-1],[-2,1],[-2,0],[-7,-1],[-1,0],[3,-1],[-4,1],[-5,2],[-3,0],[-4,-1],[2,-1],[5,-1],[3,0],[3,0],[3,-2],[2,0],[3,0],[2,0],[2,0],[1,0],[0,-2],[2,0],[6,-1],[2,-1],[-4,0],[-9,1],[2,-1],[7,-1],[1,-1],[-3,-1],[-4,0],[-4,1],[-3,0],[-5,2],[-2,0],[0,-1],[-2,-1],[-5,0],[-9,1],[0,1],[-1,1],[-1,0],[3,0],[2,0],[2,0],[3,0],[-31,5],[-2,0],[-2,0],[-1,-1],[1,0],[2,-1],[6,-1],[14,-1],[-1,-1],[-3,0],[-1,0],[1,-1],[1,-1],[-1,0],[-3,-1],[-4,1],[-5,0],[-10,1],[3,-1],[-1,0],[-2,0],[-5,0],[51,-10],[7,-1],[-2,-1],[-4,1],[-11,1],[-3,1],[-19,4],[-28,5],[2,-2],[2,-1],[8,-1],[14,-2],[10,-2],[2,0],[1,-1],[2,0],[3,-1],[2,0],[8,-1],[3,-1],[-3,-1],[5,0],[4,0],[4,-1],[2,-1],[-5,0],[3,0],[0,-1],[-16,1],[-7,0],[-7,1],[1,-1],[5,-1],[2,0],[2,-1],[-1,-1],[-3,0],[-5,0],[2,0],[3,-1],[3,0],[2,0],[1,-1],[-1,0],[-2,-1],[-2,0],[-2,0],[-7,-1],[-2,-1],[-1,1],[0,1],[0,1],[-2,-1],[-2,0],[-2,0],[-3,1],[3,-1],[1,0],[2,-1],[-4,-1],[-2,0],[6,-1],[-7,0],[0,-1],[18,0],[9,0],[7,-3],[5,-2],[2,-2],[-7,1],[3,-2],[-1,0],[-4,0],[-3,0],[-1,-1],[1,-1],[3,-1],[5,0],[-4,0],[-4,-1],[-3,0],[1,-1],[-13,0],[-6,0],[-3,-2],[8,-1],[-2,-1],[-3,0],[3,-1],[-18,-2],[-4,-1],[6,-3],[-6,-1],[-2,-1],[2,-2],[3,-2],[7,-2],[2,-1],[3,0],[1,0],[2,0],[2,0],[4,-2],[-4,-1],[2,0],[3,-1],[2,-1],[-3,0],[-8,0],[-1,0],[1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,0],[-4,0],[-5,0],[-3,0],[1,0],[2,-1],[2,0],[2,0],[0,-1],[-4,0],[-3,0],[-2,-2],[2,-1],[2,-1],[3,-1],[1,0],[-1,-1],[-6,-2],[0,-1],[1,-2],[-1,-1],[-7,-4],[2,-1],[3,-1],[3,1],[3,0],[2,1],[2,-1],[1,0],[-1,-1],[-1,0],[-3,-1],[-6,1],[-4,0],[-3,0],[-5,-1],[-4,0],[-1,0],[2,-1],[3,-2],[1,-2],[-1,-2],[-1,-1],[-3,0],[-4,0],[-4,0],[-6,1],[-3,-1],[-3,0],[-2,0],[-3,0],[-2,-1],[-5,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[-2,-1],[-6,0],[-2,0],[-1,-2],[-12,-4],[-5,-2],[-7,-7],[-6,-6],[-2,0],[-2,0],[-2,-1],[-1,-1],[-1,0],[-4,-1],[-9,-2],[-4,-1],[-14,-5],[-5,-1],[-4,0],[-4,1],[-7,0],[7,3],[2,1],[-5,1],[-11,-1],[-6,0],[-4,1],[-3,0],[-1,0],[-1,1],[-3,0],[-2,0],[-4,1],[-2,0],[-3,-1],[-5,-1],[-5,-1],[-3,1],[1,1],[2,1],[1,1],[-2,0],[-3,0],[-9,-2],[-10,0],[-1,-1],[-1,-1],[-1,0],[-5,0],[-1,1],[-2,0],[-3,1],[-3,0],[-4,0],[-2,-1],[-4,-1],[-1,0],[-1,-1],[-1,0],[-10,0],[-3,0],[-3,0],[5,1],[1,0],[-1,1],[-5,1],[-5,-1],[-9,-1],[-10,0],[-7,1],[-2,0],[-2,0],[-2,0],[-1,-1],[-9,0],[-2,1],[-1,1],[-1,0],[-2,0],[-6,0],[-2,0],[1,-1],[1,-1],[1,0],[-14,1],[-8,0],[-6,0],[-5,-1],[-8,1],[-6,0],[1,-2],[-5,0],[-4,1],[-4,0],[-5,1],[-11,0],[-6,-1],[-4,-1],[-1,-1],[1,-1],[1,0],[4,0],[1,-1],[1,-1],[1,0],[7,-2],[2,-1],[3,-1],[-3,0],[-3,-1],[-3,0],[-2,-1],[-2,0],[-1,0],[-1,1],[-5,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-2,0],[-7,0],[-2,0],[0,1],[3,0],[-2,1],[-2,0],[-1,1],[0,1],[-5,-1],[-2,0],[-1,1],[-3,0],[-5,-1],[-2,0],[-7,0],[-4,-1],[-8,-2],[-9,-2],[-5,-1],[-4,0],[-5,-1],[-3,-1],[-2,-2],[-3,0],[-10,-1],[-8,-3],[-6,-3],[-3,-3],[-1,-3],[1,-1],[2,-1],[4,-1],[9,-1],[3,-1],[1,-1],[-1,-1],[1,0],[2,-1],[2,-1],[5,-1],[10,-3],[2,-1],[-1,-2],[-3,-1],[-13,-2],[-4,-1],[-3,0],[-11,-4],[-4,-1],[-5,-1],[-5,0],[-15,0],[-7,0],[-7,1],[-18,2],[-6,1],[-8,0],[-3,0],[-6,-1],[-4,0],[-3,0],[-11,0],[-31,0],[-5,0],[-2,-1],[-2,-1],[-3,0],[-4,-1],[-10,1],[-8,-1],[-22,-2],[-7,-1],[-16,0],[-7,0],[-39,3],[-12,0],[-5,0],[-3,0],[-1,0],[-4,1],[-2,0],[-5,0],[-5,0],[-2,0],[-4,-1],[-2,0],[-3,0],[-3,1],[-2,0],[-5,-1],[-4,0],[-4,0],[-1,1],[7,3],[2,0],[1,0],[2,-1],[2,0],[4,-1],[6,1],[5,0],[3,1],[-1,1],[1,0],[2,0],[3,0],[-2,2],[-12,3],[-2,2],[3,2],[6,2],[17,2],[2,1],[3,0],[2,1],[1,1],[-2,2],[-3,1],[-4,0],[-3,1],[-4,0],[-5,0],[-2,2],[-6,0],[-4,0],[-3,1],[3,0],[2,0],[1,1],[1,1],[-3,3],[-8,2],[-10,1],[-7,1],[-2,1],[-1,1],[0,1],[-2,1],[-2,0],[-1,0],[-3,1],[-2,1],[-1,1],[-2,1],[-4,1],[-3,0],[-3,1],[-1,2],[-1,0],[-21,5],[-2,1],[-9,3],[-2,1],[-2,2],[-1,1],[-6,2],[-3,2],[-9,1],[-3,1],[45,-3],[2,-1],[3,-1],[2,0],[2,0],[3,-1],[2,0],[2,0],[3,0],[2,0],[10,0],[5,0],[4,1],[3,1],[1,1],[-1,1],[-10,1],[-5,2],[-8,3],[-20,3],[-5,2],[8,2],[13,1],[28,-2],[14,1],[3,1],[4,1],[3,2],[1,2],[-1,1],[-7,3],[-4,4],[-4,1],[-7,0],[-5,0],[-10,-1],[-3,0],[-4,0],[-4,0],[-12,3],[-2,1],[-1,1],[-4,1],[-4,1],[-4,1],[-5,3],[2,1],[-1,1],[-15,2],[-1,0],[0,1],[-2,0],[-4,0],[-1,1],[-4,1],[-3,0],[-7,1],[-6,0],[-9,1],[-4,1],[-3,1],[-1,2],[1,0],[2,1],[-1,1],[0,1],[-1,0],[-1,1],[-2,0],[-7,1],[-7,1],[-6,1],[0,1],[-2,0],[-5,1],[5,1],[-1,1],[-7,2],[-1,1],[0,1],[0,1],[-2,0],[-7,0],[-3,0],[8,2],[2,0],[-2,0],[-6,0],[-4,1],[-4,0],[-5,1],[7,0],[3,0],[3,0],[-3,1],[-4,0],[-7,0],[2,1],[2,0],[1,1],[6,0],[1,1],[-1,1],[-2,1],[-2,1],[-3,0],[-1,1],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-4,0],[3,1],[6,1],[5,2],[-12,0],[6,0],[2,1],[-1,1],[-7,2],[-1,1],[-2,0],[-2,-1],[-2,0],[-1,0],[-4,-1],[-3,-5],[-4,-2],[-1,1],[-5,0],[-4,0],[2,2],[-2,0],[-3,0],[-2,0],[-2,1],[3,0],[-1,1],[-1,1],[-1,2],[1,1],[2,1],[3,0],[3,1],[-4,0],[-4,1],[2,0],[3,0],[-5,1],[-1,0],[3,1],[-1,4],[1,2],[-1,1],[-3,0],[-1,0],[-1,-1],[-3,-1],[-3,0],[-1,1],[-1,1],[-2,1],[-2,1],[-1,0],[2,2],[15,0],[4,1],[-6,0],[-6,0],[-7,0],[-5,0],[-12,1],[-6,0],[1,-1],[-3,0],[-4,0],[-4,0],[0,1],[1,1],[22,4],[2,0],[-1,1],[-4,0],[-5,0],[-4,-1],[-5,2],[-5,1],[-5,1],[-7,1],[5,1],[3,0],[3,0],[-2,2],[3,0],[12,1],[0,1],[-3,0],[2,0],[1,0],[2,1],[-7,1],[1,1],[11,3],[3,2],[0,1],[-1,1],[-2,1],[-1,1],[4,1],[-1,0],[-1,1],[6,0],[2,1],[2,5],[1,1],[3,0],[3,0],[2,0],[2,1],[2,0],[-4,0],[-3,1],[-2,0],[-2,2],[-2,1],[-3,0],[-2,1],[-1,2],[4,1],[13,1],[-3,1],[-5,0],[-10,-1],[-13,0],[-6,0],[0,-1],[-3,-1],[-8,0],[-11,-2],[-3,0],[-1,0],[-5,-2],[-3,0],[-3,0],[-3,0],[-4,0],[-3,0],[2,0],[2,-1],[-8,0],[-2,2],[1,1],[4,2],[5,2],[6,2],[13,2],[-3,1],[3,0],[3,1],[8,1],[-4,1],[-5,-1],[-6,-1],[-4,-1],[-2,1],[-5,3],[-1,1],[-2,0],[2,-3],[0,-2],[-3,-3],[-4,-2],[-7,-1],[-7,-2],[-16,-2],[2,1],[3,1],[3,1],[3,0],[0,1],[-3,-1],[-7,0],[-2,0],[-2,1],[2,1],[2,0],[3,1],[8,0],[-1,0],[-5,1],[1,2],[-4,0],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-3,0],[-3,0],[2,1],[8,3],[5,1],[2,1],[2,1],[-2,-1],[-10,-2],[-4,-1],[-2,0],[-1,0],[-2,-1],[-7,-1],[-6,0],[-6,0],[-5,-1],[-3,0],[1,1],[0,1],[-1,0],[-4,2],[1,1],[4,1],[8,0],[-2,1],[3,1],[4,0],[3,1],[-8,1],[-2,0],[0,1],[-2,1],[-1,0],[1,0],[1,1],[1,0],[1,2],[2,1],[2,0],[2,1],[1,0],[-4,0],[1,1],[-2,1],[-1,0],[-2,0],[1,1],[1,1],[-2,1],[-9,3],[1,1],[0,1],[-1,0],[-6,0],[-2,1],[0,1],[3,1],[5,0],[-1,1],[1,1],[3,1],[2,1],[0,3],[-2,0],[-2,0],[-3,1],[-1,0],[0,2],[-1,1],[-1,1],[1,0],[1,1],[-12,0],[-6,1],[-3,1],[2,1],[5,1],[10,1],[-9,0],[-5,0],[-2,1],[1,1],[3,1],[15,3],[6,1],[24,1],[7,-1],[4,-2],[1,-2],[5,-1],[4,-2],[4,0],[2,0]]],"transform":{"scale":[0.004276208870887092,0.01352461092459247],"translate":[-9.11742102799991,-54.46249765399998]}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment