Skip to content

Instantly share code, notes, and snippets.

@seshness
Last active April 5, 2016 07:02
Show Gist options
  • Save seshness/9fd55b31aad13cfdebf132b5715b3d3d to your computer and use it in GitHub Desktop.
Save seshness/9fd55b31aad13cfdebf132b5715b3d3d to your computer and use it in GitHub Desktop.
Guess the Legend
license: bsd-3-clause
height: 700
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="//d3js.org/d3.geo.projection.v0.min.js" charset="utf-8"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script src="main.js" charset="utf-8"></script>
</body>
</html>
var width = 960,
height = 700;
var svg = d3.select('body').append('svg')
.attr('width', width)
.attr('height', height);
var projection = d3.geo.times()
.scale(200)
.translate([width / 2, height / 2])
.precision(.1);
var path = d3.geo.path().projection(projection);
var graticule = d3.geo.graticule();
svg.append('defs').append('path')
.datum({type: 'Sphere'})
.attr('id', 'sphere')
.attr('d', path);
svg.append('use')
.attr('class', 'stroke')
.attr('xlink:href', '#sphere');
svg.append('use')
.attr('class', 'fill')
.attr('xlink:href', '#sphere');
svg.append('path')
.datum(graticule)
.attr('class', 'graticule')
.attr('d', path);
function d3Fetch(method, filename) {
return new Promise(function(resolve, reject) {
d3[method](filename, function(err, results) {
if (err) { return reject(err); }
return resolve(results);
});
});
}
var metrics = d3Fetch('text', 'metrics.csv').then(function(results) {
return new Map(d3.csv.parseRows(results).map(function(row) {
return [row[0], +row[1]];
}));
}),
mapTopojson = d3Fetch('json', 'sovereignty.topojson');
var tooltip = d3.select('body').append('div')
.attr('class', 'hidden tooltip');
Promise.all([metrics, mapTopojson]).then(function(results) {
var metrics = results[0],
sovereignty = results[1];
var max = -Infinity,
min = Infinity,
sum = 0;
for (var value of metrics.values()) {
max = Math.max(max, value);
min = Math.min(min, value);
sum += value;
}
var avg = sum/metrics.size;
var colourScale = d3.scale.log()
.range(['#fee8c8', '#fdbb84', '#e34a33']) // or use hex values
.domain([min, avg, max]);
var features = topojson.feature(sovereignty, sovereignty.objects.sovereignty).features;
var numberFormatter = d3.format(',');
svg.selectAll('.sovereign-state')
.data(features)
.enter().append('path')
.attr('class', 'stroke sovereign-state')
.attr('d', path)
.attr('fill', function(d) {
return colourScale(metrics.get(d.id));
})
.on('mousemove', function(d) {
var mouse = d3.mouse(svg.node()).map(function(d) {
return parseInt(d);
});
tooltip
.classed('hidden', false)
.attr('style', 'left:' + (mouse[0] + 15) +
'px; top:' + (mouse[1] - 35) + 'px')
.text(d.id + ': ' + numberFormatter(metrics.get(d.id)));
})
.on('mouseout', function() {
tooltip.classed('hidden', true);
});
});
d3.select(self.frameElement).style('height', height + 'px');
Afghanistan 1993
Albania 2360
Algeria 878
Andorra 121
Angola 107
Antigua and Barb. 10
Argentina 22065
Armenia 1805
Australia 106719
Austria 21145
Azerbaijan 291
Bahamas 309
Bahrain 697
Bangladesh 892
Barbados 268
Belarus 770
Belgium 28100
Belize 546
Benin 28
Bhutan 230
Bolivia 774
Bosnia and Herz. 1178
Botswana 95
Brazil 6345
Brunei 814
Bulgaria 8522
Burkina Faso 33
Burundi 35
Cambodia 1658
Cameroon 92
Canada 201166
Cape Verde 80
Central African Rep. 15
Chad 58
Chile 12444
China 26784
Taiwan 7630
Colombia 4610
Comoros 17
Dem. Rep. Congo 69
Congo 16
Costa Rica 2740
Croatia 13374
Cuba 2349
Cyprus 748
Czech Rep. 2368
Denmark 42788
Djibouti 34
Dominica 71
Dominican Rep. 911
Timor-Leste 95
Ecuador 2855
Egypt 2670
El Salvador 1321
Eq. Guinea 1
Eritrea 184
Estonia 7050
Ethiopia 577
Micronesia 18
Fiji 290
Finland 9168
France 69300
Gabon 21
Gambia 30
Georgia 1672
Germany 29020
Ghana 403
Greece 15889
Grenada 10
Guatemala 1485
Guinea 14
Guinea-Bissau 16
Guyana 314
Haiti 826
Honduras 536
Hungary 11058
Iceland 13076
India 48560
Indonesia 11898
Iran 7210
Iraq 1703
Ireland 73226
Israel 20542
Italy 40029
Côte d'Ivoire 21
Jamaica 1244
Japan 66672
Jordan 1014
Kazakhstan 742
Kenya 2999
Dem. Rep. Korea 8338
Korea 20430
Kosovo 304
Kuwait 1136
Kyrgyzstan 193
Lao PDR 557
Latvia 5300
Lebanon 2841
Lesotho 58
Liberia 49
Libya 355
Liechtenstein 147
Lithuania 8958
Luxembourg 2505
Macedonia 815
Madagascar 194
Malawi 99
Malaysia 6318
Maldives 151
Mali 79
Malta 1025
Marshall Is. 20
Mauritania 56
Mauritius 273
Mexico 47646
Moldova 519
Monaco 117
Mongolia 852
Montenegro 221
Morocco 1704
Mozambique 81
Myanmar 474
Namibia 179
Nauru 29
Nepal 2622
Netherlands 5413
New Zealand 64061
Nicaragua 948
Niger 44
Nigeria 702
Norway 12666
Oman 707
Pakistan 5838
Palau 51
Panama 1466
Papua New Guinea 98
Paraguay 1177
Peru 6277
Philippines 50308
Poland 6887
Portugal 11837
Qatar 897
Romania 27830
Russia 17791
Rwanda 174
W. Sahara 3
St. Kitts and Nevis 23
Saint Lucia 12
St. Vin. and Gren. 12
Samoa 77
San Marino 19
São Tomé and Principe 6
Saudi Arabia 2380
Senegal 141
Serbia 3441
Seychelles 21
Sierra Leone 84
Singapore 40781
Slovakia 4882
Slovenia 1601
Solomon Is. 35
Somalia 433
Somaliland 34
South Africa 18841
S. Sudan 250
Spain 6770
Sri Lanka 1258
Sudan 187
Suriname 82
Swaziland 45
Sweden 94037
Switzerland 7481
Syria 2444
Tajikistan 273
Tanzania 278
Thailand 8871
Togo 22
Tonga 91
Trinidad and Tobago 628
Tunisia 545
Turkey 7407
Turkmenistan 106
Tuvalu 102
Uganda 236
Ukraine 5863
United Arab Emirates 1095
United Kingdom 118365
United States 6125
Uruguay 1645
Uzbekistan 181
Vanuatu 46
Vatican 10
Venezuela 8693
Vietnam 4789
Yemen 360
Zambia 139
Zimbabwe 258
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"sovereignty":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"FORMAL_EN":"Islamic State of Afghanistan"},"id":"Afghanistan","arcs":[[0,1,2,3,4,5]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"People's Republic of Angola"},"id":"Angola","arcs":[[[6]],[[7,8,9,10]],[[11,12,13]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Albania"},"id":"Albania","arcs":[[14,15,16,17,18]]},{"type":"Polygon","properties":{"FORMAL_EN":"Principality of Andorra"},"id":"Andorra","arcs":[[19,20]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"United Arab Emirates"},"id":"United Arab Emirates","arcs":[[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30,31,32,33,34],[35]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Argentine Republic"},"id":"Argentina","arcs":[[[36,37]],[[38]],[[39,40]],[[41]],[[42]],[[43]],[[44]],[[45,46,47,48,49,50]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Armenia"},"id":"Armenia","arcs":[[[51]],[[52,53,54,55,56],[57],[58]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Antigua and Barbuda"},"id":"Antigua and Barb.","arcs":[[[59]],[[60]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Commonwealth of Australia"},"id":"Australia","arcs":[[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Austria"},"id":"Austria","arcs":[[158,159,160,161,162,163,164,165,166]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Azerbaijan"},"id":"Azerbaijan","arcs":[[[167,168,-55]],[[169]],[[170]],[[-59]],[[-58]],[[171,172,173,-53,174],[-52]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Burundi"},"id":"Burundi","arcs":[[175,176,177]]},{"type":"Polygon","properties":{"FORMAL_EN":"Kingdom of Belgium"},"id":"Belgium","arcs":[[178,179,180,181,182,183,184]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Benin"},"id":"Benin","arcs":[[185,186,187,188,189]]},{"type":"Polygon","properties":{"FORMAL_EN":"Burkina Faso"},"id":"Burkina Faso","arcs":[[190,-189,191,192,193,194]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"People's Republic of Bangladesh"},"id":"Bangladesh","arcs":[[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216,217,218]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Bulgaria"},"id":"Bulgaria","arcs":[[219,220,221,222,223,224]]},{"type":"Polygon","properties":{"FORMAL_EN":"Kingdom of Bahrain"},"id":"Bahrain","arcs":[[225]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Commonwealth of the Bahamas"},"id":"Bahamas","arcs":[[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[-238]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Bosnia and Herzegovina"},"id":"Bosnia and Herz.","arcs":[[261,262,263,264,265]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Belarus"},"id":"Belarus","arcs":[[266,267,268,269,270]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Belize"},"id":"Belize","arcs":[[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278,279,280]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Plurinational State of Bolivia"},"id":"Bolivia","arcs":[[281,-51,282,283,284]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Federative Republic of Brazil"},"id":"Brazil","arcs":[[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326,327,328,329,-47,330,-285,331,332,333,334]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Barbados"},"id":"Barbados","arcs":[[335]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Negara Brunei Darussalam"},"id":"Brunei","arcs":[[[336,337]],[[338,339]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Kingdom of Bhutan"},"id":"Bhutan","arcs":[[340,341]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Botswana"},"id":"Botswana","arcs":[[342,343,344]]},{"type":"Polygon","properties":{"FORMAL_EN":"Central African Republic"},"id":"Central African Rep.","arcs":[[345,346,347,348,349,350]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Canada"},"id":"Canada","arcs":[[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387,388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407]],[[408]],[[409]],[[410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]],[[479]],[[480]],[[481]],[[482]],[[483]],[[484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[494]],[[495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]],[[546]],[[547]],[[548]],[[549]],[[550]],[[551]],[[552]],[[553]],[[554]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634]],[[635]],[[636]],[[637]],[[638]],[[639]],[[640]],[[641]],[[642]],[[643]],[[644]],[[645]],[[646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[656]],[[657]],[[658]],[[659]],[[660]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704,705,706,707,708,709]],[[710]],[[711]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761]],[[762]],[[763]],[[764]],[[765]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":null},"id":"China","arcs":[[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796]],[[797]],[[798]],[[799]],[[800]],[[801]],[[802]],[[803]],[[804]],[[805]],[[806]],[[807]],[[808]],[[809]],[[810]],[[811]],[[812]],[[813]],[[814]],[[815]],[[816]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]],[[833]],[[834,835,836,837,838,839,-342,840,841,842,843,844,-1,845,846,847,848,849,850]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Swiss Confederation"},"id":"Switzerland","arcs":[[-165,851,-163,852,853,854]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Chile"},"id":"Chile","arcs":[[[855]],[[856]],[[857]],[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[864]],[[865]],[[866]],[[867]],[[868]],[[869]],[[870]],[[871]],[[872]],[[873]],[[874]],[[875]],[[876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[-40,891,-37,892]],[[893]],[[894]],[[895]],[[896]],[[897]],[[898]],[[899]],[[900]],[[901]],[[902]],[[903]],[[904]],[[905]],[[906]],[[907]],[[908]],[[909]],[[910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917]],[[918]],[[919]],[[920]],[[921]],[[922]],[[923]],[[924]],[[925]],[[926]],[[927]],[[928]],[[929]],[[930]],[[931]],[[932]],[[933]],[[934]],[[935]],[[936]],[[937]],[[938]],[[939]],[[940]],[[941]],[[942]],[[943]],[[944]],[[945]],[[946]],[[947]],[[948]],[[949]],[[950]],[[951]],[[952]],[[953]],[[954]],[[955]],[[956]],[[957]],[[958]],[[959]],[[960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]],[[979]],[[980]],[[981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[-50,1016,1017,-283]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Ivory Coast"},"id":"Côte d'Ivoire","arcs":[[[1018,1019]],[[-194,1020,1021,1022,1023,1024]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Cameroon"},"id":"Cameroon","arcs":[[-350,1025,1026,1027,1028,1029,1030]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Cyprus No Mans Land"},"id":"Cyprus U.N. Buffer Zone","arcs":[[[1031,1032,1033,1034]],[[1035,1036,1037,1038]],[[1039,1040,1041,1042]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Democratic Republic of the Congo"},"id":"Dem. Rep. Congo","arcs":[[[1043]],[[1044,1045,1046,-177,1047,1048,-11,1049,-12,1050,-348]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Congo"},"id":"Congo","arcs":[[-1051,-14,1051,1052,-1026,-349]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Colombia"},"id":"Colombia","arcs":[[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060,-333,1061,1062,1063,1064,1065]],[[1066]],[[1067]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Union of the Comoros"},"id":"Comoros","arcs":[[[1068]],[[1069]],[[1070]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Cape Verde"},"id":"Cape Verde","arcs":[[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1077]],[[1078]],[[1079]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Costa Rica"},"id":"Costa Rica","arcs":[[[1080]],[[1081]],[[1082]],[[1083,1084,1085,1086]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Cuba"},"id":"Cuba","arcs":[[[1087]],[[1088]],[[1089]],[[1090]],[[1091]],[[1092]],[[1093]],[[1094]],[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Turkish Republic of Northern Cyprus"},"id":"N. Cyprus","arcs":[[[1128,-1037]],[[-1035,1129,-1043,1130]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Cyprus"},"id":"Cyprus","arcs":[[[1131,1132]],[[1133]],[[1134,1135,-1033]],[[1136,1137,1138,1139,-1039,1140,-1041]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Czech Republic"},"id":"Czech Rep.","arcs":[[1141,1142,-167,1143]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Federal Republic of Germany"},"id":"Germany","arcs":[[[1144]],[[-1146]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154,1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163,1164,-1144,-166,-855,1165,1166,-179,1167,1168,1169]],[[1170]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Djibouti"},"id":"Djibouti","arcs":[[1171,1172,1173,1174]]},{"type":"Polygon","properties":{"FORMAL_EN":"Commonwealth of Dominica"},"id":"Dominica","arcs":[[1175]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Kingdom of Denmark"},"id":"Denmark","arcs":[[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1184]],[[1185]],[[1186]],[[1187]],[[1188]],[[1189]],[[-1170,1190]],[[1191]],[[1192]],[[1193]],[[1194]],[[1195]],[[1196]],[[1197]],[[1198]],[[1199]],[[1200]],[[1201]],[[1202]],[[1203]],[[1204]],[[1205]],[[1206]],[[1207]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214]],[[1215]],[[1216]],[[1217]],[[1218]],[[1219]],[[1220]],[[1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[1227]],[[1228]],[[1229]],[[1230]],[[1231]],[[1232]],[[1233]],[[1234]],[[1235]],[[1236]],[[1237]],[[1238]],[[1239]],[[1240]],[[1241]],[[1242]],[[1243]],[[1244]],[[1245]],[[1246]],[[1247]],[[1248]],[[1249]],[[1250]],[[1251]],[[1252]],[[1253]],[[1254]],[[1255]],[[1256]],[[1257]],[[1258]],[[1259]],[[1260]],[[1261]],[[1262]],[[1263]],[[1264]],[[1265]],[[1266]],[[1267]],[[-1269]],[[1269]],[[1270]],[[1271]],[[1272]],[[1273]],[[1274]],[[1275]],[[1276]],[[1277]],[[1278]],[[1279]],[[1280]],[[1281]],[[1282]],[[1283]],[[1284]],[[1285]],[[1286]],[[1287]],[[1288]],[[1289]],[[1290]],[[1291]],[[1292]],[[1293]],[[1294]],[[1295]],[[1296]],[[1297]],[[1298]],[[1299]],[[1300]],[[1301]],[[1302]],[[1303]],[[1304]],[[1305]],[[1306]],[[1307]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312]],[[1313]],[[1314]],[[1315]],[[1316]],[[1317]],[[1318]],[[1319]],[[1320]],[[1321]],[[1322]],[[1323]],[[1324]],[[1325]],[[1326]],[[1327]],[[1328]],[[1329]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Dominican Republic"},"id":"Dominican Rep.","arcs":[[[1330]],[[1331]],[[1332,1333]]]},{"type":"Polygon","properties":{"FORMAL_EN":"People's Democratic Republic of Algeria"},"id":"Algeria","arcs":[[1334,1335,1336,1337,1338,1339,1340,1341]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Ecuador"},"id":"Ecuador","arcs":[[[1342]],[[1343]],[[1344]],[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]],[[1351]],[[1352]],[[1353]],[[1354,1355,-1063]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Arab Republic of Egypt"},"id":"Egypt","arcs":[[[1356]],[[1357]],[[1358]],[[1359]],[[1360]],[[1361]],[[1362]],[[1363,1364,1365,1366,1367]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"State of Eritrea"},"id":"Eritrea","arcs":[[[1368]],[[1369]],[[-1174,1370,1371,1372]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Kingdom of Spain"},"id":"Spain","arcs":[[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379]],[[1380]],[[1381,1382]],[[1383,1384]],[[1385]],[[1386]],[[1387]],[[1388]],[[1389]],[[1390]],[[1391,-20,1392,1393,1394,1395,1396,1397]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Estonia"},"id":"Estonia","arcs":[[[1398]],[[1399]],[[1400]],[[1401]],[[1402]],[[1403]],[[1404]],[[1405,1406,1407]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Federal Democratic Republic of Ethiopia"},"id":"Ethiopia","arcs":[[-1173,1408,1409,1410,1411,1412,-1371]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Finland"},"id":"Finland","arcs":[[[1413]],[[1414]],[[1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[1428]],[[1429]],[[1430]],[[1431]],[[1432]],[[1433]],[[1434]],[[1435]],[[1436]],[[1437]],[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1443]],[[1444]],[[1445]],[[1446]],[[1447]],[[1448]],[[1449]],[[1450]],[[1451]],[[1452]],[[1453]],[[1454]],[[1455]],[[1456]],[[1457]],[[1458]],[[1459]],[[1460]],[[1461]],[[1462]],[[1463]],[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469,1470,1471,1472]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Fiji"},"id":"Fiji","arcs":[[[1473]],[[1474]],[[1475]],[[1476]],[[1477]],[[1478]],[[1479]],[[1480]],[[1481]],[[1482]],[[1483]],[[1484]],[[1485]],[[1486]],[[1487]],[[1488]],[[1489]],[[1490]],[[1491]],[[1492]],[[1493]],[[1494]],[[1495]],[[1496]],[[1497]],[[1498]],[[1499]],[[1500]],[[1501]],[[1502]],[[1503]],[[1504]],[[1505]],[[1506]],[[1507]],[[1508]],[[1509]],[[1510]],[[1511]],[[1512]],[[1513]],[[1514]],[[1515]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"French Republic"},"id":"France","arcs":[[[1516]],[[1517]],[[1518]],[[1519]],[[1520]],[[1521]],[[1522]],[[1523]],[[1524]],[[1525]],[[1526]],[[1527]],[[1528]],[[1529]],[[1530]],[[1531]],[[1532]],[[1533]],[[1534]],[[1535]],[[1536]],[[1537]],[[1538]],[[1539]],[[1540]],[[1541]],[[1542]],[[1543]],[[-1545]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557]],[[1558]],[[1559]],[[1560]],[[1561]],[[-1563]],[[1563]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1577]],[[1578]],[[1579]],[[1580]],[[1581]],[[1582]],[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[1590]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[-328,1615,1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624,1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636,-1166,-854,1637,1638,1639,1640,-1393,-21,-1392,1641,-181],[-1391]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Federated States of Micronesia"},"id":"Micronesia","arcs":[[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Gabonese Republic"},"id":"Gabon","arcs":[[[1655]],[[-1053,1656,1657,-1027]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"United Kingdom of Great Britain and Northern Ireland"},"id":"United Kingdom","arcs":[[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]],[[1714]],[[1715]],[[1716,-1139]],[[-1034,-1136,1717,-1133,1718,-1137,-1040,-1130],[-1134]],[[-1395,1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1732,1733]],[[1734]],[[1735]],[[1736]],[[1737]],[[1738]],[[1739]],[[1740]],[[1741]],[[1742]],[[1743]],[[1744]],[[1745]],[[1746]],[[1747]],[[1748]],[[1749]],[[1750]],[[1751]],[[1752]],[[1753]],[[1754]],[[1755]],[[1756]],[[1757]],[[1758]],[[1759]],[[1760]],[[1761]],[[1762]],[[1763]],[[1764]],[[1765]],[[1766]],[[1767]],[[1768]],[[1769]],[[1770]],[[1771]],[[1772]],[[1773]],[[1774]],[[1775]],[[1776]],[[1777]],[[1778]],[[1779]],[[1780]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Georgia"},"id":"Georgia","arcs":[[-175,-57,1781,1782,1783]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Ghana"},"id":"Ghana","arcs":[[1784,1785,-1019,1786,-1021,-193]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Guinea"},"id":"Guinea","arcs":[[1787,-1024,1788,1789,1790,1791,1792]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of the Gambia"},"id":"Gambia","arcs":[[1793,1794]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Guinea-Bissau"},"id":"Guinea-Bissau","arcs":[[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807,1808,-1792]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Equatorial Guinea"},"id":"Eq. Guinea","arcs":[[[1809]],[[-1658,1810,-1028]],[[1811]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Hellenic Republic"},"id":"Greece","arcs":[[[1812]],[[1813]],[[1814]],[[1815]],[[1816]],[[1817]],[[1818]],[[1819]],[[1820]],[[1821]],[[1822]],[[1823]],[[1824]],[[1825]],[[1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1839]],[[1840]],[[1841]],[[1842]],[[1843]],[[1844]],[[1845]],[[1846]],[[1847]],[[1848]],[[1849]],[[1850]],[[1851]],[[1852]],[[1853]],[[1854]],[[1855]],[[1856]],[[1857]],[[1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]],[[1881]],[[1882,1883,-17,1884,-222]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Grenada"},"id":"Grenada","arcs":[[[1885]],[[1886]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Guatemala"},"id":"Guatemala","arcs":[[-280,1887,1888,1889,1890,1891]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Co-operative Republic of Guyana"},"id":"Guyana","arcs":[[[1892]],[[1893,-335,1894,1895]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Honduras"},"id":"Honduras","arcs":[[[1896]],[[1897]],[[1898,1899,1900,-1889,1901]],[[1902]],[[1903]],[[1904]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Croatia"},"id":"Croatia","arcs":[[[1905]],[[1906]],[[1907]],[[-264,1908,1909]],[[1910]],[[1911]],[[1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1924]],[[1925]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930,1931,-266,1932,1933]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Haiti"},"id":"Haiti","arcs":[[[1934]],[[1935]],[[1936]],[[-1333,1937]],[[1938]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Hungary"},"id":"Hungary","arcs":[[1939,1940,1941,-1931,1942,-160,1943]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Indonesia"},"id":"Indonesia","arcs":[[[1944]],[[1945]],[[1946]],[[1947]],[[1948]],[[1949,1950,1951,1952]],[[1953]],[[1954]],[[1955]],[[1956]],[[1957]],[[1958]],[[1959]],[[1960]],[[1961]],[[1962]],[[1963]],[[1964]],[[1965]],[[1966]],[[1967]],[[1968]],[[1969]],[[1970]],[[1971]],[[1972]],[[1973]],[[1974]],[[1975]],[[1976]],[[1977]],[[1978]],[[1979]],[[1980]],[[1981]],[[1982]],[[1983]],[[1984]],[[1985]],[[1986]],[[1987]],[[1988]],[[1989]],[[1990]],[[1991]],[[1992]],[[1993]],[[1994]],[[1995]],[[1996]],[[1997]],[[1998]],[[1999]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2007]],[[2008]],[[2009]],[[2010]],[[2011]],[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2017]],[[2018]],[[2019]],[[2020]],[[2021]],[[2022]],[[2023]],[[2024]],[[2025]],[[2026]],[[2027]],[[2028]],[[2029]],[[2030]],[[2031]],[[2032]],[[2033]],[[2034]],[[2035]],[[2036]],[[2037]],[[2038]],[[2039]],[[2040]],[[2041]],[[2042]],[[2043]],[[2044]],[[2045]],[[2046]],[[2047]],[[2048]],[[2049]],[[2050]],[[2051]],[[2052]],[[2053]],[[2054]],[[2055]],[[2056]],[[2057]],[[2058]],[[2059]],[[2060]],[[2061]],[[2062]],[[2063]],[[2064]],[[2065]],[[2066]],[[2067]],[[2068]],[[2069]],[[2070]],[[2071]],[[2072]],[[2073]],[[2074]],[[2075]],[[2076]],[[2077]],[[2078]],[[2079]],[[2080]],[[2081]],[[2082]],[[2083]],[[2084]],[[2085]],[[2086]],[[2087]],[[2088]],[[2089]],[[2090]],[[2091]],[[2092]],[[2093]],[[2094]],[[2095]],[[2096]],[[2097]],[[2098]],[[2099]],[[2100]],[[2101]],[[2102]],[[2103]],[[2104,2105]],[[2106]],[[2107]],[[2108]],[[2109]],[[2110]],[[2111]],[[2112]],[[2113]],[[2114]],[[2115]],[[2116]],[[2117]],[[2118]],[[2119]],[[2120]],[[2121]],[[2122]],[[2123]],[[2124]],[[2125]],[[2126]],[[2127]],[[2128]],[[2129]],[[2130]],[[2131]],[[2132]],[[2133]],[[2134]],[[2135]],[[2136]],[[2137]],[[2138]],[[2139]],[[2140]],[[2141]],[[2142]],[[2143]],[[2144]],[[2145]],[[2146]],[[2147]],[[2148]],[[2149]],[[2150]],[[2151]],[[2152]],[[2153]],[[2154]],[[2155]],[[2156]],[[2157]],[[2158]],[[2159]],[[2160]],[[2161]],[[2162]],[[2163]],[[2164]],[[2165]],[[2166]],[[2167]],[[2168]],[[2169]],[[2170]],[[2171]],[[2172]],[[2173]],[[2174]],[[2175]],[[2176]],[[2177]],[[2178]],[[2179]],[[2180]],[[2181]],[[2182]],[[2183]],[[2184]],[[2185]],[[2186]],[[2187]],[[2188]],[[2189]],[[2190]],[[2191]],[[2192]],[[2193]],[[2194]],[[2195,2196]],[[2197]],[[2198,2199]],[[2200]],[[2201]],[[2202]],[[2203]],[[2204]],[[2205]],[[2206]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of India"},"id":"India","arcs":[[[2207]],[[2208]],[[2209]],[[2210]],[[2211]],[[2212]],[[2213]],[[2214]],[[2215]],[[2216]],[[2217]],[[2218]],[[2219]],[[2220]],[[2221]],[[2222]],[[2223]],[[2224]],[[2225]],[[2226]],[[2227]],[[2228]],[[2229]],[[2230]],[[2231]],[[2232,-841,-341,-840,2233,-219,2234,2235,2236,-843]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Ireland"},"id":"Ireland","arcs":[[[2237]],[[2238]],[[2239]],[[2240]],[[2241]],[[2242]],[[-1733,2243]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Islamic Republic of Iran"},"id":"Iran","arcs":[[[2244]],[[2245]],[[2246]],[[2247]],[[2248]],[[2249]],[[2250]],[[2251]],[[2252]],[[2253]],[[2254]],[[-54,-174,2255,2256,-3,2257,2258,2259,2260,-168]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Iraq"},"id":"Iraq","arcs":[[-2260,2261,2262,2263,2264,2265,2266]]},{"type":"Polygon","properties":{"FORMAL_EN":"State of Israel"},"id":"Israel","arcs":[[2267,2268,-1364,2269,2270,2271]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Iceland"},"id":"Iceland","arcs":[[[2272]],[[2273]],[[2274]],[[2275]],[[2276]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Italian Republic"},"id":"Italy","arcs":[[[2277]],[[2278]],[[2279]],[[2280]],[[2281]],[[2282]],[[2283]],[[2284]],[[2285]],[[2286]],[[2287]],[[2288]],[[2289]],[[2290]],[[2291]],[[2292]],[[2293]],[[2294]],[[2295]],[[2296]],[[2297]],[[2298]],[[2299]],[[2300]],[[2301]],[[2302]],[[2303,2304,-1638,-853,-162],[2305],[2306]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Jamaica"},"id":"Jamaica","arcs":[[2307]]},{"type":"Polygon","properties":{"FORMAL_EN":"Hashemite Kingdom of Jordan"},"id":"Jordan","arcs":[[2308,2309,-2268,2310,-2265]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Japan"},"id":"Japan","arcs":[[[2311]],[[2312]],[[2313]],[[2314]],[[2315]],[[2316]],[[2317]],[[2318]],[[2319]],[[2320]],[[2321]],[[2322]],[[2323]],[[2324]],[[2325]],[[2326]],[[2327]],[[2328]],[[2329]],[[2330]],[[2331]],[[2332]],[[2333]],[[2334]],[[2335]],[[2336]],[[2337]],[[2338]],[[2339]],[[2340]],[[2341]],[[2342]],[[2343]],[[2344]],[[2345]],[[2346]],[[2347]],[[2348]],[[2349]],[[2350]],[[2351]],[[2352]],[[2353]],[[2354]],[[2355]],[[2356]],[[2357]],[[2358]],[[2359]],[[2360]],[[2361]],[[2362]],[[2363]],[[2364]],[[2365]],[[2366]],[[2367]],[[2368]],[[2369]],[[2370]],[[2371]],[[2372]],[[2373]],[[2374]],[[2375]],[[2376]],[[2377]],[[2378]],[[2379]],[[2380]],[[2381]],[[2382]],[[2383]],[[2384]],[[2385]],[[2386]],[[2387]],[[2388]],[[2389]],[[2390]],[[2391]],[[2392]],[[2393]],[[2394]],[[2395]],[[2396]],[[2397]],[[2398]],[[2399]],[[2400]],[[2401]],[[2402]],[[2403]],[[2404]],[[2405]],[[2406]]]},{"type":"Polygon","properties":{"FORMAL_EN":null},"id":"Siachen Glacier","arcs":[[-2237,2407,-844]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Kazakhstan"},"id":"Kazakhstan","arcs":[[[2408]],[[2409]],[[2410]],[[2411]],[[2412]],[[-848,2413,2414,2415,2416,2417]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Kenya"},"id":"Kenya","arcs":[[[2418]],[[-1411,2419,2420,2421,2422,2423]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Kyrgyz Republic"},"id":"Kyrgyzstan","arcs":[[-847,2424,2425,-2414],[2426],[2427],[2428]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Kingdom of Cambodia"},"id":"Cambodia","arcs":[[[2429]],[[2430]],[[2431]],[[2432]],[[2433]],[[2434,2435,2436,2437]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Kiribati"},"id":"Kiribati","arcs":[[[2438]],[[2439]],[[2440]],[[2441]],[[2442]],[[2443]],[[2444]],[[2445]],[[2446]],[[2447]],[[2448]],[[2449]],[[2450]],[[2451]],[[2452]],[[2453]],[[2454]],[[2455]],[[2456]],[[2457]],[[2458]],[[2459]],[[2460]],[[2461]],[[2462]],[[2463]],[[2464]],[[2465]],[[2466]],[[2467]],[[2468]],[[2469]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Federation of Saint Kitts and Nevis"},"id":"St. Kitts and Nevis","arcs":[[[2470]],[[2471]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Korea"},"id":"Korea","arcs":[[[2472]],[[2473]],[[2474]],[[2475]],[[2476]],[[2477]],[[2478]],[[2479]],[[2480]],[[2481]],[[2482]],[[2483]],[[2484]],[[2485]],[[2486]],[[2487]],[[2488]],[[2489]],[[2490]],[[2491]],[[2492]],[[2493]],[[2494]],[[2495]],[[2496]],[[2497]],[[2498]],[[2499]],[[2500]],[[2501]],[[2502]],[[2503]],[[2504]],[[2505]],[[2506]],[[2507]],[[2508]],[[2509]],[[2510]],[[2511]],[[2512]],[[2513]],[[2514]],[[2515]],[[2516]],[[2517]],[[2518]],[[2519]],[[2520]],[[2521]],[[2522]],[[2523,2524]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Kosovo"},"id":"Kosovo","arcs":[[2525,-15,2526,2527]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"State of Kuwait"},"id":"Kuwait","arcs":[[[2528]],[[2529]],[[2530]],[[2531,-2263,2532]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Lao People's Democratic Republic"},"id":"Lao PDR","arcs":[[2533,-2437,2534,2535,-838]]},{"type":"Polygon","properties":{"FORMAL_EN":"Lebanese Republic"},"id":"Lebanon","arcs":[[-2271,2536,2537]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Liberia"},"id":"Liberia","arcs":[[-1023,2538,2539,-1789]]},{"type":"Polygon","properties":{"FORMAL_EN":"Libya"},"id":"Libya","arcs":[[-1367,2540,2541,2542,-1336,2543,2544]]},{"type":"Polygon","properties":{"FORMAL_EN":"Saint Lucia"},"id":"Saint Lucia","arcs":[[2545]]},{"type":"Polygon","properties":{"FORMAL_EN":"Principality of Liechtenstein"},"id":"Liechtenstein","arcs":[[-852,-164]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Democratic Socialist Republic of Sri Lanka"},"id":"Sri Lanka","arcs":[[[2546]],[[2547]],[[2548]],[[2549]],[[2550]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Kingdom of Lesotho"},"id":"Lesotho","arcs":[[2551]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Lithuania"},"id":"Lithuania","arcs":[[[2552,2553]],[[-270,2554,2555,2556,2557]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Grand Duchy of Luxembourg"},"id":"Luxembourg","arcs":[[-1167,-1637,-180]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Latvia"},"id":"Latvia","arcs":[[2558,-271,-2558,2559,-1407]]},{"type":"Polygon","properties":{"FORMAL_EN":"Kingdom of Morocco"},"id":"Morocco","arcs":[[-1384,2560,-1382,2561,-1341,2562,2563]]},{"type":"Polygon","properties":{"FORMAL_EN":"Principality of Monaco"},"id":"Monaco","arcs":[[2564,-1640]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Moldova"},"id":"Moldova","arcs":[[2565,2566]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Madagascar"},"id":"Madagascar","arcs":[[[2567]],[[2568]],[[2569]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Maldives"},"id":"Maldives","arcs":[[[2570]],[[2571]],[[2572]],[[2573]],[[2574]],[[2575]],[[2576]],[[2577]],[[2578]],[[2579]],[[2580]],[[2581]],[[2582]],[[2583]],[[2584]],[[2585]],[[2586]],[[2587]],[[2588]],[[2589]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"United Mexican States"},"id":"Mexico","arcs":[[[2590]],[[2591]],[[2592]],[[2593]],[[2594]],[[2595]],[[2596]],[[2597]],[[2598]],[[2599]],[[2600]],[[2601]],[[2602]],[[2603]],[[2604]],[[2605]],[[2606]],[[2607]],[[2608]],[[2609]],[[2610]],[[2611]],[[2612]],[[2613]],[[2614]],[[2615]],[[2616]],[[2617]],[[2618]],[[2619]],[[2620]],[[2621]],[[2622]],[[2623]],[[2624]],[[2625]],[[2626]],[[2627]],[[2628]],[[2629]],[[2630]],[[2631]],[[2632]],[[2633]],[[2634]],[[2635,-281,-1892,2636,2637]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of the Marshall Islands"},"id":"Marshall Is.","arcs":[[[2638]],[[2639]],[[2640]],[[2641]],[[2642]],[[2643]],[[2644]],[[2645]],[[2646]],[[2647]],[[2648]],[[2649]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Former Yugoslav Republic of Macedonia"},"id":"Macedonia","arcs":[[-223,-1885,-16,-2526,2650]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Mali"},"id":"Mali","arcs":[[2651,-195,-1025,-1788,2652,2653,-1338]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Malta"},"id":"Malta","arcs":[[[2654]],[[2655]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of the Union of Myanmar"},"id":"Myanmar","arcs":[[[2656]],[[2657]],[[2658]],[[2659]],[[2660]],[[2661]],[[2662]],[[2663]],[[2664]],[[2665]],[[2666]],[[2667]],[[2668]],[[2669]],[[2670]],[[2671]],[[2672]],[[2673]],[[2674]],[[2675]],[[2676]],[[2677]],[[2678]],[[2679]],[[2680]],[[2681]],[[2682]],[[2683]],[[2684]],[[2685]],[[2686]],[[2687]],[[2688]],[[2689]],[[2690]],[[2691]],[[-2536,2692,2693,-217,-2234,-839]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Montenegro"},"id":"Montenegro","arcs":[[2694,-2527,-19,2695,-1909,-263]]},{"type":"Polygon","properties":{"FORMAL_EN":"Mongolia"},"id":"Mongolia","arcs":[[-850,2696]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Mozambique"},"id":"Mozambique","arcs":[[[2697]],[[2698]],[[2699]],[[2700,2701,2702,2703,2704,2705,2706,2707],[2708],[2709]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Islamic Republic of Mauritania"},"id":"Mauritania","arcs":[[[2710]],[[2711]],[[2712]],[[2713]],[[2714,2715,2716,-1339,-2654]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Mauritius"},"id":"Mauritius","arcs":[[[2717]],[[2718]],[[2719]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Malawi"},"id":"Malawi","arcs":[[[-2710]],[[-2709]],[[-2706,2720,2721]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Malaysia"},"id":"Malaysia","arcs":[[[2722]],[[2723]],[[2724]],[[2725]],[[-2196,2726]],[[2727]],[[2728]],[[2729]],[[2730]],[[2731]],[[2732]],[[2733]],[[2734,2735]],[[2736]],[[-2200,2737,-340,2738,-337,2739]],[[2740]],[[2741]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Namibia"},"id":"Namibia","arcs":[[2742,-345,2743,2744,-9]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Niger"},"id":"Niger","arcs":[[2745,2746,-190,-191,-2652,-1337,-2543]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Federal Republic of Nigeria"},"id":"Nigeria","arcs":[[[2747]],[[2748]],[[2749,-1030,2750,-186,-2747]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Nicaragua"},"id":"Nicaragua","arcs":[[[2751]],[[2752]],[[2753,-1087,2754,-1899]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Kingdom of the Netherlands"},"id":"Netherlands","arcs":[[[2755]],[[2756]],[[2757]],[[2758]],[[2759,-1625]],[[-183,2760]],[[2761]],[[2762]],[[2763]],[[2764]],[[-1168,-185,2765]],[[2766]],[[2767]],[[2768]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Kingdom of Norway"},"id":"Norway","arcs":[[[2769]],[[2770]],[[2771]],[[2772]],[[2773]],[[2774]],[[2775]],[[2776]],[[2777]],[[2778]],[[2779]],[[2780]],[[2781]],[[2782]],[[2783]],[[2784]],[[2785]],[[2786]],[[2787]],[[2788]],[[2789]],[[2790]],[[2791]],[[2792]],[[2793]],[[2794]],[[2795]],[[2796]],[[2797]],[[2798]],[[2799]],[[2800]],[[2801]],[[2802]],[[2803]],[[2804]],[[2805]],[[2806]],[[2807]],[[2808]],[[2809]],[[2810]],[[2811]],[[2812]],[[2813]],[[2814]],[[2815]],[[2816]],[[2817]],[[2818]],[[2819]],[[2820]],[[2821]],[[2822]],[[2823]],[[2824]],[[2825]],[[2826]],[[2827]],[[2828]],[[2829]],[[2830]],[[2831]],[[2832]],[[2833]],[[2834]],[[2835]],[[2836]],[[2837]],[[2838]],[[2839]],[[2840]],[[2841]],[[2842]],[[2843]],[[2844]],[[2845]],[[2846]],[[2847]],[[2848]],[[2849]],[[2850]],[[2851]],[[2852]],[[2853]],[[2854]],[[2855]],[[2856]],[[2857]],[[2858]],[[2859]],[[2860]],[[2861]],[[2862]],[[2863]],[[2864,-1473,2865,2866]],[[2867]],[[2868]],[[2869]],[[2870]],[[2871]],[[2872]],[[2873]],[[2874]],[[2875]],[[2876]],[[2877]],[[2878]],[[2879]],[[2880]],[[2881]],[[2882]],[[2883]],[[2884]],[[2885]],[[2886]],[[2887]],[[2888]],[[2889]],[[2890]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Nepal"},"id":"Nepal","arcs":[[-2233,-842]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Nauru"},"id":"Nauru","arcs":[[2891]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":null},"id":"New Zealand","arcs":[[[2892]],[[2893]],[[2894]],[[2895]],[[2896]],[[2897]],[[2898]],[[2899]],[[2900]],[[2901]],[[2902]],[[2903]],[[2904]],[[2905]],[[2906]],[[2907]],[[2908]],[[2909]],[[2910]],[[2911]],[[2912]],[[2913]],[[2914]],[[2915]],[[2916]],[[2917]],[[2918]],[[2919]],[[2920]],[[2921]],[[2922]],[[2923]],[[2924]],[[2925]],[[2926]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Sultanate of Oman"},"id":"Oman","arcs":[[[2927]],[[2928]],[[2929]],[[2930,2931,-32,2932]],[[-36],[-30]],[[-35,2933]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Islamic Republic of Pakistan"},"id":"Pakistan","arcs":[[[2934]],[[-2408,-2236,2935,-2258,-2,-845]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Panama"},"id":"Panama","arcs":[[[2936]],[[2937]],[[2938]],[[2939]],[[2940]],[[2941]],[[2942]],[[2943]],[[2944]],[[2945]],[[2946]],[[2947]],[[2948]],[[2949]],[[-1065,2950,-1085,2951]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Peru"},"id":"Peru","arcs":[[[2952]],[[2953]],[[2954]],[[-332,-284,-1018,2955,-1355,-1062]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":null},"id":"Spratly Is.","arcs":[[[2956]],[[2957]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of the Philippines"},"id":"Philippines","arcs":[[[2958]],[[2959]],[[2960]],[[2961]],[[2962]],[[2963]],[[2964]],[[2965]],[[2966]],[[2967]],[[2968]],[[2969]],[[2970]],[[2971]],[[2972]],[[2973]],[[2974]],[[2975]],[[2976]],[[2977]],[[2978]],[[2979]],[[2980]],[[2981]],[[2982]],[[2983]],[[2984]],[[2985]],[[2986]],[[2987]],[[2988]],[[2989]],[[2990]],[[2991]],[[2992]],[[2993]],[[2994]],[[2995]],[[2996]],[[2997]],[[2998]],[[2999]],[[3000]],[[3001]],[[3002]],[[3003]],[[3004]],[[3005]],[[3006]],[[3007]],[[3008]],[[3009]],[[3010]],[[3011]],[[3012]],[[3013]],[[3014]],[[3015]],[[3016]],[[3017]],[[3018]],[[3019]],[[3020]],[[3021]],[[3022]],[[3023]],[[3024]],[[3025]],[[3026]],[[3027]],[[3028]],[[3029]],[[3030]],[[3031]],[[3032]],[[3033]],[[3034]],[[3035]],[[3036]],[[3037]],[[3038]],[[3039]],[[3040]],[[3041]],[[3042]],[[3043]],[[3044]],[[3045]],[[3046]],[[3047]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Palau"},"id":"Palau","arcs":[[[3048]],[[3049]],[[3050]],[[3051]],[[3052]],[[3053]],[[3054]],[[3055]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Independent State of Papua New Guinea"},"id":"Papua New Guinea","arcs":[[[3056]],[[3057]],[[3058]],[[3059]],[[3060]],[[3061]],[[3062]],[[3063]],[[3064]],[[3065]],[[3066]],[[3067]],[[3068]],[[3069]],[[3070]],[[3071]],[[3072]],[[3073]],[[3074]],[[3075]],[[3076]],[[3077]],[[3078]],[[3079]],[[3080]],[[3081]],[[3082]],[[3083]],[[3084]],[[3085]],[[3086]],[[3087]],[[3088]],[[3089]],[[3090]],[[3091]],[[3092]],[[3093]],[[3094]],[[3095]],[[3096]],[[3097]],[[3098]],[[3099]],[[3100]],[[3101]],[[-2105,3102]],[[3103]],[[3104]],[[3105]],[[3106]],[[3107]],[[3108]],[[3109]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Poland"},"id":"Poland","arcs":[[3110,-2555,-269,3111,3112,-1142,-1165,3113,-1155,3114]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Democratic People's Republic of Korea"},"id":"Dem. Rep. Korea","arcs":[[[3115]],[[3116]],[[3117]],[[3118]],[[3119]],[[3120]],[[3121]],[[3122]],[[3123,3124,-2524,3125,-835]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Portuguese Republic"},"id":"Portugal","arcs":[[[3126]],[[3127]],[[3128]],[[3129]],[[3130]],[[3131]],[[3132]],[[3133]],[[3134]],[[3135]],[[3136]],[[3137]],[[3138]],[[3139]],[[3140,-1397]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Paraguay"},"id":"Paraguay","arcs":[[-331,-46,-282]]},{"type":"Polygon","properties":{"FORMAL_EN":"State of Qatar"},"id":"Qatar","arcs":[[3141,3142]]},{"type":"Polygon","properties":{"FORMAL_EN":"Romania"},"id":"Romania","arcs":[[3143,3144,-225,3145,-1941,3146,-2566]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Russian Federation"},"id":"Russia","arcs":[[[3147]],[[3148]],[[3149]],[[3150]],[[3151]],[[3152]],[[3153]],[[3154]],[[3155]],[[3156]],[[3157]],[[3158]],[[3159]],[[3160]],[[3161]],[[3162]],[[3163]],[[3164]],[[3165]],[[3166]],[[3167]],[[3168]],[[3169]],[[3170]],[[3171]],[[3172]],[[3173]],[[3174]],[[3175]],[[3176]],[[3177]],[[-3111,3178,-2553,3179,-2556]],[[3180]],[[3181]],[[3182]],[[3183]],[[3184]],[[3185]],[[3186]],[[3187]],[[3188]],[[3189]],[[3190]],[[3191]],[[3192]],[[3193]],[[3194]],[[3195]],[[3196]],[[3197]],[[3198]],[[3199]],[[3200]],[[3201]],[[3202]],[[3203]],[[3204]],[[3205]],[[3206]],[[3207]],[[3208]],[[3209]],[[3210]],[[3211]],[[3212]],[[3213]],[[3214]],[[3215]],[[3216]],[[3217]],[[3218]],[[3219]],[[3220]],[[3221]],[[3222]],[[3223]],[[3224]],[[3225]],[[3226]],[[3227]],[[3228]],[[3229]],[[3230]],[[3231]],[[3232]],[[3233]],[[3234]],[[3235]],[[3236]],[[3237]],[[3238]],[[3239]],[[3240]],[[3241]],[[3242]],[[3243]],[[3244]],[[3245]],[[3246]],[[3247]],[[3248]],[[3249]],[[3250]],[[3251]],[[3252]],[[3253]],[[3254]],[[3255]],[[3256]],[[3257]],[[3258]],[[3259]],[[3260]],[[3261]],[[3262]],[[3263]],[[3264]],[[3265]],[[3266]],[[3267]],[[3268]],[[3269]],[[3270]],[[3271]],[[3272]],[[3273]],[[3274]],[[3275]],[[3276]],[[3277]],[[3278]],[[3279]],[[3280]],[[3281]],[[3282]],[[3283]],[[3284]],[[3285]],[[3286]],[[3287]],[[3288]],[[3289]],[[3290]],[[3291]],[[3292]],[[3293]],[[3294]],[[3295]],[[3296]],[[3297]],[[3298]],[[3299]],[[3300]],[[3301]],[[3302]],[[3303]],[[3304]],[[3305]],[[3306]],[[-3124,-851,-2697,-849,-2418,3307,-172,-1784,3308,3309,-267,-2559,-1406,3310,-1470,-2865,3311]],[[3312]],[[3313]],[[3314]],[[3315]],[[3316]],[[3317]],[[3318]],[[3319]],[[3320]],[[3321]],[[3322]],[[3323]],[[3324]],[[3325]],[[3326]],[[3327]],[[3328]],[[3329]],[[3330]],[[3331]],[[3332]],[[3333]],[[3334]],[[3335]],[[3336]],[[3337]],[[3338]],[[3339]],[[3340]],[[3341]],[[3342]],[[3343]],[[3344]],[[3345]],[[3346]],[[3347]],[[3348]],[[3349]],[[3350]],[[3351]],[[3352]],[[3353]],[[3354]],[[3355]],[[3356]],[[3357]],[[3358]],[[3359]],[[3360]],[[3361]],[[3362]],[[3363]],[[3364]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Rwanda"},"id":"Rwanda","arcs":[[3365,-178,-1047,3366]]},{"type":"Polygon","properties":{"FORMAL_EN":"Sahrawi Arab Democratic Republic"},"id":"W. Sahara","arcs":[[-1340,-2717,3367,-2563]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Kingdom of Saudi Arabia"},"id":"Saudi Arabia","arcs":[[[3368]],[[3369]],[[3370]],[[3371]],[[3372]],[[3373]],[[3374]],[[3375]],[[3376]],[[3377]],[[-2532,3378,-3142,3379,-33,-2932,3380,3381,-2309,-2264]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of the Sudan"},"id":"Sudan","arcs":[[[3382]],[[3383,-1372,-1413,3384,-346,3385,-2541,-1366]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of South Sudan"},"id":"S. Sudan","arcs":[[-1412,-2424,3386,-1045,-347,-3385]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Senegal"},"id":"Senegal","arcs":[[-2653,-1793,-1809,3387,-1795,3388,-2715]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Singapore"},"id":"Singapore","arcs":[[3389]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":null},"id":"Solomon Is.","arcs":[[[3390]],[[3391]],[[3392]],[[3393]],[[3394]],[[3395]],[[3396]],[[3397]],[[3398]],[[3399]],[[3400]],[[3401]],[[3402]],[[3403]],[[3404]],[[3405]],[[3406]],[[3407]],[[3408]],[[3409]],[[3410]],[[3411]],[[3412]],[[3413]],[[3414]],[[3415]],[[3416]],[[3417]],[[3418]],[[3419]],[[3420]],[[3421]],[[3422]],[[3423]],[[3424]],[[3425]],[[3426]],[[3427]],[[3428]],[[3429]],[[3430]],[[3431]],[[3432]],[[3433]],[[3434]],[[3435]],[[3436]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Sierra Leone"},"id":"Sierra Leone","arcs":[[[3437]],[[-2540,3438,-1790]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of El Salvador"},"id":"El Salvador","arcs":[[[3439]],[[3440]],[[-1901,3441,-1890]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of San Marino"},"id":"San Marino","arcs":[[-2306]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Somaliland"},"id":"Somaliland","arcs":[[3442,-1409,-1172,3443]]},{"type":"Polygon","properties":{"FORMAL_EN":"Federal Republic of Somalia"},"id":"Somalia","arcs":[[-2420,-1410,-3443,3444]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Serbia"},"id":"Serbia","arcs":[[-3146,-224,-2651,-2528,-2695,-262,-1932,-1942]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Democratic Republic of São Tomé and Principe"},"id":"São Tomé and Principe","arcs":[[[3445]],[[3446]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Suriname"},"id":"Suriname","arcs":[[-1616,-327,-1894,3447]]},{"type":"Polygon","properties":{"FORMAL_EN":"Slovak Republic"},"id":"Slovakia","arcs":[[3448,-1944,-159,-1143,-3113]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Slovenia"},"id":"Slovenia","arcs":[[-1934,3449,-2304,-161,-1943]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Kingdom of Sweden"},"id":"Sweden","arcs":[[[3450]],[[3451]],[[3452]],[[3453]],[[3454]],[[3455]],[[3456]],[[3457]],[[3458]],[[3459]],[[3460]],[[3461]],[[3462]],[[3463]],[[3464]],[[3465]],[[3466]],[[3467]],[[3468]],[[3469]],[[3470]],[[3471]],[[3472]],[[3473]],[[3474]],[[3475]],[[3476]],[[3477]],[[3478]],[[3479]],[[3480]],[[3481]],[[3482]],[[3483]],[[3484]],[[3485]],[[3486]],[[3487]],[[3488]],[[3489]],[[3490,-2866,-1472]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Kingdom of Swaziland"},"id":"Swaziland","arcs":[[-2702,3491]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Seychelles"},"id":"Seychelles","arcs":[[[3492]],[[3493]],[[3494]],[[3495]],[[3496]],[[3497]],[[3498]],[[3499]],[[3500]],[[3501]],[[3502]],[[3503]],[[3504]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Syrian Arab Republic"},"id":"Syria","arcs":[[-2266,-2311,-2272,-2538,3505,3506]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Chad"},"id":"Chad","arcs":[[-3386,-351,-1031,-2750,-2746,-2542]]},{"type":"Polygon","properties":{"FORMAL_EN":"Togolese Republic"},"id":"Togo","arcs":[[-188,3507,-1785,-192]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Kingdom of Thailand"},"id":"Thailand","arcs":[[[3508]],[[3509]],[[3510]],[[3511]],[[3512]],[[3513]],[[3514]],[[3515]],[[3516]],[[3517]],[[3518]],[[3519]],[[3520]],[[3521]],[[3522]],[[3523]],[[3524]],[[3525]],[[-2535,-2436,3526,-2736,3527,-2693]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Tajikistan"},"id":"Tajikistan","arcs":[[[-2429]],[[3528]],[[-2425,-846,-6,3529]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Turkmenistan"},"id":"Turkmenistan","arcs":[[[3530]],[[3531]],[[-4,-2257,3532,-2416,3533]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Democratic Republic of Timor-Leste"},"id":"Timor-Leste","arcs":[[[3534,-1951]],[[-1953,3535]],[[3536]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Kingdom of Tonga"},"id":"Tonga","arcs":[[[3537]],[[3538]],[[3539]],[[3540]],[[3541]],[[3542]],[[3543]],[[3544]],[[3545]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Trinidad and Tobago"},"id":"Trinidad and Tobago","arcs":[[[3546]],[[3547]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Tunisia"},"id":"Tunisia","arcs":[[[3548]],[[3549]],[[3550]],[[-2544,-1335,3551]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Turkey"},"id":"Turkey","arcs":[[[3552]],[[3553]],[[3554]],[[3555]],[[3556,-1883,-221]],[[-1782,-56,-169,-2261,-2267,-3507,3557]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Tuvalu"},"id":"Tuvalu","arcs":[[[3558]],[[3559]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":null},"id":"Taiwan","arcs":[[[3560]],[[3561]],[[3562]],[[3563]],[[3564]],[[3565]],[[3566]],[[3567]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"United Republic of Tanzania"},"id":"Tanzania","arcs":[[[3568]],[[3569]],[[3570]],[[3571]],[[3572]],[[-2422,3573,-2707,-2722,3574,-1048,-176,-3366,3575]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Uganda"},"id":"Uganda","arcs":[[-3576,-3367,-1046,-3387,-2423]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Ukraine"},"id":"Ukraine","arcs":[[[3576]],[[3577]],[[3578]],[[3579,-3144,-2567,-3147,-1940,-3449,-3112,-268,-3310]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Oriental Republic of Uruguay"},"id":"Uruguay","arcs":[[3580,-48,-330]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"United States of America"},"id":"United States","arcs":[[[3581]],[[3582]],[[3583]],[[3584]],[[3585]],[[3586]],[[3587]],[[3588]],[[3589]],[[3590]],[[3591]],[[3592]],[[3593]],[[3594]],[[3595]],[[3596]],[[3597]],[[3598]],[[3599]],[[3600]],[[3601]],[[3602]],[[3603]],[[3604]],[[3605]],[[3606]],[[3607]],[[3608]],[[3609]],[[3610]],[[3611]],[[3612]],[[3613]],[[3614]],[[3615]],[[3616]],[[3617]],[[3618]],[[3619]],[[3620]],[[3621]],[[3622]],[[3623]],[[3624]],[[3625]],[[3626]],[[3627]],[[3628]],[[3629]],[[3630]],[[3631]],[[-3633]],[[3633]],[[3634]],[[3635]],[[3636]],[[3637]],[[3638]],[[3639]],[[3640]],[[3641]],[[3642]],[[3643]],[[3644]],[[3645]],[[3646]],[[3647]],[[-3649]],[[3649]],[[3650]],[[3651]],[[3652]],[[3653]],[[3654]],[[3655]],[[3656]],[[3657]],[[3658]],[[3659]],[[3660]],[[3661]],[[3662]],[[-3664]],[[3664]],[[3665]],[[3666]],[[3667]],[[3668]],[[3669]],[[3670]],[[3671]],[[3672]],[[3673]],[[3674]],[[3675]],[[3676]],[[3677]],[[3678]],[[3679]],[[3680]],[[3681]],[[3682]],[[3683]],[[3684]],[[3685]],[[3686]],[[3687]],[[3688]],[[3689]],[[3690]],[[3691]],[[3692]],[[3693]],[[3694]],[[3695]],[[3696]],[[3697]],[[3698]],[[3699]],[[3700]],[[3701]],[[3702]],[[-3704]],[[3704]],[[3705]],[[3706]],[[3707]],[[3708]],[[3709]],[[3710]],[[3711]],[[3712]],[[3713]],[[3714]],[[3715]],[[3716]],[[3717]],[[3718]],[[3719]],[[3720]],[[3721]],[[3722]],[[3723]],[[3724]],[[3725]],[[3726]],[[3727]],[[3728]],[[3729]],[[3730]],[[3731]],[[3732]],[[3733]],[[3734]],[[3735]],[[3736]],[[3737]],[[3738]],[[3739]],[[3740]],[[3741]],[[3742]],[[3743]],[[3744]],[[3745]],[[3746]],[[3747]],[[3748]],[[3749]],[[3750]],[[3751]],[[3752]],[[3753]],[[3754]],[[3755]],[[3756]],[[3757]],[[3758]],[[3759,-707]],[[-389,3760,-2638,3761,-705]],[[3762]],[[3763]],[[3764]],[[3765]],[[3766]],[[3767]],[[3768]],[[3769]],[[3770]],[[3771]],[[3772]],[[3773]],[[3774]],[[3775]],[[3776]],[[3777]],[[3778]],[[3779]],[[3780]],[[3781]],[[3782]],[[3783]],[[3784]],[[3785]],[[3786]],[[3787]],[[3788]],[[3789]],[[3790]],[[3791]],[[3792]],[[3793]],[[3794]],[[3795]],[[3796]],[[3797]],[[3798]],[[3799]],[[3800]],[[3801]],[[3802]],[[3803]],[[3804]],[[3805]],[[3806]],[[3807]],[[3808]],[[3809]],[[3810]],[[3811]],[[3812]],[[3813]],[[3814]],[[3815]],[[3816]],[[3817]],[[3818]],[[3819]],[[3820]],[[3821]],[[3822]],[[3823]],[[3824]],[[3825]],[[3826]],[[3827]],[[3828]],[[3829]],[[3830]],[[3831]],[[3832]],[[3833]],[[3834]],[[3835]],[[3836]],[[3837]],[[3838]],[[3839]],[[3840]],[[3841]],[[3842]],[[3843]],[[3844]],[[3845]],[[3846]],[[3847]],[[3848]],[[3849]],[[3850]],[[3851]],[[3852]],[[3853]],[[3854]],[[3855]],[[3856]],[[3857]],[[3858]],[[3859]],[[3860]],[[3861]],[[3862]],[[3863]],[[3864]],[[3865]],[[3866]],[[3867]],[[3868]],[[3869]],[[3870]],[[3871]],[[3872]],[[3873]],[[3874]],[[3875]],[[3876]],[[3877]],[[3878]],[[3879]],[[3880]],[[3881]],[[3882]],[[3883]],[[3884]],[[3885]],[[3886]],[[3887]],[[3888]],[[3889]],[[3890]],[[3891]],[[3892]],[[3893]],[[3894]],[[3895]],[[3896]],[[3897]],[[3898]],[[3899]],[[3900]],[[3901]],[[3902]],[[3903]],[[3904]],[[3905]],[[3906]],[[3907]],[[3908]],[[3909]],[[3910]],[[3911]],[[3912]],[[3913]],[[3914]],[[3915]],[[-3917]],[[3917]],[[3918]],[[3919]],[[3920]],[[3921]],[[3922]],[[3923]],[[3924]],[[3925]],[[3926]],[[3927]],[[3928]],[[3929]],[[-3931]],[[3931]],[[3932]],[[3933]],[[3934]],[[3935]],[[3936]],[[3937]],[[3938]],[[-709,3939]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Uzbekistan"},"id":"Uzbekistan","arcs":[[[-2428]],[[-2427]],[[-2426,-3530,-5,-3534,-2415],[-3529]]]},{"type":"Polygon","properties":{"FORMAL_EN":"State of the Vatican City"},"id":"Vatican","arcs":[[-2307]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Saint Vincent and the Grenadines"},"id":"St. Vin. and Gren.","arcs":[[[3940]],[[3941]],[[3942]],[[3943]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Bolivarian Republic of Venezuela"},"id":"Venezuela","arcs":[[[3944]],[[3945]],[[3946]],[[3947]],[[3948]],[[3949]],[[3950]],[[3951]],[[3952]],[[3953]],[[3954]],[[3955]],[[3956]],[[3957]],[[3958]],[[3959]],[[3960]],[[3961]],[[3962]],[[3963]],[[3964]],[[3965]],[[-1895,-334,-1061,3966]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Socialist Republic of Vietnam"},"id":"Vietnam","arcs":[[[3967]],[[3968]],[[3969]],[[3970]],[[3971]],[[3972]],[[3973]],[[3974]],[[3975]],[[3976]],[[3977]],[[3978]],[[3979]],[[3980]],[[3981]],[[3982]],[[3983]],[[3984]],[[3985]],[[3986]],[[3987]],[[3988]],[[3989]],[[3990]],[[3991,-2438,-2534,-837]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Vanuatu"},"id":"Vanuatu","arcs":[[[3992]],[[3993]],[[3994]],[[3995]],[[3996]],[[3997]],[[3998]],[[3999]],[[4000]],[[4001]],[[4002]],[[4003]],[[4004]],[[4005]],[[4006]],[[4007]],[[4008]],[[4009]],[[4010]],[[4011]],[[4012]],[[4013]],[[4014]],[[4015]],[[4016]],[[4017]],[[4018]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Independent State of Samoa"},"id":"Samoa","arcs":[[[4019]],[[4020]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of Yemen"},"id":"Yemen","arcs":[[[4021]],[[4022]],[[4023]],[[4024]],[[4025]],[[4026]],[[4027]],[[4028]],[[4029,-3381,-2931]]]},{"type":"MultiPolygon","properties":{"FORMAL_EN":"Republic of South Africa"},"id":"South Africa","arcs":[[[4030]],[[4031]],[[-2703,-3492,-2701,4032,-2744,-344,4033],[-2552]]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Zambia"},"id":"Zambia","arcs":[[-2721,-2705,4034,-2743,-8,-1049,-3575]]},{"type":"Polygon","properties":{"FORMAL_EN":"Republic of Zimbabwe"},"id":"Zimbabwe","arcs":[[-2704,-4034,-343,-4035]]}]}},"arcs":[[[7080,6757],[-3,-1],[-1,5],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-2,1],[0,-1],[0,-1],[0,-2],[1,-1],[2,-2],[1,-1],[0,-1],[0,-1],[1,-1]],[[7070,6742],[0,-1],[0,-1],[0,-2],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,-1],[-1,-1],[-2,-3],[-2,-2],[0,-1],[-2,1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-2,3],[-1,0],[-1,1],[-2,0],[-2,0],[-4,-1],[-1,0],[-1,1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-4,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,-1],[-1,-1],[-2,-3],[-1,-1],[-1,1],[-1,-1],[-1,0],[-3,-1],[-1,-2],[-1,-1],[1,-1],[0,-2],[-2,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-2],[1,-2],[0,-1],[-1,-1],[-1,0],[-1,2],[-1,2],[-1,1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,-5],[-1,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-2],[0,-1],[1,-2],[1,-1],[0,-4],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[1,0],[1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-2,-3],[-1,-2],[0,-2],[1,-2],[1,-3],[1,-2],[0,-1],[0,-1],[-1,-2],[-2,-3],[0,-2],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,0],[-3,-3],[-1,-2],[-1,-2],[0,-2],[-2,-5],[-1,-2],[-2,-3],[-1,-1],[0,-1],[1,-1],[0,-2],[0,-2],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[1,-1],[0,-2],[1,-2],[1,-2],[2,-2],[0,-2],[-1,-5],[0,-1],[0,-2],[1,-2],[0,-1],[-1,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-2],[-2,-1],[-4,0],[-4,-1],[-1,0],[-2,1],[-2,0],[-1,0],[-1,1],[-1,1],[-6,4],[-1,0],[-2,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-2],[1,-1],[0,-2],[0,-1],[1,-2],[0,-2],[0,-1],[1,-1],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[0,-3],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-5],[0,-1],[0,-1],[0,-2],[1,-1],[1,-1],[0,-1],[0,-1],[2,-3],[0,-2],[0,-3],[-5,-8],[0,-1],[-1,1],[-1,0],[-1,-4],[0,-1],[-1,0],[-3,-3],[-1,0],[-2,2],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[1,-8],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-5],[0,-1],[-2,-1],[-1,-3],[-1,-2],[0,-3],[1,-3],[0,-4],[0,-2],[0,-1],[0,-3],[0,-3],[0,-3],[0,-2],[0,-6],[1,-6],[0,-1],[-1,-2],[-1,-2],[-3,-10],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,1],[-1,4],[-1,1],[0,1],[0,3],[-1,1],[0,1],[-2,0],[-1,2],[-1,1],[-1,0],[0,-1],[-2,-1],[0,-1],[0,-1],[1,0],[2,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-3,3],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,-1],[-1,-3],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,-4],[-1,-2],[-1,-1],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-3],[0,-1],[1,-1],[1,0],[2,1],[1,-1],[0,-3],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-2,-3],[-2,-1],[-1,-1],[-2,0],[-1,-2],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[-2,-2],[-1,-2],[-1,-1],[0,-2],[-1,0],[-1,-1],[-1,-8],[0,-1],[-3,-6],[-1,-1],[-3,-1],[-1,-1],[0,-1],[-3,-22],[0,-3],[0,-3],[1,-2],[0,-1],[1,-1],[0,-2],[-1,-9],[0,-4],[0,-2],[-2,-8],[0,-2],[0,-1],[0,-1],[1,-2],[1,-2],[1,-2],[0,-1],[-1,-2],[-1,-2],[-2,-4],[-2,-1],[-2,-2],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-4,-3],[-1,1],[-5,1],[-4,0],[-5,1],[-1,0],[-7,-5],[-1,-1],[-1,-2],[-1,-5],[-1,0],[-3,3],[-5,2],[-6,2],[-4,0],[-1,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-3,-1],[-3,1],[-3,2],[-2,2],[-2,1],[-3,2],[-2,2],[-2,1],[-3,2],[-2,2],[-2,1],[-2,2],[-3,2],[-2,1],[-2,2],[-3,1],[-2,2],[-2,2],[-3,1],[-2,2],[-1,1]],[[6689,6242],[2,4],[2,5],[4,11],[3,6],[1,4],[3,8],[3,6],[3,8],[3,10],[3,6],[0,1],[0,1],[0,1],[0,5],[0,1],[1,2],[0,1],[0,2],[0,1],[-1,3],[0,2],[0,2],[-1,2],[0,3],[-1,1],[0,2],[1,3],[-1,1],[-1,3],[-1,1],[-1,1],[-4,1],[-5,1],[-5,2],[-4,1],[-3,1],[-1,1],[0,7],[-1,3],[0,2],[0,5],[0,6],[0,4],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,6],[0,6],[-1,7],[-1,10],[-1,8],[-1,7],[-1,7],[-1,7],[-1,6],[0,4],[0,6],[0,1],[1,4],[2,4],[1,4],[1,3],[1,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[1,0],[1,1],[-1,1],[0,1],[-1,0],[0,1],[-2,0],[-2,0],[-2,0],[-2,2],[-2,4],[0,5],[0,2],[1,4],[0,3],[-1,11],[0,6],[0,1],[0,3],[0,3],[1,2],[1,3],[2,1],[0,1],[0,1],[2,1],[3,0],[2,0],[-1,2],[-2,5],[0,2],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[1,2],[1,0],[1,1],[1,0],[0,1],[2,3],[0,1],[1,1],[0,-1],[0,1],[1,0],[0,2],[0,2],[0,2],[0,1],[1,1],[1,2],[0,1],[1,1],[0,2],[0,3],[0,2],[0,1],[0,2],[0,2],[1,2],[0,3],[0,1],[1,2],[0,1],[0,1],[0,1],[-1,3],[-1,0],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[1,1],[0,1],[0,4],[0,1],[0,1],[1,2],[0,2],[1,2],[0,1],[1,2],[0,1],[0,2],[-1,2],[0,1]],[[6701,6644],[1,0],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-4],[2,-2],[2,-2],[3,-1],[2,0],[3,2],[2,0],[1,0],[0,-1],[3,-6],[1,-1],[2,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-3],[0,-1],[0,-3],[1,0],[3,8],[1,2],[2,-4],[1,0],[1,-1],[1,0],[2,2],[0,1],[1,1],[0,1],[1,1],[1,2],[1,0],[2,4],[2,2],[2,0],[0,1],[1,0],[0,2],[0,2],[0,3],[0,1],[-1,1],[0,4],[0,1],[1,1],[2,1],[1,2],[0,1],[-1,1],[0,1],[-2,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[6,0],[2,1],[3,2],[0,1],[1,2],[0,1],[1,0],[3,1],[2,0],[2,3],[1,1],[1,0],[1,0],[2,-2],[0,1],[0,3],[0,1],[0,1],[1,1],[2,3],[1,1],[1,0],[1,0],[0,-1],[1,1],[0,3],[1,1],[0,1],[3,1],[1,2],[1,1],[2,7],[1,2],[0,3],[0,3],[0,1],[0,3],[-1,1],[0,2],[1,1],[0,3],[0,2],[3,11],[1,4],[1,2],[0,3],[-1,5],[0,3],[1,2],[1,1],[5,6],[2,1],[11,1],[1,0],[1,1],[1,3],[1,2],[0,1],[0,1],[0,2],[0,3],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,2],[0,1],[1,-1],[1,-2],[0,-1],[1,-1],[6,-5],[1,-3],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,1],[1,0],[1,-1],[0,-1],[1,1],[0,1],[1,0],[0,1]],[[6847,6766],[1,0],[0,1],[1,-1],[2,-1],[1,0],[1,1],[4,0],[2,2],[2,-1],[1,-2],[1,0],[0,-1],[1,-3],[0,-1],[2,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,2],[1,1],[1,0],[1,-3],[0,-1],[1,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1]],[[6882,6754],[0,-5],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[2,3],[0,1],[1,1],[0,1],[1,0],[1,-1],[1,0],[0,1],[0,3],[0,2],[0,1],[1,1],[1,-1],[1,0],[1,1],[0,1],[-1,1],[2,0],[1,1],[1,0],[0,2],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,0],[1,0],[1,0],[1,-2],[0,1],[0,1],[0,2],[0,1],[0,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[-1,1],[0,1],[2,0],[1,-1],[0,-1],[1,-1],[0,-3],[1,-1],[0,-1],[1,0],[0,-3],[0,-1],[1,0],[0,-1],[3,-3],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,3],[0,1],[-1,1],[1,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,3],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,2],[1,1],[0,3],[1,1],[3,-1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,1],[1,1],[1,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[1,0],[1,-1],[1,0],[1,3],[0,1],[1,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,2],[0,2],[1,2],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,4],[1,2],[1,1],[1,0],[0,1],[0,1],[1,4],[1,3],[0,2],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[1,0],[1,2],[0,1],[-1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,-1],[0,1],[1,0],[1,-1],[1,0],[0,2],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[2,-4],[2,-2],[1,-1],[0,-2],[1,-3],[0,-2],[-1,-3],[0,-2],[-1,-2],[0,-3],[-1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,-1],[1,1],[3,3],[1,0],[1,-2],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-3],[1,-5],[-1,-3],[0,-2],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-2],[-1,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-5],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[1,-1],[1,-5],[0,-2],[1,-3],[0,-1],[0,-2],[1,-1],[1,-2],[1,-1],[1,-1],[1,0],[2,1],[1,1],[8,12],[1,1],[0,1],[1,1],[0,1],[0,1],[2,1],[2,3],[2,0],[1,-1],[1,1],[5,2],[0,2],[1,3],[1,6],[1,2],[1,1],[2,1],[1,2],[2,2],[2,1],[1,0],[0,1],[0,2],[1,1],[1,2],[1,0],[1,3],[1,1],[1,0],[1,0],[1,-1],[1,2],[2,0],[3,-2],[2,-1],[1,0],[1,0],[0,-2],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[1,1],[1,0],[0,-1],[1,-1],[1,1],[1,-1],[0,1],[1,2],[1,0],[1,0],[2,2],[2,1],[3,2],[1,0],[1,1],[0,3],[0,1],[1,0],[1,-1],[0,1],[1,1],[1,0],[0,-2],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,1],[4,-4],[1,-2],[1,-4],[1,-1]],[[5326,2989],[0,-1],[-1,2],[0,2],[-1,7],[0,1],[0,1],[1,2],[0,-1],[0,-3],[0,-2],[0,-3],[0,-2],[1,-3]],[[5665,3396],[0,-4],[1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-3],[0,-1],[1,0],[-1,-10],[1,-2],[1,-7],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[1,-2],[0,-5],[0,-2],[-1,-4],[0,-9],[0,-10],[0,-3],[1,-2],[0,-2],[1,-2],[0,-4],[0,-3],[0,-1],[0,-1],[-1,-4],[-2,-4],[0,-2],[0,-5],[-1,-5],[0,-3],[-1,-3],[1,-2],[0,-2],[2,-4],[0,-2],[1,-2],[0,-3],[-1,0],[-3,0],[-4,0],[-3,0],[-4,0],[-3,0],[-3,0],[-4,0],[-3,0],[-4,0],[-3,0],[-4,0],[-3,0],[-4,0],[-3,0],[-4,0],[-3,0],[0,-11],[0,-10],[0,-11],[0,-10],[0,-6],[0,-5],[0,-10],[0,-11],[0,-10],[0,-11],[0,-10],[0,-11],[0,-10],[0,-11],[0,-10],[0,-11],[0,-10],[0,-3],[0,-2],[0,-2],[0,-3],[0,-7],[0,-7],[0,-7],[0,-7],[0,-4],[0,-4],[0,-4],[0,-2],[0,-1],[1,-2],[1,-4],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[-1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[2,-5],[1,0],[1,0],[0,1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[2,-8],[0,-2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[0,-1],[1,-3],[1,-2],[0,-2],[1,-3],[0,-1],[0,-1],[1,-1],[1,-3],[1,-1],[2,-1],[1,-1],[0,-1],[1,-3],[1,-1],[0,-2],[0,-2],[1,-2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1]],[[5649,2923],[-2,-1],[-6,-3],[-6,-3],[-5,-2],[-6,-3],[-7,-3],[-7,-4],[-7,-3],[-7,-3],[-2,-1],[-1,0],[0,1],[-1,1],[-1,2],[-2,1],[0,1],[-1,-1],[-1,1],[0,-1],[-1,0],[-1,0],[-2,-2],[-1,0],[-2,-1],[0,-2],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[-2,0],[-1,0],[0,2],[-1,1],[-1,0],[0,2],[-1,1],[-1,1],[0,-1],[-1,3],[-1,0],[-1,-1],[0,1],[-1,-2],[-1,1],[-1,0],[0,-1],[-1,-1],[0,1],[-1,-1],[-2,0],[-1,1],[-1,1],[-5,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,-1],[-5,0],[-4,3],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,-1],[-2,0],[-4,2],[-2,3],[-1,0],[-1,1],[0,2],[-2,4],[-1,1],[0,1],[0,2],[-2,3],[0,1],[-1,5],[-1,0],[0,1],[0,3],[-1,0],[0,1],[-2,0],[-7,0],[-4,0],[-3,0],[-7,0],[-7,0],[-3,0],[-4,0],[-7,0],[-8,0],[-7,0],[-7,0],[-7,0],[-7,0],[-7,0],[-7,0],[-7,0],[-8,0],[-7,0],[-2,0],[0,1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-2,4],[0,1],[-2,3],[-3,4],[-3,5],[-2,3],[0,2],[0,1],[0,1],[-1,3],[0,1],[-1,0],[0,1],[-1,0],[-1,2],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,-1],[-1,1],[-1,-1],[-3,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-2],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,-3],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0]],[[5326,2950],[0,1],[0,1],[0,1],[0,3],[0,9],[0,6],[1,6],[-1,5],[0,2],[1,0],[0,-3],[0,-1],[1,3],[0,5],[0,2],[0,7],[0,7],[-1,27],[0,1],[0,1],[0,3],[0,3],[-2,5],[0,3],[1,5],[1,1],[0,1],[1,-1],[0,-1],[2,3],[0,1],[0,1],[0,2],[0,1],[1,2],[2,2],[0,2],[0,2],[1,5],[0,2],[0,2],[0,2],[0,4],[0,8],[1,1],[0,1],[1,2],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,2],[1,4],[0,3],[0,1],[1,0],[0,1],[0,1],[0,1],[1,4],[0,1],[0,1],[1,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,2],[1,5],[0,6],[0,1],[1,1],[0,3],[0,5],[0,4],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[1,1],[0,2],[0,1],[0,1],[0,1],[1,2],[0,3],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,1],[0,3],[0,7],[0,7],[0,1],[1,2],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[2,5],[1,2],[0,1],[0,1],[2,5],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[1,3],[1,1],[2,4],[0,1],[1,1],[0,2],[1,2],[1,1],[1,0],[0,-1],[1,2],[0,1],[1,-1],[0,-1],[1,0],[1,1],[0,1],[2,3],[0,2],[1,0],[0,1],[0,3],[0,2],[0,1],[1,2],[1,4],[1,0],[-1,-1],[0,-1],[1,1],[0,2],[1,3],[0,1],[1,5],[1,4],[0,3],[0,4],[1,1],[0,2],[0,1],[1,1],[0,2],[0,6],[1,3],[0,1],[-1,13],[0,7],[0,2],[1,1],[-1,1],[1,1],[0,1],[0,4],[0,1],[0,2],[0,1],[0,2],[1,10],[0,4],[0,5],[0,3],[0,2],[-3,9],[0,1],[0,2],[0,1],[1,2],[0,1],[0,1],[-1,2],[-1,2],[0,1],[-3,8],[-1,4],[-1,1],[0,2],[0,4],[0,2],[0,1],[-2,6],[0,1],[0,4],[-1,1],[-1,3],[-2,6],[0,1],[1,1],[0,2],[0,3],[-1,3],[-1,3],[-2,6],[0,1],[0,2],[1,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[-1,6],[0,1],[0,3],[0,2],[0,2],[0,2],[-1,1],[-2,8],[-1,5],[-1,2],[0,4],[1,5],[2,5],[1,2],[0,-3],[-2,-4],[-1,-6],[0,-1],[0,-1],[2,7],[0,1],[0,1],[1,0],[0,1],[1,2],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[1,1],[-2,-4],[0,-1],[0,1],[1,1],[1,0],[0,1],[0,1],[1,1],[1,-1],[1,1],[1,3],[0,3],[0,1],[0,1],[-1,3],[0,2],[-1,5],[0,2],[1,0],[0,1],[0,6],[0,1],[0,2],[-3,10],[0,1],[0,3],[-1,1],[0,1],[0,2],[-1,3],[0,3],[-2,8],[-4,22],[-1,8],[-1,7],[-1,2],[0,1],[-1,2],[1,2],[-1,2],[0,14],[0,2],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,-1],[-1,0],[-2,7],[-2,6],[-2,7],[-2,12],[-1,6],[-1,4],[-1,2],[-1,2],[0,3],[-1,5],[-1,2],[1,1],[0,1],[1,1],[0,-1],[0,-2],[1,0],[2,1],[2,1],[0,1],[1,1],[1,0],[1,2],[1,0],[1,0],[1,-1],[1,0],[2,1],[1,1],[0,1],[2,2],[0,1],[1,2],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,2],[1,0]],[[5366,3746],[2,0],[1,-1],[1,-1],[1,2],[1,0],[2,0],[1,-1],[1,1],[2,0],[5,1],[4,0],[1,-1],[1,-1],[3,1],[1,0],[2,-2],[3,0],[2,0],[2,0],[2,-1],[4,1],[1,1],[1,0],[3,0],[3,0],[2,0],[3,0],[2,0],[3,0],[2,0],[3,0],[2,1],[3,0],[2,0],[3,0],[2,0],[3,0],[1,0],[2,0],[2,0],[2,0],[1,-1],[0,-1],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-4],[0,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-3],[0,-1],[0,-1],[2,-6],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-2],[0,-4],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,1],[0,-2],[0,-4],[0,-4],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,1],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-2],[0,-3],[1,-2],[1,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,1],[0,-1],[1,-1],[-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],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-2],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-2],[1,-1],[1,-1],[1,0],[2,2],[1,0],[1,-1],[1,0],[1,2],[1,0],[1,0],[1,-1],[1,-3],[1,0],[2,0],[0,2],[0,2],[0,1],[1,1],[1,2],[1,0],[2,-1],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[2,0],[1,0],[-1,2],[0,2],[1,0],[2,0],[2,0],[2,0],[0,-2],[1,-1],[0,-2],[1,0],[4,0],[3,0],[4,0],[3,0],[1,0],[0,6],[-1,2],[1,2],[0,3],[0,2],[1,4],[0,2],[0,2],[0,2],[-1,2],[0,1],[0,2],[2,0],[1,0],[0,1],[0,3],[1,1],[0,2],[1,2],[-1,5],[0,2],[-1,2],[1,12],[0,2],[0,1],[1,3],[0,1],[0,3],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[0,3],[0,1],[1,1],[2,0],[2,0],[2,0],[2,0],[-1,-4],[0,-5],[-1,-3],[0,-4],[-1,-3],[0,-3],[0,-4],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,1],[2,0],[2,0],[2,0],[1,0],[1,0],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[0,-3],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-2],[1,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-2],[1,-1],[0,-1],[0,-3],[0,-3],[0,-1],[1,-2],[0,-2],[0,-1],[0,-2],[1,-2],[0,-3],[0,-3],[-1,-6],[1,0],[-1,-3],[0,-2],[0,-5],[-1,-4],[0,-1],[0,-2],[0,-2],[-1,-5],[1,-4],[-1,-8],[0,-7],[0,-3],[0,-3],[-1,-4],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-3],[0,-6],[1,-3],[0,-2],[2,-5],[0,-3],[1,1],[0,-2],[1,-2],[1,-5],[1,0],[0,1],[0,-1],[1,-1],[1,-1],[0,-2],[0,-1],[0,-3],[1,-3],[0,-3],[0,-1],[0,-2],[1,-4],[0,-3],[1,-3],[1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-2],[0,-3],[0,-1],[0,-2],[0,-2],[1,-2],[-1,0],[1,-3],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-5],[0,-3],[0,-1],[1,0],[0,-1],[0,-2],[0,-2],[1,-6],[0,-3],[-1,-3],[1,0],[0,1],[2,4],[3,3],[1,1],[0,6],[1,0],[3,-2],[1,-1],[1,-1],[1,0],[1,1],[1,1],[1,1],[1,-1],[1,-1],[0,-1],[1,0],[2,0],[3,1],[2,1],[3,4],[2,3],[1,0],[1,1],[1,-1],[2,-1],[2,-1],[1,-1],[1,1],[1,-1],[1,-1],[1,0],[1,1],[1,0],[0,2],[0,1],[1,1],[0,1],[0,1],[0,2],[1,1],[0,1]],[[5363,3832],[-1,-2],[-1,-1],[-5,-4],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-3],[-1,-2],[-2,-2],[-1,0],[0,-1],[0,-1],[0,-1],[2,-1],[0,-1],[1,-2],[-1,-6],[0,-6],[0,-8],[0,-9],[0,-4],[0,-7],[-2,0],[-3,0],[-2,0],[-1,-2]],[[5339,3753],[-2,5],[0,5],[1,4],[0,1],[1,1],[0,1],[0,3],[0,3],[-1,2],[0,5],[0,2],[-2,5],[0,3],[-1,5],[-2,5],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,1]],[[5333,3805],[3,7],[1,3],[1,7],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,1],[1,6],[0,2],[0,3],[1,1],[0,-1],[1,0],[2,2],[3,1],[0,1],[0,1],[1,2],[0,2],[1,1],[1,1],[0,2],[0,2],[1,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,-4],[0,-1],[2,-2],[1,-6],[2,-1]],[[5557,7128],[0,-1],[2,-1],[0,-2],[1,-3],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,0],[4,-5],[0,-1],[1,-1],[1,-5],[0,-1],[0,-2],[0,-2],[1,-1],[0,-4],[1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[5571,7081],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[1,-3],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[1,-3],[0,-2],[1,-3],[1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-4],[1,-4],[0,-2],[0,-1],[1,0],[1,0],[1,2],[2,-1],[1,0],[1,-1],[0,-2],[0,-1]],[[5582,7010],[0,-4],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,-3],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[1,-4],[0,-1],[1,-1],[1,-4],[0,-1],[0,-2],[-1,-1],[-1,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,2],[-2,1],[-1,1],[-1,0]],[[5555,6929],[0,-1],[0,1],[0,2],[0,2],[-1,0],[1,2],[0,4],[0,2],[-1,1],[0,1],[-1,0],[-1,1],[1,1],[0,1],[0,1],[-1,5],[-1,1],[0,1],[-1,0],[-1,0],[1,1],[-1,1],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[-2,2],[-1,1],[-1,2],[-2,1],[-1,1],[-2,6],[0,1],[-1,0],[0,4],[-1,2],[-1,1],[0,1],[1,1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[1,6],[0,1],[-1,1],[-1,2],[-1,2],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,2],[0,1],[-1,1],[-1,0],[0,-2],[0,1],[-2,5],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,4],[0,1],[1,1],[1,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[1,2],[0,1],[0,-1],[0,-2],[0,-1],[0,-2],[0,1],[0,-1],[1,1],[1,1],[1,2],[0,1],[0,2],[-1,1],[0,1],[0,-1],[0,-2],[-1,-2],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[1,0],[0,6],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[1,4],[1,1],[-1,1],[0,2],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,3],[-1,1],[0,1],[1,-1],[1,1],[-1,2],[1,1],[1,1],[0,1],[1,2],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[3,-1],[1,1],[0,2],[1,0],[0,-1],[0,2],[0,1],[0,-1],[0,1],[-1,1],[0,2],[0,2],[0,3],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-3,3],[-1,1],[-2,-1]],[[5537,7080],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[1,2],[-1,1],[-1,3],[-1,0],[0,1],[0,1],[1,2],[2,8],[0,1],[0,1],[1,1],[1,3],[1,1],[0,1],[1,1],[0,1],[0,1],[0,2],[1,0],[1,1],[0,1],[0,2],[0,1],[0,1],[1,2],[1,0],[0,1],[1,1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[1,-1],[1,0],[1,1],[1,0],[0,1],[2,0],[0,1],[1,2],[1,1],[1,-1]],[[5047,7125],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,2],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[5039,7132],[1,0],[0,3],[1,0],[1,0],[2,-2],[3,0],[0,-2],[1,0],[0,-1],[1,-1],[-1,0],[-1,-1],[0,-1],[0,-2]],[[6496,5849],[0,-1],[1,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[0,-2],[-1,-1],[-1,-1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,-1],[1,2],[1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0]],[[6505,5850],[0,-2],[-1,1],[0,1],[-1,1],[-1,0],[0,2],[1,2],[1,-1],[0,-1],[1,-1],[0,-2]],[[6506,5852],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[-1,0]],[[6461,5851],[-1,-1],[0,1],[0,1],[-1,2],[0,1],[1,1],[0,2],[1,0],[1,-1],[0,-2],[0,-1],[-1,-2],[0,-1]],[[6509,5858],[0,-1],[-1,-2],[0,-1],[-1,3],[0,1],[1,0],[0,-1],[0,1],[0,1],[-1,0],[1,0],[0,-1],[1,0]],[[6483,5855],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[-1,1],[-1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,3],[0,1],[0,-1],[1,-1],[0,-3],[-1,-1]],[[6512,5862],[-1,0],[-1,1],[-1,1],[0,1],[1,3],[0,1],[0,-2],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1]],[[6453,5866],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-2],[0,-1]],[[6563,5920],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[6563,5946],[0,-1],[1,0],[0,-1],[1,0],[0,-5],[0,-7],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-3],[0,-10],[0,-1],[1,-5]],[[6566,5901],[-2,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,-3],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,2],[-1,5],[-1,2],[0,1],[0,1],[1,0],[1,-2],[0,2],[-1,3],[0,2],[-1,1],[-1,1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-3],[0,-2],[0,-5],[0,-2],[0,-2],[0,-1],[0,-1],[1,-2],[0,-2],[-1,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[1,-3],[0,-4],[0,-1],[0,-1],[1,-1],[0,-4],[-1,-1],[-1,-4],[0,-2],[0,-1],[2,-1],[1,0],[1,2],[1,-1],[0,-3],[1,-3],[1,-4],[0,-1],[-2,-1],[-3,-3],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[1,-1],[1,-1],[0,-2],[0,-6],[0,-1],[-1,-4],[-1,-1],[-1,-9],[0,-1],[-1,-3],[0,-2],[-1,-2],[0,-7],[-1,-4],[-3,-11],[0,-7],[-1,-2],[1,-10],[-1,-10]],[[6532,5742],[-2,-6],[-4,1],[-4,1],[-3,2],[-4,1],[-4,1],[-4,1],[-4,1],[-4,2],[-4,1],[-4,1],[-3,1],[-4,1],[-4,1],[-4,2],[-4,1],[-4,1],[-4,1],[-4,2],[-1,0],[0,1],[-2,5],[-1,4],[-2,4],[-1,5],[-2,4],[-1,4],[-1,5],[-2,4],[-1,4],[-2,5],[-1,4],[-2,4],[-1,5],[-2,4],[-1,4],[-1,5],[-2,4],[-1,5],[-1,1],[0,2],[0,5],[0,2],[0,2]],[[6432,5850],[0,2],[0,3],[0,3],[1,1],[0,-1],[0,-2],[0,-1],[0,-4],[1,-3],[0,1],[1,3],[0,-1],[0,-2],[0,-1],[1,0],[0,1],[1,3],[0,1],[1,-2],[0,-2],[-1,-4],[1,-2],[0,-3],[0,-1],[0,-3],[0,-2],[1,-2],[2,0],[0,-1],[1,-1],[0,1],[0,1],[2,-1],[0,1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,1],[2,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,-4],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[2,0],[1,1],[1,1],[0,-1],[1,-2],[2,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[4,2],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[3,0],[1,0],[2,3],[2,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[2,2],[0,1],[1,0],[1,-1],[0,1],[1,2],[1,1],[1,5],[0,2],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,2],[1,-1],[0,1],[0,1],[-1,0],[-1,0],[-1,3],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,1],[0,-2],[1,-2],[0,-1],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[1,5],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[1,1],[-1,0],[0,1],[0,1],[2,2],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[-1,1],[3,4],[2,3],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[-1,1],[1,1],[0,-1],[2,6],[3,8],[0,1],[0,1],[1,1],[1,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,2],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,-1],[0,1],[1,3],[1,-1],[0,1],[0,1],[0,-1],[1,3],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,1],[0,3],[0,1],[1,2],[1,1],[1,0],[0,3],[1,0],[0,1],[1,0],[0,1],[1,0],[1,2],[1,4],[1,2],[0,-1],[-1,-1],[0,-2],[1,0],[0,1],[0,2],[0,1],[0,1],[1,3],[1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[1,2],[0,3],[1,5]],[[6557,5976],[1,0],[1,1],[1,-2],[0,-2],[0,-1],[0,-2],[0,-7],[-1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,1]],[[6562,5925],[-1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[1,0],[1,2],[1,1],[0,1],[1,2],[-2,0],[0,2],[-1,0]],[[3093,320],[0,3],[0,4]],[[3093,327],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1]],[[3212,332],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,1],[0,1],[1,0],[0,-1],[1,1],[1,-2],[1,1],[3,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,1],[1,2],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,1],[0,1],[1,0],[0,2],[-1,0],[-1,0],[0,-1],[-2,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-2,0],[0,1],[0,1],[0,1],[-2,2],[0,2],[1,0],[0,1],[1,1],[0,1],[1,-1],[1,-1],[1,0],[1,1],[1,1],[-2,2],[0,1],[1,0],[1,-1],[0,-1],[1,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,-1]],[[3093,328],[0,18],[0,19],[0,19],[0,19],[0,18],[0,19],[0,19],[0,18]],[[3093,477],[1,-1],[1,0],[0,-2],[0,-1],[2,-4],[2,-5],[0,-1],[2,-3],[1,-2],[1,-2],[0,-2],[1,-8],[1,-1],[-1,-1],[0,1],[0,1],[-1,5],[-1,1],[-1,-1],[-1,-1],[-1,-1],[-1,-3],[-2,-2],[-1,-3],[0,-3],[1,-2],[1,-2],[1,-3],[1,0],[2,0],[2,-1],[3,0],[2,-2],[0,-2],[1,-1],[0,-3],[0,-2],[0,-3],[0,-1],[2,-5],[0,-1],[6,-9],[1,-2],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[7,-10],[5,-5],[3,-2],[2,-2],[0,-2],[1,0],[4,-3],[2,-3],[1,-4],[3,-4],[1,-2],[1,0],[0,-2],[1,-1],[1,0],[1,-1],[2,-2],[10,-7],[1,0],[1,-2],[1,0],[2,0],[2,-1],[6,2],[2,-1],[1,0],[2,2],[4,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-4],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-4],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[-1,-2],[-2,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[-2,2],[-1,-1],[-2,0],[0,-1],[1,-1],[-1,-1],[0,-2],[-2,0],[-2,-1],[-2,0],[-3,0],[-2,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-3,0],[-2,1],[-1,1],[-1,1],[0,1],[0,1],[-3,3],[-1,0],[-3,1],[-2,1],[-9,1],[-5,1],[-4,0],[-7,1],[-4,1],[-2,2],[-2,0],[-2,2],[-1,0],[0,-1],[0,-1],[0,-1],[-6,-1],[-1,1],[-1,2],[-1,2]],[[3276,1327],[0,-2],[-1,-2],[-1,-2],[-1,1],[0,2],[0,1],[-1,-1],[-1,0],[0,1],[0,1],[1,2],[0,3],[1,3],[1,0],[1,0],[1,-1],[0,-2],[1,-2],[-1,-2]],[[3277,1338],[0,-1],[0,1],[-1,2],[0,2],[-2,3],[0,3],[0,3],[1,1],[1,-1],[0,-1],[1,-2],[0,-3],[0,-4],[0,-3]],[[3280,1420],[0,1],[1,-2],[0,-3],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-2,1],[0,1],[-1,1],[-1,3],[0,1],[0,1],[1,-1],[3,-1],[1,-2]],[[3277,1429],[1,-1],[0,-1],[0,-1],[-1,0],[-2,3],[0,-1],[-1,0],[0,1],[0,1],[2,0],[1,-1]],[[3259,2602],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-2],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[2,-3],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-2],[0,-1],[1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-3],[3,-4],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[2,-3],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[2,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,1],[1,-2],[1,-1],[1,-2],[1,0],[2,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-3],[1,0],[1,0],[1,-2],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[2,0],[2,0],[1,0],[1,1],[1,0],[10,-15],[1,-3],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-2],[0,-1],[1,-2],[0,-2],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[2,-1],[0,-1],[1,0],[1,-2],[1,0],[5,-10],[1,0],[1,0],[1,-1],[0,-1],[6,-3],[1,-1],[1,-3],[2,-4],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,2],[1,1],[3,-4],[0,-1],[2,-2],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[3,0],[1,-1],[1,-3],[0,-1],[1,-1],[0,-1],[1,-5],[1,-1],[1,-2],[1,-5],[1,-3],[1,-1],[0,-1],[0,-1],[-1,-7],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-3,-5],[-1,-2],[-2,-1],[0,-1],[0,-2],[-1,-2],[0,1],[-1,0],[0,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,-2],[0,-5],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[1,-1],[1,-1],[0,-1],[0,-2],[0,-3],[2,2],[8,2],[3,-1],[2,1],[1,0],[2,-1],[1,-1],[2,-1],[1,-1],[3,-1],[4,-6],[1,0],[1,0],[3,1],[1,-1],[1,-1],[0,-1],[2,-1],[1,-2],[1,0],[1,0],[1,0],[3,3],[1,1],[1,1],[1,-1],[2,-4],[1,-1],[0,-1],[1,1],[1,2],[1,1],[1,1],[2,-1],[1,-3],[1,-2],[0,-2],[1,-1],[1,-1],[1,0],[0,2],[1,2],[0,2],[1,1],[0,2],[0,1],[0,2],[0,2],[1,0],[1,1],[0,1],[1,2],[1,1],[1,1],[1,0],[2,-2],[1,0],[1,0],[1,0],[0,-2],[1,-2],[0,-1],[0,-1],[1,0],[2,-2],[1,2],[1,2],[1,2],[1,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[1,1],[1,1],[0,2],[0,1],[1,0],[1,0],[0,1],[0,3],[1,2],[0,1],[0,1],[1,1],[2,1],[1,1],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,1],[-1,3],[0,1],[2,5],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[1,3],[0,2],[1,1],[1,0],[1,0],[0,-1],[0,1],[1,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[1,2],[0,1],[0,1],[1,4],[0,1],[0,2],[0,3],[0,2],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[1,5],[0,1],[0,3],[-1,2],[0,1],[0,1],[1,0],[1,0],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,1],[0,1],[0,4],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1]],[[3483,2368],[1,1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,1],[-1,2],[1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,0],[0,-1],[0,-2],[1,0],[0,1],[1,0],[0,1],[0,3],[1,-1],[0,1],[1,2],[1,0],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,2],[0,-1],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-4],[0,-4],[0,-1],[0,-1],[0,-1],[1,-2],[1,-2],[1,-2],[0,-3],[0,-2],[1,-4],[1,-3],[0,-2],[0,-3],[-1,-3],[-1,-3],[1,-6],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-2],[1,-4],[0,-2],[-1,-3],[-1,-6],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[-1,-2],[0,-1],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,-1],[0,-1],[-2,-5],[-1,0],[-1,0],[0,2],[0,1],[-1,-1],[0,-5],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,0],[0,-1],[0,-2],[0,-3],[-1,-2],[0,-1],[-2,-3],[-1,0],[0,1],[-1,0],[0,-2],[1,-1],[0,-2],[0,-1],[-1,1],[-1,0],[0,-1],[0,-2],[-1,1],[-1,1],[-1,0],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-3],[-1,-1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-3],[-2,-1],[-1,-1],[1,-2],[0,-1],[1,-1],[1,0],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,-1],[0,-1],[0,-2],[0,-4],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,-1],[-1,-3],[0,-2],[-2,-2],[-2,-7],[-1,-1],[-1,-1],[-1,0],[0,-2],[0,-6],[-1,-2],[-2,-3],[0,-2],[0,-3],[0,-1],[-1,-2],[-2,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-2,-4],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[-2,-4],[-1,-1],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,-2],[0,-2],[-1,-8],[0,-1],[-2,-4],[-3,-8],[-1,-2],[-2,0]],[[3399,2047],[0,-1],[-1,0],[1,-2],[0,-3],[0,-2],[-1,-3],[-5,-11],[-1,-2],[0,-2],[0,-3],[0,-3],[1,-1],[0,-3],[1,-1],[0,-3],[0,-2],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-3],[1,-4],[-1,-2],[-1,-2],[0,-3],[0,-4],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-2],[1,-2],[1,-1],[1,-2],[0,-3],[0,-3],[-2,-11],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-3],[0,-2],[1,-3],[-1,-3],[0,-3],[0,-2],[-1,-1],[1,-2],[2,-5],[0,-2],[0,-2],[-2,-6],[-1,-3],[0,-1]],[[3383,1888],[-1,-3],[0,-3],[1,-8],[0,-5],[1,-7],[0,-2],[1,-2],[0,-1],[0,-2],[-1,-2],[0,-2],[0,-3],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[-4,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-3],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-2],[-1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-2],[-1,-5],[0,-2],[1,-2],[0,-3],[2,-4],[0,-1],[0,-2],[0,-3],[0,-4],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[1,-2],[1,-1],[1,-2],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-2],[2,-3],[1,-3],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-3],[2,0],[1,-1],[1,-2],[1,-3],[2,-1],[3,-4],[2,-2],[1,-2],[1,-2],[3,-6],[1,-2],[1,-3],[0,-1],[2,-5],[1,-4],[1,-3],[0,-2],[-1,-3],[-1,-3],[-1,-3],[-3,-9],[0,-2],[-1,-2],[0,-2],[0,-3],[-1,-2],[1,-3],[0,-3],[0,-2],[0,-1],[1,-1],[0,-1],[1,-4],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[4,-8],[3,-3],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[1,1],[1,0],[2,0],[-1,2],[1,1],[1,-1],[0,-1],[0,-3],[1,-2],[0,-8],[0,-4],[0,-2],[1,-9],[0,-8],[0,-3],[-1,-3],[-3,-7],[-3,-9],[-3,-13],[-1,-5],[-3,-8],[-1,-2],[-3,-6],[-1,-4],[-1,0],[0,-1],[-2,-5],[-1,-3],[-1,-3],[0,-3],[-1,-3],[0,-3],[1,-1],[0,-1],[-1,0],[0,-1],[1,-2],[-1,-1],[0,-2],[-1,-2],[-3,-4],[-3,-3],[-2,-3],[-4,-5],[-1,-1],[-2,-3],[-1,-1],[-3,-2],[-1,-2],[-1,0],[-2,-1],[-2,-1],[-2,-3],[-5,-2],[-6,-4],[-1,-2],[-1,0],[-1,-1],[-8,-3],[-8,-3],[-4,-4],[-1,0],[-2,0],[-13,-5],[-4,-1],[-4,-2],[-6,-2],[-3,0],[-1,1],[-1,0],[0,-1],[-3,-2],[-5,2],[-3,0],[-1,-1],[-1,-1],[-5,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-5,3],[-1,1],[-1,1],[-1,2],[0,3],[-1,1],[0,1],[-4,0],[-1,1],[-1,0],[0,-2],[0,-2],[0,-2],[0,-2],[0,1],[1,0],[0,-1],[0,-3],[1,-1],[1,1],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[1,-2],[0,-1],[-1,1],[-1,-1],[1,-1],[0,-1],[1,0],[2,0],[1,0],[2,-3],[1,-1],[1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-2,3],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[1,-1],[1,-2],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-5],[0,-1],[-1,-10],[0,-6],[0,-1],[-1,-1],[0,-1],[-2,1],[-1,1],[-1,2],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-3],[0,-2],[0,-3],[-1,-1],[1,-4],[0,-2],[0,-3],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,-3],[0,-4],[0,-1],[1,-2],[1,-1],[1,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,-3],[0,-2],[0,-1],[-1,1],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,2],[1,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-3],[-1,-4],[-1,-1],[-4,-5],[-3,-4],[-2,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-3,-4],[-1,0],[-6,0],[-1,0],[-1,-1],[-3,1],[-4,-1],[-4,1],[-1,0],[-1,1],[-3,6],[-1,1],[-2,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-7,7],[-3,2],[-3,2],[-3,2],[-1,0],[-2,-1],[-1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-3,1],[-1,0],[-1,-1],[-1,0],[1,-1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[-3,0],[-1,0],[0,-1],[-2,-4],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-3],[1,-12],[1,-8],[0,-2],[1,-4],[0,-2],[0,-3],[2,-3],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[1,-4],[0,-3],[0,-3],[-2,-5],[0,-3],[0,-2],[1,-2],[1,-6],[1,-2],[1,-2],[2,-3],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-2,-6],[-1,-1],[0,-2],[1,-1],[2,1],[2,-1],[1,0],[1,0],[1,1],[5,0],[1,0],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-3,0],[-1,0],[-2,1],[1,1],[4,1],[4,4],[2,3],[2,2],[2,1],[1,-1],[1,-2],[1,-2],[1,-4],[0,-1],[0,-1],[1,-1],[0,-2],[1,-2],[0,-3],[0,-7],[1,-11],[-1,-2],[0,-3],[-1,-3],[0,-3],[-1,-3],[-2,-2],[-5,-2],[-2,0],[-1,0],[-1,-2],[-1,0],[-1,1],[-1,2],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[1,4],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-3,0],[-2,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-3],[0,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,-1],[2,-1],[3,-3],[1,-1],[1,-2],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[2,1],[1,-2],[-1,-1],[0,-1],[-4,-4],[-3,-2],[-5,-3],[-5,-7],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[-2,-4],[-1,-4],[-1,-1],[-1,-3],[-1,0],[-1,-4],[0,-1],[0,-1],[0,-4],[0,-1],[1,-2],[-1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[-1,-2],[1,-1],[0,-1],[0,1],[1,-1],[-1,-1],[0,-2],[0,-1],[1,0],[1,0],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-2],[-2,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[1,0],[1,-1],[1,0],[1,-1],[0,1],[1,-2],[1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,2],[-1,1],[-1,-1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-2],[0,-1],[0,1],[-1,-1],[-1,0],[0,2],[-1,1],[-1,0],[-2,1],[-1,-1],[-1,1],[-1,-2],[-1,-2],[0,-1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[-2,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[1,0],[-1,-2],[-3,2],[0,-1],[1,-1],[1,-1],[0,-2],[-1,0],[-3,0],[-3,-1],[-3,0],[-1,-2],[-1,-1],[-2,-2],[-1,-3],[-1,-3],[-1,-3],[-1,-2],[-1,-3],[-1,-2],[-1,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-3],[0,-1],[-1,-1],[0,-2],[-1,-1],[1,-2],[-1,0],[0,-2],[-1,-1],[0,-5],[-1,-2],[0,-2],[0,-2],[2,-11],[1,-6],[0,-2],[3,-9],[1,-3],[1,-1],[2,-1],[0,-1],[1,0],[0,-2],[1,-1],[1,0],[1,-1],[0,-2],[1,-2],[1,-2],[1,-2],[1,0],[0,-1],[0,-1],[3,-5],[1,-4],[2,-2],[2,-2],[1,0],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[1,-1],[2,0],[2,-1],[3,-1],[3,1],[2,1],[1,0],[2,-2],[1,0],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-4],[0,-2],[0,-2],[0,-5],[0,-7],[-1,-4],[-1,-5],[-1,-7],[-1,-1],[-1,0],[-2,1],[-2,0],[0,-1],[-1,-3],[-1,0],[-1,-1],[-1,-1],[-2,-3],[-1,0],[-2,0],[1,-1],[1,1],[2,2],[1,0],[1,1],[3,2],[1,2],[1,0],[1,0],[1,0],[1,-1],[0,-4],[0,-3],[1,-1],[1,-1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-2,1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-3],[1,-2],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[-2,0],[-2,-2],[-2,-2],[0,-2],[0,-3],[-2,-2],[0,-2],[0,-2],[-1,-1],[-2,-2],[-3,-3],[-4,-7],[0,-3],[-1,-2],[0,-2],[-1,-1],[0,-2],[0,-1],[1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[1,-1],[1,0],[1,0],[1,2],[1,2],[0,2],[0,1],[0,2],[1,1],[1,-1],[0,-1],[0,-3],[-2,-4],[0,-1],[0,-5],[-1,-5],[0,-2],[0,-3],[0,-1],[0,-3],[0,-1],[-1,-7],[-1,-5],[0,-1],[0,-2],[0,-1],[-1,0],[-1,-3],[-1,-3],[-3,-3],[-2,-3],[-3,-2],[-2,-1],[-2,0],[-1,1],[-1,2],[0,1],[-1,1],[0,2],[-1,1],[0,2],[-1,2],[-1,1],[0,2],[0,1],[-1,3],[-1,1],[-1,5],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[2,-2],[0,-1],[1,-1],[0,-2],[1,-3],[1,-3],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[2,0],[1,-1],[1,1],[1,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-5,-4],[-4,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-2],[-1,-3],[-1,-2],[-1,-2],[0,-1],[-1,-3],[-1,-2],[0,-1],[0,-3],[-1,-6],[-1,-2],[0,-2],[0,-1],[0,-2],[0,-4],[0,-2],[0,-2],[0,-1],[-2,-1],[-1,-3],[-3,-3],[-1,-2],[0,-3],[0,1],[2,3],[1,1],[2,2],[1,0],[0,1],[1,-2],[0,-1],[0,-3],[1,-5],[0,-4],[0,-2],[1,-1],[0,-3],[0,-3],[3,-13],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,1],[-1,-1],[-1,-2],[-1,0],[-1,0],[-3,3],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[6,3],[1,0],[2,0],[2,-2],[2,-1],[-1,-2],[-1,-2],[1,0],[2,2],[1,2],[1,1],[1,0],[1,0],[1,-2],[2,-8],[1,-3],[2,-8],[2,-6],[4,-11],[4,-8],[1,-2],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,1],[0,1],[-1,1]],[[3098,498],[0,2],[0,1],[-3,1],[0,1],[-1,0],[0,1],[-6,1],[-1,1],[-4,4],[-6,2],[-7,1],[-5,3],[-5,3],[-3,3],[-3,0],[-6,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,1],[-7,0],[-6,0],[-2,0],[-1,1],[0,3],[0,2],[0,2],[-1,2],[-1,1],[-1,4],[-2,2],[-1,2],[-3,1],[-1,1],[0,1],[0,4],[0,1],[-1,1],[-1,1],[0,-1],[-1,1],[-1,1],[1,3],[2,3],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[0,4],[0,1],[0,1],[1,3],[1,1],[0,1],[-1,1],[-2,2],[-1,2],[0,2],[-1,2],[1,1],[0,1],[1,2],[1,1],[1,0],[0,1],[0,4],[1,6],[-1,2],[0,2],[-1,2],[-1,2],[0,1],[0,1],[0,1],[1,3],[0,2],[-1,0],[-1,2],[-3,1],[-2,-1],[-1,-4],[-2,0],[0,1],[-2,2],[0,1],[-1,0],[-3,-4],[-1,-1],[-2,-4],[-2,-1],[-1,-1],[-1,0],[-1,2],[0,2],[0,2],[0,3],[-1,1],[-1,3],[0,1],[0,1],[0,4],[-1,4],[0,1],[0,3],[0,1],[0,3],[0,2],[-1,2],[-1,2],[0,1],[-1,1],[-4,5],[0,2],[0,2],[2,4],[0,1],[-1,1],[0,1],[-1,3],[-1,1],[1,1],[0,1],[0,1],[0,2],[0,1],[2,2],[0,2],[0,2],[-1,2],[-1,1],[0,1],[0,1],[0,2],[0,1],[1,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[1,1],[0,1],[0,2],[0,2],[9,1],[0,1],[1,1],[-2,1],[0,1],[0,2],[0,2],[2,3],[0,1],[0,1],[0,1],[0,1],[1,2],[1,4],[1,0],[1,2],[1,1],[3,1],[1,0],[1,2],[2,3],[2,3],[0,2],[1,2],[0,3],[-1,8],[0,3],[0,4],[1,4],[1,1],[1,2],[2,1],[1,2],[0,1],[1,1],[1,-1],[1,1],[-1,2],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,8],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,2],[-1,1],[0,3],[0,2],[1,2],[1,5],[0,2],[3,8],[0,1],[0,1],[0,2],[0,1],[1,4],[0,1],[-1,0],[0,1],[-1,0],[1,2],[0,1],[1,1],[1,0],[0,1],[2,-1],[1,0],[0,1],[1,2],[2,5],[1,1],[0,2],[0,1],[0,1],[-1,1],[1,1],[0,1],[2,-2],[1,-1],[1,1],[1,2],[0,2],[-1,2],[0,1],[-1,1],[-2,2],[0,1],[0,2],[2,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,4],[0,1],[0,1],[1,0],[-1,1],[0,1],[1,1],[0,1],[2,0],[1,1],[0,2],[1,1],[1,1],[1,2],[1,2],[-1,5],[0,2],[0,1],[1,1],[-1,1],[-1,9],[-1,2],[0,3],[0,3],[0,2],[0,2],[-2,2],[-1,2],[-1,0],[0,1],[0,1],[1,0],[2,0],[0,1],[1,0],[0,1],[1,2],[0,1],[2,4],[1,2],[0,3],[0,2],[-1,1],[-1,2],[-1,0],[-1,1],[0,1],[0,1],[1,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,2],[1,1],[0,1],[-1,1],[1,2],[1,1],[1,1],[1,0],[2,0],[1,0],[1,1],[0,2],[0,1],[0,2],[-1,1],[0,1],[3,2],[1,0],[0,1],[1,2],[0,1],[1,1],[0,3],[-1,2],[-1,2],[-1,1],[-1,2],[-1,3],[-1,4],[-1,4],[-1,2],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,0],[-1,1],[1,2],[0,2],[-1,3],[1,2],[1,0],[1,-1],[4,-1],[1,1],[0,1],[1,0],[1,0],[2,-1],[1,0],[2,2],[2,0],[1,0],[2,-3],[1,-1],[1,1],[1,1],[1,2],[0,3],[0,2],[0,1],[0,1],[1,3],[0,1],[1,0],[0,1],[1,0],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-5,1],[-5,0],[-2,1],[-1,0],[-1,-1],[-1,0],[-1,2],[-1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,3],[0,1],[0,1],[-1,3],[0,3],[0,1],[1,0],[1,2],[1,1],[2,6],[0,1],[0,1],[-1,5],[-1,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[0,1],[0,4],[0,1],[-1,0],[-1,2],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,2],[-1,1],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,2],[1,1],[2,1],[1,0],[1,0],[0,2],[0,1],[-1,2],[1,1],[0,1],[0,1],[0,1],[-1,1],[-2,2],[-5,1],[-1,1],[-1,1],[-1,3],[0,3],[0,3],[0,4],[1,2],[-1,11],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,3],[0,2],[1,1],[2,2],[-1,1],[0,3],[0,4],[0,1],[-2,3],[0,2],[0,1],[1,2],[1,1],[0,2],[0,2],[1,2],[0,1],[1,0],[1,-1],[0,-2],[1,-1],[0,1],[1,1],[0,1],[2,1],[1,0],[1,2],[0,1],[0,4],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,5],[0,2],[-1,2],[0,2],[0,2],[-1,3],[-1,4],[0,2],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,2],[1,5],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[1,3],[0,2],[0,2],[-1,2],[0,1],[0,1],[1,3],[0,1],[0,2],[-1,1],[-1,3],[0,2],[-1,7],[0,1],[2,4],[1,3],[0,2],[0,1],[0,1],[0,1],[0,2],[1,6],[0,1],[1,0],[1,-1],[1,1],[1,5],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[-1,2],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,2],[0,1],[0,2],[0,1],[0,1],[1,4],[0,2],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[1,0],[1,-2],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,-1],[0,1],[1,3],[-2,2],[1,2],[1,1],[0,2],[0,1],[1,1],[-1,2],[0,2],[1,1],[0,1],[1,1],[0,1],[0,6],[0,9],[0,6],[0,2],[0,4],[0,2],[1,1],[3,3],[0,1],[1,1],[0,1],[2,1],[1,0],[1,2],[1,1],[1,0],[1,0],[1,0],[0,1],[1,2],[1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,2],[0,2],[-1,2],[-1,2],[-1,1],[-1,3],[-1,11],[0,2],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,2],[-1,3],[0,2],[-1,5],[-2,9],[0,3],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[-1,3],[-1,3],[0,2],[0,2],[0,1],[1,3],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1],[1,1],[-1,2],[0,1],[-1,3],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,4],[0,1],[0,3],[0,1],[1,1],[1,-1],[0,-1],[1,1],[0,1],[0,5],[0,2],[0,4],[0,2],[1,0],[0,1],[1,-1],[1,0],[0,1],[1,1],[0,3],[0,1],[1,0],[1,-1],[0,-1],[1,0],[2,1],[1,1],[0,2],[-1,0],[0,2],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,3],[1,1],[0,1],[0,2],[1,0],[1,-1],[1,0],[1,0],[0,2],[1,1],[0,2],[0,1],[1,1],[0,1],[0,1],[-1,4],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,-1],[0,1],[0,2],[1,4],[0,2],[0,2],[-1,7],[0,1],[0,2],[0,2],[0,3],[0,3],[0,1],[-1,1],[0,1],[-1,4],[0,1],[0,1],[1,0],[0,1],[0,2],[-1,1],[-1,0],[-1,1],[-1,3],[1,3],[5,3],[0,5],[0,5],[0,5],[3,11],[-1,1],[0,1],[-1,2],[1,0],[1,1],[0,2],[1,6],[0,2],[0,1],[2,2],[0,2],[1,3],[0,2],[1,2],[1,1],[0,2],[-1,2],[0,2],[1,1],[0,1],[2,1],[1,0],[1,-1],[0,1],[2,2],[0,1],[0,1],[-1,3],[0,1],[0,1],[0,1],[0,1],[0,6],[0,3],[0,2],[-1,0],[0,2],[0,3],[0,1],[0,5],[0,2],[0,1],[1,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[1,4],[0,1],[0,1],[0,1],[1,0],[0,1],[0,4],[0,1],[0,1],[1,2],[0,1],[0,1],[0,3],[-1,3],[0,2],[-1,1],[-1,1],[-1,0],[-1,-4],[-1,0],[-1,4],[0,1],[-1,2],[-1,1],[0,1],[0,1],[1,4],[0,2],[-1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,3],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,2],[-2,4],[0,2],[-1,8],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[-1,2],[1,5],[-1,2],[0,1],[-1,0],[-1,1],[0,2],[0,2],[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],[1,0],[2,-1],[1,1],[0,2],[0,2],[1,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[-2,0],[-1,0],[-1,1],[-1,2],[0,1],[0,2],[0,1],[0,3],[-1,1],[0,3],[-2,6],[0,2],[0,1],[0,3],[0,3],[0,2],[0,2],[1,2],[0,1],[0,2],[0,1],[-1,1],[1,3],[0,1],[0,3],[0,1],[0,1],[2,6],[1,0],[0,-2],[0,-1],[0,-1],[1,0],[0,1],[1,1],[0,2],[0,1],[1,3],[2,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,2],[0,9],[1,3],[0,2],[1,1],[-1,1],[0,1],[1,1],[0,1],[0,3],[1,2],[0,5],[1,2],[0,1],[1,0],[0,1],[0,2],[0,1],[-1,3],[0,1],[1,1],[2,-3],[1,0],[1,0],[1,1],[1,1],[1,2],[0,1],[0,2],[0,2],[0,2],[0,1],[1,0],[0,1],[1,3],[-1,2],[0,2],[-1,1],[-2,0],[0,1],[0,1],[1,3],[0,3],[0,3],[1,9],[-1,6],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,2],[-1,7],[0,1],[0,1],[0,4],[0,1],[-1,1],[0,1],[0,1],[0,3],[0,2],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[2,0],[0,1],[1,1],[0,2],[0,2],[0,3],[0,2],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[1,3],[0,2],[0,1],[-1,3],[0,2],[0,2],[0,2],[1,2],[1,2],[0,1],[0,1],[0,7],[1,4],[1,3],[2,3],[1,3],[0,2],[0,3],[1,1],[0,-1],[1,-1],[1,1],[0,3],[1,2],[1,5],[0,1],[0,1],[0,1],[1,1],[0,1],[2,1],[1,1],[0,2],[1,11],[1,3],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,3],[1,2],[0,2],[-1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,7],[0,1],[0,3],[0,1],[1,2],[1,4],[0,1],[1,1],[1,1],[1,-1],[1,-1],[1,-2],[1,-1],[1,1],[0,2],[0,1],[1,2],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,0],[0,2],[0,1],[0,1],[0,3],[0,1],[0,2],[0,2],[-5,17],[-1,3],[-1,2],[-1,3],[0,4],[0,5],[0,3],[1,3],[1,2],[3,6],[0,3],[0,3],[-2,18],[0,6],[0,2],[-1,1],[0,2],[-1,1],[0,2],[0,2],[0,2],[0,1],[0,1],[-1,3],[0,1],[0,2],[0,2],[1,10],[1,8],[1,1],[0,1],[1,0],[0,1],[1,-1],[1,1],[1,1],[0,1],[-1,2],[-1,2],[-1,2],[1,3],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,4],[0,1],[0,2],[1,6],[1,3],[0,1],[0,1],[0,1],[1,-2],[0,1],[1,2],[1,6],[1,0],[1,0],[1,4],[0,2],[1,1],[0,1],[1,0],[1,2],[2,1],[1,2],[2,1],[3,3],[3,4],[4,4],[3,3],[1,0],[0,1],[1,0],[0,1],[1,1],[2,1],[0,2],[1,5],[1,7],[1,7],[0,1],[2,15],[2,15],[2,14],[0,4],[0,2],[-5,13]],[[3133,2561],[2,5],[0,3],[3,4],[0,1],[0,1],[0,7],[1,0],[1,0],[0,1],[0,2],[1,1],[3,2],[1,0],[0,1],[-1,2],[0,1],[1,1],[0,1],[0,6],[1,1],[0,2],[1,1],[1,0],[1,-1],[0,1],[0,1],[3,2],[4,2],[1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,6],[2,12],[3,-2],[1,-1],[1,-2],[0,-4],[3,-1],[0,-1],[4,-10],[1,-1],[0,-1],[4,1],[1,1],[2,0],[1,-1],[8,0],[5,1],[5,-3],[2,-3],[1,-1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-2],[0,-1],[2,-4],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,-4],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-3],[1,-1],[0,1],[0,6],[1,1],[0,5],[1,10],[0,2],[2,3],[0,3],[3,12],[0,1],[0,1],[1,5],[1,4],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[1,0],[1,0],[2,0],[1,-1],[1,-2],[1,2],[1,1],[1,0],[9,0],[8,0],[5,1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[1,-1],[0,-1],[1,-1],[2,-2],[0,-1],[0,-1],[0,-1]],[[6265,6994],[-1,-2],[-1,1],[0,1],[-1,0],[1,1],[0,1],[1,0],[1,0],[0,-2]],[[6249,7040],[1,-4],[0,-1],[0,-1],[1,0],[2,0],[0,-1],[2,-2],[0,-1],[0,-1],[-1,-1],[-3,0],[0,-2],[0,-2],[1,0],[1,0],[0,2],[0,-1],[1,-2],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,1],[1,0],[0,-1],[0,-3],[1,0],[0,-1],[1,-1],[1,-3],[0,-1],[1,0],[1,0],[0,-2],[0,-3],[-1,-1],[-2,-2],[-1,-2],[-2,-1],[0,-3],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-4],[2,-3],[6,-7],[1,-2],[1,-1],[0,1],[1,0],[0,-1],[1,0],[1,-2],[0,-1],[-1,-5],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[-2,0],[-5,1],[-2,-2],[0,-1],[0,-1],[1,-1],[3,0],[1,-1],[1,-1],[1,-5],[0,-1],[1,-2],[1,-1],[1,-1],[2,-1],[0,-1],[1,-5],[1,-1],[1,-1],[1,0],[0,-1],[1,-2],[0,-1],[1,-1],[1,1],[2,2],[1,0],[0,-1],[1,-2],[1,-1],[1,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[0,-1],[-1,-2],[1,-2],[0,-2],[2,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-2],[-1,0],[-1,2],[-1,0],[-1,-1],[0,-2],[1,-2],[1,-1],[0,-1],[1,-2],[0,-2],[0,-2],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-4]],[[6291,6872],[-3,3],[-1,0],[-1,0],[-1,-1],[-2,-2],[0,-1],[-2,0]],[[6281,6871],[-2,6],[-1,8],[-1,2],[0,2],[-1,2],[0,2],[0,2],[1,1],[0,1],[0,1],[-1,1],[-2,2],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[1,2],[1,3],[0,1],[-1,3],[1,2],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-3,-2],[-1,0],[-2,-3],[-1,0],[0,-1],[-1,1],[-1,2],[-2,0],[0,1],[-1,2],[0,2],[-1,0],[-1,-2],[-1,0],[-1,1],[0,1],[1,2],[0,2],[0,1],[-1,1],[-2,5],[-1,1],[-1,0],[-1,-2],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1]],[[6243,6929],[0,2],[-2,4],[0,1],[-1,0],[0,1],[-1,2],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,2],[-1,2],[-3,3],[-1,2],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,-1],[-4,1],[-3,3],[-2,2],[-2,1],[0,2],[0,1],[2,0],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,2],[-2,3],[0,1],[-1,1],[1,2],[0,3],[0,1],[-1,1],[-1,2],[0,1],[1,2],[1,1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[0,2],[0,1],[1,3],[0,2],[1,2],[0,1],[0,4],[0,2],[0,1],[-2,3],[0,2],[0,1],[0,2],[0,1],[-1,1],[0,3],[-1,1],[-2,1],[-1,1],[0,1],[-1,2],[0,2],[0,2]],[[6206,7028],[0,-1],[1,0],[0,1],[1,1],[2,0],[4,-1],[1,0],[2,2],[1,1],[2,0],[1,1],[1,0],[1,1],[1,-1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,-2],[1,-1],[0,1],[1,0],[0,1],[1,0],[1,-2],[1,0],[1,0],[0,1],[1,1],[0,-1],[0,-1],[1,-1],[0,1],[1,1],[0,1],[1,1],[1,-1],[4,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[3,-1],[1,0],[0,1],[1,1]],[[6249,7022],[1,0],[0,1],[0,2],[-1,1],[-1,-1],[0,-1],[0,-1],[1,-1]],[[6255,7018],[1,1],[-1,1],[-1,0],[1,-2]],[[3284,5352],[0,-1],[0,1],[1,1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,1],[0,1],[0,1],[-1,-1],[-1,0],[-1,1],[-1,1],[1,1],[0,1],[0,1],[-1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[0,-2]],[[3282,5392],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,2],[-1,0],[-1,2],[0,-1],[-1,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,2],[0,2],[-1,1],[1,2],[1,-2],[-1,0]],[[9412,330],[-1,0],[0,1],[0,2],[0,1],[0,3],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[1,4],[0,1],[1,0],[1,2],[0,-2],[-1,-4],[0,-2],[0,-3],[-1,-2],[0,-3],[0,-1],[0,-2],[-1,-1]],[[7037,452],[1,-1],[0,1],[0,1],[1,0],[0,-1],[0,-2],[1,1],[1,1],[0,-1],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[-5,-2],[-1,-2],[-1,-1],[-2,0],[-1,0],[-1,1],[0,1],[-1,2],[-1,3],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[0,2],[1,0],[0,1],[1,-2],[1,0],[0,-1]],[[9093,1124],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,1],[0,-1],[0,-3],[0,-1],[-1,-1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[2,-3],[0,1],[0,3],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,3],[1,1],[0,-1],[1,-5],[0,-2],[1,-1]],[[9095,1134],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,2],[0,1],[1,0],[0,1],[0,1],[-2,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2]],[[9115,1176],[-1,-2],[-1,0],[-1,0],[1,-2],[0,-1],[-2,-1],[0,-1],[0,-1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1]],[[9119,1196],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[-1,0]],[[9020,1310],[1,0],[0,1],[1,-1],[2,-1],[1,-1],[1,1],[1,-1],[0,-1],[1,0],[1,-1],[0,-2],[1,0],[0,-1],[1,0],[0,1],[0,1],[2,0],[1,0],[0,1],[0,2],[0,2],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,1],[1,-2],[1,-2],[1,-1],[3,0],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[3,-2],[3,-1],[2,0],[2,1],[2,1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[1,2],[1,2],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[1,3],[1,1],[2,0],[1,2],[0,1],[1,0],[0,-1],[4,-1],[1,1],[2,4],[1,-1],[1,1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,2],[1,2],[2,6],[0,1],[1,2],[1,0],[0,-1],[1,-1],[0,-1],[1,1],[1,-1],[1,-1],[0,-1],[1,0],[1,2],[1,1],[0,2],[1,2],[0,2],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-2],[0,-1],[1,0],[1,0],[2,-6],[1,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-2],[2,4],[1,0],[-1,-2],[-1,-9],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[1,-5],[-1,-1],[0,-1],[-1,-1],[1,-2],[0,-2],[0,-1],[1,-2],[0,-1],[0,-3],[0,-3],[0,-4],[1,-4],[0,-1],[-1,-2],[0,-1],[1,-1],[0,-1],[0,-3],[-1,-2],[0,-1],[0,1],[0,1],[-1,0],[-1,1],[1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,2],[-1,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[1,-2],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[-2,0],[-1,0],[-1,-1],[0,-2],[0,-3],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-2],[1,0],[0,2],[1,0],[0,-1],[0,-1],[-1,-2],[0,-2],[1,-3],[0,-3],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[-1,0],[1,-3],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[1,1],[-1,1],[0,1],[1,1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-3],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,3],[-1,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,2],[-2,4],[0,2],[1,1],[0,1],[-2,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-2],[0,-1],[-1,-1],[2,-3],[1,-1],[1,1],[1,0],[0,1],[1,1],[-1,0],[-1,0],[0,2],[0,2],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-2,-1],[-1,-1],[0,-2],[1,-2],[1,-4],[-1,-2],[0,-1],[0,-1],[-2,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,-1],[1,1],[0,1],[0,1],[-1,1],[0,1],[1,2],[-1,0],[0,-1],[-1,0],[0,1],[0,2],[-1,1],[-1,1],[-1,5],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-3],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-3],[-1,0],[0,1],[-1,1],[-1,-1],[1,-1],[1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-3],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,2],[0,-1],[0,-1],[-1,-1],[-1,1],[0,3],[0,2],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-2],[1,-1],[2,-3],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[2,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[-1,0],[1,-1],[1,-1],[1,-1],[-2,0],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,-2],[1,-1],[1,-1],[0,-1],[-1,-1],[-2,-2],[0,1],[0,1],[-1,0],[-1,0],[-2,-1],[0,1],[-1,2],[-1,2],[-1,0],[0,2],[0,2],[0,2],[-1,0],[0,-1],[0,-1],[0,-2],[0,1],[-1,-1],[-1,-1],[-3,1],[0,1],[-1,1],[0,-2],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[1,5],[-1,2],[0,3],[-2,2],[0,1],[1,0],[1,-1],[0,1],[-1,2],[3,-1],[1,0],[0,-2],[1,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[0,1],[0,2],[0,2],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[-1,-3],[0,-1],[-1,2],[0,2],[-1,0],[0,-1],[0,-2],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[-1,1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,3],[0,2],[-1,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,4],[0,1],[-2,0],[-1,3],[-1,2],[0,3],[-1,3],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,3],[0,1],[-1,-1],[0,1],[0,1],[-1,1],[-1,1],[1,3],[-1,1],[0,3],[-1,2],[1,3],[-1,4],[0,2],[0,2],[0,5],[-1,0],[0,2],[0,1],[1,-1],[0,-2],[1,-2],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[2,-3],[0,-1],[0,-3],[0,-3],[1,-2],[0,-1],[0,2],[0,5],[1,-1],[1,2],[0,1],[0,2],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,1],[-2,4],[0,1],[-1,1],[0,2],[-1,2],[0,1],[0,2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,2],[1,5],[0,6],[-1,5],[-2,4],[-2,4],[-1,2],[0,1],[-1,5],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,2],[-2,8],[-1,4],[-1,3],[-1,1],[0,1],[0,1],[1,0],[0,2],[-1,2],[-1,7],[-1,1],[0,2],[0,2],[0,2],[0,1],[0,3],[-1,2],[-1,4],[1,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,2],[1,0],[0,1],[1,1],[0,2],[0,2],[-1,7],[0,2],[1,1],[0,2],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1]],[[9028,1313],[0,-1],[1,-1],[-1,0],[-1,1],[-1,0],[-1,-2],[-1,0],[-1,0],[0,1],[0,3],[2,3],[0,1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1]],[[9116,1320],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[1,1],[1,0],[0,1],[2,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[9021,1331],[0,-6],[-1,-1],[0,-4],[0,-1],[-1,1],[0,1],[0,4],[0,1],[0,1],[1,0],[0,1],[1,4],[0,-1]],[[9024,1328],[-1,0],[0,1],[0,1],[-1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[-1,-1]],[[9121,1335],[1,0],[0,-1],[1,-2],[1,-1],[-1,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[0,-1],[0,3],[-1,2],[-1,0],[-1,-2],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[-1,0],[0,1],[-1,0],[0,2],[1,1],[1,2],[1,0],[1,0],[1,0],[1,-1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,-3],[0,-1]],[[9109,1381],[5,-13],[0,-1],[1,-2],[1,-1],[3,-1],[-1,-1],[0,-6],[0,-1],[-1,-2],[-1,-1],[1,-1],[1,1],[0,1],[1,1],[0,-1],[0,-2],[0,-3],[0,-1],[-1,2],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[0,-2],[-1,0],[-1,-1],[-2,1],[0,1],[-1,1],[1,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[1,2],[0,1],[0,1],[-1,2],[0,1],[0,2],[-1,0],[-1,-1],[-2,2],[1,1],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,-1],[1,0],[1,3]],[[9001,1357],[0,-1],[0,-1],[-1,0],[-3,-3],[-1,0],[0,1],[0,1],[0,3],[0,1],[0,3],[0,2],[-1,1],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[-1,2],[0,1],[1,1],[1,1],[0,-1],[1,-1],[1,-2],[1,-2],[0,-1],[0,-1],[0,-3],[0,-2],[1,-3],[0,-1],[-1,-1],[0,-4],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1]],[[9068,1448],[2,0],[1,0],[1,0],[1,0],[0,-1],[-2,0],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[0,1]],[[9036,1464],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,2],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[1,2],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,-1],[1,-1],[0,-1],[0,-1]],[[9037,1478],[2,0],[1,-1],[1,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-3],[0,-1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[1,3],[0,1],[0,1],[1,-1],[1,-1]],[[8822,1669],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[-1,-2],[-1,-3],[0,-1],[1,0],[1,0],[1,-1],[2,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,1],[0,2],[1,1],[0,1],[1,0],[2,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-3],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-3,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,-3],[-1,-1],[0,1],[-1,1],[-1,3],[-1,1],[-1,0],[-2,1],[-1,0],[0,-2],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,-2],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[0,2],[-1,2],[-1,1],[-1,0],[-1,3],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,2],[1,1],[2,1],[1,1],[1,0],[1,1],[8,3],[2,2],[3,2],[1,0],[0,1],[1,1],[3,-2],[1,1],[1,0],[1,1],[1,0],[1,0]],[[8791,1698],[0,-1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,-1]],[[8783,1705],[-1,0],[-1,0],[0,2],[0,1],[0,2],[-1,2],[-1,2],[1,0],[2,-5],[0,-1],[1,-1],[0,-1],[0,-1]],[[8815,1743],[0,-1],[-1,1],[0,1],[0,1],[1,2],[0,-2],[0,-2]],[[8735,1795],[-1,1],[1,2],[0,1],[0,1],[1,1],[1,-1],[0,-2],[-1,0],[-1,-3]],[[8710,1898],[-1,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[8212,1904],[1,-1],[-1,0],[0,2],[0,2],[0,1],[0,1],[0,-2],[0,-3]],[[8209,1919],[-1,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1]],[[9418,1953],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,2],[-1,1],[0,-1],[0,1],[1,0]],[[9664,2129],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,-1],[1,1]],[[8157,2165],[0,1],[0,1],[1,1],[0,1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-1]],[[9263,2240],[1,0],[0,-3],[-1,-3],[-1,-15],[0,-1],[-1,0],[-1,0],[0,2],[0,1],[0,2],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,2],[1,1],[-1,1],[0,2],[0,1],[1,2],[0,1],[0,3],[0,1],[1,0],[0,-1],[0,-1],[1,0]],[[9261,2244],[0,1],[0,1],[-1,2],[0,2],[0,1],[0,1],[-1,1],[0,4],[0,5],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[-1,-9],[0,-3],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1]],[[8137,2375],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,-3],[0,-2],[0,-4],[1,-2],[0,-3],[1,-3],[0,-4],[1,-2],[-1,-4],[0,-2],[1,0],[0,1],[0,1],[0,-1],[1,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,1],[0,2],[-1,3],[0,1],[0,1],[-2,4],[-1,2],[-1,7],[-1,3],[0,2],[0,1],[0,4],[-1,5],[0,3],[0,2],[0,2],[0,1],[1,1],[0,1]],[[9249,2386],[0,-1],[-1,3],[0,1],[0,1],[1,-3],[0,-1]],[[8140,2389],[0,1],[0,2],[0,5],[0,2],[0,5],[1,3],[0,1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-3],[0,-1],[0,-2],[0,-2],[0,-1]],[[8141,2410],[0,-1],[0,1],[0,1],[1,11],[0,4],[1,-2],[-1,-1],[0,-7],[0,-2],[0,-2],[-1,-2]],[[9257,2427],[0,-8],[0,-2],[0,-3],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-2,-12],[-3,-15],[-3,-14],[0,-2],[1,-2],[0,-2],[-1,-2],[0,-1],[-1,3],[-1,2],[0,1],[0,1],[0,4],[0,1],[-1,1],[0,2],[0,2],[0,1],[1,1],[0,2],[0,4],[0,1],[1,1],[0,1],[0,2],[1,1],[0,2],[0,4],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[3,5],[1,2],[1,2],[0,2],[1,2],[0,3],[0,3],[-1,2],[-1,3],[0,2],[-1,-1],[2,5],[1,2],[1,2],[0,-3]],[[9204,2488],[0,-1],[0,2],[-1,1],[0,2],[-1,2],[0,1],[1,0],[0,1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2]],[[9195,2517],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,1],[1,1],[0,1],[0,-2],[0,-3],[0,-1],[0,-2],[0,-2],[1,-2],[1,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,3],[0,1],[-2,4],[0,1],[-1,1],[0,1],[-1,3],[-1,2],[0,1],[1,1],[0,1],[0,1],[1,0]],[[9158,2588],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2]],[[9181,2598],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[9163,2603],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[-1,-2]],[[9176,2637],[0,-1],[0,-1],[-1,-1],[-1,2],[1,1],[0,-1],[1,1]],[[9174,2642],[0,-1],[0,-1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-1]],[[8205,2699],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,3],[1,2],[2,6],[1,1],[0,-1],[0,-2],[1,-1],[0,-1],[-1,-1],[0,-3],[0,-1],[-1,-1],[0,-1]],[[9141,2724],[-1,-1],[0,-1],[-1,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,2],[0,-2],[0,-1],[0,-1],[0,-1]],[[9139,2739],[1,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,-2],[0,-1],[-1,1],[-1,-1],[0,1],[0,2],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,2],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-2]],[[9137,2754],[0,-1],[0,-2],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,3],[-1,0],[0,1],[1,1],[0,-1],[1,1],[0,1],[0,-1]],[[9123,2756],[0,-1],[0,2],[0,1],[0,1],[0,1],[0,-1],[1,-1],[-1,-2]],[[9079,2820],[0,-2],[0,-1],[0,-1],[-1,1],[-1,-1],[0,1],[-1,1],[0,1],[1,1],[1,1],[0,-1],[1,0],[0,1],[0,-1]],[[9072,2846],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,1],[1,1],[0,2],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-2]],[[9061,2882],[1,-1],[1,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[-1,1],[-1,1],[0,2],[-1,3],[0,2],[-1,2],[0,1],[-1,2],[0,1],[-1,0],[0,1],[0,2],[1,0],[2,-2],[1,-1],[0,2],[0,2],[0,2],[0,-2]],[[8876,2961],[0,-1],[-1,0],[-1,-1],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,1],[-1,2],[1,0],[0,1],[1,1],[0,3],[1,1],[0,1],[0,1],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[8863,2978],[0,-1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[-1,-1],[-1,-1]],[[8880,3006],[0,-1],[-1,0],[1,0],[0,1],[1,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,1],[-1,2],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[0,-3],[-1,0],[-1,-2],[-2,0],[-1,1],[0,3],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,2],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,2],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,2],[0,1],[1,0],[0,1],[2,0],[3,1],[1,2],[1,1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1]],[[8796,3056],[-1,-3],[0,1],[-1,1],[0,1],[0,1],[0,2],[1,1],[1,1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[8799,3062],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,2],[0,2],[1,1],[-1,2],[1,0],[1,0]],[[8805,3066],[0,-1],[0,-2],[1,0],[1,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[0,-2],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,3],[0,2],[0,1],[-1,0],[0,-2],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,2],[1,1],[0,2]],[[8794,3065],[-1,-2],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,0],[1,1],[1,0],[0,-1],[0,-2],[0,-3]],[[8801,3064],[-1,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,-2],[0,-2],[1,-3],[-1,0],[0,-1],[0,-1]],[[8456,3086],[-1,0],[-1,0],[0,-1],[-1,1],[0,1],[1,1],[1,0],[0,2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[8459,3089],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-3],[1,0],[-1,-1],[-2,-2],[-1,0],[0,1],[0,1],[0,-1],[1,2],[0,1],[1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,-1],[0,1],[-1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,1],[1,2],[0,-1]],[[8560,3095],[0,-1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,5],[0,1],[1,-1],[0,-3],[0,-1],[1,0],[0,-2],[0,-1],[0,-2]],[[8470,3110],[-1,-1],[0,-1],[1,0],[0,-2],[-1,-1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[1,-2],[0,1],[0,1],[0,1],[0,-1],[1,-1]],[[8567,3106],[0,-1],[-1,1],[-1,4],[-1,2],[0,4],[1,0],[0,-1],[1,-4],[0,-1],[1,0],[0,-2],[0,-2]],[[8770,3115],[0,-1],[0,1],[-1,0],[0,-2],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-2]],[[8600,3116],[-1,1],[0,2],[0,2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[8599,3114],[0,-4],[0,1],[0,1],[-1,0],[0,2],[-1,3],[0,2],[-1,2],[1,1],[0,-1],[2,-4],[0,-2],[0,-1]],[[8477,3144],[0,-2],[-1,-2],[0,-1],[1,-2],[0,-1],[-1,-1],[-1,-1],[1,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,2],[0,1],[1,-1],[0,-1],[0,1],[0,3],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,-1]],[[8516,3185],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0]],[[8785,3196],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[1,1],[0,1],[0,1],[-1,3],[0,1],[-1,-1],[0,-1],[0,-2],[0,-2],[-1,1],[0,1],[0,7],[1,-2],[1,1],[0,2],[0,1],[0,1],[1,1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[8797,3199],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,1],[0,1],[0,2],[0,1],[0,3],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-4],[-1,1],[-1,-1],[-1,-2],[0,-2],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,-1],[1,-1],[0,-1],[-1,-2],[1,-2],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,-1],[2,-3],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,2],[-1,-1],[0,1],[-1,1],[-1,0],[-1,0],[-1,-2],[-1,1],[-5,4],[-1,1],[0,1],[-1,0],[-1,-1],[0,-2],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,4],[0,3],[1,4],[0,2],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,-2],[0,1],[1,0],[1,1],[-1,1],[1,1],[0,-2],[1,1],[0,-1],[0,2],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,1],[1,0],[1,2],[0,1],[1,0],[0,1],[0,-1],[0,-2]],[[8782,3215],[1,0],[-1,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,1],[0,1],[0,1],[0,1],[-1,2],[1,3],[0,2],[-1,1],[0,1],[0,1],[1,-2],[0,-2],[1,-2],[0,-1]],[[7689,3304],[1,0],[-1,-1],[0,1],[0,2],[0,2],[0,-1],[0,-1],[0,-1],[0,-1]],[[8800,3308],[0,-1],[-1,0],[0,1],[0,1],[0,2],[1,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[8677,3308],[-2,2],[0,1],[1,1],[1,0],[0,-1],[0,-2],[0,-1]],[[8747,3310],[0,-1],[-1,0],[0,1],[-1,2],[0,2],[1,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[8749,3314],[-1,-1],[-1,0],[0,1],[0,1],[1,1],[0,-1],[1,-1]],[[8785,3316],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,1],[-1,1],[1,1],[0,1],[-1,1],[1,-1],[1,0],[0,2],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,2],[0,1],[1,-1],[-1,-2]],[[8751,3321],[0,-1],[-1,1],[1,2],[1,-1],[1,0],[-1,-1],[-1,0]],[[8790,3324],[0,-1],[0,1],[0,2],[0,2],[0,2],[1,1],[0,-1],[-1,-4],[0,-1],[0,-1]],[[8793,3333],[0,-1],[0,-1],[-1,0],[-1,1],[1,1],[1,0],[1,2],[0,-1],[-1,-1]],[[8777,3337],[-1,0],[0,2],[0,2],[2,1],[0,-1],[0,-2],[-1,-2]],[[8682,3342],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,2],[0,1],[0,1],[1,2],[0,-1],[1,0]],[[8705,3341],[-1,-1],[0,1],[0,2],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1]],[[8790,3350],[-2,-2],[-1,-3],[-1,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-2],[0,1],[0,2],[1,0],[0,1],[1,1],[0,1],[0,2],[1,0],[0,-1],[1,-1],[0,1],[1,3],[0,-1],[0,1],[1,1],[1,1],[0,2],[1,1],[0,1],[0,-2],[0,-2],[0,-1]],[[8708,3352],[-1,-1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0]],[[8621,3354],[0,-1],[0,-2],[0,-2],[2,-2],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,1],[1,0],[1,-1],[1,-1],[1,-3],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,2],[-1,0],[-1,-1],[-1,0],[-3,-3],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,4],[0,1],[1,0],[1,-2],[1,0],[0,2],[1,1],[0,2],[-1,6],[1,1],[0,1],[0,1],[-1,1],[-1,0],[1,3],[1,1],[0,1],[1,1],[0,3],[1,1],[0,1],[1,0],[1,1],[0,-2],[0,-2],[1,-2],[0,-2],[0,-1],[0,-2]],[[8624,3367],[1,-1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[1,0],[0,1],[1,3],[1,1],[0,-1],[-1,-3],[1,0],[0,-1],[0,-2],[1,-1],[0,4],[2,1],[2,1],[1,1],[0,2],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-3],[0,-1],[0,1],[0,6],[1,0],[0,1],[1,1],[1,2],[1,-1],[0,-1],[0,-2],[0,-1],[1,-4],[0,-1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,2],[0,1],[0,1],[1,1],[1,1],[0,-1],[0,-1],[1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[0,1],[-1,0],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-2,-7],[-1,-1],[0,-2],[-1,0],[-1,-1],[0,-1],[0,-1],[-3,-4],[-4,-7],[-1,0],[0,2],[-1,2],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[0,1],[0,1],[-2,3],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[0,2],[0,5],[0,1],[-1,1],[-1,2],[0,1],[0,8],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,2],[0,1],[-1,2],[0,2],[1,1],[0,1],[0,1],[1,-3],[2,-6]],[[8798,3385],[0,-1],[0,-4],[-1,-3],[0,-2],[0,-3],[-1,0],[0,-1],[-1,-2],[0,-2],[-1,-3],[0,-1],[-1,-3],[-1,-3],[0,-1],[-1,0],[0,-1],[-1,1],[1,0],[0,1],[-1,1],[1,1],[1,2],[0,1],[1,1],[0,1],[0,2],[0,1],[1,3],[1,4],[1,0],[0,3],[1,1],[0,2],[0,1],[0,1],[0,1],[0,2],[1,0],[0,-1],[0,1]],[[8682,3384],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-3],[0,-2],[0,2],[-1,2],[0,3],[0,2],[-2,3],[0,1],[1,0],[0,1],[0,1],[0,3],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,-1],[1,0],[0,1],[0,2],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[8959,3407],[1,-2],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-2],[1,1],[1,1],[0,2],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-3],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[1,1],[1,0],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-3],[-1,-2],[1,0],[0,-1],[0,-2],[0,-3],[0,-2],[1,-10],[-1,-6],[1,-1],[0,-1],[1,-3],[1,0],[1,-2],[1,0],[1,1],[1,1],[1,-1],[1,-3],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-3,-10],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-3],[1,-1],[1,0],[1,0],[1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[0,-5],[0,-1],[1,-1],[0,-2],[1,-1],[1,0],[1,-1],[0,-2],[0,-2],[0,-2],[0,-1],[-1,-3],[0,-1],[-1,-4],[0,-4],[0,-2],[1,2],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[-1,-6],[1,-3],[0,-3],[-1,-5],[1,-9],[0,-9],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-5],[1,-1],[0,-1],[0,-1],[-1,-4],[0,-2],[0,-4],[-1,-3],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,-3],[0,-1],[1,-4],[0,-1],[0,-2],[0,-6],[1,-10],[1,-4],[1,-2],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,2],[1,1],[1,3],[1,1],[1,1],[0,1],[0,1],[0,2],[0,2],[0,2],[1,1],[0,-1],[0,-1],[0,1],[1,0],[0,-2],[0,-1],[1,0],[1,-1],[3,5],[1,0],[0,3],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-4],[0,-1],[0,-2],[0,-3],[0,-1],[1,0],[1,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-3],[0,-2],[1,-1],[0,-1],[1,-2],[0,-1],[2,1],[1,-1],[0,-2],[0,-1],[1,0],[2,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-4],[1,-1],[1,-3],[1,-1],[0,1],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-2],[0,-1],[2,-5],[1,0],[0,-2],[-2,-7],[0,-1],[-1,-5],[1,-1],[0,-2],[0,-2],[0,-1],[1,-1],[0,1],[1,0],[0,2],[0,-1],[1,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,1],[1,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[1,0],[0,-2],[0,-1],[-1,-2],[1,0],[1,-6],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[1,-1],[1,-4],[0,-2],[1,-3],[0,-2],[-1,-5],[0,-3],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[-1,-2],[0,-5],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[0,-2],[0,-1],[0,-1],[1,-2],[1,-3],[0,-1],[0,-1],[1,-1],[0,-1],[1,-3],[1,-1],[1,-1],[0,-2],[0,-1],[1,-1],[1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,2],[1,2],[0,1],[1,-1],[0,-1],[1,2],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-3],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-1],[1,-5],[1,-1],[0,-2],[0,-1],[0,-1],[1,-4],[0,-4],[1,-1],[0,-1],[1,-1],[0,-1],[0,-3],[0,-4],[0,-2],[1,-3],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-4],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-5],[-2,-6],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[2,-6],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[1,-5],[-1,-1],[1,0],[1,0],[0,-1],[1,1],[1,-1],[0,-3],[0,-3],[0,-2],[-1,-5],[-1,-8],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[0,-2],[2,-4],[0,-1],[1,-2],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[2,-3],[1,-1],[1,2],[1,-1],[0,-2],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,1],[1,2],[0,1],[0,2],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[1,-4],[1,1],[2,-1],[0,-1],[1,0],[0,1],[4,0],[1,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,-1],[1,-2],[1,-8],[2,-5],[0,-1],[0,-1],[0,-2],[1,-2],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[1,-1],[0,-1],[0,-2],[2,-5],[1,0],[2,0],[0,4],[-1,0],[0,1],[0,5],[2,-2],[1,-1],[0,-7],[1,-2],[0,-1],[1,-2],[1,-1],[2,0],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,-2],[1,-1],[0,-1],[2,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[1,-2],[1,-1],[-1,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,-4],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,-1],[-1,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[0,2],[1,-1],[1,-2],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[2,-2],[-1,0],[0,-2],[1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-2],[0,-1],[1,1],[1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,2],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-2],[0,-1],[1,0],[0,-1],[0,-2],[0,-3],[-1,-4],[0,-2],[1,-4],[0,-1],[1,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[0,1],[2,2],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,1],[0,1],[0,2],[1,0],[0,-1],[0,-2],[-2,-3],[0,-1],[0,-2],[1,-3],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[1,-5],[1,-1],[0,-3],[0,-1],[1,-5],[0,-1],[-1,0],[0,-1],[1,0],[0,-2],[1,-2],[0,-1],[-1,-1],[0,-1],[2,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,-1],[1,0],[1,1],[1,2],[1,2],[0,2],[1,1],[0,-1],[1,-2],[0,-2],[0,-1],[3,-5],[0,-1],[0,-2],[1,-2],[0,-2],[1,-1],[-1,7],[-1,10],[-1,2],[0,1],[0,2],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,3],[0,2],[0,1],[0,1],[1,0],[1,1],[1,-1],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[1,-1],[2,-2],[1,-2],[1,0],[1,-1],[0,-1],[1,-2],[0,-1],[1,0],[1,-1],[1,-1],[2,-4],[-1,1],[0,2],[0,2],[0,1],[0,1],[-1,2],[0,3],[0,5],[1,3],[0,-1],[0,-1],[1,1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,2],[-1,-1],[1,-1],[0,-2],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[1,1],[0,1],[0,2],[0,2],[1,-1],[0,-2],[-1,-4],[1,-1],[0,-2],[1,-2],[0,-1],[0,-1],[-1,-3],[0,-3],[0,-2],[0,-3],[0,-1],[0,-1],[-1,-1],[0,1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-6],[0,-3],[1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-2],[-1,-2],[0,-7],[1,-2],[1,-3],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[1,1],[1,1],[1,-1],[1,0],[0,-1],[1,-2],[0,-1],[1,-2],[1,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[2,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-2],[2,-4],[0,-2],[1,-1],[0,-1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,-1],[1,-1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[1,-1],[-1,-1],[1,-2],[0,1],[1,2],[0,-2],[0,-3],[1,-2],[0,-1],[1,-2],[1,-1],[0,1],[0,1],[1,0],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-12],[2,-7],[1,-2],[1,-4],[0,-2],[5,-7],[1,0],[2,-2],[1,-1],[0,-3],[1,-3],[0,-3],[0,-6],[0,-1],[2,-7],[0,-1],[1,-1],[1,-1],[0,-2],[-1,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-2],[0,-6],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[1,1],[2,2],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[1,-4],[0,-2],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-4],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,4],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-2],[0,-3],[0,-2],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[0,-2],[-1,-3],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-4],[0,-1],[-1,-7],[0,-2],[0,-2],[0,-1],[1,-1],[1,-1],[0,-1],[-1,-2],[0,-2],[0,-13],[0,-2],[1,-1],[0,-3],[0,-2],[0,-2],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[2,-8],[0,-2],[-1,-2],[-1,1],[-1,0],[-1,-2],[0,-2],[-1,-1],[0,-1],[0,-2],[1,0],[1,0],[0,1],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-3],[0,-1],[1,-2],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[1,-2],[0,-5],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,2],[0,-2],[0,-3],[0,-1],[0,-4],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[1,0],[0,1],[0,1],[0,-3],[1,-6],[0,-1],[0,-2],[1,-2],[1,-2],[1,0],[0,-2],[0,-3],[0,-2],[0,-3],[0,-10],[0,-3],[0,-6],[0,-1],[1,-3],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-3],[-1,-2],[-1,-3],[-2,-4],[0,-2],[-1,-3],[0,-1],[0,-4],[0,-1],[0,-1],[-2,-5],[0,-2],[0,-3],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-2],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[-1,-3],[-1,-6],[0,-2],[0,-2],[-1,-5],[-1,-1],[0,-2],[-1,-3],[0,-1],[0,-6],[0,-4],[-1,-1],[0,-6],[0,-1],[0,-6],[1,-3],[0,-1],[1,0],[0,1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-3],[0,-3],[-1,-2],[0,-1],[0,-5],[-1,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-2],[-1,0],[0,-2],[-1,-2],[1,-1],[0,-1],[-1,-1],[-1,-3],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-2],[-2,-3],[-2,-7],[1,-1],[-1,-2],[0,-2],[0,-1],[-1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-4,-4],[-1,-1],[-2,-4],[0,-2],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,-1],[1,-1],[0,-1],[2,0],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-2,-1],[-1,-1],[-2,-2],[-1,-1],[0,-1],[-1,-2],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-2],[1,-1],[-1,-1],[-1,-2],[0,1],[0,1],[1,1],[-1,1],[-1,0],[-1,-3],[1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,1],[-1,2],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[1,3],[1,0],[0,-1],[0,-2],[0,-2],[0,-1],[0,1],[0,1],[1,2],[0,-1],[-1,-4],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-2],[0,-1],[-1,0],[-1,2],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,-1],[1,0],[0,1],[2,-1],[0,-1],[-1,-1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[-1,-2],[0,-2],[-1,-3],[-1,-2],[-1,-2],[1,-3],[-1,-3],[0,-3],[0,-2],[0,-1],[-1,-2],[0,-1],[0,1],[0,1],[-1,0],[-1,-3],[1,0],[1,-1],[0,-2],[1,0],[-1,-1],[0,-1],[-1,-9],[0,-2],[-1,-1],[-1,-1],[0,-3],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[-1,-1],[1,0],[-1,-2],[1,-1],[1,-1],[1,-1],[-1,-2],[0,-1],[0,-1],[-1,-2],[0,1],[0,1],[-1,0],[1,1],[0,1],[-1,2],[1,1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,2],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-4],[0,-1],[-1,-2],[-1,-4],[-1,-4],[0,-2],[-1,0],[-1,1],[-1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-3],[0,-1],[0,-2],[0,-1],[0,-5],[0,-2],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[1,1],[0,-1],[1,-1],[0,-1],[-1,-3],[0,-1],[0,-2],[1,-4],[0,-1],[-1,-1],[1,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[1,-3],[0,-2],[-1,-1],[0,-3],[-1,-4],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[1,1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-4],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-2],[0,-3],[0,-3],[0,-3],[0,-2],[0,-1],[-1,-2],[-1,-1],[-3,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,1],[-1,0],[1,-3],[0,-2],[0,-1],[-1,-1],[0,-2],[-1,-3],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-4,0],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[-2,0],[-1,0],[0,1],[-1,-1],[-5,0],[-1,0],[-3,-1],[-1,0],[0,-1],[-1,0],[-3,1],[-8,-1],[-5,-3],[-6,-4],[-5,-5],[-4,-6],[-6,-10],[-6,-12],[-2,-6],[-3,-7],[-2,-4],[-1,0],[0,-1],[-1,-3],[0,1],[0,1],[0,1],[-4,-2],[-2,0],[-1,-2],[-1,0],[-1,0],[-2,0],[0,-1],[-1,-1],[0,1],[-1,1],[-1,1],[-2,-1],[-1,0],[0,-1],[-1,-2],[1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-2],[1,0],[1,0],[0,1],[1,2],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,3],[0,4],[-2,5],[-3,3],[-2,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[-1,0],[0,1],[0,4],[-1,5],[-1,3],[-2,3],[0,1],[1,0],[1,-2],[1,-1],[-1,3],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,-2],[-1,0],[-1,1],[-1,5],[-1,1],[-2,2],[-1,0],[-1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,1],[1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,2],[0,1],[-1,3],[0,1],[-1,0],[-1,0],[-2,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-2,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-2,-1],[-1,0],[-1,2],[-5,9],[-1,1],[0,1],[1,-1],[1,-1],[1,-2],[2,0],[1,0],[2,2],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,3],[0,3],[0,2],[0,3],[-1,2],[-1,1],[0,1],[-1,2],[0,3],[-1,1],[0,2],[-1,1],[-1,-1],[0,-2],[-2,1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,-2],[0,-1],[0,-1],[-3,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,-1],[-2,0],[-1,-1],[0,-2],[1,-1],[1,0],[3,-1],[1,0],[0,1],[2,3],[2,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,0],[-2,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-2,-4],[-2,-2],[0,-1],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-2,-3],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-3],[0,-1],[-1,0],[0,-1],[0,-1],[-3,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,1],[-1,2],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-3,-1],[-1,1],[-1,2],[0,1],[-1,3],[-1,1],[-1,1],[-3,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,3],[-1,1],[-2,3],[-2,2],[-1,2],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,1],[-1,1],[0,1],[-3,0],[-1,-1],[0,-1],[-1,-1],[-2,0],[-2,3],[-3,4],[-1,2],[-1,0],[-1,0],[-3,1],[-1,0],[-2,-2],[-1,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-2],[-1,-1],[0,1],[-1,2],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-4,8],[-2,3],[-5,4],[0,1],[-1,1],[-6,-2],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-2,4],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[-1,5],[0,1],[-1,5],[-1,1],[-2,4],[-1,1],[0,1],[1,0],[0,2],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,1],[-6,15],[0,4],[-1,3],[0,1],[1,1],[0,1],[0,2],[-1,1],[0,2],[0,3],[-1,1],[0,1],[-1,1],[0,1],[3,4],[1,2],[1,2],[0,3],[0,2],[0,10],[0,1],[-4,17],[-2,12],[-2,9],[-1,1],[0,2],[-2,3],[0,1],[0,1],[-5,11],[-2,4],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[1,0],[1,-1],[10,-18],[3,-6],[1,-3],[2,-5],[1,-5],[2,-8],[0,3],[-2,8],[0,2],[0,1],[-4,9],[0,1],[-1,1],[-1,1],[0,2],[-6,10],[-2,3],[0,1],[-1,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,2],[0,1],[1,1],[1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[1,0],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-2,4],[0,1],[-1,0],[-1,1],[1,1],[1,1],[2,-1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,3],[0,1],[-1,-2],[0,3],[-1,2],[-2,1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[2,-1],[0,-1],[0,-1],[-1,0],[-2,1],[-1,1],[0,1],[-2,0],[0,-1],[0,-1],[2,-1],[1,0],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-5,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,3],[1,1],[0,2],[0,1],[0,1],[1,1],[3,3],[0,1],[1,2],[1,3],[0,1],[1,1],[1,1],[1,1],[0,1],[0,3],[0,2],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,4],[1,2],[1,2],[0,1],[0,3],[-1,6],[0,3],[0,5],[0,2],[1,0],[0,-1],[1,-1],[0,1],[0,2],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[-1,2],[-1,1],[0,2],[0,1],[-1,2],[-1,1],[0,3],[-1,8],[-1,3],[-1,1],[0,1],[0,2],[0,1],[-2,5],[0,1],[-1,-1],[0,-2],[0,-1],[-1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[-2,-3],[-1,-4],[-1,-1],[-1,-7],[0,-1],[0,-2],[0,-1],[1,-3],[0,-1],[-1,-2],[0,-1],[0,-5],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-3],[-1,-4],[0,-3],[0,-1],[0,-1],[-1,-1],[1,-3],[0,-2],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,1],[-1,2],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-2],[-2,0],[-1,0],[-1,-2],[0,-2],[-1,-1],[-1,0],[-2,1],[-2,-2],[-1,-2],[-1,-1],[-1,0],[0,2],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,2],[0,1],[0,2],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,4],[0,1],[1,0],[1,-2],[2,0],[2,1],[1,1],[1,-1],[0,-1],[2,-1],[1,-1],[0,1],[1,2],[0,2],[0,3],[0,3],[1,2],[0,1],[0,2],[0,1],[1,7],[0,2],[-1,2],[0,2],[0,3],[0,1],[-1,2],[0,-1],[0,-1],[-1,0],[1,4],[0,1],[1,0],[0,1],[0,2],[0,5],[0,2],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,4],[0,1],[0,1],[0,2],[0,1],[-1,0],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[1,2],[1,2],[1,1],[1,4],[0,2],[1,0],[2,5],[0,2],[1,1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,2],[0,2],[-1,1],[0,2],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[-1,2],[0,3],[1,0],[0,2],[0,1],[0,1],[2,1],[1,3],[1,-1],[0,1],[1,0],[0,-1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,16],[0,1],[1,1],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[0,2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-3],[0,-5],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,2],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-2,-5],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-2,-5],[0,-1],[0,-6],[0,-1],[0,-1],[-2,-4],[0,-1],[-1,-8],[-1,-3],[-1,-1],[0,-1],[-1,-2],[-1,0],[-1,0],[-2,-1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,1],[1,0],[-2,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-2,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,-2],[0,-1],[-2,0],[0,-1],[-2,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-2],[-2,-7],[-1,-1],[-1,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[-1,1],[0,2],[0,1],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[-1,2],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,2],[1,0],[0,-1],[1,1],[0,1],[0,1],[0,-1],[0,-3],[0,-1],[0,-2],[-1,-1],[0,-1],[1,-5],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[0,3],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,2],[-1,1],[-1,0],[-1,-2],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[0,2],[-3,6],[-1,3],[0,2],[-1,1],[-1,1],[-1,1],[-1,0],[1,2],[0,1],[-1,1],[-1,2],[-1,2],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[1,3],[0,1],[0,2],[1,1],[0,1],[1,1],[0,1],[0,1],[0,-1],[0,-2],[0,-2],[1,-1],[2,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,1],[2,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,10],[-1,3],[-1,3],[-1,0],[0,2],[0,1],[1,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[-1,0],[0,4],[0,1],[0,1],[-1,2],[-1,4],[0,1],[-1,0],[0,1],[-2,5],[-2,4],[-1,2],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,3],[0,1],[0,2],[-1,4],[0,3],[0,1],[-1,2],[-1,3],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[-1,1],[0,2],[-1,0],[-2,2],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,3],[0,1],[-2,0],[-1,3],[-1,0],[-1,-1],[-1,-1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-2,3],[0,1],[0,2],[0,1],[-1,4],[0,1],[-1,0],[-1,0],[-1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,2],[-1,2],[-1,3],[0,1],[0,1],[1,0],[1,-1],[2,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,2],[0,1],[-1,5],[-1,3],[0,2],[-1,2],[-2,3],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,1],[-1,-2],[0,-1],[-1,-1],[-1,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,2],[0,1],[1,1],[0,2],[0,1],[1,-1],[0,-1],[1,1],[0,1],[0,1],[-1,3],[0,1],[-1,1],[-1,2],[0,2],[-1,0],[0,-1],[-1,0],[0,1],[0,2],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[-1,1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,1],[-1,0],[0,1],[0,2],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[-2,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-2,5],[0,1],[-1,0],[-1,-1],[0,1],[0,1],[-1,1],[-2,3],[-1,2],[-1,3],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[-1,1],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,1],[-1,2],[-1,4],[-1,2],[-4,6],[-4,7],[-7,8],[-5,5],[-5,4],[-1,0],[-1,-1],[-3,-4],[-5,-4],[-1,0],[-2,0],[-5,2],[-6,0],[-1,0],[-3,0],[-1,0],[-2,-1],[-3,0],[-6,-2],[-6,0],[-1,-1],[-1,-1],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-2],[-1,0],[-3,-1],[-1,-1],[-5,-5],[0,-1],[-1,-1],[-2,-3],[-12,-12],[-6,-4],[-7,-3],[-5,-4],[-1,-1],[0,-1],[-7,-5],[-5,-1],[-1,0],[-1,-1],[-3,1],[-3,-1],[-1,1],[-1,-1],[-2,-1],[-9,3],[-2,2],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,0],[-2,-2],[-1,-2],[-2,-3],[-4,-6],[-4,-6],[-1,-1],[-4,-2],[-3,-3],[-4,-5],[-2,-1],[0,-1],[-1,0],[-2,-7],[-2,-2],[-3,-2],[-1,-1],[-5,-1],[-4,-2],[-2,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-4],[-1,-2],[0,-3],[0,-3],[0,-1],[-1,-1],[0,-1],[-1,-5],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-3],[0,-1],[0,-4],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-2,-1],[-1,-4],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,-4],[0,1],[-1,0],[0,1],[0,1],[-3,0],[-1,0],[0,-2],[-2,-4],[-1,-1],[-1,-1],[-1,0],[0,1],[0,4],[-1,2],[-1,2],[-1,1],[-1,1],[0,-1],[-1,0],[-3,-2],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[-1,-1],[-2,1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,-1],[-3,2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[-2,0],[-1,1],[1,2],[0,1],[-1,3],[0,2],[0,1],[0,1],[-1,1],[-1,2],[-2,0],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,2],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-4,1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,1],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-5,0],[0,-1],[0,-1],[-1,-1],[-3,-2],[-1,0],[-3,2],[-3,1],[0,-1],[-1,-1],[-1,0],[-1,2],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[-2,-4],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-5],[-1,-2],[-1,-1],[0,-2],[0,-2],[0,-2],[0,-1],[1,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,2],[-1,0],[-1,-1],[0,-2],[0,-2],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-5,2],[-1,-1],[-2,0],[1,-2],[1,-1],[-1,-1],[-2,0],[-1,-2],[0,-1],[-1,0],[0,-2],[0,-1],[1,0],[-1,-3],[-2,-1],[0,-2],[-1,0],[-3,-1],[-1,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-2,1],[-2,-1],[-1,-2],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,1],[-2,2],[0,-1],[0,1],[0,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,0],[0,-3],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,3],[-2,1],[-2,1],[-1,-1],[0,-2],[-1,-1],[0,-3],[0,1],[-2,2],[-1,1],[-1,0],[0,1],[-2,2],[-1,1],[0,1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,-1],[0,1],[-1,0],[0,-1],[-1,-2],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-2],[-1,-1],[-1,1],[-1,0],[-1,1],[-1,1],[0,-1],[-2,0],[-1,-1],[0,-1],[0,1],[-1,1],[-2,1],[0,1],[-1,0],[-1,0],[-1,2],[-1,1],[0,2],[2,-1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[0,2],[-1,0],[0,1],[0,-1],[0,-2],[0,-1],[-1,0],[-2,1],[-1,1],[-4,3],[-2,1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[-1,2],[-1,1],[-4,10],[-3,7],[-2,1],[-1,1],[0,1],[0,1],[-1,0],[-4,5],[-1,1],[-1,0],[-2,0],[-1,-1],[-1,-3],[0,-1],[0,2],[-3,5],[0,2],[0,2],[0,2],[0,1],[0,2],[-1,3],[0,1],[0,1],[0,10],[0,3],[0,2],[0,1],[0,3],[0,1],[0,2],[-1,2],[0,3],[1,2],[1,2],[0,1],[0,1],[-1,4],[0,1],[1,0],[1,-1],[1,-2],[0,-2],[1,-1],[1,-2],[1,0],[1,-1],[1,0],[2,1],[1,1],[1,1],[1,1],[2,6],[2,6],[0,4],[1,3],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,2],[0,4],[0,1],[0,-1],[0,-2],[-1,-3],[0,11],[0,7],[0,6],[-1,9],[0,6],[-1,2],[0,2],[1,3],[0,2],[1,4],[1,2],[0,-3],[-2,-4],[0,-3],[1,-6],[1,-2],[0,-1],[1,1],[0,2],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,-1],[1,0],[1,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,3],[0,2],[0,2],[-1,2],[1,1],[0,1],[0,2],[-1,0],[0,1],[-1,1],[2,0],[0,1],[0,2],[0,1],[1,3],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,9],[0,10],[-1,6],[0,3],[-3,7],[-1,8],[-3,9],[-2,12],[-2,10],[-2,8],[-1,3],[-1,5],[0,1],[-2,8],[0,1],[0,1],[-1,6],[0,1],[0,3],[0,1],[0,5],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,2],[1,9],[0,2],[-1,2],[0,1],[0,6],[0,6],[1,6],[0,4],[0,1],[0,2],[-1,3],[0,3],[0,2],[0,1],[0,1],[-1,3],[0,4],[-2,9],[0,1],[-5,12],[0,1],[-1,3],[0,1],[-1,3],[0,1],[0,3],[0,3],[0,3],[-1,10],[-1,2],[-2,6],[-2,5],[0,1],[0,2],[-2,4],[0,1],[-1,1],[0,1],[-3,6],[0,2],[0,1],[0,2],[0,1],[-1,8],[0,3],[0,3],[0,1],[0,3],[0,1],[0,1],[1,1],[0,1],[0,1],[-2,17],[-2,9],[-2,10],[-5,18],[-3,10],[-2,7],[-1,3],[-2,5],[-3,7],[0,1],[-1,2],[-1,1],[0,2],[0,1],[0,1],[0,2],[0,2],[-1,3],[-1,2],[-1,2],[-1,2],[1,1],[0,-1],[1,-1],[0,-1],[1,0],[0,-2],[1,-2],[0,3],[0,2],[0,3],[0,2],[0,3],[0,2],[1,2],[0,-9],[0,-8],[0,-2],[0,-3],[1,-1],[0,-2],[0,-2],[1,0],[0,2],[-1,3],[0,3],[0,3],[1,1],[0,8],[-1,4],[0,2],[1,-3],[0,-9],[1,2],[1,0],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-2],[0,-4],[0,-1],[0,-3],[-1,-2],[1,-1],[0,1],[0,2],[0,2],[0,1],[1,3],[-1,3],[0,1],[0,2],[1,0],[0,-1],[0,-1],[0,-2],[1,-2],[-1,-2],[1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[1,1],[0,1],[0,2],[0,2],[0,1],[0,2],[1,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,2],[0,1],[1,0],[0,1],[1,0],[1,1],[0,-1],[1,0],[0,2],[0,1],[1,1],[0,1],[1,2],[0,2],[0,3],[-1,2],[1,1],[0,3],[-1,2],[-1,1],[0,2],[-1,2],[-1,0],[-2,1],[0,2],[0,1],[0,1],[-1,2],[-1,3],[-1,1],[0,2],[0,1],[0,2],[0,1],[-1,2],[1,2],[-2,1],[1,2],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,3],[0,2],[0,1],[0,2],[0,1],[1,2],[0,3],[1,2],[0,2],[0,-2],[1,-3],[0,-1],[0,-2],[1,0],[0,-1],[1,-2],[0,-3],[1,-2],[0,-1],[1,-2],[1,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[2,6],[0,3],[0,3],[0,3],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[0,-4],[0,-3],[1,-1],[0,-4],[0,-2],[1,-2],[0,-2],[0,-2],[0,-1],[1,-5],[2,-3],[0,-1],[1,0],[0,2],[1,1],[0,1],[1,1],[1,1],[0,2],[0,2],[0,3],[0,2],[-1,1],[0,2],[0,2],[1,2],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,2],[0,1],[0,-1],[1,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,2],[1,1],[0,2],[0,1],[0,2],[0,1],[-2,2],[-1,0],[0,2],[0,1],[0,1],[-1,2],[0,1],[-1,2],[-1,1],[0,1],[-1,5],[-1,5],[-1,3],[-2,10],[0,2],[0,1],[-1,4],[0,2],[-1,1],[-1,2],[-1,1],[-1,1],[0,2],[0,2],[-1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,2],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[-2,6],[-3,7],[0,3],[-1,3],[0,3],[0,11],[0,2],[0,1],[1,1],[0,2],[0,1],[0,3],[0,3],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,2],[0,1],[1,2],[0,2],[1,6],[0,1],[1,1],[1,7],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,5],[1,3],[0,2],[-1,6],[0,4],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,8],[-1,2],[0,2],[0,2],[-1,4],[-1,3],[0,1],[-1,0],[-1,0],[1,3],[0,2],[-1,1],[0,3],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,3],[0,1],[1,4],[0,1],[0,2],[1,2],[0,1],[3,16],[0,1],[0,1],[0,2],[1,2],[0,5],[2,6],[1,2],[1,1],[1,1],[1,1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-13],[-1,-3],[0,-2],[0,-2],[1,-1],[0,-3],[0,-1],[0,-3],[0,-1],[1,0],[0,2],[0,1],[0,-1],[1,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[1,-1],[1,0],[0,1],[1,1],[0,2],[1,0],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[1,4],[0,2],[0,2],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-2],[1,-1],[0,-1],[1,6],[1,2],[0,1],[0,1],[1,3],[0,1],[0,1],[1,0],[0,1],[0,1],[2,2],[5,6],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[1,-1],[3,4],[6,6],[1,1],[0,1],[0,2],[1,1],[1,1],[1,6],[1,2],[1,1],[4,5],[1,3],[0,2],[1,3],[1,2],[1,2],[0,1],[1,0],[1,2],[1,0],[0,1],[1,1],[1,0],[1,1],[0,2],[1,3],[0,3],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,2],[1,0],[1,1],[1,0],[1,2],[1,1],[0,2],[1,0],[1,1],[3,5],[1,3],[1,4],[1,1],[-1,1],[1,0],[1,0],[0,-1],[-1,0],[0,-2],[0,-3],[-1,-1],[0,-1],[0,-1],[2,-3],[0,-1],[1,0],[0,1],[1,0],[1,1],[0,1],[3,4],[1,-1],[0,-1],[0,1],[1,2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-2],[1,-1],[1,0],[2,1],[2,1],[1,1],[1,1],[1,1],[1,-1],[1,1],[0,-1],[1,2],[1,-1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[6,9],[1,0],[0,1],[0,-1],[0,-1],[1,1],[0,-1],[1,0],[0,1],[1,1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,1],[4,2],[0,-1],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,2],[1,0],[1,0],[1,2],[1,1],[0,4],[3,6],[0,2],[0,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,0],[1,-3],[0,2],[0,1],[1,1],[1,0],[2,-2],[1,0],[1,-1],[1,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,-2],[1,0],[0,-1],[1,0],[1,2],[1,0],[0,2],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[3,2],[4,1],[5,2],[4,2],[8,8],[4,4],[4,5],[5,7],[1,3],[1,1],[3,8],[3,9],[3,11],[0,4],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,3],[1,3],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,2],[1,0],[1,0],[1,1],[2,3],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[1,1],[0,4],[1,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[3,6],[0,2],[1,2],[1,2],[1,1],[0,1],[1,3],[0,-1],[1,0],[0,2],[0,1],[1,1],[2,2],[1,2],[0,3],[0,1],[0,3],[0,2],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-2],[-1,0],[0,1],[1,3],[0,2],[0,3],[-1,4],[1,5],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[0,1],[0,8],[0,8],[1,3],[0,2],[0,2],[0,1],[1,0],[0,1],[1,4],[1,1],[0,1],[-1,0],[0,2],[1,0],[4,9],[1,1],[-1,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[2,0],[-1,1],[0,3],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,1],[0,1],[1,0],[1,0],[1,-1],[-2,3],[0,2],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[0,3],[1,2],[2,3],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-2],[1,-1],[-1,-4],[0,-1],[0,-2],[1,0],[0,1],[1,-1],[0,-2],[0,-2],[0,-1],[1,1],[0,-2],[1,0],[0,1],[1,1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[1,0],[0,-1],[1,-3],[1,-2],[0,-1],[0,-3],[0,-1],[1,-1],[1,-3],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[0,-2],[1,-2],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-3],[1,-2],[0,-2],[0,-1],[1,-3],[0,-1],[0,1],[0,1],[0,4],[0,1],[-1,3],[0,3],[1,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[1,-1],[0,2],[0,1],[-1,1],[-1,4],[0,4],[0,1],[0,2],[0,1],[1,-1],[1,0],[0,-1],[1,-4],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,2],[-1,2],[-1,6],[0,2],[0,2],[1,0],[1,-2],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[1,1],[0,1],[0,2],[0,1],[0,1],[-1,-3],[0,-2],[-2,-1],[-1,-1],[-1,1],[-1,5],[0,1],[0,3],[0,1],[-1,0],[-1,2],[-1,2],[-1,1],[-2,1],[0,1],[1,0],[0,1],[1,0],[-1,2],[1,1],[1,1],[0,1],[-1,1],[-1,0],[0,-2],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[0,1],[1,-1],[1,1],[-1,0],[0,2],[1,-2],[1,-1],[1,0],[0,-1],[1,-1],[1,1],[-1,0],[0,1],[-1,0],[1,1],[1,0],[0,1],[-3,4],[-1,0],[0,1],[1,0],[0,1],[3,-2],[2,-1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[1,0],[1,-1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[-1,1],[0,2],[1,0],[0,1],[0,-1],[1,0],[-1,2],[3,0],[1,0],[0,1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,-1],[2,-3],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-4],[0,-1],[0,1],[1,-1],[0,2],[0,3],[0,1],[0,1],[1,-1],[0,-1],[1,-1],[-1,4],[0,2],[1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-5],[0,-1],[1,0],[2,-1],[1,0],[1,3],[0,1],[1,0],[0,-2],[1,-1],[1,0],[3,-1],[1,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,-2],[1,0],[1,0],[1,1],[-1,1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[-2,2],[-3,2],[-3,-1],[0,-1],[-1,1],[-1,0],[0,3],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,5],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,2],[1,2],[0,1],[1,-1],[0,2],[0,5],[0,2],[0,1],[1,0],[-1,1],[0,2],[1,3],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,2],[0,1],[0,1],[1,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,-3],[-1,-2],[-1,-6],[-1,-2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,3],[0,2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,5],[0,1],[-1,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-2],[0,1],[0,2],[0,1],[0,3],[0,2],[-1,1],[1,-1],[1,0],[0,1],[0,2],[1,2],[1,0],[1,-1],[0,-2],[1,0],[1,0],[0,5],[0,1],[1,0],[-1,-2],[0,-1],[1,-1],[1,0],[0,1],[-1,1],[0,2],[1,2],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,2],[-1,0],[0,1],[0,2],[1,-1],[0,1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,-2],[1,2],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[1,0],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,1],[0,-1],[0,-1],[1,0],[0,2],[0,1],[1,0],[2,-4],[1,-1],[-1,1],[-1,2],[0,1],[-2,3],[0,1],[1,4],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,1],[-1,-2],[-1,-1],[-1,-1],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[0,-1],[1,0],[0,1],[1,3],[-1,1],[0,-2],[-1,0],[0,1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,-1],[1,-1],[0,3],[1,0],[0,-1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[1,-1],[0,1],[0,1],[1,-1],[0,-1],[-1,-2],[0,-1],[0,1],[0,-3],[1,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,1],[0,1],[0,1],[0,4],[-1,1],[0,1],[1,2],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,1],[2,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,-1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,-1],[0,1],[-1,1],[1,0],[0,1],[0,1],[1,0],[1,-1],[1,0],[0,1],[-1,1],[1,0],[0,2],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,4],[-1,0],[0,1],[-1,0],[0,2],[1,0],[0,1],[0,1],[1,0],[0,1],[0,2],[1,-1],[1,0],[0,2],[1,1],[-1,0],[-1,0],[0,1],[0,2],[1,1],[0,1],[1,-1],[0,1],[1,1],[0,2],[0,1],[0,-5],[0,-2],[0,1],[1,1],[0,1],[0,2],[1,-1],[1,-6],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[1,-2],[0,2],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,1],[0,2],[0,1],[0,4],[0,2],[1,0],[-1,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-2],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,1],[1,1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-7],[0,-1],[0,-2],[-1,-7],[0,-2],[0,1],[2,8],[0,1],[0,1],[0,3],[0,2],[1,0],[0,-2],[0,-1],[0,-2],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[-1,-1],[1,-2],[-1,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[1,0],[0,3],[0,1],[-1,0],[1,1],[0,2],[0,1],[1,0],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,3],[-1,1],[-3,0],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,-1],[0,-2],[1,0],[0,1],[0,1],[0,1],[1,-3],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[1,2],[0,1],[1,0],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,-2],[-1,-1],[0,-1],[1,0],[-1,-2],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,1],[0,-2],[0,1],[1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,1],[1,0],[0,3],[1,1],[0,1],[1,-1],[1,1],[0,1],[1,2],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,1],[1,0],[-1,-3],[0,-2],[1,0],[1,1],[0,-1],[0,-3],[0,-1],[0,-1],[1,0],[0,-1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,2],[1,1],[-1,1],[1,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,-1],[1,1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,3],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-2],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[1,1],[1,1],[0,-3],[1,0],[0,-1],[1,-1],[0,-3],[0,1],[0,-2],[1,1],[0,-1],[0,-2],[-1,-1],[1,0],[1,-1],[0,-2],[0,-1],[1,-2],[0,1],[0,2],[1,1],[-1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,1],[0,2],[1,1],[0,-1],[1,-2],[0,-1],[1,-1],[0,1],[0,2],[0,1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,1],[0,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-2],[1,-2],[0,-1],[0,-1],[2,-4],[1,-5],[0,-1],[1,0],[0,-1],[0,-3],[0,-1],[0,1],[1,1],[0,-1],[0,-2],[0,-2],[0,1],[1,0],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-3],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[-1,-1],[1,-1],[-1,-2],[0,-5],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-7],[0,-1],[-1,0],[1,-5],[0,-3],[-1,-3],[-1,-2],[0,-1],[1,0],[1,1],[0,1],[1,3],[0,3],[0,3],[0,3],[-1,4],[1,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[1,-2],[1,-3],[0,-1],[1,-2],[0,-5],[1,-2],[0,6],[0,2],[-1,1],[-1,3],[0,1],[0,1],[0,1],[0,2],[0,3],[0,1],[-1,0],[0,3],[1,3],[1,3],[0,1],[1,0],[0,1],[0,2],[0,1],[1,0],[0,-2],[0,-6],[0,-1],[1,-1],[0,2],[0,1],[0,1],[1,-2],[0,-1],[1,-1],[0,1],[0,1],[1,0],[-1,1],[0,1],[-1,4],[0,1],[0,2],[0,2],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,-1],[1,-1],[2,-1],[2,0],[0,-3],[1,1],[1,-1],[1,0],[2,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[-1,-3],[0,-3],[1,4],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,8],[1,1],[0,1],[0,4],[-1,1],[0,1],[0,1],[0,4],[0,5],[0,1],[0,1],[0,-1],[1,-1],[0,-2],[1,2],[1,-1],[1,-2],[3,-2],[0,-1],[0,-1],[1,-3],[0,-1],[1,-1],[0,-1],[1,-3],[0,-1],[0,-1],[0,-2],[0,-2],[1,3],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,1],[1,0],[0,1],[0,1],[-2,5],[0,1],[-1,4],[0,4],[-1,1],[1,1],[0,2],[0,1],[0,3],[1,1],[1,-1],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,2],[1,0],[1,-1],[0,2],[0,4],[0,1],[0,-2],[-1,-2],[-2,-1],[-2,-3],[-1,0],[1,3],[0,1],[-1,0],[-1,-2],[-1,0],[-1,3],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,3],[0,1],[0,1],[1,0],[2,0],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,-1],[-1,0],[0,-2],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,3],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,2],[-1,1],[1,5],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[2,3],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[0,2],[0,2],[0,2],[0,-2],[1,0],[2,0],[0,1],[1,2],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,2],[0,1],[2,3],[0,2],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,3],[0,1],[1,4],[0,2],[1,1],[0,3],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[1,-1],[0,-1],[0,-3],[0,-1],[1,-1],[1,1],[1,1],[1,1],[1,3],[1,-1],[1,2],[1,5],[1,2],[1,1],[0,-1],[1,-1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,2],[-1,4],[-1,0],[0,1],[0,8],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[1,2],[1,0],[0,1],[1,1],[0,2],[0,1],[0,4],[0,3],[0,1],[0,1],[0,1],[0,2],[1,-1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,-1],[1,-1],[-1,2],[0,1],[0,1],[1,0],[1,-6],[1,-1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[1,-1],[0,1],[1,1],[-3,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,5],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,1],[1,0],[1,0],[1,-2],[1,0],[1,-1],[0,-2],[0,-1],[0,-2],[0,-5],[0,-1],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,-4],[0,-2],[0,1],[0,1],[1,1],[1,-2],[0,2],[-1,1],[-1,1],[0,2],[0,1],[0,1],[1,0],[1,-1],[0,-1],[0,2],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[3,-1],[0,-1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,2],[-1,2],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,-1],[1,2],[0,-1],[1,-1],[0,-1],[1,1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,2],[0,1],[0,2],[0,2],[0,1],[1,2],[0,2],[0,1],[0,1],[1,-2],[0,-1],[0,-1],[0,-3],[0,-3],[1,-2],[0,-2],[1,-2],[1,-1],[1,-1],[1,0],[1,1],[1,0],[1,-1],[3,1],[2,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,1],[1,0],[1,2],[1,2],[0,1],[1,0],[1,1],[0,1],[0,2],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[1,1],[0,1],[1,0],[0,-1],[1,-4],[0,-2],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,2],[1,2],[0,2],[0,5],[0,3],[0,2],[1,1],[2,3],[0,1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,2],[0,3],[1,9],[0,2],[0,1],[0,1],[-2,1],[0,1],[0,1],[2,3],[0,1],[0,3],[1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[1,1],[-1,0],[0,3],[-2,2],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,-1],[-1,2],[0,-1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,-1],[-1,0],[-2,0],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,1],[-1,2],[0,1],[0,2],[1,-1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,-3],[0,-1],[1,1],[0,1],[0,1],[0,2],[0,1],[1,0],[-1,2],[0,1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,0],[0,1],[-1,0],[0,1],[1,1],[0,-2],[0,-2],[0,-2],[1,-2],[0,1],[0,2],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[1,-3],[0,-1],[1,-1],[0,1],[0,3],[-1,2],[1,2],[1,0],[0,1],[0,1],[1,-1],[0,-5],[0,-1],[1,-1],[-1,-3],[1,0],[0,1],[1,3],[0,1],[1,-2],[1,-2],[0,-3],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,-1],[1,-3],[0,-2],[1,-2],[1,-3],[1,0],[1,1],[0,2],[1,2],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,2],[0,1],[-1,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,0],[1,-2],[0,-3],[1,-2],[1,-1],[0,-2],[0,-1],[0,-3],[1,-5],[1,-1],[0,-1],[1,-1],[0,-1],[2,0],[1,3],[0,-1],[1,1],[1,-1],[-1,-1],[-1,-1],[0,-2],[1,0],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,-1],[0,-2],[-1,-2],[0,-2],[0,-1],[1,1],[0,2],[0,1],[1,1],[0,-1],[1,-1],[1,0],[0,1],[1,3],[1,0],[1,1],[1,3],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[1,-2],[2,-2],[1,2],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,3],[1,-3],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,2],[1,1],[0,1],[0,1],[0,1],[2,-3],[1,-2],[1,-1],[3,-1],[1,1],[1,0],[0,-1],[0,2],[1,1],[2,4],[0,1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-3],[0,-2],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,1],[1,-1],[0,-1],[0,-1],[1,-1],[1,1],[0,1],[-2,1],[0,2],[1,0],[1,0],[1,0],[0,-2],[1,0],[1,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[1,0],[2,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[-1,-1],[1,-1],[1,0],[1,1],[0,1],[0,1],[1,1],[0,-2],[1,-1],[1,2],[1,0],[0,1],[2,3],[-2,0],[0,-1],[-1,-2],[-1,0],[0,1],[0,1],[0,2],[1,2],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,1],[1,-1],[1,2],[1,2],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,2],[0,1],[1,1],[1,-1],[0,-3],[-1,-3],[-2,-4],[0,-3],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,1],[1,1],[2,0],[1,2],[1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-3],[-1,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[1,-3],[0,-1],[1,-1],[0,-3],[1,3],[0,1],[1,0],[0,2],[1,1],[1,2],[1,2],[0,1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[1,0],[2,4],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,1],[1,1],[0,1],[1,0],[0,-2],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-3],[-1,0],[1,-1],[0,-1],[0,-1],[0,1],[0,-2],[0,-1],[1,-2],[0,-1],[0,1],[0,1],[1,1],[0,-1],[1,0],[1,1],[0,-1],[1,-1],[1,0],[1,1],[1,2],[0,2],[1,6],[1,3],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,2],[-1,0],[0,1],[0,1],[1,0],[0,2],[2,4],[0,1],[1,1],[0,-1],[1,2],[1,2],[1,2],[0,1],[0,1],[1,0],[0,-1],[1,1],[1,1],[0,1],[1,0],[0,2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[0,-3],[0,-3],[1,0],[0,-2],[0,-2],[0,-2],[1,-1],[0,-2],[1,-2],[0,-1],[1,-2],[1,0],[1,1],[0,2],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-2],[1,-1],[1,-1],[1,-2],[1,-2],[0,-3],[0,-1],[0,-1],[1,1],[0,-2],[-1,0],[-1,-1],[-1,-3],[-2,-6],[0,-1],[-1,-1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,-1],[-1,0],[-1,-1],[0,-3],[1,-2],[0,-2],[-1,0],[-1,-3],[0,-4],[0,-2],[0,-1],[0,1],[-2,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[0,-3],[0,-1],[1,0],[1,-3],[0,1],[0,-1],[0,-2],[1,0],[1,-2],[1,-1],[0,-1],[0,-2],[0,-1],[-1,1],[0,1],[-1,-2],[0,3],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[-1,-3],[0,-4],[-1,1],[-1,-2],[0,-1],[0,-3],[0,-1],[0,1],[-1,1],[0,-1],[-1,-1],[0,-1],[-1,-3],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,1],[-1,1],[0,3],[0,1],[0,3],[0,3],[-1,1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,0],[-1,2],[0,-1],[-1,0],[0,-2],[1,-1],[0,-1],[-1,-1],[0,1],[0,-1],[0,-1],[-1,0],[-1,-2],[0,1],[0,3],[0,2],[0,2],[0,2],[0,-1],[-1,-2],[-1,-3],[0,-2],[0,1],[0,-1],[-1,0],[0,-1],[1,-3],[-1,-2],[0,2],[0,2],[0,2],[-1,1],[-1,-1],[0,-3],[0,-1],[0,2],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-3],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,2],[-1,0],[0,-2],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[1,0],[1,0],[0,-1],[-1,-1],[0,-2],[0,-2],[1,0],[1,0],[1,2],[1,3],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-3],[-1,-4],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-2],[-1,-12],[0,-4],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-3],[-2,-7],[0,-2],[-1,0],[-1,0],[0,-1],[-1,-7],[-1,-2],[0,-3],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[0,-3],[0,-3],[2,-7],[0,-2],[2,-5],[1,-1],[1,-1],[1,0],[0,1],[0,-1],[1,-1],[1,-2],[0,-2],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[2,-2],[1,-2],[1,-2],[1,-2],[1,-1],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-4],[0,-5],[0,-1],[1,-1],[1,-2],[1,-1],[1,0],[2,-4],[1,-1],[0,-1],[1,-1],[1,0],[0,1],[1,-1],[0,-2],[1,-3],[1,0],[0,-4],[1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[1,-1],[1,0],[0,2],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,1],[0,2],[1,2],[1,-2],[1,-2],[1,-2],[1,-1],[1,-1],[1,0],[2,-3],[0,-1],[1,-3],[2,-3],[0,-1],[1,1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,1],[1,-1],[3,-2],[1,-2],[1,-1],[1,-4],[0,-1],[2,-6],[1,-2],[1,-3],[1,-2],[1,-2],[2,-5],[1,-2],[2,-3],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[2,0],[1,0],[1,-2],[1,-1],[2,1],[2,0],[1,0],[0,-2],[1,0],[0,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,-5],[1,-2],[2,-2],[-1,-2],[0,-4],[0,-3],[1,-3],[1,-5],[1,-3],[1,-2],[1,0],[2,-1],[1,-1],[1,0],[0,-2],[1,-1],[1,0],[0,-1],[1,-2],[1,-3],[1,-2],[1,0],[1,0],[2,-2],[1,0],[0,-1],[0,-1],[3,-2],[0,-1],[1,-2],[1,-2],[0,-1],[3,0],[4,1],[4,2],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[1,2],[1,0],[0,1],[1,1],[1,2],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,5],[0,6],[0,3],[0,1],[1,1],[0,2],[0,1],[0,1],[1,4],[0,2],[-1,1],[0,1],[1,1],[2,8],[1,7],[1,0],[1,2],[1,4],[1,1],[0,2],[0,2],[0,4],[1,2],[0,-1],[1,3],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,2],[0,3],[0,1],[0,3],[1,0],[0,1],[0,2],[2,7],[0,1],[-1,2],[-1,7],[0,1],[1,1],[0,1],[0,3],[1,14],[1,12],[3,13],[0,1],[0,3],[0,1],[0,1],[1,0],[-1,2],[1,1],[1,1],[-1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,3],[0,1],[-2,18],[0,4],[0,2],[-1,2],[0,1],[0,3],[1,3],[1,11],[0,3],[1,3],[-1,3],[0,3],[-1,2],[0,2],[-2,5],[0,6],[0,6],[1,14],[1,3],[0,2],[0,1],[1,2],[0,1],[1,5],[0,2],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,5],[0,3],[-1,0],[0,1],[0,1],[1,2],[0,1],[0,1],[0,2],[1,-1],[1,1],[1,2],[0,1],[1,2],[0,1],[0,1],[1,4],[0,3],[0,1],[1,0],[-1,-2],[1,0],[0,1],[1,-1],[0,-1],[1,-4],[0,-3],[0,-2],[0,-1],[1,-4],[0,2],[0,1],[0,2],[-1,2],[0,3],[0,1],[2,2],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[1,2],[1,1],[1,1],[1,0],[-1,1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,2],[-1,1],[-1,1],[1,2],[1,1],[-1,0],[-1,0],[-1,1],[0,-2],[0,-4],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[3,15],[0,5],[1,1],[1,-1],[1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,3],[1,3],[0,4],[1,4],[1,2],[1,1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[0,-1],[1,4],[1,0],[1,-2],[0,2],[0,1],[-1,2],[0,1],[-1,0],[0,1],[0,2],[0,3],[1,6],[1,4],[0,1],[0,1],[0,2],[3,25],[0,2],[0,4],[0,1],[0,1],[1,3],[0,2],[0,6],[0,6],[0,2],[0,2],[2,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,2],[1,2],[0,1],[0,1],[0,4],[1,1],[0,1],[2,0],[0,1],[1,1],[0,-1],[0,-1]],[[8951,3407],[0,-1],[0,1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[-1,2],[0,1],[0,2],[0,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,-2],[1,-3],[0,-2],[0,-1]],[[8952,3413],[-1,-1],[0,1],[-1,2],[1,1],[1,1],[0,-1],[1,-2],[-1,-1]],[[7936,3424],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,1],[-1,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,1],[1,-1],[0,-1],[0,-1]],[[8952,3442],[0,-3],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,2],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-2],[-1,-1]],[[8948,3444],[-1,1],[0,1],[-1,1],[0,1],[2,5],[1,-2],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-1]],[[8965,3500],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,0],[-1,2],[1,1],[1,0],[1,0],[1,0],[1,1],[0,-1]],[[8951,3506],[-1,0],[-1,1],[-1,1],[0,1],[1,1],[2,-2],[0,-1],[0,-1]],[[5470,7551],[0,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-4],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[0,-2],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[1,-1]],[[5476,7510],[-2,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,0],[-1,-1],[-2,0],[-2,-1],[-1,0],[0,2],[-1,0],[0,-2],[-1,0],[-2,0],[0,1],[0,1],[-1,1],[-2,2],[-1,0],[-1,-1],[-1,0],[1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,-1],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-3],[-1,-1],[-1,-1],[-3,-2],[0,1],[-1,0],[0,-1],[0,-3],[0,-1],[1,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-1]],[[5447,7430],[-2,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-2],[0,1],[0,1],[-2,0],[-1,2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[0,1],[-1,1],[-2,-1],[-3,0],[-1,0],[-2,1],[-1,0],[-2,-1],[-1,-3],[0,2],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,3],[-1,0],[-1,0],[-1,0],[-3,2],[-1,0],[-1,0],[-1,0],[-2,1]],[[5380,7406],[-1,0],[-3,2],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,2],[-3,1],[-6,1],[-2,2],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,2],[-1,2],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[2,2],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-3,-3],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,1],[-1,0],[-2,0],[-2,-1],[-1,-1],[-1,-3],[-1,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[1,1],[0,1],[-2,3],[-1,0],[-3,-2],[-1,1],[-1,1]],[[5290,7430],[0,1],[0,3],[0,1],[-1,2],[-1,1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-2,2],[-3,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-5,3],[-2,0]],[[5266,7443],[0,2],[1,2],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[-1,1],[0,1]],[[5264,7458],[1,2],[1,2],[0,1],[0,1],[0,1],[1,2],[1,1],[0,3],[-1,1],[-1,1],[-1,2],[0,2]],[[5265,7477],[1,-1],[2,0],[1,0],[0,2],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[2,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[2,1],[1,0],[1,1],[0,1],[1,1],[0,3],[1,0],[0,1],[1,0],[0,1],[1,1],[0,2],[0,2],[0,1],[-1,0],[0,1],[0,3],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,1],[0,1],[0,1],[1,0],[4,-3],[0,-1],[1,0],[1,1],[1,0],[1,-1],[-1,-1],[0,-1],[2,-1],[1,-2],[0,-1],[0,-1],[0,-1],[3,0],[1,0],[2,2],[1,0],[0,-2],[1,0],[1,1],[0,1],[1,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[1,3],[1,0],[1,0],[0,-1],[2,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,-1],[2,0],[2,0],[0,1],[1,0],[2,1],[6,0],[1,0],[0,1],[1,1],[0,2],[-1,1],[0,1],[0,1],[1,1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[2,-1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,1],[1,2],[1,0],[1,1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[1,0],[1,-3],[2,-2],[0,1],[1,0],[0,-1],[1,0],[1,2],[0,1],[-1,0],[0,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,1],[0,1],[-1,1],[0,2],[-1,1],[-1,0],[-2,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,5],[0,1],[-1,4],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-2,4],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[2,1],[0,1],[1,0],[1,2],[0,1],[3,2],[4,1],[1,1],[3,4],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[3,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,2],[1,0],[0,1],[1,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[1,3]],[[5383,7563],[1,-1],[1,0],[0,-1],[1,-1],[2,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[4,-1],[3,-2],[1,0],[0,1],[2,1],[0,1],[1,3],[1,-1],[1,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,1],[0,2],[0,2],[0,2],[0,2],[2,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[2,-1],[0,1],[1,1],[-1,1],[0,1],[1,1],[0,4],[0,2],[0,2],[0,2],[1,2],[-1,0],[1,1],[2,-1],[2,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[2,-1],[2,-2],[0,-1],[2,-1],[2,-2],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[1,1],[0,-1],[0,-1],[1,1],[0,-1],[3,-4],[1,-1],[3,0],[4,-1],[0,1],[1,-1],[1,1],[1,4],[1,0],[1,0],[0,1],[1,-1],[2,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,1],[0,-1],[1,-1],[0,-5],[1,-2]],[[6281,6871],[-2,1],[-2,1],[-6,3],[-2,1],[-2,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-3,2],[0,-1],[-1,1],[0,4],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,7],[-1,2],[0,1],[-1,0],[-1,0],[0,1]],[[6244,6925],[0,1],[-1,3]],[[6405,6974],[1,-1],[0,-1],[-1,-1],[-1,1],[0,1],[0,1],[0,-1],[1,0],[0,1]],[[6397,6984],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,2],[-1,2],[0,2]],[[6289,7082],[1,0],[2,0],[0,-1],[0,-1],[0,-3],[0,-1],[1,-1],[1,1],[1,1],[0,1],[2,0],[0,1],[0,1],[1,0],[0,-1],[0,-3],[0,-1],[1,-1],[1,-3],[1,0],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[1,-2],[1,-3],[0,-2],[1,-1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[1,-1],[0,-2],[0,-3],[0,-2],[0,-1],[2,-2],[1,-1],[3,0],[1,-1],[1,-2],[0,-1],[1,0],[1,2],[1,0],[1,-1],[1,-1],[1,0],[2,0],[1,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,5],[0,2],[1,1],[3,2],[1,0],[2,3],[2,3],[1,1],[0,2],[1,6],[1,0],[1,5],[2,4]],[[6349,7079],[1,-1],[1,-2],[2,-6],[1,-2],[1,-1],[0,-2],[2,-4],[1,-4],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-4],[1,-3],[0,-1],[0,-2],[0,-1],[1,-6],[0,-2],[0,-1],[1,-5],[1,-4],[4,-7],[0,-1],[0,-1],[1,-1],[1,-2],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-2],[1,0],[1,-1],[1,0],[1,0],[2,1],[1,0],[3,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[2,-1],[1,0],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[1,-1],[0,-2],[0,-1],[1,-6],[0,-1],[0,-1],[0,-1],[0,-1],[-1,2],[0,1],[-1,2],[-1,2],[-1,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,1],[0,1],[-1,0],[-1,1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-2],[-2,-2],[-1,0],[-1,-3],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[1,-1],[2,-5],[1,-1],[0,-1],[0,-3],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,1],[-1,1],[-1,2],[-1,-1],[-1,-2],[0,-2],[0,-8],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-3],[0,-1],[0,-1],[-2,-3],[-1,-1],[-1,1],[0,1],[0,1],[2,1],[0,1],[1,2],[0,1],[-1,2],[-2,0],[0,1],[0,3],[0,1],[-1,1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-2],[-1,-5],[0,-1],[0,-2],[-1,-2],[-1,0],[0,-2],[0,-1],[0,-1],[1,-4],[0,-10],[0,-12]],[[6357,6841],[-2,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,2],[-1,2],[0,1],[-1,2],[-1,1],[0,1],[0,2],[-1,0],[0,1],[0,2],[-1,2],[-2,-2],[-1,0],[0,1],[-1,2],[-1,2],[0,1],[0,1],[0,1],[0,1],[-4,4],[-2,3],[0,2],[-1,3],[1,1],[1,1],[0,1],[0,1],[5,2],[2,1],[0,1],[0,1],[0,1],[0,1],[-1,4],[0,1],[-2,1],[-1,3],[-1,2],[0,2],[0,2],[0,2],[1,2],[1,1],[2,0],[1,2],[1,1],[0,2],[-1,2],[-2,4],[-5,11],[-2,3],[0,1],[-1,-1],[0,-1],[-3,0],[-1,-1],[0,-1],[-1,-2],[-4,-4],[-2,-3],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,-2],[-1,-3],[-1,-2],[-1,-1],[-3,-2],[-1,-2],[-1,-1],[-1,-4],[0,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-3],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0]],[[6249,7040],[3,5],[4,6],[1,1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[4,-3],[1,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[1,-2],[1,-2],[1,-1],[1,-1],[4,-3],[2,0],[1,0],[1,1],[0,1],[1,0],[2,0],[1,0],[0,-1],[1,-2],[1,-3],[1,0],[2,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,2],[0,3],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[-1,1],[0,-1],[0,2],[-2,2],[-2,2],[-2,2],[-1,1],[-1,2],[-1,1],[0,1],[0,3],[0,1],[-1,2],[0,-1],[-1,0],[0,1],[-1,3],[0,3],[0,3],[1,1],[1,0],[1,-1],[0,1],[1,0],[0,1],[1,2],[1,2],[1,4]],[[5848,3988],[-1,-3],[0,-2],[-1,-6],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,0],[0,-2],[1,-1],[1,1],[1,1],[0,-1],[-2,-4],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,2],[0,1],[1,0],[2,-3],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[1,1],[1,0],[-1,-1],[0,-2],[-1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[1,-2],[0,-2],[-1,-1],[-2,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-4],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[-1,-5],[-1,-4],[0,-1],[-1,-5],[0,-3],[-1,-3],[-1,-3],[-2,-4],[0,-1],[-1,-4],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-2],[-1,0],[-1,1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-7,0]],[[5816,3845],[-1,16],[0,2],[-1,6],[-1,8],[-1,3],[-1,1],[0,2],[0,8],[0,5],[0,3],[0,6],[0,17],[0,2],[0,1],[1,2],[-1,1],[0,2],[0,4],[0,2],[0,1],[1,0],[0,1],[0,1],[-1,4],[0,1],[-1,1],[-1,0],[0,2],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[1,1],[-1,1]],[[5805,3965],[1,7],[1,2],[1,0],[1,0],[1,-2],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[1,1],[1,1],[0,-1],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,-1],[1,-1],[1,0],[0,1],[0,2],[1,1],[1,-1],[1,0],[0,1],[1,2],[0,1],[1,1],[0,2],[0,1],[0,1],[0,7],[1,6],[0,5],[0,3],[0,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-3],[1,-1],[0,-1],[1,0],[1,0],[1,4],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-3],[1,-1],[1,0]],[[5166,7701],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[1,-1],[2,-4],[-1,-1],[1,-1],[2,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[-1,0],[1,-1],[1,-3],[0,-1],[-1,-1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[-1,-1]],[[5169,7657],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-3],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[1,-1],[0,-1],[-1,-1],[-1,0]],[[5160,7617],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[-1,4],[-1,1],[-1,0],[0,1],[-1,-1],[-1,1],[1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,3],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[2,4],[0,1],[0,1],[0,2],[1,0],[0,1],[0,2],[0,1],[-1,0],[-1,0],[0,1],[-3,-5],[-1,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[0,-1],[-2,0],[-3,-4],[-1,0],[-1,0],[-4,2],[-1,0],[-1,0],[-2,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,3],[-1,0],[-1,0],[0,1],[1,3],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,3],[-1,1],[-1,2],[-1,0],[-2,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[-1,0],[-1,1],[0,3],[0,3],[0,3],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,2],[-1,4],[0,2],[1,1],[-1,2],[-1,1],[0,1],[-1,1],[0,2],[-1,0],[0,1],[-3,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,0],[-2,2],[-1,0],[0,1],[0,1],[-1,2],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[-1,3],[1,1],[0,1],[0,1],[0,1],[-1,2],[-1,1],[0,3],[0,2]],[[5070,7725],[0,1],[1,0],[4,5],[6,5],[5,6],[7,3]],[[5093,7745],[0,-3],[0,-1],[0,-2],[0,-2],[1,-1],[1,-1],[2,1],[0,1],[0,1],[1,1],[1,0],[1,0],[4,-2],[1,-1],[-1,-1],[1,-1],[0,-1],[4,0],[0,1],[1,1],[4,3],[1,2],[1,2],[1,1],[0,1],[0,1]],[[5117,7745],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,2],[-1,0],[0,1],[0,2],[-1,0],[0,1],[0,1]],[[5118,7745],[1,0],[1,-1],[0,-1],[1,0],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[2,1],[1,1],[1,0],[0,-2],[0,-1],[1,-1],[1,0],[1,0],[1,1],[2,4],[1,1],[0,-1],[1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[2,0],[1,0],[1,-1],[1,2],[1,1],[0,1],[0,1],[1,1],[1,-1],[1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[1,-2],[0,-1],[1,0],[1,0],[0,-1],[0,-2],[1,0],[1,0],[3,0],[1,0],[1,2],[1,0],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[2,0],[0,-1],[1,-1],[1,1],[1,0],[0,-1],[1,-1],[0,-1],[1,1],[1,-1],[-1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-3],[1,0],[1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-2,-3],[0,-2],[0,-1],[1,-1],[1,0],[0,-1],[-1,-2],[1,0],[1,0],[0,1],[1,0],[0,-1],[3,0],[0,-1],[2,0],[1,0]],[[5099,4973],[0,-2],[-2,-8],[0,-3],[-1,-1],[0,-4],[0,-2],[0,-2],[5,-17],[1,-2],[1,0],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[1,-6],[0,-3],[-1,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-3],[0,-2],[0,-4],[0,-1],[-1,-1],[0,-1],[-2,3],[-1,0],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-3],[0,-1],[0,-2],[2,-5],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-6],[0,-1],[-1,-3],[0,-3],[-1,-2],[-2,1],[-1,-1],[-2,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-1],[-1,0],[-1,-2],[0,-1],[1,-1],[-2,-5],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-2],[1,-2],[0,-2],[0,-1],[0,-5],[0,-1],[-1,-3],[-1,-7],[0,-2],[-1,-1],[-2,-2],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-3,0],[1,-2],[-1,-4],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-17],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[1,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-4],[-1,-5],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-9],[0,-3],[0,-3],[1,-2],[0,-3],[1,-2],[0,-3],[0,-1],[-1,0],[0,-1],[0,-17],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,-2],[0,-1],[-1,-1],[-1,-3],[0,-2],[0,-3],[1,-3],[-1,-3],[0,-1],[0,-2],[1,-1],[1,-1],[0,-4],[-1,-1],[0,-1],[-1,-2],[0,-1],[1,-3],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-3],[0,-5]],[[5075,4600],[-11,-2],[-3,-1],[-9,-3],[-8,-4]],[[5044,4590],[0,1],[1,1],[3,2],[1,0],[-1,5],[0,5],[-1,3],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[1,3],[0,1],[-1,1],[0,1],[0,1],[-1,5],[2,0],[1,0],[0,11],[0,10],[0,10],[0,7],[0,6],[0,1],[0,14],[0,11],[0,11],[0,8],[-1,6],[0,1],[0,2],[0,1],[0,1],[1,4],[0,1],[0,1],[-1,2],[0,1],[0,3],[0,9],[0,6],[0,8],[0,9],[0,2],[0,1],[-1,3],[-2,4],[-2,6],[0,1],[-1,2],[0,2],[0,8],[0,2],[-1,-1],[0,1],[-1,2],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,4],[0,5],[0,8],[0,5],[0,1],[-1,2],[-2,5],[-4,6],[-3,4],[-1,3],[-3,4],[-2,4],[0,1],[0,1],[0,8],[0,4],[0,2],[0,7],[1,2],[1,3],[0,2],[1,0],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,4]],[[5025,4923],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,1],[0,-1],[1,0],[0,1],[-1,2],[0,2],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,1],[1,-1],[1,-1],[0,2],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,1],[0,-1],[1,1],[0,1],[0,1],[-1,1],[1,2],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[3,0],[0,-1],[0,-1],[1,-3],[1,1],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[2,-1],[1,0],[0,1],[4,9],[2,4],[2,3],[0,1],[0,1],[0,1],[0,2],[1,3],[1,2],[1,7]],[[5066,4987],[0,2],[-1,0],[1,1],[1,1],[0,1],[0,1],[1,-1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,7],[0,4],[0,1],[0,1],[1,1],[1,0],[1,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,-3],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[2,-5],[4,-10],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,-3],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,-1],[1,-2],[1,-1],[1,0],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[5006,5197],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-4],[1,-2],[-2,-13],[0,-4],[1,-3],[0,-1],[4,-9],[1,-4],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-3],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[3,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,1],[1,-1],[2,-3],[1,-2],[0,-4],[1,-2],[1,-1],[3,-4],[1,-1],[1,0],[0,-1],[1,-1],[-1,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,1],[-1,1],[-3,2],[-1,-2],[0,-6],[0,-7],[0,-4],[0,-2],[1,-1],[0,-1],[1,-1],[2,0],[0,-2],[2,-3],[2,-3],[2,-5],[0,-1],[3,-5],[1,-3],[2,-4],[1,-1],[1,-1],[3,0],[3,-1],[1,0],[0,1],[1,1],[0,2],[0,1],[0,1],[1,1],[0,-1],[1,1],[0,1],[3,0],[1,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-5],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[-2,0],[0,-1],[-1,-2],[1,-3],[1,-4],[2,-7],[2,-7],[2,-7],[2,-3]],[[5025,4923],[-4,0],[-3,0],[-1,-1],[-4,-3],[0,3],[0,1],[0,1],[-3,2],[-3,1],[-6,3],[-3,2],[-2,1],[-1,0]],[[4995,4933],[-4,2],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-2],[0,1],[-1,1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-2],[-1,-2],[-1,3],[0,1],[0,1],[-1,0],[0,1],[-3,0],[-1,0],[-1,-2],[-1,0],[1,1],[-1,0],[0,1],[-4,1],[-1,0],[0,-1],[-4,0],[-3,0],[-1,0],[-1,1],[0,1],[-4,0],[0,-1],[-1,-1],[-4,0],[-6,0],[-7,-1],[-6,0],[-6,0],[-2,0],[-1,0],[0,1],[-2,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-3],[0,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-4],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-3],[0,-6],[0,-2],[1,-2],[0,-1],[0,-2],[0,-3],[0,-2],[0,-3],[1,0],[-1,-1],[-1,-3],[0,-2],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-4]],[[4925,4818],[-1,-2],[-1,-3],[0,-1],[-1,0],[-1,1],[-2,9],[-2,7],[0,3],[-1,2],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[-1,1],[0,4],[-1,1],[0,1],[-1,0],[0,2],[0,1],[0,2],[-1,0],[0,-1],[-1,-3],[-1,-1],[0,1],[-1,1],[0,2],[0,-1],[-1,1],[0,1],[-1,0],[-4,1],[-2,-1],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[-2,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,2],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,2],[0,2],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[0,2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,2],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[0,3],[0,2],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,2],[-1,0],[0,2],[0,1],[0,-1],[-1,0],[1,1],[0,4],[-1,1],[-1,0],[0,-1],[-1,2],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,2],[0,1],[-1,1]],[[4846,4884],[0,1],[0,3],[1,1],[0,3],[1,3],[0,1],[-1,0],[0,1],[1,2],[-1,1],[0,1],[0,1],[0,4],[1,1],[0,1],[0,1],[1,4],[0,1],[-1,1],[0,5],[-1,2],[0,2],[0,3],[0,1],[0,1],[0,1],[3,1],[1,0],[0,1],[1,1],[0,3],[0,2],[1,2],[0,2],[0,1],[0,7],[0,1],[1,1],[0,1],[1,0],[0,1],[-1,2],[0,6],[0,2],[-1,2],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,3],[0,1],[0,2],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,1],[1,0],[0,-1],[0,1],[1,2],[1,2],[1,2],[0,1],[1,1],[1,1],[1,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,-1],[1,0],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[-1,4],[3,5],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,3],[-1,6],[0,2],[1,1],[0,2],[0,1],[1,1],[-1,0],[0,1],[0,4],[-1,1],[-1,2],[0,1],[0,4],[1,0],[0,1],[1,0],[1,1],[1,-1],[1,-1],[1,0],[1,1],[0,1],[0,4],[1,1],[-1,3],[0,4],[0,2],[0,2],[-1,1],[-1,2],[0,4],[-1,2],[0,1],[0,1],[0,3],[1,0],[2,0],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,2],[1,1],[0,3],[1,1],[0,2],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,-1],[1,-2],[1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-4],[1,-2],[3,-4],[0,-1],[1,-1],[1,0],[1,-1],[1,1],[0,1],[0,1],[0,2],[0,2],[0,1],[5,1],[-1,18],[1,2],[0,2],[0,4],[0,1],[-1,1],[1,2],[1,-1],[1,-2],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,2],[1,0],[1,0],[0,-1],[1,1],[1,1],[-1,7],[0,4],[1,2],[0,2],[1,9],[0,1],[1,3],[4,5],[0,2],[2,4],[0,1],[3,3],[1,1],[2,-1],[7,-7],[1,-1],[1,1],[1,1],[0,1],[1,18],[0,1],[1,1],[1,1],[2,-1],[2,0],[2,1],[10,16],[1,1],[5,3],[2,1],[1,2],[5,12],[2,4],[1,1],[1,1],[6,0],[1,0],[0,-4],[1,-1],[1,1],[2,2],[2,1],[2,-1],[4,-4],[7,-6]],[[7553,5673],[1,-5],[0,-3],[0,-1],[0,-3],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,3],[0,5],[0,2],[0,2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,2],[0,2],[1,0],[0,-1],[0,-3]],[[7475,5674],[0,-1],[-1,1],[-1,4],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,-5],[0,-2],[1,-1],[0,-1],[0,-2]],[[7550,5674],[0,-1],[0,2],[0,5],[0,4],[0,1],[0,1],[1,2],[0,-1],[1,-3],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-4]],[[7516,5688],[-1,-2],[0,1],[0,-2],[-1,-1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[2,3],[0,-2],[0,-1],[0,-1]],[[7508,5682],[0,3],[0,2],[0,1],[1,3],[1,1],[0,1],[0,-2],[-1,-3],[0,-5],[-1,-1]],[[7509,5691],[0,1],[0,2],[1,2],[0,-2],[-1,-2],[0,-1]],[[7511,5686],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,3],[0,1],[0,-1],[1,-2],[1,-2],[-1,-2],[0,-1],[-1,-2]],[[7516,5704],[0,-4],[0,1],[0,1],[-1,-3],[0,-2],[0,-3],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[1,2],[-1,-1],[0,-1],[0,2],[0,1],[0,1],[1,1],[1,2],[0,1],[1,1]],[[7526,5707],[0,-1],[0,-3],[0,-2],[-1,0],[0,1],[0,2],[0,2],[0,1],[1,0]],[[7527,5706],[-1,0],[0,3],[1,2],[0,-1],[0,-1],[0,-1],[0,-2]],[[7527,5712],[-1,-4],[-1,1],[0,1],[1,1],[0,1],[0,3],[0,2],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[7529,5700],[0,-1],[-1,0],[-1,1],[0,1],[1,2],[0,2],[1,1],[0,3],[0,5],[0,6],[1,0],[1,-1],[0,-1],[0,-2],[1,-1],[0,-3],[0,-1],[0,-3],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[7517,5723],[0,-2],[1,-2],[0,-2],[-1,2],[0,-1],[0,-3],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,3],[-1,1],[0,1],[0,-1],[0,1],[0,1],[1,-1]],[[7517,5723],[0,-1],[0,4],[1,0],[0,-1],[0,-2],[-1,0]],[[7531,5724],[-1,1],[0,2],[1,1],[2,1],[0,-2],[0,-1],[-1,-1],[-1,-1]],[[7542,5721],[-1,-1],[-1,1],[-1,3],[0,3],[0,2],[0,4],[1,1],[2,-8],[1,-3],[-1,-2]],[[7522,5703],[-1,-5],[-1,-1],[0,1],[-1,-2],[-1,-3],[0,-1],[-1,0],[0,2],[0,2],[1,2],[0,2],[-1,-6],[-1,0],[0,2],[0,2],[0,2],[1,1],[0,2],[0,2],[1,6],[0,1],[0,2],[0,4],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,4],[-1,2],[0,1],[-2,2],[0,1],[0,2],[0,3],[0,5],[1,1],[0,1],[1,0],[0,1],[1,-2],[0,-3],[0,-2],[1,-2],[0,-2],[1,-1],[0,-2],[0,-3],[1,-2],[0,-2],[1,-2],[1,-2],[-1,-7],[0,-11],[0,-2]],[[7516,5754],[1,-2],[1,-2],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0]],[[7517,5761],[1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,2],[1,2],[1,2],[1,0],[0,-1],[1,-3]],[[7513,5763],[-1,0],[0,3],[0,1],[1,0],[1,0],[0,-1],[-1,-1],[0,-2]],[[7514,5787],[1,-2],[1,-1],[-1,1],[-1,1],[0,-1],[-1,-1],[0,1],[-1,1],[-1,2],[0,1],[1,0],[1,0],[1,-2]],[[7571,5691],[0,-4],[0,-2],[0,-11],[0,-17],[0,-1],[1,-4],[1,-7],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,1],[0,1],[0,3],[-1,3],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,-3],[-1,0],[-1,0],[0,-2],[0,-2],[-1,-3],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-2]],[[7562,5627],[0,-3],[0,-3],[0,-2],[0,-3],[1,-3],[0,-1],[0,-1],[1,-4],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,4],[-2,8],[-1,4],[0,1],[-1,3],[-1,1],[0,2],[-1,1],[-1,4],[0,1],[0,1],[0,5],[0,1],[0,2],[-1,6],[-1,1],[0,1],[-1,2],[0,1],[1,0],[0,-1],[0,2],[0,1],[1,1],[0,-1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[-1,-1],[1,0],[-1,-3],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,1],[0,1],[1,1],[1,1],[-1,0],[0,-1],[0,1],[0,1],[1,1],[-2,0],[-1,-1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,3],[0,1],[0,1],[-1,0],[0,3],[0,7],[0,3],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[1,1],[1,0],[0,1],[1,1],[0,5],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,2],[0,8],[0,2],[-2,9],[-4,12],[-1,0],[0,1],[-1,2],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,3],[0,2],[-1,0],[0,-2],[0,-3],[0,-1],[-1,0],[0,-2],[-1,-1],[1,-2],[-1,1],[-1,1],[0,-1],[0,-1],[0,-1],[-2,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[1,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,2],[-1,2],[0,3],[-1,0],[0,2],[0,2],[-1,0],[1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,2],[0,1],[0,1],[0,2],[-1,1],[-1,-1],[0,1],[0,2],[0,1],[-1,0],[0,2],[0,1],[0,1],[-1,2],[0,2],[0,2],[0,1],[-1,1],[0,1],[0,1],[-2,7],[0,2],[0,1],[0,1],[0,4],[0,3],[0,1],[1,2],[0,1],[0,1],[-1,2],[0,1],[1,1],[-1,0],[-1,1],[0,2],[0,2],[0,4],[0,1],[1,1],[1,0],[1,1],[0,3],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,1],[-1,-1],[0,-1],[-1,0],[0,3],[0,2],[0,1],[1,1],[0,1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-6],[0,-1],[0,-1],[0,-2],[0,-1],[-1,1],[-6,3],[-1,1],[-1,1],[0,-1],[4,-6],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[2,-1],[1,-3],[0,-1],[0,-3],[0,1],[0,1],[0,-2],[0,-4],[0,-1],[-1,-3],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[1,-1],[1,1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[-1,-1],[0,-1],[0,-4],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[1,-1],[0,-2],[1,-2],[0,-3],[0,1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[-1,-6],[0,-2],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,4],[0,1],[0,2],[0,1],[0,3],[-1,1],[0,-2],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-3],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-1],[-2,-3],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,-1],[0,-3],[0,-1],[-1,0],[0,-1],[-1,1],[0,2],[0,4],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,3],[1,1],[0,1],[1,-1],[0,1],[1,2],[0,2],[0,1],[-1,-3],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-4],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,-1],[0,-3],[0,-1],[-1,-2],[0,-3],[0,-1],[-1,-1],[-1,1],[0,2],[0,2],[0,1],[0,5],[0,3],[0,2],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,3],[3,8],[0,1],[0,1],[1,1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,2],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-5],[0,-1],[0,-3],[1,-4],[0,-3],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-4],[0,-1],[1,-2],[0,-1],[1,-1],[0,-2],[-1,-1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,2],[0,2],[0,2],[0,2],[0,1],[1,1],[0,1],[0,2],[0,5],[0,4],[0,1],[1,3],[0,1],[0,2],[0,1],[0,2],[-1,1],[0,1],[1,2],[0,2],[0,1],[0,1],[1,2],[0,1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-2],[-1,-2],[0,-5],[0,-1],[-1,0],[0,1],[0,3],[0,2],[0,1],[-1,7],[0,1],[0,3],[0,2],[0,1],[-1,-4],[1,-9],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-4],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[-1,-2],[0,-1],[0,-1],[-1,-2],[-1,0],[0,2],[0,1],[0,1],[0,4],[0,1],[0,2],[0,2],[0,1],[0,2],[-1,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,1],[-1,0],[0,-2],[1,-2],[0,-2],[-1,-2],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,2],[0,1],[1,1],[-1,6],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,5],[0,2],[0,1],[0,3],[0,2],[0,1],[-1,2],[0,1],[0,3],[0,2]],[[7473,5702],[1,1],[0,2],[-1,1],[0,1],[-1,4],[0,2],[0,2],[0,1],[-1,4],[0,1],[1,1],[-1,2],[0,3],[0,2],[-1,1],[-1,1],[1,1],[0,1],[0,2],[0,2],[0,2],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,3],[0,1],[-1,2],[0,1],[0,1],[0,2],[0,4],[1,1],[1,4],[1,2],[0,1],[0,1],[-1,0],[-2,2],[-1,0],[0,-1],[-1,0],[-2,1],[0,1],[0,1],[0,2],[0,1],[1,3],[1,8],[0,2],[-1,0],[0,-2],[-1,2],[-1,2],[0,1],[-1,3],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,6],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,2],[1,1],[0,1],[0,2],[-1,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,2],[0,2],[-1,2],[-1,0],[0,-2],[-1,-1],[-2,1],[-1,0],[-1,0],[-2,4],[-7,9],[-1,0],[0,1],[-1,1],[0,1],[0,4],[0,1],[-1,2],[-1,0],[0,3],[1,1],[0,1],[0,3],[1,1],[0,1],[0,1],[1,0],[0,2],[1,1],[0,2],[-1,2],[0,1],[1,2],[1,0],[1,0],[0,-2],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,2],[1,3],[0,2],[1,2],[0,2],[1,2],[0,4],[0,4],[0,1],[1,1],[1,-1],[1,-1],[1,0],[0,1],[0,1],[1,0],[1,-1],[2,-1],[1,-1],[1,1],[0,1],[0,1],[1,0],[2,-2],[0,1],[0,1],[1,0],[-1,1],[1,1],[0,1],[1,2],[0,1],[0,1],[-2,0],[-1,1],[0,1],[-1,0],[-1,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,2],[-1,1],[0,4],[0,2],[-2,3],[-2,4],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[0,2],[-1,1],[0,1],[0,2],[0,3],[0,1],[1,4],[0,2],[1,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[0,3],[0,1],[0,1],[1,1],[1,2],[1,1],[1,0],[1,0],[-1,1],[0,4],[0,2],[-1,1],[-2,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,4],[0,2],[0,1],[0,1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[2,1],[1,0],[1,-1],[0,-2],[0,-1],[1,0],[0,3],[1,0],[1,0],[1,-3],[1,0],[1,0],[1,1],[-1,2],[0,2],[-1,-1],[0,1],[0,2],[-1,1],[-1,0],[-1,2],[0,1],[1,1],[0,1],[0,1],[1,1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-2],[1,-1],[0,-2],[0,-1],[1,-4],[0,-2],[0,-1],[2,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-2],[1,-1],[1,0],[0,1],[1,-1],[2,0],[1,-2],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,2],[1,2],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[-1,1],[0,2],[1,0],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[1,-1],[0,-1],[-2,-5],[0,-2],[1,-6],[0,-4],[1,-2],[-1,-5],[0,-6],[0,-3],[0,-2],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[1,0],[1,1],[1,0],[6,-6],[4,-2],[2,-2],[1,0],[3,1],[2,0],[2,0],[1,-1],[1,0],[1,1],[1,-1],[0,-1],[1,0],[3,1],[1,1],[5,2],[1,-1],[1,1],[1,0],[1,-1],[4,-3],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,-1],[1,0],[1,1],[0,1],[1,-1],[0,1],[0,1],[1,0],[1,0],[3,1],[2,-1],[1,1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[0,1],[-2,3],[-1,0],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-9],[0,-3],[-1,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-4],[0,-2],[-1,-2],[0,-1],[-1,0],[-3,1],[0,-1],[1,-3],[0,-1],[0,1],[-1,1],[-1,0],[0,-1],[0,-3],[0,-1],[0,-6],[-1,-2],[-1,0],[0,2],[0,1],[0,1],[-1,1],[-2,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,3],[-1,0],[0,-5],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,0],[-2,2],[-1,-1],[0,-1],[0,-3],[-1,-3],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[1,-3],[0,-2],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-3],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-12],[1,-2],[0,-3],[1,0],[0,2],[0,6],[0,3],[0,2],[0,1],[1,0],[1,-1],[0,-2],[0,-1],[0,1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-5],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[-1,4],[0,3],[0,2],[0,4],[1,3],[1,2],[0,1],[2,2],[0,1],[1,1],[0,2],[0,3],[-1,8],[0,3],[0,1],[1,1],[0,-1],[1,-1],[1,-3],[0,-1],[1,1],[0,1],[1,2],[1,2],[1,1],[1,-2],[0,-3],[0,-1],[1,1],[0,3],[0,1],[1,-1],[0,-2],[0,-3],[0,-2],[1,-8],[0,-3],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-3],[1,-9],[0,-5],[0,-3],[0,-2],[1,0],[1,-2],[0,-5],[0,-2],[0,-1],[1,-2],[0,-1],[1,-1],[0,-5],[0,-4],[0,-1],[0,-3],[0,-1],[2,-23],[0,-1],[-1,-1],[0,-5],[1,-5],[0,-1]],[[5793,7212],[0,-1],[0,-9],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,-1],[-1,-3],[-1,-1],[0,-2],[0,1],[-1,2],[-1,0],[0,1],[-1,0],[-1,1],[-2,-1],[0,-1],[-2,1],[0,-1],[-1,-1],[-1,-2],[-2,-8],[0,-1],[-1,-1],[-2,0],[0,-1],[1,-2],[0,-1],[-1,-3],[0,-4],[-1,-1],[0,-1],[0,-2],[0,-3],[1,-1],[-1,-5],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[-1,-1],[-2,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[-3,1],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[0,-1],[1,-1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1]],[[5778,7088],[-1,0],[-1,1],[-1,-1],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,2],[-1,0],[-3,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[-1,1],[-2,2],[-1,1],[0,2],[-1,3],[-1,1],[-1,1],[-1,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-3,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-3,0],[-1,-2],[0,-1],[-1,-2],[1,-1],[0,-1]],[[5731,7070],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,-2],[-2,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[-1,0],[0,-2],[-1,-2],[0,-1],[-3,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,1],[-1,2],[-1,0],[-1,-2],[-1,0],[-1,0],[0,-1],[-1,1],[-3,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-4,-3],[-1,0],[-1,1],[-1,3],[-1,1],[-1,1],[0,1],[-1,-1],[-4,4],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[-1,1],[-1,3],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,1],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[-1,0],[-1,1],[-1,-1],[0,-2],[1,-2],[0,-1],[-1,0],[-1,1],[0,-1],[-1,-1],[-2,2],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,2],[-3,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-6,2]],[[5636,7044],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,5],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[1,1],[0,2],[-1,1],[0,1],[-1,0],[-1,3],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,2],[-3,3],[0,1],[-1,1],[0,3],[-1,1],[-3,7]],[[5620,7112],[1,0],[1,0],[0,1],[1,1],[0,2],[1,1],[0,1],[1,0],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[-1,1],[-2,3],[0,1],[1,3],[0,1],[0,2],[0,1],[1,2],[0,1],[0,1],[-1,1],[-1,3],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[2,-1],[1,0],[1,1],[0,1],[0,1],[1,3],[0,1],[0,1],[1,0],[1,0],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,3],[0,2],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-2,4],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[1,1],[0,3],[0,2],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[1,1],[1,1]],[[5630,7246],[6,-8],[1,0],[1,-1],[1,0],[0,-1],[0,-2],[0,-2],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-5],[0,-2],[1,-1],[0,-1],[1,-1],[4,1],[2,0],[1,1],[1,0],[1,1],[2,1],[5,-1],[3,-3],[1,0],[2,1],[1,0],[2,-2],[9,-4],[1,-1],[4,1],[1,0],[1,0],[1,2],[1,1],[1,0],[4,-3],[2,-1],[1,-1],[6,1],[3,-2],[4,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,1],[1,1],[2,0],[1,0],[1,1],[1,1],[1,1],[1,0],[2,1],[0,2],[1,2],[1,1],[1,3],[1,1],[0,1],[3,4],[0,1],[1,2],[1,2],[1,1],[2,1],[2,1],[1,1],[2,0],[6,2],[1,0],[0,1],[1,0],[2,0],[1,1],[2,3],[3,0],[1,1],[2,-2],[3,-1],[1,-1],[1,0],[0,-2],[0,-1],[2,-2],[1,-2],[5,0],[2,1],[1,-1],[0,-2],[1,-3],[2,1],[2,2],[2,0],[0,-2],[2,-8],[1,-1],[5,-5],[6,-2],[4,1]],[[6404,5986],[1,-3],[0,1],[0,1],[1,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-4],[0,-6],[0,-8],[0,-2],[-1,-3],[0,2],[-1,3],[0,2],[-1,2],[-1,3],[0,2],[1,2],[0,1],[0,1],[0,3],[-1,3],[0,2],[0,1],[0,4],[0,1],[1,0],[1,0],[0,-1],[2,1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2971,5634],[-2,-6],[-1,-6],[0,-1],[-2,-2],[-2,1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[-1,-2],[-1,0],[-2,-1],[-1,2],[-2,0],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[1,0],[1,0],[0,2],[0,1],[0,1],[-1,1],[0,1],[1,-1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[1,2],[0,-1],[1,1],[1,0],[0,1],[1,1],[0,1],[0,-2],[1,-1],[0,-2],[1,-1],[2,-1],[0,1],[1,1],[1,1],[1,2],[1,2],[1,5],[0,2],[1,0],[1,0],[0,-1],[0,-2],[-1,-7],[0,-2]],[[2971,5652],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[-1,-1],[0,-1]],[[2896,5707],[0,-1],[1,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1]],[[2896,5709],[-1,0],[0,2],[1,0],[0,-1],[0,-1]],[[2969,5723],[1,0],[0,1],[1,-1],[1,0],[1,-3],[1,0],[-1,1],[0,1],[1,-1],[1,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,-1],[-2,3],[0,1],[-1,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,-1],[-1,-1],[0,1],[-1,0],[-1,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-2]],[[2959,5734],[-1,0],[-1,1],[-1,0],[1,0],[0,1],[1,-1],[1,0],[0,-1]],[[2934,5732],[-1,-2],[1,3],[0,2],[1,2],[1,3],[0,-2],[-1,-3],[-1,-3]],[[2948,5743],[0,-3],[-1,0],[0,1],[0,-1],[1,-1],[0,1],[0,-2],[0,-5],[0,-1],[1,-2],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-5],[-1,-2],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-2],[0,3],[1,0],[0,1],[1,-1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[0,2],[1,1],[1,0],[1,1],[0,2],[1,2],[-1,3],[0,1],[-2,0],[-1,1],[-1,1],[1,2],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[2,0],[1,0],[0,1],[0,-1]],[[2939,5746],[1,-1],[0,-1],[1,0],[1,0],[-1,1],[1,-1],[2,-1],[-2,-4],[-1,1],[0,1],[0,-1],[-1,0],[-2,1],[0,1],[-1,1],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[-2,6],[1,1],[1,0],[1,-1],[1,0],[1,-2],[0,-2]],[[2949,5770],[2,-1],[2,1],[0,-1],[-2,-1],[-1,0],[-1,2]],[[2901,5792],[1,-1],[-1,0],[-1,1],[-1,1],[-1,2],[1,-1],[1,0],[1,-2]],[[2790,5800],[-1,3],[0,-1],[1,-1],[0,-1]],[[2889,5810],[0,-1],[1,-1],[1,0],[0,-1],[2,-5],[1,-2],[1,-2],[1,-2],[2,-2],[0,-1],[-1,0],[-1,2],[-2,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,-1],[-1,3],[-1,2],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2908,5809],[1,-6],[1,0],[0,-2],[1,-1],[0,-2],[0,-4],[1,-2],[0,-1],[2,-7],[0,-1],[0,-1],[0,-1],[0,-3],[0,-4],[1,-2],[1,-1],[2,-2],[1,-2],[2,-5],[-1,-1],[1,-1],[0,-1],[0,-3],[0,-2],[0,-1],[-1,0],[0,3],[0,-1],[0,2],[-1,3],[-1,3],[0,1],[-1,3],[0,1],[-4,1],[0,1],[-1,1],[-2,3],[0,1],[0,1],[1,1],[0,-1],[1,-1],[0,-1],[-1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,1],[-1,4],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[-1,1],[0,-1],[0,2],[-1,2],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,3],[0,3],[-1,1],[0,-1],[0,3],[0,1],[-1,-1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[2922,5810],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,2],[0,1],[1,0],[0,1],[2,1],[1,0],[0,-1],[1,-1],[-1,-1]],[[2880,5831],[-1,0],[0,3],[-1,2],[0,2],[0,1],[-1,1],[0,1],[1,-2],[2,-8]],[[2932,5835],[-1,-4],[0,1],[0,2],[0,-1],[0,-3],[-1,0],[-1,-1],[0,1],[0,1],[0,2],[1,3],[-1,2],[0,1],[1,1],[0,1],[1,0],[0,1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1]],[[2839,5849],[-1,0],[-1,0],[0,-1],[0,-2],[-1,-1],[-1,-2],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[2,2],[0,1],[1,0],[1,0],[0,-1]],[[2835,5849],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,-1]],[[2876,5848],[0,-1],[-1,0],[0,1],[-1,3],[-1,1],[0,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[2840,5842],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[1,-1],[0,1],[1,4],[1,2],[0,1],[0,1],[0,2],[0,2],[0,1],[1,0],[0,-2],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,1],[1,1],[0,-1],[0,-3],[0,-1],[0,-3],[-1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,1],[-1,1],[1,-2],[-1,-1],[0,1],[-1,1],[-2,0],[1,1],[0,1],[1,0],[1,-1],[0,1],[1,1],[1,2],[1,1],[0,1],[-1,0],[0,-1],[-1,-1],[-2,-2],[0,-1],[-1,2],[0,1],[1,1],[1,2],[0,1],[0,-1],[-2,0],[-1,-1],[-1,1],[0,1],[0,4],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,2],[0,1],[0,-1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,2],[1,1],[1,-2],[0,-1],[0,-1],[-2,-3],[0,-1],[-1,-1],[0,-1],[0,-1]],[[2837,5855],[-1,0],[0,1],[1,1],[1,0],[0,-1],[-1,-1]],[[2842,5857],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1]],[[2908,5848],[0,-2],[0,-4],[-1,1],[-1,1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,1],[0,2],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,2],[0,2],[-1,1],[0,1],[-1,1],[-1,6],[-1,1],[0,2],[0,1],[0,2],[-1,2],[-1,1],[-1,0],[1,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[1,0],[1,-2],[1,-1],[0,-1],[0,-4],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[1,-4],[1,-5],[1,-1],[1,-1],[0,-1],[1,-3],[0,-1],[2,-3]],[[2852,5908],[0,-1],[2,-1],[-1,-1],[-3,-3],[-1,1],[-1,-1],[0,-1],[-1,1],[-1,0],[-1,2],[1,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0]],[[2830,5914],[1,-1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-2],[1,0],[0,-3],[-1,-2],[1,-1],[1,0],[0,-1],[2,-10],[1,-4],[0,-1],[1,-1],[1,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[1,-3],[0,-3],[0,-2],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,1],[-1,2],[0,3],[0,2],[-1,1],[-1,1],[0,2],[0,4],[0,-1],[-1,0],[0,-1],[-1,0],[-4,4],[-1,4],[-1,1],[0,2],[1,1],[0,1],[1,1],[0,-1],[1,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,1],[1,1],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[1,1],[0,2],[0,1],[0,-1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[1,-1],[0,-1],[0,-3],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[1,1],[0,1],[0,2],[1,0],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[-1,3],[0,3],[-1,2],[0,3],[0,2],[1,0],[1,-1],[1,-1],[0,-1]],[[2798,5941],[0,-1],[-1,1],[0,1],[1,-1]],[[2869,5942],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[1,2],[0,-1],[0,-1],[1,-1],[4,-7],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[2,-5],[1,-3],[2,-3],[1,-1],[0,-1],[0,-2],[0,-6],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[1,-1],[0,-2],[0,-3],[0,-1],[-1,-3],[0,-1],[0,-5],[0,-2],[0,-3],[-1,1],[0,3],[-1,2],[0,2],[0,1],[-2,1],[0,1],[-1,1],[0,1],[1,0],[3,-1],[0,1],[0,1],[1,1],[0,1],[0,2],[-1,-1],[0,-1],[0,2],[0,3],[0,2],[1,2],[0,1],[1,4],[0,1],[-1,3],[-1,2],[-1,1],[-1,2],[-2,7],[-1,2],[-1,1],[-2,1],[-1,1],[-2,4],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[1,2],[0,2],[0,6],[1,0]],[[2798,5956],[1,-2],[-1,0],[0,-1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,2],[0,1],[1,1]],[[2838,5952],[-1,1],[0,1],[-1,2],[0,1],[1,0],[0,-1],[1,-4]],[[2846,5993],[-1,-2],[0,1],[0,1],[0,1],[0,2],[0,-1],[1,-1],[0,-1]],[[2854,6005],[0,-1],[0,-1],[-1,1],[0,1],[1,0],[0,1],[0,-1]],[[2837,6014],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[1,1],[0,-1],[1,1],[-1,-1]],[[2819,6023],[2,-2],[2,0],[1,-1],[1,0],[0,1],[1,1],[1,-1],[1,1],[2,-1],[1,1],[1,1],[2,0],[1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-2],[0,-1],[-1,0],[-1,1],[-2,0],[-2,-1],[-4,-2],[-1,0],[-6,-3],[-1,0],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,1],[-1,1],[-1,1],[-1,2],[-3,7],[-1,2],[-1,1],[1,0],[0,-1],[4,-5],[1,-3],[0,1],[1,0],[1,-1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[1,2],[0,1],[1,3],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1]],[[2839,6037],[3,-1],[1,-1],[1,1],[1,-1],[2,-2],[5,-11],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[1,-2],[0,-1],[1,-1],[2,-1],[1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-3],[0,-2],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-2],[0,-5],[0,-1],[-1,-4],[1,-6],[0,-5],[-1,-2],[-1,1],[-1,2],[0,2],[0,2],[-1,0],[-2,1],[-1,2],[1,0],[0,1],[1,0],[0,2],[1,0],[0,1],[1,2],[1,2],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,3],[0,1],[-1,0],[0,5],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[-1,1],[0,1],[-3,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,3],[-1,5],[-1,2],[-1,1],[-1,-1],[-1,0],[-2,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-2,-1],[-1,-1],[-1,0],[0,1],[1,1],[2,1],[2,0]],[[5528,7290],[1,1],[1,0],[2,3],[0,1],[1,-1],[0,-1],[1,1],[1,-1],[1,0],[1,-1],[0,1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-8],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-4],[0,-1],[-1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,-3],[1,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-2],[1,-4],[3,-6],[1,-2],[0,-4],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,1],[-1,0],[0,-2],[-1,0],[0,1],[0,2],[-1,1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-2],[-1,-1]],[[5533,7197],[-2,0],[-1,-1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-2],[0,-5],[1,-3],[-1,0],[0,-1],[-1,-1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,-1],[-4,-5],[0,-1],[1,0],[-2,-4],[0,-1],[0,-2],[0,-1],[0,-1],[0,-6],[-1,1],[-2,0],[-1,-1],[-1,-2],[-1,-2],[1,-2],[0,-1],[0,-2],[1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-3],[1,-1],[0,-1],[1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1]],[[5512,7129],[-1,0],[-1,1],[-1,2],[-1,0],[-1,1],[-1,1],[-5,6],[-2,2],[0,1],[-2,2],[0,1],[-1,1],[-1,3],[0,2],[0,1],[-1,1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[0,-1]],[[5490,7152],[-3,3],[1,0],[1,-1],[-1,1],[0,1]],[[5488,7156],[1,0],[1,1],[0,2],[-1,4],[-1,2],[0,1],[-4,4],[0,1],[-1,2],[0,1],[0,1],[-1,1],[-1,2],[-1,3],[-1,4],[1,5],[-1,2],[-1,1],[-2,1],[-2,2],[-1,1],[0,1],[-2,3],[-4,8],[-3,5],[-1,1],[0,1],[0,2],[0,1],[-1,2],[-1,2],[-2,2],[0,2],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,2],[-1,2],[0,2],[-2,2],[0,1],[-1,3],[0,2],[0,2],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,4],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,2],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,1],[0,1],[-1,1],[-1,2],[0,2],[0,1],[0,1],[1,0],[0,1],[1,1],[-1,1],[0,1],[0,2],[-1,2],[1,0],[0,1],[0,2],[0,1],[0,2],[0,2],[1,3],[0,1],[0,4],[0,2],[1,1],[2,1],[2,0],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-3],[0,-1],[3,-4],[1,-1],[1,-1],[1,0],[1,1],[0,2],[0,2],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,4],[2,1],[1,0],[6,-3],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,-2],[1,-2],[1,-1],[2,-1],[1,0],[1,1],[0,2],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,-2],[2,0],[1,0],[0,1],[1,2],[1,0],[1,0],[1,-1],[0,-1],[2,-4],[1,-1],[1,1],[1,0],[0,1],[2,4],[1,0],[2,-3],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,-1],[1,-1],[0,-1],[2,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,-1],[1,-4],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[1,-2],[1,-1],[0,-1],[1,0],[3,0],[1,0]],[[5781,8078],[1,-1],[2,-3],[1,-2],[0,-1],[1,0],[0,1],[1,2],[1,0],[4,1],[2,0],[0,-1],[1,-1],[1,-2],[0,-1],[0,-2],[1,-1],[0,-2],[1,-1],[2,0],[0,1],[1,2],[2,1],[1,1],[2,1],[1,0],[2,-1],[1,-1],[1,-1],[4,-2],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[1,-2],[2,-3],[1,0],[2,4],[3,2],[1,0],[2,0],[1,3],[1,1],[1,1],[1,1],[1,-1],[4,-1],[2,2],[1,0],[1,-1],[0,-1],[6,-2],[0,-1],[0,-1],[0,-1],[3,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-2],[1,0],[1,0],[1,1],[1,-1],[1,-1],[0,-1],[0,-2],[0,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[-2,-2],[-1,-2],[0,-1],[0,-2],[0,-1],[1,0],[1,-1],[0,-1],[0,-2],[1,-1],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[1,0],[1,-1],[4,-4],[0,-1],[1,-2],[0,1],[2,-1],[1,-2],[1,-1],[-1,-3],[-1,-3],[-1,-3],[1,-1],[2,-1],[1,-1],[1,-2],[0,-3],[1,-1],[0,-1],[1,-1],[0,-5],[0,-1],[1,-2],[4,-5],[1,0],[0,-1],[2,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-4],[0,-1],[0,-1],[-1,-2],[0,-4],[0,-2],[-2,-2],[0,-2],[1,0],[3,-1],[6,2],[2,-2],[3,-1],[1,-1],[1,-2],[1,-1],[1,1],[1,-1],[1,-1],[0,-1],[0,-1],[-2,-2],[-1,0],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[0,-2],[0,-5],[0,-2],[0,-1],[-1,0],[0,1],[-1,0],[-2,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-2,0],[0,-1],[0,-1],[0,1],[-1,-1],[-1,-1],[-1,0],[-2,2],[-1,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,2],[0,2],[0,2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-2,1],[-1,0],[-1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-3],[-1,-1],[2,-3],[1,-1],[1,-4],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-2],[1,-1],[0,-2],[0,-3],[0,-1],[-2,-2],[0,-1],[1,-2],[1,-3],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-2],[1,-1],[0,-1],[0,-2]],[[5882,7796],[-3,-1],[-5,2],[-3,0],[-2,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,1],[-1,1],[-1,1],[-1,0],[-4,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,2],[-1,0],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,2],[-1,0],[-1,2],[0,1],[-1,1],[-4,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-3,1],[0,1],[-1,2],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,2],[0,2],[0,1],[-1,2],[-1,3],[0,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[-1,4],[0,2],[0,1],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,2],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-3],[0,-1],[-1,0],[-3,0],[-1,0],[-1,3],[-1,1],[-1,-1],[0,-1],[-1,-2],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-3],[0,-1],[-1,0],[-1,1],[0,1],[1,4],[0,2],[0,1],[-1,0],[-1,0],[-3,2],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,1],[-2,-1],[-1,0],[1,2],[0,1],[0,1],[-1,1],[-1,0],[-1,2],[0,1],[1,2],[-1,1],[0,1],[-2,0],[-2,0],[-3,-1],[-2,0],[-5,4],[-6,0],[-1,1],[0,1],[0,1],[-6,1],[-1,0],[-2,3],[-1,0],[-2,0],[-6,2],[-2,-1],[-4,0],[-5,0],[-5,2],[-1,0],[-2,-1],[-2,-2],[-8,-2],[0,1],[-2,0],[-7,-1],[-1,0],[0,-1],[-1,-2],[-1,-2],[0,-4],[-1,-2],[-3,-3],[-4,-6],[-2,-1],[0,2],[-1,1],[-1,1],[-1,0],[-2,1],[-3,-1],[-1,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[-1,0]],[[5655,7755],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[-1,1],[0,2],[0,2],[1,0],[0,1],[-1,0],[1,0],[0,3],[0,1],[0,2],[1,1],[0,1],[-1,3],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,3],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[-1,-1],[0,1],[0,1],[-2,1],[-1,0],[-2,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,4],[1,1],[1,2],[3,8],[3,3],[2,3],[5,2],[3,4],[2,2],[0,3],[0,2],[0,8],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[-1,1],[-1,2],[0,1],[0,2],[1,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[-1,2],[-1,6],[-1,2],[-1,4],[-2,11],[-1,5],[0,4],[-1,2],[0,1],[0,4],[0,2],[-1,1],[0,2],[0,2]],[[5652,7924],[1,0],[2,-2],[1,-1],[2,1],[1,1],[1,0],[1,0],[2,2],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,1],[1,1],[1,-1],[0,-1],[1,-2],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[3,5],[1,1],[2,0],[1,1],[0,-1],[1,-1],[2,0],[1,1],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[3,-2],[1,1],[1,1],[1,2],[1,1],[0,3],[1,1],[0,1],[2,-1],[2,0],[1,0],[1,3],[1,0],[2,-4],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[1,-2],[1,-1],[2,-1],[1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[0,4],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,2],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[0,2],[0,1],[1,2],[1,2],[0,1],[0,2],[0,2],[0,1],[1,1],[2,1],[0,1],[0,1],[1,2],[-1,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,4],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,-1],[4,1],[1,1],[0,1],[0,1],[1,1],[1,3],[0,1],[0,1],[0,1],[0,1],[1,2],[1,0],[3,-1],[1,0],[0,1],[1,0],[3,-1],[1,1],[0,2],[0,2],[1,1],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[0,2],[-1,0],[-5,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,2],[0,1],[1,2],[0,1],[1,1],[0,1],[-1,2],[0,1],[1,2],[1,1],[0,1],[0,2],[1,1],[-1,2],[0,2]],[[5738,8045],[1,1],[0,1],[1,0],[2,-1],[3,2],[0,1],[2,4],[1,3],[1,0],[4,1],[1,-1],[2,-2],[1,-1],[0,1],[2,1],[0,1],[1,-1],[1,0],[1,-1],[3,0],[1,0],[0,1],[0,1],[1,4],[0,3],[3,2],[1,3],[0,1],[1,2],[2,2],[0,1],[1,1],[0,1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,-1]],[[2561,5365],[0,-1],[0,1],[-1,-1],[0,4],[0,2],[0,1],[0,-1],[1,-3],[0,-1],[0,-1]],[[2553,5378],[0,-1],[0,-1],[0,-1],[0,1],[0,2],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[2561,5380],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,-1],[0,-2],[0,-3],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,3],[1,3],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,2],[0,1],[0,1],[-1,-1],[0,2],[1,0],[0,-1]],[[2554,5382],[0,1],[0,1],[-1,4],[1,-1],[0,-1],[0,-4]],[[2552,5390],[-1,0],[0,1],[0,1],[2,2],[0,1],[0,-3],[-1,-1],[0,-1]],[[2560,5424],[-1,-2],[0,-1],[-1,-4],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,1],[0,1],[0,-3],[-1,-3],[-1,-2],[-1,-1],[0,1],[1,2],[1,1],[0,2],[0,-1],[0,3],[0,4],[0,1],[1,0],[0,1],[0,4],[1,0],[0,1],[1,-1]],[[2559,5427],[0,-1],[-1,-1],[0,1],[0,1],[1,0],[0,1],[0,-1]],[[2547,5447],[0,-1],[0,-1],[0,-1],[-2,-4],[-1,-1],[1,-1],[1,1],[0,-1],[0,-1],[-1,-2],[0,-1],[1,0],[0,1],[0,1],[1,2],[1,0],[1,0],[1,-1],[1,2],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,1],[1,0],[0,-8],[0,-7],[0,-1],[-1,-1],[0,-1],[-1,-7],[0,-1],[-1,-5],[0,-2],[-1,-6],[0,-6],[-1,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-3],[-1,-6],[0,-7],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[1,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[-1,0],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[1,8],[0,1],[1,1],[-1,-1],[-1,-5],[0,-2],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,-3],[0,-1],[0,-2],[-1,0],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,3],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-2],[1,-2],[0,-2]],[[2530,5266],[-1,-1],[-3,1],[-1,0],[-2,0],[-1,0],[-1,-1],[0,1],[0,1],[0,3],[1,16],[0,15],[0,7],[1,20],[0,18],[0,20],[0,19],[0,15]],[[2523,5400],[0,6],[0,3],[1,2],[2,2],[1,0],[0,-1],[1,-2],[0,-1],[1,1],[0,-1],[0,-1],[1,-1],[1,-2],[0,1],[0,2],[1,0],[1,3],[1,3],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,3],[0,1],[0,1],[1,1],[1,1],[0,2],[0,1],[0,1],[0,1],[1,1],[1,2],[0,2],[0,1],[0,1],[0,2],[0,2],[1,1],[1,2],[1,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[2,0]],[[3384,2746],[0,2],[1,4],[0,1],[0,3],[0,2],[0,2],[-1,4],[0,2],[0,3],[0,1],[-1,2],[-3,4],[-3,4],[-2,4],[-3,3],[-2,4],[-3,4],[-3,4],[-2,4],[-2,2],[0,1],[-1,2],[-1,0],[-2,0],[-5,0],[-5,-1],[-6,0],[-5,0],[-2,0],[-4,-2],[-10,-5],[-9,-5],[-10,-5],[-9,-5],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[0,-1],[0,-4],[-1,-5],[-1,-5],[-1,-5],[-1,-5],[0,-2],[0,-2],[0,-1],[-1,0],[0,-2],[0,-2],[-1,-2],[0,-1],[-1,-2],[-1,-4],[-1,-4],[-2,-5],[-1,-4],[0,-2],[-1,-2],[-1,-4],[0,-2],[0,-6],[0,-6],[0,-7],[0,-10],[0,-5],[-1,-7],[-1,-7],[-1,-8],[-1,-8],[-1,-7],[-1,-10],[-1,-8],[-1,-10],[-1,-6],[-1,-7],[-1,-3]],[[3133,2561],[-9,-5],[-1,0],[-2,0],[-4,0],[-1,1],[-1,3],[-1,0],[0,1],[0,2],[0,5],[1,11],[0,1],[-1,4],[0,3],[-1,2],[-1,5],[0,1],[0,1],[1,5],[0,1],[-1,2],[0,2],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[-2,3],[0,2],[-1,0],[0,1],[0,12],[-1,5],[-1,8],[-1,2],[0,17],[0,3],[-6,23],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,3],[0,9],[0,2],[1,1],[1,4],[0,1],[0,2],[-1,1],[-1,2],[-3,3],[-1,1],[0,2],[-1,1],[0,3],[-1,2],[1,2],[0,1],[2,1],[-1,5],[0,2],[0,3],[0,2],[-1,1],[-1,1],[0,2],[0,1],[4,2],[1,0],[1,1],[0,1],[0,2],[0,1],[1,4],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[-1,2],[-2,3],[0,1],[0,1],[1,1],[1,3],[0,1],[2,5],[1,5],[1,2],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,2],[-3,5],[-1,1],[-1,1],[-1,4],[0,1],[-3,6],[-1,1],[-1,2],[-1,1],[0,4],[-1,2],[0,1],[-1,1],[1,2],[0,2],[0,1],[0,1],[-1,8],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,4],[0,3],[0,4],[0,1],[0,2],[-1,4],[0,1],[0,4],[-1,3],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,3],[1,2],[1,2],[0,3],[-1,1],[-1,0],[-1,0],[-1,2],[-1,1],[0,1],[-1,0],[0,-1],[-1,2],[0,3],[0,5],[0,2],[-1,4],[-1,2],[-2,5],[-1,2],[0,3],[0,5]],[[3069,2932],[0,5],[0,3],[0,2],[-1,1],[0,1],[-2,3],[-1,0],[0,2],[0,4],[1,2],[1,0],[1,3],[1,2],[1,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[1,1],[0,1],[1,4],[3,7],[0,2],[1,4],[0,1],[1,0],[1,1],[2,2],[0,1],[0,1],[1,1],[-1,3],[0,1],[0,2],[0,4],[0,2],[0,1],[1,2],[1,1],[3,3],[1,2],[-1,2],[0,1],[-2,2],[-1,3],[0,1],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,1],[0,1],[-1,3],[-1,4],[-1,7],[-1,7],[-1,7],[-1,7],[-1,3],[0,2],[0,2],[2,6],[0,2],[0,1],[0,1],[1,2],[1,1],[0,1],[0,2],[0,1],[0,1],[1,1],[1,1],[0,3],[1,0],[1,1],[0,1],[-1,2],[0,2],[-1,1],[-2,3],[0,1],[-2,6],[0,1],[-1,2],[0,1],[0,1],[1,3],[0,6],[0,1],[0,1],[1,1],[1,1],[1,1],[0,2],[0,9],[1,1],[1,0],[0,1],[0,3],[0,1],[1,0],[0,1],[1,3],[1,1],[2,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[1,1],[2,0],[1,2],[0,2],[-1,5],[0,2],[0,1],[-1,1],[-1,3],[0,1],[-1,2],[0,3],[0,2],[0,2],[-1,3],[0,1],[0,1],[1,1],[-1,2],[-1,3],[-1,2],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[0,2],[0,13],[0,6],[0,3],[0,8],[0,1],[-1,7],[0,3],[1,1],[0,2],[1,2],[0,1],[1,0],[0,2],[0,1],[1,1],[2,2],[1,0],[0,3],[0,1],[-1,1],[0,2],[0,1],[1,2],[1,0],[0,1],[0,2],[0,1],[1,1],[-1,4],[-3,12],[-3,13],[-3,12],[-3,13],[-3,13],[-2,12],[-3,13],[-3,13],[0,1],[-1,0],[0,1],[0,1]],[[3067,3390],[2,0],[1,0],[2,1],[1,0],[1,-1],[1,0],[1,0],[3,-1],[1,0],[1,0],[2,-2],[1,0],[2,-1],[1,0],[1,1],[1,0],[1,-1],[-1,-2],[0,-1],[0,-2],[0,-3],[0,-1],[1,0],[4,2],[0,1],[2,3],[1,1],[1,0],[1,0],[1,2],[2,1],[1,1],[0,2],[1,1],[0,2],[1,4],[0,1],[2,4],[1,5],[0,1],[1,1],[1,1],[1,1],[0,-1],[4,1],[0,-1],[1,-1],[1,-2],[1,0],[1,0],[0,2],[0,3],[1,2],[0,1],[1,2],[0,1],[1,2],[0,1],[0,1],[1,0],[1,1],[1,1],[1,1],[0,1],[0,2],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,2],[4,11],[4,7],[0,1],[3,2],[0,1],[0,1],[0,1],[1,0],[3,2],[2,-1],[0,1],[1,0],[1,2],[3,1],[1,1],[1,1],[0,1],[2,0],[0,-1],[0,1],[1,1],[0,-1],[1,-1],[1,0],[1,2],[1,1],[1,0],[1,-1],[1,0],[0,2],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,-1],[1,1],[0,-2],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,3],[1,1],[1,0],[1,-2],[0,-2],[1,-4],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-3],[0,-3],[0,-3],[1,-3],[0,-2],[0,-3],[0,-2],[0,-1],[0,-2],[-1,-4],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-3],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-3],[0,-3],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-6],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,-1],[0,-2],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-6],[1,-2],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[1,-1],[0,4],[0,1],[1,0],[0,1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,1],[0,2],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-3],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,1],[1,-1],[0,-2],[1,0],[0,1],[0,1],[1,0],[1,-1],[1,-2],[1,2],[0,-1],[2,-1],[0,-2],[1,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,3],[1,1],[4,-1],[2,-2],[1,-3],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-2],[2,0],[0,1],[1,1],[1,0],[0,1],[0,1],[1,1],[1,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,-5],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,2],[1,0],[1,1],[0,1],[1,-1],[0,-1],[0,-1],[1,-2],[2,-3],[2,1],[0,-1],[1,0],[0,-3],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,1],[1,0],[1,-2],[0,2],[1,-2],[0,-1],[0,-5],[0,-1],[1,-1],[0,-1],[2,-4],[0,-2],[1,0],[0,-1],[1,-1],[1,-3],[0,-1],[1,0],[0,-1],[1,-5],[0,-1],[1,0],[1,1],[1,0],[1,1],[1,0],[2,1],[1,-2],[1,-1],[1,0],[2,1],[2,3],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[2,0],[1,2],[1,1],[1,0],[0,1],[0,-1],[0,-3],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[2,-2],[2,-4],[2,-4],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[2,-1],[1,-1],[0,-1],[0,-2],[0,-2],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[2,-3],[0,-1],[1,-4],[0,-5],[1,-3],[-1,-1],[0,-2],[2,-2],[0,-2],[0,-4],[0,-6],[0,-5],[0,-6],[0,-6],[1,-4],[-1,-1],[-3,0],[-5,-1],[1,-3],[2,-5],[3,-9],[3,-8],[0,-1],[0,-2],[1,-10],[0,-14],[1,-11],[0,-7],[0,-8],[1,-3],[0,-1],[2,0],[6,0],[5,-1],[5,0],[5,-1],[6,0],[5,-1],[5,0],[6,0],[2,-1],[0,1],[1,0],[0,1],[0,2],[1,0],[1,0],[0,-1],[0,-7],[-1,-2],[0,-1],[1,-3],[0,-2],[-3,-8],[-1,-2],[0,-2],[0,-3],[1,-6],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[1,-1],[0,-5],[0,-1],[0,-2],[0,-1],[0,-6],[0,-3],[1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-3],[0,-1],[1,0],[1,-1],[0,-2],[1,0],[1,-1],[0,-1],[1,-2],[1,-1],[1,-1],[1,0],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[3,-10],[1,-9],[1,-4],[1,-2],[1,0],[0,-2],[-2,0],[0,-1],[-1,-4],[-1,-10],[-1,-10],[-2,-10],[-1,-9],[0,-3],[1,0],[0,-1],[0,-1],[0,-4],[0,-3],[-1,-1],[-1,0],[0,-3],[-1,-5],[-2,-9],[-2,-10],[-1,-4],[0,-2],[-1,-4],[-1,-3],[0,-2],[-1,-5],[0,-2],[2,-5],[3,-5],[2,-6],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-3],[-1,0],[0,-2],[-1,-1],[-1,-1]],[[3651,2212],[0,5],[0,2],[0,2],[0,1],[0,1],[1,2],[0,1],[-1,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[2,1],[0,1],[0,1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-5],[-1,-2],[1,-2],[0,-1],[0,-1],[-1,0],[-1,-2]],[[3650,2309],[0,1],[-1,0],[0,2],[-1,2],[0,1],[-1,2],[0,2],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,2],[0,1],[1,0],[0,-1],[1,-3],[0,-1],[-1,-1],[0,-2],[-1,-3],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2]],[[3659,2375],[-1,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[1,1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1]],[[3682,2430],[-2,-2],[-1,-1],[-7,-13],[-1,-1],[0,-1],[-1,-3],[0,-2],[-1,-1],[0,2],[1,2],[0,1],[0,1],[1,3],[3,6],[1,1],[2,4],[1,1],[1,2],[1,1],[1,0],[1,1],[0,-1]],[[3711,2484],[1,0],[1,0],[0,-1],[0,-2],[1,-1],[0,-1],[-2,2],[0,-1],[-1,0],[0,1],[-1,1],[1,1],[0,-1],[0,1],[0,1]],[[3743,2494],[0,-5],[-1,1],[0,-2],[1,-2],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[-1,0],[0,1],[0,2],[0,1],[-1,-1],[0,1],[-1,-1],[-1,-1],[-1,0],[-1,2],[0,1],[0,1],[1,1],[2,4],[0,2],[0,2],[1,1],[0,1],[1,0],[1,-3],[0,-1]],[[3772,2541],[0,-1],[1,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,2],[1,0],[1,2],[0,2],[0,-1],[1,0],[0,-1],[0,-1]],[[4185,2717],[-1,2],[0,1],[1,-1],[0,-1],[0,-1]],[[3919,3220],[0,-5],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,1],[-1,2],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[1,0],[1,0],[0,-1],[1,1],[1,0]],[[3927,3252],[1,-2],[0,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,0],[0,1],[0,3],[0,1],[0,1],[1,1],[1,1],[1,4],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[1,-1],[0,-2]],[[4032,3610],[0,-1],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[4098,3884],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1],[-1,-1],[-1,-1]],[[3763,3958],[0,-1],[0,1],[1,2],[0,-5],[0,-2],[-1,-1],[1,-3],[-1,0],[-1,-1],[0,-2],[-1,-3],[0,-1],[0,1],[0,1],[0,2],[0,1],[0,2],[1,2],[0,2],[-1,2],[0,2],[0,1],[0,2],[1,4],[1,1],[1,1],[0,-4],[0,-3],[-1,0],[0,-1]],[[3830,3962],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,2],[0,1],[1,-1],[0,-2],[1,0],[1,-1],[0,-1],[1,-1]],[[3831,3967],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[2,-1],[1,0],[0,-1]],[[3783,3984],[0,1],[1,1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[3790,3986],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[0,-1],[0,-2],[0,-1],[0,-1]],[[3788,3988],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[1,1],[0,1],[1,1],[1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[1,-1]],[[3629,4024],[-1,-1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,2],[0,2],[0,1],[1,1],[1,2],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-2]],[[3626,4040],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,2],[0,1],[1,1],[0,-1],[0,1],[1,0]],[[3753,4067],[0,-1],[0,-1],[0,-2],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[-1,1],[0,1],[0,2],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,2],[0,2],[0,1],[0,1],[1,-1],[0,1],[1,0],[0,1],[0,-1],[1,0]],[[3657,4072],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,3],[0,1],[1,0],[1,0],[0,-1],[1,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1]],[[3660,4084],[-2,0],[0,1],[-1,1],[0,1],[1,2],[0,2],[1,2],[0,2],[0,1],[1,1],[1,1],[1,-2],[0,-1],[-1,0],[0,-1],[1,-1],[0,-2],[-1,-4],[0,-2],[0,-1],[-1,0]],[[3668,4111],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-2,-2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0]],[[3588,4115],[0,-3],[0,-2],[0,-1],[0,-2],[-1,-2],[-1,0],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,1],[0,2],[0,2],[0,1],[1,2],[0,1],[0,1],[1,0],[1,1],[1,3],[0,1],[1,2],[2,1],[-1,-3],[1,3],[1,0],[0,-1]],[[3675,4115],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,3],[-1,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,-1]],[[3577,4116],[0,-3],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[-2,-9],[0,-2],[-1,-9],[-1,-4],[0,-1],[-1,2],[-2,-10],[-1,-2],[-3,-8],[-2,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-2,-3],[-1,-2],[-2,-1],[-1,-1],[-1,1],[0,1],[-1,2],[1,2],[1,4],[0,1],[0,1],[0,3],[0,1],[1,1],[2,3],[0,1],[0,1],[0,1],[1,0],[1,1],[1,3],[0,3],[0,2],[0,10],[0,2],[2,4],[1,7],[0,2],[1,2],[1,2],[1,2],[1,1],[0,1],[2,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[-1,2],[0,1],[0,1],[0,1],[2,-1],[1,-2]],[[3573,4123],[-1,0],[0,2],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[2,10],[0,2],[1,1],[1,1],[0,1],[0,1],[2,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-3],[-1,-3],[-2,-4],[-2,-2],[0,-2]],[[3608,4146],[2,-1],[1,0],[5,-3],[4,-3],[4,0],[1,1],[1,0],[1,-1],[0,-1],[1,-1],[0,1],[-1,1],[0,1],[0,1],[1,2],[1,2],[1,-1],[0,1],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[0,-1],[1,1],[2,-1],[1,-1],[0,-1],[1,1],[1,1],[0,1],[1,-1],[0,-2],[0,-1],[0,-1],[0,1],[2,0],[3,-2],[1,1],[1,0],[1,0],[1,-2],[3,-1],[1,-1],[1,0],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-3],[-1,-2],[0,-4],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,1],[-1,1],[-1,3],[1,-2],[0,-3],[1,-2],[-1,-1],[1,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[-2,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[1,0],[0,-1],[-1,-2],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-2,-2],[-1,-1],[-1,-3],[0,-1],[-1,1],[-1,1],[-1,1],[0,2],[0,-2],[0,-1],[1,-1],[1,-1],[0,-2],[0,-1],[-1,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-4],[-1,-6],[-1,2],[-2,7],[0,1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,1],[-1,1],[-1,1],[0,2],[0,1],[-1,3],[-1,0],[0,1],[0,-1],[0,-1],[0,-2],[0,-5],[0,-2],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[1,1],[-1,-2],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,3],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-2],[0,-1],[0,-2],[1,-1],[1,-2],[0,-2],[-1,-1],[-1,1],[-1,0],[0,1],[-1,1],[0,3],[0,1],[0,4],[-1,-1],[0,1],[0,-1],[0,-1],[1,-1],[0,-3],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[-1,-3],[-1,0],[0,1],[0,2],[-1,3],[0,2],[0,1],[0,1],[0,2],[0,1],[0,-1],[-1,-2],[0,-2],[0,-1],[1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,-1],[0,1],[-1,1],[0,1],[0,3],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-2,-2],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,5],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,2],[-1,1],[0,1],[1,1],[0,1],[-1,-1],[0,-1],[0,-3],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-3],[-1,-1],[0,1],[-1,5],[1,-6],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,-1],[1,-1],[1,-1],[-1,-1],[-1,0],[-1,-1],[-5,3],[-1,1],[0,1],[0,1],[0,1],[1,1],[-1,3],[-4,10],[0,2],[0,1],[-1,1],[0,2],[-1,1],[0,1],[1,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[1,8],[0,1],[0,2],[0,2],[-1,1],[1,2],[0,-1],[1,-1],[2,-2],[1,-1],[1,0],[1,-2],[0,1],[-1,3],[0,1],[1,0],[0,1],[1,-1],[0,1],[0,1],[-1,0],[1,2],[0,1],[1,0],[1,0],[-1,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,3],[0,5],[0,2],[0,2],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,3],[1,8],[1,-1],[0,-2],[0,-1],[0,-2],[1,0],[2,-3],[1,0],[1,0],[-1,0],[0,1],[-1,2],[-2,0],[0,1],[0,1],[0,1],[-1,5],[0,1],[0,2],[0,1],[0,4],[0,2],[0,1],[1,1],[0,1],[0,1],[0,2],[1,2],[0,1],[1,1],[0,1],[1,2],[1,0],[0,1],[1,1],[1,1],[0,-1],[1,0],[1,1],[0,1],[0,1],[1,1],[1,0],[1,-1],[5,-1]],[[3586,4134],[-1,-2],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,3],[0,2],[1,1],[0,1],[-1,1],[1,5],[1,3],[0,3],[1,0],[1,0],[2,3],[1,1],[1,-1],[1,-2],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-4],[-1,-1],[-1,-2]],[[3625,4160],[1,1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[-6,0],[0,-1],[-4,3],[1,3],[0,1],[2,3],[2,2],[1,2],[3,2],[1,0],[0,-1]],[[3599,4155],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,-1],[1,0],[1,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-2]],[[3606,4174],[-1,-1],[0,1],[0,2],[2,2],[1,1],[0,-1],[0,-1],[0,-1],[-2,-2]],[[3624,4176],[-2,-2],[-1,-2],[-2,-2],[-2,-5],[0,-3],[-1,-3],[-1,-3],[-1,-1],[-1,-2],[-1,0],[-1,0],[0,-1],[-1,0],[0,2],[0,1],[-1,2],[-1,1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,2],[0,2],[0,-1],[0,-2],[-1,1],[0,1],[0,5],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,3],[1,2],[1,1],[1,0],[1,-1],[2,0],[1,2],[2,2],[2,2],[3,0],[1,-2],[0,-4]],[[3601,4192],[0,-8],[0,-1],[0,-2],[1,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,1],[-1,1],[0,2],[1,1],[0,1],[1,0],[0,1],[1,8],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[1,3],[1,1],[0,-1],[0,-3],[0,-3]],[[3610,4196],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-4,-7],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,2],[0,2],[0,3],[0,3],[0,3],[1,1],[1,1],[0,1],[0,1],[2,0],[0,1],[1,-1],[0,-2],[1,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,-3],[0,-1],[0,-1]],[[4184,4214],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1]],[[3608,4219],[1,-1],[1,1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[-2,0],[-1,-1],[-1,1],[0,1],[0,3],[1,3],[2,2],[1,2],[1,1],[0,-1]],[[3610,4221],[-1,-1],[-1,1],[0,1],[1,2],[1,2],[0,1],[1,1],[1,0],[0,2],[1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0]],[[3600,4303],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[1,-1],[0,-2],[0,-2],[-1,-2],[-1,-2],[0,-1],[-1,0],[-1,1],[0,4],[-1,2],[0,1],[0,1],[-1,0],[0,2],[1,2],[0,2],[0,1],[1,0],[0,1],[1,0],[1,0]],[[3596,4308],[1,0],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[-1,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,2],[-1,1],[1,1],[0,1]],[[3431,4291],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[2,-1],[2,-2],[2,0],[1,1],[1,2],[0,3],[0,3],[0,3],[0,1],[0,1],[0,1],[-1,3],[-1,3],[-1,2],[0,1],[0,3],[-1,1],[-2,1],[0,1],[0,2],[1,2],[0,2],[1,0],[0,-1],[1,0],[0,1],[1,3],[0,1],[0,3],[0,3],[0,2],[1,0],[1,0],[0,-1],[2,-3],[0,-1],[2,-1],[1,-1],[0,-1],[0,-1],[1,0],[2,1],[1,1],[1,0],[2,1],[1,0],[1,-1],[1,0],[1,1],[0,1],[0,1],[0,2],[0,1],[1,0],[1,0],[0,-1],[1,0],[2,4],[1,0],[0,-2],[1,0],[1,1],[1,3],[2,2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[3,-7],[1,-1],[2,1],[0,1],[1,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0]],[[3483,4318],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,-2],[1,-1],[0,-1],[2,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,-2],[1,-1],[1,0],[0,1],[0,3],[1,1],[1,0],[0,1],[2,1],[0,1],[0,1],[0,2],[1,0],[1,0],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[0,-2],[1,0],[1,-2],[1,-1],[1,0],[1,-1],[1,-1],[0,1],[1,0],[1,0],[1,2],[1,1],[0,1],[1,2],[0,1],[0,-1],[1,-3],[2,-3],[0,-1],[-1,0],[0,-1],[0,-2],[4,1],[1,0],[1,-2],[1,0],[1,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,2],[1,1],[0,1],[1,2],[4,4],[0,1],[0,1],[1,3],[1,3],[1,2],[0,4],[1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[1,0],[0,1],[0,2],[3,13],[0,1],[1,1],[0,1],[-1,1],[1,1],[1,8],[0,1],[0,3],[0,1],[0,2],[1,1],[1,4],[0,1],[1,0],[1,0],[0,1],[4,16],[0,1],[0,1],[0,1],[1,2],[1,4],[0,2],[0,3],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[2,5],[0,1],[1,2],[0,2],[0,3],[1,1],[2,3]],[[3564,4438],[1,0],[0,2],[1,6],[0,4],[1,1],[1,-2],[0,-4],[1,-4],[1,-8],[1,-3],[0,2],[0,2],[-1,3],[-1,5],[-1,11],[-1,7],[0,1],[1,3],[0,1],[1,1],[0,-1],[1,-2],[2,-3],[3,-7],[2,-7],[1,-6],[0,-3],[0,-7],[0,-9],[-1,-7],[1,-4],[0,2],[1,5],[0,6],[0,3],[1,2],[1,-1],[-1,-11],[1,-10],[0,-7],[-1,-3],[0,-5],[2,-10],[0,-3],[0,-2],[0,-2],[0,-3],[1,-1],[-1,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-2],[1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-3],[0,-2],[0,-1],[-1,0],[0,-1],[1,-1],[0,1],[1,0],[0,-2],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[1,-1],[0,-3],[0,-1],[0,-2],[1,-1],[0,-2],[-1,-2],[-1,0],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[1,2],[1,1],[0,-1],[2,-1],[0,-3],[0,-3],[0,-1],[1,-3],[1,-3],[0,-1],[0,-3],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,-1],[1,-1],[3,-2],[1,-2],[1,-2],[0,-2],[1,-4],[0,-2],[0,-2],[0,-2],[0,-4],[0,-2],[0,-3],[0,-3],[0,-3],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,1],[1,-1],[1,1],[1,0],[1,2],[1,0],[0,-1],[1,-2],[0,-1],[-1,-2],[-1,-3],[-1,-2],[-1,0],[0,3],[0,-2],[-1,-2],[0,-2],[-1,-1],[0,-1],[-1,-4],[-1,-1],[0,-1],[-2,-2],[-1,-1],[-1,-3],[-1,-6],[0,-1],[0,-1],[-2,-2],[-1,-1],[0,-1],[-1,-7],[-2,-7],[-1,-5],[-3,-7],[-2,-8],[-1,0],[0,1],[-1,0],[-2,-2],[-1,-2],[-2,-4],[-1,-6],[0,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,-1],[-2,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-2,-7],[0,-3],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,1],[-1,-4],[-1,-5],[-1,0],[0,-1],[-1,-4],[0,-1],[-1,-2],[0,-6],[0,-7],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-2],[0,-1],[-2,-1],[-1,-2],[0,-3],[1,-6],[-1,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-2,0],[-2,2],[0,1],[-1,1],[-1,1],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[0,-2],[-2,-3],[-1,0],[-1,0],[-2,-2],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[2,1],[4,1],[3,1],[1,2],[1,0],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[1,1],[1,0],[0,1],[0,1],[1,2],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[2,2],[6,11],[2,2],[1,0],[0,1],[3,2],[0,1],[1,1],[0,1],[1,2],[0,1],[1,1],[1,0],[0,-1],[-1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[1,3],[0,1],[1,2],[0,1],[4,5],[1,2],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,-2],[1,0],[-1,1],[0,1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[3,-5],[1,-1],[0,-2],[0,-1],[0,-4],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-3],[1,-1],[2,-4],[0,-1],[0,-5],[0,-2],[1,-1],[-1,-2],[-2,2],[1,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,1],[0,2],[1,0],[1,0],[1,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[1,0],[1,0],[0,-2],[1,-4],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,1],[0,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[1,2],[1,1],[1,0],[1,0],[1,-1],[0,2],[1,1],[1,1],[2,2],[1,0],[1,-1],[1,0],[1,-3],[0,-1],[0,-1],[0,-1],[0,-3],[0,2],[1,1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-3],[0,-1],[1,2],[0,-1],[0,-1],[1,-1],[0,-1],[0,4],[-1,3],[0,6],[0,1],[0,1],[0,-1],[0,-1],[0,-2],[1,2],[0,1],[0,1],[1,0],[1,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,-2],[1,-1],[0,-2],[0,-1],[0,1],[0,2],[-1,4],[-1,0],[0,1],[1,2],[1,2],[1,0],[1,-2],[0,5],[0,1],[1,1],[1,0],[0,-1],[0,-2],[0,1],[0,1],[1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-6],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-3],[0,-4],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[-1,-7],[-1,0],[0,-1],[-1,0],[0,-2],[-1,-1],[1,-1],[1,1],[2,2],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[0,2],[0,1],[0,3],[0,1],[1,2],[2,11],[1,3],[0,3],[0,1],[0,1],[2,10],[1,3],[1,2],[0,2],[1,1],[0,3],[0,2],[1,1],[1,2],[1,3],[1,3],[0,3],[2,0],[0,1],[1,1],[1,0],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,2],[1,0],[0,2],[1,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[2,8],[0,1],[1,1],[0,1],[1,3],[0,3],[1,-2],[0,-1],[0,-2],[1,-4],[1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-2],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,2],[-1,1],[0,1],[0,2],[-1,2],[0,2],[0,-1],[1,0],[2,1],[0,1],[1,1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[1,2],[0,6],[0,3],[1,2],[0,2],[1,-1],[-1,-2],[0,-2],[1,-1],[2,-1],[0,1],[0,1],[0,1],[0,4],[1,2],[0,2],[1,-2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,2],[0,2],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[1,4],[2,4],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,3],[2,3],[0,1],[0,1],[1,-1],[1,-1],[0,1],[-1,1],[0,2],[0,2],[0,1],[1,1],[0,1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,-1],[1,0],[2,2],[1,1],[0,1],[0,1],[1,3],[0,2],[0,2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[2,0],[1,0],[0,-3],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[-1,2],[0,1],[0,-1],[-1,-1],[0,-1],[0,8],[0,1],[1,0],[-1,1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[-1,1],[1,1],[1,-1],[0,1],[0,1],[-1,1],[1,0],[1,1],[0,-1],[0,-2],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[-1,1],[0,1],[2,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,1],[0,1],[1,-1],[0,1],[1,1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,1],[0,1],[0,2],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,2],[0,1],[1,0],[0,1],[0,3],[0,-1],[0,-2],[0,-3],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,2],[-1,1],[1,1],[1,-1],[0,1],[0,1],[0,-1],[0,1],[0,4],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,-4],[0,-1],[0,-1],[0,-1],[0,2],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,2],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-3],[1,3],[0,1],[0,1],[0,1],[1,2],[0,-1],[1,-1],[0,-1],[0,1],[0,3],[1,0],[0,-4],[0,-2],[-1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-2],[0,1],[1,2],[0,1],[1,0],[1,0],[1,1],[1,-1],[0,1],[0,2],[1,1],[1,2],[1,0],[1,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-3],[0,-1],[0,-1],[0,1],[0,1],[1,2],[0,1],[0,-1],[1,-2],[0,-1],[0,1],[-1,2],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-7],[0,2],[1,1],[0,-1],[1,0],[1,2],[0,1],[0,-1],[0,-3],[0,-1],[0,1],[0,1],[0,3],[0,1],[1,1],[0,-1],[1,0],[0,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,2],[1,-1],[0,-1],[-1,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,2],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,3],[1,3],[1,2],[0,-3],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,2],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,2],[0,1],[0,2],[1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[1,-2],[0,2],[0,1],[1,1],[0,-1],[0,1],[0,3],[0,1],[1,0],[1,5],[0,-2],[-1,-4],[0,-2],[1,1],[0,1],[1,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,3],[1,1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,1],[2,4],[0,1],[0,1],[0,1],[1,1],[-1,0],[1,1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-2],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[0,1],[1,0],[0,-2],[0,-1],[0,-1],[0,2],[0,1],[0,3],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,2],[0,1],[1,3],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-6],[0,1],[0,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,1],[0,1],[1,-1],[0,-1],[0,-2],[0,-3],[0,-1],[-1,-1],[1,-2],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[1,2],[1,0],[0,2],[0,1],[1,0],[0,-2],[0,2],[1,1],[0,-1],[1,1],[0,1],[0,2],[0,-3],[0,-1],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[1,-1],[-1,1],[1,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[-1,0],[1,1],[1,1],[0,1],[0,1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-2],[-1,0],[1,0],[0,2],[0,1],[1,1],[0,-1],[0,-1],[1,-1],[0,1],[0,2],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-2],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,2],[0,1],[0,1],[1,-1],[1,0],[-1,-2],[0,-1],[-2,-3],[1,1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,0],[0,2],[0,2],[0,2],[2,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,1],[1,-1],[0,-1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[-1,-1],[1,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[-1,-1],[-1,-1],[1,0],[0,-1],[0,1],[1,1],[1,-1],[1,0],[0,-1],[-1,-2],[-1,0],[-1,-3],[0,-2],[-1,0],[-1,0],[1,0],[1,0],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[-1,0],[0,-2],[-1,0],[0,-1],[1,1],[1,1],[1,-2],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,0],[1,-1],[0,1],[0,1],[1,2],[0,-1],[0,-3],[0,-1],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,2],[0,1],[1,1],[0,2],[1,3],[1,0],[0,1],[0,1],[0,1],[1,0],[1,2],[1,1],[1,-2],[0,-2],[1,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[-1,0],[-1,-1],[-1,1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[1,2],[0,-1],[0,-2],[0,-3],[0,-2],[0,-2],[-1,0],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[0,-1],[0,1],[2,2],[1,1],[0,1],[0,-1],[0,-1],[-1,-7],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-3],[0,-2],[-1,-4],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[1,-1],[0,2],[0,3],[0,1],[1,1],[0,1],[2,0],[0,1],[1,1],[0,1],[0,3],[1,1],[2,5],[1,1],[0,1],[0,1],[1,2],[1,1],[0,2],[0,1],[0,2],[0,3],[0,1],[1,1],[-1,1],[1,8],[0,3],[0,-1],[0,-1],[0,-1],[1,0],[-1,8],[0,1],[1,1],[1,0],[0,-2],[0,-2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[3,4],[1,0],[0,1],[1,0],[0,-1],[1,-2],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,1],[0,1],[0,1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[0,-2],[0,-3],[-1,-1],[-1,-1],[0,1],[-1,1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[0,1],[0,2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-2],[0,1],[0,1],[1,1],[0,-2],[1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,2],[0,1],[0,-1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-2],[1,1],[0,1],[0,3],[0,2],[0,1],[0,1],[1,2],[0,1],[1,2],[1,-1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,-3],[1,-3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,1],[1,1],[0,2],[1,-2],[-1,-2],[0,-1],[1,0],[0,1],[1,0],[-1,1],[0,1],[1,2],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,1],[1,-1],[0,1],[0,1],[0,1],[0,-2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-2],[0,-2],[0,-2],[1,-1],[-1,0],[1,0],[0,1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[-1,2],[1,0],[1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[1,0],[0,-1],[1,0],[-1,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[2,-2],[3,-3],[2,-2],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,1],[1,-1],[0,-1],[1,-4],[2,-2],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-2],[1,-1],[0,-1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[4,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,1],[0,1],[0,1],[1,-1],[1,0],[0,1],[2,0],[0,-1],[-1,0],[1,-1],[1,0],[1,1],[1,-2],[1,0],[0,1],[0,3],[0,1],[-1,-1],[0,1],[-1,1],[0,1],[0,1],[3,0],[1,0],[1,-1],[-1,-2],[1,0],[0,1],[0,1],[1,-3],[2,-4],[1,-1],[0,-1],[0,1],[0,-1],[-1,0],[1,-1],[1,1],[0,-1],[0,-1],[1,0],[2,-1],[1,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,2],[2,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,-2],[0,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,-1],[-1,0],[0,1],[1,1],[1,1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,1],[0,2],[0,-1],[4,1],[1,0],[1,0],[1,1],[0,-1],[0,-1],[1,1],[1,2],[1,0],[4,1],[2,2],[1,1],[0,-1],[2,-1],[4,0],[2,-1],[1,0],[0,-1],[1,-1],[0,1],[0,1],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[1,1],[1,-1],[2,-3],[1,-1],[2,-4],[1,-1],[1,-1],[0,-2],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,-1],[1,0],[0,-1],[1,-3],[2,-2],[1,-1],[2,-3],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[2,-3],[1,-2],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-2],[1,-4],[1,-1],[0,-1],[2,-1],[0,-2],[1,-2],[1,-2],[1,-1],[0,-2],[1,0],[2,-1],[1,-2],[1,-1],[1,2],[0,-1],[1,-3],[1,-3],[0,-1],[0,-2],[0,-1],[1,-1],[1,-4],[2,-2],[2,-7],[2,-7],[2,-6],[3,-5],[2,-4],[1,-1],[1,-1],[2,-8],[1,-2],[1,-3],[1,-2],[1,-1],[1,-1],[0,1],[1,0],[2,-2],[3,-3],[1,-1],[0,-2],[1,-7],[2,-5],[1,-1],[1,1],[1,-1],[0,-1],[1,0],[1,1],[3,-1],[1,-3],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-2],[1,0],[0,2],[-1,1],[-1,0],[1,0],[4,0],[2,0],[1,-1],[1,0],[-1,0],[0,1],[5,-1],[0,1],[1,1],[1,1],[1,0],[1,1],[2,-1],[4,-2],[3,-2],[2,0],[1,-1],[1,-1],[1,-1],[1,-3],[1,-1],[0,-1],[1,-1],[0,-2],[0,-2],[0,-2],[1,-1],[0,-1],[1,-2],[1,-7],[0,-3],[1,-1],[0,-2],[0,-1],[0,-1],[1,-5],[0,-1],[0,-5],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[1,0],[0,-9],[-1,2],[0,-2],[-1,-1],[0,-1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-3],[1,-7],[0,-4],[-1,-2],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,1],[1,-6],[0,-2],[1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,2],[0,1],[0,2],[1,1],[0,3],[0,1],[0,-1],[0,-1],[0,-3],[0,-4],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-11],[0,-5],[0,-2],[0,-3],[0,-2],[-1,0],[-1,0],[-1,0],[-1,-1],[2,1],[1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[-1,-1],[0,-2],[0,1],[0,1],[0,-1],[0,-1],[-1,3],[0,1],[0,-1],[0,-4],[0,-1],[-1,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-3],[1,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,1],[0,-2],[1,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[0,-6],[0,-2],[-1,0],[-1,1],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[-1,-2],[0,-3],[0,-1],[0,-2],[-1,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-2,-14],[-2,-6],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-3],[0,-1],[0,-3],[-1,-3],[-1,-6],[-1,-4],[-1,-4],[-1,-3],[0,-3],[-3,-8],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-2],[0,-1],[-3,-8],[0,-1],[-1,-2],[-1,-1],[0,-2],[-1,-4],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[1,1],[0,2],[-1,2],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-4],[-1,1],[0,2],[0,1],[-1,3],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-6],[0,-1],[1,1],[0,1],[1,0],[0,1],[0,-1],[-2,-4],[0,-4],[-1,-2],[-1,-2],[-1,-4],[0,-1],[0,-1],[-1,-5],[-1,-1],[-1,-1],[-1,-4],[-3,-7],[-1,-2],[0,-1],[-1,-2],[1,-1],[-1,-1],[-3,-10],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-5,-7],[-3,-7],[-2,-5],[0,-2],[-1,-1],[-1,-4],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-8],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,2],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,-7],[0,-1],[-2,0],[0,1],[0,1],[0,3],[1,0],[0,2],[0,1],[0,1],[1,2],[1,1],[0,1],[0,2],[0,1],[-1,-2],[1,-1],[-1,0],[0,2],[-1,2],[0,-1],[1,-4],[0,-1],[-1,1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-4],[0,-1],[0,1],[0,1],[0,2],[-1,-1],[0,1],[0,-3],[1,-1],[1,-1],[0,-1],[0,-2],[-1,-2],[-1,-1],[-1,0],[1,-1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[-2,-7],[-2,-11],[0,-2],[-1,-1],[0,-2],[-2,-11],[-1,-3],[0,-4],[-2,-6],[-2,-9],[-2,-8],[-2,-6],[-2,-6],[-1,-6],[-1,0],[0,-1],[-2,-5],[-2,-6],[-2,-6],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,2],[0,3],[0,1],[1,0],[0,-1],[0,1],[0,1],[-1,1],[1,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,4],[-1,0],[0,1],[-1,1],[-1,-1],[0,1],[-1,1],[0,3],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,-2],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[1,0],[-2,-5],[0,-1],[0,-1],[-1,-1],[0,1],[-1,1],[0,1],[0,6],[0,1],[0,1],[1,1],[-1,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[0,-1],[-1,0],[-1,-1],[0,-2],[-2,-2],[0,-1],[-1,-1],[0,-3],[0,-2],[0,-2],[1,-1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[0,-5],[-1,-3],[1,-2],[-1,0],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-1],[1,0],[0,1],[0,3],[0,2],[1,2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-4],[1,-2],[0,-1],[0,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,2],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,3],[0,2],[1,0],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-6],[0,-1],[0,-7],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-2],[0,-3],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-5],[0,-4],[0,-2],[-1,-3],[0,-1],[1,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-3],[0,-3],[0,-5],[0,-18],[1,-6],[0,-6],[1,-11],[0,-11],[1,-3],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[-1,-3],[0,-1],[0,-1],[-1,-5],[0,-1],[0,-1],[0,-2],[0,-1],[0,-6],[-1,-1],[-1,-5],[0,-2],[0,-1],[0,-2],[0,-3],[0,-1],[-1,-4],[0,-1],[0,-2],[-1,-12],[-1,-10],[0,-4],[0,-2],[0,-1],[-1,-4],[0,-9],[-1,-2],[0,-2],[-1,-2],[0,-9],[0,-6],[1,-3],[0,-2],[0,-9],[0,-1],[1,-3],[0,-1],[0,-2],[0,-2],[-3,-8],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-2,0],[-1,-2],[-1,-2],[-2,-4],[-3,-13],[-1,-5],[0,-4],[-2,-14],[0,-11],[0,-15],[0,-13],[1,-11],[0,-9],[0,-3],[-3,-13],[0,-3],[-1,-1],[-3,-3],[-2,-3],[0,-2],[-2,-9],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,0],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-4],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,1],[0,-1],[0,-1],[-1,1],[0,2],[0,1],[-1,0],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[1,0],[1,0],[-1,-1],[1,1],[0,1],[1,0],[0,-1],[-1,-2],[0,-1],[0,-3],[-1,-3],[0,-3],[-2,-5],[0,-3],[-1,-1],[0,1],[-1,-2],[-1,-5],[0,-1],[-1,-1],[0,-1],[-1,-3],[-1,-2],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-2,-7],[-1,-4],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,-4],[-1,-2],[0,-1],[0,-2],[0,-3],[1,-3],[0,-3],[0,-5],[1,-7],[1,-9],[-1,-3],[0,-2],[-4,-6],[-3,-3],[-3,-2],[-3,-2],[-3,-2],[-3,-3],[-2,-4],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-3],[0,-4],[0,-3],[0,-1],[1,-2],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-3,0],[-5,1],[-5,0],[-2,0],[-1,-1],[-1,0],[0,-1],[-2,0],[-3,-1],[-2,0],[-3,0],[0,2],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[1,1],[1,3],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,2],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-2],[0,-4],[1,0],[0,1],[0,-1],[1,-1],[-1,0],[1,-2],[1,0],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,0],[-6,-2],[-2,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[-7,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,2],[0,1],[1,0],[1,0],[1,-1],[0,1],[0,2],[1,-1],[1,-1],[2,0],[3,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,2],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,-3],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,-1],[0,3],[-1,1],[-1,-1],[0,-1],[0,2],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[1,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,-2],[0,1],[-1,0],[-1,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,1],[1,1],[1,0],[-1,-3],[0,-1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,-1],[-1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,1],[0,1],[-1,0],[-1,0],[1,2],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[0,-2],[1,0],[0,-1],[0,-1],[-1,-1],[0,-3],[-1,2],[0,-2],[0,1],[-1,0],[0,1],[-1,0],[0,-2],[1,-1],[-1,0],[0,1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,2],[0,1],[-1,-1],[-1,0],[0,1],[-2,2],[-2,0],[-1,0],[0,1],[-1,0],[-3,-2],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,0],[0,-1],[1,0],[1,1],[1,3],[1,0],[-1,-3],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[-1,1],[0,-1],[1,-1],[0,-2],[1,0],[1,-1],[0,-2],[-1,0],[0,-1],[0,1],[0,1],[-2,-2],[-4,-4],[-4,-6],[-3,-3],[-2,-4],[-1,-1],[-1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,-3],[-1,-1],[0,-1],[-1,-1],[-1,-3],[-7,-10],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-2],[-2,-1],[-5,-10],[0,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,-5],[-1,-1],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,-7],[0,-3],[-2,-1],[0,-1],[-2,-4],[0,-1],[0,-1],[0,-1],[-2,-3],[-1,-1],[0,-2],[-1,-3],[-1,2],[0,1],[1,4],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[-1,1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,2],[0,4],[0,2],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,-2],[0,1],[0,-1],[0,-4],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,1],[0,1],[-2,2],[-1,4],[0,-1],[0,-3],[0,-1],[1,-1],[0,-2],[-1,0],[1,-2],[1,0],[1,0],[0,-1],[-1,1],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[1,0],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,1],[0,1],[1,0],[1,0],[1,1],[0,-2],[0,-2],[-2,-2],[-2,-10],[0,-2],[-1,-3],[-1,1],[0,1],[0,1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-2,1],[-2,-1],[-1,0],[0,-1],[0,-1],[1,1],[4,0],[1,0],[0,-1],[0,-1],[-1,-5],[0,-2],[0,-2],[-1,-1],[0,-1],[1,-1],[0,-6],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,2],[-1,1],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,-1],[1,-2],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[2,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-7],[0,-3],[-1,-5],[0,-3],[0,-1],[1,-1],[1,-2],[1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[1,-4],[1,0],[0,1],[0,1],[1,0],[1,-2],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,-2],[0,-1],[0,-1],[0,-3],[1,-1],[1,-1],[0,-1],[0,-3],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[1,-5],[1,0],[0,-1],[0,-2],[0,-1],[0,1],[-1,-1],[0,-1],[-1,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-3],[-1,-1],[0,-4],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-3],[-1,-3],[0,-2],[1,-1],[-1,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,2],[0,1],[-1,1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,-3],[-8,-14],[-6,-15],[-4,-14],[-3,-8],[-1,-6],[-2,-7],[-2,-9],[-2,-4],[-4,-27],[-1,-8],[-2,-10],[-8,-27],[0,-2],[-3,-12],[-3,-7],[-2,-5],[-4,-11],[-3,-7],[-5,-9],[-7,-12],[-8,-11],[-1,-1],[-4,-11],[-1,-4],[0,1],[0,2],[1,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,2],[-1,4],[0,3],[1,1],[1,-1],[2,-3],[2,0],[1,1],[0,2],[0,1],[1,1],[1,0],[1,0],[1,2],[3,7],[1,2],[1,1],[0,2],[0,1],[1,0],[0,-3],[1,1],[-1,1],[0,2],[0,2],[1,1],[0,2],[0,1],[0,-3],[1,0],[2,0],[1,1],[0,1],[1,1],[0,1],[1,3],[1,4],[1,5],[0,6],[-1,4],[0,1],[0,3],[0,1],[1,1],[1,-1],[1,0],[1,1],[1,0],[0,-1],[0,-3],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,2],[1,3],[0,3],[0,3],[0,1],[0,1],[1,0],[1,0],[2,4],[1,1],[1,0],[0,1],[0,1],[2,5],[0,5],[0,13],[-1,1],[0,3],[0,2],[0,1],[0,1],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,2],[0,1],[0,1],[0,2],[0,1],[0,1],[1,4],[0,2],[0,2],[0,1],[-1,1],[-1,0],[0,2],[0,1],[-1,0],[-1,-2],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-2,0],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[-2,3],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,-1],[0,-1],[-1,1],[-1,2],[0,1],[-1,1],[-1,0],[0,1],[1,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,2],[0,-1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-2],[-1,-1],[1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[1,-2],[-1,-2],[0,-1],[1,0],[0,-2],[1,1],[0,1],[1,0],[0,-1],[0,-2],[0,-2],[2,1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,-3],[-1,-5],[0,-3],[0,-3],[0,-3],[1,-5],[0,-1],[-1,-2],[0,-1],[-1,1],[1,1],[0,2],[-1,4],[0,2],[0,1],[-1,0],[0,-1],[-1,-1],[0,-8],[0,-1],[1,-3],[0,-1],[0,-2],[0,-1],[-1,1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-3],[1,-3],[0,-3],[1,-2],[-4,-3],[-1,-1],[-1,-2],[0,-3],[0,-2],[0,-1],[0,-1],[-1,1],[-1,-1],[-2,0],[-1,-1],[-1,-2],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-2],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-3,-2],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[1,-1],[0,1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-3],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-2],[1,3],[1,1],[-1,-3],[0,-1],[1,-2],[0,-1],[-1,-1],[-3,-5],[-1,-2],[-3,-15],[-2,-13],[-1,-8],[-4,-21],[-1,-3],[-2,-8],[-3,-5],[-2,-5],[-5,-9],[-3,-7],[-2,-4],[-3,-4]],[[3517,1798],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,3],[1,7],[0,11],[0,11],[0,5],[0,3],[0,2],[1,2],[1,2],[3,5],[1,0],[0,2],[0,2],[0,1],[1,2],[2,3],[0,2],[1,1],[1,2],[0,1],[0,1],[0,1],[-2,4],[0,1],[-1,1],[-1,1],[-1,0],[-2,2],[-1,1],[-2,4],[-2,3],[0,1],[-1,2],[0,2],[-1,2],[0,1],[-1,1],[0,3],[0,3],[0,2],[-2,4],[0,4],[0,3],[-1,1],[-2,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,2],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,1],[-1,3],[-2,2],[-2,4],[-1,2],[-1,1],[0,2],[-1,1],[0,1],[-1,2],[0,2],[0,2],[0,1],[-1,1],[-1,2],[0,1],[-1,3],[-1,1],[-1,0],[-4,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[-1,2],[-1,2],[0,1],[-1,2],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,1],[-1,2],[0,1],[-1,1],[-1,0],[0,1],[-1,2],[0,3],[0,1],[-1,1],[-1,1],[0,1],[0,2],[0,1],[0,2],[-2,5],[-2,2],[0,2],[-1,1],[-1,1],[-1,2],[-1,0],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,3],[0,5],[0,2],[0,1],[0,2],[0,3],[0,2],[-2,3],[0,1],[-1,4],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,3],[0,1],[-1,1],[-2,3],[-1,1],[-1,1],[0,1],[-1,3],[0,1],[-2,2],[0,1],[-1,3],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-2,3],[0,1],[-1,2],[-1,1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[-1,1],[-1,-1],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[-1,-2],[-1,0],[0,1],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,-1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,4],[-1,2]],[[3483,2368],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,3],[1,2],[0,2],[1,2],[1,2],[0,5],[1,1],[1,2],[0,1],[0,2],[-1,2],[0,2],[0,1],[0,1],[0,2],[1,13],[1,1],[0,3],[1,2],[1,8],[0,2],[-1,5],[0,2],[1,2],[1,4],[0,1],[0,2],[0,2],[0,3],[0,1],[-1,2],[0,1],[0,3],[-1,2],[0,1],[1,2],[0,2],[1,2],[1,1],[-1,1],[-3,4],[-1,5],[-1,1],[-4,6],[-1,0],[-1,0],[0,-2],[-1,-1],[-3,-3],[-2,-2],[0,-1],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,2],[0,2],[0,13],[-1,4],[-1,3],[-1,2],[0,3],[0,2],[0,2],[0,3],[1,4],[0,2],[-1,1],[-1,2],[0,2],[0,1],[1,3],[0,1],[-1,6],[0,1],[-1,1],[0,1],[0,3],[0,1],[0,1],[-1,2],[0,2],[0,2],[0,1],[0,5],[0,3],[0,2],[0,2],[1,3],[0,1],[-1,1],[1,2],[0,2],[-1,0],[0,1],[-1,0],[-1,2],[0,1],[-1,3],[0,2],[0,6],[0,2],[-1,1],[-1,2],[-1,4],[0,-1],[0,-1],[-1,1],[-2,0],[0,1],[-1,1],[0,-1],[-1,0],[-4,1],[-1,0],[0,1],[-1,2],[-2,2],[-1,2],[0,2],[-1,4],[0,1],[-1,0],[-2,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,3],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,1],[-1,2],[0,1],[0,-2],[-1,0],[0,1],[-1,-1],[0,1],[0,1],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,2],[-1,0],[-1,1],[-1,-1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,3],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,1],[0,1],[-1,-1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,4],[0,1],[1,3],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,5],[0,1],[0,1],[-1,1],[0,2],[0,1],[1,1],[0,2],[-1,1],[0,1],[0,2],[0,1],[1,2],[1,7],[1,2],[-1,1],[0,1],[-1,1],[0,1],[1,2],[1,2],[0,3],[0,3],[0,3],[0,2],[0,1],[0,3],[1,2],[0,1],[-1,1],[0,-1],[-1,2],[0,1],[-1,0],[0,1],[0,1],[1,2],[1,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-3],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[1,2],[0,2],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1]],[[3067,3390],[-1,0],[-3,-1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-6,-8],[-1,-1],[-2,-1],[-1,0],[-2,1],[-1,1],[-1,2],[-1,4],[-1,1],[-3,-5],[0,6],[0,9],[0,9],[0,8],[0,9],[0,9],[1,9],[0,9],[0,6],[0,3],[0,4],[0,3],[0,1],[0,1],[1,0],[1,1],[0,2],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[-1,1],[0,3],[0,1],[1,0],[1,0],[-1,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-3],[-1,-1],[-2,-3],[0,-1],[-1,-3],[-1,-1],[-1,-2],[-1,-1],[0,-3],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-2,-1],[-2,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,1],[-1,0],[0,-1],[0,-1],[-1,0],[-5,0],[-5,0],[-5,0],[-5,0],[-2,0],[1,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[-1,3],[-2,3],[0,3],[0,3],[0,1],[0,1],[0,2],[-1,2],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,2],[-1,1],[-2,0],[-1,0],[-1,0],[-1,2],[-1,1],[-1,0],[0,-1],[0,1],[-1,0],[-3,2],[-11,0],[1,2],[1,4],[1,2],[0,2],[0,2],[1,0],[1,0],[0,1],[0,1],[0,2],[1,2],[1,1],[0,2],[0,2],[0,5],[0,2],[-1,2],[-1,1],[-1,2],[0,1],[-2,8],[-1,3],[0,1],[0,1],[-1,1],[-2,1],[0,1],[-1,1],[-1,4],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-3,3],[0,1],[0,2],[0,3],[-1,1],[0,3],[-1,2],[0,1],[0,3],[0,1],[0,2],[-1,3],[0,1],[-1,2],[-1,2],[-1,1],[-1,2],[0,1],[0,3],[0,1],[1,-1],[1,2],[0,2],[0,3],[-1,2],[-1,1],[-1,1],[0,1],[-4,9],[-1,2],[0,1],[1,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,2],[-1,3],[0,1],[1,-1],[1,0],[0,1],[2,1],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,2],[0,3],[-2,6],[0,1],[-1,1],[1,2],[0,2],[1,6],[0,4],[0,1],[0,1],[1,2],[1,1],[0,1],[0,1],[1,1],[1,3],[3,3],[2,5],[1,1],[1,2],[0,1],[2,0],[1,1],[1,1],[1,2],[1,3],[0,3],[0,1],[0,2],[0,1],[0,4],[-1,1],[0,6],[0,1],[-1,4],[-1,2],[0,3],[1,2],[0,3],[2,9],[1,2],[3,10],[0,1],[1,3],[0,6],[0,2],[0,2],[0,2],[0,3],[1,4],[0,1],[0,3],[0,1],[1,1],[0,1],[0,1],[0,4],[0,2],[-1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,-1],[1,0],[1,1],[1,2],[1,0],[2,0],[0,1],[0,1],[1,1],[0,1],[1,2],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[1,4],[1,1],[0,1],[0,1],[1,0],[1,-1],[1,1],[0,1],[2,2],[1,2],[1,2],[0,1],[1,2],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[2,3],[0,2],[1,0],[2,1],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[2,1],[1,0],[0,2],[0,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,-1],[1,-2],[0,1],[0,2],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[1,2],[2,-1],[0,1],[0,2],[1,-2],[0,-1],[1,1],[0,2],[1,1],[0,2],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[1,2],[1,0],[1,-1],[1,0],[1,3],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[1,-2],[0,1],[0,1],[1,2],[1,-1],[0,-1],[0,-1],[0,1],[1,2],[1,0],[0,1],[1,-1],[1,-2],[1,2],[0,-1],[1,-1],[0,-1],[-1,-3],[0,-1],[1,-1],[1,-3],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[1,3],[0,1],[0,1],[1,0],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,0],[1,2],[0,2],[0,1],[0,2]],[[3056,3859],[0,1],[0,1],[1,0],[0,1],[1,11],[0,11],[1,12],[1,11],[1,11],[1,11],[0,12],[1,11],[1,11],[1,11],[1,12],[1,11],[0,11],[1,12],[1,11],[1,11],[0,4],[0,4],[0,1],[1,5],[0,3],[0,7],[0,3],[1,4],[0,2],[-1,4],[0,1],[0,1],[0,1],[0,3],[0,1],[-1,0],[-1,3],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,3],[0,1],[0,1],[1,4],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,1],[0,1],[0,1],[-3,2],[0,1],[-1,2],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[-1,0],[0,1],[-1,2],[-1,4],[-1,3],[-1,1],[0,3],[0,3],[0,2],[0,5],[0,6],[0,8],[1,8],[0,6],[0,5],[0,2],[0,5],[0,-1],[1,0],[0,1],[1,0],[1,-1],[0,1],[1,0],[2,0],[1,1],[1,1],[1,1],[1,2],[1,-1],[1,0],[0,1],[1,2],[1,0],[0,2],[1,0],[1,1],[0,-1],[1,-1],[2,-5],[1,1],[1,0],[0,-2],[1,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-1,0],[-2,-3],[0,1],[-1,1],[0,1],[-1,-1],[-1,0],[-2,1],[-3,-1],[0,1],[0,1],[-1,1],[-1,-1],[-1,-2],[-1,0],[0,5],[0,4],[0,5],[0,5],[0,5],[0,5],[0,4],[0,5],[0,5],[0,3],[1,0],[1,0],[1,2],[1,0],[1,0],[1,0],[2,2],[1,0],[2,-1],[2,-2],[1,0],[2,0],[3,0],[5,0],[6,0],[5,0],[5,0],[4,0],[1,0],[2,0],[0,1],[-1,0],[1,1],[-1,1],[-1,0],[0,1],[0,2],[0,1],[-1,0],[1,2],[1,11],[1,0],[0,-2],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-5],[0,-3],[1,-2],[1,-2],[1,-1],[1,0],[1,1],[1,0],[1,2],[1,2],[3,11],[2,6],[1,1],[1,2],[0,1],[1,0],[1,0],[0,2],[1,0],[1,-1],[0,-1],[1,-2],[1,-2],[1,-6],[0,-3],[3,-10],[1,-5],[1,-7],[1,-5],[-1,-20],[0,-4],[0,-1],[1,-1],[2,2],[2,1],[1,1]],[[3142,4241],[1,-1],[1,-3],[2,-5],[2,-5],[2,-4],[2,-5],[1,-3],[1,-1],[1,-3],[2,-3],[1,0],[2,1],[1,0],[0,-1],[1,-1],[1,0],[1,3],[1,0],[1,1],[1,0],[0,1],[1,1],[1,4],[0,1],[1,1],[2,3],[1,1],[1,1],[1,0],[2,0],[1,0],[0,-1],[1,-1],[0,-2],[1,-1],[0,-2],[0,-1],[-1,-4],[-1,-2],[0,-3],[0,-3],[0,-2],[1,-1],[1,0],[1,1],[1,2],[0,2],[1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[2,5],[1,1],[1,-1],[1,0],[0,1],[1,2],[0,3],[1,6],[0,3],[1,1],[1,0],[2,0],[0,1],[0,1],[1,2],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,-1],[1,1],[3,5],[0,2],[1,3],[1,2],[0,1],[2,2],[1,2],[1,1],[1,-1],[0,-1],[-1,-3],[0,-2],[0,-1],[0,-2],[1,-1],[0,1],[0,1],[1,3],[1,1],[1,4],[2,4],[1,2],[1,1],[0,2],[1,2],[0,1],[0,1],[0,4],[0,5],[0,6],[1,2],[1,2],[1,1],[1,0],[3,0],[1,0],[0,1],[5,8],[1,2],[1,0],[2,1],[1,1],[1,1],[-1,1],[1,1],[0,3],[0,2],[0,1],[0,5],[0,1],[1,2],[0,1],[-1,1],[-4,0],[-1,1],[-4,0],[-2,-1],[-1,0],[-4,2],[-1,1],[-1,0],[-1,1],[0,2],[1,2],[1,4],[0,2],[0,4],[0,1],[0,1],[0,1],[0,1],[-1,4],[-2,10],[-1,3],[-1,5],[-1,2],[0,3],[0,3],[0,6],[0,2],[-1,9],[0,2],[0,1],[1,3],[0,1],[0,1],[0,3],[0,2],[0,1],[-1,3],[-2,5],[-1,1],[-1,1],[-1,1],[-3,6],[-1,4],[-1,1],[-1,3],[-1,2],[-1,6],[0,3],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,2],[1,1],[0,1],[1,0],[1,-2],[2,-2],[0,-2],[0,-1],[1,-3],[0,-1],[1,-1],[6,3],[3,-1],[2,-1],[1,-1],[0,-2],[1,-2],[0,-2],[1,-5],[0,-3],[1,-2],[1,0],[1,1],[1,2],[1,1],[2,0],[1,-1],[1,0],[1,1],[1,0],[1,-1],[2,-4],[1,-1],[2,1],[0,2],[0,3],[1,2],[1,0],[1,-1],[2,-3],[1,-2],[1,-6],[2,-3],[3,-8],[0,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,1],[1,0],[0,2],[1,0],[1,0],[0,2],[1,2],[0,3],[0,3],[0,3],[-1,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[2,0],[2,-1],[1,1],[0,2],[0,2],[0,1],[1,1],[1,1],[0,2],[1,0],[1,1],[1,-1],[5,-5],[1,-1],[1,1],[2,4],[2,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,1],[2,4],[0,1],[1,1],[1,0],[1,-1],[1,0],[1,1],[0,-1],[1,1],[0,1],[1,1],[0,1],[0,5],[0,2],[2,1],[2,0],[1,1],[1,0],[0,1],[0,2],[-1,2],[0,1],[1,0],[2,0],[1,-2],[1,0],[2,1],[2,1],[1,1],[1,3],[0,1],[0,3],[1,5],[0,1],[1,0],[3,3],[1,2],[1,2],[2,6],[1,3],[-1,4],[-1,12],[-1,1],[-1,1],[-1,0]],[[3312,4519],[2,1],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,2],[1,0],[1,-1],[1,0],[0,1],[1,3],[1,1],[1,0],[1,-1],[0,-1],[1,1],[1,-1],[0,-5],[1,0],[0,-1],[0,-1],[2,-2],[0,-1],[1,-2],[-1,-4],[0,-3],[0,-1],[0,-2],[0,-2],[-1,-4],[0,-3],[0,-3],[0,-1],[0,-2],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-2],[1,1],[1,-1],[1,1],[1,0],[0,-2],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-2],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-3],[-1,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[1,-2],[0,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[1,-1],[1,-2],[0,-2],[0,-2],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-2,-2],[-1,-2],[0,-2],[0,-2],[1,-1],[0,-2],[-1,-3],[0,-1],[1,0],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-3],[0,-1],[0,-3],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-2],[0,-2],[0,-4],[0,-1],[-1,-6],[0,-11],[0,-2],[1,-4],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-5],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[1,-1],[1,-2],[1,0],[0,-1],[1,0],[0,-1],[0,-3],[0,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,-2],[1,-3],[0,-1],[1,-2],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-2],[1,-1],[0,-3],[1,-2],[2,-2],[4,-2],[2,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-2],[1,-1],[1,0],[0,1],[1,0],[1,1],[0,2],[1,2],[0,1],[1,0],[2,-1],[1,1],[0,-1],[1,0],[1,3],[0,2],[0,1],[0,2],[-1,3],[0,1],[1,1],[2,1],[1,2],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,-1],[0,-2],[1,-1],[2,0],[1,0],[0,2],[1,2],[0,1],[0,1],[0,3],[0,1],[1,-1],[1,0],[0,1],[1,1],[2,3],[1,0],[1,0],[3,-1],[2,1],[1,1],[1,6],[1,2],[0,4],[1,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,-1],[1,-1],[1,0],[2,3],[1,2],[1,-2],[0,-2],[1,-1],[0,-2],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[2,-1],[0,1],[2,2],[1,0],[1,1],[0,1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[2,1]],[[3349,5075],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,1],[-1,1],[-1,2],[0,3],[0,9],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1]],[[8198,4498],[0,-1],[0,-1],[1,-1],[0,-2],[2,-14],[0,-1],[0,-1],[0,-3],[0,-3],[0,-3],[1,-3],[0,-2],[1,-2],[1,-2],[0,-1],[-1,-1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,2],[-1,0],[0,1],[0,7],[0,3],[-1,5],[-1,3],[0,6],[0,5]],[[8194,4492],[1,-1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,2],[1,0]],[[8166,4477],[7,-1],[2,1],[2,3],[3,3],[1,0],[0,2],[1,2],[1,2],[3,7],[1,2],[5,7],[3,4],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[-1,-2],[0,-1]],[[8193,4497],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[1,-2],[0,-2],[0,-2],[0,-1],[1,-8],[0,-3],[0,-2],[1,0],[0,-2],[0,-3],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,1],[1,-1],[-1,-1],[0,-3],[0,-1],[-1,-3],[0,-1],[-2,-6],[-2,-2],[-1,0],[0,1],[0,2],[-1,1],[0,1],[-2,4],[0,1],[-1,2],[0,4],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-2,2]],[[7545,6095],[-1,-3],[-1,-4],[0,-3],[1,-5],[0,-1],[1,-1],[0,-1],[0,-2],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[2,2],[1,0],[1,0],[1,2],[1,-2],[2,-10],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[1,-2],[1,-3],[1,-2],[0,-4],[0,-2],[0,-2],[-1,-2],[-2,-1],[0,1],[-1,1],[-1,1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-2,-3],[0,-1],[-2,0],[-1,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,3],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,2],[-2,0],[-1,0],[-1,0],[-2,-1],[-2,-1],[-6,0],[-3,1],[-4,3],[-2,4],[-1,1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,-4],[0,-1],[-1,-1],[-3,-1],[-2,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,2],[-1,0],[-1,-1],[-1,0],[1,2],[-1,2],[0,1],[-1,1],[-1,0],[-2,0],[-1,1],[-1,2],[-1,1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,1],[0,2],[-1,2],[0,1],[-1,1],[-1,1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[0,2],[-1,-1],[0,-1],[-1,-1],[0,4],[0,3],[0,2],[0,2],[-1,1],[-2,2],[0,2],[1,3],[0,2],[1,1],[2,1],[0,1],[0,2]],[[7468,6064],[1,1],[1,0],[1,-1],[0,1],[0,2],[-1,2],[0,3],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,1],[1,2],[1,5],[0,3],[1,2],[1,2],[1,1],[1,2],[1,2],[1,6],[1,3],[0,1],[1,1],[0,1],[1,1],[1,3],[1,1],[3,2],[1,1],[1,2],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,-1],[0,1],[1,0],[2,2],[2,-1],[1,-1],[0,1],[1,1],[1,1],[1,-2],[0,-2],[0,-3],[1,0],[1,3],[1,0],[1,-1],[1,0],[1,-3],[1,0],[2,-1],[0,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-4],[1,0],[2,-1],[1,1],[1,0],[0,1],[1,0],[1,-2],[1,0],[1,-1],[2,0],[2,-1],[1,-3],[1,-2],[1,0],[2,1],[0,1],[1,2],[1,3],[0,1],[1,0],[1,0],[1,0],[0,1],[1,-2],[1,-2],[2,-3],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[1,-5]],[[5701,2912],[-1,-6],[0,-2],[0,-1],[1,-5],[1,-5],[1,-2],[1,-1],[1,-2],[0,-3],[1,-5],[1,-3],[0,-2],[1,-3],[0,-1],[0,-1],[2,-5],[1,-1],[0,-1],[1,-5],[1,-1],[1,-2],[1,-1],[0,-3],[1,-5],[1,-5],[3,-8],[1,-5],[0,-2],[-1,-2],[0,-2],[0,-1],[0,-2],[1,-2],[1,-3],[1,-3],[2,-18],[1,-3],[1,-1],[1,-1],[2,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[1,-1],[0,-1],[1,-2],[1,-2],[1,-1],[1,0],[1,-2],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[3,-4],[1,-1],[1,1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-2],[2,-8],[0,-9],[0,-10],[1,2],[1,0],[3,0],[2,-1],[2,1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-3],[0,-2],[-1,-3],[1,-5],[0,-3],[0,-6],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-4],[0,-1],[0,-1],[1,-3],[1,-1],[1,-4],[1,-2],[1,-3],[1,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,-1],[2,0],[2,-1],[3,-1],[1,0],[1,-1],[3,-3],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,-2],[1,-1],[4,-5],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[0,-2],[-1,-1],[0,-2],[-1,-2],[0,-3],[1,-3],[0,-2],[1,-2],[1,-2],[1,0],[3,0],[0,-1],[0,-2],[1,0],[2,-5]],[[5815,2605],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-4,0],[-1,-2],[0,-1],[0,-1],[-1,-2],[0,-5],[0,-1],[0,-1],[-1,-3],[-2,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-2,1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,-3],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-2],[1,-3],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,1],[-1,2],[-1,-2],[-1,-1],[0,1],[-1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-2,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,2],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,-3],[0,-2],[-1,-1],[0,-1],[1,0],[-1,-4],[0,-1],[0,-2],[-2,-19],[0,-3],[-1,-6],[0,-1],[0,-1],[-1,-1],[-3,-2],[0,-1],[-2,-4],[-2,-3],[-1,-2],[0,-2],[-1,-5],[-2,-5],[-1,1],[-1,0],[-2,0],[-3,-3],[-4,-3],[-1,-1],[0,-1],[-2,0],[-1,0],[0,-1],[0,-1],[0,-6],[0,-2],[0,-3],[-1,-4],[0,-2],[-1,-4],[0,-5],[-3,-12],[-1,-9],[0,-2],[-1,-6],[-1,-5],[-3,-6],[-2,-2],[-6,-2],[-1,1],[-2,1],[-1,0],[-1,0],[-1,-2],[-2,-3],[-2,-1],[-1,0],[-1,1],[-2,-1],[-1,1],[-2,2],[-2,2],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,2],[-2,5],[-1,2],[-1,0],[-3,-2],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,2],[-1,2],[-1,3],[-1,1],[0,1],[-1,1],[0,1],[-2,1],[0,1],[-3,6],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,2],[-1,0],[-2,0],[-1,-1],[-2,-2],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-2,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,0],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-4],[-1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-4],[0,-1],[-1,-1],[-1,-3],[0,-2],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-3],[-2,-3],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-2],[-1,-2],[0,-3],[-1,-6],[-1,-3],[-2,-3],[-1,-3],[-2,-1],[-3,0],[-1,0],[-1,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-2],[-1,-1],[-2,1],[-2,1],[-2,1],[-2,0],[-2,-1],[-1,0],[-1,0],[-2,-2],[-1,0],[-3,2],[-2,2],[-1,1],[-1,-1],[-1,0],[-1,-2],[-2,-2],[-1,-1],[0,-1],[0,1],[0,2],[-1,1],[0,1],[0,1],[-1,2],[0,2],[0,3],[0,2],[1,5],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,2],[0,4],[0,1],[1,1],[1,1],[0,4],[2,4],[1,3],[0,3],[1,4],[0,1],[-1,4],[0,1],[0,5],[0,6],[-1,4],[0,1],[-1,0],[0,2],[0,4],[0,2],[-1,0],[0,1],[-1,1],[1,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,2],[-1,3],[0,2],[0,1],[1,1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,-1],[-1,2],[0,1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[-1,4],[0,1],[-3,7],[-3,3],[-1,1],[-1,2],[-1,3],[-1,1],[0,1],[0,1],[-1,1]],[[5554,2426],[0,12],[0,12],[0,12],[0,12],[0,12],[0,2],[0,10],[0,12],[0,12],[0,5],[0,7],[0,12],[0,12],[0,12],[0,11],[0,10],[0,11],[0,10],[0,6],[7,0],[6,0],[7,0],[6,0],[2,0],[0,3],[0,3],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,4],[0,9],[0,9],[0,8],[0,9],[0,9],[0,1],[0,7],[0,9],[0,9],[0,9],[0,8],[0,9],[0,9],[0,9],[0,8],[0,6],[0,3],[0,9],[0,3],[0,3],[0,2],[0,3],[0,3],[0,3],[0,3],[0,3],[0,2],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,2],[0,2],[1,0],[0,1],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[2,1],[3,1],[2,1],[2,1],[3,1],[2,1],[2,1],[3,1],[2,2],[2,1],[3,1],[2,1],[2,1],[3,1],[2,1],[2,1],[3,1],[3,1],[2,1],[2,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-1],[0,-3],[0,-3],[1,-1],[1,1],[1,1],[0,2],[1,0],[3,7],[0,1],[1,0],[0,2],[0,1],[1,1],[1,1],[0,3],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,0],[1,2],[1,4],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,4],[1,1],[1,0],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[1,-2],[1,0],[1,0],[0,1],[1,1],[1,4],[1,1],[1,2],[0,2],[1,1],[1,1],[0,1],[1,1],[1,0],[2,2],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[1,1],[0,-1],[1,0],[1,1],[1,2],[1,0],[2,-1]],[[5634,4918],[1,-2],[3,-14],[3,-5],[5,-12],[5,-19],[5,-18],[0,-3],[1,-13],[0,-2],[0,-2],[-1,-4],[-1,-2],[0,-1],[0,-2],[1,-1],[-1,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-3],[0,-2],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-8],[1,-2],[0,-2],[1,-1],[0,1],[1,2],[1,0],[0,-2],[0,-2],[0,-4],[-1,-2],[-1,-3],[0,-2],[0,-2],[0,-1],[0,-2],[1,-1],[0,1],[1,1],[1,1],[1,-1],[0,-1],[1,0],[1,-1],[1,1],[1,1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[3,-1],[2,1]],[[5671,4763],[1,0],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,-7],[0,-2],[-1,-3],[1,-2],[0,-1],[1,-2],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[2,1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[2,1],[2,-1],[1,0],[1,-2],[1,0],[1,-1],[3,-6],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[2,-3],[1,-2],[0,-1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[-2,-2],[-1,-1],[0,-1],[1,-1],[0,-3],[2,-3],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,-2],[2,-2],[0,-1],[1,1],[0,-1],[1,0],[1,-3],[0,-1],[2,-1],[1,0],[0,-2],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[0,-4],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-3],[1,-2],[0,-1],[1,-1],[2,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-3],[-1,-3],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-3],[1,0],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[1,0],[1,2],[1,0],[0,-2],[0,-1],[0,-1],[1,-1],[1,-2],[1,0],[2,0],[2,-2],[1,0],[0,-1],[0,-3],[0,-2],[1,0],[1,0],[1,-2],[0,-1],[1,0],[1,1],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[2,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-7],[-1,-1],[1,-1],[0,-2],[0,-4],[0,-1],[1,-4],[0,-2],[1,-2],[1,-3],[1,-1],[1,-3],[0,-1],[1,-1]],[[5762,4510],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-2,3],[-1,1],[-2,0],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-3],[-1,-2],[0,-1],[0,-1],[-1,1],[0,1],[0,-1],[-1,0],[-1,3],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,3],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[-1,1],[0,-1],[0,-1],[-1,1],[0,-2],[0,-1],[-1,0],[-1,-1],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[1,-1],[-1,0],[-1,-1],[0,-1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,2],[-1,0],[0,1],[1,1],[-1,0],[0,-1],[0,2],[-1,1],[0,-1],[1,0],[-1,-1],[-1,1],[-1,2],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,-1],[-1,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-2],[1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-2,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[-1,1],[-1,1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,3],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,2],[-1,0],[-1,-1],[0,-3],[-1,0],[-1,1],[-1,0],[-1,-2],[-1,-2],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,-1],[-1,0],[-2,-2],[0,-1],[-1,0],[-1,0],[-1,-2],[-1,-1],[-1,0],[-2,-4],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,2],[0,1],[-1,1],[-1,3],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,2],[0,2],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,1],[-1,0],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-2],[0,-2],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-4],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-3,0],[-3,1],[0,1],[-1,1],[-1,2],[0,1],[-2,0],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[-1,1],[-1,-1],[-2,-3],[-1,0],[-1,1],[0,1],[-2,0],[-1,0],[0,1],[-2,2],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,0],[-2,2],[-3,2],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-2,0],[-1,0],[0,1],[-3,7],[-1,1],[0,2],[1,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[-1,4],[0,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,4],[-1,1],[-2,2],[0,1],[-1,2],[-1,1],[-2,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-3,0],[-1,2],[-1,-1],[0,-1],[-1,0],[-2,0],[-1,-1],[0,-2],[-3,-4],[-1,-1],[0,-1],[-1,-2],[0,-2],[-1,0],[-1,0],[-1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-3],[-1,0],[0,-1],[0,-1],[0,-3],[-1,-1],[-1,-1],[-1,-5],[-1,-1],[0,-2],[-1,-2],[-1,-2],[-1,-9],[-1,-2],[-1,-2],[-1,-1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-2],[-1,-2],[1,-1],[0,-2],[1,0],[0,-2],[1,-4],[0,-3],[0,-6],[0,-4],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-3],[0,-8],[1,-17]],[[5517,4398],[-1,0],[-1,1],[0,3],[-1,4],[-1,2],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,1],[-2,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,1],[0,1],[-1,2],[0,2],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,2],[0,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-2],[-1,0],[-1,1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,2],[-1,0],[-1,-1],[-1,-2],[-1,-3],[-1,-3],[0,-5],[-1,-5],[0,-2],[0,-1],[-1,-3],[0,-2],[0,-2],[0,-1],[0,-2],[1,-1],[-1,-3],[-1,-5],[0,-3],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-5],[0,-3],[-1,-2],[-1,-6],[-1,-7],[-1,-5],[-1,-7],[-2,-7]],[[5449,4312],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,1],[0,2],[0,3],[0,1],[0,2],[-1,1],[0,1],[1,3],[0,1],[0,2],[-1,2],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,2],[1,2],[0,2],[1,2],[-1,1],[0,2],[0,2],[-1,2],[0,2],[0,1],[-1,0],[-1,-1],[0,1],[0,4],[0,1],[-1,2],[0,1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[0,1],[-2,5],[-3,7],[-2,7],[-3,8],[-3,6],[-2,5],[0,1],[-2,6],[-3,9],[-1,10],[1,-1],[1,0],[1,2],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,2],[0,4],[0,4],[0,2],[-1,2],[0,3],[-1,1],[0,2],[0,1],[-2,1],[-4,8],[-1,2],[-1,3],[0,4],[0,5],[0,1],[0,1],[0,2],[0,1],[-1,6],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,3],[0,4],[0,1],[-1,2],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,2],[1,0],[0,2],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,4],[1,3],[0,1],[0,2],[0,7],[-1,1],[0,2],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,2],[0,1],[1,0],[4,5],[1,1],[1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[1,3],[3,18],[0,1],[1,1],[0,1],[2,2],[0,1],[0,1],[1,3],[0,3],[1,6],[1,4],[0,2],[0,1],[1,1],[0,1],[0,4],[0,1],[0,1],[1,2],[0,3],[1,1],[0,1],[3,3],[1,3],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,5],[0,1]],[[5429,4681],[1,-1],[1,0],[2,1],[2,0],[1,-4],[1,-1],[1,1],[4,2],[1,2],[1,1],[0,2],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,2],[1,1],[2,1],[1,0],[0,1],[0,5],[0,1],[0,1],[1,0],[1,0],[0,2],[0,1],[1,1],[1,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,0],[1,-2],[1,-3],[0,-2],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[2,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,3],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[3,3],[1,1],[0,1],[2,-1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,2],[1,0],[1,0],[3,-1],[2,0],[1,0],[2,2],[2,2],[13,1],[2,1],[1,3],[0,3],[0,3],[1,2],[1,1],[2,2],[1,2],[1,4],[1,2],[0,2],[1,1],[0,2],[3,8],[1,5],[0,1],[1,1],[1,2],[-1,1],[-1,2],[0,1],[-4,4],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[1,1],[1,2],[1,0],[1,0],[1,-1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,1],[0,-1],[1,-1],[1,0],[1,1],[2,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[0,1],[2,0],[1,1],[1,1],[1,0],[2,-1],[0,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,-1],[0,1],[1,2],[1,-1],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[1,1],[1,1],[1,0],[0,-2],[1,1],[2,-1],[1,1],[0,1],[1,0],[1,1],[0,2],[0,2],[1,0],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,-1],[1,-1],[2,0],[-1,3],[1,2],[2,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,2],[0,2],[0,1],[1,1],[1,3],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,2],[2,2],[0,1],[0,1],[2,4],[0,1],[1,0],[1,-1],[0,-1],[1,1],[1,3],[1,2],[1,9],[1,2],[1,1],[1,0],[1,1],[1,0],[0,2],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,4],[-1,0],[0,1],[0,1],[0,2],[0,2],[-1,2],[0,2],[0,1],[1,2],[0,2],[0,1],[1,1],[1,1],[1,1],[0,-1],[1,0],[1,2],[0,1],[1,1],[2,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[2,-1],[1,0],[0,-1],[1,2],[0,2],[1,1],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,-1],[0,1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-2],[2,-1],[1,-1]],[[3177,7190],[0,-1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[2,0],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1]],[[3338,7226],[-1,-2],[-1,0],[-2,0],[-2,0],[-1,1],[-1,1],[-1,1],[1,0],[0,-1],[1,0],[2,-1],[4,1],[1,1],[1,0],[1,2],[1,2],[-1,-4],[-2,-1]],[[3158,7250],[0,-3],[-1,1],[1,4],[1,3],[1,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-2],[-2,-3]],[[3145,7285],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-3],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,2],[-1,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[0,2],[1,2],[0,2],[0,1],[0,2],[1,1],[0,3],[1,1],[1,-1]],[[2946,7321],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[0,1],[0,1],[0,1],[0,1],[1,0],[2,0],[1,1],[1,0],[1,1],[0,-1],[0,-1]],[[2947,7325],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1]],[[2946,7334],[0,1],[1,1],[0,-1],[-1,-1]],[[3307,7340],[1,-1],[0,1],[1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[1,-2],[-1,0],[0,-2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0]],[[2956,7348],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-3],[-1,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,2],[1,0],[1,3],[0,1],[1,1],[1,1],[1,0],[2,1],[0,-1]],[[2957,7336],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[-3,1],[-2,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,1],[2,2],[1,1],[0,2],[1,0],[1,0],[1,0],[1,2],[1,0],[0,2],[1,1],[0,1],[1,2],[0,1],[2,3],[1,1],[1,1],[0,-1],[0,-1],[0,-1],[-1,-4],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[3263,7358],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[1,0],[1,1]],[[3341,7370],[0,-1],[0,1],[-1,-1],[-1,1],[2,1],[0,1],[1,0],[-1,-1],[0,-1]],[[3027,7430],[-2,-1],[-1,1],[0,1],[1,2],[3,3],[2,4],[1,1],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-2,-3],[-2,-2]],[[3319,7439],[1,0],[0,1],[1,1],[1,0],[0,-2],[-1,-2],[-1,-3],[-1,-1],[0,-1],[1,0],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-4],[-1,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,-1],[0,-2],[-1,-1],[-1,-4],[-1,-7],[0,-1],[-1,-3],[0,-1],[-1,-2],[-1,-4],[-1,-4],[0,-1],[2,5],[0,1],[2,3],[1,1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-4,-9],[-1,0],[-1,-1],[0,-1],[-1,1],[-1,-2],[-2,-1],[-1,-1],[0,1],[0,1],[-1,-2],[-2,-4],[-1,-1],[-3,-1],[0,-1],[0,-1],[2,0],[1,0],[0,1],[1,1],[0,1],[2,2],[0,2],[1,0],[1,0],[2,2],[1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[2,-3],[-1,0],[-1,1],[0,-1],[1,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[-3,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,0],[1,0],[3,4],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[1,-1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,-1],[1,0],[0,1],[-1,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,2],[1,1],[1,1],[1,1],[1,1],[0,2],[1,1],[-1,0],[-1,-1],[-1,-2],[-2,0],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[2,2],[1,2],[1,1],[1,0],[1,3],[2,2],[0,1],[2,3],[1,1],[1,2],[0,1],[1,0],[1,1],[0,1],[-1,0],[0,-1],[-2,0],[-1,-3],[-5,-7],[-1,-1],[0,1],[0,1],[1,1],[0,1],[1,2],[2,4],[0,1],[1,1],[3,5],[2,1],[1,-3],[1,-3],[0,-1],[-2,-5],[0,1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,2],[1,1],[1,0],[1,0],[0,-1],[1,-1],[-2,-1],[3,0],[2,-1],[-1,-2],[1,0],[1,1],[2,-1],[0,-1],[-1,-1],[-1,-2],[0,-2],[1,1],[0,1],[1,0],[0,1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-2,0],[0,-1],[1,-1],[0,-1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-2],[-1,0],[-1,-1],[0,-1],[1,0],[-5,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-2,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,0],[0,1],[-1,-1],[0,-1],[-3,-2],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,1],[0,1],[-2,1],[-1,1],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,3],[-1,4],[-1,1],[0,2],[-1,5],[0,2],[0,1],[-1,1],[1,4],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,2],[0,2],[1,0],[0,1],[2,2],[2,3],[0,1],[1,0],[1,6],[1,2],[0,1],[3,5],[0,1],[0,1],[0,2],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,-2],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,2],[1,5],[1,2],[1,2],[1,1],[1,0],[2,5],[1,5],[0,2],[1,1],[0,1],[1,0],[0,-1],[1,0],[1,-1],[0,-1]],[[3221,7427],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-2],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-4],[-1,-1],[0,-1],[0,-1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[2,-1],[1,1],[0,2],[-1,1],[0,1],[1,1],[0,1],[-1,0],[1,1],[1,1],[1,0],[3,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[1,1],[0,1],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,-2],[1,1],[0,1],[3,-1],[4,0],[3,1],[0,-1],[1,-1],[0,2],[1,1],[5,-1],[-2,1],[-1,0],[1,1],[1,0],[1,1],[1,-1],[1,1],[5,0],[2,0],[2,1],[3,-1],[2,-1],[1,-1],[0,-1],[-1,-2],[-4,-3],[-1,-1],[-1,0],[-1,1],[0,1],[0,-2],[-1,-1],[0,1],[-1,1],[-1,0],[0,-1],[1,0],[0,-2],[0,-1],[-1,0],[-1,0],[1,-2],[0,-1],[-3,1],[1,-1],[1,-1],[0,-2],[-1,0],[0,-1],[-2,1],[-1,1],[-1,0],[0,-1],[1,-1],[1,0],[1,-2],[-1,1],[-1,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,-1],[-1,-1],[0,-1],[0,-1],[2,0],[0,1],[-1,1],[1,0],[1,-1],[0,-2],[0,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[-1,-2],[-2,-1],[-4,-1],[-1,0],[0,-1],[-1,0],[0,1],[-2,1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[1,0],[1,0],[-1,2],[-2,-1],[-1,0],[1,1],[1,1],[1,1],[1,2],[0,1],[-1,0],[0,-1],[-1,-1],[0,2],[0,1],[1,1],[-1,1],[-1,1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,1],[-1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[-1,0],[-1,-1],[-1,0],[0,-2],[-1,0],[-1,-2],[0,-1],[-1,2],[-1,1],[1,-3],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[2,0],[1,2],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,1],[-2,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,2],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[1,-1],[-1,3],[2,-2],[1,0],[-2,2],[1,1],[-1,0],[-2,0],[-1,1],[-1,1],[-1,-1],[-1,-1],[-2,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,-1],[0,3],[0,2],[0,3],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-2,-3],[0,1],[-1,0],[-1,1],[0,1],[-3,0],[-1,-1],[-1,0],[0,1],[-1,3],[1,3],[1,2],[1,2],[1,2],[0,1],[1,1],[0,2],[0,1],[0,2],[2,3],[3,5],[2,3],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[1,-2],[0,-1],[-2,-3],[0,-1],[0,-1]],[[3477,7456],[0,2],[1,1],[0,-1],[0,-1],[-1,-1]],[[3448,7459],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[1,0],[1,0],[0,-1]],[[3495,7465],[-1,-1],[0,1],[0,1],[0,1],[1,2],[0,-1],[1,-1],[-1,-2]],[[3044,7465],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,-3],[-1,-1]],[[3294,7483],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[1,0],[0,1],[1,1],[0,2],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-3],[-1,-1],[-1,0],[-1,-2],[-1,-1],[1,-1],[1,2],[4,7],[1,1],[1,1],[-1,-1],[-1,-2],[-1,-3],[-2,-5],[-2,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-2],[-1,-1],[1,-1],[1,0],[0,1],[0,-1],[1,-1],[1,-1],[1,0],[0,1],[0,1],[0,-2],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,2],[1,1],[0,3],[1,1],[0,1],[0,3],[0,1],[1,1],[0,1],[1,0],[1,1],[4,7],[4,6],[0,1],[1,0],[3,0],[1,0],[-1,-1]],[[3528,7481],[-1,0],[0,2],[2,2],[1,0],[0,-1],[-1,-1],[-1,-2]],[[3496,7484],[-1,-4],[0,-2],[0,-1],[0,-2],[-2,-7],[0,-1],[-1,0],[-2,1],[0,1],[2,4],[2,4],[0,1],[-1,0],[0,1],[2,3],[0,1],[0,-2],[0,-1],[0,2],[1,4],[0,-2]],[[3446,7484],[1,-1],[1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[3,1],[1,0],[0,-2],[0,-1]],[[3498,7478],[0,-1],[-1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,2],[0,-1],[0,2],[0,4],[0,1],[0,1],[0,1],[0,2],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,-2],[1,0],[0,-1]],[[3208,7500],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,-3],[-1,-2],[0,1],[-1,0],[1,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,2],[0,1],[1,2],[-1,-2],[0,-1],[0,-2]],[[3206,7503],[0,-1],[-1,1],[1,2],[1,2],[0,4],[1,1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[-2,-1]],[[3503,7522],[1,-1],[2,1],[1,-1],[1,-1],[1,0],[3,3],[0,1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[1,0],[-1,-2],[-2,0],[-3,1],[-2,0],[-2,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[1,-2]],[[3087,7536],[-1,0],[0,1],[1,1],[1,0],[-1,0],[0,-1],[0,-1]],[[1574,7554],[0,-1],[1,-1],[0,-1],[-1,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,-1]],[[1576,7563],[1,-1],[1,0],[0,-1],[0,-1],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[1,-1],[0,-1],[0,-1]],[[1581,7563],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,-1],[2,0],[1,0],[0,-1],[-1,0],[0,-1]],[[1569,7572],[2,-4],[-1,0],[0,1],[-1,0],[0,-1],[1,-1],[3,-4],[0,-1],[-1,0],[-2,1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[1,0],[-1,2],[0,1],[0,1],[0,3],[0,-1],[0,-1],[2,-2]],[[1574,7570],[-1,-1],[-1,1],[-1,2],[-3,3],[-2,6],[-1,0],[0,1],[-1,3],[0,1],[0,1],[1,-3],[2,-5],[1,-2],[2,-2],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1]],[[1564,7589],[0,-1],[-1,0],[-1,0],[-2,2],[-1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1]],[[1501,7590],[0,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,-1],[-1,0],[0,-1],[0,-1]],[[1505,7589],[-1,-1],[-1,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[1,1],[1,1],[1,0],[0,-1],[1,-1],[0,-2],[-1,-3]],[[2924,7300],[3,1],[4,3],[1,2],[1,2],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[2,1],[1,1],[1,2],[3,0],[1,1],[1,1],[2,5],[1,0],[0,1],[1,0],[1,2],[1,1],[0,1],[1,1],[1,1],[2,-1],[1,1],[0,-1],[1,0],[1,0],[0,2],[0,1],[-1,3],[0,1],[0,1],[1,3],[1,2],[0,1],[0,1],[1,0],[-1,3],[0,2],[1,2],[0,1],[5,7],[1,3],[0,2],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[3,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,-1],[1,0],[1,0],[3,3],[2,3],[0,1],[0,1],[1,1],[1,1],[1,2],[2,4],[1,0],[2,2],[3,2],[1,1],[1,3],[0,1],[0,2],[3,3],[1,0],[1,0],[1,1],[0,1],[1,1],[1,2],[1,2],[1,0],[1,0],[0,-1],[1,-1],[2,0],[11,8],[1,0],[1,2],[1,0],[1,3],[0,1],[1,1],[3,0],[1,1],[2,2],[0,1],[1,-1],[1,0],[0,1],[1,1],[0,-1],[1,1],[1,2],[4,3],[1,1],[4,7],[3,7],[2,5],[1,2],[3,4],[1,2],[0,5],[1,2],[1,1],[1,1],[0,1],[1,0],[3,6],[3,7],[3,6],[0,1],[1,1],[0,1],[0,1],[0,2],[3,7],[1,0],[1,1],[1,1],[2,5],[3,3],[3,6],[2,4],[3,4],[1,2],[2,0],[1,1],[1,2],[1,1],[2,2],[1,1],[2,4],[1,1],[1,1],[1,0],[1,2],[3,4],[1,0],[1,1],[1,0],[1,2],[0,1],[1,0],[1,0],[1,0],[7,7],[1,1],[1,1],[1,0],[1,2],[4,1],[2,2],[1,2],[5,3],[7,5],[7,6],[3,0],[8,6],[5,1],[5,0],[5,1],[2,1],[1,1],[5,-1],[3,-1],[3,0],[6,-2],[3,-1],[1,-1],[1,0],[1,-2],[1,-1],[1,-1],[2,0],[0,-1],[1,-1],[1,0],[1,-3],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-2],[1,0],[1,-1],[0,-1],[2,-3],[0,-2],[0,-3],[1,-2],[0,-1],[1,-1],[-1,-1],[0,1],[-1,2],[-1,1],[-2,1],[-6,4],[-1,0],[1,-1],[2,-2],[-2,-1],[0,-1],[2,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,-1],[1,-2],[1,-3],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-2,-1],[-1,-1],[-3,-2],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-2],[-3,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[-2,-2],[-1,-2],[-4,-4],[-3,-2],[-3,0],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-2,2],[-4,1],[-1,1],[-1,2],[-1,1],[0,1],[0,2],[0,1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,-5],[-1,-1],[-3,1],[-2,0],[-1,0],[0,-1],[1,0],[0,-2],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-3,1],[-1,-1],[0,-3],[-1,-1],[-1,1],[0,-2],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[1,2],[2,0],[1,1],[1,1],[5,2],[0,-2],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[6,-4],[3,-1],[1,0],[2,-2],[1,-2],[1,-9],[0,-1],[1,-1],[1,-2],[-1,-1],[0,-1],[0,-1],[1,2],[1,1],[0,1],[2,0],[1,0],[1,2],[2,4],[2,1],[2,3],[5,2],[2,-1],[-2,-3],[-1,-1],[1,0],[1,1],[3,1],[1,0],[1,0],[1,0],[0,-1],[0,-2],[-1,0],[-1,-1],[1,0],[1,-1],[0,-2],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,-2],[0,-1],[-2,-2],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-1,-1],[1,-1],[-1,-1],[0,-1],[-1,-3],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,-2],[-1,-2],[0,-1],[0,1],[1,0],[0,1],[1,0],[-1,-4],[0,-5],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-2],[-1,-1],[0,-1],[0,-1],[-6,-8],[-1,0],[0,-1],[2,0],[1,0],[1,1],[0,-1],[0,-1],[0,-1],[2,0],[2,3],[1,0],[1,0],[0,-2],[1,0],[1,1],[1,1],[2,0],[1,-1],[-1,-1],[0,-2],[0,-2],[1,-2],[-1,0],[-1,-1],[-1,-3],[0,-3],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1],[2,-3],[-1,0],[-1,-2],[0,-1],[1,1],[1,0],[1,-2],[0,2],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-2],[1,-1],[0,-1],[0,-2],[-1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[1,0],[1,0],[0,1],[2,0],[0,1],[0,1],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-4],[1,1],[1,0],[3,0],[0,-1],[1,0],[0,1],[3,0],[2,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,1],[2,0],[2,-2],[2,-1],[1,0],[0,-1],[0,-2],[-1,0],[-1,0],[0,-1],[-1,-1],[-5,0],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,-1],[0,1],[1,0],[3,-2],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[2,1],[0,-1],[0,-1],[1,1],[-1,1],[0,1],[0,1],[1,0],[0,-1],[1,1],[3,0],[1,0],[1,-2],[-1,1],[-1,0],[1,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,-1],[1,1],[1,0],[0,1],[1,-1],[0,-1],[-2,-1],[-1,-1],[-1,1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,2],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[2,2],[1,0],[1,0],[0,1],[-1,1],[-1,1],[1,0],[3,-1],[2,-1],[4,-1],[1,0],[1,1],[1,0],[-1,-1],[-1,0],[-1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[-2,-2],[-1,-1],[-1,0],[0,-1],[-1,-2],[1,1],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[0,1],[0,2],[1,0],[1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[-1,-2],[0,-1],[1,-1],[0,1],[1,2],[1,0],[1,1],[0,1],[-1,0],[-1,-2],[1,2],[4,2],[6,7],[2,4],[1,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[1,-4],[0,-1],[-1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[2,-2],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[2,0],[0,-1],[1,-2],[1,-1],[1,-2],[0,-2],[0,-1],[1,-1],[0,-1],[2,-2],[1,0],[0,-1],[0,-2],[-1,-1],[-3,-3],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-2],[1,0],[8,0],[1,0],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[-5,-1],[-1,0],[-1,2],[0,-1],[-1,1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,-2],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,1],[-1,0],[1,-2],[-1,0],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[2,-1],[-1,-1],[0,1],[-1,-1],[-1,0],[-1,-1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,2],[0,-2],[-1,-1],[-1,0],[0,-2],[0,-1],[1,-1],[-1,0],[-1,2],[0,-1],[0,1],[-1,0],[-1,-2],[0,-1],[-1,1],[-3,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,-1],[0,1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[0,-2],[-1,-1],[0,1],[0,1],[-1,2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[-2,1],[-1,1],[1,0],[0,1],[-1,0],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,1],[-1,1],[-1,2],[-1,1],[-2,4],[-1,0],[1,-2],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[-1,-1],[1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[1,2],[-1,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,2],[0,1],[0,3],[0,1],[-1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,-1],[-2,-1],[-2,-2],[0,-1],[0,-2],[0,-1],[1,0],[0,-2],[1,-3],[-1,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,2],[1,1],[-1,2],[0,1],[-1,0],[-1,0],[0,-2],[0,-1],[-1,1],[-1,1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,-1],[2,0],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[2,0],[1,-1],[-1,0],[-1,0],[-2,0],[1,-1],[-1,-1],[1,0],[0,-1],[1,1],[-1,0],[1,1],[1,-1],[-1,-2],[1,0],[-1,-3],[-1,1],[0,-1],[0,1],[-1,1],[1,1],[-2,2],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-2,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,1],[-1,-1],[-1,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[-1,0],[-2,0],[0,-1],[1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[1,-1],[1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,2],[0,1],[-1,1],[0,-1],[1,-3],[0,-1],[0,-2],[-1,-1],[-1,1],[0,3],[-1,1],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,1],[0,2],[0,1],[-1,-2],[0,-2],[0,-2],[-1,1],[0,1],[0,2],[0,1],[0,-2],[-1,-1],[0,1],[0,2],[-1,2],[0,1],[0,1],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[1,-3],[-1,-2],[0,-1],[-1,0],[-1,2],[0,2],[0,1],[0,1],[0,-1],[-1,-1],[0,1],[0,-2],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-3],[-1,2],[-1,-1],[0,1],[-1,1],[-1,1],[0,-1],[2,-3],[0,-1],[0,-1],[0,-1],[-1,1],[0,2],[0,1],[-1,0],[1,-1],[-1,-1],[0,-1],[0,1],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,2],[-1,1],[1,4],[0,2],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,3],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-4],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,-2],[-1,1],[0,1],[0,2],[0,-1],[-1,0],[0,-1],[0,4],[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],[0,1],[0,2],[0,1],[-1,5],[0,1],[0,3],[0,1],[0,1],[1,2],[0,2],[1,8],[1,2],[1,1],[0,1],[0,1],[0,1],[2,4],[1,1],[1,2],[1,1],[1,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[0,-1],[-2,-4],[-5,-9],[0,2],[0,1],[5,10],[3,4],[1,1],[2,3],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[1,3],[1,1],[2,2],[-2,-1],[-1,-1],[-2,-3],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,1],[1,4],[3,3],[4,5],[2,3],[1,1],[4,3],[0,1],[1,2],[5,5],[4,5],[4,4],[2,1],[2,1],[2,1],[1,0],[1,1],[0,2],[1,2],[-1,1],[-1,1],[-1,0],[1,0],[1,-1],[2,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[1,0],[0,1],[0,1],[0,1],[3,-3],[2,-4],[0,-1],[0,-4],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,2],[0,1],[0,1],[-1,1],[-1,3],[-1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[2,1],[2,1],[2,2],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[3,0],[1,1],[1,0],[0,-1],[0,-1],[1,-1],[0,2],[1,2],[1,0],[1,1],[-1,1],[-3,0],[-1,0],[-1,1],[-1,0],[-6,0],[-1,-1],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[-2,0],[-2,0],[1,1],[-1,0],[-1,1],[-2,-1],[-2,-1],[-1,0],[-1,1],[0,-2],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-3,1],[-1,-1],[-2,-1],[-1,-2],[1,-3],[-1,0],[-1,-1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-2],[0,2],[0,2],[0,2],[1,2],[1,2],[1,0],[1,1],[-1,0],[3,4],[1,1],[1,1],[0,2],[1,1],[1,1],[1,1],[1,2],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[2,2],[1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[0,1],[1,0],[1,0],[-1,1],[-1,0],[1,0],[0,1],[0,1],[0,2],[-1,3],[-1,1],[0,-1],[0,-1],[0,-1],[-2,-4],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[0,1],[1,2],[0,2],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,-2],[-1,0],[-2,5],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[1,-3],[1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-2],[1,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-3],[-1,-1],[-1,-2],[-1,-2],[1,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-4],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-2,0],[-1,-1],[0,-1],[-2,-3],[0,-1],[-1,0],[-4,-3],[-4,-3],[-4,-6],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,0],[0,-1],[-1,-1],[-1,0],[-1,-3],[-1,0],[-1,1],[-1,-2],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,1],[0,1],[0,2],[-1,1],[-2,1],[2,4],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-2],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,1],[-1,-1],[-1,0],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[0,2],[-1,1],[-1,0],[-1,-1],[1,0],[1,0],[0,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,2],[-1,0],[-1,0],[0,-1],[-3,-3],[-1,-1],[-1,0],[1,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,1],[-1,1],[0,-1],[-1,0],[-1,-2],[-1,3],[0,1],[1,0],[0,1],[1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,-1],[0,-1],[-1,0],[-1,-1],[1,-1],[-1,-1],[0,-2],[0,-1],[-1,1],[-1,4],[0,1],[0,2],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1]],[[3134,7312],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,1],[-1,2],[-1,3],[-2,2],[0,1],[1,2],[0,1],[1,2],[0,3],[-2,4],[0,3],[1,1],[0,1],[1,1],[0,2],[0,2],[-1,1],[-1,0],[-2,0],[-1,1],[-2,1],[-1,1],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[-1,1],[0,4],[0,1],[1,1],[0,2],[0,1],[0,2],[-1,1],[1,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,9],[0,9],[0,10],[0,9],[-1,10],[0,9],[0,9],[0,10],[0,3],[-1,1],[-1,1],[0,2],[-2,2],[0,1],[0,1],[-1,2],[-1,1],[-2,3],[0,1],[-1,0],[-1,1],[0,2],[-1,0],[-1,2],[-2,0],[-1,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-4,-3],[-4,4],[-1,1],[0,2],[0,2],[1,5],[0,2],[-1,1],[-4,1],[-1,0],[0,-1],[-3,-6],[-2,-6],[-3,-7],[-2,-6],[-3,-6],[-2,-7],[-3,-6],[-2,-6],[-1,-1],[0,-3],[-1,-4],[0,-7],[0,-4],[-1,-2],[-2,-3],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-3],[-1,-3],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[1,-1],[1,-1],[0,-2],[-1,-2],[0,-2],[-3,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[0,-1],[-3,-5],[-1,-5],[0,-1],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,2],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-3],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,1],[-1,6],[-1,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-3],[-1,0],[-1,0],[-3,3],[-1,0],[0,-1],[-1,-2],[0,-1],[-2,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[-1,-3],[-1,-1],[0,-1],[0,-1],[-2,0],[-3,-1],[-3,0],[-3,0],[-2,0],[-3,0],[-3,0],[-3,0],[-2,0],[-3,0],[-3,0],[-3,0],[-3,0],[-2,0],[-3,0],[-3,0],[-3,0],[-2,0],[-2,0],[-1,0],[-3,0],[-3,0],[-2,0],[-3,0],[-3,0],[-3,0],[-3,0],[-2,0],[-3,0],[-3,0],[-3,0],[-2,0],[-3,-1],[-1,1]],[[1498,7598],[1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,2],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[2,1],[1,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1]],[[1573,7603],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[3482,7612],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,-1],[1,-1]],[[1546,7615],[1,0],[1,0],[0,-1],[1,0],[2,-2],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[1,0],[-1,1],[0,1],[1,1],[0,-1]],[[1574,7613],[0,-2],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,-2],[0,-1]],[[1539,7616],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[2,-1]],[[3453,7615],[-1,0],[-1,1],[0,1],[1,1],[0,1],[2,-1],[0,-1],[-1,-2]],[[1536,7613],[-1,0],[-3,4],[0,1],[0,1],[0,2],[1,-1],[3,-6],[0,-1]],[[3454,7623],[1,-1],[-1,-1],[1,0],[1,1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,2],[1,0],[0,1],[1,0],[0,-1]],[[3485,7623],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-3,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,-1],[0,1],[1,0],[1,0],[0,-1],[0,-2],[1,0],[1,1],[1,1],[0,2],[1,1],[1,1],[-1,-1],[1,-1],[0,1],[1,2],[1,0],[0,-1],[0,-1]],[[3498,7630],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-2],[0,1],[-1,2],[0,2],[0,2],[1,0],[1,0],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[0,-2],[1,1],[0,1],[-1,1],[1,1],[1,0],[0,1],[-1,1],[2,0],[1,-2]],[[1555,7633],[-2,-2],[0,-1],[-1,-4],[0,-1],[-1,0],[-1,2],[0,1],[1,3],[1,1],[1,-1],[0,1],[0,1],[1,1],[1,0],[0,-1]],[[1546,7627],[0,-1],[1,-2],[1,-1],[0,-1],[3,-4],[0,-2],[1,-2],[-1,-1],[0,1],[-1,1],[-5,6],[-2,1],[0,1],[0,2],[-1,1],[-1,1],[-1,2],[-2,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[0,-2],[1,0],[1,-1],[1,-1],[3,-1],[1,-1],[0,-1]],[[1479,7639],[1,-1],[0,1],[1,0],[0,-2],[1,-3],[0,-1],[0,-1],[0,-1],[0,-4],[1,-2],[0,-2],[-1,-2],[-1,-1],[-4,3],[0,1],[0,1],[-1,1],[-1,1],[-2,4],[0,1],[1,0],[0,-1],[0,1],[1,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[1,1],[1,1],[2,1],[2,2],[1,0],[0,-1],[0,-1]],[[3218,7645],[3,-2],[1,0],[1,-1],[7,-2],[3,-2],[2,0],[4,-1],[5,-3],[2,0],[2,-2],[3,-1],[0,-1],[1,-2],[1,0],[1,0],[2,-2],[1,-1],[1,0],[2,-3],[1,0],[2,-1],[0,-1],[1,-2],[1,0],[0,-1],[0,-1],[1,-2],[1,-1],[1,1],[0,-1],[1,-1],[1,0],[0,-1],[1,-2],[1,0],[0,-1],[1,0],[1,-1],[3,-1],[1,-1],[1,-1],[0,-1],[1,1],[1,0],[0,-1],[2,-2],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-3],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,1],[-5,-1],[-2,1],[-3,-1],[-1,0],[-1,1],[0,1],[-1,0],[-2,1],[-3,2],[-4,0],[-6,4],[-6,2],[-2,2],[-1,1],[-2,3],[-2,1],[0,1],[-1,0],[-1,1],[-1,0],[-4,2],[1,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[-1,2],[-3,4],[-4,5],[-4,3],[-3,2],[-3,3],[-1,0],[0,2],[-1,1],[-1,-1],[1,-1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,2],[3,1],[2,0],[1,0],[0,1],[1,0],[0,1],[2,-1]],[[1465,7649],[0,-2],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[1,0],[0,-1],[-1,0]],[[3449,7663],[-1,-1],[-1,1],[1,0],[0,1],[1,0],[0,-1]],[[3453,7662],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,-1]],[[1528,7650],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,2],[0,1],[0,1],[0,1],[-1,1],[1,0],[2,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[-1,0],[0,-1],[-1,-2]],[[3226,7663],[-1,0],[-1,0],[0,1],[0,2],[1,1],[0,-1],[1,-2],[0,-1]],[[1523,7649],[0,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[1,1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-3]],[[1533,7664],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,1],[-1,2],[0,1],[1,0],[0,1],[0,1],[-1,-1],[-1,1],[-1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-2]],[[1535,7670],[1,-1],[1,-2],[0,-2],[0,-3],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-3],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0]],[[1522,7676],[1,0],[0,-2],[0,-1],[1,-2],[0,-1],[1,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-3],[0,-1],[-1,-1],[-1,0],[0,1],[1,2],[0,1],[0,2],[0,1],[-1,1],[0,1],[-1,4],[-1,0],[-1,0],[0,1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,2],[1,1],[1,0],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[1,-2],[1,0],[0,-1],[0,-1]],[[1514,7678],[0,-1],[-3,-1],[-1,0],[-3,-1],[-1,0],[0,1],[0,1],[1,1],[2,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[0,-1]],[[1516,7674],[-1,0],[-1,0],[-1,1],[-1,0],[1,1],[1,1],[0,1],[0,1],[2,1],[1,1],[1,0],[1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[1506,7678],[-1,0],[-2,0],[-1,0],[-1,1],[0,1],[1,0],[1,1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[1484,7690],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[1,0],[1,0],[1,1],[0,-1]],[[1493,7688],[-1,0],[0,-1],[-1,-1],[-3,0],[-1,-1],[-4,1],[1,1],[6,3],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[-1,-1]],[[1489,7691],[-1,-1],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[1,1],[2,1],[2,0],[1,-1],[-1,-1]],[[3351,7694],[1,-3],[1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,4],[-1,0],[0,-1],[0,1],[-1,0],[0,2],[0,1],[1,0],[0,-1]],[[1471,7695],[3,0],[1,0],[1,-1],[1,-1],[0,-1],[-1,1],[-1,-1],[-3,1],[-1,1],[-1,-1],[-1,0],[-1,1],[0,1],[1,1],[1,0],[1,-1]],[[3459,7703],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,1],[-1,1],[1,2],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,1],[1,1],[1,0],[0,-1],[0,-1]],[[1428,7704],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[1495,7701],[-2,-1],[0,-1],[-1,-2],[1,-2],[-1,0],[-2,0],[-2,1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[0,1],[1,2],[0,1],[1,0],[1,1],[1,2],[1,1],[0,1],[1,0],[1,0],[1,1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1]],[[3365,7704],[0,-1],[-1,1],[1,3],[0,-1],[0,-2]],[[1425,7705],[-1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0]],[[3411,7708],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0]],[[1483,7707],[1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[0,1],[-1,0],[0,-1],[-2,1],[-1,2],[0,1],[1,0],[1,0],[1,-1],[0,-1],[0,1],[0,1],[3,0],[1,1],[1,0],[0,-1]],[[1448,7710],[8,-5],[1,-1],[1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,1],[1,2],[1,0],[-1,-1],[1,-2],[1,-1],[0,-1],[3,-1],[1,-1],[0,-1],[1,-1],[2,0],[0,-1],[1,-1],[0,1],[2,-1],[1,0],[0,-1],[-1,0],[1,-1],[3,0],[0,-1],[0,-1],[1,1],[1,0],[1,0],[2,-2],[1,0],[0,-1],[1,-1],[1,-1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,-1],[3,1],[2,-1],[2,0],[3,-1],[2,-2],[2,-2],[1,-1],[2,0],[2,-1],[1,-1],[4,1],[1,0],[1,-2],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-4],[1,-4],[-1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-2],[1,0],[0,-2],[0,-1],[0,-2],[1,-1],[8,-14],[0,-1],[0,-1],[0,-2],[-3,1],[0,-1],[1,-1],[0,-1],[1,-1],[2,-8],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,1],[1,-1],[0,-1],[1,0],[1,-2],[1,-2],[1,-1],[3,-1],[2,0],[1,-1],[1,-1],[3,-1],[1,0],[1,-2],[0,-1],[-1,0],[-1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[0,-1],[-1,-1],[1,-1],[0,-3],[1,0],[0,-1],[1,1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,0],[0,-1],[1,-2],[2,-2],[0,-1],[4,-6],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-2],[0,-1],[0,1],[-1,1],[-1,0],[0,-1],[1,-1],[2,-2],[0,-2],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,2],[0,1],[0,3],[0,1],[1,1],[-1,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-5],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[-2,3],[-1,-3],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,1],[0,1],[-1,1],[-2,1],[-1,0],[-2,0],[-6,5],[-7,5],[-1,1],[-1,0],[0,1],[1,1],[1,0],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-4,2],[-2,2],[-1,1],[-1,2],[-8,6],[0,1],[-1,2],[-1,1],[-1,1],[1,1],[2,2],[0,2],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,3],[1,2],[0,3],[0,1],[1,1],[0,2],[-1,2],[0,4],[-1,-1],[0,-1],[1,-2],[0,-3],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-3],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-2,1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-2],[-1,-1],[-1,1],[-1,0],[-1,0],[1,2],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-3,1],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[0,-1],[1,-1],[1,1],[1,2],[0,-1],[1,1],[1,2],[0,1],[0,1],[1,1],[0,1],[-3,-3],[0,-2],[-1,-1],[0,2],[0,4],[0,2],[0,1],[-1,-1],[0,-1],[-1,1],[0,3],[0,1],[1,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,1],[0,-1],[-1,-2],[-1,-1],[-1,1],[0,1],[-1,1],[1,2],[1,1],[1,4],[0,2],[1,2],[-1,1],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,3],[0,1],[0,1],[0,1],[0,1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[-1,0],[0,-1],[0,-1],[-1,0],[1,-2],[0,-1],[-1,-1],[0,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,2],[1,0],[3,-1],[3,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-3,0],[-2,-2],[-1,-1],[-1,0],[-3,2],[0,1],[-1,1],[1,1],[1,4],[0,1],[-1,0],[0,-3],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,6],[0,1],[0,3],[0,2],[-1,0],[0,-1],[-1,-1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-2,1],[0,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,5],[-1,1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[-4,0],[-1,0],[-1,1],[-2,5],[-1,1],[1,1],[1,2],[0,1],[0,1],[0,2],[1,1],[0,1],[1,1],[1,1],[0,1],[-1,2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[1,1],[-1,1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[-1,-1],[-1,-1],[-1,-2],[-1,-3],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[2,2],[2,4],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,-1],[-1,2],[-1,0],[0,-1],[0,-1],[-1,1],[-1,1],[0,1],[1,2],[0,2],[0,1],[0,1],[0,1],[1,1],[1,-1],[0,1],[1,0],[1,0],[1,1],[5,0],[0,-1],[1,-1],[1,-4],[1,-1],[1,-1],[-1,4],[-1,3],[-1,1],[-1,2],[1,2],[1,0],[0,2],[2,1],[0,1],[-2,-1],[-1,-1],[-1,0],[0,1],[-1,1],[-6,1],[-1,1],[0,-1],[1,-1],[0,-1],[1,0],[3,0],[1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[-5,-3],[0,1],[-1,0],[-1,-1],[-1,-1],[-2,0],[0,1],[-1,0],[0,1],[0,-2],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,1],[-1,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,3],[0,1],[0,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,-1],[2,2],[0,1],[1,0],[1,-1],[3,1],[1,0]],[[1454,7708],[-1,-1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[1,1],[1,1],[1,0],[1,-1],[0,-2],[1,-1],[0,-1]],[[1449,7713],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,1],[1,1],[1,-1],[1,0],[0,-1]],[[3456,7712],[1,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,0],[1,2],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1]],[[1457,7722],[-1,0],[-1,1],[0,1],[2,1],[0,-2],[0,-1]],[[3373,7726],[-1,-2],[-1,1],[1,2],[1,2],[3,2],[1,0],[-1,-2],[-1,-2],[-2,-1]],[[3378,7733],[-1,0],[0,1],[1,2],[2,0],[0,-1],[-1,-1],[-1,-1]],[[3377,7739],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,1],[0,1],[1,1],[1,1],[2,0],[0,1]],[[3447,7762],[1,0],[1,0],[-1,-3],[-1,-2],[1,1],[0,-2],[-1,-2],[1,-1],[1,1],[2,0],[1,-1],[1,-1],[1,0],[1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-2,2],[1,1],[0,1],[0,-2],[2,3],[0,-1],[0,-1],[1,-1],[1,1],[1,2],[1,0],[1,-1],[0,-1],[0,1],[1,0],[1,-1],[0,-1],[-1,-1],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,1],[-3,1],[-2,0],[-1,0],[-1,1],[0,1],[-1,0],[1,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,-2],[0,-1],[1,0],[1,0],[1,-1],[0,-2],[-1,-1],[0,1],[0,-1],[1,-1],[-1,0],[-1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-2],[0,-1],[1,0],[-1,1],[0,1],[0,1],[2,0],[1,1],[0,1],[2,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,3],[-1,-1],[0,-1],[-1,-3],[-1,-3],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,1],[1,1],[0,1],[-1,-1],[0,1],[-1,1],[1,2],[-1,2],[1,2],[0,1],[0,2],[-1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,-2],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-3],[-2,0],[0,-1],[1,0],[1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-3],[0,-1],[-1,0],[0,1],[0,1],[-2,-1],[1,-1],[1,0],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[-3,-5],[-1,0],[-1,0],[1,-1],[0,-1],[0,-1],[-2,-2],[0,-1],[0,-1],[-1,-5],[-1,-2],[0,-1],[1,1],[0,1],[1,1],[0,-1],[0,-1],[-1,-2],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,-2],[-1,-1],[0,-1],[2,0],[1,-1],[0,-2],[0,-1],[-1,-4],[0,-2],[0,-1],[-1,-3],[1,1],[0,1],[1,2],[2,4],[0,2],[3,9],[1,1],[0,1],[1,0],[0,1],[1,0],[1,2],[0,1],[1,-4],[0,1],[0,1],[0,1],[0,1],[1,1],[1,-1],[0,1],[-1,1],[0,1],[2,5],[0,2],[1,0],[1,1],[0,3],[2,3],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-3],[-1,-1],[0,-1],[-1,-2],[1,0],[1,2],[1,4],[2,1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,2],[0,2],[0,1],[1,0],[1,-1],[1,-1],[0,-2],[2,-2],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,1],[2,0],[1,0],[2,3],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,-3],[-1,-1],[-1,-1],[-3,-2],[-4,-4],[-1,1],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[0,-2],[-2,-2],[0,-1],[-1,-1],[0,-1],[1,-1],[0,1],[1,2],[0,2],[2,2],[2,2],[1,0],[0,1],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[1,0],[-1,-3],[-1,-1],[-1,-2],[-2,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,-1],[1,0],[0,1],[1,0],[2,3],[1,1],[3,1],[1,1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,-1],[0,1],[2,1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[2,3],[0,1],[1,1],[0,-3],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,-2],[0,1],[0,1],[1,1],[2,0],[-1,0],[1,0],[-2,-4],[0,-1],[1,0],[1,2],[1,0],[0,-1],[-2,-4],[-1,-1],[0,-1],[0,1],[1,0],[1,-1],[-1,-1],[1,1],[0,2],[1,1],[0,-1],[1,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[1,1],[-1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[-1,3],[1,1],[1,0],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,-2],[1,-2],[0,-3],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[1,0],[-1,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,1],[1,1],[1,0],[1,1],[2,3],[-1,0],[-1,-2],[-1,0],[0,2],[0,2],[0,1],[1,1],[0,1],[-1,-1],[0,1],[0,1],[1,0],[0,1],[1,1],[4,4],[0,1],[0,1],[0,1],[0,1],[1,-2],[1,1],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-2],[0,1],[1,0],[0,1],[1,3],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,3],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,-1],[-1,-1],[0,-4],[1,-1],[-1,-1],[1,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,3],[1,2],[1,1],[1,1],[1,0],[-1,-2],[0,-1],[0,-2],[-1,0],[0,-2],[0,1],[1,1],[1,0],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,-2],[0,-1],[1,1],[0,1],[0,1],[1,1],[1,1],[-1,1],[0,1],[1,1],[0,3],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,-1],[1,1],[-1,-1],[0,-1],[0,-2],[0,1],[1,1],[0,1],[0,1],[1,-1],[0,-1],[0,1],[0,1],[1,2],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[2,1],[1,1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-2],[2,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-6,-1],[-1,0],[1,-1],[2,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,-1],[2,1],[0,-1],[-2,-1],[-1,-1],[1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[4,3],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[1,1],[-1,0],[1,3],[2,1],[1,0],[1,-2],[-1,-1],[-2,0],[0,-1],[0,-1],[1,-1],[0,1],[1,1],[0,-1],[-1,-2],[-1,0],[-2,1],[-1,-1],[2,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[2,4],[-2,-1],[-1,0],[0,1],[0,1],[1,2],[1,2],[0,-1],[0,-3],[3,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,2],[1,1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-2,-2],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,1],[0,1],[6,-1],[-1,0],[-1,0],[-1,-1],[1,0],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,3],[1,1],[2,0],[2,3],[2,1],[1,0],[-1,-1],[-1,-3],[0,-2],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[1,2],[1,1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-2,-3],[0,-1],[-1,-1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,4],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[-2,-6],[1,1],[1,1],[0,2],[1,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,-1],[1,0],[1,-2],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[2,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,3],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[-1,-2],[1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-2,-1],[0,-1],[-1,-2],[-1,0],[-1,2],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[1,-2],[-1,-3],[0,-1],[0,-1],[-2,0],[-1,-2],[-2,-1],[-1,-2],[0,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-2,2],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[-1,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-1],[0,-2],[0,-1],[3,-1],[2,1],[1,0],[1,-2],[-2,-1],[-1,-1],[-2,0],[-2,1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,1],[1,0],[1,2],[1,0],[-1,-1],[0,-2],[0,-3],[-2,-5],[-1,0],[-1,0],[1,0],[0,-2],[0,-2],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-3],[1,0],[0,1],[1,3],[0,1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-2],[0,1],[1,1],[0,1],[0,-1],[1,-1],[0,1],[1,-1],[0,2],[0,1],[1,1],[-1,1],[0,1],[1,0],[0,-1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,1],[1,2],[0,1],[0,1],[1,0],[1,-1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,2],[0,1],[1,2],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,-1],[0,-1],[1,0],[1,1],[0,1],[1,0],[1,3],[1,3],[0,1],[1,0],[0,-1],[1,-2],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,-1],[0,-1],[0,-1],[1,1],[1,0],[-1,0],[0,-1],[-1,-1],[1,0],[1,1],[1,1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[1,1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[0,-1],[0,1],[1,3],[1,1],[2,3],[2,2],[0,1],[1,1],[0,2],[1,1],[0,2],[0,6],[1,3],[1,1],[0,-1],[0,-1],[1,0],[1,-1],[0,-3],[0,-1],[-1,-2],[1,0],[0,-1],[1,1],[0,-1],[0,-4],[0,-1],[-1,-2],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,0],[-1,-1],[1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,0],[-1,-1],[2,0],[1,-1],[-1,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[0,-1],[1,-1],[-1,-3],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-5],[-1,-1],[-2,-2],[-1,0],[0,1],[-1,1],[-1,2],[0,2],[0,2],[-1,-1],[-1,-2],[0,1],[0,1],[-1,-1],[0,-2],[0,1],[1,3],[-1,0],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[-1,0],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[1,3],[0,1],[0,1],[2,0],[0,2],[0,-1],[-1,0],[-1,-1],[-2,-5],[0,-1],[0,2],[0,1],[0,1],[0,1],[1,2],[0,1],[1,1],[1,1],[0,2],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[1,1],[0,1],[-1,-1],[0,2],[1,2],[0,2],[1,0],[-1,1],[1,1],[1,2],[1,1],[-1,0],[0,1],[0,1],[-1,-1],[0,1],[0,2],[0,1],[-1,-4],[-1,-2],[-1,-1],[1,2],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-5],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,2],[0,1],[0,2],[1,1],[0,3],[0,1],[0,1],[0,1],[2,2],[0,2],[2,8],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[-1,0],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,-1],[1,0],[-1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[1,2],[0,1],[1,0],[1,1],[-1,0],[0,1],[-2,0],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[-1,1],[1,3],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,4],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,2],[0,1],[0,1],[-1,-2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-2,1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-5],[0,-3],[-1,-2],[-1,0],[0,1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-3],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[-1,-2],[0,1],[0,1],[-1,-1],[0,-2],[0,-1],[0,1],[1,-1],[-1,-1],[-1,0],[-1,-2],[-1,0],[0,1],[0,1],[1,1],[4,11],[0,3],[0,1],[0,-1],[-1,-3],[-1,-2],[-1,-4],[-2,-4],[-2,-2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[1,2],[0,1],[0,1],[-1,0],[0,-1],[0,-2],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[-1,-1],[0,-1],[1,0],[1,-1],[-1,-1],[0,-1],[1,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[0,3],[-1,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,2],[0,1],[0,1],[-1,1],[1,1],[0,2],[1,2],[1,2],[1,2],[1,0],[1,1],[1,1],[2,-1],[1,1],[2,0],[1,2],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[1,2],[1,0],[0,2],[1,0],[1,1],[0,1],[0,1],[0,2],[0,1],[0,2],[1,2],[0,1],[2,4],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[0,-1],[-1,1],[1,0],[0,2],[1,1],[1,1],[1,0],[0,1],[1,1],[0,1],[-1,-1],[-1,0],[0,1],[-1,-3],[-2,-1],[-2,-1],[-3,-1],[-1,0],[1,2],[1,1],[0,1],[0,1],[0,1],[2,5],[0,1],[1,1],[-2,-2],[-2,-7],[-1,-2],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,3],[0,-1],[-1,-1],[-1,0],[-1,1],[-2,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,-2],[-1,-1],[0,-1],[1,1],[0,-1],[0,-1],[-1,-2],[1,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[-2,0],[-1,-2],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,1],[-1,0],[-1,-1],[-1,0],[1,0],[0,1],[1,3],[0,1],[1,0],[-1,1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,2],[0,1],[-1,1],[1,0],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[1,2],[2,2],[1,4],[1,1],[-1,0],[0,-1],[-1,-1],[0,1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-3,-2],[-1,2],[-1,1],[1,1],[3,1],[3,2],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[2,2],[-1,0],[-1,-1],[-3,-3],[-1,0],[-1,1],[-1,1],[0,2],[1,1],[2,3],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-1],[-2,-2],[-1,0],[0,-1],[-1,-2],[-1,-1],[-1,0],[0,1],[0,1],[1,1],[0,2],[1,1],[-1,-2],[-1,0],[0,2],[-1,3],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,1],[-1,1],[0,-1],[-1,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,0],[-1,0],[-2,0],[-1,1],[-2,-1],[-3,1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,2],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-2],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,1],[-1,1],[0,1],[-1,0],[-4,-1],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,-3],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-3,0],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,1],[0,2],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,2],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[-1,0],[0,2],[0,1],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-2,1],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[1,1],[-1,0],[-3,-2],[0,-1],[-1,0],[-1,2],[-1,-1],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[-1,-1],[0,-3],[-1,-2],[0,-1],[-1,0],[-1,1],[-1,-1],[0,1],[0,1],[-1,0],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,1],[-2,-2],[-2,0],[-4,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,2],[0,2],[1,3],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[2,3],[2,3],[5,5],[1,1],[1,4],[2,1],[0,1],[1,2],[0,1],[2,2],[0,1],[2,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,2],[1,1],[1,1],[1,0],[-1,-1],[-1,0],[-1,-1],[0,-2],[0,1],[2,1],[1,1],[1,1],[1,2],[0,1],[2,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-2,-1],[-1,-1],[0,-1],[-1,1],[-1,0],[-1,0],[-1,2],[-1,0],[-3,1],[-1,0],[-3,-2],[-3,-1],[-2,1],[-1,-1],[-5,-3],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[3,4],[4,4],[4,7],[1,1],[0,-2],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-2],[0,-1],[1,-1],[1,-1],[0,-2],[0,1],[1,1],[0,1],[0,1],[0,2],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,2],[0,3],[0,3],[0,3],[1,3],[1,3],[0,1],[1,2],[0,1],[1,1],[0,2],[0,1],[1,6],[1,2],[0,1],[1,4],[0,2],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1],[3,0],[1,0],[1,-2],[1,-3],[1,-1],[4,-2],[1,1],[-1,1],[-3,0],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,2],[0,1],[2,-1],[2,1],[1,-1],[1,0],[0,1],[2,3],[0,1],[-2,-2],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[1,1],[0,1],[-3,-3],[-2,-1],[-1,2],[1,1],[2,0],[1,0],[0,1],[2,3],[-1,0],[-1,-1],[-1,-1],[-3,1],[-2,1],[0,1],[-1,1],[0,1],[0,1],[0,5],[1,3],[0,2],[2,3],[1,2],[1,1],[1,2],[1,0],[1,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[1,-1],[-1,3],[0,2],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,1],[-3,3],[0,1],[-1,2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,2],[0,3],[0,1],[1,4],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,2],[1,3],[1,2],[0,1],[1,4],[1,3],[1,5],[1,4],[1,1],[0,1],[0,2],[1,3],[0,3],[1,1],[0,2],[0,1],[0,1],[1,3],[0,1],[0,1],[1,1],[0,1],[1,2],[1,2],[0,3],[0,1],[1,1],[3,-1],[1,0],[1,1],[0,1],[-2,-1],[-1,0],[0,1],[1,1],[-1,0],[-1,0],[0,2],[-1,1],[-1,0],[-1,1],[1,1],[1,1],[0,-1],[1,0],[2,1],[0,1],[1,1],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,2],[1,0],[0,1],[0,2],[1,0],[0,1],[-1,1],[0,-1],[0,1],[-1,0],[1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[2,-1],[0,-1],[1,-1],[1,1],[1,0],[0,1],[0,1],[0,1],[-2,0],[0,1],[1,0],[1,0],[1,1],[0,3],[2,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[-1,2],[1,1],[0,1],[0,2],[1,0],[0,1],[2,2],[4,5],[2,0],[1,1],[1,0],[1,2],[2,1],[1,1],[0,1],[1,1],[2,1],[1,0],[0,1],[2,2],[3,4],[0,-1]],[[1448,7752],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,2],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,2],[0,1],[-1,3],[0,3],[0,2],[1,1],[3,3],[1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,-3],[0,-2],[0,-3],[0,-2],[1,-1]],[[1433,7784],[-1,-2],[0,1],[-1,-1],[0,2],[0,1],[1,2],[0,1],[1,1],[0,-1],[0,-3],[0,-1]],[[3462,7781],[-1,-1],[-1,1],[0,2],[1,3],[1,1],[1,0],[0,1],[1,1],[0,-2],[0,-1],[-1,-4],[-1,-1]],[[1445,7793],[1,-1],[-1,-2],[0,-1],[1,-1],[-1,-1],[0,-3],[0,-1],[-2,-5],[1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,2],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[1,1],[0,3],[1,1],[0,1],[1,0],[0,1],[1,0],[2,0],[1,0]],[[2798,7794],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[-3,1],[-2,-1],[0,-1],[-1,0],[0,1],[-1,4],[1,2],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,1],[1,1],[1,0],[1,2],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,-1]],[[2805,7796],[-1,-1],[-1,1],[1,1],[1,0],[0,-1]],[[1361,7796],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[0,2],[0,-2],[0,-1],[2,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-2],[1,-1],[-1,0],[0,-1],[0,-1],[-1,2],[-1,2],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[-1,2],[1,3],[0,1],[1,-1],[0,-1],[1,-1],[1,-1]],[[1448,7801],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[1,0],[1,1],[3,0],[1,0],[0,1],[1,0]],[[1438,7790],[-1,0],[0,1],[0,1],[0,3],[-1,1],[0,1],[1,2],[0,1],[0,1],[1,1],[1,1],[1,0],[0,-1],[0,-7],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[1437,7805],[1,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[-1,1],[0,-2],[0,-2],[0,-1],[-1,1],[0,1],[0,1],[0,2],[-1,1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[2,-1]],[[2792,7805],[-1,0],[1,1],[1,1],[1,0],[1,0],[0,-1],[-1,0],[-2,-1]],[[1445,7809],[1,-3],[0,-1],[1,-1],[0,-1],[0,-2],[-1,0],[-2,1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[-1,1],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,1],[3,1],[0,1],[1,1],[1,0],[1,0],[0,-1]],[[1462,7807],[0,-1],[-1,0],[0,1],[-2,-2],[0,-1],[0,-1],[-2,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-5],[-1,-1],[1,-2],[0,-1],[-1,-1],[-1,-1],[-2,0],[0,-1],[-1,0],[-1,-1],[0,1],[0,3],[1,6],[0,1],[1,0],[0,1],[-1,2],[1,1],[0,2],[1,2],[1,0],[0,2],[1,1],[1,0],[2,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[2,2],[1,0],[1,1],[0,-1],[1,-1],[-1,-1],[0,-2],[1,-1],[-1,-2],[-1,-2],[-2,-2]],[[2812,7820],[1,0],[0,-1],[-1,-1],[1,0],[-1,-1],[0,1],[0,-1],[-1,1],[0,-1],[0,1],[0,1],[-1,-1],[0,1],[1,0],[1,1]],[[1425,7822],[0,-1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[-1,-3],[-1,-2],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[-1,1],[0,2],[0,1],[0,1],[1,1],[2,1],[0,-1],[-1,0]],[[2788,7826],[0,2],[0,1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0]],[[1430,7830],[1,-7],[0,-3],[-1,-1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[0,1],[1,-1],[0,1],[-1,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[4,1],[1,0],[0,2],[0,1],[0,1],[0,-1],[1,-4]],[[1405,7834],[-1,-1],[0,1],[0,1],[1,1],[0,1],[0,-1],[0,-1],[0,-1]],[[1343,7839],[-1,-1],[1,1],[0,-1],[1,-1],[0,1],[2,0],[0,1],[1,1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-1,2],[-1,-2],[2,-1],[-1,-2],[-1,0],[0,1],[-1,3],[0,1],[-1,3],[-1,1],[1,1],[1,0],[2,0],[0,-1],[-2,0]],[[3449,7840],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1]],[[1434,7815],[-1,0],[-1,0],[-1,0],[0,2],[1,1],[1,1],[0,2],[0,2],[-1,2],[0,6],[0,1],[0,1],[0,1],[0,2],[0,2],[1,1],[-1,1],[0,2],[1,1],[0,1],[1,0],[0,-2],[1,-3],[0,-2],[0,-1],[0,-1],[1,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-2,-4]],[[1415,7838],[3,-5],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,1],[0,1],[0,1],[-1,0],[1,1],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[-1,2],[0,-1],[-1,1],[0,2],[0,1],[-1,0],[-1,1],[-1,4],[1,1],[0,-1],[0,1],[-2,2],[0,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[3,-3],[0,-2],[1,-1],[1,0],[0,-1],[1,-2]],[[1437,7832],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,1],[0,2],[2,1],[1,0],[1,1],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-3]],[[1340,7847],[1,0],[1,1],[1,-1],[-1,-1],[-2,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[2,1],[1,-1],[-1,-1]],[[1408,7846],[-1,-1],[-1,1],[0,2],[1,1],[0,-1],[1,-1],[0,-1]],[[1432,7844],[-1,-1],[0,-5],[0,-1],[-1,-2],[0,-1],[0,2],[0,1],[-1,1],[0,1],[1,1],[-1,2],[1,1],[0,2],[0,4],[0,1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1]],[[1327,7857],[-2,-1],[-1,0],[-1,3],[4,-1],[1,-1],[-1,0]],[[3450,7859],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[0,-1]],[[1401,7858],[1,-1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,2],[0,1],[-1,1],[2,0],[1,0],[0,-1],[0,-1]],[[1398,7863],[1,0],[2,0],[0,-2],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[1,0]],[[3450,7865],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,1],[0,2],[0,1],[1,0],[1,1]],[[1400,7864],[-1,-1],[-1,0],[-1,1],[0,2],[-1,2],[1,0],[1,0],[1,-1],[1,-2],[0,-1]],[[2783,7865],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[0,2],[1,1],[0,1],[2,-1],[0,-1],[1,-2],[0,-1],[0,-1]],[[1405,7868],[1,-4],[1,-1],[1,-1],[0,-1],[0,-2],[0,-2],[-1,0],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[-1,1],[0,2],[-1,-1],[0,1],[0,1],[1,0],[-1,1],[-1,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-2],[1,-2]],[[2738,7875],[7,-2],[1,0],[4,-6],[0,-1],[1,0],[0,-3],[1,0],[1,-2],[3,-6],[0,-1],[0,-1],[1,-4],[1,-1],[1,-5],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,1],[-1,1],[-7,2],[-3,4],[-4,3],[-5,1],[-5,3],[-4,3],[-5,2],[-1,2],[-2,1],[0,1],[2,2],[0,1],[0,2],[2,3],[1,2],[1,1],[2,-1],[1,0],[2,2],[2,1],[3,-1],[2,2]],[[1339,7876],[1,-4],[0,-1],[-1,0],[0,-1],[2,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-3],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,-1],[-3,0],[0,-1],[2,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,2],[0,1],[1,0],[0,1],[1,0],[2,-2],[2,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-3,0],[-1,0],[0,1],[-1,2],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-2,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[3,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,1],[-1,-1],[1,0],[1,-1],[-1,-2],[1,0],[1,0],[1,-1],[0,-2],[1,-2],[0,-1],[-1,-1],[1,0],[1,-3],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[1,1],[0,-1],[0,2],[0,1],[0,1],[1,1],[1,0],[1,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,1],[0,-1],[0,-1],[1,-3],[0,-1],[1,1],[1,-2],[1,0],[-1,1],[0,1],[0,1],[1,-1],[0,2],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[1,1],[1,0],[0,-1],[0,-2],[-1,-1],[-2,0],[0,1],[0,1],[-1,0],[0,1],[0,-3],[0,-2],[-1,-2],[-1,1],[0,1],[0,3],[0,1],[-1,1],[-1,2],[1,-5],[0,-3],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[-1,1],[0,-2],[-1,0],[0,1],[-1,2],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[-1,1],[1,1],[0,1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[1,0],[1,-1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-4,5],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-2,2],[-2,4],[1,2],[1,0],[1,-2],[-1,2],[0,1],[1,-2],[1,-1],[0,1],[0,2],[-1,1],[-1,1],[-1,1],[-1,2],[0,1],[0,-3],[1,-1],[-1,-1],[-1,-2],[-1,-1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[1,1],[-2,1],[0,1],[-1,2],[0,2],[1,0],[1,1],[1,-1],[1,-1],[0,-1],[1,1],[-1,1],[0,1],[1,-2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-2,-1],[0,1],[-1,1],[-1,1],[-2,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[1,0],[1,0],[1,-1],[3,0],[1,0],[0,1],[1,1],[1,-1],[5,1],[1,0],[0,1],[2,3],[1,0],[0,1],[1,0],[2,0],[0,1],[0,1],[1,-1]],[[1427,7869],[1,-2],[0,-1],[1,-6],[1,-3],[0,-3],[0,-3],[0,-3],[-1,-7],[-1,-1],[0,-2],[0,-1],[-1,-2],[1,0],[0,-1],[0,-2],[-1,-1],[-2,0],[-1,0],[0,-1],[-1,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[1,1],[0,1],[1,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[1,-2],[0,-2],[-1,0],[-1,0],[0,1],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[0,-4],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,-2],[0,-1],[-1,0],[-1,1],[-3,3],[-1,1],[0,1],[1,0],[0,1],[-1,0],[-1,1],[0,2],[-1,1],[0,2],[0,1],[0,1],[1,0],[2,-1],[-1,2],[1,1],[0,1],[1,1],[0,2],[1,1],[0,2],[1,1],[2,1],[0,1],[-1,2],[-1,1],[-1,1],[0,1],[-2,2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,-1],[1,-2],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[0,3],[0,1],[1,2],[0,1],[0,1],[1,0],[0,-1],[1,2],[0,1],[0,2],[0,2],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,0],[1,-1],[2,0],[1,-1],[2,-4],[3,-3],[0,-1],[2,0],[0,-1]],[[1413,7866],[-1,0],[-2,0],[-1,0],[0,-1],[-1,1],[0,1],[-1,1],[0,1],[0,2],[0,2],[1,1],[1,3],[1,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-3],[0,-1]],[[2779,7884],[0,-1],[0,-2],[1,-2],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,2],[0,1],[-1,1],[1,1],[0,1],[2,0],[1,1],[0,-1]],[[3447,7893],[0,-1],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[-1,0],[-1,1],[0,-1],[1,0],[0,-1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,2],[-1,0],[1,1],[1,1],[1,0]],[[1372,7892],[0,-1],[0,1],[-1,0],[0,1],[1,1],[0,-1],[0,-1]],[[1419,7883],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,3],[1,3],[2,3],[0,3],[0,1],[1,2],[1,1],[0,-1],[0,-2],[0,-2],[2,-5],[0,-1],[0,-1],[0,-1],[0,-1]],[[2785,7894],[-1,1],[0,1],[0,1],[2,-2],[0,-1],[-1,0]],[[1382,7898],[2,-1],[2,-2],[1,-2],[2,-2],[2,-2],[1,-2],[0,-1],[0,-1],[0,-1],[3,-7],[1,-2],[0,-1],[0,-2],[0,-2],[-1,0],[-1,1],[0,1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,4],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-3,0],[0,1],[-1,3],[-1,1],[-1,1],[0,1],[1,1],[0,1],[1,0],[-1,0],[-1,0],[-1,0],[-1,2],[-1,0],[0,1],[0,1],[0,2],[0,2],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1]],[[3415,7908],[-1,-2],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[0,-1]],[[1420,7900],[0,-1],[-2,1],[-1,-1],[-2,-4],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,1],[0,3],[0,3],[0,3],[0,4],[0,1],[0,1],[1,2],[1,1],[1,1],[0,1],[2,1],[2,0],[1,0],[1,1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-2]],[[1386,7901],[0,-3],[-2,2],[-2,0],[-1,2],[-1,0],[-1,1],[0,2],[-1,0],[0,1],[-1,1],[2,1],[1,3],[1,0],[-1,2],[0,1],[1,1],[1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[3417,7915],[1,-1],[1,1],[2,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,2],[0,1],[1,0]],[[1376,7914],[1,-1],[0,-2],[-2,1],[0,2],[-2,-1],[-1,1],[0,2],[1,1],[2,-1],[1,-2]],[[1395,7905],[3,-5],[4,-6],[0,-1],[0,-1],[-1,0],[-2,1],[0,-1],[1,1],[0,-1],[1,0],[2,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-2],[1,-1],[1,-1],[0,-3],[0,-2],[0,-2],[-1,-1],[0,2],[0,1],[0,1],[-1,2],[-1,-1],[0,-2],[-1,0],[0,2],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,1],[-1,-1],[-1,0],[0,2],[-1,3],[-1,1],[1,1],[-1,1],[0,1],[-1,-1],[-1,0],[-1,2],[0,1],[0,1],[-1,-1],[0,2],[-1,0],[1,2],[0,2],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[1,1],[-1,1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[1,2],[1,1],[2,0],[1,-1],[-1,2],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,1],[0,1],[0,2],[0,1],[-2,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,1],[0,2],[0,1],[1,1],[1,2],[1,-1],[0,-1],[2,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[2,-3],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[2,-3],[0,-1],[0,-1]],[[2781,7922],[-1,1],[-1,1],[1,0],[1,-1],[0,-1]],[[1381,7929],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,0],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,4],[1,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[-1,1],[-1,3],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[0,1],[2,1],[1,0],[0,1],[1,0],[1,-2],[2,-3],[0,-1]],[[1305,7940],[1,0],[1,0],[1,-1],[2,-2],[2,0],[2,1],[0,1],[1,-1],[1,-1],[1,0],[0,-1],[1,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[1,-1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,2],[0,1],[0,1],[3,1],[0,1],[0,1],[1,0],[3,1],[1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-2],[-1,0],[-1,-1],[0,-2],[0,-1],[-1,-1],[-3,0],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[1,0],[0,2],[1,0],[1,-1],[1,0],[2,1],[1,1],[0,-2],[-1,-1],[-2,-1],[0,-3],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[1,-1],[1,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[1,1],[1,2],[1,3],[0,1],[0,1],[-1,1],[0,1],[0,3],[0,1],[0,1],[-1,1],[-1,2],[1,0],[1,-1],[2,-1],[1,0],[3,1],[1,2],[2,1],[1,2],[1,0],[0,1],[1,0],[0,1],[1,2],[0,-1],[-1,0],[1,0],[0,-1],[-1,-1],[0,-3],[0,-3],[0,-3],[-1,-3],[-1,-2],[-2,-5],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[-1,-3],[1,-1],[0,-1],[-1,-2],[-1,-4],[0,-1],[-1,-1],[-2,0],[-2,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[1,-1],[0,-1],[1,1],[3,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[1,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[1,1],[0,1],[-1,0],[-1,1],[-1,1],[-2,0],[1,1],[0,1],[2,1],[0,1],[1,0],[1,-1],[0,1],[-1,1],[-5,-1],[0,1],[1,2],[1,1],[1,-1],[3,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,3],[-1,1],[-2,2],[0,1],[0,1],[0,1],[-1,0],[-3,1],[0,2],[0,1],[0,1],[-1,-2],[0,-1],[-1,0],[-1,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-2,-2],[-1,0],[0,1],[0,1],[1,1],[0,1],[-3,0],[1,1],[0,1],[0,1],[-1,0],[-1,-1],[0,2],[0,1],[1,0],[1,0],[1,0],[-1,2],[-2,3],[-1,2],[0,-1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[-1,1],[-1,1],[1,1],[1,1],[-1,1],[-1,2],[0,1],[-1,1],[1,2],[0,1],[1,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[1,3],[0,1],[-1,0],[1,1],[1,0],[0,-1]],[[1383,7937],[-1,0],[0,1],[-1,1],[1,2],[0,1],[1,0],[1,-1],[0,-1],[0,-2],[-1,-1]],[[1371,7937],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,2],[-1,1],[1,0],[0,2],[1,0],[2,-3],[1,-1],[0,-2]],[[1306,7942],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[3408,7946],[0,-1],[-1,1],[-1,1],[1,1],[0,1],[1,-1],[-1,-1],[1,0],[0,-1]],[[1378,7946],[1,-1],[-1,1],[-2,3],[0,1],[0,1],[1,1],[1,-2],[1,-2],[0,-1],[0,-1],[-1,0]],[[1381,7948],[-1,-2],[-1,0],[0,1],[0,2],[0,2],[1,1],[1,0],[1,-2],[-1,-2]],[[1369,7957],[0,-1],[1,0],[-1,-1],[1,-1],[-1,0],[-1,-1],[0,1],[-1,1],[1,1],[0,1],[1,0]],[[3410,7961],[1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0],[0,1],[0,-1],[0,-1]],[[1367,7961],[2,-2],[-1,-1],[-1,-1],[-1,1],[0,1],[-1,0],[0,1],[1,2],[1,1],[0,-2]],[[3408,7964],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[1,2],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[1359,7970],[-1,-1],[0,1],[0,2],[1,0],[1,-1],[-1,-1]],[[1368,7972],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-3,-4],[0,1],[0,1],[0,4],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,-1],[1,0],[0,-1],[1,1],[1,1],[0,-1]],[[1376,7979],[0,-1],[-1,0],[0,1],[-1,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[2,2],[1,0],[0,-1],[1,-2],[-1,-2],[0,-1]],[[1383,7984],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[1,2],[1,1],[1,1],[1,3],[1,0],[0,-1]],[[3389,7990],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[-2,0],[-1,-2],[-1,-1],[-1,0],[-3,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,-1],[1,-1],[0,1],[1,1],[1,0],[1,0],[0,1],[1,1],[1,1],[1,0],[0,-2],[0,-1],[-1,0]],[[2798,7991],[-1,-1],[-3,-2],[-5,-2],[-5,-3],[0,1],[1,1],[1,0],[0,1],[-1,0],[1,1],[1,1],[5,3],[3,0],[1,0],[1,1],[8,2],[-1,-1],[-3,-2],[-2,0],[-1,0]],[[1378,7982],[-1,0],[0,2],[-1,1],[0,1],[0,1],[1,1],[5,8],[1,4],[1,1],[0,-2],[0,-1],[1,-2],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[0,-4],[-1,0],[0,-1],[-1,-1],[-2,-2],[0,-1]],[[2845,8029],[-2,-1],[1,1],[4,7],[1,2],[1,0],[1,1],[0,1],[1,1],[0,1],[2,1],[1,1],[0,-1],[-1,-1],[-2,-3],[-1,-1],[-1,-1],[-4,-6],[-1,-2]],[[3310,8065],[1,-1],[1,1],[0,-1],[0,-2],[1,1],[1,0],[-1,-2],[-1,-1],[-3,-1],[-1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1]],[[2806,8070],[-1,-1],[1,1],[1,0],[-1,-1],[-1,-2],[0,-2],[-1,-3],[0,-2],[-1,-3],[-1,-3],[-1,0],[1,1],[0,1],[1,2],[1,5],[0,4],[1,1],[0,2],[0,2],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[3304,8077],[2,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[-1,-1],[-1,0],[-5,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,-1],[1,-1],[1,1],[0,1],[-1,-1],[0,1],[2,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[-1,-1],[1,-1]],[[2868,8076],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[2837,8090],[-1,-1],[-1,0],[-1,-1],[0,1],[0,1],[1,0],[2,1],[0,-1]],[[3283,8098],[6,-2],[1,0],[1,0],[1,1],[0,-1],[0,1],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[1,0],[1,-1],[-2,-1],[-1,1],[-2,0],[-3,3],[-1,0],[-1,2],[-1,1],[0,1]],[[2847,8095],[-1,-1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-2]],[[2815,8093],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[-2,0],[-1,0],[0,2],[1,1],[2,6],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,2],[1,0],[1,1],[0,-1],[1,-1],[0,-5]],[[2787,8094],[-1,-3],[-1,-1],[-7,-8],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,2],[4,0],[0,1],[0,1],[0,1],[0,1],[1,0],[2,-1],[1,0],[1,1],[1,0],[0,1],[1,1],[0,1],[1,2],[0,1],[0,2],[0,1],[1,1],[0,-1],[0,-1],[-1,-2],[0,-3],[-2,-4]],[[3295,8105],[1,-1],[1,-1],[-2,-1],[0,-1],[1,0],[1,0],[0,1],[2,0],[1,0],[1,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-6,1],[-3,1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[6,-1],[0,1],[-5,1],[0,1],[1,-1],[0,1],[0,1],[-1,1],[1,0],[1,0],[2,0],[1,-1],[1,-1],[1,0]],[[2812,8114],[-1,0],[-1,0],[0,1],[-1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[-1,-1]],[[2801,8114],[1,-1],[0,-2],[-1,-1],[-1,2],[0,1],[-1,1],[-1,-2],[0,-2],[0,-3],[1,0],[1,0],[1,-1],[1,0],[0,-4],[1,-2],[1,-1],[1,-1],[1,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[2,1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-3],[0,-1],[-2,-6],[-1,-6],[-3,-10],[0,-4],[-1,1],[0,1],[1,1],[-1,0],[1,1],[0,3],[1,3],[0,2],[1,2],[0,2],[4,13],[0,2],[0,3],[-1,1],[1,1],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-9],[1,-1],[0,1],[1,0],[0,-1],[-1,0],[1,-1],[-1,-1],[-1,-3],[0,-2],[-1,-2],[0,-1],[-2,-8],[-2,-6],[0,1],[3,9],[2,10],[0,2],[0,2],[-1,1],[0,1],[-1,-1],[0,-1],[-2,-5],[-3,-11],[0,-1],[-3,-6],[-1,-1],[-1,0],[-2,1],[0,1],[-1,0],[-2,-6],[-1,0],[0,-1],[-1,0],[1,1],[4,9],[2,7],[1,1],[1,3],[0,2],[-1,1],[-1,-1],[-1,-1],[-4,-9],[-3,-6],[-1,-2],[0,-2],[-1,0],[0,-1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,3],[1,1],[1,1],[6,13],[5,8],[1,2],[0,2],[1,7],[0,4],[0,3],[0,1],[0,1],[1,0],[0,-3],[0,-1],[1,0],[0,-1],[-1,-1],[0,-3],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-3],[0,-1],[-2,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[2,0],[0,1],[1,1],[1,9],[1,3],[1,3],[0,3],[0,7],[0,2],[0,3],[1,2],[2,0],[1,-2]],[[3303,8115],[0,-1],[-1,-1],[0,-1],[1,1],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,-2],[-1,0],[0,2],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,1],[-1,0],[0,1],[0,1],[1,-1],[1,0],[0,-1]],[[2871,8107],[-1,0],[1,0],[0,1],[-1,1],[0,1],[1,2],[0,2],[0,4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1]],[[2790,8123],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,1],[0,-1],[-1,-2],[-1,0],[0,2],[0,1],[1,0],[0,2],[0,2],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[2781,8121],[-1,0],[-1,0],[0,2],[0,2],[0,2],[1,1],[0,1],[1,0],[1,-2],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2783,8134],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-2],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,2],[-2,-1],[-1,1],[1,2],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,-1]],[[3293,8134],[1,-1],[1,1],[1,0],[-1,-3],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,0],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,1],[-2,3],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[1,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,-1]],[[2870,8143],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2826,8152],[0,-1],[-1,0],[0,1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,1],[1,-1],[1,0]],[[2823,8158],[-1,0],[-1,0],[-1,0],[0,1],[2,2],[1,0],[1,-1],[0,-1],[-1,-1]],[[2868,8158],[-1,0],[0,1],[0,1],[0,2],[-1,2],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[3287,8172],[0,-1],[-1,-1],[-2,0],[-1,0],[-1,-2],[1,0],[1,1],[3,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-4,1],[-2,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,2],[1,0],[0,1],[1,0],[1,-1],[1,-1],[-1,0],[-1,-1],[1,-1]],[[3281,8179],[1,0],[1,-2],[1,-1],[-1,-2],[0,-1],[-3,-3],[-1,0],[-1,1],[0,2],[-1,1],[0,2],[1,2],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,2],[1,0]],[[2786,8177],[0,-2],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-4],[0,-1],[-1,2],[0,1],[0,1],[1,0],[0,2],[1,1],[-1,1],[0,-1],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,-1],[0,-2],[1,-1],[0,-1]],[[3285,8196],[1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,-1],[-1,-1],[-1,0],[1,2],[2,4],[1,0],[1,-1]],[[3280,8201],[-1,-2],[2,0],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,1],[-1,2],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[1,3],[1,1],[1,0],[1,0],[1,0],[0,-1]],[[2842,8225],[-1,0],[-1,0],[-6,6],[1,0],[3,-1],[3,-4],[1,-1]],[[3124,8229],[-2,-2],[-1,1],[-1,3],[0,2],[1,3],[1,1],[1,0],[1,-5],[0,-3]],[[2816,8252],[-1,0],[1,-1],[4,-4],[0,-1],[-4,4],[-2,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1]],[[2816,8263],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0]],[[2808,8265],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-2],[0,-1]],[[3081,8275],[-1,0],[0,1],[1,2],[0,1],[2,0],[0,-1],[1,-1],[-1,-1],[-2,-1]],[[2763,8284],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,-1]],[[3078,8288],[1,-1],[1,1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[-1,2],[0,-2],[-1,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[-1,2],[-1,2],[1,0],[1,0],[2,0],[1,0]],[[2764,8310],[0,-1],[-1,-3],[0,-1],[0,-1],[-1,0],[1,2],[-1,0],[1,2],[0,1],[-1,0],[2,3],[0,-1],[1,0],[0,-1],[-1,0]],[[2762,8323],[-1,1],[0,1],[1,1],[1,0],[0,1],[0,-1],[0,-1],[-1,-2]],[[2767,8326],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,-1],[0,-1]],[[2771,8329],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1]],[[3222,8332],[1,-2],[-1,-1],[0,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[1,1],[0,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,4],[1,0],[0,1],[1,0],[1,-1],[-1,0],[0,-1],[1,-2],[-1,0],[0,-1],[2,-1]],[[2778,8339],[0,-1],[0,1],[1,0],[1,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,5],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,-1]],[[3204,8382],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,2],[2,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,1],[-2,1],[-2,2],[-1,1],[-2,0],[-1,1],[-2,3],[-1,1],[0,2],[1,2],[3,-1],[1,0],[1,1]],[[3109,8389],[1,-1],[1,1],[0,-2],[1,-2],[1,-2],[1,-1],[1,0],[1,-2],[-1,-3],[-1,-3],[-1,0],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-2],[-1,-1],[-1,0],[-1,0],[-1,-2],[-2,0],[-1,1],[0,4],[0,3],[1,5],[2,4],[0,3],[1,2],[1,6],[3,0],[1,0],[1,0]],[[3204,8390],[-1,-1],[-1,0],[0,1],[1,1],[1,3],[1,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[2827,8406],[0,-1],[0,-1],[-3,-2],[1,0],[-1,-1],[-5,-2],[-2,-1],[-3,-1],[0,1],[1,2],[1,0],[0,1],[0,1],[10,3],[0,1],[1,0]],[[3056,8414],[0,-1],[-1,0],[0,2],[0,2],[1,2],[0,1],[1,0],[0,-2],[1,0],[-1,-1],[0,-2],[-1,-1]],[[3013,8438],[-1,0],[-1,1],[0,1],[1,1],[2,0],[0,-1],[0,-1],[-1,-1]],[[3200,8461],[1,0],[0,1],[1,0],[0,-1],[-1,0],[2,0],[1,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[0,-1],[1,0],[-1,-2],[1,0],[0,-1],[0,-2],[-1,-2],[-2,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[-1,2],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[-3,0],[-1,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[-2,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-2,1],[0,1],[-1,1],[0,2],[0,2],[1,0],[0,1],[11,2],[1,0],[1,-1],[7,-1],[-1,-1],[-1,-1],[0,-1]],[[3172,8476],[1,-1],[0,1],[1,1],[0,-2],[1,-2],[0,-2],[0,-1],[-1,0],[-1,2],[0,1],[-1,-2],[-2,0],[-1,1],[-1,1],[0,1],[1,1],[2,2],[1,2],[1,-2],[-1,0],[0,-1]],[[2999,8477],[-1,0],[-1,1],[-1,2],[1,1],[0,-1],[2,-1],[1,-1],[-1,-1]],[[2415,8482],[1,0],[0,-1],[1,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,2],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[1,0],[3,0],[1,1],[0,-1]],[[2422,8484],[1,-1],[-1,-1],[0,1],[-1,-1],[-1,1],[1,1],[1,0]],[[3192,8483],[1,-3],[1,-3],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-2],[1,-1],[0,1],[1,0],[0,-1],[1,-1],[1,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[-2,2],[-3,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,3],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,-1]],[[2991,8489],[-1,-2],[-1,1],[-2,1],[0,1],[1,0],[1,0],[2,-1]],[[2427,8490],[-1,-1],[-1,1],[0,1],[0,2],[1,-1],[1,-2]],[[2437,8516],[0,-1],[3,1],[0,-1],[-2,-2],[0,-1],[-1,1],[-2,-1],[-1,1],[1,1],[1,1],[0,1],[-1,-1],[-1,0],[0,1],[1,1],[1,0],[0,-1],[1,0]],[[2793,8514],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-3],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,2],[-1,2],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-2,1],[-2,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,3],[0,1],[0,1],[0,1],[0,3],[0,2],[1,3],[0,3],[1,3],[1,4],[1,2],[1,2],[2,2],[1,2],[0,2],[1,2],[0,1],[1,0],[1,1],[1,1],[1,0],[0,-1],[1,1],[1,0],[1,-1],[-1,0],[0,-1],[1,0],[1,1],[1,1],[0,1],[2,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1]],[[2433,8515],[-1,0],[-3,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,-1],[1,-1],[1,0],[0,-1]],[[3203,8525],[1,1],[3,-1],[0,2],[2,-1],[0,-2],[2,1],[0,-1],[0,-1],[1,0],[0,-1],[-4,-1],[1,-1],[1,0],[1,0],[-1,-2],[-1,0],[0,1],[-1,0],[0,-1],[1,-1],[-1,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-3,0],[-4,2],[-1,1],[1,1],[-1,1],[1,2],[1,0],[3,0],[0,1],[-2,0],[0,1],[1,2],[1,1],[1,0],[1,-1],[1,-1]],[[2837,8526],[-2,0],[-4,1],[-1,0],[0,1],[1,1],[5,0],[1,0],[1,-2],[-1,-1]],[[2840,8529],[1,0],[2,0],[1,0],[-1,-2],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[1,1],[0,-1]],[[3197,8526],[-1,0],[-1,-1],[-3,0],[-1,0],[-1,1],[2,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[2,0],[0,-1],[2,-1],[-1,-1],[-1,-1]],[[2456,8532],[0,-1],[-3,2],[0,1],[1,0],[1,-1],[1,0],[0,-1]],[[2471,8535],[1,-1],[0,-1],[0,1],[-4,0],[-2,1],[-1,0],[-1,0],[0,1],[1,0],[3,-1],[3,0]],[[2932,8538],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[6,1],[1,-1],[2,0],[1,-1],[0,-1],[1,-2],[0,-1],[-4,0],[-7,2],[-1,0],[-1,1],[0,1],[-3,0],[0,1],[-1,0],[-2,3],[1,0],[1,1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,0]],[[3033,8546],[5,-3],[2,-1],[2,-1],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[2,-1],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-2],[1,0],[0,-1],[0,-2],[-1,-1],[-1,-1],[-3,-1],[-2,1],[-3,0],[-1,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-2,1],[-1,1],[1,3],[-1,2],[-1,2],[-1,2],[1,0],[1,0],[1,-1],[1,1],[0,1],[-1,1],[-2,-1],[-1,1],[-1,2],[-1,0],[-1,0],[-2,-1],[-2,1],[-1,0],[1,1],[3,0],[1,0],[-3,1],[-2,1],[-1,1],[0,1],[1,1],[11,-4]],[[3157,8547],[-2,0],[-2,2],[-2,2],[0,1],[3,-2],[2,-2],[1,-1]],[[2719,8555],[5,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[1,-2],[-1,0],[0,-1],[-1,0],[1,-1],[-1,-2],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-3],[-1,0],[-3,-2],[-1,-1],[-1,0],[0,-1],[-1,-2],[-1,-4],[-5,-5],[-4,-6],[-4,-4],[-5,-5],[-2,0],[0,1],[0,1],[-1,1],[-2,2],[-1,0],[-3,-1],[-8,-6],[0,-1],[-1,2],[0,5],[0,3],[-1,2],[-4,6],[-1,2],[0,2],[1,3],[5,5],[2,3],[0,2],[2,2],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,3],[1,1],[1,1],[1,3],[1,1],[3,2],[1,0],[1,-1],[1,-1],[0,-1],[2,-2],[2,-1],[1,1],[7,6],[2,0],[2,1],[5,-2],[2,1],[-1,1],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,-1],[1,0],[2,-1]],[[3145,8553],[-1,-1],[-1,2],[-2,2],[-2,4],[-1,2],[-1,2],[2,0],[2,-2],[3,-6],[1,-3]],[[3109,8573],[0,-2],[-2,2],[-1,2],[-1,2],[2,-1],[2,-3]],[[3113,8574],[1,-3],[-2,2],[-2,3],[-2,4],[2,-2],[3,-4]],[[3115,8580],[1,-2],[-1,0],[-2,3],[-1,3],[0,2],[1,-1],[2,-4],[0,-1]],[[2483,8589],[-1,-1],[-2,0],[0,1],[-1,1],[0,2],[1,0],[2,0],[1,-1],[0,-1],[0,-1]],[[2822,8592],[1,-3],[2,2],[3,1],[1,-1],[1,-1],[1,0],[0,1],[1,0],[1,0],[3,0],[1,-1],[1,-1],[-1,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-2],[-1,-2],[-1,-1],[0,-1],[0,-1],[-2,-3],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,1],[-2,2],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-2,3],[0,1],[-4,4],[-1,1],[-1,2],[1,1],[-1,1],[0,2],[1,2],[1,2],[1,1],[1,-2]],[[2473,8596],[6,-2],[-1,1],[0,1],[1,0],[1,0],[1,-2],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-2,2],[-1,1]],[[3220,8595],[-1,-4],[-1,4],[-1,5],[1,0],[3,-3],[-1,-2]],[[2461,8596],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[2,-1],[1,0],[1,-1],[1,0],[2,-2],[-4,0],[1,-1]],[[3216,8585],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[-1,-1],[0,-1],[1,-1],[0,-2],[-1,1],[-2,3],[0,-1],[0,-1],[-1,1],[0,1],[-1,0],[-1,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[-1,1],[0,2],[-1,0],[0,1],[-1,2],[0,1],[0,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,-1],[1,-1],[0,-1],[0,-3],[0,-2],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[1,0],[0,-1],[1,-2],[-1,0],[0,-1],[1,0],[1,-1],[0,-1]],[[2857,8604],[1,0],[-1,1],[12,-8],[0,-2],[1,0],[1,-1],[-2,-3],[1,0],[2,0],[1,-1],[0,-1],[-1,-1],[-1,-1],[-1,1],[0,-1],[1,0],[-1,-2],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,2],[-1,1],[-2,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-3,2],[1,0],[-2,1],[1,0],[-1,1],[0,1],[3,0],[-3,0],[-1,1],[0,1],[1,2],[1,1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,-1]],[[2987,8607],[0,-2],[0,-1],[-1,0],[0,1],[-1,1],[-1,-1],[-1,0],[1,-1],[1,0],[-2,-2],[-1,0],[-1,2],[-1,0],[-2,0],[8,3],[1,0]],[[3215,8610],[0,-2],[-2,1],[-1,2],[0,4],[1,1],[3,0],[1,-2],[-1,-1],[-1,-3]],[[2417,8619],[0,-1],[-2,1],[-1,1],[0,1],[3,0],[0,-1],[0,-1]],[[3204,8620],[1,-1],[1,2],[1,-1],[-1,-1],[-1,-2],[0,-1],[1,1],[1,0],[1,-1],[-2,-3],[-1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,1],[0,1],[1,0],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,2],[-1,0],[-1,-1],[-1,0],[-1,1],[-2,1],[-1,2],[1,1],[2,3],[1,-2],[0,-1],[1,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,-1],[1,0],[0,2],[1,1],[1,0],[0,-1]],[[2846,8629],[-2,0],[0,-1],[-1,-1],[0,-1],[-2,-3],[-1,-1],[-1,1],[-4,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[2,0],[0,1],[5,0],[2,-1]],[[2738,8641],[-1,0],[-2,0],[0,1],[0,1],[1,1],[1,0],[2,-1],[0,-1],[0,-1],[-1,0]],[[2965,8644],[0,-1],[0,1],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-2,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[2,0]],[[2876,8642],[-1,-2],[-1,1],[-1,1],[0,2],[1,0],[1,0],[0,-1],[1,-1]],[[2872,8646],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,1],[0,1],[1,0],[2,0]],[[3196,8642],[-2,-1],[-1,3],[-1,3],[0,2],[1,1],[2,-1],[-1,-2],[2,-1],[1,0],[-1,-2],[2,-1],[-2,-1]],[[2958,8661],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,5],[0,1],[-1,1],[1,1],[0,1],[1,0],[1,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[-2,0],[-1,1],[0,1],[1,1],[1,1],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1]],[[3186,8677],[1,0],[0,-1],[-2,-2],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-2,0],[0,-1],[-1,-1],[-2,0],[-1,-1],[1,0],[1,0],[-1,-2],[-1,0],[-3,-1],[1,0],[0,-1],[2,1],[-1,-1],[-1,-1],[-1,1],[-3,-1],[-1,0],[0,2],[1,3],[1,2],[2,1],[1,3],[1,1],[1,0],[0,3],[1,1],[1,-1],[-1,-1],[0,-4],[1,1],[0,2],[0,1],[2,1],[0,1],[0,-1],[0,-1]],[[3140,8719],[-1,-2],[0,1],[-1,1],[1,2],[2,2],[0,-2],[-1,-2]],[[2525,8726],[0,-1],[1,1],[0,-1],[1,1],[0,-1],[1,-1],[-1,0],[-1,1],[-1,-1],[0,1],[0,1]],[[2544,8729],[-1,0],[-1,0],[0,1],[0,1],[1,0],[2,-1],[0,-1],[-1,0]],[[3127,8748],[-2,-2],[-1,1],[-3,-1],[-1,-1],[-1,1],[0,1],[1,1],[1,0],[2,1],[4,0],[1,-1],[-1,0]],[[3265,8749],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,0],[-1,0],[0,-1],[-1,-1],[1,-1],[2,1],[1,-1],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,2],[-1,-2],[0,-1],[-1,0],[0,1],[0,1],[1,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,-1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0]],[[3172,8745],[-1,-1],[-1,2],[0,3],[0,3],[2,-1],[1,-1],[-1,-4],[0,-1]],[[2686,8756],[0,-1],[-2,1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,2],[0,1],[1,1],[5,0],[1,-1],[1,0],[0,-1]],[[2625,8753],[1,-1],[1,1],[0,1],[1,1],[0,1],[2,0],[3,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[3,-5],[0,-1],[0,-1],[-1,-2],[-4,-2],[-1,0],[-1,0],[0,-1],[1,-3],[1,-1],[2,0],[2,-2],[2,-2],[0,-1],[1,-1],[-1,-3],[1,-2],[2,-5],[0,-1],[0,-1],[0,-1],[2,0],[1,0],[1,2],[0,1],[0,2],[1,0],[0,1],[-1,1],[1,1],[0,2],[0,1],[1,1],[1,4],[1,1],[1,2],[1,0],[1,-1],[2,-1],[1,-1],[-1,-1],[0,-1],[1,0],[1,-2],[2,-1],[2,-1],[2,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[1,0],[3,-3],[0,-1],[1,0],[2,0],[3,-1],[-1,-1],[1,0],[1,0],[2,1],[1,-2],[5,0],[2,-1],[1,0],[1,0],[1,-2],[0,-1],[1,-2],[0,-2],[1,-2],[2,-3],[0,-1],[0,-1],[3,0],[2,-2],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[2,-3],[0,-1],[1,-1],[1,0],[3,0],[0,-1],[2,-2],[2,1],[1,1],[1,0],[1,0],[1,-1],[1,-2],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[3,1],[0,-1],[1,-1],[0,-1],[6,-8],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-3],[1,-1],[0,-1],[1,0],[1,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[2,0],[3,0],[4,2],[1,1],[3,-1],[1,1],[1,1],[-1,2],[1,1],[1,0],[0,-1],[-1,0],[1,-1],[2,1],[2,-2],[5,-2],[2,-2],[2,0],[0,1],[0,1],[-1,2],[-1,1],[1,1],[0,1],[1,0],[-1,2],[2,0],[2,-2],[1,-2],[2,-2],[0,-1],[0,-1],[2,0],[2,-2],[1,-1],[0,-1],[-1,-2],[2,-1],[-1,-1],[-2,0],[-1,0],[-2,1],[1,-1],[1,-1],[7,-2],[3,-3],[1,0],[1,0],[0,-1],[1,-2],[-1,0],[0,-1],[-1,0],[-1,-1],[-5,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-3,-3],[-1,0],[-1,-2],[-1,-1],[-2,0],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-2],[-1,0],[-3,1],[-2,2],[-7,4],[-1,2],[-1,0],[-3,-1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-2,1],[-1,1],[-1,1],[-5,-1],[0,-1],[-1,1],[-1,-2],[-1,0],[-3,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[1,1],[1,1],[1,0],[1,1],[1,0],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-2,2],[-1,0],[-1,1],[-6,0],[-2,1],[-1,0],[-3,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,2],[0,1],[-1,0],[0,1],[1,1],[1,2],[1,1],[2,3],[0,1],[0,1],[0,1],[-1,2],[0,1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[1,0],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-3,-4],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-3],[-1,-1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-2],[-1,-3],[0,-2],[-1,-4],[0,-1],[-1,-1],[-2,-4],[-1,0],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-5,-4],[-4,-3],[-5,-2],[-5,0],[-2,0],[-2,3],[0,1],[0,2],[-1,2],[0,1],[0,1],[0,2],[0,3],[0,1],[0,1],[-1,3],[1,2],[0,1],[0,2],[1,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[0,2],[0,1],[0,1],[-2,-3],[0,-1],[-1,0],[-4,-1],[-7,-3],[-2,-1],[-6,2],[-4,0],[-1,-1],[0,-1],[-2,-3],[-1,-2],[-2,0],[-6,-1],[-1,1],[-2,1],[-1,3],[0,2],[0,3],[1,2],[6,12],[2,2],[8,5],[1,1],[2,1],[2,2],[2,1],[3,1],[1,0],[0,1],[1,2],[0,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[1,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,5],[0,1],[-1,3],[1,2],[1,2],[3,10],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[1,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,5],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[2,3],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,5],[1,3],[0,2],[1,1],[0,2],[0,2],[1,4],[2,3],[5,7],[4,4],[2,0],[1,1],[1,-3],[-1,-2],[0,-1],[0,-2],[0,-1]],[[3140,8767],[1,-2],[0,-2],[-1,0],[-1,2],[-2,1],[-1,-1],[0,-1],[-1,1],[-1,2],[1,0],[2,0],[3,0]],[[2638,8767],[1,0],[1,1],[1,0],[0,-2],[2,-1],[-1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[-1,0],[1,-1],[0,-1],[1,-4],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-3],[0,-1],[-1,-1],[-1,0],[-2,1],[-1,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-4,2],[0,1],[-1,1],[0,1],[-1,2],[0,4],[-1,1],[1,1],[0,2],[-1,2],[-1,1],[1,1],[0,1],[0,1],[0,2],[1,1],[1,0],[1,0],[1,-1],[0,-1]],[[2638,8770],[-1,0],[-1,0],[0,1],[0,1],[0,1],[2,0],[1,-1],[-1,-1],[1,0],[-1,-1]],[[2679,8770],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,-1]],[[2677,8775],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[2657,8775],[4,-2],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[3,-3],[2,0],[1,-1],[0,-1],[1,-1],[0,-3],[-1,-2],[-2,-2],[0,-1],[2,-1],[0,-1],[1,0],[1,0],[1,-1],[2,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[1,1],[5,0],[2,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-3,0],[-1,0],[0,1],[1,2],[-1,0],[-1,-1],[0,-1],[1,-1],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[2,0],[0,1],[-1,0],[-3,0],[1,1],[0,1],[-2,0],[-2,-3],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[1,1],[0,1],[1,1],[-1,1],[0,2],[0,1],[0,2],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-2,1],[-2,0],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[2,-2]],[[2690,8789],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[3,2],[1,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,2],[-1,1],[-2,0],[-1,2],[1,3],[-1,-1],[0,1],[0,1],[1,1],[1,0],[1,-2],[1,0]],[[2613,8798],[-1,0],[-1,1],[1,0],[1,0],[1,0],[0,-1],[-1,0]],[[2003,8827],[-1,0],[-1,0],[2,2],[0,2],[0,2],[1,2],[0,2],[1,1],[1,-2],[-1,-1],[0,-4],[0,-1],[-1,-1],[-1,-2]],[[2000,8834],[1,-1],[1,1],[-1,-2],[-1,0],[0,-1],[-1,-1],[-1,0],[0,2],[-1,3],[0,1],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1]],[[3266,8850],[1,-2],[-1,0],[-5,-5],[-1,-1],[-1,-2],[-2,0],[0,-1],[0,-1],[-1,0],[-1,0],[-3,3],[3,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[2,0],[0,1],[-1,1],[1,0],[1,0],[1,1],[1,0],[3,0]],[[2017,8843],[-4,-1],[-1,1],[0,1],[-1,4],[-1,2],[0,1],[1,0],[1,-1],[4,-5],[2,0],[1,-1],[-1,-1],[-1,0]],[[3233,8861],[0,-3],[1,1],[1,0],[1,1],[0,1],[3,-2],[1,-2],[-2,-1],[-1,0],[-9,0],[-1,1],[1,1],[1,1],[2,2],[1,1],[1,0],[0,-1]],[[2003,8865],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-2,3],[1,0],[0,1],[-1,0],[-2,1],[-1,0],[0,2],[1,0],[0,-1],[2,-1],[0,1],[0,1],[-1,1],[0,1],[3,1],[0,1],[0,1],[1,0],[1,0],[0,-2],[0,-1],[0,-2],[0,-1]],[[1989,8875],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[-2,-2],[-1,1],[-1,1],[-1,2],[0,1],[1,1],[-1,1],[1,1],[1,-1],[1,-1]],[[3228,8872],[-6,0],[-1,1],[0,1],[0,2],[1,3],[0,1],[1,1],[-1,1],[1,0],[0,1],[0,-1],[1,-1],[1,-2],[3,-3],[1,-3],[-1,-1]],[[2002,8876],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-2,0],[0,-1],[1,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[-1,1],[-1,2],[0,1],[0,2],[0,1],[1,1],[2,-1],[1,0],[0,-1],[1,-3],[0,-1],[1,-1],[0,-1]],[[2296,8888],[0,-3],[0,-1],[-1,0],[-2,-3],[-2,-1],[-1,1],[0,1],[0,1],[1,1],[-1,1],[1,1],[2,-1],[0,1],[1,1],[0,1],[1,0],[1,0]],[[1970,8893],[1,-1],[0,-1],[-3,-1],[-1,1],[-1,1],[3,1],[1,0]],[[1829,8899],[2,-1],[3,1],[1,-1],[-1,0],[-1,0],[-6,0],[-1,0],[-1,1],[0,1],[1,0],[1,0],[2,-1]],[[1853,8902],[1,-1],[-1,-1],[-7,-1],[-2,1],[1,1],[4,-1],[1,1],[-1,0],[0,1],[2,0],[2,0]],[[1916,8897],[-2,0],[1,1],[3,3],[3,3],[1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[-2,0],[-2,-2]],[[1859,8901],[-1,0],[-1,0],[0,1],[4,1],[1,0],[2,1],[2,0],[2,0],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-4,0]],[[1998,8900],[-1,-1],[-1,-1],[-1,1],[-2,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[2,1],[1,0],[0,-2],[0,-2],[0,-1]],[[1967,8905],[4,-2],[-1,2],[2,-1],[0,1],[1,0],[1,0],[1,-1],[0,-1],[0,-2],[1,-1],[-1,-2],[-1,0],[-6,4],[-1,2],[0,2],[0,-1]],[[2251,8912],[0,-2],[0,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[1,-1],[2,2],[1,0]],[[1963,8910],[0,-1],[0,-2],[0,-1],[0,-1],[-2,1],[-4,4],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1]],[[1942,8911],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,1],[1,1],[2,1],[1,1],[2,0],[1,1],[1,1],[1,1],[2,0],[0,-1],[-1,-2],[-2,-1],[-1,0],[-2,-1]],[[1868,8917],[-1,-1],[-1,1],[-2,0],[-1,0],[1,1],[0,1],[1,0],[3,-1],[1,0],[-1,-1]],[[2936,8912],[1,-1],[3,1],[1,-1],[1,0],[4,-2],[2,-2],[1,0],[1,-1],[1,1],[1,1],[2,-1],[1,1],[2,-1],[3,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-14,0],[-14,0],[-4,2],[-1,2],[-2,2],[-3,6],[0,1],[0,2],[0,3],[0,1],[0,1],[1,1],[2,1],[5,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,3],[1,0],[1,0],[1,-2],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[1956,8923],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-3,-2],[-1,-1],[-1,2],[2,1],[4,5],[2,0],[0,-1]],[[3160,8923],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-8,2],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,-1],[0,1],[1,1],[1,1],[1,0],[3,-1],[1,1],[0,1],[2,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[2601,8902],[-1,0],[-1,-6],[-1,-4],[0,-1],[-1,0],[-2,-3],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,3],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[-1,2],[0,1],[-2,1],[-1,0],[-1,1],[0,2],[1,1],[0,1],[2,1],[0,1],[-1,2],[1,1],[2,3],[1,1],[0,1],[1,2],[1,1],[1,0],[1,0],[2,-1],[2,-2],[2,-3],[1,-1],[-1,-1],[0,-2],[0,-1],[0,-4],[0,-1],[0,-1],[1,-1],[0,-2],[0,-4],[1,-2]],[[1898,8922],[-2,0],[-1,1],[0,2],[1,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[4,1],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-2],[0,-1],[-1,-1]],[[2900,8929],[3,-3],[10,-3],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-2],[-2,-4],[0,-2],[0,-1],[1,-1],[0,-4],[1,-1],[1,-1],[0,-1],[0,-3],[0,-3],[0,-3],[0,-3],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-3],[-1,-1],[-1,-3],[-2,-2],[0,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-4,0],[-1,-1],[0,-2],[-1,0],[-3,-1],[-5,-3],[-1,0],[-5,0],[-1,0],[-3,1],[-1,-1],[-2,-1],[-1,0],[-4,0],[-2,-1],[-1,0],[-10,1],[-1,1],[-1,1],[0,1],[-1,2],[-2,6],[0,1],[-1,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,2],[0,1],[-2,7],[0,1],[0,1],[0,2],[2,6],[1,3],[6,13],[2,3],[1,3],[0,1],[1,0],[3,6],[1,1],[11,5],[1,0],[1,0],[-1,-1],[1,-1],[2,-1],[2,0],[1,1],[2,2],[2,1],[9,-2]],[[2805,8919],[-1,-1],[-1,1],[-2,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[1,1],[6,0],[1,-1],[0,-1],[2,-1],[1,-1],[-1,-3],[-1,-1],[-3,-2],[-1,-2]],[[2219,8927],[0,-1],[-2,1],[-1,2],[0,1],[2,0],[1,1],[0,2],[1,-1],[0,-1],[-1,-1],[1,-2],[-1,-1]],[[2719,8932],[0,-1],[2,0],[1,0],[-1,-2],[-1,-1],[-2,2],[-3,1],[-3,1],[1,1],[2,-1],[1,0],[-1,1],[0,1],[2,0],[1,-1],[1,-1]],[[2939,8924],[-1,0],[-1,1],[0,2],[0,2],[1,0],[-2,2],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[1,-1],[2,-3],[2,-3],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-3],[-1,0]],[[1925,8941],[-1,0],[-5,-2],[-5,1],[0,1],[2,1],[5,3],[1,0],[1,-1],[1,-1],[1,-2]],[[1927,8947],[0,-1],[-1,0],[0,-1],[4,0],[-1,-1],[-2,-1],[-2,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[2,-1],[1,0],[1,1]],[[2096,8935],[-3,-1],[-2,2],[-2,0],[0,1],[-2,1],[-1,1],[-3,3],[-1,2],[-1,1],[2,2],[3,1],[6,-1],[1,-1],[2,-1],[1,-2],[1,0],[1,0],[0,-1],[0,-1],[1,-3],[-1,-2],[-2,-1]],[[1840,8948],[-1,-1],[-5,1],[0,1],[0,1],[1,0],[3,0],[2,-2]],[[2817,8951],[0,-1],[2,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-3,1],[-1,-1],[0,-1],[-1,-1],[1,0],[2,0],[0,-1],[0,-1],[-1,-1],[-2,-2],[-2,0],[-1,0],[-1,0],[0,1],[-1,1],[-2,0],[1,1],[0,1],[0,1],[1,0],[1,0],[1,2],[2,0],[2,1],[0,1],[0,2],[-1,0],[-1,0],[-1,0],[1,1],[-4,2],[0,1],[1,0],[1,0],[4,0],[1,-1],[2,-1]],[[2930,8946],[-1,-1],[-7,1],[-1,0],[0,1],[-1,1],[-1,2],[2,3],[1,1],[3,-1],[1,-1],[0,-2],[0,-1],[1,0],[1,-1],[1,0],[1,-2]],[[1832,8950],[-1,0],[-1,1],[-1,2],[-1,1],[0,1],[1,0],[0,-1],[2,-2],[1,-2]],[[2919,8945],[1,-1],[1,-2],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-2,0],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[1,-1],[1,-1],[-1,0],[-1,0],[0,1],[0,1],[-3,-1],[-1,0],[0,1],[0,1],[0,2],[-1,0],[-6,4],[-3,3],[-1,2],[0,2],[0,1],[0,1],[0,2],[0,1],[2,3],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,-1],[4,-1],[1,-1],[0,-2],[0,-2],[1,-1],[0,-1],[1,-2]],[[3100,8963],[2,-1],[3,0],[6,-2],[8,-3],[1,-1],[-7,0],[-7,4],[-7,1],[-1,1],[0,1],[1,1],[1,-1]],[[2173,8962],[1,0],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-3,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,1],[-1,0],[-1,2],[1,0],[1,0],[2,2],[1,1],[2,2],[1,0],[0,1],[0,1],[1,2],[1,0],[6,-2]],[[1823,8968],[0,-1],[-1,1],[-1,0],[-1,1],[1,1],[2,-1],[1,0],[-1,-1]],[[2218,8971],[1,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-2,2],[2,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,-1],[-1,-1],[-1,0],[0,2],[-1,1],[0,6],[1,3],[1,0],[0,2],[0,1],[-2,2],[2,1],[0,1],[0,1],[1,0],[4,0],[1,-1],[1,-1],[0,-2],[0,-1],[1,-1],[2,-1],[2,-1]],[[2222,8973],[-1,-1],[-4,2],[0,1],[-1,1],[-1,2],[0,2],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-4],[0,-1]],[[2493,8985],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[0,2],[0,1],[1,-1],[0,-1]],[[1220,8985],[2,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,1],[-1,1],[0,1],[1,0],[0,1],[-1,1],[-1,2],[1,0],[2,-1],[2,-3]],[[2176,8983],[-1,0],[0,2],[2,1],[0,1],[0,1],[-2,0],[-1,1],[1,2],[2,1],[2,0],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,0]],[[2484,9002],[1,-2],[0,-2],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[-1,-1],[0,1],[0,1],[1,0],[-1,0],[-1,1],[1,1],[1,1],[-1,0],[0,1],[0,1],[1,1],[-1,0],[0,-1],[-2,-2],[0,-1],[-1,-1],[0,3],[0,2],[1,0],[0,1],[2,1],[2,0],[1,-1]],[[2820,9004],[2,0],[2,0],[1,-2],[1,-3],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,1],[0,1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-3],[-2,-1],[-1,-1],[1,-2],[-2,-3],[-3,-3],[0,-1],[0,-2],[0,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[-3,-1],[-2,-1],[-2,-2],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,2],[3,7],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,2],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[2,2],[1,1],[2,0],[1,0],[-1,1],[-2,2],[0,1],[0,1],[1,1],[1,0],[1,2],[1,0],[1,0],[2,1]],[[1235,9005],[2,-1],[2,0],[1,0],[1,-1],[-1,-1],[1,-1],[1,1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,2],[0,1],[-6,2],[1,2]],[[2775,9002],[-1,0],[-2,1],[0,2],[0,1],[1,-2],[1,0],[2,-1],[-1,-1]],[[2730,9006],[2,-1],[2,1],[2,-1],[0,-2],[0,-2],[-2,0],[-3,0],[-1,1],[1,1],[-3,1],[0,-2],[-1,-1],[-2,1],[0,2],[0,2],[1,1],[4,-1]],[[2495,9004],[-1,-1],[1,1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,1],[0,-2],[-1,1],[-2,2],[1,1],[-1,1],[-1,0],[-1,2],[0,1],[0,1],[0,1],[3,2],[1,1],[1,0],[0,1],[1,0],[1,-2],[0,-1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2860,9006],[1,-1],[6,0],[1,0],[0,1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-2,-2],[-1,-1],[-1,-2],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-2],[1,0],[1,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[-1,0],[-1,1],[0,1],[-1,1],[-2,-1],[-2,-1],[-1,0],[-3,2],[-1,2],[-1,3],[-1,3],[0,1],[1,2],[0,1],[0,2],[0,1],[0,1],[0,1],[1,2],[2,1],[4,1],[1,-1],[1,-1]],[[1230,9012],[3,-3],[0,-1],[-1,0],[-2,2],[-1,0],[-2,0],[0,1],[1,1],[2,0]],[[2187,9015],[1,0],[1,1],[0,-1],[1,0],[2,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,-1],[1,0],[-1,-1],[-1,0],[-1,0],[1,1],[1,1],[0,1],[-1,1],[-1,0],[0,1],[1,-1],[1,1],[1,2],[-2,2],[0,-1],[-1,0],[-1,1],[-1,2],[0,2],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1]],[[2315,9016],[0,-1],[3,1],[4,0],[1,0],[0,-1],[1,-1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-2,1],[-2,1],[-1,1],[-1,3],[-1,1],[-2,1],[-2,0],[0,1],[-2,2],[-1,2],[-2,3],[1,0],[1,0],[0,-1]],[[3130,9015],[-1,-1],[-4,0],[-2,-1],[1,0],[1,-1],[0,-1],[-2,1],[-2,0],[-1,0],[-2,1],[0,1],[0,1],[1,0],[1,0],[2,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[2,0],[0,-1],[1,-1],[1,0],[0,-1]],[[1282,9019],[1,0],[-1,-1],[-2,-1],[1,-1],[-1,0],[-1,0],[-2,1],[0,1],[1,0],[0,1],[2,1],[1,0],[1,0],[0,-1]],[[2342,9019],[1,0],[0,1],[1,0],[0,-1],[2,-2],[1,-1],[3,-3],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-5,-1],[-1,1],[1,1],[0,1],[0,1],[1,1],[1,1],[-1,3],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,-1],[0,-3],[1,-2],[0,-1],[-2,-4],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,4],[1,0],[0,1],[1,0],[1,0],[1,2],[2,0],[1,-1],[0,-1]],[[1142,9018],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,-1],[-1,0],[1,1],[3,4],[1,1],[2,0],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[0,-1]],[[1235,9016],[-1,1],[-1,1],[1,1],[1,2],[1,1],[1,0],[2,0],[-1,-1],[-1,-3],[-1,-1],[-1,-1]],[[3114,9026],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-2,-1],[-2,-3],[0,-1],[-1,-2],[-1,0],[-10,4],[1,0],[2,1],[1,1],[1,1],[2,2],[1,1],[4,-2],[2,1],[-4,1],[0,1],[0,1],[1,0],[1,0]],[[2163,9023],[-1,-1],[-1,1],[-1,1],[0,2],[0,1],[2,1],[1,0],[0,-2],[0,-3]],[[2834,9024],[1,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-4,-2],[-2,-1],[-2,-2],[-2,-2],[-1,0],[-1,2],[-1,0],[-1,0],[-3,-3],[-2,-1],[-1,1],[0,1],[0,1],[0,1],[5,4],[2,4],[1,1],[0,1],[1,0],[2,0],[2,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[2,-1],[-1,-1],[1,-1],[1,0],[1,1],[0,1],[-1,2],[0,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,-1],[1,-2],[1,-1]],[[2787,9034],[3,-2],[1,1],[2,-1],[1,-1],[0,-3],[1,0],[1,-1],[0,-1],[0,-1],[-6,-4],[-2,-1],[-6,-1],[-2,0],[-1,0],[0,2],[-1,0],[-1,1],[-1,0],[-1,-1],[1,-1],[2,-5],[1,-1],[0,-2],[-1,-1],[-3,1],[-2,1],[-1,1],[-1,0],[0,1],[0,2],[1,1],[0,2],[-1,0],[-1,-1],[-1,-3],[-1,-1],[0,2],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-2,1],[-6,-1],[-1,1],[0,1],[0,1],[2,1],[0,1],[0,1],[1,0],[1,0],[2,-2],[2,0],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,2],[1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[2,-1],[0,-1],[1,0],[2,2],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[1,2],[1,0],[2,-1],[3,1],[1,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0]],[[2708,9030],[-2,-2],[-3,2],[-4,1],[-1,1],[1,1],[2,1],[3,0],[4,-2],[0,-2]],[[2679,9031],[-1,0],[-2,-1],[-1,0],[-1,-1],[1,0],[1,-1],[0,-1],[-1,0],[-2,0],[-2,2],[-1,1],[-1,1],[0,1],[0,2],[1,1],[8,-2],[2,-1],[-1,-1]],[[2449,9034],[-1,0],[0,2],[0,1],[2,1],[1,0],[2,0],[1,-1],[-1,-1],[-2,-1],[-2,-1]],[[2459,9035],[0,-1],[-1,0],[1,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-2,2],[-1,0],[-1,2],[-2,1],[4,2],[1,1],[1,0],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[-1,-1],[-1,0],[1,-1],[-1,-1]],[[2294,9018],[1,0],[0,1],[0,1],[1,4],[1,1],[1,0],[1,-1],[3,-4],[0,-1],[1,-1],[0,-1],[1,0],[4,-6],[1,0],[2,0],[1,-1],[1,-2],[1,0],[2,0],[2,-2],[1,-1],[1,0],[2,-2],[2,-2],[3,-3],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[1,-2],[0,-1],[0,-2],[-1,-1],[1,-2],[0,-1],[1,0],[1,0],[1,0],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,-3],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[2,0],[5,4],[1,1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[-2,-3],[-1,-1],[-1,-1],[-3,-4],[-1,0],[1,2],[0,2],[-1,1],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,0],[1,-2],[0,-1],[-1,0],[-1,-2],[0,-1],[0,-2],[-1,-1],[-2,2],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-4,-6],[-1,0],[-5,-2],[-1,0],[-3,2],[-2,0],[-4,3],[-2,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[1,-2],[1,-2],[-1,0],[-1,-1],[-1,0],[-2,1],[-2,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,2],[-3,3],[-1,0],[0,1],[-2,2],[-1,1],[-1,0],[-4,2],[-2,1],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-2,1],[-1,1],[-1,2],[0,1],[1,1],[1,1],[-1,1],[0,1],[-3,2],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[-1,0],[-1,1],[0,2],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-4,3],[-1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[-2,0],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,1],[-2,0],[1,-1],[1,-2],[1,-1],[-1,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[-4,2],[-1,1],[0,1],[0,2],[-1,1],[-1,2],[-1,1],[-1,1],[0,1],[1,1],[1,2],[1,3],[1,1],[1,0],[2,0],[1,2],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[4,-1],[1,1],[0,1],[1,1],[3,0],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[1,0],[1,-2],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,1],[0,1],[-1,1],[-1,2],[-3,2],[-1,2],[0,1],[0,1],[0,1],[1,0],[2,-1],[1,0],[1,1],[-3,1],[-2,2],[0,2],[1,2],[3,0],[2,-1],[1,-1],[1,-2],[1,-2],[2,-2],[2,0],[1,0],[-1,-2],[1,-1],[1,0],[1,1],[1,1],[-5,4],[-1,1],[-1,3],[-1,1],[-1,1],[-1,0],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,2],[1,1],[1,3],[1,1],[2,0],[1,1],[1,3],[1,1],[1,1],[2,0],[1,-1],[1,-1],[3,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[4,-1],[1,-1],[0,-2],[1,-1],[2,-1],[-1,-1],[-2,0],[-1,-1],[1,-4],[1,-2]],[[2295,9040],[1,-1],[2,0],[1,-1],[-1,-1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,0],[0,1],[0,2],[0,1],[0,1],[1,0],[2,0],[1,-1],[0,-1],[0,-1],[-1,-1]],[[2583,9055],[6,-2],[4,2],[1,-1],[1,0],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-2],[-1,-1],[-8,-1],[-4,2],[-1,1],[-1,1],[-2,-2],[-1,0],[-2,2],[-2,0],[0,1],[-1,0],[0,2],[0,1],[-2,1],[0,1],[1,1],[1,0],[1,-1],[2,0],[2,1],[-1,1],[1,2],[1,-1],[2,-2]],[[1528,9057],[-1,-1],[-1,1],[-1,-1],[1,-1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[3,0],[1,0],[-1,0],[0,-1]],[[1862,9066],[-6,0],[-1,1],[1,0],[0,1],[3,0],[3,-1],[0,-1]],[[2201,9064],[-1,0],[-1,1],[-1,2],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1]],[[1898,9068],[-12,-1],[-6,4],[0,1],[1,0],[5,-1],[4,-2],[2,0],[6,-1]],[[1761,9080],[1,-1],[-1,1],[-4,0],[-1,0],[-1,1],[-1,1],[2,0],[3,-1],[2,0],[0,-1]],[[1771,9084],[-1,-1],[-1,0],[-1,0],[-3,-1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[3,0],[1,-1],[-3,0]],[[1763,9086],[0,-1],[0,-1],[-6,0],[-1,1],[1,0],[1,0],[1,1],[2,0],[2,0]],[[1781,9085],[-2,-1],[-3,1],[1,0],[1,1],[2,1],[1,0],[1,0],[1,-1],[-1,0],[-1,-1]],[[1753,9085],[-1,-1],[-2,1],[-6,-1],[-2,1],[-1,1],[2,2],[1,0],[4,-2],[4,0],[1,-1]],[[1442,9089],[-1,-1],[0,1],[0,-2],[-1,0],[-1,0],[-1,1],[-1,-1],[1,-1],[-1,0],[-2,-2],[0,2],[2,6],[1,1],[1,-1],[1,0],[1,-2],[1,-1]],[[2203,9094],[3,-1],[1,0],[1,1],[1,-1],[2,-2],[1,0],[0,-1],[0,-1],[2,0],[2,-1],[1,-1],[-1,-1],[-1,0],[-2,2],[-1,0],[-1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-2],[1,-2],[-1,-1],[-1,1],[-1,1],[-1,1],[-3,0],[-5,4],[-1,2],[0,1],[0,1],[1,1],[-1,1],[0,1],[-1,2],[1,0]],[[3004,9121],[1,-1],[8,-3],[4,0],[1,0],[0,-2],[-1,-1],[-1,-1],[1,-2],[-1,-1],[-1,0],[-5,-1],[-7,-3],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,2],[0,1],[2,0],[1,0],[-1,-1],[1,0],[1,0],[1,0],[0,1],[1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[5,2],[0,-1]],[[2968,9146],[0,2],[1,0],[2,2],[0,1],[1,2],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[-1,-1],[-2,0],[-2,-1],[-1,-1],[0,-1],[1,-2],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[-1,1],[-3,0],[-1,2],[0,4],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[5,2],[1,0],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[1,-1]],[[2980,9154],[-2,-1],[-6,2],[-1,2],[0,2],[1,1],[2,2],[5,0],[1,0],[1,-1],[0,-3],[-1,-4]],[[2354,9174],[-2,-3],[0,-2],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,1],[1,1],[2,1],[1,2],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,1],[2,0],[1,0],[1,0],[1,-1]],[[1502,9184],[-1,0],[-1,0],[0,1],[1,0],[1,-1]],[[2924,7300],[-4,0],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,-2],[-1,0],[-1,-1],[-4,-4],[-2,-3],[-3,-5],[-4,-6],[-3,-6],[-2,-3],[-1,-3],[-1,-2],[0,-2],[0,-1],[-1,-1],[-1,0],[-4,-4],[-3,-3],[0,-2],[0,-2],[-1,-1],[0,-1],[-3,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-2,-3],[-1,-1],[-1,-4],[-1,-4],[-2,-4],[-1,-4],[-1,-4],[-1,-3],[-1,-4],[-2,-4],[0,-1],[-1,0],[-6,0],[-7,0],[-6,0],[-6,0],[-7,0],[-6,0],[-7,0],[-6,0],[-2,-1],[-5,-5],[-4,-3],[-3,-3],[3,-8],[1,-5],[0,-1],[0,-6],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-3],[-2,-3],[-1,-3],[-5,-4],[-4,-4],[-4,-3],[-4,-4],[-4,-3],[-1,-1],[-4,-4],[-4,-4],[-4,-3],[-4,-2],[-3,-1],[-1,0],[-3,-2],[-4,-1],[-3,-1],[-4,-2],[-3,-1],[-4,-1],[-4,-5],[-4,-5],[-4,-4],[-4,-5],[-4,-5],[-4,-4],[-4,-5],[-4,-5],[-1,0],[-6,0],[-1,1],[-4,5],[-3,4],[-3,2],[-1,2],[0,3],[-1,2],[0,4],[0,3],[0,5],[0,6],[1,3],[0,2],[1,2],[1,2],[3,2],[3,3],[1,1],[3,7],[1,3],[1,0],[1,1],[1,1],[0,2],[1,2],[1,5],[0,3],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,2],[0,2],[0,2],[1,2],[0,3],[0,2],[1,2],[0,5],[1,4],[1,5],[1,4],[1,4],[1,5],[1,4],[1,4],[0,2],[0,2],[0,1],[-1,14],[-2,15],[-1,15],[-1,14],[-2,15],[-1,15],[-1,14],[-2,15],[0,3],[-1,3],[-5,5],[-7,8],[-5,5],[-6,7],[-3,3],[-2,3],[1,3],[1,5],[1,4],[0,1],[0,1],[0,1],[-1,1],[-2,3],[-1,2],[-1,0],[-3,-1],[-2,1],[-1,0],[0,-1],[-2,-3],[-1,0],[0,1],[0,2],[-1,0],[0,1],[0,2],[-1,1],[-1,3],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,1],[0,3],[1,6],[-1,1],[-1,1],[-1,-2],[-2,-1],[-1,1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-3,6],[-2,5],[0,1],[-1,7],[-1,4],[0,4],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-3,4],[-4,4],[-3,3],[-3,4],[-4,3],[-3,4],[-4,4],[-3,3],[-3,3],[-3,3],[-3,3],[-3,3],[-3,3],[-3,3],[-3,3],[-3,3],[-5,5],[-5,5],[-5,5],[-5,5],[-6,6],[-5,5],[-5,5],[-5,5],[-1,1],[-1,-1],[-5,-2],[-2,-1],[-3,-4],[-4,-3],[-5,-5],[-4,-4],[-3,-3],[-1,0],[-2,1],[-1,0],[-3,0],[-2,1],[-1,-1],[-1,1],[-1,0],[-1,0],[-3,-2],[-2,2],[0,1],[-2,5],[-2,1],[-1,0],[-8,-2],[-1,1],[-1,-1],[-1,0],[0,1],[-1,1],[0,-1],[-3,-1],[-1,0],[-1,1],[0,1],[-1,3],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-4,-4],[-1,-2],[-1,-1],[-2,-1],[-2,-1],[-1,1],[-1,0],[-2,0],[0,1],[0,1],[-1,1],[0,-1],[-2,1],[-1,1],[1,2],[-1,2],[-1,1],[-3,1],[-3,2],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,2],[-1,0],[-2,1],[-3,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,4],[-1,2],[-1,1],[0,2],[0,3],[0,1],[0,1],[-1,1],[-2,0],[-2,0],[-1,0],[-1,1],[0,2],[1,0],[1,1],[1,0],[0,2],[-1,1],[-2,1],[-4,2],[-2,2],[-1,0],[-4,1],[-4,0],[-3,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-4,-1],[0,1],[-1,1],[-1,5],[-1,2],[-4,0],[-6,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-5,-1],[-1,0],[-2,2],[-2,4],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,3],[-1,8],[-1,7],[-1,1],[0,2],[0,3],[0,1],[0,2],[0,3],[-1,1],[-2,2],[-2,1],[-3,0],[-2,1],[0,-4],[0,-6],[0,-8],[0,-7],[0,-1],[-6,0],[-6,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-2,0],[-4,0],[-6,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-1,0],[-5,0],[-6,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-2,0],[-4,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-3,0],[-3,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-3,0],[-4,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-7,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-6,0],[-3,0]],[[1590,7579],[-1,1],[-1,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-3,-2],[0,-1],[0,-2],[0,-1]],[[1582,7579],[-1,0]],[[1581,7579],[-1,2],[0,1],[-1,1],[1,1],[1,2],[1,2],[0,2],[-1,-2],[-1,-1],[-1,0],[-2,1],[0,1],[1,0],[-1,3],[1,1],[0,1],[1,-1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[1,1],[1,-1],[1,1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[0,1],[0,-1],[1,1],[1,0],[0,-1],[1,0],[1,1],[1,2],[1,5],[0,2],[0,1],[0,1],[-1,-1],[1,-2],[-1,-1],[-1,-5],[-2,-1],[-6,2],[-1,0],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[-1,5],[0,1],[1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,2],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[1,0],[0,-2],[0,-3],[0,-1],[-1,-1],[0,-1],[-1,0],[-7,6],[-2,0],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[0,2],[-1,3],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[1,-3],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,-3],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[1,0],[1,1],[2,1],[1,1],[0,2],[-3,-3],[-4,-1],[0,2],[-1,1],[-1,4],[-1,1],[-1,0],[0,2],[1,1],[0,2],[1,1],[0,2],[0,2],[-1,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[1,1],[1,1],[1,1],[1,0],[1,2],[0,2],[0,1],[-1,2],[-1,1],[-1,2],[-2,0],[-1,2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[2,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[-3,-3],[-1,-2],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,2],[0,1],[0,1],[-1,1],[1,1],[0,1],[-1,1],[0,-1],[-1,-3],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-2,-1],[-3,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,1],[-2,0],[-1,0],[-1,1],[-1,1],[0,1],[0,2],[-2,3],[0,1],[-1,0],[-1,1],[0,1],[-2,2],[-1,1],[-1,5],[-1,1],[1,1],[0,-1],[1,-1],[0,-1],[1,0],[1,-2],[0,-1],[0,3],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,2],[0,1],[-1,2],[0,1],[-1,1],[-1,1],[0,1],[1,2],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,2],[1,0],[1,3],[1,1],[-1,1],[0,-1],[-1,-2],[-3,-2],[-2,-1],[-2,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[-2,-3],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[-1,0],[1,-1],[0,-2],[0,-2],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,3],[0,1],[0,1],[0,2],[0,1],[2,1],[1,1],[0,1],[0,1],[2,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[1,1],[0,2],[1,1],[-1,2],[-1,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,2],[1,0],[1,1],[-1,2],[0,1],[-1,0],[-1,-1],[0,-2],[-1,-3],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-2,-2],[0,-2],[-2,-2],[-1,-2],[1,-1],[-1,-2],[-1,0],[0,-1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,0],[0,-2],[-1,0],[-1,1],[0,2],[0,2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-3,-1],[-1,0],[0,1],[0,1],[1,1],[0,3],[0,1],[0,2],[0,2],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-2,3],[0,1],[1,1],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[-3,-2],[-1,0],[-2,0],[-1,2],[0,-1],[-1,0],[-3,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[1,-2],[0,2],[0,1],[0,1],[1,1],[1,0],[0,1],[0,-1],[1,1],[2,1],[1,0],[1,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-2,-2],[-1,0],[-2,0],[0,1],[-1,1],[1,1],[1,0],[3,0],[2,1],[3,0],[3,1],[2,1],[0,-1],[1,0],[0,1],[1,3],[0,1],[1,0],[0,1],[1,2],[-1,1],[0,1],[0,1],[0,2],[2,0],[0,1],[0,1],[1,2],[0,1],[1,1],[-1,1],[0,1],[0,1],[-1,5],[0,1],[-2,2],[0,-2],[0,-1],[1,-3],[0,-4],[1,0],[0,-1],[1,0],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-3],[-1,-1],[0,1],[-3,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[-1,-1],[0,-1],[-1,0],[-3,-1],[-1,0],[0,1],[0,2],[1,0],[1,1],[0,1],[2,2],[1,1],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,1],[-1,1],[0,1],[1,1],[0,2],[0,1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-2],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[1,2],[1,0],[3,-1],[1,1],[3,-1],[0,1],[1,0],[0,2],[0,1],[0,-1],[-1,-1],[-1,0],[-4,1],[-2,0],[-1,1],[0,4],[0,3],[0,1],[-1,0],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-3,-2],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,-1],[0,-1],[0,-1],[-4,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,1],[-2,2],[-2,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-3,2],[0,1],[0,1],[1,0],[-1,1],[-1,0],[1,0],[-1,0],[-1,0],[-1,1],[0,1],[1,2],[0,2],[0,1],[1,1],[0,1],[-1,0],[-1,0],[0,-1],[-3,0],[-1,1],[0,1],[-3,3],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[3,1],[0,1],[1,1],[5,-1],[0,-1],[1,0],[4,1],[1,1],[1,1],[1,2],[0,1],[0,2],[0,1],[-1,-1],[-1,-3],[0,-1],[-2,-2],[-1,0],[-6,1],[0,1],[1,1],[0,1],[-1,0],[-2,-2],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,1],[1,3],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[4,2],[8,1],[9,-2],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,1],[-1,1],[0,-1],[1,0],[-1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-11,3],[-4,-1],[-1,0],[-1,2],[-1,0],[0,-2],[-1,-1],[-1,0],[0,1],[0,1],[0,3],[0,1],[1,0],[1,1],[1,6],[-1,1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-3],[-1,-1],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-4],[-1,-1],[-2,0],[-1,2],[0,1],[2,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[-1,0],[1,2],[0,5],[0,2],[1,1],[1,2],[1,1],[1,0],[1,0],[0,-2],[0,-1],[-1,0],[0,-1],[-2,1],[0,-1],[-1,-4],[1,1],[1,2],[2,1],[1,0],[1,1],[-1,3],[0,1],[-1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[2,0],[1,1],[0,1],[2,3],[0,1],[1,0],[1,-1],[2,0],[1,0],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[1,-3],[3,-5],[1,-2],[1,-2],[0,-1],[1,-2],[0,-1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[-3,3],[0,3],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[-1,0],[-4,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,3],[0,1],[1,2],[0,1],[1,1],[1,1],[1,2],[1,0],[1,1],[1,1],[0,1],[0,2],[1,2],[0,1],[0,1],[-1,3],[0,3],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,-2],[2,-3],[0,-3],[0,-2],[1,-1],[0,-1],[-1,-1],[-1,-4],[-3,-3],[-2,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-2],[-1,0],[-4,-4],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,2],[1,1],[0,2],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[-1,1],[-1,1],[0,3],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-3],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-1,3],[1,3],[1,1],[1,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-4],[0,-1],[0,-1],[-1,-1],[-1,-4],[-2,-3],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[0,1],[1,1],[0,1],[0,1],[0,2],[1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[1,3],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,2],[0,1],[0,2],[0,2],[-1,2],[1,2],[0,1],[1,1],[1,0],[1,1],[-1,0],[-2,-1],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-2,1],[-2,0],[0,1],[0,1],[0,1],[-1,0],[-1,2],[0,1],[1,0],[0,2],[-1,2],[0,2],[0,2],[0,2],[-1,1],[0,1],[1,1],[1,0],[-1,1],[-1,0],[0,2],[1,0],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,4],[0,1],[0,-1],[0,-1],[-1,-1],[-3,4],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,2],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[1,1],[0,2],[-1,0],[0,-1],[-1,-1],[-1,0],[0,2],[0,3],[-1,1],[1,0],[2,-1],[1,1],[0,1],[1,1],[0,-1],[1,-1],[0,-3],[1,-1],[1,-1],[1,-2],[0,1],[-1,1],[0,1],[1,0],[1,-1],[2,-4],[1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,-1],[0,1],[0,2],[0,1],[-1,0],[1,1],[0,1],[3,1],[0,1],[1,1],[1,-1],[1,-1],[3,0],[1,0],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[1,2],[1,1],[0,-1],[1,0],[1,-2],[1,-1],[0,-4],[0,-1],[2,-1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,2],[-1,0],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-2,1],[-3,-1],[-1,1],[-1,1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,2],[-1,0],[0,1],[-1,2],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[-1,3],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[0,2],[1,0],[3,-2],[2,0],[0,1],[-1,1],[-1,-1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[1,2],[1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[-1,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-2,-4],[1,1],[0,2],[0,2],[-1,-3],[0,2],[0,1],[0,1],[-1,2],[-1,0],[1,-2],[0,-3],[0,-3],[-1,-1],[0,1],[-1,2],[0,-1],[1,-3],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[0,-2],[0,-3],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[-7,13],[-1,0],[-1,3],[-1,1],[-1,3],[0,1],[0,-1],[1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[1,1],[0,1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,3],[0,5],[0,1],[1,3],[0,1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-2],[1,-2],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,1],[0,2],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,2],[1,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,-2],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[-1,0],[-1,-2],[-1,-1],[0,-1],[-1,1],[-4,2],[-1,0],[-2,0],[-2,-2],[-1,0],[0,-2],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-3,1],[0,2],[1,2],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,-1],[-1,-1],[0,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[1,1],[-1,1],[0,1],[1,1],[0,1],[2,0],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,1],[1,0],[0,1],[-1,2],[0,1],[0,1],[0,-1],[1,0],[1,-1],[0,-1],[1,-2],[1,-2],[0,-1],[6,-13],[1,-1],[1,0],[1,0],[-1,1],[-1,0],[-1,3],[-1,1],[0,1],[1,3],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[-2,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,1],[-2,3],[0,1],[-2,5],[0,1],[-1,2],[-1,2],[-1,2],[1,2],[2,1],[1,0],[2,0],[1,-2],[1,0],[1,-1],[0,-2],[1,-1],[3,-1],[1,0],[0,1],[-2,0],[-1,0],[-1,1],[0,1],[-1,3],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,-2],[-1,-1],[-1,0],[0,-1],[0,1],[1,1],[0,1],[1,1],[1,4],[0,1],[1,0],[1,1],[0,-1],[1,-1],[-1,-1],[0,-1],[1,0],[0,1],[1,1],[1,0],[1,2],[1,1],[1,-1],[1,0],[1,1],[1,-1],[1,1],[0,1],[-1,-1],[-8,1],[-1,0],[0,1],[0,1],[0,1],[1,3],[0,2],[1,0],[1,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[0,3],[1,1],[1,0],[0,1],[0,1],[0,1],[1,2],[1,1],[1,-1],[1,0],[1,1],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-2],[0,-1],[0,1],[0,3],[-1,1],[0,1],[-1,7],[-1,2],[0,-2],[0,-1],[0,-3],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,0],[0,-2],[0,-3],[-1,-1],[-2,-5],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-1,1],[0,1],[0,1],[-1,3],[1,2],[0,3],[1,0],[0,2],[1,1],[1,2],[2,3],[0,2],[0,1],[-1,2],[0,1],[0,3],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,1],[0,2],[-1,2],[0,2],[0,4],[1,1],[0,1],[0,1],[-1,1],[-1,1],[0,2],[0,1],[1,2],[2,5],[1,4],[1,1],[-1,1],[-1,-1],[0,-1]],[[1388,8062],[0,1],[0,3],[0,2],[0,2],[0,1],[-1,3],[-1,1],[0,1],[-3,-2],[-1,1],[-1,0],[-3,2],[-1,0],[0,1],[-1,5],[0,1],[-1,0],[-3,1],[-1,1],[-3,6],[-3,2],[-4,1],[-3,2],[-3,3],[-4,3],[-4,4],[-1,2],[-1,1],[-3,-1],[-3,0],[-1,1],[0,3],[0,2],[0,1],[-1,2],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[-7,4],[2,12],[-3,2],[-5,2],[2,4],[1,4],[-2,6],[-2,4],[-2,5],[-3,6],[-2,6],[-2,5],[-4,9],[-2,7],[-2,4],[-3,4],[0,2],[-2,6],[0,2],[-3,5],[-3,5],[-1,3],[-1,3],[2,2],[-2,4],[-3,3],[-2,3],[-2,4],[-3,6],[-1,2],[-1,1],[-3,3],[-3,2],[-4,3],[-2,4],[0,1],[-1,1],[0,1],[1,0],[-1,1],[0,1],[-1,0],[0,3],[0,1],[0,1],[-2,4],[-1,1],[-2,0],[-1,1],[0,1],[-2,2],[0,1],[0,2],[-1,1],[0,1],[-1,0],[-3,1],[-2,1],[-1,0],[-1,2],[-1,2],[0,1],[1,1],[0,1],[-3,3],[1,1],[1,2],[0,1],[0,1],[0,4],[0,1],[0,1],[-2,2],[0,1],[-2,0],[0,2],[-1,2],[-1,2],[-3,2],[-1,1],[-2,3],[-1,0],[-4,-3],[-5,-4],[-3,-2],[-3,-1],[-3,-1],[-3,-1],[-3,-2],[2,-1],[1,-1],[0,-2],[-1,-3],[-1,-2],[-1,-1],[-1,0],[-2,1],[0,-5],[0,-7],[0,-2],[-3,-6],[-1,-1],[-2,-1],[-3,1],[-1,-1],[-3,-2],[-3,-3],[-3,-3],[-3,-3],[-2,-2],[-2,-4],[-1,0],[-1,0],[-1,1],[0,2],[1,3],[-1,6],[-1,4],[-1,5],[0,2],[-1,1],[-4,5],[-4,5],[-4,6],[-5,6],[-4,5],[-3,4],[-3,4],[-1,3],[-1,1],[-1,6],[0,1],[-1,1],[-3,1],[-4,3],[-2,1],[0,1],[-1,2],[-2,3],[0,2],[1,4],[1,5],[1,5],[0,1],[0,1],[-1,1],[-5,0],[-4,-1],[-3,0],[-3,0],[-1,0],[-1,-2],[-3,-3],[-3,-4],[-1,-1],[-1,0],[-5,3],[-4,2],[-3,2],[-1,0],[0,-1],[-1,-3],[0,-1],[-1,0],[-3,1],[-3,2],[-4,1],[-2,1],[-1,1],[0,1],[0,10],[0,10],[0,11],[0,10],[0,10],[0,10],[0,10],[0,11],[0,10],[0,10],[0,10],[0,10],[0,11],[0,10],[0,10],[0,10],[0,10],[0,10],[0,11],[0,10],[0,10],[0,10],[0,10],[0,11],[0,10],[0,10],[0,10],[0,10],[0,10],[0,11],[0,10],[0,10],[0,10],[0,10],[0,11],[0,10],[0,10],[0,10],[0,10],[0,11],[0,10],[0,10],[0,10],[0,10],[0,10],[0,11],[0,10],[0,10],[0,10],[0,10],[0,11],[0,10],[0,10],[0,10],[0,10],[0,11],[0,10],[0,10],[0,10],[0,10],[0,10],[0,11],[0,10],[0,10]],[[1083,9022],[1,0],[2,-1],[0,-1],[1,0],[1,0],[0,1],[5,-1],[7,-1],[5,-1],[2,2],[6,0],[9,-3],[-3,1],[-2,0],[1,-1],[1,0],[10,-2],[1,-2],[1,0],[4,-1],[1,-1],[1,-3],[1,-1],[1,-1],[1,-1],[5,-3],[1,-2],[2,-2],[1,-2],[1,-2],[0,-1],[0,1],[1,0],[0,1],[1,-1],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,0],[-1,-1],[1,2],[1,0],[1,0],[0,-1],[0,-2],[0,-2],[1,0],[2,-4],[4,-3],[6,-3],[10,-5],[3,0],[1,-1],[-2,0],[0,-1],[4,-1],[2,-2],[1,0],[4,0],[2,0],[0,-1],[0,-1],[2,0],[3,-2],[1,-1],[3,0],[1,1],[3,0],[-1,0],[0,1],[1,1],[1,-1],[1,0],[1,0],[4,-1],[5,-1],[5,-2],[1,-1],[2,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,-1],[3,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[3,1],[1,-1],[2,-1],[1,0],[-1,1],[-1,0],[0,1],[1,0],[-1,0],[-2,2],[-1,0],[0,1],[-1,2],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,2],[4,-1],[-1,1],[-5,1],[-2,2],[1,0],[0,1],[-6,0],[-1,0],[-4,3],[0,1],[1,0],[1,0],[-1,2],[-1,2],[1,1],[0,1],[1,-1],[2,-2],[2,-1],[3,0],[2,1],[2,2],[-4,-1],[-1,0],[0,1],[0,1],[-1,1],[-5,2],[0,1],[-1,4],[0,2],[0,1],[0,1],[1,2],[1,0],[2,-2],[1,-1],[1,-2],[5,-4],[3,0],[1,-2],[0,2],[-1,1],[-4,1],[-6,8],[-1,2],[1,1],[1,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[2,-2],[0,2],[-1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[2,-1],[1,0],[1,0],[1,-3],[1,0],[5,-2],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[2,1],[2,2],[1,-1],[0,1],[1,0],[1,1],[1,-1],[1,0],[2,1],[1,0],[1,-1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[3,0],[3,-2],[1,0],[2,1],[0,2],[-1,2],[-1,0],[-1,-2],[0,-1],[-1,0],[-1,1],[1,1],[-1,0],[0,1],[0,1],[1,1],[1,-1],[1,0],[1,1],[-1,1],[1,1],[0,1],[1,1],[0,2],[0,1],[-1,2],[-1,3],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[3,0],[1,-1],[0,-1],[1,-1],[1,0],[-2,-1],[0,-1],[-1,-1],[0,-1],[1,1],[1,0],[0,-2],[1,-1],[1,0],[1,0],[1,1],[1,-1],[-1,0],[0,-1],[-1,0],[2,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[-1,0],[0,1],[1,1],[1,0],[-1,0],[1,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[-1,-1],[1,-1],[0,-1],[-1,-2],[-1,-1],[-5,-5],[-2,-2],[0,-4],[-2,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,1],[1,0],[1,0],[0,1],[0,2],[1,2],[1,1],[1,1],[4,1],[1,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,-1],[0,-1],[1,0],[1,1],[0,1],[-1,0],[1,2],[1,0],[5,2],[5,-1],[1,0],[0,-1],[0,1],[1,0],[3,3],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[1,2],[2,2],[3,0],[0,-1],[-1,0],[0,-1],[2,0],[1,0],[0,1],[1,0],[1,0],[2,-1],[5,1],[1,1],[0,1],[-1,1],[-3,-2],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,2],[4,1],[2,1],[1,0],[0,1],[1,-1],[-1,0],[-2,-1],[-2,0],[-1,-1],[5,0],[0,-1],[-1,-1],[2,0],[1,0],[2,-1],[1,1],[0,1],[3,1],[1,1],[1,1],[3,0],[0,1],[2,1],[0,1],[0,1],[0,1],[1,1],[3,2],[4,1],[1,1],[0,2],[0,1],[1,1],[1,-1],[2,0],[1,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,2],[0,1],[-1,0],[0,1],[1,1],[1,-1],[1,1],[0,1],[0,2],[1,2],[1,1],[0,1],[0,1],[1,1],[1,0],[-1,1],[-1,-1],[-1,0],[1,1],[2,3],[1,1],[0,1],[0,-1],[0,-1],[-1,0],[1,-1],[0,1],[1,1],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,1],[-1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,1],[2,0],[-1,-1],[-1,-1],[-1,-1],[1,-2],[1,0],[0,1],[-1,0],[1,1],[2,0],[1,1],[-1,1],[1,0],[1,-2],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[-1,-1],[1,0],[2,0],[0,1],[2,1],[0,-2],[-1,-1],[1,-1],[1,1],[1,3],[1,-1],[-1,0],[0,-1],[1,0],[2,1],[1,1],[1,-1],[-2,-1],[0,-1],[2,1],[1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[2,2],[-1,0],[0,1],[-1,0],[0,1],[1,-1],[0,1],[1,1],[1,0],[1,0],[-1,1],[0,1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[1,1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[-1,0],[-1,-1],[-1,-1],[-3,-2],[-1,-1],[-10,-6],[-3,0],[-2,-2],[-1,0],[0,1],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[-3,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-3,0],[-1,-2],[-1,0],[-3,0],[0,-1],[1,-1],[-2,0],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,1],[-1,0],[0,-1],[-3,1],[1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,0],[-2,-1],[-2,-1],[-2,0],[-1,-1],[-2,-3],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[1,-1],[-1,0],[-1,-1],[2,-1],[0,-1],[-1,-1],[-6,-3],[0,-1],[0,-1],[0,-2],[1,-1],[-1,0],[-1,2],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,2],[0,3],[0,2],[-1,2],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-3],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[-1,-1],[-1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,1],[1,1],[-1,0],[0,2],[0,1],[1,1],[-1,0],[-1,-1],[-1,-1],[-1,1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[1,0],[1,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-3,-1],[1,-1],[0,-1],[1,0],[-1,-1],[-1,0],[0,-2],[0,-1],[1,-1],[1,-1],[2,-1],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[3,-2],[3,1],[1,-1],[0,1],[-1,1],[-1,0],[-2,0],[1,0],[0,-1],[-4,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[-1,1],[-2,2],[-1,0],[-2,-1],[-1,1],[1,0],[0,1],[-1,1],[0,1],[2,0],[1,1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[-1,0],[0,1],[1,0],[3,-1],[0,2],[-1,1],[0,1],[1,0],[1,0],[1,-1],[1,-2],[2,-1],[1,-1],[0,1],[0,1],[0,1],[1,0],[5,-2],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-3,3],[-1,1],[-1,-1],[3,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[1,0],[0,1],[-1,0],[-1,1],[-1,1],[1,1],[1,0],[2,-1],[0,2],[-1,1],[-2,0],[-1,1],[0,1],[-1,1],[0,2],[1,1],[0,1],[-1,0],[0,1],[1,0],[1,1],[4,0],[2,3],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-3],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[2,2],[1,1],[0,2],[0,1],[1,2],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[1,0],[0,2],[1,0],[0,1],[1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[1,1],[1,4],[-1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,1],[0,1],[1,1],[1,1],[1,1],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,1],[1,1],[1,3],[1,2],[0,1],[-1,0],[-3,-2],[0,1],[0,1],[-1,0],[-2,-1],[0,1],[2,1],[1,1],[0,-1],[1,0],[1,1],[1,0],[3,-1],[-1,2],[0,1],[1,1],[1,0],[2,-1],[2,-1],[1,-1],[0,-1],[-1,0],[-1,-2],[1,-2],[-1,-1],[-1,-1],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[-1,2],[1,0],[1,0],[0,1],[0,1],[0,1],[1,-1],[1,-4],[0,-1],[0,2],[-1,3],[0,1],[1,1],[0,-2],[1,-2],[0,-3],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,-2],[-1,-1],[-1,-2],[1,1],[1,1],[1,0],[1,3],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[1,1],[-2,3],[-1,2],[0,1],[1,0],[0,-2],[1,-1],[1,-1],[1,0],[0,-1],[0,-3],[-1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,2],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[1,-1],[-1,-1],[1,-2],[1,-1],[0,-3],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[1,1],[1,1],[0,1],[0,2],[2,4],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,2],[0,2],[1,1],[1,1],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-2,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[1,-2],[0,-1],[1,1],[1,-1],[-1,2],[0,1],[1,1],[0,1],[0,2],[-1,1],[0,1],[1,1],[2,3],[1,1],[1,1],[-1,1],[0,1],[1,1],[0,1],[1,0],[2,1],[0,1],[1,2],[-1,0],[-2,-1],[6,6],[1,2],[1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[-1,0],[1,1],[5,0],[6,3],[2,0],[5,3],[3,2],[2,0],[2,1],[9,1],[1,1],[1,2],[1,0],[0,1],[1,2],[0,2],[2,1],[1,0],[0,-2],[0,1],[-1,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-5,0],[-1,-1],[1,-4],[0,-1],[0,-1],[-1,-3],[1,-1],[2,0],[2,-1],[1,0],[1,1],[-1,1],[-1,1],[0,1],[1,0],[1,1],[2,0],[1,0],[1,1],[1,2],[1,1],[2,3],[1,1],[4,5],[3,1],[1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[1,0],[2,1],[1,1],[1,1],[1,0],[1,1],[0,1],[4,-1],[2,2],[2,0],[7,2],[2,-1],[-1,1],[-1,1],[-5,1],[-3,0],[-5,2],[0,1],[0,1],[-1,1],[-1,1],[0,1],[1,0],[2,-1],[1,0],[1,2],[1,1],[-1,0],[-3,-1],[-3,0],[-1,0],[0,1],[0,4],[1,3],[1,3],[1,1],[2,2],[0,1],[1,0],[0,-1],[1,-1],[7,-5],[7,-6],[6,-7],[1,-2],[1,-2],[1,-1],[0,-1],[2,-3],[1,-5],[2,-3],[1,-2],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-2],[0,-1],[1,0],[-1,-1],[-1,-1],[0,-1],[1,-2],[2,-4],[0,-2],[0,-1],[1,-1],[1,-2],[10,-12],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[6,-5],[3,-2],[1,1],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[4,-2],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[1,1],[1,-1],[7,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-2,0],[0,1],[1,0],[-3,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[-1,1],[-4,-2],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,1],[0,1],[1,1],[-1,1],[2,0],[1,0],[-1,1],[1,0],[0,1],[1,0],[1,0],[3,0],[0,1],[-1,0],[1,0],[1,0],[1,-1],[2,-1],[1,0],[-1,1],[-2,1],[-1,1],[0,1],[-1,0],[1,1],[0,1],[2,0],[-1,1],[-5,1],[-1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[1,3],[0,1],[1,1],[2,-1],[1,0],[3,2],[1,0],[0,1],[0,1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,1],[1,-1],[-2,2],[-1,1],[-5,1],[-1,1],[-1,0],[-2,-1],[-1,2],[1,0],[-1,1],[2,3],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[3,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[2,3],[0,1],[6,3],[0,-1],[1,0],[1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,-2],[0,-1],[-1,-1],[-1,1],[-1,0],[0,1],[1,1],[-3,1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,1],[-1,-1],[0,1],[0,1],[0,1],[0,2],[1,1],[1,1],[2,1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,0],[2,0],[2,0],[1,1],[-3,-1],[0,1],[1,1],[1,0],[1,1],[1,0],[0,-1],[1,1],[3,1],[1,-1],[1,-2],[0,-1],[0,-1],[1,1],[1,1],[-1,0],[1,2],[1,-1],[1,-1],[1,1],[-1,2],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[1,1],[1,0],[0,1],[-2,1],[-1,-1],[-2,-1],[-1,0],[1,1],[0,1],[-1,0],[0,-1],[-1,1],[1,1],[1,1],[1,0],[2,0],[1,1],[0,-1],[1,0],[2,0],[1,0],[1,-1],[-1,-1],[-1,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,1],[-1,-1],[1,0],[1,0],[1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[2,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,0],[1,1],[1,1],[1,1],[3,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-3,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[0,-1],[0,-1],[0,-1],[1,-2],[-2,1],[-1,-1],[0,-1],[2,-2],[1,0],[1,0],[1,-1],[5,0],[2,1],[1,2],[0,-1],[0,-1],[1,-1],[1,0],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,1],[5,2],[-1,1],[-1,0],[0,1],[0,2],[0,1],[1,0],[1,2],[3,0],[2,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,3],[0,1],[0,2],[-1,0],[2,2],[1,0],[1,2],[1,1],[1,0],[3,-2],[1,-1],[1,2],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[3,0],[5,0],[4,1],[11,-2],[2,-2],[4,0],[8,-5],[9,-5],[4,-5],[1,-1],[10,-9],[3,-1],[2,-2],[3,-1],[5,0],[2,-1],[7,-2],[6,-1],[11,-3],[6,-2],[1,-1],[4,-5],[7,-4],[5,-4],[6,-2],[4,0],[9,-3],[1,-2],[4,-2],[1,0],[2,1],[2,0],[1,0],[0,1],[-1,1],[1,1],[0,-1],[3,-3],[1,0],[1,0],[1,0],[8,-2],[1,0],[0,2],[1,-1],[1,0],[3,-2],[1,-1],[6,-2],[1,1],[-4,2],[-1,2],[1,0],[0,1],[-6,4],[0,1],[0,1],[1,0],[2,1],[1,-1],[7,-3],[1,-1],[0,1],[1,0],[2,0],[-1,1],[-2,1],[0,1],[-1,1],[-1,1],[1,0],[3,-1],[2,-1],[1,-1],[3,1],[1,0],[2,-2],[1,-1],[1,0],[1,-1],[5,-2],[2,-3],[2,0],[0,1],[-1,0],[1,1],[2,-1],[4,-3],[1,-2],[1,-1],[1,-2],[6,-2],[2,-2],[0,-1],[-1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[5,-2],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,-1],[-2,0],[0,-1],[1,-1],[1,-1],[1,1],[0,1],[0,1],[1,0],[2,-2],[-1,-1],[-1,-1],[0,-1],[-2,-3],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[-1,0],[-4,2],[0,-1],[-1,-1],[-2,0],[-1,0],[0,1],[-1,1],[-1,0],[-5,-1],[-6,1],[-2,1],[-1,1],[-1,-1],[1,0],[2,-2],[1,-1],[2,-3],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-9,3],[0,-2],[1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,0],[1,-1],[1,-1],[2,0],[0,-1],[-1,0],[-1,-2],[-1,0],[-2,0],[-5,-3],[-1,0],[-1,-1],[0,-1],[1,-1],[1,0],[2,-1],[4,1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[2,0],[0,-1],[3,-1],[6,2],[2,-1],[1,0],[2,-2],[1,0],[1,0],[0,1],[4,-3],[2,-1],[2,0],[2,1],[6,-2],[1,-1],[2,-1],[5,0],[10,1],[4,0],[3,-2],[1,0],[6,1],[2,-1],[9,0],[2,1],[0,1],[0,1],[-1,1],[2,1],[4,-1],[4,1],[1,0],[0,-2],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[9,-3],[0,1],[-1,1],[1,0],[0,1],[1,1],[2,0],[-1,-2],[1,-1],[1,0],[0,1],[1,3],[1,0],[0,1],[1,1],[2,1],[2,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[2,2],[1,-1],[0,-1],[1,0],[3,3],[2,0],[0,1],[1,2],[1,0],[0,1],[1,0],[1,1],[3,1],[1,2],[4,2],[2,0],[0,1],[1,0],[2,-1],[1,-2],[1,0],[1,1],[-2,1],[0,2],[0,2],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-2],[-1,-3],[0,-3],[1,-1],[1,0],[1,2],[-1,0],[0,1],[0,1],[2,-1],[1,0],[1,-3],[1,0],[2,-2],[-1,0],[0,-1],[-1,-1],[3,-2],[1,0],[-1,-1],[-2,1],[-1,0],[0,-1],[1,-1],[5,-2],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[5,-1],[0,-1],[2,-2],[0,-1],[1,-5],[-1,0],[1,-1],[1,-2],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[2,0],[0,-2],[0,-2],[1,0],[1,0],[0,1],[1,3],[0,3],[0,9],[1,2],[2,1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-2],[1,-1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[1,0],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[8,-6],[1,-3],[0,-1],[1,-1],[1,-3],[0,-1],[0,-2],[-1,0],[1,-3],[0,-1],[0,-2],[-1,1],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,-2],[-1,0],[-3,1],[-1,1],[-2,2],[-2,1],[0,1],[-2,2],[-1,1],[0,-1],[0,-1],[1,-1],[1,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[2,-1],[0,-1],[0,-1],[1,0],[3,-1],[1,0],[0,-1],[1,-1],[1,-2],[0,-1],[-1,-1],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[2,0],[3,0],[2,-1],[0,-1],[1,-1],[0,-1],[1,0],[-1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[1,0],[0,-1],[2,-4],[2,-3],[-1,-1],[1,-1],[2,-3],[1,-2],[1,-1],[1,1],[-1,1],[1,0],[1,-2],[1,-5],[1,0],[0,-1],[1,-1],[3,-5],[1,-1],[1,1],[0,1],[-1,1],[0,2],[-2,2],[-3,4],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-2,2],[-1,3],[-3,3],[-1,2],[2,-1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,3],[-1,4],[-1,1],[0,1],[0,1],[0,2],[1,0],[0,1],[1,-2],[2,-2],[1,1],[0,1],[-1,1],[0,1],[-1,3],[0,1],[1,0],[2,-2],[1,-1],[0,-1],[0,-1],[1,-6],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[1,-1],[1,-2],[0,-2],[1,-1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,1],[0,1],[1,-1],[0,-1],[1,-1],[0,1],[-1,2],[-1,1],[0,2],[1,0],[0,-1],[1,0],[1,1],[0,1],[-1,1],[-1,3],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[2,-2],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,1],[-2,3],[1,1],[-4,7],[-1,2],[-2,1],[-1,1],[1,0],[1,1],[3,2],[0,1],[1,1],[-1,1],[-1,0],[0,-1],[-1,1],[-1,1],[-1,0],[-1,1],[-3,4],[-1,1],[0,2],[-1,3],[-2,5],[-1,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[0,3],[1,2],[1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,2],[-1,1],[-2,2],[-1,1],[-2,2],[-1,2],[-1,0],[0,1],[-1,2],[0,2],[1,1],[1,3],[0,1],[0,1],[1,1],[1,0],[4,2],[1,1],[1,2],[0,1],[-2,1],[-1,0],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,1],[0,2],[0,2],[0,1],[1,1],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-2,0],[0,-1],[1,0],[1,0],[-1,-1],[-1,-1],[-1,-1],[2,-1],[1,0],[0,1],[0,1],[1,2],[1,0],[1,0],[1,1],[3,0],[2,-1],[1,0],[3,2],[2,3],[2,1],[1,-1],[-1,-1],[0,-1],[3,1],[1,0],[1,0],[-1,0],[2,1],[1,0],[3,-1],[1,2],[-1,2],[-1,2],[0,1],[0,1],[1,1],[2,0],[0,-2],[0,-1],[1,-1],[1,1],[0,1],[0,2],[0,1],[1,0],[3,-3],[0,-1],[1,-1],[0,-2],[0,1],[1,1],[1,0],[1,1],[-4,3],[0,1],[1,2],[1,2],[-1,1],[-1,1],[1,1],[1,0],[2,0],[0,1],[2,2],[2,0],[1,0],[0,-1],[0,-1],[1,0],[1,2],[1,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,-1],[1,0],[1,-1],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[0,2],[1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,2],[-2,0],[-2,0],[-1,-1],[0,-1],[-1,-1],[-12,-5],[-1,0],[4,0],[-1,-1],[-3,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-2,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[1,0],[-1,-1],[-1,0],[0,1],[-1,2],[0,1],[-1,0],[-2,0],[0,1],[0,1],[-1,3],[-1,-1],[0,-1],[0,-1],[-1,0],[-2,1],[-1,-1],[-2,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,3],[-1,1],[-1,0],[-3,0],[-1,0],[0,1],[-1,1],[-4,0],[-1,-1],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,-2],[0,-2],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[3,-2],[1,0],[0,-1],[-1,0],[-3,1],[-3,0],[-1,-1],[0,-1],[-1,0],[-2,0],[0,2],[-4,0],[-1,-1],[-2,-1],[-4,-3],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[-1,-1],[0,-1],[1,0],[0,1],[1,2],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,1],[0,1],[1,1],[0,2],[1,1],[0,2],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-3,0],[0,-1],[-1,-1],[-1,1],[-1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[4,4],[6,11],[1,3],[2,1],[13,2],[2,0],[3,2],[4,1],[2,1],[3,0],[4,2],[0,1],[2,1],[5,3],[2,0],[1,1],[3,-1],[1,1],[3,2],[3,1],[2,2],[2,0],[1,1],[0,1],[1,1],[0,1],[1,0],[5,-4],[6,0],[0,-1],[1,-1],[1,-2],[1,0],[2,-3],[3,-3],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-2],[0,-1],[2,-4],[0,-1],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[-1,1],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[5,1],[1,0],[0,-1],[0,-1],[-1,-1],[1,-2],[6,-6],[2,0],[1,1],[-2,2],[1,0],[1,1],[1,0],[0,-1],[1,1],[1,1],[0,1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[1,-1],[1,-1],[0,1],[2,1],[0,1],[1,-1],[4,0],[1,-1],[0,-2],[-2,-5],[2,0],[0,-3],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[4,0],[0,1],[1,0],[0,1],[1,-1],[2,-1],[2,-1],[4,2],[3,-2],[1,0],[2,0],[1,1],[0,1],[1,1],[0,1],[1,0],[2,-1],[1,0],[1,1],[0,2],[-1,0],[0,1],[1,0],[0,1],[2,2],[1,0],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[1,-2],[1,0],[1,-1],[1,1],[0,-1],[1,0],[1,-2],[1,-1],[1,0],[2,1],[1,-2],[0,-1],[2,-3],[2,-2],[6,-2],[3,-1],[3,-2],[1,-2],[1,1],[1,-1],[0,-1],[0,-1],[1,1],[-1,1],[0,1],[0,1],[2,1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,2],[1,0],[0,-1],[1,-1],[1,-1],[1,1],[0,-1],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[1,0],[1,-1],[1,1],[1,-1],[1,0],[1,1],[-1,2],[0,1],[1,0],[1,-1],[1,0],[1,1],[1,1],[0,-1],[0,-1],[0,-1],[3,0],[1,1],[1,1],[0,1],[-1,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[2,2],[1,-1],[0,2],[1,0],[1,-1],[1,1],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[1,1],[2,3],[2,0],[6,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[2,-1],[1,0],[1,0],[0,1],[0,1],[3,-1],[0,-1],[1,-1],[1,0],[0,1],[1,0],[2,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-3],[1,0],[1,0],[1,0],[1,1],[1,-1],[1,0],[1,0],[2,-2],[0,1],[0,2],[0,1],[1,0],[0,1],[3,-1],[1,0],[1,3],[0,1],[1,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[5,1],[1,0],[1,1],[-1,2],[-1,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,2],[-1,1],[0,5],[0,1],[0,1],[0,1],[1,0],[2,0],[1,1],[1,0],[0,-1],[0,-1],[1,-1],[5,-6],[1,0],[1,-3],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[2,-6],[1,0],[0,1],[1,-1],[1,-1],[1,-3],[1,-1],[2,0],[1,0],[1,-2],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[2,1],[2,0],[1,1],[0,1],[1,1],[1,1],[1,0],[1,-2],[0,-1],[1,1],[0,2],[1,1],[3,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,-1],[-1,1],[0,1],[3,3],[0,1],[0,2],[-1,2],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,2],[-1,1],[-3,3],[-1,2],[-1,1],[-1,0],[0,-1],[0,-2],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,-1],[-2,-2],[-1,0],[0,1],[0,1],[-1,-1],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[-1,2],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-2,2],[-2,2],[-1,0],[0,1],[-1,4],[-1,2],[-1,1],[-1,1],[-1,1],[1,1],[0,-1],[1,-1],[0,2],[0,1],[1,1],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-3],[1,1],[2,3],[0,2],[-1,1],[-1,1],[-3,2],[-1,1],[1,0],[0,1],[-2,1],[-1,2],[-3,4],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[2,-3],[1,0],[0,1],[0,1],[1,-1],[1,1],[-2,3],[0,1],[1,0],[1,-2],[0,-1],[1,0],[3,-1],[2,-3],[1,-1],[1,1],[0,1],[1,-1],[1,0],[1,1],[-2,1],[0,1],[1,0],[5,-1],[0,3],[2,0],[2,-1],[1,-1],[-1,2],[0,1],[-1,0],[-2,1],[-1,0],[0,1],[0,1],[-2,2],[-1,2],[0,1],[0,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,1],[1,-1],[3,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,-1],[1,0],[0,1],[0,1],[-2,0],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[3,0],[5,-3],[0,-1],[4,-4],[-1,0],[0,-1],[4,-2],[1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[3,-1],[1,0],[7,3],[0,-1],[1,-1],[1,-1],[-2,-1],[0,-2],[1,0],[0,-1],[1,0],[-1,2],[1,1],[1,1],[3,4],[1,1],[1,0],[-2,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[-4,-4],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-2],[1,-1],[1,-1],[2,0],[1,1],[0,1],[0,1],[1,0],[1,0],[0,-2],[2,0],[1,1],[1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[1,2],[0,1],[3,3],[1,1],[1,0],[1,1],[2,0],[2,2],[4,1],[0,1],[1,0],[1,2],[1,0],[0,-1],[-1,-2],[-3,-4],[-1,-2],[0,-1],[1,-2],[0,-3],[-1,-3],[0,-2],[0,-1],[-1,-2],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-2],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,2],[0,-4],[0,-1],[-1,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-3],[-1,-1],[-2,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-3],[1,0],[0,1],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[2,1],[1,0],[0,-1],[0,-1],[1,-1],[1,1],[1,0],[1,2],[1,2],[1,0],[1,0],[3,4],[0,1],[1,1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[-7,-8],[0,-2],[0,1],[2,1],[1,0],[1,2],[1,1],[0,-1],[-1,-1],[2,0],[2,1],[1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,1],[0,2],[0,1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[1,-1],[0,-1],[1,0],[1,-2],[0,-1],[-1,-2],[0,-1],[-1,1],[-1,0],[0,-1],[0,-1],[-1,1],[-4,-1],[-1,2],[1,0],[0,1],[-1,0],[-3,-2],[-4,-1],[-1,1],[0,1],[-1,2],[-1,0],[1,2],[0,1],[1,1],[0,1],[-1,0],[0,-1],[-2,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,2],[1,2],[-1,2],[-1,0],[-1,0],[0,1],[-1,0],[-2,-1],[0,-1],[2,-2],[0,-2],[0,-1],[3,-1],[0,-1],[1,-1],[0,-1],[1,-1],[2,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[6,-4],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-2],[1,1],[1,3],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,1],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,0],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[2,1],[1,-1],[1,-1],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[2,1],[3,0],[2,-1],[1,1],[0,1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[-1,1],[-1,1],[0,2],[-1,1],[-1,2],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[2,3],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-4,3],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[1,1],[0,1],[1,1],[1,0],[0,2],[-1,1],[0,1],[-2,3],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-2,0],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,0],[1,1],[0,3],[0,3],[-1,1],[1,2],[0,1],[2,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[5,0],[1,1],[1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[2,1],[2,3],[1,0],[1,-1],[1,-2],[1,0],[1,1],[1,0],[0,-1],[2,-1],[1,0],[2,2],[1,1],[0,1],[0,1],[1,0],[1,1],[2,3],[2,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[3,1],[1,0],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[5,4],[5,2],[1,1],[2,0],[0,1],[1,1],[1,0],[1,1],[0,1],[0,1],[1,1],[2,1],[2,1],[-1,0],[-5,-2],[-1,1],[-1,0],[-2,-1],[0,1],[0,1],[0,1],[0,-1],[1,1],[0,1],[0,2],[0,1],[1,2],[-1,0],[0,1],[0,1],[1,0],[1,1],[-1,0],[1,1],[0,1],[0,1],[1,1],[1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,2],[1,0],[0,1],[-1,0],[0,1],[1,1],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[-1,0],[-1,-1],[1,2],[0,1],[2,2],[-1,0],[-1,0],[-1,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,-1],[0,-1],[-1,0],[4,2],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,-2],[-5,0],[-4,-3],[-1,1],[0,1],[-1,-1],[0,-1],[-1,1],[0,1],[-1,1],[-2,-1],[0,2],[1,3],[0,1],[1,2],[0,1],[0,1],[-1,1],[1,2],[-1,1],[0,1],[1,1],[1,0],[2,-2],[0,-1],[0,1],[1,0],[0,1],[1,1],[0,2],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[-1,1],[-1,1],[1,0],[0,1],[2,1],[1,1],[0,1],[2,1],[-1,0],[-3,-2],[-3,-1],[-2,2],[0,1],[0,1],[0,2],[1,2],[-1,1],[1,1],[0,1],[-1,1],[1,2],[1,1],[3,1],[3,1],[3,0],[1,-1],[1,0],[1,1],[1,2],[1,1],[3,2],[3,0],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,-2],[-1,-1],[-2,-4],[1,0],[0,1],[1,0],[-1,-2],[-1,0],[0,-1],[1,0],[1,0],[-1,-2],[0,-1],[0,-1],[1,1],[0,1],[1,0],[0,1],[2,1],[1,2],[2,1],[-1,1],[0,-1],[0,1],[1,1],[3,2],[1,1],[0,1],[2,2],[-3,-1],[-1,0],[-1,0],[-1,0],[0,1],[2,3],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-4,-1],[-2,-2],[0,-1],[-1,0],[0,1],[-2,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-4,0],[-5,1],[-1,1],[-1,2],[0,1],[-1,0],[-1,1],[-2,4],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,2],[-3,-2],[-1,0],[1,-1],[0,-1],[1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,0],[-2,2],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,1],[0,1],[-1,0],[-6,2],[0,1],[-1,1],[-2,2],[-1,0],[-2,3],[-1,1],[-2,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[0,1],[0,2],[1,0],[-1,1],[-1,-1],[0,-1],[-2,1],[-1,0],[1,-1],[-1,0],[-1,1],[-1,3],[-1,1],[-4,1],[1,0],[1,1],[1,-1],[1,1],[-1,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-6,9],[-1,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[1,5],[0,2],[1,2],[2,3],[1,0],[1,0],[1,1],[0,2],[0,2],[1,3],[1,2],[1,1],[0,-1],[0,-1],[1,0],[1,0],[0,2],[1,1],[0,1],[1,0],[1,-1],[1,-1],[4,-2],[1,0],[1,0],[0,-1],[0,1],[0,1],[-4,1],[-1,0],[-1,2],[-1,0],[0,1],[0,1],[0,1],[2,3],[1,0],[1,1],[1,1],[1,0],[-2,0],[-6,-4],[-1,0],[0,-1],[-1,-1],[-2,1],[-3,2],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[-3,1],[-1,2],[0,2],[0,2],[2,5],[1,4],[0,1],[0,1],[1,1],[0,1],[-1,0],[1,0],[1,1],[1,1],[0,2],[1,0],[-1,1],[0,1],[-1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-2,1],[0,1],[0,1],[0,1],[2,1],[1,0],[1,-1],[1,0],[-2,2],[-1,1],[0,1],[1,1],[0,3],[-1,-1],[0,1],[-1,1],[1,1],[1,0],[3,0],[1,0],[0,1],[0,1],[1,1],[0,2],[1,1],[1,1],[1,1],[4,0],[2,-1],[1,0],[1,-2],[-1,0],[2,-1],[5,-4],[0,-1],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[3,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,2],[1,0],[1,1],[0,1],[1,1],[1,1],[-1,0],[-1,-1],[-1,-1],[-4,1],[-1,1],[-4,0],[-1,2],[-1,0],[-1,1],[0,1],[1,1],[1,1],[-1,0],[0,1],[1,1],[2,1],[1,-1],[1,1],[1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[2,1],[0,1],[5,0],[1,0],[1,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,2],[1,0],[2,0],[2,1],[1,0],[1,0],[4,0],[2,-1],[1,0],[1,1],[2,1],[1,1],[-1,0],[-3,-2],[-1,0],[-1,1],[-8,0],[-1,0],[-1,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[9,1],[9,2],[2,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,-1],[1,-2],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,1],[1,1],[1,3],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[1,0],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[4,5],[0,1],[1,2],[1,1],[1,0],[0,-1],[0,-1],[1,-1],[2,2],[1,0],[1,-2],[1,0],[2,0],[1,1],[1,1],[1,0],[1,-1],[1,-3],[0,-1],[-3,-4],[0,-1],[2,-1],[3,-3],[2,-2],[4,-1],[0,-1],[1,-1],[0,-1],[3,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[2,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-4],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[0,1],[-2,1],[0,1],[-1,0],[0,-1],[1,-1],[2,-3],[3,0],[2,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-2,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,-1],[1,0],[1,1],[6,-2],[-1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1],[0,2],[0,1],[1,-1],[1,-1],[1,-1],[-1,-1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[1,-1],[2,-1],[1,0],[1,1],[0,-1],[0,-1],[0,-1],[-1,0],[3,-1],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[1,0],[1,0],[1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,1],[0,1],[0,1],[1,1],[1,0],[-1,1],[0,1],[0,1],[1,1],[1,0],[1,-1],[0,-1],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[1,-4],[0,-2],[0,-1],[1,1],[0,1],[1,-1],[1,-2],[1,-1],[1,-1],[0,-1],[-1,0],[-4,-1],[-4,0],[-2,-1],[-3,0],[-1,1],[-1,1],[-1,1],[0,1],[-3,0],[0,1],[0,1],[-1,2],[-1,1],[0,-1],[-1,0],[-1,0],[2,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,-1],[-1,0],[-2,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-2,0],[-1,-1],[1,0],[1,-1],[1,-1],[1,1],[4,2],[5,0],[2,-1],[1,-2],[2,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-4,-5],[-1,0],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,2],[-1,-1],[1,-1],[-1,-1],[-4,-3],[-1,0],[9,0],[-2,0],[-1,-1],[-2,-1],[-2,0],[-2,1],[-1,-1],[1,-1],[1,0],[2,0],[2,-1],[1,0],[0,1],[1,1],[4,1],[1,0],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[2,0],[1,0],[1,-2],[2,0],[1,-1],[-5,1],[-1,1],[0,-1],[2,-2],[1,-1],[1,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[4,-1],[1,-1],[2,-1],[1,-1],[1,0],[0,1],[0,1],[2,1],[0,1],[-1,0],[1,0],[2,0],[0,1],[1,1],[1,0],[0,1],[0,1],[-1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[2,0],[1,-1],[1,1],[0,-1],[1,0],[0,-1],[2,1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-3,-3],[-1,-1],[-5,-1],[-1,-1],[1,-1],[0,1],[1,0],[4,0],[1,0],[0,1],[1,1],[3,1],[0,-1],[1,-1],[1,-2],[1,0],[2,1],[1,0],[2,1],[0,-1],[0,-1],[0,-1],[4,0],[0,2],[1,1],[1,0],[1,0],[4,-2],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[-1,0],[1,0],[1,0],[-1,-1],[-3,1],[-1,0],[-1,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[-2,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-3,0],[1,1],[-2,0],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[-4,-3],[-1,1],[1,1],[2,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,-1],[-3,-3],[-1,-1],[-1,0],[-2,0],[-6,5],[0,-1],[2,-2],[4,-3],[2,0],[0,-1],[1,-1],[0,-1],[3,-1],[5,-5],[1,-1],[1,-2],[1,0],[2,-1],[1,-1],[-1,-1],[-1,-2],[0,-2],[1,-1],[2,0],[-1,0],[1,0],[1,-3],[-1,0],[0,-1],[0,-1],[2,-1],[2,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[2,0],[-1,-1],[-1,1],[-1,-1],[-1,-1],[-1,-1],[1,-1],[2,2],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,-1],[-1,0],[0,-1],[-1,-2],[-2,-2],[0,-1],[0,-1],[1,0],[2,-1],[5,-3],[-1,0],[-3,-3],[2,1],[1,0],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[1,0],[2,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[2,1],[1,1],[1,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[2,0],[1,1],[-1,0],[0,1],[1,1],[0,-1],[1,1],[0,1],[0,1],[0,1],[1,1],[-2,0],[-1,1],[-1,2],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,-1],[1,-2],[0,-2],[-1,-2],[1,0],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,2],[1,2],[1,2],[3,3],[3,4],[0,1],[1,1],[1,2],[-1,1],[1,0],[1,2],[1,0],[1,1],[2,1],[5,-1],[2,-2],[0,-1],[0,-1],[1,-1],[1,-1],[0,-2],[1,-1],[3,-4],[5,-3],[1,-2],[2,-1],[5,-4],[7,-9],[1,-2],[1,-3],[0,-3],[1,-2],[0,-1],[-1,0],[0,-3],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,2],[-2,1],[-1,0],[-1,-1],[-1,1],[0,1],[0,1],[0,6],[0,1],[-1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[1,-1],[1,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-3],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-2],[1,-3],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[2,-2],[1,-1],[-1,-2],[1,-2],[1,-1],[0,-1],[1,-1],[3,-1],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[3,-3],[2,-3],[1,-1],[1,-2],[3,-2],[0,-1],[0,-1],[0,-4],[1,-1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[1,2],[1,1],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[1,-1],[1,5],[0,1],[1,0],[0,1],[-1,1],[1,1],[1,-1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,2],[2,1],[1,0],[1,-1],[2,-2],[1,-1],[0,1],[1,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,1],[1,1],[0,1],[-1,2],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[2,2],[2,6],[1,3],[2,1],[0,1],[1,1],[2,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[1,0],[1,0],[3,3],[0,1],[-1,2],[0,1],[0,1],[1,0],[1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[1,1],[3,4],[0,2],[-1,1],[1,1],[1,0],[-1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,2],[1,0],[1,-1],[1,0],[1,1],[1,0],[-1,1],[-2,1],[4,0],[2,-1],[-1,-1],[1,-1],[3,-1],[1,1],[-1,1],[-1,0],[1,1],[1,0],[2,-1],[5,1],[1,-1],[3,-1],[1,0],[0,2],[0,1],[-1,1],[0,2],[-1,0],[-2,0],[-1,-1],[-1,0],[-4,2],[-1,1],[-1,1],[1,1],[3,-1],[0,1],[1,0],[1,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[-4,2],[0,1],[1,0],[4,-1],[1,-1],[1,0],[2,0],[0,1],[0,1],[-3,1],[-1,0],[0,2],[-1,0],[1,1],[3,-1],[0,1],[1,1],[2,-2],[2,0],[1,0],[1,-1],[1,1],[1,1],[-1,1],[-3,0],[-1,1],[0,-1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-3,-1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[1,1],[1,0],[-2,1],[-2,-2],[-1,0],[0,2],[2,1],[1,0],[1,1],[-1,0],[-4,0],[-1,-1],[1,-1],[-1,-1],[-2,0],[-1,1],[1,1],[1,1],[1,1],[-1,0],[-3,1],[-1,1],[-1,3],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[0,1],[-2,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[2,0],[1,1],[0,1],[-1,1],[2,-1],[0,1],[-1,1],[-1,0],[-1,-1],[-1,-1],[-1,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[1,0],[2,0],[-3,4],[-1,2],[0,2],[2,0],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,1],[3,2],[1,-1],[-1,-2],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-6,1],[1,1],[6,0],[1,0],[4,-4],[2,-1],[1,0],[0,1],[1,1],[3,0],[1,1],[1,1],[-1,0],[-1,1],[1,1],[3,-2],[1,0],[1,1],[10,1],[0,-1],[1,0],[0,-1],[2,0],[2,-1],[4,-4],[6,-2],[1,-2],[1,0],[1,0],[5,-1],[2,0],[2,-1],[1,0],[1,2],[1,0],[7,-2],[3,1],[6,-1],[1,1],[-1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[4,-2],[5,-1],[-4,-1],[-1,0],[-1,1],[-4,1],[0,-1],[1,0],[-1,-1],[-1,0],[3,-2],[-1,0],[-5,-1],[4,-1],[1,-1],[3,-3],[-1,-1],[-11,2],[-10,2],[-1,0],[0,-1],[1,0],[2,0],[12,-4],[13,-4],[1,-1],[1,-1],[-1,-1],[-4,2],[0,-1],[1,0],[1,-2],[2,-1],[1,-1],[1,-1],[1,-2],[-1,0],[-1,0],[-1,0],[1,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[6,1],[0,1],[1,1],[7,-1],[3,-1],[4,-3],[1,0],[1,0],[1,0],[1,-1],[1,-4],[0,-1],[1,-1],[0,-1],[-2,1],[-1,-1],[-1,-1],[-2,-1],[-2,-4],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-4,-1],[-3,-2],[-2,-2],[5,2],[2,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[-1,0],[1,-1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[2,-3],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[-1,-2],[-2,-1],[0,-1],[-1,-1],[-2,-1],[-1,0],[-4,-5],[-1,0],[-3,1],[-1,1],[1,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[-2,0],[0,1],[-1,3],[-1,1],[-1,1],[-2,1],[-2,0],[1,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[-5,1],[-1,1],[-3,2],[-1,1],[-1,-2],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[-2,0],[-1,-1],[-1,1],[0,-1],[0,-1],[0,-1],[1,0],[3,1],[0,-1],[1,-1],[3,-2],[0,-2],[-1,-1],[-2,0],[-1,0],[1,-1],[1,-2],[1,0],[1,-1],[2,2],[1,-2],[0,-1],[-1,-2],[-2,-3],[0,-1],[1,0],[0,-1],[3,-2],[1,0],[1,1],[1,1],[0,1],[0,1],[1,0],[0,2],[1,1],[1,0],[0,-2],[-1,-4],[0,-1],[-2,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[-1,0],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[2,-1],[1,-1],[0,-1],[0,-1],[2,-1],[2,-1],[0,-1],[-1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[2,-3],[1,-2],[4,-2],[2,-2],[0,-2],[1,-2],[1,-1],[0,-1],[1,-2],[1,-2],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-4],[0,-2],[-1,-4],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[-3,1],[-1,-1],[0,-1],[-1,0],[-3,2],[-2,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-3,-3],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[-6,1],[-1,0],[0,-1],[1,-1],[-1,0],[-2,-2],[0,-2],[-2,-1],[-1,-1],[0,-2],[0,-1],[-2,-1],[-6,1],[-1,-1],[-3,0],[0,-1],[0,-1],[-1,-3],[0,-1],[-2,-1],[-1,-1],[-3,-3],[-1,-1],[-1,0],[0,-1],[-1,-2],[-1,1],[-1,0],[-2,0],[-1,-1],[-1,1],[0,1],[-2,2],[0,1],[1,0],[-1,1],[1,1],[1,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[-1,1],[-2,2],[0,1],[0,2],[-1,1],[-1,0],[-3,1],[-2,2],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[1,0],[1,1],[0,-1],[1,-1],[0,-1],[0,-2],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,2],[1,1],[1,2],[0,1],[-1,2],[0,1],[0,1],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[1,0],[-1,-1],[-1,-2],[0,-2],[-1,0],[-4,1],[-1,1],[0,1],[1,2],[-1,1],[-3,0],[-1,2],[2,0],[4,0],[-4,2],[-1,2],[0,1],[0,1],[1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,2],[-1,0],[2,0],[3,-1],[1,1],[-12,4],[-1,0],[-2,2],[-1,0],[1,-1],[0,-1],[-1,0],[1,0],[2,-1],[0,-1],[-1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[-10,0],[-6,-4],[1,0],[1,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[1,-1],[0,-2],[1,0],[1,-1],[1,1],[1,1],[2,0],[1,0],[0,1],[1,1],[0,1],[0,1],[-2,0],[0,1],[2,-1],[1,0],[0,1],[0,1],[3,1],[1,-1],[0,-1],[4,1],[-1,-2],[1,-1],[-4,0],[1,-1],[2,-1],[2,-2],[1,-2],[-1,1],[-3,2],[-1,-1],[1,-2],[3,0],[1,-1],[2,-1],[1,0],[2,0],[0,-1],[0,-1],[-2,-2],[-1,-1],[2,-1],[1,0],[0,-1],[1,-1],[0,1],[1,1],[1,-1],[2,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[1,-1],[3,-5],[1,0],[1,-2],[1,0],[0,-1],[1,-1],[1,-2],[1,-1],[0,-1],[0,-4],[0,-1],[0,-1],[1,-1],[1,0],[1,-2],[0,-1],[2,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[1,1],[0,1],[1,1],[0,1],[-1,0],[-2,-1],[-2,0],[0,1],[-1,1],[-2,1],[-1,1],[-1,1],[0,2],[-1,1],[0,1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[1,0],[-1,-1],[-1,1],[-1,1],[0,1],[0,1],[0,2],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[3,-3],[0,-1],[1,-2],[0,-1],[-1,-1],[-2,0],[0,1],[-1,1],[-2,2],[-4,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,1],[-1,0],[0,1],[0,3],[0,2],[-1,1],[0,1],[0,1],[0,3],[0,2],[-1,2],[-1,1],[0,1],[-1,3],[-1,0],[-2,-1],[-4,-2],[-2,-1],[-1,-1],[-2,0],[-2,1],[-6,-1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,2],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-3,2],[-1,1],[-1,0],[1,-1],[0,-1],[-1,-2],[-2,1],[-2,1],[-1,-1],[1,-1],[3,-4],[-1,-1],[-3,2],[-1,-1],[1,-1],[3,-5],[1,-2],[1,-1],[2,0],[2,-1],[3,-1],[1,0],[1,-1],[9,-5],[2,-1],[1,-2],[-1,-1],[-1,-1],[-1,-2],[0,-2],[-1,-1],[0,-1],[1,-1],[-3,-2],[-1,-1],[-2,0],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-8,0],[-8,0],[-3,2],[-3,3],[-1,0],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,2],[-2,2],[-2,2],[-1,0],[-2,1],[-1,0],[-1,2],[-1,0],[-2,1],[7,0],[3,-1],[2,0],[-1,1],[-8,2],[-1,1],[-1,0],[-1,1],[-1,0],[-3,0],[-2,1],[-2,1],[0,1],[0,1],[-1,1],[-2,2],[-1,1],[-1,0],[-1,1],[0,1],[-2,2],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-2,2],[-1,1],[-1,0],[-2,-1],[0,1],[-5,1],[-1,-1],[6,-4],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-2,1],[-2,0],[-1,0],[-1,-1],[-2,-1],[-2,0],[-3,2],[1,1],[1,0],[2,0],[2,0],[0,1],[-1,1],[-4,-2],[-9,2],[-9,1],[-1,0],[-1,1],[-2,-1],[-4,2],[-1,0],[-1,-1],[-2,0],[-1,-1],[11,-7],[1,-2],[1,0],[1,0],[-2,3],[-1,2],[0,1],[-1,0],[1,2],[1,0],[3,-1],[2,-1],[5,-1],[5,0],[6,-3],[6,-2],[4,-1],[3,-3],[2,-1],[1,-1],[3,-4],[1,-2],[3,-2],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,-1],[3,-3],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[2,1],[1,0],[1,-1],[1,0],[7,-1],[2,-1],[12,-1],[1,-1],[1,0],[2,1],[1,0],[3,0],[1,-1],[1,0],[1,1],[-1,0],[1,1],[2,0],[1,-1],[2,-1],[5,0],[9,-2],[0,-1],[0,-1],[0,-1],[2,-1],[0,-1],[1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-2,-2],[-1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,-2],[0,-3],[-1,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,-3],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-4,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-3],[-1,-2],[-3,-4],[-1,-1],[0,-1],[1,-2],[1,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-3,0],[-1,-2],[-1,0],[-5,-4],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-2,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[-2,1],[0,-1],[-1,0],[0,1],[-1,1],[-2,-2],[-1,1],[1,1],[-1,0],[-1,1],[-1,1],[-2,1],[0,1],[-1,2],[0,2],[-1,1],[0,1],[-1,0],[-1,-1],[1,-1],[1,-1],[0,-1],[2,-4],[0,-1],[2,-3],[0,-1],[0,-1],[1,0],[1,0],[-1,-1],[-3,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[1,0],[-1,-1],[1,-1],[-2,1],[-1,2],[-1,2],[-2,-1],[0,1],[-1,2],[-1,0],[-1,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[2,-3],[-1,0],[0,1],[-2,4],[-2,3],[-1,1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,1],[-2,3],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-2,1],[0,-2],[1,0],[1,0],[0,-2],[-1,-1],[-2,2],[-1,0],[-1,0],[-2,-2],[-2,-1],[2,-1],[1,-1],[0,1],[0,1],[2,0],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,2],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[2,0],[2,-4],[1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[3,-3],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-3,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-3],[0,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[1,0],[1,1],[-1,0],[-1,1],[-1,-1],[-1,-1],[-1,-1],[-2,1],[-1,1],[1,1],[-2,0],[0,1],[1,0],[-1,1],[-2,1],[-1,1],[0,-2],[0,-1],[-1,0],[-1,0],[1,-1],[1,0],[1,1],[0,1],[1,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[-1,1],[-2,-1],[-1,-1],[-1,-1],[-5,0],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,-1],[-2,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,-1],[1,0],[-1,1],[-4,2],[-1,0],[-1,0],[0,-1],[-3,1],[0,1],[1,0],[-1,2],[0,1],[-1,-1],[0,-1],[-1,0],[-4,-1],[-1,1],[-2,2],[1,1],[2,0],[0,1],[-2,1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-3,1],[-2,0],[-1,0],[-2,2],[-1,1],[-7,3],[0,1],[-1,1],[-1,1],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-2,-1],[-1,1],[-1,1],[-1,1],[-4,2],[-2,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-2,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,-1],[-1,1],[0,1],[-1,1],[2,-3],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-2],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[-5,0],[0,-1],[0,-1],[0,-1],[1,1],[1,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[4,-2],[0,-1],[2,1],[0,-1],[2,-2],[1,0],[0,1],[-1,0],[0,1],[2,-1],[1,0],[1,1],[0,1],[-2,0],[-1,1],[-1,0],[-1,2],[-1,2],[0,1],[1,0],[-1,1],[1,2],[2,-2],[3,-3],[2,-1],[1,0],[1,-1],[2,-1],[3,-2],[4,-1],[4,-3],[1,0],[1,2],[0,1],[1,0],[1,-1],[1,-1],[1,-3],[0,-1],[3,0],[1,0],[1,0],[0,-1],[3,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[1,-1],[1,-1],[-1,0],[-2,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-4,-1],[0,-1],[2,-2],[1,0],[0,2],[2,0],[1,0],[0,1],[1,0],[1,-2],[1,0],[0,1],[0,1],[1,2],[-1,1],[1,1],[2,0],[1,1],[0,1],[1,-1],[1,1],[1,1],[0,1],[2,1],[2,1],[1,0],[4,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[3,-3],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[4,0],[1,-1],[1,-2],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,-2],[4,-2],[-1,0],[-4,2],[0,-1],[0,-1],[1,0],[2,-1],[1,-1],[1,0],[2,0],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[-1,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[1,-1],[1,-3],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-6,1],[0,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-3,-3],[-2,0],[-1,0],[1,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-6,2],[-2,1],[-3,0],[-4,2],[-3,1],[-2,1],[0,-1],[1,0],[-1,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[-1,1],[-2,1],[-2,1],[-1,0],[-3,0],[0,-1],[-1,-1],[1,-1],[0,-1],[1,-1],[1,-2],[1,-2],[3,-1],[0,-1],[-1,0],[0,1],[-1,-1],[3,-1],[6,-1],[2,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[1,-1],[-1,0],[-1,0],[-2,1],[-2,-1],[-1,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-2,-1],[-1,0],[-1,1],[0,1],[1,2],[-1,0],[-1,-1],[-1,0],[-1,2],[-1,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[1,0],[2,0],[2,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,2],[0,1],[-2,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[-1,1],[-1,1],[-1,-1],[-1,1],[-5,1],[-4,2],[2,-1],[1,-1],[2,0],[3,-3],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,1],[-1,-1],[1,-1],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[0,-2],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-2],[-1,-1],[-1,1],[-1,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,3],[-1,0],[0,1],[-1,0],[-1,0],[1,-1],[0,-1],[-3,1],[0,-1],[5,-5],[-4,0],[1,-1],[1,-1],[0,-1],[1,-1],[-1,0],[-1,0],[-4,3],[-3,1],[-1,0],[1,-1],[2,-2],[1,-1],[-3,0],[0,-1],[-1,-1],[1,-1],[2,0],[1,0],[0,-1],[4,-1],[-1,-1],[-2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[-2,0],[-1,1],[-1,0],[0,1],[-1,-1],[1,-1],[0,-1],[1,0],[0,-1],[2,1],[1,0],[-4,-3],[-1,-1],[-1,0],[-5,-4],[0,-1],[-2,-3],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[-1,-3],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-2],[0,-1],[1,0],[-1,-1],[1,-1],[0,-1],[-1,0],[2,-1],[1,0],[1,0],[0,-2],[1,-1],[-1,-1],[0,-1],[-2,-1],[-1,0],[-1,0],[-2,1],[-2,0],[1,-1],[1,-1],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[2,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-2],[0,-1],[1,-2],[-1,-1],[-1,-3],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[-3,1],[-2,-1],[1,0],[1,-1],[1,-1],[-1,-1],[-3,1],[-1,-1],[3,0],[1,-1],[1,-4],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-4],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[-1,-1],[1,0],[1,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-2,-1],[-2,1],[-1,0],[-1,-3],[1,1],[4,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,-1],[0,-1],[1,-3],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[2,3],[1,1],[1,0],[2,-2],[0,-1],[1,-2],[1,-1],[0,-4],[1,-1],[1,-1],[1,0],[2,2],[-1,0],[0,1],[1,0],[0,2],[1,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[1,-4],[-1,-2],[1,-3],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-3],[-1,-1],[1,0],[0,3],[1,1],[0,1],[1,3],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,5],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[2,3],[0,2],[0,2],[0,1],[1,0],[-1,1],[0,2],[1,0],[2,0],[5,-1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[4,-2],[1,1],[1,0],[0,-1],[0,-2],[1,-1],[1,-1],[1,1],[1,2],[0,1],[3,1],[1,-1],[1,-1],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[1,-4],[0,-2],[1,-1],[0,-2],[1,-2],[0,-1],[0,-2],[0,-1],[1,-2],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-2],[0,-3],[1,-6],[0,-3],[-1,-2],[1,-1],[1,0],[0,-1],[0,-2],[1,-1],[1,-4],[0,-1],[1,-2],[0,-1],[1,-1],[1,-4],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,-1],[0,-1],[0,-3],[0,-2],[0,-2],[0,-3],[0,-2],[0,-2],[-3,-9],[-1,-4],[-2,-3],[-1,-2],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[4,1],[1,1],[4,5],[2,2],[5,2],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-2,-4],[-1,-1],[-1,0],[-1,0],[0,-2],[-1,0],[2,1],[2,0],[0,1],[3,4],[3,1],[4,1],[6,4],[8,4],[7,4],[5,3],[5,-1],[5,-2],[2,0],[2,-2],[1,0],[2,0],[0,-1],[1,-1],[0,-1],[2,-1],[1,-2],[3,-1],[0,-1],[3,-2],[2,-3],[1,-1],[2,0],[2,-2],[7,-2],[1,-1],[1,0],[3,0],[2,-2],[1,0],[2,-2],[3,0],[0,-1],[1,-1],[1,0],[0,1],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[-1,-1],[1,-2],[2,-2],[1,-2],[1,-2],[1,-1],[2,-2],[1,0],[1,-1],[0,-1],[1,-2],[1,-1],[1,0],[0,-1],[2,-2],[5,-4],[2,-1],[2,-1],[0,-1],[0,-1],[1,-2],[0,-1],[2,-4],[4,-9],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,1],[1,2],[1,1],[1,-1],[1,0],[0,-2],[2,0],[1,-1],[0,-1],[0,-2],[1,1],[8,-3],[2,1],[0,-1],[0,-1],[2,0],[1,0],[1,-2],[1,0],[1,-1],[1,0],[1,-1],[3,-3],[5,-3],[3,-3],[7,-3],[2,-1],[2,0],[0,-2],[2,0],[0,-1],[1,-1],[1,0],[1,0],[1,-2],[1,-1],[1,-1],[1,-1],[0,-2],[1,-2],[1,-1],[1,-3],[4,-2],[1,-2],[3,-1],[1,0],[0,-2],[0,-2],[-1,0],[-1,-1],[0,-2],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-3],[0,-1],[-2,-3],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,1],[1,1],[0,1],[1,5],[1,1],[3,8],[1,2],[2,1],[1,1],[3,0],[9,-4],[2,1],[2,1],[1,0],[1,1],[5,1],[1,0],[2,-1],[1,0],[4,3],[1,0],[1,-1],[3,-2],[1,-2],[0,-1],[0,-1],[1,1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,1],[0,1],[1,1],[-1,2],[0,2],[-1,0],[-1,1],[-1,0],[-1,2],[1,0],[3,-1],[2,-2],[1,0],[1,0],[1,-1],[3,0],[2,0],[1,-1],[0,-1],[1,1],[2,1],[1,1],[2,0],[1,-1],[1,-4],[-1,-1],[0,-1],[0,-2],[1,3],[1,1],[0,-1],[1,0],[2,-1],[0,1],[2,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[-1,2],[1,1],[0,1],[0,1],[-1,1],[1,0],[1,-2],[1,-1],[0,-2],[0,-1],[-1,-3],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[0,-2],[0,-1],[-1,-9],[-2,-9],[-2,-7],[0,-4],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-5],[0,-1],[0,-1],[1,-1],[1,-2],[0,-1],[-1,-1],[1,0],[1,0],[2,-3],[0,-1],[2,-10],[1,-2],[0,-4],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-4],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-3],[1,-2],[1,-8],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-5],[0,-2],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[2,0],[0,-1],[1,-1],[1,0],[2,-3],[1,-4],[1,-1],[-1,-1],[1,-1],[1,-5],[1,-1],[1,0],[1,-2],[3,-7],[1,-2],[1,0],[2,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[1,0],[0,-1],[1,-1],[0,-1],[-2,1],[-1,0],[-3,-3],[-1,0],[0,-1],[0,-1],[-1,1],[-1,0],[-1,-1],[0,-1],[0,1],[1,0],[-1,-2],[-1,-2],[1,0],[1,1],[1,2],[1,1],[7,-1],[1,-1],[1,-2],[1,-4],[1,-2],[2,-1],[1,-1],[2,-2],[1,0],[1,0],[0,1],[1,-2],[2,-1],[0,-1],[0,-1],[1,-2],[1,-2],[0,-2],[1,-1],[1,0],[1,0],[0,-1],[1,-2],[1,-2],[1,-1],[0,-1],[1,-2],[1,-1],[1,-2],[0,-1],[0,-1],[0,-2],[1,-3],[0,-2],[1,-4],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-3],[1,-3],[0,-1],[-1,-1],[-1,0],[-3,-2],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[1,1],[1,0],[0,1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,2],[1,5],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[0,1],[2,2],[0,1],[0,1],[1,1],[1,2],[2,2],[1,2],[1,0],[4,-2],[0,-1],[1,0],[2,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[2,-4],[1,-1],[3,-3],[1,-2],[1,-4],[1,-1],[2,-4],[2,-3],[3,-6],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,3],[0,1],[-1,1],[0,1],[-1,4],[-1,2],[-1,1],[0,1],[-1,0],[0,2],[0,1],[-1,1],[-3,5],[-1,2],[-1,2],[0,3],[0,2],[0,3],[1,3],[0,3],[0,2],[0,2],[0,1],[0,1],[1,1],[1,0],[0,2],[1,0],[2,1],[0,2],[0,1],[-1,2],[0,2],[1,0],[1,1],[4,6],[2,-1],[0,-1],[0,-2],[-1,-2],[0,-2],[1,-1],[2,0],[1,0],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[1,-2],[1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-4],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-2],[0,-1],[2,-1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,3],[0,1],[0,1],[1,2],[1,0],[0,1],[-1,1],[-1,1],[1,1],[0,1],[1,1],[1,2],[0,1],[1,1],[2,0],[-1,1],[-2,0],[-1,1],[0,1],[0,3],[1,1],[0,2],[-1,0],[-1,0],[0,2],[-1,0],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[-1,2],[0,1],[-1,2],[0,1],[1,0],[1,1],[2,1],[1,1],[0,2],[1,0],[0,1],[0,1],[-1,1],[1,0],[1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[3,-1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,2],[0,1],[1,2],[0,2],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[-2,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-2,-1],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[1,1],[0,1],[-1,1],[-1,0],[1,0],[0,1],[1,0],[-1,1],[0,1],[-1,0],[-1,1],[1,1],[2,0],[1,1],[0,1],[0,2],[-1,-1],[-1,0],[1,0],[2,5],[-1,0],[-2,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[0,1],[1,1],[-1,1],[-1,-1],[2,7],[-1,1],[0,1],[1,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[1,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,0],[-1,0],[0,-1],[-1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[1,1],[0,1],[1,0],[0,-1],[0,-2],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[1,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[2,0],[0,1],[0,1],[0,3],[-1,1],[2,1],[-1,1],[1,1],[1,-1],[1,-1],[1,0],[-1,2],[-1,0],[-3,0],[1,2],[-1,1],[0,1],[-1,0],[1,1],[1,0],[1,-1],[1,0],[-1,2],[-2,1],[-1,1],[1,-1],[1,0],[1,1],[-1,0],[-1,0],[1,0],[0,1],[-2,0],[1,1],[1,0],[-1,0],[0,1],[1,0],[2,0],[0,1],[-1,1],[-1,1],[0,-1],[-2,2],[1,0],[-2,1],[-3,0],[-1,1],[1,0],[3,0],[-1,1],[1,0],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,1],[-1,1],[-1,0],[-1,-1],[-2,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[-3,0],[-1,1],[0,1],[1,0],[-1,1],[-1,0],[1,2],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[1,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,1],[1,1],[-1,1],[-1,1],[0,1],[1,0],[1,1],[0,1],[-1,1],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[1,1],[0,1],[-3,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,-2],[-1,0],[-2,0],[0,1],[1,0],[1,2],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,-1],[1,0],[0,-1],[1,1],[1,1],[1,0],[0,1],[1,0],[2,1],[1,1],[1,0],[1,1],[9,4],[1,0],[1,3],[1,1],[3,1],[1,1],[1,1],[2,1],[1,1],[1,2],[1,0],[2,1],[1,0],[1,1],[1,1],[2,2],[0,1],[3,3],[3,3],[1,0],[4,5],[2,1],[3,7],[1,0],[0,1],[11,15],[2,3],[1,1],[1,2],[0,1],[0,1],[-1,-1],[-1,-1],[0,2],[4,5],[4,8],[1,3],[1,1],[0,2],[0,1],[1,0],[1,0],[1,1],[1,2],[0,2],[1,5],[0,2],[1,1],[0,4],[1,1],[0,3],[1,1],[0,2],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,5],[1,8],[-1,1],[1,3],[0,1],[-1,1],[0,1],[0,3],[0,3],[0,3],[-1,3],[0,2],[0,1],[0,2],[1,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,6],[-2,9],[0,1],[0,1],[-1,2],[0,1],[-1,2],[-1,4],[-1,3],[0,1],[0,4],[-1,3],[-1,3],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-2,4],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-2,3],[-2,2],[-1,1],[-1,0],[0,1],[-1,2],[-1,0],[-2,2],[1,0],[0,1],[0,1],[0,1],[-2,1],[-2,3],[-3,1],[-2,2],[-5,3],[-1,2],[-1,0],[1,2],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-2,2],[-1,1],[-1,1],[-1,3],[-1,3],[-1,1],[-1,-1],[0,-1],[1,-2],[2,-2],[-1,0],[-1,1],[-1,1],[-1,2],[0,1],[-2,-1],[-1,1],[0,2],[0,1],[1,0],[-1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,2],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[1,1],[0,1],[1,2],[-1,-1],[-1,0],[1,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,2],[0,1],[1,-2],[1,0],[0,1],[1,1],[-1,2],[0,1],[1,0],[1,0],[-1,1],[0,2],[1,2],[2,1],[1,1],[0,1],[2,0],[2,1],[0,1],[-1,0],[-1,1],[1,0],[1,0],[1,1],[1,1],[-1,0],[-1,2],[1,0],[3,2],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,-2],[-1,0],[-1,1],[1,1],[0,1],[1,0],[0,1],[-1,2],[1,1],[3,2],[1,1],[-1,1],[1,1],[0,3],[0,1],[-1,0],[-1,2],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[2,0],[1,0],[0,-2],[1,0],[1,0],[0,1],[1,0],[0,-1],[2,-2],[1,-2],[0,-2],[1,-1],[1,0],[2,-1],[0,1],[-2,1],[-1,0],[-1,2],[1,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,-1],[1,0],[0,1],[0,1],[1,1],[3,0],[1,1],[-2,4],[0,2],[0,1],[-1,0],[-1,1],[2,0],[0,1],[0,1],[-1,0],[1,1],[1,1],[1,0],[-1,0],[0,1],[2,1],[0,-1],[0,1],[-1,0],[-1,1],[1,1],[1,0],[1,1],[1,1],[-1,0],[-3,-2],[-1,1],[0,1],[-1,0],[-1,-1],[-1,0],[-3,0],[0,1],[-2,0],[1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[1,-1],[0,1],[1,0],[1,0],[-2,1],[0,1],[-1,2],[0,1],[-1,0],[2,0],[1,1],[-2,2],[-1,1],[0,1],[1,1],[-1,0],[-1,-1],[0,-1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[-2,1],[-1,2],[0,1],[1,2],[0,1],[3,3],[1,1],[0,1],[0,1],[1,0],[3,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,-1],[-2,0],[-3,2],[0,1],[-1,3],[2,2],[1,2],[1,2],[1,1],[1,1],[-1,1],[-1,0],[-2,-1],[1,1],[6,4],[-2,0],[-9,-6],[0,1],[0,1],[1,1],[-1,1],[-2,-1],[2,2],[-1,1],[-1,0],[-2,-2],[-1,0],[-3,-1],[0,5],[1,1],[1,1],[0,2],[2,2],[1,1],[0,1],[3,4],[1,1],[1,0],[0,1],[0,1],[0,1],[1,4],[0,1],[1,1],[1,1],[1,1],[-1,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,4],[0,2],[0,1],[-1,4],[0,1],[1,0],[0,-1],[1,-1],[1,0],[0,2],[2,0],[1,0],[1,1],[-3,2],[-1,1],[1,2],[0,1],[1,0],[1,-1],[3,-1],[-1,2],[-1,1],[-3,0],[1,1],[1,0],[0,1],[-1,0],[-2,0],[-1,1],[-1,2],[0,1],[-1,3],[-1,-1],[-3,0],[-1,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,2],[0,5],[0,1],[0,2],[-1,1],[1,2],[0,1],[0,2],[0,3],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[2,3],[1,0],[1,0],[1,1],[0,1],[1,0],[3,3],[1,0],[1,0],[1,1],[0,1],[1,2],[1,1],[2,1],[1,2],[0,1],[1,0],[2,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[2,-1],[1,0],[2,0],[1,-1],[0,-1],[1,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[5,-1],[1,-1],[1,-1],[1,0],[-1,-1],[1,0],[1,-1],[2,0],[2,-1],[1,0],[3,-2],[3,-1],[1,-1],[1,0],[0,-2],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,-1],[2,-1],[0,-1],[5,-1],[2,-2],[-4,-2],[-1,-2],[-1,0],[-1,-1],[0,-1],[-1,-1],[1,0],[1,0],[1,1],[1,1],[2,1],[0,1],[2,2],[3,3],[0,1],[4,1],[5,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,2],[1,0],[1,1],[1,-1],[3,-2],[2,-2],[1,-2],[1,0],[0,-2],[2,-2],[3,-1],[1,0],[0,1],[-1,0],[-2,2],[-1,0],[-1,2],[-1,1],[0,1],[1,2],[0,1],[1,0],[8,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,2],[1,1],[1,0],[1,-1],[1,0],[2,2],[2,1],[1,1],[0,2],[1,1],[1,0],[0,1],[1,1],[0,1],[3,0],[2,1],[1,-1],[1,-4],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[2,0],[1,-1],[0,-1],[0,-1],[0,-1],[4,-4],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-2],[-1,0],[0,-1],[-1,0],[4,0],[1,-1],[0,1],[-1,1],[2,1],[1,0],[1,-2],[1,0],[0,-1],[0,-2],[-1,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[0,-2],[0,-1],[-3,-5],[1,0],[0,1],[1,2],[1,0],[0,-2],[1,-2],[1,-1],[0,2],[-1,2],[0,2],[0,2],[1,1],[1,0],[2,-1],[4,-2],[3,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[-2,0],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[1,0],[1,1],[2,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,-3],[2,2],[1,1],[2,-1],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[2,-1],[2,-1],[1,0],[1,0],[0,-1],[2,-1],[2,-3],[1,0],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-2,-1],[-3,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[1,-1],[1,0],[-1,-1],[-1,-1],[-2,-1],[1,-1],[1,0],[2,-1],[3,1],[1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-3,1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[1,-1],[3,-1],[-1,-2],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[2,-2],[0,-1],[0,-1],[0,2],[3,0],[1,1],[1,0],[-1,-1],[1,-1],[0,-1],[0,1],[1,0],[1,-1],[1,0],[0,1],[1,0],[3,-1],[0,-1],[0,-1],[0,-1],[3,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,-1],[2,-2],[-1,-1],[1,-1],[1,1],[2,-1],[0,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,-2],[1,0],[0,1],[0,1],[0,1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[2,0],[1,0],[-1,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,1],[1,2],[-1,-1],[-1,0],[0,1],[1,1],[1,1],[1,2],[1,1],[1,0],[0,-2],[2,-1],[1,1],[0,2],[-1,2],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,-1],[1,-1],[0,-1],[1,-3],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,0],[1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-2],[0,-1],[-1,0],[-3,-2],[-1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-3],[1,-1],[1,-1],[0,-1],[-1,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,1],[-1,0],[0,-1],[0,-2],[0,-1],[1,0],[1,-1],[-1,-1],[-1,0],[-2,1],[-11,1],[-1,1],[0,-1],[1,-1],[-1,0],[-7,-1],[-1,1],[-1,1],[-9,4],[-1,-1],[3,0],[1,-2],[2,-1],[1,0],[1,-1],[4,-2],[3,0],[2,1],[1,0],[1,-1],[3,1],[2,-2],[1,-1],[2,0],[3,1],[2,0],[3,1],[1,0],[0,-1],[0,-2],[0,-1],[-1,0],[1,-1],[4,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[-1,0],[0,-2],[-1,0],[-1,-2],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-2],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-2,-3],[0,-1],[0,-1],[1,0],[1,0],[-1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-3,-1],[0,-1],[0,-1],[0,-1],[1,0],[3,0],[0,1],[1,1],[1,0],[3,2],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-3,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,1],[1,-1],[0,-1],[1,1],[1,0],[0,-1],[1,-1],[-2,-1],[0,-1],[-1,-2],[-1,1],[0,1],[-1,1],[1,-10],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-2,-1],[-1,1],[-1,5],[1,1],[0,1],[0,2],[0,-1],[-1,0],[0,1],[0,2],[0,2],[-1,0],[0,-1],[-1,0],[-1,5],[-1,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,-2],[-1,-2],[1,-1],[0,-1],[0,-2],[-1,0],[-1,2],[0,1],[-1,0],[0,-2],[0,-1],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,0],[-2,0],[-1,-1],[2,0],[1,-1],[3,0],[0,-1],[0,-1],[1,1],[1,1],[1,1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[1,1],[0,1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,1],[0,1],[1,2],[1,1],[0,1],[1,1],[1,0],[0,1],[0,2],[1,-1],[0,2],[1,1],[3,1],[1,3],[1,1],[0,1],[1,1],[1,0],[1,1],[1,1],[2,-1],[2,1],[4,0],[-1,0],[0,-1],[3,-1],[3,3],[1,0],[0,-1],[1,0],[2,0],[1,-1],[2,-2],[1,-2],[2,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[-1,-3],[0,-1],[1,-1],[1,1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[1,1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[-2,-8],[-1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-5],[-2,-1],[-5,-1],[-4,-3],[-3,-1],[-1,-1],[0,-1],[-1,-1],[-3,-1],[-2,-3],[-4,-6],[6,7],[1,1],[2,2],[2,2],[6,2],[2,1],[2,1],[4,1],[1,2],[1,1],[0,1],[1,1],[1,2],[0,1],[0,3],[0,2],[1,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[1,2],[1,2],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,5],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,2],[1,0],[0,-2],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[2,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[-3,-4],[-2,-3],[-2,-4],[0,-1],[0,-1],[1,1],[1,2],[1,1],[1,1],[1,3],[0,2],[1,1],[1,0],[1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,5],[0,1],[1,2],[0,1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[1,-1],[-1,-1],[1,0],[1,-1],[1,-1],[0,-2],[-1,-1],[-1,-3],[0,-2],[0,-2],[1,-3],[-1,-3],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,1],[0,2],[0,1],[0,1],[1,2],[1,1],[0,1],[0,2],[-1,1],[0,1],[1,2],[1,2],[0,2],[1,2],[1,0],[1,2],[0,1],[1,1],[2,0],[1,3],[1,0],[2,1],[1,0],[1,2],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,1],[-1,1],[1,0],[1,1],[1,3],[1,1],[0,1],[1,0],[1,-1],[-1,-3],[1,0],[1,-1],[0,1],[1,1],[0,1],[0,2],[3,0],[1,-1],[1,0],[0,1],[-1,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[1,0],[1,0],[1,2],[-1,0],[0,1],[0,1],[0,1],[1,1],[-1,1],[1,1],[1,0],[0,1],[1,1],[0,-1],[1,0],[0,-1],[1,-2],[1,-1],[1,0],[1,-2],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[-1,-2],[-2,-2],[0,-1],[0,-2],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[2,2],[0,1],[0,1],[0,1],[1,1],[1,-1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,2],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[1,1],[1,4],[1,1],[1,-2],[1,1],[2,-1],[1,1],[1,0],[0,1],[0,1],[-2,0],[-2,1],[-1,0],[0,1],[0,1],[1,1],[2,1],[0,1],[0,1],[0,1],[0,1],[3,-2],[2,-2],[0,-1],[1,1],[-1,1],[0,1],[-3,2],[0,1],[1,0],[1,0],[-1,0],[-1,1],[1,0],[1,0],[1,1],[1,0],[1,-2],[3,-2],[0,1],[0,1],[-1,0],[-1,2],[1,1],[1,0],[1,-1],[1,0],[2,0],[1,0],[-1,1],[-2,0],[-1,2],[-1,0],[-1,0],[0,1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[0,2],[-2,2],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,1],[1,1],[-1,0],[0,1],[1,1],[1,-1],[1,-1],[2,-4],[0,1],[-1,3],[0,1],[1,-1],[1,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[1,1],[1,-1],[4,-6],[0,1],[-1,4],[-1,0],[0,1],[0,2],[0,1],[2,0],[-1,1],[-3,1],[0,1],[1,0],[-1,1],[-1,1],[0,1],[1,0],[1,-1],[1,0],[2,1],[3,-1],[1,-1],[1,0],[0,-1],[0,-1],[3,-3],[1,-1],[0,1],[1,-1],[1,0],[-2,1],[-1,1],[-1,2],[-2,3],[-2,1],[-2,1],[-2,1],[-1,1],[-1,7],[-1,5],[-1,1],[0,1],[1,1],[1,1],[0,1],[-1,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,-1],[1,0],[0,1],[0,1],[1,1],[3,-2],[1,0],[1,-2],[1,-1],[1,0],[1,-1],[2,0],[0,1],[-2,0],[-1,0],[0,1],[-2,1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[-1,1],[-2,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,2],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,2],[0,1],[1,0],[1,0],[1,1],[-1,1],[-2,3],[2,1],[1,1],[0,2],[1,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,1],[1,0],[1,-1],[2,-2],[2,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,1],[-1,0],[-1,2],[-2,1],[-2,0],[-1,-1],[-2,-3],[1,0],[2,2],[1,1],[1,0],[1,-1],[1,-2],[1,0],[-1,-1],[-1,-2],[-1,-1],[2,0],[0,1],[1,1],[1,1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-2],[-3,-2],[0,-1],[1,0],[0,-1],[-1,-1],[-2,0],[-2,0],[-1,-1],[0,-1],[-4,-3],[0,-1],[1,0],[6,5],[2,0],[1,0],[1,2],[0,1],[1,1],[0,1],[1,-1],[0,-2],[-1,-1],[0,1],[-1,-1],[2,-3],[-1,-1],[-1,-1],[-3,0],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,1],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,1],[2,0],[1,0],[0,1],[-1,0],[-1,0],[-1,2],[0,2],[0,-1],[1,0],[2,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[-3,-1],[0,-1],[2,0],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[1,0],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-3],[0,-1],[-2,1],[0,-2],[0,-1],[1,-2],[1,-2],[1,0],[3,0],[2,0],[0,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,2],[1,1],[0,1],[0,2],[1,1],[1,0],[2,0],[1,0],[-1,-2],[0,-1],[-1,0],[-1,-1],[-1,-2],[0,-2],[1,1],[1,1],[0,1],[1,2],[3,-2],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[-6,0],[-1,-1],[-1,-1],[1,-1],[1,1],[1,0],[4,-1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[1,-1],[1,0],[0,1],[0,-2],[-1,-3],[0,-1],[-1,-2],[-1,-1],[1,0],[1,1],[1,2],[0,3],[1,0],[0,1],[0,1],[1,1],[0,-1],[2,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,-2],[-1,-1],[1,0],[-1,0],[1,0],[1,0],[1,0],[0,1],[1,3],[1,0],[1,1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[1,-1],[-1,-1],[0,-1],[0,-1],[1,1],[0,1],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-3],[-1,-1],[-2,-1],[-1,-1],[0,-1],[-3,0],[-1,-1],[-1,-1],[-1,1],[-1,1],[-4,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[2,1],[0,2],[2,0],[0,-1],[-1,-1],[0,-3],[1,-2],[1,0],[0,1],[0,2],[-1,1],[0,1],[1,0],[1,0],[0,1],[1,-1],[0,-1],[1,0],[1,0],[1,1],[2,1],[2,-1],[0,1],[1,1],[1,1],[1,-1],[0,1],[1,1],[0,1],[1,0],[2,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[-1,-1],[-5,0],[3,-1],[1,-1],[-2,-2],[0,-1],[-1,-1],[1,0],[1,2],[1,1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[1,0],[1,-1],[0,-1],[-2,-2],[0,-1],[-2,-1],[0,-1],[1,1],[1,0],[1,0],[1,0],[0,2],[0,-1],[0,-2],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[4,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-3,-2],[-1,0],[1,-1],[2,0],[1,0],[1,1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-3,-3],[-2,-2],[-1,0],[0,-1],[0,-1],[-3,0],[-1,1],[0,-1],[-2,0],[-1,0],[-1,2],[0,-2],[0,-1],[-1,0],[-1,-1],[4,1],[1,0],[0,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-2,-1],[-1,-1],[-1,-3],[-1,-1],[1,0],[0,1],[2,2],[2,2],[4,7],[0,-1],[1,1],[3,0],[1,0],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,1],[1,0],[1,4],[1,0],[0,1],[1,-1],[0,-1],[1,0],[0,1],[1,1],[0,1],[1,0],[2,0],[1,0],[0,1],[0,1],[1,0],[-1,-2],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,-1],[1,0],[2,1],[1,0],[1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[-3,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[3,0],[1,0],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-3,0],[-1,0],[-8,-1],[1,-1],[1,0],[0,-2],[-5,-3],[0,-1],[2,0],[0,1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[1,0],[5,1],[1,1],[0,2],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,1],[1,1],[1,0],[0,-1],[0,-1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[-2,-3],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[1,-1],[-1,-1],[1,0],[1,1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-2],[-1,0],[-2,1],[-1,0],[0,-1],[-4,-4],[0,-1],[1,1],[1,1],[1,1],[2,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,3],[0,1],[1,2],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[1,3],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,2],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,-4],[1,-1],[-1,-1],[0,-1],[2,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,1],[0,-1],[-2,-1],[-2,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,-4],[0,-1],[-1,0],[-1,2],[-3,2],[-1,0],[1,-1],[0,-1],[1,-2],[2,-1],[1,-1],[2,0],[1,1],[2,0],[0,1],[0,1],[1,0],[1,-1],[3,0],[3,-3],[3,-3],[-1,-1],[-3,1],[0,-1],[2,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[-2,0],[0,-1],[1,0],[1,-1],[-1,0],[1,0],[1,-1],[1,0],[0,-2],[0,-1],[1,0],[1,1],[0,1],[1,-1],[0,-1],[-1,-1],[4,5],[1,0],[-2,-3],[0,-1],[0,-1],[5,0],[1,0],[2,-1],[1,-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,2],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,1],[-1,0],[0,-1],[0,-2],[1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[0,2],[0,1],[1,1],[2,0],[1,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[1,-2],[1,0],[1,-1],[2,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-4,1],[-1,0],[-1,1],[1,1],[0,1],[-1,0],[0,-1],[-1,0],[-2,0],[-2,2],[-3,1],[-1,1],[-2,2],[-4,1],[-1,1],[1,1],[5,1],[1,1],[1,-1],[5,1],[-1,1],[-7,0],[-1,-1],[-1,0],[-2,2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[4,-3],[1,-2],[1,-1],[2,0],[0,-1],[1,0],[2,-1],[2,-2],[2,-2],[2,1],[0,-1],[1,0],[-1,-1],[-8,1],[6,-2],[0,-1],[3,0],[1,1],[1,-1],[2,-1],[1,0],[0,1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-2,0],[-1,-1],[-6,2],[-2,0],[-1,-2],[1,0],[1,0],[1,0],[1,0],[0,-1],[-2,-1],[-2,0],[-2,0],[1,-1],[1,0],[0,-1],[3,0],[1,1],[1,-1],[0,-1],[2,0],[1,-1],[0,-1],[-1,0],[2,-2],[0,-1],[1,0],[0,-1],[2,0],[1,-1],[1,-1],[-1,-1],[-4,2],[-1,0],[0,-1],[4,-1],[0,-1],[-3,-1],[-1,0],[-1,1],[1,0],[1,0],[0,1],[-2,1],[-2,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[2,-2],[1,0],[1,2],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[3,0],[0,-1],[1,-1],[3,1],[1,1],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[-1,0],[1,-1],[0,-1],[-3,-1],[0,-1],[0,-1],[1,0],[2,1],[1,0],[1,-1],[1,-1],[-2,0],[-1,0],[1,-1],[1,0],[-4,0],[-2,0],[-1,-1],[1,0],[1,0],[2,-1],[0,-1],[-1,0],[-1,1],[-1,0],[1,-1],[1,-1],[0,-1],[2,1],[2,0],[1,0],[1,-1],[0,2],[1,-1],[1,-1],[1,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[4,1],[1,0],[0,-1],[3,0],[1,0],[1,-2],[0,-2],[-1,-1],[-2,-2],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[3,0],[1,1],[1,1],[0,2],[1,2],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[1,3],[1,1],[1,2],[0,2],[1,3],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,-1],[1,-1],[1,0],[0,1],[0,-1],[1,-1],[0,1],[1,0],[0,-2],[-2,-2],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[1,1],[1,1],[1,1],[1,-2],[0,-2],[0,-2],[-2,-4],[1,1],[1,1],[1,4],[1,0],[0,-2],[0,-1],[1,-1],[-1,0],[0,-1],[0,1],[-1,-1],[0,-1],[-1,-2],[-2,-1],[0,-1],[1,0],[0,-1],[-1,-1],[1,-1],[-1,-1],[0,-2],[1,1],[1,2],[-1,1],[0,1],[1,2],[1,2],[1,1],[1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,2],[0,1],[1,1],[1,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-3,-2],[0,-1],[-1,-3],[0,-2],[0,-1],[-1,-1],[0,1],[-1,0],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-2,-2],[1,1],[2,3],[1,1],[1,0],[0,-1],[1,2],[0,1],[1,-1],[-1,-3],[-2,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-2,-2],[-1,-2],[-1,0],[0,-1],[1,0],[0,-1],[-1,-2],[0,1],[2,2],[1,2],[1,1],[0,1],[1,0],[1,1],[0,3],[1,1],[1,0],[1,0],[2,5],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[0,-1],[-1,-3],[0,-1],[0,-2],[0,1],[1,2],[2,1],[1,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[-2,-4],[0,-2],[-1,1],[-1,-2],[-1,-2],[0,-2],[2,4],[3,4],[1,1],[0,1],[1,4],[1,0],[-1,1],[1,0],[2,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[0,-2],[1,-1],[0,-1],[0,1],[1,-2],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,1],[0,-1],[0,-1],[2,-1],[0,1],[1,1],[0,1],[2,0],[0,-1],[1,0],[1,0],[1,2],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[-1,-1],[-1,-2],[0,-2],[-1,-1],[-1,0],[-2,-4],[-1,0],[0,1],[0,-1],[-1,-1],[-1,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-3,-3],[1,-1],[1,1],[1,1],[1,1],[1,0],[0,1],[0,1],[-1,0],[1,3],[0,2],[0,1],[1,1],[1,0],[1,1],[1,2],[5,8],[1,0],[0,-1],[0,-2],[1,1],[1,4],[1,4],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[0,1],[0,2],[1,0],[0,-2],[0,-1],[0,-3],[-1,-2],[-2,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-3],[0,-1],[0,-1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,2],[0,1],[1,1],[1,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,2],[1,1],[1,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[-1,-2],[-1,-4],[0,-1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[-1,-1],[-1,0],[0,-1],[-2,-2],[2,0],[1,1],[0,1],[1,-1],[0,-1],[-1,0],[1,-1],[-1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,2],[1,1],[0,-1],[1,-1],[0,-1],[2,0],[2,0],[-1,-1],[0,-1],[0,-1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,1],[0,1],[-1,1],[0,1],[1,0],[5,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[3,0],[0,-1],[1,0],[1,1],[2,0],[1,0],[1,-3],[0,-1],[1,0],[1,1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[2,-1],[1,0],[0,-2],[1,0],[0,-1],[0,-1],[2,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-6,0],[-1,-1],[0,-1],[6,0],[1,0],[1,0],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[-2,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-8,-3],[-1,-2],[-1,-1],[1,0],[3,2],[1,0],[-1,-1],[-1,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,0],[-4,-1],[-3,-2],[-3,-4],[-2,0],[-4,0],[-3,-2],[-4,-1],[-1,0],[0,-1],[-2,-1],[-1,-1],[-3,-1],[-1,0],[-3,1],[-1,-1],[-1,0],[1,-1],[1,-1],[0,-1],[1,0],[2,1],[3,0],[5,2],[5,2],[4,2],[1,1],[1,0],[1,0],[1,0],[0,2],[3,2],[0,1],[1,0],[1,0],[1,0],[0,1],[1,2],[1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-2],[-1,0],[-1,-1],[-1,0],[-4,1],[-5,-1],[0,-1],[3,0],[-1,-3],[-1,-1],[-1,-1],[-2,0],[-1,0],[-2,-1],[-2,-2],[-1,-1],[-1,-1],[-2,-2],[-1,-2],[-2,0],[-3,0],[-4,2],[-2,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-2,0],[-3,-1],[-1,-1],[-1,0],[-2,1],[1,0],[0,-1],[1,-2],[1,-1],[1,-1],[-2,0],[-1,0],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,1],[-1,1],[-1,1],[-2,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[-2,2],[-5,2],[-1,2],[-2,1],[-1,0],[0,3],[-1,1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[1,0],[2,1],[1,0],[2,-1],[2,0],[6,-4],[1,-2],[1,0],[0,-1],[2,-3],[1,-1],[2,-1],[2,-2],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[-1,1],[0,1],[-1,0],[-1,0],[-2,-2],[0,-1],[-2,-2],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[4,1],[1,0],[1,0],[0,-1],[-1,-1],[-2,-2],[-2,-1],[-2,0],[0,-1],[4,1],[1,0],[2,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,2],[1,1],[1,1],[0,1],[1,1],[0,1],[0,-1],[1,1],[-1,0],[0,1],[1,1],[1,-1],[1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,2],[1,0],[3,-1],[4,1],[1,1],[1,0],[1,0],[0,1],[1,2],[2,2],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-2],[1,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,1],[0,-1],[1,1],[0,2],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[-1,0],[-1,0],[1,1],[-1,1],[0,1],[0,1],[2,2],[1,1],[2,3],[0,1],[1,1],[0,1],[0,1],[3,0],[2,2],[4,2],[6,3],[0,1],[1,0],[1,0],[2,2],[1,0],[9,-2],[0,1],[0,1],[-1,1],[-1,0],[-2,0],[-1,0],[-1,1],[-4,1],[-2,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[0,2],[1,1],[0,1],[1,1],[3,0],[0,1],[0,1],[1,0],[3,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[1,0],[3,0],[-1,-1],[0,-1],[1,0],[0,1],[1,1],[1,-1],[1,1],[1,0],[0,-1],[1,-2],[1,0],[-1,-1],[1,0],[0,-2],[1,-3],[1,-4],[1,-2],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-2,-2],[-3,-2],[-2,-2],[-1,-2],[2,1],[1,1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[1,0],[-1,0],[0,-2],[1,-1],[0,-1],[0,-2],[-1,-1],[-1,-2],[0,-1],[1,1],[1,-1],[1,0],[0,1],[-1,1],[1,2],[3,3],[0,1],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[-1,1],[1,1],[1,2],[1,1],[1,1],[2,-1],[1,1],[1,-1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[2,-2],[2,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,-1],[0,1],[1,1],[1,0],[1,1],[1,-2],[0,-1],[0,-1],[1,-1],[-1,0],[-2,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-3,1],[0,-1],[3,-1],[1,-1],[4,-2],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,-1],[-1,-1],[-1,1],[-1,-1],[1,0],[2,-1],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,1],[-1,0],[-1,1],[1,0],[-1,1],[-3,1],[-2,0],[0,-1],[0,-1],[6,-4],[0,-1],[0,-2],[1,0],[1,-2],[-1,-1],[-1,-1],[1,-1],[0,1],[1,1],[1,1],[1,-1],[1,-1],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[-2,-1],[0,-1],[2,0],[0,-2],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[-1,-1],[1,-1],[-2,-3],[0,-1],[-1,0],[-2,2],[0,-1],[1,0],[0,-1],[1,-1],[-1,-2],[0,-1],[-1,-1],[-1,0],[-2,1],[-1,1],[-2,-1],[2,-1],[0,-1],[-1,-1],[-1,0],[1,-1],[1,2],[1,0],[3,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[-1,-1],[1,-2],[1,-1],[0,-2],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,2],[-2,1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,1],[3,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,-1],[0,-1],[-1,2],[-2,-1],[0,1],[-1,1],[-1,0],[-2,2],[-2,0],[0,-1],[2,0],[1,0],[0,-1],[1,-1],[-2,-2],[0,-1],[1,0],[0,-1],[0,-1],[-2,1],[0,1],[-1,0],[-3,-3],[-1,1],[0,1],[-1,1],[-2,1],[-2,-1],[0,1],[-1,0],[-1,0],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[3,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[3,-1],[2,1],[-1,-2],[3,1],[0,-1],[0,-3],[1,0],[1,0],[1,0],[0,-1],[-1,-2],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-2,0],[1,-1],[0,-1],[1,-1],[-1,-1],[-2,1],[-2,2],[-1,0],[-6,5],[0,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[3,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,1],[0,-1],[-1,-1],[-1,0],[0,-1],[2,0],[0,1],[1,-1],[2,-2],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[-1,-2],[0,-1],[0,-1],[1,-1],[-1,-2],[-1,0],[-1,0],[0,-1],[1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[1,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,1],[-1,-2],[0,-1],[-3,-3],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,-1],[-1,0],[-1,2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[-1,-1],[0,1],[-1,0],[0,-1],[-2,1],[0,-1],[-1,0],[-1,2],[-1,2],[1,1],[-1,1],[-3,-1],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[-2,-1],[0,1],[0,1],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,-2],[-1,0],[-1,-2],[-2,-3],[-2,-1],[-2,-1],[-1,0],[0,-1],[-2,-1],[-1,2],[0,1],[0,1],[-1,-3],[1,-1],[-2,0],[-2,2],[-1,1],[-3,-4],[-1,-1],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-2,-1],[0,1],[-1,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[0,1],[1,2],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[-1,2],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-3],[-1,-2],[-1,-3],[0,-1],[-1,-1],[0,1],[-1,1],[-1,0],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,1],[0,-1],[0,-1],[1,0],[-1,-1],[-1,0],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-3],[-1,-1],[1,-1],[0,-1],[0,-1],[1,1],[0,1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[0,2],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,-2],[0,-1],[-1,1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,-1],[0,1],[0,2],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,-1],[0,-1],[-1,1],[0,2],[1,1],[0,1],[-1,-1],[-3,-4],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,1],[-1,-1],[0,-1],[-1,1],[0,-1],[-1,1],[-1,0],[-2,0],[-4,-2],[-2,-1],[-2,-2],[-2,-1],[-1,-1],[-1,0],[-2,0],[0,1],[1,0],[1,1],[1,0],[2,2],[1,0],[0,1],[0,1],[-1,-1],[-2,-1],[-2,-1],[0,-1],[-1,1],[0,2],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-3,1],[-2,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-3,-1],[-4,1],[0,1],[1,1],[-2,-1],[-1,1],[0,-1],[-1,-1],[0,1],[-2,-1],[-1,0],[-1,1],[0,1],[-1,0],[-1,-2],[-1,1],[-2,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-3,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-2,-1],[-1,1],[-1,0],[0,1],[-1,1],[-2,0],[-1,1],[-5,-1],[-1,0],[-2,-1],[-1,-1],[-3,0],[-3,1],[0,1],[-1,1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,-1],[-3,-1],[-6,-1],[-1,0],[0,1],[-1,0],[-3,0],[-2,1],[-1,0],[-1,-1],[-1,1],[-1,1],[-1,0],[-5,-1],[-2,-1],[-2,-1],[-3,-1],[-3,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,-3],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[1,-2],[0,-1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[1,-2],[1,1],[1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-3],[-1,-1],[-1,-1],[-3,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,-1],[0,-1],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-2],[-3,-6],[-1,-1],[-4,0],[-1,0],[-1,-1],[0,1],[0,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,-1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[-2,1],[0,-1],[0,-2],[-1,-2],[-1,0],[-1,0],[-1,0],[-1,0],[2,-2],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-3,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[2,3],[1,1],[-1,2],[0,2],[0,1],[-1,1],[-1,0],[1,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,-2],[0,-2],[0,-1],[-2,-2],[1,-1],[1,0],[0,-1],[-4,0],[0,-1],[-1,-1],[-2,-3],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-9],[-1,-2],[-1,-1],[-1,1],[-1,-4],[-1,-2],[0,-1],[0,-2],[-1,-3],[-2,-4],[-1,-4],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-4],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,3],[0,1],[-1,0],[-1,2],[-1,2],[-2,0],[-1,-1],[-2,0],[0,1],[-2,2],[0,1],[-1,0],[-1,1],[-2,2],[-1,1],[0,-1],[-1,0],[-5,2],[-2,0],[-1,0],[0,2],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[-3,1],[-1,0],[-1,-1],[0,-1],[2,1],[3,-2],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[1,-1],[0,-1],[0,-1],[1,0],[2,2],[1,0],[4,0],[1,1],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-2],[1,0],[0,1],[2,-3],[2,-2],[2,0],[1,1],[1,-1],[2,-1],[1,-1],[1,-4],[1,-1],[2,-1],[1,0],[-1,-1],[0,-3],[-1,-1],[0,-3],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-2,-3],[0,-1],[-1,-3],[0,-2],[-1,-1],[-1,-3],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,1],[-1,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[-1,-3],[0,-3],[-1,-2],[-2,-5],[-1,-2],[-1,-2],[-1,-2],[-3,-2],[-1,-1],[-7,-12],[-1,-3],[0,-1],[-2,-3],[-1,-1],[-3,0],[-2,-1],[-2,-2],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-3,-5],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[0,-1],[0,-4],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-4,-7],[-1,-2],[-1,0],[-2,0],[-1,0],[-2,-1],[-2,-2],[-2,-2],[0,-1],[0,-4],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[0,-1],[-1,-3],[-1,-5],[-1,-2],[-1,-2],[-1,-1],[0,-2],[-2,-3],[-2,-3],[-5,-1],[-2,-2],[-3,-6],[-1,-2],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[0,1],[-1,0],[-1,2],[0,1],[-1,0],[-2,-1],[-1,1],[-1,2],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[5,-3],[1,0],[1,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-2],[-1,-1],[-3,-1],[-1,0],[-1,-1],[0,-2],[-1,-1],[-2,-2],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-3,-2],[-2,-3]],[[1931,9226],[-2,0],[-1,1],[0,1],[1,0],[1,0],[1,-1],[0,-1]],[[1931,9230],[2,-1],[1,1],[0,-1],[1,0],[-4,0],[0,1]],[[1936,9230],[-1,0],[-2,1],[1,1],[2,0],[0,-1],[0,-1]],[[2341,9243],[-1,-1],[-1,0],[0,1],[-2,3],[2,2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1]],[[2314,9239],[-1,-2],[-1,0],[-2,1],[-2,0],[-1,0],[-1,1],[-1,2],[2,0],[0,1],[0,2],[1,1],[1,1],[2,2],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-2],[1,-1],[1,-1],[0,-1],[-1,-2]],[[2312,9264],[1,0],[1,1],[1,1],[0,-1],[2,-3],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,-1],[-2,-1],[-4,0],[-1,0],[-2,2],[-1,2],[-1,2],[0,2],[-1,1],[0,1],[1,2],[0,1],[1,1],[0,1],[1,1],[2,1],[2,1],[1,1],[2,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[1828,9278],[5,-7],[1,-3],[0,-1],[0,-1],[0,-1],[-1,-4],[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],[0,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-7,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[2,1],[0,-1],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-4,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[3,-1],[1,0],[1,1],[0,1],[1,1],[1,0],[4,3],[6,1],[0,-1],[1,0],[2,0],[6,4],[2,0],[-2,-2],[-3,-2],[-1,-2],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[3,2],[1,1],[0,2],[0,1],[0,2],[-4,0],[-1,0],[0,1],[1,2],[2,3],[3,5],[6,6],[5,1],[2,-1],[2,0],[1,-1],[1,0],[7,-2],[4,-3],[3,-1],[6,0],[1,-1],[3,-1],[1,-1],[5,-2],[1,-1],[3,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[2,0],[2,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[-5,-4],[1,-1],[0,-1],[-3,-3],[-8,-4],[-1,-1],[-1,-2],[1,0],[1,-1],[1,0],[2,0],[1,2],[1,0],[1,-1],[-1,-1],[-2,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,1],[0,1],[0,1],[1,1],[0,2],[1,0],[1,0],[1,1],[2,1],[2,1],[-1,1],[-2,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[2,0],[1,0],[0,-1],[-1,0],[0,-1],[-3,-1],[-1,-1],[1,0],[1,0],[1,-1],[-2,-2],[-1,-1],[1,-1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,2],[-1,1],[-1,2],[0,1],[0,3],[1,1],[1,0],[1,2],[-1,1],[1,0],[0,1],[1,0],[4,-1],[0,2],[-1,1],[0,1],[3,3],[1,1],[2,-2],[1,0],[2,0],[1,0],[0,-1],[-3,-2],[-1,-1],[1,0],[0,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[1,1],[-5,3],[-2,1],[1,1],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,-1],[2,-1],[2,-3],[1,-2],[1,0],[1,-1],[1,1],[1,0],[3,-1],[1,0],[1,-1],[0,1],[0,1],[-5,2],[-1,1],[-1,1],[-6,3],[1,1],[1,0],[3,-1],[2,-2],[3,-3],[1,0],[1,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,2],[-1,1],[-1,1],[-1,2],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[3,1],[1,0],[-1,1],[-1,1],[1,1],[2,0],[2,0],[1,-1],[4,-3],[1,0],[0,1],[0,1],[-1,0],[1,1],[2,0],[-1,1],[-3,0],[-1,1],[-2,1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[1,1],[1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[-1,1],[-7,1],[-1,0],[-2,2],[-1,2],[0,1],[-2,1],[-1,1],[0,2],[-1,1],[1,1],[1,1],[8,-1],[9,0],[2,-1],[3,-1],[0,-1],[1,-1],[-1,0],[1,-1],[1,0],[2,1],[2,-1],[2,-1],[-1,-1],[-2,0],[-1,-1],[11,-8],[-1,0],[0,-1],[6,1],[0,-1],[1,-1],[1,0],[-1,0],[0,-1],[-1,0],[3,-3],[4,-1],[-1,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[3,1],[2,-1],[0,1],[-1,1],[1,0],[5,-2],[1,0],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[2,-6],[0,-2],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,1],[0,-1],[1,0],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[2,1],[1,-1],[1,-1],[-1,-2],[-1,0],[1,0],[2,2],[1,0],[1,-1],[-1,-3],[-1,-1],[-1,-1],[0,-2],[1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-2,0],[1,-1],[3,1],[2,-1],[0,-1],[1,-1],[0,-2],[0,-1],[2,-1],[2,-1],[1,0],[1,0],[1,0],[0,2],[-1,2],[-1,0],[-1,1],[0,1],[0,1],[1,2],[2,-1],[1,-1],[1,0],[1,1],[1,2],[1,1],[1,1],[8,2],[-1,0],[-1,1],[-2,0],[-1,1],[-1,1],[-1,1],[1,0],[0,1],[1,0],[2,-1],[1,0],[1,1],[1,1],[-1,1],[-2,0],[-1,1],[-1,0],[0,1],[0,1],[0,2],[-1,0],[-1,0],[-2,2],[-1,0],[-1,0],[0,2],[-1,1],[0,1],[1,1],[1,1],[-1,0],[-1,1],[0,1],[1,0],[-4,1],[0,1],[0,1],[0,1],[0,3],[0,2],[-1,1],[-1,1],[0,1],[0,1],[1,-1],[1,-1],[1,0],[1,1],[-1,2],[-1,1],[-1,1],[-1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,2],[2,0],[1,2],[-2,0],[-1,0],[-2,1],[-1,2],[3,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[-3,0],[1,1],[1,1],[-2,1],[0,2],[1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[1,1],[0,2],[-1,3],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[1,1],[-1,1],[-1,2],[-1,1],[1,0],[1,0],[0,1],[-3,3],[0,2],[1,3],[2,2],[3,1],[5,-2],[-1,2],[-4,2],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[3,0],[0,1],[-1,1],[-1,1],[2,0],[7,-2],[3,0],[4,-2],[2,-1],[3,-3],[1,0],[1,-1],[1,-1],[2,-1],[3,-2],[1,2],[0,1],[-3,2],[1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[2,-1],[1,-2],[1,-2],[1,-1],[3,-1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,-2],[1,0],[1,-2],[1,0],[4,-2],[1,-1],[1,1],[1,0],[0,1],[1,-1],[2,0],[0,-2],[0,-1],[0,-1],[1,0],[1,-2],[4,-1],[-1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-2],[1,-1],[-1,-1],[1,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[2,-4],[0,-1],[-1,-1],[3,-2],[1,0],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[2,0],[1,-1],[-1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[2,0],[-1,-2],[-1,0],[-1,0],[0,-1],[2,-3],[0,-1],[2,-2],[0,-1],[1,-2],[0,-1],[1,-1],[0,-2],[1,0],[0,-2],[1,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-2,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[1,0],[1,0],[1,-1],[0,-2],[1,-1],[0,-1],[2,-4],[0,-1],[0,-1],[0,-1],[0,-3],[1,-1],[1,0],[2,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-2],[0,-2],[1,-1],[1,-1],[2,-5],[1,-1],[0,-2],[-1,-3],[0,-1],[1,-1],[1,-1],[-1,-2],[0,-1],[1,-1],[1,-2],[0,-1],[0,-1],[-1,-1],[-2,2],[-1,0],[-1,-1],[-1,0],[0,-2],[0,-2],[1,-2],[1,-1],[-1,-3],[0,-1],[-2,-3],[-2,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[8,-7],[2,0],[1,-1],[2,-2],[1,-2],[2,-8],[1,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[2,-2],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,-3],[1,-1],[1,-1],[6,0],[1,0],[1,-1],[0,-1],[2,-2],[1,-2],[5,-1],[1,0],[0,2],[-1,1],[-2,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[1,1],[1,0],[3,-2],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[3,-1],[1,-1],[1,0],[1,-1],[2,-1],[2,-1],[2,-1],[5,-4],[1,-2],[1,0],[1,0],[1,-1],[1,-1],[3,-3],[1,0],[2,0],[1,2],[0,1],[3,0],[1,-1],[1,-1],[1,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-2],[1,-1],[1,-2],[1,-1],[1,-1],[0,1],[1,0],[2,0],[0,1],[0,1],[1,2],[1,-1],[2,-2],[1,0],[0,1],[2,0],[0,1],[1,0],[0,1],[0,1],[2,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-3],[1,-1],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-4],[0,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[-2,0],[-1,0],[-1,0],[-1,1],[0,1],[0,-1],[-3,-1],[-1,0],[-1,1],[-1,1],[0,2],[0,1],[-2,2],[-1,4],[0,1],[1,1],[0,2],[0,1],[0,1],[-1,-1],[-2,-7],[0,-2],[-1,-1],[0,-1],[-1,-3],[-1,-1],[0,-2],[-1,0],[0,1],[0,1],[0,1],[-4,4],[-1,0],[-1,-1],[-1,0],[-1,3],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,0],[-2,-1],[-1,0],[0,1],[-1,0],[1,1],[0,1],[-1,2],[-1,1],[-1,-1],[0,-1],[1,-3],[-2,0],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[1,-3],[1,-1],[3,0],[0,-2],[-1,-2],[1,-3],[-1,0],[0,-1],[0,-1],[-1,-1],[-2,0],[-2,0],[-2,-1],[-1,0],[-2,2],[-4,1],[0,1],[-2,0],[-2,2],[-1,2],[-2,2],[-1,1],[-1,-1],[-1,0],[0,1],[-1,1],[-2,-1],[0,-1],[0,-1],[0,-3],[1,-1],[4,-2],[3,-2],[0,-1],[1,-2],[1,-4],[0,-1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-2],[0,-2],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[-1,-1],[-4,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[2,5],[1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[4,0],[1,1],[1,0],[2,0],[1,1],[1,3],[1,1],[2,0],[1,1],[1,1],[1,0],[1,-1],[4,0],[1,-1],[2,-3],[1,-1],[0,-1],[-3,-4],[-2,1],[-1,0],[0,-1],[0,-2],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[-1,1],[0,1],[-1,1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,1],[0,1],[0,2],[1,0],[1,1],[1,1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-2],[0,-3],[-1,-2],[-2,-3],[1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-4,-2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-3,-1],[-1,1],[-1,1],[-1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-3,0],[-2,2],[-1,0],[-1,0],[1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-3,0],[0,-1],[-2,-1],[-1,-1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-5,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,-1],[-1,0],[-2,0],[-2,1],[-1,0],[-1,1],[-2,1],[-1,0],[-3,-1],[-1,1],[-3,1],[0,1],[-1,1],[0,2],[0,1],[-2,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,2],[-3,0],[0,-1],[0,-1],[-2,-2],[-2,-1],[-7,1],[-7,1],[-1,1],[-1,2],[-1,0],[-1,1],[-1,0],[1,0],[1,1],[1,1],[0,1],[1,1],[2,-1],[1,1],[0,1],[2,1],[1,1],[0,2],[0,1],[-1,0],[-3,1],[-1,0],[0,-1],[1,0],[1,-1],[0,-1],[-5,1],[-1,1],[-6,1],[-1,1],[0,1],[-1,1],[-9,2],[-2,-1],[-1,-1],[-1,0],[-2,1],[-3,-1],[-4,2],[-2,1],[0,1],[0,1],[0,1],[1,1],[2,1],[1,2],[0,1],[-1,1],[0,1],[-1,3],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,4],[-1,0],[-1,1],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-4,-1],[-1,0],[-1,-1],[0,-2],[1,-2],[0,-2],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-2,-2],[-3,-5],[-2,-3],[-4,-2],[-11,-3],[-2,-1],[-8,0],[-2,1],[-6,0],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,-2],[-3,-3],[-2,-1],[-2,-2],[-1,0],[-2,-2],[-9,-2],[-7,-4],[-5,0],[-3,0],[-2,-1],[-5,1],[-2,0],[-2,-2],[-1,-2],[-1,0],[-1,1],[0,1],[-1,0],[-4,1],[-1,0],[-1,-2],[-1,0],[-2,-1],[-6,-2],[-2,1],[1,1],[5,1],[0,1],[-1,0],[-4,0],[-2,-2],[-1,0],[-7,1],[-1,-1],[1,-1],[3,0],[2,-1],[-1,-2],[-3,0],[-5,2],[-10,-1],[-10,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-5,0],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,-1],[-4,1],[-10,-2],[-1,1],[0,1],[0,1],[1,1],[1,0],[4,-1],[1,0],[-1,1],[-1,2],[-1,1],[-2,1],[-2,1],[-2,1],[-1,2],[-1,0],[0,2],[-1,1],[1,2],[-1,1],[-2,3],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[1,1],[1,1],[-1,1],[-1,1],[0,1],[0,1],[1,1],[1,2],[1,1],[0,1],[0,1],[0,2],[0,1],[-2,0],[1,1],[2,0],[-1,0],[-2,2],[0,1],[0,1],[-1,1],[0,1],[1,0],[-1,1],[-1,1],[1,1],[0,1],[1,-1],[4,0],[-1,1],[-1,1],[-9,2],[-1,1],[0,1],[-2,-1],[-4,0],[-2,1],[0,1],[-1,0],[-4,1],[-13,-3],[-1,1],[-1,1],[-2,0],[-1,0],[-1,-2],[-1,0],[-2,-1],[-11,2],[-11,2],[0,1],[-1,1],[0,1],[-1,0],[-2,0],[-8,5],[-3,0],[-3,4],[0,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-4,1],[1,-1],[1,-1],[-1,0],[-1,0],[-1,2],[-3,1],[0,1],[1,1],[1,1],[0,1],[-1,1],[-1,0],[-1,1],[-3,1],[-1,1],[-1,2],[-2,1],[-1,0],[0,1],[-1,1],[0,2],[0,1],[-1,3],[-1,4],[-1,2],[0,1],[-1,2],[0,1],[1,2],[1,1],[2,0],[2,3],[7,2],[6,2],[6,1],[14,4],[11,2],[11,1],[5,1],[8,1],[7,1],[9,0],[4,-2],[11,-1],[5,1],[7,-1],[6,-2],[1,0],[-1,1],[1,0],[3,-1],[1,0],[6,-3],[1,0],[1,1],[-1,1],[0,1],[1,1],[2,-1],[1,0],[1,-1],[1,1],[-1,1],[0,1],[1,0],[5,0],[1,1],[-4,0],[-1,1],[1,1],[9,-3],[3,0],[4,0],[2,1],[2,-1],[1,0],[1,1],[1,1],[-1,0],[-2,0],[-1,1],[1,1],[1,0],[1,1],[-1,1],[-1,1],[-7,-1],[-2,1],[-2,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,3],[0,1],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,2],[-1,1],[-1,0],[-3,0],[-1,0],[0,-2],[-1,1],[-1,1],[-4,2],[0,1],[-1,1],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[-4,0],[-2,0],[-2,2],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,1],[-1,1],[-1,1],[-1,1],[-8,1],[-1,0],[-3,-3],[-1,0],[-4,1],[-2,0],[-3,-3],[-10,-1],[-5,-1],[-5,0],[-7,-1],[-1,0],[-1,-1],[-1,0],[-4,2],[-8,-2],[-5,1],[0,1],[1,1],[-1,1],[-1,0],[-10,0],[-1,-2],[-1,0],[-9,-1],[-7,2],[-2,-2],[-1,1],[0,1],[-1,0],[-3,0],[-1,0],[0,-1],[0,-1],[-1,1],[-4,2],[-1,2],[1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-9,6],[-3,3],[-1,2],[-2,4],[-1,2],[1,2],[8,5],[9,5],[9,1],[10,4],[6,0],[1,1],[1,1],[-1,0],[1,2],[14,4],[1,1],[5,1],[0,-1],[-2,-1],[0,-1],[1,0],[1,1],[1,1],[8,0],[1,1],[-1,1],[-4,0],[-4,2],[-4,0],[0,1],[4,0],[9,5],[-1,-1],[1,-1],[3,1],[1,-1],[1,-1],[2,0],[2,-1],[1,0],[1,1],[0,1],[4,0],[1,2],[3,1],[-2,1],[-5,-3],[-4,-1],[-1,1],[-2,1],[3,1],[0,1],[-5,1],[-5,0],[-2,-2],[-3,0],[-2,-1],[-2,0],[-2,-1],[-10,-1],[-2,-2],[-3,0],[-2,-2],[-3,0],[-4,1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,1],[-2,-2],[-1,0],[-1,0],[0,1],[1,2],[0,1],[0,1],[-2,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[1,-1],[-1,0],[-1,0],[-1,-1],[1,-1],[2,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-5,1],[0,1],[0,1],[-1,-1],[-1,-1],[0,-1],[-2,1],[-1,0],[-7,0],[-3,1],[-2,2],[0,3],[2,2],[4,3],[5,0],[4,-1],[1,1],[-2,1],[2,0],[2,0],[1,1],[-1,1],[-3,0],[-1,1],[0,1],[-2,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[2,0],[5,2],[-1,1],[-10,-1],[-2,-1],[-1,-2],[0,-1],[-1,-1],[-2,0],[-2,0],[-1,-1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-2,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-4,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-2,2],[0,1],[-1,0],[0,1],[-1,2],[-1,1],[0,4],[0,1],[-1,1],[1,2],[0,3],[0,3],[1,1],[0,1],[1,2],[3,4],[3,3],[2,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[3,3],[4,0],[9,3],[0,1],[0,5],[-2,2],[-2,0],[-5,0],[-2,2],[-1,0],[-1,1],[0,2],[0,1],[0,4],[2,2],[6,5],[1,1],[1,0],[0,2],[1,1],[2,0],[2,2],[1,0],[4,2],[1,3],[6,4],[2,2],[1,2],[1,1],[2,2],[1,1],[4,1],[3,1],[6,2],[7,4],[1,2],[3,0],[1,1],[4,2],[3,1],[5,2],[7,3],[6,1],[4,2],[1,1],[1,1],[1,1],[2,-1],[1,1],[2,2],[6,1],[5,4],[1,0],[3,1],[5,-3],[4,-1],[2,-1]],[[2011,9296],[-1,0],[-1,0],[-2,-1],[-7,-1],[-1,1],[-1,1],[-1,1],[2,2],[5,1],[5,0],[2,-2],[0,-1],[0,-1]],[[2094,9278],[-2,-3],[-2,-4],[0,-1],[0,-1],[0,-1],[-2,-1],[-1,-1],[-2,-3],[-2,-1],[1,-4],[-1,-1],[-3,-2],[-2,-3],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[1,-1],[1,-1],[-1,-1],[1,-2],[2,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[1,0],[-2,1],[-1,1],[0,1],[0,1],[0,1],[-7,6],[-2,3],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,-1],[-5,3],[1,0],[1,0],[0,1],[0,1],[-1,1],[-2,1],[-1,1],[0,1],[1,0],[1,0],[-6,4],[0,1],[-1,1],[-1,0],[-1,2],[-2,1],[-3,0],[-1,1],[-1,1],[-3,2],[-5,0],[-2,1],[1,1],[1,2],[1,1],[0,1],[1,0],[1,1],[1,1],[3,5],[2,2],[2,2],[12,1],[12,0],[4,2],[6,1],[5,-1],[2,-1],[1,0],[3,-3],[3,-2],[0,-1],[1,-1],[4,-1],[3,-2],[2,-2],[0,-3],[0,-1],[0,-2],[-1,-1],[-1,0],[0,-2],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1]],[[2768,9309],[6,-4],[1,0],[1,0],[0,2],[1,0],[1,0],[1,-1],[8,-2],[2,-1],[4,-3],[13,0],[1,1],[1,1],[2,1],[2,-1],[9,0],[8,1],[1,0],[1,-1],[2,-1],[4,-2],[12,-4],[1,0],[1,-3],[1,0],[3,0],[0,-1],[1,-1],[1,-1],[-1,0],[0,-1],[2,-2],[2,-2],[-1,0],[0,-1],[1,-2],[3,-2],[2,0],[1,0],[2,-1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-2],[1,-1],[2,-1],[1,-2],[0,-1],[-1,-2],[1,0],[2,-3],[1,0],[1,-1],[2,0],[3,-1],[1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[2,-2],[4,0],[2,-3],[-1,0],[0,-1],[0,-1],[-1,-2],[-3,0],[-2,-2],[-10,1],[-2,1],[-1,0],[-1,-1],[-7,1],[-7,1],[-3,2],[-8,0],[-9,1],[-2,-1],[-2,1],[-13,-3],[-2,-2],[-4,-1],[-2,-2],[-7,-2],[-6,-1],[-5,1],[-7,5],[-3,1],[-1,1],[-1,1],[0,3],[-1,1],[0,1],[-2,2],[0,1],[-1,3],[0,1],[0,1],[1,3],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[-1,0],[-2,1],[-1,1],[-3,-1],[-2,1],[-3,0],[-4,1],[-2,0],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[1,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[1,0],[3,-1],[0,1],[-2,1],[0,1],[-2,2],[0,1],[-1,1],[0,1],[-1,1],[2,2],[1,3],[0,3],[-1,2],[2,1],[1,0],[2,0],[3,1],[3,0],[3,-1]],[[2595,9316],[5,-1],[10,1],[8,-2],[13,-1],[1,1],[1,-1],[3,0],[6,-5],[1,0],[-1,-2],[0,-1],[-1,0],[-1,-2],[-7,-5],[-8,-5],[-2,-1],[-3,-4],[-2,-1],[-8,-10],[-3,-5],[-2,-6],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-2,-2],[0,-1],[-2,-3],[-4,-4],[-2,-4],[0,-1],[-1,-1],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[2,-2],[-1,-1],[1,-2],[10,-10],[1,-2],[1,-3],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-2],[-1,-1],[0,-1],[0,-2],[-1,-3],[1,-2],[-1,-3],[1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[2,-2],[0,-1],[2,-4],[1,-3],[1,-1],[2,-1],[1,-1],[1,-1],[0,-1],[1,-1],[2,-3],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[3,-2],[1,-2],[1,-1],[0,-1],[2,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[5,0],[2,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-2],[0,-2],[-10,1],[-2,-1],[1,-1],[2,1],[0,-1],[-1,0],[-2,-1],[-1,-1],[-3,1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,0],[-5,2],[-1,0],[-1,-2],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-2],[-4,-2],[-1,-1],[0,-1],[-3,-2],[-1,0],[-1,0],[-1,-1],[-2,0],[-8,-3],[-1,0],[4,-1],[11,2],[1,0],[1,1],[0,1],[1,0],[1,1],[7,4],[2,2],[1,1],[7,0],[1,1],[8,-1],[1,-1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[3,-1],[1,0],[-1,1],[-1,0],[2,1],[1,0],[1,-1],[0,-1],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-2,2],[-1,1],[-4,-1],[0,-1],[5,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[3,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,2],[0,1],[0,2],[0,1],[1,1],[1,1],[1,0],[1,1],[-3,2],[-1,2],[1,3],[0,3],[1,1],[-1,2],[1,1],[1,0],[3,1],[1,1],[1,1],[0,2],[-1,3],[0,1],[-1,1],[-1,0],[-1,1],[0,2],[0,1],[2,2],[-1,1],[-2,1],[-5,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-11,3],[-1,1],[-4,5],[-2,1],[0,1],[-1,0],[-1,1],[4,0],[0,1],[0,1],[0,1],[-1,1],[-2,2],[0,1],[0,1],[-2,1],[-3,2],[-8,2],[0,1],[0,1],[-1,0],[1,0],[0,-1],[1,-1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[5,-1],[-1,1],[-1,0],[0,1],[1,1],[4,0],[1,0],[1,2],[1,0],[-1,1],[0,2],[2,0],[1,1],[1,0],[-1,1],[-1,1],[-1,0],[0,2],[0,1],[-1,1],[0,1],[2,-1],[1,-1],[0,2],[-1,0],[-1,1],[0,1],[1,0],[3,-1],[1,1],[1,0],[1,-1],[1,0],[-1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[4,-4],[3,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[1,1],[-1,1],[1,1],[-1,2],[1,1],[-1,0],[-1,2],[-2,1],[-1,0],[0,1],[-1,2],[-1,0],[0,1],[1,1],[-3,0],[-3,1],[-1,1],[-3,4],[1,0],[1,1],[-1,0],[-2,0],[-1,2],[-3,1],[-1,1],[1,0],[1,1],[0,1],[2,2],[1,0],[6,0],[1,0],[2,2],[-2,-1],[-9,1],[-1,-1],[0,1],[0,1],[1,0],[1,1],[1,1],[-1,0],[1,1],[0,1],[-2,-1],[-1,0],[-4,-3],[0,-1],[0,-1],[-2,0],[-1,-1],[0,1],[0,1],[-6,2],[-3,3],[-2,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[1,1],[3,1],[0,1],[-2,0],[-2,1],[-2,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[2,2],[0,1],[1,1],[1,0],[6,-1],[4,-1],[7,-3],[13,-4],[2,-2],[2,-1],[1,-1],[4,0],[4,-3],[1,1],[-4,2],[-4,1],[-11,7],[-3,1],[-5,3],[-1,0],[-4,2],[1,0],[-1,2],[-1,1],[-1,0],[-1,-1],[1,0],[-10,1],[0,1],[2,5],[0,1],[1,1],[1,0],[0,-1],[1,-2],[4,-3],[2,0],[0,1],[-2,3],[-1,1],[2,1],[4,0],[4,-3],[4,-1],[8,-2],[7,-1],[5,0],[4,0],[5,-3],[1,-1],[0,1],[-4,2],[1,1],[-1,0],[-3,1],[-7,1],[-2,1],[-7,2],[-2,0],[-13,6],[-2,0],[-2,1],[-1,1],[1,1],[0,1],[0,1],[1,1],[0,2],[8,5],[1,0],[1,0],[1,-1],[1,-3],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[2,-2],[1,-1],[2,0],[-1,2],[-5,4],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[2,1],[10,4],[1,0],[11,-3],[1,0],[1,-1],[0,-1],[0,-2],[1,-2],[0,-2],[1,-1],[1,0],[1,1],[0,1],[-1,1],[0,1],[-1,0],[0,2],[0,1],[1,1],[0,1],[-1,1],[0,1],[-10,3],[1,2],[9,5],[3,0],[5,3],[6,2],[1,0],[2,-2],[0,1],[1,1],[3,2],[1,2],[1,0],[11,0],[11,1],[4,-2],[10,0],[2,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[2,-1],[3,-3],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-3],[0,-1],[-1,-2],[0,-1],[0,-2],[1,-2],[1,-1],[14,-5],[0,-1],[2,-2],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-2],[1,-2],[0,-1],[2,-1],[2,-1],[2,-1],[1,-2],[0,-1],[0,-1],[1,0],[-1,-1],[-1,-1],[-2,0],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,-2],[-7,-4],[-4,-4],[-1,-1],[-1,-1],[-2,-4],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[1,-2],[-1,-1],[-1,0],[-1,0],[-3,-3],[2,0],[2,1],[10,13],[2,0],[2,2],[5,3],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-2,-1],[-1,-1],[-3,-3],[-3,-4],[0,-2],[0,-1],[-1,-1],[-2,0],[5,-4],[1,0],[1,0],[1,-1],[1,-1],[2,-1],[0,-1],[-1,-1],[-3,0],[-2,2],[-7,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,-1],[1,-1],[2,0],[1,0],[3,1],[1,-1],[0,-2],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-2],[4,2],[2,2],[0,3],[3,2],[3,0],[1,1],[2,1],[1,1],[2,1],[-1,3],[0,1],[-2,1],[0,1],[-1,2],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[-1,1],[-1,2],[1,2],[1,1],[1,0],[1,-1],[3,-5],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[7,-3],[0,1],[-1,1],[-3,1],[-3,2],[-2,3],[-1,1],[0,2],[-3,2],[0,1],[0,1],[3,4],[4,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,-1],[1,0],[0,-1],[-1,0],[1,-1],[0,1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[3,-2],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[1,1],[0,2],[1,0],[1,0],[5,-4],[1,-1],[1,-3],[1,0],[1,0],[1,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[-2,-1],[-1,-2],[-2,-2],[0,-1],[1,-1],[1,0],[1,0],[1,1],[10,-3],[4,-4],[1,-1],[1,1],[-1,1],[-1,1],[-1,1],[1,1],[-1,1],[-4,1],[-2,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[9,-5],[1,-2],[1,-2],[1,-5],[0,-2],[5,-8],[3,-1],[2,-2],[2,-1],[2,0],[0,1],[-1,0],[-2,1],[-2,1],[-3,3],[-1,3],[-1,0],[-1,1],[-1,1],[0,2],[1,0],[3,1],[1,0],[0,-1],[0,-1],[1,-1],[2,-2],[1,-1],[1,-3],[1,-1],[3,-2],[1,-1],[1,-2],[0,2],[1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-2,3],[-2,2],[-1,1],[0,1],[-2,1],[-2,-1],[-1,0],[-1,1],[0,1],[-1,4],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-2,1],[-2,1],[-2,1],[-5,3],[0,1],[2,2],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[2,-1],[2,2],[1,0],[1,0],[1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,1],[0,3],[0,1],[0,1],[2,1],[10,-3],[1,-1],[-1,-1],[3,1],[4,-2],[3,-2],[1,-1],[-1,-2],[1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[9,0],[1,0],[2,-2],[5,-1],[-4,2],[-4,2],[-7,0],[-3,2],[-1,1],[-4,3],[-3,1],[-2,1],[-6,2],[-9,6],[0,1],[0,2],[0,1],[0,2],[2,3],[1,0],[0,2],[0,1],[1,0],[1,0],[5,4],[4,1],[1,1],[0,1],[1,0],[5,0],[2,2],[2,1],[1,1],[10,-1],[10,0],[3,-1],[2,-2],[1,-1],[0,-1],[0,-1],[0,-1],[13,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[1,0],[2,0],[-1,1],[0,3],[0,1],[1,0],[0,2],[1,0],[1,0],[6,0],[3,-2],[2,0],[2,-2],[8,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[2,-4],[1,-1],[0,-1],[2,-3],[1,-2],[-2,-2],[0,-1],[0,-1],[-1,-1],[-5,-4],[-1,0],[-6,1],[-4,0],[-11,-4],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-3,-2],[-1,-1],[-1,-3],[-2,-1],[0,-1],[1,0],[1,0],[0,1],[2,3],[1,1],[1,2],[2,1],[1,1],[1,2],[1,2],[0,1],[10,5],[4,0],[8,-3],[0,-1],[0,-1],[-2,-1],[-7,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-3],[-2,-2],[-4,-1],[-2,-1],[1,0],[2,1],[2,-1],[1,1],[1,0],[1,1],[1,1],[2,4],[1,1],[0,1],[0,1],[0,1],[1,1],[1,2],[0,1],[1,2],[-1,1],[0,1],[1,1],[1,1],[2,1],[3,-1],[1,0],[2,1],[1,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,0],[1,0],[2,-1],[8,-1],[8,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-2],[1,-2],[1,-2],[0,-1],[-2,-2],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,0],[-2,-1],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,0],[-2,0],[-1,-1],[-2,-1],[-1,0],[-3,1],[-8,-2],[-1,0],[-1,-2],[9,2],[2,0],[1,0],[1,-2],[0,-1],[-6,-4],[-3,-2],[-4,-3],[3,1],[3,1],[4,4],[3,1],[1,0],[1,0],[0,1],[0,1],[1,1],[1,1],[2,1],[1,0],[1,-1],[0,-1],[1,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-5,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[1,0],[0,1],[1,1],[1,1],[1,1],[5,0],[0,-1],[0,-2],[-2,-2],[-1,0],[4,0],[1,-1],[1,-2],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[4,5],[1,1],[1,2],[2,2],[1,1],[2,2],[1,2],[0,1],[-1,2],[-1,1],[-1,2],[0,2],[0,2],[1,1],[1,0],[1,0],[0,1],[2,5],[0,1],[1,1],[3,0],[2,3],[1,1],[0,1],[4,0],[1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,-1],[1,0],[-1,3],[-1,3],[1,1],[1,0],[1,1],[1,1],[0,2],[2,4],[3,1],[5,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,2],[1,1],[0,-3],[-1,-1],[-3,-3],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-2,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,-1],[-2,-1],[1,0],[1,0],[2,2],[4,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[2,0],[1,-1],[-1,-1],[0,-1],[-1,-2],[-2,-2],[-1,0],[0,-1],[2,2],[5,7],[0,1],[0,1],[0,1],[1,4],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[2,2],[1,0],[1,1],[1,0],[1,-1],[1,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[1,-2],[1,-1],[-2,-3],[1,1],[2,1],[1,0],[0,2],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-3,-1],[-1,-2],[1,0],[0,1],[1,0],[2,0],[1,0],[1,1],[0,2],[0,1],[0,2],[1,2],[0,2],[1,1],[0,1],[2,2],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[3,0],[2,-1],[2,-1],[0,-1],[2,0],[1,-1],[1,-1],[-5,-2],[-2,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[-1,-1],[-3,-2],[-1,-2],[1,0],[1,-2],[0,-1],[1,1],[-1,2],[0,1],[1,1],[2,1],[0,2],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[2,-1],[1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,2],[2,1],[3,-1],[2,2],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[1,0],[1,0],[4,2],[1,2],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[2,-1],[1,-1],[7,-2],[8,-3],[4,-2],[5,-2],[1,0],[1,-1],[0,-1],[3,-2],[0,-1],[-1,0],[2,-2],[2,-2],[4,-6],[1,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-1],[-1,-2],[-1,-3],[-1,-2],[-1,0],[-4,0],[-2,2],[-4,1],[-1,0],[-3,-2],[-2,0],[-1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-3],[-3,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[-11,-4],[-1,0],[8,1],[5,2],[1,0],[1,-1],[2,0],[0,-1],[0,-1],[-1,-1],[-2,-2],[-1,-2],[-1,0],[1,-1],[0,-1],[-1,-2],[-1,-1],[-3,-2],[-2,0],[-2,-1],[1,-1],[1,1],[0,-1],[0,-1],[1,0],[0,1],[1,1],[0,1],[3,0],[1,1],[1,1],[0,1],[1,1],[1,3],[1,1],[7,2],[4,2],[2,1],[4,2],[8,1],[3,-2],[1,0],[-1,1],[-2,2],[0,1],[-1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,2],[1,1],[0,1],[5,2],[3,3],[2,0],[2,0],[3,-2],[0,-1],[1,-2],[0,-1],[0,-2],[2,-3],[0,-1],[0,-2],[-1,-1],[-5,-4],[0,-1],[0,-1],[-1,-1],[0,-3],[-1,-2],[-7,-3],[-1,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,0],[-7,3],[-2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-4,-3],[0,-1],[0,-2],[-1,-1],[-3,0],[-1,0],[-1,-1],[0,-1],[4,2],[2,-1],[0,-5],[-1,-2],[-1,-1],[-1,-1],[1,0],[1,0],[1,1],[2,4],[0,2],[0,1],[1,3],[-1,1],[3,3],[1,3],[0,2],[1,0],[1,0],[1,0],[1,-1],[-2,-1],[1,0],[2,1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[-2,-7],[-1,-3],[0,-3],[-1,0],[0,-1],[0,-1],[0,-1],[1,-2],[-1,-3],[-1,0],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,1],[1,0],[0,-2],[-2,-2],[-1,0],[0,-3],[-1,-1],[1,0],[0,1],[1,2],[1,1],[3,3],[0,1],[0,1],[1,1],[0,2],[0,1],[2,1],[0,1],[0,2],[1,0],[-1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,4],[1,1],[0,1],[1,0],[1,0],[-1,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[1,2],[4,1],[4,4],[1,0],[1,1],[2,1],[1,0],[1,1],[1,1],[1,1],[5,1],[9,6],[1,0],[1,0],[1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,-2],[-3,-3],[-6,-6],[-3,-1],[-3,0],[-1,0],[-1,-2],[0,-1],[1,0],[0,-2],[1,-2],[0,-1],[0,-1],[-2,-1],[0,-1],[1,0],[2,1],[2,1],[-1,2],[-1,2],[0,1],[-1,2],[1,0],[1,0],[4,1],[2,-1],[1,0],[1,2],[0,-2],[0,-1],[1,1],[1,3],[0,1],[2,0],[1,2],[2,-1],[1,1],[-1,0],[0,2],[1,-1],[1,-1],[1,-1],[1,1],[0,1],[0,1],[0,2],[1,1],[1,0],[3,2],[2,0],[0,-1],[3,0],[2,0],[3,-3],[0,-1],[11,-5],[10,-5],[0,-1],[2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-2,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-2],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[-1,2],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-2],[0,-1],[-1,-2],[-1,-1],[-3,-1],[-2,-1],[-3,1],[-3,-2],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,-1],[-3,0],[-1,-1],[0,-1],[-1,0],[-2,-1],[-3,-2],[-2,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-4,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,0],[1,0],[2,2],[0,1],[3,0],[2,-2],[1,-2],[0,-1],[0,-1],[-5,1],[-1,0],[-2,-2],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-1,-2],[-1,0],[-1,0],[-1,-1],[3,0],[1,0],[7,7],[1,1],[3,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,2],[1,1],[13,4],[2,0],[2,-2],[1,0],[1,2],[-3,0],[-1,1],[1,1],[3,-1],[1,-1],[7,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-3,-3],[0,-1],[0,-1],[-1,-3],[-2,-1],[-6,-3],[-1,0],[-1,-2],[-1,-1],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,-4],[-1,-1],[-1,0],[-1,0],[-7,2],[-1,-1],[-1,0],[-1,-2],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,2],[0,1],[1,0],[1,1],[1,2],[1,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[0,1],[4,0],[2,0],[1,-2],[1,0],[2,0],[1,1],[4,7],[2,0],[1,2],[3,1],[1,1],[1,0],[4,0],[2,-1],[1,1],[0,-1],[1,0],[0,1],[-1,0],[1,1],[0,1],[-1,0],[1,1],[1,0],[1,1],[1,1],[0,1],[-1,0],[0,1],[1,0],[2,0],[0,1],[1,1],[0,-1],[1,0],[1,0],[2,1],[2,3],[0,1],[-3,0],[0,1],[1,1],[-1,0],[-1,0],[0,2],[1,0],[1,0],[-1,1],[0,1],[1,1],[1,2],[2,1],[1,1],[-1,2],[3,0],[1,-1],[0,-1],[1,0],[4,-1],[1,-1],[1,-2],[1,-1],[4,-5],[1,0],[2,-3],[1,-2],[1,-1],[0,1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[3,-2],[0,-1],[1,-2],[0,-3],[0,-1],[1,-3],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[-6,0],[-6,1],[-2,1],[-1,1],[-1,1],[-1,0],[-8,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-2,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[-5,0],[-4,1],[-1,0],[0,-1],[-1,0],[-2,-1],[-4,-2],[-1,-1],[-1,0],[-2,0],[-1,-1],[-2,-2],[-1,0],[-13,2],[-2,0],[-4,-2],[-2,0],[0,-1],[1,0],[1,0],[1,-1],[2,1],[1,1],[1,1],[3,0],[10,-3],[1,0],[2,1],[1,0],[1,1],[2,0],[1,0],[1,2],[6,2],[4,0],[4,-2],[2,-1],[11,-6],[2,-1],[1,1],[3,1],[5,0],[1,-1],[9,0],[12,-9],[1,0],[1,-2],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-2,-3],[-1,0],[-6,3],[-5,0],[-1,0],[0,-1],[0,-1],[-1,0],[-2,2],[-1,1],[-1,0],[-2,-2],[-2,0],[-4,1],[-6,4],[-1,1],[-2,0],[-1,2],[-2,0],[-3,2],[-1,0],[-3,-1],[-9,2],[-9,3],[-6,-4],[-1,-2],[1,-1],[0,1],[2,2],[4,2],[1,0],[5,-1],[2,-1],[8,-2],[6,0],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-12,2],[-1,-1],[-3,0],[-5,0],[2,-1],[4,0],[2,0],[4,0],[1,0],[-1,-1],[-3,-2],[-1,-1],[-1,-1],[-3,0],[-3,-1],[-3,0],[-1,-1],[-1,-1],[2,0],[0,1],[3,0],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[-1,-2],[1,1],[1,1],[0,2],[0,1],[1,1],[0,1],[0,1],[1,1],[2,1],[3,1],[1,1],[5,3],[2,0],[5,-2],[1,0],[1,0],[1,-1],[10,-7],[1,-1],[-1,-1],[-6,0],[-1,-1],[1,-1],[-1,0],[-1,0],[-6,2],[-4,0],[-1,-1],[-1,0],[-1,-1],[-1,1],[-1,-1],[1,-1],[0,1],[6,0],[1,0],[0,-1],[2,0],[1,-1],[4,0],[-1,-1],[0,-1],[0,-1],[-1,0],[1,0],[1,-1],[1,0],[1,-2],[-1,-1],[-4,1],[-1,1],[-9,1],[1,-1],[5,0],[1,-1],[1,-1],[1,0],[1,-1],[6,-2],[1,0],[1,0],[-1,-1],[1,0],[1,0],[1,-1],[-1,0],[-2,0],[-9,3],[-2,0],[-3,2],[-2,0],[-2,0],[-1,0],[-1,0],[0,-1],[2,-1],[1,0],[0,-2],[-3,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-2,1],[-1,0],[-1,2],[-1,0],[-2,0],[-4,2],[-2,0],[-1,-1],[4,0],[1,-1],[2,-1],[-6,0],[-1,-1],[11,-1],[1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[1,0],[2,1],[4,0],[2,-1],[4,0],[1,0],[0,-1],[3,0],[5,-1],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[0,1],[-2,0],[1,-1],[1,0],[1,-1],[-1,-1],[-1,0],[-1,1],[-1,1],[-2,-1],[-2,-1],[-1,0],[-7,2],[-2,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-2,0],[1,-1],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[4,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-5,-1],[-1,0],[8,-1],[1,0],[0,1],[0,1],[1,1],[1,-1],[4,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[2,0],[0,-1],[1,0],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-3],[0,-1],[1,0],[0,1],[1,1],[0,1],[0,2],[1,1],[0,1],[-1,1],[0,1],[1,1],[0,-1],[1,0],[3,1],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-2],[-2,0],[-1,-1],[1,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[3,0],[1,0],[1,-1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[-2,0],[-1,0],[-1,-1],[6,0],[1,0],[0,1],[0,1],[-1,1],[0,1],[2,0],[1,-1],[1,-1],[2,0],[1,1],[2,0],[4,-2],[-2,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,0],[-2,1],[-2,1],[-4,1],[-1,-1],[-1,0],[-1,-1],[-9,-3],[-2,-1],[-1,-1],[0,-2],[0,-1],[1,0],[1,0],[0,1],[0,1],[2,2],[3,0],[2,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-3,-1],[1,0],[1,0],[2,0],[0,1],[1,0],[0,2],[-1,0],[1,1],[3,3],[2,1],[0,-1],[0,-2],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[5,-3],[-1,-1],[-5,-1],[0,-1],[-1,0],[-1,-2],[-1,-2],[0,-2],[0,-2],[-1,-1],[-2,0],[-1,1],[-1,0],[-1,1],[-1,-1],[1,-1],[4,-1],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[5,2],[0,1],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[3,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-3,-3],[-1,-1],[0,-2],[1,-1],[1,1],[0,1],[0,1],[3,3],[1,0],[0,1],[1,1],[1,1],[1,-1],[0,-2],[-1,0],[0,-1],[1,0],[0,-3],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[1,1],[0,2],[1,5],[0,2],[1,1],[1,0],[6,-1],[1,0],[-1,-3],[-1,0],[-3,0],[0,-1],[3,0],[2,1],[1,0],[1,-1],[0,-1],[0,-2],[1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-3,2],[-2,0],[-1,-1],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[3,0],[0,-1],[0,-2],[1,-1],[1,2],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[1,1],[1,0],[1,1],[2,1],[1,1],[2,2],[1,0],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,-1],[1,-2],[0,-1],[-1,-1],[0,-1],[1,1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[-3,-4],[0,-1],[1,0],[1,-2],[1,-1],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,1],[-1,1],[1,1],[0,2],[1,2],[0,3],[0,1],[0,1],[-1,1],[1,1],[1,1],[3,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[1,1],[1,0],[0,-1],[1,1],[1,1],[1,1],[4,-1],[1,1],[1,0],[0,-1],[-1,-3],[0,-1],[-1,-5],[-1,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[2,-2],[1,-1],[1,-1],[0,-1],[1,-1],[1,-5],[1,0],[-1,6],[0,1],[0,1],[-4,3],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,2],[1,4],[0,1],[1,1],[1,0],[2,0],[3,2],[1,2],[-1,2],[0,1],[1,0],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[2,-1],[3,-2],[2,-1],[1,0],[1,-1],[-1,-2],[-4,-2],[-3,1],[-2,-1],[1,-1],[2,0],[1,0],[-2,-4],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,-3],[0,-1],[1,1],[1,1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[0,-1],[-1,0],[0,-2],[1,-1],[0,-1],[1,1],[-1,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,1],[0,1],[0,1],[2,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,1],[1,2],[0,2],[0,1],[0,2],[0,1],[0,1],[1,-1],[1,0],[0,1],[1,0],[1,0],[3,-2],[1,-1],[0,-2],[2,1],[1,-1],[0,-1],[-1,-1],[0,-1],[-3,-1],[-1,0],[-2,-1],[-1,-2],[1,0],[4,2],[2,0],[1,1],[1,2],[1,0],[1,-1],[0,-2],[1,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[1,0],[1,0],[3,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[-4,-2],[-1,-1],[-4,1],[1,-1],[2,-1],[3,0],[3,1],[2,0],[1,-1],[1,-2],[0,-1],[0,-1],[1,-2],[-1,-1],[0,-1],[-1,0],[2,-1],[0,-1],[0,-1],[-1,1],[-2,0],[-10,2],[-10,2],[-1,-1],[12,-3],[3,0],[1,-1],[-2,-1],[-2,-1],[-1,-1],[-4,1],[-7,-3],[-1,-1],[1,0],[2,0],[2,2],[2,0],[8,0],[8,4],[1,-1],[-1,-3],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[-11,-4],[-2,-2],[0,-2],[0,-5],[-1,-1],[1,0],[1,0],[0,1],[0,1],[1,3],[0,1],[1,1],[0,1],[1,1],[1,0],[4,1],[2,1],[1,0],[3,2],[5,0],[1,0],[0,1],[1,2],[0,1],[1,-1],[2,1],[0,-1],[0,-1],[1,0],[2,1],[3,1],[2,0],[1,-1],[0,-1],[0,-1],[0,-2],[-2,-4],[-4,-4],[-2,-1],[-1,-1],[-1,-3],[1,-1],[0,-1],[0,2],[0,1],[1,1],[0,1],[2,1],[3,2],[2,1],[1,2],[2,3],[0,1],[-1,0],[0,2],[0,1],[2,5],[1,1],[1,0],[0,1],[2,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[1,1],[0,1],[1,1],[-1,1],[0,1],[1,1],[1,0],[2,-1],[1,-1],[1,-1],[0,-2],[0,-3],[-1,-1],[-1,-2],[0,-1],[-5,-2],[-1,-1],[0,-1],[0,-1],[1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-2,-1],[-3,0],[-2,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-3,-1],[-2,1],[-1,0],[0,-1],[7,-1],[1,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[1,-1],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-5],[1,0],[0,1],[1,0],[0,1],[0,2],[1,2],[0,1],[1,2],[-1,3],[0,1],[1,1],[2,0],[1,0],[2,2],[4,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[0,-2],[1,1],[1,2],[1,1],[-1,2],[0,1],[1,1],[1,2],[1,1],[0,2],[-1,2],[0,2],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[2,0],[0,-1],[1,-1],[1,0],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[1,-1],[0,-2],[2,-4],[1,0],[0,1],[0,1],[0,1],[-1,2],[-1,2],[-1,1],[0,1],[-1,3],[1,0],[0,1],[0,1],[1,0],[1,0],[2,1],[0,1],[0,1],[-1,3],[0,1],[1,1],[1,0],[1,0],[2,1],[1,0],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[1,-1],[1,1],[2,3],[0,1],[1,0],[2,0],[0,-1],[-1,-1],[1,-1],[0,1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-2],[-4,1],[-1,-1],[-1,-1],[1,0],[1,1],[4,0],[1,0],[0,-1],[2,1],[2,-1],[0,-2],[-1,-1],[-2,0],[2,-1],[4,-1],[2,-2],[-1,-1],[1,-1],[1,0],[0,-1],[1,-1],[2,-3],[1,-1],[0,-2],[-1,-1],[1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-4,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-2,3],[-1,1],[-3,0],[-1,1],[-1,1],[-2,1],[0,-1],[0,-1],[0,-1],[-1,-1],[-4,-1],[2,-1],[1,-1],[1,1],[0,2],[1,0],[1,0],[4,-1],[1,-1],[1,-1],[3,-5],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,1],[-1,0],[-1,-1],[-2,-1],[1,-1],[2,1],[9,0],[0,-1],[1,-1],[1,-1],[-2,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,1],[-1,-1],[-1,-2],[-1,-1],[-2,0],[-1,1],[-1,0],[-1,2],[-1,0],[-1,-1],[-2,0],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-3,1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[1,-1],[1,0],[1,1],[1,0],[1,1],[1,-1],[0,-2],[2,-2],[2,-2],[1,-1],[-1,0],[-2,-2],[-2,0],[-2,-3],[-2,0],[0,-1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[1,-1],[1,-2],[0,-2],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[3,2],[1,0],[1,-1],[0,-1],[1,0],[2,-1],[1,-1],[0,-1],[6,0],[1,-1],[-2,-1],[0,-1],[0,-1],[1,0],[2,0],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[1,-1],[3,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,1],[-1,0],[-3,-2],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,-1],[-1,1],[-1,0],[-3,0],[-1,1],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[-2,0],[-2,-1],[0,-1],[1,0],[2,1],[1,0],[0,-1],[1,-1],[0,-2],[0,-2],[1,0],[0,-1],[1,-1],[8,-1],[1,-1],[0,-1],[1,0],[1,0],[1,-2],[0,-1],[-2,0],[0,-1],[1,-1],[1,1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[2,-2],[0,-1],[-1,0],[-1,0],[-1,-1],[-3,-1],[-1,1],[1,1],[-1,0],[-1,-1],[-1,1],[-2,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[0,-1],[2,-2],[1,0],[1,0],[1,-3],[1,0],[1,-1],[0,-1],[-1,-1],[-2,0],[-1,1],[-4,2],[1,-3],[1,-1],[2,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,-1],[0,1],[0,2],[0,1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,3],[0,2],[-1,1],[0,1],[-1,0],[0,-1],[1,-1],[0,-2],[0,-2],[1,-2],[-1,-1],[-1,-3],[-1,0],[0,1],[-1,1],[0,1],[-4,1],[0,-1],[-1,0],[0,1],[-1,2],[0,1],[-2,3],[0,1],[-1,1],[0,2],[-2,4],[-1,2],[0,2],[-1,2],[0,1],[0,-1],[-1,0],[1,0],[-1,-1],[0,-1],[0,-2],[1,-2],[2,-6],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-2,1],[-3,-1],[-1,0],[-1,0],[-2,1],[0,-1],[1,-1],[0,-1],[2,1],[1,0],[1,-2],[1,0],[3,1],[0,-1],[1,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[-3,-1],[-1,1],[-1,3],[-1,1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,1],[-1,-1],[1,-1],[2,-1],[0,-1],[0,-1],[1,0],[1,0],[5,-3],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-4,3],[-2,1],[-1,-1],[6,-5],[1,0],[1,0],[-4,-1],[2,0],[0,-1],[-1,0],[1,-1],[2,-2],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[-2,0],[-1,-1],[1,-1],[2,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[-2,0],[-1,-1],[3,-1],[-1,0],[-1,0],[1,-1],[2,0],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[2,-1],[-1,-1],[-1,1],[0,-1],[0,-1],[0,-1],[-2,-2],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-2,0],[-2,1],[1,1],[0,1],[-1,0],[1,1],[1,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[2,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,1],[1,2],[-1,1],[0,1],[1,2],[1,3],[1,1],[-1,0],[-1,0],[-1,-1],[0,-2],[-2,-2],[0,-1],[-1,0],[-1,0],[-1,2],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,1],[-2,3],[0,1],[-1,-1],[-1,0],[1,1],[1,3],[1,1],[2,1],[1,1],[-1,1],[-3,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[-1,0],[-1,-1],[0,1],[2,2],[0,1],[2,3],[0,1],[0,1],[0,1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-3],[-1,-4],[-1,-2],[-1,-1],[0,2],[-1,0],[-1,0],[1,1],[-1,1],[1,2],[0,1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,2],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[1,-1],[1,0],[1,1],[1,1],[-3,1],[-3,-1],[-1,0],[1,1],[2,1],[2,1],[2,1],[1,1],[1,1],[3,0],[1,0],[0,-1],[1,1],[0,1],[1,3],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[-3,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,-2],[-1,0],[1,-2],[-1,0],[-1,0],[-1,1],[0,1],[-2,2],[0,1],[0,1],[0,1],[-1,1],[1,1],[1,0],[2,1],[3,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,0],[-1,1],[0,1],[0,1],[0,1],[2,0],[1,1],[-3,0],[-1,0],[0,-1],[-3,-6],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[0,1],[1,1],[0,1],[-3,-3],[-1,0],[0,2],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[1,-1],[2,1],[0,2],[1,0],[1,1],[2,1],[1,1],[2,0],[1,0],[1,1],[-1,0],[-5,0],[-2,-1],[0,-1],[-2,-2],[0,-1],[-1,0],[-7,1],[0,1],[1,4],[0,1],[1,1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,1],[0,1],[1,2],[0,2],[1,1],[2,3],[0,1],[0,1],[1,0],[1,1],[1,1],[1,0],[2,1],[1,1],[-1,0],[1,0],[1,1],[3,1],[1,0],[1,0],[3,-2],[-1,0],[1,0],[1,0],[0,1],[-1,1],[-1,0],[0,2],[-1,0],[1,1],[1,2],[0,2],[1,2],[0,3],[0,2],[1,2],[2,1],[2,3],[1,1],[2,0],[1,1],[1,1],[1,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[-2,-2],[-1,0],[-1,-1],[-3,-1],[-1,-2],[-1,-2],[-1,-1],[1,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-2,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-4,-2],[-1,0],[-1,0],[0,1],[-1,0],[0,-2],[0,-1],[-1,0],[-1,-1],[-1,0],[-10,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,3],[0,1],[-1,1],[0,1],[1,0],[1,1],[-1,1],[1,1],[1,0],[1,0],[4,5],[1,0],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[-1,0],[-1,1],[2,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-3],[0,-1],[0,-1],[-3,-5],[-1,0],[-2,-1],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-4,2],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,2],[0,-1],[1,1],[0,1],[1,0],[1,1],[0,2],[-2,-2],[-1,-1],[-1,1],[0,1],[-1,0],[-1,-1],[-1,1],[0,1],[-1,-1],[1,-1],[1,-1],[0,-1],[0,-2],[-1,0],[-2,0],[-1,1],[-1,2],[0,2],[0,1],[2,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[-2,0],[-1,0],[0,2],[1,1],[3,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,1],[1,0],[1,1],[0,2],[1,2],[-1,0],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[0,2],[0,2],[-1,1],[0,-1],[-1,1],[4,2],[0,1],[-1,1],[-2,-1],[-1,1],[-3,2],[-1,1],[-1,0],[0,-1],[5,-4],[-1,-1],[-1,-1],[-2,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,1],[-1,-1],[-1,0],[0,-1],[2,0],[0,-2],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[-2,1],[-1,1],[-1,1],[0,1],[0,1],[-2,-1],[0,-1],[-1,0],[-2,3],[0,1],[-1,0],[0,-1],[1,-1],[0,-2],[-1,0],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-2,1],[-1,0],[0,-1],[1,-1],[9,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,-2],[2,-1],[1,-1],[-1,-1],[0,-2],[1,-1],[0,-1],[-1,0],[0,-1],[-1,1],[-1,2],[-3,1],[0,1],[-1,0],[-1,0],[1,-1],[1,-2],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[2,-1],[0,-1],[0,-1],[-1,0],[-2,1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,2],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-3,1],[0,1],[-1,1],[0,2],[-1,-1],[0,-1],[-1,1],[0,1],[-2,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[1,-1],[1,-1],[2,-2],[2,-1],[0,-1],[1,-1],[4,-2],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-2,-1],[-1,-1],[-1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[-2,1],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-2],[-1,-1],[-1,2],[-1,0],[-1,-1],[-1,0],[0,1],[-1,1],[-1,0],[-1,2],[0,1],[0,-2],[0,-1],[1,-2],[-1,0],[-1,-1],[-1,-1],[-3,2],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[2,1],[-1,0],[-2,2],[-2,1],[-2,1],[-1,1],[0,1],[0,2],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[1,-2],[-1,0],[-1,0],[-1,1],[0,1],[0,3],[-1,1],[0,1],[-1,1],[-1,0],[0,-1],[1,-2],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-8,0],[-1,-1],[4,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,1],[1,1],[1,-1],[1,0],[1,0],[0,-1],[1,-2],[0,-1],[2,-1],[2,-2],[1,-1],[0,1],[-1,1],[0,1],[1,0],[0,1],[2,-1],[0,-1],[1,-1],[1,-1],[1,1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[-1,2],[-1,0],[-1,-2],[1,0],[1,-1],[1,-1],[-1,0],[-1,0],[-3,3],[-1,1],[0,1],[-1,0],[0,-1],[1,-2],[1,-1],[2,-1],[0,-1],[0,-1],[-1,0],[-1,2],[-1,-1],[0,-1],[-1,-1],[1,-1],[1,0],[2,1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[-1,-1],[2,-1],[1,-1],[1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[2,0],[1,0],[2,-1],[1,0],[1,1],[2,-1],[0,1],[0,1],[1,1],[1,-1],[-1,-1],[1,-1],[-1,-2],[-2,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,2],[-1,-1],[1,-1],[1,-1],[-1,-1],[0,1],[-1,0],[-2,-2],[1,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-2,-3],[0,-1],[1,0],[0,1],[0,1],[2,3],[1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[5,1],[1,0],[1,-1],[0,1],[0,1],[1,0],[0,1],[2,-1],[-1,0],[1,0],[3,-2],[0,-1],[1,-1],[-1,-1],[-2,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-2,1],[-1,0],[-1,-1],[1,-1],[1,0],[0,-1],[-2,0],[-1,1],[0,-1],[2,-2],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[1,0],[2,1],[1,0],[1,-1],[-1,-1],[-1,0],[1,0],[1,-1],[-1,-2],[0,-1],[-1,-1],[-5,0],[-1,-1],[-2,0],[0,-1],[1,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,-1],[2,-2],[1,0],[-1,-2],[0,-1],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,2],[0,-2],[0,-6],[0,-1],[-2,0],[-1,0],[0,-1],[-1,-2],[0,-1],[0,1],[2,1],[1,0],[1,0],[0,-2],[1,1],[1,1],[-1,1],[2,3],[0,1],[1,0],[1,2],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,0],[0,-2],[-2,1],[-1,-2],[1,0],[1,0],[2,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[-1,-1],[-2,-1],[2,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[2,1],[-1,1],[-1,1],[0,1],[0,1],[0,2],[1,4],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,1],[3,-1],[0,-1],[1,0],[1,-1],[-1,-2],[0,-1],[1,2],[1,0],[0,-1],[0,-2],[1,-1],[2,-1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[1,-1],[0,1],[1,1],[1,0],[1,0],[1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-4,0],[0,-1],[1,0],[3,0],[-1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[2,-1],[0,2],[0,2],[1,2],[1,3],[0,1],[2,2],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,-4],[1,-2],[1,-1],[1,0],[0,1],[-2,2],[0,2],[-1,1],[0,2],[1,0],[0,1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[-1,2],[0,2],[1,0],[0,-1],[1,0],[1,1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,1],[0,1],[1,1],[1,-1],[1,-1],[0,-1],[-2,-1],[0,-1],[0,-2],[0,-1],[0,-2],[1,0],[0,4],[1,1],[2,-1],[1,-3],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,-1],[0,-1],[-2,0],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[2,1],[3,0],[0,-1],[0,-1],[1,1],[1,2],[1,1],[1,0],[1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,1],[1,1],[1,1],[1,-1],[1,0],[-1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,1],[2,1],[1,0],[0,-1],[-2,-1],[1,-1],[1,1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-2,0],[-2,-1],[-1,0],[0,-1],[2,-1],[0,-2],[0,-2],[-1,-1],[-1,0],[-7,2],[-1,0],[-1,-1],[-2,0],[0,-1],[5,1],[1,-1],[1,-1],[-1,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[1,-1],[1,0],[4,1],[1,0],[0,-1],[-1,-1],[2,0],[1,-1],[0,-1],[-1,0],[-2,-2],[-1,-1],[1,0],[1,0],[1,1],[0,1],[1,0],[2,-2],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[-2,-3],[2,1],[1,0],[1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[1,0],[3,-1],[1,1],[3,-1],[0,-1],[0,-1],[-1,-1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,2],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-4,-2],[-1,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[1,-2],[0,-1],[1,0],[5,-2],[1,1],[1,-1],[0,-1],[4,-4],[0,-1],[1,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[-1,-1],[-1,2],[-1,-1],[1,-2],[2,0],[1,-3],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[1,-1],[3,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-2,1],[1,1],[-1,1],[0,1],[1,1],[-1,1],[-1,2],[0,4],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-2,1],[-1,1],[-1,1],[0,1],[-1,3],[-1,1],[-1,1],[-1,1],[1,0],[1,-1],[-1,2],[-1,1],[-1,0],[-1,0],[0,-1],[2,-3],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-2],[1,-1],[1,-2],[0,-1],[1,0],[-1,-1],[-1,-1],[-2,-1],[1,-3],[1,-2],[-1,-2],[0,-1],[-2,0],[0,-1],[1,0],[2,1],[0,-1],[-1,-1],[-1,0],[1,-1],[1,0],[1,0],[1,-2],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[-1,0],[0,-1],[1,-2],[-1,0],[-1,1],[-1,2],[0,1],[-1,1],[-1,0],[1,-1],[1,-2],[-1,-1],[-1,1],[-1,1],[-1,0],[1,-3],[3,0],[1,-1],[0,-1],[-1,-1],[-1,1],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[4,0],[1,-1],[1,0],[-1,-1],[0,-1],[2,0],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[2,-1],[1,-1],[0,-1],[-1,0],[0,1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[1,0],[1,-1],[1,0],[0,-2],[1,0],[0,1],[0,1],[1,0],[1,-3],[0,-1],[-2,1],[0,-1],[-1,-1],[0,-1],[-1,0],[-3,0],[-1,1],[0,1],[-2,1],[-1,2],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[1,-2],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[-1,-2],[1,-2],[1,-1],[1,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[2,-2],[1,-3],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-2,-2],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,2],[-1,5],[1,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,2],[1,1],[1,2],[-2,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,-2],[-1,-5],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-2,0],[-2,0],[-1,1],[0,2],[0,2],[0,1],[-1,0],[0,-1],[-1,1],[-1,1],[1,1],[0,1],[1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,-1],[0,-2],[0,-1],[1,-1],[-1,-1],[-2,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,1],[-1,2],[-1,1],[-2,0],[-1,1],[1,1],[1,1],[1,2],[0,1],[1,1],[0,1],[-1,0],[-1,-1],[-1,-2],[0,-1],[-2,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[0,2],[0,1],[-1,0],[0,1],[-2,1],[-1,1],[0,-1],[1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,1],[-1,-1],[0,1],[0,1],[-1,0],[-2,0],[-1,0],[0,1],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,2],[-1,2],[-1,1],[1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[1,2],[1,1],[-1,0],[1,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[2,-2],[1,0],[0,-1],[0,-1],[1,0],[-1,-2],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,2],[-1,0],[1,-1],[0,-1],[1,-1],[2,-2],[0,-1],[0,-1],[-1,2],[-2,1],[0,-1],[-1,1],[-2,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[0,1],[-1,0],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-2,1],[0,1],[0,2],[1,0],[1,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[1,3],[0,1],[0,1],[-1,-1],[0,-2],[0,-2],[-1,0],[1,-1],[0,-3],[-3,0],[0,1],[-1,1],[-1,1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,3],[-3,3],[0,1],[-1,2],[0,1],[0,2],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,2],[-1,1],[1,1],[-1,1],[-1,0],[-1,1],[0,2],[0,1],[-1,1],[-1,2],[1,1],[-1,0],[-1,-1],[-1,0],[0,2],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-2,2],[0,-2],[1,-2],[1,-1],[-1,-1],[1,-1],[1,-1],[0,-2],[0,-2],[0,-2],[1,-2],[0,-1],[2,-4],[1,-2],[0,-3],[-1,-2],[-1,0],[-1,2],[-1,1],[-1,0],[0,2],[0,1],[-1,1],[-2,3],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,-2],[-1,0],[0,1],[0,1],[-2,-1],[0,1],[1,0],[0,1],[-1,2],[0,2],[-1,1],[-1,0],[1,-2],[0,-2],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-2,2],[-1,0],[0,-1],[-1,0],[-4,4],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[-3,2],[-1,0],[-2,0],[0,-1],[2,-2],[1,-2],[2,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,-2],[1,-1],[1,-1],[2,-2],[0,-1],[2,-1],[1,0],[0,-1],[-1,0],[1,-2],[2,-1],[0,-2],[1,-2],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[2,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,-1],[2,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-2],[1,-1],[1,1],[0,2],[1,1],[1,0],[1,-3],[2,0],[2,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-2,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,1],[0,1],[-1,1],[2,2],[0,1],[1,0],[1,0],[1,1],[1,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[-1,-1],[0,-1],[0,-1],[1,1],[1,0],[1,-3],[1,0],[1,0],[0,-1],[-4,-1],[0,-1],[2,0],[1,1],[0,-1],[1,2],[1,0],[1,-2],[-1,-1],[-1,-1],[0,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-2],[1,0],[1,1],[2,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[1,0],[6,2],[1,-1],[-1,0],[0,-1],[0,-1],[2,1],[1,-1],[-1,0],[-1,-1],[1,0],[0,-1],[1,1],[1,0],[0,-1],[1,-2],[1,-1],[0,-2],[1,-1],[1,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[1,0],[1,1],[2,1],[1,0],[-1,-1],[-1,-1],[2,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,-1],[3,-4],[1,0],[-1,3],[-1,2],[1,0],[1,1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[-1,0],[2,-2],[4,-1],[0,1],[1,1],[1,-1],[1,-2],[0,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,2],[-1,1],[0,-1],[0,-1],[1,1],[0,-1],[1,-4],[0,-1],[1,0],[-1,-1],[-1,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-2,1],[0,-1],[-3,0],[-3,-2],[-2,2],[-2,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[1,1],[-1,1],[-2,0],[-2,2],[-1,0],[1,-1],[-1,-2],[-1,1],[-1,2],[-1,0],[0,-1],[-1,0],[-1,0],[-3,4],[0,1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-2,1],[-2,0],[-1,0],[-1,1],[-1,1],[-1,-1],[-1,-1],[-2,1],[-3,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-3,1],[-1,0],[-1,0],[0,1],[0,1],[-1,-1],[-13,2],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-3,1],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-4,4],[-3,4],[-1,3],[1,6],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,2],[-1,1],[0,1],[0,1],[1,0],[2,0],[-1,1],[1,0],[1,0],[0,1],[-2,0],[-1,0],[-1,1],[1,1],[1,1],[2,0],[1,0],[0,1],[-2,-1],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,2],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[-1,0],[1,-1],[-1,-1],[0,1],[-1,1],[0,1],[-1,-1],[-1,1],[-1,2],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,3],[-1,0],[-2,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-4,2],[-3,0],[-1,1],[0,-1],[-1,1],[-1,1],[1,0],[2,0],[1,0],[-1,1],[-2,1],[-1,0],[-1,-1],[-2,1],[-1,0],[0,1],[1,0],[2,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-2,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[3,-1],[0,2],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-2,0],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-3,0],[-1,1],[-1,-2],[0,-1],[0,-3],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-2,0],[-1,0],[0,2],[1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-2,0],[-2,1],[-2,2],[0,1],[0,1],[1,0],[-1,2],[-1,0],[-1,1],[1,0],[0,1],[2,0],[0,1],[-3,-1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-4,1],[-1,2],[0,-2],[-1,0],[-2,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[1,0],[1,-1],[0,-1],[0,1],[1,1],[2,-1],[2,0],[5,-1],[2,0],[1,1],[1,1],[0,1],[4,1],[0,1],[0,1],[1,1],[2,1],[1,2],[0,1],[-1,0],[1,1],[1,0],[-1,1],[-1,1],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[1,2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-2,0],[-1,0],[-1,1],[1,2],[1,0],[1,0],[-1,1],[-1,0],[-1,1],[1,1],[0,1],[0,1],[1,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[1,-2],[0,-1],[-1,0],[0,2],[-2,1],[1,0],[0,1],[0,1],[1,1],[-1,1],[-1,-1],[0,-3],[-1,0],[0,1],[0,1],[0,1],[-2,3],[-1,0],[-1,1],[1,1],[-1,1],[-1,-1],[-1,-2],[-1,-2],[1,0],[0,-1],[0,1],[1,1],[1,0],[0,-1],[1,1],[1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[0,1],[-2,-3],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,1],[0,4],[-1,1],[0,1],[1,1],[1,-1],[1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,3],[0,1],[1,0],[1,0],[1,2],[-2,-1],[-1,0],[-1,1],[0,1],[1,0],[-1,2],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-2],[-1,-1],[-1,-1],[-1,-1],[1,-1],[1,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[0,1],[0,1],[2,0],[0,1],[-1,0],[-2,2],[-1,1],[-1,0],[0,-1],[-1,0],[1,2],[0,1],[0,1],[-1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,2],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,-2],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-2,1],[-1,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-2,0],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[1,1],[-1,1],[-2,0],[0,2],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[-1,0],[1,-1],[0,-2],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[-1,2],[-1,0],[0,-2],[-1,0],[-1,0],[-1,2],[0,3],[1,1],[1,0],[0,-1],[1,0],[1,1],[1,1],[-1,1],[-1,-1],[-1,-1],[-1,1],[0,1],[1,0],[3,3],[1,2],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[1,-2],[0,-1],[1,-2],[-1,-2],[0,-1],[-3,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[1,0],[1,-1],[1,0],[0,1],[-1,1],[-1,0],[0,1],[1,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,2],[-1,1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[1,-1],[-1,-1],[-1,1],[-1,1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[1,0],[0,1],[0,1],[1,2],[-1,1],[-1,1],[-1,1],[3,-1],[0,-1],[1,0],[0,2],[-2,5],[1,0],[2,-2],[1,0],[0,1],[-1,1],[-2,2],[-1,0],[-1,0],[1,1],[3,0],[0,1],[-2,2],[0,1],[0,2],[0,1],[1,2],[0,1],[-1,1],[-1,1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,2],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-3],[0,-1],[-1,0],[-1,2],[-1,1],[1,-2],[0,-1],[1,-1],[1,-1],[-1,-2],[-1,0],[0,1],[-1,2],[1,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-2,2],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,3],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-2,0],[0,-1],[0,-1],[-2,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,2],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-2,0],[0,-2],[1,0],[2,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[4,-4],[3,-5],[-1,-1],[-1,0],[-1,1],[-1,-1],[-1,0],[2,-1],[1,0],[0,-1],[0,-1],[-1,1],[-1,1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,1],[-1,1],[-1,1],[-1,1],[0,-1],[-1,-1],[0,1],[-1,1],[-3,2],[-1,1],[0,1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,2],[-1,0],[-1,2],[-1,0],[-2,0],[0,1],[0,1],[-2,0],[-1,0],[-1,1],[-3,2],[0,1],[-1,-1],[0,-1],[1,-1],[1,-1],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-2],[1,-1],[1,-1],[-1,0],[-2,1],[0,-1],[1,-1],[-1,0],[0,1],[-4,2],[0,1],[-1,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[1,0],[2,-3],[0,-1],[-1,0],[-2,1],[0,-1],[-1,1],[-1,0],[-1,0],[0,2],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,-1],[-1,0],[0,-1],[1,0],[-1,-1],[-2,1],[-1,-1],[-2,0],[-1,0],[1,-1],[1,-1],[0,-1],[2,1],[1,-1],[0,-1],[-3,-1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,-1],[1,0],[1,0],[0,-1],[1,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-2,1],[0,-1],[-1,1],[-1,-2],[-2,0],[1,1],[-1,0],[-1,0],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-2,0],[1,0],[0,1],[-1,0],[1,0],[-1,1],[-1,0],[-2,2],[-1,-1],[-1,0],[-2,2],[0,1],[-1,0],[0,-1],[-2,-1],[-4,-2],[-1,0],[0,1],[1,2],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[1,0],[1,1],[0,1],[-1,0],[0,-1],[-3,0],[0,1],[0,1],[1,1],[-2,0],[-2,2],[-1,0],[1,-2],[0,-2],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-2,0],[0,1],[-1,1],[0,1],[1,-1],[0,1],[1,0],[0,1],[-2,0],[-1,-1],[-1,0],[-1,1],[0,1],[1,1],[0,1],[-2,2],[-1,1],[0,2],[0,1],[-2,0],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[-1,1],[-3,0],[1,0],[2,1],[0,2],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,3],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[2,1],[2,1],[2,1],[1,1],[1,1],[1,0],[0,1],[1,1],[2,-1],[1,0],[2,1],[1,1],[1,0],[1,1],[0,1],[-2,3],[-1,2],[-1,2],[-1,1],[0,1],[1,3],[0,1],[4,-2],[1,2],[-1,1],[-2,3],[-1,1],[1,1],[4,0],[-1,0],[0,-1],[2,0],[2,-1],[1,-1],[0,-1],[4,0],[0,1],[1,0],[3,0],[1,-1],[0,-1],[3,1],[8,-5],[7,-4],[1,0],[1,0],[1,0],[1,-2],[1,0],[1,0],[1,-1],[2,0],[0,-1],[1,0],[0,-1],[0,-2],[1,-1],[0,-1],[2,-1],[2,-1],[1,0],[1,-1],[2,-2],[0,-1],[0,-2],[1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,1],[-1,-1],[1,-1],[1,-1],[-1,0],[1,0],[0,-2],[0,-1],[0,-1],[1,0],[2,0],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[1,0],[-1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,2],[-1,1],[0,1],[0,1],[-1,0],[0,2],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,1],[0,1],[-1,0],[0,-1],[-2,-2],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[2,0],[0,1],[0,2],[1,1],[1,0],[1,0],[-1,2],[1,0],[1,-1],[2,-1],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,2],[0,1],[1,1],[0,2],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,2],[-1,2],[-1,3],[-1,1],[-1,2],[-3,1],[-1,1],[0,-1],[-1,0],[0,1],[1,1],[-1,2],[-2,1],[-3,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[7,-1],[1,1],[0,1],[1,0],[1,-1],[0,-1],[-1,0],[1,-2],[1,-1],[7,0],[2,-1],[1,0],[1,1],[1,0],[1,2],[0,2],[0,1],[0,2],[-1,1],[0,1],[1,0],[1,0],[2,-2],[0,1],[1,0],[2,1],[1,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[1,-2],[2,0],[1,1],[2,3],[1,0],[1,1],[1,1],[0,3],[1,1],[0,1],[3,0],[1,1],[-1,0],[0,1],[0,1],[1,0],[1,1],[1,-1],[1,1],[0,-1],[0,-1],[2,-1],[2,2],[3,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,-1],[1,0],[1,0],[-1,2],[0,1],[-1,2],[-1,4],[-2,2],[1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[1,1],[1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-2,2],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-2,3],[-1,2],[-2,2],[-1,2],[-1,0],[1,0],[-6,7],[-1,2],[0,1],[0,1],[0,1],[1,2],[3,3],[7,5],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,2],[1,0],[2,3],[7,6],[1,1],[1,3],[0,2],[1,1],[0,1],[1,0],[1,1],[1,1],[2,1],[1,1],[1,1],[3,0],[1,0],[0,2],[-1,1],[0,3],[1,3],[1,3],[1,2],[1,1],[1,5],[0,2],[2,2],[2,0],[5,1],[2,1],[2,1],[2,3],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[1,1],[-3,2],[-2,2],[1,2],[-1,1],[0,3],[-1,2],[0,1],[0,1],[-2,2],[0,1],[2,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-2,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,-1],[0,1],[-1,2],[-1,1],[1,1],[0,1],[-1,0],[-1,0],[1,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,3],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,-1],[-1,1],[0,1],[0,-1],[-1,0],[0,1],[1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,2],[-2,0],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,1],[1,1],[2,0],[-1,1],[-1,1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,0],[-1,0],[0,-1],[-2,-2],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,1],[-1,1],[1,1],[1,0],[1,1],[-2,0],[-2,0],[0,1],[-3,2],[-1,0],[0,2],[-1,1],[0,1],[-1,1],[1,1],[0,1],[1,2],[0,1],[1,1],[2,0],[0,1],[1,1],[-1,1],[-2,2],[2,0],[0,1],[1,2],[-1,0],[-2,0],[3,2],[0,1],[-2,0],[0,1],[1,1],[-2,0],[-2,2],[-1,-1],[-1,0],[-1,1],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[1,-2],[0,-1],[1,0],[1,0],[1,-2],[0,-1],[1,-1],[0,-1],[1,0],[1,-3],[1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,1],[1,1],[0,1],[-4,0],[-1,-1],[-1,0],[0,1],[-1,0],[-3,1],[-1,0],[0,1],[0,1],[-1,1],[-2,1],[-1,2],[0,1],[0,1],[0,1],[-1,0],[-2,3],[-2,0],[0,1],[0,1],[0,1],[0,1],[3,0],[1,1],[0,1],[1,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[1,0],[1,0],[1,-1],[-1,-1],[-5,-1],[0,1],[-2,0],[-1,1],[-1,0],[1,1],[2,0],[1,1],[-1,0],[2,1],[2,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-2,0],[-4,-1],[-4,-1],[1,1],[4,1],[1,0],[-2,1],[-3,-2],[-1,1],[5,2],[-2,0],[-1,-1],[-1,0],[0,1],[2,2],[0,1],[6,1],[-2,-1],[0,-1],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[-2,0],[-2,2],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-2],[-1,-1],[-1,-2],[0,-1],[-2,0],[-1,2],[-2,1],[-2,3],[-1,0],[0,2],[-1,1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-2],[2,-2],[-2,-2],[-1,-1],[-4,-2],[-2,-2],[-4,-1],[-1,-2],[-1,-1],[-8,-6],[-6,-1],[-3,0],[-1,4],[0,2],[3,4],[1,2],[0,2],[-1,1],[-1,-1],[-1,1],[0,2],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,2],[1,0],[1,1],[4,2],[7,-1],[1,-1],[1,-2],[1,0],[2,0],[0,1],[1,0],[2,2],[1,1],[1,1],[1,1],[2,0],[1,0],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[-1,5],[0,1],[-3,4],[-1,1],[-2,1],[-2,1],[-1,1],[-1,1],[0,1],[-3,0],[-3,2],[-1,1],[-4,-2],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[-4,4],[-1,2],[0,1],[0,2],[1,1],[1,0],[3,3],[0,1],[2,-1],[1,-1],[3,-1],[1,0],[-1,1],[1,1],[1,1],[-5,0],[-1,1],[-1,1],[1,0],[-1,1],[-1,-1],[-4,0],[-1,0],[0,-1],[3,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-3],[-1,0],[-4,1],[-1,1],[0,1],[1,1],[1,0],[0,1],[-1,-1],[-2,0],[-1,-2],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,-1],[-1,0],[-2,2],[1,2],[1,0],[3,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[-1,0],[0,-1],[-1,-1],[2,1],[1,0],[2,2],[0,1],[0,1],[-1,1],[-1,-1],[-1,0],[0,2],[0,2],[1,0],[2,0],[1,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-5,0],[1,1],[0,1],[1,1],[-2,-1],[-1,0],[-1,-2],[-2,1],[-2,0],[-1,0],[1,2],[5,3],[2,1],[1,1],[-2,0],[-4,-2],[-1,-1],[-2,0],[0,-1],[-1,0],[-4,-1],[0,-1],[-4,-2],[1,0],[2,1],[1,-1],[-1,0],[1,-1],[1,0],[1,-1],[-1,0],[-2,0],[0,-1],[0,-2],[-1,-1],[-1,0],[-1,1],[0,2],[-1,2],[0,1],[0,2],[0,3],[0,3],[0,2],[-1,2],[1,2],[0,1],[0,2],[0,2],[0,1],[-1,3],[1,2],[-1,1],[-1,1],[-1,2],[0,1],[-1,0],[0,-1],[-1,1],[-1,1],[-1,-1],[-2,-2],[-1,0],[-1,0],[-1,2],[-1,0],[-1,0],[1,-1],[0,-1],[0,-1],[-2,0],[-1,0],[1,1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,2],[-1,2],[-2,2],[1,1],[1,0],[0,1],[1,-1],[1,1],[-2,1],[-2,0],[-1,0],[0,-1],[1,-1],[-1,-1],[-2,3],[0,1],[0,1],[-1,0],[-2,3],[0,1],[0,1],[-2,0],[-1,0],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,2],[1,1],[-1,0],[-1,1],[1,0],[1,0],[0,1],[-1,1],[0,-1],[0,1],[4,0],[2,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[3,2],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[-1,1],[-1,1],[0,2],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-2,-2],[-1,-1],[0,-1],[1,-1],[3,1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,2],[1,1],[1,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[1,-1],[0,-1],[0,-2],[-1,0],[-1,1],[-1,1],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[2,-2],[1,0],[0,-1],[1,1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[2,0],[1,1],[0,1],[1,0],[2,-1],[1,-1],[0,-1],[2,-3],[3,-4],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-2],[-1,0],[-1,1],[-1,0],[-7,0],[-8,-1],[-7,-2],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-2,-2],[-1,0],[-1,0],[0,1],[0,1],[1,1],[-1,1],[-4,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-5,4],[-7,0],[-2,2],[-2,-1],[-2,0],[-1,0],[0,2],[-2,-1],[-1,0],[-1,1],[-10,1],[-1,1],[-3,1],[-1,0],[0,-1],[0,-1],[0,-1],[2,-1],[3,-1],[1,-1],[2,-2],[0,-1],[1,0],[1,0],[1,2],[1,0],[3,-3],[1,-1],[1,-2],[0,-1],[0,-1],[1,0],[1,-1],[2,-2],[5,-5],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,-2],[-1,0],[0,1],[0,1],[-4,2],[-1,2],[-1,2],[-2,1],[-1,1],[-1,0],[-1,2],[-1,0],[-2,2],[-1,1],[-2,0],[0,1],[-1,0],[0,1],[1,1],[-1,1],[-3,-1],[-1,1],[-5,4],[-1,0],[0,1],[-4,5],[-2,0],[-2,2],[-1,-1],[-1,2],[-1,0],[-2,0],[-1,1],[-1,0],[0,1],[-1,-1],[-1,1],[-1,1],[-7,3],[-2,3],[-1,1],[-1,0],[-1,0],[5,-5],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[2,-1],[11,-6],[3,-3],[2,0],[3,-4],[0,-1],[1,0],[1,-1],[0,-1],[3,0],[1,-1],[1,-1],[-2,-2],[0,-1],[1,0],[0,-1],[-2,1],[-1,-1],[0,-1],[-3,-1],[0,1],[-1,1],[-1,0],[0,-1],[-1,-2],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[-3,2],[-1,0],[0,1],[1,0],[-1,1],[-1,0],[0,-1],[0,1],[1,0],[2,-1],[0,1],[-3,2],[-2,0],[-1,-1],[0,-1],[-6,4],[0,1],[-1,1],[-1,0],[-1,-1],[-1,1],[-2,1],[-1,1],[-3,3],[-1,0],[0,1],[-3,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-3,-3],[-3,0],[-3,-2],[-3,0],[-9,2],[-1,1],[-1,-1],[-8,1],[-4,1],[-5,0],[-1,1],[-2,0],[-1,1],[0,1],[-1,2],[2,1],[1,1],[-1,1],[-1,-1],[-1,-2],[-2,-1],[-5,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,-1],[-2,1],[-8,-1],[-1,0],[-1,-2],[1,-1],[1,0],[1,1],[5,1],[2,-1],[1,-1],[2,-1],[2,0],[3,-3],[-10,2],[-4,-2],[-1,0],[-7,4],[-7,4],[-7,8],[0,1],[-1,1],[0,1],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,4],[1,0],[4,2],[1,1],[1,1],[0,1],[-1,1],[-1,1],[-1,0],[1,-2],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-2,-2],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-6,0],[-1,1],[0,1],[1,1],[2,1],[1,0],[-1,1],[-3,-1],[-1,2],[2,0],[-1,1],[-2,0],[-1,1],[1,0],[1,1],[0,1],[-1,0],[-2,0],[-3,-2],[0,-2],[-1,0],[-2,-1],[0,-1],[1,0],[1,0],[4,0],[1,0],[1,-2],[0,-1],[-1,-1],[1,0],[0,-1],[-1,-1],[1,0],[-1,-1],[-12,2],[-1,1],[-9,1],[0,-1],[0,-1],[4,-1],[1,0],[0,-1],[-4,-2],[-3,-1],[-2,1],[0,1],[1,0],[-1,0],[-3,2],[-3,0],[-1,1],[-1,1],[-1,1],[1,1],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,-2],[1,-1],[1,1],[2,1],[-1,0],[-2,1],[-5,4],[-5,2],[-2,2],[-1,-1],[-7,2],[-2,1],[-4,4],[-1,2],[-2,5],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-4,4],[-1,1],[-1,2],[-1,4],[-1,2],[1,1],[1,0],[2,1],[3,0],[0,1],[0,1],[-1,1],[-3,1],[-3,4],[-1,0],[-1,1],[0,1],[-1,1],[9,-1],[1,-1],[-1,-1],[2,-1],[1,-1],[6,2],[1,-1],[1,0],[1,0],[2,1],[2,0],[1,0],[1,-1],[4,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[12,-1],[2,1],[1,0],[2,0],[1,1],[2,-1],[1,0],[1,0],[5,0],[1,2],[1,1],[0,1],[2,0],[4,-1],[1,0],[1,0],[-1,1],[-8,2],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[-1,0],[-2,1],[-1,1],[-3,1],[-1,1],[-2,1],[-2,3],[-1,1],[1,2],[0,1],[0,1],[-1,1],[-1,0],[-3,-2],[-2,-2],[-1,0],[-2,1],[-9,1],[-3,0],[-11,2],[-11,2],[-11,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[1,0],[1,1],[0,1],[-1,2],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[2,2],[1,1],[0,1],[1,1],[1,0],[-1,1],[0,1],[1,0],[0,1],[-1,0],[-2,2],[1,1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-2,1],[-1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,2],[-1,0],[1,0],[0,1],[1,1],[-1,2],[6,4],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[2,1],[0,2],[-1,0],[-1,0],[-3,-2],[0,1],[-2,1],[-1,0],[-1,1],[1,1],[-1,1],[0,1],[-1,1],[0,1],[1,0],[-1,3],[0,1],[0,1],[1,2],[1,1],[1,0],[0,1],[-1,1],[-1,1],[1,1],[0,-1],[1,0],[2,0],[-3,0],[0,1],[0,1],[2,0],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,3],[0,1],[1,0],[1,0],[1,0],[1,-1],[1,1],[0,1],[0,1],[0,1],[2,0],[1,0],[-1,1],[-2,1],[-1,2],[1,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[2,0],[2,-1],[0,-1],[1,1],[1,0],[1,-1],[1,0],[-1,2],[1,0],[1,0],[-1,1],[-2,0],[-1,1],[-1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[-1,1],[1,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,-1],[1,0],[-1,0],[0,1],[-2,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[2,0],[-1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[3,0],[2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[3,2],[1,1],[1,0],[1,0],[0,-1],[2,0],[3,0],[1,0],[-1,1],[-5,2],[-1,0],[1,1],[2,2],[1,2],[1,2],[3,2],[2,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,2],[11,9],[4,2],[3,2],[5,2],[4,1],[4,1],[4,2],[8,1],[4,2],[4,1]],[[2227,9319],[1,-2],[1,0],[1,-1],[0,-1],[5,-1],[1,0],[1,-2],[1,0],[1,0],[1,-2],[4,-2],[0,-1],[0,-1],[-1,-1],[1,-1],[1,0],[0,1],[0,2],[1,1],[0,1],[1,0],[1,-1],[4,1],[2,0],[1,-1],[1,0],[0,1],[1,0],[1,1],[1,0],[2,1],[2,0],[12,2],[1,1],[2,1],[1,1],[0,2],[1,1],[4,1],[1,0],[-1,-1],[-1,-1],[-1,-1],[1,-1],[1,0],[2,2],[2,1],[1,-1],[4,-2],[5,0],[2,-1],[1,-1],[2,-4],[1,-1],[2,-1],[1,0],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-4,-3],[-1,-1],[-1,-1],[-1,0],[-4,2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-3,2],[-2,0],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,1],[1,1],[2,1],[1,-1],[1,-1],[1,0],[3,0],[1,0],[1,-2],[-1,0],[-2,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-8,-4],[-2,0],[-1,0],[-1,-1],[-3,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-9,-8],[-1,-2],[-3,-3],[-2,0],[-2,-2],[-1,-1],[1,0],[1,0],[0,-1],[-1,-2],[1,0],[1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,0],[0,1],[2,2],[1,2],[1,1],[3,2],[1,1],[1,0],[1,1],[1,0],[3,0],[1,0],[5,0],[11,-6],[1,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-3,0],[0,-1],[4,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-2],[1,-1],[-1,0],[-2,-2],[0,-1],[-2,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[4,4],[6,3],[2,0],[1,2],[1,0],[-1,1],[2,0],[0,-1],[1,-1],[-1,-1],[-1,-1],[0,-1],[4,-3],[-1,-2],[1,-1],[0,-2],[1,0],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-4,-3],[-1,0],[-1,1],[-4,0],[1,-1],[3,-1],[2,-1],[1,-1],[1,1],[1,-1],[-1,-1],[-1,0],[1,-1],[1,0],[0,-1],[0,-2],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-9,-3],[1,0],[2,0],[2,-1],[1,-1],[4,2],[0,-1],[0,-2],[0,-2],[-1,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[1,-1],[2,1],[1,1],[2,1],[1,0],[0,-1],[0,-1],[-1,-5],[-1,-1],[-1,-1],[-3,-1],[-1,1],[1,1],[0,1],[1,0],[-1,1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,-3],[-1,-1],[-1,-2],[0,-1],[-4,-2],[-2,-1],[-4,-2],[0,-1],[-7,0],[0,1],[-1,0],[-1,1],[-4,1],[-1,0],[-1,0],[-3,0],[-1,0],[-3,0],[0,1],[-3,3],[0,1],[0,1],[0,3],[1,2],[2,4],[1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[-3,-4],[-1,-2],[0,-3],[0,-1],[1,1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-2],[1,-1],[1,0],[1,0],[0,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[0,-1],[-3,-2],[-3,-3],[-1,0],[-2,-3],[-4,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-4,5],[0,1],[-1,0],[-1,0],[-2,-2],[-1,0],[-2,-1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,2],[-1,2],[-2,2],[1,0],[0,1],[0,1],[0,1],[-3,2],[-2,1],[-1,1],[0,2],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[-1,3],[-5,1],[-1,0],[-1,1],[0,1],[-1,2],[-1,1],[-3,2],[-1,1],[-1,3],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,2],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-4,2],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[1,-1],[-1,0],[-1,-1],[0,1],[-2,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-2,1],[-1,2],[-1,1],[-2,-1],[-2,-2],[-1,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,1],[1,0],[0,1],[-1,1],[0,1],[-2,1],[-1,0],[-1,0],[-1,-1],[-1,0],[1,0],[-1,1],[0,-1],[-1,1],[-2,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[-1,1],[1,0],[2,0],[1,0],[-1,1],[-1,0],[-2,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-2,2],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,2],[-1,-1],[0,1],[-1,0],[0,1],[-6,4],[-1,2],[-1,1],[-1,1],[0,1],[0,1],[1,1],[-1,0],[-1,2],[1,1],[-1,1],[1,1],[2,2],[2,4],[0,1],[0,1],[0,1],[0,2],[1,1],[1,1],[0,1],[1,1],[3,0],[1,1],[-1,0],[0,1],[2,0],[1,0],[0,1],[2,-1],[2,1],[1,0],[1,0],[3,1],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[-2,0],[2,-3],[1,-1],[1,-1],[1,-1],[0,1],[0,1],[1,1],[1,0],[-1,-1],[0,-1],[1,-1],[1,0],[0,-2],[1,-2],[1,-1],[-1,-1],[1,0],[1,-1],[1,0],[1,0],[-1,1],[1,0],[1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[2,-2],[1,-1],[4,0],[2,-1],[1,-1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,1],[1,1],[-1,0],[-1,1],[0,1],[1,1],[0,-1],[2,0],[5,0],[2,0],[0,-1],[1,1],[0,-1],[1,0],[1,1],[1,1],[1,1],[0,1],[0,3],[0,1],[-1,0],[-1,1],[-1,0],[1,1],[0,1],[-1,2],[1,2],[-1,0],[-1,0],[-1,0],[2,3],[-1,1],[1,1],[0,1],[1,-1],[-1,1],[1,0],[0,-1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-2],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[-1,1],[1,0],[1,0],[0,-2],[-2,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,1],[2,1],[2,-1],[0,1],[0,1],[0,1],[1,1],[-1,1],[1,0],[-4,2],[0,1],[1,0],[1,0],[-1,1],[1,1],[-1,0],[0,1],[0,1],[-2,-1],[0,1],[0,1],[1,1],[-1,1],[-2,-1],[-1,1],[1,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[-1,1],[-2,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-2,1],[1,1],[-1,1],[-2,1],[0,1],[1,1],[0,1],[2,0],[-1,0],[1,1],[1,0],[0,1],[-1,0],[-1,1],[2,1],[1,0],[-1,1],[1,1],[1,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[1,-2],[1,0],[2,0],[0,-1],[-1,0],[3,-2],[1,-1],[5,1],[1,1],[-1,0],[-3,0],[-2,1],[-1,1],[-2,2],[-1,1],[-1,1],[0,2],[-1,0],[-1,2],[-1,1],[-2,2],[-1,0],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[1,0],[-4,0],[-5,-3],[-6,-2],[-3,2],[-2,1],[0,1],[0,1],[-1,0],[-6,2],[-1,1],[0,2],[0,1],[-3,0],[-1,2],[-2,0],[-1,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[1,-1],[1,0],[0,1],[1,0],[1,3],[1,0],[0,1],[1,0],[1,0],[2,0],[1,0],[0,2],[1,1],[7,0],[1,0],[1,0],[0,-1],[2,-1],[0,-1],[2,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[3,0],[1,-2],[1,-1],[1,0],[0,2],[-1,1],[-3,2],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-2,0],[-1,0],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[0,1],[0,1],[-2,0],[-2,0],[-1,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[1,1],[2,1],[1,1],[-1,0],[-1,0],[1,2],[1,1],[2,0],[0,1],[1,0],[1,-1],[2,0],[1,0],[1,1],[0,1],[1,1],[6,-1],[4,-2],[3,-1],[3,-2],[0,-1],[1,-1],[1,0],[0,1],[-1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-2],[-1,1],[-1,-1],[-2,-2],[-1,-1],[-5,1],[0,1],[-1,0],[0,2],[1,1],[1,1],[2,1],[1,1],[2,0],[1,0],[5,-1],[0,-1],[0,-1]],[[2287,9331],[-1,-3],[-3,-4],[-3,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-7,-1],[-8,-2],[-1,2],[-1,0],[0,-2],[1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,-1],[-5,1],[-1,1],[1,1],[9,-1],[0,1],[-1,1],[-1,0],[-10,0],[-3,1],[-2,1],[0,2],[1,1],[8,2],[3,-1],[1,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[4,0],[2,2],[1,0],[6,0],[10,5],[12,1],[1,0],[1,-1],[0,-2]],[[2423,9332],[1,0],[2,1],[4,-2],[2,-1],[2,-1],[1,-1],[2,-3],[-1,-1],[-1,-2],[6,0],[0,1],[0,2],[2,0],[1,1],[5,2],[1,-1],[6,1],[6,-1],[10,-1],[10,-3],[8,-3],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[-1,-3],[-1,-1],[-1,1],[0,1],[-1,0],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,-2],[-2,-3],[0,-1],[-1,-2],[-3,-3],[-1,-1],[-4,-6],[-2,-1],[-2,0],[-1,0],[0,1],[-1,0],[1,-2],[1,-2],[0,-1],[-3,-3],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-2,-1],[-1,-2],[-1,-3],[0,-1],[-1,-1],[-1,0],[-2,0],[-2,-1],[-4,0],[-1,-1],[8,-1],[0,-1],[-3,-5],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,0],[0,-1],[0,-2],[-3,-4],[-1,-2],[-1,-3],[-1,-1],[-4,-3],[-1,-1],[-1,-2],[0,-1],[-2,-1],[-6,-1],[-3,1],[-3,0],[-1,1],[-12,2],[-1,1],[-1,0],[-2,0],[-1,0],[-1,2],[-1,0],[-1,-1],[-2,0],[-3,0],[-2,-1],[-8,-1],[-8,0],[-2,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,1],[1,1],[1,0],[5,-2],[4,0],[1,1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[3,-1],[1,-1],[2,-2],[2,-4],[1,-3],[-1,0],[1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,-4],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-3,-1],[-1,-2],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,1],[-1,-3],[1,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-2,1],[-2,0],[-2,2],[-6,-1],[-1,0],[-1,0],[-3,0],[-11,-3],[-1,0],[0,1],[2,0],[0,1],[-3,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,2],[-3,0],[0,1],[1,0],[1,0],[1,0],[1,1],[8,2],[-2,1],[-7,-2],[-2,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,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[2,0],[-2,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[-1,2],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[-1,2],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-2,0],[-2,1],[1,2],[-1,0],[0,1],[1,0],[2,0],[-1,0],[-1,2],[0,1],[-1,0],[-1,0],[-1,1],[0,2],[0,2],[0,2],[1,2],[1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,2],[0,1],[1,0],[2,0],[1,0],[-1,1],[0,1],[-1,0],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,3],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[-2,1],[1,0],[1,0],[0,1],[-1,1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,0],[-1,2],[-1,1],[-2,1],[1,2],[-1,1],[0,1],[1,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[2,1],[3,2],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,-1],[4,-5],[2,-1],[6,-2],[5,1],[-1,2],[-5,0],[-2,2],[-2,2],[0,1],[-1,0],[-1,1],[-1,1],[0,2],[4,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,-1],[-2,1],[-1,1],[-1,1],[-1,1],[0,2],[0,2],[0,2],[1,1],[1,2],[6,1],[2,1],[3,1],[1,1],[2,2],[1,0],[2,-1],[5,1],[1,0],[0,1],[1,1],[13,1],[1,-1],[1,-3],[1,-1],[1,0],[1,1],[-1,1],[1,1],[-1,1],[1,2],[2,1],[6,0],[5,0],[7,-2],[6,-1],[1,0],[0,-2],[0,-1]],[[1623,9365],[4,-2],[4,0],[1,0],[1,-1],[2,-1],[3,-2],[1,-2],[0,-2],[1,0],[1,0],[10,-5],[11,-5],[5,0],[1,-1],[2,-2],[9,1],[1,-1],[-1,0],[-2,0],[-1,0],[0,-2],[-1,-3],[-3,-4],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,1],[0,1],[-1,1],[1,2],[0,1],[3,1],[1,2],[1,2],[1,2],[1,1],[1,0],[2,-1],[4,1],[2,-2],[1,0],[0,-1],[1,-2],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[1,1],[2,1],[2,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,2],[1,1],[0,1],[1,0],[1,1],[0,2],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[2,1],[3,1],[2,1],[2,0],[2,1],[9,1],[9,-1],[9,-2],[8,-5],[8,-5],[6,-7],[7,-6],[1,-1],[0,-1],[3,-1],[2,-2],[5,-5],[2,-2],[5,-3],[2,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,-2],[2,-2],[1,-2],[1,-1],[0,-1],[1,-2],[-1,0],[0,-1],[-2,0],[0,-1],[-1,-2],[-3,0],[0,-1],[-1,-1],[-5,-3],[-6,-2],[-6,-3],[-7,-2],[-1,-1],[-6,-3],[-2,-2],[-2,0],[-2,-2],[-2,-2],[-4,-1],[-2,-2],[-5,-1],[-8,-5],[-2,-1],[-3,-3],[-4,-2],[-1,-1],[-6,-2],[-5,-3],[-1,-1],[0,-2],[-1,-1],[-2,0],[-4,-1],[-1,0],[-4,-4],[-6,-3],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-2],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-2],[-6,-3],[-3,-3],[-1,0],[-1,0],[-2,0],[-2,0],[-5,1],[-1,0],[2,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[-3,-5],[-1,-1],[-1,-1],[-2,-1],[0,-3],[1,-2],[1,-1],[0,-1],[-1,0],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[-3,-7],[-3,-3],[-4,-2],[-6,-3],[-6,-1],[-6,-2],[-5,1],[2,2],[-1,2],[-1,1],[-1,0],[-2,0],[-1,-1],[-3,-3],[-2,-4],[-1,-1],[-3,-3],[-1,-2],[-1,-1],[-3,0],[-2,-1],[-2,-1],[-7,-4],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-9,0],[-1,1],[-3,2],[-3,4],[-2,5],[-3,10],[-2,5],[-1,2],[-2,2],[-2,1],[-1,1],[0,1],[-3,6],[-3,3],[-9,4],[-8,3],[-6,4],[-2,2],[-8,4],[0,1],[6,1],[0,-1],[1,-1],[1,0],[0,1],[0,1],[-2,1],[-7,0],[-8,-1],[-6,-1],[-3,1],[2,0],[1,1],[1,1],[0,2],[0,2],[1,1],[0,1],[0,1],[-1,1],[-1,0],[1,2],[1,2],[2,1],[2,-1],[0,1],[-2,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[2,-1],[0,1],[2,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,2],[-1,1],[-1,0],[1,1],[2,0],[0,1],[1,2],[0,1],[1,1],[2,0],[1,1],[3,4],[1,0],[1,0],[1,0],[-1,2],[1,1],[-2,0],[-1,0],[-1,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[0,1],[-2,-1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-2,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[5,3],[2,-1],[3,2],[2,1],[1,0],[0,1],[-1,1],[1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-3,0],[1,-1],[-1,0],[-1,0],[-2,3],[-1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[3,1],[1,1],[-1,0],[0,1],[0,1],[2,3],[0,1],[1,3],[2,3],[0,1],[2,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[3,1],[0,1],[1,1],[2,0],[1,1],[0,1],[2,1],[1,1],[-1,2],[1,1],[0,1],[0,1],[-1,1],[0,2],[1,0],[1,1],[3,2],[1,0],[1,0],[0,1],[0,1],[0,1],[2,1],[-1,2],[-1,2],[0,1],[-1,1],[-8,0],[-1,1],[-1,1],[0,1],[0,1],[1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[1,0],[0,1],[-1,2],[0,1],[-1,1],[-1,0],[-1,1],[1,0],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-2,-1],[-1,1],[1,1],[2,2],[-2,1],[-2,-1],[-1,1],[0,1],[2,0],[8,2],[5,1],[3,-1],[1,1],[-1,1],[1,0],[10,1],[1,1],[6,0],[5,1],[9,0],[10,1],[6,1],[8,2],[9,3],[6,1]],[[2298,9368],[0,-2],[-1,-1],[-2,-3],[-1,-1],[-1,1],[-1,-1],[-4,-3],[-2,0],[-1,1],[-1,0],[-1,1],[1,2],[4,2],[0,1],[0,1],[2,1],[1,1],[-1,0],[1,1],[2,1],[2,0],[3,-2]],[[2351,9367],[2,-3],[1,-2],[-2,-1],[-1,0],[-10,2],[-2,2],[-2,0],[0,1],[1,2],[1,0],[1,-1],[1,0],[-1,2],[1,1],[2,1],[2,0],[2,-1],[2,-1],[2,-2]],[[2118,9416],[0,-4],[1,0],[1,-1],[0,-1],[1,0],[1,-2],[0,-1],[-1,-2],[-4,-3],[-2,-2],[-9,-2],[-1,-1],[-1,0],[-3,1],[-3,0],[-2,1],[-2,0],[-3,2],[-2,2],[-3,1],[-1,2],[1,1],[1,1],[1,0],[1,1],[0,2],[0,1],[1,0],[0,1],[1,1],[1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[6,5],[2,1],[7,0],[2,-1],[3,-1],[2,-2],[2,-1],[0,-2],[2,-3]],[[2378,9438],[9,-9],[1,-2],[1,-1],[3,-1],[3,-3],[2,-1],[1,0],[0,-2],[0,-1],[-2,0],[-2,0],[0,-1],[4,0],[5,-3],[-1,-1],[0,-1],[-2,-2],[1,-1],[2,-3],[1,-1],[-1,-1],[0,-1],[-1,-1],[1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[2,1],[1,0],[0,-1],[1,-1],[1,-2],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-4],[0,-1],[0,-2],[-1,0],[-2,0],[1,0],[1,-1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-9,-1],[-8,-1],[-1,1],[-1,1],[-4,-1],[-1,-1],[-7,0],[-2,1],[0,2],[-1,1],[-2,0],[-1,-2],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[1,1],[0,1],[0,1],[-7,5],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[2,2],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[0,2],[1,2],[0,1],[-4,0],[-1,0],[-1,2],[-1,0],[0,-1],[0,-1],[-4,1],[-1,0],[1,0],[1,1],[0,1],[-2,0],[-1,0],[-1,1],[-1,1],[-2,1],[0,1],[-1,1],[1,1],[2,0],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[1,1],[0,1],[1,1],[1,1],[-1,0],[-2,0],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[-3,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[1,0],[0,1],[0,1],[-1,0],[-4,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,2],[1,1],[1,3],[0,1],[0,1],[1,-1],[1,0],[0,-1],[1,0],[0,2],[-1,0],[1,1],[6,2],[2,-1],[2,1],[0,1],[-1,0],[-1,-1],[0,1],[-1,0],[1,0],[0,1],[1,0],[3,1],[1,0],[-1,1],[-7,-1],[1,1],[-1,0],[1,0],[3,2],[2,3],[1,1],[1,-1],[0,-1],[-1,0],[0,-1],[4,2],[-7,2],[-1,0],[0,-1],[-2,-1],[-1,0],[1,2],[1,1],[2,0],[1,0],[0,1],[3,0],[1,-1],[0,-1],[2,-1],[1,1],[1,0],[1,1],[-1,1],[-2,0],[-1,1],[-1,1],[2,3],[5,3],[2,0],[2,2],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,-1],[2,0],[1,0],[1,1],[1,1],[2,0],[1,0],[1,2],[1,0],[7,-2],[7,-1]],[[2325,9441],[4,-3],[2,1],[1,0],[0,-1],[1,-1],[2,-1],[1,-1],[-1,-1],[-3,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-2,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[1,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,-1],[-2,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[-3,0],[0,-1],[1,-1],[1,0],[-1,-1],[-4,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-2,1],[0,1],[1,0],[0,1],[-1,0],[-1,2],[0,1],[-1,0],[1,1],[-1,2],[10,4],[0,-1],[4,2],[3,1],[1,0],[0,1],[-1,1],[0,1],[2,2],[2,-1]],[[1636,9447],[-2,0],[-2,1],[-1,1],[1,1],[3,2],[1,0],[1,1],[1,0],[0,1],[0,1],[1,2],[-1,0],[-1,1],[1,1],[0,1],[1,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[-2,-3],[-2,-2],[-1,0]],[[2164,9464],[0,-1],[2,0],[1,-1],[0,-1],[-3,-1],[-8,-2],[-2,-1],[0,-1],[-1,-3],[0,-1],[-1,0],[-2,-2],[-2,-1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-2,-1],[0,-1],[-12,0],[-2,1],[3,2],[1,1],[-2,0],[2,2],[2,0],[3,0],[0,1],[-1,0],[-1,0],[0,2],[1,1],[1,0],[0,1],[8,2],[8,2],[2,0],[5,2],[4,-1]],[[2380,9449],[-10,-1],[-2,1],[-1,1],[-1,2],[-1,3],[1,3],[-1,0],[-1,1],[0,1],[-1,1],[2,1],[5,1],[4,2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[2,-3],[0,-1],[0,-2],[0,-1]],[[2157,9470],[1,-1],[-1,-2],[-6,-2],[-11,-2],[-10,-3],[-11,-2],[-3,1],[-2,0],[-1,0],[0,2],[-1,0],[0,1],[4,0],[3,2],[6,0],[5,3],[2,0],[1,0],[2,2],[1,0],[2,0],[8,1],[8,2],[3,-1],[0,-1]],[[1732,9474],[2,0],[1,-1],[2,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-2,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[-2,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-7,-6],[1,-1],[-1,-1],[-10,-6],[-1,0],[-2,0],[-2,2],[-4,0],[0,1],[1,0],[1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-3,-1],[-6,3],[0,1],[2,3],[8,6],[2,1],[0,1],[1,2],[3,2],[1,1],[1,0],[0,2],[2,2],[2,1],[8,4],[3,-1],[1,1],[1,0],[0,1],[1,2],[1,1],[1,0],[1,0],[3,2],[0,1],[3,2],[4,1]],[[2805,9475],[3,-1],[1,-1],[1,0],[1,-1],[0,-1],[-1,-1],[-1,-1],[-8,-5],[-1,-1],[1,-2],[0,-1],[4,-2],[2,-1],[2,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[1,1],[1,1],[-1,0],[-2,0],[-4,0],[-2,0],[-3,-2],[1,-1],[1,0],[1,0],[-3,-3],[0,1],[0,1],[-1,0],[-3,0],[0,1],[1,1],[-1,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,1],[1,0],[3,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[2,3],[1,0],[2,1],[1,1],[1,0],[0,1],[0,1],[2,0],[1,1],[1,1],[0,1],[1,1],[2,1]],[[2741,9476],[-1,0],[-2,0],[-1,1],[2,2],[2,0],[2,0],[1,-1],[-1,0],[-1,-1],[-1,-1]],[[2149,9485],[0,-1],[2,-2],[0,-1],[-1,-3],[1,-1],[1,0],[-3,0],[0,-1],[-2,-2],[-4,-3],[-11,-2],[-8,-1],[-8,0],[-4,0],[2,1],[-5,1],[0,-1],[-8,2],[-1,0],[-1,1],[-1,2],[0,1],[0,1],[0,1],[1,1],[2,0],[1,2],[3,1],[2,0],[1,0],[1,1],[4,1],[2,1],[2,-1],[2,1],[3,0],[2,1],[1,0],[1,0],[10,1],[10,2],[2,-2],[1,-1]],[[2513,9499],[1,0],[0,-1],[3,-1],[-1,-1],[-5,1],[-1,0],[2,2],[1,0]],[[2667,9496],[0,-1],[-2,2],[-2,0],[0,2],[1,0],[-1,1],[0,1],[0,1],[1,0],[0,-1],[2,0],[1,-1],[2,-1],[-1,-3],[-1,0]],[[2113,9509],[-4,-4],[1,0],[2,1],[2,0],[1,2],[1,1],[1,0],[3,-3],[1,-1],[2,0],[0,-1],[-1,0],[0,-1],[1,-1],[5,-2],[2,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[4,-1],[1,-1],[0,-2],[-9,-6],[-7,-1],[-8,0],[-2,0],[-12,0],[0,1],[0,1],[1,1],[1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[1,1],[1,1],[0,2],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[-1,1],[1,0],[0,1],[-2,1],[-1,0],[1,2],[-1,1],[0,1],[1,0],[8,4],[9,0],[2,0],[1,-2],[0,-1]],[[2266,9512],[0,-2],[0,-1],[2,-1],[3,0],[2,-1],[-3,-1],[-1,0],[-1,1],[-2,0],[1,-2],[2,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,-2],[8,-1],[4,-2],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[4,-4],[1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-3],[0,-1],[0,-1],[-2,-2],[0,-1],[-2,-2],[-2,0],[-3,-1],[-1,-1],[1,-1],[7,-1],[1,-1],[1,0],[5,0],[1,-2],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[1,-2],[3,-3],[-1,-1],[-1,0],[-4,2],[0,1],[0,1],[-1,0],[1,1],[-1,1],[1,1],[-7,6],[-1,0],[1,-2],[-1,0],[-2,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[-2,0],[-1,0],[1,-1],[1,0],[1,0],[-1,-1],[-1,0],[-1,0],[1,-1],[2,0],[4,-1],[1,-1],[-1,0],[-6,0],[-1,-1],[1,-1],[4,-1],[0,-1],[-1,0],[-2,0],[0,1],[-1,-1],[-1,0],[-1,0],[1,1],[-1,0],[-1,-1],[-1,-2],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,0],[1,0],[-1,0],[1,2],[1,1],[1,0],[2,0],[-2,-1],[0,-1],[-1,-2],[1,-1],[1,0],[0,1],[0,1],[0,1],[1,-1],[1,-2],[2,-2],[1,-2],[-1,1],[-1,-1],[1,-1],[2,0],[1,0],[0,-1],[-1,0],[2,-1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[1,-1],[-3,-1],[-2,-1],[-2,0],[-6,3],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-2,-1],[1,-1],[-1,0],[1,-2],[1,0],[2,-2],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,1],[-10,-2],[-10,-1],[-1,1],[1,1],[-1,0],[-2,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-2,0],[0,-1],[0,-1],[0,-1],[0,-1],[-12,-1],[0,1],[0,1],[0,1],[0,1],[3,4],[0,1],[-1,1],[0,-1],[-2,-2],[0,-1],[-2,-1],[-1,-2],[0,-1],[2,-1],[0,-1],[-2,0],[-1,0],[-3,-1],[-10,1],[-9,2],[-1,0],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[-2,1],[-1,1],[-1,0],[0,1],[1,2],[2,0],[12,0],[0,1],[-2,0],[-1,0],[-2,0],[-2,1],[-3,0],[-1,1],[1,0],[1,0],[1,1],[1,2],[-7,-2],[-1,1],[-4,2],[-2,1],[-1,1],[1,0],[3,2],[1,-1],[-2,0],[0,-1],[0,-1],[2,0],[1,0],[0,2],[2,-1],[1,1],[1,0],[-1,1],[-1,0],[-1,1],[1,0],[-2,2],[-1,0],[-3,0],[9,1],[10,1],[1,1],[-9,0],[3,1],[5,-1],[2,2],[-9,1],[0,1],[13,1],[-1,1],[-2,-1],[-2,0],[-1,0],[0,1],[1,0],[6,2],[1,0],[1,0],[1,2],[-5,0],[1,1],[0,1],[0,1],[12,1],[12,1],[1,0],[1,1],[-1,0],[0,1],[-11,-2],[-10,-1],[1,1],[2,1],[-9,-2],[-9,-1],[-2,-1],[-2,1],[-3,-1],[-2,0],[-7,-1],[-7,-1],[-2,-1],[-1,0],[-2,-1],[-2,0],[-2,-1],[-1,1],[1,0],[-1,1],[-1,0],[-9,-2],[-8,-2],[-4,0],[-6,-1],[-6,-2],[-1,0],[0,2],[-1,0],[-2,0],[0,1],[0,1],[1,1],[-1,1],[-2,1],[-1,0],[0,1],[1,1],[1,0],[1,-1],[1,0],[3,0],[0,1],[-2,0],[0,1],[1,0],[-1,2],[1,0],[1,1],[2,0],[1,1],[-1,0],[-1,0],[1,1],[1,1],[8,-1],[4,-1],[0,-1],[2,1],[-1,0],[-1,0],[-1,0],[1,1],[-1,1],[-2,0],[-1,1],[0,1],[4,2],[-1,1],[-6,-2],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[12,2],[1,0],[0,-1],[1,-1],[0,-1],[2,0],[2,-1],[1,-1],[3,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[4,-1],[1,1],[2,1],[5,1],[2,2],[-4,-1],[-1,-1],[-2,0],[-2,-1],[-4,0],[0,1],[1,1],[0,1],[0,1],[-1,1],[-1,1],[-3,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[3,2],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1],[-1,0],[-2,-1],[-8,-1],[-2,1],[-2,1],[-2,3],[0,2],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,0],[5,2],[5,3],[-12,-2],[-1,1],[-7,-1],[-2,1],[1,1],[1,0],[1,1],[0,1],[-1,1],[-1,0],[-2,0],[1,1],[2,0],[1,1],[0,1],[-1,1],[1,0],[2,0],[1,1],[-1,1],[-2,0],[0,1],[0,1],[1,1],[1,0],[1,0],[3,2],[1,1],[11,-2],[1,-1],[1,0],[1,-1],[2,-3],[4,-2],[1,0],[-1,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[4,0],[4,-2],[2,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[-3,-1],[-1,-1],[9,2],[-1,-1],[-4,-1],[0,-1],[7,-1],[1,-1],[1,-1],[2,-3],[1,0],[0,-1],[0,-1],[1,0],[2,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[1,1],[2,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[2,2],[4,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[2,1],[-2,0],[-9,-2],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[1,0],[0,1],[-2,1],[-1,2],[0,1],[0,1],[-1,0],[-2,1],[0,1],[3,0],[0,1],[1,1],[1,0],[2,-1],[4,-1],[3,-1],[1,0],[3,2],[3,0],[1,1],[-8,-2],[0,1],[-1,1],[-1,0],[-3,1],[-2,2],[-1,0],[-5,-1],[-8,3],[-1,1],[0,1],[2,1],[10,0],[-1,0],[-1,1],[1,0],[-2,1],[-1,0],[1,1],[1,-1],[1,-1],[1,0],[5,-1],[1,1],[-4,0],[-1,1],[1,0],[1,1],[1,0],[-1,1],[-2,-1],[-1,1],[-3,2],[1,1],[-1,0],[-1,-1],[-1,0],[-2,2],[-10,-1],[-8,7],[0,2],[7,2],[1,0],[-1,1],[0,1],[2,1],[2,1],[4,3],[1,0],[2,1],[2,0],[11,-3],[1,0],[2,2],[3,0],[1,0],[2,-2],[-1,0],[-2,0],[-1,0],[4,-1],[7,-6],[1,0],[0,1],[1,0],[1,-1],[1,0],[-2,-2],[-1,-1],[0,-1],[2,-2],[2,-1],[1,0],[-1,2],[-1,0],[0,1],[0,1],[2,-1],[1,1],[1,1],[1,-1],[0,-1],[1,-1],[2,0],[0,1],[-1,0],[1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[1,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,1],[2,0],[2,0],[2,-1],[0,-1],[1,-1],[0,1],[0,2],[4,-1],[1,1],[1,1],[0,1],[1,0],[0,1],[-2,0],[-3,-1],[-3,0],[-1,1],[-1,1],[11,0],[1,0],[0,-1]],[[2213,9516],[-12,-5],[-11,-5],[-5,-1],[-10,2],[1,0],[2,1],[1,1],[3,1],[5,1],[2,0],[1,2],[2,1],[1,0],[0,1],[0,1],[1,0],[1,1],[10,2],[10,-2],[-2,-1]],[[2508,9502],[1,-1],[-1,0],[-2,-1],[-1,0],[-2,1],[-1,1],[-1,-1],[0,-2],[-1,0],[-2,1],[-3,1],[-1,1],[-2,4],[-8,10],[-1,1],[0,1],[1,2],[1,1],[6,2],[3,1],[6,0],[1,0],[3,-2],[4,-4],[1,-1],[-1,-1],[1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-2],[1,-2],[1,-1],[2,-1]],[[1981,9523],[1,0],[-1,-2],[0,-1],[0,-1],[4,0],[1,0],[1,-2],[0,-2],[0,-1],[-2,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[2,-3],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-2,0],[-1,-1],[1,0],[2,0],[-1,-1],[0,-1],[-1,-1],[1,0],[2,-1],[-1,-1],[-2,0],[0,-2],[0,-1],[1,0],[1,1],[1,0],[1,-1],[3,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[4,-3],[0,-1],[-2,0],[1,0],[-1,-1],[-2,0],[-1,-1],[1,-1],[3,-1],[-1,-1],[-6,-1],[-1,-1],[-1,-2],[1,-1],[-1,-1],[0,-1],[-1,0],[1,-1],[1,0],[-1,-1],[-1,0],[-1,-2],[0,-1],[4,1],[5,0],[4,1],[4,0],[1,0],[3,-2],[1,0],[0,-1],[2,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,-2],[0,-1],[1,0],[-1,-1],[-3,0],[-2,-2],[0,-1],[1,0],[-1,0],[-1,-1],[-1,-3],[0,-1],[1,-1],[2,1],[2,1],[1,2],[1,2],[1,1],[1,1],[9,2],[2,0],[3,0],[1,-1],[2,0],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[2,-1],[1,0],[1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[2,-1],[-1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[2,2],[1,0],[4,1],[-1,1],[-6,0],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[1,1],[3,3],[1,0],[1,2],[1,1],[8,0],[8,-3],[8,-2],[4,-4],[3,-3],[1,-2],[1,-3],[-1,-1],[0,-2],[1,-2],[-1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[-3,-1],[0,-1],[1,-1],[-1,0],[-1,0],[-1,-1],[1,0],[3,-1],[1,-1],[-1,0],[-1,-1],[0,-1],[-2,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-2,-1],[-2,-2],[0,-1],[-1,0],[-1,-3],[0,-1],[3,-1],[-1,-1],[-1,-1],[1,-1],[-1,0],[-3,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[1,-1],[0,-1],[-10,-2],[-11,-2],[0,-1],[-7,-5],[-6,0],[-2,1],[-6,1],[-4,2],[-1,2],[0,1],[-1,0],[1,1],[0,1],[1,0],[-1,2],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-2,-1],[-2,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-2,-1],[1,0],[1,0],[0,-1],[-3,0],[-10,-1],[-2,1],[-1,0],[0,1],[-1,1],[-7,2],[9,-1],[-1,3],[-2,1],[-1,2],[-5,1],[-3,-1],[0,-1],[-1,0],[0,-2],[1,0],[0,-1],[-3,0],[1,-1],[-2,0],[-8,-3],[-1,-1],[0,-1],[0,-1],[-1,0],[-3,-3],[-1,0],[-9,1],[-3,-1],[0,-1],[-1,-1],[-1,-1],[0,1],[0,1],[-2,-1],[-4,1],[-2,0],[0,-1],[-1,0],[0,-1],[2,-1],[1,0],[-1,0],[-8,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[-1,-2],[-4,-1],[-2,-2],[-1,-1],[-2,0],[-1,-1],[0,-1],[-1,0],[-2,0],[-2,-2],[-2,0],[-1,0],[-1,-2],[-3,1],[-4,-3],[-3,-2],[-8,-2],[-8,-2],[-2,-1],[-2,-1],[-1,0],[-6,0],[-11,-1],[-5,0],[-7,1],[-6,2],[-2,2],[-12,6],[0,1],[1,0],[-1,0],[-6,5],[-1,1],[0,1],[0,1],[0,1],[1,1],[3,1],[2,2],[7,3],[4,1],[2,1],[4,1],[3,-1],[2,2],[3,0],[2,-1],[1,0],[1,1],[-2,1],[-2,1],[1,0],[2,0],[1,0],[0,1],[0,1],[2,2],[3,0],[1,1],[5,2],[2,-1],[4,2],[8,0],[6,0],[4,0],[4,-1],[3,1],[2,0],[1,1],[2,2],[-1,1],[-1,-1],[-1,1],[1,1],[1,0],[2,-1],[1,0],[3,2],[0,1],[-1,0],[-1,0],[1,1],[1,-1],[1,0],[0,1],[2,1],[1,0],[1,1],[1,0],[2,2],[-1,1],[1,1],[0,1],[1,0],[1,0],[1,1],[0,1],[-1,0],[-4,2],[-4,-1],[-1,-2],[-1,-1],[0,-1],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[1,0],[1,-1],[-3,0],[-1,1],[-1,2],[-1,0],[0,-1],[-3,-2],[-1,-1],[-4,1],[-4,-1],[-4,-1],[-2,1],[-1,1],[0,1],[1,0],[2,1],[1,1],[1,1],[-1,0],[-2,0],[0,1],[1,0],[-1,2],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-4,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[1,-1],[0,-1],[0,-2],[-1,0],[-3,-3],[-5,-1],[-1,1],[-1,3],[-1,0],[-1,-3],[0,-1],[-1,0],[-4,-1],[-2,1],[-5,-2],[-1,1],[0,-1],[-1,0],[-6,0],[-2,1],[0,3],[1,1],[0,1],[1,0],[7,3],[-1,1],[-1,-1],[-4,-1],[-1,0],[-1,1],[2,4],[1,4],[0,1],[1,1],[3,2],[2,0],[2,2],[4,2],[2,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,-1],[-10,-3],[-1,0],[-1,1],[-1,3],[-2,2],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[-1,-2],[-1,-3],[0,-1],[-1,-1],[-1,-2],[-2,1],[-1,1],[-2,1],[0,1],[0,1],[-4,1],[0,1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,1],[3,-1],[1,-1],[0,-2],[1,-1],[1,-1],[1,-1],[0,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-7,-3],[-7,-3],[-3,-1],[-3,2],[-1,0],[0,1],[0,1],[-1,2],[0,1],[0,1],[1,1],[1,1],[-1,0],[0,2],[0,1],[-1,2],[-1,1],[0,-2],[0,-1],[-4,-3],[-1,0],[-2,1],[-4,2],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[-1,-2],[-1,-1],[-1,0],[-1,0],[-6,2],[-3,2],[-4,1],[-3,1],[4,2],[1,1],[1,2],[-1,0],[-5,-2],[-1,0],[-1,1],[2,2],[1,1],[0,1],[0,1],[0,1],[-1,0],[-5,-1],[-2,0],[-1,0],[-1,-1],[0,-1],[-2,-2],[-1,-1],[-2,0],[-3,2],[-2,1],[-1,-1],[-1,0],[-13,4],[-3,2],[-1,0],[-1,1],[0,1],[0,1],[1,0],[-1,1],[1,1],[1,1],[1,0],[0,1],[0,2],[7,7],[3,1],[11,0],[10,0],[2,1],[6,-1],[3,1],[13,7],[9,1],[-1,1],[1,1],[0,1],[4,3],[3,0],[0,1],[-1,0],[-9,-3],[-9,-1],[-2,-1],[-6,-2],[-3,-1],[-1,-1],[-10,0],[-10,0],[-10,0],[-1,0],[0,2],[0,2],[8,9],[2,2],[10,1],[10,1],[10,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[4,-1],[10,1],[10,1],[1,1],[1,1],[0,1],[-1,0],[-1,0],[-11,0],[-12,-1],[-2,0],[-12,-2],[-1,1],[0,-1],[-13,3],[-1,1],[0,1],[0,1],[1,1],[2,1],[2,0],[2,0],[1,0],[-1,1],[-1,1],[0,1],[1,0],[-1,1],[-4,-1],[-1,1],[0,1],[0,1],[0,1],[2,2],[0,1],[1,0],[1,1],[1,1],[0,1],[10,3],[6,0],[3,-1],[5,-1],[6,1],[8,-2],[3,0],[3,0],[3,-1],[3,0],[2,1],[-1,1],[-3,-1],[-2,1],[-3,0],[-2,2],[-6,2],[-7,0],[-7,0],[-3,1],[0,1],[-1,1],[0,1],[0,1],[2,1],[-1,1],[-1,1],[1,1],[10,6],[14,2],[1,1],[2,2],[1,0],[5,0],[-1,-1],[-1,0],[0,-1],[9,1],[6,-2],[2,-1],[0,-1],[1,-1],[1,-3],[-1,-2],[-1,-1],[-1,0],[1,-1],[1,0],[-1,-1],[1,0],[-1,0],[2,-2],[2,-1],[1,-2],[-1,0],[-1,-1],[-1,-1],[1,-1],[1,0],[1,-1],[3,1],[4,0],[4,2],[2,0],[1,0],[1,0],[1,2],[1,0],[4,0],[1,-1],[1,0],[4,2],[2,-1],[2,-1],[0,-1],[1,-1],[2,0],[0,-1],[3,0],[3,-1],[2,-1],[1,0],[-1,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[2,-2],[1,-1],[0,-1],[2,-1],[6,-2],[8,-4],[2,0],[1,-1],[0,-1],[-1,-1],[-8,-2],[-3,-2],[0,-1],[1,0],[-2,-1],[-1,0],[1,-1],[1,0],[2,1],[1,1],[1,1],[0,-1],[1,0],[-1,-1],[2,-1],[1,0],[1,1],[0,1],[12,1],[0,-1],[-1,-1],[-2,0],[-1,0],[4,-2],[0,-2],[0,-1],[0,-1],[2,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,-2],[1,-1],[1,-2],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[5,1],[4,2],[10,1],[2,-1],[0,-1],[1,-1],[5,0],[2,1],[1,-1],[1,1],[2,0],[14,-2],[13,-1],[3,-2],[1,0],[0,1],[-1,3],[-1,1],[-1,0],[-1,0],[1,1],[1,0],[3,0],[-1,1],[0,1],[0,1],[1,1],[1,0],[-2,3],[-1,1],[0,1],[2,-1],[1,1],[-1,1],[-3,0],[0,1],[-1,0],[-2,0],[0,1],[-1,1],[-8,2],[-2,1],[1,0],[1,1],[-8,0],[0,1],[1,0],[1,1],[-1,1],[-1,0],[-1,0],[1,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-2,-2],[-1,1],[-2,1],[-1,1],[1,1],[1,1],[8,2],[1,1],[2,1],[1,1],[3,1],[1,1],[-1,1],[1,0],[3,0],[0,1],[0,1],[-2,0],[-1,0],[0,1],[0,1],[2,0],[0,1],[0,1],[-1,0],[-2,2],[-2,0],[0,1],[0,1],[-1,0],[0,1],[-4,0],[-1,1],[1,0],[0,1],[-4,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[-2,1],[-4,4],[-6,2],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[1,0],[6,1],[2,2],[1,1],[3,0],[1,0],[2,0],[1,1],[1,1],[0,1],[-4,0],[1,1],[1,0],[0,1],[1,1],[-1,1],[4,0],[0,1],[0,1],[2,1],[1,0],[-1,1],[1,2],[0,1],[1,0],[0,2],[2,1],[3,2],[-1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,0],[5,1],[2,-1],[1,0],[2,1],[0,1],[1,1],[1,0],[1,-2],[1,-1]],[[1841,9527],[4,-2],[1,-1],[1,0],[0,-1],[1,-2],[0,-1],[-1,-1],[-2,-2],[-1,0],[-1,-2],[-1,0],[-4,1],[-8,0],[-9,1],[-2,1],[-9,1],[-1,0],[0,3],[1,0],[6,4],[5,1],[6,0],[1,1],[9,0],[4,-1]],[[2354,9536],[2,0],[5,-1],[1,-1],[1,0],[12,-1],[0,-1],[0,-1],[1,-1],[4,0],[1,-1],[1,0],[0,-1],[3,0],[3,1],[0,1],[1,1],[1,0],[1,0],[3,-1],[3,0],[1,0],[1,-1],[0,-2],[1,-1],[2,-1],[2,-2],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-3],[-1,-1],[-2,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-4,-1],[-1,-1],[1,-2],[2,-2],[1,0],[2,1],[-2,0],[-1,1],[-1,1],[2,1],[4,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,1],[1,0],[2,2],[-1,2],[1,0],[4,1],[1,-1],[3,0],[2,-2],[1,0],[5,2],[1,0],[2,-1],[1,-1],[1,1],[3,1],[2,0],[4,3],[8,1],[8,1],[8,-1],[1,-1],[3,0],[2,-1],[1,-2],[1,-1],[1,-1],[7,-2],[1,-1],[1,-2],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[-1,-2],[-4,0],[-8,2],[-1,0],[0,1],[-1,1],[-1,-1],[0,-1],[1,0],[-2,-1],[-2,0],[-6,3],[-6,-1],[2,-1],[1,0],[0,-1],[1,-1],[1,0],[11,-1],[1,-1],[4,0],[3,-1],[2,0],[2,-2],[2,1],[1,0],[11,-2],[11,-3],[10,-2],[0,-1],[1,0],[1,-2],[1,-1],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-1],[-10,0],[-10,0],[-10,0],[1,-1],[9,-1],[1,-1],[-1,-1],[-1,1],[-3,1],[-13,2],[-13,1],[-2,2],[-10,3],[1,0],[1,-1],[1,0],[1,0],[5,-3],[1,0],[-1,-1],[-2,-1],[-1,-1],[0,-1],[1,0],[3,1],[13,-2],[1,-1],[2,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[4,0],[1,0],[0,1],[2,1],[1,0],[11,-2],[-2,-1],[-1,-1],[-12,0],[-11,0],[-2,-1],[2,-1],[3,1],[2,-1],[-1,-1],[-2,1],[-1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-3,-1],[-1,-1],[0,-1],[0,-1],[1,0],[-1,-2],[0,-1],[1,1],[1,0],[0,2],[1,0],[-1,1],[1,1],[3,1],[2,2],[1,1],[0,2],[1,1],[1,0],[1,-1],[1,-1],[-1,0],[-1,-1],[1,0],[1,0],[3,2],[2,0],[1,-1],[1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[2,2],[2,1],[0,1],[1,1],[2,-1],[1,-1],[1,-1],[2,0],[0,1],[1,2],[0,1],[0,1],[2,1],[1,0],[1,-1],[-1,0],[0,-1],[0,-1],[3,-1],[1,0],[0,-1],[0,-1],[1,-1],[2,-1],[0,-2],[-2,-2],[0,-2],[1,-1],[-1,0],[0,-1],[1,0],[1,0],[0,1],[1,1],[1,1],[1,1],[0,-1],[1,1],[0,1],[-2,0],[1,0],[2,0],[2,-1],[4,-3],[3,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-3],[-1,-2],[-1,0],[-3,-1],[-6,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[2,0],[3,1],[1,-1],[-1,-1],[-2,1],[-1,-1],[1,-1],[3,0],[1,1],[2,1],[1,1],[6,0],[0,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[3,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[4,0],[0,1],[0,2],[-1,4],[0,1],[-3,4],[3,2],[1,1],[0,2],[1,1],[1,-1],[2,-1],[1,0],[3,-4],[4,-3],[3,-1],[1,-1],[0,-1],[-1,0],[-2,-1],[0,-1],[1,-1],[1,0],[1,0],[0,1],[5,3],[1,1],[1,0],[-1,0],[6,2],[2,-1],[1,0],[1,-2],[0,-1],[2,-2],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[3,0],[1,1],[1,1],[0,2],[0,1],[-2,1],[0,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[3,0],[4,-2],[1,-1],[0,-1],[0,-1],[8,-5],[6,0],[2,-1],[3,-2],[1,0],[-1,-1],[-1,-1],[-5,-2],[6,0],[5,3],[6,0],[5,-1],[8,0],[0,1],[-1,0],[0,-1],[-1,1],[-5,1],[-2,0],[-2,2],[-5,2],[-1,0],[0,1],[0,1],[1,0],[3,1],[8,2],[3,2],[2,1],[-1,-2],[0,-1],[3,0],[2,1],[4,-1],[-2,1],[0,1],[1,0],[-1,0],[0,1],[3,0],[0,1],[1,1],[2,0],[1,0],[1,1],[-1,1],[7,0],[6,-3],[2,1],[-1,1],[-2,0],[-1,0],[1,1],[0,1],[-1,1],[10,2],[3,2],[0,1],[5,1],[2,2],[1,1],[-2,0],[-1,1],[5,-1],[3,0],[1,0],[-1,0],[-1,-1],[2,-1],[5,1],[2,-3],[1,-1],[4,0],[2,0],[2,-1],[1,0],[13,6],[2,0],[1,1],[2,0],[3,1],[11,-2],[11,-1],[12,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[-2,-3],[-1,-2],[1,-1],[2,1],[1,-1],[1,0],[2,-1],[7,1],[8,1],[1,0],[0,-1],[1,-1],[2,0],[3,-1],[2,-1],[1,-1],[1,0],[1,-2],[-1,0],[0,-1],[1,0],[2,0],[1,-1],[-1,-1],[-10,-3],[-1,-1],[10,0],[10,1],[2,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[2,-2],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[1,-1],[-1,-1],[-1,-1],[-1,-1],[1,-1],[4,0],[0,-1],[-2,-1],[0,-1],[0,-1],[-3,-2],[0,-2],[-4,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-8,-3],[-1,-1],[-1,0],[-3,0],[3,-2],[1,-1],[1,-1],[2,0],[1,0],[-3,-1],[0,-1],[1,-1],[1,1],[2,1],[1,0],[1,-1],[1,1],[0,1],[7,3],[1,0],[2,-1],[2,0],[2,-1],[-1,0],[0,-1],[0,-1],[2,-1],[1,-3],[3,-1],[-1,-1],[-1,-1],[-11,-3],[-2,-1],[-1,0],[-1,0],[-6,3],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[-3,-2],[0,-1],[1,-1],[1,-1],[7,-3],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[2,-2],[1,-1],[-1,-1],[-1,0],[0,-2],[0,-1],[1,0],[-1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-4,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-8,1],[-7,0],[-6,-1],[-3,-2],[-2,-1],[-2,-1],[-2,0],[-3,-3],[-1,0],[-2,0],[-1,0],[-2,1],[-3,0],[-3,2],[-1,1],[-6,0],[1,1],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[-3,-2],[-1,0],[-1,0],[-1,0],[0,1],[-2,-1],[-5,2],[0,1],[-4,5],[-1,3],[0,2],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,2],[-1,1],[-2,-1],[-5,3],[-2,2],[-1,1],[-2,0],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[2,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-2,-3],[1,0],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-10,-1],[-3,-2],[-3,-1],[-6,1],[-4,-1],[-1,1],[-1,1],[-1,-1],[-3,-1],[-2,1],[0,1],[-1,0],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[-1,2],[-1,0],[1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-2],[-2,-1],[-2,-1],[-4,1],[-1,1],[0,1],[1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,5],[-1,1],[0,1],[-1,0],[-1,0],[1,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-7,-1],[-8,0],[2,3],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[1,0],[-1,1],[-1,0],[-1,-1],[0,-1],[1,-2],[-1,-2],[-1,-2],[-1,0],[-2,-1],[-1,0],[-7,3],[-1,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-2],[0,-2],[1,-1],[3,-3],[1,-1],[-8,-1],[-1,1],[-2,2],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-4,0],[-2,1],[-1,3],[1,0],[1,1],[-2,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-3,-1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-2,-2],[-1,0],[-5,-1],[-2,1],[-1,1],[0,1],[0,-1],[-2,-1],[0,-1],[-8,2],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,3],[1,1],[0,1],[1,2],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[4,1],[-1,1],[-3,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-2,4],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-2],[-1,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[-2,2],[-2,1],[0,1],[0,-2],[1,-1],[1,-1],[-1,-3],[0,-2],[-1,0],[0,1],[-2,0],[-2,2],[-1,0],[1,-1],[1,-2],[2,-1],[1,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-4,0],[-1,-1],[0,-1],[-1,0],[-4,-1],[1,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-3,1],[-3,-1],[-1,0],[0,1],[-1,2],[0,1],[-1,0],[-1,-2],[-1,0],[-8,3],[2,1],[0,1],[-4,-2],[-3,0],[-4,3],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-2,0],[-2,1],[1,2],[3,2],[1,2],[1,2],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,-2],[-6,-7],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[2,-3],[0,-1],[-5,0],[0,1],[0,1],[0,1],[0,2],[-1,1],[-1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-3,0],[-4,1],[-1,2],[1,1],[1,1],[-2,1],[-1,0],[-3,0],[1,-2],[-1,0],[-1,0],[0,1],[2,1],[-2,1],[-1,1],[-3,1],[-2,2],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[1,1],[0,1],[-4,4],[-1,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,1],[3,0],[1,1],[-2,1],[-1,1],[2,1],[-1,1],[-4,-1],[-2,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[1,1],[-1,0],[-2,2],[-1,0],[0,1],[1,1],[1,0],[0,1],[-1,1],[0,1],[1,3],[0,1],[1,0],[1,1],[1,1],[-1,0],[-2,0],[-1,0],[3,6],[2,4],[1,0],[1,1],[0,1],[1,1],[3,1],[1,0],[1,2],[-2,1],[0,1],[2,2],[-1,1],[0,1],[-3,3],[-1,1],[0,1],[2,2],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[-1,0],[-2,0],[-4,2],[-1,1],[0,2],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,2],[0,1],[-1,0],[-3,1],[-2,3],[-1,1],[0,1],[-1,1],[1,1],[0,1],[-2,1],[-2,1],[-3,-1],[-8,-4],[-2,0],[1,0],[0,1],[0,1],[-1,-1],[-1,0],[-1,-2],[-1,0],[1,-1],[2,-1],[1,0],[-2,-1],[-4,1],[-3,0],[-2,0],[-1,0],[-4,1],[-11,0],[-2,1],[1,0],[-1,1],[0,1],[-2,0],[0,-1],[-2,-2],[-1,-1],[-4,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-2,1],[-6,0],[0,1],[0,1],[0,1],[0,1],[1,1],[2,-1],[5,1],[1,1],[1,1],[4,0],[1,-1],[0,-1],[1,0],[0,1],[0,1],[-1,0],[-8,2],[0,-1],[-1,0],[-1,0],[-1,2],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[1,0],[-1,1],[-4,-2],[-7,1],[-1,1],[-1,1],[-2,1],[-2,2],[-2,3],[1,1],[1,0],[7,0],[1,0],[1,1],[3,4],[1,1],[-1,0],[-1,0],[-3,-3],[-1,-1],[0,1],[-1,0],[-3,-1],[-3,0],[0,1],[1,1],[-1,1],[-2,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-2,0],[1,1],[-4,0],[-2,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-5,1],[-2,-1],[-3,1],[-2,1],[-1,1],[1,0],[1,1],[1,1],[1,1],[-1,0],[-1,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[2,1],[1,0],[1,0],[3,-1],[1,0],[2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,0],[2,1],[-1,1],[1,0],[1,0],[0,-1],[1,0],[3,0],[0,1],[-8,2],[0,1],[-2,1],[-1,0],[-2,0],[-1,1],[-1,1],[0,2],[0,1],[3,0],[1,0],[2,1],[-1,1],[-1,0],[-3,1],[1,1],[1,-1],[8,0],[0,-1],[1,1],[1,0],[1,1],[2,0],[1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[11,1],[3,1],[3,1],[3,-1],[7,0],[1,-1],[1,0],[1,-1],[2,-2]],[[1774,9568],[1,0],[6,-2],[1,-1],[1,1],[1,0],[3,-3],[2,-1],[3,-2],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-4,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[0,-1],[-9,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-2,0],[-1,-1],[1,-1],[2,0],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[11,-4],[2,-1],[1,-1],[0,-1],[-5,-3],[-3,0],[-7,3],[-1,1],[-2,-1],[1,-2],[1,-1],[1,-1],[3,-3],[3,-1],[2,-2],[0,-1],[0,-1],[1,-1],[1,-3],[1,-1],[-1,0],[-2,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-6,-4],[-4,0],[-1,-1],[-1,0],[-7,1],[0,-1],[-1,0],[0,-1],[-1,-1],[-3,1],[-1,0],[-2,-2],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-3,-3],[-4,-1],[-1,-1],[-1,0],[-6,1],[-2,1],[-1,0],[1,2],[-1,0],[-4,0],[-1,1],[-1,1],[1,0],[-4,4],[-2,0],[1,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[1,1],[3,2],[-1,1],[-1,1],[1,1],[1,0],[-2,1],[0,1],[1,1],[1,2],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[3,4],[0,1],[-1,2],[-1,1],[-1,0],[-1,-1],[-2,-2],[-1,-1],[-1,0],[-8,0],[0,-1],[1,0],[0,-2],[-1,-1],[-5,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-4],[1,-2],[0,-1],[-1,0],[-3,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-4,0],[0,1],[-1,2],[-1,0],[-1,1],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[-1,0],[-2,0],[-1,-1],[-1,-2],[1,0],[3,-1],[0,-1],[1,-1],[2,1],[0,-1],[1,0],[1,-1],[1,-3],[1,-1],[-1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-5,1],[-1,-1],[-1,-2],[0,-1],[0,-2],[1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-2,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,3],[-1,1],[-1,1],[0,1],[-2,1],[0,1],[-1,1],[0,5],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,1],[-2,0],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[-1,-1],[3,-4],[0,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[1,-2],[1,0],[1,0],[1,-1],[-1,-1],[-6,1],[0,-1],[1,0],[2,-1],[5,-3],[1,-1],[0,-2],[0,-2],[-1,-1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,-3],[1,-1],[1,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,-2],[-3,-1],[-5,-1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,0],[-1,2],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[-2,0],[0,1],[0,1],[0,1],[-4,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,2],[1,2],[1,2],[-2,-1],[0,1],[0,1],[1,1],[1,0],[0,1],[-1,1],[-3,1],[-1,1],[-1,1],[0,-1],[-2,-1],[-1,-1],[-1,-2],[1,-2],[-1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[1,1],[0,1],[-1,1],[-3,0],[-2,-1],[-1,-2],[-1,-1],[0,-2],[-1,-1],[0,1],[-1,1],[-2,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-3,2],[-4,1],[-1,1],[-5,-1],[-2,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-5,-3],[-2,0],[-5,1],[-3,2],[1,0],[1,1],[1,1],[1,1],[-1,0],[-2,0],[2,1],[2,2],[1,1],[1,2],[0,1],[-1,0],[-6,0],[1,0],[5,2],[-1,0],[-1,0],[0,1],[-1,1],[-2,0],[-2,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,-1],[-1,0],[-2,0],[1,1],[1,0],[-1,1],[1,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,-1],[1,0],[1,4],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[4,2],[2,2],[12,2],[5,-1],[6,1],[2,1],[0,1],[2,3],[0,1],[0,2],[1,1],[2,1],[0,1],[2,1],[0,1],[1,1],[0,2],[0,1],[1,1],[1,0],[1,-1],[0,-1],[2,1],[3,1],[3,3],[7,2],[1,0],[0,1],[4,3],[0,1],[0,1],[-1,0],[0,1],[1,2],[4,1],[2,2],[-1,0],[0,1],[1,0],[1,1],[1,0],[0,2],[0,1],[1,1],[2,0],[1,0],[1,1],[0,1],[2,0],[0,1],[0,1],[0,1],[3,2],[2,0],[1,0],[0,1],[1,1],[4,2],[2,1],[0,1],[1,2],[0,1],[1,3],[1,0],[1,1],[1,1],[1,0],[1,0],[4,0],[3,1],[1,1],[0,1],[1,-1],[1,0],[2,1],[7,0],[7,0],[2,1],[7,1],[0,-1],[-1,0],[-1,-1],[-1,0],[1,0],[4,0],[1,-1],[0,-1],[1,0],[1,0],[2,-1],[4,1],[0,-1],[1,-1],[1,1],[2,-1],[2,-1],[0,-1],[3,2],[3,-1],[1,1],[-2,2],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[3,-1],[5,-2],[1,0],[1,0],[0,1],[-1,0],[1,1],[3,1],[1,2],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,2],[-3,-1],[-1,0],[-1,1],[0,2],[-3,2],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[2,-1],[0,1],[5,2],[-1,1],[-4,0],[1,1],[13,2],[0,-1],[2,-1],[0,-1],[3,0],[1,0],[3,-2],[1,-1],[-1,0],[-1,-1]],[[2637,9568],[-3,0],[0,1],[1,1],[-1,1],[0,1],[-1,0],[-1,1],[-8,0],[0,1],[2,0],[0,1],[1,0],[1,1],[1,0],[1,1],[8,-1],[1,-1],[1,-2],[0,-1],[1,0],[1,0],[1,0],[1,-2],[-2,-1],[-5,-1]],[[2491,9579],[2,-1],[1,0],[0,-1],[1,-1],[1,0],[10,-7],[2,-1],[-1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[1,-1],[-1,-1],[-3,-4],[-9,-4],[-2,0],[-1,0],[-1,0],[-3,-1],[-1,1],[-1,0],[1,1],[0,1],[-7,2],[-8,3],[-4,3],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[1,1],[0,1],[0,4],[-1,1],[1,1],[0,1],[-1,2],[1,1],[0,1],[0,1],[2,0],[1,0],[3,2],[2,0],[8,-1],[8,-1]],[[2083,9564],[6,1],[1,0],[1,-2],[0,-1],[5,-2],[1,-2],[2,-1],[-1,0],[0,-1],[1,-1],[1,0],[0,-2],[1,-1],[-1,-3],[-2,-3],[-1,-1],[-4,0],[-3,-2],[-1,0],[-1,1],[-1,0],[-2,2],[-1,1],[-1,1],[-3,0],[-2,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-2,0],[-1,1],[1,0],[1,0],[-1,2],[-1,1],[-2,1],[1,0],[1,0],[0,1],[-2,0],[-2,1],[-1,1],[0,1],[0,1],[1,1],[-1,1],[-1,0],[-1,0],[0,1],[1,1],[-1,0],[-1,1],[1,1],[-1,1],[-2,1],[0,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[-1,1],[-2,0],[-1,1],[1,1],[0,1],[0,1],[0,2],[-1,1],[-1,1],[-4,3],[-1,2],[0,1],[5,2],[7,-1],[1,-1],[3,-1],[7,-7],[7,-6],[1,-1],[0,-2],[0,-2],[-1,0],[0,-2],[0,-1],[0,-1]],[[2350,9590],[-1,-1],[1,-1],[0,-1],[1,0],[1,1],[0,1],[1,0],[1,-1],[1,0],[4,0],[2,3],[1,0],[9,-1],[8,0],[-1,-1],[2,0],[0,1],[4,-1],[1,0],[2,1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,1],[2,-1],[1,1],[0,1],[1,0],[5,1],[1,0],[3,-2],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,-1],[1,-1],[0,-1],[2,-2],[-3,-2],[-2,0],[-2,1],[-1,-1],[-1,-2],[1,0],[0,-1],[-3,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[-1,-2],[-1,-1],[-1,-1],[-2,1],[-1,0],[-1,0],[-2,0],[-1,1],[1,-1],[1,0],[0,-1],[-1,0],[-1,1],[-3,-1],[0,1],[-1,1],[-3,-1],[-4,0],[-3,2],[-11,0],[-12,0],[-11,0],[-12,0],[-2,1],[0,1],[-1,1],[-5,5],[-1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[3,0],[2,2],[2,0],[2,2],[5,0],[1,1],[1,0],[1,0],[3,2],[2,0],[1,-2]],[[2840,9591],[-3,-1],[-1,0],[-1,2],[-1,2],[2,1],[7,1],[1,0],[1,-1],[-1,-1],[1,-1],[-1,0],[-2,-2],[-2,0]],[[2196,9587],[-1,-1],[-2,1],[-3,-1],[-5,0],[-2,0],[-1,0],[-2,0],[-1,1],[-2,-3],[-5,-1],[-10,1],[-4,2],[-4,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[1,1],[0,1],[-1,1],[1,2],[1,1],[1,1],[9,0],[8,0],[2,1],[1,0],[1,-1],[12,-4],[7,-5],[1,-2]],[[1824,9606],[2,-1],[4,0],[1,-2],[3,-2],[0,-1],[1,0],[5,-2],[1,0],[1,-2],[0,-1],[2,-1],[1,-2],[-1,0],[-3,-3],[-12,-4],[-4,0],[-5,3],[-4,0],[-1,1],[1,1],[3,-1],[-1,1],[-1,1],[-2,1],[-4,3],[-2,1],[-7,7],[1,0],[1,0],[2,-1],[1,1],[1,0],[3,1],[1,1],[1,0],[1,3],[5,1],[3,2],[2,0],[1,-1],[0,-1],[-2,-1],[1,-1],[2,-1],[-2,0]],[[1955,9611],[1,-2],[-1,-1],[-1,-3],[-1,-1],[0,-1],[-3,-1],[-6,-1],[-3,-1],[-3,-2],[-9,-1],[-8,-1],[-2,-1],[1,-2],[3,-1],[0,-2],[1,-1],[9,1],[2,0],[6,0],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,-2],[-10,-4],[-3,0],[-1,0],[-2,0],[0,-1],[-1,-1],[-1,-1],[-9,1],[-1,1],[-1,0],[-4,-2],[-13,-4],[-3,-2],[-3,0],[-10,3],[-1,1],[0,1],[-1,1],[-2,3],[-1,1],[-1,0],[-2,-1],[-1,0],[-4,1],[-1,0],[0,1],[0,2],[-1,0],[-1,1],[-4,-1],[-1,1],[0,1],[0,2],[0,1],[-1,0],[1,1],[2,1],[1,1],[0,1],[-2,1],[-2,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[1,0],[-3,2],[-1,1],[0,2],[0,2],[1,2],[2,2],[-1,1],[3,1],[2,0],[1,-1],[0,-1],[1,0],[1,1],[1,1],[1,1],[-1,0],[9,2],[9,3],[1,0],[2,0],[3,1],[3,0],[4,2],[1,-1],[0,-1],[1,0],[1,0],[0,1],[2,1],[3,1],[4,0],[3,2],[2,-1],[5,1],[0,-1],[1,0],[0,-1],[3,0],[1,1],[3,2],[10,-1],[10,0],[9,0],[2,-1]],[[2137,9614],[-1,0],[-4,0],[-1,1],[0,2],[0,1],[1,1],[5,5],[1,0],[3,1],[2,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-2,0],[-5,-5]],[[2554,9637],[0,-2],[-1,-2],[-2,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[0,2],[0,1],[1,2],[1,1],[1,1],[3,0],[0,1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0]],[[1933,9658],[1,-1],[4,-1],[2,-2],[3,0],[1,-1],[1,0],[2,0],[1,-1],[0,-1],[1,-1],[0,-1],[2,0],[3,-1],[-1,-1],[1,-1],[4,1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[1,-1],[-2,-1],[0,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[-2,-2],[0,-1],[-1,0],[-2,0],[-9,-1],[-1,0],[-3,2],[-1,0],[-9,-3],[-7,1],[-7,1],[-1,1],[0,1],[-2,1],[-2,2],[-4,1],[-2,-1],[-2,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[-4,0],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-9,-1],[-2,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-4,2],[-8,-2],[-8,-2],[-1,0],[0,-1],[0,-1],[-1,1],[-1,0],[-6,-2],[-3,-1],[-2,1],[-1,2],[0,1],[-1,1],[3,2],[0,1],[0,1],[-1,0],[1,1],[2,0],[1,1],[9,3],[3,2],[5,1],[4,2],[6,1],[3,0],[3,1],[3,-1],[11,4],[1,1],[-2,1],[4,1],[0,1],[1,0],[3,2],[1,0],[4,2],[4,0],[1,1],[1,1],[1,0],[8,1],[1,-1]],[[2937,9654],[-2,-1],[-10,3],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[2,0],[1,-1],[5,-1],[5,-2],[-1,-1],[-2,-1]],[[2308,9654],[6,-1],[3,1],[1,-1],[6,-4],[1,0],[1,0],[1,0],[2,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[10,-4],[1,1],[3,2],[1,0],[7,-1],[6,-3],[4,-1],[5,-3],[1,-1],[1,-1],[1,-1],[-1,-1],[-1,-1],[-13,-6],[-1,-1],[2,-2],[4,0],[2,-1],[0,-2],[6,-4],[-1,-2],[1,-1],[-1,0],[0,-1],[-1,-1],[1,0],[-2,-1],[-1,-2],[0,-1],[-1,-1],[-1,0],[-2,0],[-3,0],[-3,0],[-2,-1],[0,-1],[-2,1],[-1,-1],[-4,-1],[-3,-1],[-7,-2],[-8,-1],[-1,0],[0,1],[0,1],[-1,0],[-2,1],[-1,0],[-1,-2],[-1,0],[-3,0],[0,-1],[1,-1],[2,0],[2,1],[1,1],[0,-1],[-2,-1],[2,0],[-1,-1],[-1,0],[-1,1],[-3,-1],[-2,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-4,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[-10,3],[-3,2],[-6,2],[-2,0],[-1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[-1,1],[1,1],[10,0],[10,-1],[1,1],[1,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[-2,0],[-2,0],[-4,2],[-1,1],[-5,1],[-4,0],[-8,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[-2,2],[-2,1],[-4,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[1,1],[1,0],[-1,1],[-4,0],[-4,3],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,1],[2,0],[-1,1],[1,0],[1,0],[5,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,1],[-2,1],[-1,1],[-2,-1],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[0,2],[1,1],[0,1],[-1,1],[-1,0],[1,0],[0,1],[1,1],[-1,0],[0,1],[5,4],[10,-1],[10,-1],[3,-2],[10,-2],[2,-3]],[[2120,9699],[8,-3],[3,1],[4,-1],[2,-2],[1,-2],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[2,-1],[1,-1],[-1,-2],[0,-1],[-1,-2],[0,-2],[-2,-1],[-1,-2],[1,0],[1,0],[1,1],[2,0],[1,-1],[-1,0],[1,-1],[-2,-1],[0,-1],[1,-1],[2,0],[1,1],[2,3],[1,1],[0,1],[0,1],[-1,1],[0,1],[3,1],[1,0],[0,1],[4,0],[5,3],[1,1],[7,-1],[1,0],[0,-1],[1,-1],[5,-4],[2,0],[1,-1],[4,-2],[0,1],[0,1],[1,0],[3,-2],[1,-2],[-1,0],[-3,-4],[-1,-2],[-2,-1],[1,-1],[1,-1],[3,1],[1,-1],[0,-1],[3,-1],[2,2],[2,0],[4,0],[3,2],[3,0],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[8,-2],[3,-3],[-1,-1],[-3,-2],[-1,-1],[2,-1],[2,0],[3,1],[1,-1],[0,-1],[1,0],[1,-1],[2,1],[1,0],[1,-1],[1,-1],[-1,-1],[-2,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-4,-2],[-1,-1],[2,-1],[1,-1],[0,-2],[0,-1],[-1,-3],[-1,-1],[1,-1],[6,0],[1,-1],[1,-1],[1,-2],[1,-2],[1,0],[3,-2],[7,-7],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,-1],[0,-1],[-9,0],[-8,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-5,2],[-5,1],[-3,1],[-6,2],[0,1],[0,1],[-1,2],[-4,3],[-1,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[-1,1],[-5,2],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-5,-2],[-1,0],[-6,4],[-9,2],[-9,1],[-11,-3],[-1,0],[-5,2],[-1,1],[0,2],[0,1],[4,3],[-2,1],[-8,-1],[-9,-1],[-1,-1],[-2,0],[-1,-1],[-5,0],[-2,-1],[-4,-2],[-1,0],[1,-2],[-2,-1],[-7,1],[-7,2],[-6,3],[-1,2],[-1,0],[-1,0],[-1,1],[-1,2],[-4,3],[0,1],[-1,3],[0,1],[1,1],[1,1],[2,1],[2,2],[5,0],[8,-2],[9,-2],[9,0],[3,-2],[2,0],[1,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[2,1],[1,1],[-1,0],[0,1],[1,0],[-2,1],[-7,0],[-8,0],[-1,0],[1,2],[2,1],[12,0],[-1,2],[0,1],[1,0],[1,1],[3,0],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,0],[-1,-2],[-1,0],[0,1],[-1,0],[-3,-1],[-2,-1],[1,1],[1,1],[1,2],[0,1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,-1],[-2,-1],[-1,0],[-2,1],[1,0],[-1,1],[-2,0],[-1,0],[2,3],[8,4],[1,1],[0,1],[-1,0],[-5,2],[0,1],[0,1],[-1,1],[-5,1],[-1,0],[0,-1],[0,-1],[0,-1],[-2,1],[-2,0],[-1,-1],[-1,-1],[-1,-3],[0,-2],[-1,0],[-3,-2],[-3,-2],[-1,-1],[-4,0],[-1,1],[-1,1],[1,1],[4,4],[0,1],[1,0],[0,2],[2,2],[2,3],[-1,1],[-1,1],[-6,1],[-12,-3],[-5,1],[0,1],[-1,1],[1,2],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[1,2],[1,2],[0,1],[3,1],[0,1],[0,1],[-1,0],[0,2],[2,1],[7,-3],[13,2],[13,1],[14,2],[1,-2]],[[2237,9753],[1,0],[8,1],[2,0],[3,-2],[2,-1],[1,-1],[-1,-1],[1,-1],[2,-1],[0,-1],[0,-1],[1,-1],[1,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[1,-1],[1,-1],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[-2,1],[-10,2],[0,1],[0,1],[0,1],[-1,1],[1,0],[1,0],[-1,1],[0,1],[-7,4],[-1,0],[-3,-1],[-10,0],[-1,0],[-1,2],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,-1],[1,2],[8,4],[6,-1],[3,-2]],[[2348,9795],[1,-1],[7,0],[3,-1],[1,-1],[0,-1],[1,-1],[1,0],[-6,-2],[-9,1],[-4,2],[-6,0],[-8,1],[1,1],[2,1],[9,0],[5,0],[2,1]],[[2423,9837],[2,-1],[6,-1],[3,-2],[4,0],[11,-7],[1,0],[-1,-1],[0,-1],[-1,0],[1,-1],[1,-1],[0,-1],[-1,0],[-2,0],[0,-1],[5,-2],[5,-5],[0,-1],[0,-1],[1,0],[0,-1],[2,-1],[2,-1],[1,-1],[2,-3],[0,-1],[2,0],[1,-1],[0,-1],[0,-1],[0,-1],[2,-2],[10,-3],[3,-3],[0,-2],[-4,-2],[-1,-2],[1,0],[2,0],[1,0],[2,0],[0,1],[2,-2],[14,-1],[1,-2],[1,0],[4,-3],[1,0],[0,1],[-2,2],[-1,1],[4,1],[1,-1],[1,0],[0,1],[9,0],[7,-5],[-1,-2],[-4,-2],[-1,-1],[2,0],[2,1],[1,-1],[-1,-2],[0,-1],[1,-1],[-1,-1],[-1,-1],[-3,-1],[0,-1],[1,-1],[2,-3],[3,-2],[13,-6],[1,-1],[2,0],[1,0],[1,1],[-2,2],[2,0],[4,-1],[1,-1],[2,-1],[-1,1],[-4,3],[-2,1],[-1,2],[2,0],[1,-1],[1,-1],[1,0],[0,1],[-1,2],[-6,1],[-2,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[1,3],[0,1],[-1,1],[0,1],[1,2],[2,1],[1,1],[2,1],[11,-1],[11,-1],[0,-1],[1,-1],[1,-3],[0,-1],[0,-3],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-2,-1],[-9,-1],[-1,-1],[0,-1],[1,0],[1,0],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[4,2],[13,-1],[2,-2],[0,-1],[0,-1],[2,-2],[2,-1],[1,-1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-2,-2],[-1,-1],[-3,-1],[-1,0],[0,-1],[1,0],[2,0],[9,5],[1,0],[1,0],[0,-2],[-2,-5],[-1,-1],[0,-1],[0,-2],[1,-1],[-1,-1],[-2,-4],[0,-1],[0,-1],[-1,-1],[-6,-3],[-1,-1],[0,-1],[0,-1],[-1,0],[2,-2],[2,0],[1,0],[2,1],[0,1],[1,2],[1,1],[1,0],[3,1],[4,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[3,0],[-1,2],[-1,0],[-2,1],[3,2],[3,1],[8,-1],[2,0],[2,-2],[3,-2],[1,-1],[-1,0],[0,-1],[1,0],[-1,-1],[-1,0],[-1,-1],[2,-1],[0,-1],[0,-1],[1,0],[-1,-1],[-2,0],[-1,-1],[1,-1],[2,0],[2,0],[1,1],[0,2],[1,0],[1,1],[0,1],[0,2],[1,4],[2,1],[2,0],[2,-1],[2,-1],[0,-1],[1,-1],[0,-1],[0,-1],[2,-1],[1,-2],[0,-1],[1,-1],[2,-1],[0,-1],[1,-1],[1,-1],[4,-2],[1,-1],[2,-2],[1,-1],[1,-1],[0,-2],[-1,-1],[-7,-1],[-1,-1],[-2,-2],[-3,0],[-1,-2],[-2,0],[-3,0],[-1,-1],[-12,-3],[-11,-3],[-2,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-4,-1],[-1,1],[-1,0],[-2,4],[-1,0],[0,2],[-1,1],[0,-1],[-1,0],[0,-2],[0,-2],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-3,-4],[-5,-3],[-3,-1],[0,-1],[-2,-3],[-3,-3],[-1,-1],[0,-1],[0,-1],[-2,-2],[-1,0],[-1,0],[-5,4],[-1,1],[0,1],[-2,5],[-1,1],[0,1],[1,2],[1,4],[-1,1],[0,2],[0,1],[1,0],[1,1],[3,2],[-1,1],[1,1],[1,1],[0,1],[1,1],[-1,0],[-1,0],[-2,-3],[-1,0],[0,-1],[0,-1],[-1,0],[-5,0],[-2,-1],[0,-2],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-2],[0,-1],[0,-2],[1,-1],[1,-4],[1,-2],[-1,0],[-5,-1],[-1,-1],[1,0],[2,1],[5,0],[2,-1],[1,-1],[1,-2],[1,-1],[0,-2],[0,-1],[-3,-4],[-1,-1],[-5,-1],[-1,1],[-8,8],[0,1],[-1,0],[-1,0],[-4,1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[5,-7],[1,-1],[0,-2],[0,-1],[-1,-1],[-2,-4],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-1,0],[-4,0],[-2,1],[-5,6],[-1,2],[-1,1],[-1,1],[0,1],[-1,1],[-3,2],[-1,0],[0,1],[-1,1],[-2,1],[0,1],[-1,0],[-4,5],[-1,2],[0,1],[-1,1],[-2,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[1,0],[0,-1],[0,-1],[0,-1],[6,-3],[5,-8],[1,-3],[0,-1],[2,-3],[1,-1],[-1,-1],[-1,0],[-1,0],[-2,1],[0,1],[0,1],[-1,1],[-1,1],[-6,0],[-1,1],[0,2],[-3,3],[-2,1],[-5,1],[-6,-1],[-5,1],[-1,-1],[1,-1],[3,-1],[6,-1],[2,0],[-1,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[0,-1],[-1,-1],[-1,-1],[-7,1],[-8,-1],[-8,3],[-12,1],[-4,2],[-2,1],[-1,0],[-3,-1],[-1,0],[0,-1],[-2,0],[-1,1],[-2,3],[0,1],[-3,0],[-1,1],[1,1],[2,0],[1,0],[-1,2],[-2,-1],[-3,-1],[-3,0],[-3,2],[0,1],[1,0],[-1,1],[-2,0],[-4,2],[-1,1],[-2,2],[-1,2],[0,2],[1,0],[2,0],[0,1],[7,-1],[2,0],[1,0],[1,1],[-3,1],[1,0],[1,0],[1,0],[9,1],[9,1],[3,-1],[1,0],[1,-1],[0,2],[0,1],[-1,0],[-1,-1],[-13,2],[-13,2],[-2,1],[-2,1],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[-7,-1],[-1,0],[-2,1],[-4,3],[1,0],[2,1],[1,1],[-1,0],[-4,0],[-1,0],[-1,1],[-2,1],[-3,3],[-1,1],[1,1],[6,0],[11,-3],[3,0],[0,1],[0,1],[-1,1],[-6,2],[-2,1],[-5,1],[-6,-1],[-3,1],[-1,1],[0,1],[-1,1],[-1,1],[-2,0],[-6,5],[0,1],[2,2],[5,1],[3,1],[3,1],[3,0],[1,0],[1,0],[1,0],[0,1],[0,1],[3,3],[1,1],[0,1],[2,1],[1,0],[3,0],[4,-1],[2,0],[5,-1],[1,1],[1,0],[0,1],[7,0],[6,-1],[12,1],[8,1],[6,1],[3,0],[8,1],[7,0],[5,1],[4,1],[1,1],[-1,0],[-1,0],[-9,0],[-8,0],[-9,-2],[-11,-1],[-4,1],[-5,-1],[-8,1],[-7,1],[-1,1],[-1,1],[1,0],[2,2],[1,1],[11,-1],[0,1],[-1,0],[1,1],[1,-1],[1,-1],[5,0],[1,1],[1,0],[5,2],[4,0],[9,1],[1,1],[0,-1],[0,1],[0,1],[1,1],[-2,0],[-4,-1],[-4,0],[-8,-1],[-1,-2],[-1,0],[-6,1],[-3,0],[-7,1],[-3,0],[-1,0],[-1,1],[1,1],[1,0],[2,1],[1,1],[1,-1],[2,1],[2,0],[-1,2],[-1,0],[-9,0],[-6,-3],[-2,0],[-1,1],[-3,4],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[2,-2],[0,-1],[-2,-2],[-8,-2],[0,1],[2,2],[1,2],[1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,0],[-1,0],[-2,1],[-1,0],[0,-1],[-1,-1],[1,0],[1,-1],[-1,-1],[-2,-1],[-1,-1],[-4,-2],[-4,0],[-2,2],[-1,0],[-1,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[3,2],[4,2],[1,0],[-7,0],[-11,2],[-1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,-1],[1,-1],[-1,0],[-3,-2],[-12,-3],[-1,-2],[-3,1],[-3,0],[-1,0],[1,1],[0,1],[1,0],[-1,0],[-1,0],[-1,1],[-1,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,1],[-3,0],[0,1],[0,1],[-1,1],[1,0],[0,1],[-2,0],[-1,-1],[0,-1],[-5,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[1,0],[-1,0],[1,1],[2,0],[-1,2],[-1,0],[-1,1],[1,0],[1,1],[0,1],[0,1],[-1,1],[2,0],[2,1],[12,2],[12,2],[3,2],[8,3],[1,1],[-1,1],[0,1],[0,1],[1,0],[1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-4,-1],[-1,0],[0,-2],[-3,0],[0,-1],[-2,-1],[-10,-2],[-1,-1],[-10,1],[-9,0],[-8,6],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-3,1],[-3,1],[1,1],[2,0],[0,1],[-1,0],[-3,-2],[-1,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,-1],[-1,-1],[1,0],[2,1],[3,0],[1,1],[-2,1],[-9,1],[-1,1],[-1,1],[-1,2],[-1,1],[1,1],[7,2],[-5,0],[-1,-1],[-1,0],[-2,1],[-1,1],[-1,2],[1,1],[0,1],[0,1],[1,0],[10,0],[10,-5],[8,-1],[1,0],[6,-1],[8,-1],[6,1],[3,0],[12,-4],[1,0],[-1,2],[-1,0],[-1,0],[-2,2],[-2,1],[-3,2],[-2,0],[0,1],[7,4],[13,2],[-11,2],[-1,1],[-2,0],[-3,-3],[-7,-3],[-12,-1],[-7,3],[-2,1],[1,1],[3,1],[7,0],[1,0],[1,2],[0,1],[-2,-1],[-2,-1],[-5,0],[-1,1],[-8,-3],[-2,0],[-10,4],[-7,1],[1,1],[2,2],[0,1],[-1,0],[-2,0],[-3,1],[2,2],[1,-1],[2,-1],[1,0],[1,1],[3,-1],[2,0],[1,0],[-1,1],[-1,1],[1,0],[3,1],[1,0],[5,0],[3,-1],[4,0],[3,-1],[4,-1],[-1,1],[0,1],[0,1],[-1,0],[-2,0],[-3,1],[-1,1],[-2,3],[-8,2],[-1,1],[4,1],[1,1],[0,1],[1,0],[-2,1],[-1,1],[-1,1],[11,0],[10,0],[6,1],[2,0],[6,-2],[6,-1],[8,1],[7,-2],[0,1],[1,0],[1,-1],[-1,0],[1,-1],[2,-1],[3,1],[0,1],[-6,3],[-11,2],[-4,-1],[0,1],[-1,0],[0,1],[-1,1],[-2,1],[0,1],[1,1],[0,1],[8,0],[8,1],[-2,1],[-3,0],[-2,0],[0,1],[-1,0],[-1,0],[-3,-1],[-1,0],[-5,0],[-9,3],[0,1],[4,1],[1,1],[-1,0],[-1,0],[-6,-1],[-10,1],[-1,1],[0,1],[2,0],[8,2],[1,1],[-8,0],[-2,1],[6,3],[0,1],[1,4],[2,1],[4,0],[4,2],[1,0],[9,-2],[1,-1],[1,0],[-1,-1],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,1],[4,0],[-3,1],[1,1],[3,-1],[-2,1],[-5,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[0,1],[1,1],[4,-2],[10,0],[9,-2],[-1,1],[6,0],[4,1],[-1,0],[1,1],[1,0],[0,1],[-1,0],[-1,0],[1,1],[1,0],[1,1],[-1,1],[-1,1],[-2,0],[-1,1],[1,1],[-10,1],[-5,-2],[-4,1],[-7,1],[-5,1],[-1,1],[0,2],[1,0],[3,2],[0,1],[-1,1],[1,1],[1,1],[8,-1],[7,-1],[2,-2],[1,0],[0,-1],[1,1],[1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,0],[7,-1],[5,-2],[9,-2]],[[3064,9963],[1,-1],[-1,0],[-1,-1],[1,-1],[1,0],[-1,0],[-2,-1],[0,-1],[2,0],[6,0],[0,-1],[-1,0],[-3,-2],[-1,0],[1,-1],[11,2],[5,2],[1,0],[1,-1],[-1,-3],[1,0],[8,0],[1,0],[3,1],[10,0],[1,-1],[-1,-1],[-1,-2],[2,-1],[2,0],[2,1],[11,2],[12,-3],[1,1],[0,1],[1,0],[4,0],[-1,-1],[0,-1],[2,-1],[2,1],[2,2],[1,0],[2,-1],[7,0],[1,-1],[1,0],[1,0],[-2,-1],[1,-1],[-1,-1],[-12,-4],[0,-1],[-1,0],[-9,-2],[-2,-1],[-7,-1],[-1,-1],[-2,0],[-2,-1],[-3,0],[-3,-1],[-7,-1],[-8,-1],[-2,-1],[-4,-2],[-1,0],[2,-1],[11,1],[10,0],[11,1],[5,2],[4,1],[1,0],[6,1],[6,0],[1,0],[-1,1],[0,1],[1,1],[11,3],[10,3],[10,0],[1,-1],[0,-1],[-1,-1],[0,-1],[2,-1],[8,0],[-2,1],[-2,0],[-2,1],[1,0],[4,3],[1,0],[1,0],[-1,1],[-3,0],[-1,1],[3,0],[1,2],[13,0],[1,0],[-1,-1],[-1,-1],[-5,1],[-1,-1],[1,-1],[5,0],[0,-1],[-1,-1],[1,-1],[4,-2],[2,-2],[2,0],[1,1],[-1,0],[0,1],[1,0],[2,0],[5,3],[10,0],[9,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[-2,0],[-10,-2],[6,0],[2,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[3,-1],[2,-1],[-1,-1],[-1,-1],[-2,1],[0,-1],[12,-2],[1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[-6,-1],[-1,0],[-1,-1],[10,1],[1,1],[2,3],[1,0],[1,0],[1,-1],[0,-1],[2,0],[0,1],[-1,0],[1,1],[8,1],[8,0],[0,-1],[-4,0],[-1,-1],[0,-1],[2,0],[1,1],[-1,0],[5,0],[7,-1],[7,0],[7,-3],[5,-4],[1,-2],[1,-2],[0,-2],[-1,-2],[0,-1],[-1,-1],[-4,-3],[-10,-2],[-10,-2],[1,-1],[2,0],[1,-1],[-1,-1],[-3,-1],[-2,-2],[-5,-3],[-3,0],[-3,0],[-1,0],[0,-1],[1,0],[-1,-1],[-7,-3],[-8,-2],[1,0],[-3,0],[-11,-4],[-11,-4],[-6,0],[-4,2],[-1,0],[0,-1],[6,-3],[-1,-1],[-1,-1],[-3,0],[-2,-1],[-12,0],[-3,2],[-1,0],[-3,-1],[-9,1],[0,-1],[1,0],[-1,-1],[-9,-1],[-10,-2],[1,0],[4,0],[4,-1],[11,1],[-1,0],[-14,-4],[-2,1],[0,1],[-2,0],[-4,-2],[-6,-1],[-7,0],[-12,0],[-9,-1],[-8,-1],[-8,-1],[-7,-1],[-10,4],[-10,4],[-11,3],[2,-1],[12,-5],[12,-4],[1,-2],[-14,0],[8,-2],[12,1],[12,2],[12,1],[9,-2],[8,-1],[1,-1],[-1,-1],[-8,-2],[-5,-1],[-4,-1],[-11,-3],[-10,-2],[-3,-2],[-3,0],[-5,-2],[-4,-1],[-1,0],[-4,-1],[-2,-1],[-2,0],[-1,0],[-3,-1],[-11,1],[-1,-1],[1,0],[2,0],[1,-1],[-1,0],[-6,-2],[-3,0],[-7,-2],[-6,0],[-2,0],[4,-2],[12,2],[0,-1],[-3,-1],[-2,-1],[-5,-2],[0,-1],[10,3],[3,2],[2,1],[11,2],[12,2],[12,3],[12,2],[8,2],[8,2],[10,2],[9,1],[8,2],[7,1],[7,2],[13,2],[9,1],[11,1],[1,-1],[0,-1],[1,-1],[1,-1],[-1,-1],[0,-1],[-6,-5],[-12,-4],[-8,-4],[-5,-1],[-3,0],[-5,-2],[-3,0],[-4,-2],[-4,-2],[0,-1],[-1,0],[-5,-3],[-1,-2],[-4,-3],[-6,-2],[-10,-5],[-9,0],[-1,-1],[2,-2],[-1,-1],[-1,-1],[-2,-1],[-3,0],[-2,0],[0,-1],[0,-1],[-2,-1],[-2,-1],[-8,-3],[-3,-3],[-2,0],[-3,-2],[-2,-1],[-4,-2],[-5,-2],[1,-1],[1,0],[-1,-1],[-6,-3],[-1,-1],[-1,-3],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-8,-3],[-9,0],[-9,0],[0,1],[2,2],[0,1],[-1,3],[-2,1],[-13,7],[-1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[3,-3],[2,-1],[1,-1],[1,-1],[0,-1],[2,-1],[-2,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[12,-4],[1,-2],[-1,-1],[-2,-1],[-2,-2],[-2,-1],[-7,1],[-8,1],[-9,-2],[-7,-2],[-4,-2],[-7,-1],[-3,2],[-2,2],[0,1],[-2,0],[-5,1],[-5,2],[-1,0],[-1,-1],[11,-4],[3,-2],[1,-1],[-6,-2],[-8,0],[2,0],[-1,-1],[0,-1],[5,0],[9,0],[4,1],[5,0],[5,2],[9,2],[10,1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-2],[1,-1],[-1,-1],[-3,0],[-2,-2],[1,0],[-1,-2],[-10,-1],[-9,-2],[-1,-1],[-1,-1],[0,-1],[1,-1],[7,2],[7,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-2,-1],[0,-1],[-1,-1],[-7,-1],[-3,-2],[-13,-3],[-2,-1],[-3,0],[-3,-1],[-4,1],[-7,0],[-8,2],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[4,0],[1,0],[-1,1],[-7,0],[-6,1],[-12,-1],[-1,1],[1,0],[1,1],[1,0],[0,1],[-13,2],[-3,-2],[-7,-1],[-7,0],[1,-1],[1,0],[0,-1],[2,-2],[1,0],[8,1],[11,-2],[11,-2],[3,0],[2,1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-3,-2],[-4,-1],[-4,1],[-3,-1],[-2,1],[-3,3],[-2,1],[-1,-2],[1,-1],[0,-1],[1,-2],[-1,-1],[-1,-1],[-1,0],[-7,-1],[-3,1],[-8,0],[-3,1],[-3,1],[-1,1],[0,1],[-2,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[2,0],[0,-1],[0,-1],[-2,-2],[-1,-1],[-14,2],[-3,1],[-1,1],[0,1],[-1,-1],[0,-1],[-2,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-2,-2],[-1,0],[-2,1],[-5,4],[-12,1],[-11,1],[-1,0],[-1,1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[5,0],[3,-1],[3,1],[5,-2],[3,1],[7,-1],[2,-2],[-2,0],[0,-1],[1,-1],[0,-1],[4,-2],[3,0],[1,-1],[-1,-1],[-7,0],[-2,1],[-8,0],[-9,0],[-1,0],[-1,1],[-1,0],[-4,3],[0,1],[0,1],[0,1],[-1,1],[-1,-1],[-2,0],[-3,1],[-1,-1],[0,-1],[2,-3],[1,-1],[1,-2],[1,0],[1,-1],[0,-1],[-1,0],[-8,1],[-8,1],[-3,1],[-1,0],[-2,0],[-2,-1],[7,-3],[5,1],[8,-3],[1,-1],[-1,-1],[-3,0],[-1,0],[11,1],[9,1],[7,-2],[6,1],[3,1],[1,-1],[6,-2],[8,0],[9,-1],[8,0],[7,1],[9,-1],[-1,-1],[-2,-1],[-6,0],[-1,-1],[1,-2],[4,1],[1,-1],[0,-1],[-1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-8,1],[-8,-2],[-12,3],[-7,1],[0,1],[-3,0],[1,1],[-1,1],[0,1],[1,0],[0,1],[-1,1],[-6,3],[-7,-1],[-7,0],[-11,0],[-6,0],[-13,0],[-14,0],[-1,-1],[-1,-1],[1,-1],[2,1],[2,1],[10,-1],[10,-1],[10,0],[7,0],[7,-1],[10,-1],[0,-1],[1,-1],[-1,-1],[-1,0],[-6,0],[-9,1],[-7,-2],[-6,0],[-10,-3],[-2,1],[-3,0],[-2,2],[-9,1],[-6,0],[-8,0],[-8,-1],[1,0],[12,-1],[7,0],[7,0],[5,-1],[0,-1],[1,-1],[-1,0],[-6,-4],[0,-1],[-5,-4],[-2,-4],[-2,-1],[0,-1],[1,-2],[1,0],[1,1],[1,1],[1,2],[1,2],[7,6],[3,2],[14,2],[13,3],[13,-2],[14,-2],[1,-1],[-2,-3],[-1,0],[-12,-1],[-5,-3],[0,-1],[1,0],[1,0],[3,2],[12,0],[3,1],[5,-1],[7,0],[6,-1],[5,-1],[1,-1],[0,-1],[2,1],[1,0],[0,-1],[0,-1],[-3,-1],[-1,-1],[1,0],[2,0],[1,-1],[-1,-1],[-1,0],[1,-1],[1,-2],[1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,-1],[-1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,-1],[-5,-1],[-6,-3],[-5,0],[-6,-2],[-10,1],[-10,1],[-10,1],[-3,-1],[-1,0],[-1,-1],[-1,-1],[1,0],[11,1],[3,-1],[1,-1],[1,-1],[0,-1],[14,-3],[13,-3],[1,-1],[0,-1],[1,-1],[1,0],[-2,-2],[-1,0],[-3,-1],[-2,1],[-2,0],[-1,-3],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-8,2],[-8,2],[-4,-1],[-7,1],[-1,0],[-2,-1],[-5,-1],[-1,-1],[1,-1],[2,-1],[3,0],[0,-1],[2,0],[1,0],[8,-1],[3,-1],[8,0],[7,0],[1,-1],[1,-1],[0,-1],[-3,-3],[-4,-4],[-2,-2],[-1,-1],[-1,1],[0,1],[-3,1],[-1,1],[-1,1],[-2,0],[-6,-2],[-1,-1],[0,-1],[-1,-1],[-6,-1],[-4,-2],[-5,0],[-2,3],[-11,0],[-10,-1],[-9,5],[-1,-2],[1,0],[1,-1],[-5,-2],[-1,-1],[-1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[4,0],[0,-1],[0,-1],[5,-1],[0,-2],[0,-1],[1,-1],[-1,-1],[-1,0],[-1,-1],[1,-1],[0,-1],[0,-1],[-2,0],[0,-1],[1,-1],[3,1],[2,-2],[0,-1],[1,-1],[2,0],[1,-1],[-1,-1],[-4,-2],[-2,0],[-1,-1],[1,-1],[1,-2],[-2,-3],[-5,-1],[-3,-1],[2,-2],[-1,-1],[-1,-1],[-6,-1],[-5,-3],[-2,-1],[-2,1],[2,3],[1,1],[-1,0],[-2,0],[-2,-1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-2,-1],[-8,1],[-7,1],[-5,-1],[-3,-2],[-1,0],[-6,1],[-3,1],[-2,-1],[-2,1],[-3,0],[-2,1],[-4,1],[-6,3],[-1,0],[0,1],[0,1],[-5,1],[-3,1],[0,2],[-1,1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[-1,1],[-2,1],[0,1],[1,0],[1,0],[-1,1],[-5,2],[-1,1],[1,1],[-1,2],[-1,0],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-2],[1,-1],[2,-1],[1,-1],[1,-1],[1,-2],[1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[3,-2],[2,-1],[8,0],[1,-1],[0,-2],[-1,-1],[-9,-1],[-9,-1],[-8,2],[-2,-1],[5,-3],[3,0],[0,-1],[1,0],[0,-2],[0,-1],[-1,0],[1,-2],[1,-1],[1,0],[2,0],[3,3],[3,0],[1,1],[11,5],[10,-2],[10,-2],[1,-1],[1,0],[4,-1],[1,0],[-1,-1],[-2,-2],[-1,-3],[-3,-1],[-1,-2],[1,0],[2,0],[8,8],[8,3],[8,0],[3,-1],[2,0],[2,-1],[2,-2],[2,-1],[0,-1],[0,-1],[-1,0],[2,-1],[0,-1],[0,-1],[-2,-1],[-7,-7],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[7,1],[0,-1],[1,0],[2,1],[1,0],[2,0],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[7,-1],[1,1],[-1,2],[0,1],[3,0],[1,1],[0,1],[0,2],[1,1],[3,1],[1,1],[0,1],[0,1],[1,0],[1,0],[5,1],[2,0],[4,-4],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[-2,-2],[1,0],[2,-1],[2,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,-2],[-2,0],[-3,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-2,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-6,-2],[-1,0],[1,-2],[-4,0],[-2,0],[-1,3],[1,0],[0,1],[-1,1],[0,1],[1,1],[-3,0],[-2,1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-4],[-1,-1],[-1,-1],[-1,-1],[-4,0],[0,-1],[-1,0],[0,-1],[0,-1],[-2,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-5,2],[-1,0],[-8,-3],[-7,-3],[-3,1],[-1,0],[-4,-2],[-1,-1],[-1,-1],[-4,1],[0,-1],[-1,0],[-1,-2],[-3,0],[-2,1],[-1,0],[-2,-2],[-3,-1],[-1,0],[1,1],[0,1],[1,1],[2,1],[-1,1],[-2,0],[-1,1],[1,1],[1,0],[0,1],[-1,0],[1,1],[2,1],[2,4],[1,1],[1,1],[0,1],[1,1],[0,2],[-1,1],[-2,1],[-2,1],[0,1],[-1,1],[-1,0],[-2,1],[-3,0],[1,2],[-1,2],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,-2],[-4,0],[-11,1],[-4,2],[1,2],[1,2],[0,1],[-2,2],[1,0],[4,2],[1,0],[1,0],[0,1],[1,1],[0,1],[-3,-2],[-8,-2],[-3,0],[-1,1],[-3,3],[-1,1],[-1,2],[-1,1],[-1,1],[0,1],[-2,1],[-1,1],[-1,1],[-2,0],[1,-1],[2,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[-1,-2],[2,-2],[3,-3],[3,0],[6,-4],[-4,-2],[0,-1],[0,-1],[2,-4],[0,-1],[-1,-1],[-3,-1],[-7,-1],[-7,0],[-1,0],[-1,2],[-4,1],[-3,2],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[-2,1],[0,1],[-1,1],[-4,2],[-1,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,-1],[-2,-2],[0,-1],[0,-1],[0,-1],[3,-2],[0,-1],[1,-1],[2,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[0,-1],[-1,-2],[-1,0],[1,-1],[1,-1],[-1,-2],[-2,0],[-11,2],[-1,0],[0,1],[0,1],[-1,1],[-3,1],[-1,1],[-3,2],[-1,1],[0,2],[-1,3],[0,1],[-4,2],[-2,0],[-1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,-3],[-1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-9,-1],[-2,0],[-3,1],[-2,2],[0,2],[-1,2],[-2,2],[-2,2],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[8,-3],[7,-3],[1,0],[0,-1],[-1,-1],[-11,-1],[-11,-1],[-1,1],[0,1],[0,1],[-5,-1],[-1,1],[-2,1],[-1,0],[-1,0],[-3,1],[-4,1],[-4,1],[-2,-1],[-4,1],[-2,1],[-2,0],[-1,0],[1,0],[-1,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[1,0],[4,2],[1,1],[-1,2],[-4,2],[-4,3],[-1,1],[-2,0],[9,-7],[0,-1],[-8,-3],[-1,0],[0,-1],[0,-1],[-1,-3],[-1,-3],[0,-1],[-1,0],[-1,1],[-2,0],[-6,1],[-2,1],[0,1],[1,1],[0,1],[-1,1],[-7,0],[-1,1],[1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-2,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[2,-2],[0,-1],[-1,-2],[0,-1],[1,-1],[2,-1],[0,-1],[0,-1],[-2,-1],[1,0],[1,0],[1,-2],[-1,0],[-3,2],[-1,-1],[0,-1],[-1,-1],[-3,0],[-2,2],[-1,3],[1,0],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-14,2],[-1,1],[1,1],[1,1],[-1,1],[0,1],[-1,0],[2,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[-2,2],[0,1],[0,1],[2,2],[0,1],[0,2],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[-2,-1],[0,-2],[1,0],[2,-5],[0,-1],[-2,-1],[1,-1],[1,0],[2,-1],[1,-2],[-1,-1],[0,-1],[1,-1],[-3,-3],[-1,-2],[1,-2],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,2],[0,1],[1,0],[0,1],[-2,2],[1,1],[0,1],[1,1],[-1,1],[-1,1],[0,1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[1,-1],[-1,-1],[-1,-1],[1,-2],[0,-1],[0,-1],[-2,-1],[-1,-1],[0,-1],[-2,0],[-1,1],[0,1],[-1,1],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-4,2],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,-2],[-1,0],[-1,1],[-2,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[4,2],[1,0],[0,2],[-1,1],[0,1],[1,1],[1,0],[-1,0],[-1,1],[-1,1],[1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[1,2],[14,5],[0,2],[7,2],[2,3],[3,2],[1,0],[2,0],[1,0],[0,2],[-1,-1],[-3,1],[2,0],[2,1],[3,1],[5,0],[0,-1],[-1,0],[1,-1],[7,2],[3,-1],[2,1],[1,0],[1,-1],[0,-1],[1,-1],[3,1],[3,0],[1,1],[-4,1],[2,2],[1,1],[8,1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[2,0],[1,0],[1,0],[-2,2],[-1,0],[8,1],[-2,1],[-4,-1],[-2,1],[-1,0],[-6,1],[0,-1],[-1,0],[0,1],[-1,0],[2,2],[1,1],[3,1],[2,0],[-1,1],[-1,0],[-5,0],[-1,0],[-1,2],[2,0],[2,2],[2,1],[3,-1],[3,1],[-1,1],[-7,0],[-7,-2],[-9,1],[-1,1],[1,2],[-1,0],[-1,1],[0,1],[-1,1],[1,1],[2,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-2,0],[-1,0],[-1,1],[1,0],[1,1],[-1,0],[-1,0],[-1,0],[-3,2],[-5,2],[-1,1],[0,1],[0,1],[1,1],[1,2],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[1,0],[-1,1],[2,1],[0,1],[-3,2],[0,1],[1,-1],[2,0],[-1,0],[1,-1],[1,-1],[1,0],[12,3],[12,3],[9,-1],[5,-3],[6,-1],[7,-3],[4,-4],[3,-2],[0,-1],[1,-3],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-4],[1,-1],[1,-1],[1,-1],[-1,-2],[-1,-2],[1,0],[4,3],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[12,-1],[1,0],[5,-4],[8,-1],[0,1],[-2,1],[-1,1],[1,1],[-1,1],[-1,0],[1,2],[3,0],[4,-1],[8,1],[8,-2],[8,-2],[0,1],[0,1],[0,1],[-9,2],[-1,3],[1,1],[5,-1],[1,1],[2,2],[2,0],[1,0],[1,1],[1,2],[1,1],[1,0],[7,7],[1,1],[0,1],[0,1],[1,0],[1,1],[3,5],[1,1],[2,2],[1,1],[0,1],[0,1],[0,1],[1,1],[2,1],[-1,2],[1,0],[1,1],[-1,0],[0,1],[-1,0],[1,1],[-1,1],[-1,1],[2,1],[1,0],[4,0],[0,1],[0,1],[1,0],[0,1],[-5,0],[-4,-1],[-3,-3],[-1,0],[0,-2],[1,-2],[0,-1],[1,-2],[-1,-1],[-5,-2],[-1,-1],[0,-1],[-1,-1],[1,0],[-1,-1],[-2,-1],[-1,-1],[-2,-5],[0,-1],[-1,-1],[-3,-2],[-2,-3],[-1,-1],[-7,-5],[-6,-3],[-1,0],[1,1],[-5,0],[-7,2],[-12,-1],[-2,1],[-1,1],[1,1],[-1,1],[1,0],[0,1],[5,2],[1,1],[1,1],[2,2],[1,1],[1,2],[0,1],[-1,1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[-2,-2],[-7,-2],[-1,1],[-8,3],[-1,0],[0,1],[1,1],[0,1],[-2,2],[4,1],[0,1],[0,1],[0,1],[1,1],[3,-1],[2,2],[1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-4,-1],[-1,0],[-2,0],[0,1],[-1,1],[1,1],[2,1],[2,1],[2,1],[4,-1],[2,0],[1,1],[1,0],[1,0],[-1,-2],[-1,-2],[1,0],[6,5],[8,-1],[2,0],[-7,2],[-9,0],[-10,-1],[-3,-2],[-3,-1],[-1,0],[0,1],[-1,1],[0,1],[1,0],[-4,1],[-1,1],[0,1],[9,4],[8,4],[1,0],[3,-2],[6,0],[3,2],[1,1],[6,-1],[1,1],[-8,0],[-4,-2],[-3,0],[-7,4],[1,1],[2,2],[0,1],[-1,0],[0,1],[5,-1],[6,3],[6,-1],[6,-3],[5,2],[-6,0],[-5,2],[-10,1],[-3,-2],[-2,0],[0,1],[0,2],[0,1],[2,2],[1,2],[1,1],[6,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-2,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[1,2],[2,2],[1,1],[0,1],[-1,0],[-2,-3],[-3,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,0],[-3,-4],[-1,-2],[-3,-2],[-1,-1],[0,-1],[-3,-2],[-1,0],[1,0],[-10,-1],[-10,-2],[-1,0],[-1,0],[0,1],[0,1],[0,2],[1,1],[0,1],[1,1],[3,0],[0,1],[2,2],[3,2],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,2],[1,0],[0,1],[0,2],[1,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-2],[0,-1],[-2,-1],[-3,-2],[-1,-1],[-2,1],[-2,0],[-2,0],[-1,0],[-1,-2],[-4,-4],[-2,0],[-9,0],[-10,0],[-1,1],[-1,0],[1,2],[2,1],[10,2],[-3,1],[-3,1],[-2,-1],[-2,-1],[-1,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[-1,1],[1,2],[1,1],[9,7],[8,0],[0,1],[-1,1],[-4,-1],[-2,1],[0,1],[3,4],[1,1],[0,2],[1,1],[9,7],[1,0],[1,0],[1,-1],[13,3],[8,-1],[7,4],[3,0],[4,2],[1,1],[1,-1],[4,1],[9,-4],[13,-1],[13,-1],[6,-3],[6,-2],[2,-1],[3,-2],[10,-2],[1,-1],[1,-1],[1,0],[-1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[2,-1],[2,-1],[1,-1],[1,0],[3,1],[0,1],[0,1],[-7,4],[-3,3],[3,0],[1,1],[0,1],[6,-1],[1,0],[-1,2],[-2,0],[-13,-1],[-3,2],[-1,0],[-2,0],[-1,1],[-1,1],[-1,0],[-3,0],[0,1],[-1,1],[0,1],[1,1],[7,0],[9,-1],[7,-1],[1,1],[1,1],[8,1],[7,0],[1,-1],[-2,0],[2,-1],[1,1],[0,1],[1,0],[0,2],[-2,2],[1,2],[0,2],[1,0],[0,1],[1,0],[4,4],[-1,1],[-1,-1],[-9,-2],[-1,-2],[-1,-1],[0,-1],[-2,-1],[-2,-2],[0,-1],[-12,-2],[-1,0],[-1,1],[-10,3],[-10,-1],[-9,1],[-9,2],[-8,-1],[-7,4],[-6,2],[-1,1],[0,2],[2,1],[1,1],[4,2],[2,1],[3,-2],[5,0],[3,-1],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[7,-1],[8,-1],[1,1],[1,1],[-1,1],[-3,-2],[-1,1],[-4,1],[-1,1],[1,0],[-1,1],[-4,2],[-3,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,1],[-1,2],[-1,0],[-2,-2],[-2,-1],[-5,1],[1,0],[-1,1],[0,2],[0,1],[0,1],[-1,0],[-1,2],[-1,0],[0,1],[0,1],[0,3],[0,1],[-1,0],[0,2],[-1,1],[-2,1],[-3,0],[-5,3],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[-2,0],[1,1],[0,1],[-4,3],[-4,2],[-9,2],[-6,-1],[-9,2],[-8,2],[-1,1],[0,1],[0,2],[0,1],[1,0],[2,0],[-1,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[2,0],[10,-1],[2,-1],[10,0],[3,-3],[2,0],[2,1],[1,1],[-5,0],[-3,3],[-10,1],[-2,1],[-13,1],[-3,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,2],[0,1],[1,2],[1,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[7,1],[8,1],[4,-2],[12,-3],[9,0],[10,1],[8,-1],[8,0],[7,-1],[13,-8],[6,-5],[12,-5],[7,-5],[7,-4],[2,-2],[1,-1],[2,-4],[1,-1],[0,-1],[-1,-1],[2,-2],[3,0],[4,0],[0,-2],[0,-1],[2,-2],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[4,-1],[1,0],[4,3],[2,0],[11,-2],[11,-3],[0,1],[-1,0],[0,1],[8,2],[7,2],[4,-1],[1,1],[4,4],[-9,-1],[-9,-1],[-1,-1],[-12,-1],[-12,5],[-5,-1],[-1,0],[0,1],[1,1],[0,1],[-2,1],[-2,0],[1,1],[1,2],[0,1],[-1,2],[-1,2],[-1,0],[0,1],[0,1],[1,0],[2,1],[3,0],[2,1],[-2,1],[-7,1],[-8,1],[-2,2],[-3,0],[-9,7],[-12,9],[-2,3],[-6,2],[0,1],[2,1],[8,1],[9,1],[8,1],[7,1],[11,1],[11,1],[12,2],[12,1],[1,1],[0,1],[-1,0],[-1,1],[9,1],[8,0],[7,1],[2,1],[11,0],[3,1],[3,-1],[4,1],[8,0],[8,-1],[2,1],[0,1],[1,0],[0,1],[-11,0],[-11,1],[-13,0],[-10,0],[-10,0],[2,1],[9,3],[5,2],[9,1],[6,2],[6,1],[3,2],[6,0],[3,1],[1,0],[13,1],[6,1],[10,0],[8,1],[8,0],[1,1],[1,1],[-3,2],[-5,0],[-7,-1],[-10,1],[-8,0],[-9,0],[-3,-1],[-10,-1],[-10,-1],[-1,0],[-1,0],[-1,1],[1,2],[1,1],[0,1],[0,2],[-1,1],[-1,1],[1,1],[0,1],[12,6],[1,1],[1,2],[-2,1],[1,1],[1,0],[4,1],[3,0],[2,2],[2,2],[4,3],[5,1],[1,1],[8,2],[4,2],[4,0],[3,2],[6,2],[0,1],[-1,1],[-2,0],[-13,-4],[-13,-3],[-2,-2],[-9,-2],[-8,-5],[-3,-1],[-3,-2],[-1,-1],[0,-1],[-1,-1],[1,-1],[1,0],[-1,-1],[-6,-1],[-8,4],[-8,3],[1,-2],[9,-5],[2,0],[0,-1],[-1,-1],[-3,0],[-1,-1],[-2,-2],[0,-1],[0,-1],[1,-1],[1,0],[2,1],[1,-1],[0,-1],[-1,-1],[-2,-2],[-1,0],[-2,0],[-1,0],[-1,-2],[0,-1],[-1,-1],[-4,-3],[-8,-2],[-4,-3],[-4,0],[-4,-1],[-8,-3],[-7,-3],[-9,-2],[-10,0],[-7,-2],[-7,-1],[-7,-1],[-1,-1],[-1,0],[-9,0],[-5,-1],[-6,0],[-1,1],[0,2],[0,2],[1,1],[1,1],[1,1],[3,0],[1,0],[2,2],[9,1],[10,2],[3,2],[3,0],[5,4],[-1,1],[-2,0],[-3,1],[-2,-1],[-3,-1],[-6,-2],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-12,-1],[-8,-2],[-6,0],[-1,1],[1,0],[-1,1],[-1,1],[2,1],[4,1],[6,3],[1,1],[-4,1],[-2,0],[-1,-2],[-5,-2],[-1,0],[-1,0],[-1,-2],[-1,-1],[-5,1],[1,0],[2,-1],[-1,0],[-1,-1],[0,-1],[1,-2],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-3],[-1,-1],[-1,-1],[-2,0],[-5,0],[-9,-2],[-8,1],[-6,0],[-6,-2],[-12,2],[-2,1],[-5,-1],[-1,1],[2,2],[4,2],[2,2],[-6,-2],[-8,-4],[-1,0],[-9,2],[-9,2],[2,4],[4,4],[10,8],[10,8],[5,3],[4,0],[1,1],[3,0],[3,1],[1,0],[0,1],[6,0],[-1,1],[1,0],[1,0],[1,-1],[1,0],[9,1],[9,1],[2,1],[13,1],[13,2],[13,1],[2,1],[6,1],[3,2],[-1,0],[-12,-2],[-13,-1],[-13,-2],[-12,-1],[-2,0],[-13,-1],[-12,-1],[-3,-1],[-3,0],[-3,0],[-8,-2],[-9,-3],[-7,-4],[-2,-2],[-1,-1],[-3,-1],[-2,-2],[1,0],[-13,-8],[0,-1],[-1,-2],[-1,-1],[-4,-3],[-5,0],[-7,1],[-5,2],[-6,1],[-7,3],[-7,3],[-9,2],[-7,4],[-5,1],[-2,2],[0,1],[0,1],[3,1],[2,1],[7,0],[4,2],[13,1],[8,0],[8,0],[6,-1],[13,0],[3,1],[9,0],[7,2],[5,3],[7,1],[5,-1],[1,1],[-2,0],[0,1],[-1,1],[1,1],[1,0],[3,1],[2,1],[2,1],[2,1],[9,3],[10,2],[2,1],[1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-3,2],[-2,-1],[-6,0],[-9,-2],[-9,-2],[-9,-4],[-2,-2],[-7,-2],[1,0],[-12,-1],[-13,-3],[-13,1],[-13,-2],[-14,-1],[-14,-1],[-13,-1],[-4,1],[-1,1],[-3,0],[-2,2],[-1,1],[-1,2],[-2,2],[-1,1],[0,1],[1,1],[9,4],[1,0],[1,0],[2,0],[1,0],[6,-2],[1,0],[9,1],[8,1],[-1,2],[-11,-1],[-5,2],[-8,1],[-3,2],[1,1],[9,1],[4,3],[6,1],[7,4],[3,-1],[1,0],[1,0],[-1,0],[-2,1],[-1,1],[1,1],[1,0],[11,1],[5,0],[10,1],[-1,0],[0,-1],[1,0],[1,0],[3,1],[2,-1],[5,0],[7,-2],[1,1],[-1,0],[0,1],[-1,0],[-10,2],[-10,2],[-2,-1],[-4,0],[1,1],[-2,1],[-1,0],[-2,0],[-3,-2],[-3,0],[-10,-1],[-9,-3],[-6,-1],[-7,-3],[-13,-3],[-3,-2],[-2,0],[-2,0],[-2,1],[2,1],[-10,3],[1,1],[10,4],[10,4],[3,0],[1,0],[1,1],[0,1],[8,0],[1,2],[-7,0],[-7,0],[1,0],[0,1],[1,0],[-1,1],[-1,0],[-1,0],[-3,3],[-2,0],[-1,-1],[0,-1],[0,-1],[2,-1],[-1,0],[-2,1],[-3,0],[-5,1],[-1,0],[-2,-2],[-1,-1],[-3,0],[-1,0],[-1,-1],[0,-1],[1,-3],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-9,-2],[1,1],[1,0],[-1,1],[0,2],[-1,1],[-8,0],[-2,1],[-1,0],[-2,1],[0,1],[1,0],[1,0],[-1,1],[-2,0],[2,1],[2,-1],[2,1],[-2,0],[1,1],[1,0],[0,1],[1,1],[0,1],[3,0],[1,2],[3,1],[2,0],[5,-1],[3,1],[2,-1],[0,1],[-2,1],[-1,1],[1,2],[3,1],[7,0],[1,0],[1,0],[0,1],[2,1],[10,2],[9,-1],[-1,1],[-1,0],[3,0],[3,1],[1,0],[2,0],[-1,-1],[-1,0],[1,-1],[2,-2],[3,-1],[1,0],[1,-1],[-1,0],[1,0],[2,-1],[1,-1],[0,1],[0,1],[2,1],[3,2],[0,1],[0,1],[-6,0],[-1,1],[0,1],[1,0],[1,1],[3,0],[4,-2],[3,1],[-1,1],[1,0],[-2,3],[1,1],[9,4],[13,1],[2,1],[1,0],[1,1],[2,0],[6,-2],[6,1],[6,-1],[5,-3],[0,-1],[-4,-3],[1,-1],[8,-2],[8,-3],[-1,2],[-2,1],[-7,2],[-2,1],[8,1],[0,1],[-4,2],[0,1],[1,0],[9,1],[11,-1],[2,0],[2,-1],[3,-1],[8,-5],[8,-6],[1,0],[-1,2],[-6,4],[-3,3],[2,1],[11,0],[2,0],[5,-6],[3,-1],[3,-1],[-4,3],[-3,4],[1,1],[4,-1],[1,0],[1,-1],[-1,-2],[2,-2],[1,-1],[4,-1],[-1,1],[-2,2],[0,2],[0,1],[-1,1],[-14,3],[-14,2],[-14,3],[-13,2],[-4,4],[-1,1],[1,1],[8,2],[6,-1],[9,0],[10,1],[3,2],[1,0],[3,0],[2,1],[-3,2],[-1,0],[0,1],[1,1],[1,0],[-3,0],[0,1],[1,3],[-2,1],[-4,0],[-2,1],[-3,0],[-1,0],[1,1],[1,0],[2,1],[10,1],[10,0],[10,1],[1,-1],[1,-2],[-1,0],[-7,-1],[-1,0],[12,-2],[4,-2],[0,-1],[1,0],[4,1],[7,-1],[7,-1],[7,-3],[2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[8,-4],[1,-1],[1,-2],[1,0],[-1,-2],[-2,-1],[-2,-1],[9,0],[10,-1],[9,0],[4,-2],[2,0],[0,1],[-2,2],[-4,2],[-13,-1],[-1,1],[-6,6],[-5,3],[0,1],[0,1],[-1,2],[1,0],[1,1],[11,-4],[5,0],[7,-4],[8,-2],[8,-3],[-1,0],[14,-3],[13,-4],[1,-1],[1,0],[1,0],[2,0],[12,-2],[11,-8],[1,-2],[2,0],[8,-1],[-13,8],[0,2],[-2,1],[-3,0],[-1,1],[0,1],[2,0],[0,1],[-1,1],[-10,2],[-10,1],[-9,2],[-1,1],[-1,1],[1,0],[2,2],[-11,0],[-14,5],[-13,5],[-13,5],[0,1],[0,1],[0,1],[1,2],[5,4],[14,0],[14,0],[-2,0],[-10,1],[0,1],[-10,4],[-3,2],[1,2],[1,1],[7,1],[9,-2],[9,-1],[8,-3],[7,-4],[8,1],[0,1],[-7,4],[-7,4],[-1,1],[-1,2],[-3,1],[-2,2],[-4,0],[-2,2],[-1,1],[1,1],[1,0],[2,1],[10,-1],[11,-1],[11,-1],[1,-1],[0,-1],[-1,0],[4,-2],[1,-1],[-1,-1],[-1,0],[1,-2],[2,0],[5,-1],[1,-1],[1,0],[1,0],[-4,2],[-1,1],[1,2],[1,0],[11,-2],[11,-1],[2,0],[3,0],[11,0],[1,1],[-13,2],[-13,2],[-13,1],[-1,1],[1,2],[-2,0],[2,1],[6,0],[0,1],[-9,1],[-9,1],[-2,1],[0,2],[1,0],[2,0],[1,1],[1,0],[1,0],[1,1],[11,2],[12,1],[1,-1],[1,0],[2,-1],[-1,0],[0,-1],[1,0],[2,-1],[1,-1],[0,-2],[2,0],[1,0],[5,5],[3,0],[2,0],[2,-1],[1,-1],[0,-1],[-1,-3],[1,-1],[1,1],[1,1],[2,0],[0,-1],[1,-1],[2,0],[2,-1],[2,0],[-1,0],[-1,1],[-1,0],[-1,1],[1,1],[4,-1],[1,0],[1,0],[-1,1],[-2,1],[1,1],[6,2],[10,-3],[10,-2],[5,-4],[1,-1],[-1,-1],[1,-1],[4,0],[1,-1],[5,-5],[4,-1],[1,0],[0,-1],[1,0],[2,-1],[3,0],[6,-2],[2,0],[-1,-1],[-1,-1],[-1,0],[-3,-2],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[1,0],[1,-2],[1,1],[7,5],[7,4],[6,1],[1,1],[-1,1],[-9,2],[-9,2],[0,1],[-1,0],[-2,0],[-2,2],[-1,2],[2,1],[5,0],[2,1],[-11,0],[-4,2],[-4,4],[-10,4],[-10,4],[1,1],[1,1],[5,1],[0,-1],[-1,0],[1,-1],[13,1],[12,1],[3,1],[10,0],[9,0],[2,-1],[2,0],[0,-1],[3,0],[1,1],[3,1],[12,-2],[12,-1],[4,-3],[1,0],[0,-1],[0,-1],[1,0],[2,-1],[0,-1],[1,-1],[1,-2],[11,-4],[12,-3],[11,-4],[0,1],[3,0],[0,1],[-9,2],[-8,2],[-6,4],[-1,0],[0,1],[-2,2],[-1,1],[-3,1],[-2,1],[1,1],[1,1],[4,1],[5,3],[9,2],[1,1],[-3,0],[1,1],[5,0],[2,1],[3,1],[1,0],[1,-2],[1,0],[6,2],[9,0],[9,0],[1,-1],[-1,0],[-4,-3],[-1,-2],[1,-1],[6,-3],[-1,-1],[11,-2],[10,-2],[-1,1],[-12,6],[-4,1],[-1,0],[0,1],[6,3],[4,1],[1,0],[-1,1],[0,1],[3,0],[2,-1],[1,-1],[1,1],[1,0],[-1,1],[-1,0],[3,0],[10,1],[10,0],[11,0]],[[8104,5277],[0,-1],[-1,0],[0,1],[1,0]],[[8131,5319],[-1,1],[1,0],[0,-1]],[[8120,5331],[-1,0],[0,1],[1,0],[0,-1]],[[8074,5564],[1,-6],[0,-1],[1,-1],[0,-2],[1,0],[2,-1],[1,0],[0,1],[1,-2],[1,-9],[0,-4],[0,-4],[1,-2],[-1,-2],[1,0],[0,-1],[0,-2],[0,-1],[0,1],[-1,0],[0,-1],[-2,-3],[-1,-3],[0,-1],[-1,1],[0,1],[0,1],[-1,1],[1,1],[1,0],[-1,1],[-1,0],[0,-1],[0,-1],[0,-2],[1,0],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-2],[-1,0],[0,-2],[1,-1],[0,-1],[-1,-1],[-1,-1],[0,-3],[0,-2],[0,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-2],[0,1],[1,3],[0,-3],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,2],[-1,1],[0,1],[1,1],[0,-1],[1,-6],[-1,0],[-1,-1],[-1,-1],[0,-4],[0,-1],[-1,-1],[0,-1],[0,1],[-2,0],[0,1],[1,0],[1,0],[0,1],[-1,-1],[-1,0],[-1,-2],[-1,1],[-1,-2],[-2,-4],[-1,-2],[0,-1],[-1,-3],[-1,1],[0,-1],[1,-1],[0,-1],[0,-3],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-2],[0,1],[-1,0],[-1,0],[0,-2],[-1,-5],[0,-2],[0,1],[0,1],[-1,-1],[0,-1],[1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,2],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[-1,2],[0,1],[-1,0],[-3,1],[-3,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-3,0],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,6],[-1,2],[0,3],[0,2],[-1,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,6],[1,1],[0,1],[0,1],[1,1],[0,-1],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,0],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[1,1],[1,1],[0,2],[1,1],[1,1],[1,2],[1,1],[0,-1],[0,1],[0,1],[1,1],[1,3],[0,1],[0,1],[2,0],[0,1],[1,1],[1,1],[1,2],[1,2],[0,1],[0,1],[0,-1],[1,1],[1,0],[0,-1],[1,0],[-1,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,1],[0,3],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[-1,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[1,3],[1,0],[0,1],[1,-1],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[1,-2],[0,1],[1,2],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[-1,0],[1,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[0,1],[1,2],[-1,-1],[-1,0],[1,1],[0,1],[1,1],[0,2],[0,1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[2,-2],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,1],[0,-2],[0,-2],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,2],[1,1],[1,-1],[0,1],[0,3],[1,0]],[[8067,5599],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,3],[0,1],[-1,1],[1,0],[0,1],[0,-1]],[[8072,5616],[-1,-1],[-1,1],[0,1],[1,2],[0,1],[1,-1],[0,-1],[0,-1],[0,-1]],[[8030,5624],[-1,2],[1,1],[1,-1],[0,-1],[-1,0],[0,-1]],[[8066,5629],[0,-2],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-2,0],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,-1],[1,1],[-1,0],[0,1],[1,0],[1,0],[1,1]],[[8068,5636],[1,0],[0,1],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[1,2],[0,1],[1,0],[0,-1],[-1,-1],[0,-3],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[-1,0]],[[8109,5668],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-2,0],[-1,-1],[0,-1],[0,-1],[-2,0],[0,1],[1,2],[0,1],[0,2],[1,0],[1,1],[1,-1]],[[8128,5667],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[2,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[8134,5676],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,2],[0,2],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,3],[0,-1],[1,1],[1,0],[0,-1]],[[8146,5685],[-1,-1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[8160,5692],[-1,-2],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[8174,5696],[-2,-2],[0,1],[1,1],[1,0],[0,1],[0,-1]],[[8149,5698],[0,-1],[1,1],[-1,-1],[0,-2],[0,-1],[0,-1],[-2,0],[0,1],[1,3],[0,1],[1,1],[0,-1]],[[8153,5698],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1]],[[8148,5704],[0,-2],[-1,-2],[0,-2],[-1,-1],[0,1],[0,1],[-1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,1]],[[8154,5704],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[8169,5708],[0,-1],[1,1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,-1]],[[8172,5713],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0]],[[8167,5716],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1]],[[8155,5723],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,2]],[[8156,5735],[0,-1],[-1,1],[-1,3],[-1,2],[-1,2],[-1,1],[0,1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-2],[0,-2],[0,-1]],[[8152,5755],[1,-3],[0,-1],[1,0],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,-1],[-1,0],[0,1],[-1,3],[0,-2],[0,1],[-1,1],[-1,2],[0,1],[0,1],[1,0],[1,0],[1,-1]],[[8153,5754],[0,1],[-1,2],[0,2],[0,1],[1,0],[0,-1],[0,-1],[0,-2],[0,-2]],[[8253,5795],[0,-1],[0,-2],[0,-2],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,1],[1,-1],[0,1],[1,0],[0,-1]],[[8249,5802],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0]],[[8261,5815],[1,-1],[0,1],[1,0],[1,-1],[0,-2],[-1,1],[0,-1],[-1,-1],[1,-2],[-1,-1],[0,1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[-2,1],[1,1],[0,2],[1,4],[0,1],[-1,0],[0,-1],[0,1],[1,2],[0,2],[0,1],[0,1],[1,-1],[0,-1]],[[8281,5870],[0,-1],[1,1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,2],[1,1],[0,-1],[1,0]],[[8319,5917],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[1,1],[0,-1],[1,-1],[0,-1]],[[8313,5932],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[1,0],[0,1],[0,-1],[1,0],[-1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1]],[[8326,5945],[1,-1],[0,1],[1,-1],[0,-1],[-1,0],[1,-1],[1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,1],[-1,0],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[1,1],[0,1],[2,-1],[0,1],[0,1],[-1,0],[0,1],[0,3],[0,1],[-1,-1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,-2]],[[8316,5970],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,3],[0,-1],[0,-2],[1,-1],[1,0],[2,-2],[1,-1],[0,-1],[0,-1]],[[8322,5977],[-2,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,-2],[1,0],[-1,-1]],[[8343,6039],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,-1]],[[8363,6074],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[8365,6101],[0,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[-1,0]],[[8363,6111],[1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,1],[1,1],[0,1],[1,-1],[0,1]],[[8368,6119],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[0,-1],[-1,-1],[-1,0],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[1,1],[0,1],[1,1],[1,-2],[0,-1],[-1,-2],[1,-2],[0,-1]],[[8384,6190],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[2,0],[0,-1],[0,-1]],[[8387,6189],[-1,-3],[0,1],[-1,0],[0,1],[0,1],[-1,2],[0,1],[1,1],[1,0],[1,-1],[0,-2],[0,-1]],[[8392,6233],[1,-3],[0,-1],[0,-2],[0,2],[-1,-1],[0,1],[0,-1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[8397,6236],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[1,0],[1,-1],[0,-1],[0,-2],[0,-1]],[[8388,6245],[-1,0],[-1,1],[0,1],[1,1],[1,-1],[0,-1],[0,-1]],[[8398,6248],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[8385,6250],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[1,-1],[0,-1],[0,-1],[1,0],[0,-2],[-1,-1],[0,-2]],[[8393,6259],[0,-1],[0,1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,2],[0,1],[3,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1]],[[8399,6271],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[1,1],[0,1],[1,0],[1,0]],[[8394,6269],[0,-1],[-1,1],[-1,0],[-1,1],[-1,2],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[8396,6284],[1,1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1]],[[8401,6302],[1,-1],[0,1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[8384,6342],[-1,0],[0,1],[0,1],[-1,3],[1,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1]],[[8382,6344],[-1,1],[-1,1],[-3,5],[0,1],[0,1],[0,-1],[2,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-2],[0,-1]],[[8386,6353],[-2,-1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,0],[-1,2],[0,1],[-1,1],[-2,2],[-1,2],[-1,0],[-1,1],[0,1],[-1,3],[-1,2],[-1,1],[-1,2],[0,1],[1,1],[0,1],[2,1],[1,-1],[1,0],[1,-1],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-2],[4,-1],[2,-2],[2,-3],[0,-2],[-1,-2],[-1,-2]],[[8330,6397],[0,-1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,1],[-1,2],[0,1],[1,2],[1,0],[0,-1],[1,-2],[1,-7],[0,-2],[1,-3]],[[8354,6804],[-1,-1],[0,1],[0,1],[0,2],[0,-1],[1,-1],[0,-1]],[[8350,6807],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[8353,6808],[-1,0],[0,1],[0,1],[1,-1],[0,-1]],[[8354,6822],[-1,0],[0,1],[0,1],[1,-2]],[[8355,6831],[0,1],[1,0],[0,-1],[-1,0]],[[8295,6884],[-2,-6],[-2,-3],[-1,1],[1,0],[-1,2],[0,3],[0,2],[1,1],[1,0],[1,-3],[1,2],[0,1],[0,1],[1,1],[0,-2]],[[8421,6885],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,-1]],[[8399,6892],[0,-1],[0,1],[-1,-1],[-1,0],[0,1],[0,1],[1,1],[1,1],[0,-1],[0,-1],[0,-1]],[[8409,6897],[0,-1],[-1,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[2,0],[1,0]],[[8407,6899],[-1,-1],[-2,0],[-1,1],[-1,2],[1,0],[1,-1],[2,0],[0,-1],[1,0]],[[8370,6914],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[0,1],[0,2],[1,1],[0,1],[-1,1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[8417,6916],[-1,-1],[-1,0],[0,1],[0,2],[1,1],[0,-1],[1,-1],[0,-1]],[[8625,7127],[0,1],[0,3],[0,1],[-1,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-2,3],[0,2],[-1,3],[-1,2],[0,3],[0,6],[0,2],[-1,0],[-2,0],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,-1],[-1,-1],[-2,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-5],[0,-2],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-3],[0,-2],[0,-3],[-1,-2],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,2],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,-2],[0,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-2],[-1,0],[-1,1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[0,-1],[0,-3],[-1,0],[-1,0],[-2,1],[-2,0],[-1,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-3,0],[-5,-2],[-1,0],[-1,-1],[0,-1],[1,-6],[0,-2],[1,-1],[0,-1],[2,-5],[0,-2],[0,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-3],[-3,-10],[-1,-2],[-1,1],[0,1],[-1,-1],[-1,0],[0,1],[0,2],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-3,0],[-1,0],[0,-1],[-1,0],[0,2],[-2,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,1],[-1,0],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[-2,1],[0,1],[-1,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,2],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,-2],[-1,2],[-1,1],[-1,0],[0,-1],[1,-1],[0,-1],[-1,-2],[-1,0],[-1,0],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-3],[-1,-3],[0,-1],[0,-1],[1,-2],[0,-2],[-1,-1],[0,1],[0,1],[-1,0],[-1,-2],[-1,-3],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,-3],[0,-1],[-1,-1],[-3,-3],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-2,-2],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-2],[1,-2],[0,-1],[-2,-1],[0,1],[0,1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,-3],[-1,-2],[-1,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-2,0],[0,-1],[0,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-4,-7],[0,-1]],[[8454,6957],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-2,-3],[-1,-1],[-1,-2],[-1,1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[-2,2],[0,2],[0,3],[0,-1],[-1,0],[0,-1],[0,-2],[0,-4],[-1,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[-1,-1],[-1,-3],[0,-1],[-1,1],[0,1],[0,3],[0,1],[1,0],[-1,1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,2],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-2,0],[0,2],[0,-1],[-2,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-2],[-1,1],[-2,-1],[0,1],[-2,-4],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-2,-3],[0,1],[-1,0],[1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,-2],[-3,-4],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[-1,0],[0,-1],[-2,-2],[0,-1],[-1,0],[0,-2],[-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,1],[-1,0],[1,-2],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,1],[-1,3],[0,1],[-1,1],[-1,-1],[1,-1],[0,-1],[-1,1],[-1,0],[-1,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[2,0],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,1],[0,-1],[-1,-2],[-1,0],[0,-1],[-3,1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[1,0],[-1,-4],[-1,0],[-1,1],[0,2],[-1,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,2],[1,0],[-1,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,1],[1,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,1],[1,2],[3,1],[1,2],[0,2],[0,1],[-1,1],[0,2],[0,-1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,-1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,2],[1,1],[2,0],[2,2],[0,2],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,1],[-1,0],[0,-2],[-4,0],[-1,0],[-1,2],[-1,5],[-1,3],[-1,1],[-1,0],[-1,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[1,1],[1,2],[0,1],[1,1],[2,0],[2,1],[0,2],[0,1],[1,0],[1,-2],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,-1],[-1,1],[0,2],[-1,1],[0,1],[1,1],[0,1],[-1,2],[1,1],[1,3],[1,-1],[1,1],[1,2],[1,2],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[-1,1],[-1,0],[2,1],[1,3],[0,1],[2,2],[0,2],[0,2],[1,1],[1,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[1,2],[1,2],[0,3],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[-2,3],[-1,0],[-1,1],[0,2],[1,2],[0,2],[-1,1],[0,-1],[-1,0],[0,1],[-1,3],[-1,0],[-4,5],[-1,0],[0,1],[0,2],[0,4],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,1],[-1,1],[-1,-2],[0,-1],[-1,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,0],[-3,-1],[-1,0],[-1,2],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-2,-3],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-5,-3],[-1,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[0,-2],[-1,-5],[0,-1],[0,-2],[-1,0],[-1,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[1,2],[1,0],[-1,-3],[0,-3],[1,-3],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-1],[-1,1],[0,-1],[-2,-4],[-1,-2],[-1,-2],[0,-2],[-1,-1],[0,-1],[-2,-3],[-1,-1],[0,1],[1,1],[0,1],[0,1],[1,1],[-1,0],[-1,-1],[-1,-1],[1,1],[-1,1],[0,1],[-1,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[1,-1],[-1,-1],[-1,0],[0,-1],[-2,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[0,2],[-1,2],[0,2],[-1,2],[-1,3],[-2,1],[-2,-1],[-1,0],[-1,-1],[-2,-3],[-2,-3],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-4,-12],[0,-1],[0,-1],[0,-5],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-2],[3,-9],[1,-5],[3,-6],[0,-2],[2,-1],[1,-1],[1,-2],[0,-1],[1,0],[1,-1],[1,-1],[-1,-1],[1,0],[0,-1],[1,0],[0,1],[1,-1],[2,1],[3,-2],[3,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,2],[3,0],[1,0],[1,0],[2,-2],[1,-2],[0,-2],[0,-1],[1,-1],[0,-3],[1,-2],[1,-1],[1,-3],[1,-4],[1,-2],[1,-1],[1,-3],[1,-3],[0,-3],[-1,0],[-1,2],[-2,2],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-3],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-3],[-1,-11],[0,-3],[1,-3],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[2,-2],[1,-2],[4,-3],[4,-1],[1,1],[1,0],[1,0],[0,1],[3,-1],[2,1],[1,0],[0,1],[1,1],[2,4],[1,1],[-1,3],[0,2],[-1,2],[1,1],[0,1],[2,1],[1,2],[1,0],[1,1],[4,5],[3,6],[0,3],[0,2],[-1,1],[-1,0],[-1,0],[1,1],[2,0],[2,0],[0,1],[1,0],[1,2],[0,1],[3,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,-1],[-1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[3,0],[1,1],[1,1],[-1,2],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-2],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,1],[1,0],[-1,2],[-1,-1],[0,1],[0,1],[1,0],[1,0],[2,-1],[5,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[-1,3],[1,0],[0,1],[1,2],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,-2],[5,0],[1,0],[0,-1],[2,0],[1,1],[2,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[-1,-2],[0,-2],[1,-2],[-1,2],[-1,0],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-2,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[-1,-1],[0,-2],[0,3],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-2,-2],[0,-1],[0,-1],[1,0],[0,2],[1,0],[1,-1],[1,1],[0,-6],[0,-2],[-1,-1],[0,1],[0,1],[-1,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-3,2],[-1,0],[0,1],[0,2],[1,1],[1,0],[-1,1],[-1,2],[0,3],[0,1],[0,1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-2],[1,-2],[-1,-1],[-4,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[1,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[-4,-4],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,2],[0,-1],[0,-2],[-1,0],[-1,0],[-1,0],[1,2],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,-2],[-1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,3],[1,1],[1,0],[0,-3],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[0,2],[-1,1],[1,2],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-3],[0,-1],[0,-2],[1,-1],[-1,-1],[-1,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-4],[0,-1],[0,-1],[0,-1],[-2,-2],[-1,-1],[-1,1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,4],[-1,2],[-1,1],[0,2],[0,1],[-1,-1],[0,-2],[0,-2],[1,-1],[-1,-1],[-1,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[1,0],[1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,0],[1,1],[0,-2],[1,1],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-3],[-1,-1],[0,1],[0,1],[1,1],[0,1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-3],[0,-1],[-1,-6],[0,-2],[-1,0],[-1,2],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[0,1],[0,2],[-1,-1],[-1,-4],[-1,-1],[1,2],[-1,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-4],[-1,-1],[0,-1],[0,-2],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-2],[0,-1],[-1,-4],[0,-6],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-5],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,2],[0,1],[2,0],[1,0],[0,1],[0,1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[2,-5],[2,-2],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[1,-2],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-2],[2,-3],[1,-1],[3,-2],[1,-1],[0,-2],[0,-1],[0,-2],[1,-3],[0,-2],[0,-1],[1,-1],[0,-2],[0,-3],[0,-1],[1,-1],[0,-5],[1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-3],[0,-3],[-1,0],[1,-3],[0,-1],[1,-4],[0,-1],[2,-3],[0,-1],[1,-3],[0,-1],[0,-5],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-2],[0,-2],[0,-1],[0,-3],[0,-2],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[1,-9],[0,-2],[-1,-3],[-1,-1],[0,-2],[0,-3],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-2],[2,-1],[0,-2],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,0],[0,-1],[0,-2],[1,1],[1,-1],[0,-1],[1,0],[0,-1],[2,-1],[2,-3],[1,-2],[0,-2],[1,-6],[0,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-4],[1,0],[0,-1],[0,-1],[1,-2],[0,1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[0,-1],[2,-1],[0,-2],[1,-1],[0,-2],[1,-1],[1,-3],[0,-3],[0,-3],[1,-2],[0,-2],[0,-1],[-2,-1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-2,2],[-3,3],[-1,1],[-1,-2],[-2,-2],[-2,-3],[-1,1],[-1,1],[-1,0],[0,-1],[-1,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,2],[-2,5],[-1,2],[-2,1],[-3,3],[-2,0],[-1,0],[-1,0],[-2,-2],[-1,-2],[-2,-4],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,1],[-1,1],[-1,2],[-1,1],[-2,7],[0,1],[0,1],[0,1],[0,3],[0,1],[0,-1],[-1,1],[0,4],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,-1],[0,-1],[1,0],[0,1],[0,1],[1,1],[1,-1],[0,-1],[1,0],[1,-1],[-1,-2],[0,-2],[0,-1],[1,-1],[1,-2],[1,0],[1,-3],[1,-1],[0,-2],[1,-2],[1,-1],[1,-1],[2,-2],[1,0],[2,0],[3,3],[2,1],[1,1],[0,2],[0,1],[1,0],[1,0],[2,-2],[2,0],[1,0],[1,-1],[1,-5],[1,-3],[0,-3],[0,-1],[-2,1],[0,1],[0,1],[-1,1],[1,-2],[0,-2],[0,-1],[3,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,-1],[2,-3],[2,-4],[1,-2],[2,-6],[1,-1],[0,-1],[2,-2],[1,-2],[2,-4],[3,-2],[1,-2],[1,-2],[2,-5],[3,-8],[2,-8],[0,-5],[0,-2],[-2,-2],[-2,0],[-2,0],[-3,-1],[-3,-1],[-1,-2],[-1,-1],[-1,-1],[-2,-4],[-2,-1],[-2,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-3],[-1,-2],[0,-2],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[1,-1],[0,-1],[-1,-1],[-1,-2],[0,-2],[-1,-1],[-1,0],[0,1],[-1,1],[0,3],[0,1],[-1,1],[-1,1],[-1,0],[-4,0],[-2,-1],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,-4],[-1,-3],[0,1],[1,1],[1,1],[0,2],[1,1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,2],[1,4],[1,1],[1,0],[3,0],[1,-1],[0,-2],[1,-4],[0,-2],[1,-1],[-1,-3],[-1,-2],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,-1],[-1,2],[-2,0],[-1,1],[-1,1],[1,1],[1,3],[1,3],[2,-1],[1,-2],[1,-1],[1,2],[1,0],[1,1],[3,5],[1,2],[0,1],[1,1],[2,1],[2,-1],[2,-1],[1,-2],[2,-5],[2,-4],[1,-4],[1,-3],[0,-2],[1,-1],[0,-1],[1,-1],[1,-1],[-1,-1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-2],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[0,-2],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-3],[-2,-4],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-3],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[0,2],[1,2],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[0,-1],[1,0],[1,1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,1],[0,2],[0,1],[1,-1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[0,2],[1,0],[0,1],[1,0],[0,1],[1,-1],[0,1],[1,0],[0,-2],[1,0],[0,-1],[0,-2],[-1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,-2],[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,0],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-2],[-1,0],[-1,0],[0,3],[0,1],[0,2],[0,1],[1,2],[-1,1],[1,0],[0,1],[1,0],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[0,2],[0,-1],[-1,0],[1,-2],[0,-3],[0,-3],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[0,2],[0,1],[0,3],[0,1],[0,2],[0,-1],[0,-2],[0,-4],[0,-1],[-1,1],[0,2],[0,4],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,-1],[3,0],[1,1],[3,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[-1,0],[0,-1],[0,-2],[1,0],[0,1],[-1,0],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,1],[-1,1],[0,1],[0,-2],[-1,0],[-1,1],[0,1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-3,-1],[-4,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[2,1],[1,0],[1,-1],[1,1],[1,0],[1,-2],[1,-3],[0,-1],[0,-2],[1,-2],[0,-2],[0,-1],[-1,0],[-1,-1],[1,0],[2,0],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[-1,-2],[0,-2],[-1,-1],[0,-1],[-1,0],[0,3],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,2],[-1,0],[0,2],[0,2],[-1,0],[0,3],[0,2],[-1,2],[0,1],[1,0],[0,1],[1,0],[-1,0],[-1,0],[-1,2],[0,-1],[0,-1],[-1,-1],[0,-3],[-1,-1],[-1,0],[0,2],[-1,-1],[0,-1],[1,-1],[2,1],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-2],[-1,-1],[0,-3],[0,-1],[0,-2],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[0,2],[-1,0],[0,-1],[1,-1],[0,-3],[0,-1],[0,-1],[2,0],[1,-1],[1,-1],[0,-1],[3,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-2],[-1,-1],[0,-1],[0,-2],[-1,-2],[-1,-3],[0,-1],[-1,0],[0,1],[-1,2],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment