Skip to content

Instantly share code, notes, and snippets.

@darrenjaworski
Last active February 15, 2017 13:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darrenjaworski/4863a03ba8237326447bf4f82eb35184 to your computer and use it in GitHub Desktop.
Save darrenjaworski/4863a03ba8237326447bf4f82eb35184 to your computer and use it in GitHub Desktop.
d3 fitextent and responsive projection
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body {
margin: 0;
}
svg {
fill: steelblue;
}
</style>
</head>
<body>
<svg></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<script>
var width = document.documentElement.clientWidth,
height = width / 2,
svg = d3.select("svg").attr('width', width).attr('height', height),
path,
counties;
d3.json("ok-counties.json", function(error, ok) {
if (error) throw error;
counties = topojson.feature(ok, ok.objects.counties);
path = d3.geoPath()
.projection(d3.geoMercator()
.fitSize([width, height], counties));
svg.append("path")
.datum(counties)
.attr("d", path);
});
var optimizedResize = (function() {
var callbacks = [],
running = false;
// fired on resize event
function resize() {
if (!running) {
running = true;
if (window.requestAnimationFrame) {
window.requestAnimationFrame(runCallbacks);
} else {
setTimeout(runCallbacks, 66);
}
}
}
// run the actual callbacks
function runCallbacks() {
callbacks.forEach(function(callback) {
callback();
});
running = false;
}
// adds callback to loop
function addCallback(callback) {
if (callback) {
callbacks.push(callback);
}
}
return {
// public method to add additional callback
add: function(callback) {
if (!callbacks.length) {
window.addEventListener('resize', resize);
}
addCallback(callback);
}
};
}());
// start process
optimizedResize.add(function() {
width = document.documentElement.clientWidth;
height = width / 2;
svg.attr('width', width).attr('height', height);
path.projection(d3.geoMercator()
.fitSize([width, height], counties));
d3.select('path').attr('d', path);
});
</script>
</body>
</html>
GENERATED_FILES = \
ok-counties.json
all: $(GENERATED_FILES)
.PHONY: clean all
clean:
rm -rf -- $(GENERATED_FILES) build
build/gz/%.tar.gz:
mkdir -p $(dir $@)
curl 'http://dds.cr.usgs.gov/pub/data/nationalatlas/$(notdir $@)' -o $@.download
mv $@.download $@
build/shp/us/counties-unfiltered.shp: build/gz/countyp010_nt00795.tar.gz
build/shp/us/%.shp:
rm -rf $(basename $@)
mkdir -p $(basename $@)
tar -xzm -C $(basename $@) -f $<
for file in $(basename $@)/*; do chmod 644 $$file; mv $$file $(basename $@).$${file##*.}; done
rmdir $(basename $@)
# remove water counties (e.g., Great Lakes)
build/shp/us/counties.shp: build/shp/us/counties-unfiltered.shp
rm -f $@
ogr2ogr -f 'ESRI Shapefile' -where "FIPS NOT LIKE '%000'" $@ $<
build/shp/%/counties.shp: build/shp/us/counties.shp
mkdir -p $(dir $@)
rm -f $@
ogr2ogr -f 'ESRI Shapefile' -where "STATE = '`echo $* | tr a-z A-Z`'" $@ $<
ok-counties.json: build/shp/ok/counties.shp
node_modules/.bin/topojson \
-o $@ \
--id-property=TRACTCE \
-- $(filter %.shp,$^)
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","bbox":[-103.00242477599988,33.61584999900015,-94.43104484899993,37.00230566500005],"geometries":[{"type":"Polygon","arcs":[[0,1,2,3]]},{"type":"Polygon","arcs":[[4,5,6,7,8,9]]},{"type":"Polygon","arcs":[[10,11,12,13,14]]},{"type":"Polygon","arcs":[[15,16,17,18,-1,19]]},{"type":"Polygon","arcs":[[-3,20,21,-5,22]]},{"type":"Polygon","arcs":[[23,24,25,26]]},{"type":"Polygon","arcs":[[-26,27,28,-11,29]]},{"type":"Polygon","arcs":[[-9,30,31,-24,32]]},{"type":"Polygon","arcs":[[33,-16,34]]},{"type":"Polygon","arcs":[[-14,35,36,37,38]]},{"type":"Polygon","arcs":[[39,40]]},{"type":"Polygon","arcs":[[41,42,-40,43]]},{"type":"Polygon","arcs":[[-38,44,45,-42,46]]},{"type":"Polygon","arcs":[[47,48,49,-36,-13]]},{"type":"Polygon","arcs":[[50,51,52,53,-17,-34]]},{"type":"Polygon","arcs":[[54,55,56,57,-31,-8]]},{"type":"Polygon","arcs":[[58,59,60,-21,-2,-19]]},{"type":"Polygon","arcs":[[-32,-58,61,62,63,-28,-25]]},{"type":"Polygon","arcs":[[-50,64,65,66,-45,-37]]},{"type":"Polygon","arcs":[[67,68,69,-55,-7]]},{"type":"Polygon","arcs":[[-54,70,71,-59,-18]]},{"type":"Polygon","arcs":[[-29,-64,72,73,74,-48,-12]]},{"type":"Polygon","arcs":[[-61,75,76,77,-68,-6,-22]]},{"type":"Polygon","arcs":[[78,79,80,-56,-70]]},{"type":"Polygon","arcs":[[81,82,83,-73,-63]]},{"type":"Polygon","arcs":[[-57,-81,84,85,-82,-62]]},{"type":"Polygon","arcs":[[-84,86,87,88,89,-74]]},{"type":"Polygon","arcs":[[90,91,-65,-49,-75,-90]]},{"type":"Polygon","arcs":[[-78,92,93,94,-79,-69]]},{"type":"Polygon","arcs":[[-72,95,96,97,-76,-60]]},{"type":"Polygon","arcs":[[-53,98,99,100,-96,-71]]},{"type":"Polygon","arcs":[[101,102,-99,-52]]},{"type":"Polygon","arcs":[[-92,103,104,105,-66]]},{"type":"Polygon","arcs":[[-95,106,107,108,-85,-80]]},{"type":"Polygon","arcs":[[-77,-98,109,110,111,-93]]},{"type":"Polygon","arcs":[[-101,112,113,114,-110,-97]]},{"type":"Polygon","arcs":[[-89,115,116,117,-104,-91]]},{"type":"Polygon","arcs":[[118,119,120,121,122,-87,-83]]},{"type":"Polygon","arcs":[[-109,123,124,-119,-86]]},{"type":"Polygon","arcs":[[-103,125,126,127,-113,-100]]},{"type":"Polygon","arcs":[[-112,128,129,130,131,-107,-94]]},{"type":"Polygon","arcs":[[132,133,134,-129,-111,-115]]},{"type":"Polygon","arcs":[[-123,135,136,137,138,-116,-88]]},{"type":"Polygon","arcs":[[-118,139,140,141,142,143,-105]]},{"type":"Polygon","arcs":[[144,145,146,-131]]},{"type":"Polygon","arcs":[[-139,147,-140,-117]]},{"type":"Polygon","arcs":[[-132,-147,148,149,150,-124,-108]]},{"type":"Polygon","arcs":[[151,152,153,-133,-114,-128]]},{"type":"Polygon","arcs":[[154,155,156,-152,-127,157]]},{"type":"Polygon","arcs":[[158,159,160,161,-136,-122]]},{"type":"Polygon","arcs":[[-151,162,-120,-125]]},{"type":"Polygon","arcs":[[-150,163,164,-159,-121,-163]]},{"type":"Polygon","arcs":[[-154,165,166,167,168,169,-134]]},{"type":"Polygon","arcs":[[-135,-170,170,171,-145,-130]]},{"type":"Polygon","arcs":[[-138,172,173,174,175,-141,-148]]},{"type":"Polygon","arcs":[[-176,176,177,-142]]},{"type":"Polygon","arcs":[[-157,178,-166,-153]]},{"type":"Polygon","arcs":[[-178,179,180,-143]]},{"type":"Polygon","arcs":[[-146,-172,181,182,183,184,-164,-149]]},{"type":"Polygon","arcs":[[185,186,-180,-177,-175]]},{"type":"Polygon","arcs":[[-137,-162,187,188,189,-173]]},{"type":"Polygon","arcs":[[-185,190,191,192,-160,-165]]},{"type":"Polygon","arcs":[[-169,193,194,-182,-171]]},{"type":"Polygon","arcs":[[-193,195,196,197,-188,-161]]},{"type":"Polygon","arcs":[[198,199,200,201,-194,-168]]},{"type":"Polygon","arcs":[[-156,202,203,-199,-167,-179]]},{"type":"Polygon","arcs":[[-184,204,205,-191]]},{"type":"Polygon","arcs":[[-190,206,207,-186,-174]]},{"type":"Polygon","arcs":[[-206,208,209,210,211,-196,-192]]},{"type":"Polygon","arcs":[[-183,-195,-202,212,213,-209,-205]]},{"type":"Polygon","arcs":[[-198,214,215,-207,-189]]},{"type":"Polygon","arcs":[[216,217,-203,-155]]},{"type":"Polygon","arcs":[[-212,218,219,220,221,-215,-197]]},{"type":"Polygon","arcs":[[222,223,224,-210,-214]]},{"type":"Polygon","arcs":[[225,226,-223,-213,-201]]},{"type":"Polygon","arcs":[[-218,227,-226,-200,-204]]},{"type":"Polygon","arcs":[[-225,228,-221,219,-219,-211]]}]}},"arcs":[[[8860,9990],[0,-30],[0,-6],[0,-46],[0,-5],[0,-5],[0,-8],[0,-5],[0,-3],[0,-10],[0,-49],[-3,0],[-2,0],[-1,0],[-2,0],[-13,0],[-7,0],[-1,-119],[0,-44],[0,-22],[0,-15],[0,-5],[1,-10],[-1,-28],[0,-4],[0,-8],[0,-37],[1,-20],[0,-32],[0,-1],[0,-32],[0,-12],[-1,-21],[0,-9],[1,-43],[0,-32],[0,-11],[0,-39],[0,-4],[0,-21],[0,-18],[0,-8],[0,-61],[0,-21],[0,-34],[0,-9],[0,-20],[0,-5],[0,-7],[0,-10],[0,-29],[0,-12],[0,-6],[0,-14],[-1,-20],[0,-4],[1,-31],[0,-4],[0,-9],[0,-21],[0,-21],[0,-5],[0,-33],[0,-4],[0,-3],[0,-24],[0,-17]],[[8832,8804],[-2,0],[-3,0],[-2,0],[-4,0],[-5,0],[-3,0],[-2,0],[-5,0],[-5,0],[-6,0],[-5,0],[-5,0],[-2,0],[-12,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-8,0],[-3,0],[-6,-1],[-1,0],[-2,1],[-15,0],[-2,0],[-3,0],[-8,0],[-5,0],[-4,0],[-15,0],[-14,0],[-8,0],[-3,0],[-3,0],[-12,0],[-3,0],[-22,0],[-17,0],[-8,0],[-17,0],[-4,0],[-7,0],[-5,0],[-4,0],[-22,0],[-4,0],[-3,0],[-14,0],[-4,0],[-1,0],[-5,0],[-15,0],[-15,0],[-2,0],[-4,0],[-7,0],[-4,0],[-3,-1],[-24,1],[-21,0],[-19,0],[-2,0]],[[8391,8804],[0,7],[0,35],[0,27],[0,4],[0,5],[0,3],[0,5],[0,21],[0,23],[0,7],[0,3],[0,5],[0,5],[0,21],[0,32],[0,10],[0,43],[0,22],[0,12],[0,9],[0,11],[0,32],[0,4],[0,4],[0,5],[0,27],[0,3],[0,15],[0,8],[0,7],[-1,14],[1,4],[0,17],[0,21],[0,9],[0,12],[0,21],[0,38],[0,1],[-1,3],[1,14],[0,10],[0,22],[0,19],[0,31],[0,16],[0,16],[0,41],[0,8],[0,16],[0,23],[0,43],[-1,5],[0,13],[0,4],[0,20],[0,4],[0,6],[0,24],[0,9],[0,5],[0,17],[0,3],[0,7],[0,5],[0,3],[0,3],[0,6],[0,9],[0,28],[0,6],[0,26],[3,0],[1,0],[2,0],[16,0],[5,0],[1,43],[-1,10],[0,7],[0,25],[0,11],[0,11],[1,22],[-1,40]],[[8417,9990],[5,0],[17,0],[7,0],[1,0],[2,0],[6,0],[5,0],[5,0],[5,0],[11,0],[5,0],[3,0],[9,0],[3,0],[6,0],[6,0],[10,0],[5,0],[3,0],[4,0],[11,0],[3,0],[6,0],[5,0],[5,0],[5,0],[11,0],[2,0],[3,0],[5,0],[7,0],[3,0],[2,0],[1,0],[1,0],[2,0],[5,0],[5,0],[4,0],[4,0],[3,0],[3,0],[3,0],[4,0],[10,0],[4,0],[11,0],[3,0],[4,0],[3,0],[7,0],[4,0],[7,0],[13,0],[8,0],[6,0],[8,0],[1,0],[7,0],[4,0],[4,0],[2,0],[4,0],[1,0],[3,0],[2,0],[3,0],[4,0],[1,0],[2,0],[2,0],[3,0],[3,0],[4,0],[4,0],[1,0],[2,0],[5,0],[1,0],[2,0],[16,0],[2,0],[2,0],[2,0],[1,0],[4,0],[2,0],[1,0],[6,0],[3,0],[3,0],[3,0],[3,0],[2,0],[2,0],[7,0],[3,0],[3,0],[4,0]],[[8168,9989],[0,-25],[0,-51],[0,-32],[0,-105],[0,-1],[0,-38],[0,-24],[0,-49],[0,-4],[0,-38],[0,-10],[0,-8],[0,-2],[0,-1],[0,-26],[0,-56],[0,-6],[0,-11],[0,-27],[0,-10],[0,-12],[0,-7],[0,-19],[0,-22],[0,-23],[0,-15],[0,-7],[0,-12],[0,-6],[0,-10],[0,-7],[0,-4],[0,-6],[0,-1],[0,-4],[0,-6],[0,-4],[0,-20],[0,-4],[0,-16],[0,-1],[0,-1],[0,-4],[0,-1],[0,-4],[0,-15],[0,-4],[0,-6],[0,-3],[0,-5],[0,-4],[0,-15],[0,-5],[0,-10],[0,-1],[0,-6],[0,-9],[0,-7],[0,-14],[0,-10],[0,-28],[0,-13],[0,-33],[0,-14],[0,-11],[0,-4],[0,-4],[0,-43],[0,-11],[0,-4],[0,-9],[0,-12],[0,-8],[0,-8],[0,-4],[0,-5],[0,-8],[0,-3],[0,-14],[0,-3],[0,-6],[0,-5],[0,-41],[0,-11],[0,-24],[0,-49],[0,-7],[0,-44],[0,-12],[0,-17],[0,-4],[0,-5],[0,-42],[0,-9],[0,-25],[0,-6],[0,-73],[-1,-12],[0,-32],[0,-13],[0,-26],[0,-10],[0,-5],[0,-9],[0,-6],[0,-10],[0,-7],[0,-13],[0,-10],[0,-5],[0,-4],[0,-5],[0,-11],[0,-20],[0,-9],[0,-13],[0,-5]],[[8167,8291],[0,-4],[0,-10],[0,-12],[0,-1],[0,-7],[0,-7],[0,-8],[0,-1],[0,-5],[0,-6],[0,-12],[0,-2],[0,-6],[0,-9],[0,-24],[0,-21],[0,-9],[0,-5],[0,-5],[0,-6],[0,-3],[0,-6],[0,-5],[0,-4],[0,-6],[0,-5],[0,-5],[0,-3],[0,-8],[0,-9],[0,-3],[0,-10],[0,-9],[0,-7],[0,-15],[0,-6],[0,-5],[0,-10],[0,-9],[0,-10],[0,-4],[0,-5],[0,-2],[0,-5],[0,-11],[0,-4],[0,-15],[0,-12],[0,-9],[0,-4],[0,-4],[0,-8],[0,-5],[0,-13],[0,-9],[0,-6],[0,-5],[0,-8],[0,-1],[0,-3],[0,-12],[0,-31],[0,-20],[0,-21],[0,-6],[0,-4],[0,-4],[0,-3],[0,-4],[0,-3],[0,-10],[0,-9],[0,-12],[0,-8],[0,-5],[0,-4],[0,-4],[0,-9],[0,-4],[0,-19],[0,-22],[0,-24],[0,-2],[0,-15],[0,-3],[0,-8],[0,-3],[0,-6],[0,-3],[0,-10],[0,-6],[0,-1],[0,-6],[0,-3],[0,-6],[0,-5],[0,-7],[0,-3],[0,-4],[0,-4],[0,-8],[0,-3],[-1,0],[-2,0],[-4,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-1,0],[-1,-1],[-3,0],[-2,0],[-6,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-4,0],[-2,0],[-3,0],[-5,0],[-5,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-4,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-9,0],[-2,0],[-8,0],[-2,0],[-4,0],[-2,0],[-3,0],[-13,0],[-5,0],[-16,0],[-2,0],[-2,0],[-6,0],[-3,0],[-6,0],[-4,0],[-5,0],[-5,0],[-7,0],[-3,0],[-1,0],[-16,0],[-22,1],[-2,0],[-3,0],[-3,0],[-5,0],[-8,1],[-5,0],[-11,0],[-3,0],[-6,1],[-3,-1],[-4,1],[-3,0],[-3,0],[-7,0],[-4,0]],[[7856,7518],[-1,7],[-1,5],[0,4],[0,2],[0,3],[0,2],[0,3],[0,16],[1,15],[2,4],[1,1],[2,2],[3,2],[1,0],[5,9],[3,9],[3,6],[2,4],[3,14],[4,16],[0,17],[0,7],[-2,8],[-2,8],[-1,5],[-5,11],[-1,2],[-9,4],[-12,5],[-2,2],[-1,0],[0,1],[-1,-1],[-11,4],[-8,5],[0,1],[-3,1],[-3,1],[-1,0],[-1,1],[-9,0],[-5,-3],[-12,0],[-3,-2],[-16,0],[-1,0],[-1,2],[-1,0],[-6,4],[-3,3],[-6,7],[-2,2],[-6,12],[-3,6],[0,3],[-1,7],[-2,6],[-7,14],[-2,6],[-6,14],[-13,24],[-2,4],[-4,6],[-5,5],[-1,1],[-9,9],[-4,7],[-8,8],[-5,2],[-4,5],[-6,10],[-2,5],[-1,1],[-4,4],[-1,0],[-1,0],[-2,5],[-1,16],[1,5],[-6,11],[0,2],[-4,25],[-1,16],[0,11],[0,3],[-4,16],[-2,6],[0,1],[-5,9],[-1,1],[-8,10],[-9,0],[-10,-4],[-4,-4],[-4,-8],[-2,-6],[-1,-6],[-3,-7],[-2,-9],[-4,-19],[0,-2],[-1,-3],[-1,-11],[-1,-6],[-2,-5],[-4,-7],[-5,-9],[-1,-2],[-6,-6],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-4,-1],[-4,0],[-2,0],[-9,0],[-2,0],[-5,3],[-1,1],[-1,0],[-5,3],[-1,0],[-1,2],[-3,3],[-1,3],[-5,6],[-6,8],[-1,0],[-1,4],[-2,4],[-1,1],[-1,3],[-1,4],[-4,11],[0,1],[0,15],[0,3],[1,21],[0,4],[0,3],[0,3],[1,6],[2,5],[3,9],[0,2],[2,2],[2,8],[1,4],[1,2],[4,7],[0,1],[0,1],[1,4],[1,1],[3,4],[1,1],[1,-1],[4,1],[2,1],[6,3],[2,1],[1,1],[2,1],[1,1],[0,1],[1,2],[1,0],[1,1],[1,1],[4,9],[9,19],[1,4],[2,2],[0,1],[1,3],[0,13],[1,3],[-1,2],[0,10],[0,1],[-1,4],[0,2],[0,1],[0,5],[-2,11],[-2,5],[0,2],[0,3],[-2,5],[-1,2],[-2,1],[-2,3],[-1,5],[0,3],[-1,2],[-1,2],[-3,4],[-3,2],[-1,2],[-1,1],[-1,-1],[-2,-1],[-3,-6],[-2,-1],[-1,-1],[-3,-3],[-3,-7],[-1,-2],[0,-1],[-1,-2],[-2,-3],[-1,-3],[-2,0],[-1,0],[-1,-3],[-1,-3],[0,-2],[-1,-5],[-6,-16],[-1,-4],[-2,-3],[-2,-3],[0,-1],[-1,-1],[-4,-6],[-2,-1],[-1,-1],[-6,0],[-1,1],[-3,2],[-9,5],[-1,0],[-1,2],[-2,3],[0,1],[-2,4],[-2,2],[-1,3],[0,1],[0,1],[0,1],[-1,4],[0,4],[0,5],[0,2],[0,4],[-1,5],[0,9],[-1,5],[0,8],[-1,8],[-1,3],[-1,3],[0,1],[-1,2],[-1,1],[-1,2],[-2,3],[-1,1],[-2,2],[-1,0],[-1,1],[-2,2],[-3,4],[-1,4],[-1,3],[0,2],[0,3],[-1,4],[-1,5],[0,4],[-1,0],[0,1],[-2,5],[-5,9],[-3,6],[-5,4],[-1,0],[-1,-1],[-1,-3],[-4,-2],[-5,0],[-1,-1],[-1,2],[-3,0],[-1,-1],[-4,0],[-5,-3],[-4,0],[-1,0],[-2,-3],[0,-1],[-1,0],[-5,-2],[-2,-2],[-1,0],[-4,0],[-1,1],[-3,3],[-2,0],[-2,0],[-3,2],[0,2],[-1,1],[-2,1],[-2,1],[0,1],[-2,3],[-1,5],[-2,2],[-3,6],[-3,4],[-4,8],[-2,3],[-1,3],[-2,6],[-1,3],[-4,3],[-3,5],[-2,4],[0,3],[-1,3],[0,3],[0,7],[0,8],[-1,3],[0,6],[0,2],[2,6],[0,1],[1,3],[2,4],[1,4],[2,6],[0,4],[-1,4],[0,1],[0,6],[2,13],[2,5],[1,0],[1,4],[1,2],[1,8],[0,1],[0,5],[0,9],[-1,7],[-2,12],[-2,4],[-5,2],[-1,1],[-2,1],[-1,3],[-1,2],[-1,4],[-1,6],[-3,4],[0,1],[-4,10],[0,4],[0,1],[0,8],[2,3],[1,6],[0,9],[0,2],[0,8],[0,9],[-2,9],[-1,14],[-1,7],[0,1],[-2,6],[0,4],[-1,7],[-3,16],[-1,6],[-1,2],[-2,3],[-1,7],[-1,7],[-1,2],[-3,7],[-7,12],[-5,8],[-2,6],[-1,0],[-1,0],[-1,-1],[-3,0],[-5,4],[-2,4],[-4,2],[-2,0],[-1,-1],[-1,0],[-1,-1],[-13,-12],[-1,-1],[-4,-4],[-1,-1],[-1,-3],[-1,-4],[-1,0],[-2,-5],[-3,-3],[-3,1],[-1,0],[-2,-1],[-4,-6],[-5,-12],[-1,-2],[-1,-4],[-2,-4],[-1,-2],[-2,0],[-1,0],[-7,-10],[-1,-2],[0,-1],[-2,-11],[-4,-16],[-1,-2],[0,-1],[-4,-5],[-2,-2],[-4,-9],[-2,-7],[0,-3],[0,-5],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[0,-3],[0,-4],[-1,-6],[-1,-3],[-2,-4],[-1,-1],[-1,-6],[-2,-6],[0,-1],[0,-3],[-2,-6],[-1,-2],[-1,-2],[-4,-9],[0,-5],[0,-4],[0,-2],[-2,-5],[-1,-3],[-3,-9],[-1,-2],[-1,-3],[-3,0],[-1,-1],[-1,-2],[-1,-2],[0,-1],[-1,-4],[-2,-3],[-1,-2],[-2,-4],[-2,-6],[0,-1],[0,-2],[-2,-5],[-3,-7],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,2],[-1,0],[-5,4],[-1,1],[-4,0],[-1,-1],[-1,-1],[-2,-3],[-2,-4],[0,-1],[-3,-2],[-3,0],[-1,1],[-1,1],[-1,-1],[-2,1],[-5,-3],[-5,0],[-2,-2],[-2,-5],[-1,-3],[-2,-4],[-1,-1],[-2,-1],[-1,0],[-1,1],[-1,1],[-2,0],[0,-1],[-6,-12],[-2,-3],[-1,-2],[0,-1],[0,-1],[-1,-3],[-1,0],[-8,-2],[-5,4],[-1,1],[-9,9],[-1,0],[-8,1],[-7,-1],[-1,1],[-1,1],[-1,0],[-2,2],[-4,4],[0,1],[-1,1],[-1,0],[-1,4],[-2,1],[-1,0],[0,1],[-2,2],[-1,2],[0,8],[-2,5],[-2,5],[-3,5],[-7,12],[-2,2],[-1,3],[-3,2],[-1,1],[-1,2],[-3,8],[-1,2],[0,3],[-1,3],[-1,3],[0,10],[-2,14],[0,1],[0,1],[0,5],[0,2],[0,1],[0,4],[-1,4],[0,3],[0,4],[0,1],[0,4]],[[6991,8536],[0,4],[0,1],[0,12],[1,11],[0,3],[1,4],[1,1],[1,4],[1,5],[4,9],[1,3],[1,1],[9,10],[1,0],[6,5],[1,2],[4,6],[0,1],[5,3],[3,1],[4,0],[2,0],[2,-1],[1,-1],[5,-3],[6,0],[2,2],[6,5],[2,4],[2,3],[2,4],[1,4],[0,2],[1,3],[2,4],[5,6],[2,3],[1,0],[6,8],[6,6],[4,2],[8,0],[2,-1],[1,0],[2,-1],[2,-2],[5,-1],[1,0],[2,0],[2,2],[2,4],[0,1],[1,2],[1,4],[1,6],[5,11],[1,2],[1,4],[0,2],[1,2],[0,1],[0,4],[1,16],[1,6],[0,1],[0,2],[-2,4],[-2,2],[-1,2],[0,1],[-1,3],[-1,3],[-6,13],[-1,3],[-6,11],[0,2],[-1,2],[0,3],[-1,4],[-1,2],[-3,7],[-1,4],[-1,2],[-4,4],[-2,1],[-2,1],[-3,0],[-2,0],[-2,-1],[-1,0],[-4,-7],[-2,-3],[-3,-2],[0,-1],[-3,0],[-3,-1],[-1,-1],[-2,-1],[0,-1],[-4,-5],[-2,-4],[-3,-4],[-2,-1],[-3,0],[-5,0],[-3,-2],[0,-2],[-1,-1],[-9,-5],[-6,-2],[-4,0],[-2,1],[-2,1],[-2,0],[-8,-3],[-5,-1],[-1,0],[-2,-1],[-4,-3],[-1,-1],[-1,-1],[-5,0],[-4,1],[-9,2],[-21,6],[-3,2],[-10,9],[-5,3],[-2,2],[-2,3],[0,7]],[[6940,8795],[3,6],[2,0],[2,2],[2,4],[1,10],[0,3],[-8,34],[0,7],[0,3],[2,5],[1,2],[0,7],[0,1],[0,4],[0,2],[0,12],[-1,5],[0,2],[-1,15],[0,11],[-1,6],[0,1],[-1,3],[-2,3],[-2,2],[-1,2],[-4,11],[-2,5],[0,1],[-1,4],[-1,8],[-1,10],[0,22],[-1,26],[1,2],[0,1],[0,12],[0,5],[0,3],[1,3],[0,1],[1,5],[0,2],[3,7],[2,2],[2,0],[2,1],[0,1],[6,8],[4,5],[1,3],[2,3],[1,4],[2,5],[1,3],[1,1],[3,-4],[4,-4],[5,-6],[2,-3],[2,-1],[8,-1],[3,1],[1,2],[2,0],[5,-1],[1,-1],[1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[4,0],[3,-1],[1,-1],[1,-3],[1,-1],[4,-4],[1,-1],[1,-1],[2,0],[1,0],[1,1],[1,2],[5,2],[5,-1],[2,-1],[0,-1],[1,-2],[7,-1],[4,1],[3,1],[0,1],[1,0],[4,-1],[2,-2],[3,-4],[0,-1],[3,-5],[2,-2],[3,0],[2,1],[3,1],[4,2],[1,0],[1,-1],[2,-2],[4,1],[2,1],[2,3],[1,2],[1,1],[1,10],[3,9],[1,3],[0,4],[0,5],[0,1],[0,5],[-1,1],[0,3],[2,1],[2,-1],[0,1],[1,3],[1,4],[1,10],[1,14],[0,18],[4,5],[3,6],[1,2],[1,3],[3,6],[1,7],[2,9],[0,11],[1,6],[2,3],[3,5],[2,7],[4,7],[3,8],[6,12],[1,4],[1,1],[1,1],[2,1],[1,-2],[2,0],[2,0],[2,0],[2,0],[2,3],[2,0],[1,2],[3,1],[3,-1],[3,-1],[3,-4],[3,-5],[3,-4],[6,-7],[2,0],[2,0],[2,-1],[2,-2],[4,-3],[2,0],[2,-1],[3,-1],[4,0],[4,2],[4,3],[3,4],[1,5],[2,5],[2,8],[1,10],[1,9],[0,8],[0,5],[-2,4],[-1,3],[-2,5],[3,0],[5,0],[1,0],[3,0],[2,0],[3,0],[23,0],[0,21],[0,21],[12,1],[8,0],[13,-1],[2,1],[1,-1],[1,1],[1,0],[4,0],[0,41],[0,28],[0,17],[0,7],[0,36],[0,5],[0,6],[0,24],[0,16],[0,23],[0,6],[0,18],[0,4],[0,3],[1,5],[-1,22],[0,13],[0,47],[0,24],[0,23],[0,14],[0,5],[0,45],[0,38],[2,0],[1,19],[0,24],[0,44],[0,32],[0,18],[0,33]],[[7294,9989],[10,1],[3,0],[2,0],[6,0],[22,0],[3,0],[1,0],[5,0],[21,0],[1,0],[13,0],[27,0],[0,-1],[5,0],[24,0],[3,0],[20,0],[11,0],[24,0],[12,0],[16,0],[29,-1],[4,0],[20,0],[9,0],[21,1],[36,1],[1,0],[17,0],[24,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[6,0],[2,0],[2,0],[6,0],[1,0],[2,0],[8,0],[4,0],[2,0],[1,0],[4,0],[3,0],[2,0],[5,0],[6,0],[10,0],[1,0],[8,0],[4,0],[3,0],[2,0],[2,0],[7,0],[2,0],[3,0],[2,0],[6,0],[8,0],[3,0],[4,0],[8,0],[1,0],[15,0],[1,0],[7,0],[1,0],[2,0],[2,0],[3,0],[2,0],[8,0],[6,0],[1,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[7,0],[2,-1],[4,1],[1,0],[2,0],[1,0],[4,0],[1,0],[2,0],[2,0],[9,0],[6,0],[5,0],[3,0],[2,-1],[4,0],[1,1],[5,0],[3,0],[1,0],[1,0],[2,0],[1,0],[2,0],[2,0],[1,0],[9,0],[3,0],[6,0],[9,-1],[5,0],[3,1],[2,-1],[4,0],[2,0],[3,0],[3,1],[1,-1],[7,0],[2,0],[10,0],[1,0],[2,0],[4,1],[7,0],[4,0],[1,0],[16,0],[2,0],[2,0],[11,0],[2,0],[15,-1],[4,0],[6,0],[1,0],[3,0],[5,0],[3,0],[15,0],[14,0],[2,0],[1,0],[2,0],[2,0],[20,0]],[[5200,9989],[0,-12],[0,-12],[0,-15],[0,-17],[0,-10],[0,-10],[0,-6],[0,-5],[0,-4],[0,-31],[0,-13],[0,-3],[0,-3],[0,-26],[1,0],[1,0],[3,0],[0,-12],[0,-6],[0,-4],[0,-4],[0,-4],[0,-4],[0,-3],[0,-6],[0,-24],[0,-3],[0,-7],[0,-4],[0,-7],[0,-7],[0,-3],[0,-9],[0,-21],[0,-9],[0,-5],[0,-22],[0,-7],[0,-28],[0,-4],[0,-11],[0,-21],[0,-14],[0,-4],[0,-4],[0,-14],[0,-6],[0,-4],[0,-4],[0,-7],[0,-4],[0,-4],[0,-21],[0,-35],[0,-5],[0,-4],[0,-20],[0,-6],[0,-4],[0,-3],[0,-9],[0,-20],[0,-1],[0,-5],[0,-12],[0,-4],[0,-22],[0,-4],[0,-10],[0,-3],[0,-4],[0,-3],[0,-5],[0,-5],[0,-4],[0,-5],[0,-11],[0,-4],[0,-5],[0,-9],[0,-4],[0,-10],[0,-11],[0,-3],[0,-29],[0,-21],[0,-22],[0,-3],[0,-10],[0,-4],[0,-5],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-42],[0,-22],[0,-21],[0,-7],[0,-4],[0,-7],[0,-4],[0,-13],[0,-4],[0,-4],[0,-4],[0,-10],[0,-7],[0,-4],[0,-3],[0,-4],[0,-4],[0,-4],[0,-3],[0,-8],[0,-5],[0,-4],[0,-11],[0,-7],[0,-5],[0,-4],[0,-1],[0,-19],[0,-10],[0,-11],[0,-9],[0,-2],[0,-7],[0,-16],[0,-9],[0,-3],[0,-4],[0,-6],[0,-4],[0,-5],[0,-3],[0,-8],[0,-6],[0,-4],[3,0],[3,0],[2,0],[0,-4],[0,-6],[0,-4],[0,-5],[0,-6],[0,-6],[0,-6],[0,-8],[0,-5],[0,-6],[0,-11],[0,-7],[0,-5],[0,-8],[0,-7],[0,-5],[0,-26],[0,-5],[0,-12],[0,-5],[0,-4],[0,-5],[0,-8],[0,-4],[0,-5],[0,-3],[0,-5],[0,-4],[0,-8],[0,-3],[0,-7],[0,-13],[0,-4],[0,-4],[0,-8],[0,-5],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-7],[0,-10],[0,-5],[0,-6],[0,-3],[0,-8],[0,-4],[0,-3],[0,-4],[0,-3],[0,-5],[0,-6],[0,-5],[0,-7],[0,-5],[0,-5],[0,-3],[0,-5],[0,-3],[0,-3],[0,-3],[0,-5],[0,-5],[0,-4],[0,-6],[0,-6]],[[5213,8407],[0,-6],[0,-9],[0,-10],[0,-10],[0,-5],[0,-26],[0,-11],[0,-8],[0,-42],[0,-10],[0,-25],[0,-7],[0,-5],[0,-20],[-9,8],[-4,2],[-3,0],[-6,4],[-5,0],[-3,-1],[-2,-2],[-3,-3],[-4,-1],[-24,-13],[-25,-13],[0,2],[-2,2],[-2,1],[-3,0],[-2,0],[-3,-1],[-7,2],[-7,4],[-1,2],[-2,3],[-6,3],[-1,1],[-4,3],[-3,1],[-2,0],[-17,15],[-5,4],[-21,18],[-3,2],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-3,3],[-5,3],[-2,3],[-7,9],[-2,5],[-3,3],[-1,7],[-5,19],[-5,20],[-1,3],[-9,21],[-4,2],[-15,7],[-1,0],[-7,-1],[-13,-4],[-2,0],[-12,2],[-9,4],[-19,22],[-6,7],[-6,6],[-11,25],[-2,3],[-2,10],[-3,12],[-3,10],[-2,4],[-2,5],[-3,13],[-2,7],[-5,25],[-7,20],[-10,0],[-1,0],[-2,0],[-17,1],[-1,0],[-3,0],[-3,1],[-5,0],[-6,0],[-16,0],[-30,0],[-1,0],[-12,0],[-1,0],[-7,0],[-21,0]],[[4715,8536],[1,128],[0,86],[0,11],[0,3],[-1,4],[1,3],[0,35],[-2,2],[-3,1],[-3,1],[-2,0],[-2,1],[-3,-3],[-1,-1],[-1,0],[-3,2],[-1,1],[-3,3],[0,2],[-1,2],[0,1],[-1,3],[-1,12],[0,1],[0,2],[0,4],[0,3],[-4,11],[-2,5],[-1,1],[-1,1],[-3,5],[-4,15],[-3,8],[-2,2],[0,1],[-2,2],[-1,2],[-1,0],[-5,5],[-2,3],[0,4],[0,1],[-1,0],[0,3],[0,2],[0,3],[-1,4],[-1,4],[-1,4],[0,1],[-1,1],[-1,0],[-2,0],[-2,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,2],[-1,4],[0,1],[0,2],[0,3],[0,3],[0,1],[0,1],[0,2],[0,1],[-1,3],[0,1],[-1,2],[0,4],[0,1],[1,7],[0,1],[1,1],[0,3],[0,2],[1,2],[0,1],[0,1],[0,2],[-1,4],[0,3],[-1,0],[0,1],[-1,1],[0,1],[-3,4],[-2,3],[0,1],[-1,1],[0,1],[-1,3],[0,1],[-3,4],[-1,1],[-1,1],[-1,0],[-3,12],[-1,6],[0,5],[0,2],[0,4],[-1,1],[-1,5],[-3,5],[-2,5],[-3,9],[-1,1],[1,0],[2,6],[1,4],[1,3],[0,3],[0,1],[1,4],[-1,3],[-1,2],[0,1],[-1,2],[-2,3],[-3,7],[0,2],[0,2],[-1,8],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-2,7],[-1,4],[-4,12],[0,2],[-1,1],[-2,3],[0,1],[-1,0],[-2,1],[-1,0],[-5,-1],[-1,0],[-2,1],[-3,2],[-6,7],[-2,1],[-4,10],[0,1],[-2,4],[-2,7],[-4,16],[-3,11],[0,1],[-1,0],[1,2],[0,2],[0,1],[0,1],[-2,6],[0,1],[-1,3],[0,1],[-1,1],[-1,1],[-2,2],[-1,0],[-2,3],[-1,2],[-1,1],[0,1],[-1,1],[0,2],[-1,4],[0,1],[0,1],[-3,6],[-1,2],[-8,13],[-1,1],[0,1],[-3,4],[-1,2],[-2,3],[-3,5],[0,2],[-1,1],[0,1],[0,3],[0,1],[0,4],[-1,6],[0,1],[-5,16],[-1,1],[-1,4],[0,2],[-1,7],[-2,4],[-1,4],[-2,3],[-1,2],[0,1],[-9,8],[-6,5],[-1,1],[-3,-1],[-2,0],[0,1],[-1,1],[-1,0],[-3,4],[-2,2],[-1,1],[-3,0],[-1,-1],[-2,-1],[-4,-2],[-1,-1],[-3,-1],[-1,-1],[-4,-3],[-2,0],[-2,1],[-3,-1],[-3,0],[-2,1],[-4,3],[-1,0],[0,1],[-2,2],[-2,4],[-2,0],[-1,0],[-1,1],[-4,-1],[-1,0],[-3,0],[-2,-1],[-1,-2],[0,-1],[-2,-2],[0,-1],[-2,-3],[-1,-2],[-1,0],[-1,0],[-1,0],[-9,3],[-2,1],[-2,0],[0,-1],[-2,-1],[-1,-1],[-1,0],[-3,-1],[-1,-1],[-1,0],[-4,-2],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,-1],[-2,-2],[-3,0],[-3,2],[-5,5],[-3,1],[-4,2],[-3,1],[-2,2],[-2,1],[-1,3],[-1,2],[-1,4],[-1,1],[-2,4],[-1,3],[-1,1],[-1,3],[-3,3],[-1,2],[-2,2],[-2,5],[-1,1],[0,2],[-2,1],[-1,1],[0,1],[-4,4],[-2,2],[0,2],[0,1],[0,5],[0,1],[0,2],[0,3],[0,1],[0,2],[0,5],[-1,8],[0,1],[0,6],[0,3],[0,1],[0,1]],[[4325,9459],[-2,7],[-3,7],[-1,1],[-2,3],[-9,13],[-1,7],[0,1],[0,1],[-1,5],[0,2],[-1,2],[-1,2],[-2,4],[-1,3],[-1,4],[-1,5],[0,4],[-1,17],[5,0],[0,8],[0,4],[0,1],[-1,6],[-1,2],[-3,1],[-5,2],[-4,4],[-1,2],[-2,6],[-1,3],[-2,2],[0,1],[-1,0],[-1,1],[-3,2],[-3,3],[-1,2],[-1,0],[-2,3],[-3,2],[-1,1],[-2,2],[-2,2],[-1,1],[-4,3],[-4,2],[0,1],[-1,1],[-1,1],[-4,6],[0,1],[-1,1],[-3,5],[-2,3],[-1,0],[-1,1],[-1,-1],[-2,0],[-2,1],[-2,2],[-1,4],[-1,3],[-1,4],[0,5],[-2,4],[-1,4],[-1,1],[-3,6],[-2,5],[-1,4],[-1,4],[-1,8],[-1,9],[-1,5],[0,1],[0,6],[1,5],[1,1],[-1,1],[0,2],[-4,12],[-2,5],[-1,1],[0,3],[-1,5],[-3,9],[-1,6],[0,1],[0,1],[-1,3],[-3,3],[-4,4],[-1,3],[-4,9],[-3,11],[-1,3],[-1,3],[-1,2],[0,1],[-2,5],[-5,11],[-4,16],[-4,19],[-1,3],[-1,4],[1,3],[0,4],[0,1],[1,3],[0,2],[0,2],[0,1],[-1,3],[-1,5],[-2,3],[0,1],[-4,15],[-4,22],[0,1],[-2,5],[0,2],[0,1],[0,4],[0,4],[1,2],[0,1],[0,4],[-1,13],[-1,2],[0,1],[0,1],[-2,9],[-1,1],[-1,3],[-2,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,1],[-1,0],[-1,3],[-1,3],[-1,2],[-1,5]],[[4137,9991],[16,0],[10,0],[19,0],[12,0],[12,1],[5,0],[4,0],[4,1],[6,0],[2,0],[2,0],[2,0],[16,-1],[5,0],[1,0],[12,0],[7,0],[2,0],[6,0],[7,0],[9,0],[10,-1],[11,0],[10,0],[5,0],[5,0],[8,0],[5,0],[7,0],[1,0],[2,0],[6,0],[6,0],[5,0],[3,0],[24,0],[1,0],[3,0],[1,0],[1,0],[3,0],[5,0],[8,0],[3,0],[28,0],[12,0],[11,0],[8,0],[19,0],[11,-1],[5,0],[7,1],[9,0],[3,0],[4,0],[16,-1],[19,0],[4,0],[21,0],[5,0],[3,0],[3,0],[10,1],[8,0],[2,0],[3,0],[3,0],[3,0],[3,0],[2,0],[2,0],[2,0],[3,0],[9,0],[2,0],[4,0],[3,0],[6,0],[2,0],[1,0],[2,0],[1,0],[7,0],[22,0],[16,0],[5,0],[8,0],[13,0],[18,0],[3,0],[28,-1],[1,1],[5,0],[1,0],[2,-1],[3,0],[1,1],[21,-1],[2,0],[4,1],[3,0],[11,-1],[21,0],[6,0],[17,1],[2,0],[2,0],[19,-1],[7,0],[1,0],[10,0],[7,0],[5,0],[2,0],[1,0],[2,0],[3,0],[2,0],[3,0],[3,0],[3,0],[12,-1],[2,0],[2,0],[3,0],[1,1],[5,-1],[4,0],[4,0],[6,0],[4,0],[5,0],[3,0],[3,0],[1,0],[4,0],[5,0],[11,0],[3,0],[2,0],[3,0],[3,0],[2,0],[1,0],[2,0],[2,0],[4,0],[2,0],[2,0],[4,0],[3,0],[2,0],[2,0],[3,0],[2,0],[3,0],[4,0],[3,0],[2,0],[3,0],[4,0],[2,0],[2,0],[1,0],[1,0],[9,0],[2,0],[1,0],[5,0],[1,0],[2,0],[4,0],[1,0],[6,0],[2,0],[3,0],[2,0],[2,0],[2,0],[8,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[3,0],[2,0],[5,0],[5,0],[3,0],[1,0]],[[9326,9991],[-1,-5],[-2,-2],[-4,-5],[-1,-2],[-3,0],[-3,1],[-4,0],[-4,-2],[-5,0],[-1,-1],[-2,0],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-6],[0,-1],[0,-6],[0,-2],[0,-5],[1,-5],[1,-2],[0,-2],[1,-1],[0,-1],[1,-1],[1,-1],[2,-3],[0,-5],[0,-4],[0,-1],[-2,-2],[-1,0],[-1,0],[-2,3],[-1,3],[-1,0],[-1,0],[0,-1],[-1,-2],[-1,-2],[1,-5],[1,-2],[2,-2],[1,0],[2,1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-3],[0,-8],[1,-4],[0,-1],[1,-3],[4,-8],[1,-4],[1,0],[2,-3],[5,-5],[2,-2],[2,-4],[3,-3],[3,-3],[1,-2],[2,-2],[2,-1],[3,-2],[2,1],[0,1],[3,-1],[1,0],[1,-4],[1,-1],[0,-3],[0,-3],[-1,-3],[0,-3],[-1,-5],[0,-2],[-1,-1],[-4,-1],[0,-10],[0,-13],[0,-36],[0,-17],[0,-13],[0,-15],[0,-16],[0,-4],[0,-6],[0,-21],[0,-11],[0,-5],[0,-8],[0,-8],[0,-18],[0,-4],[0,-16],[0,-4],[0,-8],[0,-15],[0,-20],[0,-23],[0,-42],[0,-43],[0,-29],[0,-14],[0,-1],[0,-41],[0,-4],[0,-40],[0,-42],[0,-11],[0,-5],[0,-7],[0,-20],[0,-43],[0,-9],[0,-27],[0,-7],[0,-16],[0,-26],[0,-4],[0,-6],[0,-10],[0,-13],[0,-32],[0,-21]],[[9336,9020],[0,-18],[0,-19],[0,-6],[0,-23],[0,-20],[0,-10],[0,-11],[0,-22],[0,-6],[0,-16],[0,-13],[0,-8],[0,-21],[0,-22],[-7,0],[0,-1],[0,-28],[0,-13],[0,-3],[0,-31],[0,-16],[0,-6],[0,-5],[0,-7],[0,-15],[-1,-6],[1,-34],[0,-9],[0,-32],[-1,-6],[0,-5],[0,-1],[1,-12],[0,-3],[0,-27]],[[9329,8545],[-4,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-2,0],[-1,0],[-7,0],[-3,0],[-7,0],[-2,0],[-9,0],[-4,0],[-3,1],[-14,0],[-9,0],[-11,0],[-1,0],[-10,0],[-10,0],[-8,0],[-7,1],[-23,-1],[-6,0],[-4,0],[-5,0],[-10,0],[-5,0],[-16,0],[-13,0],[-8,0],[-21,0],[-8,0],[-2,0],[-11,0],[-4,0],[-10,0],[-6,0],[-7,0],[-2,0],[-4,0],[-1,0],[-3,0],[-4,0],[-4,0],[-17,0],[-10,0],[-4,0],[-22,0],[-3,0],[-3,0]],[[8953,8546],[0,13],[0,20],[0,10],[-1,15],[0,13],[0,4],[0,11],[0,6],[0,36],[0,12],[0,11],[0,20],[0,17],[0,20],[0,6],[0,4],[0,19],[0,4],[0,17],[-10,0],[-5,0],[-3,0],[-12,0],[-17,0],[-9,0],[-1,0],[-6,0],[-4,0],[-1,0],[-6,0],[-1,0],[-1,0],[-2,0],[-6,0],[-21,0],[-15,0]],[[8860,9990],[2,0],[7,0],[3,0],[2,0],[7,0],[5,0],[3,0],[2,0],[4,0],[3,0],[3,0],[1,0],[2,0],[1,0],[2,0],[2,1],[3,0],[2,-1],[3,0],[2,1],[2,0],[1,-1],[8,0],[4,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[3,0],[1,0],[1,0],[3,0],[3,0],[1,0],[2,0],[2,0],[6,1],[4,0],[5,0],[12,0],[4,0],[6,0],[5,0],[2,0],[3,0],[3,0],[3,0],[3,0],[2,0],[6,0],[3,0],[6,0],[2,0],[2,0],[2,0],[6,0],[4,0],[3,0],[2,0],[5,0],[2,0],[2,0],[2,0],[4,0],[2,0],[2,0],[1,0],[2,0],[2,0],[3,0],[5,0],[4,0],[3,0],[2,0],[4,0],[3,0],[11,0],[4,0],[7,0],[1,0],[3,0],[4,0],[2,0],[1,0],[4,0],[1,0],[2,0],[3,0],[3,0],[1,0],[2,0],[1,0],[2,0],[2,0],[4,0],[6,0],[2,0],[1,0],[2,0],[4,0],[2,0],[1,0],[3,0],[1,0],[2,0],[4,0],[1,0],[2,0],[3,0],[3,0],[3,0],[2,0],[4,0],[3,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[3,0],[1,0],[3,0],[3,0],[2,0],[1,0],[4,0],[3,0],[2,0],[3,0],[10,0],[11,0],[5,0],[2,0],[3,0],[4,0],[5,0],[1,0],[3,0],[1,0],[5,0],[22,0],[4,0]],[[8391,8804],[-3,0],[-1,-37],[0,-6],[0,-38],[0,-5],[0,-15],[0,-6],[1,-21],[0,-17],[0,-20],[0,-6],[0,-42],[0,-21],[0,-23],[0,-5],[0,-24],[0,-14],[-1,-43],[0,-27],[0,-15],[1,-43],[0,-12],[0,-14],[0,-27],[0,-6],[-1,-27]],[[8387,8290],[-2,0],[-7,0],[-1,0],[-10,0],[-1,0],[-15,0],[-5,0],[-5,0],[-4,0],[-12,1],[-2,0],[-1,0],[-3,-1],[-1,0],[-14,1],[-3,0],[-8,0],[-5,0],[-1,0],[-4,0],[-6,0],[-11,0],[-3,0],[-1,-1],[-1,0],[-19,0],[-2,0],[-8,0],[-12,0],[-3,0],[-5,0],[-5,0],[-4,0],[-3,0],[-4,0],[-1,0],[-3,0],[-4,1],[-2,0],[-4,0],[-2,0],[-1,0],[-1,0],[-3,-1],[-6,1],[-2,0]],[[8168,9989],[1,0],[5,0],[12,0],[7,0],[7,0],[7,0],[3,1],[3,0],[9,0],[6,-1],[9,1],[6,0],[5,0],[1,0],[4,0],[10,0],[7,0],[4,0],[17,0],[7,0],[4,0],[11,0],[1,0],[3,0],[7,0],[9,0],[3,0],[18,0],[5,0],[5,0],[11,0],[4,0],[9,0],[2,0],[3,0],[13,0],[2,0],[9,0]],[[6463,9988],[0,-36],[0,-4],[0,-12],[0,-3],[0,-5],[0,-4],[0,-5],[0,-7],[0,-4],[0,-3],[0,-6],[0,-17],[0,-19],[0,-5],[0,-38],[0,-43],[0,-30],[0,-1],[0,-12],[0,-43],[0,-43],[0,-25],[0,-18],[0,-29],[0,-14],[0,-43],[0,-42],[0,-11],[0,-6],[0,-4],[0,-6],[0,-16],[0,-3],[0,-19],[0,-21],[0,-17],[0,-26],[0,-6],[0,-3],[0,-8],[0,-1],[0,-25],[0,-43],[0,-8],[0,-16],[0,-18],[0,-11],[0,-8],[0,-6],[0,-18],[0,-17],[0,-26],[0,-42],[0,-22],[0,-21],[0,-43],[0,-28],[0,-15],[0,-21],[0,-2],[0,-1],[0,-20],[0,-20],[0,-9],[0,-5],[0,-7],[0,-4],[0,-18],[0,-21],[0,-24],[0,-19]],[[6463,8792],[-4,0],[-13,0],[-3,0],[-2,0],[-4,0],[-15,0],[-3,0],[-18,0],[-12,0],[-10,0],[-10,0],[-3,0],[-7,0],[-8,0],[-12,0],[-2,0],[-20,0],[-16,0],[-4,0],[-2,0],[-13,0],[-6,-1],[-2,1],[-1,0],[-10,-1],[-8,1],[-2,0],[-18,0],[-3,0],[-12,0],[-6,0],[-3,0],[-2,0],[-6,0],[-9,0],[-4,0],[-1,0],[-16,-1],[-4,0],[-17,0],[-3,0],[-18,0],[-4,0],[-17,0],[-4,0],[-7,0],[-10,0],[-3,1],[-6,0],[-2,-1],[-11,0],[-1,0],[-4,1],[-3,0],[-13,0],[-3,0],[-18,0],[-2,0],[-8,0],[-11,0],[-2,0],[-16,0],[-4,0],[-1,0],[-13,0],[-1,0],[-3,0],[-4,0],[-17,0],[-4,0],[-2,0],[-13,0],[-2,0],[-3,0],[-1,0],[-11,0],[-6,0],[-4,0],[-17,0],[-4,0],[-12,0],[-8,0],[-1,0],[-6,0],[-10,0],[-4,0],[-12,0],[-5,0],[-1,0],[-4,0],[-10,0],[-6,0],[-5,0],[-7,0],[-9,0],[-5,0],[-7,0],[-9,0],[-4,0],[-6,0],[-2,0],[-9,0],[-5,0],[-15,0]],[[5714,8792],[-2,0],[-3,0],[-1,0],[0,3],[0,21],[0,13],[0,4],[0,9],[0,20],[0,3],[0,8],[0,3],[0,20],[0,24],[0,43],[0,43],[0,9],[0,30],[0,4],[0,4],[0,11],[0,5],[0,7],[0,3],[0,9],[0,4],[-1,9],[0,5],[0,21],[0,5],[0,3],[0,4],[0,5],[0,1],[0,4],[0,5],[0,4],[0,3],[0,4],[0,3],[0,4],[0,5],[0,7],[0,8],[0,6],[0,3],[0,5],[0,3],[0,8],[0,3],[0,5],[0,5],[0,4],[0,18],[0,45],[0,9],[0,4],[0,15],[0,7],[0,5],[0,10],[0,4],[0,4],[0,3],[0,4],[0,4],[0,3],[0,10],[0,7],[0,5],[0,3],[0,8],[0,5],[0,10],[0,3],[0,3],[0,4],[0,7],[0,1],[1,87],[0,10],[0,29],[0,24],[0,21],[-1,17],[1,21],[0,21],[0,27],[0,43],[0,3],[0,4],[0,6],[0,6],[0,10],[0,4],[0,3],[0,6],[0,8],[0,3],[0,4],[0,13],[0,16],[-2,0],[0,22],[-1,12],[0,9],[0,42],[0,43],[0,19],[0,19]],[[5705,9987],[3,0],[1,0],[1,0],[13,0],[4,0],[2,0],[8,0],[11,0],[2,0],[1,0],[1,0],[4,0],[5,0],[3,0],[5,0],[4,0],[8,0],[2,0],[6,0],[1,0],[2,0],[2,0],[2,0],[4,0],[2,1],[4,0],[5,0],[2,0],[4,0],[7,0],[6,0],[2,0],[2,0],[6,0],[2,0],[6,0],[5,0],[2,0],[3,0],[4,0],[7,0],[4,0],[2,0],[1,0],[5,0],[3,0],[3,0],[7,0],[1,0],[2,0],[2,0],[6,0],[11,0],[2,0],[1,0],[2,0],[3,0],[7,0],[6,0],[2,0],[5,0],[1,0],[5,0],[8,0],[3,0],[8,0],[6,0],[5,0],[3,0],[7,0],[3,0],[3,0],[4,0],[6,0],[6,0],[6,0],[3,0],[3,0],[2,0],[2,0],[6,0],[1,0],[1,0],[4,0],[3,0],[2,0],[4,0],[5,0],[4,0],[4,0],[4,0],[4,0],[2,0],[3,0],[5,0],[5,1],[3,0],[18,0],[2,0],[2,0],[3,0],[4,0],[4,-1],[6,0],[4,1],[1,0],[4,-1],[4,0],[5,0],[3,0],[2,0],[1,0],[1,0],[14,1],[2,0],[1,0],[4,0],[16,0],[6,0],[16,0],[6,0],[3,0],[21,0],[3,0],[3,0],[1,0],[3,0],[2,0],[2,0],[1,0],[2,0],[1,0],[14,0],[7,0],[4,0],[8,-1],[1,0],[2,0],[1,0],[12,0],[7,0],[8,0],[3,0],[2,0],[1,0],[3,0],[3,0],[2,0],[7,0],[4,0],[2,0],[12,0],[3,0],[4,0],[4,0],[1,0],[8,0],[3,0],[2,0],[6,0],[3,0],[2,0],[2,0],[2,0],[4,0],[1,0],[2,0],[2,0],[2,0],[5,0],[3,0],[1,0],[4,0],[2,0],[3,0],[5,0],[2,0],[4,0],[6,0],[4,0],[3,0],[2,0],[2,0],[1,0],[2,0],[1,0]],[[5714,8792],[0,-3],[0,-22],[0,-11],[0,-10],[0,-9],[0,-3],[0,-3],[0,-4],[0,-22],[0,-4],[0,-4],[0,-12],[0,-10],[0,-11],[0,-24],[0,-9],[0,-4],[0,-6],[0,-7],[0,-7],[0,-9],[0,-20],[0,-7],[0,-3],[0,-5],[0,-4],[0,-4],[0,-5],[0,-4],[0,-5],[0,-6],[0,-4],[0,-15],[0,-7],[0,-6],[0,-6],[0,-7],[0,-5],[0,-4],[0,-5],[0,-5],[0,-7],[0,-7],[0,-7],[0,-2],[0,-5],[0,-4],[0,-7],[0,-5],[0,-5],[0,-7],[0,-8]],[[5714,8407],[-1,0],[-4,0],[-5,0],[-1,0],[-4,0],[-1,0],[-5,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-4,0],[-3,0],[-1,0],[-2,0],[-4,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-4,0],[-1,0],[-3,0],[-3,0],[-3,0],[-4,0],[-3,0],[-5,0],[-1,0],[-4,0],[-3,0],[-4,0],[-5,0],[-1,0],[-2,0],[-3,0],[-5,0],[-2,0],[-2,0],[-4,1],[-4,0],[-4,0],[-4,0],[-3,0],[-1,0],[-2,0],[-6,0],[-1,0],[-8,0],[-3,0],[-1,0],[-3,0],[-3,0],[-3,0],[-1,0],[-2,0],[-4,0],[-3,0],[-4,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-6,0],[-1,0],[-2,0],[-5,0],[-1,0],[-2,0],[-3,0],[-2,0],[-5,0],[-2,0],[-4,0],[-4,0],[-4,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,-1],[-3,0],[-3,0],[-1,0],[-4,0],[-2,0],[-6,0],[-2,0],[-1,1],[-2,-1],[-2,1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-4,0],[-2,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-4,0],[-5,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-1,0],[-4,0],[-2,0],[-1,0],[-7,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-4,0],[-1,0],[-5,0],[-4,0],[-2,0],[-2,0],[-4,0],[-2,0],[-1,0],[-1,0],[-3,0],[-5,0],[-1,0],[-2,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[-7,0],[-2,0],[-6,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-4,0],[-2,0],[-1,0],[-8,0],[-1,0],[-2,0],[-4,0],[-4,0],[-1,0],[-2,0],[-1,0],[-2,0],[-5,0],[-2,0],[-1,0],[-5,0],[-3,0],[-4,0],[-6,0],[-2,0],[-2,0],[-3,0],[-1,0],[-13,0]],[[5200,9989],[5,0],[2,0],[2,0],[1,0],[3,0],[6,0],[2,0],[2,0],[2,0],[1,0],[3,0],[3,0],[3,0],[5,0],[3,-1],[2,0],[3,0],[2,0],[2,0],[2,0],[7,0],[2,0],[1,0],[1,0],[3,0],[1,0],[2,0],[2,0],[5,0],[2,0],[2,0],[1,0],[2,0],[3,0],[4,0],[2,0],[4,-1],[4,0],[2,1],[1,-1],[2,0],[4,0],[7,0],[6,0],[1,0],[2,0],[5,0],[5,0],[3,0],[5,1],[3,-1],[11,0],[2,1],[37,-1],[9,-1],[4,0],[4,0],[11,0],[2,1],[1,0],[2,0],[1,-1],[12,0],[9,0],[22,-1],[10,0],[4,0],[1,0],[5,0],[21,0],[24,0],[4,0],[14,1],[1,0],[1,0],[3,0],[5,0],[2,0],[3,0],[4,0],[3,0],[8,0],[3,0],[2,0],[8,0],[5,0],[2,0],[4,0],[2,0],[4,0],[2,0],[1,0],[2,0],[2,0],[3,0],[16,0],[4,0],[5,0],[4,1],[7,0],[1,0],[6,0],[8,-1],[3,1],[3,-1],[1,0],[2,1],[8,0],[9,0]],[[6940,8795],[-5,-3],[-4,1],[-1,0],[-1,0],[-6,0],[-1,0],[-1,0],[-8,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-6,0],[-5,0],[-3,0],[-4,0],[-5,0],[-1,1],[-4,0],[-4,-1],[-2,0],[-1,1],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,-1],[-1,1],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-4,0],[-2,0],[-2,0],[-5,0],[-3,-1],[-4,0],[-10,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-11,0],[-5,0],[-2,0],[-2,0],[-1,0],[-2,0],[-17,0],[-2,0],[-1,0],[-15,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-6,0],[-10,0],[-2,0],[-4,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-5,0],[-3,0],[-1,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-4,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-1,0],[-3,0],[-3,0],[-4,0],[-2,0],[-4,0],[-2,0],[-2,0],[-2,0],[-3,0],[-6,0],[-4,0],[-4,0],[-2,0],[-1,0],[-4,0],[-6,-1],[-10,1],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-1,0],[-5,0],[-5,0],[-2,0],[-4,0],[-2,0],[-2,0],[-5,0],[-5,0],[-3,0],[-2,0],[-4,0],[-10,0],[-11,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-4,0],[-2,-1],[-3,0],[-2,0],[-18,0],[-2,0]],[[6464,8792],[-1,0]],[[6463,9988],[4,0],[2,0],[3,0],[4,0],[3,0],[4,0],[3,0],[4,0],[3,0],[11,1],[3,0],[4,0],[3,-1],[4,0],[4,0],[2,0],[1,0],[9,1],[1,0],[2,0],[3,0],[6,0],[2,0],[5,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[7,0],[3,0],[3,0],[3,0],[3,0],[2,0],[3,0],[4,0],[2,0],[2,0],[5,0],[2,0],[3,0],[3,0],[16,0],[3,0],[5,0],[1,0],[1,0],[2,0],[2,0],[2,0],[4,0],[3,0],[3,0],[5,0],[4,0],[5,0],[1,0],[3,0],[4,0],[4,0],[4,0],[4,0],[1,0],[4,0],[3,0],[3,0],[2,0],[3,0],[3,0],[5,0],[1,0],[3,0],[4,0],[2,0],[2,0],[2,0],[6,0],[1,0],[4,0],[6,0],[4,0],[5,0],[2,0],[4,0],[5,0],[1,0],[3,0],[2,0],[3,0],[4,0],[3,0],[6,0],[3,0],[2,0],[6,0],[3,0],[2,0],[5,0],[11,0],[1,0],[9,0],[11,0],[10,1],[5,-1],[3,0],[2,0],[1,0],[3,0],[2,0],[5,0],[9,0],[4,0],[8,0],[5,0],[16,0],[7,0],[14,0],[14,0],[4,0],[3,0],[2,0],[9,0],[2,0],[19,0],[4,0],[10,0],[8,0],[9,0],[10,0],[2,0],[2,0],[7,0],[12,0],[9,0],[12,0],[5,0],[11,1],[1,0],[1,0],[2,0],[6,0],[2,0],[14,0],[1,0],[16,0],[16,0],[9,0],[15,0],[14,0],[2,0],[12,0],[9,0],[1,0],[6,0],[3,-1],[23,0],[3,1],[25,0],[24,-1]],[[9781,9011],[-9,0],[-4,0],[-14,0],[-3,0],[-2,0],[-1,0],[-3,0],[-3,0],[-3,0],[-4,0],[-5,1],[-12,-1],[-9,0],[-3,0],[-2,0],[-2,0],[-14,0],[-4,0],[-7,0],[-6,0],[-4,0],[-3,0],[-2,0],[-6,0],[-2,0],[-4,0],[-2,0],[-3,0],[-4,-1],[-2,0],[-4,0],[-3,0],[-3,0],[-2,0],[-7,1],[-2,0],[-1,0],[-4,0],[-3,0],[-11,0],[-1,0],[-5,0],[-4,9],[-7,-1],[-2,0],[-3,0],[-10,0],[-11,0],[-10,0],[-7,0],[-3,0],[-11,0],[-2,0],[-2,0],[-17,0],[-11,0],[-2,0],[-8,0],[-2,0],[-6,0],[-1,0],[-4,0],[-8,1],[-2,-1],[-3,0],[-8,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-4,0],[-6,0],[-10,0],[-2,0],[-9,0],[-6,0],[-4,0],[-21,1],[-11,0],[-10,0],[-1,0],[-20,0]],[[9326,9991],[2,0],[2,0],[5,0],[5,0],[1,0],[2,0],[11,0],[3,0],[2,0],[3,0],[2,0],[6,0],[2,0],[3,0],[6,0],[2,0],[2,0],[10,-1],[5,0],[4,0],[11,0],[4,0],[7,0],[1,0],[20,0],[11,-1],[6,0],[4,0],[2,0],[8,0],[3,0],[4,0],[4,0],[2,0],[10,0],[6,0],[1,0],[3,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[2,0],[5,0],[5,0],[1,0],[4,0],[1,-1],[5,1],[1,0],[1,0],[4,0],[4,0],[5,0],[9,0],[2,0],[6,0],[8,0],[5,-1],[1,0],[2,0],[5,0],[4,0],[7,0],[6,0],[3,0],[8,0],[1,0],[2,0],[2,0],[3,0],[6,0],[1,0],[4,1],[4,0],[1,0],[4,0],[5,0],[3,0],[4,0],[2,0],[4,0],[2,0],[1,0],[10,0],[3,0],[9,0],[7,-1],[5,0],[16,0],[12,0],[20,0],[11,0],[7,1],[8,0],[0,-5],[0,-2],[0,-1],[0,-4],[0,-4],[0,-6],[0,-8],[0,-3],[0,-6],[0,-3],[0,-4],[0,-8],[0,-6],[0,-3],[0,-20],[-1,-3],[0,-4],[-1,-3],[0,-3],[1,-2],[1,-3],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-5],[0,-3],[0,-12],[0,-2],[0,-10],[0,-6],[0,-6],[0,-6],[0,-4],[0,-7],[0,-3],[0,-6],[0,-3],[0,-4],[0,-6],[0,-4],[0,-6],[0,-5],[0,-3],[0,-3],[0,-6],[0,-6],[0,-4],[0,-5],[0,-11],[0,-22],[0,-3],[0,-4],[0,-3],[0,-4],[0,-5],[0,-12],[-1,-30],[0,-10],[0,-4],[1,-13],[0,-4],[0,-5],[0,-6],[0,-5],[0,-8],[0,-7],[0,-9],[-1,-3],[0,-11],[1,-4],[0,-6],[0,-4],[-1,-6],[0,-4],[0,-5],[0,-3],[0,-13],[0,-5],[1,-4],[0,-5],[0,-3],[0,-5],[-1,-22],[0,-8],[0,-16],[0,-1],[0,-36],[1,-25],[0,-42],[0,-6],[0,-5],[0,-17],[0,-15],[0,-3],[-1,-26],[0,-20],[1,-36],[0,-12],[0,-5],[0,-45],[0,-24],[0,-10],[0,-11],[0,-56],[0,-9],[0,-12],[0,-4],[0,-3],[0,-11],[0,-5]],[[4325,9459],[0,-7],[0,-5],[0,-6],[0,-6],[0,-9],[0,-5],[0,-3],[0,-15],[0,-4],[0,-50],[0,-4],[0,-9],[0,-11],[0,-4],[0,-11],[0,-9],[0,-5],[0,-4],[0,-5],[0,-4],[0,-10],[0,-5],[0,-12],[0,-13],[0,-4],[0,-6],[0,-5],[0,-4],[0,-6],[0,-5],[0,-3],[0,-5],[0,-5],[0,-13],[0,-3],[-1,-3],[0,-1],[0,-5],[1,-4],[0,-5],[-1,-5],[0,-4],[1,-3],[0,-5],[0,-7],[0,-3],[0,-5],[0,-5],[0,-6],[0,-5],[0,-4],[0,-11],[0,-4],[0,-24],[0,-6],[0,-5],[0,-8],[-1,-4],[0,-8],[0,-8],[0,-11],[0,-5],[0,-4],[0,-6],[0,-5],[1,-3],[0,-3],[-1,-4],[0,-4],[0,-6],[0,-6],[1,-12],[0,-6],[0,-10],[0,-7],[0,-11],[0,-9],[0,-5],[0,-13],[-1,-5],[0,-16],[0,-3],[0,-4],[0,-3],[0,-11],[0,-4],[1,-30],[0,-13],[0,-10],[0,-7],[0,-3],[-6,0],[-6,-1],[-10,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-4,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-8,0],[-4,-1],[-3,0],[-3,0],[-2,0],[-2,0],[-4,0],[-1,0],[-12,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-5,0],[-6,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-4,0],[-3,0],[-2,0],[-3,0],[-4,0],[-1,0],[-4,0],[-2,0],[-4,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-10,1],[-28,0],[-4,-1],[-9,0],[-4,-1],[-11,0],[-4,-1],[-1,0],[-4,0],[-39,0],[-6,0],[-6,0],[-3,0],[-4,-1],[-18,0],[-3,0],[-1,0],[-7,0],[-7,0],[-9,0],[-10,0],[-5,0]],[[3963,8790],[-23,1],[-10,0],[-3,0],[-1,0],[-5,0],[-3,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-3,0],[-2,0],[-1,0],[-9,0],[-3,0],[-4,0],[-3,0],[-2,0],[-2,0],[-4,0],[-6,-1],[-4,0],[-4,1],[-3,0],[-2,0],[-3,0],[-3,0],[-5,0],[-2,0],[-7,0],[-4,0],[-2,0],[-3,0],[-4,0],[-2,0],[-1,0],[-2,0],[-4,0],[-5,0],[-3,0],[-3,0],[-1,0],[-1,0],[-4,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-4,0],[-2,0],[-2,0],[-1,0],[-1,0],[-9,0],[-2,0],[-1,0],[-17,0],[-3,0],[-2,0],[-3,0],[-5,0],[-4,0],[-4,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-4,0],[-3,0],[-3,0],[-2,0],[-2,0],[-1,0],[-5,0],[-3,0],[-3,0],[-2,0],[-5,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-4,0],[-8,0],[-2,0],[-2,0],[-1,0],[-2,0],[-5,0],[-3,0],[-1,1],[-2,-1],[-3,0],[-2,0],[-4,0],[-6,0],[-10,0],[-4,0],[-3,0],[-3,0],[-11,0],[-7,0],[-12,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-9,0],[-9,0],[-4,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0]],[[3499,8791],[0,8],[0,8],[0,4],[0,4],[0,6],[0,5],[0,4],[0,5],[0,6],[0,6],[0,3],[0,4],[0,9],[0,3],[0,1],[0,9],[0,5],[0,4],[0,5],[0,6],[0,5],[0,4],[0,13],[0,3],[0,4],[0,10],[0,6],[0,6],[0,13],[0,10],[0,4],[-1,4],[0,8],[0,6],[0,13],[0,4],[0,9],[0,7],[0,6],[0,7],[0,5],[0,5],[0,3],[0,12],[0,6],[0,5],[0,6],[0,7],[0,5],[0,6],[0,7],[0,8],[0,5],[0,6],[0,9],[0,20],[0,19],[0,2],[0,37],[0,10],[0,4],[0,6],[0,12],[0,5],[0,12],[0,4],[0,6],[0,6],[0,7],[0,5],[0,4],[0,4],[0,5],[0,5],[0,6],[0,13],[0,4],[0,6],[0,28],[0,30],[0,15],[0,61],[0,45],[0,1],[0,5],[0,6],[0,7],[0,19],[0,3],[0,6],[0,3],[0,6],[0,7],[0,5],[0,7],[0,5],[0,5],[0,5],[0,5],[0,6],[0,6],[0,9],[0,9],[0,9],[1,4],[0,4],[0,16],[0,11],[0,12],[0,7],[0,7],[0,6],[0,7],[0,7],[0,9],[0,19],[0,5],[0,4],[0,7],[0,4],[0,4],[0,32],[0,14],[0,43],[0,4],[0,18],[0,18],[0,1],[0,27],[0,46],[0,6],[1,7]],[[3500,9997],[2,0],[3,0],[3,0],[3,0],[17,0],[5,0],[43,0],[37,0],[21,0],[14,0],[2,0],[42,-1],[1,0],[6,0],[3,0],[2,0],[1,0],[23,-1],[12,0],[12,0],[13,0],[1,0],[3,0],[2,0],[2,0],[12,0],[2,0],[4,0],[3,0],[3,-1],[2,0],[2,0],[2,0],[3,0],[2,0],[2,0],[3,0],[4,0],[2,0],[4,0],[3,0],[2,0],[1,0],[3,0],[3,0],[3,-1],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[6,0],[2,0],[2,0],[2,0],[1,0],[4,0],[2,0],[2,0],[2,0],[2,0],[1,0],[6,0],[4,0],[1,0],[9,-1],[1,0],[5,0],[2,0],[2,0],[2,0],[6,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[6,0],[3,0],[2,0],[2,0],[2,0],[3,0],[2,0],[1,0],[2,0],[4,0],[3,0],[5,0],[4,0],[2,0],[3,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[6,0],[4,0],[4,0],[1,0],[4,0],[2,0],[3,0],[2,0],[1,0],[3,0],[2,0],[1,0],[1,0],[4,-1],[5,0],[2,0],[3,0],[10,0],[2,0],[1,0],[3,0],[12,0],[11,0],[9,0],[1,0],[3,0],[1,0],[2,0],[3,0],[3,0],[8,0],[1,0],[6,0],[2,0],[2,0],[7,0],[4,0],[7,0],[3,0],[8,0]],[[1136,9972],[1,-6],[0,-4],[0,-4],[0,-4],[0,-17],[0,-20],[0,-27],[0,-13],[0,-3],[0,-9],[0,-18],[0,-15],[0,-6],[0,-11],[0,-7],[0,-3],[0,-12],[0,-10],[0,-5],[0,-9],[0,-8],[0,-3],[0,-14],[0,-2],[0,-4],[0,-3],[0,-16],[0,-8],[0,-6],[0,-8],[0,-8],[0,-10],[0,-3],[0,-22],[0,-9],[0,-12],[0,-6],[0,-5],[0,-13],[0,-8],[-1,-43],[0,-11],[-4,-2],[0,-5],[0,-5],[0,-5],[0,-25],[0,-27],[0,-4],[0,-8],[0,-5],[0,-17],[0,-7],[0,-4],[0,-14],[0,-11],[0,-10],[0,-13],[0,-9],[0,-5],[0,-4],[0,-8],[0,-5],[0,-13],[0,-8],[0,-11],[0,-10],[0,-22],[0,-9],[0,-4],[0,-7],[0,-19],[0,-6],[0,-3],[0,-4],[0,-4],[0,-5],[0,-3],[0,-7],[1,-6],[-1,-5],[0,-4],[0,-8],[0,-10],[0,-3],[0,-3],[0,-3],[0,-9],[0,-3],[0,-4],[0,-42],[0,-44],[0,-7],[0,-34],[0,-5],[0,-4],[0,-5],[0,-5],[0,-4],[0,-5],[0,-5],[0,-5],[0,-6],[0,-8],[0,-1],[0,-45],[0,-22],[0,-4],[0,-4],[0,-4],[0,-9],[0,-4],[0,-4],[0,-7],[0,-5],[0,-6],[0,-5],[0,-8],[0,-3],[0,-10],[0,-5],[0,-17],[0,-22],[0,-15],[0,-6],[0,-6],[0,-17],[0,-10],[0,-10],[0,-28],[0,-9],[0,-5],[0,-5],[0,-22],[0,-11],[0,-5],[0,-16],[0,-6],[0,-6],[0,-11],[0,-6],[0,-15],[0,-10],[0,-6],[0,-4],[0,-6],[0,-44]],[[1132,8518],[-130,-1],[-22,0],[-97,0],[-3,0],[-335,0],[-2,0],[-225,0],[-91,0],[-227,0],[0,66],[0,123],[0,288],[0,152],[0,18],[0,92],[0,434],[0,11],[0,9],[0,4],[0,31],[0,247],[30,0],[162,-3],[100,-2],[203,-4],[46,-1],[16,0],[319,-6],[205,-4],[26,0],[13,1],[2,-1],[5,0],[6,0],[1,0],[2,0]],[[2400,9988],[0,-15],[0,-3],[0,-6],[0,-22],[0,-11],[0,-7],[0,-32],[0,-3],[0,-20],[0,-10],[0,-11],[0,-4],[0,-3],[0,-3],[0,-5],[0,-4],[0,-4],[0,-5],[0,-5],[0,-5],[0,-7],[0,-18],[0,-4],[0,-21],[0,-3],[0,-9],[0,-9],[0,-4],[0,-12],[0,-6],[0,-4],[0,-4],[0,-10],[0,-14],[0,-11],[0,-24],[0,-12],[0,-4],[0,-3],[0,-6],[0,-15],[0,-22],[-1,-5],[0,-6],[0,-4],[0,-28],[-3,0],[-2,0],[-4,0],[0,-5],[0,-8],[0,-8],[0,-10],[0,-11],[0,-28],[0,-15],[0,-7],[0,-3],[0,-3],[0,-17],[0,-5],[0,-8],[0,-4],[0,-4],[0,-4],[0,-11],[0,-3],[0,-4],[0,-3],[0,-10],[0,-21],[0,-4],[0,-6],[0,-3],[0,-9],[0,-14],[0,-5],[0,-7],[0,-11],[0,-4],[0,-36],[0,-9],[0,-29],[0,-13],[0,-21],[0,-20],[0,-5],[0,-115],[0,-20],[0,-8],[0,-24],[0,-14],[0,-29],[0,-23],[0,-3],[0,-5],[0,-15],[0,-14],[0,-26],[0,-1],[0,-16],[0,-8],[0,-9],[0,-53],[0,-15],[-1,-28],[1,-44],[0,-31],[0,-11],[0,-7],[-1,-9],[0,-6],[0,-7],[0,-9],[0,-4],[0,-5],[0,-4],[0,-4],[0,-11],[0,-8],[0,-3],[0,-5],[0,-4],[0,-4],[0,-7],[0,-6],[0,-4],[0,-5],[0,-8],[0,-10]],[[2389,8515],[-23,0],[-128,-1],[-1,0],[-147,0],[-172,0],[-62,0],[-77,0],[-87,0],[-84,0],[-191,2],[-5,0],[-54,0],[-100,1],[-89,0],[-37,1]],[[1136,9972],[3,0],[1,0],[3,0],[3,0],[3,0],[1,0],[7,0],[2,0],[1,0],[2,0],[4,0],[2,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[2,0],[2,0],[2,0],[2,0],[3,0],[1,0],[4,0],[2,0],[2,0],[2,1],[3,0],[2,0],[3,0],[3,0],[6,0],[2,0],[2,0],[2,0],[2,0],[2,0],[3,0],[6,0],[2,0],[1,0],[2,0],[1,0],[4,0],[2,0],[8,0],[3,0],[4,0],[3,0],[3,0],[2,0],[2,0],[4,0],[1,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[2,0],[2,0],[3,0],[2,0],[3,0],[3,0],[2,0],[2,0],[4,0],[3,0],[1,0],[3,0],[1,0],[3,0],[1,0],[1,0],[2,0],[6,0],[3,0],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0],[4,0],[2,0],[1,0],[3,0],[2,0],[2,0],[1,0],[2,1],[1,0],[2,0],[4,0],[3,0],[2,0],[2,0],[2,0],[2,0],[12,0],[2,0],[2,0],[3,0],[6,0],[2,0],[5,0],[3,0],[3,0],[2,0],[2,0],[6,0],[10,0],[3,0],[2,0],[5,1],[6,0],[4,0],[2,0],[4,0],[3,0],[3,0],[4,0],[3,0],[3,0],[1,0],[4,0],[4,0],[2,0],[3,0],[2,0],[3,0],[3,0],[4,0],[2,0],[3,0],[2,0],[3,0],[5,0],[2,0],[1,0],[3,1],[2,0],[3,0],[2,0],[4,0],[2,0],[2,0],[3,0],[4,0],[6,0],[4,0],[6,0],[5,0],[2,0],[4,0],[2,0],[3,0],[2,0],[2,0],[3,0],[2,0],[2,0],[2,0],[3,0],[2,0],[3,0],[2,0],[3,0],[5,0],[6,1],[3,0],[2,0],[2,0],[2,0],[2,0],[3,0],[1,0],[1,0],[4,0],[3,0],[3,0],[2,0],[3,0],[3,0],[2,0],[9,0],[2,0],[5,0],[4,0],[1,0],[11,0],[2,1],[1,0],[3,0],[5,0],[5,0],[5,0],[4,0],[2,0],[1,0],[3,0],[2,0],[4,0],[2,0],[1,0],[5,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[2,0],[2,0],[3,0],[1,0],[2,0],[2,0],[2,0],[5,1],[2,0],[2,0],[2,0],[1,0],[3,0],[1,0],[6,0],[7,0],[3,0],[8,0],[3,0],[7,0],[4,0],[10,0],[1,0],[6,0],[2,0],[3,0],[1,0],[1,0],[2,0],[1,0],[2,1],[1,0],[2,-1],[3,1],[3,0],[2,0],[2,0],[3,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[8,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[4,0],[4,0],[1,0],[2,0],[2,0],[2,0],[1,0],[43,1],[1,0],[27,0],[17,0],[20,1],[2,0],[3,0],[3,0],[8,0],[3,0],[1,0],[11,0],[29,0],[1,1],[2,0],[11,0],[14,0],[12,0],[5,0],[16,0],[21,1],[6,0],[16,0],[5,0],[4,0],[6,1],[6,0],[2,0],[1,0],[3,0],[1,0],[4,0],[2,0],[3,0],[3,0],[2,-2],[3,0],[1,0],[16,2],[6,0],[15,0],[4,0],[2,0],[15,1],[3,0],[2,0],[1,0],[4,0],[1,0],[6,0],[4,0],[3,0],[2,0],[1,0],[13,0],[1,0],[4,-1],[1,0],[24,1],[15,0],[3,0],[3,0],[2,0],[2,0],[3,0],[6,1],[2,0]],[[3499,8791],[0,-14],[0,-5],[0,-20],[0,-41],[0,-14],[-1,-40],[0,-12],[0,-3],[0,-16],[0,-12],[0,-13],[0,-19],[0,-16],[0,-8],[0,-19],[0,-24]],[[3498,8515],[-225,0],[-66,-1],[-108,0],[-10,0],[-3,0],[-155,0],[-47,0],[-19,0],[-9,0],[-294,0],[-173,1]],[[2400,9988],[3,-1],[2,1],[11,0],[5,0],[4,0],[2,0],[2,0],[4,0],[8,0],[7,0],[14,0],[1,0],[10,0],[8,0],[3,1],[6,0],[8,-1],[6,0],[7,0],[1,0],[14,0],[17,1],[10,0],[9,0],[48,1],[1,0],[4,0],[2,0],[3,0],[7,0],[19,-1],[6,1],[41,1],[23,1],[4,0],[2,0],[1,0],[6,0],[4,0],[3,0],[5,0],[4,0],[3,0],[3,0],[6,0],[3,0],[1,0],[3,0],[4,0],[5,0],[4,0],[7,1],[3,0],[9,0],[7,0],[2,0],[8,0],[4,0],[11,0],[17,1],[11,0],[1,0],[1,0],[1,0],[1,0],[2,0],[4,0],[2,0],[4,0],[6,0],[9,0],[6,1],[3,0],[5,0],[11,0],[5,0],[2,0],[2,0],[5,0],[3,0],[2,0],[5,0],[12,0],[11,0],[1,0],[5,0],[8,0],[2,0],[1,0],[3,0],[7,0],[7,1],[4,-1],[5,0],[7,0],[7,1],[4,0],[1,0],[9,0],[10,0],[1,0],[7,0],[17,0],[5,0],[14,1],[19,0],[20,0],[14,0],[6,1],[1,0],[3,0],[9,0],[4,0],[14,0],[2,0],[12,0],[6,0],[11,0],[6,0],[34,0],[1,0],[3,0],[1,0],[10,0],[8,0],[1,1],[3,0],[2,0],[2,-1],[3,0],[5,0],[15,0],[6,0],[29,1],[1,0],[3,0],[14,0],[4,0],[1,0],[7,0],[2,0],[2,0],[2,0],[2,0],[2,0],[3,0],[2,0],[4,0],[3,0],[3,0],[4,0],[2,0],[3,0],[3,0],[4,0],[2,0],[4,0],[2,0],[2,0],[3,0],[2,0],[2,-1],[3,0],[2,0],[1,0],[2,0],[1,0],[4,0],[2,0],[2,0],[2,0],[3,0],[1,0],[3,0],[2,0],[2,0],[2,0],[2,0],[1,0],[3,0],[3,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[3,0],[1,0],[2,0],[1,0],[4,-1],[2,0],[4,0]],[[4715,8536],[0,-13],[0,-9],[0,-8],[0,-2],[0,-6],[0,-5],[0,-4],[0,-56],[0,-7],[0,-74],[0,-29],[0,-43],[0,-1],[0,-19],[0,-34],[0,-32],[0,-6],[0,-5],[0,-3],[0,-5],[0,-9],[0,-5],[0,-6],[0,-4],[0,-24],[0,-7],[0,-10],[0,-43],[0,-85],[0,-7],[0,-4],[0,-6],[0,-3],[0,-3],[0,-9],[0,-6],[0,-5],[0,-4],[0,-4],[0,-4],[0,-22],[0,-10],[0,-4],[0,-9],[0,-4],[0,-3],[0,-6],[0,-5],[0,-5],[0,-6],[0,-3],[0,-4],[0,-3],[0,-4],[0,-7],[0,-21],[0,-22],[0,-11],[0,-10],[5,0],[0,-21],[0,-3],[0,-4],[0,-4],[0,-3],[0,-3],[0,-5],[0,-4],[0,-7],[0,-6],[0,-4],[0,-7],[0,-4],[0,-5],[0,-5],[0,-4],[0,-21],[0,-6],[0,-17],[0,-36],[0,-4],[0,-5],[0,-21],[1,-20],[0,-5],[0,-3],[0,-2],[0,-3],[0,-7],[0,-4],[0,-5],[0,-3]],[[4721,7517],[-21,0],[-3,0],[-11,0],[-4,0],[-3,1],[-7,-1],[-3,0],[-11,1],[-9,0],[-6,0],[-1,0],[-2,0],[-2,0],[-13,0],[-8,0],[-4,0],[0,1],[-5,0],[-2,0],[-5,0],[-2,0],[-2,0],[-11,0],[-5,0],[-5,0],[-21,1],[-2,0],[-3,0],[-4,0],[-4,0],[-1,0],[-7,0],[-2,0],[-3,0],[-3,-1],[-1,0],[-2,0],[-7,0],[-3,0],[-20,0],[-10,1],[-1,0],[-2,0],[-1,0],[-2,0],[-9,0],[-3,0],[-8,0],[-5,0],[-14,0],[-3,1],[-1,0],[-3,0],[-1,0],[-9,0],[-10,0],[-1,0],[-4,0],[-5,1],[-9,0],[-3,0],[-7,0],[-5,1],[-5,1],[-7,0],[-7,0],[-6,0],[-2,0],[-2,0],[-2,0],[-5,0],[-6,0],[-2,0],[-6,0],[-4,0],[-3,0],[-2,0],[-14,1],[-3,0],[-16,-1],[-5,0],[-5,0],[-10,1],[-3,0],[-2,0],[-16,0],[-8,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-5,0]],[[4223,7525],[-15,-1],[-5,0],[-21,0],[-21,0],[-21,0],[-27,1],[-14,0],[-14,1],[-28,-1],[-5,0],[-26,0],[-11,-1],[-21,0],[-20,0],[0,28],[0,26],[0,17],[0,45],[0,40],[0,43],[0,45],[-10,0],[0,10],[-1,33],[0,23],[0,22],[0,24],[0,16],[0,43],[0,29],[0,2],[0,12],[0,42],[0,4],[0,36],[0,3],[0,10],[0,41],[0,24],[0,5],[0,7],[0,14],[0,11],[0,2],[0,15],[0,17],[0,5],[0,8],[0,9],[0,4],[0,8],[0,33],[0,11],[0,9],[0,6],[0,6],[0,18],[0,5],[0,7],[0,6],[0,5],[0,14],[0,43],[0,17],[0,25],[0,8],[0,9],[0,26],[0,14],[0,7],[0,21],[0,19],[0,8],[0,4],[0,12],[0,26],[0,103],[0,6],[0,9],[0,2],[0,22],[0,5],[0,12],[0,2],[0,11],[0,7],[0,5]],[[9781,9011],[0,-10],[0,-3],[0,-5],[0,-5],[0,-16],[0,-1],[0,-3],[0,-3],[0,-11],[0,-2],[0,-26],[0,-16],[0,-24],[0,-1],[0,-37],[0,-17],[0,-13],[0,-4],[0,-5],[0,-3],[0,-1],[0,-13],[0,-13],[0,-5],[0,-11],[0,-18],[0,-26],[0,-38],[0,-20],[0,-4],[0,-4],[0,-25],[0,-6],[0,-5],[0,-5],[0,-24],[0,-1],[0,-13],[0,-6],[0,-4],[0,-4],[0,-8],[0,-8],[0,-5],[0,-20],[0,-5],[0,-3],[2,-31],[1,-8],[1,-10],[1,-16],[1,-23],[1,-7],[0,-3],[0,-11],[1,-3],[1,-19],[0,-4],[0,-5],[1,-4],[0,-8],[1,-17],[2,-27],[0,-5],[0,-4],[1,-5],[1,-15],[0,-1],[1,-24],[0,-1],[1,-6],[0,-5],[1,-9],[0,-4],[0,-4],[0,-3],[1,-1],[0,-3],[0,-6],[0,-7],[1,-7],[0,-6],[1,-15],[0,-3],[0,-1],[1,-3],[1,-21],[0,-5],[0,-4],[2,-24],[0,-4],[1,-8],[0,-12],[1,-3],[0,-4],[0,-6],[0,-5],[1,-5],[0,-5],[1,-9],[0,-2],[0,-6],[1,-21],[1,-5],[0,-7],[4,-60],[1,-23],[1,-13],[0,-5],[1,-8],[1,-13],[0,-3],[0,-4],[1,-14],[1,-6],[0,-11],[1,-4],[1,-18],[0,-4],[0,-4],[1,-12],[0,-5],[1,-11],[1,-12],[0,-3],[1,-10],[1,-14],[1,-16],[0,-4],[1,-13],[0,-4],[1,-8],[0,-9],[1,-3],[0,-1],[0,-13],[2,-22],[0,-9],[3,-34],[0,-8],[1,-13],[0,-4],[1,-5],[0,-6],[1,-9],[0,-3],[0,-5],[1,-4],[0,-4],[0,-6],[0,-1],[1,-5],[1,-17],[0,-5],[1,-5],[0,-7],[0,-3]],[[9845,7518],[-3,0],[-5,0],[-4,0],[-1,0],[-3,-1],[-16,0],[-3,0],[-1,0],[-3,0],[-6,0],[-3,0],[-7,0],[-2,0],[-7,0],[-4,0],[-4,0],[-1,0],[-3,0],[-2,0],[-3,0],[-3,0],[-2,0],[-5,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-5,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-3,0],[-7,0],[-14,0],[-12,0],[-1,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-6,0],[-24,0],[-1,0],[-2,0],[-7,0],[-2,0],[-2,0],[-3,-1],[-1,0],[-2,0],[-5,-1],[-4,1],[-2,0],[-2,0],[-1,0],[-6,0],[-2,0],[-4,0],[-1,0],[-3,0],[-5,0],[-1,0],[-2,0],[-3,0],[-7,0],[-5,0]],[[9572,7516],[-9,0],[-12,0],[-21,1],[-6,0],[-5,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-4,0],[-4,0],[-2,-1],[-5,0],[-1,0],[-7,1],[-12,0],[-11,0],[-2,0],[-16,0],[-6,0],[-3,0],[-5,0],[-7,0],[-13,-1],[-1,0],[-7,0],[-6,0],[-2,0],[-6,0],[-21,1],[-6,0],[-9,0],[-13,0],[-3,0],[-10,0]],[[9322,7517],[0,12],[0,3],[0,29],[0,32],[0,9],[0,10],[0,8],[0,14],[0,4],[0,7],[0,10],[0,10],[0,5],[0,4],[0,3],[0,5],[0,6],[0,44],[0,9],[0,35],[6,2],[0,7],[0,3],[0,9],[0,22],[0,3],[0,39],[0,18],[0,9],[0,16],[1,43],[0,6],[0,1],[0,7],[-1,78],[0,18],[0,8],[1,20],[0,10],[0,24],[0,10],[0,10],[0,8],[0,4],[0,53],[0,6],[0,1],[0,10],[0,3],[0,15],[0,8],[0,10],[0,18],[-1,13],[1,7],[0,17],[0,15],[0,6],[-1,64],[0,6],[0,4],[1,33],[0,8],[0,8],[0,3],[0,2],[0,6],[0,1],[0,18],[0,6],[0,13],[0,5],[0,6],[0,4],[0,8],[0,3],[0,14]],[[6991,8536],[-3,0],[-1,1],[-2,0],[-2,0],[-3,0],[-3,0],[-4,0],[-3,0],[-3,-1],[-2,-2],[0,-3],[0,-6],[0,-10],[0,-8],[0,-13],[0,-2],[0,-4],[0,-5],[0,-5],[0,-4],[0,-5],[0,-4],[0,-7],[0,-7],[0,-11],[0,-14],[0,-18],[0,-20],[0,-3],[0,-10],[0,-11],[0,-41],[0,-23],[0,-14],[0,-6],[0,-6],[0,-25],[0,-6],[0,-6],[0,-2],[0,-1],[0,-35],[0,-52],[0,-17],[0,-32],[0,-4],[0,-28],[0,-5],[0,-5],[0,-9],[0,-7],[0,-9],[0,-7],[3,0],[3,0],[2,0],[2,0],[2,0],[3,0],[2,0],[2,0],[1,0],[5,0],[5,0],[7,0],[2,0],[2,0],[6,0],[5,0],[3,0],[2,0],[2,0],[4,0],[5,0],[5,0],[4,0],[3,0],[3,0],[2,0],[2,0],[3,0],[2,0],[6,0],[2,0],[2,0],[2,0],[3,0],[3,0],[2,0],[3,0],[1,0],[2,0],[3,0],[4,0],[0,-5],[0,-4],[0,-3],[0,-4],[0,-3],[0,-3],[0,-5],[0,-8],[0,-6],[0,-4],[0,-3],[0,-7],[0,-3],[0,-4],[0,-3],[0,-7],[0,-5],[0,-3],[0,-1],[0,-2],[0,-3],[0,-5],[0,-7],[0,-7],[0,-2],[0,-3],[0,-7],[0,-11],[0,-4],[0,-5],[0,-4],[0,-5],[0,-4],[0,-6],[0,-4],[0,-1],[0,-1],[0,-3],[0,-6],[0,-7],[0,-4],[0,-3],[0,-6],[0,-3],[0,-4],[0,-3],[0,-1],[0,-3],[0,-9],[0,-5],[0,-5],[0,-4],[0,-7],[0,-11],[0,-4],[0,-3],[0,-4]],[[7090,7767],[-10,0],[-5,0],[-3,0],[-4,0],[-4,0],[-5,0],[-3,0],[-4,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-4,0],[-3,0],[-6,0],[-1,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-3,0],[-5,0],[-4,0],[-2,0],[-4,0],[-3,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-6,0],[-3,0],[-2,0],[-5,0],[-2,0],[-3,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-3,0],[-3,0],[-2,0],[-4,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[0,-7],[0,-9],[0,-4],[0,-6],[0,-4],[0,-1],[0,-6],[0,-4],[0,-4],[0,-4],[0,-5],[0,-5],[0,-7],[0,-11],[0,-5],[0,-6],[0,-11],[0,-5],[0,-6],[0,-3],[0,-4],[0,-4],[0,-5],[0,-6],[0,-4],[0,-3],[0,-11],[0,-22],[0,-7],[0,-4],[0,-5],[0,-9],[0,-5],[0,-4],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-4],[1,-3],[-1,-2],[0,-4],[0,-4],[0,-4],[0,-3],[0,-3],[0,-4],[-1,-4],[-2,0],[-4,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-1,0],[-10,0],[-4,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-3,-1],[-2,1],[-10,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,-1],[-3,1],[-1,0],[-1,-1],[-2,1],[-1,0],[-3,0],[-1,0],[-1,0],[-8,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-5,0],[-3,0],[-13,0],[-11,0],[-8,0],[-2,-1],[-5,0],[-10,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-4,0],[-3,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0]],[[6589,7509],[0,4],[0,4],[0,3],[0,5],[-10,0],[-10,0],[-5,0],[-13,0],[-3,0],[-14,0],[-3,0],[-7,0],[-4,0],[-2,0],[-9,0],[-3,0],[-10,0],[-2,0],[-9,0],[-12,0],[-2,0],[-6,0]],[[6465,7525],[0,4],[0,6],[0,4],[0,14],[0,9],[0,6],[0,4],[0,15],[0,5],[0,4],[0,4],[0,6],[0,4],[0,3],[0,4],[0,3],[0,4],[0,9],[0,4],[0,4],[0,4],[0,7],[0,4],[0,4],[0,3],[0,6],[0,3],[0,4],[0,4],[0,4],[0,3],[0,10],[0,3],[0,3],[0,4],[0,4],[0,13],[0,3],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,3],[0,4],[-1,3],[0,3],[0,4],[0,6],[0,4],[0,3],[0,7],[0,9],[0,7],[0,6],[0,4],[0,13],[0,4],[0,5],[0,11],[0,7],[0,1],[0,4],[0,5],[0,3],[0,12],[0,7],[0,3],[0,11],[0,3],[0,4],[0,4],[0,7],[0,9],[0,4],[0,3],[0,4],[0,11],[0,9],[0,9],[0,6],[0,6],[0,6],[0,8],[0,7],[0,7],[0,4],[0,7],[0,21],[0,1],[0,2],[0,6],[0,7],[0,5],[0,3],[0,9],[0,6],[0,5],[0,4],[0,7],[0,5],[0,2],[0,3],[1,3],[-1,3],[0,4],[0,9],[0,6],[0,14],[0,3],[0,7],[0,4],[0,3],[0,3],[0,4],[0,5],[0,13],[0,3],[0,4],[0,6],[0,6],[0,4],[0,2],[0,12],[0,3],[0,6],[0,5],[0,3],[0,3],[0,3],[0,4],[0,4],[0,8],[0,4],[0,6],[0,7],[0,7],[0,4],[0,3],[0,8],[0,5],[0,11],[0,9],[0,6],[0,4],[0,4],[0,4],[0,4],[0,4],[0,8],[0,8],[0,8],[0,10],[0,17],[0,4],[0,3],[0,8],[0,5],[0,7],[0,6],[0,9],[0,22],[0,6],[0,4],[0,4],[0,1],[0,3],[0,3],[0,4],[0,7],[0,4],[0,5],[0,5],[0,3],[0,5],[0,4],[0,4],[0,2],[0,3],[0,22],[0,17],[0,43],[0,3],[0,6],[0,4],[0,5],[0,5],[0,4],[0,16],[0,24],[0,5],[0,9],[0,5],[0,5],[0,4],[0,34],[0,39],[0,5]],[[8953,8546],[-14,0],[-4,0],[-3,0],[-12,0],[-4,0],[-5,0],[-8,0],[-5,0],[-8,0],[-2,0],[-4,0],[-3,0],[-12,0],[-12,0],[-12,0],[-1,0],[-7,0],[-8,0],[-2,0],[0,-30],[0,-12],[0,-9],[0,-34],[0,-23],[0,-20],[0,-7],[0,-18],[0,-18],[0,-22],[0,-15],[0,-6],[0,-8],[0,-4],[0,-31],[0,-15],[0,-8],[0,-4],[0,-16],[0,-53],[0,-22],[0,-11],[0,-8],[0,-5],[0,-7],[0,-4],[0,-18],[0,-36],[0,-5],[0,-14],[0,-14],[0,-14],[0,-22],[0,-5],[0,-8],[0,-10],[0,-10],[0,-15],[0,-11],[0,-7],[0,-21],[0,-18],[0,-4],[0,-21],[0,-22],[0,-28],[0,-14],[0,-9],[0,-17],[0,-17],[-3,0],[-2,0],[0,-16],[0,-24],[0,-4],[0,-41],[0,-34],[0,-9],[0,-31],[0,-13],[0,-37],[0,-5],[0,-17],[0,-2],[0,-3],[0,-3],[0,-13],[0,-5],[0,-7],[0,-36],[0,-20],[0,-6],[0,-17],[0,-9],[0,-12],[0,-22],[0,-43],[0,-11],[0,-10],[0,-21],[0,-35],[0,-3],[0,-5]],[[8822,7262],[-14,0],[-1,0],[-6,0],[-10,0],[-9,-1],[-2,0],[-3,0],[-2,1],[-6,0],[-11,0],[-6,0],[-2,0],[-4,0],[-2,0],[-6,0],[-8,0],[-3,0],[-5,0],[-4,0],[-8,0],[-3,0],[-10,0],[-9,0],[-1,0],[-1,0],[-16,0],[-1,0],[-4,4],[-1,2],[-1,2],[-1,1],[-3,6],[0,4],[0,4],[2,3],[2,-1],[2,-4],[2,-1],[2,0],[5,5],[2,1],[1,1],[2,-1],[1,-2],[2,-2],[2,-2],[1,0],[1,2],[3,16],[1,10],[-3,7],[0,1],[-2,6],[-2,5],[-1,2],[-7,20],[-3,9],[-2,8],[0,9],[0,8],[0,5],[1,7],[0,8],[-1,9],[-1,8],[-1,3],[-6,8],[-4,2],[-5,0],[-3,2],[-2,5],[-1,1],[-2,1],[-1,0],[-1,-4],[0,-3],[1,-5],[-2,-2],[-3,-2],[-3,0],[-2,1],[-2,2],[-1,1],[-2,3],[-1,2],[0,1],[0,1],[-3,11],[-1,5],[0,1],[-1,3],[-4,8],[-2,4],[0,1],[-1,4],[-2,7],[0,1],[0,7],[0,6],[0,13],[0,10],[-1,0],[-7,-1],[-11,0],[-3,0],[-1,0],[-12,0],[-2,0],[-3,0],[-1,0],[-1,0],[-3,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-5,-1],[-4,0],[-3,0],[-1,1],[-4,0],[-4,0],[-4,0],[-1,0],[-7,0],[-12,0],[-2,0],[-3,0],[-2,0],[-9,0],[-7,0],[-7,0],[-1,0],[-3,0],[-1,0],[-9,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,1],[-1,0]],[[8447,7520],[-5,0],[-5,0],[-2,0],[-9,0],[-7,0],[-5,0],[-5,0],[-4,0],[-3,0],[-1,0],[-6,0],[-11,0],[0,9],[0,9],[0,3],[0,7],[0,6],[0,8],[0,4],[0,20],[0,8],[0,1],[0,5],[0,5],[0,16],[0,19],[0,4],[0,4],[0,27],[1,19],[0,2],[-1,6],[0,7],[0,5],[1,3],[-1,6],[0,13],[0,6],[0,5],[0,26],[0,3],[4,0],[0,22],[0,11],[0,11],[0,24],[0,15],[0,3],[0,9],[0,7],[0,6],[0,4],[0,6],[0,5],[0,6],[0,13],[0,4],[0,7],[0,4],[0,4],[0,3],[0,8],[0,9],[0,3],[0,3],[0,5],[0,13],[0,5],[0,4],[0,1],[0,15],[0,5],[0,6],[0,5],[0,12],[0,3],[0,9],[0,8],[0,23],[0,7],[0,10],[0,7],[0,3],[0,5],[0,4],[0,6],[0,7],[0,8],[0,13],[0,6],[0,5],[0,4],[0,3],[0,2],[0,6],[0,5],[0,4],[0,7],[0,15],[1,0],[15,0],[1,0],[4,0],[0,5],[0,13],[0,5],[0,4],[0,8],[0,8],[-1,24],[0,19],[-4,0],[-1,0],[-9,0],[-3,0],[-4,0]],[[6465,7525],[-9,0],[-7,0],[-16,0],[-10,0],[-4,1],[-28,0],[-10,0],[-21,0],[-13,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-20,0],[-5,0],[-3,0],[-2,0],[-3,0],[-8,0],[-21,0],[-4,0],[-2,0],[-3,0],[-4,0],[-1,0],[-1,0],[-2,0],[-4,0],[-12,0],[-9,0],[-9,0],[-7,0],[-5,0]],[[6214,7526],[-1,0],[-10,0],[-10,0],[-14,0],[-4,0],[-1,0],[-2,0],[-2,0],[-7,0],[-2,0],[-8,0],[-1,0],[-3,0],[-2,0],[-6,0],[-10,0],[-4,0],[-2,0],[-3,-1],[-2,1],[-9,0],[-1,0],[-3,0],[-1,0],[-9,0],[-8,0],[-5,0],[-3,0],[-1,0],[-5,0],[-2,0],[-4,0],[-3,0],[-18,0],[-11,0],[-1,0],[-2,0],[-1,0],[-6,0],[-5,0],[-16,0],[-1,0],[-4,0],[-16,0],[-4,0],[-2,0],[-4,0],[-7,0],[-2,0],[-2,0],[-3,0],[-1,0],[-6,0],[-1,0],[-7,0],[-3,0],[-15,0],[-5,0],[-3,0],[-1,0],[-1,-1],[-5,0],[-4,0],[-3,0],[-4,0],[-3,0],[-4,0],[-1,0],[-3,0],[-2,0],[-3,0],[-1,0],[-1,1],[-3,0],[-3,0],[-3,0],[-15,0],[-11,0],[-10,0],[-1,0],[-3,0],[-4,0],[-13,1],[-8,-1],[-2,1],[-1,0],[-2,0],[-8,0],[-1,0],[-1,0],[-3,0],[-16,0],[-20,0],[-6,0],[-3,0],[-2,0],[-10,0],[-9,0],[-1,0],[-3,0],[-8,-1]],[[5714,7526],[0,5],[0,3],[0,8],[0,10],[0,4],[0,5],[0,3],[0,4],[0,4],[0,3],[0,8],[0,12],[0,5],[0,7],[0,5],[0,12],[0,4],[0,5],[0,4],[0,5],[0,5],[0,6],[0,6],[0,6],[1,8],[0,4],[0,5],[0,6],[0,5],[0,4],[0,7],[0,3],[0,12],[0,6],[0,6],[0,6],[0,4],[0,6],[0,5],[0,4],[0,8],[-1,2],[0,4],[0,4],[0,7],[0,6],[0,9],[0,9],[0,6],[0,4],[0,4],[0,5],[0,6],[0,4],[0,4],[0,3],[0,3],[0,1],[0,3],[0,3],[0,3],[0,3],[0,6],[0,5],[0,3],[0,3],[0,5],[0,7],[0,4],[0,4],[0,3],[0,5],[0,4],[0,3],[0,4],[0,4],[0,6],[0,6],[0,5],[0,4],[0,5],[0,3],[0,4],[0,5],[0,4],[0,3],[0,11],[0,6],[0,12],[0,5],[0,7],[0,6],[0,6],[0,7],[0,8],[0,6],[0,7],[0,2],[0,1],[0,3],[0,5],[0,5],[0,7],[0,13],[0,18],[0,11],[0,4],[0,4],[0,8],[0,5],[0,5],[0,4],[0,13],[0,5],[0,8],[0,3],[0,4],[0,4],[0,9],[0,5],[0,4],[0,1],[0,6],[0,6],[0,30],[0,3],[0,15],[0,1],[0,4],[0,11],[0,5],[0,4],[0,7],[0,5],[0,4],[0,14],[0,3],[0,9],[0,6],[0,7],[0,8],[0,3],[0,5],[0,14],[0,4],[0,15],[0,5],[0,8],[0,6],[0,5]],[[4223,7525],[0,-13],[0,-4],[0,-3],[0,-5],[0,-4],[0,-4],[0,-25],[0,-4],[0,-3],[0,-6],[0,-5],[0,-3],[0,-5],[0,-4],[0,-4],[0,-7],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-3],[0,-3],[0,-5],[0,-6],[0,-3],[0,-4],[0,-4],[0,-3],[0,-5],[0,-14],[1,-5],[0,-8],[-1,-5],[0,-5],[0,-5],[0,-6],[0,-4],[0,-5],[0,-3],[0,-8],[0,-5],[0,-8],[1,-25],[0,-21],[0,-32],[0,-15],[0,-17],[0,-5],[0,-8],[0,-3],[0,-9],[0,-35],[1,-29]],[[4225,7078],[-3,2],[2,-5],[-1,-1],[-1,0],[-1,0],[0,-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],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,2],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-12,-4],[-5,-2],[-9,-4],[-17,-6],[0,-4],[-4,-9],[1,0],[1,-4],[0,-1],[-5,-14],[0,-2],[-3,-8],[-4,-7],[-4,-7],[-2,0],[-3,0],[-2,2],[-3,0],[-2,-5],[-8,-17],[-1,-2],[-1,-1],[-1,-4],[-1,-2],[-1,-7],[-1,-2],[1,-1],[0,-11],[-3,-12],[0,-1],[-2,-7],[-1,-2],[-2,-1],[-3,-5],[-2,-4],[-4,-22],[0,-10],[-1,-8],[0,-9],[1,-15],[0,-4],[2,-3],[0,-3],[-2,-16],[-1,-2],[-3,-6],[-3,-5],[-2,-2],[-2,-3],[-1,-3],[-2,-3],[0,-1],[-4,-9],[0,-1],[-1,-2],[-2,-5],[-2,-3],[-1,-3],[-1,-1],[0,-2],[-1,-3],[-4,-9],[-7,-12],[-1,-1],[-4,-4],[-1,-2],[0,-1],[0,-1],[-1,-7],[0,-1],[0,-8],[0,-1],[1,-7],[1,-2],[0,-9],[0,-2],[0,-1],[0,-1],[-1,-2],[-1,-2],[-2,-9],[-2,-9],[-1,-9],[-3,-21],[0,-2],[-3,-10],[0,-1],[-2,-1],[-2,0],[-2,0],[-2,-2],[-2,-1],[-1,-1],[-13,-9],[0,-1],[-1,0],[-4,-1],[-3,-1],[-1,-1],[-3,-1],[-7,-1],[-1,0],[-2,-1],[-1,-1],[-1,-2],[-1,0],[0,-2],[-1,-1],[-4,-10],[-2,-4],[0,-2],[-1,-3],[-4,-6],[-3,-4],[-2,-5],[-1,-2],[-1,-3],[-2,0],[-2,3],[-4,2],[-4,0],[-5,0],[-1,0],[-2,1],[-2,2],[-2,3],[-2,2],[-1,0],[-1,0],[-3,3],[-1,1],[-2,3],[-2,5],[-1,0],[-1,0],[-3,1],[-3,2],[-1,0],[-6,2],[-2,1],[-1,-1],[-7,0],[-11,-2],[-2,1],[-1,1],[-8,6],[-14,9],[-4,2],[-1,0],[-1,0],[-4,2],[-5,4],[-3,2],[-3,4],[-1,1],[-1,1],[0,1],[-2,6],[-2,4],[-3,9],[0,1],[-1,1],[-1,4],[-1,0],[0,1],[-4,4],[-2,3],[-1,1],[-2,4],[-2,6],[-2,5],[-1,2],[0,1],[-2,3],[-4,4],[-2,1],[-1,0],[-2,0],[-4,-2],[-1,0],[0,-1],[-1,-1],[-3,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-3,2],[-3,3],[-3,0],[-2,1],[-5,6],[-1,2],[-1,3],[0,2],[0,6],[-2,22],[-1,1],[-2,4],[-4,2],[0,1],[-2,3],[-1,4],[0,1],[-3,7],[-1,1],[-4,3],[-2,2],[0,1],[-1,1],[-2,4],[-2,6],[-1,2],[0,1],[-1,2],[0,22],[-1,9],[-3,7],[-5,9],[0,5],[0,7],[0,9],[1,6],[1,10],[0,4],[-1,5],[-1,3],[0,11],[0,3],[1,2],[0,11],[0,1],[0,3],[1,7],[1,8],[0,1],[0,2],[2,4],[1,3],[0,1],[1,3],[0,4],[0,1],[0,5],[2,7],[0,6],[0,1],[-1,5],[-1,15],[-2,6],[0,3],[0,6],[0,3],[1,1],[0,2],[0,3],[0,1],[-1,4],[-2,4],[0,2],[0,2],[-1,2],[-2,2],[-2,6],[-1,3],[0,1],[1,8],[-1,0],[-1,6],[0,1],[-1,1],[-2,2],[-3,3],[-3,3],[-1,1],[-2,1],[-1,-1],[-1,0],[-4,-4],[-2,2],[-1,0],[-2,1],[-2,0],[-2,0],[0,1],[-2,1],[-1,1],[-2,0],[-3,-1],[-1,0],[-2,0],[-1,-1],[-2,-1],[-3,-1],[-4,-5],[-3,-6],[-1,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[-1,-3],[-1,-2],[-1,-2],[-2,-5],[-2,-4],[-1,-3],[-1,-3],[-2,-2],[-2,-3],[-1,-2],[0,-2],[-3,-2],[-1,0],[-2,-1],[-2,0],[-1,1],[-3,0],[-3,1],[-3,-1],[-1,0],[-3,-4],[-3,-4],[-1,-3],[-1,-4],[1,-2],[0,-3],[0,-3],[0,-3],[0,-2],[-1,-4],[0,-3],[-3,-4],[-3,-5],[-2,-5],[-5,-10],[-2,-4],[-2,-5],[-3,-22],[0,-6],[0,-3],[0,-3],[0,-3],[0,-2],[1,-9],[0,-7],[0,-1],[1,-5],[2,-4],[2,-2],[1,-7],[1,-1],[0,-5],[0,-3],[-3,-19],[-1,-7],[-2,-3],[0,-1],[-2,-2],[-2,-4],[-1,-1],[-2,-4],[-1,-1],[-3,-4],[-2,-7],[-1,-3],[-1,-5],[-1,-3],[-1,-4],[0,-1],[-3,-3],[-3,-3],[-2,-2],[-3,-4],[-5,-4],[-2,-2],[-3,-3],[-2,-1],[-1,-2],[-2,-2],[-2,-2],[-2,-1],[-1,-2],[-3,-1],[-1,-1],[-1,-1],[-2,-3],[-1,-1],[-1,-2],[-2,-4],[-1,-1],[-1,-3],[-1,-3],[-1,-2],[0,-1],[-1,-3],[-2,-6],[-2,-5],[-2,-3],[-1,-1],[-1,-1],[-4,-2],[-2,-2],[-1,-1],[-4,-5],[-4,-4],[-2,0],[-1,-1],[-1,0],[-3,-2],[-5,-6],[-1,0],[-3,0],[-2,-1]],[[3502,6687],[0,1],[0,352],[0,37],[0,127],[0,34],[0,173],[0,15],[0,165],[0,2],[0,214],[0,54],[0,264],[0,15],[0,54],[0,125],[0,196],[-4,0]],[[7856,7518],[-5,0],[-1,0],[-5,0],[-4,0],[-1,0],[-11,1],[-8,0]],[[7821,7519],[-4,0],[-2,0],[-2,0],[-2,0],[-12,0],[-4,0],[-3,1],[-1,0],[-6,0],[-6,0],[-8,0],[-2,0],[-10,0],[-20,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-14,1],[-5,0],[-2,0],[-3,0],[-1,0],[-5,0],[-7,1],[-5,0],[-3,0],[-5,0],[-5,0],[-7,0],[-3,0],[-11,0],[-6,0],[-1,0],[-2,0],[-2,0],[-6,0],[-23,1],[-9,0],[-3,0],[-17,0],[-2,0],[-13,0],[-5,0],[-9,0],[-17,0],[-15,-1],[-1,0],[-19,0],[-3,0],[-5,0],[-5,0],[-10,0],[-5,0],[-3,0],[-1,0],[-7,0],[-4,0],[-9,0],[-2,0],[-5,0],[-1,0],[-1,0],[0,-6],[0,-4]],[[7444,7512],[-4,-1],[-1,1],[-2,0],[-1,0],[-1,-1],[-5,0],[-10,0],[-1,0],[-5,0],[-12,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-4,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-3,0],[-6,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-2,0],[-4,0],[-5,1],[-1,0],[-4,-1],[-3,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-3,0],[-10,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-12,0],[-4,0],[-10,0],[-11,-1],[-3,0],[-3,0],[-1,0],[-4,0],[-1,0],[-4,0],[-2,0],[-2,0],[0,5],[0,3],[0,5],[0,3],[0,4],[0,22],[0,5],[1,12],[-1,4],[0,5],[1,4],[-1,2],[0,2],[0,4],[1,7],[0,9],[0,4],[0,13],[0,4],[0,4],[0,4],[0,5],[0,9],[0,4],[0,9],[0,5],[0,4],[0,7],[0,4],[0,4],[0,4],[0,3],[0,4],[-1,4],[0,3],[0,1],[1,2],[0,3],[0,6],[0,3],[0,4],[0,3],[0,7],[0,4],[0,7],[0,7],[0,3],[0,4],[0,3],[-1,3],[0,4],[-1,0],[-2,0],[-7,0],[-3,0],[-1,1],[-1,0],[-3,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-6,0],[-1,0],[-5,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-9,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[-7,0],[-3,0],[-8,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-4,0],[-1,0],[-1,0]],[[9322,7517],[-7,0],[-13,0],[-2,0],[-33,0],[-1,0],[-2,0],[-2,0],[-2,0],[-4,0],[-7,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-10,0],[-5,0],[-3,0],[-3,0],[-5,0],[-5,0],[-11,0],[0,-36],[1,-18],[0,-27],[0,-1],[0,-16],[-1,-10],[0,-11],[0,-4],[0,-6],[0,-4],[0,-28],[0,-5],[0,-6],[0,-6],[0,-5],[0,-10],[0,-22],[0,-7],[0,-36],[-8,1],[-10,0],[-2,0],[-21,0],[-11,0],[-10,0],[-21,0],[-5,0],[-16,0]],[[9093,7260],[-11,0],[-17,0],[-12,0],[-2,0],[-4,1],[-4,0],[-4,-1],[-2,0],[-1,0],[-3,1],[-3,0],[-16,0],[-6,0],[-5,0],[-2,0],[-2,0],[-2,0],[-5,0],[-2,0],[-2,0],[-3,0],[-3,0],[-14,0],[-6,0],[-4,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[-7,0],[-14,0],[-16,0],[-1,0],[-2,0],[-2,0],[-2,0],[-5,1],[-2,0],[-6,0],[-3,0],[-3,0],[-14,0],[-7,0],[-5,0],[-7,0],[-6,-1],[-12,1],[-11,0]],[[5714,7526],[-10,0],[-10,0],[-5,0],[-15,0],[-1,0],[-3,0],[-1,0],[-4,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-11,0],[-1,0],[-3,0],[-6,0],[-13,0],[-14,0],[-3,0],[-11,0]],[[5590,7526],[-5,0],[-3,0],[-3,0],[-1,0],[-2,1],[-5,0],[-3,0],[-1,0],[-6,0],[-3,0],[-3,0],[-7,0],[-2,-1],[-2,0],[-2,0],[-8,0],[-5,0],[-6,0],[-9,0],[-7,0],[-2,0],[-5,0],[-1,0],[-6,0],[-7,0],[-16,0],[-4,0],[-5,0],[-9,0],[-4,0],[-3,0],[-2,0],[-4,0],[-9,0],[-6,0],[-21,1],[-1,-1],[-4,0],[-5,0],[-11,0],[-21,0],[-9,0],[-3,0],[-8,0],[-10,0],[-11,1],[-10,0],[-2,0],[-8,0],[-3,0],[-2,0],[-16,0],[-10,0],[-3,0],[-3,0],[-11,0],[-2,0],[-7,0],[-1,0],[-7,0],[-2,0],[-13,1],[-5,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-9,0],[-21,0],[-21,1],[-21,0],[-21,-1],[-4,-1],[-1,0],[-2,0],[-13,-1]],[[5093,7526],[-21,0],[-9,-1],[-12,0],[-20,-1],[-3,0],[-8,-1],[-31,-1],[-41,-1],[-16,-1],[-1,0],[-11,-1],[-12,0],[-9,0],[-6,-1],[-2,0],[-3,0],[-5,0],[-4,0],[-13,-1],[-4,0],[-22,-1],[-1,0],[-2,0],[-2,0],[-3,0],[-8,0],[-3,0],[-3,-1],[-3,0],[-23,1],[-1,0],[-2,0],[-6,0],[-14,0],[-1,0],[-2,0],[-4,0],[-6,0],[-2,0],[-7,0],[-6,0],[-20,1]],[[8447,7520],[0,-5],[0,-3],[0,-5],[0,-4],[0,-5],[0,-4],[0,-3],[0,-4],[0,-6],[0,-5],[0,-5],[0,-16],[0,-7],[0,-3],[0,-12],[0,-21],[0,-14],[0,-3],[0,-4],[0,-3],[0,-4],[0,-16],[0,-4],[0,-6],[0,-11],[0,-3],[0,-5],[0,-4],[0,-8],[0,-9],[0,-5],[0,-4],[0,-4],[0,-3],[0,-3],[0,-8],[0,-3],[0,-5],[0,-21],[0,-5],[0,-6],[0,-3],[0,-3],[0,-6],[0,-6],[0,-3],[0,-12],[0,-3],[0,-5],[0,-4],[0,-3],[0,-1],[0,-5],[0,-11],[0,-5],[0,-4],[0,-18],[0,-3],[0,-11],[0,-11],[0,-7],[0,-3],[0,-4],[0,-3],[0,-5],[0,-5],[0,-4],[0,-5],[0,-5],[0,-3],[0,-10],[0,-4],[0,-6],[0,-3],[0,-19],[0,-4],[0,-4],[0,-7],[0,-6],[0,-5],[0,-1],[0,-2],[0,-3],[0,-5],[0,-6],[0,-3],[0,-10],[0,-7],[0,-13],[0,-5],[0,-4],[0,-3],[0,-9],[0,-4],[0,-7],[0,-21],[0,-43],[0,-21],[0,-5],[0,-8],[0,-3],[0,-34],[0,-8],[0,-1],[0,-8],[0,-3],[0,-8],[0,-6],[0,-1],[0,-7],[0,-16],[-1,0],[-25,0],[-8,0],[-4,1],[-4,0],[-2,0],[-3,0],[-3,0],[-3,0],[-10,0],[-5,0],[1,-44],[0,-6],[-1,-19],[0,-8],[0,-13],[0,-6],[0,-5],[0,-5],[0,-5],[0,-6],[0,-13],[0,-4]],[[8379,6614],[-3,0],[-6,0],[-1,0],[-3,0],[-6,0],[-7,0],[-13,0],[-4,0],[-11,1],[-8,0],[-3,1],[-1,0],[-9,0],[-8,-1],[-10,1],[-5,0],[-5,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-5,0],[-11,0],[-1,0],[-7,0],[-13,1],[-2,0],[-2,0],[-1,0],[-1,0],[-4,0],[-6,0],[-5,0],[-2,0],[-3,0],[-1,0],[-4,0],[-1,0],[-7,0],[-2,0],[-3,0],[-1,0],[-3,0],[-4,0],[-10,0],[-21,0]],[[8130,6617],[0,22],[0,8],[0,2],[0,10],[0,9],[0,34],[0,45],[4,1],[0,32],[0,9],[0,10],[0,7],[0,6],[0,10],[0,10],[0,18],[0,4],[0,10],[0,12],[0,2],[0,26],[0,7],[0,8],[0,5],[0,5],[0,12],[0,9],[0,12],[0,7],[0,7],[0,8],[0,4],[0,11],[0,6],[0,6],[0,8],[0,4],[0,5],[0,8],[0,4],[0,4],[0,3],[0,14],[0,4],[0,1],[0,7],[0,9],[0,4],[0,5],[0,16],[0,6],[0,3],[0,16],[0,6],[0,17],[0,8],[0,5],[0,5],[0,4],[0,10],[0,9],[0,7],[0,5],[0,3],[0,5],[0,4],[0,5],[0,9],[0,7],[0,7],[0,10],[0,4],[-1,0],[-2,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,1],[-2,-1],[-2,1],[-2,0],[-1,0],[-1,0],[-2,0],[-6,0],[-1,0],[-4,0],[-9,0],[-9,-1],[-2,0],[-6,1],[-3,0],[-2,0],[-5,0],[-5,0],[-3,0],[-4,0],[-2,0],[-2,0],[-20,0],[-3,0],[-2,0],[-6,0],[-2,0],[-2,0],[-2,0],[-5,0],[-4,0],[-5,0],[-3,1],[-5,0],[-3,0],[-9,-1],[-2,0],[-4,1],[-5,-1],[-1,0],[-1,0],[-4,0],[-4,0],[-1,0],[-2,0],[-2,0],[-4,0],[-2,0],[-1,0],[-28,0],[-3,0],[-1,0],[-7,0],[-2,0],[-23,0],[-3,0],[-6,0],[-2,0],[-5,0],[-3,0],[-1,27],[0,15],[0,4],[0,15],[0,8],[0,11],[0,4],[0,33],[0,11],[0,8],[0,10],[0,14],[0,4],[0,5],[0,10],[0,3],[0,12],[0,4],[0,21],[0,9],[0,10],[0,2],[0,16]],[[7444,7512],[0,-17],[-1,-57],[0,-25],[0,-4],[0,-20],[0,-4],[0,-14],[0,-30],[0,-6],[-1,-16],[0,-13],[0,-5],[0,-32],[0,-14],[0,-7],[0,-15],[0,-18],[0,-36],[0,-28],[0,-5],[0,-7],[0,-23],[1,-68],[0,-4],[0,-4],[0,-4],[0,-6],[0,-3],[1,-12],[0,-8],[0,-6],[0,-3],[0,-4],[0,-18],[0,-9],[0,-6],[0,-3],[0,-8],[0,-22],[0,-9],[0,-4],[0,-4],[0,-3],[0,-6],[0,-17],[0,-18]],[[7444,6867],[-4,0],[-4,0],[-6,0],[-1,0],[-1,0],[-3,0],[-2,1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-15,1],[-6,0],[-2,1],[-1,-1],[-6,0],[-6,0],[-4,1],[-1,0],[-4,0],[-1,0],[-3,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-4,0],[-8,0],[-2,0],[-2,0],[-4,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-4,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-4,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-6,0],[-1,0],[-5,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-4,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-8,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[-4,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-4,0],[-3,0],[-2,0],[-1,0],[-1,0],[-5,-1],[-14,-2],[-4,0],[-12,1],[-5,0],[-1,0],[-5,0],[-3,1],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-16,0],[-3,0],[-2,1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-6,0],[-2,0],[-6,-1],[-1,0],[-6,1],[-2,0],[-2,-1],[-4,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,1],[-3,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-5,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-5,0],[-1,0],[-5,0],[-10,0],[-2,0],[-1,0],[-1,1],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-5,0],[-2,0],[-3,0],[-5,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-4,0],[-2,0],[-3,0],[-1,0],[-5,0],[-3,0],[-2,0],[-5,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,-1],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0]],[[6838,6868],[0,4],[0,4],[0,7],[0,6],[0,7],[0,14],[0,5],[0,3],[0,-2],[-1,-3],[-1,-6],[0,-2],[-4,-8],[-5,-8],[-2,-2],[-1,-2],[-6,-7],[-2,-2],[-1,-1],[-10,-7],[-3,-2],[-1,0],[0,-1],[-2,-1],[-2,0],[-6,0],[-2,1],[-1,0],[-7,2],[-5,1],[-5,4],[-5,3],[-2,2],[-1,2],[-2,4],[-2,2],[-1,8],[0,3],[-1,3],[-1,2],[0,1],[-1,2],[-3,8],[0,1],[-4,11],[0,1],[-2,5],[-2,5],[-1,1],[-6,6],[-2,1],[-3,1],[-1,2],[-2,3],[0,1],[-1,1],[-4,3],[-3,2],[-3,1],[-4,1],[-4,1],[-7,0],[-7,1],[-2,0],[-5,0],[-4,0],[-3,-1],[-3,2],[-4,1],[-5,4],[-1,2],[0,6],[0,4],[0,1],[1,2],[1,7],[-1,9],[0,4],[0,12],[-1,1],[0,3],[-1,6],[-1,6],[-2,4],[-1,3],[-1,4],[-1,4],[0,2],[-1,3],[-4,11],[-2,3],[-1,1],[-2,3],[-4,2],[-7,4],[-4,1],[-4,-1],[-1,0],[-1,-1],[-3,-3],[-3,0],[-4,-1],[-2,-2],[-1,-2],[-1,-2],[-1,-4],[-2,-10],[-1,-7],[-1,-1],[0,-2],[-2,-10],[-1,-4],[-4,-6],[-3,-4],[-2,-5],[-3,-5],[-7,-7],[-1,-2],[0,13],[0,7],[0,3],[0,4],[0,4],[0,3],[0,3],[0,4],[0,3],[0,1],[0,20],[0,2],[0,15],[0,3],[0,5],[0,10],[0,3],[0,11],[0,4],[0,6],[0,6],[0,6],[0,5],[0,3],[0,5],[0,3],[0,5],[0,7],[0,8],[0,6],[0,5],[0,7],[0,7],[0,3],[0,4],[0,5],[0,3],[0,3],[0,6],[0,4],[0,4],[0,22],[0,7],[0,12],[0,31],[0,42],[0,5],[0,5],[0,4],[0,8],[0,5],[0,4],[0,3],[0,5],[0,4],[0,8],[0,12],[0,4],[0,6],[0,4],[0,3],[0,6],[0,26],[0,16],[0,14],[0,26],[0,3]],[[6214,7526],[0,-3],[0,-5],[0,-7],[0,-24],[0,-5],[0,-3],[0,-4],[0,-4],[0,-3],[0,-7],[0,-26],[0,-11],[0,-12],[0,-3],[0,-5],[0,-6],[0,-4],[0,-3],[0,-3],[0,-5],[0,-2],[0,-3],[0,-4],[0,-4],[0,-5],[0,-13],[0,-5],[0,-7],[0,-13],[0,-1],[0,-5],[0,-7],[0,-17],[0,-7],[0,-3],[0,-1],[0,-4],[0,-12],[0,-5],[0,-4],[0,-4],[0,-5],[0,-3],[0,-5],[0,-6],[0,-5],[0,-3],[0,-6],[0,-12],[0,-30],[0,-3],[0,-4],[0,-3],[0,-4],[0,-11],[0,-5],[0,-6],[0,-8],[0,-6],[0,-6],[0,-9],[0,-5],[0,-3],[0,-15],[0,-5],[0,-9],[0,-4],[0,-4],[0,-4],[0,-4],[0,-10],[0,-14],[0,-4],[0,-6],[0,-4],[0,-7],[0,-7],[0,-4],[0,-6],[0,-5],[0,-6],[0,-10],[0,-5],[0,-4],[0,-7],[0,-11],[0,-4],[0,-5],[0,-12],[0,-12],[0,-6],[0,-4],[0,-4],[0,-10],[0,-8],[0,-5],[0,-4],[0,-5],[0,-7],[0,-4],[0,-6],[0,-3],[0,-3],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-5],[0,-4],[0,-5],[0,-4],[0,-4],[0,-5],[0,-5],[0,-10],[0,-8],[0,-5],[0,-5],[0,-3],[0,-5],[0,-6],[0,-5],[0,-5],[0,-5],[1,-2],[0,-6],[0,-8],[0,-4],[0,-7],[0,-8],[0,-4],[0,-6],[0,-11],[0,-4],[0,-4],[0,-5],[0,-5],[0,-7],[0,-4],[0,-4],[0,-3],[0,-4],[1,-3],[0,-3],[-1,-7],[0,-3],[0,-1],[0,-3],[0,-12],[1,-8],[0,-11],[0,-21],[0,-5],[0,-2],[0,-5],[0,-6],[0,-3],[0,-3],[0,-6],[0,-4],[0,-1],[0,-3],[0,-5],[0,-6],[0,-7],[0,-3],[0,-4],[0,-6],[0,-5],[0,-3],[0,-9],[0,-13],[0,-4],[0,-7],[0,-6],[0,-3],[0,-4],[0,-2],[0,-5],[0,-3],[0,-3],[0,-4],[0,-4],[0,-4],[0,-3],[0,-4],[0,-4],[0,-4],[0,-4],[0,-7],[0,-7],[0,-3],[0,-5],[0,-5],[0,-4],[0,-4],[0,-8],[0,-5],[0,-7],[0,-1],[0,-2],[0,-4],[0,-4],[0,-6],[0,-5],[0,-3],[0,-4],[0,-3],[0,-4],[0,-13],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-5],[0,-4],[0,-9],[0,-3],[0,-5],[0,-9],[0,-5],[0,-6],[0,-6]],[[6216,6230],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-5,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-5,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-5,0],[-3,0],[-1,0],[-6,0],[-4,0],[-2,0],[-4,0],[-1,-1],[-2,0],[-3,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,1],[-2,0],[-1,0],[-9,0],[-2,0],[-4,0],[-4,0],[-4,0],[-2,0],[-3,0],[-2,0],[-1,0],[-3,0],[-5,0],[-3,0],[-2,0],[-5,0],[-5,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-4,0],[-3,0],[-3,0],[-5,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,1],[-2,0],[-3,-1],[-2,1],[-2,0],[-2,0],[-7,0],[-2,0],[-4,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-3,0],[-3,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-6,0],[-1,0],[-2,0],[-5,0],[-5,0],[-2,0],[-1,0],[-4,0],[-3,0],[-2,0],[-5,0],[-2,0],[-2,0],[-1,0],[-6,-1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-4,0],[-1,0],[-6,0],[-4,0],[-2,0],[-4,0],[-2,0],[-3,0],[-8,0],[-3,0],[-2,0],[-4,0],[-4,0],[-2,0],[-5,0],[-4,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-6,0],[-3,0],[-2,0],[-7,0],[-3,0],[-4,0],[-6,0],[-4,0],[-4,0],[-3,0],[-1,0],[-6,0],[-10,0],[-9,0],[-1,0],[-4,0],[-3,0],[-3,0],[-2,-1],[-3,0],[-3,0],[-1,0],[-3,0],[-1,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-1,1],[-3,-1],[-2,0],[-6,0],[-2,0],[-1,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-8,0],[-2,0],[-2,0],[-3,0],[-3,0],[-4,0],[-5,0],[-8,0],[-5,0],[-4,0],[-3,0],[-1,0],[-3,0]],[[5594,6228],[0,4],[0,9],[0,5],[0,3],[0,4],[0,10],[0,9],[0,18],[0,8],[0,4],[0,3],[0,3],[0,5],[0,31],[0,12],[0,10],[0,12],[0,3],[0,8],[0,3],[0,7],[0,7],[0,16],[0,6],[0,4],[0,4],[0,4],[0,4],[0,4],[0,5],[0,6],[0,5],[0,4],[0,8],[0,9],[0,9],[0,5],[0,7],[0,10],[0,4],[0,7],[0,15],[0,7],[0,15],[0,6],[0,1],[0,4],[0,4],[0,4],[0,9],[0,7],[0,4],[0,2],[0,6],[0,11],[0,3],[0,3],[0,4],[0,12],[0,3],[0,9],[0,5],[0,11],[0,5],[0,10],[0,5],[0,4],[0,3],[0,4],[0,4],[0,6],[0,24],[-2,3],[-1,0],[0,8],[0,8],[0,2],[0,1],[0,5],[0,5],[0,10],[0,4],[0,8],[0,4],[0,3],[0,4],[0,15],[0,9],[0,12],[0,3],[0,4],[0,4],[0,6],[0,3],[0,4],[0,6],[0,31],[0,8],[0,4],[0,15],[0,2],[0,3],[0,6],[0,5],[0,4],[0,4],[0,4],[0,5],[0,3],[0,4],[0,7],[0,5],[0,4],[0,7],[-1,8],[1,4],[-1,5],[0,11],[0,5],[0,3],[0,10],[1,4],[0,1],[-1,36],[0,4],[0,5],[0,5],[0,3],[0,6],[0,26],[0,3],[0,3],[0,15],[1,5],[-1,4],[0,13],[0,5],[0,13],[0,3],[0,11],[0,6],[0,5],[0,6],[0,6],[0,3],[0,5],[0,9],[0,4],[0,4],[0,6],[0,42],[0,3],[0,14],[0,4],[0,4],[0,9],[0,6],[0,3],[0,5],[0,5],[0,6],[0,5],[0,5],[0,8],[0,9],[0,5],[0,5],[0,9],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,11],[0,13],[0,6],[0,4],[0,13],[0,1],[0,2],[0,5],[0,1],[0,22],[0,20],[0,3]],[[6838,6868],[0,-8],[0,-5],[0,-17],[0,-6],[0,-5],[0,-8],[0,-8],[0,-8],[0,-12],[0,-5],[0,-8],[0,-6],[0,-6],[0,-7],[0,-5],[0,-5],[0,-8],[-1,-10],[0,-11],[0,-8],[0,-6],[0,-9],[0,-6],[0,-8],[0,-3],[0,-5],[0,-4],[0,-10],[0,-6],[0,-2],[0,-7],[0,-4],[0,-7],[0,-8],[0,-4],[0,-7],[0,-6],[0,-15],[0,-6],[0,-3],[0,-3],[0,-3],[0,-11],[0,-3],[0,-6],[0,-4],[0,-3],[0,-7],[0,-4],[0,-6],[0,-3],[0,-5],[1,-12],[0,-3],[0,-3],[0,-3],[0,-4],[0,-4],[0,-5],[0,-8],[0,-4],[0,-3],[0,-3],[0,-4],[0,-5],[0,-3],[0,-4],[0,-3],[0,-4],[0,-6],[0,-7],[-1,-1],[0,-2],[1,-4],[-1,-5],[0,-4],[0,-4],[1,-4],[-1,-3],[0,-5],[1,-9],[0,-6],[-1,-5],[1,-5],[0,-4],[0,-5],[0,-3],[0,-5],[0,-4],[0,-5],[0,-3],[0,-4],[0,-4],[0,-3],[0,-4],[0,-5],[0,-4],[0,-7],[0,-4],[0,-3],[0,-5],[-1,-5],[1,-4],[0,-22],[0,-11],[0,-7],[0,-3],[0,-4],[0,-4],[0,-4],[0,-13],[0,-3],[0,-6]],[[6838,6225],[-10,1],[-8,0],[-3,0],[-12,0],[-9,0],[-4,0],[-2,0],[-3,0],[-6,1],[-6,-1],[-2,0],[-3,0],[-15,1],[-11,0],[-2,0],[-2,0],[-2,0],[-8,0],[-16,0],[-4,0],[-5,0],[-1,0],[-11,1],[-17,-1],[-4,0],[-3,0],[-2,1],[-1,0],[-4,0],[-6,0],[-3,0],[-2,0],[-18,0],[-2,0],[-6,0],[-6,0],[-4,0],[-1,0],[-2,0],[-2,0],[-2,0],[-6,0],[-12,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-5,0],[-2,0],[-5,0],[-6,0],[-6,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-4,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-4,0],[-3,0],[-4,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-9,0],[-2,0],[-4,0],[-5,0],[-5,0],[-1,0],[-3,0],[-12,1],[-5,0],[-1,0],[-2,0],[-2,0],[-6,0],[-3,0],[-2,0],[-5,0],[-3,0],[-3,0],[-9,0],[-6,0],[-8,0],[-2,0],[-5,1],[-21,0],[-5,0],[-13,0],[-2,0],[-5,0],[-1,0],[-6,0],[-2,0],[-7,0],[-6,0],[-8,0],[-7,0],[-14,0],[-7,0],[-16,0],[-5,0],[-4,0],[-13,0],[-3,1],[-8,-1],[-3,0],[-4,0],[-6,0]],[[5594,6228],[-16,0],[-5,0],[-20,0],[-7,0],[-2,0],[-12,0],[-10,0],[-11,0],[-7,0],[-7,1],[-27,-2],[0,-20],[0,-1],[0,-21],[0,-43],[0,-33],[0,-9],[0,-6],[0,-16],[0,-21],[0,-28],[0,-15],[0,-32],[0,-10],[0,-11],[0,-1],[0,-3],[0,-3],[0,-4],[0,-5],[0,-2],[0,-2],[0,-3],[0,-3],[0,-4],[0,-2],[0,-2],[0,-4],[0,-14],[0,-5],[0,-1],[0,-5],[0,-17],[0,-22],[0,-3],[0,-12],[0,-10],[0,-75],[0,-23],[0,-3],[0,-13],[0,-5]],[[5470,5715],[-32,0],[-15,0],[-5,0],[-2,0],[-11,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-6,0],[-1,0],[-3,0],[-13,0],[-10,0],[-12,0],[-2,0],[-4,0],[-2,0],[-7,0],[-4,0],[-4,0],[-2,0],[-8,0],[-4,0],[-4,0],[-3,0],[-10,0],[-2,0],[-11,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-3,0],[-12,0],[-10,0],[-2,0],[-3,0],[-2,0],[-9,0],[-8,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-4,1],[-1,-1],[-2,1],[-2,0],[-4,-1],[-4,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,1],[-1,-1],[-2,1],[-1,-1],[-2,1],[-1,0],[-1,0],[-4,0],[-2,0],[-10,-1],[-2,0],[-8,1],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-5,0],[-1,0],[-2,0]],[[5109,5716],[-1,0],[-2,0],[-7,0],[-1,1],[0,3],[0,4],[0,34],[0,32],[0,11],[0,12],[0,20],[0,7],[0,4],[0,7],[0,9],[0,10],[0,5],[0,8],[0,4],[0,5],[0,4],[0,4],[0,9],[0,4],[0,17],[0,3],[0,4],[0,5],[0,14],[0,5],[0,5],[0,6],[0,3],[0,4],[0,5],[0,4],[0,5],[0,7],[0,7],[0,8],[0,3],[0,10],[0,4],[0,4],[0,5],[0,3],[0,4],[0,4],[0,4],[0,4],[0,3],[0,4],[0,5],[0,5],[0,5],[0,3],[0,3],[0,4],[0,4],[0,31],[1,8],[0,3],[-1,21],[0,4],[0,3],[0,10],[0,3],[0,3],[0,4],[0,4],[0,12],[0,5],[0,32],[1,12],[0,4],[0,13],[0,6],[0,9],[0,2],[0,4],[-1,13],[0,28],[0,3],[0,5],[0,6],[0,3],[0,4],[0,3],[0,3],[0,4],[0,6],[0,8],[0,14],[0,3],[0,8],[0,7],[0,4],[0,6],[0,5],[0,4],[0,6],[0,4],[0,3],[0,4],[0,17],[0,6],[0,4],[0,4],[0,7],[0,5]],[[5098,6486],[0,19],[0,11],[0,5],[0,8],[0,7],[0,9],[0,3],[0,7],[0,3],[0,13],[0,5],[0,1],[0,37],[0,4],[0,9],[0,5],[0,12],[0,4],[0,4],[0,7],[0,8],[0,1],[0,3],[0,30],[0,7],[0,4],[0,6],[0,5],[0,3],[0,4],[0,3],[0,8],[-1,0],[-3,0],[-1,7],[1,21],[-1,5],[0,5],[0,5],[1,4],[0,5],[0,6],[0,8],[0,4],[0,4],[0,11],[0,6],[0,6],[0,6],[0,3],[0,5],[0,4],[0,3],[0,4],[0,4],[0,2],[0,4],[0,14],[0,6],[0,6],[0,3],[0,6],[0,4],[0,5],[-1,5],[1,4],[0,4],[0,4],[0,5],[0,5],[0,4],[-1,6],[0,3],[1,7],[-1,13],[0,5],[0,15],[0,3],[0,12],[0,6],[0,3],[0,3],[0,4],[0,10],[0,2],[0,2],[0,6],[0,5],[0,5],[0,3],[0,4],[0,6],[0,5],[0,3],[0,4],[0,3],[0,6],[0,6],[0,5],[0,5],[0,4],[0,9],[0,5],[0,13],[0,2],[0,4],[0,6],[0,6],[0,5],[0,6],[0,7],[0,10],[0,5],[0,5],[0,3],[0,5],[0,7],[0,1],[0,3],[0,6],[0,7],[0,7],[0,4],[0,5],[0,8],[0,3],[0,13],[0,17],[0,14],[0,5],[0,25],[0,3],[0,5],[0,3],[0,4],[0,4],[0,22],[0,7],[0,6],[0,3],[0,5],[0,9],[0,5],[0,3],[0,3],[0,3],[0,4],[0,3],[0,4],[0,4],[0,4],[0,8],[0,8],[0,6],[0,1],[0,8],[0,19],[0,5],[0,11],[0,1],[0,7],[0,4],[0,3],[0,9],[0,4]],[[5098,6486],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-4,0],[-6,0],[-2,0],[-1,0],[-1,0],[-8,0],[-14,-1],[-2,0],[-2,0],[-1,-1],[-1,1],[-2,-1],[-2,0],[-1,0],[-5,0],[-2,0],[-2,0],[-1,0],[-4,1],[-9,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-14,1],[-3,0],[-3,0],[-7,0],[-4,0],[-6,0],[-7,0],[-3,0],[-1,0],[-7,0],[-3,0],[-3,0],[-6,1],[-2,0],[-8,0],[-2,-1],[-1,0],[-2,0],[-2,0],[-5,0],[-4,1],[-2,-1],[-2,0],[-2,0],[-4,0],[-2,0],[-8,0],[-2,0],[-2,0],[-2,0],[-3,0],[-6,0],[-1,0],[-4,0],[-1,0],[-2,0],[-2,1],[-14,-1],[-3,0],[-1,0],[-1,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-6,0],[-1,0],[-9,0],[-2,0],[-5,-1],[-2,1],[-1,0],[-2,0],[-3,0],[-2,0],[-8,0],[-1,0],[-2,-1],[-2,1],[-2,-1],[-20,0],[-3,0],[-6,0],[-4,0],[-4,0],[-1,0],[-2,0],[-2,1],[-1,-1],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,1],[-2,-1],[-1,0],[-2,0],[-2,0],[-7,0],[-2,0],[-5,0],[-8,0],[-8,0],[-10,0],[-3,0],[-9,0],[-12,0],[-7,1],[-17,0],[-7,0],[-10,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-4,-1],[-3,0],[-2,1],[-2,0],[-1,0],[-1,0],[-3,0],[-2,0],[-3,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-5,0],[-6,-1],[-13,0],[-8,0],[-7,0],[-2,0],[-3,0],[-8,1],[-2,0],[-1,-1],[-1,1],[-2,0],[-1,0],[-4,-1],[-4,0],[-2,0],[-4,0],[-2,0],[-1,1],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,1],[-2,0],[-1,-1],[-2,1],[-1,-1],[-1,0],[-6,0],[-7,0],[-1,0],[-5,1],[-2,0],[-1,-1],[-2,1],[-1,0],[-2,-1],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-17,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-4,0],[-4,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0]],[[4231,6485],[0,4],[0,4],[0,9],[0,3],[0,14],[0,4],[0,5],[0,4],[0,4],[0,3],[0,5],[0,3],[0,4],[0,3],[0,4],[0,4],[0,4],[0,4],[0,8],[0,4],[0,17],[0,5],[0,3],[0,7],[0,3],[0,4],[0,5],[0,9],[0,4],[0,6],[0,11],[0,5],[0,10],[0,41],[0,7],[0,22],[-6,0],[0,13],[0,11],[0,6],[0,4],[0,7],[0,7],[0,13],[0,25],[0,7],[0,53],[0,3],[0,6],[0,5],[0,3],[0,4],[0,4],[0,4],[0,5],[0,4],[0,3],[0,3],[0,6],[0,3],[0,4],[0,7],[0,4],[0,20],[0,9],[0,5],[0,20],[0,12],[0,19],[0,20],[0,5],[0,10],[0,3]],[[8130,6617],[-8,0],[-13,0],[-10,0],[-2,0],[-8,0],[-2,0],[-2,0],[-1,0],[-4,1],[-2,0],[-11,0],[-9,0],[-7,0],[-3,0],[-7,0],[-6,0],[-6,0],[-7,0],[-5,0],[-10,0],[-1,0],[-3,0],[-20,0],[-2,0],[-28,-1],[-9,0],[0,-28],[0,-14],[0,-112],[0,-6],[0,-21],[0,-8],[0,-4],[0,-41],[0,-24],[0,-3],[0,-8],[0,-3],[0,-6],[0,-8],[0,-15],[0,-14],[0,-9],[0,-19],[0,-27],[0,-16],[0,-11],[0,-34],[0,-10],[0,-30],[0,-15],[0,-17],[0,-45],[0,-9],[0,-13],[0,-18],[0,-6],[0,-12],[0,-37]],[[7944,5974],[-20,0],[-4,0],[-1,0],[-4,0],[-3,0],[-1,0],[-1,-1],[-7,0],[-4,0],[-3,0],[-2,0],[-3,0],[-4,0],[-10,0],[-8,0],[-1,0],[-4,0],[-2,0],[-2,0],[-8,0],[-3,0],[-9,0],[-2,0],[-1,0],[-3,0],[-1,0],[-4,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-2,0],[-3,0],[-2,0],[-7,0],[-2,0],[-2,0],[-3,0],[-5,0],[-5,1],[-1,-1],[-1,0],[-2,0],[-2,0],[-2,1],[-1,0],[-4,0],[-1,0],[-1,0],[-3,0],[-1,0],[-4,0],[-3,0],[-12,0],[-2,0],[-4,-1],[-7,1],[-1,0],[-6,0],[-3,1],[-2,0],[-3,-1],[-5,0],[-8,1],[-2,0],[-3,0],[-4,0],[-3,0],[-5,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,-1],[-4,0],[-1,1],[-1,0],[-2,0],[-3,0],[-6,-1],[-4,0],[-5,0],[-2,0],[-4,0],[-2,0],[-1,0],[-2,0],[-1,0],[-6,0],[-1,0],[-3,0],[-10,0],[-1,0],[-5,0],[-5,0],[-1,0],[-3,0],[-5,0],[-3,0],[-4,0],[-2,0],[-1,0],[-6,0],[-5,0],[-3,0],[-3,0],[-2,0],[-3,0],[-7,0],[-2,0],[-4,0],[-4,0],[-2,0],[-4,0],[-2,0],[-1,0],[-4,0],[-6,0],[-2,0],[-3,0],[-10,0],[-1,0],[-2,0],[-4,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-6,0],[-1,0],[-1,0],[-6,-1],[-3,1],[-7,-1],[-1,0],[-3,0],[-5,0],[-5,0],[-2,1],[-1,0],[-7,0],[-2,0]],[[7445,5974],[0,4],[0,35],[0,3],[0,6],[0,1],[0,4],[0,16],[0,22],[0,33],[0,4],[0,4],[0,5],[0,3],[0,3],[0,6],[0,5],[0,5],[0,3],[0,6],[0,5],[0,4],[0,8],[0,5],[0,4],[0,6],[0,6],[0,3],[0,5],[0,31],[0,7],[0,5],[0,18],[0,7],[0,13],[1,5],[0,10],[0,1],[0,3],[0,5],[-1,5],[0,5],[1,5],[0,4],[0,4],[0,5],[0,8],[0,23],[0,6],[0,3],[0,14],[0,7],[0,15],[0,7],[0,36],[0,10],[0,34],[0,2],[0,2],[0,2],[0,2],[0,3],[0,1],[0,5],[0,3],[0,5],[0,6],[0,12],[0,6],[0,11],[0,36],[0,22],[0,11],[1,5],[-1,22],[0,17],[0,6],[0,4],[0,4],[0,5],[0,24],[0,5],[0,19],[0,16],[0,5],[0,14],[0,24],[0,5],[0,3],[-2,59],[0,17]],[[9093,7260],[0,-42],[0,-22],[0,-9],[0,-12],[0,-18],[-8,0],[-13,0],[0,-25],[0,-34],[0,-16],[0,-15],[-5,0],[0,-12],[0,-4],[0,-3],[-3,-2],[-1,0],[-1,-6],[0,-3],[0,-23],[-5,0],[0,-10],[-7,0],[-5,0],[-2,-1],[-2,1],[-3,-1],[0,-1],[-2,-5],[-4,-8],[-2,-1],[-5,-10],[-1,-1],[-3,-6],[-3,-4],[-5,-6],[-1,-1],[-6,-13],[-1,-13],[1,-5],[2,-4],[3,-8],[1,-5],[9,-31],[0,-2],[0,-6],[0,-6],[0,-4],[0,-15],[1,-2],[0,-3],[1,-6],[0,-4],[0,-1],[-2,-5],[-7,-15],[-1,-3],[-1,-3],[-2,-5],[0,-19],[1,-8],[3,-12],[0,-3],[8,-20],[1,-3],[10,-21],[2,-7],[0,-1],[10,-20],[5,-3],[5,-1],[2,-3],[4,-7],[4,-10],[2,-5],[0,-2],[0,-6],[1,-9],[0,-7],[0,-9],[-2,-12],[-2,-12],[-1,-4],[0,-1],[-4,-5],[-2,-5],[-1,0],[0,-1],[0,-2],[-1,-3],[-5,-9],[-3,-10],[0,-1],[-2,-3],[-1,-1],[-3,-4],[0,-2],[0,-6],[0,-2],[-1,-5],[0,-1],[-1,-6],[-2,-7],[-1,-2],[-1,-4],[-2,-2],[-1,0],[-3,0],[-3,-2],[-2,-3],[0,-3],[-1,-2],[0,-7],[0,-2],[0,-2],[1,-2],[1,-4]],[[9025,6488],[-2,0],[-6,0],[-1,0],[-3,0],[-3,0],[-4,0],[-1,0],[-5,0],[-4,0],[-5,0],[-3,0],[-7,0],[-2,0],[-1,0],[-3,0],[-3,0],[-4,1],[-4,0],[-5,0],[-2,-1],[-2,0],[-5,0],[-1,0],[-2,0],[-1,0],[-1,0],[-4,0],[-3,1],[-2,0],[-4,9],[-1,1],[-2,2],[-2,2],[-3,-2],[-1,-1],[-3,0],[-3,1],[-2,3],[-5,1],[-2,0],[-6,-7],[-2,-3],[-6,-2],[-2,-2],[-6,-6],[-6,-6],[-8,-7],[-6,-5],[-1,-1],[-3,-2],[-7,-7],[-7,-9],[-3,-4],[-5,-3],[-4,-2],[-2,0],[-4,3],[-1,1],[-5,1],[-1,1],[-6,4],[-8,5],[-1,-1],[-4,-1],[-2,0],[-8,3],[-6,5],[-9,2],[-4,0],[-2,-2],[-1,-1],[-7,-4],[-3,-2],[-1,-2],[-1,-2],[-5,-4],[-1,-1],[-3,0],[-1,-1],[-11,-7],[-2,-1],[-4,-6],[-2,-2],[-2,-1],[-5,2],[-2,-1],[-2,-4],[-3,-1],[-1,0],[-9,-1],[-3,-1],[-1,-4],[-3,-1],[-1,1],[-2,0],[-1,0],[-1,0],[-3,-1],[-1,-1],[-1,-2],[0,-1],[-3,4],[-4,-1],[-2,-1],[-1,1],[-2,-1],[-1,-4],[-3,-8],[-2,-2],[-2,-7],[-1,-5],[-1,-3],[-1,-1],[-1,-3],[-3,-6],[0,-5],[0,-1],[0,-2],[-3,-5],[-1,-1],[-1,-1],[-1,-3],[-1,-2],[-2,-7],[-1,0],[-2,-2],[-1,-2],[-1,1],[-1,1],[-2,2],[-3,6],[-3,12],[-4,7],[-1,5],[0,5],[-2,3],[-3,0],[-1,-2],[-2,-2],[-3,-2],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,2],[-2,3],[-1,0],[-1,1],[-2,3],[-4,1],[-5,0],[-1,1],[-5,5],[-3,6],[-1,2],[0,1],[-3,6],[-1,2],[-1,2],[0,6],[0,3],[0,1],[1,3],[0,16],[-2,8],[-1,10],[0,3],[1,6],[1,1],[0,5],[-2,8],[0,6],[0,5],[2,12],[0,1],[0,1],[0,7],[-1,3],[1,3],[0,3],[1,3],[0,3],[0,9],[0,3],[0,4],[0,4],[0,3],[-1,3],[0,2],[-1,3],[-1,3],[0,-3],[0,-3],[1,-3],[1,-3],[0,-3],[-2,0],[-1,1],[0,7],[-1,10],[0,1],[-2,11],[-1,4],[-1,3],[-2,2],[-1,1],[-1,5],[-2,6],[2,13],[-2,0],[-1,0],[-3,0],[-2,0],[-3,-1],[-9,0],[-2,0],[-5,0],[-2,0],[-2,0],[-1,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-4,0],[-2,0],[-3,0],[-2,0],[-6,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-12,0],[-3,0],[-1,0],[-6,0],[-6,0],[-4,0],[-4,0],[-1,0],[-2,0],[-18,0]],[[8442,6616],[-7,0],[-1,0],[-2,0],[-2,-1],[-12,1],[-9,0],[-3,0],[-6,0],[-3,0],[-2,0],[-2,-2],[-6,0],[-7,0],[-1,0]],[[9572,7516],[0,-82],[0,-4],[0,-4],[0,-1],[0,-3],[0,-4],[0,-9],[0,-18],[0,-15],[0,-4],[0,-7],[0,-5],[0,-6],[0,-6],[0,-3],[0,-13],[0,-9],[0,-9],[0,-4],[0,-10],[0,-11],[0,-3],[0,-13],[0,-7],[0,-4],[0,-20],[0,-13],[0,-3],[0,-51],[0,-11],[0,-14],[0,-3],[0,-24],[0,-22],[0,-38],[0,-14],[0,-9],[0,-6],[0,-8],[0,-5],[0,-9],[0,-8],[0,-5],[0,-15],[0,-8],[0,-7],[-1,-13],[1,-11],[0,-4],[0,-14],[0,-2],[0,-10],[0,-17],[0,-20],[0,-10],[0,-3],[0,-5],[0,-5],[0,-4],[0,-3],[0,-9],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-3],[0,-4],[0,-15],[0,-8],[0,-9],[0,-3],[0,-25],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,-2],[0,-4],[0,-16],[0,-9],[0,-11],[0,-14],[0,-6],[0,-3],[0,-5],[0,-6],[0,-5],[0,-3],[0,-5],[0,-12],[0,-4],[0,-10],[0,-5],[0,-14],[0,-19],[0,-39],[0,-1],[0,-4],[0,-19],[0,-7],[0,-24],[0,-13],[0,-4],[0,-31],[0,-4],[0,-5],[0,-17],[0,-7],[-1,-33],[0,-6],[0,-4],[1,-3],[0,-3],[0,-5],[0,-5],[0,-5],[0,-6],[0,-5],[0,-4],[0,-5],[0,-7],[0,-17],[0,-8],[0,-14],[0,-10],[0,-16],[0,-11],[0,-7],[0,-12],[0,-15],[0,-8],[0,-6],[0,-17],[0,-49],[0,-9],[0,-4],[0,-18],[0,-6],[0,-23],[0,-40],[0,-66]],[[9560,5972],[-7,0],[-14,0],[-4,0],[-2,1],[-6,0],[-4,0],[-18,0],[-7,0],[-4,0],[-6,0],[-2,0],[-5,0],[-14,0],[-13,0],[-3,0],[-4,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-4,1],[-17,-1],[-6,0],[-4,0],[-2,0],[-1,0],[-1,1],[-2,0],[-5,0],[-3,-1],[-4,0],[-5,0],[-1,0],[-4,0],[-1,0],[-2,0],[-4,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-5,0],[-11,0],[-3,0],[-7,0],[-3,0],[-4,0],[-1,0],[-7,0],[-4,0],[-3,0],[-3,0],[-2,0],[-4,0],[-1,0],[-27,1],[-3,0],[-2,0],[-1,0],[-21,0],[-6,0],[-13,0],[-12,0],[-4,0],[-25,0],[-2,0]],[[9187,5973],[-1,19],[0,30],[0,11],[1,3],[0,6],[0,11],[0,3],[0,4],[0,14],[0,8],[0,22],[0,26],[0,22],[0,12],[0,4],[0,4],[0,7],[0,16],[0,4],[0,5],[0,21],[0,10],[0,9],[0,7],[0,51],[-1,7],[1,4],[0,14],[0,7],[-1,11],[0,12],[0,12],[0,11],[0,21],[0,4],[0,9],[1,16],[0,7],[0,4],[0,2],[0,3],[0,5],[0,9],[0,3],[0,3],[0,6],[0,4],[0,6],[0,5],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,1],[-3,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,1],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-4,0],[-1,0],[-1,0],[-2,0],[-3,0],[-3,0],[-8,0]],[[9845,7518],[1,-6],[0,-5],[1,-5],[0,-4],[0,-3],[0,-4],[2,-17],[0,-9],[0,-3],[1,-13],[2,-25],[0,-4],[0,-1],[1,-9],[0,-4],[1,-17],[1,-5],[0,-8],[1,-10],[1,-17],[0,-4],[1,-3],[0,-1],[0,-6],[1,-13],[1,-8],[0,-11],[1,-7],[0,-4],[2,-21],[1,-20],[1,-14],[1,-19],[1,-14],[1,-6],[0,-7],[3,-36],[0,-8],[1,-15],[3,-42],[1,-16],[1,-11],[0,-7],[1,-3],[0,-6],[0,-4],[0,-2],[0,-1],[1,-10],[0,-5],[1,-4],[0,-4],[0,-6],[1,-7],[0,-6],[1,-4],[0,-6],[0,-5],[1,-5],[0,-4],[0,-5],[1,-4],[0,-5],[0,-4],[1,-3],[0,-3],[0,-4],[0,-6],[4,-56],[1,-3],[0,-4],[0,-6],[1,-5],[0,-4],[0,-3],[0,-4],[1,-7],[1,-10],[1,-21],[1,-23],[1,-4],[0,-4],[0,-5],[0,-3],[1,-14],[0,-2],[1,-12],[0,-3],[1,-6],[1,-18],[0,-7],[1,-12],[1,-5],[1,-25],[1,-3],[2,-37],[2,-21],[1,-14],[1,-14],[0,-3],[0,-2],[0,-6],[1,-3],[0,-3],[0,-3],[0,-6],[1,-4],[0,-5],[0,-2],[1,-14],[0,-7],[1,-4],[1,-21],[2,-30],[0,-4],[1,-7],[0,-4],[0,-7],[1,-14],[1,-3],[0,-6],[1,-14],[1,-19],[2,-23],[1,-15],[0,-4],[0,-3],[2,-21],[0,-4],[0,-8],[1,-12],[1,-14],[0,-4],[2,-22],[1,-20],[0,-4],[1,-7],[0,-4],[1,-8],[3,-47],[0,-6],[1,-20],[1,-7],[1,-11],[0,-5],[0,-5],[1,-10],[1,-16],[1,-17],[1,-4],[0,-4],[0,-4],[1,-18],[1,-11],[2,-23],[1,-22],[1,-12],[0,-7]],[[9950,5972],[-9,0],[-3,0],[-4,0],[-3,0],[-3,0],[-10,0],[-3,0],[-14,0],[-4,0],[-3,0],[-6,0],[-4,0],[-5,0],[-3,0],[-18,0],[-2,0],[-20,0],[-2,0],[-3,0],[-5,0],[-2,0],[-4,0],[-2,-1],[-10,0],[-5,0],[-2,0],[-2,0],[-19,0],[-8,0],[-6,1],[-8,0],[-4,0],[-3,0],[-5,0],[-12,0],[-9,0],[-11,0],[-2,0],[-2,0],[-6,-1],[-1,0],[-2,0],[-12,1],[-5,0],[-4,0],[-3,0],[-3,0],[-2,0],[-3,0],[-22,1],[-3,0],[-17,-1],[-5,0],[-5,0],[-3,0],[-6,0],[-2,0],[-1,0],[-4,0],[-2,0],[-6,0],[-1,0],[-6,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-8,0],[-4,0],[-6,0]],[[4231,6485],[0,-4],[0,-4],[0,-3],[0,-4],[0,-9],[0,-10],[0,-3],[0,-4],[0,-5],[-1,-5],[0,-5],[0,-4],[0,-4],[0,-3],[0,-5],[0,-5],[0,-3],[0,-5],[0,-4],[0,-5],[0,-9],[0,-4],[0,-5],[0,-3],[0,-13],[0,-28],[0,-4],[0,-7],[0,-4],[0,-3],[0,-4],[0,-3],[0,-5],[0,-3],[0,-4],[0,-4],[0,-5],[0,-5],[0,-6],[0,-43],[0,-3],[0,-5],[0,-4],[0,-3],[0,-5],[0,-5],[0,-4],[0,-11],[0,-3],[0,-4],[0,-5],[0,-4],[0,-4],[0,-3],[0,-1],[-1,-2],[1,-4],[0,-10],[0,-4],[0,-6],[0,-4],[0,-5],[-1,-9],[1,-3],[-1,-7],[0,-4],[0,-4],[1,-11],[0,-2],[-1,-6],[0,-4],[0,-5],[0,-6],[0,-5],[0,-3],[0,-12],[0,-6],[0,-4],[0,-2],[0,-11],[0,-4],[0,-6],[0,-4],[0,-5],[0,-6],[0,-7],[0,-5],[0,-5],[0,-5],[0,-6],[0,-3],[0,-3],[0,-4],[0,-5],[0,-3],[0,-3],[0,-9],[0,-5],[0,-7],[0,-37],[0,-4],[0,-7],[0,-4],[0,-8],[0,-5],[0,-5],[0,-4],[0,-4],[0,-5],[0,-4],[0,-4],[0,-8],[0,-4],[0,-4],[0,-4],[0,-4],[0,-3],[0,-3],[0,-4],[0,-4],[0,-5],[0,-16],[0,-12],[0,-6],[0,-3],[0,-3],[0,-5],[0,-4],[0,-5],[0,-5],[0,-10],[0,-4],[0,-4],[0,-4],[1,0],[2,0],[2,0],[1,0],[2,0],[2,0],[3,0],[1,0],[1,-1],[0,-4],[0,-4],[0,-4],[0,-3],[0,-9],[0,-3],[0,-4],[0,-5],[0,-4],[0,-3],[0,-5],[0,-3],[0,-3],[0,-3],[0,-7],[0,-7],[0,-4],[0,-3],[0,-5],[0,-3],[0,-5],[0,-5],[0,-5],[0,-3],[0,-5],[0,-3],[0,-7],[0,-7]],[[4244,5589],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-4,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-4,0],[-2,1],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-11,0],[-14,0],[-4,0],[-2,0],[-4,0],[-2,0],[-3,0],[-5,0],[-10,0],[-1,0],[-4,0],[-4,0],[-17,0],[-3,0],[-5,0],[-2,0],[-4,0],[-8,-1],[-8,0],[-3,0],[-2,0],[-4,0],[-1,0],[-11,0],[-13,0],[-8,0],[-3,0],[-4,0],[-2,0],[-1,0],[-5,0],[-1,0],[-3,0],[-4,0],[-3,0],[-1,0],[-2,0],[-1,0],[0,-6],[-1,-4],[0,-8],[0,-4],[0,-4],[0,-4],[0,-3],[0,-5],[0,-4],[0,-33],[0,-8],[0,-3],[0,-3],[0,-6],[0,-23],[0,-3],[0,-6],[0,-8],[0,-14],[0,-6],[0,-7],[0,-6],[0,-4],[0,-32],[0,-5],[0,-5],[0,-4],[0,-31],[0,-8],[-3,0],[-3,0],[-3,0],[-2,0],[-2,0],[-6,0],[-11,0],[-11,-1],[-5,1],[-2,0],[-2,0],[-1,0],[-6,0],[-2,0],[-3,0],[-3,0],[-3,0],[-2,0],[-6,0],[-2,0],[-4,0],[-5,0],[-3,0],[-3,0],[-3,0],[-3,0],[-4,0],[-3,0],[-1,0],[-7,0],[-4,0],[-3,0],[-2,0],[-6,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-4,0],[-2,0],[-1,0],[-9,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,1],[-1,0],[-8,0],[-3,0],[-2,0],[-2,0],[-17,1],[-2,0],[-6,0],[-7,0],[-3,0],[-22,-1],[-4,0],[-2,0],[-4,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-1,0],[-1,0],[-3,0],[-3,0],[-4,0],[-2,0],[-5,0],[-4,0],[-6,0],[-1,0],[-4,0],[-4,0],[-6,0],[-2,0],[-7,0],[-1,0],[-5,0],[-3,0],[-1,0],[-5,0],[-2,0],[-4,0],[-1,0],[-1,0],[-3,1],[-5,0],[-4,0],[-1,0],[-3,0],[-4,0],[-3,0],[-1,0],[-2,0],[-1,0],[-5,0],[-5,0],[-2,0],[-1,0],[-1,0],[-1,0],[-6,0],[-5,0],[-2,0],[-3,0],[-3,0],[-3,0],[-2,0],[-5,0],[-2,0],[-6,0],[-2,0],[-4,0],[-4,0],[-1,0],[-4,0],[-5,0],[-2,0],[-1,0],[-2,0],[-4,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-3,0],[-18,0],[-3,0]],[[3502,5334],[0,23],[0,49],[0,419],[0,90],[0,102],[0,270],[0,200],[0,200]],[[7445,5974],[0,-8],[0,-9],[-1,-8],[0,-17],[0,-5],[0,-3],[0,-9],[0,-6],[0,-6],[0,-17],[0,-41],[0,-5],[0,-6],[0,-34],[0,-3],[-1,-23],[0,-3],[0,-18],[0,-30],[0,-9],[0,-4],[0,-15],[0,-6],[0,-3],[0,-3],[0,-4],[0,-4],[-1,-8],[0,-10],[0,-4],[0,-1],[0,-2],[0,-14],[-1,-12],[0,-20],[0,-12],[0,-4],[0,-6],[0,-7],[0,-7],[0,-5],[0,-16],[0,-8],[0,-4],[-1,-24],[0,-11],[0,-4],[0,-8],[0,-11],[0,-7],[0,-7],[0,-5],[0,-5]],[[7440,5453],[-2,0],[-5,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-4,0],[-1,0],[-4,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-4,0],[-2,0],[-3,0],[-1,0],[-2,0],[-4,0],[-3,1],[-3,-1],[-10,0],[-6,0],[-2,0],[-6,0],[-5,1],[-1,0],[-3,0],[-3,0],[-5,0],[-3,0],[-6,0],[-4,0],[-3,0],[-2,0],[-1,0],[-9,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-6,0],[-3,0],[-2,0],[-3,0],[-4,0],[-3,0],[-3,0],[-2,0],[-2,0],[-3,1],[-3,0],[-6,-1],[-1,1],[-3,0],[-2,0],[-3,0],[-5,0],[-1,0],[-2,0],[-2,0],[-1,0],[-5,0],[-6,0],[-3,0],[-2,0],[-5,0],[-4,0],[-3,0],[-6,0],[-1,0],[-6,0],[-5,0],[-3,0],[-2,0],[-1,0],[-4,0],[-1,0],[-2,0],[-3,0],[-4,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-4,0],[-6,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,1],[-2,-1],[-1,0],[-3,1],[-2,0],[-1,0],[-1,0],[-11,-1],[-2,0],[-4,0],[-3,1],[-2,-1],[-4,1],[-3,-1],[-1,0],[-2,1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,-1],[-2,1],[-2,0],[-4,0],[-1,0],[-6,0],[-4,0],[-6,0],[-1,0],[-4,-1],[-1,1],[-4,0],[-1,0],[-2,0],[-2,0],[-2,-1],[-2,1],[-2,0],[-2,0],[-3,0],[-1,0],[-5,-1],[-1,1],[-1,0],[-2,-1],[-3,1],[-1,0],[-2,0],[-5,0],[-1,0],[-3,0],[-5,0],[-2,0],[-8,0],[-1,0],[-2,0],[-3,0],[-1,0],[-4,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,-1],[-1,1],[-3,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-7,0],[-4,0],[-9,0],[-3,0],[-9,0],[-3,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,1],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-4,0]],[[6837,5457],[0,7],[0,8],[0,1],[0,5],[0,6],[0,2],[0,5],[0,9],[0,3],[0,5],[0,10],[0,11],[0,5],[0,7],[0,1],[0,16],[0,6],[0,4],[0,6],[0,6],[0,4],[0,15],[0,9],[0,5],[0,9],[0,5],[0,5],[0,4],[0,3],[0,4],[0,5],[0,8],[0,5],[0,4],[0,4],[0,4],[0,7],[0,4],[0,3],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[1,3],[0,4],[0,3],[0,4],[0,4],[0,7],[0,14],[0,5],[0,6],[0,5],[0,3],[0,4],[0,4],[0,3],[0,3],[0,15],[0,21],[0,9],[0,5],[0,7],[0,4],[0,5],[0,3],[0,5],[0,6],[0,8],[0,4],[0,4],[-1,5],[0,3],[0,4],[0,7],[0,7],[0,4],[0,18],[0,12],[0,4],[0,8],[0,3],[0,4],[0,4],[0,7],[0,5],[0,16],[0,4],[0,4],[0,10],[0,3],[0,1],[0,2],[0,9],[0,3],[0,5],[0,7],[0,4],[0,13],[0,6],[0,5],[0,9],[1,5],[0,3],[0,7],[0,3],[0,6],[0,11],[0,6],[0,5],[0,5],[0,4],[0,3],[0,7],[0,9],[0,8],[0,4],[0,2],[0,2],[0,7],[0,1],[0,2],[0,10],[0,10],[0,3],[0,7],[0,8],[0,4],[0,8]],[[8442,6616],[0,-23],[0,-4],[0,-5],[0,-10],[0,-6],[0,-6],[0,-11],[0,-3],[0,-5],[0,-4],[0,-5],[0,-4],[0,-4],[0,-3],[0,-4],[0,-8],[0,-5],[0,-7],[0,-7],[0,-5],[0,-5],[0,-5],[0,-4],[0,-3],[0,-7],[0,-1],[0,-3],[0,-4],[0,-6],[0,-4],[0,-10],[0,-3],[0,-4],[0,-4],[0,-5],[0,-3],[0,-7],[0,-4],[0,-4],[0,-5],[-1,-27],[0,-11],[1,-8],[0,-3],[-1,-3],[1,-7],[0,-4],[0,-10],[0,-8],[0,-5],[0,-3],[0,-4],[-1,-7],[0,-5],[0,-5],[0,-3],[0,-4],[0,-5],[0,-1],[0,-18],[0,-4],[0,-10],[0,-6],[0,-5],[3,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,0],[3,0],[3,0],[1,0],[2,0],[3,0],[4,0],[2,0],[1,0],[3,0],[2,0],[1,0],[2,0],[2,0],[2,0],[3,0],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,-4],[0,-5],[0,-6],[0,-5],[0,-4],[0,-6],[0,-6],[0,-7],[0,-6],[0,-5],[0,-4],[0,-4],[0,-4],[0,-5],[0,-12],[0,-15],[0,-9],[0,-4],[0,-2],[0,-6],[0,-11],[0,-5],[0,-4],[1,-18],[0,-15],[0,-20],[0,-5],[0,-13],[0,-4],[0,-19],[0,-18],[-1,-6],[1,-4],[0,-26],[0,-10],[0,-14],[0,-6],[0,-6],[0,-5],[0,-4],[-1,-5],[0,-4],[0,-2],[0,-3],[0,-5],[0,-5],[0,-8],[0,-8],[0,-4],[0,-5],[0,-3],[0,-3],[0,-27],[0,-15],[0,-6],[0,-3],[0,-4],[0,-6],[0,-5],[0,-4],[0,-12],[1,-7],[0,-16],[0,-22]],[[8504,5716],[-3,0],[-1,0],[-18,0],[-1,0],[-1,0],[-2,0],[-4,0],[-2,0],[-2,0],[-3,0],[-4,0],[-1,0],[-2,1],[-16,-1],[-9,0],[-7,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-7,0],[-1,0],[-9,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[0,-5],[0,-4],[0,-23],[0,-5],[0,-5],[0,-4],[0,-26],[0,-17],[0,-3],[0,-5],[0,-6],[0,-5],[0,-5],[0,-5],[0,-6],[0,-3],[0,-4],[0,-3],[0,-4],[0,-4],[0,-4],[0,-4],[0,-3],[0,-6],[0,-4],[0,-10],[-1,-13],[0,-9],[0,-18],[0,-4],[0,-2],[0,-4],[0,-12],[0,-19],[0,-5],[-2,0],[-18,-1],[-9,0],[-5,0],[-4,0],[-1,0],[-3,0],[-2,0],[-5,0],[-3,0],[-8,0],[-1,0],[0,-9],[0,-13],[0,-3],[0,-5],[0,-17],[0,-1],[0,-6],[0,-6],[0,-4],[0,-8],[0,-8],[0,-6],[0,-6],[0,-2],[0,-2],[0,-3],[0,-8],[0,-3],[0,-6],[0,-7],[0,-5],[0,-7],[0,-4],[0,-3],[0,-4],[0,-3],[0,-9],[0,-3],[0,-7],[0,-3],[0,-3],[0,-19],[0,-10],[0,-9],[0,-3],[0,-3],[0,-5],[0,-5],[0,-13],[0,-12],[0,-4],[-3,0],[-2,0],[-1,0],[-1,0],[-2,0],[-4,0],[-5,0],[-3,0],[-1,0],[-1,0],[-3,0],[-5,0],[-12,0],[-7,0],[-5,0],[-7,0],[-4,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-3,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-4,0],[-1,0],[-3,0],[-4,0],[-2,1],[-3,0],[-2,-1],[-3,1],[-2,0]],[[8191,5200],[-5,0],[-6,0],[-1,0],[-2,-1],[-2,0],[-5,0],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,1],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-3,0],[-2,0],[-6,0],[-2,0],[-2,0],[-2,0],[-3,0],[-6,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-3,1],[-2,0],[-2,0],[-1,0],[-2,0],[-5,0],[-4,-1],[-3,0],[-1,0],[-1,1],[-2,0],[-2,0],[-1,-1],[-1,1],[-2,0],[-1,0],[-3,0],[0,5],[0,4],[0,8],[0,4],[0,5],[0,1],[0,4],[0,5],[0,4],[0,6],[0,7],[-1,6],[0,5],[0,3],[0,3],[0,11],[0,3],[0,4],[0,3],[0,6],[0,3],[0,6],[0,3],[0,4],[0,4],[0,3],[0,3],[0,3],[1,6],[-1,3],[1,5],[0,4],[0,3],[0,3],[0,1],[0,6],[0,3],[0,4],[0,6],[0,3],[0,4],[0,6],[0,3],[-1,5],[0,4],[0,5],[0,14],[0,10],[0,9],[0,12],[0,4],[0,6],[1,7],[-1,6],[0,10],[0,8],[0,8],[0,4],[1,17],[-1,28],[0,15],[0,5],[0,13],[0,8],[0,5],[0,3],[0,5],[0,4],[0,5],[0,11],[0,5],[0,30],[0,9],[0,10],[0,27],[0,5],[0,7],[0,4],[0,3],[-1,0],[-3,0],[-5,0],[-3,0],[-7,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-3,0],[-8,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-7,0],[-1,0],[-5,0],[-2,0],[-2,0],[-2,0],[-4,0],[-3,0],[-1,0],[-2,0],[-9,0],[-8,-1],[-2,0],[0,16],[0,4],[0,28],[0,6],[0,7],[0,8],[0,7],[0,10],[0,28],[0,4],[0,7],[0,4],[0,20],[0,7],[0,10],[0,5],[0,3],[0,5],[0,4],[0,5],[0,3],[0,3],[0,4],[0,18],[0,3],[0,15],[0,6],[0,3],[0,5],[0,3],[0,3],[0,4]],[[9187,5973],[0,-9],[0,-16],[0,-15],[-1,-15],[1,-33],[0,-5],[0,-3],[0,-10],[0,-2],[0,-2],[0,-7],[0,-6],[0,-4],[0,-7],[0,-10],[0,-17],[0,-11],[0,-17],[0,-21],[0,-18],[0,-14],[0,-4],[0,-3],[0,-8],[-6,0],[0,-1],[0,-8],[0,-3],[0,-6],[0,-7],[0,-10],[0,-5],[0,-4],[0,-10],[0,-4],[0,-7],[0,-9],[5,-13],[0,-2],[1,-2],[1,-4],[0,-2],[0,-1],[1,-8],[1,-5],[0,-1],[1,-6],[3,-14],[0,-2],[5,-12],[3,-6],[9,-18],[7,-14],[4,-9],[1,-3],[1,-4],[1,-1],[0,-1],[1,-6],[2,-11],[2,-7],[2,-7],[2,-8],[1,-12],[0,-4],[2,-5],[3,-6],[0,-1],[1,-2],[2,-1],[3,-1],[0,-1],[2,2],[1,1],[1,2],[2,3],[1,2],[2,2],[1,2],[1,2],[2,1],[2,1],[2,0],[1,0],[2,-3],[11,-15]],[[9277,5442],[-4,-15],[-5,-19],[-5,4],[-1,0],[-6,-4],[-5,-10],[-3,-9],[0,-1],[-1,-5],[-1,-2],[-3,-14],[0,-6],[-2,-3],[0,-1],[0,-3],[0,-5],[-2,-9],[-3,-5],[0,-2],[-1,-5],[0,-5],[1,-8],[0,-8],[-2,-11],[-2,-16],[-1,0],[-1,-1],[-1,-1],[-7,-9],[-6,-8],[0,-2],[-1,-3],[-2,-5],[-1,-3],[-1,-3],[0,-2],[-1,-4],[-1,-5],[-2,-5],[-1,-4],[0,-2],[0,-2],[-1,-3],[-1,-3],[-1,-3],[-2,-7],[-1,-3],[-1,-3],[-1,-2],[-1,-2],[-2,-7],[-1,-2],[-3,0],[-1,4],[-1,3],[-1,3],[-1,3],[-1,1],[0,2],[-2,3],[-2,2],[-2,2],[-1,1],[-2,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-2,-2],[-2,-2],[-1,-1],[-2,-4],[-1,-1],[-2,-2],[-1,-1],[-3,-4],[-7,-7],[-2,-4],[-1,-3],[-1,-2],[0,-5],[1,-2],[1,-3],[5,-7],[1,-1],[1,0],[3,0],[1,-1],[2,-1],[1,-1],[3,-4],[3,-5],[1,-3],[0,-3],[0,-3],[0,-4],[-1,-7],[-2,-9],[-2,-5],[-2,-3],[-2,0],[-1,0],[-3,5],[-2,4],[-4,6],[-2,2],[-4,3],[-3,1],[-2,0],[-3,0],[-2,-2],[-4,-5],[-2,-6],[-2,-6],[-1,-2],[-1,-5],[-2,-7],[0,-3],[-1,-5],[0,-6],[2,-5],[1,-6],[2,-8],[2,-9],[1,-4],[1,-4],[0,-3],[1,-3],[1,-6],[1,-5],[2,-11],[0,-3],[0,-3],[0,-9],[0,-3],[-1,-11],[-2,-5],[-2,-5],[-2,-2],[-1,-1],[-3,0],[-2,3],[-4,6],[-3,2],[-3,1],[-4,0],[-3,-2],[-1,-1],[0,-6],[-1,-8],[-3,-19],[-3,-11],[-8,-22],[-2,-3],[-1,-3],[-3,-5],[-4,-5],[-3,-4],[-1,-3],[0,-1],[-7,-10],[-2,-5],[-2,-2],[-2,-4],[-1,-2],[-1,-4],[-3,-3],[-1,-1],[-1,-1],[-3,-4],[-1,-2],[-3,1],[-3,4],[-3,2],[-4,4],[-2,2],[-1,2],[-7,9],[-1,6],[-1,3],[-1,3],[-1,2],[-1,4],[-1,2],[-1,4],[-1,3],[-1,4],[-1,2],[-1,3],[-1,3],[-1,3],[-1,3],[-1,2],[-1,2],[-2,4],[-1,2],[-2,3],[-2,6],[-2,3],[-1,3],[-1,2],[-2,3],[-1,3],[-1,1],[-2,2],[-1,2],[-2,2],[-2,2],[-2,2],[-1,3],[-2,2],[-2,2],[-2,1],[-1,0],[-2,1],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-2,-1],[-2,-1],[-2,0],[-4,-3],[-10,-5],[-4,-2],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-2,-2],[-1,-2],[-3,3],[-3,-11]],[[8933,4952],[0,4],[0,7],[0,8],[0,12],[0,4],[0,16],[0,31],[0,37],[0,10],[0,6],[0,25],[0,16],[0,7],[0,4],[0,7],[0,6],[0,5],[0,9],[0,14],[0,7],[0,7],[0,33],[0,29],[0,18],[0,9],[0,6],[0,5],[0,13],[0,9],[0,6],[0,7],[0,4],[0,4],[0,4],[0,9],[0,3],[0,5],[0,6],[0,3],[0,4],[0,5],[0,8],[0,9],[0,4],[0,5],[0,2],[0,1],[0,4],[0,5],[0,31],[0,3],[0,5],[0,4],[0,6],[0,5],[0,9],[0,7],[0,6],[0,10],[0,6],[0,5],[0,4],[0,4],[0,5],[0,3],[0,8],[0,4],[0,5],[0,20],[0,11],[0,42],[0,4],[0,7],[0,3],[0,4],[0,9],[0,4],[0,4],[0,9],[0,11],[0,11],[0,11],[0,14],[0,2],[0,3],[0,3],[-1,1],[-4,0],[-5,0],[-5,-1],[-6,0],[-2,0],[-3,0],[-2,0],[-4,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-4,0],[-2,0],[-2,0],[-4,0],[-1,0],[-9,1],[-23,-1],[-4,0],[-19,0],[-7,0],[-11,0],[-8,0],[-7,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,1],[-4,0],[-6,-1],[-1,0],[-1,0],[-2,0],[-4,0],[-1,0],[-1,0],[-1,1],[-1,0],[-3,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-4,0],[-2,0],[-3,0],[-2,0],[-7,0],[-1,0],[-3,0],[-2,0],[-2,0],[-4,0],[-2,0],[-3,0],[-2,0],[-1,0],[-3,0],[-3,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-5,0],[-5,0],[-1,0],[-5,0],[-3,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-3,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-5,0],[-1,0],[-4,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-5,0],[-2,0],[-5,0]],[[5109,5716],[0,-2],[0,-2],[0,-6],[0,-12],[-1,-22],[1,-2],[0,-2],[0,-8],[0,-6],[0,-3],[0,-6],[-1,-10],[1,-6],[0,-20],[0,-22],[0,-6],[0,-5],[0,-4],[0,-7],[-1,-8],[0,-4],[0,-3],[0,-3],[0,-3],[1,-3],[0,-18],[0,-5],[0,-17],[0,-8],[-1,-13],[1,-8],[0,-6],[0,-5],[-1,-3]],[[5108,5458],[-3,0],[-3,0],[-2,0],[-1,0],[-3,0],[-2,0],[-4,0],[-2,0],[-12,0],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[-4,0],[-3,0],[-1,0],[-2,0],[-5,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-5,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-5,0],[-1,0],[-1,0],[-4,0],[-2,0],[-2,0],[-5,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-4,1],[-2,0],[-4,0],[-4,0],[-2,0],[-1,0],[-4,0],[-2,0],[-1,0],[-5,0],[-1,0],[-9,0],[-2,0],[-11,0],[-2,0],[-2,0],[-14,0],[-2,0],[-1,0],[-2,0],[-4,0],[-1,0],[-13,1],[-3,0],[-4,0],[-1,0],[-2,0],[-1,0],[-7,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-6,0],[-6,0],[-4,0],[-5,0],[-1,0],[-4,0],[-1,0],[-2,0],[-2,0],[-1,0],[-6,0],[-2,0],[-4,0],[-1,0],[-6,0],[-1,0],[-4,0],[-6,0],[-2,0],[-3,0],[-1,0],[-2,0],[-3,0],[-4,0],[-3,0],[-3,0],[-1,0],[-6,0],[-3,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-7,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-4,0],[-3,0],[-4,0],[-1,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-5,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-4,0],[-2,0],[-2,0],[-3,0],[-4,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-3,0],[-3,0],[-1,0],[-3,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-13,1],[-19,0],[-2,0],[-2,0],[-2,0],[-1,-1],[-6,0],[-5,1],[-4,0],[-3,0],[-5,-1],[-2,1],[-6,0],[-2,0],[-6,0],[-5,0],[-2,0],[-6,0],[-2,0],[-2,0],[-2,0],[-2,0],[-8,0],[-9,0],[-9,0],[-12,0],[-13,1],[-8,0],[-16,-1],[-5,0],[-10,0],[-1,0],[-6,0],[-3,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-3,0],[-2,0],[-4,0],[-1,0],[-11,0],[-5,0],[-3,0],[-2,0],[-3,0],[-3,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-3,0],[-1,0],[-5,0],[-3,0],[-2,0],[-2,0],[-1,0],[-5,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-4,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-3,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[4244,5461],[0,3],[0,4],[0,7],[0,3],[0,3],[0,1],[0,2],[0,4],[0,4],[0,3],[0,5],[0,4],[0,5],[0,5],[0,8],[0,5],[0,4],[0,4],[0,7],[0,5],[0,4],[0,5],[0,3],[0,4],[0,4],[0,3],[0,5],[0,3],[0,8],[0,3]],[[6216,6230],[0,-43],[0,-22],[0,-21],[0,-23],[0,-20],[0,-24],[0,-19],[0,-17],[0,-3],[0,-4],[0,-13],[0,-6],[0,-24],[0,-19],[0,-9],[0,-1],[0,-33],[0,-43],[0,-43],[0,-13],[0,-10],[0,-7],[0,-13],[0,-11],[0,-4],[0,-4],[0,-2],[0,-4],[0,-7],[0,-5],[0,-6],[0,-14],[0,-11],[0,-7],[0,-11],[2,0],[1,0],[0,-41],[0,-2],[0,-4],[0,-10],[0,-5],[0,-1],[0,-44],[0,-1],[0,-4],[0,-1],[0,-16],[0,-32],[0,-11],[0,-7],[0,-13],[0,-1],[0,-8],[0,-5],[0,-4],[0,-4],[0,-10],[0,-3],[0,-4],[0,-3],[0,-1],[0,-7],[0,-8],[0,-6],[0,-12],[0,-1],[0,-23],[0,-6],[0,-2],[0,-3],[0,-32],[0,-7],[0,-24],[0,-4],[0,-15],[0,-43],[0,-23],[0,-5],[0,-3],[0,-4],[0,-4],[0,-4],[0,-18],[0,-7],[0,-4],[0,-7],[0,-6]],[[6219,5201],[0,-16],[0,-8],[0,-19],[0,-21],[0,-15],[0,-7],[0,-10],[0,-23]],[[6219,5082],[0,-3]],[[6219,5079],[-3,1],[-2,0],[-3,-1],[-2,-1],[-2,-2],[-3,-2],[-2,-1],[-2,-1],[-2,-3],[-1,-2],[-1,-3],[-2,-3],[-1,-2],[-2,-3],[-1,-2],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-2,-2],[-1,0],[-2,0],[-2,0],[-2,1],[-1,2],[0,4],[-1,3],[0,1],[-1,2],[-3,1],[-6,-4],[-1,-2],[-1,0],[-5,-7],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-2,0],[-2,0],[-2,2],[-2,2],[-1,1],[-1,1],[-2,4],[-4,10],[-2,4],[-4,9],[-5,10],[-5,5],[0,1],[-2,5],[-1,-1],[-1,-1],[-5,-1],[-5,-2],[-4,-2],[-2,-2],[-4,-4],[-2,-3],[-3,-3],[-3,-2],[-6,7],[-4,4],[0,1],[-4,2],[-3,0],[-1,1],[-1,2],[-2,2],[-6,2],[-3,-1],[-6,-3],[-1,-1],[-3,-6],[-4,-6],[-3,-2],[-4,-2],[-3,-2],[-3,-1],[-2,0],[-1,-1],[-2,-1],[-2,1],[-1,3],[-2,3],[-3,3],[-2,4],[-1,1],[-1,2],[-2,3],[-2,3],[-1,5],[-1,3],[0,2],[0,3],[0,1],[0,3],[-2,11],[-5,31],[-7,2],[-1,1],[-1,-1],[-3,-11],[-2,-4],[-3,-7],[-3,-7],[-4,-8],[-1,2],[-1,2],[-2,1],[-2,0],[-1,-1],[-2,-4],[0,-4],[0,-5],[-2,-3],[-1,-1],[-1,0],[-1,0],[-2,2],[-1,2],[-1,2],[-2,3],[-1,1],[-2,2],[-2,2],[-1,2],[-1,4],[-1,3],[0,3],[-2,4],[-1,0],[-2,-1],[-2,-1],[-2,-1],[-3,0],[-1,0],[-2,1],[-1,2],[-2,3],[-2,3],[0,3],[-2,2],[-2,4],[0,1],[-2,8],[-1,1],[1,3],[0,4],[0,3],[-1,3],[0,3],[-1,5],[-1,7],[-1,3],[-1,2],[-2,2],[-2,1],[-6,4],[-1,-3],[-2,-5],[-1,-3],[-1,-5],[1,-6],[0,-8],[0,-7],[0,-6],[0,-10],[-2,-12],[-2,-10],[-2,-5],[-2,-1],[-3,-2],[-2,-4],[-1,0],[-3,0],[-2,1],[-5,9],[-8,15],[-2,3],[-5,6],[-3,1],[-3,2],[-1,0],[-5,3],[-3,-1],[-1,0],[-3,0],[-2,0],[-2,1],[-2,1],[-1,1],[-1,1],[-4,4],[-1,1],[-2,0],[-1,1],[-2,3],[-1,3],[0,3],[-1,3],[0,5],[0,4],[0,4],[-1,2],[-1,1],[-2,3],[0,1],[0,3],[2,2],[0,1],[0,1],[-6,0],[-3,0],[-1,0],[-1,0],[-1,0],[-10,1],[-7,0],[-4,-1],[-1,1],[-2,-1],[-1,1],[-1,0],[-7,0],[-3,0],[-6,0],[-1,0],[-2,0],[-2,0],[-5,-1],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0]],[[5724,5202],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-4,0],[-14,0],[-2,-1],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-25,0],[-6,0],[-2,-1],[-3,0],[-5,0],[-9,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,-1],[-3,0],[-7,0],[-3,1],[-2,-1],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-2,-1],[-1,0],[-2,1],[-3,0],[-2,0],[-2,0],[-4,0],[-1,0],[-1,0],[-4,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-9,1],[-1,0],[-13,0],[-2,0],[-2,0],[-1,0],[-2,0],[0,4],[0,5],[0,3],[0,7],[0,17],[0,4],[0,8],[0,11],[0,5],[0,3],[0,4],[0,3],[0,8],[0,3],[0,3],[0,6],[0,4],[0,22],[0,2],[0,2],[0,3],[0,16],[0,3],[0,6],[0,4],[0,9],[0,3],[0,3],[0,7],[0,13],[0,3],[0,5],[0,9],[0,5],[0,5],[0,6],[0,5],[0,5],[0,7],[0,15],[0,4],[0,5],[0,7],[0,3],[0,27],[0,4],[0,4],[0,3],[0,5],[0,3],[0,4],[0,4],[0,9],[0,3],[0,3],[0,3],[0,7],[0,8],[0,4],[0,6],[0,4],[0,3],[0,4],[0,5],[0,4],[0,3],[0,4],[0,6],[0,5],[0,4],[0,4],[0,4],[0,5],[0,3],[0,3],[0,3],[0,11],[0,9],[0,4],[0,22],[-2,2],[0,24],[0,2],[0,4],[-6,0]],[[6837,5457],[0,-5],[0,-3],[0,-4],[0,-4],[0,-7],[0,-4],[0,-9],[0,-7],[0,-4],[0,-6],[0,-6],[0,-5],[0,-4],[0,-7],[0,-4],[0,-4],[0,-3],[0,-3],[0,-4],[0,-4],[0,-6],[0,-4],[0,-6],[0,-4],[0,-3],[0,-4],[0,-5],[0,-5],[0,-3],[0,-5],[0,-4],[0,-6],[0,-4],[0,-5],[0,-7],[0,-3],[0,-4],[0,-3],[0,-1],[0,-3],[0,-4],[0,-2],[0,-5],[0,-5],[0,-3],[0,-8],[0,-6],[0,-6],[0,-7],[0,-8],[0,-3],[0,-4],[-1,-6],[1,-4],[0,-5]],[[6837,5199],[-21,1],[-2,0],[-5,1],[-8,0],[-6,0],[-6,0],[-7,0],[-8,-1],[-4,1],[-8,0],[-4,0],[-4,0],[-7,0],[-7,0],[-1,0],[-6,0],[-6,0],[-3,0],[-3,0],[-2,0],[-5,0],[-8,0],[-7,0],[-6,0],[-6,0],[-2,0],[-11,0],[-1,0],[-5,0],[-1,0],[-2,0],[-8,0],[-5,0],[-4,0],[-6,0],[-3,0],[-1,0],[-4,0],[-3,0],[-7,-1],[-6,0],[-4,0],[-3,0],[-2,0],[-8,1],[-9,0],[-2,0],[-6,0],[-1,0],[-3,0],[-3,0],[-6,0],[-3,0],[-1,0],[-3,0],[-2,0],[-3,0],[-2,0],[-1,0],[-7,0],[-20,0],[-4,0],[-1,0],[-4,0],[-9,0],[-3,0],[-1,0],[-3,0],[-3,0],[-4,0],[-2,0],[-3,0],[-5,0],[-10,0],[-11,0],[-3,0],[-4,0],[-6,0],[-8,0],[-2,0],[-6,0],[-2,0],[-1,0],[-3,0],[-4,0],[-2,0],[-1,0],[-2,0],[-7,0],[-11,0],[-4,0],[-1,0],[-5,0],[-3,0],[-3,0],[-4,0],[-4,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-5,0],[-4,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-4,-1],[-5,1],[-1,0],[-9,0],[-4,0],[-3,0],[-2,0],[-2,0],[-10,0],[-11,0],[-7,0],[-2,0],[-18,-1],[-3,0],[-5,0],[-7,1],[-3,0],[-3,0],[-2,0],[-4,0],[-1,0],[-3,0],[-2,0],[-11,0]],[[9950,5972],[1,-9],[1,-8],[0,-5],[0,-6],[1,-11],[2,-35],[1,-14],[0,-1],[1,-5],[0,-4],[1,-12],[1,-21],[1,-7],[0,-8],[0,-5],[1,-11],[0,-3],[1,-8],[1,-17],[2,-34],[0,-4],[2,-34],[1,-13],[1,-10],[0,-5],[0,-4],[2,-31],[1,-5],[1,-15],[1,-20],[0,-7],[1,-4],[0,-9],[1,-17],[0,-1],[1,-6],[0,-6],[0,-3],[1,-11],[1,-18],[1,-4],[6,-94],[1,-3],[0,-4],[0,-1],[0,-3],[1,-7],[0,-1],[1,-18],[1,-21],[3,-40],[1,-3],[2,-43],[2,-21],[1,-3],[0,-5],[-1,-2],[-1,-8],[-3,-11],[1,-2],[1,-5],[1,-3],[0,-12]],[[9997,5211],[-1,-2],[0,-3],[-1,-3],[-1,-4],[-1,-2],[-1,-3],[-1,-4],[-1,-2],[-1,0],[-2,-1],[-1,-1],[-2,0],[-2,0],[-1,1],[-1,1],[-2,0],[-1,2],[-1,0],[-1,3],[-2,2],[-1,1],[-2,0],[-1,1],[-1,1],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[-5,-1],[-2,-1],[-2,-2],[-1,-2],[-2,-1],[-1,-3],[-1,-2],[-1,-2],[-1,-1],[-1,0],[-1,-2],[-1,-3],[-1,-1],[-3,-7],[0,-3],[-1,-2],[0,-2],[0,-4],[1,-4],[0,-5],[1,-5],[2,-9],[1,-3],[1,-4],[1,-2],[0,-4],[-1,-3],[-1,-3],[-1,-2],[-1,-2],[-2,-2],[-2,-3],[-1,-2],[-3,-2],[-2,-2],[-1,-3],[-1,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-3],[0,-4],[0,-1],[0,-1],[0,-5],[0,-2],[0,-4],[-1,-5],[0,-1],[2,-5],[1,-5],[1,-4],[2,-4],[1,-2],[2,-3],[2,-6],[3,-7],[1,-7],[1,-5],[0,-6],[0,-5],[0,-4],[-1,-5],[-3,-7],[-2,-2],[-2,-1],[-1,-1],[-2,-2],[-2,-3],[-1,-1],[-1,-1],[-1,1],[-1,3],[-2,4],[-1,4],[-1,1],[-2,1],[-3,0],[-2,-3],[-2,-1],[-1,0],[-3,0],[-3,3],[-2,3],[0,5],[-1,1],[-1,3],[-1,-1],[-2,-3],[-3,-2],[-1,-2],[-3,-2],[-5,-3],[-5,-2],[-8,1],[-7,5],[-6,6],[0,1],[-3,6],[-3,10],[-1,4],[0,1],[0,1],[-1,2],[-3,8],[-4,8],[-6,11],[-3,4],[-3,2],[-2,1],[-1,1],[-5,3],[-2,1],[-5,0],[-3,-1],[-1,-1],[-3,-5],[-1,-1],[-4,-8],[-2,-2],[-1,0],[-3,-6],[-2,-9],[0,-1],[0,-5],[0,-8],[-7,-12],[-2,-5],[0,-3],[-1,-2],[0,-2],[-2,-4],[-2,-5],[-2,-3],[-1,-1],[-1,-4],[-3,-6],[-1,-2],[-2,-2],[-3,-3],[-8,-7],[-13,-7],[-8,0],[-1,-1],[-1,0],[-3,2],[-5,3],[-7,6],[-2,4],[-3,6],[-2,4],[-1,5],[-4,11],[0,2],[-1,10],[0,7],[0,15],[0,7],[-1,4],[0,4],[-2,5],[-1,4],[-4,9],[-5,7],[-6,6],[-4,0],[-5,4],[-5,4],[-8,17],[-7,13],[0,1],[-9,16],[-5,6],[-5,4],[-8,5],[-2,2],[-3,0],[-4,1],[-5,0],[-5,-2],[-5,-3],[0,-1],[0,1],[-2,-1],[-4,-5],[-4,-7],[-5,-9],[-1,-3],[-3,-5],[-4,-2],[-2,-6],[-2,-9],[-1,-4],[-1,-6],[-1,-3],[-1,-4],[0,-6],[-3,-9],[-2,-3],[-2,-2],[-5,-5],[-6,-3],[-5,-1],[-2,-1],[-2,1]],[[9553,5042],[-5,1],[-4,6],[-3,10],[-1,3],[-1,5],[-1,4],[-1,12],[-1,5],[0,6],[0,3],[-1,14],[0,14],[0,9],[0,4],[0,16],[-1,3],[-2,9],[-4,9],[-2,2],[-2,3],[-4,2],[-4,0],[-3,-3],[-2,-4],[-4,-11],[-1,-2],[-3,-4],[-3,-6],[-1,-2],[-3,-5],[-2,-3],[-2,-2],[-1,-1],[-3,-2],[-4,-3],[-3,-1],[-2,0],[-2,-1],[-2,-2],[-3,-2],[-2,-2],[-3,-1],[-1,-1],[-3,-2],[-3,-2],[-3,-2],[-4,-4],[-3,-3],[-4,-1],[-3,0],[-5,0],[-3,3],[-2,4],[-3,5],[-1,4],[0,3],[0,1],[2,6],[1,4],[2,6],[3,5],[2,4],[3,3],[3,6],[4,7],[2,4],[2,3],[1,2],[2,4],[1,2],[1,2],[2,6],[1,14],[0,14],[-2,11],[-3,11],[-1,4],[-2,7],[-3,7],[-4,3],[-4,-2],[-3,-3],[-4,-6],[-3,-4],[-1,-1],[-7,7],[-2,1],[-2,0],[-3,1],[-10,0],[-3,0],[-11,15],[-2,2],[-2,1],[-5,2],[0,1],[-2,4],[-3,6],[-1,1],[-2,3],[-4,9],[-12,5],[-1,-1],[-13,0],[-2,-2],[0,-1],[-4,0],[-5,4],[-2,1],[-2,3],[-3,4],[-2,3],[-6,11],[-9,19],[-3,7],[0,2],[-1,4],[0,3],[0,4],[0,4],[0,3],[0,3],[0,6],[0,4],[0,5],[0,4],[0,3],[0,4],[1,4],[0,3],[0,7],[-1,4],[-1,3],[-1,1],[-1,2],[-2,3],[-2,1],[-1,1],[-3,2],[-3,1],[-2,0],[-2,0],[-2,0],[-2,0],[-2,1],[-2,1],[-1,1],[-2,1],[-1,2]],[[8191,5200],[-1,-6],[0,-19],[0,-19],[0,-3],[1,-6],[0,-8],[-1,-5],[0,-6],[0,-10],[0,-4],[0,-4],[0,-5],[0,-6],[0,-6],[0,-4],[0,-6],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-4],[0,-3],[0,-4],[0,-4],[0,-8],[0,-11],[0,-13],[1,-8],[0,-8],[0,-8],[0,-8],[0,-2],[0,-3],[0,-5],[-1,-31]],[[8190,4943],[-13,-1],[-6,0],[-2,0],[0,1],[-3,0],[-1,0],[-3,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,0],[-8,0],[-13,1],[-2,0],[-3,0],[-2,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-4,0],[-2,0],[-3,-1],[-12,1],[-14,0],[-4,0],[-7,0],[-6,0],[-2,0],[-12,0],[-10,0],[-3,0],[-2,0],[-2,0],[-4,0],[-9,0],[-2,0],[-2,0],[-5,0],[-8,0],[-2,0],[-2,0],[-8,0],[-1,0],[-1,0],[-9,1],[-2,0],[-2,0],[-6,0],[-5,0],[-2,0],[-6,0],[-2,0],[-1,0],[-5,0],[-2,0],[-16,0],[-1,0],[-9,0],[-1,0],[-4,0],[-3,0],[-7,0],[-3,0],[-6,0],[-2,0],[-3,-1],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,1],[-1,-1],[-2,0],[-3,0],[-5,0],[-2,0],[-8,1],[-5,-1],[-3,0],[-1,0],[-2,0],[-3,0],[-4,0],[-1,0],[-4,0],[-4,0],[-3,0],[-2,0],[-6,0],[-3,0],[-1,0],[-3,0],[-1,0],[-8,0],[-6,0],[-2,0],[-2,0],[-2,0],[-5,0],[-2,0],[-2,0],[-3,0],[-1,0],[-4,0],[-2,0],[-3,0],[-2,0],[-4,0],[-2,0],[-2,0],[-1,0],[-2,0],[-5,0],[-2,1],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-4,0],[-3,0],[-3,0],[-4,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-1,0],[-4,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-5,0],[-1,0],[-12,-1],[-2,0],[-5,0],[-1,0],[-2,0]],[[7654,4943],[0,8],[0,3],[0,4],[0,3],[0,6],[0,8],[0,6],[0,5],[0,5],[0,5],[0,4],[0,4],[0,3],[0,4],[0,7],[0,4],[0,3],[0,4],[0,6],[0,19],[0,12],[0,8],[0,5],[0,5],[0,5],[0,4],[0,22],[0,3],[0,3],[0,3],[0,3],[0,5],[0,5],[0,3],[0,8],[0,8],[0,6],[0,6],[0,7],[0,17],[0,9],[0,19],[0,6],[0,3],[0,1],[0,2],[0,4],[0,3],[0,5],[0,4],[0,4],[0,5],[0,5],[0,3],[0,4],[0,3],[0,4],[0,3],[0,3],[0,6],[0,3],[0,9],[0,3],[0,7],[0,5],[0,4],[0,4],[0,7],[0,3],[0,4],[0,6],[0,9],[0,4],[0,4],[0,6],[0,3],[0,4],[0,7],[0,4],[0,5],[0,6],[0,7],[0,3],[0,7],[0,4],[0,4],[0,9],[0,8],[0,7],[0,7],[0,9],[0,6],[-1,-3],[0,-2],[0,-2],[-1,0],[0,-1],[-1,-9],[0,-1],[0,-3],[-2,-3],[0,-1],[-1,0],[-7,-1],[-1,0],[-1,1],[0,2],[0,2],[-1,1],[-1,2],[-2,1],[-1,0],[-1,0],[-2,0],[-2,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,1],[-3,2],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,2],[0,1],[-1,3],[-1,2],[-1,2],[-1,0],[-1,0],[-1,-1],[-1,-2],[0,-3],[0,-1],[0,-2],[0,-3],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-1,-3],[-1,-2],[0,-3],[-2,-3],[-1,-2],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-2],[-1,-3],[0,-4],[0,-1],[0,-1],[0,-1],[2,-1],[1,0],[2,-2],[0,-3],[1,-3],[0,-2],[0,-1],[0,-2],[0,-2],[0,-4],[-1,-4],[0,-3],[-1,-2],[0,-1],[-1,-3],[-1,-3],[0,-1],[-1,-2],[-3,-4],[0,-1],[-2,-2],[-5,-4],[-2,-1],[-3,0],[-2,1],[-2,1],[-2,2],[-1,1],[-1,0],[-2,0],[-1,-2],[-1,0],[-1,0],[-2,1],[-6,3],[-1,2],[-1,3],[-1,0],[0,1],[1,3],[0,2],[0,1],[0,1],[0,1],[0,4],[-1,4],[-1,1],[-3,5],[-2,5],[-3,6],[-4,6],[-1,1],[-2,1],[-2,1],[-1,1],[-2,4],[0,1],[-1,3],[0,3],[0,2],[-1,7],[-1,3],[-2,5],[-1,2],[-2,0],[-1,-1],[0,-1],[1,-2],[2,-6],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[-1,0],[-7,3],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-5],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,0],[0,1],[-2,3],[0,1],[-1,0],[-1,-1],[-1,-2],[0,-2],[-1,-4],[0,-3],[0,-3],[-1,-3],[-1,0],[0,-1],[-1,-1],[-1,-1],[-3,0],[-1,0],[0,-1],[-1,-3],[0,-3],[1,-2],[1,-2],[2,-5],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[1,0],[2,-1],[3,-1],[0,-1],[0,-1],[0,-4],[-1,-2],[-1,-2],[0,-2],[-1,-4],[-1,-2],[-1,-9],[-1,-5],[0,-3],[0,-2],[1,-2],[1,-1],[3,-7],[1,0],[0,1],[1,1],[0,2],[-1,1],[0,3],[0,1],[1,3],[1,1],[1,0],[1,-1],[1,0],[4,-12],[0,-1],[1,0],[0,-2],[-1,-1],[0,-2],[-1,-1],[-1,-3],[0,-1],[0,-1],[2,-3],[2,-4],[3,-2],[4,1],[2,-1],[2,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[-1,-9],[0,-2],[0,-1],[1,-2],[3,-2],[1,-2],[2,-3],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-4],[-1,-3],[-1,-5],[-1,-12],[0,-1],[-1,-1],[-1,-1],[-1,1],[-2,3],[0,1],[-1,1],[-1,0],[-1,1],[-5,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,2],[-2,1],[-2,3],[-2,2],[0,3],[1,6],[0,1],[1,9],[0,2],[0,1],[-1,1],[-1,0],[-1,-1],[-1,-1],[-1,-3],[-2,-2],[-5,-3],[-1,0],[-1,0],[0,1],[-1,2],[-1,2],[-2,1],[-4,2],[-1,0],[-2,0],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,4],[-1,3],[-1,4],[-1,1],[-2,3],[0,1],[-1,1],[-3,2],[-3,0],[-2,-1],[-1,-6],[-2,-6],[-2,-10],[-2,-10],[0,-1],[-1,-2],[0,-2],[-3,-4],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[-1,1],[-2,2],[0,1],[-3,0],[0,-1],[0,-1],[1,-2],[0,-2],[-1,-4],[0,-1],[-2,-3],[-1,-1],[-1,-1],[-1,0],[-1,0],[-6,4],[0,1],[-1,0],[-1,3],[-2,2],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[-1,1]],[[7441,5270],[0,1],[0,15],[0,16],[0,14],[0,14],[0,16],[0,12],[0,3],[0,6],[0,5],[0,7],[0,4],[0,3],[0,7],[0,7],[0,5],[-1,6],[0,4],[0,4],[0,14],[0,10],[0,5],[0,5]],[[8933,4952],[-2,20],[-8,10],[-1,0],[-1,3],[-4,6],[-2,5],[-2,1],[-7,1],[-5,6],[-4,4],[-3,4],[-1,0],[-17,0],[-3,-4],[-3,-4],[-3,-3],[-2,-1],[-8,-2],[-13,0],[-1,-1],[-2,0],[-1,-1],[-4,-1],[-1,-1],[-5,-3],[-23,0],[-4,-3]],[[8803,4988],[-4,-2],[-4,-4],[-14,1],[-3,1],[-9,0],[-2,-2],[-2,-3],[-4,-4],[-2,-3],[-3,-2],[-7,-3],[-2,0],[-1,0],[-2,-2],[0,-1],[-2,-2],[-3,-6],[-1,-3],[-2,-17],[-1,-10],[-1,-8],[-1,-1],[-2,-9],[0,-1],[-2,-4],[-1,-2],[0,-29],[-7,-16],[-2,-4],[-3,-3],[-1,-2],[-6,-4],[-10,-11],[-3,-4],[-1,-1],[-5,-9],[-9,0],[-1,0],[-2,-4],[-1,-2],[-5,-10],[-4,0],[-4,-4],[-9,-18],[-4,-9],[-3,-3],[-1,-1],[-3,-6],[-4,-8],[-1,-4],[-3,-7],[-4,0],[-2,4],[-3,6],[-2,2],[-8,18],[-2,3],[-14,0],[-1,-2],[-7,-10],[-9,-7],[-5,-6],[-3,-3],[-20,0],[-2,-1],[-2,-1],[-9,-19],[-1,-6],[0,-3],[-1,-2],[-9,-18],[-7,-6],[-3,-4],[0,-1],[-8,-12],[-2,-3],[-1,-2],[-7,-6],[-1,0],[-7,0],[-4,-2],[-3,-2],[-1,0],[-5,-4],[0,-1],[-5,-7],[-4,-4],[-5,-4],[-8,-6],[-3,-2],[-4,0],[-1,0],[-8,0],[-3,3],[-7,8],[-3,2],[-3,0],[-4,0],[-1,-1],[-4,-2],[-13,0],[-4,1],[-5,2],[-2,0],[-1,0],[-9,4],[0,-1],[-2,0],[-4,-2],[-3,0],[-5,3],[-5,1],[-7,1],[-2,-2],[-1,-1],[-10,-4],[-1,-1],[-3,0],[-6,-4],[-2,-1],[-1,-3],[-1,-2],[-2,-5],[-5,-8],[-3,-1],[-1,-2],[-3,-5],[0,-2],[-1,-5],[-3,-11],[-6,-12],[-3,-11],[-2,-6],[-1,-4],[-6,-18],[-3,-8],[-1,-1],[-2,-4],[-2,-5],[-4,-6],[-3,-3],[-6,-6],[-3,-1],[-4,-1],[-5,0],[-1,1],[-3,2],[-2,2],[-1,1],[-13,8],[-5,2],[-4,3],[-6,3],[-7,5],[-9,2],[-4,0],[-3,1],[-11,-1],[-4,-1],[-1,0],[-2,-1]],[[8188,4534],[0,9],[0,5],[0,7],[0,4],[0,58],[0,7],[0,20],[0,23],[0,6],[0,3],[0,4],[0,3],[2,2],[0,5],[1,33],[0,5],[-1,6],[0,4],[0,6],[0,2],[0,3],[0,14],[0,6],[1,24],[0,32],[0,4],[0,5],[0,8],[0,13],[0,1],[0,4],[-1,8],[0,6],[0,5],[0,3],[0,18],[0,10],[0,6],[0,15],[0,12]],[[5724,5202],[0,-5],[0,-5],[0,-12],[0,-5],[0,-3],[0,-7],[0,-6],[0,-4],[0,-4],[0,-4],[0,-6],[0,-6],[0,-10],[0,-5],[0,-4],[0,-2],[0,-3],[0,-5],[0,-6],[0,-6],[0,-10],[0,-4],[0,-6],[0,-9],[0,-6],[0,-6],[0,-6],[0,-3],[0,-9],[0,-4],[0,-7],[0,-9],[0,-5],[0,-4],[0,-9],[0,-10],[0,-6],[0,-7],[0,-7],[0,-6],[0,-5],[0,-4],[0,-4],[1,-5],[0,-3],[0,-5],[0,-9],[0,-16],[0,-3],[0,-4],[0,-5],[0,-4],[0,-3],[0,-6],[0,-4],[0,-4],[0,-6],[0,-4],[0,-4],[0,-5],[0,-7],[0,-11],[0,-13],[0,-5],[0,-5],[0,-14],[0,-13],[0,-5],[0,-6],[0,-6],[0,-4],[0,-3],[0,-4],[0,-9],[0,-8],[0,-4],[0,-4],[0,-3],[0,-4],[0,-4],[0,-3],[0,-7],[0,-7],[0,-3],[0,-6],[0,-12],[1,0],[2,0],[1,0],[0,-4],[0,-22],[0,-12],[0,-4],[0,-5],[0,-11],[0,-7],[0,-6],[0,-7],[0,-7],[0,-13],[0,-7],[0,-5],[0,-3],[0,-4],[0,-10],[0,-3],[0,-4],[0,-3],[0,-6],[0,-6],[0,-5],[0,-6],[0,-11],[0,-3],[0,-3],[0,-12],[0,-7],[0,-9],[0,-4],[0,-4],[0,-3],[0,-16],[0,-3],[0,-5],[0,-11],[0,-6],[0,-11],[0,-6],[0,-5],[0,-12],[0,-9],[0,-5],[0,-4],[0,-19],[0,-7],[0,-4],[-2,-2],[0,-4],[0,-2],[0,-1],[0,-4],[0,-3],[0,-1],[0,-3],[0,-7],[0,-9],[0,-5],[0,-8],[0,-4],[0,-4],[0,-5],[0,-3],[0,-6],[0,-5],[0,-4],[0,-3],[0,-5],[0,-3],[0,-4],[0,-5],[0,-5],[0,-11],[0,-10],[0,-1],[0,-2],[0,-5],[0,-3],[0,-4],[0,-15],[0,-3],[0,-9],[0,-9],[0,-3],[0,-4],[0,-10],[0,-6],[0,-5],[0,-4],[0,-3],[0,-9],[0,-8],[0,-1],[0,-3],[0,-3],[0,-3],[0,-4],[0,-4],[0,-5],[0,-7],[0,-4],[0,-4],[0,-7],[0,-3],[0,-3],[0,-4],[0,-4],[0,-1],[0,-3],[0,-11],[0,-5],[0,-8],[0,-15],[0,-7],[0,-3],[0,-8],[0,-42],[0,-5],[0,-5],[0,-26],[0,-4],[0,-3],[0,-12],[0,-5],[0,-4],[0,-4],[0,-3],[0,-4],[0,-5],[0,-4],[0,-2],[0,-2],[0,-4],[0,-13],[0,-4],[0,-3],[0,-5],[0,-4],[0,-9],[0,-3],[0,-3],[0,-6],[0,-4],[0,-5],[0,-4],[0,-8],[0,-9],[0,-8],[1,-13],[-1,-13],[0,-4],[0,-5],[0,-5],[0,-9],[0,-4],[0,-3],[0,-4],[0,-29],[0,-3],[0,-6],[1,-18],[0,-3]],[[5728,3659],[-2,-1],[-2,0],[-4,0],[-1,0],[-8,1],[-1,0],[-2,0],[-2,0],[-2,0],[-7,0],[-3,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,-1],[-5,1],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-3,-1],[-7,1],[-4,0],[-1,0],[-4,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-5,0],[-1,0],[-4,0],[-2,0],[-1,0],[-3,0],[-3,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-6,0],[-4,0],[-6,0],[-4,0],[-3,0],[-7,0],[-3,0],[-4,0],[-3,0],[-9,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-4,0],[-4,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-3,0],[-3,0],[-3,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-11,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-3,0],[-1,0],[-7,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-4,0],[-2,0],[-3,0],[-3,0],[-4,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-3,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-3,0],[-2,0],[-5,0],[-2,0],[-5,0],[-4,0],[-2,0],[-1,0],[-1,0],[-5,0],[-1,0],[-5,0],[-1,0],[-2,0],[-6,0],[-2,0],[-4,0],[-36,0],[-9,0],[-12,0],[-12,0],[-8,0],[-6,0],[-15,0],[-19,1],[-1,0],[-3,0],[-14,-1],[-11,0],[-14,0],[-5,0],[-8,0],[-11,0]],[[5113,3659],[0,47],[0,3],[0,9],[0,18],[-1,11],[0,27],[0,16],[0,4],[0,5],[0,6],[0,7],[0,15],[0,3],[0,1],[0,3],[0,18],[0,7],[0,6],[0,4],[0,5],[0,3],[0,4],[0,4],[0,7],[0,10],[0,15],[0,3],[0,4],[0,39],[0,9],[0,3],[0,5],[0,8],[0,4],[0,11],[0,9],[0,14],[0,19],[0,44],[0,13],[0,8],[0,6],[0,4],[0,3],[0,4],[0,4],[0,8],[0,6],[0,4],[0,3],[0,8],[0,4],[0,4],[-1,5],[0,4],[0,6],[0,3],[0,10],[0,3],[0,10],[0,7],[0,9],[0,7],[0,20],[0,7],[0,5],[0,7],[0,10],[0,7],[0,6],[0,7],[0,3],[1,8],[-1,11],[0,20],[0,5],[0,3],[0,4],[0,2],[1,2],[-1,12],[0,3]],[[5111,4374],[1,3],[0,3],[0,4],[1,2],[2,1],[0,15],[-1,5],[0,5],[0,4],[0,3],[0,14],[0,21],[1,6],[0,11],[0,5],[0,15],[0,4],[0,4],[0,3],[0,4],[0,15],[0,1],[0,5],[0,5],[0,29],[0,65],[0,3],[0,8],[0,4],[0,4],[0,3],[0,25],[0,8],[-1,9],[-1,0],[-5,0],[0,8],[0,4],[0,4],[0,15],[0,6],[0,7],[0,5],[0,9],[0,5],[0,4],[0,9],[0,3],[0,6],[0,25],[0,10],[0,8],[0,7],[0,5],[0,3],[0,3],[0,10],[0,8],[0,3],[0,4],[0,4],[0,5],[0,5],[0,5],[0,3],[0,4],[0,4],[0,7],[0,6],[0,17],[0,6],[0,4],[0,5],[0,6],[0,3],[0,1],[0,5],[0,6],[0,4],[0,4],[0,3],[0,7],[0,4],[0,4],[0,4],[0,3],[0,2],[0,1],[0,4],[0,13],[0,21],[0,5],[0,16],[0,10],[0,6],[0,5],[0,15],[0,5],[0,6],[0,6],[0,3],[0,6],[0,4],[0,25],[0,17],[0,3],[0,25],[0,7],[0,5],[0,3],[0,3],[0,4],[1,3],[0,4],[-1,5],[0,4],[0,3],[0,11],[0,5],[0,6],[0,5],[0,5],[1,5],[-1,6],[1,10],[0,5],[0,3],[0,20],[0,6],[-1,3],[0,3],[0,5],[1,5],[0,9],[0,30],[-1,4],[0,4],[0,7],[1,9],[0,13],[0,5],[-1,3],[0,6],[0,5],[0,4],[0,3],[0,4],[0,5],[0,15]],[[4244,5461],[0,-9],[0,-3],[0,-3],[0,-5],[0,-3],[0,-11],[0,-6],[0,-5],[0,-5],[0,-11],[0,-5],[0,-3],[0,-5],[0,-15],[0,-8],[0,-9],[0,-3],[0,-12],[0,-6],[0,-3],[0,-2],[0,-1],[0,-3],[0,-5],[0,-3],[0,-6],[0,-3],[0,-4],[0,-4],[0,-7],[0,-4],[0,-12],[0,-4],[0,-8],[0,-3],[0,-3],[0,-1],[0,-5],[0,-7],[0,-6],[0,-36],[0,-6],[0,-7],[0,-5],[0,-8],[0,-3],[0,-4],[0,-5],[0,-5],[0,-16],[0,-5],[0,-15],[0,-6],[0,-10],[0,-6],[0,-5],[0,-4],[0,-6],[0,-13],[0,-5],[0,-3],[0,-9],[0,-3],[0,-1],[0,-16],[0,-6],[0,-12],[0,-4],[0,-5],[0,-4],[0,-6],[0,-8],[0,-3],[0,-15],[0,-4],[0,-14],[0,-5],[0,-5],[0,-7],[0,-10],[0,-4],[0,-4],[0,-11],[0,-7],[0,-5],[0,-4],[0,-19],[0,-3],[0,-9],[0,-5],[0,-17],[0,-4],[0,-6],[0,-3],[0,-4],[0,-6],[0,-5],[0,-4],[0,-22],[0,-12],[0,-10],[0,-8],[0,-4],[0,-21],[0,-18],[0,-3],[0,-1],[0,-3],[0,-17],[4,0],[1,0],[0,-6],[0,-9],[0,-16],[0,-14],[0,-18],[0,-3],[0,-7],[0,-3],[0,-4],[0,-8],[0,-8],[0,-9],[0,-6],[0,-10],[0,-6],[0,-4],[0,-2],[0,-10],[0,-7],[0,-9],[0,-4],[0,-11],[0,-6],[0,-8],[0,-8],[0,-13],[0,-7],[0,-10],[0,-11],[0,-3],[0,-6],[0,-5],[0,-8]],[[4249,4432],[-8,0],[-2,-1],[-8,0],[-15,0],[-8,0],[-16,0],[0,-6]],[[4192,4425],[-1,0],[-1,-2],[-2,-3],[-1,-2],[-2,-1],[-1,0],[-2,0],[0,1],[-3,1],[-1,2],[0,1],[0,2],[-1,0],[-1,1],[-1,-1],[-1,-3],[-1,-4],[-1,-2],[-2,-5],[-2,-2],[-1,-1],[0,-1],[-1,1],[-2,1],[-3,0],[-3,0],[-1,1],[-1,0],[-1,2],[-1,3],[-1,0],[0,2],[-2,4],[0,1],[0,2],[0,1],[1,2],[3,5],[-5,0],[-6,1],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-8,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-3,0],[-3,0],[-1,0],[-4,0],[-1,0],[-2,0],[-2,0],[-6,0],[-6,0],[-3,0],[-3,0],[-3,0],[-4,0],[-7,0],[-4,0],[-2,0],[-3,0],[-4,0],[-7,0],[-5,0],[-4,0],[-21,0],[-3,0],[-7,0],[-11,0],[-1,0],[-2,0],[-1,0],[-1,0],[-6,-1],[-2,0],[-7,0],[-2,1],[-11,0],[-1,0],[-7,0],[-13,0],[-5,0],[-2,0],[-2,0],[-4,0],[-9,-1],[-1,0],[-5,0],[-8,0],[-10,0],[-2,0],[-5,1],[-2,0],[-4,0],[-9,0],[-1,0],[-5,0],[-6,0],[-4,0],[-5,0],[-1,0],[-23,0],[-18,0],[-16,0],[-4,0],[0,-7],[0,-16],[0,-4],[0,-4],[0,-6],[0,-3],[0,-4],[0,-3],[0,-5],[0,-10],[0,-5],[0,-18],[0,-10],[0,-13],[0,-21],[0,-13],[0,-7],[0,-11],[0,-33],[0,-1],[0,-9],[0,-4],[0,-3],[0,-3],[0,-7],[0,-12],[0,-9],[0,-15],[-9,0],[-6,0],[-4,0],[-20,0],[-3,-1],[-8,0],[-8,0],[-9,0],[-6,0],[-10,0],[-1,0],[-3,0],[-9,0],[-2,0],[-10,2],[-1,0],[-14,-1]],[[3633,4176],[-14,0],[-3,0],[-4,0],[-20,-1],[-6,0],[-5,0],[-3,0],[-1,0],[-16,0],[-2,0],[-15,1],[-7,0],[-3,0],[-7,0],[-3,0],[-8,0],[-1,0],[-1,0],[-12,3]],[[3502,4179],[0,64],[0,105],[0,159],[0,119],[0,131],[0,210],[0,2],[0,10],[0,355]],[[7654,4943],[0,-3],[0,-4],[0,-7],[0,-4],[0,-4],[0,-4],[0,-5],[0,-6],[0,-6],[0,-4],[0,-7],[0,-11],[0,-4],[0,-9],[0,-8],[0,-8],[0,-4],[0,-4],[0,-5],[0,-9],[0,-13],[0,-9],[0,-5],[0,-4],[0,-5],[0,-4],[0,-1],[0,-4],[0,-7],[0,-3],[0,-5],[0,-20],[0,-4],[0,-4],[0,-3],[0,-4],[0,-3],[0,-16],[0,-6],[0,-3],[0,-5],[0,-13],[0,-3],[0,-4],[0,-8],[0,-16],[0,-5],[0,-6],[0,-4],[0,-4],[0,-6],[0,-10],[0,-5],[0,-15],[0,-27],[0,-6],[0,-5],[0,-4],[0,-26],[0,-17],[0,-17],[0,-3],[0,-8],[0,-22],[0,-2],[0,-1],[0,-4],[0,-20],[0,-9],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-4,0],[0,-19],[-1,-24],[0,-16],[0,-5],[0,-22],[0,-10],[0,-15],[0,-18],[0,-13],[0,-19],[0,-7],[0,-4],[0,-23],[0,-9],[0,-51],[0,-24],[0,-21],[0,-8],[0,-34],[0,-24],[0,-28],[0,-16],[0,-26],[0,-1],[0,-6],[0,-3],[0,-6],[0,-1],[0,-5],[0,-10],[0,-7],[0,-20],[0,-19],[0,-7],[0,-24],[0,-6],[0,-6],[0,-29],[0,-3],[0,-5],[0,-4],[0,-4],[0,-4]],[[7596,3823],[-1,-2],[-1,-3],[-1,-3],[-1,-2],[-1,-3],[-1,-2],[-1,-3],[-1,-3],[0,-2],[-1,-5],[0,-3],[0,-3],[0,-3],[-1,-3],[-1,-8],[-2,-7],[-1,-4],[-2,-7],[-2,-5],[0,-3],[-1,-3],[-1,-4],[-1,-4],[0,-3],[-1,-4],[-1,-3],[-1,-3],[0,-2],[-1,-3],[-1,-2],[-1,-3],[-1,-3],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-3,-1],[-1,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-1,1],[-2,2],[-2,2],[-1,2],[-1,3],[-2,3],[-1,3],[-1,2],[-1,2],[-2,3],[-3,7],[-2,5],[-1,2],[-4,15],[-1,4],[-1,2],[-1,5],[-1,7],[0,1],[-2,6],[0,1],[-2,6],[0,3],[0,2],[-1,3],[1,5],[0,3],[0,3],[0,2],[0,3],[1,4],[0,3],[0,1],[0,3],[0,4],[-1,4],[-1,3],[0,2],[-1,1],[-1,2],[-2,0],[-1,2],[-3,4],[-1,0],[-2,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,-2],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-2,-2],[-1,-2],[-2,-2],[-1,-1],[-1,-1],[-1,-2],[-2,-2],[-1,-2],[-2,-4],[-3,-4],[-1,-2],[-2,-1],[0,-1],[-2,-1],[-3,-2],[-1,-1],[-2,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[-2,-2],[-2,-2],[-3,-2],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,0],[-3,0],[-2,0],[-1,-1],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-2,1],[-2,2],[0,1],[-2,2],[-1,2],[-2,5],[0,1],[-1,3],[-1,4],[-1,5],[-2,6],[-1,7],[-1,4],[-1,3],[-1,4],[0,3],[-1,3],[0,2],[0,3],[-1,2],[0,3],[-1,4],[-2,3],[-1,4],[-1,1],[-2,4],[-1,3],[-1,2],[-2,2],[-3,2],[-3,1],[-2,1],[-2,2],[-1,0],[-3,2],[-2,0],[-1,2],[-1,0],[-3,1],[-3,0],[-2,0],[-2,0],[-3,-2],[-3,-3],[-3,-3],[0,-1],[-2,-4],[-2,-2],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[0,-1],[-1,-3],[-1,-2],[-1,-5],[0,-2],[-2,-3],[-1,-5],[0,-2],[-1,-4],[0,-3],[1,-5],[0,-2],[1,0],[1,-2],[1,0],[0,-1],[2,-1],[1,0],[1,-2],[2,-1],[2,-2],[1,-2],[0,-3],[2,-1],[4,-9],[3,-7],[1,-6],[1,-4],[1,-3],[1,-3],[2,-4],[1,-5],[0,-4],[1,-3],[0,-5],[0,-4],[0,-3],[0,-4],[0,-3],[0,-2],[-1,-6],[-1,-4],[0,-3],[-1,-1],[0,-3],[-1,-1],[0,-1],[0,-4],[-1,-2],[-1,-5],[0,-3],[-1,-1],[0,-3],[-1,-3],[-1,-3],[-1,-2],[-1,-1],[-2,-2],[-2,-2],[0,-1],[-1,0],[-1,-2],[-1,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-1],[-2,-2],[-2,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,0],[-2,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,3],[-1,2],[-1,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,3],[0,3],[-1,2],[-1,3],[0,4],[-1,2],[0,4],[-1,1],[0,2],[-1,3],[-1,11],[-1,3],[0,4],[-1,3],[0,4],[0,4],[-1,4],[0,4],[0,5],[-1,2],[0,3],[-1,4],[0,3],[-2,6],[-5,14],[-2,1],[-1,0],[-1,1],[-2,1],[-3,-1],[-2,0],[-2,0],[-2,0],[-2,0],[-1,-1],[-2,1],[-1,-1],[-1,0],[-1,0]],[[7264,3792],[0,3],[-1,23],[1,12],[0,14],[0,4],[0,6],[0,18],[0,9],[0,21],[0,13],[0,6],[0,11],[0,6],[0,8],[0,11],[0,17],[0,8],[0,12],[0,1],[0,5],[0,13],[0,2],[0,7],[0,21],[0,27],[0,16],[0,13],[0,8],[0,22],[0,7],[0,36],[0,18],[0,24],[0,12],[0,28],[0,5],[0,26],[0,4],[0,11],[0,19],[0,2],[0,7],[0,1],[0,19],[0,42],[0,8],[0,15],[0,16],[0,10],[0,14],[0,5],[0,3],[0,5],[0,3],[0,3],[0,6],[0,4],[0,4],[0,9],[0,12],[0,7],[-1,26],[0,17],[0,28],[0,5],[-1,10],[0,8],[0,12],[0,9],[1,33],[0,18],[0,49],[-1,43],[0,41],[0,7],[0,3],[1,2],[0,7],[0,2],[0,7],[-1,17],[1,21],[-1,21],[0,34],[0,8],[0,20],[0,6],[0,17],[0,15],[0,16],[0,1],[0,12],[0,20],[0,1],[1,21],[0,10],[0,3],[0,14],[0,15],[0,19],[0,24],[0,8],[0,17],[0,13],[0,5],[0,4],[0,16],[0,2],[0,2],[0,10],[0,9],[0,5],[0,18],[0,3],[0,16],[0,13],[1,0],[7,-1],[2,0],[6,0],[1,-1],[0,-1],[1,-1],[1,-2],[1,-1],[8,-2],[3,-1],[6,1],[2,0],[2,2],[1,3],[0,2],[0,3],[-1,3],[0,1],[0,8],[0,1],[5,3],[1,-1],[3,5],[-1,11],[0,1],[2,4],[1,3],[7,5],[1,0],[4,-1],[0,-1],[1,-2],[4,-11],[1,-4],[0,-2],[-1,-1],[0,-3],[-2,-2],[0,-1],[-2,-4],[0,-1],[0,-2],[0,-1],[1,-2],[1,-1],[4,4],[0,1],[5,6],[7,3],[1,1],[1,-1],[1,-1],[1,-2],[1,-6],[0,-2],[0,-7],[0,-2],[1,-1],[2,0],[2,-1],[4,-1],[1,0],[1,-1],[1,-1],[1,-2],[0,-1],[0,-2],[-1,-2],[0,-2],[0,-1],[0,-2],[1,-1],[1,0],[1,1],[1,1],[2,1],[1,2],[2,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-4],[0,-1],[1,-1],[0,-1],[4,-3],[2,-1],[3,-2],[1,0],[1,-1],[4,-2],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[3,-5],[1,-1],[1,-1],[1,0],[2,1],[3,1],[1,-1],[0,-1],[1,-2],[0,-2],[-1,-2],[0,-2],[0,-1],[1,0],[1,0],[8,2],[1,2],[2,2],[4,8],[2,3],[2,-2],[1,-5],[1,-5],[0,-1],[1,-1],[0,-1],[1,0],[2,0],[0,1],[1,1],[1,4],[0,3],[0,1],[1,3],[1,5],[1,2],[1,2],[1,1],[1,1]],[[5111,4374],[-1,0],[-1,2],[-1,4],[0,3],[-1,4],[-1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-2,13],[-2,14],[-1,4],[0,4],[-6,14],[-1,2],[-2,2],[-2,2],[-1,-1],[0,-3],[1,-5],[0,-3],[-2,-15],[0,-3],[-2,-3],[-1,-2],[-2,0],[-1,0],[-4,8],[-1,2],[0,1],[0,1],[3,6],[2,2],[1,-1],[1,6],[-8,13],[-1,-1],[-7,-4],[-1,-1],[0,-1],[-1,-2],[-1,-5],[0,-1],[-1,-1],[-1,-1],[0,-1],[-2,0],[-3,1],[-7,-3],[0,-2],[-1,-3],[-1,-1],[-1,-3],[0,-2],[0,-7],[0,-1],[1,-3],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[-1,2],[-1,4],[0,1],[-1,7],[0,2],[-1,1],[-2,1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-2],[1,-3],[1,-8],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,1],[-6,4],[-2,2],[-2,4],[0,1],[-2,2],[-1,0],[-1,0],[-7,-4],[-1,0],[0,-2],[-1,-2],[-1,-3],[-1,-3],[-1,-2],[-1,-2],[-4,-3],[-1,0],[0,1],[0,1],[0,1],[-1,3],[0,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,2],[0,2],[0,1],[0,1],[2,5],[-1,5],[-3,2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-4],[0,-1],[-1,-1],[-1,1],[-2,0],[-4,2],[-1,0],[0,1],[1,1],[0,1],[0,2],[0,1],[-1,0],[-1,-1],[-1,-6],[-1,0],[0,-1],[0,-9],[0,-2],[0,-7],[0,-1],[-1,-9],[-1,-1],[-1,-2],[-1,0],[0,1],[-4,14],[0,1],[1,0],[1,1],[0,1],[-4,10],[0,1],[-2,2],[-1,4],[-1,0],[-1,2],[-1,4],[-1,1],[-1,4],[-2,-1],[-5,0],[-2,1],[-1,-1],[-2,1],[-3,-1],[-3,0],[-3,1],[-1,-1],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-1,0],[-5,0],[-1,1],[-4,0],[-3,0],[-8,0],[-5,0],[-3,0],[-2,0],[-2,0],[-4,0],[-2,0],[-3,0],[-3,0],[-10,0],[-7,0],[-2,0],[-5,0],[-1,0],[-2,0],[-7,0],[-3,0],[-3,0],[-9,0],[-2,0],[-3,-1],[-2,1],[-2,-1],[-1,1],[-2,-1],[-2,1],[-1,0],[-3,0],[-1,0],[-3,0],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-10,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-3,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-8,0],[-13,0],[-4,0],[-3,0],[-21,0],[-2,0],[-1,0],[-8,0],[-4,0],[-3,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-3,0],[-5,0],[-1,0],[-2,0],[-2,0],[-2,0],[-12,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-7,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-8,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-6,0],[-1,0],[-4,0],[-1,0],[-4,0],[-3,0],[-3,0],[-3,0],[-14,0],[-2,0],[-9,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-3,0],[-8,0],[-1,0],[-2,0],[-6,0],[-2,1],[-3,0],[-2,0],[-3,-1],[-1,0],[-2,0],[-2,0],[-4,0],[-3,0],[-4,0],[-3,0],[-3,0],[-10,1],[-2,0],[-1,0],[-4,0],[-2,0],[-1,0],[-5,0],[-1,0],[-2,0],[-4,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-7,0],[-2,0],[-10,0],[-2,0],[-5,0],[-1,0],[-3,0],[-12,0],[-7,0],[-2,0],[-2,0],[-3,0],[-2,0],[-7,0],[-6,0],[-3,0],[-1,0],[-1,0],[-3,0],[-1,0],[-3,0],[-5,0],[-4,0],[-6,0],[-3,0],[-6,0],[-5,0]],[[7264,3792],[-3,-3],[-2,-1],[-3,0],[-3,1],[-3,2],[-4,3],[-3,5],[-2,4],[-3,4],[-1,4],[-1,4],[0,5],[0,12],[0,9],[0,8],[1,6],[0,4],[1,5],[0,3],[-1,6],[1,7],[-2,5],[-3,6],[-1,3],[-1,6],[-2,5],[-2,3],[-3,5],[-1,4],[-1,3],[-2,3],[-2,3],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-2,-1],[-1,0],[-1,-3],[-1,0],[-1,-3],[-2,-2],[-2,-2],[-3,-2],[0,-1],[-4,-5],[-1,-2],[-1,0],[0,-1],[-1,-2],[-1,-2],[-1,-4],[-4,-8],[-5,-6],[-4,-5],[0,-1],[-3,-2],[-1,0],[-7,2],[-3,1],[-5,-1],[-3,-1],[-1,0],[-2,-3],[-2,-2],[-1,-1],[-4,-4],[-1,0],[-2,1],[-2,0],[-2,0],[-3,0],[-2,2],[-1,1],[-2,4],[-1,6],[0,6],[-1,4],[-1,3],[-1,3],[0,1],[-2,8],[-1,3],[-1,6],[-4,3],[-1,2],[-2,3],[-1,4],[-2,9],[-7,28],[-2,1],[-1,0],[-2,4],[-1,3],[-2,3],[-2,2],[-2,3],[-3,1],[-1,0],[-2,1],[-2,1],[-2,0],[-1,-2]],[[7083,3982],[-1,-1],[0,-1],[-2,-1],[-2,-2],[-2,-1],[-6,-5],[-2,-3],[-2,-2],[-1,-2],[-2,-3],[-1,-2],[-5,-8],[-1,-1],[-2,-7],[-2,-6],[-1,-9],[-1,-3],[-1,-5],[-2,-4],[-2,-3],[-2,-4],[-1,-1],[0,-2],[-1,-3],[-2,-9],[0,-1],[0,-1],[-2,-7],[0,-1],[-1,-2],[-4,-4],[-2,-4],[0,-2],[-1,-6],[-2,-3],[-4,-7],[-2,-1],[-1,-1],[-4,0],[-1,-1],[-5,-7],[-1,-3],[-1,-3],[-2,-1],[-2,-2],[-1,-2],[-1,0],[-4,-6],[-4,-4],[-3,-3],[-4,-6],[-1,-1],[-2,-2],[-2,1],[-2,3],[-2,3],[-2,3],[-4,5],[-3,-1],[-2,0],[-3,2],[-4,1],[-1,1],[-1,1],[-1,1],[-5,4],[-5,4],[-1,1],[-2,4],[0,2],[-1,3],[-2,3],[-3,1],[-4,0],[-3,-1],[-5,-3],[-5,-1],[-3,0],[-1,3],[-2,3],[-1,2],[-2,9],[-2,5],[-1,5],[-4,4],[-3,3],[-2,1],[-2,-1],[-3,-1],[-4,0],[-2,0],[-2,-4],[-1,0],[-2,2],[-3,4],[-2,2],[0,2],[-6,4],[-4,2],[-3,0],[-7,-2],[-2,-1],[-1,0],[-3,-1],[-3,-2],[-3,-2],[-3,-1],[-1,0],[-2,1],[-2,0],[-2,0],[-1,-2]],[[6836,3885],[0,32],[1,4],[0,14],[0,25],[0,42],[0,10],[0,4],[-1,4],[1,29],[0,22],[0,1],[0,15],[0,4],[0,5],[0,35],[0,13],[0,23],[0,6],[0,14],[0,29],[0,43],[0,42],[-1,43],[0,26],[0,5],[1,4],[0,4],[0,4],[0,8],[0,3],[0,4],[0,21],[0,7],[0,15],[-1,11],[0,17],[0,12],[0,8],[0,23],[0,12],[0,7],[0,7],[0,16],[0,8],[0,6],[0,7],[0,20],[0,12],[0,22],[0,12],[0,4],[0,3],[0,4],[1,30],[0,22],[0,21],[0,22],[0,4],[0,6],[0,11],[0,16],[0,3],[0,1],[0,25],[0,1],[0,60],[0,22],[-1,10],[0,5],[0,27],[1,4],[0,4],[0,16],[0,4],[0,15],[0,3],[-1,34],[0,6],[0,12],[0,4],[0,27],[0,8],[0,4],[0,5],[0,4],[0,22],[1,22],[-1,21],[0,11],[0,9],[0,7],[1,7],[0,3],[0,5]],[[9553,5042],[0,-8],[0,-3],[0,-4],[0,-3],[0,-16],[-1,-15],[0,-9],[0,-19],[0,-17],[0,-11],[0,-8],[0,-7],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-6],[0,-3],[0,-8],[0,-6],[0,-1],[0,-2],[0,-3],[0,-4],[0,-3],[0,-4],[0,-3],[0,-5],[0,-2],[0,-1],[0,-5],[0,-7],[0,-4],[0,-5],[0,-4],[0,-4],[0,-8],[0,-5],[0,-3],[0,-4],[0,-3],[0,-9],[0,-3],[0,-4],[0,-16],[0,-17],[0,-6],[0,-14],[0,-6],[0,-4],[0,-4],[0,-3],[0,-7],[0,-3],[0,-7],[0,-6],[0,-1],[-1,-9],[-5,0],[-1,0],[-10,0],[-4,1],[-1,0],[-2,-1],[-3,1],[-19,0],[-4,0],[-6,0],[-11,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-7,0],[-1,0],[-3,0],[-1,0],[-4,0],[-5,0],[-11,0],[-2,0],[-3,0],[-12,0],[-4,0],[-1,0],[-1,0],[-2,-2],[0,-8],[0,-27],[0,-20],[0,-8],[0,-3],[0,-4],[0,-3],[0,-4],[0,-4],[0,-9],[0,-8],[0,-6],[0,-6],[0,-5],[0,-5],[0,-7],[0,-10],[0,-6],[0,-5],[0,-3],[0,-3],[0,-3],[0,-17],[0,-8],[0,-1],[0,-9],[0,-18],[0,-6],[0,-6],[0,-3],[0,-8],[0,-4],[0,-5],[0,-5],[0,-3],[0,-3],[0,-4],[0,-31],[0,-20],[0,-26],[0,-36],[0,-34],[0,-20]],[[9419,4259],[-14,0],[-17,-1],[-21,0],[-12,0],[-5,0],[-15,0],[-4,0],[-7,0],[-3,0],[-7,0],[-19,-1],[-1,0],[-3,0],[-1,0],[-5,0],[-2,0],[-2,0],[-1,0],[-12,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-19,0],[-1,0],[-3,0],[-2,0],[-1,0],[-6,0],[-5,0],[-3,0],[-2,0],[-1,0],[-10,0],[-2,0],[-3,0],[-8,0],[-2,0],[-1,0],[-8,0],[-6,0],[-21,1],[-3,0],[-16,0],[-7,0],[-1,0],[-2,0],[-11,0],[-13,0],[-8,0],[-11,0],[-11,0],[-1,0],[-2,0],[-4,0],[-12,0],[-8,0],[-5,0],[-1,0],[-3,0],[-2,0],[-4,0],[-3,0],[-11,0],[-14,0],[-6,0],[-4,0],[-3,0],[-4,0],[-10,1],[-10,0],[-5,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-4,0],[-2,0],[-4,0],[-2,0],[-2,1]],[[8928,4260],[0,72],[0,25],[0,1],[0,6],[0,12],[0,11],[0,4],[0,5],[0,2],[0,3],[0,8],[0,5],[0,5],[0,12],[0,17],[0,11],[0,9],[0,9],[0,17],[0,12],[0,11],[0,14],[0,29],[-19,0],[-11,0],[-22,0],[-9,0],[-1,0],[-14,0],[-7,0],[-4,0],[-7,0],[-5,0],[-5,0],[-5,0],[-4,0],[-3,1],[-2,0],[-3,0],[-1,0],[-1,0],[0,37],[0,1],[0,5],[0,7],[0,5],[0,3],[-1,4],[0,3],[0,4],[0,3],[0,3],[0,5],[0,6],[1,4],[-1,17],[0,17],[5,1],[0,6],[0,21],[0,32],[0,16],[0,13],[0,51],[0,35],[0,11],[0,4],[0,4],[0,3],[0,4],[0,6],[0,5],[0,4],[0,6],[0,13],[0,6],[0,7],[0,4],[0,15],[0,5],[-6,31]],[[9964,2633],[-6,0],[-8,-1],[-18,0],[-4,0],[-2,0],[-2,0],[-2,0],[-4,0],[-4,0],[-8,0],[-6,0],[-4,0],[-14,0],[-2,0],[-9,0],[-6,0],[-2,0],[-7,0],[-11,0],[-5,0],[-4,0],[-6,0],[-28,0],[-18,1],[-2,0],[-10,0],[-19,0],[-3,-1],[-16,0],[-5,0],[-11,0],[-1,0],[-1,0],[-4,0],[-5,0],[-3,0],[-2,0],[-13,0],[-3,0],[-9,0],[-4,0],[-9,0],[-3,0],[-1,0],[-6,0],[-3,0],[-7,0],[-6,0],[-9,0],[-2,0],[-13,0],[-9,0],[-8,0],[-10,0],[-1,0],[-8,0],[-2,0],[-5,0],[-34,0],[-11,0],[-21,0],[-24,0],[-20,-1],[-21,0],[-22,0],[-1,0],[-3,-1],[-1,0],[-2,0],[-3,1]],[[9408,2631],[0,23],[0,34],[0,1],[0,13],[0,2],[0,2],[0,6],[0,5],[0,5],[0,4],[0,4],[0,4],[0,21],[0,4],[0,18],[0,2],[0,19],[0,19],[0,3],[0,9],[0,22],[0,10],[0,22],[0,6],[0,26],[0,28],[0,25],[0,12],[0,12],[0,1],[0,65],[0,7],[0,15],[0,4],[0,17],[0,19],[0,13],[0,4],[0,8],[-8,-1],[-6,0],[-8,0],[-22,0],[-5,1],[-2,0],[-4,0],[-3,0],[-8,0],[-1,0],[-2,0],[-4,0],[-1,0],[-4,0],[-3,0],[-1,0],[-4,0],[-1,0],[-4,-1],[-1,0],[-11,0],[-10,0],[-9,0],[-6,0],[-14,0]],[[9266,3144],[0,35],[0,6],[0,3],[0,14],[0,27],[0,22],[-1,17],[0,5],[0,4],[0,36],[0,21],[0,14],[0,6],[0,1],[0,4],[0,13],[0,3],[0,5],[0,6],[0,5],[0,7],[0,4],[0,4],[0,5],[0,3],[0,6],[0,3],[0,2],[0,36],[0,5],[0,10],[0,10],[0,6],[0,16],[1,6],[0,4],[0,5],[0,20],[0,13],[0,1],[0,4],[0,3],[0,3],[0,7],[0,5],[0,3],[0,9],[0,8],[0,4],[0,5],[0,13],[0,3],[0,7],[0,6],[0,5],[0,4],[0,7],[0,6],[51,0],[5,0],[2,0],[1,0],[3,0],[1,0],[2,0],[1,0],[2,0],[4,0],[0,4],[0,3],[0,7],[0,5],[0,4],[0,3],[0,9],[0,8],[0,10],[0,6],[0,4],[0,4],[0,3],[0,4],[0,2],[0,12],[0,6],[0,6],[0,3],[0,8],[0,8],[0,9],[0,4],[0,5],[0,6],[0,7],[0,4],[0,6],[0,6],[0,5],[0,38],[0,4],[0,10],[0,13],[0,4],[-1,10],[0,5],[13,2],[8,0],[3,0],[3,0],[35,0],[4,0],[2,0],[6,0],[8,0],[1,4],[0,8],[0,5],[0,6],[0,2],[0,20],[0,40],[0,7],[0,17],[0,19],[0,22],[0,17],[0,4],[0,8],[0,7],[0,9],[0,8],[0,7],[0,4],[0,4],[0,5],[0,4],[0,4],[0,3],[0,5],[0,3],[0,6],[0,4],[0,2],[-1,19],[0,3],[0,17],[0,7],[0,4],[0,12],[0,5],[0,19],[0,3]],[[9997,5211],[-1,-5],[0,-1],[0,-16],[1,-5],[1,-4],[0,-5],[-1,-5],[0,-6],[1,-2],[0,-4],[0,-4],[0,-1],[-1,-3],[0,-5],[0,-3],[0,-4],[0,-5],[0,-4],[0,-4],[0,-6],[0,-3],[0,-7],[0,-4],[0,-9],[0,-4],[0,-3],[0,-4],[-1,-2],[0,-4],[0,-6],[0,-6],[0,-3],[0,-5],[0,-3],[0,-8],[0,-6],[0,-5],[0,-5],[0,-3],[0,-4],[0,-3],[-1,-3],[0,-3],[0,-5],[0,-4],[0,-3],[0,-3],[0,-3],[0,-6],[0,-3],[0,-2],[0,-9],[0,-6],[0,-5],[0,-7],[-1,-10],[0,-4],[0,-3],[0,-3],[0,-5],[0,-4],[0,-15],[0,-6],[0,-8],[0,-3],[0,-3],[-1,-4],[0,-4],[0,-9],[0,-6],[0,-10],[0,-8],[0,-1],[0,-2],[0,-3],[0,-24],[-2,-21],[0,-8],[0,-3],[0,-14],[0,-10],[0,-15],[0,-5],[0,-1],[0,-3],[0,-3],[0,-16],[0,-16],[-1,-7],[0,-20],[0,-10],[0,-4],[0,-6],[0,-5],[0,-18],[0,-5],[0,-3],[0,-4],[-1,-13],[0,-10],[0,-5],[0,-6],[0,-4],[0,-4],[0,-8],[0,-8],[0,-2],[0,-17],[-1,-22],[0,-13],[0,-18],[0,-18],[0,-5],[0,-4],[0,-3],[0,-3],[-1,-5],[0,-3],[0,-4],[0,-5],[0,-5],[0,-12],[0,-9],[0,-7],[0,-18],[-1,-24],[0,-15],[0,-12],[0,-18],[0,-4],[0,-4],[-1,-14],[0,-11],[0,-8],[0,-7],[0,-9],[0,-19],[-1,-57],[0,-18],[0,-4],[-1,-10],[0,-19],[0,-8],[-1,-44],[0,-2],[0,-3],[0,-6],[0,-12],[0,-10],[0,-4],[0,-12],[0,-13],[-1,-7],[0,-7],[0,-7],[0,-8],[0,-3],[-1,-83],[-1,-23],[0,-24],[0,-13],[-1,-41],[0,-14],[0,-19],[0,-2],[0,-3],[0,-2],[0,-2],[0,-4],[0,-3],[0,-3],[0,-14],[0,-1],[0,-9],[-1,-19],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-6],[0,-3],[0,-4],[0,-3],[0,-5],[0,-5],[0,-7],[0,-6],[0,-4],[0,-8],[-1,-34],[0,-3],[0,-3],[0,-17],[0,-8],[0,-8],[-1,-13],[0,-17],[0,-9],[0,-27],[0,-8],[-1,-14],[0,-8],[0,-15],[0,-2],[0,-2],[0,-8],[-1,-41],[0,-18],[0,-12],[0,-7],[-1,-28],[0,-30],[0,-17],[0,-16],[-1,-13],[0,-45],[0,-6],[0,-2],[0,-2],[0,-5],[-1,-30],[0,-18],[0,-3],[0,-7],[0,-9],[0,-6],[0,-4],[0,-9],[-1,-6],[0,-4],[0,-48],[-1,-26],[0,-9],[0,-6],[0,-2],[0,-9],[0,-4],[0,-5],[0,-11],[0,-18],[-1,-32],[0,-36],[0,-7],[0,-16],[-1,-19],[0,-26],[0,-32],[-1,-53],[0,-7],[0,-7],[0,-4],[0,-17],[0,-11],[0,-12],[0,-7],[-1,-24],[0,-6],[0,-25],[0,-6]],[[6219,5079],[0,-6],[0,-3],[1,-28],[0,-7],[0,-4],[0,-7],[0,-3],[0,-3],[0,-3],[0,-5],[0,-4],[0,-4],[0,-5],[0,-6],[0,-4],[0,-6],[0,-8],[0,-4],[0,-5],[0,-3],[0,-3],[0,-3],[0,-9],[0,-3],[0,-3],[0,-6],[0,-7],[0,-3],[0,-4],[0,-3],[0,-9],[0,-7],[0,-4],[0,-4],[0,-4],[0,-7],[0,-6],[0,-5],[0,-5],[0,-6],[0,-4],[0,-5],[0,-4],[0,-3],[0,-5],[0,-7],[0,-4],[0,-3],[0,-3],[0,-6],[0,-4],[0,-4],[0,-3],[0,-6],[0,-4],[0,-11],[0,-5],[0,-5],[0,-5],[0,-5],[0,-4],[0,-4],[0,-3],[0,-4],[0,-6],[0,-3],[0,-5],[0,-4],[0,-8],[0,-4],[0,-2],[0,-5],[0,-3],[0,-4],[0,-4],[0,-4],[0,-4],[0,-6],[0,-10],[0,-5],[0,-6],[0,-5],[0,-4],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-5],[0,-3],[0,-6],[0,-4],[0,-4],[0,-2],[0,-2],[0,-4],[0,-11],[0,-4],[0,-11],[0,-2],[0,-2],[0,-5],[0,-6],[0,-5],[0,-5],[0,-3],[0,-4],[0,-5],[0,-17],[0,-6],[0,-3],[0,-5],[0,-19],[0,-7],[0,-3],[0,-3],[0,-4],[0,-3],[0,-4],[0,-6],[0,-3],[0,-4],[0,-4],[0,-3],[0,-3],[0,-5],[0,-5],[0,-3],[0,-3],[0,-3],[0,-3],[0,-6],[0,-3],[0,-4],[0,-3],[0,-4],[0,-4],[0,-4],[0,-5],[0,-4],[0,-2],[0,-3],[0,-7],[0,-4],[0,-7],[0,-4],[0,-4],[0,-5],[0,-6],[0,-4],[0,-6],[0,-4],[0,-3],[0,-5],[0,-4],[0,-4],[0,-4],[0,-9],[0,-4],[0,-4],[0,-4],[0,-7],[0,-5],[0,-4],[0,-3],[0,-5],[0,-4],[0,-3],[0,-4],[0,-4],[0,-8],[0,-2],[0,-3],[0,-4],[0,-6],[0,-4],[0,-5],[0,-7],[0,-5],[0,-8],[0,-4],[0,-4],[0,-22],[0,-6],[0,-1],[0,-36],[0,-3],[0,-4],[0,-7],[0,-4],[0,-3],[0,-6],[0,-10],[0,-7],[0,-3],[0,-4],[0,-4],[0,-4],[0,-4],[0,-3],[0,-3],[0,-4],[0,-3],[0,-4],[0,-6],[0,-6],[0,-4],[0,-4],[0,-4],[0,-6],[0,-3],[0,-5],[0,-4],[0,-6],[0,-16],[0,-6],[0,-10],[0,-12],[0,-4],[0,-8],[0,-4],[0,-3],[0,-5],[0,-4],[0,-4],[0,-6],[0,-4],[0,-3],[0,-3],[0,-3],[0,-4],[0,-5],[0,-4],[0,-5],[0,-5],[0,-6],[0,-3],[0,-3],[0,-6],[0,-4],[0,-4],[0,-3],[0,-2],[0,-4],[0,-3],[0,-4],[0,-7],[0,-5],[0,-8],[0,-6],[0,-15],[0,-3],[0,-4],[0,-4],[0,-3],[0,-6],[0,-5],[0,-5],[0,-3],[0,-5],[0,-4],[0,-4],[0,-5],[0,-8],[0,-2],[0,-2],[0,-6],[0,-6],[0,-8],[0,-8],[0,-11],[0,-4],[0,-3],[0,-11],[0,-4],[0,-4],[0,-7],[0,-4],[0,-3],[1,-1],[2,0]],[[6223,3659],[0,-8],[0,-7],[0,-4],[0,-2],[0,-2],[0,-3],[0,-4],[0,-4],[0,-2],[0,-17],[0,-6],[0,-1],[0,-3],[0,-21],[0,-6],[0,-5],[0,-3],[0,-4],[0,-6],[0,-4],[0,-8],[0,-6],[0,-12],[0,-10],[0,-22],[0,-4],[0,-7],[0,-3],[0,-5],[0,-4],[0,-4],[0,-3],[0,-6],[0,-3],[0,-4],[0,-9],[0,-5],[0,-7],[0,-4],[0,-7],[0,-5],[0,-5],[0,-9],[0,-6],[0,-7],[0,-21],[0,-12],[0,-58],[-1,-59],[0,-36],[0,-15],[0,-9],[0,-6],[0,-20]],[[6222,3146],[-6,0],[-9,0],[-21,0],[-5,0],[-5,0],[-15,0],[-5,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-4,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-16,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-5,0],[-2,0],[-3,0],[-2,0],[-9,0],[-1,0],[-10,0],[-12,0],[-2,0],[-7,0],[-15,0],[-6,0],[-1,1],[-3,0],[-7,0],[-2,0],[-5,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-4,0],[-2,0],[-3,0],[-1,0],[-8,0],[-2,0],[-11,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-6,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-2,0],[-3,0],[-2,0],[-3,0],[-1,0],[-3,0],[-5,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-5,0],[-1,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-4,0],[-4,0],[-2,0],[-1,0],[-3,-1],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0]],[[5732,3146],[0,8],[0,5],[0,5],[0,4],[0,3],[0,5],[0,7],[0,3],[0,3],[0,4],[0,8],[0,8],[0,4],[0,6],[0,6],[0,6],[0,4],[0,8],[0,3],[0,10],[0,4],[0,3],[0,3],[0,5],[0,5],[0,9],[0,10],[0,8],[0,4],[0,7],[0,3],[0,7],[0,3],[0,5],[0,4],[0,7],[0,5],[0,6],[0,4],[0,1],[0,13],[0,5],[0,7],[0,4],[0,6],[0,6],[0,34],[0,8],[0,3],[0,5],[0,4],[0,5],[0,6],[0,4],[0,4],[0,4],[0,4],[0,4],[0,3],[0,42],[0,44],[0,4],[0,4],[0,17],[0,1],[0,8],[0,4],[0,5],[-1,22],[0,20],[-3,0]],[[6836,3885],[-1,-2],[-2,0],[-4,2],[-3,3],[-3,1],[-3,-1],[-5,1],[-4,0],[-3,-1],[-3,-2],[-2,-2],[-1,-2],[-2,-1],[-2,-1],[-4,-1],[-7,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-4,0],[-2,-2],[-3,0],[-2,2],[-1,5],[-2,6],[-2,5],[-1,3],[-1,7],[-3,6],[-1,4],[-3,5],[-3,6],[-2,1],[-2,1],[-2,0],[-1,-4],[-1,-6],[-3,-4],[-4,-6],[-3,-3],[-1,0],[-3,4],[-3,7],[-4,5],[-2,3],[-1,5],[-3,9],[-3,4],[-2,-1],[-2,-1],[-2,-3],[-1,-1],[-1,-3],[-1,-5],[-2,-2],[-2,0],[-2,-1],[-4,2],[-2,3],[-1,2],[0,2],[-1,2],[-2,5],[-2,10],[-2,14],[-2,8],[-2,5],[-2,0],[-2,-4],[-3,-2],[-2,0],[-1,1],[-2,2],[-1,1],[-2,0],[-2,-1],[-4,3],[-1,0],[-4,2],[-3,2],[-1,0],[-2,-3],[-2,-7],[-2,-13],[-1,-4],[-3,-3],[-4,-2],[-2,1],[-1,0],[-7,1],[-4,2],[-3,1],[-4,6],[-4,4],[-4,6],[-1,4],[-4,5],[-1,3],[-1,5],[0,8],[-1,4],[0,5],[0,4],[-1,5],[-1,4],[-2,3],[-2,6],[0,3],[0,7],[1,12],[1,3],[1,1],[0,1],[4,5],[1,4],[0,6],[-1,5],[-2,4],[-1,3],[-2,3],[1,3],[1,3],[-1,4],[0,4],[0,2],[-1,3],[-1,1],[-1,2],[-1,3],[0,3],[-1,3],[0,3],[0,4],[-1,3],[0,5],[0,4],[-1,3],[-1,3],[0,3],[0,1],[-1,3],[0,1],[0,1],[0,3],[0,5],[-1,4],[0,5],[-1,7],[-2,0],[0,3],[-1,4],[0,7],[0,9],[1,4],[1,8],[2,5],[1,4],[1,5],[2,14],[0,3],[1,13],[0,4],[-1,5],[-1,2],[-2,8],[-1,9],[0,1],[0,3],[-1,5],[1,4],[0,3],[2,5],[0,5],[-1,4],[-1,4],[-2,7],[-2,4],[-1,1],[0,2],[-3,5],[-2,3],[-2,2],[-2,0],[-2,2],[-3,-1],[-1,0],[-2,0],[-3,-2],[-5,-3],[-1,0],[-2,-1],[-3,-2],[-4,-1],[-4,2],[-2,2],[-3,3],[-2,2],[-2,1],[-3,3],[-1,4],[0,3],[2,2],[1,3],[0,3],[0,5],[0,6],[-1,5],[0,4],[0,4],[0,4],[0,3],[-1,5],[-1,3],[-2,4],[0,3],[0,6],[0,3],[0,3],[1,3],[0,4],[0,1],[0,3],[1,4],[1,5],[0,5],[1,8],[0,5],[0,3],[-1,9],[-2,10],[-1,2],[-3,7],[-2,2],[-3,7],[-1,2],[-3,6],[-4,6],[-1,0],[-6,1],[-4,3],[-1,4],[-3,3],[-2,0],[-1,2],[-2,5],[-6,21],[-1,4],[-4,15],[0,2],[-3,11],[-4,11],[-2,6],[-1,0],[-5,2],[-2,2],[-2,4],[-1,6],[-1,8],[0,2],[-6,12],[-2,3],[-4,5],[-5,5],[-1,1],[-1,0],[-3,2],[-3,7],[-1,4],[-1,7],[-3,9],[0,2],[-2,3],[-1,1],[-5,2],[-3,1],[-3,1],[-6,2],[-5,1],[-5,-2],[-6,-3],[-7,-1],[-1,1],[-1,2],[0,4],[0,3],[0,1],[0,10],[-2,6],[-4,10],[0,3],[-1,2],[-1,3],[-2,2],[-1,0],[-5,1],[-5,1],[-4,5],[-6,12],[-2,17],[-7,12],[-1,24],[0,2],[0,16],[-1,14],[3,21],[1,7],[3,20],[-1,4],[-2,19],[-7,43],[-7,21],[-12,14],[-17,4],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-5,0],[-2,-1],[-11,1],[-2,6],[0,3],[-2,6],[-4,12],[-5,9],[-2,0],[-7,9],[-3,7],[-2,4],[-2,7],[-1,4],[-3,6],[-2,4],[-6,13],[-1,2],[-5,4],[-4,2],[-4,1],[-5,0],[0,-1],[-1,1],[-1,1]],[[7083,3982],[0,-8],[-1,-17],[0,-4],[1,-8],[0,-11],[0,-4],[0,-16],[0,-16],[0,-17],[0,-10],[0,-1],[0,-2],[0,-14],[0,-28],[0,-13],[0,-13],[0,-4],[0,-5],[0,-5],[0,-30],[0,-3],[0,-10],[0,-3],[0,-18],[0,-4],[0,-4],[0,-14],[0,-8],[0,-30],[0,-5],[-2,0]],[[7081,3657],[-8,0],[-7,0],[-4,1],[-2,0],[-3,-1],[-8,1],[-2,0],[-2,0],[-3,0],[-6,0],[-2,0],[-2,0],[-11,0],[-1,0],[-13,0],[-5,0],[-3,1],[-9,-1],[-9,0],[-5,0],[-18,0],[-10,0],[-7,0],[-2,0],[-25,1],[-2,0],[-15,0],[-3,0],[-17,0],[-8,0],[-5,0],[-8,0],[-4,0],[-15,0],[-1,0],[-15,0],[-9,0],[-13,0],[-16,0],[-8,0],[-3,0],[-18,0],[-6,0],[-7,0],[-4,0],[-2,0],[-2,0],[-5,0],[-7,0],[-8,0],[-3,0],[-7,0],[-1,0],[-1,0],[-4,0],[-4,0],[-9,0],[-12,0],[-4,0],[-14,0],[-2,0],[-1,0],[-11,0],[-6,0],[-2,0],[-7,0],[-2,0],[-6,0],[-6,0],[-6,0],[-2,1],[-5,0],[-7,0],[-6,0],[-12,0],[-3,-1],[-3,1],[-3,0],[-7,0],[-4,0],[-3,0],[-3,0],[-4,0],[-7,0],[-7,0],[-1,0],[-9,0],[-8,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-8,0],[-1,0],[-12,0],[-1,0],[-4,0],[-2,0],[-1,0],[-11,-1],[-3,0],[-2,0],[-3,1],[-1,0],[-9,-1],[-2,1],[-3,0],[-7,0],[-2,-1],[-1,0],[-1,0],[-3,0],[-7,0],[-2,0],[-2,0],[-5,0],[-5,0],[-1,0],[-6,0],[-5,0],[-2,0],[-6,0],[-1,0],[-3,0],[-3,0],[-3,0],[-2,0],[-2,0],[-3,0],[-8,0],[-4,0],[-3,0],[-2,0],[-17,0],[-6,0],[-2,0],[-4,0],[-3,0],[-2,0],[-4,0],[-2,0],[-2,0],[-4,0],[-3,0],[-1,0],[-2,0],[-3,0],[-1,0],[-4,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-4,0],[-3,0],[-3,1],[-7,-1],[-7,0],[-4,0],[-2,0],[-2,0],[-5,0],[-4,0],[-7,0]],[[8928,4260],[0,-4],[0,-4],[0,-3],[0,-5],[0,-12],[0,-5],[0,-4],[0,-4],[0,-24],[0,-21],[-14,0],[-7,0],[-2,0],[-7,0],[-16,0],[-14,0],[-1,0],[-4,0],[-15,0],[-1,0],[-22,0],[-7,0],[-4,0],[-8,0],[-20,-1],[-6,0],[-3,0],[-3,0],[-15,0],[-7,0],[-8,0],[-1,-2],[0,-5],[0,-3],[0,-36],[0,-12],[0,-12],[0,-7],[0,-7],[0,-21],[0,-12],[0,-4],[0,-4],[0,-12],[0,-23],[0,-22],[0,-8],[0,-8],[0,-9],[0,-7],[0,-10],[0,-13],[0,-9],[0,-11],[0,-25],[0,-6],[0,-3],[0,-5],[0,-4],[0,-4],[0,-4],[0,-35],[0,-6],[0,-33],[0,-28],[0,-4],[0,-4],[0,-4],[0,-7],[0,-22],[0,-4],[0,-28],[0,-8],[0,-23],[-3,0],[-2,-1],[-2,1],[0,-5],[0,-9],[0,-1],[-1,-7],[0,-12],[0,-4],[1,-3],[0,-3],[0,-4],[0,-4],[-1,-4],[0,-8],[0,-4],[1,-8],[-1,-3],[0,-3],[0,-8],[0,-8],[0,-10],[0,-21],[0,-41],[1,-38],[0,-23],[0,-4],[0,-11],[-1,-7],[0,-5],[0,-27],[0,-3],[0,-10],[0,-12],[0,-25],[0,-5],[0,-5],[0,-21],[0,-18],[0,-3],[0,-45],[0,-10],[0,-72]],[[8735,3145],[0,-11],[0,-15],[0,-1],[0,-16],[0,-5],[0,-19],[0,-63],[0,-18],[0,-2],[0,-11],[0,-4],[0,-17],[0,-17],[0,-25],[0,-17],[0,-15],[-18,0],[-23,-1],[-20,0],[-1,0],[-2,1],[-2,-1],[-6,1],[-5,0],[-1,-1],[-30,0],[-22,0],[-34,0],[-20,0]],[[8551,2888],[-20,0],[-4,0],[-2,0],[-1,0],[-3,0],[-5,0],[-8,0],[-25,0],[-14,-1],[-3,0],[-3,0],[-3,1],[-4,0],[-4,0],[-3,0],[-24,0],[-8,-1],[-3,0],[-20,0],[-6,0],[-4,0],[-16,0],[-1,0],[-7,0],[-14,0],[-9,0],[-10,0],[-2,1],[-2,0],[-2,0],[-2,0],[-5,0],[-4,-1],[-2,0],[-2,0],[0,16],[0,3],[0,42],[0,4],[0,15],[0,5],[0,8],[0,7],[0,28],[0,6],[1,6],[-1,24],[0,7],[0,13],[0,42],[0,9],[0,7],[0,14],[-2,0],[-10,0],[-2,0],[-7,0],[-2,0],[-7,0],[-9,0],[-5,0],[-11,1],[-6,0],[-4,0],[-7,0],[-2,-1],[-2,0],[-1,1],[-8,0],[-1,1],[-2,0],[-2,0],[-2,-1],[-4,0],[-5,0],[-3,-1],[-21,0],[-4,0],[-2,0],[-6,0],[-1,0],[-4,0],[-4,0],[-2,0],[-8,0],[-10,0],[-10,0],[-7,0],[-3,0],[-1,1],[-2,-1],[-15,0],[-12,1],[-2,0],[-11,0],[-11,0],[-5,0]],[[8061,3144],[0,16],[0,4],[0,13],[0,13],[0,14],[0,25],[0,14],[0,19],[0,6],[0,3],[0,28],[0,10],[0,28],[0,12],[0,9],[0,3],[0,18],[0,7],[0,11],[0,4]],[[8061,3401],[0,5],[0,4],[0,3],[0,3],[0,6],[0,10],[0,11],[0,10],[0,3],[0,2],[0,63],[1,8],[-1,3],[0,5],[0,7],[0,4],[0,19],[0,3],[0,3],[0,7],[0,4],[0,4],[0,4],[0,4],[0,3],[0,3],[0,5],[0,4],[0,4],[1,23],[0,5],[0,2],[0,1],[0,3],[0,4],[0,4],[0,1],[3,0],[0,8],[0,3],[0,4],[0,3],[0,4],[0,3],[0,8],[0,3],[0,4],[0,13],[0,6],[0,4],[0,3],[0,8],[0,12],[0,4],[0,5],[0,3],[0,4],[0,5],[0,3],[0,5],[0,4],[0,4],[0,4],[0,12],[0,5],[0,3],[0,13],[0,8],[0,4],[0,3],[0,7],[0,3],[0,17],[0,4],[0,19],[0,3],[0,4],[0,12],[0,4],[0,3],[0,6],[0,5],[0,3],[0,4],[0,3],[0,4],[0,9],[0,35],[0,11],[0,6],[0,6],[0,27],[0,15],[0,22],[0,22],[0,4],[0,22],[0,17],[0,7],[0,22],[0,39],[0,30],[0,6],[2,1],[2,1],[3,2],[2,1],[2,-1],[6,4],[5,4],[2,4],[1,4],[1,6],[1,12],[1,18],[1,17],[1,8],[0,3],[0,1],[-1,4],[-1,3],[0,8],[0,3],[1,2],[1,0],[2,1],[1,2],[2,7],[1,6],[0,4],[5,15],[1,3],[1,4],[1,2],[3,3],[3,5],[3,1],[1,2],[1,3],[1,2],[1,3],[0,3],[2,4],[2,4],[2,6],[0,5],[5,13],[2,4],[2,2],[2,-1],[1,0],[1,-1],[3,-2],[5,-4],[4,-2],[2,0],[2,1],[1,3],[1,3],[0,6],[-1,5],[0,3],[-1,4],[-2,10],[-2,16],[0,5],[-1,12],[0,6],[1,3],[3,9],[1,1],[1,1],[2,3],[2,1],[0,1],[4,1],[2,1],[1,0],[0,1],[1,0],[3,0],[2,1],[1,0],[1,1],[0,1],[0,-1],[7,1],[2,1],[2,1]],[[8061,3401],[-10,-1],[-5,1],[-23,-1],[-16,0],[-10,0],[-11,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-6,0],[-12,0],[-2,0],[-6,0],[-5,0],[-8,0],[-7,0],[-2,0],[-11,0],[-14,0],[-2,0],[-4,0],[-6,0],[-4,0],[-8,0],[-3,0],[-2,0],[-6,0],[-2,-1],[0,1],[-1,0],[-24,0],[-6,-1],[-5,0],[-5,0],[-2,0],[-9,0],[-10,1],[-2,0],[-4,-1],[-2,1],[-2,0],[-8,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-1,1],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-5,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-6,1],[-7,0],[-2,0],[-17,0],[-5,0],[-1,0],[-4,0],[-7,1],[-2,0]],[[7695,3401],[0,13],[0,18],[0,5],[0,33],[0,10],[0,4],[0,3],[0,20],[0,6],[0,15],[0,32],[0,28],[0,54],[0,11],[0,5],[0,3],[0,9],[0,4],[0,5],[0,5],[0,6],[0,5],[0,5],[0,5],[0,7],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,6],[0,4],[0,3],[0,6],[0,7],[0,8],[0,5],[0,5],[0,7],[0,5],[0,16],[0,7],[-1,7],[-3,44],[0,-2],[-1,-1],[-1,-2],[0,-7],[-1,-4],[-1,-6],[0,-3],[-1,-4],[-1,-3],[-1,-3],[-1,-2],[-2,-4],[1,-4],[-1,-4],[0,-3],[-2,-1],[-1,0],[-1,-4],[-1,-3],[-1,-2],[-2,-2],[-2,-2],[-1,0],[-2,0],[-1,0],[-1,1],[-1,-3],[-1,0],[-2,-1],[-1,0],[-1,1],[-1,2],[0,3],[-1,2],[-1,1],[-2,1],[-1,1],[-2,2],[-1,1],[-1,2],[0,3],[-1,2],[-1,2],[-2,0],[-1,2],[-1,1],[-2,2],[-1,2],[-1,2],[-3,4],[-1,3],[-2,2],[-1,1],[-1,-1],[-2,-1],[-1,0],[-1,2],[-2,-1],[2,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-2,1],[-1,1],[-1,0],[-2,1],[-1,0],[-3,0],[-2,1],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-2],[-1,-1],[-2,-3]],[[5113,3659],[-6,-1],[-1,0],[-13,1],[-9,0],[-2,0],[-7,0],[-2,0],[-6,1],[-3,0],[-3,0],[-4,0],[-3,0],[-2,0],[-6,0],[-10,0],[-5,0],[-5,0],[-20,-1],[-10,0],[-13,0],[-11,0],[-12,1],[-20,0],[-2,0],[-10,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,1],[-3,0],[-7,-1],[-1,0],[-34,0],[0,-14],[0,-10],[0,-4],[0,-10],[0,-3],[0,-4],[0,-3],[0,-33],[0,-1],[0,-8],[0,-7],[0,-4],[0,-18],[0,-4],[0,-4],[0,-4],[0,-4],[0,-3],[0,-4],[0,-4],[0,-3],[0,-5],[0,-3],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-3],[0,-3],[0,-5],[0,-3],[0,-4],[0,-11],[0,-4],[0,-6],[0,-30],[0,-1],[0,-26],[0,-5],[0,-32],[0,-22],[0,-8],[0,-1],[0,-60],[0,-7],[0,-62],[0,-3],[0,-8],[0,-4],[0,-4],[0,-4],[0,-9],[0,-11],[0,-5],[0,-3],[0,-11],[0,-4],[0,-4],[0,-16],[0,-7],[0,-8],[0,-6],[0,-8],[0,-4],[0,-3],[0,-3],[0,-3],[0,-26],[0,-8],[0,-9],[0,-12],[0,-4],[0,-4],[0,-1],[0,-6],[0,-4],[0,-4],[0,-3],[0,-4],[0,-7],[0,-17],[0,-7],[0,-10],[0,-3],[0,-4],[0,-16],[0,-23]],[[4872,2889],[-2,0],[-8,0],[-11,0],[-3,0],[-2,0],[-6,0],[-4,0],[-5,0],[-7,0],[-2,0],[-4,0],[-5,0],[-2,0],[-3,0],[-3,0],[-1,0],[-1,0],[-3,0],[-5,0],[-5,1],[-2,0],[-3,0],[-4,0],[-4,0],[-14,0],[-4,0],[-2,0],[-2,0],[-2,0],[-3,0],[-4,0],[-2,0],[-1,0],[-6,0],[-1,0],[-5,0],[-2,0],[-9,0],[-2,0],[-5,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-7,-1],[-4,0],[-4,0],[-16,0],[0,21],[0,22],[0,7],[0,5],[0,12],[0,6],[0,4],[0,9],[0,5],[0,10],[0,19],[0,1],[0,7],[0,1],[-6,0],[-5,0],[-2,0],[-2,0],[-4,0],[-2,0],[-2,0],[-2,0],[-1,0],[-6,0],[-1,0],[-2,0],[-6,0],[-2,0],[-7,0],[-2,0],[-2,0],[-7,0],[-2,0],[-4,0],[-5,0],[-4,0],[-6,0],[-2,0],[-4,0],[-4,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-10,0],[-7,0]],[[4549,3018],[1,6],[1,2],[1,4],[2,3],[0,2],[1,3],[1,3],[0,1],[0,2],[0,4],[1,6],[0,4],[1,3],[0,10],[-1,10],[0,4],[0,4],[1,6],[0,3],[0,1],[0,2],[0,2],[0,6],[1,5],[1,2],[2,5],[3,4],[2,2],[1,2],[2,1],[1,-1],[2,-3],[1,-2],[2,-1],[1,-1],[6,3],[2,2],[3,1],[1,0],[2,0],[4,0],[1,0],[1,0],[7,0],[2,0],[3,2],[2,0],[7,3],[1,2],[1,3],[0,3],[-1,2],[-2,2],[0,5],[2,3],[1,3],[1,0],[1,1],[1,2],[1,0],[1,1],[1,2],[0,8],[-1,4],[-1,2],[-1,0],[-2,0],[-4,2],[-2,1],[-1,3],[-1,0],[0,2],[0,1],[0,2],[0,5],[-1,3],[-2,5],[-1,2],[-1,2],[-1,2],[-2,0],[-2,-1],[-4,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-4,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-4,-2],[-3,0],[-2,-1],[-2,-2],[-3,-2],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-4,-1],[-1,0],[-2,0],[-3,-3],[-2,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,3],[-1,0],[0,1],[0,3],[-1,2],[-3,1],[-2,0],[-2,-1],[-1,0],[-2,0],[-3,2],[-4,3],[-2,1],[-2,1],[-1,1],[-1,0],[-1,0],[-1,1],[-2,1],[-2,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-3,-2],[-3,0],[-3,0],[-2,1],[-5,3],[-1,2],[-4,5],[-1,2],[-1,2],[-1,2],[-1,3],[-1,3],[-1,3],[-1,7],[0,4],[3,6],[1,1],[1,5],[1,3],[0,7],[0,4],[0,5],[-1,3],[-1,3],[-2,3],[-1,4],[-1,3],[-1,4],[0,1],[-1,2],[0,2],[-1,4],[0,1],[0,3],[0,6],[0,4],[0,3],[1,3],[0,1],[0,3],[-3,1],[-1,-1],[-2,0],[-2,1],[-3,5],[-1,3],[-1,2],[0,12],[0,2],[0,1],[-1,8],[0,5],[1,3],[1,1],[1,0],[1,-3],[1,-3],[0,-3],[2,-5],[1,-1],[2,-1],[1,0],[2,1],[1,2],[0,6],[0,4],[-1,3],[-2,3],[-1,3],[0,1],[1,2],[1,3],[1,0],[1,1],[2,1],[1,-1],[2,-1],[1,-1],[1,-1],[2,0],[2,2],[1,2],[1,4],[-1,3],[-6,2],[-2,2],[-3,4],[-2,3],[-2,4],[-1,4],[0,5],[-1,3],[0,7],[0,2],[1,3],[0,4],[0,4],[0,1],[-1,3],[1,6],[-1,5],[0,8],[0,5],[0,1],[1,0],[0,3],[1,5],[0,1],[1,2],[3,-1],[3,-1],[1,-1],[4,0],[1,0],[1,2],[2,4],[1,2],[0,4],[0,5],[0,1],[0,1],[0,1],[-2,3],[0,3],[-2,4],[0,2],[-1,4],[0,5],[0,4],[0,5],[1,9],[0,6],[0,4],[1,6],[-1,5],[0,3],[0,6],[0,5],[-1,4],[0,4],[0,3],[1,1],[1,-1],[1,-2],[1,-2],[1,-2],[2,0],[1,1],[2,3],[1,4],[0,3],[-1,2],[-2,2],[-2,1],[-2,0],[-1,2],[-2,2],[-1,2],[0,1],[0,2],[0,1],[0,4],[1,7],[0,3],[1,3],[0,4],[1,3],[1,2],[0,1],[2,1],[2,3],[2,3],[1,3],[0,1],[0,3],[0,1],[-1,2],[-1,2],[0,1],[-1,0],[-1,0],[-1,0],[-7,-6],[-2,-2],[-1,0],[-1,0],[-1,0],[-4,0],[-2,-1],[-1,1],[-2,0],[-3,1],[-1,0],[-1,2],[-1,8],[-1,5],[0,4],[-1,3],[-1,2],[-1,3],[-2,3],[-2,2],[-3,2],[-2,0],[-1,0],[-1,-1],[-2,-2],[-3,-1],[-2,0],[-2,-2],[-1,-2],[0,-1],[0,-4],[-1,-7],[0,-1],[1,-4],[0,-3],[1,-5],[0,-1],[0,-3],[0,-1],[0,-4],[0,-1],[-1,-3],[-1,-2],[-3,-4],[-2,-4],[-1,-3],[-1,-3],[0,-1],[-1,-2],[-3,0],[0,1],[-3,3],[-2,1],[0,1],[-2,1],[-1,0],[-2,-2],[-1,0],[-1,-2],[0,-1],[-1,-2],[-1,-4],[0,-3],[1,-3],[1,-4],[2,-4],[1,-4],[0,-4],[-1,-3],[-1,-3],[-1,-1],[-4,5],[-1,2],[0,1],[-3,1],[0,1],[-2,0],[-2,-1],[-3,-2],[-2,-2],[-1,-1],[-2,-7],[-1,-2],[0,-1],[0,-6],[0,-6],[0,-5],[-1,-4],[-1,-2],[-2,-2],[-3,0],[-1,1],[-3,2],[0,1],[-2,3],[-1,3],[-2,5],[-1,4]],[[4382,3562],[-1,2],[-1,2],[0,3],[0,5],[-1,4],[-1,4],[-1,2],[-2,3],[-1,3],[-1,4],[-1,3],[-1,3],[0,1],[0,1],[-1,2],[-2,1],[-1,2],[-2,2],[-2,1],[-1,1],[-3,1],[-2,1],[-1,3],[-2,2],[-2,0],[-1,0],[-1,-2],[-1,0],[-1,-2],[-1,-2],[-1,0],[-2,2],[-1,2],[0,4],[-1,3],[-1,4],[0,7],[0,3],[0,1],[-1,1],[0,1],[-1,4],[-1,0],[-1,1],[-2,4],[-1,1],[-3,0],[-1,-1],[-2,0],[-3,-2],[-2,1],[-2,4],[-1,2],[-2,3],[-1,1],[-1,2],[-3,3],[-1,4],[-1,3],[0,3],[-1,3],[-1,2],[-1,5],[-2,5],[0,2],[0,1],[0,1],[-1,2],[-1,2],[-1,1],[-1,4],[-1,3],[-1,2],[-1,1],[0,4],[0,5],[0,3],[-1,4],[0,3],[0,6],[0,3],[0,4],[1,4],[1,6],[1,0],[1,3],[1,1],[1,2],[2,3],[2,1],[2,1],[2,-1],[2,0],[2,-1],[2,-2],[1,0],[1,-1],[1,-2],[2,-1],[1,0],[1,0],[2,-1],[1,-1],[1,1],[1,3],[0,1],[-1,6],[-1,3],[0,2],[0,2],[0,6],[-1,5],[-1,2],[-2,1],[-2,1],[-1,2],[0,4],[1,3],[2,3],[1,1],[2,0],[1,2],[2,1],[1,2],[0,3],[-1,4],[-1,5],[-1,4],[-1,7],[-1,0],[-1,6],[-1,3],[-1,4],[-1,4],[0,3],[0,1],[1,3],[-1,5],[-1,7],[0,3],[-2,4],[-2,0],[-1,0],[-1,0],[0,-1],[-2,-2],[-1,0],[-3,1],[-1,1],[-4,0],[-1,1],[-2,2],[0,5],[5,10],[1,4],[0,4],[-1,3],[-1,1],[-1,2],[-2,1],[-2,5],[-2,4],[-2,4],[-1,3],[-2,-2],[-1,-1],[-1,1],[-1,0],[-1,3],[-1,2],[-1,3],[-1,2],[-2,0],[-1,4],[1,5],[0,4],[1,5],[0,4],[0,4],[0,3],[0,6],[-1,5],[-1,5],[0,3],[-1,4],[0,5],[-1,4],[0,5],[0,3],[-1,6],[0,3],[-1,4],[0,2],[-1,1],[-2,0],[-1,0],[-1,-2],[-3,-3],[-3,-2],[-1,2],[0,3],[0,2],[0,5],[-1,3],[0,3],[-1,4],[-1,4],[0,4],[-1,3],[0,3],[0,1],[1,0],[2,0],[2,1],[2,4],[1,2],[2,3],[1,1],[1,0],[1,2],[1,0],[0,1],[1,0],[0,1],[1,3],[0,5],[0,2],[0,1],[-1,5],[0,5],[-1,3],[0,5],[0,5],[3,21],[0,2],[1,5],[0,1],[1,2],[1,0],[1,1],[1,2],[1,1],[0,4],[1,1],[0,5],[1,5],[0,3],[0,2],[0,1],[-1,4],[0,1],[-1,2],[-1,3],[-1,0],[-5,0],[0,1],[-1,1],[-1,0],[0,1],[0,3],[0,1],[3,5],[1,1],[2,2],[2,4],[4,3],[1,2],[0,1],[1,5],[1,4],[0,4],[0,4],[0,2],[0,3],[0,1],[-2,3],[-2,3],[0,2],[-1,0],[-2,1],[-1,0],[-2,-2],[-2,-1],[-4,0],[-3,0],[-3,1],[-1,0],[-3,2],[-4,3],[-1,3],[0,4],[0,1],[0,5],[0,1],[0,1],[0,1],[0,8],[-1,4],[-1,1],[-1,1],[-2,-2],[-3,-3],[-4,-1],[-1,0],[-2,0],[-2,1],[-1,1],[-2,1],[-1,0],[-2,2],[-2,3],[0,2],[-1,3],[-1,8],[0,5],[0,1],[1,2],[1,0],[1,0],[2,2],[1,-1],[0,-1],[0,-3],[1,-1],[1,1],[1,0],[0,1],[0,2],[0,3],[0,2],[0,6],[0,3],[0,1],[0,2],[-1,2],[-1,9],[-1,5],[-1,3],[0,1],[-1,3],[0,4],[0,13],[0,8],[1,3],[0,4],[0,8],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-2],[0,-2],[0,-1],[0,-6],[-1,-3],[0,-2],[0,-1],[-1,-1],[-1,1],[-2,1],[-1,2],[0,1],[0,1],[0,2],[0,1],[1,2],[1,1],[1,4],[0,2],[0,5],[0,2],[-1,2],[-1,1],[-3,3],[-1,1],[-2,0],[-3,0],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,4],[-1,2],[-3,4],[-4,4],[0,1],[-1,1],[-3,13],[0,1],[0,1],[0,1],[0,1],[1,2],[1,1],[1,2],[0,1],[1,1],[0,2],[0,1],[0,2],[0,1],[-1,4],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,2],[0,3],[0,1],[0,1],[1,5],[-4,14],[-1,0]],[[4382,3562],[0,-5],[0,-15],[0,-5],[0,-5],[-4,0],[-1,2],[-3,0],[-3,0],[-4,0],[-6,0],[-10,0],[-4,0],[-2,0],[-3,0],[-2,0],[-4,0],[-2,0],[-4,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-4,0],[-4,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-6,0],[-2,0],[-3,0],[-9,0],[-2,0],[-2,0],[-8,0],[-6,0],[-4,0],[-2,0],[-6,0],[-4,0],[-7,0],[-1,0],[-5,1],[-5,0],[-4,0],[-7,0],[-2,0],[-3,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-4,0],[-1,-2],[0,-9],[0,-6],[0,-5],[0,-7],[0,-14],[0,-6],[0,-5],[0,-6],[0,-5],[0,-4],[0,-3],[0,-10],[0,-6],[0,-7],[0,-4],[0,-10],[0,-5],[0,-6],[-1,-10],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-4,0],[-3,0],[-3,0],[-7,0],[-3,0],[-3,0],[-3,-2],[0,-5],[0,-5],[-2,-4],[-1,-2],[-1,-3],[0,-4],[0,-5],[1,-6],[0,-5],[0,-3],[0,-5],[0,-4],[1,-3],[1,-6],[-1,-4],[0,-3],[0,-3],[-1,-5],[0,-3],[1,-4],[1,-4],[0,-4],[1,-4],[-1,-4],[-1,-3],[-1,-2],[-2,-2],[-1,-2],[0,-5],[0,-3],[1,-4],[1,-3],[1,-1],[2,3],[2,2],[1,0],[2,3],[1,3],[1,-1],[2,-4],[2,-1],[2,0],[1,-1],[1,-1],[0,-4],[1,-3],[1,-1],[-1,0],[-5,0],[-8,0],[-1,0],[-1,0],[-3,0],[-2,0],[-4,0],[-2,0],[-6,0],[-2,0],[-4,0],[-2,0],[-3,0],[-2,0],[-3,0],[-4,0],[-4,0],[-3,0],[-7,0],[-3,0],[-11,0],[-1,0],[-2,0],[-2,0],[-4,0],[-4,0],[-1,0],[-2,0],[-4,0],[-3,0],[-2,0],[-4,0],[-2,0],[-3,0],[-1,0],[-4,0],[-2,0],[-27,0],[-12,0],[-21,-1],[-15,0],[-3,0],[-3,1],[-2,0],[-2,0],[-1,0],[-1,-1],[-2,0],[-3,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,1],[-6,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-7,0],[-1,0],[-20,0],[-2,0],[-13,0],[-2,0],[-2,0]],[[3891,3274],[0,43],[0,4],[0,4],[0,4],[0,4],[0,6],[0,4],[0,8],[0,4],[0,5],[-2,0],[-7,0],[-1,0],[-3,0],[-6,0],[-2,0],[0,8],[0,11],[0,8],[0,13],[0,3],[-2,0],[-3,0],[-3,0],[-3,0],[-3,0],[-3,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-3,0],[-3,0],[-3,0],[-2,0],[-2,0],[0,28],[0,15],[0,38],[0,5],[0,5],[0,6],[0,6],[0,6],[0,8],[0,8],[0,4],[0,3],[0,4],[0,4],[0,3],[0,6],[0,18],[0,4],[0,11],[0,40],[0,18],[0,22],[-4,0],[-9,0],[0,10],[0,4],[0,4],[0,3],[0,4],[0,3],[0,4],[0,11],[0,10],[0,3],[0,4],[0,15],[0,53],[0,1],[0,2],[0,40],[0,4],[0,4],[0,1],[0,3],[0,4],[0,20],[0,7],[0,19],[0,7],[0,4],[-1,13],[-3,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-5,0],[-12,0],[-7,1],[-1,-1],[-2,0],[-1,0],[-1,-1],[-2,1],[-2,0],[-2,0],[-6,0],[-5,0],[-2,0],[-3,0],[-2,0],[-2,0],[-4,0],[-15,1],[-9,-1],[-2,0],[-7,0],[-4,0],[-2,0],[-7,-1],[-3,0],[-5,0],[-1,1],[-4,0],[-4,0],[-15,-1],[-5,0],[-11,0],[-4,0],[0,25],[0,6],[0,16],[0,5],[0,53],[0,5],[0,5],[0,5],[0,3],[0,4],[0,3],[0,4],[0,16],[0,4],[0,4],[0,4],[0,3],[0,3],[0,3],[0,4],[0,39],[0,4],[0,1],[0,3],[0,27],[0,6]],[[9266,3144],[-17,0],[-7,0],[-8,0],[-1,0],[-1,0],[-3,0],[-1,0],[-3,0],[-1,0],[-2,0],[-3,0],[-1,0],[-4,0],[-12,0],[-4,0],[-9,0],[-8,0],[-1,0],[-5,0],[-1,0],[-5,0],[-4,0],[-2,0],[-11,1],[-25,-1],[-4,0],[-4,0],[-3,0],[-14,0],[-5,0],[-3,0],[-9,0],[-10,0],[-1,0],[-5,0],[-1,0],[-7,0],[-4,0],[-4,0],[-3,0],[-7,-1],[-11,1],[-6,0],[-6,0],[-11,0],[-2,0],[-12,0],[-2,0],[-9,1],[-6,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-5,0],[-7,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-7,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-12,0],[-4,0],[-2,0],[-5,0],[-4,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-2,0],[-7,0],[-7,-1],[-2,0],[-6,1],[-8,0],[-2,0],[-3,0],[-1,0],[-8,-1],[-4,0],[-7,0],[-2,0],[-4,0],[-4,0],[-6,0],[-8,0],[-2,0],[-1,1],[-3,0],[-1,0],[-4,0],[-1,1],[-1,-2],[-1,1],[-2,-1],[-1,-2],[-2,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,1],[-1,-1],[-2,1],[0,2],[0,2],[-2,2],[-2,0],[-1,0],[0,-1],[0,-2],[-1,0],[-1,0],[-4,0],[-1,0],[-2,0],[-1,0],[-2,0],[-7,0],[-8,0]],[[3891,3274],[0,-8],[0,-13],[0,-4],[0,-14],[0,-4],[0,-5],[0,-4],[0,-5],[0,-8],[0,-4],[0,-4],[0,-5],[0,-8],[0,-9],[0,-3],[1,-5],[0,-4],[-1,-3],[0,-6],[0,-3],[0,-3],[0,-6],[0,-12],[0,-3],[0,-4],[0,-14],[0,-10],[0,-1],[0,-6],[0,-8],[0,-3],[0,-4],[0,-11],[0,-11],[0,-4],[0,-16],[0,-3],[0,-5],[0,-5],[0,-9],[0,-16],[1,-21],[-1,-6],[0,-10],[0,-9],[0,-3],[0,-21],[0,-10],[0,-8],[0,-46],[0,-22],[0,-3],[0,-2],[1,-53],[0,-18],[0,-11],[0,-27],[0,-8],[0,-5],[0,-3],[0,-4],[0,-3],[0,-5],[0,-8],[0,-4],[0,-4],[0,-4],[0,-9],[0,-5],[0,-4],[0,-7],[0,-3],[0,-4],[0,-14],[0,-3],[-1,-2],[-3,0],[-2,0],[-3,0],[-2,0],[-5,0],[-3,0],[-1,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-4,0],[-3,0],[-2,0],[-8,0],[-7,0],[-6,0],[-1,0],[-7,0],[-11,0],[-1,0],[-2,0],[-2,0],[-1,0],[-4,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,-1],[-1,1],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-2,0],[-6,0],[-4,0],[-3,0],[-5,-1],[-2,0],[-3,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-3,0],[-2,0],[-4,0],[-2,0],[-2,0],[-4,0],[-4,0],[-15,-2]],[[3685,2629],[-1,2],[-1,1],[-2,4],[-1,1],[-1,1],[-1,2],[-2,2],[-2,3],[-2,4],[-1,3],[-1,4],[0,1],[-1,1],[-1,3],[-2,5],[-1,4],[-2,1],[-2,5],[-1,3],[-1,2],[0,4],[-2,5],[-2,4],[-1,2],[-1,5],[0,1],[-1,2],[-1,1],[-1,10],[0,1],[-2,3],[-1,3],[0,1],[-1,3],[0,3],[-2,2],[-1,1],[-2,3],[0,1],[-2,6],[-2,7],[-3,7],[-4,7],[-3,7],[-2,3],[-2,2],[-1,0],[-2,0],[0,2],[-2,3],[-1,1],[-2,2],[-1,2],[-2,3],[-4,6],[-3,5],[-4,6],[-5,8],[-2,5],[-2,13],[-3,3],[-2,1],[-2,2],[-1,0],[-3,0],[-1,0],[-2,1],[-2,1],[-3,2],[-1,0],[-1,1],[-4,2],[-2,1],[-1,-2],[-4,1],[-1,-2],[-3,-1],[-1,0],[-1,-2],[-1,-2],[0,-3],[-1,-2],[0,-4],[0,-3],[-1,-2],[0,-1],[-1,-3],[-2,-2],[-1,-2],[-1,-3],[-1,-2],[-2,-5],[-5,-4],[0,-3],[-2,-3],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-2,0],[-3,-2],[-2,0],[-1,0],[-2,-1],[-2,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,-2],[-1,0],[-2,2],[-1,1],[-1,1],[-2,-1],[-2,-1],[0,1],[0,33],[-1,78],[0,41],[0,206],[0,8],[0,183],[0,314],[0,3],[0,138],[0,193],[0,193]],[[7695,3401],[0,-8],[0,-6],[0,-13],[0,-7],[-1,-16],[1,-11],[0,-4],[0,-22],[0,-10],[0,-5],[0,-9],[0,-28],[0,-3],[0,-9],[0,-3],[-1,-3],[1,-5],[0,-11],[0,-9],[0,-11],[0,-12],[0,-9],[0,-4],[0,-4],[0,-22],[0,-14],[-7,0],[-3,0],[-9,0],[-2,0],[-3,0],[-13,-1],[-4,0],[-15,0],[-3,0],[-7,0],[-6,0],[-3,0],[-3,0],[-3,0],[-1,0],[-5,0],[-17,0],[-1,0],[-5,0],[-4,0],[-2,1],[-8,-1],[0,-15],[0,-28],[0,-20],[0,-17],[0,-31],[0,-1],[0,-3],[0,-11],[0,-3],[0,-12],[0,-3],[0,-8],[0,-4],[0,-6],[0,-10],[0,-18],[0,-3],[0,-12],[0,-10],[0,-24],[0,-19],[0,-13],[0,-13],[0,-6],[0,-10],[0,-6],[0,-9],[0,-6],[0,-10],[0,-10],[0,-24],[0,-7],[0,-4],[0,-7],[0,-4],[0,-3],[1,-7],[-1,-12],[0,-4],[0,-6],[0,-32],[0,-3],[0,-20],[0,-10],[0,-9],[0,-22],[-2,-1]],[[7569,2626],[-2,1],[-2,0],[-31,0],[-13,0],[-13,0],[-38,0],[-5,0],[-10,0],[-3,0],[-10,0],[-3,0],[-4,0],[-6,0],[-2,0],[-5,0],[-6,0],[-17,0],[-19,0],[-8,0],[-14,0],[-13,0],[-15,1],[-3,0],[-20,0],[-2,0],[-10,0],[-2,-1],[-9,0],[-1,0],[-2,1],[-3,0],[-14,0],[-2,0],[-58,0]],[[7204,2628],[0,7],[0,35],[0,44],[0,8],[0,21],[0,14],[0,4],[0,9],[0,10],[0,18],[0,38],[0,18],[0,32],[-10,0],[-10,0],[-1,0],[-4,0],[-4,0],[-2,0],[-2,-1],[-5,0],[-3,0],[-11,0],[-4,0],[-6,0],[-6,0],[-5,0],[-7,1],[-1,0],[-1,0],[-3,0],[-3,0],[-3,0],[-11,0],[-2,0],[-17,-1],[-2,0],[0,6],[0,11],[0,2],[0,17],[0,7],[0,5],[0,38],[0,9],[0,13],[0,12],[0,9]],[[7081,3014],[0,19],[0,24],[0,9],[0,11],[0,3],[0,20],[0,11],[0,15],[0,17],[0,36],[0,7],[0,3],[0,36],[0,4],[0,6],[0,10],[0,27],[0,24],[0,13],[0,5],[0,35],[0,7],[0,5],[0,21],[0,12],[0,7],[0,15],[0,27],[0,42],[0,1],[0,3],[0,3],[0,16],[0,7],[0,3],[0,11],[0,5],[0,4],[0,11],[0,23],[0,3],[0,39],[0,19],[0,8],[0,16]],[[4549,3018],[0,-6],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,-3],[1,-3],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[1,-4],[1,-4],[0,-1],[1,-3],[0,-1],[1,-2],[2,-3],[1,0],[4,-1],[2,-1],[2,-2],[2,-3],[0,-1],[1,-4],[0,-3],[1,-4],[0,-4],[-1,-4],[-1,-5],[-1,-2],[-3,-2],[-2,1],[-2,3],[-1,2],[-2,-1],[-1,-1],[0,-1],[-1,-2],[0,-3],[0,-3],[2,-2],[2,-1],[1,-2],[1,-1],[1,-2],[1,-3],[0,-3],[0,-6],[0,-4],[0,-3],[1,-3],[1,-3],[0,-4],[0,-5],[1,-3],[0,-1],[0,-6],[0,-3],[0,-3],[-1,-4],[-2,-4],[-2,-3],[-2,-1],[-3,-1],[-4,-1],[-1,1],[-2,2],[-1,2],[-1,4],[0,2],[0,1],[0,2],[0,2],[-1,4],[-1,1],[-2,-1],[-1,-1],[-1,-3],[-2,-2],[-1,0],[-2,-1],[-1,2],[-2,0],[-2,-1],[-1,-2],[-3,-2],[-1,-2],[-3,-2],[-2,-1],[-2,-5],[0,-3],[-1,-3],[0,-4],[-1,-2],[-2,0],[-1,1],[-4,4],[0,4],[-1,2],[-1,2],[-1,2],[0,3],[0,5],[1,3],[-2,1],[-2,0],[-3,1],[-3,0],[-1,0],[-4,-2],[-2,-2],[-3,-3],[-1,0],[-2,-2],[-4,-4],[-1,-1],[-3,-1],[-2,0],[-3,1],[-5,-14],[-3,-9],[0,-1],[-2,-4],[-2,-10],[0,-2],[-1,-8],[-1,-2],[0,-2],[-1,-4],[-2,-7],[-1,-2],[0,-1],[-1,-2],[-3,-4],[-1,-2],[-2,-1],[0,-2],[-1,-1],[0,-4],[1,-2],[0,-2],[1,-4],[1,-1],[1,-2],[1,-3],[1,-2],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[0,-2],[0,-2],[1,-1],[2,-4],[0,-1],[1,-1],[1,0],[4,4],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[0,-1],[-1,-1],[0,-2],[-1,-2],[-2,0],[-1,-1],[-1,-2],[-1,0],[-1,-3],[0,-3],[-1,-4],[0,-3],[0,-1],[0,-1],[-1,0],[-11,3],[-1,0],[-1,1],[0,1],[-2,5],[-1,4],[-1,1],[-1,1],[-1,0],[0,-1],[-1,-1],[0,-4],[-1,-2],[0,-2],[0,-3],[0,-2],[0,-3],[0,-7],[0,-6],[0,-5],[-1,-6],[0,-1],[-2,-4],[-1,-2],[0,-1],[-1,-2],[-1,-4],[0,-4],[-1,-3],[-1,-3],[0,-1],[0,-2],[-1,-3],[-1,-3],[-1,-4],[0,-5],[-1,-1],[0,-2],[-1,-5],[0,-3],[0,-4],[0,-3],[0,-5],[0,-6],[1,-2],[-1,-4],[0,-4],[-1,-4],[-1,-2],[-2,-3],[-1,0],[0,-1],[-1,-2],[-1,-1],[-2,-3],[0,-4],[-1,-2],[0,-1],[-1,-3],[-1,0],[-1,0],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-5],[1,-3],[1,-6],[0,-1],[0,-3],[0,-2],[-1,-3],[-2,-6],[-1,-1],[-1,-4],[1,-4],[1,-2],[2,-3],[1,-1],[2,2],[1,4],[0,3],[0,9],[2,0],[1,-1],[0,-4],[0,-2],[0,-1],[0,-1],[0,-6],[-1,-3],[0,-3],[-1,-4],[0,-7],[0,-6],[-1,-1],[-1,-9],[-1,-4],[-1,-3],[-1,-3],[0,-4],[1,-2],[1,-1],[2,-1],[2,-1],[2,-2],[1,-3],[1,-4],[0,-3],[-1,-5],[-2,-2],[-1,-1],[-4,-1],[-4,-1],[-1,-3],[0,-3],[-2,-1],[-2,2],[-2,-2],[0,-4],[-1,-6],[0,-3],[0,-1],[0,-7],[-1,-9],[0,-5],[0,-3],[2,-9],[1,-5],[2,0],[2,0],[1,0],[1,-2],[0,-3],[0,-1],[0,-5],[1,-5],[0,-4],[1,0],[0,-5],[-1,-4],[-2,-7],[-2,-4],[-2,-2],[-2,1],[-1,1],[-1,3],[-1,5],[1,5],[-2,6],[-2,6],[-2,0],[-2,-2],[0,-4],[-1,-4],[0,-1],[1,-3],[0,-9],[0,-5],[1,-6],[0,-5],[0,-4],[1,-4],[0,-6],[1,-6],[0,-4],[0,-5],[-1,-5],[0,-2],[0,-3],[1,-4],[1,-2],[1,0],[2,0],[2,3],[1,1],[1,0],[1,-1],[1,0],[0,-4],[0,-3],[0,-4],[-1,-6],[0,-5],[-1,-2],[0,-2],[-2,-6],[0,-3],[1,-5],[2,-2],[1,0],[2,0],[2,0],[1,2],[1,2],[2,1],[1,2],[1,2],[1,2],[2,5],[0,5],[2,2],[1,-1],[2,-1],[0,-1],[2,-3],[0,-3],[1,-3],[0,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-2,-3],[-1,-5],[-1,-1],[-1,-4],[-2,-3],[-2,-3],[-1,-4],[0,-3],[0,-1],[0,-4],[0,-1],[2,-3],[2,-2],[2,0],[2,2],[4,2],[2,0],[1,-1],[3,-6],[2,-4],[1,-4],[0,-1],[0,-5],[0,-3],[0,-4],[1,-7],[2,-5],[1,-2],[1,-2],[2,-2],[2,-1],[1,-3],[0,-3],[1,-5],[1,-9],[0,-2],[0,-2],[0,-2],[0,-6],[-1,-3],[0,-2],[0,-3],[-1,-3],[0,-1],[-1,-3],[-1,-3],[-1,-2],[0,-1],[-2,-2],[0,-1],[-2,-1],[-2,-1],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-3,-1],[0,-1],[-1,-2]],[[4423,2129],[-2,9],[-2,3],[-3,2],[-3,-1],[-3,-4],[-6,-6],[-3,0],[-3,3],[-2,6],[1,6],[0,4],[1,4],[4,8],[1,3],[-1,5],[-4,4],[-2,3],[-1,6],[-1,7],[-1,4],[-1,8],[2,7],[-1,4],[0,1],[-1,2],[-3,-4],[-5,-5],[-2,2],[-1,1],[0,2],[-1,4],[0,3],[1,4],[1,2],[3,3],[1,3],[-1,4],[-4,5],[-2,3],[-3,-2],[-4,-8],[-1,0],[-4,1],[0,2],[0,10],[0,1],[-2,3],[-5,2],[-6,6],[-2,4],[-1,0],[0,1],[0,2],[0,1],[-3,4],[0,5],[1,2],[5,1],[1,1],[2,0],[1,0],[3,0],[0,1],[1,0],[1,1],[1,2],[3,8],[-1,3],[-2,3],[0,1],[0,2],[0,1],[0,9],[0,5],[1,2],[0,2],[0,2],[0,2],[-1,1],[0,1],[-3,5],[-3,0],[-1,-2],[-1,-3],[-1,-4],[-4,-4],[-5,-3],[-4,2],[-2,4],[-1,3],[0,4],[0,9],[0,2],[-1,6],[-1,3],[-1,3],[0,1],[-1,1],[-1,2],[-1,2],[-1,0],[0,1],[-1,1],[-1,0],[-2,1],[-3,1],[-1,-1],[-2,-1],[-2,-2],[-1,-2],[-7,-7],[-3,-3],[-1,-1],[-2,-1],[-3,-1],[-2,1],[-1,2],[-1,3],[-1,7],[-1,5],[-1,6],[0,1],[-1,6],[-2,3],[-1,3],[-2,6],[-2,4],[-6,6],[-3,1],[0,1],[0,1],[-1,0],[-1,2],[-4,4],[-1,0],[-2,4],[0,1],[0,1],[-4,6],[-4,5],[-2,4],[-7,13],[0,2],[0,2],[0,6],[0,5],[0,1],[0,2],[1,2],[0,1],[1,1],[0,2],[0,3],[-1,7],[-3,6],[-2,3],[-2,0],[-5,2],[-2,4],[-2,1],[-3,1],[-2,0],[-2,0],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[0,-1],[-1,-2],[-9,-27],[-7,-15],[-1,-13],[0,-7],[1,-6],[2,-2],[0,-1],[1,0],[-1,-7],[0,-7],[-4,-8],[0,-4],[0,-5],[0,-3],[0,-8],[1,-3],[0,-1],[4,-4],[2,-3],[3,-6],[1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[-2,-4],[-3,-7],[-1,-4],[0,-5],[-2,-7],[0,-3],[-1,-3],[-1,-3],[0,-21],[0,-9],[-1,-6],[0,-1],[1,-1],[0,-2],[0,-3],[0,-4],[-1,-5],[0,-5],[-1,-4],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[-3,2],[-1,0],[-1,3],[-4,4],[-1,2],[-2,2],[-1,1],[-4,5],[-1,1],[0,1],[-1,1],[0,5],[0,2],[-1,3],[-2,4],[0,1],[-1,0],[-1,-1],[-2,-1],[-1,-2],[-1,-5],[-1,-6],[0,-3],[-1,-3],[1,-4],[0,-2],[1,-3],[0,-2],[3,-5],[0,-3],[1,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-4,-2],[-2,0],[-2,2],[-1,0],[-1,1],[-3,2],[-1,2],[-1,2],[-1,1],[0,2],[0,1],[-2,4],[-1,3],[0,1],[-1,3],[-1,6],[-4,13],[-1,2],[-1,0],[0,2],[0,2],[-1,2],[-2,4],[-1,1],[-1,0],[0,-1],[-1,-7],[0,-4],[0,-2],[1,-6],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,4],[-1,5],[0,2],[1,4],[0,2],[0,3],[-1,9],[0,2],[-2,8],[-2,5],[-1,1],[0,1],[-1,0],[-6,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,2],[-2,-1],[-2,2],[-2,0],[-7,3],[-3,3],[-1,2],[-1,2],[0,1],[-1,4],[-2,7],[0,1],[-4,9],[-2,4],[-1,1],[0,1],[-1,0],[-2,-1],[-1,0],[-3,0],[-1,0],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[-1,1],[0,1],[-1,2],[-3,2],[-1,2],[-1,0],[0,1],[-3,0],[-1,-1],[-2,-2],[0,-1],[-1,0],[-1,-1],[-2,-2],[-5,-2],[-2,0],[-3,1],[-5,3],[-4,1],[-3,0],[-4,-1],[-1,0],[-3,0],[-1,1],[-7,5],[-1,1],[-1,1],[-1,1],[0,1],[-2,2],[-4,2],[-1,1],[-2,1],[-1,0],[-2,1],[-1,0],[-3,-1],[-1,0],[-1,0],[-3,-1],[-3,-3],[-1,-1],[0,-1],[0,-1],[-3,-18],[-1,-2],[-1,-3],[0,-1],[0,-4],[1,-4],[0,-4],[-1,-5],[-1,-11],[0,-2],[0,-1],[1,-5],[0,-1],[0,-2],[0,-1],[0,-6],[0,-3],[-1,-6],[-1,-5],[0,-2],[-1,-2],[-1,-2],[-1,0],[-1,-2],[-1,-2],[-2,-2],[0,-2],[-1,-1],[-2,-6],[-1,-4],[-1,0],[0,-5],[-4,-7],[-2,1],[-2,2],[-3,2],[-1,1],[-3,0],[-2,-4],[-1,0],[-2,0],[-3,0],[-4,-3],[-2,-2],[-1,-1],[-2,0],[-3,2],[-3,4],[-2,1],[0,1],[0,3],[-2,3],[-1,2],[-2,1],[-2,1],[-2,0],[-1,1],[-2,3],[-2,2],[-2,0],[-1,2],[-1,1],[-2,-1],[-1,-2],[-1,-4],[-2,-5],[-1,-3],[-2,-3],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-3,-1],[-1,0],[-2,0],[-1,1],[-1,2],[-3,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-2,2],[-4,2],[-2,2],[-3,0],[-2,0],[-2,-1],[-1,-1],[-2,-2],[-1,0],[-3,-1],[-1,0],[-4,0],[-1,0],[0,1],[0,2],[-1,0],[0,4],[0,1],[-1,1],[-2,5],[-2,5],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-4,5],[0,1],[-1,0],[-1,2],[-3,6],[0,1],[-1,2],[-1,2],[0,1],[0,2],[0,1],[-1,2],[0,2],[0,1],[0,1],[1,4],[0,2],[-1,5],[0,3],[0,1],[0,1],[-1,3],[0,1],[-1,1],[-3,8],[-1,1],[0,1],[-1,1],[0,1],[-5,5],[-6,8],[-3,2],[-2,1],[-1,1],[-3,3],[-1,0],[-2,3],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-6,7],[-2,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-2,4],[-1,3],[-1,1],[-1,4],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-3,3],[-1,1],[-3,4],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,3],[1,2],[1,3],[1,2],[0,4],[0,2],[-1,1],[-1,1],[-2,3],[-3,4],[-2,3],[-1,2],[0,1],[-1,3],[-2,3],[-1,0],[-3,0],[-2,0],[-2,0],[0,1],[-2,3],[0,8],[-1,6],[-1,0],[-1,2],[-1,2],[0,1],[-9,12],[-1,4],[-1,0],[0,1],[0,1],[0,1],[-2,5],[-3,6],[0,1],[0,4],[-2,5],[0,1],[-3,8],[-2,5],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,2],[-1,2],[0,1],[-2,4],[-1,3],[0,1],[-1,5],[-1,8],[-1,3],[0,2],[-1,1],[0,1],[-1,3],[0,1],[0,1],[1,2],[1,11],[0,1],[0,1],[0,1],[0,3],[-1,0],[0,1],[-2,9],[0,1],[0,1],[-3,6],[-1,1],[-2,-1],[-2,0],[-1,2],[-3,2],[-1,0],[-1,1],[-1,2],[-1,1],[-1,3],[-1,1],[-1,1],[-6,8],[-2,2],[-1,2]],[[5732,3146],[-2,0],[-2,0],[-2,0],[-2,0],[-7,0],[-8,0],[-5,0],[-2,0],[-1,0],[-5,-1],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-8,0],[-6,0],[0,-12],[0,-6],[0,-7],[0,-6],[0,-11],[0,-4],[0,-10],[0,-11],[0,-3],[0,-4],[0,-3],[0,-4],[0,-4],[0,-6],[0,-9],[0,-17],[0,-7],[0,-5],[0,-6],[0,-9],[0,-19],[0,-4],[0,-4],[0,-8],[0,-7],[0,-8],[0,-10],[0,-10],[0,-4],[0,-28],[0,-5],[0,-6],[0,-5],[0,-9],[0,-6],[0,-11],[0,-4],[0,-8],[0,-11],[0,-5],[0,-4],[0,-12],[0,-5],[0,-5],[0,-12],[0,-7],[0,-4],[0,-11],[0,-7],[0,-3],[0,-19],[0,-4],[0,-3],[0,-4],[0,-7],[0,-7],[0,-15],[0,-8],[0,-6],[0,-12],[0,-5],[0,-12],[0,-5],[0,-4],[0,-3],[0,-9],[0,-5]],[[5670,2631],[-5,0],[-7,0],[-5,0],[-4,0],[-4,0],[-4,0],[-7,0],[-5,0],[-2,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-4,0],[-1,0],[-2,0],[-4,0],[-1,0],[-8,0],[-4,0],[-2,0],[-6,1],[-3,0],[-3,-1],[-1,0],[-2,1],[-3,0],[-5,0],[-1,0],[-5,0],[-3,0],[-1,0],[-2,0],[0,-8],[0,-4],[0,-4],[0,-5],[0,-5],[0,-13],[0,-6],[0,-14],[0,-4],[0,-9],[0,-3],[0,-5],[0,-4],[0,-2],[0,-21],[0,-22],[-6,0],[-2,0],[-2,0],[-5,0],[-2,0],[-3,0],[-2,0],[-1,0],[-3,0],[-7,0],[-8,0],[-1,0],[-6,0],[-5,0],[-1,0],[-7,0],[0,-6],[0,-3],[0,-4],[0,-4],[0,-21],[0,-5],[-7,0],[-5,0],[-3,0],[-1,0],[-3,0],[-1,0],[-4,0],[-1,0],[-2,0],[-3,0],[-3,0],[-2,0],[-3,0],[-2,0],[-6,0],[-2,0],[-1,0],[-1,0],[-3,0],[-5,0],[-3,0],[-2,0],[-4,0],[-13,0],[-2,0],[-7,0],[-3,0],[-3,0],[-2,0],[-1,0],[-3,0],[-6,0],[-2,0],[-7,-1],[-2,0],[-3,0],[-1,0],[-10,1],[-2,0],[-5,0],[-3,0],[-13,0],[-7,0],[-4,0],[-17,0],[-9,0],[-2,0],[-3,0],[-2,0],[-3,0],[-1,0],[-2,0],[-3,0],[-2,0],[-3,1],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-4,0],[-2,0],[-3,0],[-3,0],[-2,0],[0,-35],[0,-4],[0,-6],[0,-6],[0,-10],[0,-8],[0,-5],[0,-4],[0,-7],[-2,0],[-13,0],[-7,0],[-4,0],[-14,0],[-5,0],[-5,0],[-12,0],[-2,0],[-8,0],[-2,0],[-4,0],[-2,0],[-2,0],[-3,0],[-2,0],[-15,0],[-5,0],[-1,0],[-2,0],[-11,0],[-1,0],[0,-20],[0,-5],[0,-4],[0,-14],[-6,0],[-5,0],[-2,0],[-5,1],[-3,0],[-8,-1],[-9,0],[-2,0],[-1,0],[-4,0],[-2,0],[-2,0],[-1,0],[-12,0]],[[5063,2333],[0,11],[0,3],[0,7],[0,10],[0,11],[0,3],[0,3],[0,1],[0,3],[0,6],[0,5],[0,5],[0,7],[0,10],[0,11],[0,24],[0,4],[0,4],[0,9],[0,3],[0,4],[0,4],[0,3],[0,20],[0,44],[0,3],[0,4],[0,4],[0,3],[0,7],[0,14],[0,6],[0,4],[0,7],[0,6],[0,5],[0,11],[0,6],[0,5],[-2,0],[-5,0],[-1,0],[-5,0],[-2,0],[-5,0],[-3,0],[-4,0],[-3,0],[-3,0],[-4,0],[-4,0],[-7,0],[-1,0],[-3,0],[-2,0],[-5,0],[-1,0],[-4,0],[-4,0],[-2,0],[-5,0],[-3,0],[-1,0],[-3,0],[-3,0],[-5,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-5,0],[-4,0],[-1,0],[-3,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-7,0],[-3,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-9,0],[-2,0],[-5,-1],[-2,1],[-10,0],[-2,0],[-1,-1],[-5,0],[-3,0],[0,2],[0,6],[0,8],[0,11],[0,16],[0,18],[0,4],[0,11],[0,13],[0,11],[0,3],[0,4],[0,4],[0,12],[0,6],[0,34],[0,9],[0,17],[0,4],[0,8],[0,13],[0,5],[0,3],[0,4],[0,5],[0,4],[0,10],[0,4],[0,4],[0,4]],[[7081,3014],[-10,0],[-10,0],[-4,0],[-6,0],[-2,0],[-9,0],[-1,0],[-5,0],[-4,0],[-4,0],[-13,0],[-7,0],[-4,0],[-3,1],[-5,0],[-15,0],[-1,0],[-5,0],[-7,0],[-5,0],[-2,0],[-10,0],[-11,0],[-5,0],[-7,0],[-8,0],[-18,0],[-4,0],[-3,0],[-3,0],[-7,0],[-6,0],[-16,0],[-5,0],[-14,0],[-5,0],[-1,0],[0,-3],[0,-4],[0,-3],[0,-25],[0,-7],[-7,0],[-4,0],[-5,0],[-4,0],[-3,0],[-4,0],[-3,0],[-6,0],[-5,0],[-20,0],[-5,0],[1,-3],[2,-4],[0,-1],[1,-6],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[0,-3],[1,-2],[0,-3],[1,-6],[1,-2],[0,-1],[2,-1],[1,-1],[2,-1],[1,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-2,-4],[-1,-2],[0,-2],[0,-3],[2,-10],[1,-2],[1,-1],[7,-3],[1,0],[2,0],[2,1],[1,0],[3,0],[2,-1],[2,-2],[1,-2],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-3],[1,-1],[2,-3],[1,-3],[0,-1],[0,-3],[0,-1],[-1,-2],[-2,0],[-1,1],[-2,2],[-1,0],[-1,-1],[0,-1],[0,-3],[2,-14],[0,-2],[1,-1],[0,-1],[0,-2],[2,-2],[0,-2],[1,-1],[1,-2],[1,0],[1,-1],[2,0],[1,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-3],[-1,0],[-1,0],[-2,2],[0,1],[-1,0],[-3,3],[-1,0],[-2,-2],[0,-2],[0,-2],[-1,-3],[0,-2],[0,-1],[3,-15],[0,-1],[1,-1],[1,-2],[1,-1],[1,0],[0,-1],[2,0],[2,0],[3,0],[3,2],[3,1],[1,0],[1,-1],[0,-1],[0,-2],[-1,-2],[-1,-1],[-2,-2],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[0,-3],[4,-8],[0,-1],[3,-6],[1,-3],[0,-3],[0,-1],[-2,-5],[-1,0],[-1,-1],[-1,-1],[-1,-2],[0,-4],[0,-7],[3,-19],[0,-1],[0,-2],[0,-5],[0,-2],[-1,-2],[0,-2],[-1,0],[-1,0],[-2,-2],[-1,0],[0,-1],[1,-3],[0,-2],[1,0],[2,0],[1,0],[2,-3],[1,-6],[0,-7],[0,-1],[0,-4],[1,-1],[1,-3],[2,-1],[1,0],[2,-1],[1,0],[3,1],[4,3],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-4],[-2,-1],[-3,0],[-1,0],[-1,0],[-1,-1],[-1,-3],[0,-2],[1,-3],[1,-4],[1,-2],[1,-2],[1,-1],[1,-2],[1,-1],[3,-3],[0,-1],[1,-3],[0,-3],[-1,-4],[-5,0],[-2,0],[-7,0],[-4,0],[-2,0],[-10,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-7,0],[-1,0],[-2,0],[-5,0],[-5,0],[-5,0],[-7,0],[-7,0],[-6,1],[-5,0],[-1,0],[-10,0],[-5,0],[-15,0],[-4,0],[-5,0],[-9,0],[-3,0],[-3,0],[-11,0],[-4,0],[-2,0],[-3,0],[-18,0],[-9,0],[-5,0],[-6,0],[-2,0],[-2,0],[-5,-1],[-12,0],[-7,1],[-4,0],[-4,0],[-3,0],[-2,0]],[[6591,2631],[-3,0],[-4,0],[-3,0],[-10,-1],[-7,0],[-9,1],[-3,-1],[-2,0],[-20,1],[-6,0],[-14,-1],[-7,0],[-9,0],[-2,1],[-5,0],[-4,0],[-4,0],[-10,-1],[-13,1],[-11,0],[-7,0],[-11,0],[-8,0],[-2,0],[-9,0],[-9,0],[-3,0],[-2,0],[-1,0],[-6,0],[-2,0],[-5,0],[-1,0],[-5,0],[-3,0],[-4,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-9,0]],[[6346,2631],[0,12],[-1,5],[0,4],[0,5],[0,1],[0,9],[0,7],[0,16],[0,5],[0,11],[0,11],[1,29],[0,15],[0,6],[0,2],[0,2],[0,18],[0,15],[0,15],[0,6],[0,20],[0,8],[0,30],[0,6],[0,47],[0,17],[0,12],[0,9],[0,6],[0,19],[0,7],[0,3],[-1,10],[0,5],[1,11],[0,7],[0,4],[-1,19],[1,10],[0,21],[0,14],[0,25],[0,10],[-16,1],[-20,0],[-1,0],[-1,0],[-3,0],[-6,0],[-15,0],[-11,0],[-5,0],[-5,0],[-2,-1],[-2,1],[-9,0],[-7,0],[-14,0],[-7,0]],[[8061,3144],[0,-4],[0,-17],[0,-21],[0,-23],[1,-16],[-1,-7],[0,-29],[0,-17],[0,-17],[0,-13],[0,-11],[0,-7],[0,-3],[0,-6],[0,-7],[0,-3],[0,-7],[0,-6],[0,-11],[0,-12],[0,-21],[0,-11],[0,-11],[0,-21],[0,-9],[0,-13],[0,-64],[0,-15],[0,-18],[0,-10],[0,-1],[0,-57],[1,-15],[0,-12],[-3,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-4,0],[-15,0],[-5,0],[-4,0],[-3,0],[-6,0],[-12,0],[-2,0],[-1,-18],[0,-26],[0,-9],[0,-45],[0,-33],[0,-21],[0,-21],[0,-22],[0,-6],[0,-47],[0,-3],[0,-8],[-3,1],[-4,-1],[-9,0],[-2,0],[-12,0],[-20,0],[-6,0],[-10,0],[-18,-1],[-6,1],[-12,0],[-14,0],[-4,0],[-2,0],[-3,0],[-9,0],[-5,0],[-1,0],[-13,0],[-30,0],[-4,0],[-2,0],[-15,0],[-4,0],[-15,0],[-11,-1],[-1,0],[-9,1],[-3,0],[-1,0],[-6,0],[-1,0],[-10,0],[-3,0],[-4,0],[-2,0],[-6,0],[-15,0],[-6,0],[-4,0]],[[7694,2370],[-20,0],[-1,0],[-4,0],[-1,0],[-11,0],[-4,0],[-12,0],[-1,2],[0,1],[-1,0],[-8,0],[-6,0],[-3,0],[-4,0],[-1,0],[-4,0],[-2,0],[-4,0],[-7,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-1,0],[-5,0],[-7,0],[-4,0],[0,15],[0,79],[0,35],[0,37],[0,38],[0,29],[0,6],[0,14]],[[6346,2631],[0,-19],[0,-11],[0,-11],[0,-20],[0,-3],[0,-5],[0,-7],[0,-4],[0,-5],[0,-1],[0,-12],[0,-9],[0,-10],[0,-12],[0,-19],[0,-24],[0,-4],[0,-6],[0,-4],[0,-10],[0,-19],[0,-7],[0,-13],[0,-4],[0,-15],[0,-5],[0,-22],[0,-9],[0,-5],[0,-5],[0,-17],[0,-5],[0,-15],[0,-32],[0,-4],[0,-13],[0,-3],[0,-8],[0,-6],[0,-21],[0,-5],[0,-9],[0,-4],[0,-73],[0,-5],[0,-37],[0,-7],[0,-15],[0,-12],[0,-8],[0,-44]],[[6346,1988],[-3,0],[-2,0],[-4,0],[-3,0],[-3,0],[-6,0],[-9,0],[-7,0],[-4,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-2,0],[-4,0],[-3,0],[-2,0],[-8,0],[-3,0],[-3,0],[-2,0],[-3,0],[-7,0],[-6,0],[-16,0],[-17,0],[-3,0],[-9,0],[-3,0],[-11,0],[-4,0],[-4,0],[-5,0],[-22,0],[-1,0],[-6,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-6,0],[-5,0],[-21,0],[-5,0],[-7,0],[-7,0],[-4,0],[-22,0],[-6,0],[-1,0],[-4,0],[-18,0],[-18,0],[-5,0],[-5,0],[-16,0],[-2,0],[-2,0],[-21,0],[-1,0],[-5,0],[-7,0],[-8,0],[-1,0],[-2,0],[-10,0],[-6,0],[-21,0],[-7,0],[-2,0],[-2,0],[-1,0],[-1,0],[-7,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-3,0],[-3,0],[-6,0],[-3,0],[-3,0],[-2,0],[-6,0],[-1,0],[-2,0],[-2,0],[-1,1],[-4,0],[-3,0],[-1,0],[-2,0],[-9,0],[-7,0],[-3,0],[-6,0],[-3,0],[-2,0],[-20,0],[-2,0],[-6,1],[-1,0],[-3,0],[-6,0],[-1,0],[-20,1],[-1,0],[-2,0],[-1,0],[-7,0],[-1,0],[-3,0],[-3,0],[-2,0],[-2,0],[-7,-1],[-3,1],[-1,0],[-8,0],[-4,0],[-2,0],[-3,-1],[-2,0],[-9,0],[-3,0]],[[5673,1990],[0,15],[0,6],[0,11],[0,5],[0,27],[0,12],[0,4],[0,4],[0,1],[0,27],[0,17],[0,20],[0,3],[0,1],[0,19],[0,42],[0,7],[1,14],[0,17],[0,5],[0,20],[0,12],[0,10],[0,17],[0,5],[0,9],[0,12],[0,43],[-1,42],[0,44],[0,42],[0,44],[0,42],[0,22],[0,20],[-3,0]],[[8551,2888],[0,-19],[0,-23],[0,-7],[0,-4],[0,-4],[0,-11],[0,-18],[0,-34],[0,-16],[0,-13],[1,-43],[0,-18],[0,-25],[0,-2],[0,-20],[-3,0],[-6,0],[-15,0],[-17,0],[-1,0],[-2,0],[-9,0],[-10,0],[-2,0],[-2,0],[-4,0],[-21,0],[-1,-1],[-2,0],[-31,-1],[1,-18],[0,-7],[0,-32],[0,-26],[-1,-4],[0,-28],[0,-10],[0,-7],[0,-31],[0,-96],[0,-3],[0,-20],[0,-27],[0,-18],[0,-47],[0,-13],[0,-42],[0,-102],[0,-28],[0,-6],[0,-6],[0,-32],[0,-6],[0,-5],[0,-3],[0,-3],[1,-16],[-1,-5],[0,-4],[0,-4],[0,-41],[0,-7],[0,-5],[0,-30],[0,-15],[0,-4],[0,-5],[0,-6],[0,-5],[0,-8],[0,-3],[0,-4],[0,-4],[0,-25],[0,-4],[0,-7],[0,-4],[0,-8],[0,-7],[0,-4],[0,-10],[1,-24],[0,-26],[0,-11],[0,-10],[0,-8],[0,-98]],[[8427,1597],[-21,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-3,0],[-1,0],[-2,0],[-4,0],[-1,0],[-3,0],[-3,0],[-2,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-5,0],[-4,0],[-5,0],[-9,0],[-12,0],[-6,0],[-9,0],[-5,0],[-2,0],[-9,0],[-12,0],[-13,0],[-9,0],[-5,0],[-12,0],[-5,0],[-3,0],[-2,0],[-14,0],[-7,0],[-25,0],[-13,0],[-4,0]],[[8179,1597],[-9,0],[-1,0],[-1,0],[-11,1],[-4,1],[-27,1],[-2,-1],[-16,0],[-19,-1],[-3,0],[-7,1],[-4,-1],[-5,-1],[-1,1],[-13,0],[-7,0],[-8,0],[-17,0],[-1,0],[-5,0],[-14,0],[-4,0],[-1,-1],[-1,1],[-1,0],[-14,0],[-24,0],[-2,0],[-3,0],[-2,0],[-30,0],[-1,0],[-10,0],[-3,0],[-8,0],[-4,0],[-10,0],[-5,0],[-2,0],[-2,1],[-1,0],[-2,0],[-4,0],[-2,0],[-2,0],[-10,0],[-14,0],[-7,0],[-1,0],[-1,0],[-5,0],[-11,-1],[-2,0],[-4,0],[-4,0],[-1,0],[-1,0],[-10,0],[-1,0],[-4,0],[-3,0],[-4,0],[-10,0],[-4,0],[-5,0],[-9,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-4,0],[-2,0],[-4,0],[-3,0],[-14,1],[-2,0],[-22,0]],[[7693,1599],[0,27],[0,10],[0,44],[0,4],[0,23],[0,40],[0,4],[0,19],[1,43],[0,3],[0,40],[0,17],[0,26],[0,5],[0,37],[0,44],[0,34],[0,8],[0,23],[0,9],[0,11],[0,51],[0,35],[0,53],[0,32],[0,1],[0,4],[0,16],[0,16],[0,3],[0,3],[0,22],[0,5],[0,1],[0,15],[0,15],[0,27],[0,1]],[[9408,2631],[-2,0],[-1,-1],[-2,0],[-2,1],[-27,1],[-27,-1],[-2,0],[-10,0],[-3,0],[-25,1],[-26,0],[0,-21],[0,-10],[0,-39],[0,-18],[0,-2],[0,-25],[0,-36],[0,-17],[0,-37],[0,-4],[0,-19],[0,-27],[0,-5],[0,-5],[0,-8],[0,-8],[0,-15],[0,-16],[0,-17],[0,-18],[0,-19],[0,-24],[0,-4],[0,-19],[0,-11],[0,-12],[0,-6],[0,-40],[0,-2],[0,-37],[0,-12],[0,-20],[0,-24],[0,-30],[0,-11],[0,-32],[0,-39],[0,-4],[0,-26],[0,-28],[0,-6],[0,-6],[0,-12],[0,-7],[-16,0],[-26,0],[-9,0],[-12,0],[-10,0],[-3,0],[-2,0],[-5,0],[-2,0],[-5,1],[-2,0],[-4,0],[-4,0],[-3,0],[-1,0],[-18,-1],[0,-5],[0,-4],[0,-15],[0,-7],[0,-10],[0,-5],[0,-8],[0,-30],[0,-32],[0,-5],[0,-3],[0,-4],[0,-10],[0,-32],[0,-10],[0,-32],[0,-44],[-2,0],[-4,0]],[[9153,1598],[-3,0],[-4,0],[-5,0],[-2,0],[-3,0],[-2,0],[-4,0],[-2,0],[-3,0],[-1,0],[-3,0],[-3,0],[-1,0],[-3,0],[-2,0],[-2,0],[-3,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-3,0],[-3,0],[-2,0],[-4,0],[-2,0],[-3,0],[-3,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-4,0],[-2,0],[-1,0],[-2,0],[-3,0],[-3,0],[-3,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-4,0],[-1,0],[-2,0],[-1,0],[-61,0],[-4,0],[-4,0],[-11,0],[-2,0],[-2,0],[-1,0],[0,-1],[-4,0],[-2,0],[-6,0],[-5,0],[-3,1],[-3,0],[-2,-1],[-1,0],[-1,1],[-3,-1],[-4,1],[-1,-1],[-2,0],[-4,1],[-10,0],[-14,0],[-9,0],[-3,0],[-3,-1],[-1,1],[-7,-1],[-3,0],[-7,0],[-8,0],[-2,0],[-1,0],[-1,0],[-19,0],[-7,0],[-5,0],[-6,0],[-1,0],[-2,0],[-2,0],[-5,0],[-4,0],[-2,0],[-1,0],[-14,0],[-2,0],[-3,0],[-4,0],[-4,0],[-2,0],[-10,0],[-2,0],[-5,0],[-7,0],[-2,0],[-5,0],[-5,0],[-2,0],[-7,0],[-4,1],[-2,-1],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-6,0],[-2,0],[-4,0],[-9,1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-2,0],[-3,0],[-3,0],[-1,0],[-2,0],[-3,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-1,0],[-15,0],[-1,0],[-4,0],[-2,0],[-4,0],[-4,0],[-2,0],[-2,0],[-2,0],[-3,0],[-2,0],[-3,0],[-2,0],[-1,0],[-3,0],[-2,0],[-2,0],[-3,0],[-14,0],[-14,0],[-19,0],[-2,0],[-1,0],[-1,0],[-14,0],[-9,0],[-5,0],[-29,0]],[[7204,2628],[-3,0],[-4,0],[-1,0],[-13,1],[-2,0],[-7,0],[-8,0],[-2,0],[-1,0],[-4,0],[-1,0],[-7,-1],[-10,0],[0,-38],[0,-34],[0,-12],[0,-16],[0,-21],[0,-6],[0,-14],[0,-8],[0,-28],[0,-12],[0,-1],[0,-12],[0,-5],[0,-6],[0,-20],[0,-51],[0,-14],[0,-5],[0,-4],[0,-3],[0,-18],[0,-7],[0,-5],[0,-3],[0,-11],[0,-9],[0,-20],[0,-3],[0,-81],[0,-5],[0,-6],[0,-33],[-8,0],[-10,0],[-2,0],[-2,0],[-11,0],[-5,0],[-23,-1]],[[7080,2116],[-21,0],[-1,0],[-20,0],[-4,0],[-32,0],[-4,-1],[-1,0],[-2,0],[-2,1],[-4,0],[-5,0],[-5,0],[-1,0],[-9,0],[-1,4],[-1,1],[-1,2],[-1,1],[-1,0],[-2,1],[-2,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,3],[-1,2],[-1,4],[-1,3],[0,7],[2,3],[2,3],[4,4],[4,6],[1,3],[1,3],[-1,3],[-2,3],[-1,2],[-1,4],[0,3],[1,4],[0,5],[-1,7],[-1,3],[-2,4],[-1,5],[0,4],[0,2],[1,1],[0,1],[3,5],[0,2],[1,2],[1,3],[-2,3],[-1,3],[-6,2],[-6,0],[-3,0],[-3,0],[-8,0],[-2,1],[-11,0],[-11,0],[-2,0],[-1,0],[-3,0],[-4,0],[-1,0],[-3,0],[-6,0],[-11,0],[-7,1],[-4,0],[-9,0],[-3,0],[-4,0],[-7,0],[-2,0],[-8,0],[-1,0],[-22,0],[-1,0],[-15,0],[-1,0],[-5,0],[-2,0],[-43,0],[-2,0],[-8,0],[-1,0],[-24,0],[-17,0],[-10,0],[-8,0],[-2,0],[-30,0],[-7,0],[-2,0],[-4,0],[-4,0],[-11,0],[-3,0],[-14,0],[-7,0],[0,64],[0,30],[0,69],[0,35],[0,7],[0,30],[0,69],[0,39],[0,13],[0,6],[0,4],[0,15],[0,5]],[[5063,2333],[0,-43],[0,-21],[1,-22],[0,-5],[0,-11],[0,-2],[0,-25],[0,-43],[0,-42],[9,0],[1,0],[10,0],[10,0],[5,0],[5,0],[2,0],[19,1],[0,-44],[0,-43],[0,-20],[0,-3],[0,-20],[0,-5],[0,-38],[0,-43],[0,-31],[0,-12],[0,-7],[0,-36],[-1,-43],[0,-19],[0,-16],[0,-8],[0,-2],[0,-19],[0,-21],[0,-43],[0,-26],[0,-4],[0,-18],[0,-1]],[[5124,1598],[-2,-1],[-3,-1],[-6,1],[-5,3],[-6,6],[-5,3],[-4,4],[-4,4],[-4,3],[-3,0],[-1,0],[-2,-1],[-4,-9],[-3,-6],[-5,-8],[-3,-5],[-5,-9],[-3,-4],[-3,-3],[-2,-5],[-1,-5],[-4,-10],[-4,-4],[-4,-6],[-2,-6],[0,-3],[-6,-9],[-2,2],[-3,-1],[-2,0],[-4,7],[-4,0],[-3,-2],[-3,-7],[-2,-4],[-3,0],[-1,2],[0,1],[-1,3],[0,4],[-1,1],[-1,3],[-3,1],[-4,-3],[-5,0],[-2,0],[-1,0],[-2,2],[-2,0],[-3,-3],[-2,-6],[0,-6],[-3,-12],[-2,-3],[-4,-1],[-2,0],[-3,-4],[-3,0],[-2,1],[-2,0],[-3,0],[-2,6],[0,4],[0,3],[-2,10],[0,1],[-1,3],[-4,8],[-8,6],[-5,3],[-2,0],[-6,9],[-2,5],[-4,6],[-1,1],[-1,-4],[-2,-3],[-1,-2],[-3,-2],[-2,1],[0,1],[-2,6],[0,1],[-1,6],[-6,18],[-2,4],[-4,6],[-4,3],[-2,-1],[-2,2],[-10,5],[-7,5],[-1,-1],[-1,-5],[-1,-5],[-4,-6],[-7,5],[-2,3],[-3,2],[-3,0],[-2,2],[-3,4],[-3,-2],[-1,-4],[0,-8],[-1,-5],[0,-9],[-1,-6],[-4,-3],[-3,0],[-3,1],[-1,2],[-5,10],[-2,6],[0,4],[2,6],[2,7],[0,6],[-1,7],[-2,4],[-2,1],[-4,-1],[-6,1],[-3,2],[-1,2],[-3,4],[0,1],[-2,4],[-4,5],[-1,2],[-7,5],[-4,3],[-5,2],[-1,3],[-5,7],[-5,4],[-3,8],[-3,7],[-1,5],[-2,6],[-1,4],[0,1],[-1,2],[-5,11],[-2,0],[-1,2],[0,1],[0,2],[-5,14],[-3,4],[-3,6],[-2,5],[-2,1],[-1,3],[-1,4],[-1,2],[-1,1],[-2,1],[-5,2],[-2,-1],[-2,-4],[-1,-4],[0,-13],[0,-2],[-1,-5],[-1,-3],[-3,-5],[-1,0],[-3,2],[-4,4],[-3,6],[0,1],[-1,3],[0,5],[-1,3],[-1,3],[-1,9],[-1,7],[-1,5],[0,1],[-1,1],[-2,4],[-4,5],[-2,1],[-3,0],[-2,-2],[-2,-3],[-3,-3],[-2,-2],[-3,-7],[-1,-1],[-2,-3],[0,-3],[0,-4],[1,-2],[2,-2],[0,-1],[-2,-4],[-1,-1],[-1,0],[-4,1],[-5,0],[-2,-2],[-3,-5],[-1,-2],[-3,-3],[-2,-1],[-3,0],[-4,2],[-3,2],[-4,2],[-2,1],[-1,-1],[-2,-7],[-3,-12],[-3,-5],[-4,-1],[-11,6],[-2,4],[-1,7],[0,1],[-1,0],[-1,3],[-5,8],[-4,2],[-5,5],[-3,3],[-3,1],[-4,-1],[-1,-1],[-2,-3],[-3,-4],[-4,0],[-3,5],[-1,3],[-2,1],[-2,-1],[-4,-7],[-2,-10],[-2,-1],[-3,-1],[-1,-3],[-2,1],[-2,0],[0,1],[1,3],[-1,1],[-3,0],[-2,-3],[-2,-3],[-1,-4],[-3,-2],[-3,1],[-3,2],[-3,2],[-4,7],[-1,7],[1,6],[2,7],[2,4],[2,4],[-2,8],[-2,3],[-5,2],[-5,-1],[-2,-6],[-2,-2],[-1,-4],[-2,-2],[0,-4],[-4,-10],[-3,-5],[-4,-3],[-4,0],[-3,5],[-2,1],[-3,-1],[-3,2],[-5,4],[-5,3],[-5,2],[-7,2],[-4,2],[-2,3],[-2,5],[-1,4],[1,8],[1,9],[2,10],[-1,5],[0,7],[-1,4],[-2,11],[-2,9],[-1,3],[-2,12],[0,5],[2,12],[2,9],[0,1],[2,5],[0,3],[1,6],[-1,1],[-1,4],[-4,3],[-1,-1],[-2,1],[0,1],[1,4],[2,10],[0,7],[1,7],[1,4],[0,1],[0,3],[-1,9],[0,11],[-1,3],[-1,0],[-3,-1],[-5,4],[-4,4],[0,1],[-2,7],[-2,9],[0,1],[0,9],[1,8],[1,7],[-1,3],[-1,10],[-2,13],[-1,7],[0,6],[3,9],[2,3],[1,3],[2,5],[1,4],[0,4],[-3,7],[0,3],[-1,3],[-1,7],[-1,8],[0,13],[0,7]],[[7080,2116],[0,-32],[0,-4],[0,-5],[0,-6],[0,-26],[0,-10],[0,-9],[0,-6],[0,-4],[0,-5],[0,-22],[0,-21],[0,-6],[0,-8],[0,-8],[0,-14],[0,-50],[0,-7],[0,-14],[-1,-20],[1,-18],[0,-5],[0,-22],[-1,-8],[1,-5],[0,-10],[0,-2],[0,-2],[0,-8],[0,-29],[0,-25],[0,-5],[0,-4],[0,-1],[0,-2],[0,-6],[0,-43]],[[7080,1644],[-23,0],[-8,0],[-10,0],[0,-6],[0,-4],[0,-12],[0,-6],[0,-1],[0,-9],[0,-72],[0,-13],[0,-17],[0,-35],[0,-13],[0,-6],[0,-6],[0,-9],[0,-3],[0,-4],[0,-42],[0,-29],[0,-3],[0,-11],[-2,0]],[[7037,1343],[-2,1],[-4,0],[-8,0],[-1,0],[-15,0],[-5,0],[-19,-1],[-15,0],[-10,1],[-1,0],[-10,0],[-3,0],[-2,0],[-1,0],[-3,0],[-5,0],[-2,0],[-2,0],[-1,0],[-5,0],[-3,0],[-4,0],[-1,0],[-3,0],[-3,0],[-9,0],[-4,0],[-4,-1],[-2,0],[-1,0],[-1,0],[-5,1],[-3,0],[-5,0],[-3,0],[-4,0],[-2,0],[-10,0],[-1,0],[-4,0],[-10,0],[-1,0],[-5,0],[-7,0],[-1,0],[-1,0],[-19,0],[-9,0],[-1,0],[-7,0],[-2,0],[-3,0],[-8,0],[-3,0],[-11,0],[-10,0],[-9,0],[-10,0],[-1,0],[-5,0],[-5,0],[-13,0],[-1,0],[-16,0],[-11,1],[-5,0],[-4,0],[-3,0],[-11,0],[-23,0],[-8,0],[-34,-1],[-4,0],[-19,0],[-7,1],[-10,0],[-4,0],[-7,-1],[-1,0],[-7,0],[-2,0],[-3,0],[-9,0],[-3,0],[-1,0],[-7,1],[-7,-1],[-3,0],[-5,0],[-6,0],[-5,0],[-20,0],[-1,0],[-6,0],[-8,0],[-1,0],[-7,0],[-22,1],[-6,0],[-1,0],[-6,0],[-6,0],[-1,0],[-9,0],[-2,0],[-10,0],[-10,-1],[-2,1],[-12,-1],[-6,0]],[[6348,1344],[-2,0],[0,35],[0,6],[0,5],[0,18],[0,7],[0,10],[0,5],[0,18],[0,14],[0,4],[0,7],[0,10],[0,21],[0,11],[0,12],[0,47],[0,8],[0,19],[0,15],[0,29],[0,44],[0,42],[0,17],[0,5],[0,16],[0,5],[0,21],[0,9],[0,6],[0,10],[0,8],[0,33],[0,13],[0,4],[0,3],[0,6],[0,3],[0,4],[0,11],[0,11],[0,8],[0,5],[0,3],[0,7],[0,6],[0,16],[0,5],[0,22]],[[7693,1599],[-3,0],[-1,0],[-3,0],[-2,0],[-31,0],[-3,0],[-11,0],[0,-7],[0,-19],[0,-5],[0,-11],[0,-43],[0,-11],[0,-12],[0,-19],[-24,0],[-2,0],[-1,0],[-1,-1],[-3,0],[-2,0],[-2,0],[-3,0],[-1,0],[-3,0],[-5,0],[-7,1],[-11,0],[-3,0],[-2,0],[-5,-1],[-26,1],[-10,0],[-7,0],[-5,0],[-2,0],[-2,0],[-1,0],[-3,0],[-5,0],[-1,0],[-2,0],[-2,0],[-4,0],[-8,0]],[[7486,1472],[-14,55],[-4,15],[-6,13],[-3,8],[-1,5],[-2,4],[-8,12],[-11,17],[0,1],[-4,6],[-8,11],[-7,11],[-1,-2],[-2,-4],[-2,-6],[-1,-1],[-1,-2],[-2,-2],[-1,-1],[-2,-1],[-3,-1],[-1,3],[-2,3],[-1,3],[-1,2],[-1,2],[-1,3],[-1,4],[-3,3],[-1,-2],[0,-1],[0,-2],[-2,0],[-1,4],[-1,2],[1,4],[-1,5],[-4,0],[-2,0],[-2,0],[-7,1],[-3,-1],[-32,1],[-6,0],[-10,-1],[-7,0],[-13,0],[-1,0],[-4,0],[-3,1],[-2,0],[-35,-1],[-16,1],[-2,0],[-4,0],[-11,0],[-7,0],[-4,0],[-1,0],[-5,0],[-4,0],[-2,0],[-6,-1],[-3,1],[-4,-1],[-2,0],[-3,1],[-6,0],[-6,0],[-6,0],[-16,0],[-7,0],[-8,-1],[-2,1],[-39,0],[-12,0]],[[5673,1990],[0,-3],[0,-8],[0,-4],[0,-4],[0,-4],[0,-4],[0,-3],[0,-13],[0,-4],[0,-39],[0,-6],[0,-14],[0,-19],[0,-3],[0,-4],[0,-4],[0,-4],[0,-4],[0,-3],[0,-3],[0,-7],[0,-8],[0,-5],[0,-1],[0,-1],[0,-8],[0,-4],[0,-30],[0,-3],[0,-6],[0,-8],[0,-5],[0,-10],[0,-8],[0,-6],[0,-5],[0,-11],[0,-5],[0,-7],[0,-4],[0,-6],[0,-4],[0,-6],[0,-5],[0,-5],[0,-4],[0,-7],[0,-5],[0,-11],[0,-10],[0,-23],[0,-4],[0,-2],[0,-3],[0,-3],[0,-4],[0,-2],[0,-3],[0,-6],[0,-3],[2,-24],[0,-1]],[[5675,1557],[-3,-6],[-1,-6],[-2,-8],[-3,-5],[-2,-8],[0,-4],[-8,-23],[-4,-7],[-6,-7],[-4,-5],[-3,-6],[-1,0],[-21,3],[-16,5],[-3,2],[-2,2],[-3,6],[-1,2],[-7,1],[-4,3],[-1,3],[-4,3],[-2,5],[-1,1],[0,2],[-1,6],[-5,12],[-3,4],[-5,0],[-2,0],[-7,-8],[-4,-4],[-2,-1],[-8,-2],[-1,1],[-5,5],[-5,1],[-2,0],[-2,-1],[-2,2],[-2,0],[-4,-4],[-4,-1],[-3,2],[-8,3],[-7,3],[-2,2],[-4,2],[-1,2],[-2,3],[-6,10],[-2,4],[-2,4],[-2,2],[-3,5],[-3,5],[-5,9],[-3,4],[-3,2],[-4,-1],[-6,3],[-6,3],[-2,2],[-2,1],[-4,0],[-5,2],[-5,3],[-8,3],[-2,-1],[-3,-4],[-2,-8],[-2,-3],[-3,-2],[-3,-1],[-3,-3],[-2,-1],[-2,-4],[-2,-5],[0,-7],[-2,-6],[-1,-9],[1,-4],[1,0],[2,-3],[2,-3],[2,-5],[0,-1],[1,-6],[-3,-5],[-2,1],[-2,5],[-1,3],[-4,2],[-2,-1],[-3,-3],[-3,-7],[-2,-3],[-1,-7],[-1,-6],[-1,-3],[0,-4],[3,-3],[0,-15],[0,-13],[0,-11],[0,-2],[0,-8],[0,-1],[-1,-4],[0,-3],[-1,-5],[-1,-2],[-2,-1],[-1,1],[-4,6],[-3,0],[-2,-3],[0,-5],[1,-6],[1,-6],[-1,-6],[0,-7],[-1,-3],[-2,-5],[-2,-7],[-1,-1],[-2,-3],[-2,-3],[-1,0],[-2,-1],[-1,1],[-1,1],[-1,0],[0,6],[-3,4],[-5,-1],[-4,-2],[-6,-2],[-4,-4],[-2,-4],[-1,-8],[-1,-6],[-1,-6],[-3,-5],[-6,-2],[-3,1],[-3,2],[-4,1],[-2,-1],[-2,-4],[-2,-9],[-3,-9],[-3,-4],[-4,-4],[-6,-3],[-5,1],[-1,3],[-1,5],[-3,4],[-2,4],[-2,4],[-2,1],[-2,1],[-3,2],[-2,3],[-2,1],[-1,0],[-11,28],[0,1],[-1,4],[-2,7],[-5,10],[-2,3],[-2,7],[-5,7],[-2,14],[-1,3],[-3,7],[-2,8],[-1,4],[-18,36],[-2,0],[-3,2],[-1,3],[-1,5],[-2,2],[-2,1],[2,11],[1,2],[3,-2],[2,-3],[3,2],[1,4],[1,4],[-1,8],[-2,2],[-5,0],[-4,0],[-1,1],[-6,11],[-2,6],[-3,10],[-2,5],[-3,8],[-5,7],[-5,4],[-2,4],[-1,1],[-3,5],[-2,3],[-3,6],[-5,5],[-3,4],[-3,0],[-3,-2],[-2,-2],[-2,-3],[-2,-3]],[[9964,2633],[0,-22],[0,-9],[0,-6],[-1,-12],[0,-40],[0,-43],[-1,-10],[0,-16],[0,-20],[0,-4],[0,-18],[-1,-21],[0,-1],[0,-31],[0,-6],[0,-4],[0,-4],[0,-4],[0,-4],[0,-5],[0,-5],[-1,-24],[0,-50],[0,-1],[-1,-23],[0,-5],[0,-3],[0,-14],[0,-11],[0,-6],[0,-4],[0,-5],[0,-6],[0,-7],[0,-7],[0,-5],[-1,-6],[0,-3],[0,-37],[0,-10],[0,-4],[0,-1],[0,-5],[0,-7],[0,-9],[-1,-15],[0,-7],[0,-27],[0,-19],[-1,-48],[0,-13],[0,-13],[0,-18],[0,-32],[-1,-22],[0,-8],[0,-3],[0,-32],[0,-22],[-1,-41],[0,-20],[-1,-36],[0,-24],[0,-33],[0,-8],[0,-14],[-1,-3],[0,-17],[0,-16],[0,-16],[0,-12],[0,-5],[0,-19],[0,-11],[0,-6],[-1,-10],[0,-7],[0,-14],[0,-23],[0,-13],[-1,-11],[0,-17],[0,-46],[0,-13],[0,-35],[-1,-22],[0,-14],[0,-1],[0,-14],[0,-2],[-1,-15],[0,-13],[0,-26],[0,-7],[0,-13],[0,-7],[0,-6],[0,-4],[0,-3],[0,-4],[0,-4],[0,-6],[-1,-4],[0,-19],[0,-11],[0,-16],[0,-12],[-1,-33],[0,-27],[0,-23],[0,-18],[-1,-16],[0,-5],[0,-3],[0,-17],[0,-9],[0,-1],[0,-11],[0,-4],[0,-6],[0,-18],[0,-7],[-1,-19],[0,-7],[0,-10],[0,-7],[0,-12],[0,-12],[0,-9],[0,-9],[-1,-25],[0,-3],[0,-7],[1,-8],[0,-4],[-1,-4],[0,-5],[0,-18],[0,-13],[-1,-42],[0,-1],[0,-9],[0,-6],[0,-23],[0,-3],[0,-7],[-1,-6],[0,-10],[0,-13],[0,-6],[0,-15],[0,-40],[-1,-20],[0,-20],[0,-5],[0,-16],[-1,-41],[0,-24],[0,-5],[0,-14],[0,-7],[0,-5],[0,-8],[0,-8],[-1,-13],[0,-3],[0,-8],[0,-11],[0,-9],[0,-27],[0,-28],[-1,-4],[0,-14],[0,-9],[0,-15],[0,-3],[0,-29],[0,-13],[0,-7],[-1,-22],[-1,-44],[0,-13],[0,-15],[0,-3],[0,-35],[0,-4],[0,-5],[-3,-2],[-2,1],[-1,-4],[3,-11],[1,-9],[-2,-8],[-3,-5],[-3,-2],[-5,-1],[-2,-2],[-2,-5],[-3,-3],[-4,2],[-3,3],[-2,7],[-6,25],[-3,-11],[1,-11],[2,-7],[-3,-15],[-1,-4],[-3,-3],[-6,0],[-7,13],[-1,6],[1,8],[1,5],[4,6],[3,6],[8,12],[3,8],[-3,7],[-3,4],[-4,0],[-5,-3],[-2,-1],[-8,-7],[-8,-12],[-4,-5],[-3,-2],[-3,-4],[-2,-4],[0,-4],[-7,-2],[-3,1],[-4,2],[-2,7],[-1,6],[0,3],[3,7],[0,1],[1,3],[7,8],[11,12],[3,3],[5,3],[1,3],[1,1],[1,4],[1,3],[1,7],[0,13],[0,2],[-4,10],[-1,3],[-3,3],[-1,0],[-3,0],[-3,0],[-3,-2],[-3,-3],[-5,-7],[-3,-5],[-3,-8],[-1,-3],[-5,-16],[-4,-9],[-5,-7],[-2,0],[-3,2],[-2,3],[-2,4],[-1,3],[3,11],[4,8],[5,10],[2,6],[3,6],[6,3],[3,1],[3,2],[2,2],[2,5],[2,6],[0,4],[-1,3],[-1,2],[-2,1],[-2,-1],[-3,-1],[-3,-1],[-1,-1],[-5,-5],[-1,-1],[-1,-1],[-4,2],[2,11],[0,4],[-2,7],[1,6],[1,5],[-1,4],[-2,4],[-2,5],[-1,1],[0,3],[-1,3],[-1,1],[0,1],[0,1],[-1,2],[-1,1],[-2,0],[-1,0],[-2,-3],[-1,-4],[0,-3],[3,-15],[1,-6],[-1,-4],[-1,-2],[-1,-4],[1,-7],[0,-6],[-2,-9],[-3,-5],[-1,-1],[-4,0],[-1,0],[-3,1],[-4,6],[-2,6],[-3,6],[-1,4],[0,5],[-1,5],[-1,5],[-2,9],[-1,4],[-2,4],[-3,2],[-2,1],[-1,-1],[-1,0],[-2,0],[-2,-17],[-1,-9],[-1,-5],[-2,-5],[-1,-4],[-2,-2],[-5,-1],[-1,0],[-1,0],[-2,0],[-4,5],[-3,6],[-1,4],[0,23],[-1,5],[-1,3],[-9,19],[-1,6],[-3,3],[-5,4],[-3,1],[-2,-1],[-1,-1],[-3,-6],[-2,-1],[-2,-6],[-2,-4],[-9,-11],[-4,1],[-4,3],[-2,0],[0,1],[-4,1],[-2,2],[-2,1],[-5,2],[-4,1],[-4,-1],[4,27],[6,2],[2,15],[3,10],[-7,12],[-14,3],[-7,8],[-3,2],[-1,-14],[1,-14],[7,-4],[1,-3],[3,-9],[-4,-32],[-4,1],[-1,1],[-3,4],[-9,1],[-2,2],[-2,9],[-3,15],[-2,3],[-5,5],[-1,1],[-6,6],[-1,6],[9,15],[7,4],[2,4],[6,12],[0,5],[0,10],[-1,3],[-3,5],[-4,0],[-2,0],[-3,-7],[-1,-5],[0,-13],[-1,-7],[-2,-4],[-5,-4],[-5,5],[-1,3],[-1,5],[1,3],[5,8],[5,9],[0,3],[-3,9],[0,9],[-1,7],[-1,2],[-4,1],[-2,-3],[-2,-4],[-1,-3],[-3,-14],[-1,0],[-6,0],[-7,2],[-7,6],[-1,2],[-1,5],[0,8],[0,2],[0,13],[0,4],[3,8],[9,-6],[9,13],[7,8],[1,16],[-2,9],[-11,11],[-10,5],[-5,-23],[-3,-24],[-1,-3],[-7,-20],[-2,-2],[-4,-3],[-7,-14],[-4,2],[-7,6],[-6,14],[0,4],[5,12],[0,12],[0,1],[-1,7],[-2,-3],[-2,9],[1,16],[-1,12],[-2,11],[-3,4],[-3,1],[-7,-15],[-1,-9],[0,-9],[6,-22],[4,-17],[0,-1],[1,-19],[1,-13],[-3,-3],[-5,5],[-2,3],[1,17],[-4,0],[-7,0],[-2,-2],[-7,0],[-7,2],[-9,5],[-3,3],[-3,3],[-1,2],[-1,10],[-4,12],[-4,12],[-2,4],[-7,21],[-15,15],[-3,3],[0,1],[-2,0],[-6,1],[-6,10],[-2,3],[-1,4],[0,1],[0,1],[-2,2],[0,-2],[-1,1],[-1,6],[-4,14],[-4,11],[-1,4],[-1,8],[0,3],[1,4],[0,3],[0,4],[1,4],[1,4],[1,5],[1,9],[1,2],[0,7],[3,-1],[0,2],[2,7],[0,1],[1,4],[1,5],[0,5],[0,6],[-1,1],[-1,1],[-1,6],[-1,5],[-4,10],[-3,6],[-2,2],[-3,0],[-1,-2],[-1,-3],[0,-4],[2,-9],[1,-12],[1,-11],[-1,-8],[1,-11],[-6,-9],[-3,-2],[-4,0],[0,1],[-1,3],[-2,-1],[-2,-1],[-4,0],[-2,1],[-5,6],[-1,5],[-2,7],[-2,6],[-1,6],[0,2],[1,4],[2,6],[1,3],[2,4],[1,4],[3,5],[1,8],[0,2],[0,3],[-1,2],[-2,3],[-3,4],[-4,5],[-6,0],[-1,1],[-4,2],[-2,3],[-1,2],[-1,14],[-1,8],[0,10],[0,5],[-1,11],[-2,8],[0,5],[0,1],[-1,7],[-1,2],[-2,1],[-2,-2],[-3,-4],[-1,-5],[-1,-5],[-4,-12],[-2,-3],[-2,-1],[-4,-1],[-4,3],[-1,2],[-1,2],[-1,4],[-1,5],[-2,8],[-1,4],[-2,5],[-3,5],[-6,6],[-1,1],[-9,-11],[-3,-3],[-4,-3],[-2,0],[-7,-1],[-2,0],[-1,0],[-6,1],[-4,1],[-5,3],[-3,3],[-2,4],[-1,7],[-1,5],[-1,18],[1,4],[-2,2],[-3,6],[-2,9],[-1,4],[0,5],[1,2],[-1,2],[-1,4],[-1,5],[0,5],[1,11],[-1,11],[-1,12],[-2,5],[-8,-1],[-3,-1],[-3,-4],[1,-4],[2,-9],[0,-5],[-1,1],[-1,4],[-1,4],[0,3],[-2,6],[-1,7],[1,5],[2,5],[3,2],[2,1],[3,0],[2,2],[2,6],[1,6],[-2,7],[-3,4],[-1,1],[-3,0],[-4,-4],[0,-3],[-1,-17],[0,-2],[-1,-2],[-3,-4],[-1,-6],[0,-3],[-1,-52],[-1,-4],[-2,-12],[-6,0],[-3,3],[-6,19],[-3,6],[-3,8],[0,8],[2,9],[2,3],[6,3],[7,8],[5,11],[4,11],[1,7],[1,9],[-1,5],[-6,12],[0,1],[-8,0],[-3,-2],[-5,-8],[-10,-20],[-3,-5],[-5,-7],[-7,-7],[-1,-1],[-2,-2],[-2,2],[-2,2],[-2,2],[-7,22],[1,11],[10,24],[1,14],[-3,9],[-1,6],[-1,4],[-2,2],[-9,2],[-5,-1],[-5,-2],[-2,1],[-6,0],[-7,-3]],[[9153,947],[0,31],[0,17],[0,45],[0,8],[0,8],[0,5],[0,4],[0,10],[0,8],[0,5],[0,8],[0,3],[0,4],[0,4],[0,4],[0,4],[0,8],[0,3],[0,7],[0,3],[0,9],[0,24],[0,1],[0,5],[0,3],[0,2],[0,10],[0,7],[0,10],[0,5],[0,8],[0,35],[0,10],[0,9],[0,23],[0,14],[0,8],[0,4],[0,3],[0,3],[0,4],[0,4],[0,3],[0,18],[0,6],[0,8],[0,5],[0,4],[0,17],[0,5],[0,12],[0,4],[0,4],[0,4],[0,4],[0,6],[0,3],[0,3],[0,4],[0,5],[0,4],[0,4],[0,4],[0,5],[0,7],[0,5],[0,4],[0,6],[0,4],[0,3],[0,5],[0,6],[0,3],[0,4],[0,3],[0,11],[0,3],[0,4],[0,6],[0,6],[0,3],[0,3],[0,7],[0,3],[0,6],[0,5],[0,4],[0,6],[0,3],[0,4],[0,5]],[[6348,1344],[0,-10],[0,-10],[0,-9],[0,-10],[0,-3],[0,-7],[0,-13],[0,-12],[0,-12],[0,-22],[0,-12],[0,-3],[0,-13],[0,-20],[0,-4],[0,-4],[0,-29],[1,-9],[4,-2],[2,1],[1,1]],[[6356,1142],[0,0]],[[6356,1142],[1,-2],[1,-4],[-1,0],[-1,-1],[-1,-3],[-1,-2],[1,0],[1,-1],[2,-1],[1,-2],[0,-2],[-1,-2],[2,-2],[0,-3],[1,2],[0,-3],[-1,-2],[0,-1],[0,-4],[2,-1],[1,2],[1,-2],[0,-3],[1,-3],[-1,-1],[1,-3],[1,0],[1,-3],[1,-2],[1,-1],[0,4],[2,4],[0,-2],[1,-4],[-1,-1],[1,-2],[0,-1],[1,0],[1,3],[0,1],[1,0],[0,-1],[1,-3],[0,-3],[-1,0],[-4,0],[-3,0],[-4,0],[-3,0],[-3,0],[-2,0],[-3,0],[-2,0],[-3,0],[0,-27],[0,-16],[0,-26],[0,-17],[0,-42],[0,-2],[0,-7],[0,-18],[0,-7],[0,-10],[0,-8],[0,-14],[0,-8],[0,-6],[0,-8],[0,-20],[0,-5],[-1,-7]],[[6347,839],[-2,6],[-7,2],[-7,-5],[-3,-1],[-4,-1],[-7,6],[0,1],[-2,7],[-1,9],[-2,5],[0,1],[-3,2],[-3,12],[-1,9],[2,13],[5,18],[0,9],[-1,3],[-1,3],[0,2],[-2,10],[-1,12],[2,9],[3,6],[1,8],[2,9],[0,1],[-2,5],[-5,0],[-1,2],[-4,4],[-2,13],[-2,3],[-2,6],[-5,12],[-2,1],[-7,5],[-8,11],[-9,18],[-8,8],[-8,7],[-7,5],[-9,7],[-5,5],[-10,2],[-7,-5],[-6,-4],[-6,-4],[-3,-6],[-3,-4],[-3,-8],[-4,-15],[-4,-24],[-5,-26],[-4,-11],[-3,-10],[-8,-17],[-2,-4],[-6,-12],[-7,-12],[-5,0],[-6,3],[-9,-3],[-5,1],[-6,-5],[-5,-3],[0,-10],[4,-17],[0,-18],[-3,-11],[-4,-5],[-9,4],[0,1],[-4,11],[-4,3],[-1,0],[-4,-7],[-2,-12],[4,-12],[3,-16],[0,-14],[0,-4],[-1,-10],[-5,-11],[-3,4],[0,5],[-1,3],[-3,8],[0,1],[-3,5],[-4,0],[-5,-9],[0,-7],[0,-9],[0,-10],[0,-7],[-3,-19],[-4,-8],[-3,5],[-2,6],[0,1],[-2,5],[-6,-5],[0,-15],[0,-2],[-1,-1],[0,-2],[0,-5],[-1,-5],[-2,-7],[-2,-5],[-1,-1],[0,-1],[-2,-3],[-3,-4],[-5,-14],[-10,-6],[-5,-1],[-1,-1],[-7,-8],[-2,-1],[-2,-1],[-4,-3],[-4,-3],[-7,-3],[-10,4],[-2,6],[-5,6],[-6,6],[-7,2],[-5,7],[-5,8],[-3,6],[-4,8],[-6,4],[-12,12],[-6,7],[-5,9],[-1,2],[-5,4],[-4,-2],[-6,-2],[-3,-1],[-5,1],[-9,6],[-8,8],[-10,19],[0,1],[-4,15],[-3,11],[0,10],[5,28],[3,3],[2,-6],[5,-11],[4,-2],[7,9],[4,10],[3,18],[3,16],[0,16],[0,8],[-1,16],[-5,-1],[-7,-4],[-9,5],[-2,9],[0,6],[3,6],[5,6],[6,10],[2,7],[4,17],[1,11],[2,12],[2,9],[6,46],[1,6],[1,8],[0,1],[-2,3],[-4,-2],[-7,0],[-6,8],[0,1],[-4,11],[-3,8],[-4,16],[-3,4],[-5,-4],[-4,-8],[-10,-10],[-7,-4],[-4,-3],[-2,-1],[-18,-7],[-25,-2],[-12,4],[-3,1],[-18,11],[-6,5],[-12,5],[-1,0],[-2,4],[-4,5],[0,1],[0,7],[4,1],[2,7],[-1,11],[-1,0],[-5,12],[-9,12],[-8,19],[0,1],[-3,16],[1,8],[4,5],[5,-2],[4,-10],[3,-4],[4,1],[5,9],[1,4],[-1,9],[0,1],[-4,6],[-15,17],[-13,30],[-4,7],[0,1],[-4,13],[-3,15],[0,21],[0,8],[2,11],[3,5],[5,12],[11,26],[7,27],[6,33],[1,14],[1,9],[-1,6],[-2,5],[0,2],[0,5],[-2,13],[-5,14],[-4,10],[-7,17],[-4,3],[-2,2],[-12,1],[-5,-9],[-6,-8],[-3,-11],[-3,-6]],[[7486,1472],[0,-3],[1,-3],[5,-16],[8,-28],[5,-15],[2,-6],[2,-6],[6,-20],[3,-10],[2,-7],[3,-7],[5,-19],[-6,-26],[-2,-8],[-2,-8],[-2,-10],[-13,-19],[-1,1],[-3,8],[-3,9],[-1,-16],[-2,-29],[0,-9],[0,-3],[1,-13],[1,-3],[1,-12],[-18,-11],[-1,-1],[-7,-5],[-4,-2],[-20,-11],[-2,-1],[-2,-2],[-2,-1],[1,-4],[6,-17],[4,-12],[2,-6],[0,-2],[7,-21],[3,-8],[6,-18],[6,-13],[1,-1],[6,-12],[5,-10],[0,-1],[4,-7],[5,-10],[-3,-12],[-6,-19],[-1,-1],[-2,-7],[-6,-20],[11,-45],[2,-9],[-2,-18],[-1,-10],[-2,-18],[-3,-26],[-1,-9]],[[7482,824],[-17,0],[-4,0],[-20,1],[-32,48],[-4,7],[-7,-16],[-16,-38],[-10,-23],[-24,-99],[-21,-19],[-30,-27],[-29,-13],[-2,4],[-12,27],[-28,69],[-5,13],[-11,-7],[-13,-9],[-9,-6],[-1,-2],[-8,-7],[-6,-5],[-12,-11],[-6,-5],[-5,24],[-1,4],[-1,2],[-2,11],[-4,15],[-9,39],[0,6],[-13,116],[-3,27],[-1,13],[-6,6],[-20,19],[-5,5],[-7,6]],[[7078,999],[0,1],[0,6],[0,39],[0,1],[0,20],[0,8],[0,10],[0,4],[0,5],[0,42],[0,19],[0,18],[-5,1],[-4,0],[-8,0],[-2,-1],[-2,0],[-3,0],[-2,0],[-1,0],[-13,1],[0,7],[-1,58],[0,30],[0,3],[0,28],[0,4],[0,26],[0,14]],[[8179,1597],[1,-2],[3,-1],[2,1],[5,-5],[0,-1],[0,-1],[-1,-2],[1,-1],[3,-5],[1,-1],[1,1],[1,12],[0,-1],[1,-4],[0,-2],[1,-1],[1,1],[3,0],[2,0],[0,-1],[3,-3],[3,-3],[1,0],[1,3],[1,0],[6,-5],[3,-6],[3,-7],[1,-1],[-1,-4],[0,-1],[0,-4],[-1,-9],[2,0],[0,-1],[2,-9],[0,-2],[0,-1],[0,-2],[1,-5],[0,-1],[0,-1],[-2,-4],[3,-3],[1,-3],[1,-5],[2,-5],[0,-1],[3,-1],[1,0],[0,4],[0,1],[1,1],[2,-2],[0,-38],[0,-4],[0,-3],[0,-5],[0,-3],[0,-5],[0,-4],[0,-4],[0,-3],[0,-5],[0,-7],[0,-4],[0,-4],[0,-4],[0,-5],[0,-3],[0,-3],[0,-5],[0,-3],[0,-9],[0,-4],[0,-4],[0,-5],[0,-3],[0,-7],[0,-3],[0,-6],[0,-5],[0,-3],[0,-4],[0,-4],[0,-9],[0,-9],[0,-9],[0,-6],[0,-5],[0,-5],[0,-6],[0,-4],[0,-4],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-5],[0,-3],[0,-6],[0,-9],[0,-4],[0,-4],[0,-6],[0,-4],[0,-3],[0,-3],[0,-4],[0,-5],[0,-6],[0,-5],[0,-4],[0,-5],[0,-4],[0,-1],[0,-2],[0,-4],[0,-3],[0,-10],[0,-13],[0,-3],[0,-8],[0,-8],[0,-4],[0,-24],[0,-4],[0,-3],[0,-57],[0,-39],[1,-16],[0,-2],[1,-7],[1,-3],[-1,-2],[0,-1],[1,-1],[0,-2],[3,-5],[1,0],[1,1],[1,0],[1,-1],[1,0],[8,-24],[3,-16],[1,-2],[1,-4],[0,-1],[5,-4],[4,-3],[10,-5],[3,-1],[6,2],[2,-2],[2,-2],[3,-2],[7,-5],[1,0],[2,-2],[7,-15],[0,-1],[0,-3],[0,-2],[0,-1],[1,-3],[0,-1],[1,0],[1,-2],[2,-2],[0,-3],[1,-1],[0,-4],[1,0],[0,-2],[0,-3],[0,-1],[1,-3],[0,-3],[0,-2],[0,-4],[0,-1],[0,-1],[2,-7],[1,-1],[0,-3],[0,-2],[1,-5],[0,-1],[0,-2],[2,-5],[0,-1],[1,0],[0,2],[1,0],[1,0],[0,-1],[5,-7],[2,-4],[0,-1],[1,-4],[8,-12],[1,-1],[3,-7],[0,-1],[0,-2],[1,0],[0,-1],[4,-2],[2,1],[1,1],[1,2],[3,0],[1,0],[1,-3],[3,0],[1,-1],[1,0],[1,0],[4,-1],[1,0],[2,0],[3,-1],[1,0],[1,-1],[0,-2],[0,-1],[0,-1],[2,-3],[7,0],[1,1],[1,0],[0,1],[0,1],[2,2],[1,2],[4,3],[1,1],[1,0],[1,-1],[3,-2],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0],[1,0],[1,0],[0,-3],[1,-2],[0,-1],[1,-1],[0,-4],[0,-1],[3,-2],[1,-1],[0,1],[4,5],[0,1],[1,3],[0,2],[0,2],[0,2],[1,1],[0,1],[1,0],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[2,-1],[3,-1],[1,0],[0,1],[2,3],[4,5]],[[8449,762],[-1,-8],[0,-5],[1,0],[2,-5],[4,-22],[1,-7],[0,-6],[-1,-5],[-4,-10],[-2,-4],[-1,-1],[-1,-1],[-4,-1],[-6,5],[-5,0],[-7,6],[-2,2],[-1,2],[0,2],[-2,5],[-1,2],[-8,8],[-10,8],[-5,0],[-3,-2],[-1,-1],[-5,-3],[-3,-1],[-1,0],[-1,0],[-2,-1],[-2,-1],[-1,-3],[-1,-5],[0,-6],[1,-9],[2,-13],[0,-8],[0,-4],[-2,-7],[-2,-3],[-6,-8],[-2,-2],[-1,-1],[-4,0],[-2,1],[-3,2],[-9,10],[-4,17],[-2,0],[-1,1],[-1,2],[-1,4],[-1,5],[-4,7],[-2,3],[-4,1],[-3,2],[-2,4],[-2,4],[-8,6],[-3,2],[-4,6],[-4,5],[-2,5],[-2,4],[-6,8],[-2,3],[-11,18],[-2,2],[-2,0],[-2,1],[-1,1],[-5,12],[-4,3],[-1,2],[-15,12],[-3,1],[-1,-3],[-1,-3],[0,-9],[2,-8],[0,-3],[0,-7],[-1,-15],[0,-1],[-2,-5],[-4,-23],[-1,-2],[-1,-1],[-1,-2],[-2,-2],[-6,-5],[-2,0],[-1,1],[-1,3],[-2,0],[-1,0],[-10,-2],[-6,-2],[-3,-3],[-1,-2],[-1,-1],[-2,-1],[-4,-5],[-2,-3],[-5,13],[2,9],[-1,17],[-3,6],[-5,3],[-9,11],[-1,0],[-3,3],[-1,-11],[5,-20],[0,-2],[6,-2],[-4,-28],[-2,-6],[-3,-5],[-1,0],[0,-1],[-2,-4],[-13,-13],[-2,-3],[-6,-1],[0,1],[0,8],[3,16],[1,12],[-3,10],[-6,1],[-5,-11],[0,-17],[-5,-15],[-5,-6],[-9,-12],[-13,10],[0,-1],[-7,-5],[-4,4],[-5,10],[-2,3],[0,1],[-2,5],[-2,2],[-3,4],[-2,7],[-1,2],[-7,19],[-5,0],[-2,-3],[-1,-6],[0,-5],[6,-14],[0,-2],[0,-1],[2,-4],[0,-8],[1,-11],[-1,-4],[-2,-4],[-2,-1],[-4,2],[-1,2],[-2,2],[-1,1],[-3,2],[-3,1],[-3,0],[-2,-4],[-2,-5],[-2,-7],[-4,-10],[-6,-11],[-7,-5],[-6,2],[-7,-2],[-6,-10],[-2,-2],[-5,-5],[0,-1],[-4,-4],[-3,-8],[-3,-1],[-1,0],[-1,-2],[-3,-9],[-1,-2],[-5,-18],[-3,-9],[-1,-4],[-2,-9],[-1,-22],[0,-5],[1,-8],[1,-3],[0,-2],[1,-9],[1,-9],[0,-11],[-1,-8],[-1,-6],[-3,-9],[-1,-2],[-5,-12],[-1,-1],[-4,-5],[-6,-7],[-1,0],[-7,-5],[-2,-2],[-1,-1],[-2,-2],[0,-1],[-1,-2],[-3,0],[-1,0],[-2,0],[-1,1],[-6,2],[-13,0],[-4,0],[-1,-2],[-5,1],[-2,3],[-5,5],[-5,7],[-4,5],[-9,10],[-6,6],[-4,5],[-2,4],[-2,1],[-2,2],[-9,4],[-4,1],[-1,-2],[-1,-1],[-1,-3],[-1,0],[-1,-3],[-4,-3],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[0,1],[-1,1],[-3,0],[0,-1],[-1,0],[-2,-2],[-1,-3],[-1,-8],[-1,-5],[-2,-5],[-2,-5],[-2,-6],[-1,-6],[-1,-10],[-1,-9],[-3,-16],[-2,-5],[0,-13],[1,-13],[1,-4],[1,-9],[0,-2],[0,-1],[0,-9],[0,-2],[0,-6],[-2,-10],[-1,-8],[-4,-28],[-7,-21],[-1,-4],[-18,-12],[-2,-6],[-4,-3],[-5,-5],[-3,0],[-3,0],[-3,1],[-7,6],[0,1],[-5,14],[0,17],[-4,22],[-1,14],[-5,17],[0,1],[-9,23],[-2,5],[-18,36],[-17,44],[-3,13],[-4,24],[-4,19],[0,1],[-4,8],[-19,11],[-6,1],[-4,0],[-6,-9],[-4,-7],[-4,1],[-7,0],[-2,0],[-2,0],[-2,-1],[-3,0],[-11,-6],[-9,-1],[-7,-1],[-2,0],[-3,2],[-9,20],[-1,2],[-1,0],[0,1],[0,2],[-2,7],[-3,11],[0,27],[-1,18],[-4,24],[-4,20],[-1,1],[-1,3],[-1,3],[-1,2],[-1,1],[-2,2],[-3,2],[-1,0],[-5,-2],[-1,-1],[-1,0],[-2,-1],[-3,-2],[-4,-2],[-7,-2],[-3,-1],[-1,0],[-2,0],[-10,0],[-3,0],[-2,0],[-1,1],[-3,2],[-1,1],[-14,22],[-30,30],[-9,7],[-9,12],[0,1],[-2,7],[0,1],[0,11],[1,1],[5,16],[9,21],[6,15],[4,3],[11,12],[10,19],[4,16],[2,12],[-4,14]],[[9153,947],[-5,6],[-2,1],[-4,4],[-3,5],[-5,9],[-4,8],[-7,10],[-5,4],[-5,3],[0,-1],[-3,1],[-5,5],[-13,9],[-2,1],[-3,5],[-8,6],[-9,1],[-2,-2],[-1,-1],[-1,-2],[0,-14],[0,-7],[-2,-5],[-1,-7],[-2,-5],[-2,-3],[-6,-8],[-12,-22],[-1,-5],[-2,-10],[0,-7],[1,-8],[1,-4],[3,-12],[1,-8],[0,-11],[0,-11],[-1,-16],[-2,-19],[-1,-9],[0,-1],[-1,-5],[-4,-9],[-1,-3],[-2,-4],[-1,0],[-3,0],[-1,1],[-2,1],[-1,3],[0,9],[0,3],[0,3],[0,25],[0,7],[-1,7],[0,3],[-1,4],[-2,5],[-2,0],[-3,0],[-2,-2],[-5,-9],[0,-1],[-2,-3],[-1,-1],[-1,-5],[-1,-4],[-1,-4],[0,-3],[-1,-5],[1,-12],[2,-11],[3,-12],[1,-5],[1,-16],[0,-6],[-1,-3],[-1,-3],[-1,-3],[-6,-6],[-4,-1],[-1,0],[-4,-1],[-7,6],[-1,1],[-11,6],[-2,9],[-1,2],[-4,10],[-2,6],[-3,5],[-2,3],[-1,1],[-6,0],[-4,-3],[-1,0],[-1,-2],[-1,-2],[0,-11],[1,-3],[-1,-16],[0,-5],[-1,-1],[-2,-4],[-2,-2],[-2,0],[-2,0],[-1,1],[-7,-1],[-4,-1],[-2,-3],[-7,-2],[-5,-2],[-5,-1],[-2,-1],[-5,-2],[-4,0],[-4,2],[-4,0],[-11,-5],[-11,-3],[-2,0],[-1,0],[-8,0],[-8,2],[-2,1],[0,1],[-1,2],[-2,1],[-8,3],[-8,0],[-4,-3],[-6,-1],[-4,3],[-3,3],[-1,1],[-1,3],[0,6],[1,3],[0,14],[-2,8],[-2,15],[-2,3],[0,1],[-4,-1],[-3,-3],[-5,-9],[-1,-1],[-5,-6],[-2,-5],[-5,-6],[-2,-3],[-8,-5],[-5,-3],[-6,0],[-3,0],[-2,0],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,6],[1,6],[1,5],[0,5],[0,6],[0,7],[0,12],[-1,2],[0,1],[-1,4],[0,1],[-1,1],[-1,2],[-2,2],[-2,0],[-5,-7],[-5,-10],[-3,-7],[-4,-10],[-2,-5],[-2,-4],[-1,0],[-1,-2],[-5,-4],[-2,-1],[-1,-1],[-5,0],[-2,0],[-1,0],[-1,1],[-3,6],[-4,17],[0,5],[0,11],[3,20],[0,10],[0,11],[0,2],[0,7],[-2,12],[0,2],[-2,3],[-1,6],[-1,7],[-2,10],[-2,11],[-1,4],[-2,4],[-1,2],[-2,2],[-1,1],[-1,0],[-2,2],[-2,0],[-6,1],[-9,0],[-5,2],[-1,0],[-1,5],[-4,9],[-2,4],[-2,2],[-3,3],[-2,-1],[-1,-1],[0,-1],[-1,-1],[-2,-16],[-1,-5],[0,-3],[1,0],[0,-4],[-1,-4],[-1,-3],[-1,-4],[-5,-10],[-2,-1],[-4,-2],[-7,-7],[-2,-1],[-4,-2],[-1,-1],[-2,-5],[0,-3],[0,-2],[-1,-2],[-6,-17],[-2,-4],[-2,-2],[-1,-1],[-3,-2],[-5,0],[-2,-1],[-1,0],[-7,5],[-4,3],[-2,1],[-4,0],[-1,0],[-3,-1],[-6,-7],[-1,-2],[-3,-10],[0,-1],[-3,-8],[-6,-14],[-1,-1],[-1,0],[-2,-2],[-1,-1],[-1,-3],[-2,-6],[0,-3],[-1,-1],[-1,-2],[-8,-8],[-2,0],[-5,-1],[-10,-1],[-2,2],[-3,2],[-3,5],[-4,8],[-2,3],[-3,5],[0,1],[-5,4],[-4,3],[-3,1],[-4,0],[-4,1],[-4,-1],[-2,0],[-1,-1],[-10,-10],[-1,-3],[-2,-7],[-2,-10],[-1,-8],[-1,-4],[1,-5],[3,-19]],[[7078,999],[-11,-15],[-14,-18],[-1,-2],[-4,-4],[-1,-1],[-7,-5],[-5,-7],[-2,-3],[-4,6],[-4,19],[0,19],[0,4],[1,13],[-2,0],[-6,-4],[-3,-2],[-3,-8],[-4,-12],[-1,-18],[2,-36],[4,-19],[1,-8],[1,-1],[3,-30],[2,-31],[0,-30],[-8,-27],[-6,-17],[-2,-5],[0,-1],[-4,-12],[-9,-26],[-10,-27],[-2,-6],[-3,-5],[-3,-6],[-1,-1],[-3,-3],[-3,-3],[0,-1],[-6,-6],[-3,-3],[-3,1],[-4,1],[0,1],[-7,22],[-5,23],[-7,12],[-12,5],[-7,-6],[-11,-13],[-4,-17],[0,-12],[0,-3],[0,-4],[1,-3],[2,-3],[9,0],[3,0],[3,-1],[10,-2],[2,-1],[3,-2],[3,-3],[3,-3],[8,-15],[0,-1],[2,-14],[0,-18],[-2,-8],[-3,0],[-3,0],[-5,-1],[-22,-11],[-8,-7],[-7,-15],[-4,-20],[0,-2],[-1,-11],[1,-8],[2,-18],[6,-35],[1,-8],[1,-20],[1,-11],[-1,-34],[0,-6],[-2,-12],[0,-5],[-6,-22],[-3,-8],[-4,-12],[-7,-11],[-3,-5],[-2,-2],[-6,-5],[-5,-4],[-9,-2],[-13,6],[-7,4],[-7,5],[-3,5],[-3,4],[-6,7],[-1,0],[0,1],[-2,5],[-8,15],[-5,15],[-1,9],[0,2],[-2,13],[-7,24],[-4,-1],[-5,6],[-1,1],[-2,7],[0,1],[-1,0],[0,1],[0,1],[1,3],[5,22],[-1,11],[-2,15],[-4,21],[-2,8],[-10,38],[-1,19],[0,22],[5,32],[8,16],[16,1],[8,11],[4,5],[3,14],[0,1],[0,25],[-1,8],[-2,19],[-4,24],[-1,5],[-2,13],[-1,6],[-2,19],[-1,26],[-3,14],[-1,5],[-4,12],[-10,12],[-8,12],[0,1],[-2,6],[-6,8],[-5,3],[-7,-2],[-5,-2],[-3,0],[-2,-1],[-4,-10],[-10,-9],[-3,-4],[-4,-11],[-2,-16],[-1,-24],[-1,-16],[0,-9],[-1,-17],[-4,-21],[-3,-12],[-13,-3],[-10,1],[-12,15],[-10,24],[-4,7],[-6,22],[-3,8],[-4,0],[-3,-7],[2,-10],[-1,-26],[-2,-13],[-3,-7],[-4,-12],[-11,-22],[-4,-3],[-4,4],[0,8],[1,15],[6,18],[6,26],[-3,14],[-5,3],[-4,-8],[-3,-7],[-2,-19],[-2,-33],[-2,-14],[-4,-17],[-3,-19],[-3,-7],[-6,-17],[-4,-21],[-12,-25],[-5,-6],[-21,-1],[-12,1],[-6,0],[-5,-1],[-3,1],[-17,1],[-8,5],[-6,4],[-5,6],[-6,6],[-7,14],[-8,26],[0,14],[1,13],[4,16],[2,17],[2,10],[1,8],[3,12],[0,51],[0,7],[-4,14],[-7,27],[-23,28],[-4,5],[-1,0],[-2,4],[-10,7],[-5,1],[-5,-4],[-1,0],[-2,-2],[-3,-2],[-11,-9],[-9,-6],[-8,-16],[-4,-3],[-2,-3],[-3,-4],[-2,-2],[-4,-6],[-4,-3],[-1,-1],[-2,-2],[-3,-2],[-1,-1],[-6,1],[-1,6],[-1,1]]],"transform":{"scale":[0.0008572237150715024,0.0003386794345434447],"translate":[-103.00242477599988,33.61584999900015]}}
{
"name": "anonymous",
"version": "0.0.1",
"private": true,
"devDependencies": {
"d3": "3",
"topojson": "1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment