Last active
December 19, 2017 08:25
-
-
Save hden/988da1fcc4fa560c64abe3fe8a3fcd3a to your computer and use it in GitHub Desktop.
Tokyo map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Geo Mapping</title> | |
<style> | |
html, body { | |
height: 100%; | |
margin: 0; | |
padding: 0; | |
overflow: hidden; | |
} | |
.area { | |
fill: none; | |
stroke: black; | |
} | |
.cell { | |
fill: none; | |
stroke: gray; | |
} | |
.station { | |
fill: crimson; | |
r: 4px; | |
} | |
.restaurant { | |
fill: steelblue; | |
r: 1px; | |
} | |
</style> | |
</head> | |
<body> | |
<svg width=800 height=600></svg> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.10.0/d3.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/3.0.0/topojson.min.js"></script> | |
<script src="index.js"></script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* global d3, topojson */ | |
const svg = d3.select('svg') | |
const width = +svg.attr('width') | |
const height = +svg.attr('height') | |
const projection = d3.geoMercator() | |
.center([139.8, 35.7]) | |
.scale(90000) | |
const path = d3.geoPath() | |
.projection(projection) | |
d3.queue() | |
.defer(d3.json, 'tokyo23.topojson') | |
.defer(d3.csv, 'stations2.csv', parse) | |
.defer(d3.csv, 'restaurants.csv', parse) | |
.awaitAll(ready) | |
function ready (e, [topo, stations, restaurants]) { | |
if (e) { | |
return console.error(e) | |
} | |
const tokyo = topojson.feature(topo, topo.objects.tokyo23) | |
svg.append('g').selectAll('.area') | |
.data(tokyo.features) | |
.enter().append('path') | |
.attr('class', 'area') | |
.attr('d', path) | |
console.log('bbox', d3.geoBounds(tokyo)) | |
svg.append('g').selectAll('.station') | |
.data(stations) | |
.enter().append('circle') | |
.attr('class', 'station') | |
.attr('cx', cx) | |
.attr('cy', cy) | |
const voronoi = d3.voronoi() | |
.extent([[-1, -1], [width + 1, height + 1]]) | |
.x(cx) | |
.y(cy) | |
const diagram = voronoi(stations) | |
svg.append('g').selectAll('.cell') | |
.data(diagram.polygons()) | |
.enter().append('path') | |
.attr('class', 'cell') | |
.attr('d', function (d) { | |
return d ? `M${d.join('L')}Z` : null | |
}) | |
svg.append('g').selectAll('.restaurant') | |
.data(restaurants) | |
.enter().append('circle') | |
.attr('class', 'restaurant') | |
.attr('cx', cx) | |
.attr('cy', cy) | |
const x = restaurants.map(function (d) { | |
const {data} = diagram.find(d.projection[0], d.projection[1]) | |
return `${d.id},${data.id}` | |
}) | |
console.log(['restaurant_id,station'].concat(x).join('\n')) | |
} | |
function parse (d) { | |
const [lng, lat] = d3.extent([+d.lng, +d.lat]) | |
return { | |
id: d.restaurant_id || d.name, | |
coordinate: [lat, lng], | |
projection: projection([lat, lng]) | |
} | |
} | |
function cx (d) { | |
return d.projection[0] | |
} | |
function cy (d) { | |
return d.projection[1] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
restaurant_id | lat | lng | |
---|---|---|---|
0 | 35.6649471 | 139.7277817 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
area_id | name | station_id | lat | lng | |
---|---|---|---|---|---|
A1301 | 銀座・新橋・有楽町 | 2800210 | 35.671989 | 139.763965 | |
A1301 | 銀座・新橋・有楽町 | 1130226 | 35.666195 | 139.758587 | |
A1301 | 銀座・新橋・有楽町 | 1130225 | 35.675441 | 139.763806 | |
A1302 | 東京・日本橋 | 1130224 | 35.681391 | 139.766103 | |
A1302 | 東京・日本橋 | 2800109 | 35.682078 | 139.773516 | |
A1303 | 渋谷・恵比寿・代官山 | 1130205 | 35.658871 | 139.701238 | |
A1303 | 渋谷・恵比寿・代官山 | 1130204 | 35.646685 | 139.71007 | |
A1303 | 渋谷・恵比寿・代官山 | 2600102 | 35.648193 | 139.703284 | |
A1304 | 新宿・代々木・大久保 | 1130208 | 35.689729 | 139.700464 | |
A1304 | 新宿・代々木・大久保 | 1130207 | 35.683061 | 139.702042 | |
A1304 | 新宿・代々木・大久保 | 1130209 | 35.700875 | 139.700261 | |
A1305 | 池袋〜高田馬場・早稲田 | 1130212 | 35.730256 | 139.711086 | |
A1305 | 池袋〜高田馬場・早稲田 | 1130211 | 35.720476 | 139.706228 | |
A1305 | 池袋〜高田馬場・早稲田 | 1130210 | 35.712677 | 139.703715 | |
A1305 | 池袋〜高田馬場・早稲田 | 2800404 | 35.705723 | 139.721319 | |
A1306 | 原宿・表参道・青山 | 1130206 | 35.670646 | 139.702592 | |
A1306 | 原宿・表参道・青山 | 2800118 | 35.665247 | 139.712314 | |
A1306 | 原宿・表参道・青山 | 2800116 | 35.672765 | 139.724159 | |
A1307 | 六本木・麻布・広尾 | 2800318 | 35.662836 | 139.731443 | |
A1307 | 六本木・麻布・広尾 | 9930123 | 35.656503 | 139.736116 | |
A1307 | 六本木・麻布・広尾 | 2800319 | 35.652279 | 139.722202 | |
A1308 | 赤坂・永田町・溜池 | 2800515 | 35.67323 | 139.738348 | |
A1308 | 赤坂・永田町・溜池 | 2800616 | 35.678757 | 139.740258 | |
A1308 | 赤坂・永田町・溜池 | 2800114 | 35.673621 | 139.741419 | |
A1309 | 四谷・市ヶ谷・飯田橋 | 2800215 | 35.687958 | 139.720103 | |
A1309 | 四谷・市ヶ谷・飯田橋 | 9930404 | 35.692594 | 139.735794 | |
A1309 | 四谷・市ヶ谷・飯田橋 | 1131316 | 35.701835 | 139.745143 | |
A1310 | 秋葉原・神田・水道橋 | 1130222 | 35.698619 | 139.773288 | |
A1310 | 秋葉原・神田・水道橋 | 1131202 | 35.691173 | 139.770641 | |
A1310 | 秋葉原・神田・水道橋 | 1131317 | 35.702039 | 139.754312 | |
A1311 | 上野・浅草・日暮里 | 1130220 | 35.71379 | 139.777043 | |
A1311 | 上野・浅草・日暮里 | 9930218 | 35.709461 | 139.79697 | |
A1311 | 上野・浅草・日暮里 | 1130218 | 35.727908 | 139.771287 | |
A1314 | 浜松町・田町・品川 | 1130227 | 35.655391 | 139.757135 | |
A1314 | 浜松町・田町・品川 | 1130228 | 35.645736 | 139.747575 | |
A1314 | 浜松町・田町・品川 | 1130229 | 35.62876 | 139.738999 | |
A1316 | 目黒・白金・五反田 | 1130203 | 35.633923 | 139.715775 | |
A1316 | 目黒・白金・五反田 | 2800918 | 35.637917 | 139.726133 | |
A1316 | 目黒・白金・五反田 | 1130202 | 35.625974 | 139.723822 | |
A1323 | 大塚・巣鴨・駒込・赤羽 | 1130213 | 35.731412 | 139.728584 | |
A1323 | 大塚・巣鴨・駒込・赤羽 | 1130214 | 35.733445 | 139.739303 | |
A1323 | 大塚・巣鴨・駒込・赤羽 | 1130215 | 35.736825 | 139.748053 | |
A1323 | 大塚・巣鴨・駒込・赤羽 | 1133210 | 35.778026 | 139.720928 | |
A1312 | 両国・錦糸町・小岩 | 1131321 | 35.69579 | 139.793334 | |
A1312 | 両国・錦糸町・小岩 | 1131322 | 35.696802 | 139.814136 | |
A1312 | 両国・錦糸町・小岩 | 1131325 | 35.716903 | 139.857777 | |
A1313 | 築地・湾岸・お台場 | 9930119 | 35.664895 | 139.766915 | |
A1313 | 築地・湾岸・お台場 | 1132605 | 35.646172 | 139.827402 | |
A1313 | 築地・湾岸・お台場 | 9931107 | 35.625908 | 139.771435 | |
A1315 | 大井・蒲田 | 1133228 | 35.606257 | 139.73485 | |
A1315 | 大井・蒲田 | 1133230 | 35.562517 | 139.716032 | |
A1317 | 東急沿線 | 2600103 | 35.643854 | 139.698621 | |
A1317 | 東急沿線 | 2600105 | 35.628786 | 139.68522 | |
A1317 | 東急沿線 | 2600107 | 35.607224 | 139.668664 | |
A1317 | 東急沿線 | 2600303 | 35.643716 | 139.670156 | |
A1317 | 東急沿線 | 2600202 | 35.626526 | 139.71469 | |
A1317 | 東急沿線 | 2600503 | 35.615928 | 139.714862 | |
A1318 | 京王・小田急沿線 | 2400603 | 35.65868 | 139.684308 | |
A1318 | 京王・小田急沿線 | 2400605 | 35.661539 | 139.66691 | |
A1318 | 京王・小田急沿線 | 2400612 | 35.683253 | 139.615115 | |
A1318 | 京王・小田急沿線 | 2400105 | 35.671092 | 139.659413 | |
A1319 | 中野〜西荻窪 | 1131307 | 35.705765 | 139.665835 | |
A1319 | 中野〜西荻窪 | 1131306 | 35.705326 | 139.649664 | |
A1319 | 中野〜西荻窪 | 1131303 | 35.703842 | 139.599361 | |
A1321 | 西武沿線 | 2200102 | 35.726572 | 139.694363 | |
A1321 | 西武沿線 | 2200303 | 35.737893 | 139.654368 | |
A1321 | 西武沿線 | 9930138 | 35.758526 | 139.628603 | |
A1322 | 板橋・東武沿線 | 2100102 | 35.741283 | 139.716749 | |
A1322 | 板橋・東武沿線 | 1132106 | 35.745435 | 139.719507 | |
A1322 | 板橋・東武沿線 | 2800608 | 35.73323 | 139.698715 | |
A1322 | 板橋・東武沿線 | 2100104 | 35.748398 | 139.702589 | |
A1324 | 千住・綾瀬・葛飾 | 1132005 | 35.749677 | 139.804872 | |
A1324 | 千住・綾瀬・葛飾 | 2800502 | 35.762222 | 139.825019 | |
A1324 | 千住・綾瀬・葛飾 | 2300302 | 35.756323 | 139.875188 | |
A1320 | 吉祥寺・三鷹・武蔵境 | 1131302 | 35.703119 | 139.579765 | |
A1320 | 吉祥寺・三鷹・武蔵境 | 1131301 | 35.702683 | 139.560325 | |
A1320 | 吉祥寺・三鷹・武蔵境 | 1131221 | 35.702083 | 139.543402 | |
A1325 | 小金井・国分寺・国立 | 1131223 | 35.701337 | 139.506483 | |
A1325 | 小金井・国分寺・国立 | 1131106 | 35.700123 | 139.480841 | |
A1325 | 小金井・国分寺・国立 | 1131226 | 35.69923 | 139.44634 | |
A1326 | 調布・府中・狛江 | 2400118 | 35.652181 | 139.543988 | |
A1326 | 調布・府中・狛江 | 1130320 | 35.665766 | 139.477142 | |
A1326 | 調布・府中・狛江 | 2500116 | 35.632001 | 139.577127 | |
A1327 | 町田・稲城・多摩 | 1130611 | 35.542004 | 139.445579 | |
A1327 | 町田・稲城・多摩 | 1130318 | 35.644184 | 139.502811 | |
A1327 | 町田・稲城・多摩 | 1130319 | 35.649249 | 139.489781 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"type":"Topology","objects":{"tokyo23":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"13101","arcs":[[0,1,2,3,4]]},{"type":"Polygon","id":"13102","arcs":[[5,6,7,8,-1,9]]},{"type":"Polygon","id":"13103","arcs":[[10]]},{"type":"Polygon","id":"13103","arcs":[[11]]},{"type":"Polygon","id":"13103","arcs":[[12]]},{"type":"Polygon","id":"13103","arcs":[[13,14]]},{"type":"Polygon","id":"13103","arcs":[[15]]},{"type":"Polygon","id":"13103","arcs":[[16]]},{"type":"Polygon","id":"13103","arcs":[[17,18,19]]},{"type":"Polygon","id":"13103","arcs":[[20]]},{"type":"Polygon","id":"13103","arcs":[[-2,-9,21,22,23,24]]},{"type":"Polygon","id":"13104","arcs":[[25,-3,-25,26,27,28]]},{"type":"Polygon","id":"13105","arcs":[[29,30,31,-4,-26,32]]},{"type":"Polygon","id":"13106","arcs":[[33,34,-10,-5,-32]]},{"type":"Polygon","id":"13107","arcs":[[35,36,37,38,39,-6,-35]]},{"type":"Polygon","id":"13108","arcs":[[40]]},{"type":"Polygon","id":"13108","arcs":[[41]]},{"type":"Polygon","id":"13108","arcs":[[42]]},{"type":"Polygon","id":"13108","arcs":[[43]]},{"type":"Polygon","id":"13108","arcs":[[44]]},{"type":"Polygon","id":"13108","arcs":[[45]]},{"type":"Polygon","id":"13108","arcs":[[46,-18,47]]},{"type":"Polygon","id":"13108","arcs":[[48]]},{"type":"Polygon","id":"13108","arcs":[[49]]},{"type":"Polygon","id":"13108","arcs":[[50]]},{"type":"Polygon","id":"13108","arcs":[[51]]},{"type":"Polygon","id":"13108","arcs":[[52]]},{"type":"Polygon","id":"13108","arcs":[[53]]},{"type":"Polygon","id":"13108","arcs":[[54]]},{"type":"Polygon","id":"13108","arcs":[[55]]},{"type":"Polygon","id":"13108","arcs":[[56]]},{"type":"Polygon","id":"13108","arcs":[[57]]},{"type":"Polygon","id":"13108","arcs":[[58]]},{"type":"Polygon","id":"13108","arcs":[[59]]},{"type":"Polygon","id":"13108","arcs":[[60]]},{"type":"Polygon","id":"13108","arcs":[[61]]},{"type":"Polygon","id":"13108","arcs":[[62]]},{"type":"Polygon","id":"13108","arcs":[[63]]},{"type":"Polygon","id":"13108","arcs":[[64]]},{"type":"Polygon","id":"13108","arcs":[[65]]},{"type":"Polygon","id":"13108","arcs":[[66]]},{"type":"Polygon","id":"13108","arcs":[[67]]},{"type":"Polygon","id":"13108","arcs":[[68]]},{"type":"Polygon","id":"13108","arcs":[[69]]},{"type":"Polygon","id":"13108","arcs":[[70]]},{"type":"Polygon","id":"13108","arcs":[[71]]},{"type":"Polygon","id":"13108","arcs":[[72]]},{"type":"Polygon","id":"13108","arcs":[[73]]},{"type":"Polygon","id":"13108","arcs":[[74]]},{"type":"Polygon","id":"13108","arcs":[[75]]},{"type":"Polygon","id":"13108","arcs":[[76]]},{"type":"Polygon","id":"13108","arcs":[[77]]},{"type":"Polygon","id":"13108","arcs":[[78]]},{"type":"Polygon","id":"13108","arcs":[[79]]},{"type":"Polygon","id":"13108","arcs":[[80]]},{"type":"Polygon","id":"13108","arcs":[[81]]},{"type":"Polygon","id":"13108","arcs":[[82]]},{"type":"Polygon","id":"13108","arcs":[[83]]},{"type":"Polygon","id":"13108","arcs":[[84]]},{"type":"Polygon","id":"13108","arcs":[[85]]},{"type":"Polygon","id":"13108","arcs":[[86]]},{"type":"Polygon","id":"13108","arcs":[[87]]},{"type":"Polygon","id":"13108","arcs":[[88]]},{"type":"Polygon","id":"13108","arcs":[[89]]},{"type":"Polygon","id":"13108","arcs":[[90]]},{"type":"Polygon","id":"13108","arcs":[[91]]},{"type":"Polygon","id":"13108","arcs":[[92]]},{"type":"Polygon","id":"13108","arcs":[[93]]},{"type":"Polygon","id":"13108","arcs":[[94]]},{"type":"Polygon","id":"13108","arcs":[[95]]},{"type":"Polygon","id":"13108","arcs":[[96]]},{"type":"Polygon","id":"13108","arcs":[[97]]},{"type":"Polygon","id":"13108","arcs":[[98]]},{"type":"Polygon","id":"13108","arcs":[[99]]},{"type":"Polygon","id":"13108","arcs":[[100]]},{"type":"Polygon","id":"13108","arcs":[[101]]},{"type":"Polygon","id":"13108","arcs":[[102]]},{"type":"Polygon","id":"13108","arcs":[[103]]},{"type":"Polygon","id":"13108","arcs":[[104]]},{"type":"Polygon","id":"13108","arcs":[[105]]},{"type":"Polygon","id":"13108","arcs":[[106]]},{"type":"Polygon","id":"13108","arcs":[[107]]},{"type":"Polygon","id":"13108","arcs":[[108]]},{"type":"Polygon","id":"13108","arcs":[[109]]},{"type":"Polygon","id":"13108","arcs":[[110]]},{"type":"Polygon","id":"13108","arcs":[[111]]},{"type":"Polygon","id":"13108","arcs":[[112,113,-7,-40]]},{"type":"Polygon","id":"13109","arcs":[[114,115]]},{"type":"Polygon","id":"13109","arcs":[[116,-19,-47]]},{"type":"Polygon","id":"13109","arcs":[[-14,117]]},{"type":"Polygon","id":"13109","arcs":[[118,119,120,121,-23]]},{"type":"Polygon","id":"13110","arcs":[[122,123,-121,124]]},{"type":"Polygon","id":"13111","arcs":[[125]]},{"type":"Polygon","id":"13111","arcs":[[126]]},{"type":"Polygon","id":"13111","arcs":[[127]]},{"type":"Polygon","id":"13111","arcs":[[128]]},{"type":"Polygon","id":"13111","arcs":[[-115,129]]},{"type":"Polygon","id":"13111","arcs":[[-120,130,131,-125]]},{"type":"Polygon","id":"13112","arcs":[[132,133,-123,-132,134]]},{"type":"Polygon","id":"13113","arcs":[[-24,-122,-124,-134,135,136,-27]]},{"type":"Polygon","id":"13114","arcs":[[137,-28,-137,138,139]]},{"type":"Polygon","id":"13115","arcs":[[-136,-133,140,141,-139]]},{"type":"Polygon","id":"13116","arcs":[[142,-33,-29,-138,143,144]]},{"type":"Polygon","id":"13117","arcs":[[145,146,-30,-143,147,148]]},{"type":"Polygon","id":"13118","arcs":[[-36,-34,-31,-147,149]]},{"type":"Polygon","id":"13119","arcs":[[-148,-145,150,151]]},{"type":"Polygon","id":"13120","arcs":[[-144,-140,-142,152,-151]]},{"type":"Polygon","id":"13121","arcs":[[153,-37,-150,-146,154]]},{"type":"Polygon","id":"13122","arcs":[[155,-38,-154,156]]},{"type":"Polygon","id":"13123","arcs":[[157]]},{"type":"Polygon","id":"13123","arcs":[[158]]},{"type":"Polygon","id":"13123","arcs":[[159]]},{"type":"Polygon","id":"13123","arcs":[[-113,-39,-156,160]]}]}},"arcs":[[[6170,5917],[0,-5],[0,-1],[0,-6],[-13,2],[0,-3],[0,-1],[0,-2],[-1,-13],[-1,-1],[0,-9],[-1,-6],[4,-4],[2,-1],[10,-10],[1,-2],[0,-1],[-13,-12],[-1,0],[-1,-2],[-22,-19],[-1,-1],[-3,-3],[-3,-2],[-19,-16],[-1,-1],[-1,-1],[-1,-1],[-6,6],[-1,-1],[-4,-3],[-1,-1],[-28,-23],[-2,-2],[-2,-2],[-27,-15],[-2,-1],[-3,-1],[-3,-1],[-20,-9],[-2,-1],[-2,0],[-13,-6],[-2,-1],[-20,-9],[-2,-1],[-3,-1],[-3,-2],[-1,0],[-1,0],[-1,-1],[-11,-5],[-18,-7],[-1,0],[-35,-14],[-4,-2],[-3,-1],[-13,-5],[-23,-8],[-1,-1],[-17,-6],[0,-6],[0,-1],[0,-8],[-2,-9],[-1,-1],[-2,-5],[0,-1],[-3,-10],[-2,-7],[-2,-5],[-1,-2],[-3,-9],[0,-1],[-1,-3],[-1,-4],[-1,-3],[-2,-5],[13,-26],[8,-25],[6,-17],[7,-13],[0,-4],[0,-18],[-1,-7],[0,-1],[0,-10],[-1,-20],[0,-12],[0,-2],[0,-2],[-1,-21],[0,-3],[0,-2],[0,-9],[-1,-4],[0,-1],[0,-2],[-2,-11],[0,-1],[0,-2],[-2,-10],[0,-2],[0,-3],[-1,-6],[-2,-14],[-1,-12],[-1,-1],[0,-2],[-3,-23],[0,-1],[-1,0],[-1,-2],[-8,-8],[-1,-1],[-7,-8],[-10,-10],[-2,-3],[-8,-8],[-1,-1],[-1,-1],[-1,-2],[-3,-3],[-5,-5],[-4,-4],[-3,-4],[-9,-9],[-1,-1],[-1,-1],[0,-1],[-8,-8],[-1,-1],[-8,-9],[-2,-1],[-6,-6],[-6,-7],[-2,-2],[-2,-3],[-1,0],[-5,-6],[-4,-5],[-1,0],[-1,-1],[-24,-26],[-2,-2],[-2,-2],[-26,-28],[-1,-2],[-17,-17],[-9,-4],[-21,-6],[-14,-5],[-4,-1],[-8,-3],[-3,-1],[-20,-7],[-3,-1],[-7,-2],[-3,-1],[-5,-2],[-12,-4],[-5,-1],[-3,-2],[-9,-2],[-2,-1],[-9,-3],[-9,-3],[-4,-2],[-1,0],[-7,-2],[-15,-5],[-14,-5],[-16,-5],[-7,-2],[-3,-1],[-46,-16],[-4,-1]],[[5378,5019],[-41,12],[-20,4],[-4,1],[-5,1],[-20,4],[-30,8],[-1,1],[-1,0],[-1,0],[-12,0],[-8,-2],[-1,0],[-2,-2],[-5,-5],[-2,-2],[-1,-1],[-19,-19],[-1,-1],[-9,-9],[-4,0],[-1,0],[-4,1],[-8,9],[-6,5],[0,7],[-1,8],[-5,0],[-4,-1],[-11,1],[-3,1],[-4,1],[-17,3],[-1,1],[-1,10],[-3,1],[-2,0],[-4,1],[-24,5],[-14,2],[-5,2],[-3,2],[-4,2],[-1,1],[-7,5],[-10,7],[-8,6],[-16,13],[-1,1],[-2,1],[-4,3],[-2,1],[-3,2],[-11,8],[-20,15],[-5,3],[-3,2],[-13,10],[-2,2],[-2,2],[-6,5],[-1,1],[-2,5],[-2,5],[-4,9],[0,2],[-2,7],[-1,4],[-1,6],[-3,6],[-1,2],[-1,2],[-4,10],[-2,6],[-3,4],[-7,11],[-10,16],[-3,15],[-5,24],[-1,2],[-1,1],[-1,3],[-3,7],[-1,2],[-2,4],[-1,4],[-1,2],[-2,4],[-8,-2],[-16,-2],[-16,-1],[-9,0],[-8,0],[-9,1],[-7,1],[-4,1],[-5,2],[-8,6],[-5,6],[-1,3],[-1,0],[-4,7],[-2,6],[-2,7],[-2,8],[0,2],[-4,9],[-5,5],[-5,4],[-3,3],[-10,8],[-5,4],[-1,1],[-2,2],[-3,2],[0,1],[-3,4]],[[4737,5409],[-8,16],[-5,12],[-1,1],[-7,18],[-4,12],[-1,3],[0,1],[-2,6],[-2,10],[-3,14],[-1,9],[-3,5],[0,1],[-2,7],[0,1],[-1,6],[-1,4],[-1,5],[0,6],[1,5],[1,3],[3,4],[0,6],[2,8],[0,4],[0,2],[1,4],[0,3],[3,9],[8,19],[2,11],[1,8],[2,6],[3,6],[1,6],[1,4],[2,7],[2,6],[2,3],[4,6],[5,5],[3,2],[11,6],[6,3],[7,4],[8,5],[8,7],[7,5],[18,15],[2,2],[8,6],[17,11],[9,5],[1,1],[11,7],[4,2],[7,4],[1,1],[1,0],[3,3],[13,10],[8,8],[16,16],[6,8],[1,3],[11,14],[18,25],[6,10],[7,13],[1,0],[17,31],[41,63],[1,0],[4,8],[2,2],[10,15],[19,26],[3,4],[3,3],[3,4],[5,7],[7,10],[4,6],[4,5],[10,15],[-11,11],[-1,1],[5,4],[2,3],[3,3],[3,3],[5,4],[0,1],[4,4],[0,1],[3,0],[3,-3],[2,1],[1,0],[5,4],[1,0],[3,2],[1,0],[3,3],[1,0],[3,2],[5,4],[2,1],[7,6]],[[5141,6131],[3,3],[13,4],[7,2],[2,-2],[35,1],[29,-1],[19,-3],[7,-4],[1,0],[9,-5],[5,-1],[8,-3],[57,-5],[36,-5],[34,-8],[8,-2],[8,-2],[37,-9],[11,-1],[20,-1],[1,0],[4,0],[61,-1],[18,-2],[14,-4],[12,-7],[19,-21],[15,-10],[4,-2],[27,-9],[1,0],[29,-9],[11,-3],[6,3],[4,2],[2,0],[3,2],[3,2],[1,0],[5,3],[7,4],[5,-2],[1,0],[4,-1],[3,-1],[20,-10],[1,3],[2,4],[1,3],[2,5],[-20,17],[-3,3],[5,7],[-12,7],[-4,-5],[-2,3],[-2,2],[-9,11],[-4,4],[-1,0],[-7,6],[4,11],[1,1],[2,9],[1,0],[2,8],[30,-2],[1,5],[7,0],[-1,7],[0,5],[0,7],[0,1],[0,5],[4,-1],[4,0],[2,0],[1,0],[8,-1],[1,0],[8,0],[1,0],[1,0],[5,-1],[7,0],[3,0],[6,-1],[2,11],[1,1],[0,2],[3,14],[0,11],[0,3],[0,3],[1,17],[0,1],[0,1],[0,3]],[[5822,6213],[2,0],[3,-1],[1,0],[2,0],[24,-2],[2,-1],[1,0],[12,-1],[23,-2],[1,0],[6,-1],[4,-1],[0,-2],[0,-2],[-2,-18],[0,-2],[-2,-20],[0,-1],[0,-1],[-3,-20],[3,0],[1,0],[11,-2],[2,0],[8,-1],[-1,-4],[-3,-6],[-10,-29],[3,-1],[8,-4],[5,-2],[14,-6],[7,-3],[3,-1],[2,-1],[1,-1],[8,-3],[1,0],[2,-2],[8,-3],[2,-1],[5,-2],[4,-2],[2,-1],[9,-3],[4,-2],[10,-4],[6,-1],[2,0],[42,-4],[8,-1],[9,-1],[2,0],[1,0],[26,-2],[3,-1],[6,0],[0,-2],[-1,-3],[-1,-4],[0,-2],[-6,-42],[-1,-2],[-3,-21],[3,0],[3,-1],[4,0],[11,-1],[13,-1],[2,-1],[13,-1],[1,0],[1,0],[13,-1],[2,-1],[1,0],[9,-1],[-1,-3],[0,-1],[0,-6],[-1,-6],[0,-3],[-1,-12],[0,-2],[0,-3],[0,-1],[0,-2],[-1,-4]],[[6349,5854],[-5,-22],[-2,-22],[2,-32],[5,-26],[0,-1],[7,-21],[6,-12],[8,-16],[21,-30]],[[6391,5672],[35,-45],[9,-10],[3,-6],[8,-13],[8,-21],[3,-16],[0,-29],[-3,-26],[-7,-30],[-3,-5],[-5,-10],[-7,-16],[-2,-2],[-4,-5],[-14,-21],[-11,-16],[-26,-40],[-17,-24],[-4,-6],[-3,-7],[-8,-15],[-24,-52],[-7,-23],[-1,-1],[-1,-3],[-7,-36],[0,-4],[-3,-16],[-1,-20],[1,-34],[0,-21],[4,-28],[7,-28],[7,-24],[4,-8],[18,-61],[5,-15],[0,-1],[3,-16],[1,-8],[1,-5],[3,-30],[2,-32],[1,-36],[-2,-46],[1,-42],[0,-9],[3,-54],[1,-10],[2,-17],[1,-4],[1,-10],[3,-31],[2,-25]],[[6368,4559],[-2,0],[-28,-3],[-5,-5],[-8,-6],[-8,-6],[0,-1],[-41,-33],[-6,-5],[-8,-6],[-10,-9],[-8,-5],[-10,-9],[-10,-8],[-5,-3],[-2,-2],[-10,-8],[-3,-3],[-3,-2],[-4,-4],[-5,-3],[-10,-9],[-16,-12],[-15,-13],[-10,-7],[-3,-3],[-7,-6],[-8,-6],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-2,-1],[-12,-10],[-12,1],[-7,1],[-24,-20],[-64,-52],[-38,-31],[-1,0],[-62,-51],[-1,1],[-22,26],[-2,2],[-24,28],[-1,2],[-19,23],[-5,6],[-4,-3],[-1,1],[4,3],[-17,20],[7,6],[-1,2],[-4,4],[2,1],[3,-4],[1,-2],[22,18],[62,50],[-10,11],[-8,10],[-10,12],[-4,4],[-92,-75],[-20,24],[-9,-1],[-2,21],[-1,7],[0,4],[0,4],[-1,4],[0,4],[-1,7],[0,4],[-2,24],[9,1],[-4,60],[23,20],[44,-51],[28,22],[-38,45],[-2,-2],[-12,14],[-20,23],[-24,28],[-4,-4],[-11,-10],[-1,0],[-28,-24],[0,1],[-25,-22],[-5,-7]],[[5666,4556],[-15,10],[-16,10],[-9,1],[-13,9],[-63,43],[-13,9],[-7,3],[-6,3],[-2,1],[-3,2],[-3,2],[-7,2],[-8,11],[-3,5],[-7,10],[-1,0],[-5,8],[5,33],[1,1],[2,17],[1,4],[0,36],[-2,18],[-1,17],[0,3],[0,2],[-1,1],[0,4],[0,1],[-8,46],[-4,42],[0,1],[0,4],[0,28],[5,34],[-3,1],[-1,1],[-27,9],[-1,1],[-1,0],[-7,3],[-28,11],[-4,2],[-33,14]],[[6170,5917],[22,-4],[1,0],[1,0],[34,-13],[24,-9],[1,0],[11,-5],[42,-16],[43,-16]],[[5854,3621],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,1],[0,1],[0,1],[1,1],[1,0],[1,0],[1,-1],[0,-1]],[[5731,3598],[8,-6],[12,-8],[-2,-2],[-12,8],[-3,2],[-3,-3],[-6,4],[0,-1],[-1,0],[-1,-2],[1,0],[-4,-6],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,2],[2,3],[0,-1],[15,23],[1,1],[18,28],[10,15],[0,1],[1,1],[1,0],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-5,-9],[-12,-18],[-12,-19],[0,-1],[0,-1],[0,-1],[1,0]],[[5824,3741],[7,-10],[-1,-1],[-2,4],[-4,-1],[-1,-1],[-2,-1],[-1,-1],[-2,0],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-17,-24],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-7,4],[-1,1],[0,1],[0,1],[1,1],[17,27],[27,42],[1,1],[1,2],[0,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-4]],[[5521,3607],[-30,-2],[-1,0],[-19,0],[-6,-1],[0,-7],[2,-57],[1,-34],[0,-21],[0,-3],[0,-7],[-39,-1],[-13,-1],[-29,0],[-6,0],[-23,1],[-2,0],[-1,-1]],[[5355,3473],[0,2],[2,31],[1,14],[-3,1],[1,6],[2,0],[1,12],[-3,0],[1,3],[2,0],[4,72],[1,12],[0,8],[-1,0],[0,4],[0,3],[2,0],[0,6],[1,5],[0,1],[0,5],[0,6],[2,33],[1,8],[2,4],[0,1],[2,6],[1,3],[1,1],[0,1],[11,28],[1,3],[2,0],[0,1],[-2,0],[2,4],[11,29],[4,10],[12,0],[0,3],[14,0],[6,0],[4,0],[1,0],[0,-2],[1,0],[0,-1],[7,0],[4,0],[0,1],[-2,0],[0,2],[9,1],[0,-2],[-3,0],[0,-2],[3,0],[1,0],[7,0],[1,0],[4,0],[4,0],[0,1],[3,0],[0,2],[-2,0],[0,1],[-1,2],[4,0],[0,-4],[1,0],[0,-2],[8,0],[1,0],[23,0],[1,0],[0,-1],[0,-9],[6,-179]],[[5496,3802],[0,-2],[-3,0],[0,2],[3,0]],[[5724,3774],[-3,-1],[-27,9],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[1,4],[1,1],[0,2],[1,1],[0,1],[1,2],[1,1],[0,2],[1,1],[1,2],[0,2],[0,1],[1,2],[0,1],[0,2],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[2,-1],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[1,0],[2,-1],[2,-1],[2,0],[1,0],[2,-1],[2,0],[2,0],[1,0],[2,0],[2,-1],[1,0],[3,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,-2],[-3,-9],[-2,-4],[-5,-2],[-10,-6],[-1,0]],[[6166,3657],[-7,-4],[-6,-3],[-5,-4],[-4,-2],[-36,-23],[-44,-28],[-24,-14],[-18,-12],[-13,-10],[-9,-6],[-21,-14],[-20,-14],[-1,0],[-24,-17],[-1,-1],[-9,-7],[-9,-6],[-14,-12],[-36,-30],[-7,-6],[-2,-1]],[[5856,3443],[-9,13],[-29,46],[-2,4],[-4,5],[-21,31],[-5,7],[-4,5]],[[5782,3554],[3,1],[2,2],[3,2],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,-1],[0,1],[1,0],[1,1],[2,1],[1,1],[1,1],[1,1],[1,1],[2,1],[1,1],[2,1],[2,0],[1,0],[1,1],[2,1],[2,1],[2,2],[2,1],[3,3],[2,1],[1,1],[1,0],[3,1],[4,2],[2,1],[1,1],[2,2],[6,6],[4,4],[3,3],[1,2],[1,1],[1,2],[0,1],[1,2],[0,1],[0,2],[0,1],[1,0],[0,1],[1,0],[1,0],[2,-1],[3,0],[8,-2],[2,0],[1,0],[1,1],[2,0],[2,1],[2,2],[4,3],[2,2],[9,5],[1,0],[0,1],[1,1],[0,1],[-6,9],[-1,-1],[-2,2],[2,2],[9,-13],[7,5],[14,9],[10,7],[1,0],[-1,16],[-1,0],[-1,3],[0,1],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,1],[1,0],[1,0],[1,0],[1,1],[2,1],[2,1],[1,1],[2,1],[2,2],[2,1],[2,2],[1,1],[2,2],[2,2],[3,1],[0,1],[1,0],[1,1],[4,4],[2,1],[2,2],[2,1],[3,2],[1,1],[5,3],[3,2],[2,1],[2,2],[2,1],[2,2],[2,1],[1,1],[2,2],[2,1],[2,1],[2,1],[2,0],[2,0],[2,1],[1,0],[2,1],[2,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,1],[1,1],[1,1],[0,2],[0,2],[0,3],[1,2],[-1,2],[0,3],[-1,2],[0,3],[-1,2],[-1,3],[-1,2],[-1,3],[-1,3],[-1,2],[-1,3],[-2,2],[-2,5],[-2,4],[-1,2],[-2,3],[-2,3],[-1,3],[-2,3],[-1,0],[-1,2],[-1,3],[-2,3],[-2,2],[-1,2],[-2,2],[-1,3],[-3,2],[-1,2],[-2,3],[-3,4],[-1,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-1,1],[-3,2],[-1,1],[-1,0],[-1,1],[-2,2],[-3,1],[-2,-2],[-8,-5],[-16,-11],[-18,-12],[-7,-21],[-8,-25],[-51,17],[1,2],[-1,1],[0,2],[0,2],[0,1],[1,2],[0,2],[1,2],[0,2],[1,2],[1,2],[1,2],[1,1],[0,2],[2,3],[1,2],[2,2],[3,10],[4,1],[1,1],[-6,11],[0,1],[1,-1],[3,-6],[2,-5],[1,0],[4,2],[21,-6],[2,8],[14,-4],[1,0],[2,1],[20,13],[7,4],[25,17],[1,0],[6,4],[2,1],[13,9],[2,1],[2,1],[8,6],[1,1],[2,1],[6,4],[1,0],[2,-4],[-1,-1],[1,-1],[1,1],[3,-5],[3,2],[0,1],[2,1],[0,-1],[2,1],[15,-22],[11,-17],[20,-29],[15,-22],[2,-3],[22,-33],[14,-20],[6,-10],[6,-8],[18,-26],[1,-2],[3,-4],[1,-2],[1,-2],[9,-12],[2,-4],[2,-2],[3,-4]],[[5431,3906],[-1,0],[0,1],[1,0],[0,-1]],[[5666,4556],[-7,-9],[1,-1],[0,-1],[0,-1],[5,-3],[-57,-130],[-20,9],[-1,3],[-4,2],[0,-1],[-5,2],[-3,1],[-5,-7],[-5,-9],[-1,-5],[-1,-2],[-2,-8],[-5,-16],[4,-1],[-1,-5],[-1,-1],[-1,-5],[-2,-5],[0,-3],[-2,-7],[-2,-5],[-1,-3],[-1,-4],[-2,-7],[-2,-9],[-5,-14],[-1,-5],[-2,-6],[-3,-11],[-3,-9],[-2,-10],[-2,-8],[-2,-9],[-2,-9],[-1,-8],[-2,-8],[-1,-9],[-1,-5],[-3,-10],[-4,-11],[0,-13],[1,-2],[7,1],[28,0],[1,-112],[1,-138],[0,-10],[0,-17],[-22,0],[-20,-27],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-2,-1],[-2,0],[-3,-1],[-1,0],[-2,0],[0,2],[2,0],[2,0],[1,0],[3,1],[1,1],[2,1],[2,1],[1,2],[21,27],[-19,14],[-2,2],[0,-1],[-2,1],[-12,-18],[-1,0],[-7,-12],[-1,1],[8,13],[1,0],[11,17],[-11,8],[-1,0],[-1,1],[-9,6],[-4,2],[-1,1],[-3,2],[-24,15],[-2,2],[0,-1],[-14,-49],[-2,1],[12,40],[1,6],[1,0],[0,2],[1,2],[-13,8],[-20,13],[-21,-6],[0,-1],[1,-1],[-9,-23],[-8,-19],[-2,1],[-1,-2],[0,-1],[1,0],[-1,-1],[-6,-15],[-1,-1],[-1,0],[-2,-6],[3,-1],[0,1],[9,-3],[-1,-1],[1,-1],[1,2],[8,-4],[-1,-2],[1,0],[1,1],[2,-2],[0,-1],[-3,0],[0,1],[0,1],[-1,0],[0,-2],[-9,4],[1,1],[-1,1],[-1,-2],[-8,4],[0,1],[-3,1],[-19,-46],[-1,-5],[-4,-12],[-7,-17],[-1,-15],[2,0],[0,-2],[-2,0],[-1,-20],[-1,-18],[0,-1],[-1,0],[-2,-27],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-2,-17],[-1,-8],[0,-1],[1,0],[-1,-21],[0,-4],[0,-2],[-1,-2],[0,-10],[-3,-41],[-2,-22],[-4,-59],[0,-1],[-1,-1],[0,1],[-1,-7],[-8,-5],[0,9],[-20,-1],[0,-8],[1,0],[0,-1],[-1,0],[1,-5],[4,-1],[-1,0],[4,2],[1,0],[4,2],[0,-1],[-19,-10],[-2,-2],[-10,-5],[0,-11],[0,-2],[0,-4]],[[5264,3500],[-7,-4],[-1,0],[-2,-1],[-18,-8],[-3,-1],[-47,-28],[-20,-12],[-11,-3],[-5,-1],[-5,0],[-8,1],[-15,3],[-5,1],[-8,1],[-6,2],[-3,1],[-2,2],[-2,5],[-1,3],[-4,6],[-8,15],[-9,18],[-1,4],[-1,2],[-3,4],[-4,-1],[-8,-1],[-4,0],[-5,-1],[-7,-1],[-18,-4],[-17,-3],[-31,-6],[-20,-4],[-5,0],[-7,1],[-8,0],[-4,1],[-12,0],[-5,-1],[-6,-4],[5,-9],[-13,-13],[6,-11],[-24,-12],[-21,2],[-2,1],[-12,1],[-14,40],[-3,5],[-1,3],[-2,2],[-5,11],[-5,13],[-6,13],[-5,11],[-5,-1],[-9,-1],[-2,0],[-1,-1],[-13,-2],[-6,1],[-9,0],[-7,1],[-7,2],[-1,1],[-7,3],[-5,1],[-2,1],[-3,3],[-1,2],[0,1],[-1,1],[0,4],[0,3],[4,9],[1,4],[1,5],[-1,14],[2,14],[2,10],[2,13],[-15,3],[0,14],[-2,27],[0,2],[0,2],[0,4],[-2,5],[-4,7],[-2,3],[-6,6],[-2,2],[-10,9],[-4,3],[-7,6],[-2,-3],[-1,-1],[-3,-3],[-2,-3],[-5,6],[-8,8],[-1,2],[-2,5],[-2,9],[1,4],[3,10],[1,5],[-12,5],[-4,2],[-10,-24],[-3,-4],[-1,-2],[-2,-2],[-1,0],[-1,0],[-3,1],[-2,0],[-10,4],[-1,0],[-3,2],[-1,1],[-6,2],[1,6],[1,8],[-13,8],[2,11],[2,5],[4,12],[5,16],[2,4],[-3,3],[-6,6],[-15,17],[-11,4],[-4,1],[-13,4],[-11,2],[-12,2],[-1,0],[-22,5],[-26,10],[-7,3],[-1,-2],[0,-1],[-2,-6],[-1,-4],[-1,-4],[0,-2],[-10,-1],[-1,0],[-2,0],[-3,0],[-2,-5],[-1,-3],[-1,-2],[-1,-2],[-2,-1],[-5,-1],[-5,0],[-2,0],[-1,0],[-2,0],[-3,-1],[-2,-1],[-8,-6],[-7,-5],[-3,1],[-7,2],[-1,0],[-13,3],[-13,14],[-13,-2],[-10,-2],[-2,7],[-2,6],[-1,13],[7,2],[-1,6],[5,7],[2,2],[1,2],[2,3],[-19,26],[0,4],[0,3],[-3,5],[-3,8],[-2,3],[-1,1],[-8,5],[-7,5],[0,10],[0,15],[0,1],[0,2],[2,19],[1,5],[2,4],[1,2],[3,1],[5,2],[7,2],[4,2],[3,1],[2,3],[3,4],[2,3],[4,5],[2,3],[3,2],[10,5],[10,5],[6,2],[1,1],[5,4],[7,3],[1,0],[2,1],[-2,2],[-4,4],[-3,2],[-6,6]],[[4392,4073],[6,5],[3,3],[1,1],[4,5],[7,12],[2,3],[0,1],[4,6],[10,16],[2,4],[2,2],[8,13],[10,16],[4,0],[13,-1],[9,0],[2,0],[1,0],[2,0],[2,0],[4,7],[2,3],[2,3],[3,5],[-1,2],[-1,7],[-1,4],[-1,6],[5,7],[6,11],[5,11],[4,6],[1,2],[2,4],[-5,4],[-5,4],[-6,6],[1,2],[0,1],[1,2],[1,3],[1,2],[0,1],[3,9],[1,1],[0,1],[-4,15],[-3,8],[-2,11],[-5,22],[-2,8],[-1,8],[-1,2],[0,1],[-2,10],[0,5],[-1,2],[0,6],[0,4],[0,1],[-1,7],[-2,39],[0,4],[-6,1],[-1,0],[-4,0],[-2,1],[-2,1],[-2,3],[-2,5],[-2,13],[-3,20],[0,4],[0,3],[2,5],[12,30],[13,22],[2,5],[3,5],[1,2],[1,2],[1,5],[-4,-4],[-2,-2],[-2,-2],[-4,-3],[-3,-2],[-3,-3],[-2,0],[-2,0],[-1,0],[-8,2],[-5,3],[-38,16],[-48,20],[-8,4],[-4,1],[-5,-14],[-10,4],[-22,7],[-1,1],[-5,0],[-5,1],[-2,0],[-2,0],[-11,1],[-16,4],[-2,0],[-5,2],[-6,2],[-5,2],[-3,3],[-5,5],[-10,11],[-7,6],[-14,9],[-3,2],[-3,2],[-3,2],[4,6],[7,9],[3,4],[2,3],[9,19],[1,3],[-15,10],[-11,8],[-1,1],[-1,0],[-11,9],[-1,0],[-2,1],[-4,4],[-4,4],[-5,5],[-5,8],[-3,4],[-13,18],[-15,21],[-8,11],[-1,2],[-6,5],[0,1],[-2,2],[-18,13],[-21,18],[1,3],[1,2],[2,6],[17,21],[0,1],[1,1],[5,7],[1,1],[1,1],[8,10],[8,11],[2,1],[1,1],[5,2],[3,1],[1,1],[3,1],[1,0],[3,1],[3,3],[2,2],[0,1],[7,10],[3,3],[4,1],[1,2],[7,9],[24,33],[7,8],[16,22],[9,12],[17,-5],[4,6],[3,5],[2,2],[-3,4],[-9,7],[-3,2],[0,1],[-3,1],[0,1],[-10,8],[3,7],[5,12],[6,9],[0,10],[2,4],[6,10],[0,1],[1,2],[2,5],[-8,4],[5,9],[1,3],[3,2],[8,13],[15,-7],[7,-3],[10,-5],[1,-1],[3,-2],[9,-3],[1,0],[3,1],[3,2],[6,4],[-2,4],[-1,2],[-1,3],[-1,2],[-4,10],[-2,3],[-1,5]],[[4318,5138],[3,1],[16,5],[25,10],[16,9],[16,8],[5,2],[4,8],[4,8],[0,1],[1,0],[5,11],[-2,5],[0,2],[-3,8],[1,2],[-2,16],[-4,12],[7,3],[-8,22],[3,2],[4,2],[3,1],[-4,11],[-6,15],[-2,3],[3,3],[4,-3],[3,0],[1,4],[0,3],[1,2],[4,3],[2,2],[9,7],[5,3],[15,7],[1,-3],[10,-13],[17,6],[12,1],[2,-17],[2,-10],[15,10],[-1,7],[-1,2],[-1,7],[0,1],[1,2],[13,-1],[5,0],[6,1],[2,1],[2,1],[13,5],[1,0],[7,1],[2,-1],[0,-1],[3,-2],[7,-4],[5,0],[5,1],[9,-1],[5,-3],[15,9],[1,4],[3,8],[2,5],[5,11],[2,4],[8,19],[2,9],[2,15],[2,4],[2,5],[1,3],[14,26],[3,5],[1,1],[2,0],[16,0],[13,0],[4,-10],[1,-1],[2,-7],[2,-3],[9,-16],[8,-14],[1,-1],[5,-9],[6,4],[0,1],[2,1],[2,2],[12,8]],[[4485,6446],[-2,-1],[0,-2],[-5,-6],[-3,-4],[-2,-8],[0,-2],[1,-1],[4,-6],[7,-4],[12,-6],[1,-1],[1,0],[4,-1],[1,-3],[1,-5],[0,-4],[1,-8],[7,-4],[15,-4],[3,0],[4,-1],[20,-8],[5,-5],[1,0],[1,-2],[3,-6],[1,-4],[7,-3],[7,-3],[2,-1],[7,4],[3,3],[2,1],[1,1],[5,4],[2,1],[9,5],[8,4],[3,2],[17,-2],[1,-3],[1,-4],[1,-4],[1,-2],[2,-1],[5,-3],[1,0],[2,-1],[2,-1],[13,1],[1,0],[1,0],[17,1],[2,0],[7,1],[32,0],[7,-2],[4,-1],[5,-1],[3,-1],[-1,-4],[-1,-7],[0,-1],[-4,-19],[1,-1],[0,-1],[0,-2],[16,-20],[5,-7],[1,-1],[2,0],[2,0],[2,0],[6,-1],[9,11],[4,0],[19,1],[2,7],[1,3],[2,6],[13,-1],[2,0],[1,0],[4,0],[10,1],[3,1],[1,0],[1,4],[0,6],[1,3],[3,5],[1,3],[4,7],[1,2],[1,2],[8,-1],[9,-2],[15,-3],[43,-8],[6,-1],[29,-5],[11,-2],[37,-6],[6,-1],[32,-6],[7,-3],[3,-3],[2,-2],[1,-1],[2,-3],[1,0],[0,-1],[4,-10],[20,-79],[8,-27],[3,-8],[6,-15],[4,-5],[2,-2],[5,-4],[7,-4],[6,-3],[1,-1],[1,-1],[1,-2],[2,-2]],[[4318,5138],[-12,20],[-4,-1],[-15,-4],[-11,25],[-5,12],[-1,3],[-4,-2],[-2,-1],[-22,-10],[-5,-3],[-17,0],[-5,0],[0,13],[1,9],[0,13],[0,15],[1,4],[-2,12],[0,11],[0,5],[0,8],[17,36],[3,8],[10,20],[7,15],[2,5],[3,6],[2,5],[2,5],[4,8],[1,2],[0,2],[1,6],[1,3],[-8,6],[-2,2],[-7,7],[-3,3],[-4,4],[-10,8],[-2,3],[-8,9],[-10,7],[-7,5],[-9,8],[-13,12],[-8,7],[-3,2],[-1,1],[-7,0],[-5,0],[-6,1],[-5,0],[-1,0],[-2,1],[-3,2],[-3,1],[-3,5],[-5,3],[-5,3],[-4,2],[-5,3],[-5,4],[-3,1],[-5,2],[-10,1],[-9,-1],[-1,0],[-7,2],[-10,4],[-8,3],[-3,5],[0,12],[-1,14],[0,12],[-1,3],[0,2],[-1,2],[0,2],[-3,5],[-6,7],[-5,6],[-6,7],[-8,10],[-3,6],[0,11],[-5,10],[-2,5],[-2,2],[-5,2],[-3,1],[-21,-1],[-1,-1],[-3,-1],[-2,0],[-2,0],[-12,-2],[0,-1],[-31,-5],[-6,-1],[-4,8],[-3,-1],[-4,0],[-3,11],[-1,5],[1,1],[1,2],[-4,21],[-17,-4],[-2,0],[-5,-1],[-10,-3],[-2,0],[-5,-2],[-8,-2],[-5,-1],[-1,-5],[-4,-2],[-1,0],[-3,-1],[-8,-4],[-10,-4],[-1,0],[-2,-1],[-2,-1],[-4,-2],[-22,-10],[-2,-1],[-33,-15],[-6,-3],[-1,0],[-4,-2],[-14,-7],[-5,-2],[-10,-5],[-7,-4],[-5,-3],[-3,-3],[-13,-9],[-18,-16],[-10,-8],[-11,-9],[-6,-6],[-7,-6],[-4,-4],[-10,-8],[-2,-2],[-5,-4],[-5,-5],[-8,-7],[-2,-1],[-1,-1],[-1,0],[-6,-4],[-4,-3],[-5,-3],[-7,-5],[-1,-1],[-3,-3],[-2,-1],[-3,-3],[-30,-26],[-5,-5],[-1,-1],[-2,-2],[-4,-4],[-1,0],[-3,-3],[-3,-3],[-2,-1],[-4,-3],[-14,-10],[-2,1],[-1,1],[-1,1],[-5,4],[-4,5],[-1,1],[-5,6],[-11,15],[-17,24],[-2,3],[-8,12],[-1,3],[0,2],[-5,21],[-1,1],[-5,23],[0,2],[-1,5],[-7,9],[1,5],[1,0],[4,2],[3,1],[8,4],[1,1],[1,0],[5,2],[3,8],[0,1],[0,1],[0,2],[1,7],[0,1],[0,2],[-1,9],[0,4],[6,2],[0,2],[-4,19],[-3,-1],[-2,0],[-45,-11],[-7,5],[-3,2],[-1,1],[-4,7],[0,1],[-1,3],[-8,11],[-4,10],[2,10],[0,3],[2,5],[0,1],[0,1],[0,1],[0,1],[9,11],[3,4],[1,2],[2,5],[5,12],[7,-1],[3,0],[2,4],[0,2],[7,16],[2,8],[0,6],[-8,4],[-1,0],[-1,1],[-6,3],[-1,1],[7,11],[-13,-1]],[[3403,5763],[0,2],[0,2],[0,3],[0,5],[-2,3],[0,1],[-1,0],[-2,3],[-2,2],[8,5],[12,10],[4,4],[6,6],[7,9],[3,4],[7,8],[6,8],[2,4],[3,8],[12,30],[6,16],[3,7],[3,7],[12,28],[3,5],[3,5],[5,7],[14,19],[6,13],[3,6],[2,8],[1,5],[0,4],[0,9],[0,4],[0,7],[-1,3],[-3,10],[-10,22],[-7,14],[-3,8],[-3,6],[-1,4],[0,11],[0,12],[1,19],[2,29],[1,12],[1,4],[1,4],[4,14],[4,12],[1,5],[0,1],[1,5],[3,15],[2,9],[2,5],[1,2],[1,5],[2,5],[3,5],[3,6],[3,3],[3,3],[3,2],[2,2],[4,2],[28,17],[9,5],[3,3],[7,4],[10,7],[9,8],[6,5],[10,9],[3,1],[8,3],[18,6],[4,3],[2,3],[5,5],[8,8],[7,8],[4,8],[5,9],[0,4],[-2,0],[-1,0],[-5,1],[-37,3],[-2,-8],[-1,-2],[-4,2],[-18,9],[-1,1],[-3,1],[-4,2],[-2,-5],[0,-3],[-1,-4],[-2,-9],[-2,-5],[-5,-1],[-2,0],[-11,5],[-14,5],[-1,0],[-2,1],[0,11],[1,3],[0,1],[0,7],[-8,0],[-1,0],[-1,0],[-21,-2],[-10,-1],[-1,-1],[-17,-2],[-3,-1],[-10,-2],[-1,-1],[-12,-3],[-6,-2],[-2,0],[-19,-6],[-1,0],[-13,-3],[-5,-2],[-2,-1],[-13,-4],[-4,-1],[-5,-1],[-2,-1],[-9,-2],[-1,0],[-2,-1],[-20,-5],[-8,-2],[-8,-2],[-3,3],[-1,1],[-1,2],[-13,13],[-5,2],[-1,1],[-6,3],[-7,3],[0,1],[-3,0],[-4,1],[-8,2],[-3,1],[-1,0],[-3,1],[-1,0],[-4,1],[-3,2],[-1,1],[3,2],[8,6],[13,9],[2,2],[10,13],[4,16],[2,13],[0,1],[0,1],[0,1],[-6,3],[-13,2],[0,10],[9,1],[-1,9],[0,2],[0,2],[-5,0],[-8,0],[-4,1],[-4,1],[0,12],[0,2],[-12,0],[-10,-9],[-1,-1],[-8,5],[-5,6],[-5,6],[0,3],[-2,5],[-1,3],[-1,3],[0,4],[1,6],[2,6],[2,4],[2,-1],[2,0],[3,-1],[2,11],[0,1],[0,1],[0,1],[2,10],[-4,10],[-2,6],[-6,12],[-3,16],[-1,21],[-4,0],[-14,-1],[-2,0],[-3,0],[-4,5],[-2,3],[-14,16],[-10,11],[-6,5],[-6,3],[-11,4],[-1,-2],[0,-2],[0,-1],[-3,-5],[-14,4],[-1,8],[-8,4],[0,-10],[0,-2],[-1,-8],[-3,-2],[-2,-1],[-6,-2],[-40,-16],[-2,2],[-1,3],[0,3],[-1,3],[8,11],[-3,5],[-4,4],[1,1],[0,3],[5,21],[18,-3],[0,1],[1,2],[0,2],[3,13],[3,18],[0,3],[1,4],[0,1],[11,-1],[15,-1],[4,2],[1,8],[1,7],[-1,14],[-5,19],[-6,15],[-2,6],[-2,6],[1,11],[4,16],[0,8],[0,4],[1,4],[0,1],[1,4],[1,2],[1,3],[1,3],[1,2],[0,3],[1,3],[2,7],[3,8],[3,7],[0,1],[3,5],[5,9],[5,11],[2,4],[0,2],[1,2],[3,6],[7,26],[1,2],[0,2],[1,1],[0,3],[1,10],[1,3],[0,5],[0,3],[0,3],[1,3],[0,4],[0,4],[10,-4]],[[3217,7023],[3,-3],[2,-1],[11,-7],[3,-2],[1,-1],[1,-1],[2,-1],[6,-4],[12,-8],[2,-1],[5,-4],[28,-19],[1,-1],[2,-1],[1,0],[12,-11],[1,-1],[1,-1],[2,-1],[13,-9],[3,-2],[3,-6],[1,-2],[0,-2],[3,-5],[5,-15],[0,-2],[1,-3],[8,-25],[2,-9],[1,-2],[1,-6],[0,-1],[1,-4],[1,-1],[4,-13],[0,-1],[2,-1],[1,-1],[4,-13],[0,-3],[17,2],[1,0],[5,0],[11,2],[7,1],[0,-4],[0,-1],[0,-5],[4,-16],[1,-3],[0,-4],[0,-3],[2,-6],[0,-1],[19,4],[1,0],[2,1],[7,1],[8,0],[2,0],[1,0],[22,1],[1,0],[6,0],[5,-1],[4,0],[14,-2],[10,0],[11,-1],[1,0],[14,0],[1,0],[11,0],[24,-2],[15,-1],[8,-1],[9,-1],[7,-1],[1,0],[16,-1],[16,-2],[31,-4],[8,-4],[8,-4],[12,-5],[5,0],[14,-2],[1,0],[3,-1],[1,5],[0,3],[1,4],[37,-1],[5,0],[1,0],[9,1],[13,4],[8,3],[1,1],[1,0],[4,2],[6,0],[4,2],[4,4],[7,9],[2,3],[2,2],[0,1],[3,6],[1,2],[4,8],[0,1],[0,1],[6,0],[2,0],[11,-1],[9,0],[1,0],[2,0],[3,-1],[8,0],[1,0],[10,0],[2,0],[3,-1],[3,0],[4,0],[15,-3],[5,0],[1,-1],[16,-2],[8,-2],[18,-5],[7,-2],[-2,-4],[-1,-2],[-2,-4],[-1,-3],[-2,-4],[-4,-8],[-1,-2],[3,-1],[2,-1],[2,-1],[2,-2],[9,-6],[5,-4],[1,-1],[1,-1],[9,-8],[-8,-20],[-1,-2],[0,-1],[5,-6],[-1,0],[-5,-3],[-4,-3],[1,-5],[1,-3],[1,-7],[0,-2],[1,-6],[2,-4],[2,-4],[2,-3],[5,-12],[15,-7],[-1,-7],[-2,-10],[0,-1],[-2,-11],[-1,-2],[-1,-12],[-2,-6],[0,-3],[0,-5],[-1,-1],[-4,-16],[-1,-3],[0,-3],[-4,-6],[-9,-7],[-3,-2],[-7,-5],[2,-17],[0,-1],[2,-9],[2,-11],[0,-1],[1,-2],[0,-2],[1,-1],[2,-1],[9,-3],[2,0],[2,-1],[3,-10],[-4,-15],[15,-8],[3,-1],[1,0],[1,0],[6,0],[3,3],[3,1],[15,3],[5,4],[0,1],[2,1],[2,2],[5,-1],[6,-1],[9,1],[8,-1],[9,0],[2,-1],[1,-2],[10,-4],[1,0],[12,-1],[12,-1],[6,-1],[3,-1],[2,-1],[3,3],[1,3],[1,1],[4,8],[5,8],[1,4],[2,7],[2,6],[6,5],[8,1],[1,0],[1,0],[7,-1],[6,-1],[6,-5],[16,-13],[11,-10],[1,-1],[6,-7],[3,-4],[3,-3],[4,-3],[10,-5],[1,0],[3,-2],[2,0],[4,2],[6,1],[7,4],[7,5],[4,2],[2,1],[4,4],[5,2],[1,0],[1,0],[2,0],[3,-2],[1,-1],[2,-3],[4,-4],[9,-11],[3,-4],[1,-1],[2,-2],[7,-1],[4,-1],[5,-1],[4,-2],[9,-4],[20,-5],[2,0],[1,0],[10,-3],[4,3],[4,5],[6,2],[2,0],[2,0],[4,0],[4,-2],[1,-4],[1,-4],[1,-2],[1,-4],[5,1],[1,3],[1,2],[2,3],[2,2],[2,1],[2,-1],[3,-3],[1,-2],[2,-1],[5,0],[16,4],[9,-1],[3,-1],[4,-2],[3,-2],[2,-1],[3,-3]],[[5334,7214],[19,3],[2,0],[1,0],[2,0],[5,-2],[15,-13],[4,-3],[13,-8],[1,-1],[27,-16],[1,-1],[2,-1],[1,0],[9,-6],[15,-10],[27,-17],[12,-3],[1,0],[1,0],[2,-1],[3,0],[3,-4],[1,-1],[2,-1],[9,-9],[24,-23],[3,3],[1,0],[1,1],[23,17]],[[5564,7118],[2,-2],[0,-1],[1,0],[9,-9],[1,0],[1,-1],[11,-11],[11,-1],[8,-12],[0,-1],[8,-11]],[[5616,7069],[4,-7],[2,-4],[2,-3],[2,-3],[4,-8],[1,-1],[1,-2],[11,-19],[3,-5],[4,-7],[1,-3],[5,-8],[4,-7],[0,-1],[2,-12],[0,-2],[4,-9],[0,-1],[1,-2],[1,-2],[3,-1],[1,0],[2,0],[3,0],[-1,-12],[-8,-26],[0,-1],[-4,-14],[-2,-7],[0,-1],[0,-1],[-4,-17],[1,-8],[1,-12],[-1,-2],[0,-1],[0,-1],[-5,-15],[-15,-45],[-1,-3],[-4,-12],[-5,-14],[7,-8],[3,-2],[16,-17],[7,-6],[1,-1],[21,-21],[4,-5],[1,-1],[1,-1],[26,-33],[5,-6],[1,-1],[1,-1],[1,-2],[1,-1],[13,-17],[3,-6],[1,-1],[1,-1],[1,-3],[5,-8],[0,-1],[1,-1],[5,-11],[1,-1],[0,-1],[1,-2],[3,-6],[1,-1],[0,-1],[5,-9],[15,-28],[-4,-1],[-1,0],[-19,-3],[-1,0],[-6,9],[-5,7],[-9,16],[-3,4],[-1,3],[-2,2],[-4,-1],[-1,-1],[-1,0],[0,-1],[-6,-2],[-7,-4],[-5,-2],[-1,1],[-1,1],[-26,32],[-3,-3],[-11,-8],[0,-3],[0,-2],[6,-7],[2,0],[9,-2],[5,-7],[5,-5],[5,-16],[10,-20],[1,-10],[0,-6],[-2,-12],[0,-2],[-10,-16],[2,-16],[10,-4],[1,-1],[16,-5],[1,0],[4,-2],[11,-4],[4,-2],[7,-3],[1,-3],[0,-2],[0,-8],[0,-41],[-8,-1],[-12,-2],[-1,0],[-1,-3],[15,-2],[2,-1],[2,-1],[3,-2],[10,-1],[1,0],[2,0],[2,0],[0,-7],[1,-11],[-4,0],[-1,0],[-11,0],[-27,1],[-1,-3],[0,-3],[0,-16],[0,-23],[-1,-13],[0,-2],[1,0],[1,0],[5,0],[14,0],[11,3],[13,1],[13,1],[12,-6],[3,0],[14,-1],[1,1],[4,0],[0,1],[3,0],[18,5],[1,1],[2,0],[14,4],[1,-22],[0,-2],[4,1],[1,0],[15,1],[6,0],[2,-7],[1,-4],[2,-6],[0,-21],[-4,0],[-3,1],[-14,1],[-2,1],[-21,2],[-2,0],[-16,2],[0,-1],[0,-2],[0,-2],[-1,-24],[0,-3],[0,-20],[0,-1],[0,-1],[0,-16]],[[4485,6446],[1,2],[2,4],[-1,2],[-6,5],[-17,11],[-7,5],[-6,3],[-15,12],[-11,5],[-1,1],[-1,0],[-14,8],[-11,3],[-1,1],[-1,0],[-4,1],[-21,5],[-11,2],[-5,2],[-1,0],[-2,1],[-5,2],[-4,4],[0,6],[4,15],[5,22],[1,6],[0,14],[2,2],[3,4],[2,2],[2,3],[1,2],[-1,6],[-1,6],[0,1],[-2,4],[8,13],[16,-8],[3,-2],[1,1],[3,8],[5,10],[1,3],[1,1],[1,2],[1,2],[1,1],[1,3],[3,0],[4,1],[15,0],[15,4],[1,0],[2,0],[9,1],[12,9],[3,3],[1,2],[3,-3],[1,0],[1,-1],[5,-4],[1,0],[1,1],[2,0],[3,1],[5,3],[3,3],[2,7],[1,2],[3,5],[4,4],[3,3],[10,4],[15,5],[10,3],[4,1],[4,1],[-2,4],[-9,14],[-4,10],[-9,20],[0,2],[0,3],[1,4],[4,8],[-12,12],[-5,4],[-1,4],[-1,5],[0,1],[0,6],[-1,4],[0,1],[0,2],[-1,5],[-1,3],[-2,12],[-1,9],[-1,11],[0,5],[-3,8],[-5,10],[0,1],[0,1],[-1,1],[-2,3],[4,2],[19,5],[11,3],[1,0],[1,0],[10,3],[-2,10],[20,5],[4,2],[5,3],[-2,7],[-6,-1],[-1,2],[-1,1],[-1,2],[-1,1],[-3,5],[6,1],[3,0],[1,0],[2,0],[8,0],[3,1],[1,1],[2,0],[3,2],[8,-4],[2,-3],[8,16],[5,-2],[3,-1],[10,-4],[14,-9],[1,-1],[0,-1],[1,0],[7,-4],[21,-14],[13,-9],[1,1],[5,7],[1,0],[3,3],[3,1],[3,2],[3,4],[2,1],[7,-9],[7,-10],[1,-2],[4,-6],[1,-2],[0,-3],[1,-3],[2,-8],[2,-4],[3,0],[3,-3],[3,-9],[1,-1],[0,-4],[7,-4],[9,0],[7,-5],[6,2],[1,1],[1,0],[5,2],[0,3],[0,1],[-1,10],[4,0],[3,1],[8,3],[-2,7],[1,1],[1,-1],[3,-2],[3,2],[1,1],[1,0],[4,3],[7,6],[1,1],[5,4],[4,2],[2,1],[3,2],[6,-13],[0,-1],[1,-1],[3,-3],[8,4],[1,0],[1,1],[5,2],[3,2],[3,1],[2,0],[0,-1],[3,-3],[7,0],[2,0],[1,1],[7,1],[-13,25],[0,1],[-1,1],[-1,3],[4,1],[1,1],[4,2],[7,4],[2,1],[6,3],[18,8],[7,3],[1,0],[3,1],[-3,7],[-13,1],[0,4],[13,4],[-3,4],[0,1],[-4,5],[-3,6],[0,2],[0,8],[-1,8],[-13,16],[-12,17],[5,5],[0,1],[10,9],[8,7],[1,1],[1,1],[1,0],[11,11],[1,1],[13,13],[1,0],[1,1],[5,5],[7,7],[1,0],[1,1],[12,12],[2,1],[6,8],[7,-5],[1,-1],[4,-3],[9,-10],[8,-8],[1,-1],[1,-1],[10,-11],[2,-2],[7,-8],[3,3],[1,0],[1,1],[2,2],[9,6],[1,0],[3,3],[3,3],[3,4],[-3,5],[-3,3],[-1,1],[-2,3],[2,2],[4,3],[23,21],[2,1],[4,4],[19,18],[4,2],[-9,7],[3,5],[-4,3],[-1,1],[-6,5],[-9,3],[-2,3],[-3,3],[4,4],[3,4],[4,7],[1,2],[5,6],[2,3],[3,2],[5,-1],[7,-2],[5,0],[5,5],[3,5],[4,10],[3,7],[3,7],[3,8],[1,2],[3,0],[3,-1],[4,2],[2,0],[3,-2],[5,-3],[5,-3],[4,-2],[10,-6],[2,-1],[16,-10],[0,2],[1,1],[0,1],[3,5],[3,-5],[1,-1],[1,-2],[32,-53],[5,0],[3,0],[5,1],[2,0],[5,-7],[1,-2],[1,-1],[9,-13],[6,5],[1,1],[13,10],[2,1],[1,1],[6,4],[0,1],[2,1],[7,12],[-10,6],[2,2],[1,1],[2,1],[8,7],[11,0],[14,7],[5,2],[19,8],[2,1],[8,3]],[[5616,7069],[1,2],[1,1],[3,4],[7,8],[4,-2],[14,-7],[3,-2],[7,-8],[1,-1],[5,-6],[9,-10],[1,-2],[9,-19],[0,-2],[1,-1],[3,-7],[6,-15],[1,-2],[2,-3],[8,-16],[1,-2],[2,-4],[1,-8],[0,-2],[1,-1],[0,-4],[15,0],[0,-3],[1,0],[1,0],[1,0],[1,0],[14,-1],[27,3],[2,3],[1,2],[2,5],[14,4],[12,4],[14,3],[10,-4],[1,-1],[8,-3],[11,-5],[16,-8],[18,-8],[19,-9],[18,-8],[4,-2],[1,0],[20,-9],[2,0],[14,-6],[1,-1],[1,0],[2,-1],[1,0],[4,-2],[10,-10],[1,-1],[1,-1],[7,-7],[15,-12],[2,-2],[2,-1],[4,-4],[2,-2],[5,0],[7,0],[7,0],[3,0],[8,-2],[5,-1],[6,-1],[2,0],[14,-2],[5,-1],[5,-1],[22,-2],[1,0],[2,0],[5,-1],[8,0],[19,0],[1,0],[8,0],[0,2],[0,2],[0,1],[0,8],[0,3],[7,7],[3,1],[1,0],[2,0],[8,3],[0,3],[0,3],[0,18],[2,4],[11,9],[10,6],[2,0],[4,2],[2,3],[1,1],[12,16],[1,1],[1,2],[12,10],[2,2],[1,1],[2,2],[7,-1],[1,-1],[2,0],[18,-2],[1,0],[1,0],[13,-2],[23,8],[3,0],[24,1],[2,1],[1,1],[18,8],[6,3],[0,1],[2,1],[2,1],[16,10],[3,4],[0,1],[1,1],[4,6],[4,7],[1,1],[5,7],[9,13],[2,3],[3,4],[1,2],[4,9],[4,8],[8,18],[3,-1],[2,-1],[1,0],[7,-2],[10,-3],[3,-1],[7,-2],[-5,-13],[6,-6],[1,0],[0,-1],[7,-7],[11,5],[2,0],[1,0],[30,-1],[1,0],[1,0],[3,-1],[1,-11],[14,-1],[0,-2],[0,-1],[0,-1],[1,-12],[1,-2],[0,-1],[1,-11],[18,1],[2,0],[54,3],[1,0],[2,0],[2,1],[37,1],[4,1],[18,0],[25,2],[2,0],[14,0],[9,0],[1,-1],[9,0],[16,-3],[1,0],[2,0],[72,-12],[2,0],[2,-1],[28,-4],[4,-1],[5,-1],[42,-7],[15,-3],[24,-4]],[[6933,6981],[0,-7],[-1,-37],[-4,-41],[-3,-21],[-2,-22],[-8,-46],[-14,-72],[-4,-16],[-3,-6],[-13,-30],[-15,-32],[-19,-31],[-22,-26],[-74,-87],[-51,-59],[-21,-18],[-19,-21],[0,-1],[-17,-20],[-53,-74],[-13,-19],[-52,-105],[-5,-9],[-5,-9],[-1,-4],[-19,-44],[-18,-50],[-4,-9],[-17,-32],[-5,-8],[-15,-26],[-10,-13],[-10,-15],[-37,-48],[-1,-1],[-3,-7],[-1,-1],[-8,-15],[-10,-24],[-7,-21]],[[6933,6981],[3,27],[6,31],[9,29],[6,23],[10,26],[13,27],[8,12],[15,21],[41,56],[7,10],[7,10],[7,16],[5,18],[2,13],[0,8],[-5,32]],[[7067,7340],[21,27],[9,16],[13,23],[16,24],[2,3],[4,4],[13,14],[15,12],[9,6],[6,2],[3,2],[54,23]],[[7232,7496],[5,-10],[15,-31],[9,-18],[37,-73],[31,-61],[24,-35],[4,-6],[5,-7],[1,-1],[18,-23],[23,-29],[35,-46],[19,-25],[19,-23],[15,-20],[4,-5],[38,-44],[9,-11],[30,-35],[1,-1],[10,-13],[12,-15],[37,-44],[39,-45],[30,-35],[73,-80],[4,-5],[51,-56],[0,-1],[14,-15]],[[7844,6683],[-14,-12],[-21,-20],[-19,-18],[-6,-4],[-6,-4],[-21,-16],[-13,12],[-7,2],[-12,6],[-11,3],[-21,6],[-19,0],[-17,-3],[-14,-7],[-6,-3],[-18,-14],[-11,-13],[-2,-4],[-10,-16],[0,-1],[-5,-13],[-1,-10],[2,-12],[1,-5],[3,-11],[0,-1],[9,-20],[15,-19],[14,-15],[14,-11],[5,-5],[17,-11],[63,-24],[17,-10],[14,-11],[7,-10],[1,-7],[0,-11],[-3,-8],[-7,-11],[-10,-11],[-29,-22],[-6,-5],[-6,-5],[-23,-22],[-17,-19],[-10,-10],[-21,-29],[-9,-18],[-5,-11],[0,-8],[3,-13],[8,-22],[7,-13],[10,-10]],[[7654,6134],[-20,-4],[-26,0],[-12,0],[-39,1],[-3,0],[-26,1],[-6,2],[-37,26],[-14,9],[-27,11],[-31,14],[-27,13],[-17,9],[-7,3],[-34,17],[-19,9],[-31,14],[-46,21],[-47,23],[1,-9],[1,-31],[1,-17],[3,-57],[2,-31],[3,-61],[1,-5],[0,-12],[3,-47],[2,-21],[4,-81],[1,-17],[0,-8],[4,-74],[2,-25],[0,-9],[-4,0],[-1,0],[-1,0],[-79,-6],[-36,-2],[-1,0],[-3,-1],[-2,0],[-1,0],[-49,-3],[0,-2],[0,-2],[1,-1],[1,-14],[0,-1],[0,-3],[-3,0],[-3,0],[-24,-2],[-2,0],[-1,0],[-23,-1],[1,-3],[0,-5],[2,-14],[0,-2],[1,-8],[2,-22],[0,-2],[0,-1],[1,-10],[0,-2],[1,-5],[0,-4],[0,-2],[3,-22],[0,-4],[0,-3],[1,-4],[-3,0],[-1,0],[-1,0],[-25,-1],[-2,-1],[-2,0],[-20,-1],[-3,0],[-6,0],[-3,0],[-4,-1],[2,-49],[-4,0],[-6,0],[-3,0],[-11,-1],[-1,0],[-2,0],[-5,0],[-25,-2],[-2,0],[-1,0],[-18,-1],[-14,-1],[-4,0],[-13,-1],[-16,-1],[-2,16],[0,3],[-1,13],[0,1],[0,1],[-2,18],[-1,6],[-1,0],[-3,0],[-14,-1],[-18,-1],[-6,0],[-32,-2],[-2,0],[-1,0],[-35,-2],[-4,0],[-5,0],[-10,19],[-4,7],[-4,9],[-11,7],[-3,2],[-5,3],[-17,-10],[-13,-7],[-4,-3],[-25,-14],[-1,-1],[-8,-4],[-10,40],[-5,0],[-1,0],[-29,-4],[0,3],[0,2],[-1,1],[-2,13],[-1,-1],[-2,0],[-1,0],[-37,-5],[-1,2],[0,2],[-1,15],[0,2],[0,4],[-1,2],[-1,0],[-1,0],[-2,0],[-23,-1],[-1,-2],[0,-2],[-1,-9],[-13,-8],[-1,-1],[-1,-1],[-7,-4],[-1,-1],[-1,0],[-10,-7],[-3,-2],[-20,-13]],[[6391,2880],[-1,-1],[-1,1],[1,1],[1,-1]],[[5894,3171],[-2,-2],[-37,52],[2,1],[37,-51]],[[7278,3311],[-120,-58],[-1,3],[120,57],[1,-2]],[[6594,3249],[-8,-10],[-1,-1],[0,1],[-3,1],[-3,1],[-3,1],[-7,-17],[-17,-40],[-1,0],[-8,3],[-5,-11],[-13,-30],[-8,-19],[-1,-1],[-11,5],[-1,-1],[-1,1],[0,1],[-34,49],[-29,43],[-14,20],[-69,104],[-25,36],[-66,98],[-16,23],[-3,4],[7,4],[12,8],[44,28],[0,1],[44,28],[2,2],[20,13],[47,-69],[3,-5],[10,-14],[15,-23],[67,-98],[16,-24],[6,-9],[0,-1],[-6,-6],[6,-6],[17,-17],[10,-11],[2,-2],[0,-1],[-6,-5],[39,-42],[0,-1],[-7,-10],[-1,-1]],[[7245,3635],[1,-13],[31,3],[-139,-17],[-10,-1],[-152,-17],[-4,-1],[-78,-8],[-8,-1],[-22,-3],[0,1],[1,0],[21,2],[8,1],[78,9],[-4,34],[1,0],[0,-1],[-1,0],[4,-33],[4,1],[152,17],[10,1],[108,13],[-1,12],[-2,-1],[0,1],[2,1]],[[7243,3652],[0,-2],[1,-9],[-2,-1],[0,1],[2,1],[-2,8],[0,1],[-1,-1],[0,1],[2,1]],[[5915,3346],[4,1],[-16,24],[-20,29],[-2,4],[-5,7],[-2,3],[-18,29]],[[6166,3657],[10,-15],[0,-1],[3,-3],[2,-4],[2,-2],[9,-14],[0,-1],[7,-9],[9,-13],[20,-30],[8,-11],[2,-3],[-8,-16],[-38,-24],[0,-1],[-7,-4],[-16,-11],[-1,-1],[-41,-26],[56,-83],[9,-14],[74,-108],[19,-28],[7,-10],[24,-36],[19,-28],[22,-32],[14,-21],[24,-36],[23,-35],[8,-11],[27,-40],[-15,-25],[-11,-17],[-1,-1],[-3,-6],[-5,-8],[-14,-23],[-8,-5],[0,-1],[0,-1],[-10,-6],[-1,1],[-2,-1],[6,-10],[-1,-1],[0,-1],[-20,-32],[-11,-19],[-11,-17],[-6,-10],[-14,-22],[-12,-19],[-12,-19],[2,-2],[-4,-7],[0,-1],[-1,0],[0,-1],[-2,0],[-1,0],[-1,1],[-2,-5],[-5,-3],[-2,3],[-5,6],[-2,3],[-19,28],[-16,24],[-1,2],[-7,10],[-5,7],[-8,13],[-3,4],[-8,12],[-3,4],[-17,24],[-4,7],[-12,17],[-27,40],[-1,3],[-9,12],[-3,4],[-6,10],[-5,7],[-4,6],[-5,7],[-3,5],[-4,6],[-5,7],[-14,21],[-7,9],[-5,8],[-6,8],[-25,37],[-11,16],[-9,15],[-9,12],[10,6],[-9,2],[-4,-2],[-54,79],[-2,-2],[-1,0],[-42,-28],[-12,3],[0,2],[12,-3],[42,28],[1,0],[1,1],[-1,3],[-1,0],[-9,14],[-1,1],[-2,-1],[-43,-28],[-1,1],[41,27],[4,3],[-13,18],[-12,19],[-2,2],[-7,10],[-6,10],[-5,-4],[-3,5],[36,23],[2,2],[-22,33]],[[7046,3674],[-61,-7],[-1,1],[62,7],[0,-1]],[[7108,3681],[-56,-6],[0,1],[56,6],[0,-1]],[[7128,3684],[-14,-2],[0,1],[14,1],[41,5],[0,-1],[-41,-4]],[[7206,3693],[-31,-4],[0,1],[31,3]],[[6957,3664],[-5,35],[1,0],[4,-35]],[[6959,3699],[8,-68],[1,0],[0,-1],[-1,0],[-9,70],[2,0],[0,-1],[-1,0]],[[7787,3713],[-1,-15],[-1,-10],[-1,-13],[-1,-10],[-1,-12],[-1,-11],[0,-14],[-1,-13],[-1,-12],[-1,-10],[-1,-14],[-1,-13],[-1,-13],[-1,-15],[-1,-15],[-1,-13],[0,-4],[-1,-9],[-1,-15],[-1,-14],[0,-13],[-2,-14],[0,-11],[-1,-14],[-1,-14],[-1,-11],[0,-6],[-12,-160],[-5,-83],[-3,-2],[-74,-49],[-12,-7],[-4,5],[1,0],[1,1],[-37,53],[-23,34],[-17,25],[-3,5],[-3,3],[-5,-6],[-118,-137],[-2,2],[2,2],[1,-1],[119,139],[1,2],[-9,14],[-42,61],[65,42],[-34,51],[-45,-30],[-20,-12],[-56,-7],[-6,55],[-13,108],[-2,13],[-23,192],[14,1],[74,9],[4,0],[27,3],[3,1],[1,0],[87,10],[12,1],[37,4],[6,1],[12,1],[6,1],[5,1],[8,1],[8,1],[10,1],[2,-25],[22,3],[14,1],[3,1],[0,-4],[10,1],[-1,4],[4,0],[3,1],[1,0],[4,0],[-2,11],[0,1],[-1,8],[0,1],[0,4],[14,1],[8,1],[0,2],[7,1],[1,0],[-1,-21],[-1,-12]],[[7037,3750],[-61,-7],[61,7],[0,0]],[[7099,3757],[-56,-7],[0,1],[56,6]],[[7128,3760],[-23,-2],[23,3],[32,3],[-22,-3],[-10,-1]],[[7228,3772],[-62,-7],[62,7],[0,0]],[[6952,3705],[-9,69],[1,0],[8,-69]],[[6950,3774],[8,-67],[1,0],[0,-1],[-1,0],[-8,69],[1,0],[0,-1],[-1,0]],[[6976,3819],[-10,-1],[0,1],[10,1],[52,6],[0,-1],[-52,-6]],[[7090,3832],[-56,-6],[56,7],[0,-1]],[[7128,3837],[-32,-4],[0,1],[32,3],[23,3],[0,-1],[-23,-2]],[[7439,3841],[-1,0],[21,3],[0,-1],[-20,-2]],[[7486,3846],[-21,-2],[0,1],[21,2],[0,-1]],[[7165,3841],[-8,-1],[0,1],[2,0],[60,7],[0,-1],[-54,-6]],[[6941,3850],[1,-9],[7,-55],[0,-4],[1,0],[0,-1],[-1,0],[-1,5],[-6,55],[-1,9]],[[6943,3781],[0,-1],[-1,6],[-6,55],[-2,9],[1,0],[1,-9],[6,-55],[1,-5]],[[7505,3849],[-12,-2],[0,1],[12,1],[9,1],[-9,-1]],[[6941,3850],[0,1],[1,0],[0,-1],[-1,0]],[[7541,3853],[-21,-3],[0,1],[21,2]],[[7402,3841],[4,-3],[24,3],[0,-1],[-25,-3],[-4,4],[-1,0],[-3,26],[1,0],[1,-9],[1,-7],[1,-10],[1,0]],[[7573,3856],[-24,-2],[24,3],[4,4],[2,27],[-1,-27],[-5,-5]],[[6976,3896],[-18,-2],[-1,0],[19,2],[12,2],[0,-1],[-12,-1]],[[7019,3901],[-25,-3],[25,3],[0,0]],[[7050,3904],[-25,-3],[0,1],[25,3],[0,-1]],[[7397,3874],[-1,0],[-3,26],[4,5],[26,3],[0,-1],[-25,-2],[-4,-5],[3,-26]],[[7081,3908],[-25,-3],[25,3],[0,0]],[[7451,3911],[-22,-3],[0,1],[22,2]],[[7111,3911],[-24,-3],[0,1],[24,3],[0,-1]],[[7478,3914],[-21,-3],[0,1],[21,2]],[[6933,3862],[-6,53],[6,-53],[0,0]],[[7128,3913],[-10,-1],[0,1],[10,1],[14,1],[-14,-2]],[[6940,3863],[-1,0],[-6,53],[1,0],[0,-1],[6,-52]],[[7505,3917],[-21,-2],[21,3],[1,0],[0,-1],[-1,0]],[[7173,3918],[-25,-2],[25,3],[0,-1]],[[7534,3920],[-22,-2],[22,3],[0,-1]],[[7210,3923],[-31,-4],[0,1],[31,3]],[[7577,3926],[5,-5],[-2,-26],[-1,0],[2,26],[-4,4],[-37,-4],[0,1],[37,4]],[[6926,3927],[-1,0],[-2,22],[-1,7],[1,-7],[3,-22]],[[7210,3975],[-3,-7],[3,7],[0,0]],[[7219,3977],[-2,-1],[0,2],[1,0],[1,-1]],[[7196,3983],[8,-7],[7,1],[0,-1],[-1,0],[-6,0],[-8,6],[0,-1],[-1,0],[1,2]],[[7189,3986],[6,-6],[-6,5],[0,1]],[[7189,3986],[1,0],[-12,9],[-47,-5],[-3,0],[-20,-3],[-67,-7],[-49,-6],[-16,-2],[-38,-4],[-9,-12],[1,-7],[2,-21],[-1,0],[-2,21],[-1,7],[10,13],[38,4],[16,2],[49,5],[67,8],[20,2],[3,1],[47,5],[12,-9],[1,-1],[-1,-1],[-1,1]],[[7452,4034],[-22,-3],[0,1],[22,2]],[[7480,4037],[-22,-2],[22,3],[0,-1]],[[7505,4040],[-19,-2],[19,3],[2,0],[0,-1],[-2,0]],[[7535,4043],[-22,-2],[22,3],[0,-1]],[[7563,4047],[-22,-3],[0,1],[22,2]],[[7396,4033],[4,-5],[24,3],[-25,-3],[-3,5],[10,27],[1,0],[-11,-27]],[[7587,4049],[-18,-2],[0,1],[18,2],[3,5],[1,12],[1,12],[1,0],[-1,-12],[-1,-12],[-4,-6]],[[7409,4067],[0,-1],[-1,0],[1,1],[8,23],[5,4],[22,2],[-21,-3],[-5,-3],[-9,-23]],[[7472,4099],[-21,-2],[21,3],[0,-1]],[[7499,4102],[-21,-2],[21,3],[0,-1]],[[7528,4106],[-21,-3],[0,1],[21,2]],[[7357,4000],[0,-3],[5,0],[51,6],[50,6],[1,0],[41,5],[14,1],[67,8],[-3,-32],[0,-1],[0,-7],[0,-1],[-1,-12],[-1,-8],[-1,-11],[-14,-2],[-61,-7],[-30,-4],[-15,-1],[-35,-4],[0,-1],[-3,0],[-10,-1],[-46,-5],[10,-85],[1,-7],[0,-1],[1,-8],[-1,0],[0,-2],[1,-5],[-1,-1],[-1,8],[-14,-2],[-32,-4],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[0,-1],[-1,0],[-67,-7],[-2,21],[0,3],[-1,6],[-13,108],[-4,30],[-8,-1],[0,-1],[-1,0],[0,2],[9,1],[30,37],[20,24],[20,26],[1,1],[-3,21],[24,3],[15,2],[11,1],[10,1],[32,4],[-1,6],[1,0],[1,-6],[-13,-33],[-4,-10],[-9,-26],[-7,-17],[-1,-3],[0,-1],[-4,-10]],[[7555,4109],[-21,-3],[0,1],[21,2]],[[7590,4113],[5,-4],[-2,-23],[-1,0],[2,23],[-4,4],[-29,-4],[0,1],[29,3]],[[6168,3977],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[0,1],[-1,0],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[30,20],[1,0],[72,47],[15,10],[76,49],[15,10],[4,3],[2,0],[1,1],[2,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[-28,-18],[-48,-31],[-43,-27],[-72,-48],[-1,0],[-22,-14],[-2,-1]],[[6567,4237],[0,-1],[0,1],[-1,-1],[-40,-26],[-78,-51],[-2,-2],[-1,-1],[-9,-6],[-10,-6],[-9,-6],[-2,-1],[-3,-1],[-2,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[0,2],[-1,1],[0,2],[0,1],[1,1],[0,1],[2,2],[4,3],[5,3],[0,-1],[2,1],[-1,1],[10,6],[0,1],[1,0],[10,7],[3,1],[121,78],[2,2],[2,0],[1,0],[2,0],[1,0],[1,-1],[2,-1],[0,-1],[1,-2],[0,-1],[0,-2],[-1,-2],[-2,-3],[-3,-1]],[[7654,6134],[8,-4],[16,-10],[50,-25],[71,-30],[6,-3],[12,-6],[13,-7],[28,-14],[4,-2],[28,-16],[21,-15],[13,-15],[3,-3],[11,-15],[4,-6],[20,-32],[15,-26],[19,-35],[2,-4],[2,-3],[2,-32],[1,-37],[0,-12],[1,-30],[1,-22],[0,-5],[0,-11],[-1,-10],[-1,-17],[-2,-16],[-4,-39],[-4,-16],[-11,-43],[-7,-35],[-5,-25],[-5,-20],[-2,-20],[1,-2],[5,-9],[-8,-17],[-23,-43],[4,-5],[4,-4],[17,-16],[22,-20],[29,-27],[-12,-43],[-11,-51],[-2,-9],[-6,-37],[-6,-38],[-5,-53],[-2,-32],[-4,-48],[-3,-68],[-3,-41],[-6,-103],[-1,-25],[-1,-9],[-1,-19],[-2,-39],[-6,-86],[0,-10],[-4,-45]],[[7939,4574],[-72,4],[-2,-24],[0,-1],[-1,0],[-1,0],[-3,-31],[0,-5],[0,-4],[-1,-4],[-4,-4],[0,-8],[0,-2],[2,0],[0,-4],[0,-1],[-2,-27],[-6,0],[0,-4],[-3,0],[-1,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-4],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-2],[-1,-2],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-3],[-1,-2],[0,-3],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-5],[0,-3],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-3],[-1,-1],[0,-2],[0,-2],[0,-2],[-1,0],[-2,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-19],[-1,-5],[0,-1],[-1,-17],[-7,-53],[0,-4],[-1,-6],[0,-3],[-1,-9],[0,-1],[0,-2],[0,-5],[0,-4],[0,-3],[-1,-9],[0,-3],[-3,-40],[-3,-44],[-2,-34],[-2,-34],[-1,-10],[-2,-26],[-2,-40],[-4,-51],[0,-1],[-7,-108],[-2,-36],[-24,-3],[-2,0],[-1,0],[-14,-2],[-4,0],[-4,-1],[-8,0],[-2,-1],[-9,-1],[-7,-1],[-6,0],[-8,-1],[-8,-1],[-1,0],[0,-2],[-6,-1],[-4,0],[0,2],[-2,0],[-2,0],[-6,-7],[-2,0],[-1,-1],[-3,0],[-2,0],[-2,-1],[-1,0],[-4,0],[-1,0],[-3,-1],[-7,0],[-2,-1],[-5,0],[-7,-1],[-7,-1],[-7,-1],[-7,-1],[-1,0],[-4,0],[-2,0],[-1,0],[-7,-1],[-1,0],[-3,-1],[-6,-1],[-1,0],[-8,0],[-2,-1],[-8,0],[-2,-1],[-2,0],[-8,-1],[-3,0],[-2,-1],[-2,0],[-1,0],[-6,-1],[-2,0],[-4,0],[-4,-1],[-6,0],[-8,-1],[-13,-2],[-80,-9],[-63,-7],[-31,-4],[-1,1],[-39,-4],[-7,-1],[-7,-1],[-8,0],[-2,-1],[-1,-2],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[-1,-2],[-2,-1],[3,-26],[1,-5],[1,0],[1,0],[1,-1],[1,-8],[-1,-1],[-1,-1],[-7,-1],[-9,-1],[-8,-1],[-7,-1],[1,-12],[0,-1],[-1,-1],[-1,1],[2,1],[-2,15],[31,4],[-2,16],[-1,3],[-5,42],[0,3],[-5,36],[0,4],[13,1],[11,2],[36,4],[6,0],[2,1],[1,0],[2,0],[2,0],[1,0],[1,1],[17,1],[13,2],[5,1],[7,0],[5,1],[-1,7],[1,0],[1,-7],[6,1],[21,2],[31,4],[30,3],[25,3],[12,1],[17,2],[35,4],[17,2],[7,1],[15,2],[10,1],[1,11],[7,108],[2,16],[1,14],[0,5],[0,3],[1,7],[0,3],[1,22],[2,21],[2,27],[0,2],[3,42],[2,37],[-18,-2],[-14,-2],[-15,-1],[-41,-5],[-35,-4],[-7,-1],[-36,-4],[-39,-5],[-31,-3],[1,-7],[-1,0],[-1,7],[-29,-4],[-2,0],[-10,-1],[-50,-6],[-16,0],[-15,0],[-12,-15],[-13,-15],[1,0],[-10,-13],[-1,-1],[-25,-3],[-39,-4],[-42,-5],[-1,0],[-20,-2],[-98,-12],[-33,-3],[-1,-1],[-61,-6],[-20,-3],[-6,0],[-1,17],[-1,7],[-1,0],[-1,16],[-2,15],[0,4],[-1,1],[0,3],[0,4],[-1,7],[0,1],[-1,7],[0,1],[-1,3],[0,3],[-1,8],[8,3],[9,3],[13,5],[-5,40],[1,0],[-1,4],[0,1],[1,1],[4,0],[3,1],[1,0],[2,1],[1,1],[2,2],[1,2],[1,2],[1,3],[0,2],[-1,7],[-9,-1],[0,-3],[0,-1],[1,-2],[-1,-1],[-1,-1],[-2,0],[-2,0],[-1,-1],[-1,1],[-2,1],[0,6],[-6,-1],[-4,0],[-1,0],[-1,0],[-5,0],[-6,-1],[-1,-1],[-5,0],[-4,-1],[-4,-6],[-1,-1],[-3,0],[-4,-1],[-5,0],[-6,-1],[-1,0],[-4,0],[0,-1],[-1,0],[-8,-10],[0,-3],[0,-1],[0,-4],[4,1],[0,-1],[-4,0],[0,-6],[1,0],[7,-57],[-4,-1],[0,-3],[-1,0],[0,-2],[3,-22],[0,-2],[0,-2],[1,-4],[0,-1],[0,-1],[0,-2],[1,-7],[1,0],[3,-18],[0,-7],[7,-50],[4,-40],[-1,0],[5,-36],[-39,-5],[-1,0],[-118,-14],[1,-49],[1,-28],[1,-25],[0,-17],[-32,-59],[3,-10],[5,-15],[0,-1],[44,-137],[-26,-41],[-7,-13],[-5,-7],[-24,-38],[-5,-8],[-27,-43],[-6,-1],[-2,2],[-64,95],[-8,13],[-6,8],[-16,24],[-55,80],[-18,28],[-4,5],[-4,-2],[1,-1],[-2,-1],[-9,-6],[-1,3],[9,6],[1,0],[4,3],[-12,17],[-10,-7],[-62,-40],[-1,-1],[0,-1],[0,-1],[-4,-3],[-3,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[-16,-10],[0,-1],[0,-1],[-32,-21],[-1,0],[-9,12],[1,0],[-8,10],[-11,16],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-10,16],[-4,5],[-7,11],[-5,6],[0,1],[-1,0],[-1,0],[-6,-4],[-1,0],[0,1],[-1,-1],[-4,7],[-3,3],[-2,4],[-1,1],[-12,19],[-2,2],[-4,6],[-7,9],[-8,13],[-2,2],[-5,8],[-3,4],[-31,46],[-1,1],[-4,7],[-8,12],[-15,21],[-9,15],[-14,20],[-11,15],[-24,37],[-1,0],[-1,1],[-2,1],[-1,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[1,2],[1,1],[2,2],[2,1],[0,1],[4,2],[2,3],[4,3],[2,1],[3,2],[1,0],[1,0],[1,1],[1,0],[1,0],[6,4],[0,-1],[3,2],[3,2],[2,2],[28,18],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[14,-6],[19,-28],[19,13],[1,0],[22,15],[7,31],[13,9],[1,-2],[1,0],[1,1],[1,0],[2,1],[1,1],[1,0],[0,1],[0,1],[-1,1],[13,9],[40,26],[3,-4],[3,3],[-2,3],[4,3],[34,22],[0,1],[1,-1],[1,-2],[1,0],[1,0],[1,1],[1,1],[-2,3],[15,10],[21,13],[2,-2],[1,0],[1,0],[4,3],[1,0],[0,1],[0,1],[-2,2],[42,27],[29,19],[3,2],[7,5],[2,-3],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,3],[23,15],[2,-2],[1,0],[1,0],[1,0],[0,1],[1,1],[-2,3],[8,5],[18,-26],[-3,-2],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[2,2],[20,-29],[1,-2],[1,1],[4,3],[1,-2],[2,-2],[3,2],[-1,2],[-1,2],[22,14],[13,9],[11,14],[-1,1],[8,11],[-12,101],[0,1],[0,1],[0,1],[1,1],[-14,10],[-12,9],[-2,1],[-16,20],[-18,21],[1,1],[1,0],[-9,10],[-12,14],[-7,-5],[-16,19],[-15,-12],[-9,2],[-3,-8],[2,0],[8,-10],[44,-52],[3,-4],[-11,-36],[0,-1],[0,-1],[-31,-20],[-32,-21],[-22,-14],[-4,-2],[-1,0],[1,-1],[-3,-1],[-9,-6],[-2,-2],[0,1],[-1,0],[1,-1],[-32,-21],[-20,-13],[-6,-4],[-14,-8],[-19,-13],[-19,-12],[-10,-7],[-9,-6],[-1,0],[-1,1],[0,-1],[0,-1],[-18,-11],[-24,-16],[-12,-8],[-11,-7],[-19,-13],[-1,0],[-15,-10],[-24,-16],[-50,-32],[-4,0],[-8,0],[-10,0],[-16,0],[0,2],[-1,0],[-37,43],[-28,33],[-10,12],[1,13],[70,57],[54,44],[60,48],[18,15],[1,1],[27,22],[21,17],[43,35],[9,-1],[7,6],[5,4],[2,1],[4,3],[4,4],[34,27],[7,6],[5,4],[9,-1],[56,46],[21,17],[-11,14],[-10,11],[-6,7],[-14,17],[-1,8],[3,3],[1,1],[0,-1],[1,0],[1,1],[1,1],[1,0],[1,1],[0,-1],[12,7],[5,3],[1,4],[-1,3],[-5,0],[-1,0],[-16,-10],[-1,0],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,5],[3,3],[-5,8],[0,2],[2,2],[-3,4],[-2,23],[-31,-3]],[[5906,2520],[-12,-7],[-6,-4],[-26,-15],[-65,-41],[-7,-3],[-10,-7],[-6,-3],[-23,-14],[-8,-5],[-7,-4],[-8,-4],[-3,5],[-1,1],[-11,19],[-14,23],[-10,16],[-16,4],[-5,1],[-13,1],[-1,-4],[-28,2],[-17,0],[4,-69],[0,-6],[1,-14],[0,-10],[1,-13],[3,-52],[-12,-2],[2,-66],[1,-38],[0,-20],[0,-33],[-15,0],[-28,0],[-33,-1],[-42,0],[-1,0],[-31,-1],[-35,-1],[0,56],[1,90],[-5,0],[-8,0],[-3,0],[-4,0],[-5,0],[-113,2],[-14,1],[-9,0],[0,-12],[-7,-1],[-1,0],[-12,-3],[-1,0],[-1,0]],[[5242,2288],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[2,0],[1,1],[2,0],[4,2],[2,1],[1,1],[2,1],[0,1],[1,0],[0,1],[1,1],[1,2],[1,2],[0,2],[0,2],[0,1],[0,2],[0,2],[-1,2],[0,2],[-1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,2],[1,1],[0,1],[1,1],[0,1],[-2,2],[-1,1],[-1,2],[-1,1],[-1,0],[-1,1],[0,1],[-1,2],[-1,0],[0,1],[-2,2],[0,1],[-1,2],[-1,2],[-1,2],[-1,1],[-2,1],[-1,2],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,2],[-2,0],[1,-6],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-2,-1],[-1,1],[0,1],[-1,1],[0,2],[0,2],[0,2],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,3],[0,4],[0,3],[1,4],[0,2],[0,3],[1,1],[0,2],[-1,2],[0,1],[0,3],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,2],[0,1],[0,3],[1,2],[0,1],[1,1],[1,1],[0,2],[0,2],[-1,2],[-1,1],[0,2],[0,2],[0,3],[0,1],[1,6],[0,4],[0,1],[0,1],[1,0],[0,1],[1,6],[0,3],[0,6],[0,3],[0,1],[3,53],[1,3],[2,34],[2,29],[2,19],[0,3],[0,2],[0,1],[0,2],[0,1],[0,3],[1,12],[24,44],[1,2],[1,0],[26,48],[23,39],[0,10],[3,32],[0,6],[1,11],[1,12],[1,9],[0,3],[1,11],[2,15],[1,15],[0,2],[3,39],[4,43],[0,9],[0,3],[1,10],[1,6],[2,32],[1,8],[-1,0],[-1,1],[0,1],[0,1],[1,2],[1,0],[0,2],[1,1],[0,7],[0,2],[4,41],[1,14],[-1,0],[-1,3],[0,2],[0,2],[1,2],[1,2],[0,2],[1,3],[0,1],[0,2],[0,1],[1,1],[1,17],[1,9],[1,10],[0,4],[2,29],[5,0],[1,0],[5,0],[3,0],[7,0],[11,0],[2,0],[6,0],[13,0],[0,2],[3,0],[2,0],[3,0],[6,0],[1,-2],[4,0],[0,1],[2,0],[0,-1],[9,0],[4,0],[6,0],[0,-4],[1,-18],[6,0],[9,0],[0,22],[2,0],[0,-22],[13,0],[0,23],[16,0],[9,-9],[0,-1],[1,0],[14,-14],[1,-1],[4,-4],[0,-1],[5,-4],[1,-1],[13,-12],[3,3],[9,-9],[-3,-3],[7,-7],[-14,-14],[3,-7],[7,6],[2,-2],[6,-7],[2,-2],[-7,-6],[8,-4],[12,12],[6,-8],[2,-3],[6,-7],[14,3],[25,-87],[0,-3],[4,-13],[4,-15],[2,-9],[3,-10],[9,-33],[7,-23],[-5,-4],[-6,-3],[3,-5],[5,-8],[9,-15],[18,-29],[27,-43],[19,-32],[8,-12],[1,0],[12,-20],[7,-12],[39,-62],[4,-7],[23,-36],[8,-13],[9,-14],[22,-36],[28,-46],[15,-23],[9,-15],[5,-9]],[[5915,3346],[-5,-3],[-33,-22],[-2,-1],[-37,-24],[-1,-1],[-1,-1],[-62,83],[5,5],[1,1],[2,2],[2,1],[-1,1],[-7,7],[-1,1],[-4,-3],[-1,-1],[-3,-4],[-15,20],[-1,86],[0,13],[-1,23],[0,3],[0,1],[1,0],[0,1],[2,1],[15,9],[14,10]],[[5521,3607],[0,-4],[2,-57],[1,-40],[4,-115],[0,-6],[2,-70],[-1,0],[-9,0],[0,-2],[0,-1],[0,-7],[-3,-1],[0,-7],[-11,0],[0,3],[1,0],[0,-2],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,2],[0,1],[0,1],[0,2],[-10,0],[-15,0],[-1,0],[-37,0],[-3,0],[-1,0],[0,1],[-1,0],[-3,0],[0,-1],[-12,0],[-5,0],[-1,0],[0,-1],[2,-2],[2,-1],[1,0],[2,-1],[1,0],[2,-1],[1,0],[1,0],[31,1],[8,1],[1,0],[3,0],[0,-1],[-12,-1],[-32,0],[-2,0],[-2,0],[-3,1],[-2,2],[-3,2],[0,1],[-17,0],[-1,0],[-40,-1],[-2,0],[2,0],[0,-3],[-5,0],[0,2],[0,1],[2,0],[-2,0],[-5,0],[-2,0],[-1,0],[-6,0],[-1,0],[-4,0],[1,11],[4,62],[0,8],[-12,1],[0,5],[1,14],[0,5],[13,-1],[1,18],[3,47]],[[5264,3500],[-1,-9],[12,1],[6,1],[27,4],[1,-1],[0,-4],[-2,-15],[-2,-12],[0,-1],[1,0],[-1,-21],[0,-5],[2,0],[-1,-19],[0,-9],[11,-1],[1,0],[0,-1],[0,-3],[-1,-14],[0,-2],[0,-1],[0,-1],[-1,0],[-9,1],[-3,-4],[-1,-2],[-1,-2],[0,-2],[-1,-11],[0,-12],[-2,-53],[0,-11],[-1,-10],[-2,-25],[-2,-31],[-2,-19],[0,-2],[-2,-31],[-3,-35],[-2,-21],[2,-1],[0,-2],[-1,1],[-1,0],[-3,-30],[-1,0],[-1,-21],[-1,-4],[3,-1],[0,-5],[-3,0],[-2,-25],[1,0],[-2,-18],[-1,-13],[-1,-15],[-2,-14],[-2,-25],[-2,-31],[2,-1],[9,-3],[0,-1],[0,-2],[-2,-15],[0,-6],[0,-2],[-1,-7],[-1,-5],[-1,-3],[-1,-3],[-3,-6],[-3,-5],[-2,-5],[-8,-14],[-1,0],[-5,-11],[-1,0],[-10,-18],[-2,-4],[-4,-8],[-4,-6],[-5,-9],[-2,-5],[-2,-2],[0,-2],[-5,-8],[-2,-4],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-7,0],[-1,1],[-1,-1],[0,-1],[-1,0],[-5,1],[0,-3],[-1,-12],[-1,-10],[0,-1],[5,-8],[-2,-4],[-2,-5],[-1,-4],[-1,-4],[-2,-4],[0,-3],[0,-1],[-1,-2],[1,0],[1,0],[1,0],[-2,-20],[2,-2],[0,-1],[0,-1],[0,-1],[-2,-2],[-1,-4],[-1,-25],[-1,-6],[-3,-51],[0,-1],[-3,-51],[-1,0],[-1,0],[-1,0],[-1,0],[0,-5],[0,-1],[1,-3],[0,-1],[0,-1],[0,-2],[0,-1],[4,-1],[-1,-5],[0,-1],[-1,-23],[-1,-12],[-5,-73],[-2,0],[-1,0],[-3,0],[-1,0],[-1,-18],[-1,-18],[-8,-17],[5,-15]],[[5159,2332],[-37,-14],[-99,-35],[-30,-10],[-51,-17],[-5,-2],[-3,0],[-1,-1],[-11,1],[-26,-2],[-1,10],[0,1],[-28,-2],[-2,0],[-3,-1],[-2,-18],[0,-5],[-11,0],[-2,0],[-3,0],[-5,1],[-6,1],[-2,0],[-4,1],[-9,1],[-18,0],[-1,0],[-10,1],[-12,0],[-2,0],[-15,-1],[-3,0],[-13,-1],[-22,-1],[-3,0],[-19,-1],[-2,0],[-8,17],[-5,10],[2,13],[-3,1],[-3,1],[-2,1],[-13,5],[-1,1],[5,22],[2,11],[4,11],[14,26],[12,25],[8,17],[-6,3],[-22,10],[-6,2],[-3,0],[-9,4],[3,27],[0,3],[0,1],[0,1],[0,2],[0,1],[-6,6],[-5,5],[-10,10],[-2,-1],[-2,0],[-1,0],[-8,-3],[-1,0],[-4,-1],[-2,-1],[-3,-1],[-11,-5],[-2,-1],[-1,0],[-1,-1],[-3,-1],[0,4],[0,1],[0,2],[0,7],[-7,-1],[-19,-1],[-4,0],[-20,-2],[-2,0],[-1,0],[-1,0],[-14,-1],[-6,0],[-6,1],[-8,1],[-1,0],[-1,0],[-4,1],[-19,0],[-19,1],[-2,1],[-5,0],[-4,0],[-4,-1],[-9,-1],[-4,0],[-4,-8],[-7,-17],[-3,-6],[-2,-3],[0,-2],[-2,-5],[0,-3],[-3,-11],[0,-5],[0,-2],[-1,-2],[-14,-7],[-1,-1],[-1,0],[-2,-1],[-14,-10],[-2,3],[-1,1],[0,1],[-2,1],[0,1],[-1,2],[0,2],[0,9],[0,1],[0,1],[0,3],[0,6],[0,2],[-6,9],[-3,8],[-1,0],[0,1],[0,1],[-7,11],[-6,10],[-1,7],[0,2],[0,1],[-2,9],[-5,0],[0,21],[-1,5],[-1,2],[0,2],[-1,2],[-1,2],[-1,1],[-1,3],[0,2],[-1,4],[0,5],[-1,4],[0,1],[-1,2],[-2,3],[-3,2],[-5,2],[-7,3],[-3,3],[-4,1],[-1,0],[-1,1],[-1,0],[-4,1],[-13,3],[-1,0],[-1,0],[-5,1],[-8,2],[-3,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,2],[0,2],[-1,1],[0,1],[-3,1],[-4,2],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,2],[-1,3],[-2,10],[-1,2],[-4,18],[-3,8],[0,2],[0,1],[-1,3],[-1,6],[8,1],[1,0],[1,0],[1,1],[0,1],[1,2],[2,13],[0,1],[0,2],[-2,2],[-2,4],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-27,10],[-16,7],[-2,0],[-4,1],[-3,1],[-5,1],[-15,2],[-1,0],[-1,0],[-4,1],[-6,0],[-2,1],[-12,1],[-1,0],[-1,0],[-2,0],[-11,2],[-3,0],[-7,1],[-28,2],[-1,0],[-6,1],[-2,0],[-10,1],[-2,0],[-7,1],[-2,0],[-15,1],[-16,2],[-1,0],[-17,1],[-41,3],[-13,1],[-9,1],[-1,0],[-39,3],[-24,2],[-12,1],[-1,0],[-1,0],[-3,0],[-4,3],[-1,1],[-1,1],[-20,18],[-4,4],[-2,2],[-2,2],[-10,9],[-5,4],[-6,6],[-6,4],[-9,7],[-5,6],[-6,6],[-5,7],[-5,7],[-3,3],[-15,20],[-1,1],[-10,14],[-2,4],[-2,3],[-4,8],[-6,13],[-1,2],[-5,10],[-4,6],[0,1],[-3,5],[-5,11],[-1,1],[0,1],[-7,15]],[[3723,2916],[1,4],[0,2],[1,2],[3,19],[0,1],[-1,2],[0,1],[0,1],[-1,2],[0,2],[-2,12],[11,1],[-1,2],[-1,3],[-4,11],[0,2],[0,1],[0,6],[1,3],[0,1],[1,3],[1,7],[1,7],[0,7],[0,6],[0,1],[-1,17],[0,2],[-3,23],[0,4],[0,6],[0,3],[0,2],[1,7],[1,2],[0,4],[4,21],[1,1],[1,1],[14,23],[3,2],[9,7],[13,9],[1,1],[1,0],[11,8],[12,10],[1,3],[2,2],[8,13],[5,8],[2,1],[1,0],[1,1],[3,2],[6,8],[6,9],[6,9],[4,8],[1,0],[2,5],[2,3],[2,3],[4,5],[4,5],[12,17],[1,2],[1,1],[1,1],[21,29],[1,1],[2,2],[0,1],[19,23],[0,1],[4,7],[2,6],[-2,4],[-1,1],[-2,3],[6,16],[1,3],[1,3],[0,2],[2,1],[1,0],[5,2],[6,2],[3,-1],[12,-3],[6,11],[2,2],[-4,2],[-12,6],[-1,1],[-2,1],[-16,7],[-8,4],[-2,1],[-4,3],[0,1],[-9,8],[-2,2],[0,1],[-1,0],[-5,6],[-3,2],[-5,2],[-2,1],[-14,5],[-1,1],[-1,0],[-2,1],[-15,4],[-3,1],[-8,3],[-8,3],[-2,1],[-1,0],[-4,2],[-12,4],[-10,3],[-1,0],[-2,1],[-17,10],[-6,1],[-1,0],[-2,0],[-17,4],[-10,4],[-4,2],[-3,1],[-1,0],[4,4],[2,2],[3,1],[8,2],[10,3],[10,3],[12,1],[6,5],[8,5],[1,1],[2,0],[3,0],[4,0],[2,0],[1,0],[16,0],[3,1],[6,2],[8,2],[4,2],[8,2],[5,1],[8,0],[9,0],[3,0],[4,0],[3,-3],[5,-3],[4,-4],[8,-3],[4,-1],[1,-4],[1,-9],[1,-3],[1,-2],[1,-4],[10,2],[11,1],[10,3],[1,0],[3,1],[2,-1],[5,-10],[3,1],[13,8],[2,1],[15,6],[17,6],[7,1],[10,1],[15,1],[6,0],[5,12],[0,1],[4,10],[1,2],[4,0],[2,-1],[4,0],[4,-1],[6,0],[1,0],[3,0],[1,1],[7,2],[12,5],[4,2],[1,1],[1,0],[9,5],[18,13],[1,0],[3,3],[1,1],[11,8],[4,2],[1,0],[7,2],[4,2],[2,0],[10,5],[-3,9],[3,1],[1,1],[8,3],[3,2],[4,2],[24,11],[1,0],[10,5],[18,7],[5,2],[2,1],[3,2],[-3,4],[-6,10],[4,3],[1,0],[1,1],[4,3],[5,4],[-2,8],[-4,16],[-4,17],[-1,5],[-1,5],[0,9],[1,2],[0,11],[1,6],[0,2],[-3,5],[-4,9],[-1,3],[1,7],[4,8],[0,2],[2,4],[1,4],[-1,15],[0,8],[-1,5],[-2,4],[-4,8],[-1,1],[-5,10],[-2,4],[-1,3],[0,1],[-3,8],[-1,5],[-1,8],[-3,12],[-1,4],[0,2],[-4,20],[-1,4],[-2,11],[-1,3],[-1,2],[0,1],[9,5],[1,1],[5,3],[-1,2],[-2,3],[6,2],[1,1],[3,1],[7,5],[1,1],[4,4],[3,3],[2,3],[2,2],[0,1],[2,5],[2,6],[3,13],[0,1],[0,1],[3,10],[3,8],[1,3],[2,5],[2,6],[3,1],[5,3],[18,10],[1,1],[3,1],[1,1],[4,1],[3,1],[10,4],[17,7],[0,8],[0,1],[0,1],[0,3]],[[4348,4067],[21,0],[8,0],[3,0],[1,0],[1,0],[1,1],[9,5]],[[3299,2686],[2,11],[0,1],[1,1],[0,3],[0,3],[0,3],[-1,21],[-3,31],[-1,5],[-3,0],[-4,-1],[-1,0],[-3,-2],[-2,6],[0,1],[0,2],[-1,9],[0,2],[0,1],[0,9],[-5,-1],[-1,5],[0,1],[0,2],[-1,10],[0,1],[0,1],[-1,11],[0,1],[0,1],[-1,6],[-1,4],[0,1],[-1,14],[-1,1],[0,1],[-1,3],[-1,2],[-1,1],[-4,5],[-4,5],[-2,3],[-2,6],[-1,3],[-2,7],[-1,3],[-2,2],[-3,3],[-16,15],[-4,3],[-3,3],[-6,9],[-4,7],[-3,2],[-4,3],[-8,3],[-8,3],[-9,2],[-6,1],[-4,0],[-5,0],[-11,0],[-5,-1],[-3,0],[-15,-2],[-13,-3],[-1,0],[-1,0],[-1,0],[-5,0],[-6,0],[-4,-1],[-8,-3],[-2,-1],[-9,-3],[-19,-8],[-19,-8],[-10,-4],[-34,-15],[-28,-12],[-5,-1],[-3,-1],[-2,0],[-10,1],[-1,0],[-12,2],[-1,1],[-4,1],[-18,8],[-2,0],[-1,1],[-1,0],[-2,1],[-21,9],[-9,5],[-1,0],[-7,4],[-4,3],[-13,10],[-1,1],[-21,15],[-4,3],[-1,1],[-1,0],[-3,2],[-5,5],[-1,3],[3,8],[0,1],[0,1],[1,2],[-2,1],[-6,3],[-4,1],[-1,1],[-1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[15,6],[3,3],[1,0],[3,4],[-2,3],[-10,11],[-2,4],[-1,3],[0,1],[6,7],[3,5],[1,1],[0,1],[0,1],[-11,8],[1,12],[0,1],[0,4],[0,4],[0,2],[-1,1],[-1,0],[-4,1],[-5,-1],[-4,3],[0,3],[1,0],[0,2],[1,4],[11,10],[0,1],[1,1],[-1,1],[-1,1],[-3,0],[-6,0],[-4,4],[-1,3],[0,1],[0,1],[0,3],[1,13],[1,4],[2,8],[0,3],[2,9],[0,4],[1,1],[2,9],[5,25],[2,8],[0,1],[1,3],[0,1],[2,2],[2,2],[4,1],[4,0],[2,0],[3,0],[1,4],[0,1],[0,2],[1,2],[12,10],[12,9],[0,1],[1,0],[2,2],[-1,3],[0,1],[0,3],[-5,11],[-3,5],[3,8],[1,2],[1,1],[1,2],[0,4],[1,7],[-1,5],[21,4],[1,0],[2,0],[10,2],[11,2],[1,0],[3,0],[0,4],[-1,4],[-3,13],[-2,8],[-1,2],[0,3],[-2,4],[-1,3],[0,1],[-1,4],[-3,7],[0,1],[-3,9],[-6,11],[2,1],[4,2],[4,2],[3,1],[1,1],[1,1],[-1,1],[-1,1],[-2,1],[-5,1],[-4,2],[-2,4],[0,2],[-1,5],[0,5],[-1,5],[0,2],[-3,5],[-2,4],[-1,3],[-2,4],[-6,6],[-18,20],[-10,19],[-5,11],[-2,7],[-1,3],[0,3],[-1,6],[-1,4],[0,2],[-1,11],[-2,10],[-1,13],[-2,20],[0,3],[-1,7],[0,4],[-1,2],[-3,4],[-6,5],[-3,2],[-1,1],[-3,2],[-8,3],[-12,4],[-11,3],[2,4],[1,3],[2,3],[3,5],[1,2],[0,5],[-2,16],[-1,9],[0,4],[4,15],[1,0],[2,8],[0,6],[0,10],[0,3],[-1,2],[-1,1],[-6,14],[-6,12],[-2,6],[-1,3],[-5,12],[2,0],[2,0],[7,2],[11,1],[7,1],[24,2],[13,1],[4,0],[5,-1],[10,-3],[1,0],[21,-7],[4,-2],[1,0],[2,-1],[13,-4],[19,-5],[2,-1],[1,0],[8,-2],[1,0],[12,-3],[17,-5],[2,-1],[24,-9],[1,0],[3,-2],[11,-4],[1,0],[1,0],[13,-5],[5,-2],[1,-1],[1,0],[16,-6],[11,-4],[1,-1],[14,-4],[3,-2],[4,-3],[1,-2],[1,0],[6,-7],[6,-3],[1,-1],[1,0],[4,-2],[11,-7],[1,0],[2,-1],[25,-13],[13,-10],[9,-6],[27,-18],[5,-4],[3,-2],[2,-2],[1,-1],[1,-1],[10,-11],[9,-11],[1,-1],[1,-1],[2,-3],[11,-17],[0,-1],[2,-3],[7,-14],[1,-2],[4,0],[3,-1],[1,0],[8,-2],[19,-4],[5,-1],[1,0],[5,-1],[0,4],[0,2],[1,6],[1,8],[2,11],[1,2],[0,1],[1,5],[6,16],[5,12],[10,28],[0,1],[2,5],[6,18],[1,2],[2,8],[2,4],[4,13],[1,3],[3,9],[1,2],[7,16],[1,1],[1,2],[10,25],[1,2],[1,1],[0,1],[7,12],[1,2],[4,7],[6,11],[1,1],[6,11],[1,2],[2,3],[1,1],[1,3],[4,6],[1,2],[0,1],[2,2],[4,6],[1,1],[1,1],[0,1],[3,5],[3,4],[1,2],[7,10],[3,7],[-1,3],[-4,9],[1,6],[2,5],[3,7],[0,1],[1,1],[0,1],[6,12],[3,5],[1,2],[6,10],[2,5],[1,2],[1,2],[9,17],[0,1],[1,3],[12,19],[0,1],[3,5],[5,11],[2,9],[1,3],[1,2],[4,17],[1,9],[-1,3],[0,2],[-1,5],[0,5],[-6,1],[-1,5],[0,3],[-1,1],[-2,10],[0,1],[-1,2],[4,6],[-1,2],[-1,1],[0,1],[-4,7],[-4,6],[-1,1],[0,1],[-10,14],[0,1],[-1,1],[-2,3],[-4,8],[-5,10],[-1,4],[0,1],[-1,3],[-1,2],[0,2],[-2,6],[-1,2],[0,1],[-3,12],[-1,2],[-7,18],[2,11],[1,2],[1,8],[0,2],[1,7],[0,1],[0,5],[3,13],[2,10],[1,9],[0,3],[0,1],[0,4],[-1,8],[0,7],[-2,7],[0,2],[-2,6],[-3,11],[-2,4],[-3,3],[0,1],[-2,3],[-3,3],[-1,2],[0,4],[0,6],[0,6],[0,1],[0,4],[-1,14],[-1,6],[-1,9],[0,4],[0,1],[1,2],[2,4],[1,3],[2,3],[1,2],[2,2],[2,2],[1,0],[0,1],[1,1],[3,2],[0,1],[1,1],[1,1],[1,2],[0,2],[1,0],[0,2],[0,3],[0,2],[0,2],[0,3],[0,3],[-1,18],[0,4],[0,1],[-1,2],[-1,0],[-5,2],[-2,1],[0,4],[0,3],[0,6],[-2,14],[-3,6],[0,1],[-5,6],[-2,4],[-1,1],[0,1],[-5,8],[-4,7],[-4,7],[-4,6],[-1,1],[-1,1],[-2,3],[-1,1],[-5,6],[-2,2],[-7,8],[-5,6],[-8,9],[-8,9],[-5,6],[-4,3],[-7,6],[0,1],[-6,5],[-1,1],[0,1],[0,1],[-3,4],[-1,3],[-1,1],[-1,5],[-1,4],[-1,6],[0,3],[0,3],[-6,2],[-9,7],[-11,8],[-5,5],[-2,2],[-3,5],[-4,8],[-8,15],[-4,6],[-9,12],[-7,11],[-2,3],[0,1],[-3,4],[0,1],[-4,7],[-4,6],[-3,4],[-5,8],[-5,8],[-7,11],[-1,1],[-5,7],[-6,7],[-3,5],[-5,5],[-4,5],[-2,11],[-4,14],[0,7],[-1,12],[-2,5],[-1,3],[-5,5],[-2,3],[-6,5],[-5,7],[-6,8],[0,1]],[[3151,4816],[1,-1],[5,-1],[6,-1],[12,1],[17,0],[20,3],[20,1],[12,-1],[13,-1],[3,-1],[13,-1],[3,0],[5,-1],[8,-1],[15,-5],[17,-7],[4,-2],[19,-8],[4,-3],[6,-2],[6,-2],[7,-1],[8,0],[7,0],[3,0],[4,1],[9,1],[5,0],[4,-1],[3,-1],[2,-2],[4,-1],[9,-3],[7,-1],[7,-3],[4,-2],[6,-5],[1,-1],[8,-5],[9,-3],[4,-2],[3,-1],[2,-1],[8,-3],[4,-3],[5,-4],[4,-4],[3,-4],[5,-6],[6,-8],[5,-7],[1,-3],[2,-7],[5,-12],[-4,-4],[7,-18],[7,-15],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[3,0],[2,0],[2,1],[1,0],[1,0],[1,1],[1,0],[2,-1],[0,-1],[2,-2],[2,-5],[2,-3],[1,-1],[3,-3],[5,-5],[6,-9],[5,-6],[2,-4],[1,-4],[2,-3],[0,-1],[11,-17],[3,-4],[4,-6],[1,0],[2,-3],[9,-17],[5,-8],[0,-1],[1,-1],[4,-9],[4,-7],[8,-14],[2,-4],[2,-4],[14,-26],[1,-2],[3,-3],[1,-2],[2,-1],[2,-1],[0,-1],[6,-5],[9,-10],[1,0],[14,-15],[4,-4],[15,-17],[5,-11],[1,-3],[3,-5],[10,-5],[7,-6],[3,-3],[0,-1],[-3,-6],[2,-7],[-2,-2],[20,-7],[3,0],[5,-1],[8,-9],[6,-6],[5,-5],[18,-19],[10,-10],[4,-5],[6,-6],[22,-19],[1,-1],[4,-3],[4,-2],[0,-1],[7,-5],[23,-17],[4,-3],[3,-3],[6,-5],[7,-9],[0,-1],[6,-4],[0,-1],[4,-2],[7,-6],[1,-1],[3,-2],[1,-1],[14,-13],[10,-8],[20,-17],[17,-13],[12,-10],[8,-6],[17,-11],[2,-2],[9,-5],[8,-8],[15,-14],[4,-4],[3,-4],[12,-9],[11,-8],[8,-6],[21,-9],[10,-3],[7,-2],[3,-1],[4,-2],[3,-2],[1,3],[0,1],[2,3],[3,6],[2,3],[2,0],[5,1],[2,0],[1,0],[1,1],[15,2],[2,0],[4,1],[3,1],[2,0],[5,1],[4,1],[10,2],[12,3],[35,6],[6,1],[12,2],[8,1],[5,0],[2,0],[1,-2],[2,-3],[2,0],[2,-1],[1,-1],[2,-2],[3,-3],[3,2],[3,2],[5,-6],[2,-3],[1,-1],[1,-1],[2,-2],[4,-2],[4,-2],[12,-7],[1,0],[10,0]],[[3723,2916],[-10,22],[-4,6],[-2,2],[-4,5],[-10,11],[-1,1],[-13,12],[-5,4],[-5,4],[-6,5],[-1,1],[-14,10],[-22,18],[-7,6],[-2,1],[-2,2],[-1,1],[-6,4],[-8,5],[-1,0],[-1,1],[-6,1],[-4,1],[-10,0],[-1,1],[-6,0],[-6,0],[-6,0],[-5,0],[-2,0],[-1,0],[-12,-1],[-6,1],[-1,0],[-5,0],[-16,4],[-5,3],[-18,8],[-1,0],[-3,1],[-2,0],[-5,1],[-14,0],[-5,4],[-2,1],[0,1],[-10,8],[-10,10],[-2,2],[-2,2],[-9,9],[-6,10],[-6,4],[-3,-1],[-1,-1],[-4,-2],[1,-2],[0,-1],[0,-1],[6,-46],[0,-5],[1,-1],[0,-1],[5,-36],[7,-33],[0,-4],[0,-4],[-1,-15],[-1,-11],[-1,-5],[-1,-17],[0,-1],[0,-8],[0,-3],[13,0],[0,-2],[0,-5],[0,-7],[0,-6],[0,-10],[-3,-3],[-4,-34],[-19,2],[-8,1],[-13,3],[-7,1],[-9,1],[-1,1],[-2,1],[-2,3],[-2,2],[-2,1],[-2,1],[-2,0],[-2,0],[-3,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[-3,-14],[-3,-9],[-6,-17],[-11,0],[-10,-1],[-3,0],[-2,-1],[-2,-1],[-1,0],[0,-1],[1,-9],[0,-1],[1,-3],[1,-6],[0,-2],[2,-5],[2,-8],[0,-2],[2,-8],[0,-3],[0,-2],[-1,-4],[-1,-5],[0,-8],[-1,-8],[-1,-20],[0,-16],[1,-3],[0,-3],[2,-3],[1,-2],[2,-2],[3,-3],[-18,1]],[[7128,414],[-160,-170],[-5,4],[-69,-72],[0,-1],[-37,-39],[-128,-136],[-69,62],[-4,4],[4,4],[51,54],[-14,12],[-25,22],[7,7],[0,14],[-2,1],[108,114],[-1,10],[-3,6],[9,5],[43,27],[9,5],[2,-2],[16,-15],[6,6],[-7,6],[35,37],[36,38],[198,211],[66,70],[22,24],[93,49],[53,-50],[26,-23],[3,-4],[-29,-30],[-231,-247],[-3,-3]],[[5355,1403],[-5,-4],[-6,8],[5,3],[6,-7]],[[5656,1821],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[9,0],[0,3],[0,3],[18,0],[0,-1],[3,0],[0,1],[1,0],[0,-1],[-1,0],[-3,0],[0,-1],[0,-1],[0,-3],[4,0],[0,3],[0,1],[0,1],[3,0],[0,1],[28,0],[0,-3],[0,-4],[6,0],[1,0],[13,0],[115,0],[2,0],[1,0],[7,0],[1,0],[2,0],[29,0],[20,0],[2,1],[8,-12],[0,-1],[-1,-4],[-2,-3],[-5,-8],[-9,-13],[-21,-32],[-1,-1],[-2,-2],[-2,-2],[-1,0],[-1,2],[4,5],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-49,-71],[-3,-5],[-7,-9],[-6,-9],[-4,-5],[-3,-5],[-1,-2],[-4,-5],[-11,-17],[-11,-15],[-16,-23],[-12,-18],[-13,-18],[-1,-2],[-2,-2],[-11,-17],[-1,0],[-1,-3],[-5,-7],[-2,-3],[-1,0],[-5,-7],[-1,-2],[-1,-2],[-4,-6],[-1,-1],[-8,-12],[-48,29],[-14,8],[-29,18],[-9,5],[-25,15],[-12,7],[-12,7],[-3,2],[-10,6],[-11,6],[-5,3],[-6,4],[-8,5],[-8,5],[-4,11],[-1,0],[0,1],[-3,7],[-2,7],[-3,8],[-2,6],[-3,9],[-4,9],[-3,8],[-1,4],[-12,33],[2,15],[-1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0],[2,16],[1,4],[1,11],[-4,1],[-1,-3],[-1,0],[1,6],[1,0],[0,-3],[4,0],[7,53],[9,0],[3,0],[7,0],[1,0],[1,0],[8,-1],[7,0],[3,0],[73,0],[0,13],[0,-6],[2,0],[0,6],[0,3],[2,0],[0,-16],[38,0],[0,3],[1,0],[0,-2],[4,0],[1,0],[0,2],[0,5],[4,0],[0,-6],[2,0],[0,11],[2,0],[1,0],[0,-13],[5,0],[0,1],[0,8],[1,0],[2,0],[0,-4],[7,0],[0,12],[0,1],[-1,0],[0,1],[1,5],[2,0],[0,-5]],[[6556,1894],[104,0],[17,0],[0,-2],[-17,0],[-104,0],[0,2]],[[5906,2520],[2,-3],[-9,-5],[2,-3],[22,-35],[4,-7],[19,-30],[12,-21],[1,0],[5,-8],[8,-13],[6,-10],[1,-3],[14,-22],[15,-24],[-23,-26],[-11,-12],[-15,-17],[-1,0],[-34,-38],[-5,4],[-11,-12],[-9,8],[-16,-18],[-26,-29],[-22,-24],[-20,-22],[-22,-24],[-2,-2],[-2,2],[-13,11],[-14,14],[-1,-1],[14,-14],[13,-10],[3,-3],[-2,-2],[0,-1],[6,6],[12,14],[11,12],[10,11],[57,63],[14,15],[4,-4],[5,-4],[1,-1],[0,-1],[-1,-8],[-1,-2],[-1,-2],[-11,-12],[-5,-6],[-3,-3],[-2,-1],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-3,-3],[-2,-3],[-4,-4],[-4,-4],[-6,-7],[-8,-8],[-3,-4],[-2,-2],[-2,-2],[-1,-1],[-2,-2],[-1,0],[-1,-3],[-3,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[5,-4],[-1,0],[-4,3],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,-2],[-1,-3],[-1,-4],[-2,-5],[0,-1],[0,-2],[1,-2],[0,-2],[1,-1],[4,-3],[2,-2],[3,-2],[9,-8],[14,-12],[3,-3],[0,1],[4,-3],[0,-1],[4,-4],[1,-1],[0,1],[3,3],[3,4],[1,0],[5,6],[2,0],[1,1],[2,0],[2,1],[1,0],[2,2],[1,2],[2,2],[1,2],[2,2],[2,2],[1,2],[2,2],[1,1],[2,2],[1,1],[2,1],[2,0],[3,1],[2,0],[2,1],[2,1],[2,1],[4,5],[5,5],[5,5],[5,6],[2,2],[2,3],[3,3],[2,3],[2,2],[11,11],[3,3],[2,2],[1,2],[2,2],[2,1],[2,1],[2,1],[0,1],[2,2],[2,1],[1,1],[1,1],[1,1],[2,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,2],[2,1],[2,2],[1,1],[1,0],[0,1],[2,2],[4,4],[1,1],[2,2],[3,4],[2,2],[1,1],[1,1],[1,1],[1,1],[0,1],[-1,1],[1,1],[1,1],[1,1],[2,2],[1,2],[1,1],[1,1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-4,-4],[-15,-16],[-9,-10],[-1,0],[-2,-3],[2,-2],[1,-1],[0,-1],[-1,0],[-3,-3],[-7,-4],[-4,-3],[-3,-3],[-1,0],[0,-1],[-1,0],[-15,-18],[-6,-5],[-9,-11],[-45,-49],[1,-1],[45,50],[9,11],[21,23],[1,0],[1,1],[3,2],[4,3],[7,5],[2,2],[1,0],[1,1],[0,1],[-1,2],[-1,0],[0,1],[0,1],[1,0],[10,11],[15,17],[3,4],[1,1],[2,-1],[1,1],[-1,2],[6,7],[6,-5],[17,-16],[6,7],[13,14],[-12,10],[1,1],[12,-10],[18,20],[1,1],[-15,13],[-9,7],[3,3],[8,-7],[14,-12],[1,-2],[24,-20],[35,-31],[5,-4],[15,-13],[1,1],[1,0],[1,1],[1,0],[1,0],[4,-4],[2,2],[10,8],[32,27],[20,16],[1,-2],[-17,-15],[-4,-2],[-42,-35],[6,-5],[0,-1],[1,-1],[1,-2],[0,-3],[12,-10],[-1,-1],[2,-2],[9,11],[12,-10],[-8,-10],[3,-2],[1,-1],[4,-4],[9,-7],[20,-18],[-1,-2],[3,-2],[44,-39],[14,-12],[15,-13],[1,0],[0,-1],[2,0],[1,0],[1,-1],[2,-1],[3,-3],[0,-1],[1,-1],[2,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-3],[0,-9],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-3,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-4,-5],[-3,-6],[-4,-5],[-2,-3],[-1,-2],[-4,-6],[-5,-10],[-6,-11],[-2,-2],[0,-1],[-1,-2],[-1,-1],[-2,-4],[-2,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[2,1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-6,0],[-3,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,-1],[-2,0],[-1,0],[-1,0],[-3,0],[-3,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-2,-2],[1,-1],[-5,-6],[-1,-1],[-3,0],[-9,0],[0,1],[-36,1],[-52,0],[-14,0],[-6,0],[0,-2],[-85,1],[1,1],[-9,0],[0,-3],[-23,0],[-1,0],[-25,0],[0,3],[-137,1],[-10,0],[-6,0],[-13,0],[-29,0],[-13,0],[-1,0],[0,1],[0,33],[-3,1],[-2,1],[-1,1],[-1,0],[0,1],[4,9],[3,4],[1,0],[6,5],[7,0],[17,0],[3,-3],[37,41],[28,31],[8,9],[0,1],[-2,-3],[0,1],[-7,-8],[-12,-14],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-2,1],[-2,2],[-2,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,2],[-1,1],[-1,0],[-1,2],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-5,-4],[0,-1],[-3,-3],[-2,-3],[-1,-2],[-1,0],[-1,-1],[-2,-1],[-2,-3],[-3,-3],[-1,-2],[-3,-3],[-3,-3],[-2,-3],[-3,-3],[-2,-3],[-3,-2],[-2,-2],[-2,-2],[-3,-3],[-2,-3],[-2,-1],[-1,-2],[-1,0],[-1,1],[-2,2],[-2,2],[-2,-2],[1,0],[1,-1],[1,-1],[4,-2],[0,-1],[0,-2],[-2,-2],[-3,-3],[-3,-4],[-2,-4],[-4,-4],[-2,-1],[-2,-2],[-3,-2],[-4,-3],[-1,-2],[-1,-7],[-1,-1],[-3,-2],[-5,-6],[0,-1],[-1,0],[0,1],[0,1],[1,1],[-7,0],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-2],[-2,-2],[-2,-3],[-3,-3],[-4,-4],[-1,-1],[-1,-1],[-2,-2],[-3,-3],[-2,-2],[-1,0],[-1,0],[-3,-4],[-116,1],[-1,0],[-2,0],[-3,0],[-3,0],[-7,0],[-10,0],[-6,0],[-4,0],[-8,0],[0,-2],[-1,-1],[-1,-1],[-22,0],[-2,0],[-1,1],[-1,1],[0,2],[-5,4],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,1],[-4,4],[1,2],[1,1],[-6,5],[-1,-2],[-1,-1],[-7,6],[-4,4],[-1,0],[-6,4],[-1,1],[1,2],[0,1],[-1,1],[0,1],[-2,1],[-1,1],[-2,1],[-1,1],[-1,1],[0,1],[-1,1],[0,2],[-2,6],[-2,3],[-1,3],[-1,2],[0,1],[-2,4],[-1,4],[0,2],[-1,1],[-1,2],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,3],[-1,3],[-2,6],[-3,7],[-1,3],[-1,2],[0,1],[-1,2],[-1,2],[-1,0],[1,1],[-1,2],[0,3],[-1,2],[-2,3],[-1,5],[0,3],[-1,1],[-1,2],[-2,4],[0,2],[-1,1],[0,2],[-1,1],[-1,2],[0,1],[-1,2],[0,2],[-1,1],[0,2],[-1,1],[0,1],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,2],[-1,2],[0,1],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[-2,5],[-8,23],[-1,1],[-3,10],[-1,1],[0,2],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,2],[0,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,2],[0,1],[-1,2],[0,2],[-2,3],[0,2],[-1,1],[0,2],[-1,1],[0,2],[-1,2],[-1,1],[0,2],[-1,1],[0,3],[-1,2],[-1,1],[-1,3],[0,1],[-1,1],[0,2],[0,1],[-1,2],[0,1],[-1,3],[-1,1],[0,2],[-1,2],[-1,0],[0,1],[0,1],[-3,6],[-2,6],[-1,1],[-2,8],[-1,3],[0,2],[-1,1],[0,2],[-1,2],[-1,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,3],[-1,2],[0,2],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,4],[-1,1],[0,2],[0,1],[-1,2],[-1,1],[0,2],[-1,0],[0,1],[-2,5],[-1,3],[-1,2],[-1,1],[0,1],[-1,1],[-1,2],[-1,4],[-2,5],[-1,4],[-1,2],[0,1],[-1,2],[-1,1],[0,1],[0,1]],[[5159,2332],[5,-13],[4,-2],[16,-7],[9,-25],[1,-2],[2,-1],[1,-3],[9,-25],[9,-25],[11,-29],[4,-10],[-3,-1],[1,-2],[1,-1],[2,-6],[0,-1],[3,1],[1,-4],[1,-2],[6,-17],[6,-17],[4,-12],[4,-11],[0,-1],[1,0],[5,-14],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[1,-2],[0,-1],[4,-10],[0,-1],[2,1],[1,0],[1,-4],[1,0],[23,-61],[0,-1],[17,-47],[0,-1],[0,-1],[-1,0],[1,-2],[-1,0],[5,-13],[-1,-4],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-11,-50],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-2,0],[-9,-4],[-1,2],[-1,0],[-1,-1],[-2,0],[1,-3],[-1,0],[0,1],[-2,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-10,-3],[-4,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-3],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[3,-8],[1,0],[2,-5],[5,-12],[1,-1],[1,0],[1,-1],[1,-2],[2,-1],[1,-2],[1,-1],[2,0],[2,0],[2,0],[2,0],[3,0],[3,1],[1,1],[1,0],[8,4],[21,7],[4,1],[1,0],[3,-1],[2,-1],[3,-3],[3,-3],[6,-4],[3,-3],[8,-6],[7,-5],[10,-9],[4,-4],[1,-2],[1,-4],[3,-5],[2,-5],[1,-3],[0,-2],[0,-4],[1,-2],[1,-2],[2,-2],[2,-3],[2,-3],[1,-2],[0,-1],[1,-1],[-3,-3],[-1,1],[-1,-1],[3,-8],[19,-52],[1,-3],[3,0],[10,-28],[-2,-1],[4,-11],[13,-35],[-10,-18],[-45,-11],[-36,-9],[0,-2],[-2,-1],[0,1],[-1,2],[-1,0],[1,-1],[-5,-2],[-10,-2],[-5,-1],[0,1],[-1,0],[-57,-14],[-6,-13],[-1,0],[0,-1],[-5,-10],[-1,-1],[2,-2],[4,-7],[1,0],[4,-5],[6,-7],[4,-6],[8,-9],[3,-3],[2,-2],[1,-1],[5,-7],[0,-1],[4,-4],[1,1],[1,1],[1,0],[5,-7],[5,-6],[6,-7],[11,-16],[16,-22],[-1,0],[-1,-1],[-1,-1],[-5,-3],[7,-11],[3,-5],[1,-2],[3,-4],[1,-3],[1,0],[4,-7],[0,-1],[2,-1],[1,0],[1,0],[1,0],[0,-1],[9,-4],[23,-9],[7,-9],[1,1],[7,1],[8,24],[2,6],[2,8],[8,6],[8,5],[21,14],[18,13],[14,9],[2,1],[3,3],[1,0],[7,4],[15,-8],[5,-4],[8,-4],[9,-6],[12,-7],[19,-11],[6,-8],[5,-8],[7,-10],[5,-7],[6,-8],[5,-7],[6,-10],[1,0],[7,-11],[6,-7],[4,-7],[18,-8],[5,7],[5,7],[1,1],[1,1],[6,8],[7,10],[7,10],[8,10],[9,13],[5,7],[8,11],[1,-1],[8,11],[11,16],[1,1],[7,10],[6,8],[7,10],[3,4],[2,3],[0,1],[1,0],[5,7],[2,3],[3,5],[7,9],[6,8],[5,7],[5,8],[6,7],[4,7],[1,1],[5,7],[6,8],[4,6],[1,1],[5,8],[6,7],[10,15],[6,7],[1,2],[0,1],[0,1],[0,1],[4,6],[0,2],[1,1],[1,1],[0,1],[1,2],[3,0],[8,1],[0,-1],[0,1],[0,-1],[2,0],[0,1],[19,2],[0,1],[6,1],[32,4],[3,0],[35,5],[0,-1],[4,1],[1,0],[37,5],[38,5],[7,1],[17,2],[7,1],[16,3],[0,-1],[7,1],[5,1],[1,0],[9,5],[3,1],[3,2],[3,1],[2,1],[3,1],[2,0],[3,0],[3,0],[4,0],[5,-1],[12,-3],[9,1],[23,3],[11,2],[1,0],[2,0],[16,2],[15,2],[17,3],[8,1],[3,0],[1,0],[1,-2],[4,-8],[9,-15],[1,-1],[1,0],[1,0],[1,0],[3,2],[7,5],[2,-3],[-7,-4],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[17,-28],[14,-23],[1,0],[1,-1],[1,0],[1,0],[1,1],[4,2],[7,4],[1,-2],[-7,-4],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-4],[2,-3],[2,-3],[4,-7],[26,-44],[2,1],[2,0],[2,0],[9,5],[1,-2],[-6,-3],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[0,-2],[1,-3],[1,-2],[0,-1],[1,-2],[1,-1],[1,-3],[2,1],[21,-37],[4,-7],[1,0],[1,-1],[1,-1],[2,-1],[3,-1],[2,0],[7,5],[1,-2],[-3,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-2],[1,-3],[1,-3],[1,-3],[1,-3],[1,-2],[1,-3],[0,-1],[1,-1],[1,-3],[1,-3],[1,-3],[1,-2],[1,-2],[1,-3],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[1,-2],[2,-3],[2,-4],[0,-1],[1,-2],[8,-13],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[8,4],[1,-2],[-6,-3],[0,-1],[0,-1],[0,-2],[1,-2],[0,-2],[1,-2],[1,-2],[1,-2],[0,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-3],[0,-1],[4,-7],[16,-27],[4,-7],[5,-8],[1,0],[1,-1],[1,1],[8,5],[2,-3],[-6,-3],[0,-2],[0,-1],[2,-4],[2,-6],[3,-6],[3,-7],[2,-4],[1,-2],[1,-3],[2,-3],[10,-17],[11,-20],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[9,5],[1,-2],[-8,-4],[0,-2],[0,-1],[0,-1],[1,-2],[1,-3],[1,-5],[0,-1],[6,-11],[13,-22],[10,-16],[9,-15],[12,6],[1,-3],[-8,-4],[0,-2],[1,-3],[1,-4],[1,-3],[1,-2],[7,-12],[14,-23],[15,-26],[1,0],[1,-1],[1,0],[2,0],[7,3],[1,-2],[-7,-4],[0,-2],[0,-1],[1,-4],[12,-21],[3,-5],[1,-1],[9,-16],[11,-19],[3,-2],[5,-4],[1,-1],[1,0],[7,4],[1,-2],[-7,-4],[-1,-2],[1,-1],[0,-1],[0,-2],[1,-3],[1,-1],[1,-2],[1,-1],[14,-14],[24,-25],[23,-23],[14,-14],[20,-34],[17,-28],[12,-21],[1,-2],[38,-62],[21,-37],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,-2],[2,-2],[1,-1],[1,-2],[1,-2],[1,0],[1,-1],[0,-1],[1,-2],[0,-1],[3,-6],[1,-2],[1,-4],[1,-2],[2,-4],[2,-4],[2,-4],[3,-4],[2,-5],[1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-2,-1],[-2,-2],[-3,-2],[-3,-2],[-2,-2],[-4,-2],[-4,-2],[0,-1],[-5,-2],[-4,-3],[-4,-2],[-5,-4],[-6,-3],[-2,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-3,-1],[-2,-1],[-3,0],[-3,-1],[-1,-1],[-4,-1],[-5,-1],[-74,-42],[-1,2],[-13,-7],[3,-5],[-2,-2],[-26,-14],[-27,-15],[-8,-5],[-3,-1],[-3,5],[-12,-7],[0,-1],[0,-1],[0,-1],[-10,-5],[0,-1],[-73,-41],[-15,-9],[-14,-8],[-1,2],[-1,0],[1,-3],[-40,-23],[-9,3],[-1,2],[-81,28],[-20,8],[-33,12],[0,-1],[-5,1],[0,1],[-10,4],[-45,16],[2,4],[-32,46],[-6,-3],[-1,2],[1,-3],[-10,-5],[-22,-13],[-1,0],[0,1],[-1,-1],[-19,7],[0,1],[-1,0],[-31,51],[-35,60],[0,1],[-1,1],[-1,1],[0,2],[-1,0],[-6,-4],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-2,-2],[-1,0],[-14,-9],[-61,-42],[-65,-85],[-5,4],[-36,25],[-1,0],[-44,31],[-66,46],[-29,20],[-24,17],[-1,1],[-30,20],[-24,13],[-15,8],[-1,0],[-4,2],[-18,8],[-89,48],[-22,11],[-52,32],[-33,20],[-15,9],[-1,0],[-18,11],[-2,1],[-21,11],[-10,2],[-30,-2],[-41,-2],[-20,1],[-40,2],[-22,1],[-27,1],[-2,0],[-1,-1],[-19,-2],[-13,-7],[-27,-10],[-31,-6],[-10,1],[-30,2],[-17,3],[-25,7],[-13,5],[-8,4],[-5,2],[-8,3],[-5,2],[-9,5],[-8,2],[-5,0],[-10,1],[-9,1],[-9,1],[-9,2],[-4,1],[-9,2],[-9,1],[-5,-1],[-22,-11],[-14,-6],[-13,-8],[-5,-5],[-7,-9],[-10,-18],[-19,-28],[-4,-5],[-20,-26],[-1,-3],[-10,-13],[-9,-7],[-10,-3],[-6,-1],[-12,0],[-8,1],[-9,4],[-3,2],[-5,4],[-12,11],[-5,5],[-6,5],[-11,10],[-15,15],[-7,7],[-11,5],[-28,9],[-18,5],[-18,4],[-13,4],[-19,0],[-11,0],[-12,-4],[-25,-12],[-6,-4],[-20,-11],[-18,-13],[-7,-5],[-13,-9],[-9,-6],[-7,-6],[-36,-32],[-4,-4],[-23,-26],[-18,-18],[-23,-20],[-13,-8],[-26,-10],[-17,-5],[-21,-6],[-29,-7],[-13,-4],[-2,0],[-44,-12],[-35,-9],[-23,-6],[-6,-1],[-11,-2],[-31,-3],[-19,-1],[-10,0],[-33,-2],[-30,-1],[-27,1],[-14,3],[-7,2],[-7,2],[-9,4],[-4,1],[-5,2],[-11,5],[-15,6],[-11,8],[-19,10],[-12,7],[-12,10],[-8,8],[-2,2],[-9,11],[-5,7],[-2,3],[-5,9],[-10,17],[-6,12],[-6,13],[-9,21],[-4,11],[-1,8],[-2,12],[-1,12],[-1,30],[0,16],[3,18],[2,13],[4,9],[4,8],[6,7],[14,14],[13,13],[12,12],[5,6],[5,7],[17,18],[7,7],[12,12],[9,7],[23,17],[11,6],[8,9],[7,7],[4,9],[5,11],[2,8],[4,8],[2,10],[2,14],[1,9],[-1,7],[-1,6],[-4,10],[-8,16],[-10,13],[-9,11],[-11,12],[-11,10],[-10,8],[-14,11],[-7,5],[-9,7],[-12,8],[-12,7],[-4,2],[-16,8],[-15,6],[-13,6],[-15,5],[-14,3],[-17,3],[-3,0],[-9,1],[-20,1],[-23,2],[-25,2],[-20,2],[-29,3],[-11,2],[-9,2],[-12,3],[-8,2],[-6,2],[-12,6],[-11,5],[-10,7],[-8,6],[-15,11],[-12,11],[-13,10],[-11,7],[-30,18],[-10,5],[-1,0],[-21,8],[-32,14],[-13,6],[0,1],[-14,7],[-26,14],[-10,7],[-12,8],[-9,6],[-15,12],[-12,9],[-19,15],[-11,10],[-6,8],[-10,11],[-15,23],[-16,27],[-15,25],[-5,9],[-4,9],[-5,12],[-3,7],[-12,37],[-14,47],[-1,2],[-3,7],[-7,22],[-9,32],[-9,28],[-17,46],[-19,53],[-7,17],[-11,33],[-12,35],[-8,22],[-3,11],[-7,25],[0,4],[-3,18],[-3,18],[-3,12],[-3,11],[-1,5],[-1,2],[-11,43],[-8,25],[-9,29],[-6,17],[-4,8],[-3,5],[-5,9],[-5,8],[-5,6],[-12,15],[-10,12],[-6,10],[-1,3],[-2,2],[-4,5],[-6,7],[-2,2],[-9,10],[-17,18],[-22,22],[-18,17],[-4,3],[-3,2],[-7,4],[-10,4],[-6,1],[-7,1],[-31,-1],[-37,-3],[-28,-3],[-1,-5],[-17,-2],[-13,-1],[-2,2],[-1,3],[0,1],[-2,6],[-8,-1],[-14,-1],[-2,0],[-5,0],[-9,-1],[-2,0],[-6,0],[-4,0],[-11,1],[-5,0],[-5,2],[-3,0],[-14,6],[-4,3],[-3,1],[-3,2]],[[2593,2331],[8,13],[0,1],[4,7],[6,13],[7,17],[2,4],[12,25],[1,3],[10,19],[4,8],[3,0],[13,-2],[5,-1],[8,0],[0,1],[3,6],[-10,5],[-13,7],[-2,2],[-14,7],[-23,12],[-2,-3],[-6,-14],[-11,7],[6,12],[1,4],[-16,8],[-3,2],[-2,-4],[-5,-7],[-1,-1],[-13,7],[0,1],[1,3],[3,5],[0,1],[1,3],[-1,1],[-10,4],[-19,9],[3,3],[-11,7],[14,27],[8,16],[2,4],[3,-2],[2,-2],[4,-2],[20,-9],[3,-1],[5,-3],[18,-10],[7,14],[2,4],[2,3],[3,3],[2,1],[1,1],[5,4],[1,1],[4,3],[-7,9],[-2,2],[0,1],[1,1],[3,3],[6,4],[4,3],[0,1],[5,2],[-6,6],[3,2],[4,2],[3,2],[1,1],[1,4],[1,4],[3,2],[0,1],[2,1],[3,0],[4,-1],[4,1],[5,4],[4,2],[2,1],[1,0],[1,0],[5,1],[2,0],[3,1],[2,0],[1,1],[1,2],[1,10],[1,1],[1,1],[8,1],[3,2],[4,3],[3,3],[2,0],[2,0],[4,0],[7,-2],[16,-5],[4,-1],[1,-1],[4,-7],[3,-4],[2,-2],[2,-2],[2,0],[1,-1],[4,-1],[3,-3],[3,-2],[1,-2],[1,-1],[0,-1],[2,-1],[15,-12],[2,-1],[1,-1],[2,-1],[0,-1],[2,0],[1,0],[7,2],[1,1],[2,2],[1,0],[2,2],[2,1],[4,3],[3,4],[12,17],[3,4],[2,2],[3,1],[1,1],[2,1],[2,1],[3,-8],[2,-2],[0,-1],[1,-2],[2,-2],[2,-3],[9,-6],[3,4],[8,6],[13,4],[4,2],[2,1],[1,1],[3,0],[8,1],[3,0],[6,1],[0,-2],[0,-1],[0,-1],[-1,-17],[2,0],[6,0],[4,1],[4,0],[4,0],[8,0],[6,-2],[2,0],[0,-3],[-1,-5],[0,-4],[0,-1],[4,-2],[6,-4],[3,-4],[3,-1],[2,0],[1,1],[12,16],[9,10],[2,2],[2,2],[3,-3],[6,-9],[18,-23],[1,-1],[1,-3],[13,-17],[1,-1],[1,-2],[10,-14],[7,-10],[8,-11],[1,-1],[2,-4],[8,-11],[2,-2],[6,-8],[2,-3],[5,-7],[3,-4],[1,-2],[2,-2],[1,-2],[1,-2],[12,-16],[5,-7],[10,-15],[6,-10],[1,-2],[13,-23],[2,-5],[1,-1],[1,-2],[2,-4],[1,-2],[4,-5],[7,-13],[5,4],[3,2],[2,1],[19,13],[4,3],[6,4],[1,1],[1,1],[10,7],[2,1],[10,8],[1,0],[17,12],[2,2],[1,1],[23,18],[2,1],[5,5],[19,15],[2,1],[5,4],[1,1],[0,2],[0,2],[0,2],[0,12],[0,2],[0,6],[0,8],[0,1],[0,7],[0,12],[0,2],[-2,6],[0,1],[-1,1],[-1,3],[-1,4],[-1,2],[-1,3],[-1,3],[-1,2],[0,1],[-1,2],[1,2],[1,2],[2,1],[2,2],[5,3],[3,5],[0,1],[-1,2],[-3,2],[-1,1],[-2,1],[-1,1],[-2,2],[-2,12],[0,3],[-1,16],[0,3],[0,5],[-1,3],[-2,6],[-1,4],[0,1],[0,3],[0,2],[0,5],[0,1],[-1,3],[1,4],[0,3],[0,1],[0,2],[1,2],[0,4],[1,1],[0,2]],[[881,5431],[7,0],[5,0],[20,-1],[4,-1],[1,0],[3,0],[4,-1],[3,0],[6,-1],[6,0],[8,-1],[2,-1],[15,-2],[22,-3],[6,-1],[4,-1],[7,-2],[1,0],[15,-3],[8,-2],[7,-2],[5,-1],[5,-2],[17,-5],[4,-1],[16,-6],[14,-5],[2,-1],[17,-7],[11,0],[11,0],[3,-5],[5,-6],[5,-5],[4,-5],[16,-14],[12,-10],[7,-6],[14,-12],[13,-17],[9,-7],[5,-3],[7,-9],[1,-5],[4,-15],[4,-10],[2,-10],[3,-17],[1,-2],[3,5],[4,7],[2,1],[3,1],[1,0],[2,0],[4,1],[5,1],[3,-1],[0,-1],[1,-1],[0,-2],[0,-4],[1,-1],[0,-2],[-1,-2],[0,-1],[-1,-4],[2,1],[10,0],[1,-4],[1,-1],[4,-14],[2,-12],[1,-4],[3,1],[0,-8],[0,-5],[0,-17],[-8,-1],[-4,-1],[0,-5],[0,-7],[2,-18],[0,-8],[0,-4],[0,-2],[0,-4],[-1,-22],[0,-2],[0,-6],[-1,-5],[2,-17],[1,-8],[0,-4],[1,-8],[0,-1],[5,0],[2,0],[11,1],[-3,10],[-2,4],[3,0],[3,1],[3,1],[17,0],[6,0],[5,-1],[7,-2],[0,-5],[-1,-5],[-1,-8],[1,-2],[1,-2],[1,-1],[6,0],[4,1],[4,2],[8,1],[13,1],[5,-1],[2,0],[2,-1],[23,-2],[8,0],[17,-7],[2,0],[15,-13],[1,-1],[1,0],[1,0],[2,2],[1,2],[1,1],[2,1],[2,0],[1,1],[10,-2],[3,-1],[0,-2],[-1,-3],[0,-2],[4,1],[4,7],[1,2],[3,4],[1,3],[0,3],[0,5],[0,12],[0,4],[1,2],[1,7],[1,15],[3,7],[2,6],[2,14],[1,13],[0,4],[-13,2],[-24,3],[-55,4],[-1,2],[3,34],[-1,3],[-7,5],[-7,5],[-11,6],[-5,1],[-4,2],[-2,1],[-1,2],[-3,3],[-5,6],[-8,11],[-9,12],[-2,3],[-9,16],[-3,4],[-1,1],[-8,9],[7,-2],[2,0],[3,-1],[5,0],[25,-7],[1,-27],[9,-2],[9,23],[14,-11],[11,-7],[10,-4],[5,-3],[6,-2],[6,-3],[10,-5],[4,-1],[8,-4],[6,-2],[6,-2],[7,-3],[3,-1],[3,-1],[4,-2],[4,-1],[7,-3],[4,-1],[5,-2],[7,-2],[2,0],[4,-2],[17,-6],[10,-3],[5,-2],[16,-7],[8,-3],[2,-2],[7,-3],[10,-4],[18,-9],[11,-6],[3,-2],[2,-2],[12,-8],[4,-4],[5,-6],[6,-6],[3,-4],[29,-28],[-1,-8],[0,-5],[8,-1],[-1,-15],[17,-3],[7,-2],[2,0],[5,-1],[6,-1],[2,0],[1,0],[2,-1],[1,0],[-1,-7],[0,-5],[0,-2],[0,-2],[0,-9],[1,-3],[0,-1],[0,-4],[28,-3],[25,-2],[5,-1],[1,0],[22,-4],[1,-1],[11,-2],[25,-5],[2,0],[5,-1],[4,-1],[4,-1],[4,-1],[11,-2],[31,-5],[17,-3],[16,-4],[2,-1],[2,0],[3,-2],[2,-1],[1,-1],[1,0],[4,-2],[5,-1],[1,-1],[28,-7],[13,-6],[3,-1],[18,-7],[7,-3],[5,-4],[2,-1],[10,-6],[15,-3],[-5,-15],[0,-1],[-2,-6],[3,-1],[1,0],[2,-1],[14,-3],[8,-1],[2,0],[2,0],[10,-1],[16,0],[3,0],[3,0],[4,1],[18,8],[1,0],[12,7],[2,1],[7,5],[6,6],[2,1],[14,8],[-1,9],[3,1],[2,0],[6,1],[22,3],[1,0],[4,1],[8,1],[19,3],[8,1],[31,5],[2,0],[1,0],[3,1],[17,4],[2,0],[1,1],[3,1],[13,4],[14,4],[13,7],[1,1],[2,1],[5,2],[8,6],[3,2],[10,7],[8,5],[1,1],[13,8],[2,2],[11,7],[3,2],[3,2],[2,1],[2,2],[7,5],[3,0],[19,4],[2,1],[10,2],[15,2],[1,0],[2,1],[13,2],[2,0],[1,1],[2,0],[7,1],[3,1],[7,1],[3,0],[9,1],[1,0],[21,3],[9,1],[3,0],[1,0],[17,8],[10,4],[11,5],[2,0],[2,1],[8,3],[5,2],[3,2],[7,2],[26,10],[1,0],[3,1],[3,1],[21,6],[15,5],[22,7],[5,1],[2,1],[1,0],[5,1],[6,2],[3,1],[4,2],[5,2]],[[2779,5107],[-1,-5],[0,-3],[0,-3],[0,-1],[0,-3],[1,-6],[0,-1],[3,-8],[1,-2],[1,-1],[1,-2],[2,-1],[13,0],[7,1],[6,0],[4,0],[1,0],[15,1],[4,0],[11,1],[3,1],[15,1],[33,2],[1,1],[1,0],[5,0],[11,0],[5,0],[4,0],[2,0],[7,0],[27,5],[5,1],[4,0],[2,0],[2,0],[11,-1],[22,-2],[4,0],[1,1],[1,0],[1,0],[3,0],[9,4],[5,1],[2,0],[1,0],[16,3],[4,1],[1,1],[5,1],[9,2],[4,1],[4,1],[8,1],[-4,-21],[-1,-9],[-2,-8],[-1,-17],[0,-7],[0,-1],[-1,-7],[-1,-8],[1,-2],[1,-3],[0,-3],[2,-7],[1,-6],[0,-2],[2,-8],[2,-12],[0,-4],[0,-6],[-1,-2],[2,-7],[2,-13],[0,-1],[1,-8],[1,-3],[1,-3],[1,-5],[1,-1],[5,-15],[1,-4],[4,-9],[0,-1],[1,-2],[5,-10],[1,-3],[2,-5],[2,-4],[4,-10],[4,-8],[4,-9],[2,-5],[1,-3],[2,-3],[2,-3],[2,-3],[3,-3],[4,-5],[4,-3],[5,-1]],[[2593,2331],[-18,11],[-6,3],[-29,20],[-20,12],[-10,5],[-13,8],[-19,11],[-9,7],[-5,3],[-3,2],[-2,3],[-4,5],[-3,3],[-3,6],[-6,10],[-1,2],[-10,21],[-6,12],[-2,5],[-5,10],[-3,4],[-2,2],[-12,8],[-15,9],[-25,14],[-6,5],[-10,8],[-2,2],[-15,10],[-41,29],[-15,10],[-14,10],[-27,20],[-9,6],[-8,6],[-23,16],[-10,7],[-11,7],[-1,1],[-2,2],[-3,2],[-4,2],[-4,5],[-2,3],[-12,18],[-5,7],[-7,8],[-11,13],[-10,11],[-7,9],[-11,14],[-4,4],[-4,4],[-3,1],[-1,1],[-4,1],[-2,0],[-3,1],[-1,0],[-11,3],[-3,1],[-10,2],[-5,1],[-5,1],[-3,2],[-9,5],[-17,14],[-1,1],[-11,10],[-13,10],[-1,2],[-4,3],[-35,30],[-4,3],[-2,3],[-1,2],[0,3],[1,3],[11,15],[-8,9],[-14,11],[-5,3],[-12,6],[-19,10],[-13,6],[-6,3],[-2,1],[-20,7],[-2,-7],[-12,11],[-3,4],[-1,0],[-8,8],[-3,3],[-6,4],[-4,2],[-10,3],[-12,2],[-13,3],[-3,1],[-3,2],[-3,1],[-6,3],[-7,5],[-5,4],[-1,1],[-3,2],[-2,3],[-1,1],[-2,3],[-1,2],[-3,5],[-7,11],[-6,10],[-1,1],[-2,4],[-3,4],[-4,3],[-9,7],[-13,6],[-11,5],[-14,4],[-7,4],[-9,5],[-28,18],[-31,23],[-19,13],[-2,2],[-1,1],[-2,1],[-2,0],[-2,1],[-2,1],[-3,0],[-2,0],[-3,1],[-2,0],[-4,-1],[-7,-1],[-4,-1],[-16,-5],[-5,-2],[-6,-3],[-19,-6],[-6,0],[-5,4],[-5,3],[-11,10],[-7,5],[-10,8],[-7,4],[-3,1],[-11,3],[-2,2],[-5,4],[-3,2],[-1,2],[-1,1],[-1,3],[-1,2],[-3,7],[-3,6],[-1,3],[-8,11],[-7,4],[-6,2],[-29,8],[-36,9],[-19,2],[-6,-1],[-10,-5],[-2,-1],[-5,-3],[0,-1],[-9,-5],[-11,-7],[-7,-5],[-10,-4],[-7,-1],[-3,-1],[-12,0],[-5,0],[-15,4],[-5,2],[-12,6],[-5,3],[-30,19],[-10,7],[-3,2],[-18,11],[-6,3],[-10,7],[-6,4],[-7,5],[-19,14],[-5,3],[-8,5],[-4,4],[-2,1],[-5,1],[-8,1],[-18,0],[-13,0],[-36,0],[-15,0],[-14,-2],[-9,-1],[-6,-1],[-5,-4],[-31,-12],[-2,-1],[-3,-1],[-6,-2],[-9,-3],[-14,-4],[-9,1],[-12,2],[-13,2],[-6,2],[0,1],[-2,0],[-19,11],[-19,10],[-2,14],[0,1],[-2,5],[-2,7],[-1,6],[-2,5],[-1,5],[-2,9],[0,3],[-6,18],[-3,6],[-2,3],[0,5],[-1,1],[-1,4],[-1,2],[1,2],[0,1],[1,2],[1,1],[3,3],[2,6],[3,9],[1,9],[-1,1],[0,2],[-1,4],[-1,3],[-1,7],[0,4],[-1,3],[0,2],[0,3],[-2,8],[0,2],[0,4],[1,4],[1,8],[3,6],[3,6],[4,9],[1,1],[2,1],[1,1],[4,0],[1,-1],[2,-2],[2,-2],[2,-3],[7,-5],[5,-4],[3,-1],[8,-7],[3,-2],[8,-2],[10,-2],[1,2],[1,2],[2,4],[2,0],[2,-1],[1,0],[2,0],[1,-1],[1,0],[0,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,4],[-1,3],[0,1],[1,1],[0,3],[1,2],[3,5],[3,9],[4,6],[3,5],[6,13],[3,8],[2,4],[4,7],[1,4],[3,7],[2,4],[2,2],[5,0],[1,0],[3,-1],[4,5],[1,3],[-2,4],[-1,4],[-3,4],[-6,5],[-1,0],[-3,2],[-6,1],[-3,0],[-6,1],[-3,-3],[-2,0],[-3,-1],[-1,0],[-2,1],[-6,3],[-1,1],[0,1],[0,4],[1,3],[1,3],[0,1],[1,3],[1,5],[0,1],[1,3],[0,2],[0,6],[-2,4],[-4,5],[1,4],[1,1],[2,4],[5,5],[3,4],[1,1],[3,5],[1,1],[-3,2],[-2,1],[-4,4],[-1,4],[-3,12],[0,2],[-2,4],[-2,5],[-3,2],[-8,5],[-8,5],[-6,4],[-5,5],[-1,7],[4,9],[2,5],[2,4],[0,5],[1,2],[-3,2],[-1,1],[-1,0],[0,3],[0,15],[-2,5],[3,9],[-4,0],[-2,0],[-3,-1],[-3,-1],[-2,11],[0,1],[-4,4],[-5,6],[-2,3],[-3,4],[-2,3],[-2,3],[-4,3],[-4,4],[-7,6],[-3,1],[-3,1],[-2,1],[-3,2],[-1,0],[-10,1],[-4,1],[-1,0],[-2,2],[-4,1],[-8,5],[-1,0],[-4,1],[-3,0],[-5,2],[-1,1],[-1,0],[-1,1],[-1,2],[-1,4],[-1,3],[-1,3],[-7,10],[-3,5],[-9,13],[-1,1],[-5,8],[-8,11],[-5,8],[-1,2],[-3,5],[-5,11],[-5,12],[-3,5],[0,2],[-1,1],[-3,13],[0,3],[-3,8],[-2,4],[-4,20],[-3,12],[-4,11],[-11,23],[-1,2],[-1,2],[0,3],[0,1],[1,0],[2,2],[1,1],[2,1],[2,1],[1,1],[-2,3],[-1,7],[0,3],[14,5],[1,0],[3,2],[6,3],[2,1],[2,0],[5,3],[2,2],[0,1],[-1,12],[0,1],[4,0],[10,0],[6,0],[2,1],[3,14],[1,1],[0,1],[3,0],[4,0],[1,1],[1,5],[0,3],[-1,7],[-1,10],[1,8],[0,2],[3,4],[0,1],[5,6],[1,1],[0,2],[-5,8],[-5,10],[2,7],[2,1],[3,0],[4,2],[6,4],[6,4],[0,1],[-4,4],[-2,4],[0,3],[0,4],[5,-3],[1,0],[8,-4],[6,-3],[3,-1],[2,-1],[2,-1],[8,-6],[7,-6],[1,-1],[8,-6],[3,-3],[6,1],[12,3],[12,5],[1,0],[3,2],[2,1],[15,7],[8,2],[4,1],[5,1],[2,3],[0,15],[-1,14],[1,5],[0,16],[0,6],[0,6],[0,12],[-1,9],[-1,8],[0,19],[1,18],[0,10],[1,18],[0,9],[0,6],[-2,4],[-1,9],[19,4],[3,0],[8,0],[0,1],[2,0],[0,3],[0,6],[0,2],[-1,4],[0,3],[0,1],[-2,16],[-1,12],[-1,4],[-2,20],[0,14],[0,5],[-2,9],[-9,23],[-2,7],[-1,3],[-3,1],[-16,-2],[-2,-1],[-5,0],[-10,-2],[-1,0],[-1,0],[-2,2],[-2,3],[-10,20],[-8,19],[-2,5],[-6,12],[-1,4],[-1,12],[-3,19],[-1,6],[-1,11],[0,1],[0,9],[0,1],[0,5],[0,4],[2,7],[1,15],[1,4],[-1,3],[0,4],[0,2],[-1,17],[0,1],[0,3],[1,2],[7,6],[-2,2],[-7,6],[-16,11],[-3,2],[-2,1],[2,2],[2,1],[3,4],[0,1],[-3,1],[-2,1],[0,5],[0,4],[-1,1],[-1,1],[-10,4],[-8,1],[-10,2],[-4,-1],[-6,-1],[-5,-1],[-2,1],[-2,4],[-2,8],[-2,4],[-7,14],[-3,7],[-2,2],[-4,7],[11,9],[3,1],[4,1],[8,2],[6,1],[2,3],[2,2],[1,1],[0,1],[4,9],[3,6],[3,1],[3,2],[3,2],[1,0],[1,1],[8,6],[5,3],[8,6],[5,4],[4,1],[3,0],[12,0],[-3,17],[-1,3],[0,4],[-1,4],[0,2],[-10,25],[0,1],[-1,1],[-1,5],[-1,0],[-4,8],[-6,15],[0,1],[0,3],[0,3],[0,6],[1,3],[0,3],[-3,9],[-4,7],[-1,2],[0,4],[0,1],[-1,3],[-1,3],[-2,2],[0,1],[-2,3],[0,1],[-2,11],[-3,8],[-24,11],[-3,2],[-7,3],[-9,5],[-3,2],[-12,6],[-15,7],[-4,2],[-6,3],[-5,2],[-8,4],[-6,3],[-2,2],[-3,1],[-4,3],[-8,18],[-26,14],[-6,3],[-2,1],[-5,2],[-11,3],[5,13],[1,1],[2,1],[1,2],[5,2],[3,1],[2,0],[5,1],[3,1],[10,1],[4,-1],[10,-5],[4,-1],[8,2],[5,1],[12,1],[24,0],[6,0],[7,0],[18,-7],[3,8],[-4,13],[-1,1],[-1,5],[-12,0],[-1,0],[0,1],[0,2],[-1,1],[0,7],[0,3],[0,3],[0,6],[0,3],[0,1],[0,1],[1,5],[1,4],[1,5],[-1,4],[-1,4],[-3,5],[0,2],[-2,5],[0,6],[-1,12],[2,12],[2,10],[4,7],[4,3],[6,2],[11,7],[4,4],[3,4],[4,5],[11,13],[0,3],[0,9],[0,2],[-1,10],[-4,13],[-2,2],[-6,3],[-4,2],[-1,1],[-3,1],[-2,2],[-4,2],[-2,1],[-2,1],[-4,3],[2,7],[0,2],[0,7],[-5,2],[-5,2],[-5,1],[-13,4],[-13,7],[-7,9],[-3,9],[4,0],[7,-1],[8,-1],[7,-1],[5,-1],[7,-1],[3,-1],[4,0],[6,-1],[4,-1],[1,0],[6,-1],[5,-1],[9,-1],[36,-2],[6,0],[6,0],[13,-1],[12,0],[3,0],[12,0],[2,-1],[3,1],[8,0],[1,0],[0,1],[4,0],[-1,9],[-3,2],[-1,1],[-2,1],[-12,1],[-13,2],[-5,0],[-12,2],[-13,1],[-2,1],[-3,1],[-4,-1],[-4,-1],[-17,1],[-5,2],[-23,1],[-6,1],[-2,1],[-7,2],[-3,0],[-4,-1],[-5,0],[-9,1],[-8,2],[-13,3],[2,2],[8,2],[5,1],[5,0],[4,2],[9,-1],[16,-3],[8,-1],[3,-1],[8,-1],[13,-2],[4,-1],[3,0],[6,-1],[11,-2],[4,0],[13,-3],[36,-5],[12,-3],[3,0],[1,0],[5,0],[5,-1],[5,-1],[3,-1],[1,0],[10,-4],[8,-3],[8,-3],[1,1],[9,7],[3,1],[8,4],[3,1]],[[2779,5107],[1,10],[1,5],[0,5],[2,5],[0,1],[2,2],[3,2],[2,9],[-1,2],[-1,1],[-3,15],[-3,6],[0,1],[-2,3],[-4,-2],[-2,6],[0,4],[2,3],[4,5],[1,2],[1,3],[1,1],[0,2],[2,3],[0,5],[2,5],[4,3],[3,1],[1,1],[4,1],[18,7],[1,0],[1,1],[8,3],[10,5],[1,0],[1,1],[5,2],[1,0]],[[2845,5236],[8,3],[8,5],[1,0],[1,1],[7,4],[11,8],[2,3],[1,2],[1,1],[1,1],[2,4],[9,19],[6,9],[1,2],[3,5],[9,13],[1,1],[1,1],[13,18],[1,2],[12,13],[1,1],[3,2],[2,3],[3,2],[5,3],[5,2],[2,1],[2,1],[12,11],[4,2],[6,3],[8,4],[16,9],[28,12],[1,0],[1,0],[4,2],[2,2],[1,1],[13,14],[1,1],[1,1],[5,5],[8,9],[1,0],[0,1],[10,10],[3,3],[13,12],[1,1],[0,1],[1,1],[1,3],[2,3],[2,2],[10,3],[9,9],[5,7],[4,2],[1,1],[2,2],[8,6],[1,2],[3,5],[1,2],[2,3],[8,19],[8,16],[2,1],[7,8],[2,2],[1,1],[2,2],[5,5],[1,1],[1,1],[6,7],[8,5],[13,12],[11,8],[1,1],[3,2],[2,2],[24,23],[5,6],[0,1],[1,3],[6,6],[1,1],[2,1],[1,1],[0,1],[2,1],[4,5],[1,2],[1,1],[0,1],[2,3],[3,4],[1,2],[1,2],[1,3],[5,8],[3,2],[1,1],[2,1],[5,4],[4,2],[5,5],[15,10],[6,4],[1,1],[3,2],[6,6],[12,7],[5,4],[6,4],[1,2],[1,0],[0,1],[6,5],[0,1],[2,1],[1,1],[1,1],[3,4],[4,4],[10,1]],[[3234,7067],[0,-1],[-1,-3],[-1,-1],[-4,-12],[-7,-15],[-2,-6],[-2,-6]],[[2845,5236],[-1,5],[0,1],[0,1],[-4,18],[-1,3],[-1,1],[-1,3],[-7,-1],[-2,0],[-1,0],[-5,1],[-2,20],[4,-1],[1,0],[1,-1],[15,-5],[17,-2],[7,-1],[1,2],[1,2],[0,18],[0,3],[1,12],[1,6],[0,1],[1,4],[-12,0],[-1,0],[-11,-1],[0,13],[-2,1],[-1,1],[-5,1],[-1,0],[-9,-1],[-7,0],[-7,0],[-12,0],[-2,3],[-1,1],[-10,13],[-11,11],[-2,1],[-2,1],[-3,2],[-3,0],[-9,-3],[-6,-2],[-21,-11],[-5,-2],[-3,0],[-4,2],[0,4],[0,1],[0,3],[0,3],[0,1],[1,1],[0,4],[6,4],[5,4],[3,3],[6,4],[2,2],[-5,6],[-6,3],[-3,2],[-2,3],[-2,8],[-1,8],[-15,3],[1,4],[2,10],[0,2],[1,3],[1,8],[0,4],[1,3],[0,1],[0,1],[1,7],[0,3],[1,2],[2,9],[0,2],[0,2],[13,0],[2,0],[2,4],[2,6],[3,4],[1,2],[1,0],[0,1],[2,2],[0,2],[1,3],[-1,9],[-2,5],[-4,3],[-1,1],[-2,2],[-1,1],[-9,-6],[-1,-1],[-1,0],[-4,-4],[-1,15],[1,7],[-9,0],[1,12],[0,4],[0,2],[0,5],[-3,17],[-1,1],[0,3],[37,2],[7,1],[4,0],[2,1],[6,2],[5,2],[2,1],[8,5],[4,3],[3,2],[6,4],[5,2],[8,6],[11,7],[3,2],[8,6],[2,3],[3,7],[3,7],[1,5],[1,3],[0,2],[1,2],[2,3],[5,7],[9,6],[8,4],[13,9],[9,6],[6,4],[19,12],[8,9],[3,3],[2,4],[0,1],[-1,5],[-1,2],[0,1],[0,2],[-1,10],[7,1],[4,2],[5,2],[6,3],[0,3],[0,1],[-2,6],[0,2],[0,1],[0,2],[-2,9],[-2,9],[-1,1],[0,1],[0,5],[-2,12],[4,8],[1,1],[2,4],[9,3],[-2,3],[0,1],[-1,1],[-2,5],[-3,-1],[-1,-1],[-1,0],[-7,-2],[-3,-1],[-11,-6],[-1,2],[-1,3],[-1,1],[-5,11],[-3,4],[-3,7],[-1,1],[-1,3],[-1,2],[-1,3],[-1,4],[-2,-2],[-2,-1],[-1,-1],[-1,0],[-2,0],[-8,-3],[-9,23],[-2,1],[-6,-2],[-3,4],[0,1],[-2,3],[-8,-5],[-16,-2],[-1,0],[-1,0],[-14,-2],[-9,-1],[-3,0],[-1,0],[-2,-1],[-10,-1],[-7,-1],[-2,0],[-14,-1],[-1,0],[-1,-1],[-8,0],[0,5],[-1,5],[-3,6],[-1,3],[-1,1],[0,1],[-4,7],[-3,6],[0,1],[-2,7],[0,3],[5,1],[3,1],[0,1],[0,2],[0,4],[1,2],[1,1],[1,0],[0,3],[1,1],[0,2],[1,4],[7,1],[1,0],[1,1],[2,0],[7,1],[0,2],[0,2],[2,4],[0,3],[2,5],[4,12],[6,15],[5,12],[2,7],[1,3],[1,1],[-12,7],[-5,7],[-1,3],[0,3],[2,5],[0,1],[0,4],[-3,3],[-2,3],[-1,1],[-3,2],[-1,4],[0,9],[-1,3],[-1,17],[-2,1],[-11,1],[-2,25],[-1,2],[0,2],[0,1],[-1,1],[-1,3],[2,3],[2,3],[0,2],[-1,9],[0,2],[-1,4],[0,4],[0,2],[0,1],[0,4],[0,4],[0,9],[0,3],[0,6],[-1,11],[-1,5],[0,3],[-17,4],[-28,4],[-1,0],[-16,2],[-3,1],[-7,1],[-4,1],[0,4],[-1,4],[0,3],[0,5],[0,5],[1,1],[1,2],[1,0],[2,3],[0,1],[0,1],[0,16],[0,3],[0,5],[0,6],[0,1],[-1,15],[-1,13],[0,23],[0,5],[-1,20],[0,4],[-8,1],[-16,0],[-16,1],[-1,1],[-3,0],[-17,0],[-1,0],[-3,1],[-7,0],[-4,0],[-2,0],[-17,-1],[-4,0],[-12,1],[-5,0],[-2,0],[-42,-5],[-14,-3],[-9,-2],[-2,-1],[-1,0],[-1,0],[-11,-1],[-4,1],[-1,1],[-2,6],[-9,4],[-14,5],[-3,0],[-1,1],[-1,0],[-20,7],[-4,1],[-24,8],[-2,1],[-1,0],[-4,1],[-14,5],[-1,0],[-1,1],[-1,0],[-22,8],[-10,4],[-3,1],[-14,4],[-2,1],[-1,0],[-13,5],[-4,1],[-1,1],[-1,0],[-1,0],[-15,5],[-1,0],[-1,1],[-1,0],[-11,4],[-6,2],[-1,1],[-1,0],[-2,1],[-16,4],[-2,4],[-1,3],[-1,3],[0,1],[-2,6],[-3,5],[-5,4],[-1,1],[0,1],[-9,8],[-6,6],[-3,2],[0,1],[0,1],[2,15],[1,20],[0,12],[0,2],[0,7],[0,3],[0,5],[-3,1],[-2,1],[-1,0],[-6,3],[-11,6],[-2,1],[-3,0],[-6,3],[-12,4],[-1,0],[-2,1],[-25,8],[-1,0],[-1,1],[-4,1],[-4,1],[-16,5],[-1,0],[-1,1],[-6,4],[-15,10],[-5,4],[-1,1],[-4,2],[-2,1],[-3,0],[-4,0],[-3,0],[-10,1],[-5,1],[-2,0],[-4,0],[-15,2],[-2,0],[-13,1],[-14,2],[-4,1],[-1,0],[-1,0],[-6,1],[-15,2],[-10,1],[-18,2],[-4,1],[-1,4],[-1,2],[-3,10],[-4,5],[-8,13],[-3,5],[0,1],[-3,6],[-1,4],[0,3],[3,12],[7,8],[1,1],[3,5],[0,4],[0,1],[1,9],[-1,1],[-3,3],[0,1],[-5,5],[-1,2],[-5,6],[-8,7],[-8,3],[-3,0],[-1,1],[-3,0],[-6,-1],[-6,-1],[-5,-4],[-4,2],[-3,2],[-12,11],[-7,6],[-7,12],[-2,5],[-1,2],[-4,7],[-3,3],[-1,2],[-1,1],[0,6],[-1,3],[0,2],[-2,3],[-1,7],[-2,7],[-2,3],[-1,2],[-4,12],[0,1],[-2,6],[-2,4],[-2,5],[-2,4],[-8,13],[-8,17],[-3,7],[-1,1],[-2,5],[-6,10],[-8,17],[0,1],[-2,5],[-15,35],[-3,5],[-7,9],[-1,3],[-7,18],[-1,3],[-6,11],[-4,4],[-7,17],[-2,5],[0,5],[0,9],[6,11]],[[1734,7049],[3,4],[4,5],[6,13],[0,1],[2,3],[1,3],[2,4],[3,4],[1,2],[6,15],[1,1],[2,7],[2,4],[6,7],[2,2],[1,2],[4,8],[1,3],[3,6],[2,4],[1,3],[1,2],[1,4],[2,10],[18,6],[2,5],[0,1],[-3,28],[0,3],[0,7],[6,2],[3,0],[5,2],[3,0],[2,0],[1,1],[12,1],[2,0],[1,0],[1,0],[3,-1],[14,1],[2,0],[5,1],[10,0],[20,0],[5,0],[9,0],[27,2],[4,0],[16,-2],[5,1],[13,0],[2,0],[2,0],[2,0],[2,-1],[2,-1],[0,-2],[5,-13],[1,-1],[1,-5],[2,-6],[4,-7],[11,2],[2,-8],[1,-6],[3,-6],[3,-14],[4,-17],[6,-18],[3,-3],[1,-1],[2,-1],[1,-1],[22,3],[1,1],[8,1],[2,-7],[2,-12],[1,-4],[3,-16],[3,-9],[4,-12],[12,-29],[7,-5],[3,-6],[2,-6],[5,-16],[0,-3],[1,-6],[0,-3],[2,-5],[4,-4],[8,-2],[3,-2],[2,0],[3,0],[3,-1],[4,0],[1,0],[2,0],[2,-1],[4,-6],[7,-12],[1,-1],[2,-1],[1,0],[2,-1],[-1,-11],[-1,-3],[2,-15],[2,-2],[2,0],[7,-2],[14,-3],[13,-3],[2,-1],[11,-3],[8,-3],[13,-5],[1,-1],[31,-12],[8,2],[1,1],[2,1],[4,1],[19,1],[7,0],[1,0],[11,0],[22,-1],[1,0],[1,0],[1,0],[30,1],[1,3],[-1,13],[-1,1],[0,3],[1,15],[1,7],[25,0],[4,0],[8,-1],[3,0],[21,1],[11,0],[2,0],[8,3],[3,2],[9,-8],[8,-3],[20,-8],[2,0],[11,0],[5,1],[32,-3],[2,0],[2,7],[6,0],[5,0],[12,0],[1,0],[27,-1],[3,-1],[1,0],[2,0],[20,-2],[10,-3],[2,-1],[1,0],[3,-1],[14,-6],[15,-5],[2,-1],[1,0],[2,0],[3,-1],[8,0],[28,0],[0,14],[0,13],[3,0],[1,0],[19,-1],[12,0],[3,0],[1,0],[2,1],[17,2],[16,8],[5,6],[4,5],[0,2],[15,17],[2,3],[7,7],[2,3],[2,7],[1,7],[1,4],[3,5],[4,6],[2,4],[1,5],[4,13],[7,19],[7,19],[2,4],[2,6],[6,4],[2,1],[2,1],[2,1],[3,0],[15,0],[3,0],[3,0],[4,0],[5,-2],[8,-2],[8,-3],[1,2],[1,2],[1,4],[1,1],[1,4],[26,-4],[1,0],[2,0],[4,15],[0,2],[1,6],[2,1],[3,0],[10,0],[12,2],[1,0],[1,2],[6,7],[0,1],[2,3],[4,-1],[1,0],[9,-4],[2,-1],[4,-2],[5,5],[3,3],[12,13],[2,3],[1,2],[0,2],[3,6],[4,7],[18,0],[2,0],[5,0],[10,0],[4,0],[5,0],[6,-5],[3,-1],[10,1],[3,-2],[0,-1],[2,-1],[1,0],[9,-4],[5,-2],[2,0],[1,0],[5,-1],[9,-8],[2,-1],[0,-1],[1,-2],[8,-9],[1,-1],[1,-1],[6,-6],[1,-1],[2,-2],[1,0],[4,-4],[17,-16],[1,-1],[0,-1],[16,-15],[2,-2],[7,-7],[4,-2],[1,0],[4,0],[4,0]],[[881,5431],[-8,10],[-7,6],[-15,10],[0,1],[1,5],[2,8],[4,13],[8,14],[-3,2],[-7,6],[-3,2],[-6,3],[-13,5],[1,5],[1,8],[-17,9],[-8,3],[0,1],[-3,5],[-4,6],[-1,2],[-1,3],[-3,4],[-5,8],[-1,3],[-6,10],[-7,12],[6,8],[9,7],[15,11],[1,0],[5,-3],[5,4],[5,4],[3,1],[3,1],[3,0],[2,-3],[5,1],[7,1],[4,1],[-1,6],[-6,13],[2,5],[3,5],[2,1],[6,0],[4,0],[7,1],[3,0],[5,3],[-11,13],[-2,1],[-5,6],[-14,13],[-7,9],[-4,4],[-14,14],[-4,3],[-5,3],[-1,1],[-9,8],[-5,5],[-13,8],[-2,2],[-9,6],[-8,5],[-3,2],[-7,5],[-15,10],[-3,2],[-3,3],[-2,0],[-5,4],[-8,5],[-18,9],[-2,3],[-2,3],[-22,17],[-3,3],[3,4],[1,0],[3,5],[8,10],[5,3],[17,21],[4,5],[3,8],[9,-4],[7,-4],[6,-1],[7,-5],[1,0],[8,-5],[12,-6],[1,0],[4,-2],[4,13],[6,16],[5,12],[3,8],[0,1],[2,4],[2,7],[10,24],[1,3],[3,11],[2,7],[2,4],[0,1],[4,9],[6,15],[1,4],[7,18],[2,5],[4,13],[4,9],[4,11],[1,6],[0,3],[0,8],[1,5],[3,3],[10,22],[2,6],[1,3],[1,1],[10,20],[1,4],[1,1],[0,1],[4,8],[15,19],[13,28],[3,6],[1,2],[2,5],[2,2],[4,10],[-2,4],[-2,4],[-1,2],[-1,3],[-2,2],[-2,6],[-5,4],[-9,6],[-4,3],[-12,7],[-4,3],[-5,3],[-5,3],[-3,3],[-7,6],[-6,6],[0,1],[-18,18],[0,1],[-1,1],[-11,12],[-7,8],[-6,6],[-12,11],[-8,8],[-5,5],[-1,0],[-2,3],[-8,4],[-22,17],[-18,14],[-6,6],[-8,7],[-3,3],[-6,5],[-6,6],[-13,8],[-5,3],[-5,2],[-3,2],[-4,2]],[[670,6434],[3,7],[2,4],[1,9],[1,9],[0,5],[-1,5],[-1,7],[-3,7],[-8,20],[-3,8],[-7,13],[-6,9],[-3,3],[-5,11],[-3,5],[-1,2],[0,4],[-2,4],[-8,9],[-2,7],[-1,5],[-1,7],[0,7],[-1,11],[1,3],[1,5],[0,5],[1,4],[1,4],[1,5],[0,2],[4,8],[3,3],[4,6],[9,13],[3,4],[5,4],[8,7],[9,10],[4,4],[3,0],[2,1],[2,1],[10,4],[9,3],[7,3],[4,2],[13,2],[6,1],[10,0],[8,0],[5,-1],[11,-1],[5,-2],[8,-2],[20,-11],[6,-4],[7,-7],[14,-12],[3,-3],[6,-6],[8,-9],[4,-3],[4,-4],[8,-9],[7,3],[7,4],[11,21],[4,7],[9,22],[7,17],[6,12],[6,12],[8,19],[-2,14],[2,7],[7,0],[7,1],[8,2],[2,1],[4,3],[3,1],[3,3],[2,1],[5,6],[12,9],[4,3],[6,3],[17,9],[3,1],[1,1],[4,2],[10,3],[8,4],[7,4],[3,2],[5,5],[1,1],[3,4],[2,2],[12,12],[13,12],[2,3],[19,12],[-2,5],[1,1],[2,5],[0,1],[3,7],[3,1],[18,8],[4,1],[5,3],[13,7],[1,2],[10,6],[2,1],[9,4],[7,2],[20,7],[5,2],[4,1],[3,1],[3,1],[29,9],[8,3],[3,1],[14,4],[9,5],[9,4],[9,4],[4,3],[10,5],[11,6],[17,6],[15,4],[5,1],[16,5],[3,1],[7,2],[4,1],[29,10],[15,5],[6,2],[3,1],[13,4],[2,1],[4,1],[6,2],[2,0],[7,3],[10,4],[5,-4],[4,-4],[5,-5],[3,-2],[13,0],[6,1],[4,2],[4,0],[6,1],[30,2],[25,1],[8,2],[11,0],[11,3],[4,1],[6,1],[2,0],[5,1],[4,0],[12,3],[7,2],[4,1],[6,-1],[30,-4],[8,-1],[6,-1],[4,-1],[13,-1],[2,-1],[9,0]],[[4400,7551],[0,-6],[0,-2],[-1,-5],[1,-6],[4,-17],[0,-1],[0,-1],[5,-19],[3,-18],[0,-1],[-1,-3],[0,-4],[0,-1],[0,-3],[0,-5],[3,-13],[0,-5],[5,-3],[1,-1],[1,-1],[4,-1],[19,-6],[10,-3],[5,-1],[8,-3],[2,-1],[5,-2],[22,-15],[2,-2],[3,-2],[6,-5],[5,-7],[2,-1],[1,-6],[1,-3],[2,0],[3,-2],[7,-2],[8,-2],[5,0],[1,0],[5,4],[6,7],[2,1],[0,1],[1,1],[8,-6],[0,3],[-9,11],[-4,4],[-3,2],[-4,5],[-4,3],[11,10],[4,3],[14,16],[10,10],[2,2],[1,1],[0,1],[1,3],[0,1],[3,5],[1,1],[1,2],[2,2],[7,15],[7,11],[1,2],[1,1],[1,1],[7,9],[8,9],[5,4],[2,4],[2,5],[1,3],[4,10],[10,2],[5,0],[11,3],[3,1],[5,1],[5,2],[5,1],[7,2],[24,-1],[3,0],[13,5],[4,0],[2,-1],[12,0],[1,0],[17,-2],[6,0],[1,-5],[1,-3],[0,-11],[-16,-25],[-1,-2],[-9,-14],[3,-2],[1,-1],[1,-1],[5,-4],[1,-1],[0,-1],[5,-4],[10,-8],[1,0],[1,-1],[5,-4],[11,-12],[14,-16],[3,-3],[2,-5],[1,-2],[6,-10],[4,-7],[4,-6],[8,-2],[2,-1],[2,0],[6,0],[3,-3],[7,1],[24,8],[2,1],[8,3],[10,3],[3,1],[13,6],[5,2],[9,3],[1,0],[1,1],[16,5],[1,0],[1,1],[12,4],[7,2],[3,1],[13,7],[1,0],[0,1],[6,3],[17,8],[2,1],[3,-1],[1,-1],[13,-4],[6,-2],[20,-15],[1,-2],[2,-1],[1,-1],[26,-7],[2,-4],[0,-1],[1,-1],[3,-6],[5,0],[2,0],[2,0],[2,-6],[4,-1],[-1,-5],[-3,-3],[0,-1],[-1,-1],[-3,-3],[-3,-12],[-1,-1],[0,-1],[-3,-13],[6,-6],[-2,-16],[8,-1],[3,14],[4,0],[1,0],[15,-2],[15,-2],[8,-1],[1,-7],[0,-3],[5,-1],[4,12],[0,1],[7,20],[4,-2],[2,-1],[0,-1],[3,-2],[14,-10],[7,-6],[1,-1],[1,0],[13,-11],[1,-1],[1,-1],[3,-2],[3,-7],[1,-2],[0,-1],[6,-12],[2,-5],[2,-4],[2,-4],[5,-10],[5,-11],[1,-1],[4,-10],[1,-1],[0,-1],[2,-4],[12,-11],[1,0],[2,-3],[9,-4],[0,-1],[16,-8],[6,0],[5,0],[5,0],[14,-10],[3,-2],[1,-1],[1,0],[15,-10]],[[3234,7067],[4,3],[2,4],[5,7],[2,4],[-13,16],[6,10],[1,1],[1,1],[6,11],[10,6],[3,5],[1,1],[2,3],[0,2],[4,10],[1,2],[0,2],[1,1],[0,1],[1,8],[-1,4],[-5,6],[0,1],[-1,1],[-2,4],[-4,6],[0,2],[-2,4],[1,4],[0,1],[2,3],[3,5],[1,3],[2,5],[1,10],[2,5],[0,1],[3,7],[3,3],[4,3],[6,4],[5,3],[0,3],[1,2],[3,6],[1,4],[1,1],[1,4],[6,22],[2,4],[1,2],[1,0],[3,3],[0,2],[0,3],[3,3],[3,0],[13,-2],[-10,15],[-4,1],[-1,10],[0,1],[0,1],[-1,4]],[[3312,7339],[10,1],[2,1],[3,0],[3,1],[2,0],[1,0],[15,4],[4,1],[3,1],[1,0],[8,2],[17,7],[1,0],[1,0],[2,1],[16,6],[10,5],[2,1],[3,1],[8,2],[5,2],[1,1],[15,5],[19,7],[2,0],[1,1],[1,0],[10,4],[1,0],[15,7],[3,1],[2,0],[4,2],[18,6],[2,0],[3,1],[7,2],[14,7],[14,6],[5,5],[3,4],[3,3],[8,6],[29,23],[1,1],[6,5],[1,2],[2,1],[3,3],[0,1],[3,2],[1,2],[1,1],[9,10],[5,5],[0,1],[1,1],[2,2],[2,-1],[1,-1],[0,-1],[2,-1],[17,-13],[2,-2],[1,-1],[3,-2],[16,1],[5,0],[6,2],[-1,-4],[0,-2],[-1,-1],[0,-2],[2,-19],[4,0],[28,0],[1,0],[12,1],[10,0],[1,0],[2,1],[27,1],[1,0],[1,0],[29,2],[6,0],[0,-4],[0,-1],[0,-1],[1,-11],[0,-7],[3,-12],[0,-2],[1,-3],[1,-17],[0,-4],[0,-1],[0,-3],[1,-7],[1,-3],[1,-8],[0,-1],[1,-5],[22,2],[9,1],[7,1],[6,1],[1,1],[1,0],[3,1],[7,-19],[4,-9],[1,-1],[0,-1],[2,-4],[14,-35],[0,-1],[0,-1],[2,-4],[5,-12],[1,-2],[0,-1],[1,-1],[2,-3],[-10,-6],[-1,-2],[3,-11],[1,-4],[0,-2],[1,-1],[3,-4],[2,-3],[1,0],[1,-1],[6,-1],[1,-1],[22,-5],[4,-2],[1,0],[3,0],[3,1],[1,7],[1,6],[0,1],[1,1],[1,6],[1,5],[0,6],[1,7],[0,4],[2,4],[2,3],[1,1],[1,1],[6,9],[7,9],[1,0],[0,1],[5,5],[10,11],[1,2],[0,1],[11,14],[2,2],[1,1],[1,1],[19,23],[0,1],[13,16],[7,9],[1,0],[4,6],[4,4],[1,2],[3,3],[3,5],[2,2],[3,4],[1,0],[4,5],[4,6],[0,1],[1,0],[0,1],[4,8],[0,1],[4,7],[2,3],[0,1],[3,13],[3,11],[3,10],[1,1],[1,4],[1,12],[1,3],[0,1],[0,2],[1,2],[7,13],[4,9],[1,1],[0,1],[1,1],[1,3],[4,6],[1,3],[1,1],[1,1],[13,20],[8,-1],[1,0],[2,0],[2,-1],[18,-3],[7,-2],[2,0],[1,0],[7,-2],[15,-3],[2,0],[1,0],[3,-1],[20,-3],[1,-1],[5,0],[15,0],[2,1],[2,0],[0,1],[8,3],[1,9],[0,1],[35,-8],[5,-2],[13,-1],[6,-1],[1,0],[9,-2],[6,0],[1,0],[7,-1],[24,-2],[9,-3],[9,-2],[7,-1]],[[4921,8736],[3,-7],[2,-6],[2,-5],[0,-7],[0,-7],[-1,-17],[0,-1],[-2,-16],[-9,-28],[-13,-31],[-4,-10],[-8,-18],[-10,-21],[-1,-2],[-12,-28],[-7,-25],[-1,-4],[-4,-24],[-1,-8],[0,-5],[1,-19],[4,-20],[9,-15],[5,-6],[5,-3],[5,-4],[20,-9],[5,-1],[24,-6],[15,-4],[4,-2],[18,-6],[6,-2],[12,-5],[24,-13],[11,-6],[11,-5],[19,-10],[7,-4],[46,-19],[31,-12],[19,-4],[10,0],[9,0],[12,4],[3,0],[13,2],[27,0],[14,1],[9,1],[3,0],[1,0],[4,0],[13,3],[18,3],[5,1],[7,3],[14,4],[12,5],[14,4],[7,1],[13,3],[14,4],[4,2],[14,5],[11,7],[3,2],[5,5],[9,7],[18,12],[4,3],[33,24],[10,-5],[1,-2],[1,0],[8,-6],[10,-7],[8,-9],[7,-9],[5,-8],[5,-11],[3,-8],[2,-10],[2,-13],[1,-10],[-1,-9],[-1,-8],[-1,-3],[-2,-5],[-4,-8],[-8,-11],[-8,-11],[-6,-8],[-5,-6],[-8,-8],[-7,-8],[-1,0],[-4,-5],[-9,-5],[-4,-2],[-7,-4],[-1,-1],[-5,-3],[-4,-2],[-18,-7],[-12,-5],[-12,-7],[-16,-10],[-13,-9],[-5,-5],[-7,-7],[-13,-8],[-35,-24],[-5,-3],[-27,-17],[-29,-18],[-7,-5],[-1,0],[-17,-11],[-14,-8],[-6,-7],[-5,-8],[-3,-7],[-1,-1],[-2,-7],[0,-8],[0,-2],[1,-9],[0,-1],[1,-8],[3,-8],[2,-5],[2,-4],[6,-10],[7,-8],[6,-5],[11,-7],[9,-6],[1,-1],[1,-1],[12,-5],[2,-1],[19,-7],[16,-4],[33,-9],[20,-3],[28,-6],[40,-8],[34,-7],[15,-3],[3,-1]],[[5480,7881],[-2,-13],[-8,-42],[0,-2],[-10,1],[-7,1],[-13,1],[-6,1],[-2,0],[-31,2],[-8,1],[-26,3],[-4,0],[-1,1],[-2,0],[-10,0],[-2,0],[-25,4],[-2,0],[-1,-11],[-11,1],[0,11],[-10,1],[-15,1],[-3,0],[0,-16],[-2,-19],[-5,-9],[-7,-9],[-1,-2],[-1,-1],[-2,-2],[-1,-2],[-5,-6],[-1,0],[-7,-13],[0,-1],[-1,-2],[-2,-2],[8,-1],[1,0],[1,-1],[1,0],[3,0],[-1,-2],[-1,-4],[-1,-3],[0,-3],[-1,0],[-2,-11],[-1,-1],[0,-1],[-3,-9],[6,-4],[1,0],[24,-15],[6,6],[1,1],[0,1],[3,2],[1,0],[1,-1],[1,-1],[12,-9],[4,-2],[8,-6],[4,0],[2,0],[1,-1],[28,-1],[1,0],[24,-1],[8,-1],[1,0],[2,0],[4,-8],[9,-1],[-1,-10],[-1,-1],[-1,-15],[0,-1],[0,-1],[-1,-9],[7,-6],[1,0],[2,-2],[33,0],[2,0],[1,1],[24,0],[8,0],[0,-23],[0,-1],[0,-1],[0,-23],[0,-2],[0,-1],[-9,-11],[-2,-2],[-2,-3],[-4,-5],[31,-25],[1,0],[4,-4],[4,-3],[2,-1],[21,-16],[1,-1],[1,-1],[18,-14],[1,-1],[1,0],[2,-2],[6,9],[13,-9],[1,0],[13,-9],[2,4],[2,6],[3,10],[4,-1],[1,0],[2,0],[25,-3],[10,15],[3,0],[3,0],[4,1],[7,0],[0,-4],[0,-1],[1,-1],[0,-13],[0,-2],[0,-1],[1,-15],[0,-1],[0,-1],[1,-4],[39,-32],[1,-1],[1,-1],[2,-2],[7,0],[4,-4],[1,-2],[9,-1],[1,0],[11,-1],[1,0],[8,0],[1,0],[1,-1],[1,0],[22,-1],[1,0],[8,-1],[2,-12],[1,-2],[0,-1],[3,-11],[0,-2],[0,-2],[2,-6],[0,-9],[8,-4],[2,-2],[7,-4],[0,-5],[-1,-2],[-1,-12],[15,-10],[3,6],[13,-7],[-1,-7],[17,-16],[10,-9],[2,-3],[1,0],[-15,-6],[-2,-2],[-15,-6],[-21,-9],[-3,-1],[-6,-3],[-12,-5],[-17,-7],[-6,-3],[-28,-12],[-1,0],[-11,-5],[-7,-4],[-2,-1],[-5,-3],[-5,-3],[-2,-1],[-13,-7],[-4,-3],[-5,-3],[-7,-4],[-8,-5],[-9,-5],[-3,-2],[9,-9],[5,-8],[-24,-25],[-2,1],[-15,3],[-1,0],[-9,-4],[-3,-2],[-10,10],[-19,-4],[1,-2],[2,-9],[1,-2],[0,-3],[2,-7],[0,-1],[1,-2],[0,-2],[2,-5],[-16,-17],[-1,-1],[-2,-3]],[[4400,7551],[14,28],[1,3],[2,4],[2,1],[1,0],[3,2],[3,4],[3,7],[1,4],[1,2],[17,-10],[1,0],[1,-1],[4,-2],[2,24],[0,1],[0,1],[1,10],[19,-2],[1,9],[0,6],[-2,0],[-11,1],[3,17],[4,5],[4,4],[5,6],[-11,8],[3,14],[3,21],[1,11],[1,9],[1,2],[9,3],[1,2],[0,1],[2,5],[0,4],[-4,7],[0,2],[0,12],[2,5],[1,6],[1,3],[1,4],[0,4],[0,7],[0,1],[0,3],[-1,17],[-1,4],[-5,6],[-6,3],[-8,4],[-3,2],[-5,3],[-5,8],[-7,10],[-2,3],[-4,3],[-2,1],[-4,3],[-7,6],[-5,6],[2,4],[0,4],[-4,7],[-4,7],[-6,11],[-6,14],[-5,2],[-5,5],[-2,5],[-1,4],[-1,3],[-2,5],[-15,17],[-7,9],[-2,2],[-7,8],[-3,3],[-6,9],[-5,5],[-9,14],[-3,7],[-1,3],[-3,7],[-2,4],[-1,2],[-2,5],[-5,8],[0,1],[-6,5],[-5,11],[-2,2],[-3,3],[-13,13],[-1,1],[-9,9],[-1,1],[-1,2],[-4,3],[-1,1],[-11,10],[-1,0],[-1,1],[-7,7],[-1,1],[-1,0],[-6,6],[-12,10],[-4,4],[-6,5],[-2,5],[-1,2],[-1,0],[-2,0],[-3,0],[-3,0],[-7,1],[-3,0],[-17,3],[-17,5],[-1,0],[-5,1],[-2,1],[-2,1],[-9,23],[-9,24],[-22,-6],[-4,5],[-1,1],[-3,3],[-1,1],[-4,14],[-19,-5],[-1,0],[-3,3],[-2,2],[-5,4],[-12,11],[-2,1],[-12,10],[-9,8],[-5,2],[-2,1],[-1,0],[-1,0],[-1,6],[-1,4],[0,9],[0,1],[0,3],[0,13],[0,2],[0,1],[-1,2],[-1,18],[0,1],[0,1],[-4,13],[-2,15],[-2,8],[0,1],[0,1],[-1,4],[-7,33],[-1,1],[-6,23],[0,1],[0,1],[-5,20],[-2,6],[0,1],[-3,12],[0,1],[-1,2],[-7,24],[-7,27],[-1,9],[0,2],[0,1],[-1,4],[0,5],[0,3],[-3,2],[-3,2],[-3,6],[0,11],[0,2],[0,3],[-3,11],[-1,4],[0,4],[-1,1],[-3,14],[-1,4],[-5,15],[-2,5],[0,2],[-2,6],[-2,4],[0,1],[-3,12],[-2,6],[0,1],[-5,23],[-1,3],[-1,12],[0,1],[-4,11],[-1,3],[0,1],[-4,11],[-1,4],[-5,16],[-2,6],[-2,12],[3,8],[14,19],[3,10],[1,2],[0,1],[0,4],[-1,20],[0,7],[0,1],[-6,8],[-2,3],[-8,0],[-6,7],[-3,-1],[-9,-7],[-23,-17],[-1,-1],[-17,-14],[-10,-7],[-5,-4],[-21,-11],[-18,-5],[-20,0],[-6,2],[-3,0],[-7,1],[-9,2],[-8,1],[-5,1],[-20,4],[-19,6],[-21,9],[-19,8],[-11,7],[-20,12],[-22,16],[-11,8],[-16,17],[-16,29],[-2,3],[-9,17],[-8,14],[-2,8],[1,10],[0,1],[0,4],[1,6],[1,2],[3,6],[2,3],[4,14],[4,8],[5,11],[4,9],[3,15],[1,4],[2,9],[4,18],[6,5],[3,4],[1,2],[4,4],[2,4],[4,4],[2,4],[7,8],[1,2],[5,6],[5,8],[8,14],[0,1],[5,9],[16,26],[25,40],[16,25],[4,5],[3,4],[4,6],[3,3],[8,9],[10,12],[13,19],[8,16],[1,5],[3,10],[1,4],[2,5],[4,16]],[[3764,9365],[23,-15],[17,-12],[40,-29],[9,-8],[23,-20],[32,-28],[33,-28],[2,-1],[24,-19],[19,-14],[14,-11],[27,-15],[31,-14],[29,-9],[6,-2],[18,-7],[16,-2],[31,-1],[45,0],[23,0],[17,0],[61,0],[17,0],[14,0],[5,0],[2,0],[4,0],[5,0],[16,-1],[26,-3],[17,-4],[4,-1],[21,-7],[34,-18],[8,-6],[7,-17],[9,-30],[0,-1],[9,-31],[2,-3],[4,-6],[5,-8],[6,-9],[12,-6],[8,-5],[13,0],[3,0],[7,1],[37,6],[1,0],[32,12],[20,8],[12,5],[32,15],[17,9],[34,20],[17,6],[16,5],[3,1],[6,1],[15,4],[6,-1],[10,-3],[24,-12],[30,-19],[31,-25],[20,-16],[10,-13],[0,-7],[0,-1],[0,-3],[-3,-41],[-3,-40],[-3,-25],[-1,-10],[-1,-10],[0,-2],[-5,-50],[0,-1],[-2,-16],[0,-1],[-2,-24],[0,-1],[1,-2],[5,-8]],[[5480,7881],[10,-2],[1,0],[65,-12],[25,-4],[26,-3],[6,-1],[48,-7],[63,-5],[1,0],[2,0],[18,-1],[23,-2],[20,-1],[16,-1],[14,-1],[10,-1],[36,-1],[52,1],[12,0],[23,0],[7,0],[1,0],[4,0],[26,2],[39,4],[36,3],[29,4],[4,0],[2,0],[20,2],[32,1],[17,1],[11,0],[4,0],[2,0],[7,-1],[1,0],[1,0],[11,-2],[6,0],[12,-4],[7,-2],[1,-1],[4,-1],[12,-5],[21,-8],[6,-3],[4,-1],[5,-3],[28,-10],[13,-5],[22,-9],[18,-13],[19,-17],[14,-16],[7,-12],[7,-16],[3,-10],[0,-1],[0,-11],[-3,-18],[-6,-21],[-10,-10],[-27,-16],[-15,-12],[-8,-9],[-2,-3],[-5,-12],[-2,-12],[0,-12],[1,-5],[1,-8],[0,-5],[5,-17],[7,-17],[11,-21],[18,-31],[14,-20],[18,-19],[1,-1],[14,-13],[3,-3],[19,-14],[24,-14],[23,-10],[19,-8],[20,-5],[47,-10],[4,-1],[5,-1],[3,-1],[2,0],[65,-15],[13,-2],[25,-6],[3,-1],[6,0],[11,-1],[11,2],[49,18],[93,38],[20,9],[3,1],[22,10],[23,6],[19,2],[27,-1],[18,-4],[23,-8],[19,-14],[10,-11],[6,-12],[6,-28]],[[3312,7339],[-8,-2],[-11,10],[-2,3],[-2,3],[-1,3],[-2,3],[-1,3],[-2,4],[-4,4],[-10,17],[-2,7],[0,3],[-1,5],[3,1],[2,2],[3,6],[1,4],[3,4],[0,4],[3,7],[0,1],[2,4],[2,2],[2,2],[7,7],[6,5],[2,2],[1,3],[2,9],[2,11],[1,2],[1,2],[2,2],[1,1],[1,3],[1,2],[3,5],[-1,2],[0,3],[0,4],[-1,4],[0,3],[-8,4],[-7,2],[-24,9],[-14,6],[-15,5],[-5,2],[-2,1],[-1,0],[-15,6],[-1,1],[-7,2],[-11,4],[-1,1],[-9,3],[-16,6],[-4,1],[-1,0],[-3,-3],[-2,-2],[-2,-3],[-3,-4],[0,-1],[-3,-3],[-1,0],[-2,1],[-1,1],[-3,1],[-3,2],[-4,3],[-4,4],[-2,2],[-5,5],[-2,0],[-2,-2],[-17,-16],[-6,4],[-1,0],[0,1],[-4,2],[-29,-20],[-1,0],[-1,-1],[-3,0],[0,10],[-1,14],[1,3],[0,1],[3,9],[3,7],[5,13],[7,15],[1,2],[4,11],[4,8],[0,5],[1,4],[1,4],[3,4],[1,3],[1,5],[10,19],[2,4],[1,2],[1,3],[4,10],[3,8],[4,10],[1,3],[2,8],[1,6],[2,7],[0,4],[4,14],[1,2],[4,11],[3,4],[1,3],[2,7],[1,3],[0,1],[0,1],[0,2],[-1,2],[-2,4],[-2,5],[-2,3],[-19,26],[-1,1],[0,2],[-1,3],[-1,2],[-4,6],[0,1],[-3,5],[-2,11],[-1,2],[-1,2],[-1,1],[-6,11],[0,5],[-1,0],[0,5],[-1,6],[0,3],[-1,6],[-1,4],[0,1],[2,14],[2,13],[2,10],[3,9],[2,15],[1,3],[1,20],[1,14],[0,3],[-1,4],[-1,3],[-2,8],[0,3],[-2,2],[-3,8],[-21,17],[-1,1],[0,1],[-3,2],[-14,16],[-1,0],[-10,12],[-4,5],[-1,2],[-4,4],[-1,6],[0,3],[-1,1],[-2,4],[-9,16],[-3,4],[-3,9],[-2,4],[-1,6],[-1,2],[0,1],[-2,4],[-1,5],[-3,13],[-1,1],[-1,6],[-1,3],[-3,10],[-1,6],[-1,5],[-2,4],[-1,7],[-2,6],[-1,3],[-5,15],[-3,2],[-3,2],[-4,15],[-5,23],[-3,4],[-2,3],[-3,5],[-7,10],[-2,3],[-5,8],[-1,1],[-1,1],[-1,-1],[-11,0],[-2,-1],[-6,-4],[-4,-2],[-2,-2],[-3,1],[-3,0],[-3,1],[-7,2],[-12,4],[-3,1],[-2,1],[-27,9],[-4,2],[-1,0],[-1,0],[-9,3],[-5,1],[-1,0],[-2,0],[-9,1],[-3,1],[-28,3],[-9,2],[-11,2],[-1,0],[-2,1],[-15,4],[-4,2],[-3,2],[-4,4],[-31,1],[-18,1],[-2,1],[-3,0],[-7,0],[-17,1],[-7,1],[-9,1],[-2,0],[-1,0],[-17,1],[-3,1],[-13,1],[-2,1],[-10,1],[-7,1],[-33,1],[-16,2],[-1,-1],[-1,0],[-13,-1],[-15,-4],[-1,0],[-13,-1],[-8,0],[-9,4],[-1,1],[-3,1],[-18,3],[-6,-1],[-8,-1],[-17,-3],[-18,-2],[-5,-1],[-21,-3],[-4,-2],[-2,-1],[-9,-5],[-6,2],[-18,5],[-16,6],[-2,1],[-13,5],[-11,6],[-5,3],[-4,3],[-8,7],[-11,7],[-3,2],[-5,4],[-3,2],[-3,2],[-13,10],[-4,3],[-14,10],[-1,-2],[-1,-2],[-2,-3],[-1,-1],[-4,-7],[-9,-11],[-2,-3],[-5,-10],[-5,-2],[-3,-2],[-3,-3],[-4,-5],[-19,-9],[-9,-2],[-41,-1],[-15,-1],[-20,-4],[-18,-1],[-3,-1],[-7,0],[-2,0],[-5,-1],[-32,-1],[-17,0],[-1,24],[-1,5],[-1,7],[-18,0],[-17,0],[0,6],[0,2],[0,5],[0,3],[0,2],[0,3],[-4,2],[-11,6],[-30,20],[-2,1],[-3,3],[-13,9],[-3,2],[-6,4],[-5,4],[-15,11],[-8,-8],[-1,-1],[-5,-6],[-4,-3],[-6,-2],[1,6],[0,1],[0,4],[0,16],[0,5],[0,17],[0,9],[1,18],[-3,9],[-8,7],[-1,4],[2,8],[4,6],[2,5],[1,3],[1,9],[0,3],[0,15],[0,2],[0,9],[1,9],[0,1],[0,7],[-1,2],[-2,2],[-6,6],[-2,2],[-6,6],[0,1],[-2,2],[-20,3],[-3,1],[-7,1],[-3,1],[-10,2],[-1,0],[-13,1],[-4,1],[-17,2],[-16,2],[-5,1],[-1,2],[4,13],[4,16],[1,7],[-3,7],[-10,10],[-2,2],[-3,4],[-3,3]],[[1739,8723],[0,9],[-7,13],[2,11],[0,1],[2,1],[0,1],[2,2],[9,8],[4,4],[3,2],[7,7],[5,5],[1,3],[3,7],[3,2],[9,7],[1,0],[2,2],[1,0],[1,0],[2,1],[16,5],[3,1],[2,3],[1,1],[5,5],[6,8],[2,2],[1,7],[4,14],[-1,9],[0,7],[0,5],[0,9],[18,18],[15,19],[5,-2],[3,-1],[4,-2],[4,-2],[20,-6],[4,4],[2,2],[4,3],[12,11],[16,13],[4,8],[0,4],[-3,6],[0,4],[3,1],[6,4],[2,10],[-3,9],[-7,10],[-3,3],[-3,4],[9,11],[3,5],[9,9],[5,5],[7,7],[8,3],[8,1],[1,0],[8,0],[3,2],[2,6],[3,3],[7,7],[2,13],[7,3],[11,5],[6,0],[6,-2],[14,-1],[9,-1],[8,2],[12,10],[1,0],[5,0],[4,0],[6,1],[4,0],[11,12],[-1,1],[-2,2],[-4,3],[-1,6],[5,4],[7,6],[7,6],[3,3],[9,8],[4,3],[7,7],[7,6],[6,22],[10,51],[7,41],[3,15],[2,12],[0,5],[2,8],[1,3],[2,7],[8,8],[3,1],[9,2],[3,1],[3,1],[5,0],[3,0],[22,2],[32,2],[31,-4],[25,-3],[12,-3],[1,0],[4,-1],[9,-3],[7,-4],[21,-7],[7,0],[10,6],[16,9],[20,14],[14,8],[3,2],[27,17],[33,20],[18,9],[13,8],[9,1],[22,2],[12,1],[41,3],[40,2],[16,0],[32,1],[39,-1],[35,0],[37,-2],[35,2],[2,0],[35,0],[19,0],[19,-1],[35,-5],[33,-2],[25,-6],[11,-2],[0,-1],[21,-8],[32,-11],[25,-9],[20,-3],[7,-1],[6,-1],[15,-2],[11,-2],[32,-2],[37,0],[1,0],[31,3],[35,6],[31,7],[10,3],[18,5],[13,5],[24,8],[6,2],[3,1],[13,5],[4,1],[5,2],[3,1],[6,2],[20,7],[8,3],[34,7],[17,0],[21,1],[18,-1],[22,-2],[30,-4],[1,0],[25,-5],[15,-4],[19,-6],[16,-6],[2,-1],[2,-1],[23,-11],[1,0],[22,-13],[19,-13]],[[670,6434],[-22,12],[-15,8],[-9,6],[-5,3],[-8,3],[-3,2],[-20,11],[-9,5],[-2,1],[-9,4],[-4,2],[-3,2],[-8,4],[-4,2],[-9,4],[-18,13],[-3,2],[-2,1],[-13,9],[-5,3],[-11,9],[-4,3],[-16,14],[-4,4],[-5,5],[-6,7],[-7,6],[-2,3],[-3,2],[-7,7],[-3,3],[-2,3],[-3,2],[-2,3],[-3,3],[-2,3],[-1,0],[-1,2],[-2,2],[-4,4],[-2,2],[-3,2],[-2,3],[-5,5],[-3,3],[-6,5],[-10,11],[-3,3],[-9,8],[-6,4],[-7,5],[-9,6],[-3,1],[-7,4],[-4,2],[-5,2],[-13,5],[-15,6],[-9,3],[-11,4],[-17,6],[-8,3],[-21,7],[-1,1],[-5,1],[-5,2],[-21,8],[-5,2],[-19,6],[-11,5],[-3,0],[-6,2],[-4,1],[-5,1],[-1,0],[-9,2],[-6,2],[-14,3],[-6,2],[-3,1],[-8,2],[-16,4],[-5,2],[1,21],[0,12],[-3,13],[-3,10],[-5,26],[-1,5],[5,14],[1,2],[0,4],[2,5],[7,20],[4,15],[2,20],[0,14],[3,9],[4,10],[1,5],[2,6],[5,9],[4,9],[4,10],[8,21],[3,7],[4,8],[1,3],[4,13],[3,9],[12,26],[3,6],[0,1],[4,9],[8,21],[4,10],[2,3],[2,5],[1,3],[2,5],[0,1],[1,2],[0,1],[5,11],[2,6],[2,4],[1,4],[1,2],[0,1],[-2,3],[-7,9],[-8,11],[-14,17],[-11,13],[-2,3],[-2,3],[-2,2],[-1,2],[-3,3],[-6,8],[0,3],[2,7],[4,8],[0,7],[5,10],[2,5],[1,4],[3,7],[5,4],[3,3],[2,10],[-1,3],[0,13],[-2,4],[0,14],[-1,17],[0,5],[1,20],[0,4],[0,13],[0,11],[0,7],[0,5],[-1,7],[0,2],[0,7],[0,1],[0,3],[0,1],[0,2],[0,9],[-1,6],[-1,10],[-3,8],[0,5],[-1,4],[-1,11],[-3,4],[-2,10],[-3,9],[-3,9],[-1,9],[-5,13],[0,2],[-3,8],[-9,10],[1,2],[0,1],[0,1],[2,18],[-1,5],[-5,12],[26,2],[1,0],[9,1],[7,1],[1,0],[14,1],[0,3],[0,7],[0,3],[-1,4],[-2,3],[-2,4],[-5,7],[-1,2],[-4,7],[0,1],[-4,9],[-1,2],[-5,15],[-4,15],[0,2],[5,0],[5,0],[15,-1],[5,-1],[7,0],[4,-1],[0,1],[-1,4],[-2,7],[0,5],[1,8],[0,4],[0,5],[0,7],[-1,5],[-1,6],[-3,13],[-3,7],[-6,11],[-6,8],[-2,5],[-3,4],[-4,5],[-1,1],[-6,2],[-6,1],[0,16],[1,19],[0,7],[1,11],[0,3],[0,1],[0,3],[0,2],[-10,1],[-9,4],[-4,9],[-1,2],[0,1],[-2,11],[-5,2],[-1,0],[-1,0],[0,1],[-1,0],[-5,2],[0,9],[0,4],[-2,9],[-13,4],[-1,6],[0,1],[0,2],[4,6],[1,1],[1,2],[1,1],[1,2],[-1,4],[-7,13],[-3,4],[-2,4],[-1,2],[0,1],[-2,2],[-4,5],[-11,3],[-4,9],[-6,14],[-5,8],[-9,6],[-2,8],[-3,12],[-1,6],[-2,6],[0,6],[-1,6],[0,1],[0,3],[0,2],[-1,1],[0,2],[0,1],[0,2],[0,3],[-3,1],[-1,1],[-1,1],[-2,0],[-6,0],[-7,1],[-1,0],[-2,1],[-5,1],[6,15],[11,16],[5,11],[4,0],[5,1],[7,0],[12,0],[5,-1],[2,-15],[5,-12],[1,-2],[4,-4],[5,0],[6,1],[1,0],[5,1],[8,1],[12,1],[2,0],[1,0],[2,0],[2,0],[1,0],[3,3],[0,9],[-5,14],[3,3],[13,5],[11,2],[5,-1],[2,-7],[8,0],[5,1],[0,6],[-4,17],[30,4],[3,-10],[1,-6],[5,2],[3,3],[0,-10],[12,2],[16,6],[10,3],[-1,2],[0,2],[-1,7],[-2,12],[-2,5],[-3,3],[-6,-1],[-4,6],[-1,3],[-4,6],[-4,14],[-3,9],[2,8],[5,3],[3,2],[7,-6],[4,-6],[2,2],[8,2],[11,4],[5,2],[1,0],[3,1],[3,0],[4,1],[3,1],[2,0],[2,1],[4,1],[1,4],[-2,17],[9,1],[18,1],[8,0],[1,-1],[5,-3],[3,-3],[1,-1],[2,-1],[3,-4],[4,1],[4,0],[3,2],[-3,10],[-1,5],[-2,6],[0,1],[-3,21],[2,18],[0,6],[19,-1],[6,0],[23,-2],[24,-1],[7,16],[7,19],[5,4],[3,1],[2,0],[4,1],[5,6],[3,12],[0,12],[0,1],[0,6],[0,9],[0,6],[10,1],[5,1],[1,0],[5,0],[18,3],[31,3],[0,19],[0,5],[7,0],[2,-18],[0,-5],[6,1],[1,0],[2,0],[7,-1],[12,2],[3,0],[4,1],[-1,6],[-1,7],[-2,13],[-3,3],[-3,4],[0,9],[4,4],[19,3],[16,3],[2,0],[10,1],[2,3],[-1,5],[-1,10],[-2,11],[2,4],[1,1],[4,2],[4,2],[0,8],[0,11],[-1,12],[7,6],[16,5],[15,2],[5,0],[9,-1],[6,0],[14,0],[4,4],[6,8],[1,1],[1,2],[7,9],[10,16],[3,4],[7,11],[5,14],[2,7],[6,13],[8,16],[2,8],[1,0],[13,-5],[3,-1],[8,-3],[24,-9],[28,-10],[5,-2],[28,-9],[21,-6],[8,0],[1,3],[2,5],[2,25],[3,8],[2,7],[2,3],[8,-2],[6,-1],[4,-1],[22,-2],[7,-1],[1,0],[22,-3],[16,-2],[-1,-6],[-6,-18],[-1,-6],[3,-5],[1,-2],[3,-3],[-6,-17],[0,-8],[8,-3],[17,-5],[10,-2],[22,-4],[29,-6],[9,-2],[30,-6],[27,-4],[3,-1],[9,-2],[16,-5],[18,-4],[11,-3],[0,-1],[2,-7],[0,-5],[-8,-8],[-6,-6],[-8,-1],[-8,0],[-9,0],[-11,5],[-19,-9],[-3,-1],[-11,-6],[-1,-1],[-18,-11],[-6,-3],[-1,-1],[-6,-4],[-10,-6],[-4,-3],[-27,-21],[-6,-4],[-7,-4],[-9,-13],[-9,-14],[-3,-4],[-7,-8],[-1,-1],[0,-3],[1,-4],[7,-4],[1,-1],[4,-3],[3,-4],[5,-3],[6,-5],[-9,-5],[-4,-1],[-6,-2],[0,-6],[1,-2],[1,-3],[4,-8],[9,-7],[12,-2],[17,9],[12,7],[9,5],[9,6],[6,3],[6,3],[9,4],[6,3],[10,5],[2,0],[10,4],[6,3],[16,11],[9,-4],[6,-8],[13,-17],[4,-3],[1,-1],[7,0],[9,8],[5,2],[4,2],[4,2],[10,5],[5,3],[13,7],[8,3],[4,-16],[5,-11],[8,-15],[5,-11],[5,-3],[11,2],[2,-9],[0,-3],[6,0],[5,1],[3,-1],[2,-1],[5,-3],[3,0],[1,0],[3,-1],[4,5],[2,6],[0,1],[1,3],[4,9],[1,3],[2,2],[6,8],[12,13],[8,9],[18,10],[2,1],[4,2],[6,3],[5,-9],[0,-6],[0,-1],[0,-8],[8,-5],[-5,-7],[-6,-9],[2,-6],[1,-2],[0,-1],[2,-1],[2,0],[4,-2],[5,9],[9,16],[7,11],[7,3],[4,0],[9,-1],[9,1],[1,0],[5,0],[2,-1],[1,0],[8,2],[5,3],[9,5],[7,3],[16,0],[3,-1],[4,0],[5,-1],[8,-2],[15,-4],[2,-1],[11,-6],[3,-3],[-1,-2],[-1,-4],[-2,-6],[-2,-8],[-1,-7],[-2,-6],[-4,-25],[1,-6],[15,-11],[7,-13],[0,-8],[1,-9],[3,-19],[6,0],[3,1],[8,1],[2,1],[1,0],[4,0],[13,1],[11,1],[6,0],[2,0],[23,-2],[2,0],[2,0],[2,0],[3,0],[9,1],[5,0],[11,0],[9,0],[9,1],[16,2],[1,3],[2,8],[1,16],[1,9],[1,11],[1,1],[0,3],[2,8],[1,8],[8,28],[9,30],[4,23],[5,8],[3,4],[3,4],[2,4],[6,10],[5,8],[2,3],[1,1],[5,-6],[1,-2],[3,7],[1,1],[2,5],[2,5],[2,7],[-6,6],[-1,5],[-3,12],[-3,2],[-4,2],[-14,7],[-6,4],[-2,6],[-1,10],[6,13],[1,2],[0,1],[-1,17],[0,2],[0,1],[1,8],[0,10],[0,1],[0,8],[3,13],[1,9],[0,2],[0,11],[-1,6],[-3,16],[1,7],[5,8],[2,3],[0,8],[-1,13],[1,15],[0,2]],[[7973,9285],[0,-1],[-27,-25],[-4,-4],[-14,-12],[-3,-3],[-11,-15],[-6,-14],[-5,-16],[0,-2],[0,-1],[-1,-6],[0,-4],[-1,-24],[1,-25],[0,-2],[0,-3],[1,-6],[2,-15],[0,-1],[4,-20],[1,-9],[8,-36],[9,-38],[4,-15],[6,-14],[8,-22],[18,-48],[23,-58],[3,-5],[8,-20],[13,-29],[2,-6],[11,-19],[13,-21],[19,-28],[9,-12],[0,-1],[4,-5],[9,-10],[4,-6],[42,-51],[4,-5],[38,-49],[16,-19],[4,-6],[35,-46],[21,-30],[4,-6],[10,-14],[3,-4],[9,-12],[8,-13],[7,-10],[2,-3],[5,-11],[6,-13],[3,-9],[5,-13],[1,-4],[3,-13],[2,-13],[1,-11],[1,-8],[0,-7],[-2,-9],[-3,-17],[-3,-9],[-1,-6],[-2,-4],[-2,-3],[0,-1],[-1,-2],[-6,-11],[-15,-19],[-27,-29],[-5,0],[-12,7],[-5,2],[-4,2],[-5,3],[-6,3],[-4,3],[-4,2],[-1,0],[-3,2],[-11,3],[-2,0],[-1,1],[-6,2],[-5,1],[-3,1],[-13,5],[-12,3],[-22,4],[-1,3],[-2,6],[-2,6],[-1,2],[-2,5],[0,1],[-1,2],[-2,6],[-2,7],[-1,1],[0,1],[0,2],[-1,9],[0,2],[-1,5],[0,6],[0,2],[0,1],[-1,1],[0,1],[0,1],[-1,11],[-2,22],[0,1],[0,1],[-3,25],[-1,10],[-8,-3],[-2,0],[-5,-1],[-1,0],[-10,-2],[-11,-1],[-1,0],[-13,-2],[-4,0],[-1,0],[-11,-1],[-8,0],[-4,0],[-3,0],[-13,-3],[-2,0],[-1,0],[-20,-2],[-1,0],[-4,0],[-1,0],[-17,1],[-5,0],[-1,0],[-2,0],[-6,1],[-9,-3],[-10,-5],[-3,-2],[-12,-8],[-14,-9],[-14,-11],[-9,-9],[-15,-17],[-8,-11],[-3,-7],[-1,-1],[-4,-8],[-2,-5],[-1,-2],[-2,-2],[-1,-1],[-7,-2],[-1,0],[-3,0],[-4,-1],[-26,-1],[-13,-1],[-2,0],[-3,0],[-17,-1],[-14,-2],[-7,-1],[-1,0],[-4,-1],[-6,-3],[-8,-5],[-4,-7],[-1,-4],[0,-4],[-1,-15],[-1,-4],[-1,-5],[-2,-8],[3,-4],[3,-7],[-1,-19],[-2,-9],[-2,-7],[0,-1],[-35,-4],[-11,-2],[-1,1],[-4,5],[-5,5],[-1,1],[-16,-2],[-12,0],[-11,2],[-2,0],[-3,1],[-16,5],[0,1],[-1,0],[-2,1],[-8,3],[-9,3],[-8,2],[-6,-1],[-5,-1],[-6,-3],[-5,-5],[-7,-12],[-8,-15],[-2,-12],[0,-1],[-1,-1],[0,-2],[0,-7],[1,-2],[0,-9],[1,-9],[1,-9],[0,-12],[0,-3],[0,-5],[0,-21],[0,-2],[0,-2],[0,-26],[-2,-9],[-2,-4],[0,-1],[-1,-1],[0,-1],[-2,-3],[-3,-6],[-1,-1],[-6,-8],[-6,-7],[-9,-7],[-16,-6],[-1,0],[-18,-6],[-6,0],[-9,1],[-5,0],[-10,0],[-10,4],[-35,15],[-2,2],[-3,2],[-2,3],[-1,2],[-1,2],[-1,3],[-5,27],[1,6],[0,1],[0,1],[1,3],[1,4],[1,2],[0,2],[3,7],[6,15],[1,6],[1,1],[1,3],[2,8],[1,0],[1,5],[2,16],[1,6],[4,1],[1,0],[1,1],[6,1],[3,1],[5,2],[1,3],[0,5],[-17,-2],[-10,-2],[-19,-3],[-2,0],[-3,0],[-5,-1],[-16,-2],[-1,0],[0,-8],[0,-4],[0,-3],[-1,-13],[-1,-2],[-2,-14],[0,-2],[0,-4],[-1,-3],[0,-5],[-1,-8],[-4,-25],[-1,-7],[0,-2],[-1,-5],[-1,-7],[0,-5],[-1,-8],[-4,-30],[-1,-5],[0,-4],[-1,-5],[-1,-6],[0,-6],[-3,-19],[-4,-1],[-18,-7],[-4,-2],[-35,7],[-8,2],[-6,1],[-2,0],[-4,1],[-4,1],[-3,0],[-2,1],[-2,1],[-2,22],[-6,57],[-3,37],[-3,35],[-4,0],[-2,-1],[-6,0],[-10,0],[-9,0],[-9,-1],[-12,-2],[-11,-3],[-7,-1],[-2,9],[0,5],[0,1],[-1,2],[-1,0],[-13,-5],[-19,-6],[-2,-1],[-2,-1],[-4,-1],[-10,-4],[-7,-2],[-4,-2],[-4,-1],[-11,-4],[-12,-5],[-12,-4],[-5,-3],[-3,-9],[-2,-10],[0,-2],[1,-10],[1,-10],[0,-1],[0,-7],[-1,-13],[0,-11],[1,-5],[1,-2],[3,-5],[1,-4],[0,-6],[0,-9],[0,-4],[0,-6],[-4,-22],[-1,-9],[0,-2],[1,-6],[0,-7],[2,-6],[2,-6],[4,-5],[11,-12],[6,-5],[10,-6],[9,-6],[-2,-8],[-7,-30],[11,-16],[11,-14],[21,-30],[12,-18],[4,-8],[14,-21],[22,-39],[9,-19],[21,-47],[4,-9],[13,-27],[17,-42],[4,-10]],[[4921,8736],[12,5],[19,9],[21,8],[3,1],[2,1],[16,6],[11,5],[14,4],[4,1],[0,1],[24,8],[2,1],[26,13],[5,2],[22,13],[16,9],[21,16],[1,2],[12,18],[4,14],[0,1],[5,21],[0,10],[1,13],[2,40],[2,1],[15,-2],[9,-3],[11,-6],[2,-1],[10,-8],[6,-5],[5,-3],[5,6],[7,-5],[12,-2],[7,-1],[1,0],[1,0],[0,-1],[18,9],[16,8],[5,-10],[9,4],[15,-1],[1,0],[5,1],[1,1],[6,1],[10,2],[12,4],[5,12],[3,4],[5,0],[7,-1],[13,1],[4,2],[5,-4],[11,10],[1,6],[-3,7],[14,20],[0,4],[4,4],[2,-1],[6,9],[-7,6],[-2,5],[0,2],[0,9],[-1,13],[-6,6],[-2,5],[11,12],[12,12],[5,6],[2,2],[2,2],[1,2],[3,2],[3,4],[2,2],[5,5],[5,7],[8,9],[2,2],[7,8],[1,0],[4,6],[2,2],[1,2],[1,0],[4,5],[3,3],[2,3],[9,10],[2,5],[2,5],[18,22],[5,8],[6,27],[1,9],[5,17],[1,3],[2,11],[1,2],[1,3],[1,4],[0,1],[2,10],[1,5],[1,6],[1,5],[-1,2],[-3,10],[0,2],[-1,2],[-9,16],[-13,19],[-12,9],[-9,7],[-14,12],[-6,6],[-1,0],[-2,2],[-1,1],[-28,30],[-26,28],[-7,10],[-7,9],[-6,13],[-4,9],[-4,8],[-5,6],[-15,10],[-17,18],[-17,16],[-12,11],[-21,20],[-22,17],[-7,5],[-3,2],[-2,2],[-1,1],[-2,2],[-5,5],[-1,2],[-4,9],[-1,11],[0,9],[3,2],[5,5],[3,3],[2,2],[-11,15],[-7,10],[6,4],[3,2],[6,3],[-11,14],[10,10],[-1,19],[4,4],[14,15],[3,-4],[3,3],[8,8],[8,-6],[8,-6],[15,12],[4,-3],[2,-1],[2,-2],[9,-6],[6,-4],[7,5],[11,9],[9,-10],[8,4],[4,1],[1,15],[3,17],[1,4],[4,27],[2,4],[13,-7],[2,-1],[5,-3],[23,-11],[13,-3],[20,2],[1,0],[1,0],[15,4],[3,1],[7,1],[4,1],[10,2],[24,11],[18,9],[21,15],[16,14],[21,18],[26,21],[18,9],[9,7],[16,12],[-13,16],[-3,4],[0,1],[-2,2],[2,2],[2,3],[3,3],[5,5],[8,15],[10,7],[12,4],[1,0],[10,2],[3,0],[13,1],[8,1],[1,0],[5,0],[7,-1],[1,0],[8,0],[24,-4],[21,-2],[16,-4],[5,-2],[8,-4],[9,-8],[3,-3],[1,-1],[2,-3],[1,-1],[1,-2],[2,-2],[13,-19],[9,-14],[2,-2],[25,-30],[30,-39],[5,-8],[1,0],[30,-39],[30,-37],[8,-12],[1,-10],[0,-5],[22,-28],[2,-4],[1,-5],[4,-6],[10,-12],[8,-9],[2,-3],[5,2],[5,1],[2,1],[1,-1],[5,-5],[6,-7],[15,-16],[15,-9],[10,-3],[12,0],[16,2],[12,0],[6,0],[5,-3],[1,0],[8,-4],[6,-2],[3,-1],[12,0],[5,0],[9,0],[5,0],[21,0],[19,1],[5,-1],[16,-1],[6,-2],[6,-2],[7,-2],[22,-9],[17,-7],[13,-6],[11,-4],[2,-1],[14,-4],[6,-3],[16,-6],[4,-2],[1,0],[3,-1],[18,-4],[7,-1],[37,-2],[3,0],[4,2],[14,1],[2,0],[15,1],[15,6],[9,4],[2,1],[5,2],[7,3],[25,5],[7,2],[6,1],[13,3],[9,2],[7,4],[9,5],[8,5],[5,4],[3,3],[5,3],[6,5],[5,7],[3,6],[3,7],[1,2],[8,5],[7,6],[7,5],[7,5],[13,8],[18,3],[18,2],[3,1],[29,2],[23,-2],[28,-3],[15,-2],[13,-2],[22,-3],[7,-1],[21,-3],[2,0],[6,-1],[3,0],[19,0],[9,-1],[12,0],[6,-1],[29,1],[26,2],[1,0],[20,6],[18,7],[16,8],[10,6],[3,1],[22,14],[4,3],[8,7],[16,10],[7,5],[5,4],[1,10],[0,1],[1,4],[2,10],[0,3],[1,5],[6,5],[4,4],[4,3],[3,0],[-1,-11],[-2,-13],[14,12],[15,12],[25,-18],[3,1],[2,1],[3,2],[4,1],[4,2],[-20,32],[-8,13],[0,1],[0,7],[7,17],[1,1],[6,14],[6,21],[5,12],[2,4],[17,-6],[26,-13],[9,-4],[2,-1],[0,-1],[10,-5],[1,-1],[1,0],[7,-9],[12,-22],[3,-5],[1,-2],[2,-3],[10,-20],[7,-14],[0,-4],[0,-11],[-1,-13],[-1,-3],[0,-1],[-2,-4],[-4,-7],[-20,-18],[-6,-6],[-9,-7],[-6,-5],[-5,-4],[-2,-2],[-3,-7],[0,-1],[-9,-24],[0,-1],[-2,-3],[0,-1],[-10,-20],[-15,-29],[-11,-18],[-6,-14],[-2,-4],[-3,-8],[-1,-6],[-2,-10],[-3,-23],[-6,-40],[-3,-20],[-1,-15],[3,-18],[1,-12],[0,-8],[-1,-3],[-3,-7],[-8,-18],[-2,-7],[-2,-6],[-3,-8],[-1,-7],[0,-1],[1,-4],[1,-8],[5,-12],[7,-17],[2,-5],[1,-2],[8,-13],[6,-7],[6,-8],[4,-5],[4,-6],[5,-5],[12,-13],[8,-8],[10,-11],[9,-7],[21,-9],[15,-5],[11,-3],[1,-1],[4,-6],[0,-1],[1,0],[6,-18],[3,-5],[2,-3],[12,-9],[16,-10],[10,0],[16,5],[9,5],[4,2],[3,2],[2,1],[1,0],[6,2],[5,2],[6,3],[4,1],[12,2],[11,2],[10,3],[5,2],[22,7],[9,3],[25,16],[1,0],[27,20],[8,8],[8,12],[0,1],[8,11],[8,14],[2,3],[5,10],[12,16],[5,5],[6,7],[14,13],[8,9],[2,3],[2,5],[6,11],[6,11],[5,6],[2,4],[1,2],[6,6],[3,4],[3,2],[5,4],[10,3],[13,3],[18,-1],[5,-1],[17,-2],[2,0],[23,-6],[22,-7],[15,-3],[7,-2],[12,-1],[12,-4],[2,-1],[10,-4],[6,-2],[13,-11],[13,-14],[13,-15],[14,-16],[7,-9],[1,-2],[8,-10],[13,-17],[2,-3],[6,-8],[4,-6]],[[9187,7743],[-19,-2],[-2,0],[-56,0],[-30,-1],[-7,0],[-3,-5],[-2,-4],[-17,1],[-17,0],[-2,-2],[1,-3],[2,-9],[0,-2],[-8,0],[-4,-1],[-2,0],[-7,0],[-12,-1],[-2,-1],[-3,0],[-3,0],[-3,0],[-2,-4],[-3,-3],[-1,-1],[-2,-3],[-16,4],[-3,1],[-1,0],[-31,1],[-3,0],[-1,0],[-1,-1],[0,-1],[-4,-19],[0,-1],[-3,-16],[-1,-4],[16,4],[2,0],[1,1],[7,1],[14,-2],[0,-7],[7,5],[5,3],[6,-5],[14,-5],[3,-7],[-2,-4],[-1,-3],[-2,-6],[-3,-8],[1,-1],[5,-3],[6,-4],[2,-2],[5,-3],[1,-1],[9,-6],[2,0],[1,-1],[0,-3],[7,1],[1,-11],[18,2],[3,-27],[0,-5],[-12,-1],[2,-12],[-21,-2],[1,-10],[-4,0],[-8,-1],[-5,1],[-11,0],[-14,-7],[-16,-9],[8,-30],[-6,-2],[-3,-1],[-4,-1],[-5,-2],[0,-5],[1,-2],[0,-8],[-6,-3],[-7,-2],[-1,-2],[0,-3],[0,-6],[0,-4],[-1,-10],[-7,-2],[-1,-6],[-1,-1],[0,-1],[0,-1],[-11,-2],[-14,-2],[1,-3],[2,-3],[2,-5],[1,-1],[11,-25],[1,-1],[2,-4],[-4,-1],[-1,0],[-1,-1],[-11,-3],[-21,11],[-4,2],[-4,2],[-8,4],[-18,10],[-6,-2],[-4,-1],[-1,-1],[-1,-3],[-4,-11],[-4,-4],[0,-3],[5,-4],[0,-3],[-3,-14],[0,-4],[-1,-1],[-2,-11],[-2,-12],[-2,-2],[-7,-5],[1,-6],[0,-1],[2,-25],[-1,-2],[-1,-2],[-9,-16],[-16,3],[-1,1],[-2,0],[-3,1],[-1,0],[-7,2],[-6,1],[-4,-2],[-3,-2],[-1,0],[-1,-1],[-5,-2],[-2,-11],[-5,1],[-8,1],[-12,2],[-2,4],[-1,1],[-1,2],[-6,9],[-7,12],[-3,-4],[-2,-4],[-2,-3],[2,-4],[1,-1],[6,-12],[-2,-9],[-1,-1],[1,0],[10,3],[2,-3],[0,-1],[1,-1],[9,-17],[-7,-2],[-2,-6],[-1,-9],[-1,-2],[-2,-9],[-4,-3],[-20,-16],[0,-5],[-4,0],[-8,-1],[-1,0],[1,-3],[2,-2],[1,-2],[2,-2],[3,-3],[0,-6],[-5,-13],[-2,-6],[-4,-12],[-2,-10],[-3,-8],[7,-16],[4,-9],[-2,-13],[-2,-15],[0,-28],[-6,-4],[-6,-3],[-6,-6],[-3,-3],[-2,-2],[-2,-1],[-11,-11],[-2,-1],[-19,-3],[3,-9],[-4,-21],[-2,-13],[-1,-2],[0,-3],[9,-28],[4,-16],[0,-2],[0,-8],[1,-11],[0,-10],[0,-7],[0,-2],[1,-4],[0,-10],[-21,-14],[-2,5],[-4,-3],[-2,-1],[-22,-17],[5,-11],[1,-2],[1,-4],[-7,-4],[-7,-3],[-4,-3],[-2,-3],[-1,-2],[-1,-2],[-2,-4],[-1,-2],[-1,-2],[-1,-2],[-4,-8],[-14,-34],[-2,-9],[0,-1],[1,-16],[0,-3],[-2,-11],[-7,-18],[-1,-1],[-9,-8],[-6,-7],[-5,-18],[2,-8],[6,-15],[3,-3],[4,-4],[10,-21],[3,-5],[3,-7],[2,-5],[3,-8],[1,-1],[6,-16],[3,-9],[4,-5],[5,-5],[5,-11],[3,-6],[1,-2],[1,-2],[1,-12],[-4,-22],[-2,-1],[-3,-1],[-1,-1],[-3,-5],[-1,-1],[-3,-4],[-5,-15],[-3,-5],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-2,-3],[-2,-4],[-1,-2],[-13,1],[0,4],[-8,1],[-2,0],[0,21],[-49,10],[0,-6],[-5,1],[-2,0],[-29,5],[-3,-2],[-3,-1],[-11,-7],[-9,8],[-7,-7],[-1,-1],[-1,-1],[-2,-2],[-3,4],[-15,16],[-1,1],[-1,1],[-18,19],[-1,1],[-8,9],[-11,-9],[-1,-1],[-10,-9],[-1,-1],[-1,-1],[-3,-2],[-6,7],[-2,2],[-7,8],[-15,-12],[-6,5],[-3,3],[-1,0],[-3,3],[-4,-4],[-4,1],[-3,1],[-3,0],[-3,1],[-9,3],[-1,1],[-24,8],[-1,-2],[-1,-1],[0,-1],[-11,-20],[-14,2],[-4,-8],[-6,-3],[-5,-10],[-6,-12],[-6,-4],[-4,-4],[-4,-4],[-10,-7],[-13,-9],[-2,-2],[-24,-17],[-27,-20],[-38,43],[-14,15],[-11,13],[-12,13],[-60,66],[-12,13],[-30,33],[-7,8],[-74,81]],[[7973,9285],[1,-2],[5,-11],[7,-10],[6,-5],[2,1],[1,0],[3,-1],[0,-1],[7,-3],[18,-10],[5,-4],[1,-1],[13,-13],[22,-20],[0,-1],[3,-2],[4,-3],[24,-22],[21,-19],[23,-20],[11,-9],[10,-7],[4,-4],[10,-6],[19,-11],[20,-7],[17,-1],[7,1],[9,4],[2,2],[5,5],[15,17],[3,3],[10,15],[3,5],[6,11],[7,17],[1,3],[4,10],[5,16],[4,13],[6,14],[2,2],[6,6],[6,4],[1,1],[10,3],[6,-1],[19,-2],[11,-4],[5,-2],[7,0],[12,-2],[23,-6],[14,-1],[1,0],[12,1],[1,0],[1,1],[11,5],[9,6],[11,8],[2,1],[12,7],[15,8],[18,10],[6,3],[24,14],[16,6],[12,5],[5,0],[18,3],[2,1],[16,3],[16,3],[10,1],[7,0],[9,0],[2,0],[4,-1],[20,-1],[22,-4],[26,-10],[12,-11],[4,-6],[3,-3],[10,-13],[3,-4],[7,-8],[16,-25],[9,-33],[0,-10],[0,-7],[-1,-4],[-6,-19],[-11,-15],[-22,-17],[-5,-4],[-4,-3],[-45,-36],[-42,-73],[-6,-9],[-7,-19],[-3,-26],[2,-18],[2,-18],[8,-19],[4,-8],[3,4],[5,5],[30,-57],[3,-7],[4,-7],[2,-2],[2,-2],[7,-8],[8,-10],[8,-10],[6,-7],[13,-4],[3,-1],[4,-2],[30,-11],[11,-1],[5,0],[10,-1],[6,1],[7,2],[15,4],[10,3],[25,6],[19,5],[15,4],[13,4],[6,1],[12,4],[3,1],[4,2],[1,0],[4,1],[25,9],[6,3],[9,4],[9,4],[6,2],[28,13],[1,0],[35,16],[22,7],[14,0],[20,-4],[9,-2],[3,-1],[11,-3],[11,-3],[11,-3],[23,-7],[9,-3],[13,-3],[19,-4],[40,-10],[9,-18],[7,-19],[6,-25],[1,-12],[-1,-8],[-2,-13],[-7,-18],[-12,-23],[-11,-13],[-39,-30],[-10,-6],[-40,-23],[-34,-18],[-15,-9],[-57,-26],[-39,-18],[-49,-25],[-13,-6],[-31,-23],[-28,-40],[-12,-26],[-1,-3],[-13,-37],[-4,-18],[-3,-9],[-4,-15],[-1,-8],[-1,-7],[2,-17],[8,-25],[1,-4],[9,-24],[20,-40],[19,-29],[22,-29],[6,-14],[0,-1],[5,-20],[5,-34],[11,-80],[3,-7],[2,-3],[6,-11],[12,-20],[65,-88],[6,-7],[2,-3],[36,-43],[58,-83]],[[8425,3853],[4,0],[1,0],[1,1],[3,0],[2,0],[2,1],[1,0],[1,0],[3,-1],[1,0],[1,-1],[1,0],[1,-3],[1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-3,-1],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,1],[-3,0],[-1,1],[-3,1],[-1,0],[-2,1],[-3,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1]],[[8452,3917],[3,-1],[3,-1],[3,-1],[2,-1],[7,-2],[6,-3],[7,-3],[6,-3],[7,-3],[6,-4],[5,-3],[1,0],[8,-5],[7,-5],[7,-5],[2,-2],[5,-3],[2,-2],[1,0],[2,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,0],[-16,-28],[-1,-1],[-4,-8],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[5,7],[2,4],[15,25],[0,2],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-2,0],[-2,0],[-2,1],[-3,-1],[-2,1],[-1,1],[-2,1],[-2,1],[-1,2],[-1,1],[-1,1],[-2,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-2,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,2],[-2,1],[-1,1],[-2,1],[-2,1],[-2,1],[-2,1],[-1,1],[-2,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,0],[0,1],[-1,1],[-1,1],[-2,0],[-1,1],[-1,1],[0,2],[-1,2],[-1,2],[0,1],[-1,1],[-2,1],[-1,1],[-2,0],[-2,0],[-2,1],[-2,0],[-1,1],[-2,0],[-2,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,1],[0,1],[-1,0],[-2,1],[-1,0],[0,1],[0,2],[-2,1],[-3,1],[-4,1],[-3,0],[-1,1],[-3,0],[-4,1],[-3,0],[-3,0],[-2,0],[0,-1],[1,-1],[1,-1],[1,-1],[2,-1],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-1],[2,-1],[2,-1],[2,-1],[3,-1],[2,0],[1,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-1],[0,-1],[0,-2],[-1,-3],[-1,-2],[-1,0],[0,-1],[-2,-1],[-1,0],[-3,-1],[-1,-1],[-3,0],[-1,0],[-2,0],[-1,1],[-1,0],[-2,2],[-1,1],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-2,1],[-1,1],[-2,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-2,1],[-2,1],[-1,0],[-1,1],[-2,0],[-2,1],[-2,1],[-1,0],[-3,1],[-1,1],[-2,1],[-2,0],[-2,1],[-2,1],[-2,1],[-1,1],[-2,1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-4,-2],[-2,-2],[-3,-2],[-2,-2],[-2,-2],[-3,-2],[-2,-3],[-2,-2],[-2,-2],[-2,-3],[-2,-2],[-2,-3],[-1,-1],[-4,-8],[-17,-22],[-12,-16],[-2,2],[-1,0],[-2,2],[5,6],[0,1],[4,5],[25,33],[2,3],[2,2],[2,3],[2,2],[2,3],[3,2],[2,2],[2,3],[3,2],[2,2],[3,2],[3,2],[2,2],[3,1],[3,2],[3,2],[3,1],[3,2],[3,1],[3,1],[4,1],[3,2],[3,1],[3,0],[4,1],[3,1],[3,0],[4,1],[3,0],[3,1],[4,0],[3,0],[4,0],[3,0],[3,0],[4,-1],[3,0],[3,-1],[4,0],[3,-1],[3,-1],[4,-1]],[[8222,3963],[0,-1],[2,0],[1,0],[1,0],[1,0],[3,0],[1,0],[2,0],[4,1],[2,0],[4,-1],[3,0],[4,-1],[8,-2],[3,-1],[2,-1],[25,-8],[3,-1],[1,-1],[3,-1],[2,-1],[1,-1],[1,0],[2,-2],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-2],[1,-2],[1,-1],[1,-4],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[-2,-3],[-1,-2],[-1,-1],[-2,-2],[-11,-15],[-14,-19],[-1,-2],[-3,-2],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-2,2],[0,1],[-1,2],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[1,2],[2,2],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[2,2],[2,3],[1,0],[1,2],[1,1],[0,1],[3,3],[2,2],[-2,4],[-1,2],[-1,3],[-1,2],[-2,1],[-1,2],[0,1],[-2,2],[-1,1],[-2,2],[-2,2],[-1,1],[-1,2],[-1,1],[-2,2],[-2,1],[-2,1],[-1,2],[-2,2],[-3,1],[-1,1],[-3,1],[-1,1],[-2,1],[-2,2],[-3,2],[-1,0],[-2,1],[-3,1],[-2,1],[-2,1],[-2,1],[-3,1],[-2,1],[-2,1],[-3,1],[-3,1],[-1,1],[-2,0],[-4,2],[-4,1],[-2,0],[-4,1],[-4,1],[-2,1],[-6,1],[-7,2],[-5,1],[-3,1],[-3,0],[-9,2],[-6,1],[-4,1],[-7,0],[-10,2],[-11,1],[-12,2],[-5,0],[-7,1],[-5,-1],[-6,0],[-8,0],[-5,0],[-4,0],[-3,-1],[-4,0],[-4,-1],[-4,0],[-5,-1],[-6,-1],[-3,0],[0,-1],[-2,0],[0,-8],[-4,-64],[-1,-14],[0,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,14],[0,1],[-1,0],[4,64],[1,16],[0,8],[1,4],[0,4],[1,3],[1,3],[1,3],[1,3],[1,3],[2,3],[0,1],[2,2],[1,2],[3,3],[2,2],[2,2],[3,3],[4,3],[3,2],[3,1],[4,1],[3,2],[3,1],[4,0],[3,1],[3,0],[3,0],[1,0],[2,0],[3,-1],[3,0],[3,-1],[2,0],[2,-1],[4,-2],[5,-2],[56,-26],[3,-2],[3,-1],[3,-2],[3,-2],[1,-1],[2,-2],[2,-2],[3,-2],[2,-3],[1,-2],[2,-3],[0,-1],[2,-3],[1,-1],[1,-1],[1,-1],[1,0]],[[9187,7743],[5,-7],[8,-9],[7,-9],[19,-25],[8,-7],[0,-1],[34,-32],[14,-7],[92,-39],[29,-20],[25,-24],[13,-18],[12,-17],[15,-44],[7,-19],[9,-28],[3,-11],[8,-43],[2,-53],[-1,-10],[-3,-25],[-7,-20],[-7,-22],[-1,-1],[-10,-22],[-35,-74],[-23,-49],[-4,-18],[-6,-26],[-3,-13],[-6,-31],[-3,-48],[0,-5],[2,-32],[12,-59],[9,-24],[19,-28],[7,-6],[12,-11],[17,-16],[2,-2],[24,-19],[27,-23],[28,-24],[33,-29],[22,-24],[26,-35],[17,-40],[13,-30],[21,-38],[17,-26],[6,-6],[19,-19],[7,-7],[65,-46],[8,-5],[44,-30],[20,-18],[18,-16],[15,-18],[3,-4],[4,-6],[9,-11],[9,-12],[10,-91],[3,-16],[0,-1],[9,-43],[17,-41],[1,-5],[6,-14],[21,-58],[2,-6],[3,-18],[4,-23],[0,-11],[-5,-19],[-58,-98],[0,-1],[-1,-2],[-31,-53],[-17,-29],[-14,-21],[-16,-25],[-25,-30],[-66,-83],[-55,-70],[-9,-7],[0,-1],[-33,-29],[-34,-24],[-13,-6],[-12,-5],[-3,-1],[-33,-7],[-106,-11],[-15,-2],[-98,-13],[-23,-4],[-17,-3],[-28,-5],[-42,-12],[-11,-3],[-22,-8],[-10,-5],[-6,-3],[-1,0],[-6,-4],[-27,-13],[-32,-19],[-29,-25],[-14,-23],[-6,-28],[-3,-15],[-8,-50],[-5,-28],[-1,-4],[-2,-71],[3,-23],[12,-32],[17,-41],[16,-38],[3,-29],[-1,-42],[0,-12],[-3,-27],[-3,-34],[1,-34],[0,-55],[1,-29],[3,-90],[1,-41],[2,-32],[-2,-21],[-12,-61],[-18,-55],[-6,-18],[-20,-53],[-29,-92],[-8,-27],[-6,-28],[-8,-18],[-5,-5],[-5,-7],[-15,-13],[-18,-11],[-67,-43],[-61,-37],[-59,-35],[-9,-6],[-12,-7],[-12,-8],[-75,-46],[-18,9],[-1,-1],[-1,-1],[-2,0],[-46,10],[-1,0],[-17,-5],[-20,-5],[-28,-6],[-1,0],[-5,-1],[-10,-2],[-4,0],[-6,0],[-9,-2],[-10,0],[-6,-1],[-6,-1],[-8,0],[-7,0],[-8,0],[-9,0],[-9,0],[-10,0],[-3,0],[-4,0],[-4,0],[-2,1],[-2,0],[-1,0],[0,-1],[-1,0],[-6,0],[-7,1],[-10,1],[-8,1],[0,2],[0,2],[-5,1],[-1,0],[-3,0],[-3,1],[-3,0],[-7,2],[-6,1],[-6,1],[-7,2],[-6,1],[0,-2],[-1,-1],[-4,1],[-8,1],[-9,3],[-10,3],[-9,3],[-16,6],[-3,0],[-26,11],[-2,1],[-1,3],[0,2],[-5,2],[-5,3],[-7,3],[-8,4],[-2,1],[-5,2],[-1,-1],[-1,-1],[-2,1],[-1,0],[-18,10],[-8,5],[-6,4],[-7,4],[-6,4],[-6,4],[-7,6],[-7,5],[-4,3],[0,1],[1,1],[1,1],[1,0],[1,2],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[0,2],[-3,1],[-4,3],[-4,3],[-2,2],[-3,3],[0,2],[-53,8],[-1,0],[-2,1],[-2,0],[-1,1],[-2,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[0,2],[1,25],[2,21],[1,17],[1,19],[1,16],[1,13],[0,4],[0,7],[2,26],[1,16],[1,23],[0,3],[2,24],[0,6],[0,1],[0,1],[1,10],[0,1],[0,6],[1,19],[1,18],[0,2],[1,18],[1,10],[1,12],[0,14],[1,15],[1,15],[1,10],[0,11],[1,6],[1,19],[0,5],[1,10],[0,8],[1,9],[0,9],[1,9],[0,1],[-11,0],[-125,6]]],"bbox":[139.562785837,35.520966306,139.918908366,35.817705946],"transform":{"scale":[0.00003561581448144853,0.000029676931693169157],"translate":[139.562785837,35.520966306]}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment