Skip to content

Instantly share code, notes, and snippets.

@veltman
Last active July 3, 2016 10:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veltman/399cc363de26fee868d6 to your computer and use it in GitHub Desktop.
Save veltman/399cc363de26fee868d6 to your computer and use it in GitHub Desktop.
Locator map + vector tiles

Automatically adding some extra context (major cities and interstates) to a county map with MapZen vector tiles.

Downloads the tiles to cover the entire bounding box at a medium zoom level, stitches together the road segments, and filters down to major interstates (e.g. I-5, I-80) and large cities with some minimum spacing between them.

This would probably never be practical at all! Downloads a ton of unused data and the results for any random place aren't totally predictable.

Potential improvements: dynamic label placement, adding rivers

<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font: 13px Helvetica, Arial, sans-serif;
}
path {
stroke-linejoin: round;
fill: none;
stroke: #000;
}
#boundary {
stroke-width: 4px;
stroke: #ccc;
}
.counties path {
stroke-width: 1px;
stroke: #ccc;
fill: #fff;
}
.outer path {
stroke-width: 6px;
stroke: #ababab;
stroke-linecap: butt;
}
.inner path {
stroke-width: 4px;
stroke: #fff;
stroke-linecap: round;
}
circle {
fill: #444;
}
.clipped {
clip-path: url(#clip);
}
text {
fill: #444;
}
.shields text {
fill: #666;
font-size: 12px;
letter-spacing: 1px;
text-anchor: middle;
vertical-align: top;
font-weight: 500;
}
</style>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.14/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/queue-async/1.0.7/queue.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.20/topojson.min.js"></script>
<script>
var width = 960,
height = 500;
var projection = d3.geo.transverseMercator()
.rotate([106.25, -31])
.scale(4778)
.translate([467, 517]);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var clipped = svg.append("g")
.attr("class","clipped");
d3.json("NM.topo.json",function(err,topo){
var state = topojson.feature(topo,d3.values(topo.objects)[0]),
outer = topojson.merge(topo,d3.values(topo.objects)[0].geometries),
inBounds = pipper(outer),
q = queue();
clipped.append("g")
.attr("class","counties")
.selectAll("path")
.data(state.features)
.enter()
.append("path")
.attr("d",path);
xyz(d3.geo.bounds(state),8).forEach(function(tile){
q.defer(d3.json,"http://vector.mapzen.com/osm/roads,places/" + tile.z + "/" + tile.x + "/" + tile.y + ".topojson");
});
q.awaitAll(function(err,tiles){
var roads = [],
cities = [];
tiles.forEach(function(tile){
topojson.feature(tile,tile.objects.roads).features.forEach(function(d){
d.properties.highway = getHighway(d.properties);
// Only get two-digit interstates
if (d.properties.highway && inBounds(d.geometry)) {
roads.push(d);
}
});
topojson.feature(tile,tile.objects.places).features.forEach(function(d){
if (d.properties.kind === "city" && inBounds(d.geometry)) {
cities.push(d);
}
});
cities.sort(function(a,b){
return a.properties.scalerank === b.properties.scalerank ?
b.properties.population - a.properties.population :
a.properties.scalerank - b.properties.scalerank;
});
});
// Prevent closely packed cities
cities = cities.reduce(function(arr,city){
if (arr.every(farFrom(city))) {
arr.push(city);
}
return arr;
},[]);
roads = d3.nest()
.key(function(d){ return d.properties.highway; })
.rollup(merge)
.entries(roads);
clipped.selectAll(".highways")
.data(["outer","inner"])
.enter()
.append("g")
.attr("class",function(d){
return d + " highways";
})
.selectAll("path")
.data(roads.map(function(d){
return d.values;
}))
.enter()
.append("path")
.attr("d",path);
var shields = clipped.selectAll("g.shields")
.data(Array.prototype.slice.call(document.querySelectorAll(".inner path")))
.enter()
.append("g")
.attr("class","shields")
.attr("transform",function(d){
var mid = d.getPointAtLength(d.getTotalLength() * 0.8);
return "translate(" + (mid.x - 15) + " " + (mid.y - 15) + ")";
});
shields.append("image")
.attr("xlink:href","shield.svg")
.attr("width",30)
.attr("height",30)
.append("text")
.text(function(d){
return d3.select(d).datum().properties.highway;
})
.attr("dx",15)
.attr("dy",21)
.each(function(){
this.parentNode.parentNode.appendChild(this);
});
var places = svg.append("g")
.attr("class","places")
.selectAll("g")
.data(cities)
.enter()
.append("g")
.attr("transform",function(d){
return "translate(" + projection(d.geometry.coordinates) + ")";
});
places.append("circle")
.attr("r",3);
places.append("text")
.attr("dy",-5)
.attr("dx",5)
.text(function(d){
return d.properties.name;
});
d3.select("g").append("clipPath")
.attr("id","clip")
.append("path")
.attr("id","boundary")
.datum(outer)
.attr("d",path);
clipped.append("use")
.attr("xlink:href","#boundary");
});
});
function getHighway(properties) {
if (!properties.ref || properties.kind !== "highway") {
return false;
}
// Filter on two-digit multiples of five and ten for major interstates
var match = properties.ref.match(/I[- ]?[0-9][05](?![0-9])/);
return match ? match[0].replace(/[^0-9]/g,""): null;
}
function xyz(bounds,z) {
var tiles = [],
tileBounds = bounds.map(pointToTile(z));
d3.range(tileBounds[0][0],tileBounds[1][0] + 1).forEach(function(x){
d3.range(tileBounds[1][1],tileBounds[0][1] + 1).forEach(function(y){
tiles.push({
x: x,
y: y,
z: z
});
});
});
return tiles;
}
// Modified from https://github.com/mapbox/tilebelt/blob/master/index.js
function pointToTile(z) {
return function(p){
var sin = Math.sin(p[1] * Math.PI / 180),
z2 = Math.pow(2, z),
x = z2 * (p[0] / 360 + 0.5),
y = z2 * (0.5 - 0.25 * Math.log((1 + sin) / (1 - sin)) / Math.PI);
return [
Math.floor(x),
Math.floor(y)
];
};
}
function merge(features) {
var merged = {
type: "Feature",
properties: {
highway: features[0].properties.highway
},
geometry: {
type: "MultiLineString",
coordinates: []
}
};
features.forEach(function(feature){
var coords = feature.geometry.coordinates;
if (feature.geometry.type === "LineString") {
coords = [coords];
}
coords.forEach(function(lineString){
merged.geometry.coordinates.push(lineString);
});
});
return merged;
}
function pipper(geo) {
var vs = geo.coordinates[0][0];
return function(search) {
if (search.type === "Point") {
return pip(search.coordinates,vs);
}
if (search.type === "LineString") {
return search.coordinates.some(function(point){
return pip(point,vs);
});
}
return search.coordinates.some(function(ls){
return ls.some(function(point){
return pip(point,vs);
});
});
};
}
// https://github.com/substack/point-in-polygon/
function pip(point, vs){
var x = point[0], y = point[1];
var inside = false;
for (var i = 0, j = vs.length - 1; i < vs.length; j = i++) {
var xi = vs[i][0], yi = vs[i][1];
var xj = vs[j][0], yj = vs[j][1];
var intersect = ((yi > y) != (yj > y))
&& (x < (xj - xi) * (y - yi) / (yj - yi) + xi);
if (intersect) inside = !inside;
}
return inside;
}
function farFrom(a) {
var pa = projection(a.geometry.coordinates);
return function(b){
var pb = projection(b.geometry.coordinates);
return Math.sqrt(Math.pow(pb[0] - pa[0],2) + Math.pow(pb[1] - pa[1],2)) > 50;
};
}
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"NM.geo":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"011","COUNTYNS":"00933054","GEOID":"35011","NAME":"De Baca","NAMELSAD":"De Baca County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":null,"METDIVFP":null,"FUNCSTAT":"A","ALAND":6015539696,"AWATER":29159492,"INTPTLAT":"+34.3592729","INTPTLON":"-104.3686961"},"arcs":[[0,1,2,3,4]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"035","COUNTYNS":"00929104","GEOID":"35035","NAME":"Otero","NAMELSAD":"Otero County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":"10460","METDIVFP":null,"FUNCSTAT":"A","ALAND":17128142410,"AWATER":37012231,"INTPTLAT":"+32.5887764","INTPTLON":"-105.7810785"},"arcs":[[5,6,7,8,9,10]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"003","COUNTYNS":"00929108","GEOID":"35003","NAME":"Catron","NAMELSAD":"Catron County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":null,"METDIVFP":null,"FUNCSTAT":"A","ALAND":17932266958,"AWATER":14191043,"INTPTLAT":"+33.9018583","INTPTLON":"-108.3920882"},"arcs":[[11,12,13,14,15]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"059","COUNTYNS":"00929115","GEOID":"35059","NAME":"Union","NAMELSAD":"Union County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":null,"METDIVFP":null,"FUNCSTAT":"A","ALAND":9903448673,"AWATER":18467790,"INTPTLAT":"+36.4880853","INTPTLON":"-103.4757229"},"arcs":[[16,17,18,19]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"047","COUNTYNS":"00929114","GEOID":"35047","NAME":"San Miguel","NAMELSAD":"San Miguel County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":"106","CBSAFP":"29780","METDIVFP":null,"FUNCSTAT":"A","ALAND":12213734849,"AWATER":51380262,"INTPTLAT":"+35.4768585","INTPTLON":"-104.8035189"},"arcs":[[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,46,47,48,49,50,51,52,53,54,-55,55,56,57,58,59,60,61,62,63]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"055","COUNTYNS":"00933056","GEOID":"35055","NAME":"Taos","NAMELSAD":"Taos County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":"45340","METDIVFP":null,"FUNCSTAT":"A","ALAND":5705972272,"AWATER":3385844,"INTPTLAT":"+36.5765287","INTPTLON":"-105.6379865"},"arcs":[[64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"017","COUNTYNS":"00915980","GEOID":"35017","NAME":"Grant","NAMELSAD":"Grant County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":"43500","METDIVFP":null,"FUNCSTAT":"A","ALAND":10260552064,"AWATER":15353565,"INTPTLAT":"+32.7320870","INTPTLON":"-108.3815043"},"arcs":[[80,81,82,-15,83,84,85,86,87]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"007","COUNTYNS":"00929117","GEOID":"35007","NAME":"Colfax","NAMELSAD":"Colfax County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":null,"METDIVFP":null,"FUNCSTAT":"A","ALAND":9733541309,"AWATER":26310385,"INTPTLAT":"+36.6129625","INTPTLON":"-104.6401256"},"arcs":[[-20,88,89,90,-78,76,-76,74,-74,91]]},{"type":"MultiPolygon","properties":{"STATEFP":"35","COUNTYFP":"043","COUNTYNS":"00929113","GEOID":"35043","NAME":"Sandoval","NAMELSAD":"Sandoval County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":"106","CBSAFP":"10740","METDIVFP":null,"FUNCSTAT":"A","ALAND":9610446197,"AWATER":13701836,"INTPTLAT":"+35.6850708","INTPTLON":"-106.8826194"},"arcs":[[[92,93,94,95,96,97,98,99,100,101,102]],[[103,104]]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"006","COUNTYNS":"00933051","GEOID":"35006","NAME":"Cibola","NAMELSAD":"Cibola County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":"106","CBSAFP":"24380","METDIVFP":null,"FUNCSTAT":"A","ALAND":11757111073,"AWATER":5799905,"INTPTLAT":"+34.9320500","INTPTLON":"-108.0003740"},"arcs":[[105,106,-93,107,108,109,-12]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"013","COUNTYNS":"00929109","GEOID":"35013","NAME":"Doña Ana","NAMELSAD":"Doña Ana County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":"238","CBSAFP":"29740","METDIVFP":null,"FUNCSTAT":"A","ALAND":9862379062,"AWATER":17584926,"INTPTLAT":"+32.3509119","INTPTLON":"-106.8321821"},"arcs":[[110,-11,111,112]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"021","COUNTYNS":"00933055","GEOID":"35021","NAME":"Harding","NAMELSAD":"Harding County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":null,"METDIVFP":null,"FUNCSTAT":"A","ALAND":5504944920,"AWATER":1154360,"INTPTLAT":"+35.8595804","INTPTLON":"-103.8514950"},"arcs":[[113,114,115,116,117,118,-119,118,119,89,-90,-89,-19,120,-60]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"023","COUNTYNS":"00929106","GEOID":"35023","NAME":"Hidalgo","NAMELSAD":"Hidalgo County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":null,"METDIVFP":null,"FUNCSTAT":"A","ALAND":8901447444,"AWATER":23652065,"INTPTLAT":"+31.8980519","INTPTLON":"-108.7519293"},"arcs":[[-82,80,-88,121,122]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"053","COUNTYNS":"01702371","GEOID":"35053","NAME":"Socorro","NAMELSAD":"Socorro County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":null,"METDIVFP":null,"FUNCSTAT":"A","ALAND":17214577127,"AWATER":5360180,"INTPTLAT":"+33.9916579","INTPTLON":"-106.9391362"},"arcs":[[-13,-110,123,124,125,126]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"028","COUNTYNS":"01702366","GEOID":"35028","NAME":"Los Alamos","NAMELSAD":"Los Alamos County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":"106","CBSAFP":"31060","METDIVFP":null,"FUNCSTAT":"A","ALAND":282741305,"AWATER":229939,"INTPTLAT":"+35.8700469","INTPTLON":"-106.3079679"},"arcs":[[127,128,-105,129,-99,97,-97]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"033","COUNTYNS":"01702367","GEOID":"35033","NAME":"Mora","NAMELSAD":"Mora County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":null,"METDIVFP":null,"FUNCSTAT":"A","ALAND":5001920023,"AWATER":6079130,"INTPTLAT":"+35.9828413","INTPTLON":"-104.9218975"},"arcs":[[130,131,-79,-91,-90,-120,-119,118,-119,-118,116,-116,114,-114,-59,-58,-57,-56,54,-55,-54,-53,-52,50,-50,-49,-48,-47,45,-46,-45,43,-43,41,-41,39,-39,-38,-37,35,-35,33,-33,31,-31,29,-29,27,-27,25,-25,23,-23,21,-21]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"015","COUNTYNS":"00936829","GEOID":"35015","NAME":"Eddy","NAMELSAD":"Eddy County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":"16100","METDIVFP":null,"FUNCSTAT":"A","ALAND":10815081659,"AWATER":56440148,"INTPTLAT":"+32.4578702","INTPTLON":"-104.3064789"},"arcs":[[132,-133,133,134,-9,135]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"009","COUNTYNS":"00933053","GEOID":"35009","NAME":"Curry","NAMELSAD":"Curry County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":"188","CBSAFP":"17580","METDIVFP":null,"FUNCSTAT":"A","ALAND":3638239993,"AWATER":8177773,"INTPTLAT":"+34.5729841","INTPTLON":"-103.3460546"},"arcs":[[136,137,138]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"041","COUNTYNS":"01702369","GEOID":"35041","NAME":"Roosevelt","NAMELSAD":"Roosevelt County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":"188","CBSAFP":"38780","METDIVFP":null,"FUNCSTAT":"A","ALAND":6339211624,"AWATER":18703747,"INTPTLAT":"+34.0214569","INTPTLON":"-103.4827248"},"arcs":[[139,140,141,142,143,-4,144,-138]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"045","COUNTYNS":"00936844","GEOID":"35045","NAME":"San Juan","NAMELSAD":"San Juan County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":"22140","METDIVFP":null,"FUNCSTAT":"A","ALAND":14279077920,"AWATER":65425890,"INTPTLAT":"+36.5116245","INTPTLON":"-108.3245778"},"arcs":[[145,-95,146,147]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"027","COUNTYNS":"00929116","GEOID":"35027","NAME":"Lincoln","NAMELSAD":"Lincoln County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":null,"METDIVFP":null,"FUNCSTAT":"A","ALAND":12512499478,"AWATER":564282,"INTPTLAT":"+33.7409407","INTPTLON":"-105.4490834"},"arcs":[[148,149,-1,150,151,152,153,154,-7,155,-126]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"019","COUNTYNS":"00929111","GEOID":"35019","NAME":"Guadalupe","NAMELSAD":"Guadalupe County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":null,"METDIVFP":null,"FUNCSTAT":"A","ALAND":7848985805,"AWATER":2890381,"INTPTLAT":"+34.8697822","INTPTLON":"-104.7849677"},"arcs":[[-62,156,-2,-150,157]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"057","COUNTYNS":"00929112","GEOID":"35057","NAME":"Torrance","NAMELSAD":"Torrance County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":"106","CBSAFP":"10740","METDIVFP":null,"FUNCSTAT":"A","ALAND":8662894973,"AWATER":2301139,"INTPTLAT":"+34.5549786","INTPTLON":"-105.8905582"},"arcs":[[158,159,-63,-158,-149,-125,160]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"029","COUNTYNS":"00933057","GEOID":"35029","NAME":"Luna","NAMELSAD":"Luna County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":"19700","METDIVFP":null,"FUNCSTAT":"A","ALAND":7679791940,"AWATER":431978,"INTPTLAT":"+32.1845231","INTPTLON":"-107.7471911"},"arcs":[[161,-113,162,-122,-87]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"031","COUNTYNS":"00929107","GEOID":"35031","NAME":"McKinley","NAMELSAD":"McKinley County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":"23700","METDIVFP":null,"FUNCSTAT":"A","ALAND":14114968741,"AWATER":14130257,"INTPTLAT":"+35.5838784","INTPTLON":"-108.2532659"},"arcs":[[-147,-94,-107,163]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"039","COUNTYNS":"01702368","GEOID":"35039","NAME":"Rio Arriba","NAMELSAD":"Rio Arriba County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":"106","CBSAFP":"21580","METDIVFP":null,"FUNCSTAT":"A","ALAND":15179502714,"AWATER":91455675,"INTPTLAT":"+36.5096687","INTPTLON":"-106.6939829"},"arcs":[[-146,164,-72,70,-70,68,-68,66,-66,64,-80,-132,165,166,167,-128,-96]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"025","COUNTYNS":"01702365","GEOID":"35025","NAME":"Lea","NAMELSAD":"Lea County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":"26020","METDIVFP":null,"FUNCSTAT":"A","ALAND":11372051343,"AWATER":8468321,"INTPTLAT":"+32.7956865","INTPTLON":"-103.4132707"},"arcs":[[-141,168,-134,132,169]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"005","COUNTYNS":"01702364","GEOID":"35005","NAME":"Chaves","NAMELSAD":"Chaves County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":"40740","METDIVFP":null,"FUNCSTAT":"A","ALAND":15708996045,"AWATER":25507630,"INTPTLAT":"+33.3616045","INTPTLON":"-104.4698374"},"arcs":[[151,-151,-5,-144,142,-142,-170,-133,-136,-8,-155,153,-153]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"049","COUNTYNS":"00933322","GEOID":"35049","NAME":"Santa Fe","NAMELSAD":"Santa Fe County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":"106","CBSAFP":"42140","METDIVFP":null,"FUNCSTAT":"A","ALAND":4945412532,"AWATER":3645423,"INTPTLAT":"+35.5143241","INTPTLON":"-105.9657706"},"arcs":[[-104,-129,-168,166,-166,-131,-64,-160,170,-100,-130]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"037","COUNTYNS":"00929110","GEOID":"35037","NAME":"Quay","NAMELSAD":"Quay County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":null,"METDIVFP":null,"FUNCSTAT":"A","ALAND":7444355026,"AWATER":18734849,"INTPTLAT":"+35.1070184","INTPTLON":"-103.5480713"},"arcs":[[-121,-18,171,-139,-145,-3,-157,-61]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"001","COUNTYNS":"01702363","GEOID":"35001","NAME":"Bernalillo","NAMELSAD":"Bernalillo County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":"106","CBSAFP":"10740","METDIVFP":null,"FUNCSTAT":"A","ALAND":3006515443,"AWATER":16485169,"INTPTLAT":"+35.0540019","INTPTLON":"-106.6690645"},"arcs":[[-108,-103,101,-101,-171,-159,172]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"051","COUNTYNS":"01702370","GEOID":"35051","NAME":"Sierra","NAMELSAD":"Sierra County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":null,"CBSAFP":null,"METDIVFP":null,"FUNCSTAT":"A","ALAND":10823675584,"AWATER":148054792,"INTPTLAT":"+33.1194611","INTPTLON":"-107.1881533"},"arcs":[[-156,-6,-111,-162,-86,84,-84,-14,-127]]},{"type":"Polygon","properties":{"STATEFP":"35","COUNTYFP":"061","COUNTYNS":"00933052","GEOID":"35061","NAME":"Valencia","NAMELSAD":"Valencia County","LSAD":"06","CLASSFP":"H1","MTFCC":"G4020","CSAFP":"106","CBSAFP":"10740","METDIVFP":null,"FUNCSTAT":"A","ALAND":2761400130,"AWATER":5433597,"INTPTLAT":"+34.7168404","INTPTLON":"-106.8065821"},"arcs":[[-161,-124,-109,-173]]}]}},"arcs":[[[6872,4862],[0,1],[1,10],[0,1],[0,8],[0,7],[0,11],[0,12],[0,4],[0,11],[0,1],[0,1],[0,7],[0,45],[0,1],[0,1],[0,1],[0,10],[0,66],[1,28],[0,1],[0,1],[0,1],[0,26],[0,30],[0,7],[0,23],[0,15],[0,29],[1,56],[0,4],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,30]],[[6875,5318],[-1,26],[0,24],[0,2],[0,44],[0,5],[0,3],[0,14],[0,17],[0,18],[1,31],[0,6],[0,24],[0,2],[0,1],[0,8],[0,1],[0,2],[0,33],[0,6],[0,3],[0,12],[0,2],[0,12],[0,13],[0,1],[0,17],[-1,90],[0,38],[27,-1],[13,0],[14,0],[3,0],[2,0],[38,0],[2,0],[57,0],[1,0],[18,0],[46,1],[13,0],[9,0],[12,0],[5,0],[33,0],[10,0],[9,0],[12,0],[12,0],[6,0],[9,0],[26,0],[20,0],[41,0],[2,0],[6,-1],[5,0],[15,0],[1,0],[1,0],[2,0],[1,0],[12,0],[4,0],[3,0],[2,0],[7,1],[8,-1],[6,0],[7,0],[5,1],[17,0],[14,0],[2,0],[21,0],[3,0],[4,0],[21,0],[1,0],[13,0],[5,0],[5,0],[2,0],[3,0],[2,0],[2,0],[3,0],[3,0],[16,0],[1,0],[1,0],[24,0],[1,0],[7,0],[8,0],[6,0],[4,0],[8,0],[10,0],[1,0],[4,0],[2,0],[0,1],[1,35],[0,14],[0,12],[0,13],[0,14],[0,1],[0,9],[0,1],[0,2],[0,2],[0,6],[0,3],[0,31],[-1,9],[28,1],[60,0],[13,0],[12,1],[2,0],[2,0],[7,0],[11,0],[4,0],[6,0],[8,0],[3,-1],[1,0],[17,0],[0,50],[0,8],[0,22],[1,22],[0,2],[-1,34],[0,3],[0,6],[0,7],[19,0],[57,0],[55,0],[1,0],[15,0],[21,0],[21,0],[21,0],[21,0],[21,0],[4,0],[5,0],[13,0],[74,0]],[[8135,6081],[0,-3],[0,-9],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-9],[1,-20],[-1,-21],[0,-2],[0,-13],[0,-1],[0,-2],[0,-3],[0,-4],[0,-4],[0,-2],[0,-1],[0,-2],[0,-10],[0,-27],[0,-9],[0,-5],[0,-16],[0,-5],[0,-5],[1,-13],[0,-5],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-3],[1,-8],[0,-3],[0,-3],[0,-4],[0,-6],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-3],[0,-9],[0,-2],[0,-9],[0,-4],[1,-14],[0,-6],[0,-11],[0,-4],[1,0],[5,0],[10,1],[4,0],[9,0],[8,0],[25,-1],[24,-1],[2,0],[3,0],[4,0],[3,0],[4,1],[3,0],[2,-1],[2,0],[3,0],[4,0],[1,0],[1,1],[4,0],[4,0],[1,0],[11,0],[15,0],[1,0],[4,0],[1,0],[13,0],[1,0],[3,0],[2,0],[1,0],[2,0],[2,0],[3,0],[1,0],[1,0],[1,0],[1,0],[3,0],[2,0],[3,0],[4,0],[1,0],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0],[5,0],[2,0],[2,0],[2,0],[4,0],[4,0],[1,0],[1,0],[2,0],[2,0],[4,0],[4,0],[2,0],[3,0],[7,0],[4,0],[1,0],[5,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[4,0],[2,0],[4,0],[2,0],[2,0],[2,0],[4,0]],[[8434,5774],[0,-33],[0,-15],[0,-7],[0,-1],[0,-2],[0,-3],[0,-4],[0,-1],[0,-10],[0,-2],[-1,-16],[0,-1],[1,-3],[0,-6],[0,-5],[0,-2],[0,-5],[0,-2],[0,-1],[0,-1],[0,-7],[0,-1],[0,-6],[-1,-14],[0,-10],[0,-28],[1,0],[-1,-12],[0,-31],[0,-6],[0,-16],[0,-1],[0,-3],[0,-4],[0,-4],[0,-1],[0,-3],[0,-3],[0,-3],[0,-1],[0,-2],[0,-13],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-9],[0,-1],[0,-12],[1,-21],[0,-1],[-1,-11],[0,-4],[0,-21],[0,-1],[0,-21],[0,-5],[0,-9],[0,-21],[0,-1],[0,-14],[0,-2],[0,-25],[0,-4],[0,-33],[0,-18],[0,-6],[0,-24],[0,-21],[-1,-25],[6,0],[0,-18],[0,-10],[0,-1],[0,-3],[0,-5],[0,-7],[0,-4],[0,-6],[0,-13],[0,-13],[0,-10],[0,-2],[0,-1],[0,-15],[0,-8],[0,-38],[0,-1],[1,-79],[0,-4],[0,-4],[0,-2],[0,-8],[0,-3],[0,-24],[0,-5],[-1,-20],[0,-1],[0,-8]],[[8438,4852],[-19,0],[-10,0],[-11,0],[-9,0],[-17,0],[-21,-1],[-3,0],[-12,1],[-28,0],[-3,0],[-8,0],[-30,0],[-25,0],[-14,0],[-20,0],[-1,0],[-29,1],[-17,0],[-7,0],[-12,0],[-17,0],[-10,0],[-5,0],[-5,0],[-14,0],[0,-8],[0,-4],[0,-15],[0,-1],[0,-41],[0,-5],[0,-4],[0,-5],[0,-1],[0,-6],[0,-48],[0,-9],[0,-8],[-24,0],[-1,0],[-1,0],[-1,0],[-11,0],[-12,0],[-3,0],[-4,0],[-1,0],[-1,0],[-3,0],[-26,0],[-13,0],[-46,0],[-9,0],[-8,0],[-14,0],[-15,0],[-7,1],[-1,0],[-15,0],[-12,0],[-17,0],[-21,0],[-1,0],[-22,0],[-3,0],[-4,0],[-3,0],[-1,0],[-1,0],[-4,0],[-37,0],[-5,0],[-16,0],[-29,0],[-106,1],[-10,0],[-29,0],[-2,0],[-1,0],[-24,0],[-6,0],[-18,1],[-13,0],[-8,0],[-7,0],[-30,0],[-26,1],[-8,0],[-16,0],[-14,0],[-7,0],[-37,1],[-22,0],[-23,0],[-11,0],[-48,1],[-13,0],[-29,0],[-1,0],[-26,0],[-26,1],[-30,0],[-19,1],[-4,0],[-35,0],[0,3],[0,5],[0,10],[0,11],[0,4],[0,2],[0,17],[0,7],[0,2],[0,8],[0,2],[-1,5],[0,2],[0,24],[0,28],[0,3],[0,1],[0,1],[0,6],[0,2],[0,12],[-14,1],[-3,0],[-1,0],[-8,0],[-44,0],[-11,0],[-4,0],[-3,0],[-3,0],[-3,0],[-4,0],[-11,0],[-14,0],[-46,0],[-6,0],[-2,0]],[[4480,3035],[0,7],[0,7],[0,3],[0,3],[0,2],[0,14],[0,7],[0,4],[0,1],[0,3],[0,9],[0,6],[0,6],[0,4],[0,3],[0,12],[0,16],[0,5],[0,3],[0,1],[0,1],[0,11],[0,19],[-2,0],[0,3],[0,3],[0,6],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,6],[0,2],[0,3],[0,1],[0,3],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,4],[0,18],[0,6],[0,3],[0,7],[0,6],[0,3],[0,2],[0,3],[0,1],[0,1],[-1,4],[0,2],[0,17],[0,11],[0,8],[0,7],[-1,26],[0,1],[0,3],[0,1],[0,3],[0,1],[0,2],[0,6],[-1,24],[0,23],[0,31],[0,9],[-1,8],[0,44],[0,17],[0,1],[0,9],[0,1],[0,1],[0,4],[0,6],[-1,31],[0,6],[0,28]],[[4471,3632],[5,0],[3,0],[15,0],[9,0],[8,-1],[14,0],[11,0],[2,0],[1,0],[2,0],[8,0],[29,0],[1,0],[20,0],[13,0],[5,0],[11,0],[33,-1],[148,0],[4,0],[4,0],[7,0],[11,-1],[29,0],[2,0],[1,0],[6,0],[1,0],[5,0],[42,0],[2,0],[1,0],[18,0],[9,0],[1,0],[59,0],[1,0],[1,0],[1,0],[1,0],[5,0],[22,1],[1,0],[21,0],[4,0],[8,0],[7,0],[2,0],[11,0],[4,0],[1,0],[16,0],[8,0],[1,0],[15,0],[14,0],[1,0],[2,0],[3,0],[1,0],[22,0],[1,0],[23,0],[3,0],[10,0],[27,0],[85,1],[21,0],[1,0],[3,0],[27,0],[14,0],[15,0],[33,0],[4,0],[4,0],[26,0],[1,0],[11,0],[0,-5],[1,-4],[0,-9],[0,-9],[1,-1],[0,-1],[0,-3],[0,-14],[0,-19],[0,-19],[0,-7],[0,-2],[0,-2],[0,-1],[0,-2],[0,-14],[1,-18],[0,-2],[0,-5],[0,-3],[0,-6],[0,-3],[0,-1],[0,-1],[24,0],[1,0],[3,0],[41,0],[22,0],[3,0],[1,0],[3,0],[2,0],[7,0],[20,1],[1,0],[1,0],[1,0],[7,0],[2,-1],[2,0],[1,0],[3,0],[1,0],[8,0],[12,0],[19,0],[30,1],[31,0],[1,0],[1,0],[4,0],[12,0],[1,0],[16,0],[35,0],[9,0],[7,0],[4,0],[4,0],[1,0],[5,0],[3,0],[23,0],[10,0],[52,-1],[3,0],[1,0],[5,0],[1,0],[15,0],[1,0],[22,0],[8,0],[16,0],[1,0],[27,0],[11,0],[23,0],[1,0],[9,0],[1,0],[11,1],[1,0],[22,-1],[1,0],[39,0],[17,0],[2,0],[0,-32],[0,-7],[1,-30],[1,-28],[0,-2],[1,-26],[0,-1],[0,-1],[0,-3],[0,-1],[0,-9],[0,-1],[0,-20],[0,-12],[0,-4],[0,-25],[1,-16],[0,-1],[0,-8],[0,-1],[0,-12],[0,-13],[0,-14],[0,-9],[0,-3],[0,-9],[0,-4],[0,-12],[0,-1]],[[6172,3175],[0,-1],[0,-11],[0,-1],[0,-11],[0,-10],[0,-1],[0,-5],[0,-14],[0,-7],[0,-2],[0,-20],[0,-11],[0,-1],[0,-8],[0,-13],[0,-9],[0,-1],[1,-22],[0,-33],[0,-14],[0,-19],[0,-3],[0,-4],[0,-7],[0,-3],[0,-2],[0,-8],[0,-30],[0,-2],[0,-6],[0,-6],[0,-15],[-7,0],[-3,0],[-21,0],[-1,0],[-1,0],[-1,0],[-26,0],[0,-12],[0,-6],[0,-6],[0,-60],[0,-1],[0,-15],[0,-7],[0,-2],[0,-40],[0,-4],[0,-15],[0,-10],[0,-15],[0,-17],[0,-2],[0,-19],[0,-1],[0,-9],[0,-6],[0,-1],[0,-1],[0,-47],[0,-1],[0,-2],[0,-29],[0,-1],[0,-20],[1,-8],[0,-10],[0,-7],[0,-1],[0,-1],[0,-4],[0,-5],[0,-3],[0,-4],[0,-11],[0,-6],[0,-4],[0,-6],[0,-16],[0,-4],[0,-1],[0,-1],[0,-29],[0,-1],[0,-1],[0,-14],[0,-21],[0,-4],[0,-4],[0,-6],[0,-4],[0,-23],[0,-6],[0,-40],[0,-1],[0,-14],[0,-1],[0,-10],[0,-3],[0,-4],[0,-2],[0,-1],[-3,0],[0,-15],[0,-14],[0,-7],[0,-3],[0,-6],[0,-1],[0,-2],[1,-7],[-1,-19],[0,-11],[0,-7],[0,-17],[0,-3],[0,-7],[0,-1],[0,-3],[0,-1],[0,-1],[0,-27],[12,0],[13,0],[1,0],[3,0],[13,0],[4,0],[5,0],[15,0],[4,0],[14,0],[2,0],[57,0],[1,0],[20,0],[4,0],[2,0],[1,0],[6,0],[8,0],[5,0],[17,0],[7,0],[3,0],[28,0],[13,0],[11,0],[8,0],[2,0],[18,0],[14,0],[1,0],[1,0],[3,0],[22,0],[0,1],[0,1],[0,2],[2,0],[13,0],[24,0],[20,0],[5,0],[3,0],[19,0],[13,0],[10,0],[4,0],[12,0],[4,0],[26,0],[4,-1],[4,0],[12,0],[13,0],[20,0],[15,0],[21,0],[2,0],[10,0],[3,0],[7,0],[11,0],[5,0],[4,0],[1,0],[6,0],[8,0],[1,0],[1,0],[8,0],[12,0],[4,0],[11,0],[7,0],[6,0],[16,0],[4,0],[20,1],[16,0],[11,0],[1,0],[6,0],[1,0],[4,0],[3,0],[20,0],[1,0],[12,0],[5,0],[6,-1],[4,0],[4,0],[7,0]],[[6941,2096],[0,-7],[0,-6],[0,-1],[0,-4],[0,-2],[0,-14],[0,-2],[0,-9],[0,-12],[0,-6],[0,-3],[0,-1],[0,-8],[0,-1],[0,-6],[0,-7],[0,-8],[0,-8],[0,-2],[0,-21],[0,-7],[0,-6],[0,-4],[0,-7],[0,-6],[0,-1],[0,-5],[0,-3],[-1,-23],[0,-7],[0,-1],[0,-19],[0,-8],[0,-12],[0,-18],[0,-1],[0,-1],[1,-12],[0,-1],[0,-1],[0,-3],[0,-5],[0,-1],[0,-5],[0,-11],[0,-17],[0,-1],[0,-7],[0,-2],[0,-4],[0,-7],[0,-9],[0,-8],[0,-2],[0,-2],[0,-7],[1,-22],[0,-1],[0,-14],[0,-2],[0,-4],[0,-14],[0,-1],[0,-16],[0,-22],[0,-1],[0,-12],[6,0],[0,-5],[0,-27],[0,-10],[0,-10],[-1,-2],[0,-27],[0,-11],[0,-1],[0,-3],[0,-4],[0,-1],[0,-6],[0,-3],[0,-1],[0,-48],[0,-1],[0,-8],[0,-3],[0,-1],[0,-1],[0,-13],[0,-6],[0,-2],[0,-5],[0,-6],[0,-8],[0,-8],[0,-5],[0,-6],[0,-2],[0,-1],[0,-3],[0,-8],[0,-7],[0,-14],[0,-5],[1,0],[0,-1],[0,-8],[0,-34],[0,-4],[0,-1],[0,-1],[0,-1],[0,-11],[0,-2],[0,-30],[0,-19],[0,-7],[0,-3],[0,-2],[0,-16],[-1,-24],[1,-10]],[[6948,1179],[-11,0],[-35,0],[-5,0],[-1,0],[-1,0],[-1,0],[-9,0],[-13,0],[-21,0],[-8,0],[-12,0],[-14,0],[-14,0],[-21,0],[-9,0],[-7,0],[-19,0],[-7,0],[-12,0],[-20,0],[-3,0],[-10,0],[-3,0],[-3,0],[-1,0],[-5,0],[-6,0],[-1,0],[-3,0],[-4,0],[-3,0],[-25,0],[-4,0],[-28,0],[-1,0],[-17,0],[-2,0],[-15,0],[-1,0],[-5,0],[-2,0],[-34,0],[-14,0],[-10,0],[-5,0],[-2,0],[-1,0],[-12,0],[-9,0],[-1,0],[-2,0],[-1,0],[-18,0],[-4,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-6,0],[-2,0],[-3,0],[-3,0],[-1,0],[-4,0],[-7,0],[-11,0],[-9,0],[-6,0],[-2,0],[-1,0],[-14,0],[-5,0],[-1,0],[-8,0],[-1,0],[-1,0],[-1,0],[-6,0],[-6,0],[-6,0],[-5,0],[-1,0],[-3,0],[-3,0],[-1,0],[-3,0],[-7,0],[-5,0],[-6,0],[-6,0],[-5,0],[-6,0],[-1,0],[-5,0],[-4,0],[-57,0],[-6,0],[-18,0],[-3,0],[-64,0],[-6,0],[-53,0],[-25,0],[-33,0],[-27,0],[-3,0],[-1,0],[-47,0],[-26,0],[-6,0],[-12,1],[-1,0],[-26,0],[-46,0],[-58,0],[-54,0],[-13,0],[-5,0],[-3,0],[-43,0],[-28,0],[-1,0],[-38,1],[-1,0],[-6,0],[-51,0],[-12,0],[-16,0],[-6,0],[-32,1],[-126,0],[-45,0],[-1,0],[-34,0],[-1,0],[-17,0],[-3,0],[-21,0],[-13,-2],[-12,1],[-8,0],[-4,1],[-33,0],[-1,0],[-9,0],[-3,0],[-13,0],[-2,0],[-5,0],[-2,0],[-3,0],[-8,0],[-3,0],[-1,0],[-4,0],[-1,0],[-3,0],[-9,0],[-6,0],[-5,0],[-13,0],[-4,0],[-4,0],[-47,0],[-6,0],[-26,0],[-22,0],[-31,0],[-28,0],[-31,0],[-12,0],[0,1],[-15,-1],[-10,0],[-4,0],[-64,0],[-31,-1],[-4,0],[-5,0],[-15,0],[-59,0],[-32,0],[-14,0],[-3,0],[-30,-1],[-24,1],[-16,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-6,0],[-6,0],[-39,0],[-3,0],[-1,0],[-24,-1],[-2,0],[-1,0]],[[4419,1180],[0,1],[0,1],[0,3],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,3],[0,3],[0,2],[0,2],[0,1],[0,2],[0,3],[0,7],[0,1],[0,5],[0,5],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,4],[0,1],[0,3],[0,3],[0,1],[0,10],[0,59],[0,1],[0,1],[0,53],[0,3],[0,11],[0,10],[-1,77],[0,17],[0,83],[0,1],[0,42],[1,0],[0,73],[0,5],[0,87],[0,12],[0,9],[0,1],[0,4],[0,1],[0,12],[0,9],[0,6],[1,2],[-1,1],[0,1],[0,8],[0,14],[0,7],[0,2],[1,7],[-1,2],[0,3],[0,12],[0,5],[0,16],[0,22],[0,17],[0,34],[0,9],[0,14],[0,4],[0,18],[0,11],[0,11],[0,2],[0,8],[0,20],[0,1],[0,3],[1,0],[0,12],[0,44],[0,18],[0,3],[0,18],[0,28],[-1,19],[0,8],[0,39],[0,1],[0,5],[0,18],[0,14],[0,18],[0,13],[0,6],[0,14],[1,24],[-1,18],[0,89],[0,131],[0,75],[0,2],[0,3],[1,8],[0,2],[0,62],[0,8],[0,14],[0,18],[0,6],[0,17],[0,3],[0,18],[2,0],[27,0],[30,1],[1,73],[0,45],[0,48]],[[7,5728],[10,0],[2,0],[3,0],[5,0],[3,0],[3,0],[9,0],[7,0],[5,0],[26,0],[11,0],[14,0],[3,0],[2,0],[1,0],[0,2],[2,0],[33,0],[1,0],[20,0],[13,0],[5,-1],[4,0],[23,0],[2,0],[23,0],[20,0],[8,0],[21,0],[3,0],[5,0],[1,0],[1,0],[1,0],[1,0],[16,0],[18,0],[7,0],[1,0],[1,0],[8,0],[9,0],[1,0],[4,0],[8,-1],[1,0],[1,0],[4,0],[11,0],[2,0],[15,0],[3,0],[3,0],[1,0],[5,0],[18,0],[4,0],[1,0],[16,0],[8,0],[1,0],[11,0],[7,0],[2,0],[3,0],[3,0],[4,0],[1,0],[1,0],[3,0],[1,0],[1,0],[28,0],[11,0],[64,0],[6,0],[40,0],[7,0],[5,0],[19,0],[17,0],[3,0],[1,0],[6,0],[1,0],[8,0],[25,0],[1,0],[18,0],[10,0],[6,0],[12,0],[11,0],[14,0],[11,0],[2,0],[15,0],[7,0],[7,0],[8,0],[1,0],[27,0],[2,0],[14,0],[5,0],[17,0],[41,0],[1,0],[1,0],[7,0],[10,0],[3,0],[17,1],[1,0],[2,-1],[2,0],[1,0],[22,-1],[11,0],[42,0],[4,0],[9,0],[10,0],[18,0],[19,0],[41,1],[10,0],[55,0],[11,0],[29,1],[24,0],[3,0],[50,0],[45,1],[1,0],[4,0],[103,1],[51,0],[1,0],[37,0],[6,0],[10,-1],[3,-1],[4,-1],[2,1],[7,0],[9,0],[17,-1],[17,0],[25,-1],[2,0],[8,0],[2,0],[6,0],[8,0],[2,0],[12,1],[8,0],[29,1],[16,-1],[10,-1],[1,0],[1,0],[3,0],[1,0],[2,0],[3,0],[5,0],[4,0],[22,1],[3,0],[21,0],[1,0],[19,0],[1,0],[1,0],[2,0],[2,0],[30,-1],[3,0],[16,0],[20,0],[1,0],[1,0],[36,1],[1,0],[55,0],[1,0],[3,0],[17,-1],[8,0],[3,0],[2,0],[24,1],[15,-1],[8,0],[2,0],[17,-1],[2,0],[4,0],[6,0],[4,0]],[[2191,5726],[0,-1],[0,-2],[0,-3],[0,-15],[0,-1],[0,-4],[-1,-3],[0,-20],[0,-19],[0,-2],[-1,-13],[0,-9],[0,-15],[0,-2],[0,-4],[0,-3],[0,-2],[0,-6],[-1,-3],[0,-3],[0,-1],[0,-1],[0,-6],[0,-18],[0,-25],[0,-15],[0,-37],[0,-3],[1,-1],[0,-1],[0,-26],[0,-85],[0,-9],[0,-8],[0,-6],[0,-6],[0,-4],[0,-2],[0,-8],[0,-2],[0,-2],[0,-5],[0,-6],[0,-2],[0,-5],[0,-3],[0,-1],[0,-13],[0,-14],[0,-5],[1,-6],[0,-5],[0,-6],[0,-4],[0,-7],[0,-10],[0,-2],[0,-1],[0,-11],[0,-3],[0,-10],[0,-6],[0,-3],[0,-5],[0,-7],[0,-8],[0,-1],[0,-1],[0,-7],[0,-8],[5,0],[1,0],[9,0],[0,-8],[0,-1],[0,-9],[0,-5],[0,-9],[0,-17],[0,-30],[0,-12],[0,-7],[0,-9],[0,-15],[0,-16],[0,-1],[0,-1],[0,-44],[0,-1],[0,-4],[0,-1],[0,-1],[0,-3],[0,-1],[0,-8],[0,-3],[0,-1],[0,-1],[0,-2],[0,-9],[0,-1],[0,-4],[0,-3],[0,-3],[0,-1],[0,-4],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-2],[-1,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-4],[0,-2],[0,-3],[0,-3],[0,-10],[0,-25],[0,-1],[0,-13],[0,-37],[0,-42],[1,-3],[0,-12],[0,-13],[0,-33],[0,-18],[0,-8],[0,-8],[0,-6],[0,-4],[0,-3],[0,-4],[0,-2],[0,-10],[0,-5],[0,-5],[0,-14],[0,-2],[0,-6],[0,-1],[0,-9],[0,-8],[0,-9],[0,-5],[0,-1],[0,-11],[0,-1],[0,-12],[0,-4],[0,-2],[0,-13],[0,-7],[0,-9],[0,-6],[0,-3],[0,-9],[0,-11],[1,-7],[0,-2],[0,-2],[0,-7],[0,-25],[0,-9],[0,-6],[7,-1],[0,-2],[0,-5],[-1,-5],[0,-2],[0,-4],[-1,-7],[0,-20],[0,-1],[1,-10],[0,-7],[0,-18],[0,-14],[0,-2],[0,-4],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-3],[0,-12],[1,-8],[0,-8],[0,-4],[0,-11],[0,-2],[0,-4],[0,-19],[-1,-6],[0,-5],[0,-1],[0,-4],[0,-5],[0,-7],[0,-1],[0,-1],[0,-3],[0,-5],[0,-5],[0,-8],[0,-6],[0,-5],[0,-2],[0,-2],[0,-1],[0,-1],[0,-6],[0,-4],[0,-1],[0,-6],[0,-2],[0,-8],[0,-2],[0,-4],[0,-1],[0,-2],[0,-2],[0,-4],[0,-1],[0,-5],[-1,-8],[0,-2],[0,-7],[0,-1],[0,-13],[0,-5],[1,-2],[0,-12],[0,-3],[0,-14],[0,-26],[0,-1],[0,-7],[0,-6],[0,-6],[0,-2],[0,-6],[0,-6],[0,-3],[0,-1],[-1,-13],[0,-6],[0,-1],[0,-4],[0,-1],[0,-2],[0,-9],[0,-4],[0,-5],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-4],[0,-4],[0,-4],[0,-6],[0,-1],[0,-6],[0,-5],[0,-4],[0,-17],[0,-3],[0,-5],[0,-7],[0,-1],[0,-1],[0,-3],[0,-15],[0,-5],[0,-4]],[[2211,3783],[-17,0],[-6,0],[-5,0],[-7,1],[-2,0],[-9,0],[-5,1],[-1,0],[-4,0],[-6,0],[-14,-1],[-4,0],[-3,-1],[-4,0],[-13,0],[-7,0],[-22,0],[-7,0],[-1,0],[-4,0],[-2,0],[-13,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-5,0],[-2,0],[-2,0],[-6,0],[-6,0],[-5,0],[-1,0],[-1,0],[-11,-1],[-1,0],[-4,0],[-6,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-6,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-4,0],[-5,0],[-2,0],[-6,0],[-5,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-6,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-6,0],[-7,0],[-2,0],[-4,0],[-2,0],[-2,0],[-1,0],[-2,0],[-6,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-8,0],[-10,0],[-7,1],[-9,1],[-4,1],[-1,0],[-4,0],[-4,1],[-3,0],[-4,1],[-1,0],[-2,0],[-3,1],[-1,0],[-5,0],[-2,0],[-4,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-3,1],[-1,0],[-4,-1],[-1,1],[-1,0],[-1,0],[-2,-1],[-2,0],[-3,0],[-2,0],[-3,1],[-8,-1],[-2,0],[-6,0],[0,-3],[0,-1],[0,-1],[0,-1],[0,-15],[0,-4],[0,-2],[0,-1],[0,-9],[0,-6],[0,-4],[0,-1],[0,-5],[0,-8],[0,-9],[0,-1],[0,-1],[0,-4],[0,-10],[0,-5],[0,-50],[0,-3],[0,-37],[0,-4],[0,-8],[0,-8],[0,-5],[0,-6],[0,-6],[0,-9],[0,-17],[0,-16],[0,-21],[0,-6],[0,-8],[0,-12],[0,-16],[0,-1],[0,-12],[0,-6],[0,-4],[0,-6],[0,-1],[0,-3],[0,-1],[0,-2],[0,-5],[0,-5],[0,-7],[0,-1],[0,-9],[0,-7],[0,-4],[0,-5],[0,-1],[0,-4],[0,-6],[0,-12],[0,-1],[0,-2],[0,-1],[0,-5],[0,-7],[0,-6],[0,-13],[0,-8],[0,-9],[0,-10]],[[1735,3298],[-42,0],[-5,0],[-1,0],[-7,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-50,0],[-17,-1],[-15,0],[-10,0],[-5,0],[-16,0],[-6,0],[-21,0],[-19,0],[-30,0],[-1,0],[-32,0],[-12,0],[-5,0],[-16,0],[-21,0],[-1,0],[-15,0],[-3,0],[-1,0],[-11,0],[-6,0],[-22,0],[-1,0],[-7,0],[-4,0],[-1,0],[-20,0],[-11,0],[-21,0],[-7,0],[-13,0],[-18,0],[-47,0],[-57,0],[-12,0],[-13,0],[-34,0],[-1,0],[-19,0],[-3,0],[-3,0],[-43,0],[-7,0],[-9,1],[-8,0],[-20,2],[-30,2],[-14,1],[-2,0],[-1,0],[-11,1],[-15,1],[-44,4],[-12,0],[-2,0],[-18,0],[-2,0],[-2,0],[-2,0],[-15,0],[-1,0],[-9,0],[-21,0],[-16,0],[-36,0],[-5,0],[-10,0],[-20,0],[0,2],[-21,1],[-11,0],[-8,0],[-9,0],[-41,0],[-2,0],[-9,0],[-8,0],[-5,0],[-4,0],[-1,0],[-4,0],[-15,0],[-5,0],[-17,0],[-6,0],[-4,0],[-2,-1],[-12,0],[-7,0],[-11,0],[-2,0],[-7,0],[-6,0],[-6,0],[-10,0],[-6,0],[-12,-1],[-12,0],[-9,0],[-1,0],[-11,0],[-5,0],[-1,0],[-7,0],[-7,0],[-4,0],[-3,0],[-10,0],[-1,0],[-11,0],[-2,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-5,0],[-1,0],[-1,0],[-25,0],[-3,0],[-18,0],[-12,-1],[-14,0],[-58,-1],[-33,0],[-33,1],[-31,2],[-8,0],[-7,0],[-12,0],[-14,0],[-1,0],[-26,0],[-1,0],[-5,0],[-11,0]],[[5,3311],[0,1],[0,53],[0,1],[0,1],[0,4],[-1,12],[1,12],[0,10],[0,7],[0,7],[0,13],[0,13],[0,9],[0,1],[0,1],[0,9],[0,15],[0,9],[0,5],[0,10],[0,3],[0,9],[0,4],[0,19],[0,1],[0,8],[0,8],[1,23],[0,8],[-1,0],[0,4],[0,3],[0,1],[0,4],[0,1],[1,4],[0,3],[0,14],[0,5],[-1,2],[0,13],[0,24],[0,2],[0,35],[0,15],[0,6],[0,4],[0,11],[0,8],[0,11],[0,4],[0,1],[0,1],[1,7],[0,19],[-1,23],[0,12],[1,15],[0,24],[0,22],[0,3],[0,1],[0,20],[0,7],[0,18],[0,47],[0,8],[0,9],[-1,32],[0,1],[1,14],[0,1],[0,14],[0,1],[0,28],[0,11],[0,18],[0,12],[-1,12],[0,10],[0,9],[0,4],[0,16],[0,9],[0,11],[0,4],[0,3],[0,13],[0,4],[0,1],[0,20],[0,1],[0,1],[0,13],[0,4],[0,23],[0,27],[0,48],[0,9],[0,22],[0,1],[0,34],[0,2],[1,15],[0,15],[0,25],[0,11],[0,40],[0,3],[0,4],[0,3],[0,3],[0,3],[0,1],[0,4],[0,5],[0,26],[0,1],[0,3],[0,1],[0,1],[0,1],[0,15],[0,1],[0,16],[0,2],[0,2],[0,6],[-1,21],[0,23],[0,20],[0,4],[0,29],[0,8],[0,1],[0,1],[1,35],[0,5],[0,1],[-1,19],[0,4],[0,19],[0,14],[0,13],[0,5],[0,12],[0,4],[0,5],[0,1],[0,2],[0,19],[0,24],[1,19],[0,7],[0,1],[0,20],[0,15],[0,3],[0,1],[0,1],[0,7],[0,12],[0,12],[0,18],[0,29],[0,1],[0,2],[0,6],[0,66],[0,17],[0,7],[0,29],[0,6],[0,1],[0,24],[0,1],[0,4],[0,2],[0,10],[0,18],[0,3],[0,3],[0,9],[0,9],[0,10],[0,3],[0,34],[0,1],[0,7],[0,10],[0,8],[0,3],[0,2],[0,7],[0,1],[0,12],[0,2],[0,3],[0,1],[0,2],[0,4],[0,4],[0,25],[0,46],[0,17],[0,55],[0,2],[0,1],[1,38],[0,32],[0,4],[0,4],[0,8],[0,4],[0,6],[0,1],[0,1],[0,3],[0,33],[0,6],[0,22],[0,5],[0,4],[0,7]],[[8336,9992],[1,0],[3,0],[1,0],[2,0],[5,0],[2,0],[3,0],[7,0],[13,0],[12,0],[7,0],[2,0],[2,0],[7,0],[8,0],[1,0],[7,0],[1,0],[29,1],[5,0],[17,0],[35,0],[22,0],[24,0],[3,0],[6,1],[1,0],[3,0],[1,0],[1,0],[1,0],[3,0],[1,0],[20,0],[1,0],[19,0],[1,0],[12,0],[10,0],[4,0],[10,0],[1,0],[15,0],[15,0],[5,0],[3,0],[12,0],[8,0],[5,0],[8,0],[2,0],[3,0],[4,1],[3,0],[21,0],[7,0],[13,0],[4,0],[3,0],[2,0],[3,0],[2,0],[1,0],[1,0],[5,0],[14,0],[2,0],[31,0],[20,1],[7,0],[1,0],[8,0],[10,0],[6,0],[11,0],[32,0],[1,0],[8,0],[17,0],[5,0],[15,0],[6,0],[17,0],[6,0],[6,0],[18,0],[6,0],[7,0],[5,0],[1,0],[21,0],[17,0],[1,0],[15,1],[2,0],[5,0],[15,0],[5,0],[2,0],[7,0],[2,0],[2,0],[2,0],[5,0],[2,0],[3,0],[9,0],[3,0],[2,0],[1,0],[17,0],[2,0],[1,0],[16,0],[2,0],[7,0],[3,0],[1,0],[4,0],[2,0],[4,0],[3,0],[9,0],[4,0],[3,0],[8,0],[1,0],[3,0],[1,0],[3,0],[2,0],[2,0],[5,0],[2,0],[3,0],[11,0],[4,0],[1,0],[6,0],[2,0],[4,0],[12,0],[3,0],[2,0],[2,1],[4,-1],[2,0],[2,0],[4,0],[2,0],[8,0],[20,0],[1,0],[7,1],[11,0],[30,0],[1,0],[2,0],[10,0],[11,0],[11,0],[6,0],[1,0],[2,0],[20,0],[13,0],[2,0],[5,0],[1,0],[2,0],[42,0],[1,0],[4,0],[1,0],[4,0],[10,0],[4,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[3,0],[1,0],[2,0],[9,0],[31,0],[6,0],[4,0],[6,0],[27,0],[12,0],[8,0],[8,0],[2,0],[6,0],[2,0],[7,1],[21,0],[7,0],[2,0],[7,0],[2,0],[2,0],[4,0],[2,0],[6,0],[17,0],[5,0],[2,0],[2,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[4,0],[2,0],[3,0],[11,0],[4,0],[3,0],[2,0],[1,0],[1,0],[1,0],[4,0],[10,0],[3,0],[1,0],[5,0],[1,0],[19,0],[7,0],[11,0],[31,0],[9,0],[1,0],[2,0],[21,0],[19,0],[19,0],[0,-1],[0,-2],[0,-8],[0,-3],[-1,-31],[0,-7],[0,-4],[0,-4],[0,-1],[0,-1],[0,-8],[0,-15],[0,-1],[0,-2],[0,-2],[0,-24],[0,-4],[0,-2],[0,-4],[0,-14],[0,-4],[0,-7],[0,-1],[0,-1],[0,-1],[1,-4],[0,-2],[0,-2],[0,-6],[0,-6],[0,-1],[0,-1],[0,-7],[0,-1],[0,-5],[0,-1],[0,-23],[0,-1],[0,-9],[0,-9],[0,-17],[0,-5],[0,-26],[0,-4],[0,-29],[0,-11],[0,-1],[0,-11],[0,-17],[0,-17],[0,-5],[0,-15],[0,-2],[0,-1],[0,-2],[0,-15],[0,-1],[0,-9],[0,-3],[0,-11],[0,-8],[0,-1],[0,-3],[0,-10],[0,-18],[0,-1],[0,-2],[0,-3],[0,-11],[0,-4],[0,-2],[0,-1],[0,-5],[0,-5],[0,-8],[0,-7],[0,-1],[0,-3],[0,-2],[0,-7],[0,-10],[0,-1],[0,-1],[0,-1],[0,-1],[0,-6],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-8],[1,-5],[0,-5],[0,-6],[0,-11],[0,-4],[0,-6],[0,-5],[0,-11],[0,-5],[-1,-12],[0,-3],[0,-3],[0,-5],[0,-13],[0,-25],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-3],[0,-4],[0,-7],[0,-1],[0,-1],[0,-4],[0,-1],[-1,-6],[0,-2],[0,-16],[1,-10],[-1,-2],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-2],[0,-6],[0,-7],[0,-3],[0,-6],[0,-2],[0,-1],[0,-6],[0,-5],[0,-3],[0,-7],[0,-6],[0,-1],[0,-3],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-3],[0,-4],[0,-6],[0,-4],[0,-4],[0,-4],[0,-1],[0,-1],[0,-4],[0,-5],[0,-8],[0,-1],[0,-1],[-19,0],[-15,0],[-1,0],[-26,0],[-3,0],[-1,0],[0,-1],[0,-5],[0,-17],[0,-15],[0,-1],[0,-27],[0,-2],[0,-2],[0,-37],[0,-6],[0,-14],[0,-5],[0,-5],[0,-1],[0,-18],[0,-6],[0,-1],[0,-7],[0,-13],[0,-5],[0,-8],[0,-1],[0,-1],[0,-1],[0,-1],[0,-12],[0,-9],[1,-22],[0,-1],[0,-1],[-1,-18],[0,-58],[0,-1],[0,-2],[0,-22],[1,-20],[0,-1],[0,-4],[0,-14],[0,-13],[0,-2],[0,-42],[0,-18],[0,-18],[0,-1],[0,-20],[0,-51],[0,-26],[0,-26],[0,-1],[0,-10],[0,-15],[0,-1],[0,-24],[0,-9],[0,-25],[0,-3],[1,-13],[0,-19],[0,-8],[0,-5],[0,-50],[0,-14],[0,-29],[0,-32],[0,-23],[-1,-61],[0,-1],[0,-1],[0,-10],[0,-9],[0,-23],[0,-35],[0,-31],[0,-7],[0,-25],[0,-17],[0,-66],[0,-1],[-1,-19],[0,-2],[0,-6],[0,-14],[0,-29],[0,-2],[1,-8],[0,-16],[0,-9],[0,-22],[0,-27],[0,-18],[0,-1]],[[9934,7774],[-22,1],[-32,0],[-1,0],[-53,0],[-2,0],[-17,0],[-12,0],[-1,0],[-7,0],[-15,0],[-7,0],[-1,0],[-1,0],[-4,0],[-2,0],[-4,0],[-12,0],[-4,0],[-1,0],[-5,0],[-19,0],[-6,0],[-3,0],[-9,0],[-3,0],[-14,0],[-30,0],[-29,0],[-9,0],[-1,0],[-20,1],[-2,0],[-6,0],[-5,0],[-12,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-17,0],[-2,0],[-11,0],[-20,0],[-4,0],[-1,0],[-1,0],[-1,0],[-10,0],[-1,0],[-2,0],[-2,0],[-4,0],[-1,0],[-8,0],[-1,0],[-7,0],[-7,0],[-7,0],[-7,0],[-1,0],[-11,0],[-18,0],[-1,0],[-18,0],[-12,0]],[[9382,7776],[0,8],[0,9],[0,27],[0,4],[0,1],[0,3],[0,1],[0,2],[0,3],[0,1],[0,4],[0,12],[0,12],[0,1],[0,13],[0,29],[0,1],[1,47],[0,1],[0,18],[0,33],[0,5],[0,1],[0,2],[0,1],[0,30],[0,1],[0,27],[0,9],[0,4],[0,9],[0,2],[0,10],[0,12],[0,1],[-1,4],[0,5],[0,3],[0,2],[0,1],[0,8],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,5],[0,2],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,8],[0,1],[0,1],[0,6],[0,2],[0,1],[0,1],[0,3],[0,1],[0,2],[1,3],[0,1],[0,1],[-1,31],[1,0],[1,0],[8,0],[5,0],[2,0],[0,2],[0,12],[0,3],[0,16],[-1,13],[1,12],[0,18],[0,3],[0,3],[0,17],[0,1],[0,6],[0,2],[0,1],[0,21],[0,1],[0,6],[0,1],[0,1],[0,16],[-11,0],[-7,0],[-8,0],[-4,0],[-17,0],[-1,0],[-7,0],[-6,0],[-28,0],[-23,0],[-6,0],[-9,0],[-65,0],[-7,0],[-5,0],[-1,0],[-2,0],[-5,0],[-12,0],[-5,0],[-1,0],[-13,0],[-24,0],[-6,0],[-38,0],[-1,0],[-15,0],[-28,0],[-1,0],[-6,0],[-1,0],[-4,0],[-18,1],[-28,-1],[-1,0],[-17,-1],[-13,0],[-3,0],[-1,0],[-32,0],[-24,0],[-2,0],[-8,0],[-23,0],[-1,0],[-6,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-36,-1],[-7,0],[-25,1],[-1,0],[-3,0],[-14,-1],[-4,0],[-2,0],[-7,0],[-1,0],[-9,0],[-13,0],[-2,1],[-12,0],[-2,0],[-20,0],[0,29],[0,4],[0,11],[0,1],[0,15],[0,9],[0,8],[0,5],[0,6],[0,1],[0,19],[0,8],[0,16],[1,9],[0,14],[-8,0],[-1,0],[-7,0],[-14,1],[-41,0],[-41,0],[-1,0],[-22,0],[-7,0],[-6,0],[-1,0],[-2,0],[-61,0],[-1,0],[-1,0],[-55,0],[-39,0],[-8,0],[-11,0],[-1,0],[-14,0],[-2,0],[-6,0],[-1,0],[-4,0],[-1,0],[0,12],[0,8],[0,4],[0,8],[0,5],[0,4],[0,4],[0,4],[0,5],[0,5],[0,5],[0,7],[0,6]],[[8334,8619],[0,4],[0,12],[0,4],[1,1],[0,3],[0,1],[0,2],[0,14],[0,15],[-1,8],[0,14],[0,4],[0,3],[0,9],[0,4],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[0,1],[1,1],[0,1],[0,5],[0,9],[0,1],[0,2],[0,10],[0,8],[0,2],[0,3],[0,1],[0,2],[0,5],[0,1],[0,17],[0,25],[0,1],[0,1],[0,1],[0,11],[0,4],[0,4],[0,3],[0,1],[0,1],[0,13],[0,11],[0,1],[1,6],[0,6],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,3],[1,15],[0,1],[0,2],[0,1],[0,8],[0,3],[0,6],[0,2],[-1,3],[0,17],[0,1],[0,2],[0,1],[1,9],[0,1],[-1,0],[0,2],[0,8],[0,3],[0,7],[0,13],[0,3],[0,1],[0,8],[0,4],[0,1],[0,7],[0,8],[0,1],[0,1],[0,5],[0,1],[0,4],[0,10],[0,4],[0,7],[0,5],[0,15],[0,1],[0,4],[0,13],[0,4],[0,3],[0,3],[0,17],[0,6],[0,5],[0,10],[0,40],[0,13],[0,2],[0,1],[0,2],[0,7],[0,2],[0,3],[0,7],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[0,3],[0,13],[0,12],[0,5],[0,12],[0,4],[0,2],[0,2],[0,6],[0,5],[0,3],[0,2],[0,22],[0,1],[0,2],[0,2],[-1,22],[0,4],[0,2],[0,11],[0,2],[0,2],[0,2],[0,1],[0,3],[0,3],[0,2],[0,2],[0,2],[0,1],[0,1],[0,5],[0,6],[0,2],[0,2],[0,2],[0,10],[0,3],[0,1],[0,12],[2,1],[0,1],[0,2],[0,1],[0,1],[0,6],[0,2],[-1,2],[0,5],[1,0],[1,0],[0,51],[0,8],[-1,18],[0,2],[-1,14],[0,2],[0,23],[1,11],[0,4],[0,1],[0,2],[0,1],[0,1],[-1,6],[0,1],[0,7],[0,5],[0,1],[0,1],[0,1],[0,1],[0,2],[0,6],[0,1],[0,3],[1,7],[0,3],[0,1],[0,1],[0,3],[0,8],[-1,3],[0,1],[1,7],[0,2],[0,17],[0,1],[0,6],[0,3],[0,9],[0,3],[0,5],[0,2],[0,5],[0,20],[0,8],[0,15],[0,1],[0,1],[0,8],[0,9],[0,15],[0,24],[0,2],[0,1],[0,1],[0,1],[0,16],[0,6],[0,17],[0,12],[0,5],[0,3],[0,12],[0,4],[0,7],[0,23],[0,7],[0,8],[0,21],[0,7],[0,1],[0,4],[0,2],[0,6]],[[5505,8007],[9,0],[28,0],[9,0],[1,0],[5,0],[7,0],[12,0],[7,0],[6,0],[18,0],[1,0],[7,0],[14,0],[33,0],[11,-1],[14,0],[1,0],[10,0],[32,0],[11,0],[4,0],[10,0],[4,0],[1,0],[3,0],[1,0],[5,0],[15,0],[5,0],[8,0],[24,0],[8,0],[6,0],[19,0],[6,0],[8,0],[26,0],[1,0],[3,0],[5,0],[5,0],[3,0],[5,0],[4,0],[4,0],[39,0],[13,0],[1,0],[1,0],[6,0],[15,0],[3,0],[6,0],[2,0],[20,0],[13,0],[21,0],[11,0],[14,0],[19,0],[1,0],[2,0],[7,0],[3,0],[3,-1],[1,0],[1,0],[9,-3],[28,-9],[6,-1],[4,-2],[1,0],[4,-2],[3,-1],[9,-2],[4,-2],[1,0],[2,-1],[4,-1],[4,-1],[2,-1],[16,-5],[26,-8],[11,-3],[10,-3],[12,-4],[4,-1],[0,-1],[3,0],[4,-2],[4,-1],[3,-1],[2,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[6354,7930],[1,0],[-1,0]],[[6354,7930],[1,1],[1,0],[1,0],[1,-1],[1,-1],[2,0],[1,1],[2,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[2,-1],[1,-1],[1,1],[0,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0]],[[6385,7927],[0,1],[0,-1]],[[6385,7927],[1,0],[0,1],[1,-1],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,-1],[1,1],[1,0],[1,-1],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,-1],[1,0],[1,-1],[-1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[6415,7920],[-1,0],[1,0]],[[6415,7920],[1,0],[1,0],[1,0]],[[6418,7920],[0,1],[0,-1]],[[6418,7920],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[1,-1]],[[6427,7916],[-1,0],[1,0]],[[6427,7916],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[6442,7904],[1,0],[-1,0]],[[6442,7904],[1,-1]],[[6443,7903],[-1,0],[1,0]],[[6443,7903],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[1,1],[1,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[-1,-1],[1,0],[1,0]],[[6489,7899],[0,-1],[0,1]],[[6489,7899],[1,-1],[1,0],[0,-1],[1,1],[1,0],[1,-1],[0,1],[1,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,1],[1,0],[0,-1],[1,0]],[[6501,7896],[0,1],[1,0],[0,-1],[-1,0]],[[6501,7896],[0,-1],[1,-1],[1,1],[1,0],[0,-1],[1,0]],[[6505,7894],[0,-1],[0,1]],[[6505,7894],[1,0],[1,0],[1,0],[0,1]],[[6508,7895],[0,1],[0,-1]],[[6508,7895],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,1],[1,0],[1,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1]],[[6539,7878],[-1,0],[1,0]],[[6539,7878],[1,0],[1,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1]],[[6545,7875],[1,0]],[[6545,7875],[0,-1],[1,0],[0,1]],[[6546,7875],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[-1,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1]],[[6570,7858],[-1,0],[0,-1],[1,1]],[[6570,7858],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[6572,7856],[1,0],[-1,0]],[[6572,7856],[0,-1],[-1,0],[0,-1],[1,0],[1,0]],[[6573,7854],[0,1],[1,0],[0,-1],[-1,0]],[[6573,7854],[0,-1],[1,0]],[[6574,7853],[1,0]],[[6574,7853],[0,-1],[1,0]],[[6575,7852],[0,1]],[[6575,7853],[0,1],[1,-1],[-1,-1]],[[6575,7852],[1,0],[0,-1],[-1,0],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[3,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-2],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[2,-2],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[1,2],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[-1,2],[1,1],[0,1],[-1,1],[0,1],[1,1],[1,1],[0,1],[1,2],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,1],[2,0],[0,1],[1,0],[1,1],[2,1],[3,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[6,1],[3,0],[2,0],[1,0],[1,0],[5,0],[1,0],[1,0],[2,0],[2,0],[7,0],[3,1],[1,0],[1,0],[4,0],[2,0],[9,0],[15,0],[11,1],[9,0],[2,0],[5,0],[1,0],[1,0],[1,0],[3,0],[2,0],[2,0],[9,0],[3,0],[1,0],[4,1],[2,0],[7,0],[22,0],[7,0],[6,0],[16,1],[6,0],[5,0],[9,0],[5,1],[5,0],[2,0],[7,0],[2,0],[6,1],[17,0],[5,0],[2,0],[3,0],[2,0],[2,0],[5,0],[2,0],[2,0],[5,0],[2,0],[6,1],[16,0],[6,0],[5,0],[17,0],[5,1],[7,0],[22,0],[6,0],[1,0],[6,0],[18,1],[6,0],[3,0],[6,0],[2,0],[9,0],[27,0],[8,0],[5,0],[12,0],[4,0],[1,0],[3,0],[10,0],[6,1],[6,0],[15,0],[10,0],[4,0],[12,0],[4,0],[6,0],[4,0],[14,1],[6,0],[1,0],[3,0],[11,0],[4,0],[11,0],[3,0],[8,0],[17,1],[16,0],[13,0],[1,0],[1,0],[3,0],[1,0],[11,0],[2,0],[24,0],[15,1],[6,0],[6,0],[7,0],[9,0],[1,0],[9,0],[6,0],[6,0],[1,0],[16,1],[6,0],[2,0],[9,0],[3,0],[5,0],[5,0],[6,0],[4,0],[4,0],[1,0],[10,0],[4,0],[1,0],[8,0],[3,0],[17,1],[11,0],[3,0],[2,0],[15,0],[5,0],[4,0],[14,0],[4,0],[3,0],[4,0],[3,0],[1,0],[2,0],[2,0],[5,0],[1,0],[5,0],[15,0],[5,0],[1,0],[6,0],[4,0],[12,1],[6,0],[4,0],[3,0],[5,0],[3,0],[6,0],[1,0],[7,0],[5,0],[1,0]],[[7742,7849],[4,0],[14,0],[5,0],[2,0],[6,0],[2,0],[2,0],[4,0],[1,0],[2,0],[2,0],[3,0],[1,0],[3,0],[3,0],[6,0],[11,0],[5,0],[2,0],[4,0],[1,0],[1,0],[18,0],[1,0],[5,0],[1,0],[5,0],[2,0],[4,0],[9,0],[4,0],[4,0],[1,0],[2,0],[7,0],[2,0],[2,0],[6,0],[1,0],[12,0],[3,0],[6,0],[1,0],[5,0],[1,0],[5,0],[2,0],[13,-1],[4,0],[1,0],[11,0],[9,1],[26,0],[11,1],[2,0],[7,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[8,0],[2,0],[2,0],[7,0],[2,0],[2,0],[1,0],[6,0],[2,0],[4,0],[13,0],[4,0],[1,0],[1,0],[3,0],[1,0],[5,0],[10,0],[4,-1],[5,0],[3,0],[7,0],[2,0],[8,0],[9,0],[16,0],[8,0],[1,0],[3,0],[1,0],[1,0],[1,0],[3,0],[1,0],[2,0],[6,0],[3,0],[1,0],[4,0],[2,0],[6,0],[18,0],[6,0],[2,0],[5,-1],[2,0],[1,0],[1,0],[3,0],[1,0],[1,0],[4,1],[10,0],[3,0],[6,0],[17,0],[5,0],[1,0],[2,0],[1,0],[2,0],[6,-1],[1,0],[3,1],[9,0],[3,0],[2,1],[7,3],[2,1],[1,1],[5,2],[0,1],[2,0],[4,2],[11,6],[2,1],[4,2],[5,2],[1,0],[17,9],[6,2],[3,2],[1,1],[4,-7],[2,-3],[2,-3],[5,-8],[2,-2],[1,-3],[5,-8],[2,-2],[0,-1],[2,-2],[3,-5],[2,-3],[1,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-2],[2,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,-3],[0,-1],[1,-2],[1,-1],[1,-1],[6,-10],[1,-1],[4,-6],[2,-4],[8,-13],[5,-8],[6,-10],[1,0],[1,-3],[1,-1],[6,-9],[1,-2],[1,-1],[0,-1],[2,-2],[3,-5],[2,-5],[1,-1],[1,-2],[2,-2],[4,-7],[0,-1],[2,-2],[2,-4],[4,-5],[1,-3],[3,-5],[3,-4],[1,-1],[1,-3],[1,-1],[2,-3],[7,-12],[3,-5],[1,-1],[2,-3],[4,-7],[5,-8],[5,-8],[8,-12],[3,-5],[5,-9],[2,-2],[1,-2],[4,-6],[1,-2],[10,-15],[3,-6],[5,-8],[1,-2],[3,-4],[1,-1],[1,-2],[0,-1],[1,-2],[3,-5],[13,-20],[1,-1],[0,-1],[4,-7],[3,-3],[4,-8],[2,-2],[0,-1],[2,-4],[1,-1],[2,-3],[1,-2],[1,-1],[1,-2],[4,-6],[1,-2],[1,-1],[0,-1],[2,-2],[4,-8],[2,-2],[1,-2],[4,-6],[1,-2],[5,-7],[14,-23],[1,-3],[4,-5],[1,-1],[0,-1],[5,-7],[6,-10],[9,-14],[4,-8],[16,-25],[9,-15],[2,-3],[24,-38],[1,-2],[2,-2],[10,-17],[3,-4],[3,-5],[14,-23],[2,-4],[26,-42],[1,0],[6,0],[16,0],[6,0],[12,0],[15,0],[4,0],[19,0],[13,0],[1,0],[1,0],[4,0],[12,0],[3,0],[15,0],[17,0],[0,-16],[0,-12],[0,-16],[0,-2],[0,-8],[0,-3]],[[8949,7158],[0,-10],[0,-16],[0,-15],[0,-10],[0,-7],[0,-3],[0,-18],[0,-7],[0,-1],[0,-4],[0,-1],[0,-6],[0,-19],[0,-6],[0,-6],[0,-19],[0,-6],[0,-27],[0,-66],[0,-16],[-25,0],[-16,0],[-46,1],[-16,0],[-5,0],[-16,0],[-5,0],[-3,0],[-7,0],[-2,0],[-4,0],[-3,0],[-10,0],[-4,0],[-3,0],[-9,0],[-3,0],[-8,0],[-3,1],[-21,-1],[-7,0],[-1,0],[-1,0],[-4,0],[-15,0],[-5,0],[-1,0],[-1,0],[-3,0],[-1,0],[-4,0],[-5,0],[-5,0],[-1,0],[-4,0],[-3,0],[-11,0],[-2,0],[-1,0],[-1,0],[-6,0],[-18,0],[-4,0],[-3,0],[-7,0],[-3,0],[-3,0],[-2,0],[-8,0],[-5,0],[-2,1],[-4,0],[-2,0],[-3,0],[-2,0],[-7,1],[0,8],[0,3],[0,2],[-1,4],[0,1],[0,6],[0,3],[0,11],[-3,-1],[-5,-3],[-1,0],[-1,-1],[-7,-3],[-2,-1],[-1,0],[-9,-5],[-1,0],[-11,-5],[-6,-3],[-6,-3],[-7,-3],[-2,-1],[-10,-5],[-1,0],[-4,-2],[-1,-1],[-5,-2],[-16,-8],[-5,-2],[-1,-1],[-4,-2],[-12,-6],[-2,-1],[-2,-1],[-7,-3],[-5,-3],[-16,-7],[-3,-2],[-8,-4],[-6,-3],[-2,-1],[-17,-8],[-2,-1],[-6,-3],[-1,0],[-3,-2],[-12,-6],[-3,-2],[-5,-2],[-13,-6],[-2,-1],[-2,-1],[-2,-1],[-3,-2],[-3,-1],[-8,-4],[-1,-1],[-7,-3],[-5,-3],[-5,-2],[-2,-1],[-3,-1],[-3,-2],[-4,-2],[-10,-5],[-7,-4],[-3,-1],[-6,-3],[-6,-3],[-11,-5],[-6,-3],[-7,-4],[-19,-9],[-11,-6],[-1,0],[-4,-2],[-1,0],[0,-1],[-7,-3],[-15,-7],[-7,-4],[-7,-3],[-3,-1],[-8,-4],[-3,-1],[0,-1],[-3,-1],[-9,-4],[-2,-1],[-1,-1]],[[8143,6721],[0,3],[0,1],[0,8],[0,3],[0,1],[0,3],[0,1],[0,13],[0,39],[0,14],[0,2],[0,7],[0,2],[0,3],[0,9],[0,2],[0,13],[0,3],[0,3],[-1,0],[-1,0],[-12,0],[-4,0],[-13,0],[-39,0],[-13,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-10,0],[-3,0],[-9,0],[-17,0],[-10,0],[-4,0],[-5,0],[-2,0],[-8,0],[-6,0],[-11,0],[-2,0],[-4,0],[-8,0],[-3,0],[-3,0],[-7,0],[-3,0],[-2,0],[-3,0],[-7,0],[-2,0],[-2,0],[-16,0],[-2,0],[-8,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-5,0],[-15,0],[-5,0],[-5,0],[-14,0],[-2,0],[-5,0],[-3,0],[-11,0],[-3,0],[-5,0],[-16,0],[-5,0],[-3,0],[-2,0],[-15,0],[-6,0],[-1,0],[-4,0],[-1,0],[-14,1],[-11,0],[-9,0],[-3,0],[-51,0],[-4,0],[-7,0],[-12,0],[-1,0],[-11,0],[-1,0],[-4,0],[-13,0],[-5,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-12,0],[-4,0],[-5,0],[-2,0],[-23,0],[-7,0],[-7,0],[-20,0],[-5,0],[-1,0],[-5,0],[-1,0],[-6,0],[-2,0],[-5,0],[-3,0],[-1,0],[-6,0],[-1,0],[-3,0],[-1,0],[-2,0],[-3,0],[-10,0],[-3,0],[-4,0],[-11,0],[-3,0],[-1,0],[-2,0],[-7,0],[-2,0],[-1,0],[-4,0],[-2,0],[-8,0],[-2,0],[-5,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-8,0],[-24,-1],[-9,0],[-12,0],[-36,0],[-3,0],[-9,0],[-15,0],[-43,0],[-3,0],[-16,0],[-2,0],[-5,0],[-2,0],[-5,0],[-3,0],[-22,0],[-8,0],[-6,0],[-18,1],[-6,0],[-1,0],[-1,0],[-1,0],[-2,0],[-7,0],[-2,0],[-4,0],[-11,0],[-4,0],[-6,0],[-5,0],[-14,0],[-6,0],[-9,0],[-10,0],[-18,0],[-9,0],[-4,0],[-11,0],[-4,0],[-5,0],[-1,0],[-10,0],[-5,0],[-6,0],[-4,0],[-3,0],[-8,0],[-3,0],[-9,0],[-7,0],[-3,0],[-9,0],[-2,0],[-4,0],[-7,0],[-2,0],[-4,0],[-5,0],[-7,0],[-1,0],[-4,0],[-3,0],[-3,0],[-6,0],[-5,0],[-15,0],[-5,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-6,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-10,0],[-3,0],[-4,0],[-9,0],[-3,0],[-5,0],[-4,0],[-28,0],[-9,0],[-1,0],[-1,0],[-5,0],[-1,0],[-5,0],[-16,0],[-5,0],[-4,0],[-2,0],[-7,0],[-12,0],[-4,0],[-3,0],[-1,0],[-3,0],[-2,0],[-3,0],[-1,0],[-1,0],[-4,0],[-1,0],[-7,0],[-20,0],[-6,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-12,0],[-2,0],[-1,0],[-1,0],[-8,0],[-25,1],[-8,0],[-2,0],[-5,0],[-11,0],[-8,0],[-7,0],[-1,0],[-3,0],[-10,0],[-3,0],[-3,0],[-7,0],[-3,0],[-1,0],[-5,0],[-2,0],[-3,0],[-9,0],[-3,0],[-4,0],[-13,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-6,0],[-2,0],[-3,0],[-8,0],[-3,0],[-1,0],[-3,0],[-11,0],[-3,0],[-3,0],[-6,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-21,0],[-8,0],[-54,-1],[-21,0],[-3,0],[-1,0],[-1,0],[-4,0],[-2,0],[-5,0],[-14,0],[-1,0],[-5,0],[-2,0],[-5,0],[-1,0],[-1,0],[-2,0],[-6,0],[-3,0],[-6,0],[-18,0],[-7,0],[-2,0],[-6,0],[-2,0],[-1,0],[0,-1],[0,-5],[0,-1],[0,-1],[0,-1],[0,-9],[0,-2],[0,-1],[0,-17],[0,-1],[0,-6],[0,-2],[0,-1],[0,-5],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-8],[0,-21],[0,-7],[0,-4],[0,-11],[0,-4],[0,-3],[0,-10],[0,-3],[0,-5],[0,-14],[0,-5],[0,-6],[0,-1],[0,-12],[0,-6],[0,-1],[0,-10],[0,-16],[0,-15],[0,-2],[0,-5],[0,-3],[0,-5],[0,-10],[0,-5],[0,-5],[0,-1],[0,-3],[0,-1],[0,-3],[0,-9],[0,-3],[0,-2],[0,-6],[0,-2],[0,-16],[0,-5]],[[6215,6545],[-9,0],[-4,0],[-21,-1],[-9,0],[-19,0],[-57,0],[-20,0],[-1,1],[-3,0],[-14,0],[-5,0],[-2,0],[-7,0],[-2,0],[-1,0],[-1,0],[-12,0],[-39,-1],[-13,0],[-2,0],[-5,0],[-1,0],[-6,0],[-18,0],[-6,0],[-1,0],[-5,0],[-2,0],[-16,0],[-5,0],[-3,0],[-9,0],[-2,0],[-7,0],[-20,0],[-15,0],[-20,0],[-1,0],[-7,0],[-2,0],[-29,0],[-10,0],[-1,0],[-1,0],[-2,0],[-6,0],[-19,0],[-6,0],[-6,0],[-18,0],[-6,0],[-3,0],[-9,0],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[-7,0],[-2,0],[-5,0],[-13,0],[-4,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-7,0],[-25,0],[-8,0],[-1,0],[-2,0],[-5,0],[-1,0],[-1,0],[-25,0],[-1,0],[-8,0],[-1,0],[-4,0],[-2,0],[-1,0],[-52,0]],[[5515,6544],[0,5],[0,1],[0,5],[-1,18],[0,6],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,6],[0,2],[0,3],[0,2],[0,4],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,5],[0,2],[0,3],[0,8],[0,3],[0,1],[0,4],[0,14],[0,4],[0,5],[0,14],[0,4],[0,1],[0,4],[0,6],[0,7],[0,4],[0,1],[0,1],[0,7],[-1,19],[0,7],[0,2],[0,8],[0,2],[0,8],[0,8],[0,3],[0,13],[0,8],[0,1],[0,8],[0,1],[0,2],[0,9],[0,16],[0,10],[0,3],[0,1],[0,4],[0,11],[0,4],[0,4],[0,15],[0,5],[0,6],[0,5],[0,6],[0,8],[0,6],[0,1],[0,1],[0,1],[0,1],[0,2],[0,5],[0,2],[0,2],[0,4],[0,2],[0,2],[0,4],[0,1],[0,2],[0,6],[0,1],[0,1],[0,2],[0,1],[0,2],[0,5],[0,1],[0,1],[0,4],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,6],[0,2],[0,3],[0,8],[-1,0],[-2,0],[0,1],[0,2],[0,1],[0,4],[0,13],[0,1],[0,3],[0,1],[0,2],[0,5],[0,1],[-1,2],[1,2],[0,5],[0,2],[0,5],[-1,18],[0,6],[0,3],[0,6],[0,8],[0,2],[0,1],[0,15],[0,13],[0,3],[0,6],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,5],[0,2],[0,4],[0,1],[0,5],[0,8],[0,4],[0,5],[0,16],[0,1],[0,4],[0,4],[0,8],[0,6],[0,1],[0,4],[0,5],[0,12],[0,1],[0,3],[0,2],[0,2],[0,2],[0,3],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,3],[0,7],[0,3],[0,1],[0,3],[0,1],[0,14],[0,10],[0,8],[0,1],[0,1],[0,8],[0,6],[0,3],[0,7],[0,2],[0,3],[0,7],[0,8],[0,2],[0,7],[0,13],[0,6],[0,4],[0,19],[0,11],[0,2],[0,6],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,4],[0,2],[0,9],[0,5],[0,5],[0,1],[0,4],[0,1],[-1,0],[0,4],[0,11],[0,4],[0,1],[0,4],[0,2],[0,5],[0,4],[0,10],[0,4],[0,3],[0,6],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,5],[0,6],[0,1],[0,4],[0,3],[1,5],[0,2],[0,6],[0,2],[0,1],[2,0],[1,0],[0,8],[0,1],[0,2],[0,1],[0,4],[-1,11],[0,3],[0,1],[-1,3],[0,10],[0,1],[0,4],[-1,2],[0,7],[0,2],[-1,6],[0,4],[0,3],[-2,25],[-1,14],[0,4],[0,7],[0,1],[0,1],[0,4],[-1,9],[0,3],[0,1],[0,3],[0,6],[0,1],[0,3],[0,3],[0,1],[0,1],[0,4],[0,6],[0,5],[0,4],[0,2],[0,5],[0,2],[0,8],[0,11],[0,20],[0,14],[0,9],[0,1],[0,16],[0,13],[-2,0],[0,2],[0,5],[0,11],[0,1],[1,2],[0,1],[0,2],[0,1],[0,7],[0,2],[0,1],[0,5],[0,12],[1,2],[0,3],[0,4],[0,5],[0,10],[0,7],[1,6],[0,1],[0,3],[0,1],[0,2],[0,6],[0,2]],[[5114,8872],[-1,0],[1,0]],[[5114,8872],[0,1],[0,1],[0,1],[0,1],[1,0],[2,6],[1,0],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[3,6],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,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],[-1,1],[0,1],[0,1],[1,2],[0,2],[0,1],[1,2],[0,1],[-1,1],[0,1],[-1,2],[-2,1],[0,1],[1,1],[0,1],[0,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],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,5],[0,2],[1,2],[0,1],[1,5],[1,4],[0,2],[1,1],[1,1],[1,1],[0,1],[0,2],[3,4],[1,2],[3,4],[2,4],[0,1],[1,5],[1,2],[0,1],[2,2],[1,1],[2,4],[0,1],[0,1],[1,1],[0,1],[0,2],[1,0],[0,2],[1,1],[0,3],[1,1],[-1,3],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,2],[-1,2],[0,1],[0,2],[-1,5],[-1,3],[0,7],[0,3],[1,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,2],[0,1],[-1,2],[-1,1],[0,1],[-1,2],[-1,2],[-1,2],[0,1],[0,1],[-1,1],[0,2],[-1,2],[-1,2],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,1],[0,1],[1,4],[0,5],[0,1],[1,0],[-1,1],[-1,0],[-1,1],[-1,2],[0,2],[0,1],[-1,3],[1,1],[1,1],[0,1],[4,1],[2,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,1],[-1,2],[0,1],[0,2],[-1,3],[0,3],[-1,4],[0,1],[0,4],[-1,3],[0,2],[0,1],[0,1],[-1,1],[0,3],[0,3],[-1,2],[0,2],[-1,5],[0,1],[0,1],[0,1],[-1,4],[-2,2],[0,1],[0,1],[-1,2],[-1,1],[0,1],[1,1],[-1,1],[-2,3],[-1,3],[0,3],[-1,2],[-1,0],[0,1],[0,1],[-1,2],[-1,2],[-1,6],[0,1],[-1,2],[0,3],[-1,5],[0,1],[-1,6],[1,1],[0,1],[0,2],[1,1],[-1,1],[1,1],[0,3],[0,1],[-1,3],[-2,3],[0,1],[-1,2],[0,1],[0,1],[-1,3],[-1,2],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,2],[-1,2],[0,1],[-1,1],[0,2],[-1,0],[0,1],[0,1],[-1,2],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,3],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,8],[0,5],[0,1],[0,3],[0,1],[0,2],[0,4],[0,1],[2,0],[23,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,2],[-2,7],[-1,3],[0,3],[0,1],[0,2],[0,3],[0,4],[0,1],[0,1],[0,3],[0,1],[0,1],[-1,2],[0,1],[-2,5],[-1,3],[-1,1],[0,1],[-1,3],[-1,1],[0,1],[0,2],[0,2],[0,1],[-1,1],[0,1],[-2,2],[-2,2],[0,1],[-1,2],[0,1],[-1,6],[2,0],[0,1],[0,1],[0,1],[0,2]],[[5079,9483],[1,0],[-1,0]],[[5079,9483],[-1,1],[1,0],[0,1]],[[5079,9485],[-1,0],[1,0]],[[5079,9485],[0,1]],[[5079,9486],[-1,0],[1,0]],[[5079,9486],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[-1,2],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[2,0],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[-1,3],[-1,2],[0,1],[0,1],[0,3],[-1,7],[0,2],[0,3],[0,1],[0,4],[0,1],[0,3],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,2],[0,1],[-1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,2],[0,2],[0,1],[1,4],[0,1],[0,1],[0,2],[-1,0],[0,1],[-1,3],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[-1,1],[0,2],[0,1],[-1,2],[0,2],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,3],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[1,1],[1,1],[0,2],[2,6],[0,2],[1,1],[0,1],[0,1],[1,1],[1,2],[0,1],[0,1],[1,0],[0,1],[0,2],[1,2],[1,2],[3,7],[2,6],[1,2],[0,2],[0,4],[1,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,5],[0,1],[-1,6],[0,6],[-1,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[1,4],[0,2],[1,3],[0,1],[0,3],[1,2],[0,3],[0,2],[0,4],[-1,4],[0,2],[0,2],[-1,1],[1,1],[-1,1],[0,1],[-1,1],[0,2],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[-1,2],[-1,2],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[-2,3],[-1,3],[-1,1],[0,1],[-2,2],[-1,3],[-2,3],[-1,2],[0,1],[0,1],[-1,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,2],[-1,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,1],[-1,3],[-2,4],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[-1,2],[-1,1],[0,1],[-1,2],[0,1],[0,3],[-1,2],[0,2],[0,1],[-1,1],[-1,1],[0,2],[-1,2],[0,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,0],[-1,2],[-1,1],[-1,4],[-1,3],[-1,2],[1,2],[-1,1],[-1,4],[0,2],[1,2],[1,2],[0,4],[0,1],[-1,2],[0,4]],[[5032,9990],[1,0],[1,0],[2,0],[6,0],[2,0],[3,0],[1,0],[1,0],[3,0],[10,0],[3,0],[6,0],[16,1],[1,0],[6,0],[7,0],[23,0],[8,0],[14,0],[13,0],[21,0],[8,0],[13,0],[1,0],[7,0],[1,0],[25,0],[3,0],[5,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[2,0],[9,0],[28,0],[9,0],[6,0],[16,0],[5,0],[1,0],[1,0],[4,0],[1,0],[7,0],[23,0],[7,0],[14,0],[20,0],[21,0],[13,0],[8,0],[7,0],[18,0],[8,0],[5,0],[17,0],[5,0],[1,0],[2,0],[1,0],[4,0],[1,0],[2,0],[5,0],[2,0],[3,0],[10,0],[3,0],[1,0],[3,0],[1,0],[1,0],[1,0],[3,0],[10,0],[3,0],[1,0],[2,0],[1,0],[5,0],[17,0],[6,0],[1,0],[1,0],[1,0],[3,0],[1,0],[5,0],[15,0],[5,0],[3,0],[9,0],[3,0],[11,0],[3,0],[4,0],[3,0],[9,0],[3,0],[2,0],[7,0],[2,0],[2,0],[4,0],[2,0],[3,0],[8,0],[3,0],[2,0],[5,0],[1,0],[1,0],[2,0],[1,0],[3,0],[10,0],[3,0],[1,0],[2,0],[5,0],[2,0],[1,0],[4,0],[1,0],[2,0],[8,0],[2,0],[2,0],[1,0],[7,0],[2,0],[2,0],[7,0],[3,0],[4,0],[14,0],[5,0],[1,0],[1,0],[1,0],[4,0],[2,0],[2,0],[2,0],[4,0],[2,0],[3,0],[7,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[8,0],[2,0],[4,0],[5,0],[8,0],[3,0],[5,0],[2,0],[1,0],[5,0],[11,0],[2,0],[4,0],[8,0],[1,0],[14,0],[3,0],[12,0],[16,0],[6,0],[24,0],[11,0],[14,0],[1,0],[1,0],[3,0],[10,0],[4,0],[3,0],[1,0],[7,0],[3,0],[15,0],[2,0],[13,0],[15,0],[21,0],[17,0],[14,0],[31,0],[13,0],[14,0],[4,0],[7,0],[2,0],[4,0],[1,0],[1,0],[2,0],[1,0],[7,0],[21,0],[16,0],[32,-1],[15,0],[3,0]],[[6331,9990],[2,-4],[-1,-2],[-4,-7],[-2,-2],[-2,0],[-7,-1],[-2,0],[-1,-1],[-1,-3],[-1,0],[-3,-1],[-4,-2],[0,-4],[1,-3],[0,-2],[-3,-7],[1,-2],[3,-5],[0,-2],[1,-2],[0,-5],[-3,-3],[2,-3],[3,-3],[3,-3],[1,-1],[1,-1],[3,-3],[0,-1],[1,-4],[0,-4],[0,-1],[0,-1],[0,-2],[1,-1],[3,-2],[2,-4],[3,-3],[1,-1],[0,-3],[2,-1],[-2,-5],[1,0],[0,-2],[7,-1],[7,-3],[-2,-1],[2,-4],[-1,-5],[3,-6],[0,-6],[2,-2],[-1,-2],[3,0],[7,-1],[5,-1],[3,-1],[0,-5],[-3,-2],[-2,-6],[-1,-2],[-2,-1],[-4,-9],[0,-1],[0,-3],[-3,-3],[-1,-4],[-3,-2],[-1,-5],[-2,-3],[-1,-6],[-2,-3],[0,-3],[-4,-4],[-3,-7],[0,-1],[-3,-2],[0,-1],[-1,-3],[0,-2],[0,-3],[0,-2],[-1,-4],[-2,-3],[0,-2],[-1,-3],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[0,-2],[-2,-2],[-1,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1],[1,-1],[0,-1],[1,-2],[1,-2],[1,-1],[2,-2],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-4],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-3],[-2,-3],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[0,-2],[0,-2],[0,-2],[-1,-2],[1,-1],[2,-1],[2,0],[4,-2],[3,-1],[1,-2],[-2,-5],[-3,-4],[-3,-5],[-2,-3],[-2,-3],[-3,-3],[0,-4],[1,-4],[1,-2],[1,-1],[0,-1],[2,-3],[1,-3],[1,-1],[0,-3],[1,-2],[1,-2],[2,-1],[0,-1],[1,-2],[1,-2],[1,-2],[0,-3],[0,-4],[1,-4],[1,-2],[0,-3],[0,-2],[1,-2],[-1,-2],[1,-1],[0,-1],[0,-2],[2,-2],[1,0],[1,-1],[0,-1],[-3,-2],[-1,-3],[0,-2],[1,-4],[0,-2],[-3,-5],[-1,-10],[1,-3],[2,-3],[1,-2],[-2,-2],[-6,-6],[-2,-3],[0,-2],[0,-1],[0,-4],[-2,0],[-4,-1],[-6,-2],[-7,0],[-2,0],[-2,-1],[-2,-2],[-4,-4],[-1,0],[-3,-1],[-1,0],[-3,2],[-1,0],[-1,1],[-3,1],[-1,0],[-1,0],[-2,0],[-2,-1],[-2,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-2],[-1,-2],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[-5,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-2,0],[-1,0],[-2,1],[-6,4],[0,1],[0,3],[0,1],[-1,1],[-3,1],[0,1],[-1,3],[-1,0],[0,1],[-2,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-1,-2],[0,-1],[-1,-1],[-2,0],[0,1],[-1,1],[-1,0],[-3,-3],[-2,0],[-2,1],[-8,-2],[-2,0],[-1,0],[-2,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[-1,-2],[0,-2],[-5,-3],[-1,-1],[-2,-1],[-1,-3],[-2,-4],[-1,-4],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,1],[-1,0],[-1,0],[0,-1],[-2,0]],[[6156,9466],[0,-1],[0,1]],[[6156,9466],[-1,0],[-3,2],[-4,2],[-4,2],[-1,1],[-1,0],[-1,0]],[[6141,9473],[0,1],[0,-1]],[[6141,9473],[-1,0],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-2,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[0,-1],[2,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[1,-2],[0,-1],[1,-2],[0,-2],[-1,-3],[-1,-1],[-1,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[2,-3],[1,0],[0,-2],[1,0],[2,-2],[1,-1],[1,-1],[3,-1],[2,0],[1,-1],[1,-1],[0,-1],[1,-2],[0,-1],[2,-2],[2,-2],[1,-1],[1,-2],[0,-1],[2,-4],[-1,-2],[0,-1],[0,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[2,-2],[1,0],[0,-2],[0,-1],[-4,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-2,0],[-2,-1],[-2,0],[-2,-1],[-1,0],[-2,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,-1],[-1,0],[0,-2],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,-2],[0,-1],[1,0],[0,-1],[1,-1],[3,-1],[1,-1],[1,-1],[1,0],[3,-1],[1,-1],[1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[2,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,-1],[1,1],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-7],[1,-1],[1,0],[0,-1],[3,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,0],[2,-1],[1,0],[1,-1],[1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[1,-1],[2,-2],[2,-1],[1,-1],[2,-1],[1,-1],[1,0],[1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-3],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,1],[-2,0],[-3,-1],[-11,-4],[-2,-1],[-2,0],[0,-1],[0,-2],[1,-2],[0,-1],[-1,0],[-1,-1],[-1,-2],[-2,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-3],[1,-1],[0,-1],[-1,-1],[-2,0],[-2,-1],[-1,-1],[-1,-1],[-1,-3],[0,-2],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-2],[0,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-3],[-1,-1],[-2,-1],[-3,-2],[-3,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,-3],[2,-2],[1,-1],[1,-1],[1,-1],[1,-2],[-1,-2],[0,-1],[0,-1],[1,0],[1,0],[1,2],[1,2],[2,0],[2,1],[2,1],[3,-1],[4,1],[3,0],[3,-1],[2,-1],[1,-1],[1,-1],[1,-1],[1,-2],[0,-3],[0,-2],[0,-1],[-1,-2],[-2,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[2,-1],[1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[2,-1],[1,-1],[3,-1],[1,0],[1,-1],[-2,-2],[-2,-1],[-2,-1],[-1,-2],[-1,-2],[0,-2],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-2],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[2,-1],[2,-1],[1,-2],[2,-2],[1,-1],[2,-2],[0,-2],[1,-2],[0,-1],[-2,-1],[-2,0],[-1,-1],[-1,0],[1,-1],[3,-4],[2,-4],[1,-2],[0,-2],[-1,-4],[-1,-2],[1,-1],[0,-1],[1,-2],[1,0],[1,-5],[0,-3],[-1,-2],[0,-1],[-1,-2],[0,-3],[-1,-2],[0,-2],[-2,-1],[-1,-4],[-1,0],[-1,-1],[-2,-2],[-3,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-2],[0,-3],[-1,-2],[0,-1],[1,-1],[2,0],[2,0],[2,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-1],[1,-1],[0,-3],[0,-4],[1,-3],[1,-2],[0,-1],[0,-1],[0,-1],[1,-4],[0,-1],[0,-1],[0,-1],[-2,-2],[-1,-1],[-1,-1],[-2,-1],[0,-1],[0,-1],[1,-2],[1,-2],[2,-2],[0,-1],[2,-3],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-3,-6],[-2,-3],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-3],[1,-3],[0,-3],[0,-2],[-1,-2],[-1,-1],[-1,-3],[-1,-4],[-1,-2],[0,-3],[1,-1],[0,-2],[-1,-3],[-1,-2],[-1,-2],[0,-3],[-1,-2],[0,-2],[1,-4],[1,-4],[2,-4],[1,-3],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,-2],[1,-2],[0,-1],[0,-1],[0,-2],[0,-2],[1,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,-2],[1,-2],[-1,0],[0,-1],[-22,-25]],[[6132,8697],[-6,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-3,-1],[-2,0],[-2,0],[-8,-2],[-2,-1],[-8,-2],[-3,0],[-2,-1],[-2,0],[-7,-2],[-6,-1],[-2,0],[-18,-4],[-2,-5],[-3,-2],[-1,-2],[-4,-7],[-3,-1],[-1,0],[-12,-5],[-2,-1],[-1,-1],[-3,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[2,0],[2,0],[6,-4],[4,-3],[2,-1],[1,0],[1,-1],[0,-3],[0,-5],[2,-4],[1,-2],[1,0],[3,-1],[2,-1],[1,-3],[0,-5],[0,-4],[-1,-2],[-5,-2],[0,-1],[-1,-1],[0,-1],[-2,-7],[-1,-5],[0,-1],[2,0],[1,0],[1,-2],[1,-6],[0,-4],[-1,-5],[0,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-3],[-2,-1],[-1,-2],[-3,-2],[-2,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-4,-4],[-1,-1],[-2,-2],[-1,0],[-1,-1],[-1,0],[-2,-4],[-1,-1],[-2,-2],[-2,-1],[-2,-2],[0,-1],[-2,-1],[-2,-3],[-1,0],[1,-1],[0,-1],[0,-3],[0,-9],[2,0],[3,-1],[1,0],[1,-2],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-2],[-1,-1],[0,-1],[-2,-1],[-5,-5],[0,-1],[0,-2],[0,-3],[1,-8],[0,-3],[0,-6],[0,-7],[-5,-7],[-4,-5],[0,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[-2,-4],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-2,-2],[-4,-6],[-1,-1],[-1,-1],[-6,-8],[-4,-6],[-14,-19],[0,-1],[-6,-8],[-1,0],[0,-1],[-1,0],[0,-1],[-3,-4],[-3,-5],[-1,-1],[-1,-1],[0,-1],[-5,-8],[-15,-24],[-4,-8],[-2,-2],[-1,-1],[-2,-4],[-1,-2],[-3,-4],[-8,-13],[-2,-5],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-3],[-7,-12],[-1,-2],[-2,-1],[-3,-1],[-3,-2],[-5,-1],[-6,-1],[-3,-1],[-1,-1],[-3,0],[-1,-1],[-1,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[0,-1]],[[5819,8257],[-54,25],[-25,11],[-58,27],[-11,5],[-7,2],[-2,1],[-29,13],[-13,6],[-8,4],[-3,1],[-10,5],[-17,7],[-10,5],[-7,3],[-8,4],[-7,3],[-6,3],[-9,4],[-8,4],[-25,11],[-1,0],[-1,0],[-2,2],[-4,2],[-4,1],[-5,2],[0,1],[-6,2],[-2,3],[-5,6],[-3,2],[-1,1],[-13,15],[0,1],[-15,20],[0,1],[-1,0],[-2,3],[0,1],[-2,2],[-1,1],[-2,2],[0,1],[-5,5],[-1,1],[-6,7],[-7,8],[-1,1],[-13,14],[0,1],[-1,1],[-1,1],[-3,4],[-1,1],[-1,0],[0,1],[-2,2],[-3,3],[-2,3],[-21,22],[-1,2],[-26,29],[-20,23],[-2,2],[-1,1],[-1,1],[-3,3],[-7,8],[-14,16],[-9,9],[0,1],[-1,1],[-2,1],[-5,2],[-2,0],[-2,1],[-20,8],[-12,4],[-18,6],[-8,2],[-3,2],[-12,4],[-4,1],[-4,1],[-6,2],[-5,2],[-4,2],[-10,3],[-2,1],[-5,2],[-1,0],[-1,1],[-4,1],[-1,0],[-5,2],[-3,1],[-1,1],[-8,2],[0,1],[-34,11],[-5,2],[-1,1],[-13,4],[-12,4],[-2,1],[-10,4],[-4,1],[-4,1],[-2,1],[-3,1],[-10,3],[0,1],[-2,0],[-1,0],[-20,8],[-24,8],[-17,6],[-6,2],[-1,0],[-4,2],[-1,0],[-5,2],[-4,1],[1,1],[3,4],[0,7],[0,2],[7,3],[3,2],[4,4],[-1,1],[-1,4],[8,8],[2,4],[2,3],[1,1],[1,0],[0,1],[3,2],[0,3],[0,1],[1,0],[1,1],[1,0],[1,1],[3,1],[1,0],[3,1],[1,0],[5,1],[2,1],[2,0],[1,0],[2,0],[1,0],[0,-1],[5,-1],[3,0],[3,1],[1,3],[4,1],[3,2],[3,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1]],[[475,2243],[0,1],[0,-1]],[[475,2243],[-1,0],[-57,0],[-1,0],[-29,0],[-30,0],[-1,0],[-1,0],[-20,0],[-9,0],[0,7],[0,2],[0,1],[0,2],[0,11],[0,2],[-1,13],[0,15],[0,4],[0,31],[1,24],[-1,13],[0,17],[0,11],[0,24],[0,1],[0,2],[1,6],[-1,28],[0,1],[-1,43],[0,24],[0,24],[-26,0],[-1,0],[-1,0],[-7,1],[-10,0],[-4,0],[-22,0],[-27,0],[-48,0],[-1,0],[-13,0],[-25,0],[-22,-1],[-15,0],[-20,0],[-1,0],[-1,0],[-26,0],[-12,0],[-16,1],[-1,0],[-5,0],[-15,0]],[[5,2550],[0,5],[0,3],[0,9],[0,11],[0,21],[0,6],[0,14],[0,16],[0,3],[0,2],[0,1],[0,1],[0,2],[0,2],[0,6],[0,10],[0,49],[0,11],[0,5],[0,8],[0,8],[0,21],[0,22],[0,2],[0,16],[0,9],[0,35],[0,6],[0,18],[0,29],[0,11],[0,17],[0,14],[0,8],[0,10],[0,1],[0,4],[0,1],[0,8],[0,34],[0,6],[0,2],[0,1],[0,1],[0,1],[0,11],[-1,15],[0,11],[0,5],[0,3],[1,4],[0,31],[0,1],[0,3],[0,2],[0,1],[0,4],[0,2],[0,19],[0,31],[0,10],[0,12],[0,1],[0,11],[0,1],[0,11],[0,23],[0,11],[0,13],[0,11],[0,10],[0,9],[0,2],[0,1],[0,11],[0,1],[0,1],[0,1],[0,1],[0,4],[0,3]],[[1735,3298],[57,0],[48,1],[8,0],[3,0],[4,0],[6,0],[8,0],[11,0],[5,0],[9,0],[8,0],[15,0],[25,1],[15,-1],[1,-1],[0,-2],[2,-1],[1,-2],[3,-1],[1,1],[3,2],[2,2],[1,-2],[1,-4],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-3],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,2],[3,1],[1,2],[2,0],[1,0],[1,0],[1,-2],[1,0],[4,1],[2,-1],[2,-2],[0,-1],[1,-2],[0,-2],[1,-1],[2,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-2,-2],[-1,-1],[-2,0],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-2],[1,-1],[1,0],[1,0],[0,-1],[1,0],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[1,-1],[-1,-2],[-1,-2],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[2,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,-1],[2,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[-1,0],[-1,-1],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[1,-1],[0,-2],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[2,-2],[0,-1],[0,-1],[2,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[-1,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[2,0],[2,0],[1,0],[2,-1],[0,-1],[0,-2],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-2],[1,-1],[1,-2],[0,-2],[-2,-4],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-2],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-4,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[2,-4],[1,-1],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-2],[1,-1],[2,-2],[1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1],[1,-1],[2,-2],[0,-1],[1,-1],[1,-1],[0,-1],[0,-2],[0,-2],[1,-4],[0,-1],[0,-3],[-1,-1],[0,-1],[1,0],[0,-1],[2,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1]],[[1986,2954],[0,-1],[0,1]],[[1986,2954],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-4,1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[1,-1],[2,-1],[1,-2],[2,-1],[0,-2],[1,-2],[1,-1],[1,-2],[4,-2],[3,-1],[1,-3],[2,-2],[2,-3],[1,-3],[1,-1],[1,0],[1,0],[1,0],[1,-2],[0,-6],[0,-2],[1,-1],[2,-2],[1,-2],[-2,-1],[2,-3],[0,-4],[-1,0],[0,-1],[3,0],[5,0],[3,1],[2,-2],[0,-3],[0,-1],[1,-1],[1,-1],[-1,-5],[0,-2],[1,-3],[3,-2],[2,1],[3,-2],[3,0],[1,0],[1,-2],[1,-1],[2,-1],[3,-2],[2,-2],[1,0],[3,-1],[2,0],[3,1],[2,1],[2,1],[3,1],[5,-1],[3,-1],[2,-1],[1,-3],[2,-3],[2,-2],[3,-3],[3,-4],[4,-2],[12,4],[1,-1],[2,1],[2,2],[2,2],[1,0],[1,-1],[3,0],[3,0],[3,-3],[2,-9],[2,-6],[2,-2],[-1,-2],[-2,-1],[-1,-1],[-3,-1],[-2,-1],[0,-3],[1,-2],[0,-2],[-1,-3],[0,-2],[2,-2],[3,-1],[3,-2],[1,-3],[1,-3],[1,-1],[3,-4],[2,-3],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-2],[-3,-1],[-2,-3],[-1,-1],[-2,-2],[-2,-2],[-1,-4],[0,-2],[-3,-3],[-4,-2],[0,-1],[1,-1],[2,-2],[1,-3],[-1,-4],[-1,-1],[2,0],[1,-1],[-1,-3],[-1,-4],[-1,-5],[2,-5],[1,-3],[0,-1],[0,-1],[-2,-2],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[0,-2],[1,-2],[1,-1],[0,-2],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-2],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[3,-2],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,-1],[1,-1],[2,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,-1],[1,-2],[1,-1],[0,-1],[1,-2],[2,-2],[1,-1],[2,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[2,0],[1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-3],[-1,-1],[0,-2],[0,-2],[-1,-1],[0,-2],[-1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[0,-1],[1,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[1,-1],[0,-2],[1,-2],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-2],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[-2,-3],[-2,-3],[-1,-3],[-1,-3],[1,-1],[2,-1],[0,-2],[0,-4],[-4,-3],[-1,-4],[-1,-6],[2,-6],[2,-4],[2,-2],[1,-1],[0,-3],[1,-1],[2,0],[2,-1],[1,-3],[0,-3],[0,-2],[-2,-1],[-2,0],[-2,-2],[0,-2],[1,-3],[0,-1],[-2,-2],[-2,-2],[0,-2],[1,-2],[1,-3],[-1,-3],[0,-2],[2,-3],[1,-4],[-2,-2],[-1,-2],[1,-4],[0,-3],[-2,-1],[-4,-1],[0,-2],[-4,-2],[-3,-3],[0,-5],[-2,-4],[1,-4],[1,-5],[-2,-3],[2,-2],[0,-3],[3,-3],[1,-2],[1,-1],[0,-5],[0,-6],[-1,-3],[-2,-1],[1,-8],[-3,-2],[0,-3],[-1,-2],[-1,-3],[-2,-2],[-2,-2],[0,-2],[-1,-4],[2,-2],[1,-2],[0,-1],[-2,-2],[-2,-3],[-3,-2],[0,-2],[0,-1],[1,-2],[0,-1],[1,-2],[2,-2],[0,-2],[-1,-2],[-2,-3],[-2,-3],[-2,-2],[-2,-1],[3,-1],[1,0],[2,-1],[1,-2],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[5,-2],[1,0],[2,-1],[1,-1],[3,-2],[1,0],[1,-1],[1,-1],[1,0],[9,-1],[7,-1],[5,-1],[9,-2],[12,-2],[1,0],[3,-1],[3,0],[5,-1],[5,-1],[1,0],[6,-1],[2,0],[7,-1],[16,-3],[1,0],[3,-1],[4,-1],[1,0],[1,0],[13,-2],[11,-2],[8,-1],[1,0],[23,-4],[1,-1],[4,0],[10,-2],[7,-1]],[[2384,2246],[-17,0],[-12,0],[-2,0],[-7,0],[-7,0],[-7,0],[-27,0],[-1,0],[-9,0],[-16,0],[-8,0],[-1,0],[-19,0],[-14,-1],[-2,0],[-3,0],[-2,0],[-3,0],[-16,0],[-6,0],[-7,0],[-11,0],[-17,0],[-7,0],[-1,0],[-14,0],[-9,0],[-14,0],[-4,0],[-1,0],[-16,0],[-7,0],[-12,0],[-12,0],[-12,0],[-5,0],[-8,0],[-12,0],[-4,0],[-6,0],[-26,0],[-6,0],[-15,0],[-6,0],[-3,0],[-9,0],[-3,0],[-16,-1],[-12,0],[-3,0],[-7,0],[-1,0],[-7,0],[-1,0],[-8,0],[-14,0],[-6,0],[-1,0],[-3,0],[-16,0],[0,-3],[0,-2],[0,-4],[0,-8],[0,-13],[0,-12],[0,-2],[0,-2],[0,-8],[0,-1],[0,-11],[0,-2],[0,-4],[0,-8],[0,-9],[0,-3],[0,-2],[0,-3],[0,-3],[0,-9],[0,-7],[0,-37],[-19,0],[-2,0],[-38,-1],[-20,0],[-11,0],[-26,0],[-5,0],[-7,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-8,0],[-34,0],[-10,0],[-13,0],[-4,0],[-6,0],[-2,0],[-3,0],[-7,0],[-16,0],[-10,0],[-14,0],[-9,0],[-2,0],[-23,0],[-28,0],[-9,0],[-17,0],[-2,0],[-27,0],[-2,0],[-1,0],[-11,0],[-3,0],[-32,0],[-9,0],[-4,0],[-1,0],[-48,0],[-7,0],[-8,0],[0,-2],[0,-13],[0,-10],[0,-5],[0,-8],[0,-5],[0,-12],[0,-12],[0,-9],[0,-17],[0,-4],[0,-5],[0,-9],[0,-43],[0,-2],[0,-26],[-1,-10],[1,-7],[0,-8],[0,-7],[0,-2],[0,-11],[0,-9],[0,-1],[0,-13],[0,-3],[0,-7],[0,-5],[0,-5],[0,-19],[0,-7],[0,-10],[0,-4],[0,-2],[0,-1],[0,-11],[0,-36],[0,-3],[0,-3],[0,-1],[0,-2],[0,-15],[0,-4],[0,-4],[0,-15],[0,-2],[0,-10],[0,-4],[0,-3],[-1,-17],[0,-28],[0,-5],[0,-4],[0,-4],[0,-6],[0,-2],[0,-3],[0,-4],[0,-9],[0,-1],[0,-4],[0,-4],[0,-23],[0,-4],[0,-1],[0,-1],[0,-1],[1,0],[-1,-9],[0,-1],[0,-2],[0,-13],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-33],[0,-6],[0,-25],[0,-18],[0,-2],[1,-14],[0,-5],[-1,-10],[0,-14],[0,-1],[0,-65],[21,0],[0,-62],[0,-1],[0,-35],[0,-14],[1,-29],[-1,-25],[0,-1],[0,-1],[0,-10],[0,-1],[0,-3],[0,-3],[0,-3],[0,-1],[0,-17],[0,-72],[0,-15],[0,-8],[0,-10],[0,-37],[0,-13],[0,-17],[0,-3]],[[1377,938],[-13,0],[-15,0],[-10,0],[-4,0],[-1,0],[-12,0],[-3,0],[-6,0],[-8,0],[-3,0],[-3,0],[-2,0],[-3,0],[-8,0],[-2,0],[-2,0],[-1,0],[-8,0],[-5,0],[-13,0],[-9,0],[-7,0],[-11,0],[-3,0],[-17,0],[-10,0],[-7,0],[-24,0],[-6,0],[-19,0],[-27,0],[-29,0],[-18,0],[-19,0],[-4,0],[-4,0],[-4,0],[-14,0],[-1,0],[-13,0],[-3,0],[-2,0],[-3,0],[-2,0],[-5,0],[-2,0],[-6,0],[-7,0],[-4,0],[-3,0],[-3,0],[-3,0],[-8,0],[-1,0],[-8,0],[-10,0],[-1,0],[-2,0],[-2,0],[-4,0],[-4,0],[-6,0],[-11,0],[-4,0],[-8,0],[-2,0],[-5,0],[-5,0],[-1,0],[-3,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-5,0],[0,2],[0,2],[0,5],[0,2],[0,7],[0,2],[0,7],[0,16],[0,12],[0,1],[0,8],[0,1],[-1,4],[0,2],[0,2],[0,1],[0,3],[0,6],[0,1],[0,1],[0,1],[0,5],[0,1],[0,8],[0,2],[1,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,5],[0,5],[0,16],[0,5],[0,18],[0,1],[0,10],[-1,18],[0,8],[0,7],[0,8],[0,8],[0,20],[0,1],[0,11],[0,2],[1,21],[0,1],[0,11],[0,1],[0,13],[0,7],[0,9],[0,1],[0,13],[0,1],[0,3],[0,46],[-22,0],[0,4],[0,19],[0,24],[0,6],[0,13],[0,1],[0,4],[0,10],[0,4],[0,5],[0,1],[0,2],[0,2],[0,2],[0,8],[0,1],[0,19],[0,4],[0,8],[0,1],[0,2],[1,2],[0,2],[1,2],[0,1],[0,2],[0,2],[-1,2],[0,1],[0,1],[0,8],[0,4],[0,7],[0,6],[0,25],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,2],[0,4],[0,12],[0,6],[0,2],[0,2],[0,5],[0,2],[0,1],[0,1],[0,6],[0,1],[0,2],[0,6],[0,2],[0,7],[0,2],[0,1],[0,5],[0,6],[0,1],[0,2],[0,2],[0,2],[0,2],[0,4],[0,3],[0,7],[0,6],[0,3],[0,4],[0,3],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,7],[0,4],[0,5],[0,4],[0,13],[0,1],[0,14],[0,17],[1,6],[0,2],[0,2],[0,1],[-1,5],[0,4],[0,3],[0,2],[0,2],[0,4],[0,13],[0,39],[0,6],[0,9],[0,8],[0,3],[0,7],[0,2],[0,4],[0,16],[0,2],[0,34],[0,7],[0,1],[0,7],[0,8],[0,1],[0,19],[0,2],[1,9],[-1,17],[0,10],[0,19],[0,6],[0,25],[0,15],[0,5],[0,3],[0,2],[0,2],[0,2],[0,4],[0,2],[0,2],[0,1],[0,1],[0,13],[0,11],[-19,0],[-7,0],[-3,0],[-4,0],[-6,-1],[-1,0],[-2,1],[-13,0],[-2,0],[-40,0],[-8,0],[-18,0],[-23,0],[-12,0],[-11,0],[-13,0],[0,2],[0,6],[1,31],[0,8],[0,2],[0,20],[0,6],[0,7],[0,1],[0,15],[0,4],[0,1],[0,5],[0,8],[0,10],[0,7],[1,15],[0,5],[-10,0],[-8,0],[-4,0],[-14,0],[-21,0],[-1,0],[-4,0],[-4,0],[-6,0],[-9,0],[-15,0],[-51,0],[-5,0],[-2,0],[-19,0],[-3,0],[-12,0],[-5,0]],[[8334,8619],[-1,0],[-2,0],[-1,0],[-4,0],[-4,0],[-2,0],[-4,0],[-1,0],[-5,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-5,0],[-7,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-7,0],[-3,1],[-2,0],[-5,0],[-1,0],[-1,0],[-2,0],[-5,0],[-1,0],[-1,0],[-4,0],[-15,0],[-2,0],[-8,0],[-3,0],[-1,0],[-3,0],[-1,0],[-2,0],[-4,0],[-1,0],[-6,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-12,0],[-2,0],[-6,0],[-2,0],[-2,0],[-2,0],[-10,1],[-1,0],[-1,0],[-2,0],[-1,0],[-5,0],[-5,0],[-1,0],[-3,0],[-1,0],[-2,0],[-8,0],[-5,0],[-14,-1],[-22,1],[-8,0],[-6,0],[-18,0],[-5,0],[-3,0],[-9,0],[-3,0],[-11,0],[-3,0],[-30,-1],[-24,0],[-3,0],[-1,0],[-3,0],[-11,0],[-3,0],[-2,0],[-4,0],[-1,0],[-1,0],[-4,0],[-1,0],[-2,0],[-1,0],[-9,0],[-3,0],[-2,0],[-4,0],[-4,0],[-3,0],[-1,0],[-1,0],[-2,0],[-6,0],[-11,0],[-7,0],[-3,0],[-3,0],[-2,0],[-5,0],[-2,0],[-2,0],[-6,0],[-2,0],[-4,0],[-10,0],[-1,0],[-3,0],[-3,0],[-8,0],[-3,0],[-2,0],[-5,0],[-20,1],[-5,0],[-1,0],[-2,0],[-4,0],[-1,0],[-5,0],[-2,0],[-13,0],[-5,0],[-1,0],[-3,0],[-11,0],[-1,0],[-3,0],[-7,0],[-22,0],[-7,0],[-11,0],[-32,0],[-11,0],[-2,0],[-4,0]],[[7629,8620],[-1,0]],[[7628,8620],[-70,0],[-10,0],[-1,0],[-25,0],[-4,0],[-19,0],[-15,0],[-9,0],[-6,0],[-7,0],[-3,0],[-9,0],[-3,0],[-4,0],[-8,0],[-3,0],[-3,0],[-1,0],[-5,0],[-9,0],[-7,0],[-5,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-9,0],[-1,0],[-13,0],[-4,0],[-9,0],[-1,0],[-7,0],[-7,0],[-19,-1],[-6,0],[-3,0],[-2,0],[-13,1],[-4,0],[-2,0],[-7,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-5,0],[-4,0],[-1,0],[-1,0],[-2,0],[-14,0],[-1,0],[-1,0],[-6,0],[-1,0],[-1,0],[-3,0],[-8,0],[-3,0],[-1,0],[-2,0],[-4,0],[-2,0],[-1,0],[-1,0],[-5,0],[-2,0],[-6,0],[-19,0],[-6,0],[-2,0],[-4,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-4,0],[-2,0],[-1,0],[-2,0],[-10,0],[-6,0],[-15,0],[-11,-1],[-7,0],[-13,0],[-1,0],[-4,0],[-1,0],[-3,0],[-9,0],[-3,0],[-6,0],[-17,0],[-6,0],[-2,0],[-7,0],[-2,0],[-1,0],[-1,0],[-5,0],[-1,0],[-3,0],[-8,0],[-2,0],[-9,0],[-28,0],[-9,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-3,1],[-1,0],[-5,0],[-3,0],[-8,0],[-6,0],[0,9],[0,3],[0,5],[0,2],[1,1],[0,1],[0,3],[0,4],[0,5],[0,3],[0,1],[0,2],[0,9],[0,3],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,4],[0,1],[0,1],[0,5],[0,1],[-2,0],[-5,0],[-1,0],[-2,0],[-4,0],[-2,0],[-1,0],[-3,0],[-10,0],[-1,0],[-4,0],[-1,0],[-1,0],[-2,0],[-1,0],[-20,0],[-16,0],[-16,0],[-30,0],[-20,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-76,-1],[-28,0],[-6,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-5,-1],[-2,0],[-1,0],[-1,0],[-6,0],[-13,0],[-7,0],[-2,0],[-1,0],[-4,0],[-1,0],[-14,-1],[-1,0],[-1,0],[-17,1],[-92,0],[-10,0],[-4,0],[-2,0],[-28,1],[-5,1],[-4,0],[-10,0],[-5,0],[-14,0],[-8,0],[-15,0],[-17,0],[-3,0],[-6,0],[-8,0],[-3,0],[-1,0],[-6,0],[-1,0],[-1,0],[-1,0],[-13,0],[-6,0],[-3,0],[-11,0],[-3,0],[-2,0],[-6,0],[-1,0],[-1,0],[-2,0],[-6,1],[-6,0],[-9,0],[-11,0],[-19,0],[-9,0],[-4,0],[-3,0],[-11,0],[-3,0],[-4,0],[-12,0],[-3,0],[-18,0],[-7,0],[-1,0],[-15,0],[-5,0],[-10,0]],[[6331,9990],[18,0],[1,0],[8,0],[18,0],[28,0],[6,0],[10,0],[2,0],[2,0],[4,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[2,0],[7,0],[18,0],[6,0],[3,0],[2,0],[1,0],[4,0],[3,0],[1,0],[4,0],[3,0],[3,0],[1,0],[1,0],[1,0],[1,0],[12,0],[15,0],[11,-1],[8,0],[1,0],[10,0],[1,0],[6,-1],[9,0],[9,0],[6,0],[1,0],[4,0],[12,-1],[4,0],[7,0],[22,-1],[8,0],[3,0],[11,0],[14,0],[15,0],[8,1],[116,0],[6,0],[40,0],[3,0],[2,0],[2,0],[3,0],[2,0],[6,0],[21,0],[6,0],[6,0],[19,0],[3,0],[3,0],[5,0],[16,0],[6,0],[8,0],[5,0],[8,0],[25,0],[5,0],[13,0],[5,0],[17,0],[5,0],[7,0],[20,0],[6,0],[3,0],[9,0],[3,0],[8,0],[1,0],[1,0],[20,0],[7,0],[2,0],[1,0],[40,0],[3,0],[7,0],[1,0],[6,0],[12,0],[9,0],[6,0],[10,0],[2,0],[22,0],[11,0],[3,0],[12,0],[4,0],[13,0],[1,0],[4,0],[2,0],[7,0],[1,0],[1,1],[1,1],[3,-1],[9,0],[4,0],[3,0],[11,0],[3,0],[2,0],[1,0],[4,0],[2,0],[1,0],[1,0],[8,0],[2,0],[1,0],[2,0],[5,0],[8,0],[7,0],[5,0],[8,0],[4,0],[7,0],[31,0],[12,0],[1,0],[2,0],[6,0],[8,0],[7,0],[6,-1],[5,1],[8,0],[7,0],[5,0],[2,0],[4,0],[2,0],[2,0],[1,0],[5,0],[1,0],[1,-1],[1,0],[2,0],[5,1],[2,0],[1,0],[2,0],[6,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[9,0],[3,0],[10,0],[17,-1],[2,0],[13,0],[10,0],[3,0],[2,0],[6,0],[27,0],[9,0],[36,0],[18,0],[2,0],[9,0],[2,0],[1,0],[1,0],[15,0],[31,0],[13,0],[15,1],[5,0],[1,0],[1,0],[1,0],[8,0],[12,0],[1,0],[8,0],[1,0],[3,0],[1,0],[7,0],[23,0],[7,1],[14,0],[25,0],[8,0],[8,0],[4,0],[5,0],[5,0],[11,0],[11,0],[1,0],[5,0],[5,0],[2,0],[14,0],[4,0],[2,0],[7,1],[10,0],[12,0],[2,0],[8,0],[1,0],[3,0],[1,0],[1,0],[3,0],[9,0],[3,0],[4,0],[13,0],[3,0],[1,0],[1,0],[1,0],[3,0],[2,0],[1,0],[4,0],[1,0],[1,0],[4,0],[1,0],[4,0],[12,0],[2,0],[4,0],[2,0],[5,0],[2,0],[7,1],[1,0],[22,0],[7,0],[1,0],[1,0],[1,0],[13,0],[36,0],[3,0],[13,0],[1,0],[6,0],[1,0],[1,0],[1,0],[3,0],[7,0],[2,0],[1,0],[3,0],[11,1],[3,0],[22,0],[7,0],[11,0]],[[3065,6857],[-4,9],[-12,27],[-3,7],[-2,4],[-2,4],[-6,3],[-2,5],[-6,15],[-2,5],[-1,1],[0,1],[-1,1],[-1,3],[-1,1],[0,1],[-1,2],[0,1],[-1,2],[-3,6],[0,1],[-1,2],[0,1],[-1,1],[-1,4],[-1,2],[-2,3],[-3,7],[0,1],[-2,5],[-3,6],[0,1],[-1,2],[-1,1],[-1,3],[0,1],[-3,7],[-2,3],[-1,3],[-1,0],[-4,0],[-3,0],[-11,0],[-12,0],[-11,0],[-3,0],[-8,0],[-1,0],[-10,0],[-21,0],[-12,0],[-4,0],[-6,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0]],[[2877,7009],[0,2],[0,1],[0,6],[0,3],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,9],[0,17],[0,4],[0,3],[0,1],[0,1],[0,6],[0,2],[0,1],[0,1],[0,1],[0,2],[0,7],[0,3],[0,13],[0,11],[0,9],[0,11],[0,9],[0,4],[0,5],[0,4],[0,9],[0,1],[0,30],[0,2],[0,8],[0,2],[0,3],[4,0],[2,0],[-1,3],[0,4],[0,7],[0,4],[0,2],[0,3],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,9],[0,3],[0,6],[0,16],[0,4],[0,1],[0,3],[0,7],[0,3],[-1,2],[0,1],[0,4],[0,10],[0,3],[0,5],[0,6],[0,14],[0,4],[0,5],[0,2],[0,1],[0,7],[0,2],[0,5],[0,2],[-1,15],[0,5],[0,1],[0,2],[0,7],[0,3],[0,2],[0,7],[0,2],[0,1],[0,4],[0,1],[0,4],[0,11],[0,4],[-1,8],[0,21],[0,5],[0,3],[0,3],[0,2],[0,5],[0,1],[0,1],[0,3],[0,6],[0,1],[0,4],[0,6],[0,3],[0,1],[0,5],[0,1],[0,5],[0,5],[0,10],[0,5],[0,5],[0,1],[0,5],[0,1],[0,6],[0,4],[0,3],[0,6],[0,2],[0,6],[0,4],[0,5],[0,5],[0,5],[0,5],[0,1],[0,1],[0,3],[0,5],[0,4],[0,3],[0,2],[0,1],[0,1],[0,1],[0,4],[0,2],[0,2],[0,1],[0,5],[0,1],[0,6],[0,5],[0,1],[0,1],[0,3],[0,1],[0,2],[0,2],[0,1],[0,5],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,4],[0,1],[0,1],[0,4],[0,1],[0,2],[0,3],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[1,2],[0,1],[0,5],[-1,2],[0,1],[1,1],[0,5],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,4],[0,1],[-1,1],[0,3],[0,1],[0,2],[0,2],[1,2],[0,4],[-1,1],[0,3],[0,4],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,8],[0,8],[0,6],[0,12],[0,9],[0,1],[0,1],[0,3],[0,11],[0,4],[0,3],[0,8],[0,3],[0,1],[0,1],[0,7],[0,2],[0,2],[0,6],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,17],[0,1],[0,1],[0,2],[0,5],[0,2],[0,2],[0,2],[0,9],[0,3],[0,1],[0,3],[0,9],[0,2],[0,1],[0,4],[0,12],[0,4],[0,1],[0,1],[0,3],[0,11],[0,2],[0,1],[0,2],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,6],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[0,2],[0,11],[0,3],[0,3],[0,3],[0,5],[0,2],[0,3],[0,4],[0,2],[0,4],[0,3],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,2],[0,4],[0,2],[0,2],[0,1],[0,3],[0,1],[0,9],[0,4],[0,1],[0,4],[0,1],[0,3],[0,3],[0,1],[0,3],[0,3],[1,1],[0,2],[0,5],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,5],[0,1],[0,1],[0,1],[0,2],[0,1],[0,4],[0,4],[0,3],[0,1],[0,3],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,4],[0,1],[0,1],[0,2],[0,1],[0,4],[0,7],[0,5],[0,4],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,7],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,3],[0,1],[-1,0],[-5,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-8,0],[-2,0],[-6,0],[-17,0],[-6,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,1],[-1,0],[-9,0],[-29,0],[-9,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-4,0],[-2,0],[-2,0],[-2,0],[-1,0],[-4,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,-1],[-9,1],[-3,0],[-2,0],[-4,0],[-2,0],[-3,0],[-2,0],[-5,0],[-4,0],[-3,0],[-2,0],[-7,0],[-2,0],[-3,0],[-4,0],[-19,-1],[-7,0],[-2,0],[-8,0],[-3,0],[-7,0],[-22,1],[-7,0],[-1,0],[-5,0],[-1,0],[-4,0],[-5,0],[-4,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-9,0],[-2,0],[-1,0],[-1,0],[-2,0],[-5,1],[-2,0],[-2,0],[-5,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-4,0],[-2,0],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-4,0],[-1,0],[-2,0],[-1,0],[-6,0],[-2,0],[-1,0],[-4,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-8,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-4,0],[-9,0],[-2,0],[-1,0]],[[2354,8235],[0,1],[0,5],[0,4],[0,3],[0,14],[0,3],[0,14],[0,1],[0,4],[0,1],[0,2],[0,1],[0,2],[0,7],[0,2],[0,1],[0,5],[0,1],[0,2],[0,4],[0,14],[0,6],[0,1],[0,1],[0,4],[0,1],[0,1],[0,3],[1,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,9],[0,3],[0,1],[0,4],[0,9],[0,2],[0,4],[0,1],[0,4],[0,1],[0,4],[0,3],[0,5],[0,13],[0,3],[0,3],[0,3],[1,22],[0,3],[0,7],[0,12],[1,9],[0,6],[0,2],[0,5],[0,1],[0,1],[0,3],[0,1],[0,7],[0,2],[0,1],[0,7],[0,1],[0,5],[0,1],[0,14],[0,9],[0,3],[0,2],[0,1],[0,4],[0,1],[0,3],[0,6],[0,2],[0,3],[0,1],[0,1],[0,1],[0,13],[0,6],[0,5],[0,6],[0,7],[0,8],[0,5],[0,1]],[[2357,8622],[1,0],[1,0],[6,0],[1,0],[3,0],[23,0],[2,0],[1,0],[6,-1],[5,0],[22,0],[8,0],[4,0],[6,0],[1,0],[2,0],[2,0],[41,-1],[2,0],[1,0],[17,0],[8,-1],[15,0],[1,0],[2,0],[1,0],[1,0],[19,0],[3,0],[3,0],[4,0],[5,0],[18,0],[4,0],[1,0],[3,0],[3,0],[4,0],[1,0],[7,0],[8,0],[4,0],[1,0],[10,0],[11,0],[1,0],[1,0],[14,-1],[12,0],[32,0],[18,0],[4,0],[3,0],[1,0],[1,0],[8,0],[10,0],[12,0],[1,0],[1,0],[8,0],[2,0],[12,0],[22,0],[1,0],[5,0],[4,0],[3,-1],[21,0],[10,0],[5,0],[5,0],[1,0],[5,0],[6,0],[10,0],[3,0],[15,0],[3,0],[1,0],[1,0],[1,0],[1,0],[29,0],[9,0],[1,0],[4,0],[5,-1],[8,0],[1,0],[5,0],[4,0],[17,0],[2,0],[6,0],[1,0],[6,0],[8,0],[13,0],[1,0],[3,0],[5,0],[1,0],[21,0],[14,0],[2,0],[1,0],[8,0],[5,0],[1,0],[7,0],[20,0],[3,0],[2,0],[1,0],[5,0],[30,0],[1,0],[1,0],[2,0],[6,0],[10,0],[17,0],[1,0],[10,0],[2,0],[6,0],[1,0],[1,0],[1,0],[4,0],[6,0],[2,0],[1,0],[10,0],[3,0],[8,0],[1,0],[9,0],[3,0],[12,0],[5,0],[11,0],[4,0],[14,0],[3,0],[1,0],[5,0],[1,0],[7,0],[1,0],[16,0],[2,0],[12,0],[8,0],[2,0],[4,0],[1,0],[2,0],[1,0],[2,0],[6,0],[5,0],[4,0],[6,0],[4,0],[15,0],[5,0],[1,0],[3,0],[10,0],[1,0],[34,0],[4,0],[1,0],[8,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[7,0],[1,0],[6,0],[6,0],[1,0],[14,0],[7,0],[18,0],[4,0],[19,0],[-1,-2],[0,-17],[0,-9],[0,-22],[0,-11],[0,-1],[0,-2],[0,-1],[-1,-3],[0,-1],[0,-5],[0,-19],[0,-1],[0,-9],[0,-17],[0,-1],[-1,-13],[0,-18],[0,-3],[0,-6],[0,-10],[0,-3],[1,-19],[0,-18],[0,-1],[0,-22],[0,-15],[0,-12],[0,-1],[0,-1],[0,-5],[0,-5],[0,-10],[0,-4],[0,-11],[0,-13],[0,-9],[0,-4],[0,-8],[1,-7],[0,-13],[0,-17],[0,-3],[0,-6],[0,-2],[0,-2],[0,-1],[7,-1],[5,0],[4,0],[5,0],[5,0],[10,0],[4,0],[3,0],[16,0],[2,0],[1,0],[3,0],[8,0],[1,0],[13,0],[1,0],[1,0],[6,0],[5,0],[10,0],[9,0],[8,0],[1,0],[1,0],[1,0],[12,0],[3,0],[1,0],[15,1],[3,0],[2,0],[5,0],[2,0],[2,0],[1,0],[1,0],[17,0],[29,0],[2,0],[20,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[4,0],[1,0],[5,0],[2,0],[6,0],[0,1],[2,-1],[4,0],[1,0],[5,0],[3,0],[1,0],[2,1],[3,0],[7,0],[1,0],[20,0],[8,0],[6,0],[18,0],[51,0],[8,0],[1,0],[17,0],[1,0],[3,0],[1,0],[1,0],[3,0],[2,0],[1,0],[4,0],[5,0],[16,1],[1,0],[2,0],[25,0],[22,0],[16,0],[2,0],[21,0],[8,1],[9,0],[7,0],[5,0],[5,0],[1,0],[19,0],[27,0],[3,0],[8,0],[2,0],[3,0],[8,0],[2,0],[2,0],[10,0],[13,0],[2,0],[9,0],[2,0],[24,0],[9,0],[3,0],[8,0],[5,0],[2,0],[16,0],[3,0],[17,0],[12,0],[4,0],[4,0],[4,1],[5,0],[4,-1],[7,0],[5,-1],[1,0],[10,0],[16,1],[15,0],[40,1],[5,0],[27,0],[17,0],[2,0],[1,0],[1,0],[33,0],[5,0],[10,0],[1,0],[1,0],[1,0],[1,0],[6,0],[1,0],[7,0],[16,0],[6,0],[0,-3],[0,-15],[0,-1],[0,-1],[0,-12],[0,-1],[0,-7],[0,-1],[1,-2],[0,-2],[0,-2],[0,-3],[-1,-4],[0,-2],[-1,-5],[0,-1]],[[4633,8175],[-5,0],[-22,-1],[0,4],[0,3],[0,5],[-16,1],[-10,0],[-12,0],[-9,0],[-1,0],[-2,0],[-10,1],[0,-11],[0,-5],[0,-1],[0,-1],[0,-4],[0,-1],[0,-2],[0,-2],[-4,0],[-4,0],[-2,1],[-5,0],[-4,-1],[-5,0],[-3,0],[2,-7],[0,-3],[-2,-1],[-5,0],[-5,0],[-8,0],[-7,0],[-9,0],[-7,0],[-8,0],[-6,1],[-4,0],[-7,0],[-12,0],[-10,0],[-9,0],[-18,0],[0,13],[-12,0],[-4,0],[-1,0],[-5,0],[0,-5],[0,-14],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-4],[0,-11],[0,-23],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-5],[0,-11],[0,-15],[0,-7],[0,-18],[0,-25],[0,-7],[0,-1],[0,-13],[0,-3],[0,-55],[0,-3],[0,-2],[-1,0],[-21,0],[-9,0],[2,-3],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,-2],[1,-1],[0,-2],[1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[5,-2],[1,0],[0,-1],[-2,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[3,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,-1],[2,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[2,0],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[2,-2],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[1,-1],[1,0],[0,12],[0,5],[9,-4],[1,0],[1,0],[0,-1],[8,-2],[11,-7],[10,-2],[12,0],[6,-2],[37,-15],[5,0],[1,-2],[21,-7],[0,-1],[17,-13],[6,-5],[2,-1],[3,-3],[10,-17],[2,0],[1,0],[4,-19],[2,-3],[1,-5],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0]],[[4628,7804],[0,1],[0,-1]],[[4628,7804],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1]],[[4632,7804],[0,-10],[0,-13],[0,-16],[0,-1],[0,-28],[0,-1],[0,-5],[0,-12],[0,-2],[0,-12],[0,-12],[0,-5],[0,-1],[1,-4],[0,-1],[-1,0],[0,-1],[0,-3],[0,-1],[0,-3],[0,-1],[0,-7],[0,-2],[0,-1],[0,-13],[0,-3],[0,-8],[0,-24],[0,-3],[0,-14],[0,-1],[0,-15],[0,-8],[0,-14],[0,-1],[0,-12],[0,-29],[0,-12],[0,-3],[0,-4],[0,-3],[0,-20],[0,-1],[0,-5],[0,-2],[0,-13],[0,-14],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-2],[0,-4],[0,-11],[0,-2],[0,-2],[0,-1],[0,-32],[0,-6],[0,-5],[0,-1],[0,-5],[0,-1],[0,-1],[0,-1],[0,-2],[0,-8],[1,-4],[-1,-24],[0,-2],[0,-57],[0,-1],[0,-1],[0,-2],[0,-1],[0,-15],[-1,-14],[0,-9],[0,-2],[0,-12],[0,-8],[0,-14],[0,-12],[0,-2],[0,-1],[0,-19],[0,-8],[0,-3],[0,-1],[0,-8],[0,-3],[0,-15],[0,-5],[0,-4],[0,-7],[0,-10],[0,-3],[0,-6],[0,-10],[0,-15],[0,-1],[0,-1],[0,-2],[0,-1],[0,-7],[0,-2],[0,-24],[5,0],[0,-1],[0,-5],[-1,-14],[0,-11],[0,-1],[1,-12],[0,-8],[0,-2],[0,-7],[0,-5],[0,-8],[0,-8],[0,-3],[0,-6],[0,-3],[0,-3],[0,-7],[1,-2],[0,-1],[0,-10],[-1,0],[1,-5],[0,-6],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-23]],[[4638,6850],[-17,0],[-5,0],[-2,0],[-6,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-1,1],[-1,0],[-5,0],[-14,0],[-1,0],[-6,0],[-1,0],[-4,1],[-1,0],[-3,0],[-7,0],[-3,0],[-4,0],[-4,0],[-18,1],[-8,0],[-14,0],[-10,0],[-20,1],[-11,0],[-10,0],[-1,0],[-4,0],[-2,0],[-5,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-16,0],[-12,0],[-26,0],[-1,0],[-1,0],[-14,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-4,0],[-2,0],[-3,0],[-1,0],[-1,0],[-19,0],[-41,1],[-32,0],[-9,0],[-2,0],[-3,0],[-3,0],[-10,0],[-9,0],[-2,0],[-1,0],[-3,0],[-29,0],[-1,0],[-2,0],[-7,0],[-2,0],[-3,0],[-32,0],[-3,0],[-4,0],[-2,0],[-2,0],[-3,0],[-25,0],[-3,-1],[-6,0],[-12,1],[-1,0],[-9,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-5,-4],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-3,-1],[-1,0],[0,-1],[-1,0],[-3,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-12,-5],[-1,0],[-3,-1],[-5,-1],[-4,-2],[-3,-2],[-2,-1],[-4,-8],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[3976,6826],[-1,0],[1,0]],[[3976,6826],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[-2,1],[-3,2],[-2,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[-8,3],[-4,1],[-3,1],[1,1],[-3,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-8,0],[0,1],[-2,0],[-7,0],[-2,0],[-3,0],[-1,0],[-1,-1],[-1,0],[-3,1],[-1,0],[-1,0],[-3,0],[-2,0],[-7,0],[-3,0],[-1,0],[-1,0],[-1,0],[-3,0],[-4,0],[-3,0],[-3,0],[-6,0],[-3,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-7,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-7,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-5,0],[-1,0],[-2,0],[-3,0],[-10,0],[-4,0],[-1,0],[-1,0],[-3,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-5,0],[-12,1],[-4,0],[-5,0],[-1,0],[-2,0],[-2,0],[-4,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-6,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-5,0],[-14,0],[-5,0],[-2,0],[-1,0],[-9,0],[-2,0],[-1,0],[-9,0],[-27,0],[-9,0],[-5,0],[-14,0],[-5,0],[-8,0],[-22,0],[-7,0],[-1,0],[-1,0],[-2,0],[-7,0],[-2,0],[-2,0],[-7,1],[-1,0],[-2,0],[-4,0],[-14,0],[-4,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-4,0],[-10,0],[-1,0],[-1,0],[-3,1],[-1,0],[-3,0],[-9,0],[-2,0],[-1,0],[-7,0],[-22,0],[-8,0],[-5,0],[-17,0],[-6,0],[-1,0],[-3,0],[-1,0],[-7,0],[-21,0],[-6,0],[-1,0],[-5,0],[-12,0],[-4,0],[-6,0],[-1,0],[-7,0],[-22,0],[-7,0],[-15,0],[-16,0],[0,-1],[-16,2],[-2,0],[-2,0],[-2,0],[-5,0],[-13,0],[-4,0],[-4,0],[-11,0],[-4,0],[-2,0],[-4,0],[-2,0],[-2,0],[-3,0],[-4,0],[-2,1],[-13,0],[-5,0],[-13,0],[-1,0],[-1,0],[-7,-1],[-2,0]],[[4632,7980],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-6],[0,-1],[0,-1],[0,-2],[0,-8],[0,-2]],[[4632,7951],[-4,3],[0,1],[2,2],[-2,1],[-8,3],[-2,3],[-3,0],[-4,0],[-3,2],[-1,2],[0,3],[-3,3],[-1,-1],[-8,1],[-2,1],[-3,1],[-3,2],[-2,1],[0,1],[3,0],[5,0],[15,0],[14,0],[4,0],[2,0],[1,0],[2,0],[1,0]],[[7,5728],[0,3],[0,37],[0,1],[0,1],[0,2],[0,1],[0,5],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,15],[0,1],[0,6],[0,13],[0,1],[0,30],[0,10],[0,19],[0,24],[0,3],[0,2],[0,7],[0,20],[0,6],[0,14],[0,2],[0,1],[0,2],[0,5],[0,2],[0,1],[0,2],[0,4],[0,18],[0,3],[0,21],[0,3],[0,4],[0,3],[0,2],[0,1],[0,1],[0,1],[0,4],[0,4],[0,12],[0,1],[0,8],[0,3],[0,5],[0,9],[1,8],[0,1],[0,3],[0,5],[0,4],[-1,2],[0,7],[0,7],[1,26],[-1,2],[0,2],[0,3],[0,16],[0,2],[0,20],[0,4],[0,7],[0,1],[0,16],[0,4],[0,16],[0,6],[0,1],[0,4],[0,3],[0,2],[0,21],[0,14],[0,1],[0,10],[0,3],[0,3],[0,14],[0,6],[0,9],[0,4],[0,8],[0,13],[0,6],[0,9],[0,5],[0,3],[0,11],[0,7]],[[7,6399],[1,0],[9,0],[27,0],[9,0],[1,0],[5,0],[1,0],[2,0],[6,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[6,0],[2,0],[2,0],[7,0],[2,0],[7,0],[10,0],[12,0],[7,0],[15,0],[8,0],[6,0],[7,0],[22,0],[9,0],[5,0],[5,0],[13,0],[4,0],[2,0],[5,0],[2,0],[2,0],[4,0],[1,0],[3,0],[10,0],[2,0],[1,0],[4,0],[10,0],[4,0],[3,0],[3,0],[7,0],[3,0],[3,0],[8,0],[3,0],[1,0],[1,0],[2,0],[1,0],[1,0],[3,0],[1,0],[1,0],[4,0],[1,0],[1,0],[9,0],[26,0],[9,0],[3,0],[7,0],[2,0],[4,0],[3,0],[9,0],[4,0],[1,0],[5,0],[1,0],[3,0],[6,0],[2,0],[5,0],[4,0],[20,0],[6,0],[5,0],[4,0],[1,0],[1,0],[1,0],[5,0],[2,0],[6,0],[11,0],[6,0],[6,0],[1,0],[1,0],[4,0],[2,0],[5,0],[14,0],[4,0],[1,0],[1,0],[5,0],[2,0],[7,0],[12,0],[10,0],[8,0],[4,0],[13,0],[2,0],[2,0],[3,0],[8,0],[3,0],[1,0],[9,0],[1,0],[7,0],[8,0],[1,0],[2,0],[10,0],[11,0],[8,0],[4,0],[9,0],[10,0],[1,0],[1,0],[8,0],[5,0],[18,0],[8,-1],[2,0],[6,0],[2,0],[3,0],[8,0],[3,0],[4,0],[13,0],[4,0],[4,0],[13,0],[4,0],[1,0],[2,0],[2,0],[5,0],[8,0],[5,0],[1,0],[2,0],[6,0],[1,0],[11,0],[12,0],[8,0],[1,0],[1,0],[1,0],[3,0],[1,0],[15,0],[6,0],[6,0],[1,0],[3,0],[8,0],[1,0],[1,0],[6,0],[1,0],[1,0],[6,0],[19,0],[2,0],[6,0],[0,2],[0,7],[0,22],[0,1],[0,3],[0,9],[0,1],[0,5],[0,2],[0,1],[0,1],[-1,5],[0,2],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,4],[0,2],[0,2],[0,3],[0,4],[0,2],[0,1],[0,1],[0,2],[0,3],[0,3],[0,2],[0,1],[0,1],[0,1],[0,4],[0,7],[0,6],[0,4],[0,1],[0,2],[0,1],[0,2],[0,5],[0,2],[0,3],[0,8],[0,1],[0,1],[0,3],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,8],[0,1],[0,2],[0,1],[0,1],[0,24],[0,1],[0,1],[0,16],[0,2],[0,1],[0,1],[0,4],[0,1],[0,1],[0,4],[0,15],[0,4],[0,1],[0,2],[0,14],[0,1],[0,1],[0,1],[1,4],[0,1],[0,2],[0,1],[0,4],[0,1],[0,2],[0,1],[0,1],[0,1],[0,5],[0,2],[0,1],[1,5],[0,1],[0,1],[0,2],[0,2],[0,4],[0,1],[0,1],[0,3],[0,1],[0,2],[0,6],[0,2],[0,2],[0,3],[0,1],[0,1],[0,1],[0,4],[0,1],[0,3],[0,8],[0,1],[1,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,5],[0,2],[0,1],[0,3],[0,2],[0,1],[0,2],[0,5],[-1,1],[1,4],[0,11],[0,4],[0,3],[0,2],[0,5],[0,2],[0,8],[0,4],[0,1],[0,5],[0,16],[-1,5],[0,1],[0,1],[0,1],[0,4],[1,1],[-1,3],[0,11],[0,3],[0,1],[0,1],[0,7],[0,2],[0,3],[1,17],[0,7],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,4],[0,1],[0,1],[0,4],[0,3],[0,1],[0,8],[0,4],[0,3],[0,5],[0,6],[0,4],[0,2],[0,1],[0,5],[0,1],[0,2],[0,1],[0,3],[0,1],[0,2],[0,3],[0,2],[0,1],[1,0],[5,0],[1,0],[5,0],[13,0],[4,0],[2,0],[6,0],[2,0],[1,0],[4,0],[1,0],[1,0],[4,0],[6,0],[12,0],[14,0],[6,0],[2,0],[8,0],[1,0],[1,0],[3,0],[1,0],[1,0],[3,0],[1,0],[6,0],[15,0],[2,0],[1,0],[5,0],[1,0],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[1,0],[2,0],[8,0],[4,0],[4,0],[13,0],[4,0],[3,0],[6,0],[28,0],[10,0],[2,0],[1,0],[1,0],[1,0],[2,0],[6,0],[2,0],[1,0],[5,0],[11,0],[2,0],[3,0],[6,0],[7,0],[11,0],[9,0],[7,0],[5,0],[5,0],[9,0],[5,0],[1,0],[4,0],[1,0],[1,0],[4,0],[13,0],[2,0],[3,0],[1,0],[1,0],[1,0],[5,0],[13,0],[5,0],[2,0],[2,0],[5,0],[2,0],[2,0],[5,0],[1,0],[1,0],[5,0],[15,0],[5,0],[7,0],[2,0],[29,0],[1,0],[2,0],[6,0],[2,0],[3,0],[1,0],[21,0],[1,0],[1,0],[1,0],[8,0],[2,0],[6,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[2,0],[2,0],[5,0],[1,0],[3,0],[7,-1],[1,0],[3,0],[2,0],[5,0],[1,0],[2,0],[1,0],[4,0],[2,1],[1,0],[1,0],[1,0],[5,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[3,0],[6,0],[2,0],[2,0],[2,0],[4,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[4,0],[1,0],[2,0],[4,0],[2,0],[2,0],[1,0],[1,0],[3,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[6,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[5,0],[1,0],[1,0],[2,0],[1,0],[1,0],[5,0],[2,0],[1,0],[2,0],[1,0],[3,0],[6,0],[12,0],[5,0],[18,0],[1,0],[2,0],[4,0],[10,-1],[4,0],[0,1],[1,0],[2,0],[5,0],[2,0],[7,0],[4,0],[2,0],[1,0],[15,0],[19,0],[5,0],[6,0],[46,0],[20,0],[3,0],[9,0],[3,0],[4,0],[12,0],[4,0],[1,0],[5,0],[1,0],[1,0],[3,0],[1,0],[3,0],[8,0],[3,0],[11,0],[12,0],[54,0],[22,0],[4,0],[16,0],[10,-1],[4,0],[11,0],[4,0],[3,0],[9,0],[3,0],[3,0],[1,0],[11,0],[3,0],[2,0],[4,0],[2,0],[1,0],[3,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[7,0],[1,0],[20,0],[8,0],[0,2],[0,5],[0,2],[0,1],[0,2],[0,6],[0,8],[0,1],[0,7],[0,6],[0,1],[0,2],[0,5],[0,1],[0,1],[0,24],[0,3],[1,0],[1,0],[13,0],[21,0],[3,0],[7,0],[3,0],[2,0],[2,0],[11,0],[4,0],[6,0],[17,0],[6,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[1,0],[11,0],[13,0],[3,0],[2,0],[5,0],[3,0],[1,0],[1,0],[3,0],[17,0],[0,-5],[0,-1],[0,-1],[0,-13],[0,-8],[0,-9],[0,-3],[0,-8],[0,-2],[0,-1],[0,-2],[0,-9],[-1,-3],[0,-1],[0,-2],[1,-4],[0,-2],[0,-1],[0,-2],[3,0],[1,0],[1,0],[1,0],[1,0],[4,0],[9,0],[3,0],[5,-1],[9,0],[1,0],[4,0],[12,0],[4,0],[2,0],[3,0],[8,0],[2,0],[1,0],[1,0],[1,0],[5,-1],[16,0],[5,0],[3,0],[8,0],[3,0],[1,0],[3,0],[1,0],[1,0],[3,0],[11,0],[3,0],[3,0],[7,0],[2,0],[1,0],[1,0],[4,0],[10,0],[4,0],[2,0],[6,0],[17,0],[6,0],[3,0],[6,1],[3,0],[3,0],[14,0],[39,0],[3,0],[14,0],[4,0],[6,1],[4,0],[2,0],[1,0],[9,0],[5,0],[1,0],[23,0],[9,0],[1,0],[9,0],[10,0],[9,0],[9,0],[10,0],[5,1],[13,0],[5,-1],[1,0],[1,0],[4,0],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[10,0],[3,0],[37,0],[12,1],[5,0],[14,0],[2,0],[3,0],[3,0]],[[3065,6857],[1,-3],[8,-19],[1,-3],[1,0],[0,-1],[0,-1],[1,-2],[2,-3],[1,-2],[5,-11],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[2,-4],[0,-1],[1,-2],[0,-1],[3,-5],[0,-1],[2,-3],[4,-9],[1,-3],[1,-1],[4,-8],[0,-1],[1,-2],[3,-6],[1,-3],[12,-26],[3,-7],[1,-2],[2,-4],[1,-1],[1,-3],[6,-12],[2,-5],[1,-2],[2,-3],[1,-2],[0,-2],[1,-2],[3,-5],[0,-2],[1,0],[0,-2],[3,-4],[0,-2],[1,-2],[2,-4],[1,-2],[2,-4],[4,-8],[1,-3],[1,-3],[1,0],[1,-4],[1,-1],[4,-8],[2,-5],[2,-4],[0,-1],[1,-2],[2,-5],[1,-2],[1,0],[0,-1],[2,-5],[1,-1],[0,-1],[1,-2],[1,-3],[1,-1],[0,-1],[2,-3],[0,-1],[1,-1],[1,-3],[1,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[1,-2],[2,-5],[1,-1],[0,-1],[1,-2],[2,-4],[1,-2],[1,-3],[4,-9],[1,-3],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,-4],[1,-1],[1,-2],[2,-5],[1,-2],[0,-1],[1,0],[0,-2],[3,-5],[0,-1],[1,-1],[1,-4],[1,-1],[1,-2],[2,-5],[1,-2],[3,-6],[8,-17],[3,-6],[2,-5],[6,-13],[2,-4],[0,-1],[3,-4],[1,-3],[5,-12],[2,-5],[1,-1],[1,-2],[0,-1],[1,-1],[1,-1],[0,-1],[3,-6],[6,-15],[2,-4],[3,-6]],[[3279,6395],[-1,0],[-1,0],[-2,0],[-10,0],[-1,0],[-2,0],[-2,0],[-6,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-9,0],[-3,0],[-1,0],[-4,0],[-13,0],[-5,0],[-1,0],[-1,0],[-7,0],[-23,0],[-2,0],[-5,0],[-4,0],[-11,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-7,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-4,0],[-3,0],[-4,0],[-3,0],[-4,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-3,1],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-9,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-9,0],[-3,0],[-8,0],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-14],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-6],[0,-16],[0,-6],[0,-1],[0,-1],[0,-3],[0,-1],[0,-3],[0,-7],[0,-28],[0,-10],[0,-2],[0,-5],[0,-2],[0,-2],[0,-3],[0,-8],[0,-3],[0,-3],[0,-8],[0,-3],[0,-10],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-8],[0,-8],[0,-4],[0,-12],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-10],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-6],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-4],[0,-12],[0,-4],[0,-4],[-1,-10],[0,-4],[0,-2],[0,-5],[0,-1],[0,-6],[0,-16],[0,-6],[0,-2],[0,-6],[-1,-2],[0,-7],[1,-5],[0,-6],[0,-23],[0,-7],[0,-12],[0,-2],[0,-1],[0,-2],[0,-4],[-1,-10],[0,-9],[0,-2],[0,-4],[0,-4],[0,-13],[-1,-4],[0,-5],[0,-15],[0,-5],[0,-2],[0,-1],[0,-2],[0,-1],[0,-5],[1,-16],[0,-5],[0,-1],[0,-1],[0,-1],[0,-6],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-3],[-1,-11],[0,-5],[0,-1],[0,-3],[0,-1],[0,-7],[0,-21],[0,-2],[0,-6],[0,-4],[0,-4],[0,-9],[0,-5]],[[3051,5727],[-2,0],[-2,0],[-7,0],[-3,0],[-1,0],[-5,0],[-1,0],[-1,0],[-1,0],[-8,0],[-3,0],[-34,1],[-8,0],[-3,0],[-1,0],[-1,0],[-4,0],[-9,0],[-3,0],[-2,0],[-3,0],[-15,0],[-5,0],[-1,0],[-5,0],[-3,0],[-7,0],[-6,0],[-5,0],[-3,0],[-8,0],[-3,0],[-3,0],[-1,0],[-12,0],[-4,0],[-4,0],[-8,1],[-6,0],[-4,0],[-4,0],[-10,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-11,0],[-3,0],[-4,0],[-11,0],[-3,0],[-1,0],[-2,1],[-1,0],[-8,-1],[-4,0],[-6,0],[-15,0],[-8,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-6,0],[-19,0],[-2,0],[-4,0],[-2,0],[-8,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-4,0],[-1,0],[-2,0],[-5,0],[-2,0],[-4,0],[-1,0],[-15,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[-4,0],[-1,0],[-3,0],[-9,0],[-3,0],[-1,0],[-1,0],[-5,0],[-5,0],[-9,0],[-5,0],[-2,0],[-4,0],[-3,0],[-2,0],[-1,0],[-10,0],[-16,0],[-14,0],[-10,-1],[-1,0],[-5,1],[-18,1],[-6,0],[-1,1],[-3,-1],[-1,0],[-5,0],[-15,-2],[-4,0],[-1,0],[-5,0],[-15,0],[-5,0],[-4,0],[-8,0],[-3,0],[-3,1],[-3,0],[-7,0],[-3,0],[-6,0],[-9,0],[-9,0],[-6,0],[-8,0],[-9,0],[-9,0],[-5,0],[-6,0],[-2,0],[-4,0],[-11,0],[-4,0],[-2,0],[-7,-1],[-2,0],[-1,0],[-9,0],[-27,-1],[-7,0],[-3,0],[-5,1],[-17,0],[-6,0],[-1,1],[0,-1],[-3,0],[-1,0],[-2,0],[-6,-1],[-2,0],[-2,0],[-8,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-6,0],[-1,0],[-2,1],[-4,0],[-1,0],[-2,0],[-5,0],[-2,0]],[[2894,2246],[0,6],[0,3],[0,8],[0,10],[0,8],[0,4],[0,7],[0,1],[0,2],[0,1],[0,1],[0,4],[0,8],[0,5],[0,4],[0,10],[0,6],[0,23],[0,4],[0,6],[0,4],[0,6],[0,6],[0,4],[0,4],[0,3],[0,5],[0,16],[0,7],[0,4],[0,7],[0,5],[0,10],[0,15],[0,1],[0,1],[0,11],[0,5],[0,14],[0,1],[0,4],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,4],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,8],[0,22],[0,3],[0,1],[10,0],[1,0],[1,0],[2,0],[2,0],[4,0],[3,0],[4,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[3,0],[8,0],[3,0],[1,0],[11,0],[3,0],[2,0],[1,0],[2,0],[2,0],[3,0],[3,0],[1,0],[1,0],[1,0],[3,0],[1,0],[3,0],[4,0],[2,0],[3,0],[3,0],[1,0],[1,0],[5,0],[16,0],[1,0],[5,0],[1,0],[12,-1],[1,0],[3,0],[5,0],[5,0],[1,0],[6,0],[11,0],[6,0],[1,0],[7,0],[4,0],[2,0],[9,0],[6,0],[10,0],[9,0],[8,0],[10,0],[4,0],[3,-1],[7,0],[3,0],[3,0],[4,0],[2,0],[14,0],[3,0],[3,0],[8,0],[1,0],[6,0],[5,0],[12,0],[2,0],[2,0],[5,0],[6,0],[9,0],[11,0],[6,0],[11,0],[1,0],[27,1],[3,0],[2,0],[4,0],[4,0],[3,0],[5,0],[1,0],[2,0],[3,0],[3,0],[2,0],[4,0],[2,0],[4,0],[2,0],[8,0],[2,0],[4,0],[1,0],[1,0],[2,0],[1,0],[3,0],[2,0],[1,0],[2,0],[3,0],[2,0],[3,0],[1,0],[2,0],[1,0],[1,0],[3,0],[1,0],[14,0],[5,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[6,0],[6,0],[13,0],[1,0],[7,0],[6,0],[3,0],[6,0],[8,0],[3,0],[6,0],[7,0],[6,0],[2,0],[2,0],[7,0],[2,0],[7,0],[50,0],[0,7],[0,3],[0,10],[0,57],[20,9],[46,20],[5,3],[14,6],[5,2],[3,2],[9,4],[3,1],[13,6],[38,17],[13,6],[1,0],[3,2],[7,3],[3,1],[16,7],[2,1],[7,4],[2,1],[1,0],[12,5],[1,1],[1,0],[2,1],[2,1],[4,2],[3,1],[7,3],[2,1],[1,1],[1,0],[2,1],[1,1],[1,0],[1,1],[1,0],[1,0],[4,2],[1,1],[14,6],[7,3],[40,18],[1,0],[13,6],[38,17],[12,6],[1,0],[1,1],[3,1],[3,1],[9,5],[3,1],[1,0],[2,1],[3,1],[2,1],[21,10],[27,11],[0,1],[7,3],[1,0],[28,13],[52,23],[1,0],[1,1],[1,0],[4,2],[2,1],[1,0],[1,1],[7,3],[22,10],[7,3],[7,3],[7,3],[5,3],[26,11],[56,25],[9,4],[1,1],[29,13],[10,4],[4,2],[5,2],[8,4],[4,2],[6,2],[22,10],[12,5],[23,10],[18,8],[30,14],[6,2],[22,10]],[[4419,1180],[-24,1],[-4,0],[-19,0],[-6,0],[0,-1],[-1,0],[-2,0],[-5,0],[-6,0],[-7,0],[-4,0],[-3,0],[-3,0],[-2,0],[-9,0],[-14,0],[-1,0],[-2,0],[-7,0],[-21,0],[-1,0],[-14,0],[-1,0],[-13,0],[-3,0],[-27,0],[-8,0],[-13,0],[-11,-1],[-14,0],[-23,0],[-17,0],[-13,0],[-7,0],[-4,0],[-2,0],[-1,0],[-1,0],[-2,0],[-4,0],[-5,0],[-13,0],[-1,0],[-1,0],[-1,0],[-1,0],[-7,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-14,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-4],[-1,-1],[-1,-1],[-3,-2],[0,-1],[-1,0],[-1,-2],[-6,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[-3,-2],[-4,-4],[-1,0],[0,-1],[-3,-6],[-1,-1],[0,-1],[-1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[3,-2],[0,-1],[2,-2],[1,0],[1,-1],[1,-1],[1,-1],[4,0],[1,0],[1,-1],[0,1],[1,0],[4,3],[3,0],[3,-2],[1,-1],[1,-6],[0,-1],[-1,-2],[0,-1],[0,-1],[-2,-2],[-1,-1],[-1,-1],[-1,0],[0,-1],[-4,-2],[-1,-6],[-1,0],[1,-1],[0,-1],[0,-3],[2,-2],[2,-1],[2,1],[5,4],[1,0],[1,1],[1,-1],[4,0],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-3,-2],[-2,0],[-1,-1],[-2,0],[-4,-2],[0,-1],[2,-7],[0,-5],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-4,-4],[-2,-1],[1,-1],[1,-5],[2,1],[2,1],[2,1],[1,0],[1,0],[2,0],[1,-1],[1,0],[0,-1],[2,0],[0,-1],[2,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,-1],[-2,-1],[0,-1],[-2,-2],[-1,0],[-2,-1],[-3,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-7,-2],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-3,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-2,-3],[-1,-1],[0,-1],[-1,0],[0,-1],[-3,-4],[0,-5],[0,-1],[1,0],[2,-2],[2,-2],[1,0],[1,0],[3,-1],[1,0],[2,-1],[1,-1],[1,0],[2,-2],[2,-1],[1,0],[1,-2],[1,-1],[1,0],[2,-2],[1,-1],[1,-4],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[-3,-3],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-3],[0,-9],[4,-3],[2,-1],[1,0],[4,-3],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-5],[1,-2],[1,0],[2,-2],[3,-3],[1,-1],[1,-1],[9,-9],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[1,-1],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,-1],[3,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-3],[4,-5],[9,0],[4,0],[2,0],[1,0],[5,-3],[2,-1],[1,-1],[1,-1],[3,-3],[5,-6],[1,-1],[0,-1],[2,-2],[3,-3],[3,-3],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[0,1],[1,0],[1,1],[1,1],[4,3],[5,-1],[1,-3],[1,0],[2,-1],[1,0],[3,0],[1,-1],[4,-1],[3,-1],[4,-1],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-2],[2,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,0],[1,0],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-3,1],[-1,0],[-1,0],[-12,0],[-34,0],[-11,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-9,0],[-30,0],[-10,0],[-2,0],[-5,0],[-16,0],[-5,0],[-2,0],[-12,0],[-6,0],[-35,0],[-14,0],[-13,0],[-15,0],[-6,0],[-4,0],[-16,0],[-3,0],[-71,0],[-23,0],[-5,0],[-9,0],[-9,0],[-9,0],[-1,0],[-1,0],[-26,0],[-28,0],[-28,0],[-28,0],[-28,0],[-12,0],[-18,0],[-5,0],[-12,0],[-6,0],[-7,0],[-14,0],[-17,0],[-15,0],[-16,0],[-18,0],[-15,0],[-13,0],[-9,0],[-7,0],[-13,0],[-20,0],[-1,0],[-2,0],[-5,0],[-2,0],[-2,0],[-1,0],[-1,0],[-5,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-49,0],[-147,0],[-10,0],[-39,0],[-59,0],[-109,0],[-44,1],[-1,0],[-30,-1],[-1,0]],[[2899,796],[0,1],[0,1],[0,7],[0,11],[0,29],[0,5],[0,13],[0,4],[0,1],[0,7],[0,15],[0,4],[0,4],[0,8],[0,1],[0,27],[0,24],[0,31],[0,44],[0,3],[0,22],[0,59],[-1,59],[1,2],[0,4],[0,2],[-1,102],[-1,33],[0,4],[-2,0],[1,76],[0,75],[0,59],[0,32],[0,1],[0,2],[0,14],[0,5],[0,15],[0,2],[0,2],[0,1],[0,1],[0,11],[0,1],[0,14],[0,4],[0,19],[0,2],[0,11],[0,18],[0,6],[0,3],[0,1],[0,5],[0,17],[0,7],[0,1],[0,1],[0,15],[0,1],[0,4],[0,1],[0,4],[0,1],[0,14],[0,50],[0,21],[0,19],[0,5],[0,10],[0,4],[0,10],[0,24],[0,1],[0,5],[0,1],[0,18],[0,7],[0,1],[0,4],[0,2],[0,1],[0,5],[0,18],[1,3],[0,6],[0,6],[0,1],[-1,14],[0,4],[0,2],[0,3],[0,8],[0,3],[0,1],[1,4],[0,13],[0,4],[0,1],[-1,12],[0,8],[1,4],[0,3],[0,7],[0,10],[0,1],[-1,0],[0,7],[-1,21],[0,6],[0,17],[0,3],[0,4],[0,5],[0,1],[0,4],[0,2],[0,1],[0,6],[0,1],[0,7],[0,4],[0,7],[0,10],[0,5],[-1,13],[1,9],[0,3],[0,1],[0,1],[-1,15]],[[7742,7849],[3,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[0,1],[0,1],[-1,2],[-1,0],[-3,2],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[-1,5],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,2],[0,1],[-1,0],[0,1],[-1,0],[-1,2],[0,1],[-1,1],[-1,1],[0,3],[2,2],[1,0],[1,1],[3,0],[2,0],[1,1],[2,2],[1,2],[0,1],[0,1],[-1,1],[-2,2],[-1,0],[-2,1],[-3,2],[-2,2],[-2,2],[-1,0],[-1,0],[-1,0],[-3,1],[-2,3],[-1,0],[0,1],[-1,1],[0,1],[-1,2],[0,1],[1,1],[1,1],[1,1],[1,0],[1,0]],[[7729,7926],[0,1],[0,-1]],[[7729,7926],[1,1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[1,1],[1,0],[4,4],[1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,-1],[-3,0],[-1,0],[-2,1],[-2,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,2],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[2,1],[1,0],[1,0],[2,1],[3,0],[1,0],[1,0],[1,1],[1,0],[0,1],[2,1],[1,1],[0,1],[0,2],[-1,1],[-1,1],[-3,3],[-2,1],[-1,1],[-1,2],[-1,0],[-1,1],[-1,1],[-2,0],[-2,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[0,-2],[-1,-1],[0,-1],[-2,-1],[0,-1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[1,2],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,2],[1,0],[1,2],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-4,3],[-1,1],[-1,1],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[2,1],[2,0],[1,0],[0,1],[1,0],[1,1],[0,3],[1,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[-1,2],[0,1],[0,1],[0,1]],[[7721,8010],[-1,0],[1,0]],[[7721,8010],[0,1],[0,1],[0,2],[1,2],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,0],[2,0],[2,0],[1,0],[1,1],[1,2],[1,1],[0,1],[1,0],[-1,1],[0,1],[-1,0],[-2,1],[-1,1],[-2,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[0,3],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-2,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,1],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,2],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,2],[-1,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,1],[2,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[1,1],[1,2],[1,0],[0,1],[1,0],[1,0],[1,1],[1,-1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,1]],[[7789,8146],[-1,0]],[[7788,8146],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[2,0],[3,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,2],[-1,1],[0,1],[-2,2],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,0],[-1,2],[0,1],[-1,0],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-3,1],[-1,1],[-2,1],[0,1],[-1,0],[0,1],[0,1],[-1,2],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,2],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[1,1],[-1,1],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[-1,2],[-1,0],[-1,2],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,2],[-1,0],[0,1],[-1,0],[-1,1],[-2,1],[-1,0],[-2,2],[-1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,2],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[-1,1],[-2,0],[-2,1],[-3,0],[-1,0],[-3,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,2],[1,1],[2,1],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-2,2],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,2],[-1,2],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[-3,2],[-1,1],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,2],[0,1],[0,2],[1,1],[0,1],[1,2],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-2,1],[-1,0],[-3,0],[0,1],[-2,0],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[2,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[1,1],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,2],[-3,2],[-2,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-2,2],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[1,2],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-2,1],[-1,1],[-2,1],[-1,0],[0,1],[-2,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-2,2],[-1,0],[-1,1],[-1,0],[-2,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-3,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-1,0],[0,1],[-2,0],[-1,1],[-1,2],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-1,0],[-3,2],[-2,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1]],[[9382,7776],[0,-9],[0,-7],[1,-10],[-1,-10],[0,-9],[0,-2],[0,-4],[0,-1],[0,-4],[0,-1],[0,-11],[0,-4],[0,-1],[0,-1],[0,-3],[1,-3],[0,-18],[0,-6],[-1,-20],[0,-5],[0,-18],[0,-8],[-1,0],[-6,0],[0,-15],[0,-13],[0,-20],[0,-6],[0,-11],[0,-14],[0,-1],[0,-10],[0,-15],[0,-9],[0,-12],[0,-5],[0,-23],[0,-29],[-1,-49],[0,-1],[0,-20],[1,-10],[0,-6],[0,-5],[0,-4],[0,-45],[0,-25],[0,-18],[0,-27],[-1,-19],[0,-3],[0,-8],[0,-2],[0,-2],[0,-8],[0,-2],[0,-2],[0,-7],[0,-2],[0,-1],[-1,-1],[-16,-13],[-12,0],[-29,0],[-12,0],[-3,0],[-7,0],[-7,0],[-30,0],[-2,0],[-22,0],[-1,0],[-1,0],[-1,0],[-2,0],[-7,0],[-7,0],[-3,0],[-7,0],[-3,0],[-2,0],[-2,0],[-4,0],[-13,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-21,0],[-5,0],[-10,0],[-7,0],[-13,0],[-19,0],[-7,0],[-25,0],[-20,0],[-2,0],[-5,-1],[-2,0],[-2,0],[-2,0],[-12,0],[-4,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-8,0],[-22,0],[-1,0],[-7,0],[-2,0],[-8,0],[-2,0]],[[1377,938],[0,-21],[0,-2],[0,-8],[0,-4],[0,-15],[0,-6],[0,-9],[0,-6],[0,-1],[0,-2],[0,-3],[12,0],[0,-14],[0,-50],[1,-1],[2,0]],[[1392,796],[0,-59],[0,-6],[0,-3],[0,-9],[0,-11],[0,-7],[0,-4],[0,-6],[0,-1],[0,-2],[0,-1],[0,-4],[0,-2],[0,-2],[0,-24],[0,-15],[0,-11],[0,-70],[0,-32],[0,-9],[0,-22],[0,-22],[0,-20],[0,-21],[0,-20],[0,-10],[0,-23],[-1,-33],[0,-5],[0,-28],[0,-10],[0,-6],[0,-2],[0,-12],[0,-25],[1,-33],[0,-3],[0,-52],[0,-11],[0,-6],[-1,-76],[0,-2],[0,-31],[0,-3],[0,-26],[0,-10],[0,-4],[-31,0],[-38,0],[-194,0],[-1,0],[-12,0],[-22,0],[-17,0],[-21,0],[-56,0],[-38,0],[-5,0],[-6,0],[-41,0],[-49,0],[-13,0],[-131,0],[-14,0],[-16,0],[-36,0],[-75,0],[-8,0],[-1,0],[-12,0],[-6,0],[-1,0],[-5,0],[-6,-1],[-2,0],[-2,0],[-7,0],[-4,0],[-1,0],[-1,0],[-5,0],[-6,0],[-13,0],[-2,0],[-7,0],[-5,0],[-49,-1],[-45,0],[-10,0],[-48,0],[-4,0],[-12,0],[-24,0],[-15,0],[-4,0],[-103,0],[-79,0],[-6,0],[-46,0],[-12,0],[-24,0],[0,1],[0,7],[0,5],[0,5],[0,8],[0,4],[0,1],[0,1],[0,5],[0,36],[0,2],[0,35],[0,2],[0,1],[0,28],[0,11],[0,20],[0,12],[0,3],[0,18],[0,13],[0,8],[0,9],[0,10],[0,7],[0,8],[0,1],[0,10],[0,7],[0,11],[1,6],[0,1],[0,6],[0,7],[0,13],[0,1],[0,7],[0,6],[0,3],[0,14],[0,14],[0,8],[0,11],[0,3],[0,9],[0,29],[0,20],[0,10],[0,1],[0,1],[1,16],[0,1],[0,6],[0,9],[0,23],[0,3],[0,16],[0,2],[0,1],[0,2],[0,6],[0,4],[0,6],[0,18],[0,24],[0,1],[0,1],[0,5],[0,3],[0,10],[0,1],[0,6],[0,4],[0,6],[0,6],[0,8],[0,5],[0,4],[0,5],[0,2],[0,10],[0,9],[0,6],[0,16],[0,33],[0,21],[0,50],[-1,12],[1,1],[0,1],[0,8],[0,3],[0,11],[0,1],[0,1],[0,4],[0,7],[0,8],[0,2],[0,2],[0,1],[0,2],[0,1],[0,4],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,4],[0,2],[0,4],[0,3],[0,3],[0,3],[0,6],[0,1],[0,13],[0,5],[0,4],[0,1],[0,2],[0,7],[0,3],[0,3],[0,3],[0,6],[0,2],[0,8],[0,1],[0,6],[0,7],[0,2],[0,5],[0,4],[0,4],[0,1],[0,12],[1,28],[0,16],[0,8],[0,12],[0,31],[0,9],[0,1],[0,2],[0,10],[0,5],[0,7],[0,1],[0,29],[0,1],[0,7],[0,5],[0,1],[0,5],[0,11],[0,2],[-1,23],[0,3],[1,38],[0,1],[0,8],[0,28],[0,2],[0,17],[0,4],[0,1],[0,2],[0,6],[0,1],[0,5],[0,4],[0,3],[0,5],[0,8],[0,5],[0,5],[0,4],[0,6],[0,1],[0,4],[0,4],[0,6],[0,3],[0,3],[0,7],[0,5],[0,13],[0,5],[0,2],[0,1],[0,9],[0,8],[0,10],[0,5],[0,7],[0,7],[0,3],[0,7],[0,11],[0,6],[0,2],[0,1],[0,5],[0,7],[0,1],[1,5],[0,8],[0,13],[0,6],[0,4],[0,3],[0,4],[0,1],[0,8],[0,2],[0,1],[0,1],[0,2],[0,5],[0,4],[0,6],[0,11],[0,8],[0,3],[0,6],[0,16],[0,1],[0,29],[0,6],[0,12],[0,6],[0,4],[0,2],[0,3],[0,7],[0,5],[0,3],[0,1],[0,22],[0,24],[0,14],[0,1],[0,1],[0,5],[0,6],[0,4],[0,44],[0,22],[0,1],[0,4],[0,11],[0,1],[0,2],[0,4],[0,1],[0,1],[0,1],[0,8],[0,11],[0,1],[0,10],[0,4],[0,7],[0,9],[0,3],[0,12],[0,6],[0,11],[0,14],[0,12],[0,21],[0,9],[0,19],[0,15],[0,3],[0,22],[0,10],[0,23],[0,8],[0,18],[0,11],[0,18],[0,2],[0,9],[0,13],[0,1],[0,19],[0,17],[0,5],[0,1],[0,3],[0,6],[0,15],[0,5],[0,2],[0,8],[0,1],[0,21],[0,1],[0,16],[0,1],[0,1],[0,7],[0,6],[0,6],[0,39],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,4],[0,1],[0,4],[0,2],[0,2],[0,1],[0,2],[0,14],[0,20],[0,20],[0,41],[0,6],[1,6],[0,2],[0,14],[0,3],[0,1],[0,4],[0,1],[0,12]],[[3051,5727],[4,0],[24,0],[13,0],[9,0],[1,0],[9,0],[10,0],[21,0],[1,0],[31,0],[8,0],[7,0],[1,0],[3,0],[4,0],[30,0],[6,-1],[5,1],[3,0],[3,0],[1,0],[11,0],[16,0],[82,2],[2,0],[16,0],[1,0],[1,0],[1,0],[2,0],[1,0],[16,1],[16,0],[1,0],[2,0],[2,0],[4,0],[20,0],[21,0],[11,0],[29,0],[5,0],[18,0],[1,0],[13,1],[3,0],[3,-1],[5,0],[7,0],[1,0],[3,0],[1,0],[7,-1],[9,-1],[3,0],[4,0],[1,0],[11,-5],[3,-1],[6,-3],[6,-2],[10,-5],[20,-9],[8,-3],[5,-3],[1,0],[3,-1],[7,-4],[8,-3],[4,-2],[10,-4],[5,-2],[0,-1],[5,-2],[20,-9],[7,-3],[1,0],[0,-1],[1,0],[2,-1],[1,0],[3,-2],[1,0],[1,0],[4,-2],[1,-1],[3,-1],[1,-1],[2,-1],[1,0],[8,-4],[7,-3],[1,0],[2,-1],[1,-1],[1,0],[3,-1],[2,-1],[0,-1],[2,-1],[5,-1],[4,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,-1],[2,0],[2,-1],[1,0],[3,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[2,-1],[11,-3],[6,-2],[25,-7],[8,-3],[10,-3],[14,-4],[36,-11],[17,-5],[5,-2],[9,-2],[26,-8],[8,-2],[3,-1],[3,-1],[3,-1],[1,0],[3,-1],[5,-2],[1,0],[4,-1],[1,0],[9,-3],[2,-1],[33,-10],[1,0],[25,-7],[15,-5],[2,-1],[1,0],[4,-1],[50,-15],[7,-2],[2,-1],[4,-1],[1,0],[1,-1],[2,0],[1,0],[0,-1],[8,-2],[1,0],[8,-3],[2,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[3,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[2,-1],[1,0],[2,-2],[2,0],[1,-1],[21,-9],[10,-4],[1,-1],[1,0],[26,-12],[8,-3],[1,-1],[1,0],[2,0],[3,0],[3,0],[1,0],[1,0],[3,1],[2,0],[3,0],[4,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[10,1],[5,1],[20,2]],[[4353,5482],[0,-4],[0,-13],[0,-4],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-5],[0,-6],[0,-8],[0,-5],[1,-5],[0,-11],[-1,-5],[1,-3],[0,-3],[0,-4],[0,-3],[0,-9],[1,-14],[0,-5],[-1,-3],[0,-3],[0,-9],[0,-3],[0,-5],[0,-15],[0,-5],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-3],[0,-2],[0,-2],[0,-1],[0,-3],[0,-11],[0,-4],[0,-5],[0,-14],[0,-5],[0,-3],[0,-10],[0,-3],[0,-5],[0,-6],[0,-10],[0,-1],[0,-4],[0,-1],[0,-3],[0,-1],[0,-1],[0,-4],[0,-1],[0,-2],[0,-1],[0,-9],[0,-3],[0,-1],[0,-2],[0,-4],[2,0],[2,0],[3,0],[8,0],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[7,1],[3,0],[2,0],[5,0],[2,0],[1,0],[1,0],[9,0],[24,0],[8,0],[1,0],[8,0],[6,0],[5,0],[14,0],[5,0],[1,0],[2,0],[1,0],[1,0],[3,0],[1,0],[4,0],[11,0],[4,0],[2,0],[6,0],[2,0],[1,0],[1,0],[4,0],[7,0],[6,0],[5,0],[1,0],[3,0],[1,0],[5,0],[14,0],[4,0],[1,0],[6,0],[2,0],[16,0],[5,0],[5,0],[11,0],[2,0],[5,0],[1,0],[1,0],[2,0],[1,0],[1,0],[3,0],[1,0],[3,0],[1,0],[8,0],[22,0],[8,0],[8,0],[1,0],[24,0],[2,0],[8,0],[1,0],[2,0],[10,0],[2,0],[1,0],[2,0],[7,0],[2,0],[2,0],[4,0],[2,0],[3,0],[9,0],[3,0],[1,0],[3,0],[1,0],[1,0],[2,0],[1,0],[3,0],[7,0],[2,0],[4,0],[9,0],[3,0],[9,0],[9,0],[7,0],[12,0],[2,0],[7,0],[1,0],[2,0],[6,0],[1,0],[1,0],[15,0],[27,0],[1,0],[4,0],[1,0],[1,0],[2,0],[1,0],[3,0],[5,0],[3,0],[1,0],[1,0],[1,0],[4,0],[5,0],[2,0],[1,0],[2,0],[1,0],[3,0],[1,0],[7,0],[18,0],[4,0],[7,0],[2,0],[6,0],[2,0],[5,0],[2,0],[6,0],[6,0],[4,0],[3,0],[1,0],[6,0],[1,0],[3,0],[1,0],[3,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[4,0],[12,0],[4,0],[3,0],[28,0],[2,0],[8,0],[3,0],[2,0],[13,0],[1,0],[1,0],[4,0],[5,0],[1,0],[9,0],[3,0],[2,0],[1,0],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0]],[[5168,5165],[0,-1],[0,-16],[0,-7],[0,-2],[0,-1],[0,-34],[0,-1],[0,-1],[0,-3],[-1,-38],[0,-6],[0,-5],[0,-12],[0,-2],[0,-2],[0,-7],[0,-16],[-1,0],[0,-6],[0,-1],[0,-24],[0,-1],[1,-22],[0,-1],[0,-18],[0,-11],[0,-28],[0,-1],[0,-11],[0,-5],[0,-4],[-1,-20],[0,-1],[0,-6],[0,-8],[0,-13],[0,-18],[0,-1],[0,-20],[0,-10],[0,-11],[0,-2],[0,-21],[0,-5],[0,-1],[-1,-5],[0,-1],[0,-29],[1,-3],[0,-16],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-47],[0,-10],[0,-21],[0,-22],[0,-1],[0,-9],[0,-1],[0,-1],[0,-16],[1,0],[0,-4],[0,-13],[0,-25],[1,-1],[-1,-1],[0,-19],[0,-10],[0,-4],[0,-7],[0,-43],[0,-23],[-2,0],[-4,0],[-38,0],[-1,0],[-3,0],[-24,0],[-1,0],[-1,0],[-2,0],[-8,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-3,0],[-4,0],[-1,0],[-1,0],[-4,0],[-1,0],[-5,0],[-1,0],[-10,0],[-44,0],[-15,0],[-1,0],[-18,0],[-9,0],[0,-1],[0,-6],[0,-14],[0,-6],[0,-1],[0,-14],[0,-6],[0,-44],[0,-7],[0,-19],[0,-15],[0,-1],[1,-2],[0,-1],[0,-6],[0,-4],[0,-5],[0,-1],[0,-8],[0,-19],[-1,-9],[0,-9],[0,-19],[0,-2],[0,-2],[1,-8],[0,-1],[0,-13],[-1,-26],[0,-2],[0,-1],[0,-2],[0,-6],[0,-5],[0,-3],[0,-22],[-3,0],[-24,0],[-7,0],[-4,0],[-8,0],[-25,0],[-3,0],[-2,0],[-6,0],[-3,0],[-17,0],[-16,0],[-2,0],[-7,0],[-9,0],[-6,0],[-1,0],[-1,0],[-16,0],[-12,0],[-3,0],[0,4],[-1,0],[-12,1],[-1,0],[-12,1],[-16,2],[-1,0],[-8,0],[-1,0],[-12,1],[-1,0],[-1,0],[-16,2],[-8,0],[-43,3],[-17,2],[-1,0],[-1,-1],[-22,2],[-5,1],[-3,0],[-23,0],[-2,0],[-5,0],[-3,0],[-5,0],[-4,0],[-1,0],[-7,0],[-7,0],[-49,0],[-26,0],[-17,0],[-1,0],[-15,0],[-7,0],[-2,0],[0,-54],[1,-9],[0,-32],[0,-1],[0,-11],[0,-9],[0,-11],[0,-1],[0,-3],[0,-2],[0,-1],[0,-5],[0,-6],[0,-2],[0,-11],[0,-6],[0,-11],[0,-4],[0,-8],[0,-2],[0,-6],[0,-1],[0,-10],[0,-10],[0,-7],[0,-5],[0,-6],[0,-5],[0,-5],[0,-25],[0,-1],[0,-2],[0,-11],[1,-23],[0,-12]],[[4426,3789],[-2,0],[-2,0],[-9,0],[-1,0],[-1,0],[-4,0],[-2,0],[-3,0],[-2,0],[-1,0],[-4,0],[-13,0],[-9,0],[-36,0],[-5,0],[-6,0],[-1,0],[-35,0],[-1,0],[-5,0],[-17,0],[-8,0],[-1,-8],[-7,0],[-5,0],[-19,0],[-3,0],[-9,0],[-38,0],[-11,0],[-36,0],[-8,0],[-9,0],[-4,0],[-4,0],[-4,0],[-2,0],[-7,0],[-5,0],[-13,0],[-1,0],[-6,0],[-9,0],[-3,0],[-3,0],[-1,0],[-22,0],[-2,0],[-4,0],[-10,-1],[-4,0],[-1,0],[-33,1],[-10,0],[-16,0],[-37,0],[-13,0],[-8,0],[-7,0],[-2,0],[-1,0],[-2,0],[-2,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-43,0],[-5,0],[-3,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-4,0],[-47,0],[-15,0],[-128,0],[-13,0],[-13,0],[-10,0],[-53,1],[-5,0],[-17,0],[-13,0],[-95,2],[-1,0],[-10,0],[-2,0],[-13,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-5,0],[-6,0],[-1,0],[-23,0],[-2,0],[-17,1],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-6,0],[-3,0],[-3,0],[-4,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-4,0],[-3,0],[-1,0],[-1,0],[-3,0],[-32,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-6,1],[-2,0],[-2,0],[-1,0],[-5,-1],[-2,-1],[-2,0],[-1,0],[-1,0],[-3,0],[-6,0],[-26,0],[-4,0],[-4,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,1],[-12,0],[-3,0],[-1,0],[-22,0],[-10,0],[-4,0],[-5,0],[-2,0],[-1,0],[-15,0],[-5,0],[-1,0],[-1,0],[-3,0],[-5,0],[-7,0],[-3,0],[-1,0],[-1,0],[-3,0],[-4,0],[-4,0],[-4,0],[-1,0],[-3,0],[-8,0],[-5,0],[-8,0],[-1,0],[-8,-1],[-8,0],[-1,0],[-1,0],[-1,0],[-20,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-4,0],[-10,0],[-7,0],[-6,0],[-13,0],[-22,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-6,0],[-3,0],[-9,0],[-5,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-12,0],[-4,0],[-6,0],[-3,0],[-4,0],[-5,0],[-2,0],[-1,0],[-3,0],[-3,0],[-13,0],[-2,0],[-5,0],[-1,0],[-3,0],[-5,0],[-1,0],[-5,0],[-3,0],[-3,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-5,0],[-9,-1],[-3,0],[-1,0],[-7,0],[-4,0],[-7,0],[-1,0],[-25,-1],[-9,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-3,0],[-1,0],[-5,0],[-8,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-5,0],[-2,0],[-1,0],[-5,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-4,0],[-3,0],[-1,0],[-3,0],[-1,0],[-5,0],[-2,0],[-3,0],[-2,0],[-6,0],[-6,0],[-1,0],[0,-1],[-30,0],[-1,0],[-30,1],[-7,0],[-5,0],[-1,0],[-5,0],[-3,0],[-8,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-4,0],[-5,0],[-2,0],[-1,0],[-2,0],[-2,0],[-15,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-3,0],[-1,0],[-1,0],[-1,0],[-5,0],[-10,0],[-9,1],[-4,0],[-1,0],[-16,0],[-2,0],[-29,0],[-13,0],[-4,0],[-2,1],[-3,0],[-2,0],[-1,0],[-4,0],[-8,0],[-1,0],[-1,0],[-1,-1],[-12,0],[-2,0],[-4,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-29,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0]],[[4633,8175],[0,-1],[0,-2],[0,-2],[-1,-5],[0,-2],[5,0],[0,-4],[0,-1],[0,-15],[0,-5],[0,-1],[0,-14],[0,-3],[0,-3],[0,-1],[0,-3]],[[4637,8113],[0,-5],[0,-12],[0,-13],[0,-6],[0,-1],[0,-8],[0,-1],[0,-10],[0,-4],[0,-3],[0,-4],[0,-1],[-1,-3],[0,-5],[0,-1],[-1,-3],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-3],[-1,-10],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-15],[0,-1],[0,-7],[0,-2],[0,-1],[0,-1],[0,-1]],[[4632,7951],[1,-1],[0,2],[1,-1],[2,-2],[9,-6],[11,-2],[9,-2],[5,-7],[6,0],[5,0],[10,-1],[7,3],[1,-2],[1,0],[1,1],[6,1],[1,0],[4,1],[2,0],[9,0],[3,-2],[13,-1],[-1,-1],[2,-3],[12,1],[0,2],[7,0],[-3,-2],[0,-2],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1]],[[5505,8007],[0,4],[0,3],[0,2],[0,2],[0,1],[0,6],[0,6],[0,9],[1,15],[0,12],[0,4],[0,9],[1,3],[0,1],[0,4],[0,6],[0,4],[1,30],[0,10],[0,3],[0,7],[1,9],[0,19],[0,1],[1,10],[0,2],[0,6],[0,2]],[[5510,8197],[1,-1],[4,-1],[2,-1],[1,-1],[1,-2],[3,-3],[1,-1],[0,-1],[0,-3],[1,-2],[2,-2],[3,0],[3,0],[4,0],[4,-1],[3,0],[4,-1],[3,-2],[1,-1],[1,0],[2,1],[3,3],[2,2],[2,0],[3,-1],[3,0],[3,0],[2,-1],[4,-2],[4,-3],[2,0],[1,-2],[4,-2],[6,0],[2,0],[1,-1],[2,0],[2,-1],[1,-3],[1,-1],[3,-2],[3,0],[3,1],[4,1],[3,0],[4,2],[4,2],[3,1],[1,1],[-1,2],[0,4],[1,3],[0,2],[1,0],[2,2],[3,1],[2,3],[3,2],[2,1],[0,2],[2,1],[3,2],[2,3],[1,1],[2,0],[3,-1],[3,0],[1,0],[2,-1],[3,-2],[1,0],[1,0],[2,0],[2,0],[2,0],[1,-1],[1,0],[2,-1],[3,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[2,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,1],[1,0],[2,0],[2,0],[1,1],[2,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,-1],[0,-1],[2,-1],[2,-1],[1,-1],[2,0],[1,0],[3,0],[1,0],[2,0],[1,1],[1,0],[1,-1],[2,0],[2,0],[2,0],[1,-1],[3,0],[1,-1],[2,0],[2,0],[1,0],[2,1],[2,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[2,2],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[2,2],[1,0],[1,1],[1,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,1],[2,1],[1,0],[2,0],[1,1],[3,1],[1,1],[1,0],[2,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[2,0],[1,1],[2,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,1],[0,2],[0,1],[0,2],[0,1],[1,1],[1,1],[1,1],[1,1],[0,2],[1,1],[2,2],[1,3],[1,0],[1,0],[0,1],[-2,1],[-1,2],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,2],[0,2],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,1],[2,1]],[[8655,2881],[1,0]],[[8655,2881],[0,-3],[1,-32],[0,-3],[0,-7],[0,-1],[0,-3],[0,-1],[0,-1],[0,-14],[0,-25],[0,-8],[0,-6],[0,-21],[0,-1],[0,-1],[0,-5],[0,-4],[0,-1],[0,-4],[0,-7],[0,-3],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-4],[0,-9],[0,-5],[0,-1],[0,-19],[0,-13],[-1,-28],[0,-2],[0,-1],[0,-2],[0,-4],[0,-3],[0,-7],[0,-1],[0,-6],[0,-22],[0,-1],[0,-3],[0,-24],[0,-24],[0,-26],[0,-1],[0,-1],[0,-1],[0,-2],[0,-5],[0,-4],[0,-12],[0,-1],[0,-1],[0,-3],[0,-4],[1,-15],[0,-4],[0,-36],[0,-2],[0,-27],[0,-1],[1,-13],[0,-14],[0,-14],[0,-2],[0,-4],[0,-4],[0,-10],[0,-9],[0,-8],[0,-1],[0,-1],[0,-5],[0,-1],[0,-3],[0,-1],[0,-7],[0,-1],[0,-12],[0,-6],[0,-33],[-1,-22],[0,-10],[0,-4],[0,-1],[0,-1],[0,-4],[0,-3],[0,-1],[0,-1],[0,-1],[0,-12],[0,-4],[0,-1],[1,-3],[0,-2],[0,-7],[0,-4],[0,-13],[0,-6],[0,-1],[0,-12],[0,-6],[0,-11],[0,-7],[0,-5],[2,0],[12,0],[5,0],[9,0],[5,0],[15,-1],[8,1],[20,0],[4,0],[8,0],[17,0],[10,0],[2,0],[1,0],[3,0],[1,0],[12,0],[2,0],[2,0],[1,0],[11,0],[0,-3],[0,-1],[0,-1],[0,-35],[0,-24],[0,-1],[0,-24],[0,-3],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-11],[0,-2],[0,-1],[0,-1],[0,-10],[0,-3],[0,-1],[0,-2],[0,-1],[0,-35],[0,-4],[0,-34],[0,-7],[0,-3],[0,-1],[0,-2],[0,-41],[0,-1],[0,-38],[0,-44],[0,-6],[0,-34],[0,-3],[0,-52],[0,-8],[0,-31],[0,-4],[0,-7],[0,-6],[0,-1],[0,-5],[0,-1],[0,-2],[0,-1],[0,-4],[0,-1],[0,-3],[1,-2],[0,-23],[-1,-9],[0,-4],[0,-3],[1,-32],[0,-2],[-1,-9],[0,-9],[0,-4],[1,-4],[0,-33],[0,-38],[0,-17],[-1,-89],[0,-9],[0,-9],[0,-41],[0,-27],[0,-34],[0,-1],[0,-2],[0,-2],[0,-7]],[[8807,1178],[-27,0],[-15,0],[-3,1],[-8,0],[-1,0],[-3,0],[-10,0],[-72,0],[-1,0],[-8,0],[-20,0],[-5,0],[-9,0],[-5,0],[-1,0],[-1,0],[-4,0],[-1,0],[-48,0],[-10,0],[-24,0],[-9,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-6,0],[-9,-1],[-2,0],[-5,0],[-2,0],[-1,0],[-6,0],[-14,0],[-6,0],[-2,0],[-7,0],[-1,0],[-15,0],[-2,0],[-14,0],[-5,0],[-4,0],[-1,0],[-4,0],[-1,0],[-3,0],[-4,0],[-2,0],[-9,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-2,0],[-4,0],[-22,0],[-3,0],[-1,0],[-19,0],[-14,0],[-3,0],[-4,0],[-4,0],[-2,0],[-2,0],[-15,0],[-58,0],[-3,0],[-27,0],[-2,0],[-2,0],[-21,0],[-16,0],[-10,0],[-1,0],[-38,0],[-45,0],[-27,0],[-1,0],[-31,0],[-17,0],[-1,0],[-1,0],[-32,0],[-1,0],[-11,0],[-1,0],[-3,0],[-43,0],[-3,0],[-5,0],[-7,0],[-1,0],[-6,0],[-10,0],[-22,0],[-1,0],[-1,0],[-11,0],[-17,0],[-1,0],[-20,0],[-15,0],[-41,0],[-52,0],[-7,0],[-10,0],[-10,0],[-62,0],[-5,0],[-4,0],[-41,0],[-1,0],[-3,0],[-11,0],[-51,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-13,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-28,-1],[-13,0],[-1,0],[-18,1],[-36,0],[-31,0],[-7,0],[-1,0],[-16,0],[-1,0],[-1,0],[-3,0],[-1,0],[-5,0],[-39,0],[-2,0],[-32,0],[-1,0],[-15,0],[-1,0],[-1,0],[-21,0],[-10,0],[-17,0],[-9,0],[-6,0],[-17,0],[-7,0],[-13,0],[-9,0],[-13,0],[-18,0],[-2,0],[-10,0],[-1,0],[-10,0],[-3,0],[-30,0],[-14,0],[-6,0],[-1,0],[-1,0],[-13,0],[-9,0]],[[6941,2096],[5,0],[1,0],[10,1],[0,13],[0,5],[0,1],[0,16],[0,10],[0,8],[0,12],[0,1],[0,21],[0,17],[0,2],[0,1],[0,3],[0,1],[0,3],[0,3],[0,15],[0,11],[0,2],[0,1],[0,1],[0,7],[0,10],[0,5],[0,3],[0,1],[0,11],[0,17],[0,5],[0,1],[0,16],[0,3],[0,16],[0,13],[0,5],[0,5],[0,3],[0,2],[0,9],[0,14],[0,13],[0,6],[-1,18],[0,20],[0,11],[0,1],[0,24],[0,18],[0,3],[0,10],[0,18],[0,1],[0,7],[1,9],[0,22],[0,14],[0,14],[0,24],[0,4],[0,1],[0,6],[0,3],[0,2],[0,1],[0,2],[0,1],[0,5],[0,17],[0,8],[1,17],[0,18],[0,3],[0,1],[0,10],[0,8],[0,10],[0,4],[0,1],[0,2],[0,42],[0,3],[0,12],[0,14],[0,18],[0,19],[0,5],[0,10],[0,1],[0,4],[0,2],[1,0],[5,0],[8,0],[11,0],[23,0],[2,0],[32,0],[10,0],[13,1],[2,0],[24,0],[14,0],[5,0],[1,0],[3,0],[8,0],[7,0],[1,0],[4,0],[13,0],[1,0],[4,0],[10,0],[1,0],[2,0],[25,0],[28,0],[1,0],[12,0],[1,0],[19,0],[14,0],[3,0],[1,0],[7,0],[1,0],[4,0],[4,0],[1,0],[11,0],[1,0],[9,0],[2,0],[2,0],[4,0],[2,0],[26,0],[5,0],[5,0],[7,0],[4,0],[4,0],[1,0],[1,0],[10,0],[29,0],[2,0],[28,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[6,0],[1,0],[1,0],[1,0],[4,0],[3,0],[9,0],[11,0],[1,0],[7,0],[8,0],[2,0],[11,0],[15,0],[12,0],[2,0],[3,0],[4,0],[4,0],[2,0],[1,0],[6,0],[3,0],[3,0],[3,0],[5,0],[1,0],[6,0],[1,0],[1,0],[14,0],[1,0],[14,0],[13,0],[16,0],[1,0],[2,0],[3,0],[2,0],[3,0],[1,0],[1,0],[4,1],[2,0],[7,-1],[2,0],[4,1],[5,0],[1,0],[1,0],[2,0],[15,0],[1,0],[4,0],[2,0],[1,0],[6,0],[1,0],[8,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[6,0],[3,0],[3,0],[1,0],[2,0],[1,0],[1,0],[1,0],[5,0],[1,0],[1,0],[5,0],[1,0],[5,0],[1,0],[1,0],[1,0],[30,0],[9,0],[33,0],[1,0],[28,0],[1,0],[1,0],[20,0],[6,0],[16,0],[25,0],[15,0],[25,1],[2,0],[42,0],[28,0],[17,0],[5,0],[1,0],[4,0],[2,0],[2,0],[2,0],[50,0],[9,0],[2,0],[1,0],[4,0],[18,0],[7,0],[9,0],[16,0],[29,0],[1,0],[6,0],[5,0],[1,0],[20,0],[1,0],[1,0],[4,0],[8,1],[2,0],[26,-1],[10,0],[8,0],[1,0],[1,0],[28,0],[25,0],[17,0],[13,0],[28,0],[40,0],[16,0],[66,0],[2,0],[2,0],[13,0],[4,0],[10,0],[3,0],[3,0],[9,0],[6,0],[2,0],[1,0],[1,0],[5,0],[1,0],[8,0],[8,0],[1,0],[2,0],[2,0],[7,0],[4,0],[4,0],[3,0],[1,0]],[[9932,6389],[0,-1],[0,-15],[0,-14],[-1,-9],[1,-6],[0,-10],[0,-2],[0,-13],[0,-26],[-1,0],[0,-1],[0,-1],[0,-6],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-2],[0,-7],[0,-5],[0,-2],[0,-3],[0,-4],[0,-2],[0,-1],[0,-7],[0,-2],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-8],[0,-1],[0,-3],[0,-2],[0,-1],[0,-4],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-5],[0,-2],[0,-6],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-3],[0,-2],[0,-4],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-6],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-6],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[0,-1],[0,-1],[0,-3],[0,-10],[1,-13],[-1,-35],[0,-1],[0,-3],[0,-4],[0,-3],[0,-3],[0,-13],[1,-4],[0,-4],[0,-2],[-1,-5],[0,-2],[0,-26],[0,-17],[0,-6],[0,-10],[0,-1],[0,-2],[0,-13],[0,-5],[0,-4],[0,-3],[0,-3],[0,-6],[0,-2],[0,-5],[0,-6],[0,-3],[0,-1],[0,-2],[0,-4],[0,-2],[0,-1],[0,-16],[0,-16],[0,-2],[0,-2],[0,-16],[0,-16],[0,-1],[0,-12],[0,-9],[0,-1],[0,-2],[0,-1],[0,-2],[0,-6],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-6],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-5],[0,-2],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-2],[0,-1],[0,-2],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-7],[0,-1],[0,-5],[0,-1],[0,-2],[0,-6],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-3],[0,-1],[0,-7],[0,-1],[0,-1],[0,-6],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-6],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-4],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-4],[0,-3],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-7],[0,-3],[0,-1],[0,-5],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-7],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-4],[0,-3],[0,-2],[0,-8],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[0,-5],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-6],[0,-1],[0,-4],[0,-2],[0,-1],[0,-7],[0,-2],[0,-1],[0,-2],[0,-4],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-7],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-8],[0,-4],[0,-13],[0,-2],[0,-11],[0,-4],[0,-4],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-15],[0,-10],[0,-2],[0,-1],[0,-22],[0,-2],[0,-8],[0,-3],[0,-13],[0,-2]],[[9930,5240],[-2,0],[-4,0],[-2,0],[-1,0],[-4,0],[-8,0],[-2,0],[-6,0],[-4,0],[-4,0],[-5,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-5,0],[-2,0],[-2,0],[-4,0],[-6,0],[-5,0],[-1,0],[-1,0],[-6,0],[-3,0],[-3,0],[-2,0],[-5,0],[-1,0],[-5,0],[-3,0],[-1,0],[-4,0],[-11,0],[-4,1],[-1,0],[-7,0],[-1,0],[-1,0],[-2,0],[-2,0],[-6,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-4,0],[-1,0],[-4,0],[-1,0],[-1,0],[-5,0],[-2,0],[-3,0],[-6,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-12,0],[-1,0],[-1,0],[-3,0],[-3,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-4,0],[-2,0],[-2,0],[-1,0],[-1,0],[-4,0],[-11,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-4,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-6,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-3,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-8,-1],[-24,0],[-1,0],[-10,0],[-8,0],[-26,0],[-29,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-4,0],[-11,0],[-12,0],[-1,0],[-2,0],[-42,0],[-7,0],[-37,0],[-15,0],[-28,0],[-15,0],[-14,0],[-15,0],[-1,0],[-2,0],[-12,0],[-21,0],[-46,0],[-21,0],[-1,0],[-1,0],[-6,0],[-3,0],[-1,0],[-1,0],[-3,0],[-12,0],[-5,0],[-24,0],[-28,0],[-23,0],[-14,0],[-1,0],[-3,0],[-3,0],[-2,0],[-2,0],[-10,0],[-2,0],[-2,0],[-4,0],[-14,0],[-4,0],[-4,0],[-3,0],[-2,0],[-8,0],[-2,0],[-13,0],[-1,0],[-1,0],[-14,0],[-14,0],[-1,0],[-2,0],[-12,0],[-14,0],[-16,0],[-5,0],[-6,0],[-8,0],[-1,0],[-15,0],[-24,0],[-11,0],[-23,0],[-6,0],[0,1],[0,1],[0,30],[0,10],[0,10],[-1,1],[0,21],[1,1],[0,1],[0,1],[1,24],[0,4],[0,16],[0,4],[0,2],[0,7],[0,3],[0,16],[1,18],[-1,22],[0,1],[0,1],[0,1],[0,1],[0,6],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,5],[0,4],[0,2],[0,2],[0,1],[1,1],[0,4],[0,2],[0,3],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[0,2],[0,3],[0,1],[0,4],[0,2],[0,3],[0,2],[0,2],[0,6],[0,3],[0,3],[0,18],[0,4],[0,2],[0,1],[0,1],[0,1],[0,2],[0,15],[0,3],[0,2],[0,2],[0,2],[0,2],[0,5],[1,4],[0,11],[0,2],[0,6],[-1,7],[0,8],[0,4],[0,1],[0,1],[0,2],[0,2],[0,8],[0,2],[0,2],[0,2],[0,2],[0,5],[0,1],[0,2],[0,2],[0,4],[0,2],[0,2],[0,4],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,6],[0,1],[0,2],[0,2],[0,1],[0,1],[0,3],[0,2],[0,2],[0,2],[0,2],[0,6],[0,2],[0,3],[0,1],[0,1],[0,10],[0,2],[0,1],[0,2],[0,3],[0,3],[0,2],[0,2],[0,1],[1,19]],[[8782,5773],[9,0],[43,0],[0,1],[0,2],[0,5],[0,2],[0,2],[0,3],[0,4],[0,2],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,3],[0,4],[0,1],[0,9],[0,2],[0,1],[0,2],[1,9],[0,2],[0,9],[0,2],[0,2],[0,2],[0,1],[0,2],[0,2],[0,7],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,3],[0,1],[0,5],[0,1],[0,2],[0,4],[0,1],[0,2],[0,2],[0,2],[0,1],[0,4],[0,1],[0,3],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,6],[0,2],[0,1],[0,3],[0,1],[8,0],[5,0],[7,0],[11,0],[10,0],[8,0],[10,0],[58,-1],[1,0],[15,0],[41,0],[7,0],[7,0],[5,0],[5,-1],[4,1],[1,0],[14,-1],[3,0],[4,1],[6,-1],[1,0],[29,0],[1,0],[28,0],[30,0],[3,0],[4,0],[4,0],[10,0],[1,0],[6,0],[0,6],[0,2],[0,3],[0,2],[0,2],[0,1],[0,1],[0,5],[0,2],[0,2],[0,1],[0,1],[0,5],[0,2],[0,2],[0,4],[0,1],[0,1],[0,5],[0,4],[0,3],[0,2],[0,1],[0,2],[0,3],[0,5],[0,2],[0,2],[0,4],[0,1],[0,1],[0,2],[0,2],[0,1],[0,4],[1,1],[0,2],[0,1],[0,2],[0,3],[0,1],[0,2],[0,1],[0,1],[0,2],[0,51],[12,0],[3,0],[6,0],[8,0],[29,0],[1,0],[28,-1],[1,0],[3,0],[2,0],[3,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[7,0],[4,0],[1,0],[1,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[11,0],[3,0],[1,0],[1,0],[4,0],[6,0],[3,0],[6,0],[8,0],[1,0],[0,3],[0,2],[0,7],[0,1],[0,1],[0,2],[0,4],[0,1],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[1,1],[0,2],[0,2],[0,4],[0,5],[0,1],[0,1],[0,2],[0,1],[0,2],[0,3],[0,2],[0,1],[0,2],[0,2],[0,2],[0,3],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,4],[0,2],[0,5],[0,3],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,7],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,4],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[1,1],[9,0],[8,0],[2,0],[35,-1],[2,0],[4,0],[12,0],[14,1],[28,0],[1,0],[1,0],[3,0],[4,-1],[3,0],[6,0],[3,0],[7,0],[2,0],[1,0],[2,0],[4,0],[2,0],[1,0],[5,0],[5,0],[1,0],[4,0],[1,0],[3,0],[0,1],[0,1],[0,4],[0,1],[1,7],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,5],[0,1],[0,5],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,3],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,4],[0,2],[0,1],[0,11],[0,1],[0,1],[0,1],[9,1],[20,0],[2,0],[9,0],[9,0],[5,0],[2,0],[6,-1],[2,0],[3,0],[1,0],[1,0],[5,0],[2,0],[1,0],[1,0],[3,0],[7,0],[3,0],[1,0],[6,0],[26,0],[10,0],[13,0],[6,0],[7,0],[10,0],[15,0],[1,0],[5,0],[4,0],[5,0],[1,0],[13,0],[25,0],[1,0],[13,0],[11,0],[35,0],[1,0],[12,0],[32,0],[6,0],[18,0],[9,0],[10,0],[9,0],[1,0],[1,0]],[[9930,5240],[0,-2],[0,-2],[0,-3],[0,-4],[0,-2],[0,-1],[0,-7],[0,-2],[0,-2],[0,-5],[0,-1],[0,-6],[0,-4],[0,-4],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-3],[0,-3],[0,-5],[0,-2],[0,-6],[0,-1],[0,-1],[0,-5],[0,-1],[0,-1],[0,-4],[0,-7],[0,-2],[0,-4],[0,-1],[0,-1],[0,-2],[0,-3],[0,-4],[0,-5],[0,-3],[0,-6],[0,-6],[0,-2],[0,-8],[0,-1],[0,-2],[0,-7],[0,-6],[0,-5],[0,-11],[0,-1],[0,-8],[0,-2],[0,-7],[0,-8],[0,-5],[0,-1],[0,-2],[0,-2],[0,-6],[0,-2],[0,-2],[0,-12],[0,-1],[0,-1],[0,-12],[0,-4],[0,-2],[0,-6],[0,-6],[0,-2],[0,-2],[0,-7],[0,-11],[0,-1],[0,-3],[0,-2],[0,-5],[0,-4],[0,-6],[0,-3],[0,-4],[0,-2],[0,-8],[0,-5],[0,-5],[0,-1],[0,-1],[0,-1],[0,-5],[0,-3],[0,-1],[0,-5],[0,-5],[0,-16],[0,-9],[0,-15],[0,-2],[0,-6],[0,-20],[0,-3],[0,-4],[0,-11],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-1],[0,-3],[0,-5],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-22],[0,-3],[0,-1],[0,-1],[0,-4],[0,-7],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-7],[-1,-29],[0,-9],[0,-3],[0,-4],[0,-1],[0,-10],[0,-2],[0,-2],[0,-2],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-20],[0,-1],[0,-1],[0,-1],[0,-3],[0,-8],[0,-1],[-1,-57],[0,-1],[0,-7],[-1,-39],[0,-1],[-1,-7],[0,-44],[0,-14],[0,-1],[0,-5],[-1,-5],[0,-7],[0,-12],[0,-1],[0,-6],[0,-7],[-1,-15],[0,-22],[0,-4],[0,-1],[0,-9],[0,-1],[0,-1],[-1,-11],[0,-2],[0,-23],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[0,-3],[-1,-3],[0,-15],[0,-5],[0,-1],[0,-3],[0,-2],[0,-4],[-1,-6],[0,-6],[0,-4],[0,-1],[0,-25],[0,-5],[0,-7],[0,-7],[-1,-3],[0,-4],[0,-1],[0,-1],[0,-1],[0,-7],[0,-12],[0,-6],[0,-5],[0,-21],[-1,-25],[-1,-10],[0,-2],[0,-1],[1,-3],[-1,-12],[0,-1],[0,-20],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[0,-6],[-1,-12],[0,-5],[0,-23],[0,-7],[0,-5],[0,-10],[0,-1],[0,-8],[-1,-10],[0,-9]],[[9915,3949],[-3,0],[-13,0],[-7,0],[-2,0],[-20,0],[-3,0],[-5,0],[-1,0],[-16,0],[0,-1],[-4,1],[-15,-1],[0,1],[-6,-1],[-2,1],[-4,0],[-2,0],[-17,0],[-11,0],[-7,0],[-18,0],[-24,0],[-37,0],[-32,0],[-24,0],[-15,0],[-15,0],[-24,-1],[-43,1],[-1,0],[-3,0],[-18,0],[-23,0],[-12,0],[-5,0],[-1,-1],[-2,1],[-1,0],[-2,0],[-2,0],[-4,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-2,0],[-6,0],[-1,0],[-5,0],[-18,0],[-11,0],[-4,0],[-21,0],[-6,-1],[-9,0],[-7,0],[-39,0],[-2,0],[-26,0],[-1,0],[-7,0],[-17,0],[-3,0],[-15,0],[-6,0],[-36,0],[-21,0],[-9,0],[-1,0],[-3,0],[-4,0],[-6,0],[-10,0]],[[9159,3948],[0,15],[0,1],[0,1],[0,5],[0,3],[0,1],[0,3],[0,3],[0,1],[0,1]],[[9159,3982],[-1,0],[1,0]],[[9159,3982],[0,20],[0,11],[0,3],[0,8],[0,1],[0,3],[0,1],[0,16],[0,18],[1,13],[0,25],[0,1],[-4,0],[-2,0],[-3,-1],[-6,1],[-3,0],[-4,-1],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-8,0],[-3,0],[-20,0],[-18,0],[-12,0],[-14,-1],[-44,0],[-13,0],[-9,0],[-6,0],[-33,0],[-10,0],[-21,0],[-5,0],[-3,0],[-1,0],[-1,0],[-5,0],[-50,0],[-1,0],[-1,0],[-3,0],[-13,0],[0,3],[0,1],[0,4],[0,14],[0,3],[0,26],[0,1],[0,10],[0,18],[0,4],[0,15],[0,2],[1,24],[0,15],[0,13],[0,12],[0,9],[0,29],[0,1],[1,31],[0,1],[0,4],[0,25],[0,22],[-24,0],[-2,0],[-7,0],[-3,1],[-2,0],[-12,-1],[-6,0],[-8,0],[-1,0],[-7,0],[-4,0],[-11,0],[-2,0],[-2,0],[-1,0],[-3,0],[-14,0],[-10,0],[-1,0],[-8,0],[-12,0],[-6,0],[-15,0],[-2,0],[-2,0],[-1,0],[-29,0],[-2,0],[-4,0],[-2,0],[-4,0],[0,2],[1,78],[0,1],[0,2],[0,4],[0,3],[0,7],[0,2],[0,2],[0,13],[0,3],[0,2],[0,4],[0,1],[0,1],[0,1],[0,11],[0,15],[0,7],[0,2],[0,1],[0,3],[0,1],[0,5],[0,7],[0,10],[0,2],[-1,7],[0,1],[0,1],[0,1],[0,3],[0,3],[0,9],[1,16],[0,1],[0,1],[0,1],[0,1],[0,13],[0,6],[0,1],[0,30],[0,2],[0,10],[0,12],[0,2],[0,3],[0,3],[0,2],[0,1],[0,15],[0,14],[0,9],[0,16],[0,4],[0,27],[0,8],[0,9],[0,30],[0,9],[0,2],[-4,0],[-1,0],[-1,0],[-23,0],[-2,0],[-7,0],[-6,0],[-12,0],[-23,0],[-1,0],[-22,0],[-3,0],[-9,0],[-2,0],[-30,2],[-27,0]],[[8434,5774],[19,0],[3,0],[3,0],[2,0],[4,0],[14,0],[25,0],[7,0],[3,0],[1,0],[2,0],[2,0],[10,0],[7,0],[1,0],[5,0],[1,0],[6,0],[5,0],[2,0],[2,0],[3,0],[3,0],[1,0],[9,0],[4,0],[8,0],[4,0],[4,0],[4,0],[2,0],[1,0],[4,0],[14,0],[8,-1],[3,0],[4,0],[6,0],[4,0],[1,0],[4,0],[5,0],[3,0],[1,0],[1,0],[1,0],[1,0],[2,0],[21,0],[4,0],[1,0],[5,0],[41,0],[26,0],[15,0],[1,0],[1,0],[2,0],[2,0]],[[2694,9998],[-2,-1],[-1,-3],[-1,-2],[-2,-2],[-3,-2],[-3,-1],[-1,-3],[0,-3],[1,-2],[-2,-3],[-2,0],[-2,-2],[0,-1],[0,-4],[1,-2],[1,-2],[0,-3],[0,-2],[1,-1],[0,-4],[0,-1],[1,-1],[0,-2],[-1,-4],[-2,-1],[-1,-1],[-3,-1],[-4,-1],[-1,0],[-2,0],[-3,-1],[-1,-1],[-1,-1],[-3,0],[-1,0],[-2,0],[-2,-1],[-1,-1],[-2,-2],[-1,-3],[0,-1],[0,-2],[-1,-2],[-4,-2],[-2,-1],[-3,-1],[-2,0],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-3],[1,-1],[1,0],[1,-1],[2,-1],[2,-2],[0,-1],[1,-1],[-1,-2],[0,-1],[1,-1],[2,0],[2,-1],[2,-2],[0,-1],[-1,-1],[-3,-3],[-2,-2],[-2,-2],[-1,0],[-2,-1],[-1,0],[0,-1],[1,-2],[0,-2],[1,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-3],[1,-2],[1,-3],[0,-1],[2,-3],[0,-2],[1,-1],[0,-2],[1,-4],[1,0],[0,-1],[0,-1],[1,0],[1,-2],[1,0],[2,-2],[3,-2],[1,-2],[-1,-1],[-2,-3],[-1,-1],[-2,-2],[-2,-1],[-1,-1],[0,-2],[0,-4],[0,-2],[0,-1],[-1,-2],[-2,-1],[-1,0],[0,-1],[-2,-1],[-2,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-3,-2],[-2,-2],[-4,-1],[-1,0],[-3,-1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,-2],[-1,-1],[-2,-2],[-1,-1],[-1,-2],[-1,0],[-1,-1],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-5,-4],[-3,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-2,-4],[-3,-1],[-4,1],[-4,3],[-2,5],[0,1],[-1,1],[-2,0],[-2,0],[-1,-1],[-1,-6],[0,-3],[0,-2],[0,-1],[-4,0],[-2,1],[-2,1],[-1,0],[-2,1],[-3,1],[-2,1],[-1,0],[-1,1],[-2,0],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,0],[0,-1],[-1,-2],[-1,-3],[-4,-5],[-2,-2],[0,-1],[-2,-3],[-1,-3],[0,-3],[-1,-3],[0,-3],[0,-2],[0,-1],[-1,-1],[1,-1],[0,-3],[-1,-1],[-2,-1],[0,1],[-1,0],[-1,1],[-6,1],[-2,0],[-1,1],[-1,0],[-1,0],[-2,-3],[-2,-4],[-1,-1],[0,-1],[-3,-2],[-3,-1],[-2,1],[-1,1],[-4,1],[-3,2],[-3,2],[-1,3],[0,1],[0,1],[-2,2],[-1,0],[-2,0],[-2,0],[-4,-2],[-1,-1],[-1,0],[-1,-2],[-1,0],[-2,-2],[-2,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-3],[-1,-2],[-2,-3],[-3,-2],[-2,-2],[-2,0],[-2,0],[-1,0],[0,-1],[-4,0],[-2,-2],[-2,-3],[-1,-2],[-1,-2],[-1,-2],[-3,-1],[-3,0],[-6,2],[-1,1],[-3,1],[-4,-1],[-2,-2],[-2,-1],[-3,-1],[-1,0],[-2,0],[-2,-1],[-1,-2],[-1,-3],[0,-1],[0,-2],[1,-2],[2,-2],[0,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-3],[1,-2],[0,-1],[1,-2],[0,-2],[0,-1],[1,-1],[2,0],[2,0],[2,0],[2,1],[5,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-2],[-2,-1],[-5,0],[-4,0],[-3,1],[-3,1],[-3,0],[-1,0],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[0,-2],[1,-1],[1,-3],[1,-2],[1,-2],[2,-1],[1,-2],[1,-1],[0,-1],[0,-1],[-1,-1],[-3,-1],[-2,0],[-5,1],[-1,1],[-3,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,3],[-1,0],[-3,4],[0,-2],[0,-1],[0,-1],[0,-3],[0,-5],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-5],[0,-15],[0,-13],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-29],[1,-5],[0,-4],[0,-46],[-1,-14],[0,-1],[0,-3],[0,-5],[0,-16],[0,-6],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-12],[0,-9],[0,-1],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,-1],[0,-3],[0,-3],[0,-1],[0,-6],[0,-19],[0,-6],[0,-1],[0,-13],[0,-3],[0,-3],[0,-1],[0,-1],[0,-6],[0,-19],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-8],[0,-1],[0,-2],[-1,-7],[0,-2],[0,-3],[0,-16],[0,-8],[-1,-9],[0,-4],[0,-16],[0,-14],[-1,-6],[0,-2],[0,-1],[0,-1],[0,-5],[0,-1],[0,-5],[0,-1],[0,-5],[0,-1],[0,-1],[-1,-12],[0,-1],[0,-1],[0,-1],[0,-11],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-8],[0,-6],[0,-6],[0,-6],[0,-15],[0,-2],[0,-1],[0,-2],[0,-9],[0,-11],[0,-1],[0,-4],[-1,-1],[0,-1],[0,-4],[0,-1],[0,-4],[0,-39],[0,-13],[0,-1],[0,-7],[0,-2],[0,-1],[0,-9],[0,-3],[0,-1],[0,-1],[-1,-17],[0,-2],[1,-17],[0,-1],[1,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-3],[1,-8],[0,-3],[1,-14],[0,-2],[0,-1],[0,-1],[0,-1],[1,-10],[0,-4],[0,-1],[0,-1],[0,-13],[-1,-11],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-3],[0,-8],[0,-3],[-1,-9],[0,-9],[-1,-8],[0,-5],[-2,0],[2,-20],[0,-5],[0,-4],[0,-1],[0,-7],[0,-6],[0,-2],[1,-5],[0,-4],[0,-4],[0,-2],[0,-12],[0,-1],[0,-12],[0,-16],[0,-12],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-2],[1,-8],[0,-1],[0,-4],[0,-3],[0,-6],[0,-1],[0,-1],[0,-5],[0,-7],[0,-5],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-31],[0,-8],[0,-11]],[[2354,8235],[-2,0],[-4,0],[-1,0],[-4,0],[-10,0],[-4,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-3,0],[-9,0],[-3,0],[-3,0],[-6,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-5,0],[-1,0],[-3,0],[-8,0],[-3,0],[-2,0],[-1,0],[-4,1],[-13,0],[-4,0],[-1,0],[-5,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-10,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-5,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-9,0],[-5,0],[-21,0],[-6,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-5,0],[-16,0],[-5,0],[-5,0],[-15,0],[-5,1],[-3,0],[-3,0],[-18,0],[-6,0],[-1,0],[-14,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-5,0],[-4,0],[-13,0],[-5,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-4,0],[-7,0],[-6,0],[-3,0],[-3,0],[-1,0],[-1,0],[-5,0],[-18,0],[-4,1],[-1,0],[-1,0],[-1,0],[-5,-1],[-2,0],[-5,1],[-5,0],[-8,0],[-4,0],[-3,0],[-3,0],[-17,0],[-2,0],[-4,0],[-3,0],[-8,0],[-3,0],[-2,0],[-5,0],[-2,0],[-1,0],[-5,0],[-1,0],[-12,0],[-5,0],[-3,0],[-9,0],[-1,0],[-6,0],[-10,0],[-5,0],[-12,0],[-17,0],[-2,0],[-6,0],[-2,0],[-6,0],[-6,0],[-13,0],[-1,0],[-5,0],[-1,0],[-2,0],[-1,0],[-2,0],[-7,0],[-2,0],[-1,0],[-1,0],[-2,0],[-8,0],[-3,0],[-3,0],[-8,0],[-1,0],[-3,1],[-1,0],[-2,0],[-2,0],[-6,0],[-3,0],[-1,0],[-4,0],[-2,0],[-1,0],[-1,0],[-4,0],[-12,0],[-5,0],[-8,0],[-2,0],[-13,0],[-7,0],[-2,0],[-2,0],[-7,0],[-2,0],[-1,0],[-1,0],[-5,0],[-2,0],[-2,0],[-4,0],[-2,0],[-1,0],[-5,0],[-17,0],[-6,0],[-5,0],[-13,0],[-4,0],[-2,0],[-6,0],[-1,0],[-1,0],[-1,0],[-3,0],[-7,0],[-6,0],[-4,0],[-1,0],[-3,0],[-2,0],[-4,0],[-2,0],[-1,0],[-5,0],[-1,0],[-1,0],[-1,0],[-3,0],[-9,0],[-3,0],[-1,0],[-3,0],[-11,0],[-3,0],[-1,0],[-4,0],[-1,0],[-2,0],[-5,0],[-2,0],[-2,0],[-6,0],[-2,0],[-1,0],[-5,0],[-2,0],[-2,0],[-6,0],[-3,0],[-3,0],[-9,0],[-4,0],[-1,0],[-2,0],[-1,0],[-7,0],[-1,0],[-5,0],[-4,-1],[-13,0],[-5,0],[-1,0],[-1,0],[-5,0],[-16,0],[-1,0],[-4,0],[-1,0],[-2,0],[-6,0],[-17,0],[-5,0],[-4,0],[-11,0],[-3,0],[-1,0],[-4,0],[-1,0],[-3,0],[-7,0],[-3,0],[-14,0],[-6,0],[-39,0],[-14,0],[-1,0],[-1,0],[-1,0],[-4,0],[-21,1],[-2,0],[-7,0],[-4,0],[-4,0],[-1,0],[-3,0],[-8,-1],[-3,0],[-2,0],[-2,0],[-1,0],[-10,0],[-46,0],[-16,0],[-9,0],[-27,0],[-9,0],[-1,0],[-2,0],[-2,0],[-4,0],[-1,0],[-4,0],[-5,0],[-7,0],[-4,0],[-2,0],[-5,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-6,0],[-3,0],[-7,0],[-7,0],[-4,0],[-12,0],[-5,0],[-8,0],[-2,0],[-1,0],[-2,0],[-5,0],[-2,0],[-1,0],[-4,0],[-1,0],[-7,0],[-22,0],[-32,0],[-2,0],[-1,0],[-15,0],[-2,0],[-4,0],[-5,0],[-12,0],[-1,0],[-4,0],[-30,0],[-9,0],[-25,0],[-8,0],[-1,0],[-4,0],[-1,0],[-3,0],[-3,0],[-4,0],[-3,0],[-2,0],[-6,0],[-2,0],[-1,0],[-3,0],[-1,0],[-5,0],[-13,0],[-4,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-4,0],[-2,0],[-1,0],[-5,0],[-2,0],[-15,0],[-16,0],[-8,0],[-4,0],[-22,0],[-6,0],[-8,0],[-26,0],[-9,0],[-2,0],[-4,0],[-2,0],[-1,0],[-3,0],[-2,0],[-5,0],[-8,0],[-7,0],[-5,0],[-1,0],[-5,0],[-2,0],[-1,0],[-4,0],[-1,0],[-4,0],[-4,0],[-6,0],[-5,0],[-17,0],[-6,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-6,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-6,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-11,0],[-3,0],[-1,0],[-3,0],[-4,0],[-11,0],[-3,0],[-1,0],[-1,0],[-2,0],[-3,0],[-7,0],[-3,0],[-4,0],[-4,0],[-10,0],[-5,0],[-8,0],[-23,0],[-8,0],[-1,0],[-5,0],[-3,0],[-9,0],[-6,0],[-6,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-3,0],[-2,0],[-3,0],[-9,0],[-3,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-5,0],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-17,0],[-5,0],[-1,0],[-1,0],[-2,0],[-8,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-7,0],[-2,0],[-2,0],[-6,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-7,0],[-2,0],[-1,0],[-3,0],[-1,0],[-5,0],[-2,0],[-9,0],[-6,0],[-6,0],[-3,0],[-10,0]],[[7,8239],[0,4],[0,1],[0,9],[0,1],[0,1],[0,3],[0,3],[0,4],[0,2],[0,5],[0,3],[0,1],[0,8],[0,1],[0,5],[0,4],[0,3],[0,6],[0,5],[0,2],[0,11],[0,3],[0,2],[0,10],[0,10],[0,1],[0,2],[0,11],[0,2],[0,1],[0,4],[0,8],[0,1],[0,2],[0,11],[0,2],[0,1],[0,6],[0,1],[0,15],[0,17],[0,1],[0,1],[0,1],[0,7],[0,14],[0,20],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,13],[0,40],[0,6],[0,12],[0,1],[0,3],[0,2],[0,4],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,8],[0,2],[0,1],[0,7],[0,14],[0,1],[0,1],[0,1],[0,3],[0,13],[0,3],[0,4],[0,1],[0,1],[0,6],[0,4],[0,14],[0,2],[0,4],[0,2],[0,2],[0,5],[0,2],[0,10],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,6],[0,1],[0,5],[0,3],[0,2],[0,10],[0,6],[0,1],[0,1],[0,4],[0,11],[0,4],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,4],[0,2],[0,1],[0,3],[0,7],[0,3],[0,1],[0,4],[0,7],[0,10],[0,1],[0,2],[0,1],[0,11],[0,8],[0,21],[0,2],[0,1],[0,1],[0,1],[0,3],[0,3],[0,15],[0,5],[0,20],[0,1],[0,12],[0,2],[0,14],[0,4],[0,4],[0,4],[0,4],[0,2],[0,7],[0,3],[0,1],[0,5],[0,5],[0,3],[0,3],[0,12],[0,4],[0,22],[0,14],[0,5],[0,10],[0,6],[0,3],[0,1],[0,5],[0,5],[0,4],[0,2],[0,1],[0,6],[0,6],[0,3],[0,7],[0,1],[1,1],[0,1],[0,4],[0,1],[0,3],[0,12],[0,1],[0,4],[0,1],[0,3],[0,5],[0,6],[0,1],[0,4],[0,2],[0,1],[0,12],[0,8],[0,2],[0,5],[0,1],[0,1],[0,1],[0,3],[0,16],[0,3],[0,1],[0,2],[0,5],[0,2],[0,2],[0,1],[0,1],[0,4],[0,6],[0,11],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,6],[0,5],[0,1],[0,2],[0,2],[0,4],[0,1],[0,1],[0,1],[0,8],[0,1],[0,3],[0,1],[0,3],[0,16],[0,2],[0,11],[0,1],[0,2],[0,1],[0,8],[0,20],[0,35],[0,9],[0,29],[0,3],[0,1],[0,3],[0,1],[0,9],[0,10],[0,10],[0,7],[0,17],[0,1],[0,2],[0,1],[0,1],[0,1],[0,5],[0,1],[0,1],[0,1],[0,4],[0,1],[0,11],[0,11],[0,6],[0,1],[0,9],[0,1],[0,4],[0,5],[0,1],[0,6],[0,12],[0,10],[0,4],[0,2],[0,6],[0,12],[0,1],[0,3],[0,1],[0,3],[0,4],[0,1],[0,6],[0,1],[0,1],[0,2],[0,1],[0,6],[0,18],[0,1],[0,1],[0,3],[0,2],[0,3],[0,4],[0,4],[0,9],[0,8],[0,8],[0,1],[0,3],[0,5],[0,4],[0,1],[0,17],[0,5],[0,1],[0,8],[0,1],[0,2],[0,2],[0,1],[0,2],[0,4],[0,2],[0,1],[0,3],[0,1],[0,13],[0,1],[0,1],[0,2],[0,1],[0,4],[0,3],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,4],[0,3],[0,4],[0,2],[0,1],[0,2],[0,1],[0,8],[0,4],[0,1],[0,8],[0,26],[0,1],[0,6],[0,7],[0,9],[0,8],[0,2],[0,8],[0,2],[0,6],[0,1],[0,7],[0,24],[0,1],[0,3],[0,6],[0,2],[0,6],[0,1],[0,7],[0,14],[0,2],[0,14],[0,10],[0,4],[0,1],[1,0],[2,0],[16,0],[5,0],[1,0],[2,0],[1,0],[5,0],[3,0],[1,0],[21,0],[4,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[4,0],[8,0],[6,0],[5,0],[8,0],[3,0],[23,0],[8,0],[1,0],[2,0],[1,0],[2,0],[4,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[3,0],[8,0],[2,0],[4,0],[13,-1],[5,0],[1,0],[5,0],[1,0],[8,0],[1,0],[27,0],[2,0],[2,0],[5,0],[3,0],[12,0],[4,0],[2,0],[4,0],[2,0],[2,0],[3,0],[6,0],[2,0],[3,0],[1,0],[4,1],[1,0],[2,0],[2,0],[5,0],[2,0],[3,0],[2,0],[15,0],[5,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[4,0],[15,0],[3,0],[3,0],[4,0],[3,0],[8,0],[3,0],[2,0],[1,0],[3,0],[2,0],[2,0],[5,0],[2,0],[1,0],[3,0],[1,0],[1,-1],[2,0],[1,0],[2,0],[4,0],[1,0],[6,0],[7,1],[8,0],[1,0],[4,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[3,-1],[1,0],[2,0],[8,0],[3,0],[1,0],[1,0],[2,1],[7,0],[3,0],[1,0],[1,0],[1,-1],[1,0],[3,0],[10,0],[3,0],[2,0],[2,0],[5,1],[2,0],[14,0],[4,0],[15,0],[18,0],[6,0],[7,0],[7,0],[10,0],[3,0],[5,0],[22,0],[4,0],[6,0],[1,0],[1,0],[3,0],[1,0],[3,0],[4,0],[4,0],[2,0],[1,0],[2,0],[2,0],[4,0],[1,0],[3,0],[7,0],[2,0],[1,0],[2,0],[3,0],[7,0],[2,0],[2,0],[5,0],[2,0],[1,0],[1,0],[7,0],[21,0],[7,0],[5,0],[6,0],[9,0],[4,0],[3,0],[9,0],[3,0],[8,0],[14,0],[4,0],[2,0],[4,0],[7,0],[5,0],[14,0],[4,0],[1,0],[1,0],[2,0],[5,0],[2,0],[3,0],[7,0],[3,0],[7,0],[21,0],[7,0],[1,0],[5,0],[16,0],[5,0],[1,0],[5,0],[1,0],[18,0],[6,0],[4,0],[15,0],[5,0],[1,0],[5,0],[1,0],[1,0],[2,0],[8,0],[3,0],[5,0],[12,0],[5,0],[6,0],[8,1],[7,0],[15,0],[4,0],[8,0],[2,0],[6,0],[2,0],[3,0],[7,0],[3,0],[1,0],[3,0],[1,0],[3,0],[3,0],[31,-1],[2,0],[1,0],[1,0],[3,1],[1,0],[10,0],[6,0],[11,0],[14,0],[11,0],[1,0],[1,0],[7,0],[29,0],[15,0],[1,0],[3,0],[16,0],[6,0],[8,0],[1,0],[28,0],[2,-1],[14,0],[10,0],[10,0],[23,0],[1,0],[1,0],[1,0],[3,0],[1,0],[14,0],[9,0],[1,0],[12,0],[1,0],[2,0],[1,0],[10,0],[19,0],[41,0],[1,0],[1,0],[1,1],[4,0],[12,0],[4,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[2,0],[13,0],[4,0],[7,0],[30,0],[1,0],[15,0],[18,0],[13,0],[3,0],[23,0],[7,0],[1,0],[8,0],[1,0],[4,0],[2,0],[1,0],[1,0],[6,0],[15,0],[2,0],[2,0],[6,0],[4,0],[9,0],[4,0],[4,0],[1,0],[4,0],[1,0],[1,0],[5,0],[2,0],[12,0],[1,0],[25,0],[2,0],[6,0],[34,0],[2,0],[9,0],[30,0],[1,0],[2,0],[2,0],[35,0],[16,0],[18,0],[7,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[13,0],[15,0],[7,0],[3,0],[27,0],[10,0],[12,0],[15,0],[10,0],[16,0],[13,0],[1,0],[22,0],[30,0],[15,0],[17,0],[28,0],[9,0],[19,0],[6,0],[18,0],[16,0],[15,0],[21,0],[23,0],[16,0],[34,0],[3,0],[2,0],[2,0],[1,0],[5,0],[1,0],[1,0],[2,0],[1,0],[9,0],[6,0],[1,0],[4,0],[1,0],[12,0],[21,0],[4,0],[29,0],[1,0],[2,0],[6,0],[1,0],[2,0],[5,0],[14,0],[5,0],[3,0],[10,0],[3,0],[3,0],[12,1],[1,0],[3,0],[3,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[16,-1],[6,0],[1,0],[3,0],[1,0],[2,0],[6,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[2,0],[4,0],[5,0],[4,0],[2,0],[1,0],[3,0],[1,0],[2,0],[2,0],[6,0],[3,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[2,0],[2,0],[4,0],[1,0],[1,0],[3,0],[1,0],[3,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0]],[[5168,5165],[1,0],[2,0],[6,0],[1,0],[3,0],[2,0],[5,0],[1,0],[2,0],[2,0],[11,0],[1,0],[6,0],[14,0],[2,0],[21,0],[19,0],[13,0],[1,0],[5,0],[1,0],[19,0],[1,0],[7,0],[12,0],[33,0],[16,0],[17,0],[12,0],[10,0],[6,0],[10,0],[17,0],[6,0],[2,0],[4,0],[19,0],[2,0],[4,0],[3,0],[3,0],[21,0],[13,0],[9,0],[12,0],[3,0],[1,0],[1,0],[5,0],[6,0],[1,0],[1,0],[4,0],[3,0],[10,0],[6,0],[2,0],[3,0],[2,0],[1,0],[1,0],[28,0],[18,0],[4,0],[10,0],[7,0],[21,0],[8,0],[7,0],[4,0],[1,0],[1,0],[2,0],[2,0],[1,0],[5,0],[1,0],[5,0],[7,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[6,0],[6,0],[8,0],[1,0],[2,0],[1,0],[1,0],[5,0],[4,0],[6,0],[1,0],[2,0],[8,0],[3,0],[12,0],[5,0],[3,0],[1,0],[5,0],[5,0],[5,0],[2,0],[1,0],[5,0],[6,0],[6,0],[9,0],[1,0],[2,0],[4,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[5,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[19,0],[2,0],[2,0],[1,0],[1,0],[1,0],[3,0],[2,0],[2,0],[2,0],[5,0],[3,0],[4,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[8,0],[2,0],[2,0],[2,0],[1,0],[0,-1],[1,0],[10,1],[1,0],[15,0],[30,0],[5,0],[9,0],[1,0],[3,0],[2,0],[1,0],[1,0],[3,0],[3,0],[1,0],[1,0],[4,0],[2,0],[2,0],[2,0],[1,0],[3,0],[5,0],[2,0],[2,0],[1,0],[2,0],[1,0],[5,0],[49,0],[1,0],[2,0],[1,0],[1,0],[0,25],[0,1],[0,37],[0,7],[0,6],[0,36],[0,6],[0,5],[0,1],[0,1],[0,28]],[[6178,5318],[7,0],[18,0],[6,0],[2,0],[7,0],[2,0],[3,0],[17,0],[42,1],[14,0],[27,0],[3,0],[12,0],[4,0],[3,0],[9,0],[3,0],[90,0],[24,0],[17,0],[68,0],[1,0],[28,0],[13,0],[15,0],[1,0],[2,0],[4,0],[1,0],[26,0],[48,-1],[13,0],[11,0],[4,0],[12,0],[4,0],[3,0],[83,0],[12,0],[11,0],[5,0],[9,0],[12,0],[1,0]],[[6872,4862],[0,-2],[0,-7],[0,-18],[0,-15],[0,-24],[0,-6],[0,-15],[0,-4],[0,-1],[0,-1],[0,-10],[0,-8],[-1,-10],[0,-17],[0,-4],[0,-14],[0,-30],[0,-27],[0,-32],[-1,-47],[0,-7],[0,-7],[0,-5],[0,-19],[0,-7],[0,-1],[0,-1],[0,-3],[0,-9],[0,-11],[0,-6],[0,-1],[0,-7],[0,-2],[0,-14],[0,-1],[0,-18],[0,-2],[0,-13],[0,-8],[0,-20],[0,-3],[0,-1],[0,-4],[0,-4],[3,0],[1,0],[1,-2],[1,-2],[0,-9],[0,-14],[-1,-26],[0,-4],[0,-15],[0,-6],[0,-9],[0,-3],[0,-18],[0,-10],[0,-10],[0,-2],[1,-24],[0,-2],[0,-12],[0,-8],[-1,-16],[0,-9],[0,-34],[0,-25],[0,-13],[0,-4],[0,-4],[0,-1],[0,-18],[0,-28],[0,-3],[0,-7],[0,-1],[-1,-12],[1,-13],[0,-12],[0,-18],[0,-3],[0,-6],[0,-2],[-1,0],[0,-6],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-34],[0,-1],[0,-1],[0,-7],[0,-7],[0,-1],[0,-1],[0,-3],[0,-1],[0,-3],[0,-6],[0,-1],[0,-6],[0,-6],[0,-14],[0,-1],[0,-7],[0,-3],[0,-1],[0,-29],[0,-20],[0,-16],[0,-1]],[[6874,3807],[1,0],[-1,0]],[[6874,3807],[0,-1],[0,-3],[0,-2],[0,-5],[0,-3],[0,-2],[0,-1],[0,-5],[0,-2],[0,-15],[0,-9],[0,-2],[0,-2],[0,-13],[0,-1],[0,-3],[0,-2],[-1,-21],[0,-10],[1,-3],[0,-1],[0,-1],[0,-2],[0,-19],[0,-15],[0,-3],[0,-4],[0,-1],[0,-12],[8,-6],[2,-1],[2,-1],[0,-11],[0,-7],[0,-6],[0,-3],[0,-1],[0,-1],[0,-3],[0,-10],[0,-1],[0,-10],[0,-1],[-1,-22],[0,-1],[0,-4],[0,-1],[0,-1],[0,-4],[0,-5],[1,-1],[0,-13],[0,-7],[0,-1],[0,-5],[0,-7],[0,-5],[0,-3],[0,-1],[0,-4],[0,-8],[0,-7],[-24,0],[-4,0],[-1,0],[-1,0],[-1,0],[0,-16],[0,-7],[0,-9],[0,-11],[0,-1],[0,-7],[0,-2],[0,-20],[0,-12],[0,-14],[0,-11],[0,-3],[0,-14],[-1,-17],[0,-6],[-2,0],[0,-9],[0,-16],[0,-11],[0,-2],[0,-1],[0,-1],[0,-14],[0,-3],[0,-1],[0,-7],[0,-7],[-1,-30],[0,-2],[0,-3],[1,-11],[0,-1],[0,-1]],[[6852,3212],[1,0],[-1,0]],[[6852,3212],[0,-1],[0,-5],[0,-1],[0,-1],[0,-3],[0,-9],[0,-5],[-3,0],[-36,0],[-3,0],[-4,0],[-2,0],[-4,1],[-2,0],[-11,0],[-11,0],[-1,0],[-2,0],[-25,0],[-1,0],[-47,0],[-1,0],[-4,0],[-10,-1],[0,-6],[0,-3],[-47,0],[-17,1],[-13,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-6,0],[-5,0],[-33,0],[-9,0],[-1,0],[-11,0],[-3,0],[-10,-2],[-7,-2],[-14,0],[-12,0],[-1,0],[-29,0],[-12,0],[-19,0],[-17,0],[-4,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-3,0],[-9,0],[-38,0],[-9,0],[-6,0],[-8,0],[-24,0],[-21,0],[-13,0],[-2,0],[-10,1],[-15,0],[-6,0],[-2,0],[-5,0],[-1,0],[-2,0],[-13,0],[-3,0],[-14,-1],[-12,0],[-11,0],[-1,0]],[[4471,3632],[-9,0],[-12,0],[-1,0],[-1,0],[-4,0],[-8,0],[-7,0],[-2,0],[0,1],[0,1],[0,4],[0,5],[0,3],[0,20],[0,6],[0,10],[0,5],[0,4],[-1,29],[0,4],[0,13],[0,2],[0,11],[0,6],[0,12],[0,2],[0,1],[0,3],[0,5],[0,9],[0,1]],[[8143,6721],[0,-1],[0,-1],[0,-1],[0,-6],[0,-21],[-1,-7],[0,-1],[0,-2],[0,-8],[0,-2],[0,-1],[0,-4],[0,-1],[0,-9],[0,-28],[0,-7],[0,-3],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-2],[0,-7],[0,-2],[0,-1],[0,-4],[0,-14],[0,-4],[0,-4],[0,-12],[0,-4],[0,-1],[0,-2],[0,-2],[0,-6],[0,-2],[0,-2],[0,-1],[0,-5],[0,-2],[1,-1],[0,-2],[0,-1],[0,-9],[-1,-26],[0,-9],[0,-3],[0,-6],[0,-3],[0,-3],[0,-2],[0,-1],[0,-5],[0,-10],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-2],[0,-8],[0,-3],[0,-2],[0,-5],[0,-1],[0,-5],[0,-1],[0,-3],[0,-14],[0,-1],[0,-6],[-2,0],[-4,0],[-1,0],[0,-8],[0,-24],[0,-7],[0,-1],[0,-3],[0,-8],[0,-2],[0,-4],[0,-10],[0,-3],[0,-2],[0,-6],[0,-2],[0,-2],[0,-5],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-2],[0,-1],[0,-5],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-3],[0,-4],[0,-3],[0,-4],[0,-2],[0,-5],[0,-2],[0,-3],[0,-1],[0,-6],[0,-17],[0,-5],[0,-4],[0,-11],[0,-4],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-6],[0,-2],[0,-2],[0,-5],[0,-1],[0,-4],[0,-10],[1,-3],[-1,-3],[0,-8],[0,-3],[0,-4],[0,-12],[0,-4],[0,-1],[0,-3],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-3],[0,-7],[0,-3]],[[6178,5318],[1,10],[0,30],[0,9],[0,1],[0,2],[0,9],[0,2],[0,9],[0,25],[0,7],[0,1],[0,2],[0,4],[0,1],[0,3],[0,7],[0,3],[0,4],[0,5],[0,1],[0,16],[0,6],[0,1],[0,1],[0,1],[0,9],[0,27],[0,6],[0,3],[0,6],[0,8],[0,8],[0,5],[0,3],[0,10],[0,3],[0,1],[0,1],[0,1],[0,4],[0,1],[0,3],[0,7],[0,3],[0,1],[0,2],[0,8],[0,3],[0,3],[0,7],[0,3],[0,8],[0,12],[0,12],[0,8],[0,4],[0,11],[0,3],[0,4],[0,8],[0,2],[0,3],[0,5],[0,14],[0,5],[0,1],[0,1],[0,1],[0,1],[0,7],[0,12],[0,10],[0,4],[0,3],[0,2],[0,1],[0,4],[0,1],[0,3],[0,9],[0,3],[0,1],[2,0],[10,0],[3,0],[5,0],[14,0],[3,0],[0,1],[0,3],[0,7],[0,3],[0,7],[0,3],[0,8],[0,11],[0,2],[0,6],[0,2],[0,1],[0,7],[0,16],[0,5],[0,1],[0,6],[0,2],[0,6],[0,2],[0,3],[0,9],[0,3],[0,4],[0,11],[0,3],[0,1],[0,3],[0,2],[0,5],[0,1],[0,3],[0,8],[0,2],[0,1],[0,3],[-1,1],[0,3],[0,8],[0,2],[0,9],[0,15],[0,9],[0,9],[0,2],[0,9],[0,3],[0,11],[0,10],[0,1],[0,4],[0,16],[0,11],[0,2],[0,5],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[0,16],[0,5],[0,1],[0,3],[0,1],[0,1],[0,5],[0,1],[0,11],[0,14],[0,2],[0,14],[0,10],[0,8],[0,27],[0,8],[0,1],[0,6],[0,3],[0,1],[0,2],[1,33],[0,1],[-1,33],[0,35],[0,4],[0,11],[0,4],[0,3],[0,9],[0,3],[-1,2],[0,6],[0,2],[0,1],[0,3],[0,4],[0,5],[0,6],[0,3],[0,1],[0,2],[0,1],[1,1],[0,10],[0,30],[0,3],[0,7],[0,1],[0,3],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,4],[0,3],[0,7],[0,4],[0,4],[0,3],[0,9],[0,3],[0,2],[0,3],[0,2],[0,2],[0,7],[0,3],[0,2],[0,9],[0,3],[0,3],[0,1],[0,3],[0,9],[0,3]],[[4363,6241],[2,0],[6,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[4,1],[13,0],[4,0],[4,0],[12,0],[2,0],[3,0],[1,0],[4,0],[3,0],[9,-1],[3,0],[1,0],[9,0],[23,0],[4,0],[9,0],[2,0],[1,0],[4,0],[1,0],[4,0],[11,0],[4,0],[7,0],[19,0],[4,0],[8,0],[1,0],[2,0],[1,0],[3,0],[7,0],[3,0],[1,0],[2,0],[1,0],[1,0],[2,0],[8,0],[2,0],[1,0],[1,0],[4,0],[1,0],[3,0],[8,0],[3,0],[10,0],[8,0],[13,-1],[11,0],[10,-1],[1,0],[1,0],[2,0],[1,0],[6,0],[2,0],[1,0],[1,0],[5,1],[17,0],[3,0],[7,0],[1,0],[4,0],[1,0],[1,-1],[2,0],[8,0],[3,0],[1,0],[1,0],[0,2],[2,0],[1,0],[2,0],[4,0],[2,0],[1,0],[5,0],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[2,0],[8,0],[1,0],[1,0],[1,0],[2,0],[1,0],[8,0],[3,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,5],[0,16],[0,5],[0,3],[0,8],[0,1],[0,2],[0,2],[0,1],[0,4],[0,3],[0,2],[0,3],[0,4],[0,5],[0,9],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,8],[0,1],[0,2],[0,2],[0,5],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,5],[0,1],[0,2],[0,3],[0,3],[0,3],[-1,4],[-2,0],[-9,0],[-2,0],[-2,0],[-4,0],[-1,0],[-1,0],[-3,0],[-6,0],[-1,0],[-16,0],[-6,0],[-2,0],[-2,0],[-5,0],[-2,0],[-1,0],[-3,0],[-12,0],[-3,0],[-1,0],[-10,0],[-1,0],[-13,0],[-3,0],[-10,0],[-4,0],[-11,0],[-3,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-2,0],[0,3],[0,8],[1,3],[-1,1],[1,1],[-1,0],[0,8],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,6],[0,2],[0,3],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,12],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,5],[0,2],[-1,13],[0,5],[0,1],[0,1],[0,1],[0,2],[1,5],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[1,3],[-1,7],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1]],[[4639,6541],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[4,0],[1,0],[1,0],[3,0],[11,0],[16,0],[19,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,0],[1,0],[5,-1],[16,0],[5,0],[2,0],[4,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[3,0],[1,0],[4,0],[2,0],[3,0],[1,0],[1,0],[3,0],[9,-1],[1,0],[1,1],[1,0],[1,0],[2,0],[7,0],[3,0],[3,0],[1,0],[2,0],[3,0],[2,0],[1,0],[1,0],[3,0],[1,0],[3,0],[3,0],[1,0],[2,0],[4,0],[3,0],[1,0],[3,0],[1,0],[1,0],[2,0],[3,0],[2,0],[2,0],[2,0],[7,0],[5,0],[1,0],[1,0],[3,0],[1,0],[3,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[5,0],[2,0],[1,0],[1,0],[29,0],[9,1],[0,-1],[20,1],[2,0],[3,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[3,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[2,0],[0,1],[34,0],[1,0],[1,0],[1,0],[1,0],[46,0],[5,0],[8,0],[1,0],[24,0],[2,0],[5,0],[17,1],[5,0],[1,0],[2,0],[5,0],[22,0],[4,0],[2,0],[17,0],[2,0],[4,-1],[10,0],[10,0],[22,0],[5,0],[5,0],[2,0],[7,0],[2,0],[1,0],[1,0],[30,0],[16,0],[15,0],[1,0],[1,0],[21,0],[1,0],[1,0],[7,0],[2,0],[8,0],[2,0],[4,0],[11,0],[4,0],[1,0],[3,0],[8,0],[2,0],[1,1],[5,0],[14,0],[4,0],[1,0],[1,0],[3,0],[1,0],[6,0],[17,0],[6,0],[1,0]],[[4353,5482],[0,4],[0,9],[0,5],[0,4],[0,2],[0,2],[0,2],[0,3],[0,2],[0,11],[0,3],[0,9],[0,22],[0,11],[0,2],[0,7],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,5],[0,1],[0,1],[0,2],[0,2],[0,4],[0,1],[0,1],[0,2],[0,6],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,4],[0,1],[0,1],[-1,-1],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-5,0],[-2,0],[-1,0],[-2,0],[-2,0],[-5,0],[-1,0],[-3,0],[-8,0],[-2,0],[-1,0],[-3,0],[-1,0],[-28,0],[-1,0],[-6,0],[-1,44],[0,8],[0,25],[0,8],[-1,22],[0,21],[0,3],[0,4],[0,4],[0,2],[0,4],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[2,0],[6,0],[2,1],[0,3],[0,1],[0,2],[0,3],[0,4],[0,2],[0,6],[0,7],[0,10],[-1,6],[0,2],[0,1],[0,12],[0,4],[0,1],[0,2],[0,2],[0,1],[0,3],[0,8],[-1,3],[0,4],[0,10],[0,1],[0,4],[0,1],[0,4],[0,1],[0,1],[0,1],[0,5],[0,2],[0,5],[0,3],[0,12],[0,5],[0,1],[0,3],[0,1],[0,1],[-1,6],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[1,10],[0,3],[0,1],[0,1],[0,1],[0,3],[0,9],[1,3],[0,2],[0,6],[0,2],[0,4],[1,13],[0,4],[0,1],[0,2],[0,1],[0,1],[0,5],[0,1],[0,2],[0,4],[0,1],[0,3],[0,10],[0,3],[0,1],[0,1],[0,1],[0,2],[0,4],[0,2],[0,4],[0,12],[0,4],[0,2],[0,9],[0,2],[0,3],[0,8],[1,3],[0,1],[0,3],[0,1],[0,2],[0,7],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,4],[0,2],[0,1],[0,4],[0,2],[0,4],[0,7],[0,2],[0,5],[0,2],[0,2],[0,7],[0,2],[0,1],[0,3],[0,1],[0,1],[0,4],[0,1],[0,1],[0,3],[0,3],[0,1],[0,6],[0,17],[0,2],[0,6],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[2,0],[3,0],[2,0],[1,0],[2,0],[1,0],[1,0],[3,0],[3,0],[1,0],[5,0],[1,0],[1,0],[2,0],[5,0],[2,0],[1,0],[2,0],[1,0],[7,0],[22,0],[7,0],[1,0],[2,0],[7,0],[3,0]],[[2384,2246],[5,0],[8,0],[2,0],[3,0],[3,0],[48,0],[6,0],[3,0],[5,0],[4,0],[8,0],[3,0],[12,0],[13,0],[10,0],[4,0],[2,0],[3,0],[2,0],[2,0],[1,0],[3,0],[1,0],[7,0],[2,0],[10,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[8,0],[3,0],[2,0],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[22,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[5,0],[6,0],[10,0],[48,0],[16,0],[18,0],[4,0],[6,0],[9,0],[11,0],[17,0],[8,0],[1,0],[17,0],[1,0],[9,0],[9,0],[3,0],[3,0],[44,0],[15,0],[1,0],[15,0],[8,0]],[[2899,796],[-1,0],[-1,0],[-5,0],[-4,0],[-1,0],[-9,0],[-19,0],[-2,0],[-3,0],[-2,0],[-11,0],[-13,0],[-25,0],[-24,0],[-2,0],[-3,0],[-7,0],[-3,0],[-7,0],[-6,0],[-18,0],[-4,0],[-38,0],[-20,0],[-32,0],[-28,0],[-20,0],[-8,0],[-21,0],[-4,0],[-3,0],[-5,0],[-15,0],[-23,0],[-9,0],[-46,0],[-26,1],[-6,0],[-28,-1],[-38,0],[-1,0],[-2,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-7,0],[-1,0],[-2,0],[-4,0],[-4,0],[-3,0],[-8,0],[-2,0],[-5,0],[-15,0],[-10,0],[-15,-1],[-21,0],[-15,0],[-3,0],[-7,0],[-2,0],[-19,0],[-3,0],[-48,0],[-18,0],[-21,0],[-25,0],[-55,0],[-19,0],[-12,0],[-12,0],[-6,0],[-17,0],[-6,0],[-7,0],[-2,0],[-7,0],[-6,0],[-11,0],[-31,0],[-66,0],[-32,0],[-29,0],[-10,0],[-22,0],[-20,1],[-35,-1],[-17,0],[-4,0],[-8,0],[-8,0],[-27,0],[-8,0],[-2,0],[-3,0],[-2,0],[-2,0],[-7,0],[-22,0],[-8,0],[-19,0],[-14,0],[-45,0],[-19,0],[-11,0],[-24,0],[-11,0],[-11,0],[-3,0],[-10,0],[-3,0]],[[7,6399],[0,11],[0,1],[0,7],[0,30],[0,6],[0,3],[0,2],[0,1],[0,11],[0,33],[0,2],[0,56],[0,6],[0,3],[0,68],[-1,46],[0,6],[1,27],[0,18],[0,29],[0,13],[0,7],[0,21],[0,2],[0,26],[0,1],[0,14],[0,9],[0,2],[0,1],[0,10],[0,13],[0,13],[0,2],[0,10],[0,2],[0,4],[0,10],[0,6],[0,1],[0,1],[0,2],[0,13],[0,5],[-1,7],[0,9],[0,17],[0,11],[0,6],[0,9],[0,14],[0,1],[0,3],[0,1],[0,16],[0,6],[0,10],[0,1],[0,11],[0,15],[0,4],[0,3],[0,9],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,10],[0,10],[0,8],[0,1],[0,6],[0,12],[0,4],[0,1],[0,8],[0,1],[0,2],[0,6],[0,1],[0,6],[0,3],[0,3],[0,15],[0,8],[0,1],[0,9],[0,5],[0,10],[0,2],[0,17],[0,1],[0,3],[0,1],[0,13],[0,7],[0,6],[0,11],[0,13],[0,3],[0,9],[0,1],[0,7],[0,6],[0,10],[0,10],[0,5],[0,4],[0,8],[0,13],[0,2],[0,23],[0,8],[0,9],[0,9],[0,2],[0,1],[0,5],[0,5],[0,2],[0,3],[0,11],[0,4],[0,10],[0,1],[0,9],[0,5],[0,15],[0,4],[0,2],[0,1],[0,17],[0,2],[0,4],[0,8],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,12],[0,3],[0,7],[0,2],[0,4],[0,5],[0,7],[0,2],[0,7],[0,12],[0,3],[0,12],[0,2],[0,1],[0,2],[0,2],[0,3],[0,1],[0,1],[0,11],[0,2],[0,8],[0,9],[0,9],[0,5],[0,7],[0,1],[0,1],[0,20],[0,2],[1,6],[0,2],[0,3],[0,1],[0,5],[0,3],[0,9],[0,5],[0,7],[0,2],[0,2],[0,1],[0,1],[0,1],[0,7],[0,8],[-1,2],[0,1],[0,1],[0,15],[0,1],[0,1],[0,1],[0,35],[0,1],[0,45],[0,2],[0,2],[1,1],[0,1],[0,4],[0,1],[0,2],[0,3],[0,6],[0,1],[0,1],[0,9],[0,5],[0,5],[0,2],[0,3],[0,1],[0,9],[0,1],[0,2],[0,20],[0,2],[0,1],[0,15],[0,1],[0,1],[0,1],[0,9],[0,1],[0,14],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,2],[0,5],[0,3],[0,2],[0,3],[0,1],[0,8],[0,6],[0,17],[0,1],[0,4],[0,1],[0,5],[0,2],[0,1],[0,10],[0,1],[0,5],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,3],[0,1],[0,1],[0,2],[0,1],[0,3],[0,3],[0,1],[0,1],[0,1],[0,14],[0,13],[0,5],[0,1],[0,6],[0,2],[0,3],[0,8],[0,8],[0,2],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,10],[0,1],[0,8],[0,1],[0,2],[0,1],[0,1],[0,16],[0,3],[0,1]],[[2694,9998],[1,0],[1,0],[2,0],[2,0],[2,0],[4,0],[2,0],[1,0],[1,0],[3,0],[5,0],[5,0],[4,0],[1,0],[2,0],[1,0],[2,0],[1,0],[15,0],[19,0],[26,0],[15,0],[2,0],[4,0],[1,0],[4,0],[13,0],[5,0],[4,0],[12,0],[4,0],[1,0],[1,0],[3,0],[10,0],[4,0],[2,0],[8,0],[2,0],[3,0],[8,0],[3,0],[6,0],[17,0],[5,0],[1,0],[3,0],[10,0],[3,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[4,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[5,0],[8,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[3,0],[39,0],[1,0],[25,0],[18,0],[1,0],[33,0],[5,0],[9,0],[1,0],[10,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[1,0],[3,0],[1,0],[1,0],[5,0],[1,0],[1,0],[3,0],[1,0],[8,0],[6,0],[19,0],[8,0],[1,0],[1,0],[1,0],[78,0],[1,0],[5,0],[12,0],[4,0],[6,0],[19,0],[6,0],[1,1],[0,-1],[14,0],[7,0],[3,0],[7,1],[3,0],[2,0],[6,-1],[2,0],[0,1],[1,0],[3,0],[1,0],[3,0],[1,0],[12,0],[4,0],[1,0],[1,0],[2,0],[1,0],[1,0],[3,0],[1,0],[2,0],[4,0],[2,0],[2,0],[1,0],[3,0],[1,0],[2,0],[3,0],[14,0],[5,0],[3,0],[2,0],[8,0],[4,0],[2,0],[2,0],[4,0],[2,0],[1,0],[2,0],[2,0],[20,0],[2,0],[1,0],[2,0],[4,0],[1,0],[1,0],[4,0],[1,0],[1,0],[2,0],[5,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[17,0],[7,0],[21,0],[1,0],[1,0],[1,0],[1,-2],[1,-1],[1,-2],[1,-1],[2,-1],[3,-4],[2,-2],[1,-1],[6,0],[2,0],[4,0],[11,0],[3,0],[2,0],[4,0],[1,0],[1,0],[3,0],[1,0],[1,0],[3,0],[1,0],[3,0],[3,0],[7,0],[2,0],[3,0],[7,0],[2,0],[1,0],[1,0],[21,0],[9,0],[5,0],[5,0],[2,0],[4,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[7,0],[2,0],[1,0],[1,0],[9,0],[7,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[8,0],[3,0],[8,0],[3,0],[3,0],[9,0],[2,0],[1,0],[1,0],[3,0],[1,0],[3,0],[9,0],[3,0],[2,0],[6,0],[1,0],[1,0],[4,1],[1,0],[1,0],[2,0],[1,0],[4,0],[2,0],[7,0],[1,0],[10,0],[22,0],[7,0],[8,0],[2,0],[2,0],[6,0],[2,0],[2,0],[7,0],[2,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[3,0],[10,1],[3,0],[3,0],[7,-1],[3,0],[2,0],[5,0],[12,0],[4,0],[1,0],[1,0],[1,0],[3,0],[1,0],[3,0],[8,0],[3,0],[1,0],[1,0],[2,0],[8,0],[3,0],[6,0],[17,0],[5,0],[2,0],[6,0],[1,0],[2,0],[5,0],[1,0],[3,0],[9,0],[3,0],[1,0],[2,0],[3,0],[6,0],[3,0],[1,0],[1,1],[3,0],[1,0],[2,0],[6,0],[2,0],[2,0],[5,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[4,0],[2,0],[2,0],[3,0],[4,0],[19,0],[3,0],[9,0],[3,0],[9,0],[14,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[2,0],[1,0],[2,0],[3,0],[6,0],[2,0],[1,0],[2,0],[8,0],[2,0],[2,0],[16,1],[32,0],[7,0],[27,0],[5,0],[13,0],[4,0],[3,0],[6,0],[27,0],[25,0],[5,0],[1,0],[4,0],[1,0],[1,0],[20,0],[13,0],[8,0],[1,0],[5,0],[8,0],[11,0],[1,0],[8,0],[18,0],[5,0],[8,0],[10,0],[1,0],[5,0],[2,0],[2,0],[6,0],[2,0],[41,0],[19,0],[3,0],[5,0],[12,0],[4,0],[1,0],[1,0],[24,0],[26,0],[6,0],[26,0],[9,0],[1,0],[0,1],[5,0],[10,0],[1,0],[2,0],[5,0],[1,0],[2,0],[1,0],[10,0],[2,0],[1,0],[2,0],[7,0],[13,0],[12,0],[4,0],[7,0],[4,0],[5,0],[12,0],[1,0],[8,0],[4,0],[9,0],[4,0],[2,0],[9,0],[11,0],[2,0],[4,1],[2,0],[1,0],[3,0],[2,0],[1,0],[10,0],[1,0],[3,0],[4,0],[1,0],[12,0],[7,0],[1,0],[1,0],[4,0],[1,0],[2,0],[14,0],[1,0],[3,0],[1,0],[16,0],[4,0],[12,0],[5,0],[1,0],[9,0],[4,0]],[[5510,8197],[0,16],[1,12],[0,9],[0,1],[0,3],[0,1],[-16,0],[-40,-1],[-7,0],[-6,0],[-4,0],[-3,0],[-19,0],[-5,0],[-18,0],[-6,0],[-1,0],[-2,0],[-4,0],[-4,0],[-9,0],[-9,0],[-7,0],[-16,0],[-2,0],[-2,0],[-7,0],[-21,0],[-7,0],[-14,0],[-3,0],[-3,0],[-24,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-2,0],[-35,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-4,0],[-1,0],[-3,0],[-4,0],[-5,0],[-19,0],[-3,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-10,0],[-1,0],[-1,0],[-9,0],[-1,0],[-2,0],[-1,0],[-3,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-9,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-7,0],[-1,0],[-1,0],[-20,0],[-4,0],[-5,0],[-3,0],[-13,0],[-5,0],[-4,0],[-9,0],[-3,0],[-5,0],[-8,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-6,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-4,0],[-1,0],[-2,0],[-2,0],[-4,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[3,-1],[1,-1],[1,0],[5,-2],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1]],[[4948,8211],[-1,0],[1,0]],[[4948,8211],[1,0],[3,-1],[1,0],[0,-1],[0,-13],[0,-9],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-5],[0,-2],[0,-2],[0,-6],[0,-7],[0,-4],[0,-2],[0,-12],[0,-1],[0,-5],[0,-18],[0,-4],[-4,0],[-10,0],[-4,0],[-14,0],[-9,0],[-4,0],[-1,0],[-6,0],[-6,0],[-18,0],[-5,0],[-3,0],[-1,0],[-1,0],[-6,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-3,0],[-4,0],[-1,0],[-1,0],[-6,0],[-4,0],[-17,0],[-2,0],[-6,0],[-2,0],[-39,0],[-17,0],[-1,0],[-2,0],[-9,0],[-73,0],[-1,0],[-28,1]],[[9915,3949],[0,-4],[0,-4],[0,-6],[0,-7],[0,-9],[0,-1],[0,-13],[0,-1],[-1,-4],[1,0],[-1,-3],[0,-2],[0,-8],[0,-5],[0,-6],[-1,-16],[0,-2],[0,-21],[0,-11],[0,-2],[0,-1],[0,-14],[0,-5],[-1,0],[0,-3],[0,-6],[0,-10],[0,-15],[0,-14],[0,-3],[-1,-5],[0,-1],[0,-21],[0,-10],[0,-6],[-1,-15],[0,-7],[0,-9],[-1,-21],[0,-4],[0,-11],[0,-16],[0,-3],[-1,-13],[0,-7],[0,-3],[0,-30],[0,-9],[0,-1],[0,-1],[0,-2],[-1,-18],[0,-17],[0,-10],[-1,-8],[0,-7],[0,-7],[0,-13],[-1,-29],[0,-4],[0,-6],[0,-18],[0,-2],[0,-12],[-1,-6],[0,-4],[0,-2],[0,-1],[0,-3],[0,-4],[0,-17],[0,-1],[0,-2],[-1,-12],[0,-11],[0,-2],[0,-1],[0,-12],[0,-11],[0,-2],[0,-3],[-1,-4],[0,-7],[0,-1],[0,-3],[0,-5],[0,-6],[0,-19],[0,-3],[0,-1],[-1,-9],[0,-3],[0,-1],[0,-9],[0,-3],[0,-25],[-1,-23],[0,-3],[0,-1],[0,-12],[0,-12],[0,-1],[0,-1],[-1,-22],[0,-3],[0,-6],[0,-17],[-1,-9],[0,-4],[0,-4],[0,-2],[0,-9],[0,-9],[0,-12],[0,-5],[-1,-9],[0,-13],[0,-6],[0,-3],[0,-12],[-1,-5],[0,-1],[1,0],[0,-2],[-1,-9],[0,-14],[0,-3],[0,-15],[0,-7],[0,-3],[-1,-15],[0,-3],[0,-5],[0,-2],[0,-1],[0,-1],[0,-23],[0,-2],[0,-10],[0,-9],[0,-7],[0,-9],[0,-26],[0,-1],[0,-1],[0,-5],[0,-18],[0,-13],[0,-29],[0,-11],[1,0],[-1,-26],[0,-11],[0,-7],[0,-12],[0,-19],[0,-1],[0,-12],[0,-2],[0,-37],[0,-1],[0,-24],[0,-2],[0,-1],[0,-7],[0,-16],[0,-1],[0,-1],[0,-17],[0,-3],[0,-2],[0,-2],[0,-2],[0,-8],[0,-3],[0,-1],[0,-5],[0,-5],[0,-3],[0,-2],[0,-1],[0,-7],[0,-4],[0,-12],[0,-8],[0,-10],[0,-5],[0,-13],[0,-4],[0,-3],[0,-4],[0,-1],[0,-1],[0,-6],[0,-11],[0,-6],[0,-5],[0,-4],[0,-18],[0,-1],[0,-2],[0,-10],[0,-15],[0,-26],[0,-11],[0,-13],[0,-14],[1,-37],[-1,-1],[0,-9],[0,-1],[0,-12],[0,-16],[0,-2],[0,-3],[0,-9],[0,-13],[0,-1],[0,-17],[0,-8],[0,-19],[0,-42],[0,-29],[0,-8],[0,-31],[0,-16],[0,-77],[0,-33],[0,-1],[0,-15],[0,-22],[0,-56],[0,-64],[0,-8],[0,-59],[0,-53],[0,-37],[0,-17],[0,-23],[1,-107],[0,-38],[0,-13],[0,-18],[0,-7],[0,-1],[0,-1],[0,-16],[0,-6],[0,-6],[0,-10],[0,-24],[0,-3],[0,-30],[0,-6],[0,-24],[0,-29],[0,-10],[0,-9],[0,-1],[0,-5],[0,-36],[-1,0],[-35,0],[-1,0],[-3,0],[-3,0],[-2,0],[-17,0],[-1,0],[-2,0],[-6,0],[-30,0],[-13,0],[-1,0],[-3,0],[-3,0],[-4,0],[-3,0],[-38,0],[-1,0],[-11,0],[-9,0],[-8,0],[-11,0],[-7,0],[-5,0],[-5,0],[-20,0],[-7,0],[-58,0],[-16,0],[-2,0],[-9,0],[-1,0],[-5,0],[-13,0],[-80,0],[-62,0],[-18,0],[-43,0],[-59,0],[-55,0],[-35,0],[-15,0],[-53,0],[-39,0],[-38,0],[-37,0],[-1,0],[-39,0],[-22,0],[-17,0],[-10,0],[-107,-1],[-5,0]],[[8656,2881],[3,0],[1,0],[1,0],[1,0],[15,0],[1,0],[37,0],[20,0],[0,22],[0,1],[0,5],[0,9],[0,8],[0,16],[0,3],[0,13],[0,10],[0,10],[0,2],[0,1],[0,1],[0,14],[0,10],[0,5],[0,4],[0,18],[0,8],[0,20],[0,35],[0,18],[0,2],[0,1],[1,16],[0,3],[0,1],[0,1],[0,2],[-1,19],[0,2],[0,1],[0,1],[1,6],[-1,7],[1,0],[0,12],[0,1],[0,2],[0,14],[-1,5],[0,5],[0,14],[1,16],[0,1],[0,34],[0,3],[0,1],[0,25],[0,1],[0,1],[0,11],[0,4],[0,9],[0,8],[0,5],[0,16],[-1,0],[0,5],[-1,14],[0,6],[0,4],[0,54],[0,26],[1,19],[0,56],[1,24],[0,1],[0,1],[-1,30],[0,36],[26,0],[3,0],[31,0],[14,1],[1,0],[0,20],[0,3],[0,2],[0,19],[0,1],[0,1],[0,24],[0,6],[0,15],[0,82],[0,7],[0,3],[0,21],[0,40],[0,3],[1,15],[0,6],[-1,11],[1,23],[0,3],[0,1],[18,0],[78,-1],[9,0],[52,0],[18,0],[2,0],[49,1],[1,0],[57,1],[64,0]],[[4639,6541],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,4],[0,1],[0,1],[1,1],[-1,2],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,5],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,7],[0,2],[0,2],[0,7],[0,2],[0,1],[0,1],[0,3],[0,2],[0,2],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,6],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,3],[0,6],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,12],[0,21],[0,1],[0,1],[-1,18],[0,7],[0,13]],[[9934,7774],[0,-25],[0,-26],[0,-30],[0,-59],[0,-2],[0,-4],[0,-1],[0,-1],[0,-4],[0,-2],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-3],[0,-11],[0,-4],[0,-4],[0,-14],[0,-5],[0,-1],[1,-3],[0,-1],[0,-1],[0,-3],[0,-11],[0,-3],[0,-1],[0,-2],[0,-1],[0,-3],[0,-5],[0,-18],[0,-7],[0,-8],[0,-10],[-1,-17],[0,-13],[0,-9],[0,-20],[0,-53],[0,-7],[0,-3],[0,-4],[0,-13],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-2],[0,-27],[0,-81],[0,-27],[-1,-25],[0,-18],[0,-1],[0,-20],[0,-16],[0,-5],[0,-2],[0,-5],[0,-1],[0,-11],[0,-11],[0,-37],[0,-16],[0,-13],[0,-51],[0,-39],[0,-28],[0,-15],[0,-1],[0,-4],[0,-1],[0,-5],[0,-15],[0,-6],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-6],[0,-3],[0,-1],[0,-1],[0,-6],[0,-2],[0,-2],[0,-3],[0,-3],[0,-1],[0,-5],[0,-1],[0,-2],[0,-2],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-2],[0,-8],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-7],[0,-2],[0,-3],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-13],[0,-6],[1,-23],[0,-4],[0,-6],[0,-1],[0,-12],[0,-7],[0,-19],[0,-2],[-1,-4],[0,-5],[1,-14],[0,-4],[0,-7],[0,-11],[0,-9],[0,-7],[0,-1],[0,-5],[0,-2],[0,-4],[0,-12],[0,-4],[0,-4],[0,-10],[0,-1],[0,-3],[0,-1],[0,-4],[0,-1],[0,-2],[0,-4],[0,-2],[0,-1],[0,-1],[0,-3],[0,-3],[0,-2],[0,-1],[0,-4],[0,-1],[0,-1],[0,-7],[0,-2],[0,-3],[0,-4],[0,-8],[0,-4],[0,-2],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-8],[0,-4],[0,-5],[0,-3],[0,-10],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1]],[[4363,6241],[0,7],[0,1],[0,1],[0,1],[0,1],[0,6],[0,17],[-2,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-2,2],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[-2,1],[-1,0],[-3,0],[-2,1],[-6,1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-6,0],[-30,0],[-4,0],[-52,1],[-11,0],[-20,0],[-1,0],[-21,1],[-26,0],[-8,0],[-3,1],[-1,0],[-5,0],[-10,0],[-29,0],[-23,0],[-25,1],[-15,0],[-1,0],[-17,0],[-19,1],[-12,0],[-8,0],[-6,0],[-5,0],[-9,0],[-2,0],[-10,0],[-13,0],[-7,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-1,0],[-1,-1],[0,-1],[-2,-2],[-2,-1],[0,-1],[-1,-1],[0,-1],[-2,-3],[-2,-4],[-1,-2],[0,-1],[0,-1],[0,-1],[-2,-2],[-1,-2],[-1,-1],[0,-1],[-5,-2],[-2,-2],[-2,-1],[-2,-1],[-3,-2],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-18,0],[-1,0],[-9,0],[-9,0],[-1,0],[-6,0],[-24,0],[-2,0],[-1,0],[-57,0],[-35,0],[-35,0],[-10,0],[-43,-1],[-58,0],[-36,1],[-2,0],[-27,0],[-84,-1],[-7,1],[-8,0],[-24,0],[-1,0],[0,1],[0,1],[-1,2],[-1,2],[-1,2],[0,1],[-3,9],[-6,13],[-15,31],[-2,6],[-3,6],[-2,5],[-6,13],[-5,10],[-9,20],[-4,7],[-3,8],[-2,3],[-6,13],[0,1]]],"transform":{"scale":[0.0006048813881388139,0.0005668687868786877],"translate":[-109.050173,31.332172]}}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment