Skip to content

Instantly share code, notes, and snippets.

@patiencehaggin
Last active November 15, 2018 02:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patiencehaggin/1470790f316d60e4f9e1e64cbb690a4e to your computer and use it in GitHub Desktop.
Save patiencehaggin/1470790f316d60e4f9e1e64cbb690a4e to your computer and use it in GitHub Desktop.
Sovereign debt denominated in foreign currency, as % of GDP
license: mit

Hover over select countries to view their debt denominated in foreign currency, as a percentage of their GDP.

Foreign-currency debt is a risk factor for sovereign debt defaults, though far from the only factor.

Debt data from Council on Foreign Relations. Geographical data from Natural Earth.

Built with blockbuilder.org

<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
background: #fcfcfa;
}
svg {
font: 14px sans-serif;
}
.caption {
font-weight: bold;
}
.key path {
display: none;
}
.key line {
stroke: #000;
shape-rendering: crispEdges;
}
.stroke {
fill: none;
stroke: #000;
stroke-width: 3px;
}
.fill {
fill: #fff;
}
.graticule {
fill: none;
stroke: #ddd;
stroke-width: .5px;
stroke-opacity: .5;
}
.countries{
fill: #ddd;
}
.boundary {
fill: none;
stroke: #ccc;
stroke-width: .5px;
}
.label {
fill: #777;
}
.year.label {
font: 500 120px "Helvetica Neue";
fill: #ddd;
}
.year.label.active {
fill: #aaa;
}
.overlay {
fill: none;
pointer-events: all;
cursor: ew-resize;
}
aside {
font-size: small;
right: 0;
position: absolute;
width: 180px;
}
</style>
<body>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js"></script>
<div id="map"></div>
<div>
</div>
<script>
var width = 960,
height = 600;
var color = d3.scale.threshold()
.domain([0, 20, 50, 90])
.range(["#ffffcc","#fcbba1","#fc9272","#ef3b2c","#a50f15"]);
var x = d3.scale.linear()
.domain([0, 100])
.range([0, 150]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom")
.tickSize(13)
.tickValues(color.domain());
// Various accessors that specify the four dimensions of data to visualize.
function key(d) { return d.id; }
var usageByCountryCode = d3.map();
var minYear = 2011;
var maxYear = 2011;
var projection = d3.geo.kavrayskiy7()
.scale(150)
.translate([width / 2 - 40, height / 2 + 30])
.rotate([-10,0])
.precision(.1);
var path = d3.geo.path()
.projection(projection);
var graticule = d3.geo.graticule();
var svg = d3.select("#map").append("svg")
.attr("width", width)
.attr("height", height);
// Add the year label; the value is set on transition.
var label = svg.append("text")
//.attr("class", "year label")
//.attr("text-anchor", "end")
//.attr("y", 88)
//.attr("x", width / 2 + 85)
//.text(minYear);
// ******** the scale
var g = svg.append("g")
.attr("class", "key")
.attr("transform", "translate(15,50)");
g.selectAll("rect")
.data(color.range().map(function(d, i) {
return {
x0: i ? x(color.domain()[i - 1]) : x.range()[0],
x1: i < color.domain().length ? x(color.domain()[i]) : x.range()[1],
z: d
};
}))
.enter().append("rect")
.attr("height", 12)
.attr("x", function(d) { return d.x0; })
.attr("width", function(d) { return d.x1 - d.x0; })
.style("fill", function(d) { return d.z; });
g.call(xAxis).append("text")
.attr("class", "caption")
.attr("y", -6)
.text("Foreign currency debt (% of GDP)");
var noD = g.append("rect")
.attr("height", 12)
.attr("x", 0)
.attr("y", 40)
.attr("width", 15)
.style("fill", "black");
g.append("text")
.attr("class", "caption")
// .attr("text-anchor", "end")
.attr("x", 20)
.attr("y", 50)
.text("no data");
// ************
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);
queue()
.defer(d3.json, "world-50m.json")
.defer(d3.csv, "internetusage.csv", function(d) { usageByCountryCode.set(d["Country Code"], d); })
.await(ready);
function ready(error, world) {
var countries = topojson.feature(world, world.objects.countries).features,
neighbors = topojson.neighbors(world.objects.countries.geometries);
// *********** Add an overlay for the year label.
var box = label.node().getBBox();
var overlay = svg.append("rect")
.attr("class", "overlay")
.attr("x", box.x)
.attr("y", box.y)
.attr("width", box.width)
.attr("height", box.height)
.on("mouseover", enableInteraction);
// **************************
var state = svg.insert("g", ".graticule")
.attr("class", "countries");
state.selectAll(".country")
.data(countries)
.enter()
.append("path")
.attr("class", "country")
.attr("d", path)
.attr("fill", function(d) {
var code = usageByCountryCode.get(d.id);
if (typeof code == "undefined") console.log("name=" + d.properties.name + ", code=" + d.id);
return (typeof code != "undefined") ? color(code[minYear]) : "#ddd";
})
.append("title")
.text(function(d) {
var code = usageByCountryCode.get(d.id);
/*
return d.properties.name + ((typeof code != "undefined") ? "" : (code[minYear] + "% of GDP")) ; })
*/
;
return d.properties.name + ((typeof code != "undefined") ? (": " + code[minYear] +"% of GDP") : ""); })
// call(usage);
svg.insert("path", ".graticule")
.datum(topojson.mesh(world, world.objects.countries, function(a, b) { return a !== b; }))
.attr("class", "boundary")
.attr("d", path);
// Start a transition that interpolates the data based on year.
svg.transition()
.duration(30000)
.ease("linear")
.tween("year", tweenYear)
.each("end", enableInteraction);
// After the transition finishes, you can mouseover to change the year.
function enableInteraction() {
var yearScale = d3.scale.linear()
.domain([minYear, maxYear])
.range([box.x + 10, box.x + box.width - 10])
.clamp(true);
// Cancel the current transition, if any.
svg.transition().duration(0);
overlay
.on("mouseover", mouseover)
.on("mouseout", mouseout)
.on("mousemove", mousemove)
.on("touchmove", mousemove);
function mouseover() {
label.classed("active", true);
}
function mouseout() {
label.classed("active", false);
}
function mousemove() {
displayYear(yearScale.invert(d3.mouse(this)[0]));
}
}
// Tweens the entire chart by first tweening the year, and then the data.
// For the interpolated data, the dots and label are redrawn.
function tweenYear() {
var year = d3.interpolateNumber(minYear, maxYear);
return function(t) { displayYear(year(t)); };
}
// Updates the display to show the specified year.
function displayYear(year) {
var yr = Math.round(year);
svg.selectAll(".country")
.style("fill", function(d) {
var code = usageByCountryCode.get(d.id);
return (typeof code != "undefined") ? color(code[yr]) : "gray";
})
label.text(yr);
}
};
d3.select(self.frameElement).style("height", height + "px");
</script>
Country Name Country Code 2011
Arab World ARB 29.9122495
Caribbean small states CSS 41.455971
East Asia & Pacific (all income levels) EAS 38.5114324
East Asia & Pacific (developing only) EAP 33.5290359
Euro area EMU 73.372773
Europe & Central Asia (all income levels) ECS 59.7337356
Europe & Central Asia (developing only) ECA 38.576705
European Union EUU 72.3575315
Heavily indebted poor countries (HIPC) HPC 6.67010469
High income HIC 72.5855705
High income: nonOECD NOC 54.8981833
High income: OECD OEC 76.7548719
Latin America & Caribbean (all income levels) LCN 39.3778714
Latin America & Caribbean (developing only) LAC 38.7144599
Least developed countries: UN classification LDC 6.02681645
Low & middle income LMY 23.6047489
Low income LIC 5.96502397
Lower middle income LMC 16.2823738
Middle East & North Africa (all income levels) MEA 31.2539515
Middle East & North Africa (developing only) MNA 26.9157088
Middle income MIC 26.3938282
North America NAC 78.3727606
Not classified INX
OECD members OED 70.8023584
Other small states OSS 12.5645128
Pacific island small states PSS 19.2822021
Small states SST 19.8007136
South Asia SAS 9.44756111
Sub-Saharan Africa (all income levels) SSF 12.6564475
Sub-Saharan Africa (developing only) SSA 12.6564475
Upper middle income UMC 37.0318758
World WLD 32.7203579
Afghanistan AFG
Albania ALB
Algeria DZA
American Samoa ASM
Andorra AND
Angola AGO
Antigua and Barbuda ATG
Argentina ARG 32
Armenia ARM
Aruba ABW
Australia AUS
Austria AUT
Azerbaijan AZE
Bahamas, The BHS
Bahrain BHR
Bangladesh BGD
Barbados BRB
Belarus BLR 74
Belgium BEL
Belize BLZ
Benin BEN
Bermuda BMU
Bhutan BTN
Bolivia BOL
Bosnia and Herzegovina BIH
Botswana BWA
Brazil BRA 25
Brunei Darussalam BRN
Bulgaria BGR 70
Burkina Faso BFA
Burundi BDI
Cambodia KHM
Cameroon CMR
Canada CAN
Cape Verde CPV
Cayman Islands CYM
Central African Republic CAF
Chad TCD
Channel Islands CHI
Chile CHL 61
China CHN 9
Colombia COL 39
Comoros COM
Congo, Dem. Rep. COD
Congo, Rep. COG
Costa Rica CRI
Cote d'Ivoire CIV
Croatia HRV 75
Cuba CUB
Curacao CUW
Cyprus CYP
Czech Republic CZE 53
Denmark DNK
Djibouti DJI
Dominica DMA
Dominican Republic DOM
Ecuador ECU
Egypt, Arab Rep. EGY
El Salvador SLV
Equatorial Guinea GNQ
Eritrea ERI
Estonia EST
Ethiopia ETH
Faeroe Islands FRO
Fiji FJI
Finland FIN
France FRA
French Polynesia PYF
Gabon GAB
Gambia, The GMB
Georgia GEO
Germany DEU
Ghana GHA
Greece GRC
Greenland GRL
Grenada GRD
Guam GUM
Guatemala GTM
Guinea GIN
Guinea-Bissau GNB
Guyana GUY
Haiti HTI
Honduras HND
Hong Kong SAR, China HKG
Hungary HUN 91
Iceland ISL
India IND 13
Indonesia IDN 28
Iran, Islamic Rep. IRN
Iraq IRQ
Ireland IRL
Isle of Man IMN
Israel ISR
Italy ITA
Jamaica JAM
Japan JPN
Jordan JOR
Kazakhstan KAZ 99
Kenya KEN
Kiribati KIR
Korea, Dem. Rep. PRK
South Korea KOR 20
Kosovo KSV
Kuwait KWT
Kyrgyz Republic KGZ
Lao PDR LAO
Latvia LVA 31
Lebanon LBN
Lesotho LSO
Liberia LBR
Libya LBY
Liechtenstein LIE
Lithuania LTU 19
Luxembourg LUX
Macao SAR, China MAC
Macedonia, FYR MKD 82
Madagascar MDG
Malawi MWI
Malaysia MYS
Maldives MDV
Mali MLI
Malta MLT
Marshall Islands MHL
Mauritania MRT
Mauritius MUS
Mexico MEX 29
Micronesia, Fed. Sts. FSM
Moldova MDA
Monaco MCO
Mongolia MNG
Montenegro MNE
Morocco MAR
Mozambique MOZ
Myanmar MMR
Namibia NAM
Nepal NPL
Netherlands NLD
New Caledonia NCL
New Zealand NZL
Nicaragua NIC
Niger NER
Nigeria NGA
Northern Mariana Islands MNP
Norway NOR
Oman OMN
Pakistan PAK
Palau PLW
Panama PAN
Papua New Guinea PNG
Paraguay PRY
Peru PER 33
Philippines PHL 23
Poland POL
Portugal PRT 47
Puerto Rico PRI
Qatar QAT
Romania ROU 46
Russian Federation RUS 26
Rwanda RWA
Samoa WSM
San Marino SMR
Sao Tome and Principe STP
Saudi Arabia SAU
Senegal SEN
Serbia SRB
Seychelles SYC
Sierra Leone SLE
Singapore SGP
Sint Maarten (Dutch part) SXM
Slovakia SVK 4
Slovenia SVN
Solomon Islands SLB
Somalia SOM
South Africa ZAF 23
South Sudan SSD
Spain ESP
Sri Lanka LKA 0
St. Kitts and Nevis KNA
St. Lucia LCA
St. Martin (French part) MAF
St. Vincent and the Grenadines VCT
Sudan SDN
Suriname SUR
Swaziland SWZ
Sweden SWE
Switzerland CHE
Syrian Arab Republic SYR
Tajikistan TJK
Tanzania TZA
Thailand THA 23
Timor-Leste TLS
Togo TGO
Tonga TON
Trinidad and Tobago TTO
Tunisia TUN
Turkey TUR 49
Turkmenistan TKM
Turks and Caicos Islands TCA
Tuvalu TUV
Uganda UGA
Ukraine UKR 109
United Arab Emirates ARE
United Kingdom GBR
United States USA
Uruguay URY
Uzbekistan UZB
Vanuatu VUT
Venezuela, RB VEN
Vietnam VNM
Virgin Islands (U.S.) VIR
West Bank and Gaza PSE
Yemen, Rep. YEM
Zambia ZMB
Zimbabwe ZWE
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.0036000360003600037,0.0016885772698826992],"translate":[-180,-85.22193775799991]},"objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0]],"id":"ABW","properties":{"name":"Aruba","n3":"533"}},{"type":"Polygon","arcs":[[1,2,3,4,5,6]],"id":"AFG","properties":{"name":"Afghanistan","n3":"004"}},{"type":"MultiPolygon","arcs":[[[7]],[[8,9,10,11]],[[12,13,14]]],"id":"AGO","properties":{"name":"Angola","n3":"024"}},{"type":"MultiPolygon","arcs":[[[15]],[[16]]],"id":"AIA","properties":{"name":"Anguilla","n3":"660"}},{"type":"Polygon","arcs":[[17,18,19,20,21]],"id":"ALB","properties":{"name":"Albania","n3":"008"}},{"type":"MultiPolygon","arcs":[[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]]],"id":"ALD","properties":{"name":"Aland","n3":"248"}},{"type":"Polygon","arcs":[[38,39]],"id":"AND","properties":{"name":"Andorra","n3":"020"}},{"type":"MultiPolygon","arcs":[[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49,50,51,52,53],[54]]],"id":"ARE","properties":{"name":"United Arab Emirates","n3":"784"}},{"type":"MultiPolygon","arcs":[[[55,56]],[[57]],[[58,59]],[[60]],[[61]],[[62]],[[63]],[[64,65,66,67,68,69]]],"id":"ARG","properties":{"name":"Argentina","n3":"032"}},{"type":"MultiPolygon","arcs":[[[70]],[[71,72,73,74,75],[76],[77]]],"id":"ARM","properties":{"name":"Armenia","n3":"051"}},{"type":"MultiPolygon","arcs":[[[78]],[[79]],[[80]],[[81]],[[82]]],"id":"ASM","properties":{"name":"American Samoa","n3":"016"}},{"type":"MultiPolygon","arcs":[[[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]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]]],"id":"ATA","properties":{"name":"Antarctica","n3":"010"}},{"type":"MultiPolygon","arcs":[[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]]],"id":"ATF","properties":{"name":"Fr. S. Antarctic Lands","n3":"260"}},{"type":"MultiPolygon","arcs":[[[280]],[[281]]],"id":"ATG","properties":{"name":"Antigua and Barb.","n3":"028"}},{"type":"MultiPolygon","arcs":[[[282]],[[283]],[[284]],[[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]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[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]]],"id":"AUS","properties":{"name":"Australia","n3":"036"}},{"type":"Polygon","arcs":[[376,377,378,379,380,381,382,383,384]],"id":"AUT","properties":{"name":"Austria","n3":"040"}},{"type":"MultiPolygon","arcs":[[[385,386,-74]],[[387]],[[388]],[[-78]],[[-77]],[[389,390,391,-72,392],[-71]]],"id":"AZE","properties":{"name":"Azerbaijan","n3":"031"}},{"type":"Polygon","arcs":[[393,394,395]],"id":"BDI","properties":{"name":"Burundi","n3":"108"}},{"type":"Polygon","arcs":[[396,397,398,399,400,401,402]],"id":"BEL","properties":{"name":"Belgium","n3":"056"}},{"type":"Polygon","arcs":[[403,404,405,406,407]],"id":"BEN","properties":{"name":"Benin","n3":"204"}},{"type":"Polygon","arcs":[[408,-407,409,410,411,412]],"id":"BFA","properties":{"name":"Burkina Faso","n3":"854"}},{"type":"MultiPolygon","arcs":[[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434,435,436]]],"id":"BGD","properties":{"name":"Bangladesh","n3":"050"}},{"type":"Polygon","arcs":[[437,438,439,440,441,442]],"id":"BGR","properties":{"name":"Bulgaria","n3":"100"}},{"type":"Polygon","arcs":[[443]],"id":"BHR","properties":{"name":"Bahrain","n3":"048"}},{"type":"MultiPolygon","arcs":[[[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]]],"id":"BHS","properties":{"name":"Bahamas","n3":"044"}},{"type":"Polygon","arcs":[[485,486,487,488,489]],"id":"BIH","properties":{"name":"Bosnia and Herz.","n3":"070"}},{"type":"Polygon","arcs":[[490]],"id":"BJN","properties":{"name":"Bajo Nuevo Bank (Petrel Is.)","n3":"-99"}},{"type":"Polygon","arcs":[[491]],"id":"BLM","properties":{"name":"St-Barthélemy","n3":"652"}},{"type":"Polygon","arcs":[[492,493,494,495,496]],"id":"BLR","properties":{"name":"Belarus","n3":"112"}},{"type":"MultiPolygon","arcs":[[[497]],[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506,507,508]]],"id":"BLZ","properties":{"name":"Belize","n3":"084"}},{"type":"Polygon","arcs":[[509]],"id":"BMU","properties":{"name":"Bermuda","n3":"060"}},{"type":"Polygon","arcs":[[510,-70,511,512,513]],"id":"BOL","properties":{"name":"Bolivia","n3":"068"}},{"type":"MultiPolygon","arcs":[[[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,-66,560,-514,561,562,563,564]]],"id":"BRA","properties":{"name":"Brazil","n3":"076"}},{"type":"Polygon","arcs":[[565]],"id":"BRB","properties":{"name":"Barbados","n3":"052"}},{"type":"MultiPolygon","arcs":[[[566,567]],[[568,569]]],"id":"BRN","properties":{"name":"Brunei","n3":"096"}},{"type":"Polygon","arcs":[[570,571]],"id":"BTN","properties":{"name":"Bhutan","n3":"064"}},{"type":"Polygon","arcs":[[572,573,574]],"id":"BWA","properties":{"name":"Botswana","n3":"072"}},{"type":"Polygon","arcs":[[575,576,577,578,579,580]],"id":"CAF","properties":{"name":"Central African Rep.","n3":"140"}},{"type":"MultiPolygon","arcs":[[[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]],[[-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]],[[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]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854]],[[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]],[[891]],[[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]]],"id":"CAN","properties":{"name":"Canada","n3":"124"}},{"type":"Polygon","arcs":[[-383,998,-381,999,1000,1001]],"id":"CHE","properties":{"name":"Switzerland","n3":"756"}},{"type":"MultiPolygon","arcs":[[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013]],[[1014]],[[1015]],[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021]],[[1022]],[[1023]],[[1024]],[[1025]],[[1026]],[[1027]],[[1028]],[[1029]],[[1030]],[[1031]],[[1032]],[[1033]],[[1034]],[[1035]],[[1036]],[[1037]],[[-59,1038,-57,1039]],[[1040]],[[1041]],[[1042]],[[1043]],[[1044]],[[1045]],[[1046]],[[1047]],[[1048]],[[1049]],[[1050]],[[1051]],[[1052]],[[1053]],[[1054]],[[1055]],[[1056]],[[1057]],[[1058]],[[1059]],[[1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067]],[[1068]],[[1069]],[[1070]],[[1071]],[[1072]],[[1073]],[[1074]],[[1075]],[[1076]],[[1077]],[[1078]],[[1079]],[[1080]],[[1081]],[[1082]],[[1083]],[[1084]],[[1085]],[[1086]],[[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]],[[1128]],[[1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[-69,1165,1166,-512]]],"id":"CHL","properties":{"name":"Chile","n3":"152"}},{"type":"MultiPolygon","arcs":[[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1184]],[[1185]],[[1186]],[[1187]],[[1188]],[[1189]],[[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,-572,1245,1246,1247,1248,1249,-2,1250,1251,1252,1253,1254,1255]]],"id":"CHN","properties":{"name":"China","n3":"156"}},{"type":"MultiPolygon","arcs":[[[1256,1257]],[[-412,1258,1259,1260,1261,1262]]],"id":"CIV","properties":{"name":"Côte d'Ivoire","n3":"384"}},{"type":"Polygon","arcs":[[1263]],"id":"CLP","properties":{"name":"Clipperton I.","n3":"-99"}},{"type":"Polygon","arcs":[[-580,1264,1265,1266,1267,1268,1269]],"id":"CMR","properties":{"name":"Cameroon","n3":"120"}},{"type":"MultiPolygon","arcs":[[[1270,1271,1272,1273]],[[1274,1275,1276,1277]],[[1278,1279,1280,1281]]],"id":"CNM","properties":{"name":"Cyprus U.N. Buffer Zone","n3":"-99"}},{"type":"MultiPolygon","arcs":[[[1282]],[[1283,1284,1285,-395,1286,1287,-12,1288,-13,1289,-578]]],"id":"COD","properties":{"name":"Dem. Rep. Congo","n3":"180"}},{"type":"Polygon","arcs":[[-1290,-15,1290,1291,-1265,-579]],"id":"COG","properties":{"name":"Congo","n3":"178"}},{"type":"MultiPolygon","arcs":[[[1292]],[[1293]],[[1294]],[[1295]],[[1296]],[[1297]],[[1298]],[[1299]],[[1300]],[[1301]],[[1302]],[[1303]],[[1304]]],"id":"COK","properties":{"name":"Cook Is.","n3":"184"}},{"type":"MultiPolygon","arcs":[[[1305]],[[1306]],[[1307]],[[1308]],[[1309]],[[1310]],[[1311]],[[1312,-563,1313,1314,1315,1316,1317]],[[1318]],[[1319]],[[1320]]],"id":"COL","properties":{"name":"Colombia","n3":"170"}},{"type":"MultiPolygon","arcs":[[[1321]],[[1322]],[[1323]]],"id":"COM","properties":{"name":"Comoros","n3":"174"}},{"type":"MultiPolygon","arcs":[[[1324]],[[1325]],[[1326]],[[1327]],[[1328]],[[1329]],[[1330]],[[1331]],[[1332]]],"id":"CPV","properties":{"name":"Cape Verde","n3":"132"}},{"type":"MultiPolygon","arcs":[[[1333]],[[1334]],[[1335]],[[1336,1337,1338,1339]]],"id":"CRI","properties":{"name":"Costa Rica","n3":"188"}},{"type":"Polygon","arcs":[[1340]],"id":"CSI","properties":{"name":"Coral Sea Is.","n3":"-99"}},{"type":"MultiPolygon","arcs":[[[1341]],[[1342]],[[1343]],[[1344]],[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]],[[1351]],[[1352]],[[1353]],[[1354]],[[1355]],[[1356]],[[1357]],[[1358]],[[1359]],[[1360]],[[1361]],[[1362]],[[1363]],[[1364]],[[1365]],[[1366]],[[1367]],[[1368]],[[1369]],[[1370]],[[1371]],[[1372]],[[1373]],[[1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379,1380,1381,1382]],[[1383]],[[1384]]],"id":"CUB","properties":{"name":"Cuba","n3":"192"}},{"type":"Polygon","arcs":[[1385]],"id":"CUW","properties":{"name":"Curaçao","n3":"531"}},{"type":"MultiPolygon","arcs":[[[1386]],[[1387]],[[1388]]],"id":"CYM","properties":{"name":"Cayman Is.","n3":"136"}},{"type":"MultiPolygon","arcs":[[[1389,-1275]],[[-1273,1390,-1282,1391]]],"id":"CYN","properties":{"name":"N. Cyprus","n3":"-99"}},{"type":"MultiPolygon","arcs":[[[1392]],[[1393]],[[1394,1395,-1271]],[[1396,1397,1398,1399,-1277,1400,-1280]]],"id":"CYP","properties":{"name":"Cyprus","n3":"196"}},{"type":"Polygon","arcs":[[1401,1402,-385,1403]],"id":"CZE","properties":{"name":"Czech Rep.","n3":"203"}},{"type":"MultiPolygon","arcs":[[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]],[[1411]],[[1412]],[[1413]],[[1414,1415]],[[1416]],[[1417]],[[1418]],[[1419]],[[1420]],[[1421]],[[1422]],[[1423]],[[1424]],[[1425,1426,-1404,-384,-1002,1427,1428,-397,1429,1430,1431]],[[1432]]],"id":"DEU","properties":{"name":"Germany","n3":"276"}},{"type":"Polygon","arcs":[[1433,1434,1435,1436]],"id":"DJI","properties":{"name":"Djibouti","n3":"262"}},{"type":"Polygon","arcs":[[1437]],"id":"DMA","properties":{"name":"Dominica","n3":"212"}},{"type":"MultiPolygon","arcs":[[[1438]],[[1439]],[[1440]],[[1441]],[[1442]],[[1443]],[[1444]],[[1445]],[[1446]],[[1447]],[[1448]],[[1449]],[[1450]],[[1451]],[[-1432,1452]]],"id":"DNK","properties":{"name":"Denmark","n3":"208"}},{"type":"MultiPolygon","arcs":[[[1453]],[[1454]],[[1455,1456]]],"id":"DOM","properties":{"name":"Dominican Rep.","n3":"214"}},{"type":"Polygon","arcs":[[1457,1458,1459,1460,1461,1462,1463,1464]],"id":"DZA","properties":{"name":"Algeria","n3":"012"}},{"type":"MultiPolygon","arcs":[[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[1472]],[[1473]],[[1474]],[[1475]],[[1476]],[[1477]],[[1478]],[[1479,1480,-1315]],[[1481]]],"id":"ECU","properties":{"name":"Ecuador","n3":"218"}},{"type":"MultiPolygon","arcs":[[[1482]],[[1483]],[[1484]],[[1485]],[[1486]],[[1487]],[[1488]],[[1489,1490,1491,1492,1493,1494]]],"id":"EGY","properties":{"name":"Egypt","n3":"818"}},{"type":"MultiPolygon","arcs":[[[1495]],[[1496]],[[-1435,1497,1498,1499]]],"id":"ERI","properties":{"name":"Eritrea","n3":"232"}},{"type":"Polygon","arcs":[[-1272,-1396,1500,1501,1502,-1397,-1279,-1391],[-1394]],"id":"ESB","properties":{"name":"Dhekelia","n3":"-99"}},{"type":"MultiPolygon","arcs":[[[1503]],[[1504]],[[1505]],[[1506]],[[1507]],[[1508]],[[1509]],[[1510]],[[1511]],[[1512]],[[1513,1514]],[[1515]],[[1516,1517]],[[1518]],[[1519]],[[1520]],[[1521]],[[1522]],[[1523]],[[1524]],[[1525,-39,1526,1527,1528,1529,1530,1531]]],"id":"ESP","properties":{"name":"Spain","n3":"724"}},{"type":"MultiPolygon","arcs":[[[1532]],[[1533]],[[1534]],[[1535]],[[1536]],[[1537]],[[1538]],[[1539,1540,1541]]],"id":"EST","properties":{"name":"Estonia","n3":"233"}},{"type":"Polygon","arcs":[[-1434,1542,1543,1544,1545,1546,-1498]],"id":"ETH","properties":{"name":"Ethiopia","n3":"231"}},{"type":"MultiPolygon","arcs":[[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557]],[[1558]],[[1559]],[[1560]],[[1561]],[[1562]],[[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]]],"id":"FIN","properties":{"name":"Finland","n3":"246"}},{"type":"MultiPolygon","arcs":[[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]]],"id":"FJI","properties":{"name":"Fiji","n3":"242"}},{"type":"MultiPolygon","arcs":[[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]]],"id":"FLK","properties":{"name":"Falkland Is.","n3":"238"}},{"type":"MultiPolygon","arcs":[[[1651]],[[1652]],[[1653]],[[-558,1654,1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672,-1428,-1001,1673,1674,1675,1676,-1527,-40,-1526,1677,-399],[-1525]]],"id":"FRA","properties":{"name":"France","n3":"250"}},{"type":"MultiPolygon","arcs":[[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]]],"id":"FRO","properties":{"name":"Faeroe Is.","n3":"234"}},{"type":"MultiPolygon","arcs":[[[1689]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1708]]],"id":"FSM","properties":{"name":"Micronesia","n3":"583"}},{"type":"MultiPolygon","arcs":[[[1709]],[[1710]],[[-1292,1711,1712,-1266]]],"id":"GAB","properties":{"name":"Gabon","n3":"266"}},{"type":"MultiPolygon","arcs":[[[1713]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718]],[[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]]],"id":"GBR","properties":{"name":"United Kingdom","n3":"826"}},{"type":"Polygon","arcs":[[-393,-76,1771,1772,1773]],"id":"GEO","properties":{"name":"Georgia","n3":"268"}},{"type":"MultiPolygon","arcs":[[[1774]],[[1775]],[[1776]]],"id":"GGY","properties":{"name":"Guernsey","n3":"831"}},{"type":"Polygon","arcs":[[1777,1778,-1257,1779,-1259,-411]],"id":"GHA","properties":{"name":"Ghana","n3":"288"}},{"type":"Polygon","arcs":[[1780,-1529]],"id":"GIB","properties":{"name":"Gibraltar","n3":"292"}},{"type":"Polygon","arcs":[[1781,-1262,1782,1783,1784,1785,1786]],"id":"GIN","properties":{"name":"Guinea","n3":"324"}},{"type":"Polygon","arcs":[[1787,1788]],"id":"GMB","properties":{"name":"Gambia","n3":"270"}},{"type":"MultiPolygon","arcs":[[[1789]],[[1790]],[[1791]],[[1792]],[[1793]],[[1794]],[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801,1802,-1786]]],"id":"GNB","properties":{"name":"Guinea-Bissau","n3":"624"}},{"type":"MultiPolygon","arcs":[[[1803]],[[-1713,1804,-1267]],[[1805]]],"id":"GNQ","properties":{"name":"Eq. Guinea","n3":"226"}},{"type":"MultiPolygon","arcs":[[[1806]],[[1807]],[[1808]],[[1809]],[[1810]],[[1811]],[[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,-20,1881,-440]]],"id":"GRC","properties":{"name":"Greece","n3":"300"}},{"type":"MultiPolygon","arcs":[[[1882]],[[1883]]],"id":"GRD","properties":{"name":"Grenada","n3":"308"}},{"type":"MultiPolygon","arcs":[[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]],[[1892]],[[1893]],[[1894]],[[1895]],[[1896]],[[1897]],[[1898]],[[1899]],[[1900]],[[1901]],[[1902]],[[1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908]],[[1909]],[[1910]],[[1911]],[[1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1924]],[[1925]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[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]]],"id":"GRL","properties":{"name":"Greenland","n3":"304"}},{"type":"Polygon","arcs":[[-508,2012,2013,2014,2015,2016]],"id":"GTM","properties":{"name":"Guatemala","n3":"320"}},{"type":"Polygon","arcs":[[2017]],"id":"GUM","properties":{"name":"Guam","n3":"316"}},{"type":"MultiPolygon","arcs":[[[2018]],[[2019,-565,2020,2021]]],"id":"GUY","properties":{"name":"Guyana","n3":"328"}},{"type":"MultiPolygon","arcs":[[[2022]],[[2023]],[[2024]],[[2025,-1239]]],"id":"HKG","properties":{"name":"Hong Kong","n3":"344"}},{"type":"Polygon","arcs":[[2026]],"id":"HMD","properties":{"name":"Heard I. and McDonald Is.","n3":"334"}},{"type":"MultiPolygon","arcs":[[[2027]],[[2028]],[[2029]],[[2030]],[[2031,2032,2033,-2014,2034]],[[2035]],[[2036]],[[2037]],[[2038]]],"id":"HND","properties":{"name":"Honduras","n3":"340"}},{"type":"MultiPolygon","arcs":[[[2039]],[[2040]],[[2041]],[[-488,2042,2043]],[[2044]],[[2045]],[[2046]],[[2047]],[[2048]],[[2049]],[[2050]],[[2051]],[[2052]],[[2053]],[[2054]],[[2055]],[[2056]],[[2057]],[[2058]],[[2059]],[[2060]],[[2061]],[[2062]],[[2063]],[[2064,2065,-490,2066,2067]]],"id":"HRV","properties":{"name":"Croatia","n3":"191"}},{"type":"MultiPolygon","arcs":[[[2068]],[[2069]],[[2070]],[[-1456,2071]],[[2072]]],"id":"HTI","properties":{"name":"Haiti","n3":"332"}},{"type":"Polygon","arcs":[[2073,2074,2075,-2065,2076,-378,2077]],"id":"HUN","properties":{"name":"Hungary","n3":"348"}},{"type":"MultiPolygon","arcs":[[[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]],[[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]],[[2233]],[[2234]],[[2235]],[[2236]],[[2237]],[[2238]],[[2239]],[[2240]],[[2241]],[[2242]],[[2243,2244]],[[2245]],[[2246]],[[2247]],[[2248]],[[2249]],[[2250]],[[2251]],[[2252]],[[2253]],[[2254]],[[2255]],[[2256]],[[2257]],[[2258]],[[2259]],[[2260]],[[2261]],[[2262]],[[2263]],[[2264]],[[2265]],[[2266]],[[2267]],[[2268]],[[2269]],[[2270]],[[2271]],[[2272]],[[2273]],[[2274]],[[2275]],[[2276]],[[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]],[[2305]],[[2306]],[[2307]],[[2308]],[[2309]],[[2310]],[[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]]],"id":"IDN","properties":{"name":"Indonesia","n3":"360"}},{"type":"Polygon","arcs":[[2348]],"id":"IMN","properties":{"name":"Isle of Man","n3":"833"}},{"type":"MultiPolygon","arcs":[[[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,-1246,-571,-1245,2384,2385,2386,2387,2388,-1248]]],"id":"IND","properties":{"name":"India","n3":"356"}},{"type":"MultiPolygon","arcs":[[[2389]],[[2390]],[[2391]]],"id":"IOA","properties":{"name":"Indian Ocean Ter.","n3":"-99"}},{"type":"MultiPolygon","arcs":[[[2392]],[[2393]],[[2394]],[[2395]],[[2396]],[[2397]],[[2398]],[[2399]],[[2400]],[[2401]]],"id":"IOT","properties":{"name":"Br. Indian Ocean Ter.","n3":"086"}},{"type":"MultiPolygon","arcs":[[[2402]],[[2403]],[[2404]],[[2405]],[[2406]],[[2407]],[[-1722,2408]]],"id":"IRL","properties":{"name":"Ireland","n3":"372"}},{"type":"MultiPolygon","arcs":[[[2409]],[[2410]],[[2411]],[[2412]],[[2413]],[[2414]],[[2415]],[[2416]],[[2417]],[[2418]],[[2419]],[[-73,-392,2420,2421,-4,2422,2423,2424,2425,-386]]],"id":"IRN","properties":{"name":"Iran","n3":"364"}},{"type":"Polygon","arcs":[[-2425,2426,2427,2428,2429,2430,2431]],"id":"IRQ","properties":{"name":"Iraq","n3":"368"}},{"type":"MultiPolygon","arcs":[[[2432]],[[2433]],[[2434]],[[2435]],[[2436]]],"id":"ISL","properties":{"name":"Iceland","n3":"352"}},{"type":"Polygon","arcs":[[2437,2438,2439,2440,2441,-1491,2442,2443,2444,2445]],"id":"ISR","properties":{"name":"Israel","n3":"376"}},{"type":"MultiPolygon","arcs":[[[2446]],[[2447]],[[2448]],[[2449]],[[2450]],[[2451]],[[2452]],[[2453]],[[2454]],[[2455]],[[2456]],[[2457]],[[2458]],[[2459]],[[2460]],[[2461]],[[2462]],[[2463]],[[2464]],[[2465]],[[2466]],[[2467]],[[2468]],[[2469]],[[2470]],[[2471]],[[2472]],[[2473]],[[2474,2475,-1674,-1000,-380],[2476]]],"id":"ITA","properties":{"name":"Italy","n3":"380"}},{"type":"Polygon","arcs":[[2477]],"id":"JAM","properties":{"name":"Jamaica","n3":"388"}},{"type":"Polygon","arcs":[[2478]],"id":"JEY","properties":{"name":"Jersey","n3":"832"}},{"type":"Polygon","arcs":[[2479,2480,-2441,2481,2482,-2438,2483,-2430]],"id":"JOR","properties":{"name":"Jordan","n3":"400"}},{"type":"MultiPolygon","arcs":[[[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]],[[2525]],[[2526]],[[2527]],[[2528]],[[2529]],[[2530,2531]],[[2532,-2531]],[[2533]],[[2534]],[[2535]],[[2536]],[[2537]],[[2538]],[[2539]],[[2540]],[[2541]],[[2542]],[[2543]],[[2544]],[[2545]],[[2546]],[[2547]],[[2548]],[[2549]],[[2550]],[[2551]],[[2552]],[[2553]],[[2554]],[[2555]],[[2556]],[[2557]],[[2558]],[[2559]],[[2560]],[[2561]],[[2562]],[[2563]],[[2564]],[[2565]],[[2566]],[[2567]],[[2568]],[[2569]],[[2570]],[[2571]],[[2572]],[[2573]],[[2574]],[[2575]],[[2576]],[[2577]],[[2578]],[[2579]],[[2580]],[[2581]],[[2582]],[[2583]],[[2584]],[[2585]],[[2586]],[[2587]],[[2588]],[[2589]],[[2590]],[[2591]]],"id":"JPN","properties":{"name":"Japan","n3":"392"}},{"type":"Polygon","arcs":[[2592]],"id":"KAB","properties":{"name":"Baikonur","n3":"-99"}},{"type":"Polygon","arcs":[[-2389,2593,-1249]],"id":"KAS","properties":{"name":"Siachen Glacier","n3":"-99"}},{"type":"MultiPolygon","arcs":[[[2594]],[[2595]],[[2596]],[[2597]],[[2598]],[[-1253,2599,2600,2601,2602,2603],[-2593]]],"id":"KAZ","properties":{"name":"Kazakhstan","n3":"398"}},{"type":"MultiPolygon","arcs":[[[2604]],[[-1545,2605,2606,2607,2608,2609]]],"id":"KEN","properties":{"name":"Kenya","n3":"404"}},{"type":"Polygon","arcs":[[-1252,2610,2611,-2600],[2612],[2613],[2614]],"id":"KGZ","properties":{"name":"Kyrgyzstan","n3":"417"}},{"type":"MultiPolygon","arcs":[[[2615]],[[2616]],[[2617]],[[2618]],[[2619]],[[2620,2621,2622,2623]]],"id":"KHM","properties":{"name":"Cambodia","n3":"116"}},{"type":"MultiPolygon","arcs":[[[2624]],[[2625]],[[2626]],[[2627]],[[2628]],[[2629]],[[2630]],[[2631]],[[2632]],[[2633]],[[2634]],[[2635]],[[2636]],[[2637]],[[2638]],[[2639]],[[2640]],[[2641]],[[2642]],[[2643]],[[2644]],[[2645]],[[2646,2647]],[[2648]],[[2649]],[[2650]],[[2651]],[[2652]],[[2653]],[[2654]],[[2655]],[[2656]],[[2657]],[[2658]],[[2659]]],"id":"KIR","properties":{"name":"Kiribati","n3":"296"}},{"type":"MultiPolygon","arcs":[[[2660]],[[2661]]],"id":"KNA","properties":{"name":"St. Kitts and Nevis","n3":"659"}},{"type":"MultiPolygon","arcs":[[[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]],[[2692]],[[2693]],[[2694]],[[2695]],[[2696]],[[2697]],[[2698]],[[2699]],[[2700]],[[2701]],[[2702]],[[2703]],[[2704]],[[2705]],[[2706]],[[2707]],[[2708]],[[2709]],[[2710]],[[2711]],[[2712]],[[2713]],[[2714,2715]]],"id":"KOR","properties":{"name":"Korea","n3":"410"}},{"type":"Polygon","arcs":[[2716,-18,2717,2718]],"id":"KOS","properties":{"name":"Kosovo","n3":"-99"}},{"type":"MultiPolygon","arcs":[[[2719]],[[2720]],[[2721]],[[2722,-2428,2723]]],"id":"KWT","properties":{"name":"Kuwait","n3":"414"}},{"type":"Polygon","arcs":[[2724,-2623,2725,2726,-1243]],"id":"LAO","properties":{"name":"Lao PDR","n3":"418"}},{"type":"Polygon","arcs":[[-2445,2727,2728]],"id":"LBN","properties":{"name":"Lebanon","n3":"422"}},{"type":"Polygon","arcs":[[-1261,2729,2730,-1783]],"id":"LBR","properties":{"name":"Liberia","n3":"430"}},{"type":"Polygon","arcs":[[-1494,2731,2732,2733,-1458,2734,2735]],"id":"LBY","properties":{"name":"Libya","n3":"434"}},{"type":"Polygon","arcs":[[2736]],"id":"LCA","properties":{"name":"Saint Lucia","n3":"662"}},{"type":"Polygon","arcs":[[-999,-382]],"id":"LIE","properties":{"name":"Liechtenstein","n3":"438"}},{"type":"MultiPolygon","arcs":[[[2737]],[[2738]],[[2739]],[[2740]],[[2741]]],"id":"LKA","properties":{"name":"Sri Lanka","n3":"144"}},{"type":"Polygon","arcs":[[2742]],"id":"LSO","properties":{"name":"Lesotho","n3":"426"}},{"type":"MultiPolygon","arcs":[[[2743,2744]],[[-496,2745,2746,2747,2748]]],"id":"LTU","properties":{"name":"Lithuania","n3":"440"}},{"type":"Polygon","arcs":[[-1429,-1673,-398]],"id":"LUX","properties":{"name":"Luxembourg","n3":"442"}},{"type":"Polygon","arcs":[[2749,-497,-2749,2750,-1541]],"id":"LVA","properties":{"name":"Latvia","n3":"428"}},{"type":"MultiPolygon","arcs":[[[2751]],[[2752]]],"id":"MAC","properties":{"name":"Macao","n3":"446"}},{"type":"Polygon","arcs":[[2753,2754]],"id":"MAF","properties":{"name":"St-Martin","n3":"663"}},{"type":"Polygon","arcs":[[-1517,2755,2756,-1515,2757,-1463,2758,2759]],"id":"MAR","properties":{"name":"Morocco","n3":"504"}},{"type":"Polygon","arcs":[[2760,-1676]],"id":"MCO","properties":{"name":"Monaco","n3":"492"}},{"type":"Polygon","arcs":[[2761,2762]],"id":"MDA","properties":{"name":"Moldova","n3":"498"}},{"type":"MultiPolygon","arcs":[[[2763]],[[2764]],[[2765]]],"id":"MDG","properties":{"name":"Madagascar","n3":"450"}},{"type":"MultiPolygon","arcs":[[[2766]],[[2767]],[[2768]],[[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]],[[-2850]],[[2850]],[[2851]],[[2852]],[[2853]],[[2854]],[[2855]],[[2856]],[[2857]],[[2858]],[[2859]],[[2860]],[[2861]],[[2862]],[[2863]],[[2864]],[[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]],[[2891]],[[2892]],[[2893]],[[2894]],[[2895]],[[2896]],[[2897]],[[2898]],[[2899]],[[-2901]],[[2901]],[[2902]],[[2903]],[[2904]],[[2905]],[[-2907]],[[2907]],[[2908]],[[2909]],[[2910]],[[2911]],[[2912]],[[2913]],[[2914]],[[2915]],[[2916]],[[2917]],[[2918]],[[2919]],[[2920]],[[2921]],[[2922]],[[2923]],[[2924]],[[2925]],[[2926]],[[2927]],[[2928]],[[2929]],[[2930]],[[2931]],[[2932]],[[2933]],[[2934]],[[2935]]],"id":"MDV","properties":{"name":"Maldives","n3":"462"}},{"type":"MultiPolygon","arcs":[[[2936]],[[2937]],[[2938]],[[2939]],[[2940]],[[2941]],[[2942]],[[2943]],[[2944]],[[2945]],[[2946]],[[2947]],[[2948]],[[2949]],[[2950]],[[2951]],[[2952]],[[2953]],[[2954]],[[2955]],[[2956]],[[2957]],[[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,-509,-2017,2986,2987]]],"id":"MEX","properties":{"name":"Mexico","n3":"484"}},{"type":"MultiPolygon","arcs":[[[2988]],[[2989]],[[2990]],[[2991]],[[2992]],[[2993]],[[2994]],[[2995]],[[2996]],[[2997]],[[2998]],[[2999]],[[3000]],[[3001]],[[3002]],[[3003]],[[3004]],[[3005]],[[3006]],[[3007]],[[3008]],[[3009]]],"id":"MHL","properties":{"name":"Marshall Is.","n3":"584"}},{"type":"Polygon","arcs":[[-441,-1882,-19,-2717,3010]],"id":"MKD","properties":{"name":"Macedonia","n3":"807"}},{"type":"Polygon","arcs":[[-1460,3011,-413,-1263,-1782,3012,3013]],"id":"MLI","properties":{"name":"Mali","n3":"466"}},{"type":"MultiPolygon","arcs":[[[3014]],[[3015]]],"id":"MLT","properties":{"name":"Malta","n3":"470"}},{"type":"MultiPolygon","arcs":[[[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]],[[3048]],[[3049]],[[3050]],[[3051]],[[3052]],[[3053]],[[-2727,3054,3055,-435,-2385,-1244]]],"id":"MMR","properties":{"name":"Myanmar","n3":"104"}},{"type":"Polygon","arcs":[[3056,-2718,-22,3057,-2043,-487]],"id":"MNE","properties":{"name":"Montenegro","n3":"499"}},{"type":"Polygon","arcs":[[-1255,3058]],"id":"MNG","properties":{"name":"Mongolia","n3":"496"}},{"type":"MultiPolygon","arcs":[[[3059]],[[3060]],[[3061]],[[3062]],[[3063]],[[3064]],[[3065]],[[3066]],[[3067]],[[3068]],[[3069]],[[3070]]],"id":"MNP","properties":{"name":"N. Mariana Is.","n3":"580"}},{"type":"MultiPolygon","arcs":[[[3071]],[[3072]],[[3073]],[[3074,3075,3076,3077,3078,3079,3080,3081],[3082],[3083]]],"id":"MOZ","properties":{"name":"Mozambique","n3":"508"}},{"type":"MultiPolygon","arcs":[[[3084]],[[3085]],[[3086]],[[3087]],[[3088,3089,3090,-1461,-3014]]],"id":"MRT","properties":{"name":"Mauritania","n3":"478"}},{"type":"Polygon","arcs":[[3091]],"id":"MSR","properties":{"name":"Montserrat","n3":"500"}},{"type":"MultiPolygon","arcs":[[[3092]],[[3093]],[[3094]]],"id":"MUS","properties":{"name":"Mauritius","n3":"480"}},{"type":"MultiPolygon","arcs":[[[-3084]],[[-3083]],[[-3080,3095,3096]]],"id":"MWI","properties":{"name":"Malawi","n3":"454"}},{"type":"MultiPolygon","arcs":[[[3097]],[[3098]],[[3099]],[[3100]],[[-2337,3101]],[[3102]],[[3103]],[[3104]],[[3105]],[[3106]],[[3107]],[[3108]],[[3109,3110]],[[3111]],[[-2340,3112,-570,3113,-567,3114]],[[3115]],[[3116]]],"id":"MYS","properties":{"name":"Malaysia","n3":"458"}},{"type":"Polygon","arcs":[[3117,-575,3118,3119,-10]],"id":"NAM","properties":{"name":"Namibia","n3":"516"}},{"type":"MultiPolygon","arcs":[[[3120]],[[3121]],[[3122]],[[3123]],[[3124]],[[3125]],[[3126]],[[3127]],[[3128]],[[3129]],[[3130]],[[3131]]],"id":"NCL","properties":{"name":"New Caledonia","n3":"540"}},{"type":"Polygon","arcs":[[3132,3133,-408,-409,-3012,-1459,-2734]],"id":"NER","properties":{"name":"Niger","n3":"562"}},{"type":"Polygon","arcs":[[3134]],"id":"NFK","properties":{"name":"Norfolk Island","n3":"574"}},{"type":"MultiPolygon","arcs":[[[3135]],[[3136]],[[3137,-1269,3138,-404,-3134]]],"id":"NGA","properties":{"name":"Nigeria","n3":"566"}},{"type":"MultiPolygon","arcs":[[[3139]],[[3140]],[[3141]],[[3142,-1340,3143,-2032]]],"id":"NIC","properties":{"name":"Nicaragua","n3":"558"}},{"type":"Polygon","arcs":[[3144]],"id":"NIU","properties":{"name":"Niue","n3":"570"}},{"type":"MultiPolygon","arcs":[[[3145]],[[3146]],[[3147]],[[-401,3148]],[[3149]],[[3150]],[[3151]],[[3152]],[[-1430,-403,3153]],[[3154]],[[3155]],[[3156]]],"id":"NLD","properties":{"name":"Netherlands","n3":"528"}},{"type":"MultiPolygon","arcs":[[[3157]],[[3158]],[[3159]],[[3160]],[[3161]],[[3162]],[[3163]],[[3164]],[[3165]],[[3166]],[[3167]],[[3168]],[[3169]],[[3170]],[[3171]],[[3172]],[[3173]],[[3174]],[[3175]],[[3176]],[[3177]],[[3178]],[[3179]],[[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,-1592,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]]],"id":"NOR","properties":{"name":"Norway","n3":"578"}},{"type":"Polygon","arcs":[[-2384,-1247]],"id":"NPL","properties":{"name":"Nepal","n3":"524"}},{"type":"Polygon","arcs":[[3279]],"id":"NRU","properties":{"name":"Nauru","n3":"520"}},{"type":"MultiPolygon","arcs":[[[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]]],"id":"NZL","properties":{"name":"New Zealand","n3":"554"}},{"type":"MultiPolygon","arcs":[[[3305]],[[3306]],[[3307]],[[3308,3309,-51,3310]],[[-55],[-49]],[[-54,3311]]],"id":"OMN","properties":{"name":"Oman","n3":"512"}},{"type":"MultiPolygon","arcs":[[[3312]],[[-2594,3313,3314,-2423,-3,-1250]]],"id":"PAK","properties":{"name":"Pakistan","n3":"586"}},{"type":"MultiPolygon","arcs":[[[3315]],[[3316]],[[3317]],[[3318]],[[3319]],[[3320]],[[3321]],[[3322]],[[3323]],[[3324]],[[3325]],[[3326]],[[3327]],[[3328]],[[-1317,3329,-1338,3330]]],"id":"PAN","properties":{"name":"Panama","n3":"591"}},{"type":"MultiPolygon","arcs":[[[3331]],[[3332]],[[3333]],[[3334]]],"id":"PCN","properties":{"name":"Pitcairn Is.","n3":"612"}},{"type":"MultiPolygon","arcs":[[[3335]],[[3336]],[[3337]],[[3338]],[[-562,-513,-1167,3339,-1480,-1314]]],"id":"PER","properties":{"name":"Peru","n3":"604"}},{"type":"MultiPolygon","arcs":[[[3340]],[[3341]],[[3342]],[[3343]],[[3344]],[[3345]],[[3346]],[[3347]],[[3348]],[[3349]],[[3350]],[[3351]]],"id":"PGA","properties":{"name":"Spratly Is.","n3":"-99"}},{"type":"MultiPolygon","arcs":[[[3352]],[[3353]],[[3354]],[[3355]],[[3356]],[[3357]],[[3358]],[[3359]],[[3360]],[[3361]],[[3362]],[[3363]],[[3364]],[[3365]],[[3366]],[[3367]],[[3368]],[[3369]],[[3370]],[[3371]],[[3372]],[[3373]],[[3374]],[[3375]],[[3376]],[[3377]],[[3378]],[[3379]],[[3380]],[[3381]],[[3382]],[[3383]],[[3384]],[[3385]],[[3386]],[[3387]],[[3388]],[[3389]],[[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]],[[3437]],[[3438]],[[3439]],[[3440]],[[3441]],[[3442]],[[3443]],[[3444]],[[3445]],[[3446]],[[3447]]],"id":"PHL","properties":{"name":"Philippines","n3":"608"}},{"type":"MultiPolygon","arcs":[[[3448]],[[3449]],[[3450]],[[3451]],[[3452]],[[3453]],[[3454]],[[3455]]],"id":"PLW","properties":{"name":"Palau","n3":"585"}},{"type":"MultiPolygon","arcs":[[[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]],[[3491]],[[3492]],[[3493]],[[3494]],[[3495]],[[3496]],[[3497]],[[3498]],[[3499]],[[3500]],[[3501]],[[3502]],[[3503]],[[3504]],[[3505]],[[-2244,3506]],[[3507]],[[3508]],[[3509]],[[3510]],[[3511]],[[3512]],[[3513]]],"id":"PNG","properties":{"name":"Papua New Guinea","n3":"598"}},{"type":"Polygon","arcs":[[3514,-2746,-495,3515,3516,-1402,-1427,3517,-1415,3518]],"id":"POL","properties":{"name":"Poland","n3":"616"}},{"type":"MultiPolygon","arcs":[[[3519]],[[3520]],[[3521]],[[3522]]],"id":"PRI","properties":{"name":"Puerto Rico","n3":"630"}},{"type":"MultiPolygon","arcs":[[[3523]],[[3524]],[[3525]],[[3526]],[[3527]],[[3528]],[[3529]],[[3530]],[[3531]],[[3532,3533,-2715,3534,-1237]]],"id":"PRK","properties":{"name":"Dem. Rep. Korea","n3":"408"}},{"type":"MultiPolygon","arcs":[[[3535]],[[3536]],[[3537]],[[3538]],[[3539]],[[3540]],[[3541]],[[3542]],[[3543]],[[3544]],[[3545]],[[3546]],[[3547]],[[3548]],[[3549]],[[3550]],[[3551,-1531]]],"id":"PRT","properties":{"name":"Portugal","n3":"620"}},{"type":"Polygon","arcs":[[-561,-65,-511]],"id":"PRY","properties":{"name":"Paraguay","n3":"600"}},{"type":"MultiPolygon","arcs":[[[-1490,3552,-2443]],[[-2483,3553,-2439]]],"id":"PSX","properties":{"name":"Palestine","n3":"275"}},{"type":"MultiPolygon","arcs":[[[3554]],[[3555]],[[3556]],[[3557]],[[3558]],[[3559]],[[3560]],[[3561]],[[3562]],[[3563]],[[3564]],[[3565]],[[3566]],[[3567]],[[3568]],[[3569]],[[3570]],[[3571]],[[3572]],[[3573]],[[3574]],[[3575]],[[3576]],[[3577]],[[3578]],[[3579]],[[3580]],[[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]],[[3632]],[[3633]],[[3634]],[[3635]],[[3636]],[[3637]],[[3638]],[[3639]],[[3640]],[[3641]]],"id":"PYF","properties":{"name":"Fr. Polynesia","n3":"258"}},{"type":"Polygon","arcs":[[3642,3643]],"id":"QAT","properties":{"name":"Qatar","n3":"634"}},{"type":"Polygon","arcs":[[3644,3645,-443,3646,-2075,3647,-2762]],"id":"ROU","properties":{"name":"Romania","n3":"642"}},{"type":"MultiPolygon","arcs":[[[3648]],[[3649]],[[3650]],[[3651]],[[3652]],[[3653]],[[3654]],[[3655]],[[3656]],[[3657]],[[3658]],[[3659]],[[3660]],[[3661]],[[3662]],[[3663]],[[3664]],[[3665]],[[3666]],[[3667]],[[3668]],[[3669]],[[3670]],[[3671]],[[3672]],[[3673]],[[3674]],[[3675]],[[3676]],[[3677]],[[3678]],[[-3515,3679,-2744,3680,-2747]],[[3681]],[[3682]],[[3683]],[[3684]],[[3685]],[[3686]],[[3687]],[[3688]],[[3689]],[[3690]],[[3691]],[[3692]],[[3693]],[[3694]],[[3695]],[[3696]],[[3697]],[[3698]],[[3699]],[[3700]],[[3701]],[[3702]],[[3703]],[[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]],[[3760]],[[3761]],[[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]],[[-3533,-1256,-3059,-1254,-2604,3808,-390,-1774,3809,3810,-493,-2750,-1540,3811,-1589,-3253,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]]],"id":"RUS","properties":{"name":"Russia","n3":"643"}},{"type":"Polygon","arcs":[[3866,-396,-1286,3867]],"id":"RWA","properties":{"name":"Rwanda","n3":"646"}},{"type":"Polygon","arcs":[[-1462,-3091,3868,-2759]],"id":"SAH","properties":{"name":"W. Sahara","n3":"732"}},{"type":"MultiPolygon","arcs":[[[3869]],[[3870]],[[3871]],[[3872]],[[3873]],[[3874]],[[3875]],[[3876]],[[3877]],[[3878]],[[-2723,3879,-3644,3880,-52,-3310,3881,3882,-2480,-2429]]],"id":"SAU","properties":{"name":"Saudi Arabia","n3":"682"}},{"type":"Polygon","arcs":[[3883]],"id":"SCR","properties":{"name":"Scarborough Reef","n3":"-99"}},{"type":"MultiPolygon","arcs":[[[3884]],[[3885,-1499,-1547,3886,-576,3887,-2732,-1493]]],"id":"SDN","properties":{"name":"Sudan","n3":"729"}},{"type":"Polygon","arcs":[[-1546,-2610,3888,-1284,-577,-3887]],"id":"SDS","properties":{"name":"S. Sudan","n3":"728"}},{"type":"Polygon","arcs":[[-3013,-1787,-1803,3889,-1789,3890,-3089]],"id":"SEN","properties":{"name":"Senegal","n3":"686"}},{"type":"Polygon","arcs":[[3891]],"id":"SER","properties":{"name":"Serranilla Bank","n3":"-99"}},{"type":"Polygon","arcs":[[3892]],"id":"SGP","properties":{"name":"Singapore","n3":"702"}},{"type":"MultiPolygon","arcs":[[[3893]],[[3894]],[[3895]],[[3896]],[[3897]],[[3898]],[[3899]],[[3900]],[[3901]],[[3902]],[[3903]],[[3904]]],"id":"SGS","properties":{"name":"S. Geo. and S. Sandw. Is.","n3":"239"}},{"type":"MultiPolygon","arcs":[[[3905]],[[3906]],[[3907]],[[3908]]],"id":"SHN","properties":{"name":"Saint Helena","n3":"654"}},{"type":"MultiPolygon","arcs":[[[3909]],[[3910]],[[3911]],[[3912]],[[3913]],[[3914]],[[3915]],[[3916]],[[3917]],[[3918]],[[3919]],[[3920]],[[3921]],[[3922]],[[3923]],[[3924]],[[3925]],[[3926]],[[3927]],[[3928]],[[3929]],[[3930]],[[3931]],[[3932]],[[3933]],[[3934]],[[3935]],[[3936]],[[3937]],[[3938]],[[3939]],[[3940]],[[3941]],[[3942]],[[3943]],[[3944]],[[3945]],[[3946]],[[3947]],[[3948]],[[3949]],[[3950]],[[3951]],[[3952]],[[3953]],[[3954]],[[3955]],[[3956]]],"id":"SLB","properties":{"name":"Solomon Is.","n3":"090"}},{"type":"MultiPolygon","arcs":[[[3957]],[[-2731,3958,-1784]]],"id":"SLE","properties":{"name":"Sierra Leone","n3":"694"}},{"type":"Polygon","arcs":[[-2034,3959,-2015]],"id":"SLV","properties":{"name":"El Salvador","n3":"222"}},{"type":"Polygon","arcs":[[-2477]],"id":"SMR","properties":{"name":"San Marino","n3":"674"}},{"type":"Polygon","arcs":[[-1543,-1437,3960,3961]],"id":"SOL","properties":{"name":"Somaliland","n3":"-99"}},{"type":"Polygon","arcs":[[-2606,-1544,-3962,3962]],"id":"SOM","properties":{"name":"Somalia","n3":"706"}},{"type":"MultiPolygon","arcs":[[[3963]],[[3964]]],"id":"SPM","properties":{"name":"St. Pierre and Miquelon","n3":"666"}},{"type":"Polygon","arcs":[[-3647,-442,-3011,-2719,-3057,-486,-2066,-2076]],"id":"SRB","properties":{"name":"Serbia","n3":"688"}},{"type":"MultiPolygon","arcs":[[[3965]],[[3966]]],"id":"STP","properties":{"name":"São Tomé and Principe","n3":"678"}},{"type":"Polygon","arcs":[[-557,-2020,3967,-1655]],"id":"SUR","properties":{"name":"Suriname","n3":"740"}},{"type":"Polygon","arcs":[[3968,-2078,-377,-1403,-3517]],"id":"SVK","properties":{"name":"Slovakia","n3":"703"}},{"type":"Polygon","arcs":[[-2068,3969,-2475,-379,-2077]],"id":"SVN","properties":{"name":"Slovenia","n3":"705"}},{"type":"MultiPolygon","arcs":[[[3970]],[[3971]],[[3972]],[[3973]],[[3974]],[[3975]],[[3976]],[[3977]],[[3978]],[[3979]],[[3980]],[[3981]],[[3982]],[[3983]],[[3984]],[[3985]],[[3986]],[[3987]],[[3988]],[[3989]],[[3990]],[[3991]],[[3992]],[[3993]],[[3994]],[[3995]],[[3996]],[[3997]],[[3998]],[[3999]],[[4000]],[[4001]],[[4002]],[[4003]],[[4004]],[[4005]],[[4006]],[[4007]],[[4008]],[[4009]],[[4010,-3254,-1591]]],"id":"SWE","properties":{"name":"Sweden","n3":"752"}},{"type":"Polygon","arcs":[[-3076,4011]],"id":"SWZ","properties":{"name":"Swaziland","n3":"748"}},{"type":"Polygon","arcs":[[4012,-2755]],"id":"SXM","properties":{"name":"Sint Maarten","n3":"534"}},{"type":"MultiPolygon","arcs":[[[4013]],[[4014]],[[4015]],[[4016]],[[4017]],[[4018]],[[4019]],[[4020]],[[4021]],[[4022]],[[4023]]],"id":"SYC","properties":{"name":"Seychelles","n3":"690"}},{"type":"Polygon","arcs":[[-2431,-2484,-2446,-2729,4024,4025]],"id":"SYR","properties":{"name":"Syria","n3":"760"}},{"type":"MultiPolygon","arcs":[[[4026]],[[4027]],[[4028]],[[4029]],[[4030]],[[4031]],[[4032]],[[4033]],[[4034]],[[4035]],[[4036]],[[4037]]],"id":"TCA","properties":{"name":"Turks and Caicos Is.","n3":"796"}},{"type":"Polygon","arcs":[[-3888,-581,-1270,-3138,-3133,-2733]],"id":"TCD","properties":{"name":"Chad","n3":"148"}},{"type":"Polygon","arcs":[[-406,4038,-1778,-410]],"id":"TGO","properties":{"name":"Togo","n3":"768"}},{"type":"MultiPolygon","arcs":[[[4039]],[[4040]],[[4041]],[[4042]],[[4043]],[[4044]],[[4045]],[[4046]],[[4047]],[[4048]],[[4049]],[[4050]],[[4051]],[[4052]],[[4053]],[[4054]],[[4055]],[[4056]],[[4057]],[[-2726,-2622,4058,-3111,4059,-3055]]],"id":"THA","properties":{"name":"Thailand","n3":"764"}},{"type":"MultiPolygon","arcs":[[[-2615]],[[4060]],[[-2611,-1251,-7,4061]]],"id":"TJK","properties":{"name":"Tajikistan","n3":"762"}},{"type":"MultiPolygon","arcs":[[[4062]],[[4063]],[[-5,-2422,4064,-2602,4065]]],"id":"TKM","properties":{"name":"Turkmenistan","n3":"795"}},{"type":"MultiPolygon","arcs":[[[4066,-2085]],[[-2087,4067]],[[4068]]],"id":"TLS","properties":{"name":"Timor-Leste","n3":"626"}},{"type":"MultiPolygon","arcs":[[[4069]],[[4070]],[[4071]],[[4072]],[[4073]],[[4074]],[[4075]],[[4076]],[[4077]],[[4078]]],"id":"TON","properties":{"name":"Tonga","n3":"776"}},{"type":"MultiPolygon","arcs":[[[4079]],[[4080]]],"id":"TTO","properties":{"name":"Trinidad and Tobago","n3":"780"}},{"type":"MultiPolygon","arcs":[[[4081]],[[4082]],[[4083]],[[-2735,-1465,4084]]],"id":"TUN","properties":{"name":"Tunisia","n3":"788"}},{"type":"MultiPolygon","arcs":[[[4085]],[[4086]],[[4087]],[[4088]],[[4089,-1880,-439]],[[-1772,-75,-387,-2426,-2432,-4026,4090]]],"id":"TUR","properties":{"name":"Turkey","n3":"792"}},{"type":"MultiPolygon","arcs":[[[4091]],[[4092]],[[4093]],[[4094]],[[4095]],[[4096]],[[4097]],[[4098]],[[4099]]],"id":"TUV","properties":{"name":"Tuvalu","n3":"798"}},{"type":"MultiPolygon","arcs":[[[4100]],[[4101]],[[4102]],[[4103]],[[4104]],[[4105]],[[4106]],[[4107]]],"id":"TWN","properties":{"name":"Taiwan","n3":"158"}},{"type":"MultiPolygon","arcs":[[[4108]],[[4109]],[[4110]],[[4111]],[[4112]],[[4113]],[[-2608,4114,-3081,-3097,4115,-1287,-394,-3867,4116]]],"id":"TZA","properties":{"name":"Tanzania","n3":"834"}},{"type":"Polygon","arcs":[[-4117,-3868,-1285,-3889,-2609]],"id":"UGA","properties":{"name":"Uganda","n3":"800"}},{"type":"MultiPolygon","arcs":[[[4117]],[[4118]],[[4119]],[[4120,-3645,-2763,-3648,-2074,-3969,-3516,-494,-3811]]],"id":"UKR","properties":{"name":"Ukraine","n3":"804"}},{"type":"MultiPolygon","arcs":[[[4121]],[[4122]],[[4123]],[[4124]],[[4125]],[[4126]],[[4127]],[[4128]],[[4129]],[[4130]]],"id":"UMI","properties":{"name":"U.S. Minor Outlying Is.","n3":"581"}},{"type":"Polygon","arcs":[[4131,-67,-560]],"id":"URY","properties":{"name":"Uruguay","n3":"858"}},{"type":"MultiPolygon","arcs":[[[4132]],[[4133]],[[4134]],[[4135]],[[4136]],[[4137]],[[4138]],[[4139]],[[4140]],[[4141]],[[4142]],[[4143]],[[4144]],[[4145]],[[4146]],[[4147]],[[4148]],[[4149]],[[4150]],[[4151]],[[4152]],[[4153]],[[4154]],[[4155]],[[4156]],[[4157]],[[4158]],[[4159]],[[4160]],[[4161]],[[4162]],[[4163]],[[4164]],[[4165]],[[4166]],[[4167]],[[4168]],[[4169]],[[4170]],[[4171]],[[4172]],[[4173]],[[4174]],[[4175]],[[4176]],[[4177]],[[4178]],[[4179]],[[4180]],[[4181]],[[4182]],[[4183]],[[4184]],[[4185]],[[4186]],[[4187]],[[4188]],[[4189]],[[4190]],[[4191]],[[4192]],[[4193]],[[4194]],[[4195]],[[4196]],[[4197]],[[4198]],[[4199]],[[4200]],[[4201]],[[4202]],[[4203]],[[4204]],[[4205]],[[4206]],[[4207]],[[4208]],[[4209]],[[4210]],[[4211]],[[4212]],[[4213]],[[4214]],[[4215]],[[4216]],[[4217]],[[4218]],[[4219]],[[4220]],[[4221]],[[4222]],[[4223]],[[4224]],[[4225]],[[4226]],[[4227]],[[4228]],[[4229]],[[4230]],[[4231]],[[4232]],[[4233]],[[4234]],[[4235]],[[4236]],[[4237]],[[4238]],[[4239]],[[4240]],[[4241]],[[4242]],[[4243]],[[4244]],[[4245]],[[4246]],[[4247]],[[4248]],[[4249]],[[4250]],[[4251]],[[4252]],[[4253]],[[4254]],[[4255]],[[4256]],[[4257]],[[4258]],[[4259]],[[4260]],[[4261]],[[4262]],[[4263]],[[4264]],[[4265]],[[4266]],[[4267]],[[4268]],[[4269]],[[4270]],[[4271]],[[4272]],[[4273]],[[4274]],[[4275]],[[4276]],[[4277]],[[4278]],[[4279]],[[4280]],[[4281]],[[4282]],[[4283]],[[4284]],[[4285]],[[4286]],[[4287]],[[4288]],[[4289]],[[4290]],[[4291]],[[4292]],[[4293]],[[4294]],[[4295,-939]],[[-619,4296,-2988,4297,-937]],[[4298]],[[4299]],[[4300]],[[4301]],[[4302]],[[4303]],[[4304]],[[4305]],[[4306]],[[4307]],[[4308]],[[4309]],[[4310]],[[4311]],[[4312]],[[4313]],[[4314]],[[4315]],[[4316]],[[4317]],[[4318]],[[4319]],[[4320]],[[4321]],[[4322]],[[4323]],[[4324]],[[4325]],[[4326]],[[4327]],[[4328]],[[4329]],[[4330]],[[4331]],[[4332]],[[4333]],[[4334]],[[4335]],[[4336]],[[4337]],[[4338]],[[4339]],[[4340]],[[4341]],[[4342]],[[4343]],[[4344]],[[4345]],[[4346]],[[4347]],[[4348]],[[4349]],[[4350]],[[4351]],[[4352]],[[4353]],[[4354]],[[4355]],[[4356]],[[4357]],[[4358]],[[4359]],[[4360]],[[4361]],[[4362]],[[4363]],[[4364]],[[4365]],[[4366]],[[4367]],[[4368]],[[4369]],[[4370]],[[4371]],[[4372]],[[4373]],[[4374]],[[4375]],[[4376]],[[4377]],[[4378]],[[4379]],[[4380]],[[4381]],[[4382]],[[4383]],[[4384]],[[4385]],[[4386]],[[4387]],[[4388]],[[4389]],[[4390]],[[4391]],[[4392]],[[4393]],[[4394]],[[4395]],[[4396]],[[4397]],[[4398]],[[4399]],[[4400]],[[4401]],[[4402]],[[4403]],[[4404]],[[4405]],[[4406,4407]],[[4408]],[[4409]],[[4410]],[[4411,4412]],[[4413]],[[4414]],[[4415]],[[4416]],[[4417]],[[4418]],[[4419]],[[4420]],[[4421]],[[4422]],[[4423]],[[4424]],[[4425]],[[4426]],[[4427]],[[4428]],[[4429]],[[4430]],[[4431]],[[4432]],[[4433]],[[4434]],[[4435]],[[4436]],[[4437]],[[4438]],[[4439]],[[4440]],[[4441]],[[4442]],[[4443]],[[4444]],[[4445]],[[4446]],[[4447]],[[4448]],[[4449]],[[4450]],[[4451]],[[4452]],[[4453]],[[4454]],[[4455]],[[4456]],[[4457,4458]],[[4459]],[[4460]],[[4461]],[[4462]],[[4463]],[[4464]],[[4465]],[[4466]],[[4467]],[[4468]],[[4469]],[[4470,4471]],[[4472,4473]],[[4474]],[[4475]],[[4476]],[[4477]],[[4478]],[[4479]],[[4480]],[[4481]],[[4482]],[[-941,4483]]],"id":"USA","properties":{"name":"United States","n3":"840"}},{"type":"MultiPolygon","arcs":[[[-1382,4484]],[[4485,-1380]]],"id":"USG","properties":{"name":"USNB Guantanamo Bay","n3":"-99"}},{"type":"MultiPolygon","arcs":[[[-2614]],[[-2613]],[[-2612,-4062,-6,-4066,-2601],[-4061]]],"id":"UZB","properties":{"name":"Uzbekistan","n3":"860"}},{"type":"MultiPolygon","arcs":[[[4486]],[[4487]],[[4488]],[[4489]],[[4490]]],"id":"VCT","properties":{"name":"St. Vin. and Gren.","n3":"670"}},{"type":"MultiPolygon","arcs":[[[4491]],[[4492]],[[4493]],[[4494]],[[4495]],[[4496]],[[4497]],[[4498]],[[4499]],[[4500]],[[4501]],[[4502]],[[4503]],[[4504]],[[4505]],[[4506]],[[4507]],[[4508]],[[4509]],[[4510]],[[4511]],[[4512]],[[4513]],[[4514]],[[4515]],[[4516]],[[4517]],[[-2021,-564,-1313,4518]],[[4519]]],"id":"VEN","properties":{"name":"Venezuela","n3":"862"}},{"type":"MultiPolygon","arcs":[[[4520]],[[4521]],[[4522]],[[4523]],[[4524]],[[4525]]],"id":"VGB","properties":{"name":"British Virgin Is.","n3":"092"}},{"type":"MultiPolygon","arcs":[[[4526]],[[4527]],[[4528]]],"id":"VIR","properties":{"name":"U.S. Virgin Is.","n3":"850"}},{"type":"MultiPolygon","arcs":[[[4529]],[[4530]],[[4531]],[[4532]],[[4533]],[[4534]],[[4535]],[[4536]],[[4537]],[[4538]],[[4539]],[[4540]],[[4541]],[[4542]],[[4543]],[[4544]],[[4545]],[[4546]],[[4547]],[[4548]],[[4549]],[[4550]],[[4551]],[[4552]],[[4553,-2624,-2725,-1242]]],"id":"VNM","properties":{"name":"Vietnam","n3":"704"}},{"type":"MultiPolygon","arcs":[[[4554]],[[4555]],[[4556]],[[4557]],[[4558]],[[4559]],[[4560]],[[4561]],[[4562]],[[4563]],[[4564]],[[4565]],[[4566]],[[4567]],[[4568]],[[4569]],[[4570]],[[4571]],[[4572]],[[4573]],[[4574]],[[4575]],[[4576]],[[4577]],[[4578]],[[4579]],[[4580]]],"id":"VUT","properties":{"name":"Vanuatu","n3":"548"}},{"type":"MultiPolygon","arcs":[[[4581]],[[4582]]],"id":"WLF","properties":{"name":"Wallis and Futuna Is.","n3":"876"}},{"type":"Polygon","arcs":[[4583,-1399]],"id":"WSB","properties":{"name":"Akrotiri","n3":"-99"}},{"type":"MultiPolygon","arcs":[[[4584]],[[4585]]],"id":"WSM","properties":{"name":"Samoa","n3":"882"}},{"type":"MultiPolygon","arcs":[[[4586]],[[4587]],[[4588]],[[4589]],[[4590]],[[4591]],[[4592]],[[4593]],[[4594,-3882,-3309]]],"id":"YEM","properties":{"name":"Yemen","n3":"887"}},{"type":"MultiPolygon","arcs":[[[4595]],[[4596]],[[-3077,-4012,-3075,4597,-3119,-574,4598],[-2743]]],"id":"ZAF","properties":{"name":"South Africa","n3":"710"}},{"type":"Polygon","arcs":[[-3096,-3079,4599,-3118,-9,-1288,-4116]],"id":"ZMB","properties":{"name":"Zambia","n3":"894"}},{"type":"Polygon","arcs":[[-3078,-4599,-573,-4600]],"id":"ZWE","properties":{"name":"Zimbabwe","n3":"716"}}]}},"arcs":[[[30556,57918],[17,-27],[3,-7],[3,-13],[10,-26],[0,-16],[-3,-5],[-5,0],[-6,5],[-5,8],[6,0],[0,4],[-9,10],[-19,35],[-6,5],[-3,3],[-1,6],[0,6],[3,10],[1,6],[-1,10],[-2,8],[-1,7],[4,4],[11,-28],[3,-5]],[[70803,72518],[-22,-9],[-6,-1],[-3,4],[-10,40],[-2,5],[-5,1],[-3,-4],[-3,-6],[-6,-10],[-2,-2],[-5,-1],[-2,-2],[-1,-4],[-3,-6],[-1,-3],[-1,-2],[-2,-1],[-2,1],[-3,6],[-2,2],[-4,-1],[-12,-6],[-9,0],[-4,-4],[-3,-9],[-2,-12],[-3,-7],[-4,-4],[-6,-2],[-11,2],[-4,-2],[0,-12],[4,-12],[9,-12],[17,-14],[5,-10],[3,-12],[4,-9],[7,-6]],[[70706,72394],[1,-3],[0,-4],[0,-4],[-1,-5],[-2,-19],[-4,-2],[-6,8],[-5,13],[-1,2],[-1,1],[-5,3],[-6,0],[-12,-6],[-7,-10],[-23,-25],[-14,-19],[-6,-4],[-19,3],[-4,-2],[-4,-5],[-2,-8],[-1,-20],[-3,-6],[-16,-10],[-8,0],[-9,6],[-8,3],[-23,25],[-8,6],[-17,6],[-17,1],[-1,0],[-19,1],[-36,-10],[-9,2],[-9,2],[-18,-4],[-14,2],[-14,-9],[-4,0],[-4,0],[-8,4],[-9,2],[-41,-8],[-5,-3],[-6,-8],[-4,-2],[-3,0],[-9,6],[-7,-3],[-7,-6],[-8,-4],[-24,-2],[-23,6],[-19,-2],[-18,-8],[-13,-11],[-18,-26],[-5,-2],[-13,1],[-12,-6],[-12,-2],[-24,-9],[-13,-9],[-4,-6],[-1,-7],[4,-12],[2,-10],[-5,-4],[-16,-4],[-7,-4],[-3,-3],[-3,-5],[1,-5],[1,-5],[0,-6],[-5,-7],[-11,-5],[-6,-5],[-5,-8],[-13,-13],[-4,-6],[-3,-6],[-4,-5],[-4,-3],[-18,-2],[-6,-6],[1,-19],[4,-16],[1,-8],[-3,-7],[-4,-3],[-5,0],[-4,3],[-8,15],[-16,19],[-6,4],[-5,-1],[-3,-6],[-3,-18],[-2,-9],[-3,-7],[-6,-12],[-2,-9],[3,-9],[2,-7],[-6,-6],[-7,-2],[-5,-3],[-4,-6],[-22,-41],[-5,-7],[-18,-11],[-1,-4],[-2,-12],[-2,-6],[-2,-3],[-9,-7],[-11,-12],[-1,-5],[-1,-12],[-2,-6],[-9,-15],[-2,-10],[1,-8],[0,-3],[3,-4],[10,-10],[4,-5],[7,-13],[7,-6],[8,-3],[8,-6],[5,-8],[1,-20],[3,-9],[12,-15],[4,-9],[10,-29],[1,-9],[1,-6],[-1,-5],[0,-5],[2,-7],[1,-4],[4,-6],[2,-3],[4,-10],[1,-11],[-2,-11],[-5,-11],[-3,-12],[2,-10],[6,-8],[15,-13],[5,-6],[2,-8],[0,-12],[-2,-11],[-1,-11],[2,-13],[1,-4],[2,-5],[4,-7],[2,-8],[0,-12],[-3,-9],[-13,-20],[-9,-20],[0,-16],[5,-15],[15,-31],[9,-12],[1,-7],[-3,-12],[-7,-19],[-19,-23],[-7,-16],[-1,-26],[2,-6],[0,-6],[-2,-4],[-3,-4],[-3,-7],[-2,-13],[-2,-7],[-3,-4],[-4,-3],[-33,-23],[-10,-14],[-5,-18],[-4,-20],[-15,-37],[-4,-7],[-11,-9],[-19,-29],[-3,-6],[0,-9],[2,-14],[1,-12],[-1,-14],[-3,-12],[-5,-5],[-12,3],[-5,0],[-1,0],[-4,-3],[-3,-11],[-1,-13],[2,-13],[2,-11],[6,-16],[8,-17],[9,-14],[19,-20],[2,-14],[-9,-42],[0,-10],[3,-21],[1,-12],[0,-14],[-2,-8],[-8,-16],[-3,-12],[0,-9],[1,-10],[-1,-11],[-5,-7],[-13,-5],[-6,-4],[-3,-8],[-3,-5],[-4,-2],[-5,0],[-8,5],[-3,-2],[-1,-7],[-5,-18],[-19,-7],[-38,1],[-37,-9],[-9,0],[-23,9],[-22,2],[-5,2],[-10,9],[-15,3],[-60,37],[-10,1],[-15,-4],[-7,-5],[-5,-8],[0,-9],[1,-9],[-1,-9],[-5,-9],[-3,-8],[1,-9],[8,-15],[3,-8],[4,-22],[2,-9],[7,-18],[2,-9],[2,-11],[3,-11],[4,-5],[7,-2],[4,-1],[15,-11],[12,3],[3,-6],[2,-23],[2,-10],[1,-3],[2,-3],[5,-4],[2,-3],[1,-4],[0,-14],[-6,-38],[0,-11],[1,-11],[2,-11],[4,-9],[2,-3],[8,-4],[2,-3],[2,-10],[1,-4],[15,-30],[5,-18],[-2,-19],[-48,-71],[-5,-6],[-6,1],[-7,4],[-3,-2],[-9,-32],[-2,-5],[-4,-3],[-8,1],[-3,-1],[-20,-22],[-12,-2],[-19,17],[-10,-4],[-13,-16],[-6,-3],[-2,1],[-2,2],[-3,2],[-9,-3],[-6,0],[-11,-3],[-9,-11],[-8,-16],[-2,-11],[-3,-10],[5,-64],[-2,-17],[-2,-3],[-7,-10],[-7,-17],[-9,-12],[-3,-8],[0,-12],[1,-5],[2,-3],[3,-3],[2,-2],[2,-3],[1,-4],[0,-11],[3,-19],[-1,-8],[-3,-11],[-15,-40],[-5,-7],[-11,-7],[-6,-7],[-8,-19],[-5,-22],[-2,-25],[3,-25],[7,-34],[1,-12],[0,-13],[-2,-25],[0,-25],[-2,-25],[0,-13],[5,-56],[9,-45],[1,-8],[-1,-3],[-1,-2],[-13,-19],[-8,-14],[-30,-86],[-4,-8],[-4,-5],[-4,-10],[-9,-15],[-10,-13],[-7,-6],[-10,2],[-10,-6],[-17,-17],[-12,-2],[-7,10],[-13,33],[-7,16],[-2,8],[-1,24],[-2,7],[-3,4],[-16,5],[-16,17],[-9,7],[-6,0],[-7,-5],[-12,-11],[-5,-8],[0,-6],[5,-4],[6,-1],[17,0],[5,-1],[3,-5],[-4,-8],[-6,-6],[-4,-3],[-11,3],[-29,19],[-11,1],[-11,0],[-6,1],[-3,6],[-3,8],[-7,11],[-6,6],[-8,4],[-5,0],[-4,-8],[-6,-25],[-1,-6],[-2,-5],[-9,-15],[-1,-5],[-1,-13],[-2,-4],[-14,-15],[-5,-7],[-3,-8],[-3,-3],[-11,-1],[-9,3],[-4,-1],[-7,-6],[-18,-36],[-9,-11],[-6,-8],[-8,-6],[-9,-2],[-18,7],[-9,0],[-3,-10],[2,-9],[4,-9],[4,-10],[1,-24],[4,-8],[6,-7],[5,-3],[23,6],[10,-6],[2,-25],[-3,-11],[-4,-3],[-12,0],[-4,-2],[-4,-5],[-4,-6],[-17,-21],[-5,-4],[-15,-5],[-11,-8],[-16,-4],[-19,-15],[-5,-2],[-18,3],[-15,-1],[-4,1],[-6,4],[-10,10],[-6,3],[-5,0],[-11,-5],[-5,0],[-7,2],[-3,2],[-2,3],[-1,5],[1,4],[2,3],[1,5],[-1,13],[-2,8],[-4,4],[-16,0],[-11,-6],[-18,-17],[-9,-13],[-6,-13],[-7,-10],[-11,-3],[-7,-9],[-9,-66],[-5,-14],[-27,-49],[-6,-5],[-37,-14],[-5,-5],[-3,-8],[-27,-191],[-1,-26],[5,-23],[7,-16],[2,-8],[1,-12],[1,-12],[-5,-78],[0,-36],[-1,-11],[-18,-68],[-4,-22],[0,-10],[1,-8],[10,-12],[11,-22],[9,-12],[2,-6],[-1,-2],[-2,-2],[-2,-2],[-6,-18],[-7,-18],[-22,-29],[-24,-13],[-16,-9],[-16,-9],[-16,-9],[-16,-8],[-16,-9],[-16,-9],[-17,-9],[-16,-8],[-16,-9],[-16,-9],[-16,-9],[-16,-8],[-16,-9],[-16,-9],[-17,-9],[-16,-8],[-40,-22],[-14,1],[-46,15],[-38,1],[-51,1],[-6,0],[-75,-42],[-10,-9],[-6,-16],[-10,-36],[-8,-6],[-32,25],[-51,19],[-61,22],[-42,-8],[-14,-2],[-13,-3],[-14,-2],[-14,-2],[-13,-3],[-14,-2],[-14,-3],[-13,-2],[-14,-2],[-13,-3],[-14,-2],[-14,-3],[-13,-2],[-14,-2],[-13,-3],[-14,-2],[-8,-2],[-35,-6],[-28,11],[-27,15],[-23,14],[-23,14],[-23,14],[-23,14],[-23,13],[-24,14],[-23,14],[-23,14],[-23,14],[-23,14],[-23,14],[-23,13],[-23,14],[-24,14],[-23,14],[-23,14],[-20,12],[-8,7]],[[66901,68152],[16,35],[21,46],[43,94],[23,51],[15,35],[30,66],[23,50],[32,71],[35,78],[23,50],[5,10],[-1,3],[0,1],[0,10],[1,4],[1,2],[-1,41],[-1,6],[5,20],[2,12],[0,12],[-1,12],[-3,19],[-5,19],[-1,6],[0,17],[-3,14],[-7,22],[-3,12],[0,12],[2,25],[-2,11],[-10,23],[-5,8],[-8,5],[-15,5],[-32,8],[-54,15],[-47,12],[-1,0],[-46,13],[-28,7],[-10,7],[-3,56],[-4,28],[-1,14],[4,44],[-4,55],[-1,28],[2,37],[0,13],[-1,6],[-2,6],[0,6],[2,13],[-1,4],[-3,2],[-1,4],[2,9],[8,17],[1,10],[4,47],[1,48],[-10,63],[-12,82],[-11,69],[-11,62],[-9,59],[-10,58],[-8,48],[-4,38],[0,47],[2,8],[13,33],[15,36],[14,33],[10,26],[8,12],[9,11],[3,6],[2,12],[-1,10],[-1,10],[1,9],[5,6],[13,1],[4,3],[2,6],[1,1],[-3,9],[-4,7],[-5,5],[-9,4],[-11,1],[-20,-2],[-22,3],[-22,17],[-18,30],[-7,43],[2,19],[9,35],[1,23],[-8,91],[-3,51],[-1,8],[2,26],[8,28],[8,20],[10,18],[13,13],[5,8],[-2,13],[19,2],[29,3],[20,2],[-3,11],[-20,47],[-5,16],[-3,6],[-3,6],[-7,5],[-2,4],[-3,15],[-1,4],[-3,2],[-3,1],[4,12],[7,7],[16,3],[6,4],[6,6],[13,25],[1,5],[2,4],[3,4],[4,1],[4,-1],[3,2],[3,7],[1,14],[-1,15],[1,14],[5,11],[8,12],[6,17],[1,9],[9,5],[2,20],[1,21],[0,5],[-1,11],[0,6],[1,8],[3,11],[1,5],[1,12],[4,22],[2,25],[2,8],[7,17],[-3,5],[-1,5],[1,5],[1,7],[-1,2],[-10,24],[-1,6],[1,2],[3,3],[0,6],[-1,5],[-2,3],[0,6],[0,12],[2,13],[4,6],[6,0],[6,2],[6,5],[2,11],[-1,30],[1,12],[2,7],[5,13],[2,6],[2,19],[3,11],[7,14],[4,11],[1,13],[0,12],[-3,24],[-2,5]],[[67019,71563],[3,3],[15,5],[2,0],[2,-2],[3,-4],[0,-2],[-3,-6],[4,-6],[0,1],[1,-1],[4,-7],[0,-2],[-1,-6],[0,-3],[2,-4],[2,-4],[2,-2],[3,-1],[2,-2],[3,-1],[18,-29],[12,-25],[19,-13],[37,-10],[17,2],[33,21],[16,-1],[9,-7],[7,-9],[28,-49],[8,-9],[15,-11],[4,-8],[3,-9],[2,-11],[1,-10],[-1,-24],[2,-9],[5,-21],[3,-7],[4,5],[27,64],[10,14],[7,1],[18,-29],[3,-3],[3,0],[3,2],[3,0],[8,-6],[2,-1],[5,2],[20,15],[4,5],[4,6],[4,8],[7,13],[17,15],[1,1],[26,35],[18,16],[6,2],[11,2],[6,2],[4,7],[1,11],[1,22],[3,19],[-1,6],[-4,7],[-1,7],[-1,30],[1,9],[7,13],[21,12],[8,10],[2,5],[0,4],[-2,3],[-7,5],[-1,3],[-4,9],[-15,22],[-1,8],[-2,10],[-2,8],[-2,7],[1,11],[4,7],[6,3],[61,-3],[24,9],[22,18],[4,7],[7,15],[4,7],[5,5],[6,2],[34,4],[11,5],[26,26],[8,5],[5,1],[4,1],[8,-3],[27,-17],[0,7],[-3,28],[0,11],[3,9],[3,8],[18,24],[10,8],[11,4],[11,-4],[5,-3],[3,-1],[3,4],[4,24],[3,7],[5,5],[5,3],[20,8],[10,6],[9,13],[5,12],[22,58],[5,21],[3,21],[2,24],[-1,12],[-4,23],[-1,12],[0,12],[1,12],[3,24],[5,19],[29,93],[11,32],[3,20],[-1,23],[-5,45],[1,23],[5,16],[9,10],[50,46],[20,12],[118,5],[4,0],[10,9],[13,30],[8,14],[3,8],[2,12],[0,13],[-3,25],[2,14],[2,12],[4,12],[3,10],[3,6],[3,3],[5,2],[11,0],[4,5],[2,16],[0,8],[5,-3],[5,-2],[2,-3],[5,-17],[2,-6],[2,-4],[5,-7],[63,-39],[5,-8],[8,-17],[4,-8],[6,-5],[3,-1],[9,1],[3,-1],[4,-6],[3,-1],[2,-2],[2,-2],[5,-8],[5,-7],[8,-1],[19,10],[7,2],[2,-3],[4,-10],[4,-3],[3,1],[2,3],[4,8],[5,7],[5,5]],[[68477,72597],[5,3],[7,1],[7,-1],[19,-13],[3,-1],[7,-1],[3,2],[6,8],[3,2],[36,2],[26,11],[13,-1],[5,-4],[11,-13],[6,-3],[3,-6],[5,-25],[3,-9],[5,-6],[13,-8],[5,-9],[3,-10],[2,-11],[3,-9],[6,-5],[7,2],[10,12],[7,3],[7,1],[6,3],[6,5],[5,7],[9,15],[5,7],[6,3],[7,-6],[5,-24],[4,-7],[3,2],[3,5],[1,6],[2,3],[3,1],[5,2],[3,1],[3,-2],[7,-7],[3,-3],[3,-1],[10,1],[6,-3],[5,-5],[3,-7],[1,-12]],[[68827,72493],[-2,-37],[0,-9],[4,-8],[6,-8],[7,-6],[12,-5],[4,-8],[3,-10],[5,-12],[3,-5],[6,-6],[3,-3],[9,-21],[2,-4],[1,-6],[1,-4],[3,-3],[1,-1],[2,0],[4,3],[2,3],[19,27],[3,4],[5,3],[5,8],[5,7],[7,2],[12,-6],[6,0],[3,8],[-2,25],[0,12],[2,10],[6,6],[5,0],[5,-4],[6,-2],[7,1],[5,5],[2,9],[-4,13],[18,3],[13,5],[3,0],[2,3],[4,11],[1,3],[6,1],[10,5],[5,2],[1,4],[2,10],[3,8],[7,2],[-2,7],[-1,3],[-1,2],[3,6],[5,1],[11,-3],[6,1],[3,0],[3,-3],[11,-11],[3,-1],[1,6],[0,13],[-4,17],[1,7],[6,4],[6,-3],[3,-8],[3,-9],[4,-8],[4,-4],[3,2],[1,5],[-1,9],[-1,2],[-5,6],[-1,4],[-2,7],[1,2],[1,-1],[1,0],[19,-4],[6,-6],[5,-8],[5,-11],[4,-21],[5,-9],[7,-7],[5,-7],[5,-21],[2,-5],[6,-7],[2,-2],[26,-30],[6,1],[5,4],[7,3],[1,0],[3,2],[3,5],[4,9],[12,12],[4,8],[10,27],[1,8],[-5,1],[-5,4],[2,13],[-2,5],[-2,21],[-2,9],[-2,4],[-1,5],[0,5],[0,6],[0,2],[1,0],[1,1],[0,3],[-1,3],[-3,1],[0,2],[0,23],[0,11],[2,9],[1,3],[4,5],[2,3],[1,3],[2,7],[1,3],[12,16],[6,10],[5,24],[6,5],[38,-6],[6,2],[12,8],[6,2],[3,-1],[6,-3],[2,-2],[3,-3],[3,3],[3,4],[2,2],[6,3],[12,10],[6,-1],[5,-7],[2,-9],[3,-9],[6,-3],[4,-1],[1,-3],[1,-4],[2,-3],[1,-1],[2,-2],[9,-3],[-2,5],[8,-3],[8,-5],[9,-2],[8,5],[9,21],[2,2],[1,5],[4,17],[6,1],[1,-1],[1,3],[1,1],[1,4],[1,4],[-1,6],[0,4],[1,2],[2,2],[3,9],[1,7],[1,5],[0,5],[0,9],[-3,17],[0,8],[1,7],[-2,4],[-3,7],[-2,7],[-1,9],[-1,5],[-10,4],[-3,3],[-4,12],[-4,18],[-2,18],[4,15],[5,-8],[6,-2],[7,2],[6,4],[-2,5],[-1,5],[0,5],[1,5],[2,2],[3,1],[4,2],[1,5],[1,4],[2,1],[5,5],[2,2],[13,28],[12,22],[3,3],[10,7],[2,5],[4,10],[7,33],[8,27],[3,14],[3,4],[4,1],[3,3],[3,20],[0,5],[0,6],[0,6],[1,5],[3,3],[6,-1],[3,3],[10,12],[2,7],[-6,7],[0,4],[6,5],[16,3],[3,10],[2,4],[5,2],[8,0],[3,-1],[4,-2],[3,-1],[2,2],[1,3],[1,2],[4,1],[11,-9],[7,-3],[3,6],[-1,14],[2,4],[6,0],[4,-1],[3,-3],[3,-5],[3,-5],[1,-4],[3,-11],[1,-5],[3,-4],[2,0],[3,2],[3,0],[3,-1],[8,-7],[11,-13],[17,-30],[23,-16],[9,-11],[7,-17],[2,-27],[-2,-13],[-5,-26],[-2,-17],[-5,-17],[-3,-24],[-9,-26],[-2,-15],[-2,-14],[-1,-6],[1,-8],[2,-1],[2,1],[3,-1],[10,-14],[6,-4],[6,5],[5,6],[34,20],[10,-1],[8,-10],[9,-17],[-3,-4],[1,-8],[1,-13],[0,-14],[-2,-10],[-4,-11],[-10,-11],[-2,-11],[0,-5],[3,-13],[0,-6],[0,-6],[-3,-19],[-2,-18],[0,-6],[-2,-5],[-3,-8],[-1,-3],[-1,-26],[4,-48],[-3,-23],[-3,-14],[-1,-8],[2,-23],[0,-25],[0,-12],[-2,-8],[0,-16],[-10,-30],[1,-14],[-2,-6],[-2,-9],[-2,-24],[-1,-36],[1,-7],[2,-6],[4,-13],[1,-7],[0,-24],[1,-13],[3,-11],[15,-44],[3,-11],[2,-28],[2,-12],[3,-11],[4,-10],[9,-17],[12,-11],[13,-5],[13,0],[14,5],[11,7],[80,103],[8,14],[9,9],[3,5],[4,10],[3,5],[10,13],[29,20],[12,4],[19,-6],[10,8],[41,11],[2,5],[2,12],[12,31],[13,46],[8,19],[11,12],[13,4],[7,4],[6,12],[20,21],[20,3],[5,7],[4,8],[4,17],[5,9],[10,14],[3,2],[6,-4],[3,2],[13,25],[5,6],[5,3],[7,1],[7,-1],[5,-5],[4,-2],[17,16],[13,0],[33,-20],[19,-9],[12,0],[10,-2],[-1,-15],[-1,-5],[0,-24],[-2,-9],[-4,-9],[-5,-7],[-4,-4],[-11,-2],[-6,-3],[-6,-9],[-3,-11],[1,-13],[5,-4],[11,6],[6,-1],[2,-3],[4,-9],[2,-3],[3,0],[5,6],[2,2],[7,-1],[4,-2],[4,2],[10,17],[6,3],[12,2],[16,12],[5,3],[21,13],[31,10],[7,5],[5,10],[1,21],[4,7],[7,1],[8,-4],[7,2],[4,15],[1,-7],[3,4],[3,0],[3,-3],[4,-12],[3,-1],[3,0],[8,-3],[5,2],[5,1],[6,-5],[10,-5],[3,-1],[2,0],[28,3],[8,8],[36,-37],[8,-15],[12,-37],[9,-8]],[[53260,40584],[0,-8],[-6,13],[-4,17],[-9,58],[1,17],[2,7],[6,10],[5,-3],[0,-30],[2,-13],[0,-24],[0,-23],[3,-21]],[[56657,44031],[2,-29],[2,-10],[5,-18],[1,-8],[-2,-12],[-1,-10],[1,-33],[-2,-23],[2,-8],[5,-2],[-1,-84],[2,-15],[12,-58],[0,-7],[-2,-8],[-9,-14],[-3,-9],[-1,-6],[0,-8],[1,-14],[0,-10],[-1,-7],[-8,-25],[-5,-23],[-1,-12],[0,-15],[2,-11],[3,-12],[2,-14],[1,-44],[1,-15],[0,-6],[-6,-29],[-2,-76],[-2,-83],[2,-26],[6,-19],[7,-15],[3,-15],[1,-36],[3,-27],[-1,-10],[-2,-10],[-10,-29],[-12,-38],[-4,-17],[-5,-42],[-5,-43],[-5,-27],[-2,-24],[2,-19],[6,-16],[15,-33],[6,-17],[5,-18],[3,-22],[-9,0],[-34,0],[-35,0],[-34,0],[-35,0],[-34,0],[-35,0],[-34,0],[-35,0],[-34,0],[-35,0],[-34,0],[-35,0],[-34,0],[-35,0],[-35,0],[-34,0],[0,-89],[0,-89],[0,-90],[0,-89],[0,-54],[0,-35],[0,-89],[0,-90],[0,-89],[0,-89],[0,-89],[0,-90],[0,-89],[0,-89],[0,-89],[0,-90],[0,-89],[0,-23],[0,-13],[0,-18],[0,-26],[0,-60],[0,-61],[0,-60],[0,-61],[0,-26],[0,-2],[0,-38],[0,-36],[0,-9],[1,-13],[7,-19],[10,-32],[-7,-1],[-2,1],[3,-8],[1,-8],[0,-7],[1,-9],[2,-4],[3,-6],[1,-2],[0,-6],[1,-13],[0,-4],[9,-4],[5,-4],[-1,-8],[-2,-7],[-3,-11],[-1,-11],[0,-10],[1,-7],[5,-17],[1,-8],[0,-8],[-1,-7],[2,-4],[5,-1],[3,-4],[1,-9],[1,-10],[2,-8],[24,-40],[3,-3],[3,1],[4,3],[2,2],[1,1],[1,2],[2,-2],[2,-5],[1,-1],[7,-3],[3,-5],[2,-8],[4,-12],[2,-7],[2,-4],[1,-2],[5,-1],[2,-3],[2,-6],[20,-65],[3,-17],[3,-7],[4,-5],[9,-6],[3,-8],[1,-4],[0,-11],[1,-5],[1,-2],[4,0],[17,-14],[3,-6],[13,-28],[6,-15],[3,-16],[4,-28],[2,-8],[4,-7],[8,-9],[11,-21],[8,-10],[17,-15],[13,-7],[4,-5],[12,-26],[1,-6],[2,-16],[6,-18],[6,-16],[7,-11],[12,-10],[3,-6],[1,-10],[-1,-9],[1,-8],[3,-8],[5,-2],[5,1],[4,2],[5,1],[9,-1],[4,-3],[4,-4],[6,-8],[5,-13],[7,-11],[-2,-8],[0,-8],[1,-8]],[[56494,40022],[-23,-9],[-57,-23],[-56,-23],[-57,-23],[-57,-22],[-69,-28],[-70,-27],[-70,-27],[-70,-28],[-20,-8],[-5,-3],[-1,1],[-5,13],[-8,8],[-16,11],[-13,15],[-4,2],[-11,-2],[-4,2],[-5,-2],[-5,-4],[-5,-3],[-4,4],[-26,-14],[-4,-2],[-22,-12],[-4,-16],[-9,-3],[-8,-7],[-7,-1],[-6,11],[-8,9],[-5,3],[-2,-6],[-2,-2],[-5,2],[-4,4],[-3,5],[-4,5],[-10,1],[-11,-1],[-7,-3],[-3,3],[-8,12],[-10,10],[-3,5],[-5,12],[-6,11],[-7,6],[-8,-3],[-10,18],[-4,3],[-9,-4],[-4,0],[-3,4],[-9,-17],[-7,6],[-7,1],[-7,-4],[-4,-7],[-2,4],[-4,-3],[-4,-1],[-7,0],[-16,-4],[-3,1],[-10,7],[-10,12],[-44,0],[-2,-2],[-3,-11],[-2,-3],[-4,0],[-6,5],[-6,5],[-3,4],[-2,11],[-6,3],[-6,-1],[-16,-8],[-48,-1],[-44,27],[-4,6],[-13,-2],[-8,4],[-3,0],[-6,-3],[-10,-8],[-23,-2],[-36,14],[-25,25],[-11,5],[-4,7],[-5,15],[-16,34],[-3,4],[-5,5],[-3,6],[-1,5],[-2,10],[0,5],[-15,24],[-4,4],[-1,7],[-9,38],[-7,4],[0,1],[-1,6],[-5,23],[-1,3],[-2,2],[-1,6],[-1,3],[-2,0],[-15,0],[-71,1],[-37,0],[-34,0],[-71,0],[-72,0],[-24,0],[-47,0],[-71,0],[-71,0],[-72,0],[-71,0],[-71,0],[-71,0],[-4,0],[-68,0],[-71,0],[-71,0],[-72,0],[-71,0],[-19,0],[-3,0],[0,-3],[-3,-12],[-6,-1],[-12,4],[-2,-2],[-5,-5],[-3,-2],[-3,0],[-4,3],[-6,2],[-6,3],[-3,1],[-2,-2],[-5,-5],[-3,-2],[-7,3],[-4,6],[-12,35],[-4,7],[-26,29],[-27,31],[-24,41],[-24,27],[3,17],[-2,9],[-4,8],[-4,24],[-4,8],[-6,5],[-7,2],[-5,3],[-9,14],[-5,3],[-5,-2],[-7,-4],[-2,0],[-2,3],[-4,-2],[-7,-7],[0,4],[-3,-2],[-3,0],[-7,2],[-3,3],[-1,6],[-2,3],[-4,-4],[-5,8],[-6,-1],[-7,-4],[-29,-11],[-15,-17],[-9,-4],[-5,-6],[-7,-4],[-1,-5],[-1,-7],[-1,-5],[-2,-4],[-5,-3],[-2,-2],[-3,-4],[-2,-9],[-2,-5],[-9,-6],[-13,-12],[-9,-17],[-6,-6],[-7,-2],[-6,-5],[-13,-22],[-7,-7],[-3,0],[-10,4],[-16,3],[-6,4],[-6,8],[-3,-1],[-4,-6],[-4,-3],[-18,1],[-20,-4],[-1,2],[0,6],[-2,5],[-2,3],[-3,1],[-4,4],[-2,4],[-2,3],[-1,5],[0,4],[-1,4],[-2,4],[-2,1],[-2,-1],[-1,-3],[-3,-1],[-10,6],[-3,3],[-2,1],[-1,-2],[-2,-1],[-13,-3],[-13,-8],[-11,-11],[-13,-20],[-12,-11],[-5,-7],[-2,-5],[0,-4],[-2,-3],[-4,0],[-3,1],[-4,5],[-4,1]],[[53268,40252],[0,5],[-2,3],[-2,6],[0,8],[0,7],[2,23],[0,78],[3,51],[3,46],[-4,42],[0,18],[5,3],[2,-25],[3,-11],[5,25],[-1,46],[2,15],[-3,56],[2,63],[-12,224],[1,12],[1,9],[6,27],[-6,27],[-13,43],[-1,26],[5,34],[3,6],[6,7],[6,5],[2,-4],[1,-10],[4,-3],[4,2],[14,28],[2,9],[1,8],[0,17],[1,8],[5,14],[18,21],[3,13],[1,18],[6,44],[3,16],[-3,16],[1,17],[4,34],[2,69],[2,9],[2,8],[10,19],[2,1],[4,-5],[3,0],[2,7],[1,9],[0,11],[-2,8],[-4,4],[-3,-2],[-1,1],[1,13],[2,19],[8,35],[1,21],[1,8],[3,7],[3,6],[3,6],[1,8],[3,32],[0,8],[1,4],[2,6],[1,0],[2,-1],[2,1],[3,8],[2,16],[6,19],[-1,11],[-1,10],[0,11],[0,8],[3,13],[4,44],[2,47],[1,8],[5,15],[3,21],[3,39],[1,38],[-1,20],[-3,19],[-2,10],[-1,4],[0,7],[0,3],[-2,5],[0,4],[0,4],[1,0],[2,-1],[2,2],[3,1],[2,2],[1,4],[0,6],[1,5],[-1,5],[-2,9],[-3,8],[-2,8],[5,15],[1,13],[6,14],[1,8],[1,9],[1,9],[5,15],[1,6],[0,21],[1,9],[2,8],[7,4],[1,3],[2,2],[2,-1],[4,-6],[2,-2],[2,0],[4,13],[2,22],[2,61],[-1,59],[1,7],[4,15],[1,8],[-3,8],[0,5],[0,2],[1,2],[0,19],[0,9],[-3,19],[-1,9],[1,10],[2,9],[3,7],[4,2],[6,2],[2,3],[1,7],[4,8],[5,5],[3,2],[3,4],[2,10],[0,6],[0,4],[-1,4],[0,4],[0,4],[3,6],[0,4],[2,9],[8,9],[2,7],[1,7],[1,0],[2,-2],[2,-1],[5,7],[0,1],[5,5],[3,5],[19,49],[7,12],[3,6],[5,16],[17,41],[4,16],[0,16],[-2,16],[-5,17],[-2,18],[4,15],[13,28],[6,8],[18,37],[8,8],[2,4],[5,17],[1,5],[8,15],[5,6],[6,1],[0,-2],[6,-2],[3,-4],[9,18],[3,3],[5,-2],[5,-8],[5,-3],[10,4],[8,13],[12,28],[6,10],[3,7],[1,9],[1,25],[1,11],[2,11],[5,17],[18,36],[1,0],[0,-4],[-2,-3],[-2,-3],[-1,-5],[2,-6],[4,9],[6,19],[9,21],[2,9],[7,47],[8,35],[3,19],[3,41],[2,9],[4,9],[4,10],[2,11],[2,13],[5,59],[3,18],[0,12],[-4,107],[1,64],[1,14],[2,10],[-2,6],[0,6],[2,8],[0,7],[0,32],[0,6],[2,6],[5,15],[1,7],[0,17],[7,84],[0,34],[0,44],[-1,21],[-4,19],[-25,78],[-2,11],[0,10],[2,10],[8,21],[1,10],[-2,9],[-3,10],[-12,20],[-2,6],[-1,7],[-26,66],[-18,31],[-4,12],[-1,11],[-1,40],[-1,13],[-2,12],[-15,45],[-3,13],[-4,29],[-4,12],[-11,24],[-16,56],[0,8],[3,9],[2,12],[-3,24],[-6,26],[-7,24],[-22,55],[-2,11],[1,10],[6,14],[2,11],[0,10],[-2,12],[-2,10],[-2,4],[0,7],[-9,55],[-1,11],[1,26],[-1,9],[-5,21],[-2,13],[-6,10],[-21,74],[-8,39],[-5,17],[-2,33],[11,47],[16,39],[14,13],[-7,-19],[-20,-35],[-10,-49],[-1,-16],[3,-7],[3,5],[16,56],[0,6],[2,7],[3,2],[4,0],[3,1],[4,8],[3,19],[3,12],[7,16],[2,6],[0,7],[0,14],[1,6],[8,19],[5,7],[5,4],[-14,-29],[-3,-12],[4,5],[9,9],[5,7],[2,1],[2,3],[0,6],[1,4],[0,3],[1,2],[2,1],[17,-5],[7,5],[4,30],[4,22],[1,9],[-2,9],[-8,24],[-3,17],[-4,40],[-2,19],[3,2],[3,-1],[2,1],[2,6],[1,6],[0,45],[-1,12],[-3,14],[-26,86],[-3,5],[-4,27],[-2,10],[-2,7],[-4,16],[-2,6],[-4,22],[-3,27],[-18,70],[-38,182],[-13,68],[-8,60],[-8,17],[-4,10],[-5,14],[1,20],[-1,16],[-5,118],[-2,18],[-1,9],[-1,3],[0,3],[-1,2],[1,2],[2,5],[1,3],[0,6],[1,2],[0,2],[-1,5],[-8,-11],[-6,5],[-20,59],[-24,47],[-19,61],[-26,99],[-10,50],[-7,33],[-8,22],[-6,20],[-8,20],[-11,43],[-1,19],[4,11],[7,4],[5,7],[-1,-9],[-1,-17],[6,1],[10,6],[14,1],[18,8],[8,12],[7,5],[8,2],[15,17],[3,3],[7,0],[6,-5],[7,-4],[7,-3],[8,5],[13,6],[12,9],[6,9],[12,12],[6,14],[5,15],[2,11],[4,7],[7,3],[5,2],[4,4],[5,-1],[11,-2],[3,0],[4,4],[12,13],[4,3]],[[53662,47001],[23,-4],[12,-6],[9,-10],[3,5],[5,13],[2,2],[9,0],[23,-1],[8,-5],[3,0],[5,5],[3,1],[22,-5],[46,8],[38,6],[10,-7],[7,-8],[4,-3],[33,5],[7,-1],[16,-13],[6,-1],[28,-1],[26,-1],[12,4],[18,-9],[9,-2],[35,14],[15,0],[11,1],[25,0],[25,1],[26,1],[25,1],[26,1],[25,1],[25,1],[26,1],[25,1],[25,0],[26,1],[25,1],[25,1],[26,1],[7,0],[18,1],[25,1],[17,0],[7,-3],[4,-6],[5,-7],[6,-7],[4,-1],[5,1],[9,5],[5,2],[5,0],[5,-3],[10,-9],[3,-2],[10,-11],[-1,-5],[-4,-9],[0,-4],[3,-8],[1,-6],[1,-5],[1,-38],[1,-6],[1,0],[3,3],[2,1],[2,-6],[-6,-15],[5,-1],[4,-5],[4,-14],[4,-4],[3,-2],[3,-4],[1,-8],[5,-12],[3,-9],[-1,-7],[-2,-8],[-1,-10],[1,-43],[0,-5],[1,-6],[1,-5],[-1,-6],[-1,-3],[-3,0],[-2,-2],[-1,-6],[-1,-23],[1,-2],[1,-5],[2,-3],[2,1],[2,-1],[0,-7],[-1,-8],[-3,-8],[0,-6],[6,-1],[-2,-8],[0,-7],[2,-5],[3,-6],[2,-7],[0,-5],[-3,-13],[-1,-10],[1,-10],[4,-20],[1,-10],[1,-22],[1,-10],[2,-10],[16,-46],[1,-8],[0,-9],[1,-8],[3,-6],[3,-2],[7,-2],[3,-1],[7,-10],[3,-15],[2,-34],[0,-2],[-1,-6],[0,-5],[2,-3],[4,-1],[1,-4],[1,-5],[2,-4],[2,-11],[-1,-9],[-2,-10],[0,-13],[-9,5],[-1,-15],[6,-38],[0,-32],[1,-5],[3,-4],[3,-7],[5,-14],[0,-9],[0,-9],[2,-7],[7,-5],[9,-14],[8,-8],[3,-5],[1,-9],[0,-7],[0,-14],[2,-8],[3,-6],[3,9],[1,1],[2,-3],[2,-2],[6,-4],[3,-2],[1,-5],[-2,-3],[-3,-3],[-3,-3],[-2,-7],[1,-6],[2,-4],[2,-3],[3,-5],[3,-14],[5,-28],[4,-13],[14,-14],[5,-9],[-1,-11],[2,-10],[-1,-14],[1,-9],[4,4],[1,-4],[0,-1],[0,-1],[-1,-2],[5,-4],[0,-6],[-2,-5],[-1,-6],[1,-7],[5,-10],[2,-5],[1,-3],[6,-2],[3,-3],[0,-6],[0,-7],[2,-5],[5,0],[0,-4],[-3,-6],[2,-1],[4,0],[2,-2],[1,-6],[0,-8],[1,-4],[4,2],[3,-7],[-1,-6],[-2,-5],[-2,-8],[1,-4],[3,-4],[6,-6],[-2,-5],[0,-1],[1,-2],[1,-4],[1,2],[1,3],[2,3],[2,-19],[2,-5],[2,-6],[6,-7],[3,-4],[1,-10],[-4,-17],[3,-9],[2,-5],[15,-8],[8,0],[24,17],[8,-1],[10,-7],[3,1],[17,20],[5,2],[9,-3],[8,-8],[14,-25],[8,-4],[25,1],[-2,15],[0,17],[3,13],[5,7],[4,2],[12,11],[4,2],[21,-2],[13,-1],[11,-8],[3,-1],[5,3],[6,7],[4,1],[17,1],[2,-1],[5,0],[-1,23],[1,11],[3,5],[20,0],[22,0],[20,0],[2,-3],[1,-17],[2,-7],[4,-14],[13,0],[35,0],[36,0],[35,0],[35,0],[8,0],[-6,46],[-1,15],[1,19],[4,27],[3,17],[5,37],[1,15],[0,15],[-2,15],[-3,16],[-3,16],[1,15],[19,-3],[6,2],[4,9],[2,24],[4,10],[1,1],[8,13],[0,19],[-7,39],[-3,20],[0,19],[3,96],[2,19],[4,11],[7,21],[2,9],[-1,7],[-5,23],[15,0],[11,0],[12,0],[12,0],[11,0],[12,0],[12,0],[11,0],[12,0],[12,0],[3,0],[8,0],[12,0],[12,0],[11,0],[12,0],[12,0],[11,0],[14,0],[0,9],[1,19],[1,9],[2,9],[3,3],[3,1],[15,1],[23,0],[24,0],[16,0],[-7,-36],[-7,-42],[-4,-24],[-6,-33],[-2,-27],[0,-28],[1,-29],[13,0],[20,0],[20,0],[20,0],[20,0],[21,0],[20,0],[20,1],[20,0],[20,0],[21,0],[20,0],[20,0],[20,0],[20,0],[21,0],[20,1],[9,0],[6,-1],[0,-2],[1,-3],[2,-1],[2,-3],[1,-4],[7,-29],[1,-3],[2,-6],[-1,-5],[-1,-4],[-1,-3],[2,-7],[2,-4],[1,-4],[1,-8],[0,-3],[-2,-6],[0,-3],[1,-3],[2,-6],[1,-3],[-1,-8],[-2,-12],[-1,-6],[0,-8],[0,-3],[1,-4],[1,-6],[0,-22],[-1,-4],[-4,-9],[-1,-4],[0,-11],[-2,-7],[-2,-12],[-3,-20],[-3,-22],[-3,-13],[-3,-19],[-1,-10],[-2,-26],[2,-15],[0,-7],[-1,-7],[-4,-11],[-1,-6],[1,-40],[1,-11],[3,-5],[9,-10],[2,-7],[0,-14],[2,-12],[3,-11],[7,-17],[2,-8],[1,-10],[0,-25],[3,-28],[3,-11],[8,-17],[2,-11],[-2,-2],[-2,-3],[-1,-7],[3,-15],[7,-23],[2,-25],[-1,-26],[-7,-46],[2,-1],[1,-1],[1,-1],[2,0],[-5,-19],[-3,-18],[-4,-44],[-2,-37],[-2,-4],[-3,-20],[-2,-14],[-3,-47],[1,-31],[-4,-68],[3,-60],[0,-24],[-3,-25],[-8,-37],[-2,-20],[-3,-12],[0,-8],[1,-6],[5,-12],[2,-6],[3,-25],[3,-51],[3,-25],[7,-23],[18,-39],[3,-23],[2,2],[5,3],[1,2],[1,-19],[3,-16],[16,-40],[3,-3],[2,1],[2,5],[3,-4],[4,-8],[11,-15],[4,-9],[2,-13],[2,-21],[6,-32],[2,-25],[2,-8],[-2,-19],[5,-27],[7,-26],[5,-28],[6,-25],[3,-17],[4,-11],[1,-7],[-1,-6],[-1,-12],[0,-6],[-2,-9],[-6,-21],[-2,-13],[1,-12],[2,-8],[4,-8],[3,-13],[1,-25],[-1,-11],[0,-13],[1,-21],[4,-15],[-1,-3],[-1,-2],[1,-23],[-1,-11],[-2,-5],[-6,-2],[-7,-4],[-11,-11],[-5,-7],[-7,-12],[-4,-13],[0,-10],[2,-9],[6,-42],[0,-22],[1,-3],[4,-6],[1,-3],[1,-10],[4,-18],[2,-11],[4,-52],[-1,-25],[-4,-24],[7,0],[5,7],[12,28],[4,6],[28,19],[8,15],[9,47],[10,3],[21,-18],[10,-8],[11,-7],[11,-2],[10,4],[6,7],[6,9],[6,6],[7,0],[5,-6],[11,-15],[5,-5],[11,-3],[12,0],[28,10],[23,8],[30,35],[19,22],[12,7],[11,1],[11,-2],[17,-10],[24,-13],[9,-2],[11,2],[10,-3],[12,-7],[11,-5],[9,8],[2,5],[2,13],[2,6],[3,5],[5,8],[3,5],[2,12],[2,14],[2,11],[5,6]],[[53631,47725],[-2,-17],[-10,-8],[-55,-27],[-8,-10],[-5,-11],[-3,-13],[-2,-13],[0,-14],[-3,-7],[-12,-15],[-5,-8],[-2,-12],[-1,-10],[-2,-7],[-6,-4],[-11,-2],[-3,-4],[0,-12],[-5,-23],[-10,-14],[-24,-17],[-2,0],[-2,0],[-2,-1],[-1,-6],[0,-5],[0,-6],[1,-6],[2,-3],[17,-13],[3,-5],[2,-20],[-1,-45],[-1,-51],[-1,-70],[-1,-74],[-1,-39],[-1,-55],[-20,1],[-26,0],[-23,-7],[-14,-16]],[[53391,47056],[0,1],[-13,48],[-4,38],[6,37],[3,7],[4,1],[3,1],[4,3],[2,6],[1,8],[0,19],[-1,7],[-4,21],[-5,21],[-7,40],[1,16],[-11,41],[-3,28],[-15,39],[-13,43],[0,7],[4,-2],[5,-2],[4,-3],[1,-3],[2,-14],[6,-3],[4,6],[3,10],[1,8],[2,3],[0,12],[-1,5],[-3,2],[-3,0],[-2,-6],[-1,-9],[1,-12],[-2,-3],[-2,2],[-1,11],[-2,7],[-2,1],[-2,-5],[-2,-1],[-4,4],[-4,-1],[-6,2]],[[53335,47497],[3,7],[31,56],[7,25],[9,61],[1,3],[3,0],[3,-4],[3,-6],[3,-14],[3,4],[4,4],[4,2],[9,2],[4,3],[3,7],[12,49],[1,13],[0,25],[2,8],[8,-2],[4,1],[19,13],[31,12],[4,4],[3,6],[6,24],[4,10],[5,8],[5,6],[3,9],[3,14],[3,14],[6,8],[4,-3],[2,-2],[5,-6],[4,-2],[4,2],[4,3],[3,1],[4,-5],[4,-12],[5,-29],[6,-13],[11,-18],[18,-47],[13,-13]],[[32489,61256],[-17,-22],[-1,2],[-2,3],[-1,3],[-6,-10],[-4,-2],[-5,0],[7,17],[2,3],[4,3],[7,2],[3,3],[5,12],[3,10],[5,8],[9,3],[6,2],[3,0],[0,-4],[-5,-19],[-2,-6],[-4,-4],[-7,-4]],[[32382,61485],[-1,-4],[0,5],[1,-1]],[[55573,75666],[6,-9],[14,-13],[4,-9],[8,-30],[2,-3],[3,-6],[2,-5],[0,-4],[-3,-7],[0,-4],[1,-4],[4,-6],[2,-3],[0,-5],[0,-8],[0,-4],[3,-10],[2,-4],[3,-1],[19,1],[5,-1],[34,-40],[5,-8],[2,-4],[5,-11],[11,-36],[3,-16],[0,-11],[0,-19],[2,-11],[9,-36],[1,-12],[1,-8],[0,-7],[-2,-11],[-3,-5],[-2,-2],[-1,-3],[-2,-7],[0,-5],[2,-7],[0,-4]],[[55713,75268],[-8,-7],[0,-10],[0,-3],[2,-15],[1,-9],[0,-4],[-2,-5],[-6,-10],[-3,-6],[-2,-8],[-1,-6],[2,-43],[2,-12],[5,-28],[1,-4],[0,-1],[-2,-6],[-2,-4],[-4,-4],[-4,-2],[-14,-5],[1,-8],[0,-16],[2,-9],[3,-2],[2,-4],[3,-9],[0,-2],[1,-4],[1,-10],[0,-3],[2,-3],[5,-1],[2,-2],[3,-8],[2,-6],[0,-1],[0,-8],[-2,-10],[-3,-8],[-3,-8],[-4,-3],[-4,2],[-1,-12],[0,-1],[1,-18],[5,-32],[3,-15],[11,-23],[4,-14],[1,-14],[0,-10],[2,-8],[6,-4],[2,-2],[4,-1],[3,1],[1,-1],[3,0],[3,-4],[2,-10],[6,-38],[5,-34],[4,-14],[4,-5],[3,-4],[7,-2],[5,3],[9,12],[5,2],[1,0],[14,-3],[14,-7],[5,-7],[2,-11],[0,-16]],[[55823,74661],[1,-28],[-2,-12],[-5,-10],[3,-3],[1,-5],[0,-4],[2,-5],[8,-12],[7,-15],[3,-8],[2,-10],[0,-12],[-1,-11],[-3,-20],[0,-7],[-1,-5],[0,-5],[-1,-6],[-2,-3],[-3,-2],[-2,-4],[-2,-6],[-4,-1],[-3,-4],[-2,-5],[1,-7],[-1,-4],[-1,-3],[-3,-6],[-7,-8],[-6,3],[-6,5],[-8,0],[-3,-4],[-2,-5],[-1,-6],[-2,-6],[-3,-2],[-5,-3],[-3,-4],[0,-5],[1,-17],[0,-6],[-1,-7],[-1,-5],[-3,-9],[-5,-18],[0,-3],[-3,-3],[-3,-3],[-3,-3],[-2,-6],[-1,-13],[1,-12],[-1,-12],[-3,-15],[-1,-2],[-4,-2],[-2,-3],[0,-3],[1,-7],[0,-3],[2,-11],[-1,-3],[-4,-19],[-1,-4],[-2,-2],[-7,-6],[-11,-8],[-6,-1],[-15,4],[-5,-3],[-5,-4],[-9,2],[-5,-4],[-4,-7],[-3,-9],[-2,-11],[-1,-10],[-5,-2],[-14,-1],[-3,-1],[1,-5],[4,-36],[2,-4],[6,-10],[13,-35],[1,-10],[-2,-12],[-5,-8],[-5,0],[-4,5],[-11,7],[-3,1],[-2,-2],[-2,-4],[1,-3],[1,-2],[1,-5],[0,-3],[-2,-7],[0,-2],[0,-2],[2,-4],[1,-2],[1,-5],[1,-3],[1,-3],[-1,-6],[-3,-8],[-6,-5],[-4,-6],[-1,-13],[-2,2],[-3,1],[-2,0],[-2,-1],[-2,-4],[-1,-4],[1,-5],[-1,-3],[-5,-2],[-6,5],[-7,11],[-13,11],[-11,6],[-10,5],[-4,-4]],[[55555,73977],[-1,-1],[0,-3],[-2,0],[-2,8],[1,10],[5,18],[-5,3],[-1,3],[4,15],[5,29],[1,7],[-2,13],[-3,3],[-5,1],[-6,3],[0,2],[0,2],[0,3],[-2,2],[-3,3],[-3,2],[-5,0],[-2,3],[0,4],[4,8],[3,4],[3,4],[-5,7],[-13,41],[-2,8],[-2,6],[-2,3],[-9,0],[-5,2],[-3,2],[3,4],[-8,8],[-1,-4],[0,-1],[-1,-3],[-1,5],[-1,3],[-2,2],[-2,2],[0,3],[-2,7],[-2,6],[-1,-2],[-3,5],[-18,10],[-16,15],[-9,13],[-15,8],[-9,12],[-27,48],[-3,8],[-1,5],[-4,27],[-2,7],[-10,16],[-3,7],[-1,3],[-1,1],[0,4],[7,7],[5,0],[4,-5],[10,-19],[2,-7],[4,-14],[2,-9],[0,-8],[3,-2],[6,2],[6,4],[2,5],[2,53],[-1,9],[-7,7],[-9,16],[-8,17],[-1,13],[1,-4],[1,-4],[1,-5],[2,1],[2,0],[6,-10],[3,3],[2,11],[1,14],[-4,12],[-7,6],[-7,-3],[-1,-17],[-2,10],[-20,46],[-1,5],[1,7],[4,6],[4,5],[4,6],[2,10],[1,9],[1,36],[1,9],[2,7],[5,2],[3,2],[-1,5],[-2,6],[-1,4],[2,4],[2,5],[1,4],[1,1],[-2,7],[-4,8],[-3,8],[3,3],[4,3],[5,13],[5,5],[-4,-7],[2,-14],[-2,-12],[0,-12],[2,0],[1,8],[0,-2],[0,-2],[1,-4],[3,8],[15,11],[5,9],[0,15],[-3,12],[-3,10],[-2,12],[-1,-15],[-4,-14],[-7,-18],[0,3],[-1,4],[3,4],[3,9],[2,11],[-1,12],[-1,3],[-5,3],[-1,2],[-2,7],[0,3],[1,3],[3,45],[-1,9],[-2,4],[-1,5],[0,4],[6,4],[1,7],[0,8],[0,7],[12,29],[2,11],[-1,12],[-3,11],[-4,7],[-5,3],[-6,0],[-5,1],[-3,6],[-2,11],[0,24],[-1,5],[-4,7],[-1,6],[4,-7],[6,0],[5,8],[-1,16],[6,5],[7,10],[6,12],[2,16],[-1,9],[-2,4],[-3,2],[-4,3],[-4,6],[-4,12],[-3,6],[24,-5],[8,4],[2,1],[6,20],[2,0],[0,-6],[1,-4],[2,0],[2,2],[-2,16],[-1,4],[-2,-4],[-2,5],[-8,12],[6,16],[-1,18],[-1,20],[0,11],[5,-3],[3,8],[0,12],[-2,11],[-2,0],[-33,22],[-4,4],[-6,4],[-18,-10]],[[55379,75255],[-1,6],[1,16],[-3,6],[-2,4],[-1,3],[0,2],[0,4],[1,3],[1,3],[0,4],[-2,14],[2,2],[2,1],[2,2],[1,10],[-2,4],[-2,9],[-1,11],[0,12],[1,10],[5,18],[0,5],[-1,2],[-4,8],[-16,18],[-4,8],[-3,10],[1,6],[8,14],[26,66],[1,3],[0,8],[0,4],[3,10],[1,3],[14,26],[4,10],[6,6],[4,8],[4,10],[3,11],[2,9],[3,4],[4,4],[4,6],[1,7],[2,16],[1,8],[5,12],[7,13],[3,5],[5,7],[6,4],[7,-5],[4,-13],[2,-15],[1,-6],[0,-5],[-1,0],[-1,-3],[-2,-7],[0,-4],[-1,-9],[0,-4],[1,-6],[5,-18],[9,-11],[5,-4],[5,-1],[3,1],[1,1],[11,10],[2,4],[7,8],[14,-1],[7,3],[10,21],[6,7],[7,-7]],[[55811,85949],[-3,-3],[-6,3],[-4,3],[-2,2],[-2,6],[3,5],[4,2],[3,0],[3,-4],[2,-7],[2,-7]],[[55832,85970],[-4,-1],[-4,0],[0,-1],[4,-3],[2,-6],[-2,-3],[-14,9],[-4,4],[-1,3],[0,1],[2,2],[4,3],[12,-4],[3,0],[2,-1],[0,-3]],[[55679,86000],[-13,-9],[-9,1],[-8,-1],[-4,-2],[0,-9],[-5,-5],[-6,3],[-1,11],[6,13],[10,12],[7,-1],[10,-5],[10,-3],[3,-5]],[[55717,86038],[1,-2],[0,-3],[1,0],[2,1],[2,-1],[1,-2],[0,-2],[1,-1],[2,0],[-1,-1],[-3,-1],[-1,0],[2,-2],[0,-4],[-1,-4],[-2,-4],[-3,-5],[-3,-1],[-7,8],[-1,-2],[-2,-4],[-4,-2],[-4,0],[-3,4],[1,7],[7,14],[4,5],[4,1],[3,-1],[2,2],[2,0]],[[55675,86017],[-8,-2],[-4,4],[4,8],[6,8],[7,6],[3,1],[-3,-16],[-5,-9]],[[55699,86028],[-5,-4],[-8,3],[-1,10],[6,2],[9,2],[1,0],[-3,1],[1,2],[4,2],[3,-1],[-2,-4],[-3,-5],[-1,-5],[-1,-3]],[[55583,86059],[8,-5],[9,1],[9,-14],[5,-17],[3,-13],[1,-5],[-4,-9],[-7,-8],[-3,-3],[2,12],[-3,4],[-6,-4],[-8,-2],[-5,4],[3,6],[2,6],[-5,7],[-7,0],[-6,7],[-9,2],[2,12],[10,6],[9,13]],[[55623,86073],[4,-7],[1,7],[-3,12],[1,4],[6,-2],[6,-12],[-4,-11],[-4,-11],[2,-11],[-3,-4],[-2,2],[-2,3],[-3,3],[-9,6],[-2,2],[-1,10],[2,10],[3,9],[2,8],[6,-18]],[[55744,86068],[-2,-1],[-5,4],[-5,9],[0,8],[2,3],[3,1],[1,-1],[3,-3],[3,-5],[1,-3],[1,-3],[0,-5],[-2,-4]],[[55752,86121],[-6,-3],[-5,3],[-2,3],[0,7],[2,6],[4,1],[6,-6],[3,-6],[-2,-5]],[[55463,86119],[1,-4],[0,-3],[1,-11],[-1,-5],[-3,-1],[-2,1],[-2,-1],[-4,6],[-6,13],[-5,5],[2,-10],[1,-9],[-1,-9],[-4,-8],[-6,-3],[-5,2],[-5,9],[-3,12],[-1,6],[0,2],[1,3],[4,3],[1,5],[0,6],[0,6],[0,6],[2,3],[5,7],[2,4],[3,3],[4,0],[4,-2],[6,-6],[1,-4],[2,-5],[0,-7],[1,-4],[5,-6],[2,-4]],[[55660,86162],[9,-6],[5,4],[2,-2],[1,-3],[0,-3],[1,-4],[-14,-29],[-3,1],[0,3],[1,4],[0,4],[1,3],[0,7],[-2,4],[-8,-7],[-2,5],[0,9],[4,8],[5,2]],[[55788,86149],[-4,-2],[-4,1],[2,-8],[-7,4],[-3,15],[2,13],[5,0],[2,-3],[9,-6],[2,-3],[-1,-7],[-3,-4]],[[55771,86196],[-10,-8],[-2,1],[-1,4],[0,2],[1,5],[0,3],[3,6],[0,2],[2,2],[1,3],[0,3],[2,1],[4,0],[3,-3],[1,-6],[-1,-5],[-1,-6],[-2,-4]],[[55532,86222],[3,-8],[12,3],[7,-3],[6,-6],[5,-8],[-2,12],[-1,4],[4,-1],[9,-5],[3,1],[3,2],[3,-3],[6,-10],[14,-6],[4,-6],[-3,-16],[5,2],[1,2],[4,-4],[6,-3],[11,-1],[-10,-20],[-1,-8],[-8,-4],[4,-9],[2,-3],[-3,-2],[-3,0],[-2,-1],[-3,-4],[-1,-4],[-3,-8],[-1,-2],[-3,-1],[-2,1],[-2,3],[-3,1],[-11,0],[-3,3],[1,9],[2,8],[1,6],[6,6],[14,1],[4,8],[-11,0],[-10,-4],[-8,-9],[-5,-20],[-2,0],[1,15],[-4,7],[-4,6],[-2,11],[3,10],[6,12],[1,10],[-10,2],[0,-4],[2,-7],[-2,-11],[-6,-5],[-8,7],[1,-11],[4,-11],[6,-10],[4,-5],[-2,-4],[-2,-5],[0,-5],[1,-6],[-15,7],[-4,6],[1,3],[1,2],[-1,7],[-7,-2],[-4,-2],[1,-6],[3,-7],[4,-6],[5,-4],[7,-4],[3,-4],[2,-4],[2,-2],[3,1],[2,3],[2,4],[2,4],[-3,-19],[-1,-9],[0,-8],[1,-2],[2,-2],[2,-2],[1,-5],[-2,-6],[-3,0],[-7,4],[-11,-1],[-5,-5],[1,-8],[1,-10],[-2,-3],[-3,1],[1,6],[-5,19],[-4,5],[-7,0],[-3,-2],[-1,-4],[-1,-3],[-2,-3],[-4,-1],[-4,1],[-2,2],[0,6],[-5,4],[-5,-2],[-4,-6],[-3,-8],[-4,17],[-10,26],[-5,14],[-2,18],[-1,7],[-3,3],[-1,5],[-6,24],[5,0],[5,-1],[2,-5],[-1,-10],[3,6],[1,7],[2,5],[3,2],[4,1],[10,7],[-2,3],[-1,3],[-3,6],[6,-2],[2,-2],[2,2],[1,0],[2,-2],[-4,-17],[-4,-13],[1,-5],[2,-4],[2,-5],[2,-15],[2,-4],[4,-2],[2,4],[1,7],[-1,8],[-1,6],[5,-3],[5,-6],[2,17],[6,8],[1,8],[0,12],[2,8],[2,-9],[0,-4],[0,-5],[2,-2],[3,0],[3,3],[2,3],[-1,10],[-2,9],[-3,6],[-4,5],[-2,4],[-1,3],[-1,0],[-2,-5],[-3,-10],[-3,-4],[-2,2],[-4,10],[-4,8],[-5,4],[-7,1],[4,3],[3,5],[2,6],[2,6],[6,7],[6,3],[6,0],[7,-2],[2,-8],[1,-11]],[[55857,86270],[-2,-2],[-4,4],[-2,7],[2,4],[3,4],[2,0],[1,0],[2,-3],[1,-7],[-3,-7]],[[50474,75640],[-3,-4],[-3,-3],[-3,0],[-4,2],[0,2],[-1,0],[-1,0],[-1,-2],[-3,-16],[-9,-6],[-17,-4],[-2,-2],[-1,-4],[-2,-3],[-3,-3],[-2,0],[-17,3],[-3,4],[0,7],[-9,20],[5,3],[2,1],[5,6],[-1,10],[-5,6],[-6,-1],[1,7],[5,12],[0,3],[-3,2],[1,6],[1,6],[2,3]],[[50397,75695],[6,4],[4,24],[9,-1],[8,5],[4,0],[15,-16],[3,-2],[32,-5],[-3,-12],[5,-5],[6,-3],[3,-5],[1,-3],[-7,-1],[-5,-7],[-3,-13],[-1,-15]],[[64961,64822],[7,-9],[1,-1],[10,-4],[2,-2],[6,-4],[3,-17],[-4,-14],[-9,-5],[-10,0],[-8,7],[1,5],[-2,8],[-4,2],[-3,-11],[2,-4],[-7,-10],[-9,-3],[-9,2],[-9,7],[-5,5],[-2,2],[-8,1],[-5,1],[-3,2],[0,5],[4,8],[3,4],[1,0],[7,5],[3,3],[5,9],[1,2],[2,3],[2,1],[3,2],[2,0],[5,-4],[2,-1],[1,2],[7,11],[8,6],[3,3],[2,7],[2,-8],[-1,-1],[-1,-3],[3,-10],[1,-2]],[[65055,64833],[-3,-16],[-2,11],[-6,5],[-7,4],[-6,7],[-3,15],[3,12],[6,5],[2,-2],[2,-4],[7,-15],[4,-8],[3,-14]],[[65068,64851],[-2,-2],[-3,0],[-2,2],[-5,11],[-3,5],[-3,2],[-1,4],[2,9],[2,6],[3,4],[4,3],[4,0],[2,-10],[3,-9],[6,-14],[-2,-5],[-2,-4],[-3,-2]],[[64613,64842],[-5,-9],[-3,8],[-3,9],[-4,15],[1,11],[4,11],[4,9],[7,8],[6,-4],[3,-9],[2,-16],[-1,-9],[-6,-15],[-5,-9]],[[65092,64898],[1,-8],[-3,-17],[-5,-4],[-7,26],[-1,4],[2,0],[3,-1],[3,-4],[1,-1],[0,3],[-1,3],[-4,6],[-1,6],[4,0],[6,-7],[2,-6]],[[64840,64878],[-11,-10],[-5,-7],[-6,-2],[-4,-5],[0,-7],[-3,-9],[-4,10],[-4,0],[-5,6],[-2,-9],[-11,3],[-4,1],[-6,-2],[-1,-1],[-1,0],[0,3],[0,4],[1,4],[1,4],[1,1],[10,-4],[3,1],[7,6],[1,3],[2,2],[9,7],[5,5],[3,0],[2,-10],[3,-3],[2,3],[1,6],[0,7],[-2,6],[10,30],[5,6],[1,-3],[1,-6],[0,-3],[7,-7],[-2,-23],[-4,-7]],[[65130,64935],[-4,-3],[-7,3],[-13,8],[-14,8],[0,10],[12,20],[4,11],[1,0],[-1,-12],[2,-11],[4,-7],[11,-11],[5,-10],[0,-6]],[[64534,64967],[-3,-2],[-4,4],[-1,3],[-2,2],[-2,3],[0,8],[3,7],[2,7],[3,3],[6,-8],[2,-14],[-4,-13]],[[65627,65438],[2,4],[2,0],[4,-6],[-1,-10],[-6,-3],[-1,15]],[[65632,65647],[6,-7],[7,-5],[4,-2],[3,-7],[6,-40],[-2,-54],[0,-6],[1,-16],[0,-5],[-2,-7],[0,-5],[3,-10],[1,-6],[1,-4],[1,-4],[0,-4],[0,-4],[0,-7],[-1,-12],[-1,-17],[-2,-26],[-1,-84],[-1,-6],[6,-47]],[[65661,65262],[-15,-3],[-1,-3],[-1,-3],[-1,-19],[-1,-11],[0,-4],[-1,-6],[-8,-11],[-2,-3],[-9,-17],[-5,-5],[-10,-2],[-4,-4],[-1,0],[-4,-22],[-6,-14],[-2,-11],[-2,-6],[-6,-3],[-5,0],[-1,0],[-4,1],[-8,13],[-9,41],[-10,18],[-2,9],[1,8],[5,3],[4,-2],[3,-4],[7,-9],[-1,12],[-2,27],[-4,17],[-7,9],[-1,1],[-11,3],[-11,-6],[-9,-11],[-2,-3],[-7,-14],[-9,-20],[-3,-19],[3,-45],[0,-11],[-2,-22],[1,-11],[1,-7],[4,-18],[1,-11],[-7,-14],[-2,-20],[-4,-8],[-3,-8],[1,-13],[3,-25],[-1,-32],[1,-9],[2,-4],[6,-7],[2,-6],[0,-5],[-1,-28],[-1,-9],[-11,-37],[-2,-11],[0,-9],[3,-3],[18,-7],[4,-1],[16,12],[8,-6],[5,-22],[3,-25],[10,-36],[-3,-9],[-17,-9],[-33,-26],[-5,1],[-7,11],[-5,-1],[-5,-4],[-4,0],[-9,3],[-9,1],[-8,-3],[-8,-6],[-8,-9],[-5,-6],[-12,-9],[-12,-4],[-1,-9],[2,-10],[5,-9],[10,-11],[5,-13],[1,-17],[1,-45],[-2,-8],[-12,-38],[-3,-10],[-9,-73],[-4,-12],[-10,-22],[-6,-15],[-3,-20],[-6,-59],[-6,-36],[-26,-92],[-9,-57],[-1,-17],[2,-87],[-3,-86]],[[65329,63915],[-18,-47],[-5,-2],[-38,10],[-38,10],[-39,10],[-39,10],[-38,11],[-39,10],[-38,10],[-39,10],[-39,10],[-38,10],[-39,10],[-38,10],[-39,11],[-39,10],[-38,10],[-39,10],[-39,10],[-44,12],[-7,4],[-6,10],[-15,37],[-14,37],[-15,37],[-14,37],[-14,36],[-15,37],[-14,37],[-15,37],[-14,36],[-15,37],[-14,37],[-15,36],[-14,37],[-15,37],[-14,37],[-15,36],[-14,37],[-16,40],[-4,14],[-2,16],[1,37],[0,16],[-2,23]],[[64324,64835],[6,16],[0,26],[-5,22],[6,12],[2,-10],[6,-17],[1,-12],[0,-34],[2,-21],[4,-5],[4,9],[3,26],[2,-7],[2,-18],[2,-6],[2,-2],[2,0],[3,1],[1,3],[0,3],[-1,1],[6,25],[5,8],[6,-17],[0,-13],[-3,-38],[1,-13],[3,-30],[1,-6],[-1,-20],[1,-6],[2,-12],[1,-6],[3,-11],[6,-3],[14,-1],[3,-2],[3,-3],[4,-9],[3,-3],[2,0],[1,3],[-2,4],[0,7],[6,1],[16,-1],[2,1],[1,-1],[4,-7],[9,-8],[2,0],[12,5],[4,-3],[3,3],[3,-3],[4,4],[5,1],[5,-1],[5,0],[5,4],[10,13],[5,1],[9,0],[4,2],[3,5],[3,7],[4,6],[4,3],[4,2],[6,4],[4,6],[2,6],[2,7],[8,7],[4,6],[4,8],[5,7],[5,5],[3,3],[3,4],[1,10],[0,11],[1,7],[6,6],[5,-4],[4,-8],[10,-26],[3,-3],[1,2],[1,3],[3,2],[6,0],[11,-7],[6,-2],[4,2],[6,5],[3,2],[3,0],[2,-2],[2,-1],[2,-1],[24,-5],[3,2],[9,7],[2,2],[0,3],[1,3],[1,0],[2,-2],[1,-2],[0,-3],[1,-1],[8,-13],[5,-5],[11,9],[6,-4],[5,-5],[5,2],[-4,4],[-1,6],[0,6],[-1,8],[6,3],[8,-7],[6,-10],[5,-10],[4,-13],[2,-3],[15,-1],[36,14],[2,0],[3,-3],[4,-9],[3,-4],[4,-2],[4,1],[3,3],[5,-7],[3,-4],[2,-1],[2,-2],[3,-11],[2,-3],[2,-1],[4,0],[3,1],[4,5],[3,-2],[3,-2],[2,-1],[9,8],[2,2],[2,3],[2,-1],[3,-3],[3,-1],[34,0],[7,1],[3,5],[17,18],[17,6],[6,6],[6,2],[7,6],[8,3],[3,2],[4,4],[5,8],[5,9],[2,9],[2,4],[19,11],[14,21],[3,1],[2,7],[5,0],[12,-9],[2,6],[10,16],[5,14],[11,43],[-1,15],[1,7],[4,4],[-3,3],[-1,1],[0,5],[5,-1],[6,-6],[4,-2],[-1,8],[-5,10],[-1,7],[4,-4],[5,-3],[4,-3],[2,-6],[2,0],[-1,15],[-5,5],[-8,1],[-7,3],[-16,21],[-7,3],[0,4],[4,2],[3,4],[3,6],[0,-3],[1,-5],[3,-4],[-1,6],[1,5],[3,9],[2,0],[2,-16],[6,-16],[7,-10],[6,2],[-1,2],[-5,6],[4,0],[6,-4],[2,0],[1,2],[2,8],[2,2],[10,41],[-4,4],[-3,5],[1,5],[5,2],[3,3],[1,8],[1,9],[6,4],[0,4],[-3,3],[-1,6],[-1,8],[-1,8],[1,4],[-2,2],[-2,5],[1,9],[3,6],[10,14],[2,4],[1,6],[2,3],[8,-8],[1,-1],[4,2],[4,5],[1,8],[-4,10],[31,34],[13,19],[9,15],[5,8],[7,4],[1,0],[1,1],[1,1],[1,0],[1,2],[1,1],[1,0],[0,1],[1,1],[8,9],[-1,12],[9,4],[1,-2],[21,47],[28,71],[2,9],[-1,8],[6,9],[4,-1],[4,-11],[2,-9],[-2,-7],[-3,-11],[7,4],[2,11],[-2,13],[-6,20],[-1,5],[2,5],[8,17],[3,2],[4,0],[-1,7],[0,7],[2,6],[3,4],[3,-4],[5,9],[9,23],[2,0],[1,-7],[2,0],[1,4],[1,8],[2,-5],[4,22],[3,10],[3,5],[-4,4],[2,7],[4,9],[2,10],[1,10],[3,12],[4,10],[5,3],[-2,-9],[-3,-8],[-2,-8],[1,-7],[5,-4],[5,2],[6,4],[6,2],[2,4],[4,23],[3,9],[7,15],[4,7],[10,7],[7,20],[3,4],[3,1],[3,2],[3,3],[2,4],[1,1],[8,5],[10,15],[15,37],[8,13],[-2,-6],[-2,-12],[-3,-10],[2,-4],[2,-1],[1,2],[0,9],[3,17],[0,11],[2,5],[12,22],[2,6],[2,7],[2,8],[1,11],[-2,0],[-1,-6],[-1,-4],[-2,-4],[-3,-2],[7,24],[6,25],[5,37],[1,5]],[[65576,65903],[7,1],[14,8],[3,-1],[4,-23],[2,-12],[-1,-11],[-2,-18],[-1,-53],[-2,-8],[-5,-15],[-1,-9],[1,-10],[6,-16],[2,-8],[-2,-8],[-4,-5],[-3,-6],[0,-10],[1,-27],[2,-7],[1,-2],[7,-2],[2,-4],[3,-12],[2,-4],[4,-2],[5,1],[11,7]],[[65612,65412],[1,-6],[3,-3],[4,-3],[5,4],[8,11],[3,6],[7,4],[8,8],[1,16],[-11,4],[-5,16],[-9,2],[-7,-11],[0,-10],[1,-5],[2,-5],[-3,-7],[-7,-7],[-1,-14]],[[30932,18017],[3,-4],[7,-16],[2,-5],[6,-8],[2,-5],[1,-9],[-5,-4],[-19,-1]],[[30929,17965],[3,20],[0,32]],[[32127,18066],[5,-4],[5,4],[1,-3],[2,-1],[1,0],[2,0],[3,-3],[9,4],[5,-1],[3,-4],[4,-6],[3,-4],[3,0],[2,5],[-1,6],[-1,5],[5,2],[2,-1],[4,-6],[3,-1],[2,1],[2,4],[2,3],[3,0],[2,-3],[3,-13],[3,-4],[3,1],[8,9],[31,10],[9,-4],[-2,-4],[6,-2],[6,6],[5,5],[4,-9],[-6,-6],[-2,-4],[-2,-4],[-4,-13],[-2,-4],[-4,-1],[-5,-1],[-4,-3],[-14,-15],[-3,0],[-4,3],[2,5],[5,13],[1,4],[-1,8],[-3,2],[-5,-4],[-3,-6],[-4,-5],[-4,-2],[-10,1],[-2,1],[-1,0],[-3,-1],[-2,-3],[0,-3],[-1,-4],[-1,-2],[-6,-5],[-26,-6],[-2,-6],[-4,-3],[-4,1],[-3,7],[0,6],[1,8],[4,14],[-5,0],[-2,-2],[-2,-2],[-4,4],[-4,0],[-6,-8],[-15,-12],[-3,-4],[-5,-9],[-3,-4],[-5,-2],[-5,-2],[-9,0],[0,2],[1,2],[1,2],[1,2],[0,5],[-3,0],[-3,-2],[-3,-3],[-2,-4],[1,0],[3,-4],[-4,-4],[-13,-8],[-3,-5],[-4,-11],[-3,-4],[-5,-2],[-14,0],[-4,2],[-1,5],[1,4],[4,5],[2,6],[-25,20],[2,11],[6,7],[6,6],[3,7],[4,6],[9,-4],[13,-13],[6,2],[17,8],[5,7],[-16,19],[-2,9],[7,4],[2,-2],[7,-14],[4,-4],[9,-4],[3,1],[5,6],[3,1],[2,0],[3,0],[2,-3],[1,-8],[0,-8],[1,-4],[2,-1],[3,1],[1,3],[-1,3],[0,4],[0,10],[-1,8],[1,8],[3,9],[2,-1],[4,-5]],[[30933,18026],[0,159],[0,159],[1,159],[0,158],[1,159],[0,159],[1,158],[0,159]],[[30936,19296],[10,-9],[2,-5],[6,-19],[2,-6],[18,-34],[18,-43],[5,-8],[19,-22],[8,-16],[7,-18],[6,-22],[10,-63],[1,-9],[-1,-10],[-3,6],[-3,13],[-8,42],[-7,5],[-5,0],[-7,-5],[-9,-9],[-8,-10],[-14,-23],[-17,-20],[-9,-28],[-3,-20],[4,-22],[11,-18],[16,-17],[12,-1],[12,-6],[20,-6],[29,4],[22,-18],[5,-19],[5,-12],[-2,-20],[1,-5],[3,-11],[3,-28],[3,-12],[15,-38],[2,-8],[53,-74],[19,-20],[6,-9],[2,-9],[-3,-8],[7,1],[6,1],[9,-7],[20,-14],[2,-7],[-8,-2],[-3,-11],[2,-14],[3,-8],[76,-87],[43,-41],[32,-19],[18,-16],[5,-10],[10,-8],[39,-22],[18,-23],[14,-34],[27,-34],[8,-15],[10,-7],[2,-15],[10,-4],[8,-2],[12,-5],[24,-21],[96,-59],[4,-2],[7,-1],[4,-1],[10,-11],[3,-1],[21,-2],[19,-7],[67,13],[14,-3],[8,0],[19,11],[43,-8],[4,-4],[-3,-8],[-5,-9],[-5,-4],[-2,-5],[-8,-31],[1,-3],[2,-7],[1,-3],[-10,-11],[-2,-4],[1,-6],[1,-6],[1,-6],[-7,-4],[-8,-11],[-3,-4],[-7,-36],[-4,-5],[-4,-3],[-3,-1],[-6,2],[-1,5],[0,6],[-1,8],[-8,6],[-9,-1],[-7,-6],[3,-11],[-7,-11],[-22,2],[-10,-3],[-2,-5],[-1,-6],[-2,-6],[-4,-4],[-6,-1],[-4,1],[-4,5],[-3,7],[0,3],[0,9],[0,5],[-1,3],[-2,4],[-3,1],[-5,0],[-6,1],[-11,-6],[-19,9],[-6,-7],[-18,6],[-6,-5],[4,-9],[6,-9],[-5,-10],[-7,-9],[-19,-7],[-15,-6],[-22,1],[-34,-1],[-15,-6],[1,-10],[-1,-9],[-15,-6],[-7,-3],[-25,1],[-25,11],[-8,7],[-6,8],[-4,9],[-5,6],[-25,23],[-7,4],[-32,4],[-24,14],[-84,8],[-58,10],[-35,-3],[-73,10],[-41,10],[-13,13],[-26,3],[-15,12],[-8,4],[-4,-5],[1,-14],[-1,-5],[-3,-6],[-54,-6],[-7,3],[-5,5],[-8,17],[-12,16],[-1,0]],[[32767,26494],[-8,-16],[-5,-19],[-7,-12],[-7,0],[-7,4],[1,18],[-3,10],[-7,-7],[-8,0],[-4,7],[4,11],[6,17],[2,23],[5,29],[5,0],[8,-1],[9,0],[8,-13],[5,-17],[6,-16],[-3,-18]],[[32773,26587],[-1,-9],[-3,12],[-3,15],[-7,14],[-12,32],[-7,23],[4,30],[6,0],[8,-4],[8,-6],[7,-17],[-1,-25],[0,-33],[1,-32]],[[32800,27283],[1,0],[2,3],[0,6],[1,3],[3,-5],[4,-12],[5,-29],[1,-9],[-3,-8],[-6,-1],[-6,4],[-4,5],[-4,8],[-18,10],[-6,7],[-5,8],[-11,27],[-4,12],[0,9],[6,2],[10,-9],[28,-10],[5,-16],[1,-5]],[[32777,27365],[8,-12],[2,-8],[-3,-6],[-4,-4],[-5,0],[-6,4],[-15,20],[-4,-6],[-6,1],[-3,7],[3,11],[22,-2],[11,-5]],[[32597,37302],[3,-1],[2,-3],[2,-3],[1,-5],[-2,0],[2,-8],[-1,-6],[-2,-5],[0,-5],[2,-6],[3,-3],[4,-3],[3,0],[7,-4],[4,-8],[7,-17],[4,-3],[11,-7],[2,-4],[2,-9],[5,-10],[19,-26],[6,-4],[2,-1],[10,-2],[3,-2],[2,-3],[0,-2],[1,-3],[0,-7],[0,-4],[2,-1],[2,0],[1,-1],[6,-14],[3,-10],[-2,-10],[-4,-11],[0,-8],[4,-6],[7,-6],[3,-1],[2,0],[1,-1],[1,-6],[-2,-13],[0,-8],[6,-7],[-4,-14],[1,-3],[4,-2],[2,-5],[1,-7],[2,-6],[7,-16],[1,-5],[1,-5],[1,-5],[2,-2],[0,-2],[3,-4],[3,-4],[1,0],[1,-7],[3,-7],[5,-12],[4,-12],[6,-22],[3,-9],[0,-5],[-1,-14],[1,-3],[0,-3],[4,-11],[10,-22],[31,-37],[2,-4],[6,-18],[3,-6],[7,-7],[3,-5],[3,-7],[1,-6],[1,-7],[0,-11],[1,-10],[4,-5],[4,-4],[4,-5],[4,-10],[2,-3],[4,-2],[13,0],[4,-4],[14,-29],[3,-2],[3,-1],[5,-1],[-1,-4],[-2,-7],[0,-6],[4,-6],[3,-14],[3,-3],[6,-1],[5,-1],[4,-4],[4,-6],[4,-6],[2,-4],[4,-2],[7,-1],[18,-15],[2,-8],[2,-9],[3,-8],[5,-4],[3,-2],[5,-11],[3,-3],[2,0],[5,0],[2,0],[4,-6],[3,-8],[4,-7],[5,-4],[4,-5],[1,-12],[-1,-13],[-3,-10],[3,-5],[5,-16],[7,-8],[4,-11],[4,-13],[0,-8],[2,-3],[4,-13],[2,-5],[9,-11],[11,6],[10,-10],[9,-15],[8,-10],[6,-1],[8,0],[16,1],[3,-1],[6,-10],[2,-1],[13,1],[3,-1],[3,-2],[5,-5],[3,-1],[0,-4],[5,-18],[1,-2],[10,0],[5,-5],[9,-13],[17,-7],[10,1],[3,-1],[3,-3],[5,-10],[3,-3],[3,-1],[9,1],[21,-7],[21,2],[7,3],[13,9],[6,1],[5,-3],[100,-129],[10,-21],[5,-13],[2,-4],[3,-2],[7,-2],[5,-5],[5,-2],[2,-3],[3,-7],[3,-4],[6,-8],[6,-5],[2,-3],[1,-4],[1,-5],[1,-5],[6,-6],[11,-18],[3,-6],[5,-21],[5,-11],[9,-7],[4,-8],[2,-2],[5,-1],[2,-3],[1,-4],[3,-5],[11,-7],[8,-11],[7,-5],[10,-13],[6,-4],[5,0],[2,-1],[2,-3],[6,-11],[3,-4],[9,-4],[53,-78],[6,-3],[14,-1],[4,-2],[2,-3],[2,-2],[2,-3],[0,-5],[2,-2],[61,-24],[6,-6],[4,-6],[6,-18],[18,-39],[2,-6],[1,-5],[1,-3],[4,-2],[3,1],[3,4],[4,4],[8,16],[4,7],[5,0],[25,-33],[3,-9],[4,0],[19,-19],[3,0],[6,1],[2,-1],[2,-5],[1,-7],[2,-6],[4,-2],[22,0],[5,-4],[4,-7],[13,-28],[4,-6],[9,-8],[3,-8],[9,-38],[5,-15],[9,-11],[0,-1],[8,-41],[0,-7],[18,-26],[3,-9],[2,-7],[1,-10],[-4,-51],[-1,-11],[-4,-7],[-4,-1],[-3,-5],[-1,-13],[-2,-4],[-4,0],[-8,2],[-1,-3],[-1,-13],[-1,-5],[-3,-3],[-3,-1],[-3,1],[-3,-1],[-6,-5],[-3,-6],[-6,-17],[2,-5],[2,-4],[3,-2],[3,-1],[-3,-8],[-5,-9],[-5,-8],[-5,-4],[-5,-5],[1,-11],[5,-20],[-3,-8],[-2,-3],[-4,-5],[-6,-6],[-6,-5],[-1,-4],[1,-4],[7,-4],[0,-7],[-2,-6],[-1,-5],[-10,-15],[-2,-9],[13,-8],[0,-8],[-4,-9],[-32,-46],[-9,-11],[-18,-12],[-3,-6],[-3,-20],[-2,-12],[-3,-6],[-1,4],[-1,3],[-3,3],[-2,2],[0,-11],[3,-6],[5,-4],[4,-6],[0,-8],[-5,-7],[-6,-5],[-4,-2],[-3,-4],[0,-10],[2,-19],[-1,-9],[-1,-9],[-10,-31],[-2,-10],[1,-7],[7,-12],[-1,-7],[-4,-5],[-1,-5],[0,-10],[-2,-9],[-1,-9],[1,-10],[2,-4],[6,-9],[2,-4],[2,-8],[2,-4],[-2,-3],[-5,-7],[-1,-2],[0,-7],[2,-5],[1,-5],[1,-5],[-2,-4],[-3,0],[-9,3],[-1,2],[-1,-1],[-1,-6],[-2,-12],[0,-46],[-1,-3],[-2,-1],[-4,0],[-4,-2],[0,-6],[2,-7],[1,-5],[-4,-7],[-4,1],[-5,3],[-5,-3],[-3,-13],[3,-8],[5,-7],[2,-11],[-4,-6],[-13,-2],[-2,-5],[-3,-8],[-6,-4],[-12,-7],[-5,-5],[-2,-8],[1,-8],[4,-7],[-2,-8],[-5,-12],[-3,-8],[-1,-5],[0,-4],[0,-10],[-2,-3],[-2,1],[-2,3],[0,1],[0,3],[-1,4],[-1,2],[-3,-2],[-2,-5],[-1,-4],[-1,-5],[-1,-5],[0,-10],[1,-10],[-2,-6],[-14,-4],[-6,-8],[-4,-12],[-1,-17],[1,-7],[4,-8],[7,-9],[3,-12],[1,-12],[-1,-29],[1,2],[25,20],[75,13],[31,-8],[4,1],[17,5],[8,0],[6,-2],[16,-7],[9,-7],[3,-1],[13,-5],[12,-8],[28,-11],[3,-3],[46,-43],[4,-3],[2,-1],[7,-2],[28,8],[7,0],[1,-1],[6,-3],[3,-3],[4,-8],[2,-4],[3,-3],[3,-1],[12,-7],[3,-3],[8,-12],[2,-3],[3,-2],[7,0],[2,-1],[11,-1],[9,4],[28,29],[10,8],[10,2],[10,-8],[17,-32],[10,-12],[10,4],[14,21],[13,7],[7,4],[18,-6],[11,-26],[6,-16],[7,-16],[8,-13],[9,-7],[9,4],[5,14],[4,19],[5,15],[6,11],[3,12],[1,13],[-1,16],[1,13],[7,7],[8,4],[6,5],[10,23],[5,7],[8,8],[7,-1],[6,-3],[1,0],[18,-14],[6,-2],[6,0],[1,1],[7,1],[6,1],[6,-4],[4,-12],[4,-22],[3,-6],[3,-3],[7,-4],[17,-18],[11,16],[10,22],[7,12],[7,2],[6,6],[5,10],[2,14],[1,8],[-1,5],[0,4],[3,12],[1,6],[-1,7],[-1,6],[-7,25],[1,9],[7,3],[5,5],[1,10],[1,13],[4,9],[5,1],[8,-1],[7,1],[3,9],[0,28],[2,12],[3,11],[5,10],[5,6],[5,3],[13,3],[14,15],[7,0],[6,-5],[5,-5],[4,-3],[11,-1],[6,2],[5,7],[1,13],[-4,24],[2,10],[18,34],[6,4],[13,2],[5,5],[4,9],[2,8],[2,11],[4,27],[3,12],[5,8],[6,4],[13,0],[2,-3],[1,-3],[2,-1],[2,3],[4,9],[3,13],[1,15],[0,13],[-1,11],[-1,9],[-1,8],[3,11],[4,9],[8,13],[8,18],[3,9],[1,9],[3,36],[1,4],[0,3],[4,18],[0,27],[0,12],[0,3],[0,1],[2,8],[4,9],[1,6],[-1,8],[-5,12],[-1,9],[6,38],[0,13],[-3,19],[-1,18],[-1,6],[0,6],[1,6],[3,2],[6,1],[3,2],[2,9],[0,11],[-2,26],[1,10],[3,9],[3,11],[0,13],[-1,7],[-7,15],[-1,8],[-1,12],[-5,31],[0,16],[3,5],[9,-1],[5,5],[-1,12],[-5,19],[1,11]],[[34833,35324],[11,3],[4,-3],[2,-7],[0,-9],[2,-5],[6,2],[5,-4],[5,-7],[4,-10],[1,-12],[0,-6],[1,-6],[1,-4],[3,2],[1,6],[-1,12],[0,6],[2,5],[5,6],[2,4],[1,6],[0,6],[0,6],[2,5],[2,3],[3,-1],[5,-4],[3,1],[4,13],[3,4],[7,1],[4,-2],[3,-8],[3,-12],[2,-5],[1,3],[2,9],[2,1],[2,0],[5,-3],[6,0],[-1,11],[-6,19],[2,2],[3,-1],[5,-4],[4,1],[3,3],[7,17],[2,2],[1,1],[2,0],[1,-3],[-1,-11],[-3,-10],[-1,-10],[0,-11],[2,-6],[2,-5],[3,-4],[3,0],[1,4],[0,6],[-1,7],[0,5],[2,6],[3,-4],[4,-9],[4,2],[1,2],[2,1],[4,-1],[5,-6],[4,-9],[2,-10],[0,-12],[3,-16],[5,2],[11,13],[3,-6],[3,-13],[3,-22],[-1,-5],[-1,-4],[-1,-6],[1,-7],[2,-7],[5,-10],[2,-5],[3,-11],[1,-11],[-1,-35],[3,-31],[0,-6],[-1,-6],[-1,-5],[1,-8],[2,-6],[9,-16],[8,-17],[3,-18],[2,-19],[4,-21],[13,-36],[5,-19],[2,-24],[-4,-19],[-11,-32],[-3,-18],[3,-55],[0,-18],[-4,-7],[-2,-4],[0,-4],[0,-6],[1,-6],[1,-4],[1,2],[-1,-10],[-4,-21],[0,-11],[1,-22],[0,-11],[-2,-11],[-2,-3],[-3,-1],[-2,-2],[-1,-6],[2,-7],[2,-4],[2,-2],[2,-2],[0,-6],[-2,-8],[0,-6],[1,-1],[4,0],[1,-1],[3,-22],[3,-35],[0,-19],[-4,-21],[-12,-49],[-1,-4],[-2,-2],[-5,-1],[-1,-2],[-1,-8],[0,-17],[0,-8],[-2,-4],[-4,-5],[-1,-3],[0,-4],[3,-6],[0,-5],[-3,-10],[-3,-4],[-2,4],[-3,9],[-3,9],[-4,4],[-2,-4],[-2,-19],[-3,-6],[-5,2],[-3,6],[-4,4],[-3,-3],[-1,-8],[1,-8],[0,-6],[-5,-3],[-2,1],[-1,2],[-2,2],[-2,-1],[-1,-3],[-2,-11],[-21,-43],[-10,-2],[-8,5],[0,13],[-2,4],[-4,5],[-3,-11],[-8,-40],[-1,-5],[-2,-3],[-1,-5],[1,-12],[-1,-5],[-2,-2],[-3,-1],[-3,-2],[-1,-6],[-1,-5],[-2,-6],[-2,-4],[-1,-3],[-6,0],[-4,5],[-3,8],[-4,7],[1,-19],[-1,-5],[-2,-6],[-2,-5],[-3,0],[-1,5],[-1,14],[-2,6],[-5,3],[-11,-1],[-4,-2],[-1,-7],[4,-13],[0,-8],[-6,-7],[-18,-10],[-2,0],[-3,3],[-1,3],[-3,11],[-1,2],[-2,1],[-2,1],[-1,0],[-3,-4],[-1,-5],[-2,-7],[-1,-10],[-3,-11],[-4,-7],[-3,0],[-2,11],[-1,3],[-1,-1],[-2,-3],[-1,-6],[0,-9],[0,-4],[-2,-3],[-2,-3],[-3,-1],[-6,2],[-3,-1],[-11,-7],[-2,1],[0,1],[-2,4],[-1,1],[-1,2],[1,3],[1,3],[0,2],[-1,7],[-4,-2],[-4,-6],[-2,-5],[-2,-12],[-1,-15],[-2,-12],[-6,-6],[-7,0],[-2,-1],[1,-23],[-2,-25],[-1,-14],[-2,-6],[-6,-4],[-14,-24],[-7,-2],[-5,3],[-5,5],[-5,2],[-5,-4],[3,-10],[9,-14],[4,-13],[-1,-6],[-5,0],[-6,7],[-3,-3],[-6,0],[-2,-2],[-1,-3],[-2,-17],[-6,3],[-6,11],[-4,2],[-6,-4],[-4,-10],[-3,-9],[-10,-16],[-3,-1],[-3,1],[-6,4],[-3,-1],[-5,-8],[-1,-11],[-1,-10],[-6,-4],[-3,0],[-2,-1],[-1,-3],[0,-6],[0,-13],[-1,-3],[-1,-6],[-13,-27],[-2,-5],[-6,-4],[-3,0],[-2,1],[-1,4],[-2,2],[-4,-3],[-1,-3],[-3,-14],[-1,-2],[-4,-5],[-1,-3],[-1,-5],[-1,-4],[-1,-4],[-3,-1],[-3,2],[-1,5],[0,5],[-1,4],[-6,2],[-3,-7],[-2,-9],[0,-1],[-3,-5],[-2,-3],[-12,-22],[-18,-11],[-7,-10],[2,-15],[3,-5],[11,-9],[4,-2],[4,-3],[3,-7],[4,-15],[-4,-28],[-2,-8],[-3,-7],[-3,-5],[-3,2],[-1,12],[-4,11],[-10,5],[-12,2],[-8,5],[-13,-11],[-5,-8],[2,-12],[1,-5],[0,-28],[-1,-4],[-1,-3],[-2,-3],[-2,-2],[-9,-2],[-8,-7],[-9,-4],[-3,-9],[0,-10],[0,-11],[0,-23],[-5,-14],[-18,-23],[-22,-57],[-10,-12],[-13,-5],[-5,-4],[-3,-10],[-2,-50],[-6,-21],[-19,-21],[-5,-23],[0,-24],[-1,-12],[-4,-11],[-4,-5],[-19,-9],[-10,-10],[-10,-13],[-9,-17],[-8,-21],[-2,-7],[-1,-9],[0,-8],[1,-8],[-2,-12],[-5,-25],[-3,-10],[-5,-8],[-3,-5],[-10,-9],[-3,-3],[-2,-4],[-1,-4],[-2,-6],[0,-6],[0,-6],[-1,-6],[-4,-5],[-2,-6],[-2,-7],[0,-6],[-1,-5],[-22,-36],[-2,-8],[-2,-5],[-11,-17],[-4,-8],[-4,-21],[-8,-16],[-1,-6],[-2,-6],[-21,-41],[-5,-8],[-6,-4],[-12,0],[-12,-3],[-12,-9],[-8,-13],[-4,-20],[-3,-69],[-2,-10],[-24,-34],[-26,-62],[-12,-15],[-6,-4],[-12,-4]],[[33996,32595],[-6,0],[-2,-6],[1,-13],[4,-26],[-2,-23],[-6,-19],[-55,-92],[-7,-18],[-4,-21],[1,-23],[7,-23],[4,-11],[6,-25],[2,-13],[3,-21],[2,-16],[0,-10],[1,-15],[0,-25],[0,-6],[-1,-14],[-2,-9],[-3,-3],[-7,2],[-12,-6],[-5,-6],[-2,-11],[2,-7],[12,-31],[2,-28],[-5,-20],[-7,-20],[-4,-26],[2,-26],[0,-16],[-3,-6],[-6,-23],[-2,-4],[-4,-6],[-2,-4],[-3,-12],[-1,-27],[-3,-11],[-4,-7],[-11,-12],[-5,-8],[-3,-18],[6,-16],[4,-4],[7,-10],[7,-17],[2,-27],[-2,-26],[-17,-91],[-3,-9],[-7,-4],[-13,-5],[-6,-5],[-4,-6],[-8,-16],[-2,-12],[4,-12],[8,-18],[3,-19],[1,-25],[-1,-26],[-3,-23],[-6,-19],[-1,-12],[3,-12],[19,-46],[3,-18],[-2,-18],[-17,-46],[-7,-26],[-3,-7],[0,-1]],[[33833,31254],[0,2],[-6,-27],[0,-27],[3,-72],[5,-41],[4,-61],[2,-12],[8,-21],[1,-9],[-1,-12],[-4,-22],[-1,-13],[3,-27],[1,-15],[-3,-7],[-10,-16],[-3,-2],[-7,-2],[-4,0],[-39,12],[-10,-8],[-1,-3],[-2,-5],[0,-5],[5,-5],[0,-4],[-1,-6],[-1,-6],[-1,-13],[-2,-27],[-1,-11],[5,-26],[1,-13],[-3,-6],[-5,-5],[-5,-11],[-8,-20],[-5,-22],[-4,-25],[-3,-27],[-1,-24],[2,-26],[-1,-6],[-3,-12],[-2,-44],[0,-13],[2,-24],[5,-19],[15,-38],[2,-10],[2,-12],[1,-27],[4,-33],[-1,-6],[-2,-6],[0,-4],[0,-2],[3,-2],[3,-1],[7,-6],[2,-3],[2,-9],[1,-12],[0,-26],[-2,-19],[0,-7],[0,-3],[3,-11],[0,-6],[-9,-18],[-1,-4],[-2,-9],[-1,-4],[-4,-8],[-5,-7],[-6,-3],[-5,4],[-2,1],[-10,1],[-2,-3],[-1,-4],[-2,-4],[-3,-1],[16,-17],[5,-7],[8,-12],[3,-10],[-5,-19],[-3,-6],[-3,-6],[-5,-11],[1,-8],[2,-8],[7,-12],[1,-5],[0,-12],[0,-6],[6,-7],[5,-5],[6,-7],[9,-11],[5,-8],[5,-13],[3,-14],[5,-15],[22,-26],[13,-20],[10,-9],[10,-2],[6,-2],[9,-9],[9,-4],[8,-5],[10,-22],[8,-5],[15,3],[3,-1],[6,-11],[12,-14],[14,-22],[20,-15],[23,-32],[22,-15],[10,-18],[11,-16],[27,-47],[10,-23],[12,-24],[6,-11],[13,-37],[11,-36],[8,-27],[2,-14],[-5,-26],[-10,-22],[-12,-28],[-28,-75],[-8,-19],[-3,-21],[-2,-16],[-3,-24],[-3,-19],[3,-22],[3,-23],[0,-17],[0,-5],[2,-7],[5,-8],[1,-6],[0,-1],[8,-33],[0,-13],[2,-5],[4,-5],[6,-9],[1,-3],[1,-13],[4,-12],[39,-66],[29,-31],[12,-4],[7,-6],[2,-7],[-5,-9],[2,-4],[5,9],[6,6],[12,9],[6,2],[19,-2],[-3,14],[1,8],[3,2],[6,-8],[2,-7],[3,-24],[2,-5],[5,-11],[0,-74],[6,-32],[1,-15],[1,-80],[1,-68],[-1,-26],[-5,-19],[-28,-66],[-28,-73],[-36,-110],[-10,-39],[-31,-72],[-9,-19],[-31,-47],[-11,-31],[-3,-5],[-4,-4],[-23,-48],[-8,-22],[-7,-24],[-5,-24],[-2,-25],[-1,-26],[0,-4],[3,-6],[0,-4],[0,-4],[-1,-6],[0,-2],[0,-17],[0,-7],[-7,-22],[-10,-19],[-25,-31],[-29,-28],[-20,-25],[-44,-43],[-9,-3],[-4,-3],[-14,-21],[-11,-10],[-33,-23],[-10,-11],[-5,-3],[-25,-7],[-21,-12],[-20,-20],[-45,-18],[-59,-34],[-15,-18],[-9,-3],[-10,-7],[-79,-27],[-79,-27],[-46,-32],[-6,-1],[-19,1],[-127,-40],[-44,-13],[-43,-9],[-57,-19],[-32,0],[-7,4],[-3,0],[-4,-1],[-2,-2],[-4,-5],[-26,-11],[-54,11],[-25,0],[-18,-10],[-3,-4],[-4,-4],[-43,11],[-4,5],[-5,3],[-3,6],[-2,1],[-2,0],[-2,-1],[-1,-2],[-2,-1],[-11,-4],[-14,1],[-52,25],[-10,9],[-8,12],[-6,18],[-5,21],[-3,11],[-4,5],[-45,5],[-5,5],[-6,3],[-6,-6],[-3,-10],[3,-6],[-2,-12],[5,-22],[-1,-10],[3,5],[4,1],[3,-5],[1,-7],[0,-23],[0,-4],[3,-3],[4,0],[9,3],[0,-3],[-2,-7],[-1,-10],[1,-8],[-7,-6],[-3,-6],[-4,-21],[-3,-12],[-1,-6],[-2,-4],[-1,-4],[2,-5],[2,-5],[1,-5],[0,-10],[-1,-10],[-1,-9],[2,-11],[5,-9],[13,-16],[5,-11],[-4,0],[-4,2],[-7,6],[-4,-8],[3,-6],[6,-4],[6,-3],[22,-1],[7,-3],[22,-18],[12,-14],[6,-16],[0,-7],[-1,-7],[-2,-6],[-3,-5],[-3,-2],[-3,1],[-1,3],[-2,2],[-6,5],[-16,24],[-5,12],[-1,3],[-2,7],[-1,2],[-2,2],[-1,0],[-1,-2],[-2,0],[-5,2],[-15,-2],[0,-5],[1,-6],[2,-5],[2,-4],[3,-1],[4,1],[3,-1],[1,-5],[3,-12],[5,-13],[12,-18],[5,-5],[13,-6],[7,-1],[2,-2],[1,-6],[0,-8],[-1,-6],[-3,-5],[-2,-6],[0,-41],[-2,-7],[-2,-7],[-7,-81],[0,-52],[-2,-10],[-1,0],[-10,-10],[-1,-2],[-21,6],[-6,6],[-12,16],[-1,-6],[1,-7],[6,-12],[-7,-5],[-2,-5],[1,-7],[0,-15],[-1,-10],[-4,-21],[-2,-21],[-5,-24],[-2,-5],[-1,-6],[7,-35],[0,-12],[-4,-25],[-1,-10],[-3,-11],[-6,-6],[-7,-4],[-5,-5],[-5,-8],[-5,-10],[-4,-12],[-2,-12],[2,-9],[8,-26],[4,-35],[3,-5],[0,-3],[4,-14],[3,-3],[9,-5],[9,-10],[3,-2],[1,-3],[0,-14],[1,-3],[4,-5],[3,-10],[4,-5],[5,7],[4,-26],[0,-15],[-5,-7],[-13,4],[-1,2],[-5,11],[-3,3],[0,-5],[1,-5],[1,-4],[1,-4],[2,-6],[0,-5],[-2,-3],[-1,0],[3,-9],[2,-2],[22,21],[8,5],[9,1],[-3,-7],[-10,-12],[-2,-7],[-1,-9],[-2,-18],[-1,-10],[-1,-8],[-8,-27],[-8,-32],[-7,-16],[-42,-35],[-33,-34],[-19,-13],[-5,-5],[-5,-8],[-5,-4],[-6,-2],[-7,-1],[-7,2],[-3,-1],[-3,-7],[-7,-10],[-5,-8],[-19,-8],[-33,-28],[-13,-5],[-60,4],[-12,-6],[-7,-2],[-27,5],[-39,-4],[-44,1],[-12,5],[-12,10],[-28,43],[-12,9],[-12,0],[-3,2],[0,6],[1,6],[2,9],[-2,4],[-7,-3],[-7,-5],[-6,-2],[-12,5],[-67,58],[-37,16],[-26,22],[-25,9],[-14,2],[-19,-3],[-9,1],[-7,4],[0,9],[5,6],[7,4],[5,-2],[-1,-10],[2,0],[2,2],[1,1],[0,1],[17,0],[5,1],[3,4],[-2,12],[-9,5],[-4,6],[8,13],[-7,8],[-26,10],[-16,-3],[-10,-7],[-2,-4],[5,-1],[9,4],[5,-3],[-4,-9],[1,-5],[3,-4],[3,-6],[-28,2],[-5,-4],[-4,-7],[-22,-29],[-2,-5],[-1,-5],[0,-13],[-1,-6],[-4,-11],[-3,-13],[-3,-13],[-1,-14],[0,-24],[8,-101],[11,-70],[1,-18],[7,-34],[2,-18],[3,-19],[15,-26],[5,-19],[-1,-17],[-2,-19],[-4,-19],[-4,-12],[-2,-16],[3,-21],[8,-34],[-1,-21],[-5,-25],[-11,-43],[-5,-25],[2,-21],[4,-15],[14,-49],[9,-19],[10,-16],[22,-24],[3,-1],[6,0],[4,0],[2,-2],[4,-6],[7,-6],[7,-5],[6,-1],[14,-1],[6,-2],[5,-8],[6,-6],[7,1],[7,5],[6,2],[8,-1],[4,-2],[2,-3],[4,-8],[1,-4],[-8,-6],[-5,-8],[-21,-49],[-2,-6],[-2,-18],[1,-5],[9,-4],[22,3],[11,-9],[10,0],[9,3],[7,3],[6,6],[4,2],[52,-6],[7,3],[3,10],[1,1],[8,13],[2,5],[1,4],[-1,11],[0,3],[-1,3],[-1,4],[1,2],[1,1],[2,2],[0,4],[0,7],[-3,11],[-1,6],[-2,7],[-6,4],[-12,3],[-31,-3],[-14,3],[-12,12],[9,8],[40,9],[34,30],[23,26],[24,18],[17,8],[11,-4],[10,-17],[7,-17],[8,-36],[1,-10],[2,-10],[4,-8],[9,-13],[7,-21],[2,-24],[-2,-60],[5,-89],[-4,-24],[-7,-25],[-4,-24],[3,-21],[-14,-30],[-18,-14],[-57,-20],[-17,0],[-6,-2],[-13,-10],[-10,-3],[-9,10],[-6,12],[-9,23],[-6,10],[-5,4],[-5,6],[0,13],[2,14],[2,7],[5,36],[3,5],[4,2],[-2,5],[-6,9],[-2,1],[-4,3],[-1,3],[-2,3],[-1,2],[-10,9],[-3,6],[-2,12],[-3,7],[-6,7],[-12,8],[-14,6],[-29,1],[-20,-6],[-7,-3],[-6,-6],[-7,-9],[-10,-4],[-3,-3],[-2,-3],[-12,-27],[-5,-7],[-6,-4],[-14,-2],[-13,-6],[-7,-8],[-3,-9],[-3,-10],[-4,-12],[-8,-15],[-2,-9],[2,-14],[4,-8],[11,-5],[9,-11],[18,-9],[34,-26],[9,-10],[11,-16],[6,-6],[8,-4],[7,-5],[3,-2],[4,0],[7,3],[7,1],[3,0],[2,-2],[5,-8],[5,-5],[2,-3],[5,-6],[8,1],[22,14],[3,1],[0,-3],[4,-15],[-1,-8],[-6,-9],[-33,-35],[-33,-21],[-56,-26],[-49,-54],[-9,-18],[-5,-8],[-6,-7],[-5,-3],[-3,-13],[0,-11],[2,-10],[1,-12],[-2,-11],[-4,-6],[-5,-6],[-23,-37],[-10,-30],[-5,-10],[-15,-21],[-3,-3],[-11,-31],[-1,-6],[-4,-8],[-1,-6],[1,-34],[1,-10],[6,-19],[-2,-8],[-1,-12],[0,-11],[2,-5],[4,-5],[2,-10],[2,-11],[2,-9],[1,-8],[-1,-23],[1,-7],[3,-3],[6,3],[3,-7],[-7,-8],[3,-13],[0,-10],[5,-6],[10,1],[-7,-9],[-5,-10],[-2,-10],[1,-8],[0,-9],[4,-3],[1,-11],[-4,-4],[-9,-2],[-5,-4],[-5,-7],[-3,-20],[1,-15],[0,-9],[4,-9],[2,-4],[2,-2],[3,-4],[-1,-6],[0,-5],[1,-6],[4,-4],[-1,-4],[-1,-5],[4,-7],[4,0],[3,-2],[0,-11],[1,-6],[-3,-2],[-2,-5],[0,-5],[-4,0],[-3,-1],[-2,-4],[-1,-6],[-3,-1],[-1,-3],[2,-3],[0,-3],[-3,-1],[0,-1],[2,-2],[-1,-2],[-3,1],[-2,3],[-2,-1],[0,-4],[1,-3],[-1,-3],[-2,-1],[-1,-3],[-2,-2],[-1,-4],[1,-2],[4,-1],[1,-3],[-1,-3],[-1,-3],[-1,-4],[2,-3],[2,1],[2,0],[1,1],[4,-1],[0,-4],[-2,-3],[0,-3],[2,-2],[1,-3],[-3,-1],[-4,2],[-2,-2],[-1,-3],[0,-4],[-2,-1],[-1,3],[1,6],[-1,5],[-4,1],[-3,-1],[-1,-4],[-2,0],[-1,1],[-3,-1],[0,-3],[1,-5],[3,-3],[0,-4],[-3,-2],[-3,2],[-2,-3],[-1,-4],[1,-5],[2,-4],[3,0],[2,-3],[2,-1],[0,-3],[-3,-4],[-2,0],[0,6],[-2,0],[-2,-3],[-1,-3],[-1,-5],[-1,3],[-2,2],[-1,6],[-2,2],[-1,-1],[-1,1],[-1,2],[-3,-2],[-3,-2],[-3,0],[-1,-4],[0,-5],[1,-6],[-4,1],[-1,-3],[-6,0],[-12,-9],[-10,-16],[-5,3],[-13,-15],[-4,-9],[-3,-9],[-3,-4],[-1,-5],[-3,-13],[1,-16],[-1,-10],[-1,-8],[-2,-5],[-3,-2],[-3,-3],[0,-12],[3,-4],[-2,-1],[-1,-6],[3,-13],[5,-2],[4,0],[1,-3],[2,0],[1,-3],[1,-4],[5,1],[0,-1],[4,3],[5,-2],[5,-6],[7,2],[6,-9],[4,-3],[4,-10],[-3,-1],[-4,-7],[-3,-3],[-2,-3],[-2,-3],[-4,2],[-2,-5],[-3,-4],[1,-7],[4,-5],[1,-8],[-5,1],[-3,4],[-3,-5],[2,-4],[4,-8],[-12,-12],[-5,3],[-6,-1],[-2,-11],[-12,16],[-5,7],[-9,-2],[-5,0],[-4,-8],[-4,3],[1,11],[-4,8],[-4,-1],[-4,1],[-5,-3],[0,-11],[1,-7],[-6,0],[-8,-6],[-8,4],[-6,12],[-8,11],[-8,0],[-18,9],[-16,-5],[-9,2],[-6,-13],[-11,-14],[-6,-11],[-5,6],[-4,2],[-6,0],[-4,0],[-5,-2],[-1,-5],[-6,2],[-3,-7],[-18,-8],[-8,-6],[-7,-13],[-1,-13],[14,-6],[6,-4],[-5,-12],[-27,16],[-5,1],[0,-16],[12,-4],[6,-11],[0,-14],[-10,1],[-31,0],[-32,-9],[-23,-4],[-17,-12],[-9,-12],[-13,-16],[-15,-27],[-9,-25],[-11,-20],[-9,-21],[-9,-24],[-6,-16],[-13,-19],[-7,-17],[-4,-7],[-7,-7],[-3,-12],[-3,-15],[0,-19],[0,-9],[5,-8],[-1,-6],[-2,-3],[-5,-1],[0,-8],[-1,-7],[0,-4],[2,-5],[-1,-6],[-3,-4],[-6,2],[-8,-10],[-4,-6],[-4,-5],[-5,-22],[-9,-9],[-3,-11],[-5,-12],[-4,-10],[4,-14],[-6,-6],[-6,-15],[-1,-4],[-9,-43],[-2,-16],[-1,-18],[1,-20],[13,-94],[9,-47],[7,-22],[26,-76],[16,-23],[8,-11],[14,-7],[8,-4],[3,-5],[4,-12],[11,-11],[11,-4],[6,-6],[5,-17],[9,-13],[9,-22],[4,-14],[3,-2],[4,0],[3,-2],[2,-8],[2,-2],[3,-4],[25,-41],[16,-37],[11,-15],[24,-19],[11,1],[9,-9],[11,6],[6,-4],[5,1],[6,3],[6,0],[4,-2],[9,-8],[5,-2],[15,2],[5,-2],[3,-3],[15,-4],[29,-9],[32,4],[15,9],[7,2],[7,-2],[17,-16],[10,-2],[7,-10],[3,-15],[6,-8],[5,-9],[3,-4],[14,-17],[-3,-12],[5,-32],[4,-19],[3,-19],[-4,-40],[-2,-59],[-7,-35],[-9,-38],[-15,-65],[-5,-5],[-8,0],[-8,2],[-14,4],[-17,1],[-8,-11],[-9,-18],[-8,-7],[-7,-4],[-17,-13],[-18,-18],[-6,-3],[-21,2],[-5,-2],[14,-7],[11,2],[21,18],[7,2],[15,6],[27,22],[7,12],[14,4],[12,-2],[8,-1],[4,-9],[5,-30],[4,-26],[7,-12],[11,-3],[8,-4],[-8,-8],[-2,-7],[6,-4],[3,-3],[-6,-3],[-8,-4],[-6,-2],[-3,11],[-15,7],[-7,-5],[-6,-12],[-1,-11],[6,-6],[-2,-15],[-1,-3],[-2,-3],[0,-7],[-6,-6],[1,-5],[8,-9],[9,-4],[2,-10],[-6,-11],[-7,-2],[-3,7],[-5,3],[-5,-4],[-7,0],[-13,-2],[-8,-3],[-5,-5],[-6,-7],[-3,-15],[-3,-8],[-2,-6],[-12,-8],[-10,-6],[-7,-20],[-10,-6],[-5,-7],[-5,-13],[-5,-21],[4,-19],[-4,-2],[-9,3],[-10,1],[-7,0],[-1,-3],[-5,-6],[2,-8],[-2,-13],[-9,-8],[-12,-6],[-9,0],[-20,-4],[-12,-14],[-16,-12],[-6,-11],[-10,-11],[-9,-16],[-5,-5],[-1,-13],[-1,-12],[-7,-4],[-7,-4],[-20,-5],[-16,-19],[-19,-18],[-6,-11],[-3,-29],[-11,-18],[-2,-14],[-2,-13],[-13,-16],[-21,-13],[-23,-22],[-42,-66],[-5,-19],[-4,-22],[-2,-13],[-5,-7],[-5,-7],[-1,-15],[6,-3],[1,-10],[-4,-4],[-2,-4],[-5,-3],[-2,-5],[-1,-6],[-2,-6],[-2,-14],[-8,-11],[-8,-5],[3,-5],[3,-6],[2,-6],[-2,-7],[-4,-1],[-4,-6],[-5,-4],[4,-5],[-1,-7],[-8,-12],[-15,-3],[-1,-3],[5,-4],[6,0],[19,1],[8,11],[4,21],[-1,16],[5,8],[1,17],[5,9],[3,3],[4,-2],[4,-9],[0,-11],[-1,-23],[-12,-32],[-1,-11],[-5,-39],[-7,-43],[-2,-17],[0,-26],[-2,-14],[-1,-24],[2,-9],[-6,-57],[-8,-39],[-3,-14],[-4,-12],[-2,-8],[-1,-3],[-10,-26],[-17,-25],[-24,-28],[-26,-26],[-26,-16],[-25,-6],[-19,3],[-4,1],[-3,4],[-7,17],[-6,4],[-6,15],[-4,11],[-3,16],[-5,15],[-6,12],[-10,11],[-6,15],[-2,13],[-5,21],[-7,14],[-13,35],[-4,10],[-5,7],[-6,7],[-7,3],[-6,1],[18,-16],[3,-7],[2,-9],[8,-21],[9,-24],[5,-27],[0,-14],[-4,-6],[-9,-9],[-7,-3],[-7,-6],[-7,-2],[-12,4],[-16,-2],[-20,3],[-11,-11],[-9,-6],[-8,0],[-11,-10],[0,-4],[2,0],[3,0],[1,0],[6,1],[16,1],[9,11],[7,6],[4,1],[4,0],[7,-2],[9,2],[15,-5],[12,-3],[9,6],[11,7],[5,2],[4,-3],[2,-3],[2,-12],[6,-5],[4,-4],[0,-6],[0,-9],[2,-12],[5,-12],[7,-11],[6,-6],[7,-1],[5,-3],[3,-7],[8,-4],[4,-8],[-4,-12],[-9,-5],[-6,-9],[-6,-5],[-49,-30],[-34,-24],[-8,2],[-7,-9],[-1,-8],[-9,-4],[-4,-1],[-4,2],[-6,-5],[-1,-13],[-5,-5],[-13,-26],[-8,-14],[-4,-13],[-6,-16],[-9,-22],[-5,-16],[-4,-11],[-1,-26],[-12,-45],[-6,-23],[-2,-14],[1,-9],[4,-15],[2,-38],[-1,-18],[-2,-15],[-6,-7],[-13,-12],[-15,-23],[-25,-26],[-11,-18],[-6,-21],[8,11],[16,20],[10,9],[17,14],[8,7],[8,2],[3,-11],[0,-12],[4,-24],[6,-46],[4,-29],[1,-19],[5,-12],[2,-25],[5,-26],[27,-106],[2,-13],[1,-12],[-3,-10],[-5,-7],[-5,2],[-5,3],[-8,0],[-6,-5],[-9,-16],[-5,-3],[-8,0],[-7,3],[-31,23],[-21,3],[-5,-1],[-3,-2],[-8,-6],[-16,-3],[-7,-3],[-13,-15],[-13,-6],[-6,-6],[60,20],[13,2],[13,-3],[29,-16],[12,-8],[-2,-10],[-15,-17],[0,-4],[6,0],[5,3],[23,17],[12,14],[7,9],[8,2],[7,-5],[11,-16],[17,-67],[13,-26],[21,-66],[19,-53],[45,-94],[34,-66],[9,-19],[3,-11],[-2,-8],[-8,-11],[-4,-8],[-3,-9],[-5,-3],[-2,7],[2,8],[-4,11]],[[30986,19469],[0,22],[-1,6],[-7,3],[-22,7],[-4,2],[-9,7],[-5,2],[-55,13],[-11,5],[-41,32],[-57,25],[-76,3],[-49,28],[-47,27],[-34,19],[-22,1],[-63,1],[-62,1],[-63,1],[-63,1],[-62,1],[-63,2],[-63,1],[-62,1],[-22,0],[-14,12],[2,25],[3,19],[-3,17],[-6,13],[-8,10],[-17,30],[-20,23],[-12,11],[-26,11],[-6,6],[-4,12],[-2,33],[-2,10],[-6,9],[-7,3],[-7,-1],[-8,3],[-5,13],[7,18],[20,28],[1,4],[0,6],[-1,6],[0,5],[1,6],[2,4],[2,4],[1,5],[2,10],[0,34],[1,13],[2,8],[12,23],[3,9],[0,8],[-4,8],[-21,20],[-9,14],[-6,20],[-1,12],[3,8],[7,15],[5,12],[4,6],[4,2],[8,2],[5,13],[3,28],[2,51],[-1,23],[-6,15],[-8,13],[-7,16],[-3,11],[0,8],[2,8],[10,30],[1,10],[-6,4],[-6,3],[-11,10],[-34,11],[-12,-8],[-19,-31],[-12,-1],[-6,5],[-14,21],[-6,5],[-7,-2],[-34,-28],[-10,-11],[-20,-30],[-11,-13],[-13,-7],[-12,0],[-10,12],[-3,20],[0,22],[-1,22],[-3,9],[-12,22],[-4,10],[-1,9],[0,34],[-3,32],[-1,12],[1,24],[0,12],[-3,19],[-5,20],[-6,18],[-6,15],[-5,7],[-12,8],[-34,46],[-3,16],[2,18],[14,36],[1,7],[-2,11],[-4,8],[-15,18],[-5,9],[1,7],[4,7],[3,8],[1,11],[0,9],[1,8],[15,22],[5,14],[0,16],[-8,19],[-9,13],[-4,8],[-2,9],[2,11],[3,9],[3,9],[-1,12],[-3,8],[-8,14],[-4,7],[-3,11],[0,6],[8,13],[4,10],[0,8],[-2,9],[0,11],[3,10],[5,6],[11,10],[4,8],[2,7],[-3,19],[0,15],[4,6],[87,2],[1,11],[3,4],[9,4],[0,3],[-18,5],[-2,5],[-4,7],[0,14],[3,15],[18,32],[3,8],[1,8],[0,7],[0,9],[4,13],[17,36],[2,5],[11,15],[14,7],[27,5],[12,6],[10,12],[20,30],[15,26],[7,17],[3,18],[1,23],[-2,63],[-6,32],[-2,30],[10,35],[11,12],[12,10],[17,8],[5,6],[8,16],[3,8],[2,2],[3,2],[4,0],[8,-4],[4,2],[2,8],[-3,10],[-4,10],[-2,8],[1,10],[3,23],[1,11],[-7,72],[-3,12],[-9,5],[-3,2],[-2,4],[-1,5],[0,6],[-1,5],[-5,9],[-5,3],[-5,2],[-6,4],[-9,12],[-7,16],[-2,19],[5,19],[7,17],[7,42],[5,20],[26,68],[3,9],[2,10],[1,10],[1,12],[5,31],[0,8],[-5,7],[-6,2],[-3,6],[2,14],[4,8],[5,6],[12,7],[7,0],[15,-3],[6,1],[4,6],[7,15],[25,42],[5,15],[3,10],[-1,6],[-1,6],[-2,10],[-1,10],[1,7],[3,4],[6,-1],[18,-17],[9,-4],[9,7],[5,15],[0,17],[-3,15],[-6,13],[-7,8],[-18,16],[-6,11],[2,12],[18,16],[5,9],[-3,9],[-9,13],[-3,8],[0,9],[5,35],[1,4],[2,4],[1,4],[1,5],[-2,4],[-1,5],[-2,4],[1,6],[4,8],[7,3],[15,0],[6,4],[4,5],[7,17],[5,8],[15,13],[10,15],[2,18],[-5,43],[1,11],[2,9],[1,9],[-1,11],[-18,75],[-3,21],[0,23],[1,27],[-2,17],[-5,12],[-17,17],[-13,19],[-3,3],[-2,1],[-2,3],[1,6],[2,3],[4,2],[21,4],[6,3],[7,5],[3,7],[6,18],[4,8],[20,34],[10,17],[-3,22],[-5,17],[-6,12],[-10,10],[-12,6],[-4,6],[-2,10],[1,9],[3,8],[0,9],[-3,11],[-8,10],[-2,7],[-1,9],[0,4],[5,11],[1,6],[-1,4],[-1,3],[0,5],[0,9],[1,7],[5,15],[2,3],[2,3],[1,3],[1,4],[-1,4],[-4,7],[-1,2],[4,14],[10,9],[12,6],[9,2],[21,-2],[10,3],[11,12],[3,9],[-1,9],[-6,17],[-2,12],[0,6],[28,18],[5,4],[4,7],[7,16],[5,6],[6,14],[-2,19],[-6,19],[-6,15],[-9,14],[-15,16],[-11,21],[-3,7],[-5,27],[-11,36],[-9,16],[-10,2],[-10,-3],[-12,4],[-4,5],[-7,14],[-5,5],[-6,3],[-6,-1],[-7,-4],[-6,-4],[-11,-3],[-11,8],[-11,11],[-11,7],[-12,-2],[-6,3],[-2,9],[2,20],[0,10],[-4,32],[4,13],[7,3],[11,-6],[6,-4],[37,-11],[7,1],[5,6],[3,7],[4,6],[7,1],[6,-1],[19,-13],[11,-1],[25,18],[12,4],[12,-5],[21,-24],[12,-5],[11,3],[9,11],[7,17],[2,23],[-2,21],[0,9],[1,12],[6,19],[4,9],[3,4],[6,0],[6,2],[4,6],[2,13],[0,11],[-2,6],[-3,5],[-4,8],[-2,10],[-1,9],[-1,8],[-4,9],[-7,6],[-7,2],[-14,1],[-42,12],[-57,0],[-14,5],[-12,0],[-12,-5],[-12,-1],[-11,16],[-1,11],[5,6],[6,4],[4,5],[2,11],[-2,8],[-3,8],[-3,10],[1,11],[7,17],[0,11],[-2,10],[-9,25],[-4,22],[6,8],[11,5],[10,13],[4,12],[21,50],[3,12],[0,8],[-15,40],[-4,7],[-2,3],[-5,4],[-2,4],[-1,6],[1,5],[2,4],[0,5],[0,14],[-2,1],[-4,-4],[-6,-3],[-5,4],[-1,10],[2,11],[2,7],[5,6],[12,7],[5,4],[4,8],[2,8],[-2,34],[-1,7],[-3,4],[-11,14],[-2,2],[-2,4],[-1,4],[-2,3],[-3,3],[-6,1],[-8,0],[-6,2],[-2,9],[1,3],[5,12],[0,13],[-3,9],[-5,5],[-5,2],[-3,-1],[-3,-2],[-3,-1],[-3,2],[-2,6],[1,3],[3,2],[1,5],[-1,17],[0,3],[2,6],[2,3],[2,2],[2,4],[1,4],[0,18],[2,5],[3,1],[7,1],[11,9],[6,2],[12,-4],[3,7],[1,10],[-1,11],[0,5],[-2,9],[0,6],[1,5],[2,10],[1,6],[-2,10],[-5,7],[-26,17],[-41,7],[-12,9],[-12,16],[-9,21],[-6,26],[2,21],[7,39],[1,20],[-2,85],[-1,10],[-4,20],[-1,8],[3,15],[0,4],[-1,6],[-3,8],[-1,5],[2,21],[6,16],[8,11],[14,12],[1,6],[-2,6],[-8,22],[-1,6],[5,32],[-3,11],[-14,22],[-3,15],[2,15],[6,13],[7,12],[5,14],[2,16],[4,15],[8,12],[9,-1],[4,-11],[4,-13],[7,-6],[4,3],[2,5],[2,6],[3,5],[3,3],[20,5],[8,7],[6,9],[4,12],[-1,31],[-1,4],[-5,10],[-2,5],[-3,8],[0,8],[1,10],[0,10],[-5,42],[-6,18],[-7,14],[-5,16],[0,23],[-3,19],[-16,37],[0,18],[4,7],[10,10],[4,6],[2,10],[-1,7],[-3,6],[-3,9],[-2,10],[0,8],[2,17],[0,12],[0,8],[-1,8],[-2,11],[-4,22],[1,19],[7,39],[1,12],[-1,10],[-3,19],[-1,12],[3,5],[2,3],[2,10],[1,21],[2,21],[1,13],[-4,22],[0,6],[-1,6],[5,25],[0,11],[-2,15],[-3,11],[-11,27],[-3,13],[-10,63],[2,7],[21,37],[6,18],[1,22],[-1,5],[-3,7],[0,6],[1,4],[5,15],[10,54],[2,7],[3,1],[12,-5],[4,0],[3,5],[11,43],[1,9],[0,6],[0,6],[-1,5],[-2,4],[-4,4],[-1,0],[-4,-2],[-2,-3],[0,-3],[-1,-2],[-4,1],[-2,3],[-6,15],[-8,15],[-4,9],[-2,10],[0,4],[2,9],[1,2],[-1,6],[0,6],[2,18],[1,5],[0,5],[-1,5],[-2,5],[0,4],[4,8],[9,2],[13,-10],[11,-4],[3,23],[0,6],[-3,13],[0,6],[0,5],[2,3],[2,3],[2,3],[10,38],[2,12],[-1,9],[-4,7],[-9,14],[-3,7],[-2,9],[0,13],[-2,12],[-5,26],[-1,12],[2,11],[2,11],[2,9],[-6,17],[-1,13],[1,13],[3,11],[4,9],[3,0],[10,-19],[3,-4],[4,-6],[5,-2],[6,3],[6,1],[5,-1],[5,0],[5,8],[2,21],[-13,20],[7,18],[4,8],[5,16],[4,7],[2,9],[-4,19],[0,12],[5,9],[6,6],[5,9],[2,14],[3,49],[-3,80],[-5,44],[0,16],[4,38],[4,14],[9,14],[25,22],[7,10],[4,9],[1,4],[2,2],[21,5],[4,4],[17,21],[8,6],[11,1],[12,-3],[6,2],[4,7],[4,14],[2,3],[8,7],[2,2],[0,6],[-1,4],[-2,3],[-1,5],[0,7],[1,4],[3,9],[7,16],[3,9],[1,12],[-4,22],[-9,15],[-11,11],[-9,14],[-6,21],[-12,95],[-1,18],[1,18],[2,20],[0,1],[0,2],[0,1],[-2,11],[-2,13],[0,11],[4,9],[0,4],[1,3],[-1,3],[0,4],[-8,17],[-2,10],[-2,12],[-3,12],[-7,23],[-2,25],[-11,35],[-14,79],[-2,26],[0,13],[2,8],[4,7],[4,7],[7,7],[1,4],[0,7],[-3,10],[-1,7],[2,11],[4,23],[1,11],[-2,14],[-3,11],[-9,20],[-8,28],[-2,17],[-1,13],[3,11],[11,23],[3,13],[0,11],[-1,12],[0,12],[3,13],[4,8],[10,9],[-11,16],[-3,9],[-3,29],[-2,6],[-9,10],[-5,8],[2,1],[5,-3],[6,0],[5,6],[2,8],[-1,9],[-8,9],[0,4],[1,5],[1,5],[0,5],[0,2],[0,2],[-1,6],[-3,4],[-2,2],[-3,3],[-1,6],[0,5],[2,5],[2,5],[1,4],[7,33],[2,11],[-1,22],[1,9],[4,7],[6,-1],[5,-6],[5,-5],[5,6],[0,9],[-4,40],[0,23],[2,27],[5,21],[5,2],[5,2],[5,-3],[6,-2],[4,2],[6,6],[3,9],[2,23],[2,8],[5,3],[6,-3],[11,-9],[2,-3],[2,-3],[2,-2],[25,11],[2,7],[0,14],[-1,7],[-4,13],[-1,7],[1,5],[4,15],[1,5],[-1,5],[0,5],[1,6],[2,3],[3,2],[5,2],[3,5],[11,23],[1,2],[3,3],[1,2],[1,4],[1,7],[0,3],[3,12],[2,4],[3,3],[7,-3],[13,-12],[7,1],[6,6],[4,9],[2,4],[2,8],[3,19],[2,6],[5,9],[2,8],[-1,9],[-8,36],[0,7],[2,11],[1,4],[3,3],[1,4],[1,4],[-2,5],[-6,-2],[-3,3],[1,21],[17,31],[-1,19],[-4,13],[-13,60],[0,10],[3,21],[0,12],[-2,24],[3,24],[-2,9],[-4,8],[-4,10],[-7,39],[-1,9],[3,5],[6,3],[3,6],[-3,14],[-10,11],[-12,3],[-11,6],[-6,23],[10,30],[44,25],[5,42],[-1,41],[0,2],[5,42],[21,92],[-1,7],[-3,5],[-4,8],[-3,11],[2,3],[5,2],[5,6],[6,18],[3,46],[4,20],[5,10],[12,18],[4,12],[7,28],[4,13],[12,20],[3,11],[0,14],[-1,17],[-1,18],[2,13],[3,5],[2,3],[14,5],[6,-1],[6,-2],[10,-6],[1,2],[1,4],[0,3],[20,15],[1,6],[-3,14],[-6,24],[-2,8],[-2,9],[1,6],[1,5],[1,9],[2,45],[0,27],[-2,16],[-6,3],[-4,-3],[-3,2],[1,16],[2,23],[1,11],[-5,46],[0,12],[2,7],[10,14],[3,6],[0,9],[-7,20],[-3,9],[1,12],[6,34],[-1,6],[-1,5],[0,5],[1,6],[2,3],[5,4],[2,2],[1,7],[1,28],[1,9],[3,9],[7,17],[2,9],[0,12],[-5,21],[-2,32],[-6,14],[-10,10],[-9,7],[-10,-3],[-12,-31],[-8,-3],[-8,36],[-3,8],[-10,14],[-4,9],[-2,10],[0,12],[5,34],[-1,12],[-3,10],[0,1],[-2,9],[3,12],[4,6],[9,4],[3,5],[3,9],[3,25],[1,11],[5,16],[0,8],[-4,5],[-6,5],[-5,5],[-9,16],[-15,33],[-4,18],[-7,64],[0,13],[1,11],[0,5],[2,5],[6,0],[3,2],[-6,16],[0,10],[0,11],[0,12],[-4,12],[-4,7],[-11,11],[-5,19],[1,43],[-4,10],[-4,9],[-6,4],[-5,2],[-3,5],[-2,14],[0,6],[0,10],[0,6],[-1,6],[-3,13],[-1,7],[1,6],[2,9],[0,6],[-1,4],[-5,6],[-1,6],[0,11],[0,5],[-2,5],[-5,9],[-1,5],[1,7],[4,7],[5,-2],[12,-8],[7,0],[3,5],[2,22],[3,9],[2,7],[2,8],[-1,11],[-3,10],[-5,11],[-6,9],[-5,6],[-12,3],[-10,-1],[-10,5],[-10,19],[-3,10],[-2,14],[-1,14],[0,25],[-3,10],[-8,18],[-15,54],[-3,15],[0,11],[3,26],[1,21],[-1,22],[1,11],[5,19],[1,11],[-1,13],[-2,11],[-1,11],[6,23],[1,11],[0,23],[1,12],[1,9],[16,45],[3,4],[6,-5],[2,-12],[1,-14],[4,-7],[4,2],[4,8],[3,9],[3,17],[3,12],[6,18],[5,5],[12,-3],[3,1],[0,8],[-3,8],[-8,13],[-5,10],[-3,9],[-1,11],[6,81],[4,21],[1,4],[5,12],[2,8],[-1,5],[0,6],[0,8],[1,12],[1,9],[6,18],[4,21],[5,45],[6,17],[4,6],[5,4],[3,6],[2,12],[-1,12],[-7,22],[0,10],[7,7],[23,-21],[10,-5],[10,5],[8,8],[7,12],[8,15],[2,10],[1,11],[1,22],[1,11],[1,6],[1,4],[2,5],[6,5],[2,3],[4,22],[-4,21],[-9,16],[-10,7],[-11,-3],[-4,2],[-2,10],[1,9],[10,27],[3,21],[2,22],[2,79],[-4,52],[-2,8],[-8,11],[-2,12],[0,14],[1,17],[0,18],[-6,56],[-2,7],[-1,7],[-3,5],[-2,31],[-2,9],[-3,7],[-2,8],[0,10],[1,29],[3,12],[5,7],[3,2],[3,3],[3,4],[1,6],[0,4],[-3,8],[-1,3],[1,4],[2,2],[1,0],[5,8],[7,9],[3,5],[2,7],[0,4],[1,4],[5,3],[13,5],[7,5],[5,13],[2,13],[0,16],[-2,29],[-1,12],[0,12],[1,12],[2,11],[3,9],[3,8],[2,5],[0,5],[0,5],[1,5],[8,28],[0,10],[-1,13],[-4,25],[-1,14],[1,20],[3,19],[5,18],[6,16],[2,2],[3,1],[2,3],[1,6],[0,63],[5,33],[1,2],[12,25],[15,22],[12,30],[3,10],[3,31],[4,6],[5,-4],[6,-8],[4,-2],[3,6],[6,24],[6,18],[10,47],[5,9],[1,4],[-1,4],[0,5],[3,9],[3,6],[5,4],[16,8],[7,10],[5,17],[11,89],[2,23],[2,7],[3,4],[7,7],[2,5],[-1,8],[-2,8],[-2,7],[0,10],[2,6],[7,12],[2,6],[7,28],[3,16],[1,15],[-2,8],[0,8],[1,7],[2,7],[5,7],[10,10],[4,7],[3,8],[14,59],[1,10],[-1,23],[0,11],[3,13],[12,37],[4,10],[3,4],[10,5],[13,-1],[10,-12],[9,-15],[11,-8],[7,1],[3,8],[2,12],[3,13],[5,10],[6,8],[7,5],[14,1],[6,3],[12,11],[3,0],[8,-1],[2,0],[1,5],[-1,15],[0,7],[2,11],[4,22],[2,10],[-1,17],[-4,17],[-53,143],[-9,23],[-8,23],[-4,25],[-3,30],[1,47],[2,24],[3,20],[8,21],[35,53],[3,21],[-2,30],[-19,152],[-4,48],[-2,16],[-4,13],[-6,11],[-5,15],[0,16],[0,16],[-2,12],[4,9],[-4,13],[-10,24],[-1,10],[-1,11],[1,23],[15,86],[10,64],[6,14],[1,2],[5,6],[4,0],[5,-1],[6,-1],[6,3],[5,4],[4,8],[0,12],[-6,15],[-9,16],[-6,18],[1,22],[0,6],[0,4],[-2,3],[-1,5],[-1,2],[-3,5],[-1,3],[-1,3],[1,3],[0,2],[-2,9],[-1,5],[-3,2],[-6,0],[-2,3],[-7,8],[-2,5],[-1,4],[-7,32],[0,10],[2,13],[14,56],[3,20],[1,8],[1,9],[2,6],[4,2],[5,-15],[3,-3],[2,11],[2,18],[11,47],[5,6],[5,-2],[5,-3],[5,0],[4,7],[10,33],[3,16],[1,5],[5,6],[9,8],[14,11],[14,12],[14,11],[14,12],[35,30],[34,30],[35,31],[35,30],[2,2],[6,4],[5,4],[3,2],[11,9],[14,15],[6,17],[6,39],[9,60],[10,60],[1,6],[19,126],[20,125],[19,126],[5,32],[2,18],[-50,106]],[[31335,36954],[14,47],[8,19],[21,33],[3,9],[1,13],[-3,55],[5,1],[6,-1],[5,2],[3,4],[3,8],[6,12],[7,8],[31,19],[3,5],[0,6],[-1,17],[0,5],[4,9],[2,13],[3,44],[2,14],[4,12],[6,11],[4,3],[3,0],[3,-3],[6,-1],[4,-3],[2,1],[0,4],[1,4],[1,3],[33,17],[36,22],[7,10],[1,6],[2,5],[2,5],[3,3],[3,1],[1,-1],[1,0],[2,7],[1,9],[2,55],[14,98],[5,3],[23,-15],[12,-12],[9,-19],[3,-28],[1,-3],[26,-9],[6,-7],[36,-84],[8,-11],[8,-6],[39,9],[2,2],[1,3],[2,2],[2,1],[19,-6],[15,-3],[74,2],[47,1],[53,-24],[19,-22],[11,-6],[3,1],[5,5],[2,1],[2,-2],[6,-2],[5,-8],[7,-6],[5,-2],[3,-4],[7,-18],[3,-7],[2,-12],[0,-10],[-2,-8],[-3,-8],[-3,-14],[4,-11],[5,-8],[4,-6],[1,-7],[-3,-11],[0,-6],[2,-4],[5,-7],[1,-4],[2,-13],[4,-11],[15,-30],[0,-9],[-3,-6],[-2,-5],[-1,-7],[0,-6],[-2,-11],[0,-7],[1,-9],[2,-3],[2,-2],[3,-4],[7,-32],[3,-5],[6,-5],[4,-13],[1,-16],[-2,-15],[3,-8],[1,-28],[6,-4],[-1,7],[7,46],[2,11],[0,43],[12,89],[4,14],[15,27],[6,19],[21,107],[2,5],[6,6],[2,6],[8,44],[5,33],[2,10],[2,2],[1,1],[3,2],[2,5],[1,4],[1,12],[2,13],[1,4],[0,1],[4,4],[8,3],[26,-4],[5,-5],[12,-20],[3,-3],[13,23],[4,5],[11,3],[87,-1],[88,-1],[0,1],[41,4],[12,-5],[4,-1],[1,-6],[2,-22],[0,-6],[-1,-5],[2,-7],[0,-19],[2,-11],[4,-8],[13,-13],[12,-16],[3,-7],[1,-6],[1,-5],[0,-4],[3,-2]],[[62630,74531],[1,6],[2,6],[3,4],[4,2],[4,0],[4,-1],[7,-6],[-4,-16],[-9,-11],[-9,4],[-2,6],[-1,6]],[[62500,74922],[10,-35],[-2,-12],[1,-7],[5,-4],[18,0],[5,-2],[14,-19],[4,-8],[0,-9],[-9,-12],[-28,2],[-3,-19],[4,-10],[6,-6],[5,-1],[2,7],[1,11],[4,-4],[9,-16],[6,-5],[4,-8],[5,-6],[13,-2],[12,-9],[7,-1],[12,10],[3,2],[8,2],[1,-14],[-2,-19],[3,-6],[4,-2],[3,-1],[8,-10],[11,-25],[5,-7],[5,-3],[7,-1],[5,-4],[0,-13],[-5,-24],[-7,-14],[-22,-17],[-11,-8],[-11,-15],[-7,-20],[0,-14],[0,-11],[4,-14],[5,-8],[6,-8],[5,-9],[1,-6],[1,-13],[1,-7],[2,-4],[6,-7],[3,-6],[9,-32],[16,-25],[65,-59],[0,-1],[12,-21],[5,-1],[2,1],[4,2],[6,1],[4,-4],[4,-6],[7,-15],[1,-4],[0,-3],[0,-4],[-5,-38],[-4,-14],[-5,-12],[-6,-9],[-1,-4],[-3,-28],[-2,-6],[-4,-5],[-19,-3],[-46,12],[-18,-18],[1,-6],[0,-8],[9,-7],[29,-5],[8,-6],[6,-11],[12,-42],[2,-7],[13,-20],[6,-5],[9,-8],[17,-9],[8,-12],[11,-36],[8,-11],[11,-5],[5,-5],[4,-8],[6,-20],[4,-7],[6,-3],[10,4],[19,16],[10,-2],[4,-5],[6,-15],[4,-4],[6,-2],[17,3],[5,-2],[4,-5],[4,-7],[1,-10],[-3,-8],[-4,-4],[-3,-5],[0,-10],[2,-6],[0,-5],[-2,-5],[-4,-2],[-20,-7],[-9,-9],[-4,-15],[4,-19],[9,-11],[20,-15],[5,-6],[2,-9],[1,-9],[3,-9],[7,-12],[12,-13],[1,-3],[2,-4],[1,-1],[1,-4],[-3,-2],[-6,-1],[-13,-15],[-3,-1],[-17,14],[-10,3],[-6,-10],[0,-19],[7,-11],[10,-9],[6,-9],[4,-19],[1,-17],[0,-17],[-4,-19],[0,-2],[-1,-1],[-1,-7],[0,-8],[0,-7],[1,-7],[10,-34]],[[62920,73496],[-5,3],[-29,21],[-4,1],[-3,0],[-6,-4],[-11,-1],[-4,-1],[-5,-4],[-15,-18],[-5,-4],[-18,-4]],[[62815,73485],[-16,52],[-15,67],[-5,19],[-8,17],[-5,16],[-3,15],[2,15],[6,15],[2,4],[1,4],[-1,5],[-2,4],[-5,9],[-16,13],[-4,4],[-7,8],[-5,10],[-6,7],[-16,7],[0,3],[-2,6],[2,12],[9,25],[1,9],[-2,28],[1,15],[0,10],[-3,7],[-6,8],[-8,4],[-6,0],[-2,0],[-34,-14],[-7,-5],[-22,-24],[-3,-2],[-4,-2],[-3,-1],[-3,1],[-3,2],[-9,15],[-4,4],[-14,2],[-4,3],[-2,7],[-4,12],[-7,16],[-1,4],[-8,-4],[-8,-12],[-10,-4],[-5,6],[-2,8],[3,22],[1,14],[-2,10],[-2,10],[-19,39],[-2,4],[-9,8],[-11,-6],[-10,-13],[-2,-1],[-7,-7],[-9,-4],[-12,1],[-13,-4],[-8,-6]],[[62437,73982],[-5,12],[-17,37],[-1,5],[-2,2],[-1,0],[-3,-1],[-1,1],[-5,5],[-11,19],[-3,-4],[-1,4],[0,6],[-1,6],[-4,5],[-3,4],[-1,5],[-1,9],[-3,9],[-7,13],[-16,23],[-24,22],[-15,15],[-10,5],[-9,0],[-17,-8],[-8,-1],[-6,-3],[-3,-1],[-2,2],[-4,5],[-2,2],[-6,-3],[-10,-11],[-4,-3],[-34,10],[-30,27],[-26,12],[-12,11],[-4,18],[4,5],[12,5],[3,8],[-2,6],[-8,18],[-3,10],[5,7],[0,1],[-4,15],[-13,26],[-7,12],[-3,9],[2,10],[2,6],[4,23],[1,1],[0,4],[-12,16],[-6,10],[-1,8],[10,19],[6,6],[6,2],[0,4],[-1,2],[-1,2],[2,-1],[1,0],[1,-1],[2,-2],[0,14],[3,12],[12,23],[-2,13],[2,4],[6,16],[0,5],[-1,41],[-1,10],[-3,11],[-11,30],[-3,12],[-1,13],[-1,12],[-1,11],[-3,12],[-9,18],[-11,14],[-12,10],[-12,3],[-5,8],[-5,17],[-2,19],[1,14]],[[62066,74814],[3,-2],[3,0],[2,1],[15,10],[12,1],[46,-10],[6,1],[6,3],[13,19],[12,8],[25,1],[6,2],[1,0],[6,2],[11,9],[6,1],[11,-6],[6,2],[6,5],[4,7],[1,5],[1,5],[0,5],[4,4],[3,0],[7,-5],[14,-15],[5,-3],[6,1],[3,3],[2,4],[2,3],[3,2],[4,-1],[15,-14],[6,-4],[6,-1],[7,4],[5,10],[2,2],[3,0],[2,-5],[1,-6],[1,-4],[6,-3],[4,6],[3,10],[4,7],[6,5],[5,-2],[12,-7],[41,-1],[7,1],[3,6],[-1,3],[-2,4],[-11,8],[-2,9],[6,8],[26,-7],[11,1],[3,4],[7,9],[3,3]],[[62488,74786],[2,-9],[4,-7],[10,-6],[4,14],[-3,17],[-11,4],[-5,-5],[-1,-8]],[[62549,74747],[2,-14],[7,-1],[3,6],[-8,11],[-1,1],[-2,-1],[-1,-1],[0,-1]],[[3289,41870],[-1,-7],[-3,6],[3,2],[1,-1]],[[2606,42028],[8,-6],[4,7],[2,-3],[0,-8],[-5,-4],[-16,-2],[-4,-2],[-7,-11],[-11,-30],[-7,-12],[-2,4],[-11,16],[-8,8],[-2,4],[12,15],[4,2],[10,0],[4,1],[7,17],[10,5],[12,-1]],[[2933,42033],[-2,-6],[-3,3],[-2,-5],[-3,-2],[-2,1],[-3,2],[-1,-5],[-2,-3],[-2,0],[-3,0],[0,7],[-1,6],[-2,5],[-2,2],[4,7],[6,2],[12,-1],[5,-4],[1,-9]],[[2879,42074],[-7,-7],[-3,0],[-1,8],[2,4],[3,0],[3,-2],[3,-3]],[[2480,43919],[-3,-3],[-1,4],[0,5],[4,-1],[0,-5]],[[4886,1377],[20,-16],[20,-13],[96,-24],[96,-23],[-66,-8],[-9,-4],[-8,-8],[-18,-25],[-9,-9],[-12,-6],[-108,-13],[-119,20],[-119,20],[-7,11],[1,3],[3,4],[1,3],[-8,11],[-59,9],[-26,13],[-5,5],[-3,6],[2,11],[5,7],[12,10],[-5,6],[-6,3],[-36,11],[-6,6],[9,4],[9,1],[-6,6],[-28,9],[17,7],[117,-8],[118,-9],[117,-8],[20,-12]],[[3115,1189],[-17,-7],[-133,12],[-132,13],[-4,2],[-4,4],[-6,11],[-3,5],[-137,42],[-137,42],[-136,42],[-137,42],[-19,12],[22,11],[129,-33],[129,-32],[130,-33],[129,-32],[129,-33],[129,-32],[37,-21],[24,-8],[7,-7]],[[6114,1850],[-22,-2],[-8,3],[3,6],[5,3],[9,3],[-9,16],[-11,8],[-79,25],[-85,52],[-84,52],[-5,18],[4,4],[7,2],[24,-3],[71,-29],[70,-29],[4,-4],[7,-9],[12,-16],[16,-15],[92,-38],[16,-1],[8,-3],[5,-8],[-31,-27],[-19,-8]],[[5420,2147],[-23,-1],[-125,10],[-126,9],[-125,10],[-125,10],[-126,10],[-125,10],[-125,10],[-7,7],[1,1],[22,2],[3,2],[-3,4],[-77,21],[-12,9],[6,6],[6,9],[4,10],[3,11],[20,14],[120,15],[121,14],[128,-23],[128,-22],[128,-23],[129,-23],[128,-23],[12,-16],[1,-4],[-12,-7],[-4,-4],[11,-1],[57,-25],[8,-8],[-9,-10],[-12,-4]],[[7245,3089],[6,-9],[-13,-10],[-48,1],[-68,3],[7,4],[7,5],[-16,5],[-12,-1],[-3,3],[-2,3],[-4,8],[-3,3],[-17,10],[-131,20],[-12,8],[3,12],[-128,23],[-51,24],[1,0],[3,4],[10,4],[10,2],[115,-31],[115,-30],[116,-31],[115,-30]],[[6763,3209],[-39,-10],[-10,3],[-7,10],[9,12],[9,5],[20,0],[38,-8],[-10,-7],[-10,-5]],[[4677,3247],[17,-4],[102,-28],[7,-5],[6,-8],[-12,-12],[-14,-4],[-79,13],[-79,13],[-14,9],[25,2],[17,7],[27,0],[24,-8],[8,3],[-3,5],[-4,2],[-4,0],[-20,10],[-4,5]],[[33312,3274],[-2,-1],[-5,0],[-2,0],[-12,-6],[-21,0],[-72,-19],[23,-12],[81,-3],[81,-4],[6,-3],[-3,-8],[-4,-7],[-4,-6],[-4,-4],[4,-4],[6,-2],[5,0],[13,5],[9,-5],[17,-14],[-35,10],[-14,0],[-6,-2],[-5,-5],[-3,-8],[3,-10],[-1,-1],[-1,-3],[-1,-1],[6,-11],[10,-2],[11,3],[8,5],[3,4],[5,1],[15,-1],[6,-3],[8,-9],[-26,0],[-4,-4],[2,-5],[2,-3],[5,-4],[2,-3],[3,-8],[2,-3],[-9,-3],[-3,1],[-3,2],[-8,10],[-4,2],[-5,1],[-15,-5],[-2,-4],[0,-7],[-3,-4],[2,-6],[8,-11],[1,-3],[9,-12],[3,-6],[1,-7],[-2,-8],[-4,-3],[-38,-7],[-7,-5],[11,-15],[3,-2],[3,-2],[105,2],[24,-10],[4,-4],[-3,-7],[-5,-5],[-9,-8],[32,5],[5,0],[4,-3],[0,-1],[0,-4],[1,-2],[1,0],[11,-1],[0,-3],[-1,-2],[-1,-2],[-1,-2],[3,-9],[2,-3],[-6,-2],[-5,1],[-9,7],[-8,2],[-55,-6],[-4,-1],[-2,-2],[-1,-4],[-2,-6],[-2,-7],[-1,-5],[0,-3],[2,-3],[4,0],[2,-1],[2,-3],[2,-6],[1,-3],[-6,-2],[-11,3],[-6,-5],[-3,-6],[-5,-12],[-4,-4],[-5,-1],[-5,0],[-6,-2],[-4,-10],[0,-2],[0,-5],[-1,-2],[0,-2],[-2,-3],[0,-2],[0,-11],[4,-6],[11,-4],[-12,-3],[-4,-3],[-1,-3],[-1,-2],[1,-9],[-1,-12],[-4,-15],[-5,-13],[-5,-7],[10,-3],[35,10],[4,3],[3,3],[2,5],[-2,4],[-2,3],[5,4],[6,1],[11,-1],[3,-2],[6,-5],[3,-2],[2,0],[4,3],[4,0],[11,-1],[-2,-3],[-4,-7],[-4,-8],[0,-5],[-17,-7],[-5,1],[-1,2],[-1,4],[-1,1],[-2,0],[-3,0],[-3,-1],[-2,-2],[-3,-8],[-2,-2],[-26,-16],[-26,-4],[-4,-2],[-3,-5],[-2,-8],[-5,-22],[25,-6],[22,9],[7,0],[7,-3],[-5,-11],[-2,-3],[-2,-2],[-7,-4],[-9,-9],[-8,-11],[-7,-15],[-3,-4],[-75,-50],[-75,-51],[-81,-26],[-130,14],[-130,14],[-130,14],[-130,14],[-121,53],[-7,10],[-1,13],[2,6],[3,5],[1,6],[-2,7],[-4,5],[-14,8],[-4,4],[-1,3],[0,13],[-1,9],[-3,6],[-4,5],[-16,9],[-90,-4],[-90,-4],[-4,-3],[-3,-3],[-6,-9],[-3,-5],[-4,-2],[-4,-2],[-70,-5],[-10,-6],[2,-1],[2,-2],[1,-2],[1,-3],[-9,-11],[-2,-7],[3,-11],[-1,-4],[-12,-7],[-18,-3],[-134,40],[-135,40],[-134,40],[-134,40],[-134,40],[-14,11],[-2,3],[-3,6],[-2,13],[-2,6],[-2,2],[-2,2],[-1,3],[-1,4],[2,12],[8,11],[53,37],[68,5],[15,4],[3,0],[-1,7],[4,3],[5,0],[8,-1],[4,-3],[4,-4],[4,-6],[-1,-5],[-4,-6],[-7,-8],[1,-3],[5,-10],[-7,-13],[-3,-11],[-1,-4],[7,-14],[10,-8],[69,-22],[129,1],[128,2],[129,2],[129,2],[128,1],[129,2],[129,2],[128,2],[129,1],[73,29],[73,28],[8,10],[3,2],[-73,1],[-19,5],[-5,4],[-3,3],[-3,8],[-2,4],[-4,4],[-23,14],[-1,3],[0,3],[1,2],[2,2],[1,3],[0,8],[-5,5],[-11,7],[-2,4],[-4,11],[-2,4],[-4,5],[-13,10],[-3,5],[0,4],[3,3],[5,2],[8,2],[25,1],[-3,1],[-8,12],[114,1],[6,3],[2,4],[6,10],[1,4],[-3,3],[-18,17],[-44,19],[-13,11],[-2,1],[8,4],[8,3],[96,4],[7,25],[19,15],[132,45],[132,44],[10,-2],[-1,-6],[-3,-6],[-3,-5],[-3,-3]],[[41351,3212],[5,-4],[6,-3],[123,-21],[45,2],[37,-8],[19,1],[18,10],[-83,26],[-83,27],[-7,4],[-7,8],[-2,5],[-3,10],[-2,4],[-2,2],[-5,2],[-2,2],[11,12],[13,7],[13,2],[12,-6],[4,-7],[5,-16],[4,-8],[12,-13],[5,-3],[102,-23],[103,-22],[39,-22],[43,-34],[-2,-1],[-17,-10],[-6,-2],[-22,1],[-22,6],[-5,4],[-3,7],[-6,14],[-4,5],[-23,9],[-13,1],[-11,-2],[-19,-13],[-25,-5],[30,-27],[31,-5],[3,-2],[2,-3],[6,-8],[1,-2],[-54,-23],[-51,-8],[-16,4],[-13,13],[41,3],[10,5],[3,0],[-9,5],[-48,13],[-4,4],[-1,5],[-1,6],[-2,6],[-3,3],[-2,1],[-28,-2],[-6,-6],[2,-2],[3,-5],[1,-6],[-4,-8],[-4,-2],[-5,-1],[-58,19],[-91,8],[-91,8],[-58,23],[-28,4],[-6,3],[5,5],[5,4],[28,9],[5,4],[-25,5],[-53,-11],[-13,1],[-12,5],[48,22],[5,5],[5,6],[-12,4],[-4,2],[-4,4],[-5,9],[-4,3],[-4,2],[-45,2],[46,8],[8,4],[-5,3],[-15,2],[-11,9],[4,2],[11,8],[66,11],[39,-3],[15,-7],[41,-36],[71,-34],[15,-19]],[[31206,3367],[-7,-9],[18,4],[15,-4],[12,2],[20,-11],[73,0],[74,0],[2,1],[-4,-4],[-14,-7],[25,-1],[4,-2],[11,-7],[23,-10],[83,-3],[84,-3],[81,15],[11,-3],[8,-10],[-7,-2],[-34,-19],[-8,0],[-7,3],[-1,0],[-1,4],[-1,1],[-2,0],[-69,-16],[-111,8],[-6,-2],[-6,-3],[15,-13],[17,-7],[87,-12],[44,-26],[27,-5],[90,13],[11,-4],[14,-10],[8,-4],[5,3],[-1,-3],[-6,-7],[5,-2],[3,-3],[2,-3],[-6,-3],[-84,-10],[-8,-5],[-1,0],[7,-6],[96,-20],[4,-2],[3,-4],[1,-7],[0,-6],[-1,-5],[1,-6],[2,-4],[4,-3],[8,-4],[-4,0],[-13,-7],[-60,-16],[-4,-3],[-3,-4],[-7,-9],[-5,-6],[-119,-35],[-24,4],[-23,12],[2,5],[1,1],[-1,5],[-2,2],[-3,3],[-3,2],[17,8],[5,0],[-2,9],[-4,8],[-5,7],[-5,4],[-7,5],[-84,14],[-13,10],[-57,-1],[-10,5],[-5,9],[7,13],[43,32],[3,4],[5,11],[2,3],[-17,-4],[-17,3],[-105,46],[-105,46],[-20,26],[-4,3],[-8,1],[-8,5],[-2,12],[4,7],[6,5],[27,7],[8,-1],[7,-4],[-1,-1]],[[41058,3317],[-4,-4],[-1,-9],[2,-8],[5,-4],[11,1],[-7,-5],[-91,-2],[-29,7],[20,4],[12,6],[-3,2],[-7,0],[-10,8],[-2,0],[7,3],[14,-2],[7,1],[4,3],[0,3],[0,4],[1,8],[1,2],[3,5],[1,2],[-1,7],[-2,3],[-2,3],[-3,4],[9,1],[18,10],[18,6],[20,1],[80,-26],[6,-6],[-3,-15],[-11,-7],[-63,-6]],[[31375,3528],[-6,-11],[-7,-6],[-28,-15],[-5,0],[-2,1],[-8,5],[-6,0],[-17,-10],[-49,-43],[3,-4],[5,-3],[39,-7],[8,-3],[6,-7],[-1,-2],[-4,-5],[4,-3],[14,0],[-4,-4],[-20,-7],[-13,-10],[-13,-6],[-12,-3],[-129,10],[-128,11],[-17,14],[-27,2],[-6,4],[3,7],[7,6],[9,6],[137,23],[138,24],[12,10],[-9,4],[-48,-1],[-6,2],[-2,2],[-2,3],[0,3],[2,4],[-2,-1],[-25,-5],[-14,5],[-116,-27],[-45,0],[-4,2],[8,7],[51,15],[26,11],[5,4],[8,11],[4,5],[17,5],[112,8],[77,-14],[77,-15],[3,-2]],[[31197,3611],[-6,-7],[3,1],[27,-1],[-80,-14],[-81,-14],[-12,9],[53,20],[87,9],[9,-3]],[[40549,3526],[29,-26],[-19,-22],[-24,-7],[-122,6],[-123,6],[-123,6],[-123,7],[-123,6],[-123,6],[-33,23],[-26,46],[15,-6],[45,-43],[31,-4],[6,-2],[-4,9],[-5,9],[-6,8],[-5,5],[114,16],[113,16],[16,9],[28,27],[16,8],[35,2],[137,-35],[137,-35],[137,-35]],[[29030,3766],[-6,-2],[-11,1],[-14,6],[-7,5],[-6,8],[-3,13],[5,13],[8,11],[7,7],[23,14],[16,3],[15,-7],[-1,0],[0,-1],[0,-1],[1,0],[-14,-10],[-6,-6],[-2,-8],[-7,-3],[-5,-4],[-2,-5],[-1,-7],[2,-4],[9,-10],[2,-7],[-3,-6]],[[5474,3527],[50,-16],[33,-20],[42,-13],[77,-49],[2,-2],[1,-3],[2,-6],[1,-2],[2,-2],[3,-3],[2,-2],[3,-10],[2,-2],[2,-2],[8,-1],[36,-22],[4,-5],[-1,-6],[-3,-3],[-4,-1],[-7,2],[34,-19],[5,-4],[6,-8],[2,-9],[-3,-10],[3,-6],[5,-5],[59,-41],[5,-10],[-1,-4],[-4,-5],[-1,-5],[1,-2],[3,-1],[3,-1],[-10,-12],[-4,-3],[-7,-3],[-2,-2],[-4,-6],[-2,-2],[-3,-1],[-114,-5],[-114,-6],[-114,-5],[-115,-5],[-128,36],[-128,36],[-128,36],[-128,36],[-128,36],[-129,36],[-24,20],[-102,26],[-62,46],[-39,19],[-7,9],[2,-1],[12,4],[15,-2],[-4,7],[-3,6],[-14,19],[-2,6],[1,7],[3,4],[2,2],[2,3],[-1,9],[-3,21],[0,4],[1,2],[3,4],[1,3],[0,3],[0,4],[-1,6],[11,0],[6,2],[3,7],[0,8],[-4,7],[-4,6],[-4,3],[2,2],[7,5],[3,5],[7,12],[4,4],[4,2],[44,15],[2,1],[2,3],[3,5],[2,2],[5,3],[41,6],[4,2],[1,5],[-16,9],[4,5],[13,6],[10,10],[3,2],[9,2],[3,1],[12,11],[43,20],[3,5],[48,17],[10,9],[-3,3],[-10,19],[19,9],[123,-14],[124,-14],[3,-1],[2,-3],[4,-8],[2,-3],[5,-3],[42,-5],[106,-50],[106,-49],[7,-9],[1,-2],[-4,-3],[-2,-2],[0,-3],[3,-3],[117,-57],[117,-56],[63,-47]],[[31435,4018],[11,-2],[4,1],[4,1],[4,1],[4,-4],[-9,-5],[-30,-5],[-50,-21],[1,-2],[8,-10],[-9,-8],[-29,-15],[-29,-30],[-10,-8],[-11,-4],[-4,-3],[-4,-4],[-5,-12],[-3,-4],[-108,-65],[-107,-64],[-108,-64],[-107,-64],[-5,-7],[0,-2],[1,-5],[0,-3],[-4,-7],[-7,-5],[-82,-42],[-3,-4],[-2,-4],[-3,-9],[-2,-4],[-8,-11],[-29,-16],[-37,-45],[-2,-3],[-2,-7],[-2,-3],[-3,-4],[-10,-5],[5,-3],[12,-1],[22,4],[6,-2],[-77,-16],[-11,-10],[6,-6],[36,-11],[6,-3],[17,-16],[7,-4],[19,-4],[-55,-5],[-4,-2],[-3,-4],[-3,-4],[-2,-5],[24,-22],[-96,-27],[-97,-28],[-102,9],[-102,8],[-102,9],[-32,18],[-31,25],[-30,33],[-7,14],[-2,7],[-1,6],[0,15],[3,15],[5,14],[5,12],[4,35],[18,38],[25,36],[57,58],[111,64],[112,64],[50,2],[13,6],[25,19],[123,24],[38,28],[24,4],[9,4],[29,22],[6,6],[4,3],[118,40],[119,39],[118,40],[119,39],[29,22],[13,7],[81,19],[82,19],[72,-8],[19,-9],[16,-16],[-6,-10],[-9,-5],[-49,-15],[-10,-9],[11,-5]],[[96549,4166],[-23,-23],[-25,-14],[-32,-2],[-96,18],[-12,-3],[-48,-29],[-115,-20],[-34,7],[-15,7],[-12,11],[-17,43],[-14,51],[17,12],[13,4],[11,-5],[9,-13],[40,0],[95,-29],[34,-23],[6,-6],[76,33],[78,57],[17,28],[13,9],[15,2],[15,-6],[11,-16],[1,-15],[4,-16],[11,-26],[0,-1],[0,-1],[1,-1],[-24,-33]],[[37402,3866],[35,-25],[-40,-30],[20,-14],[22,-5],[137,4],[137,3],[137,4],[7,-5],[44,-43],[15,-19],[11,-25],[5,-19],[4,-30],[0,-28],[-7,-15],[14,6],[6,1],[7,-1],[4,-4],[10,-17],[30,-13],[14,-13],[4,-1],[-15,-4],[-45,-30],[11,-17],[44,-28],[13,-11],[10,-13],[0,-4],[1,-5],[2,-6],[1,-5],[4,-6],[14,-12],[5,-6],[3,-6],[2,-7],[2,-8],[1,-8],[1,-8],[1,-17],[-7,-115],[-6,-42],[-9,-38],[-16,-35],[-18,-25],[-19,-16],[-21,-5],[-87,14],[-73,-19],[1,0],[1,-1],[-1,0],[-1,0],[106,-58],[11,-8],[4,-13],[-8,-20],[-22,-21],[-133,-22],[-132,-22],[-132,-22],[-132,-22],[-133,-23],[-132,-22],[-132,-22],[-132,-22],[-132,-22],[-133,-22],[-132,-22],[-132,-22],[-132,-23],[-7,-5],[-4,-7],[0,-9],[2,-11],[3,-1],[11,-12],[1,-3],[-28,-14],[-135,-6],[-134,-5],[-135,-6],[-135,-6],[-135,-5],[-134,-6],[-135,-6],[-135,-5],[-134,-6],[-27,13],[-9,10],[-16,33],[-4,6],[-10,12],[-3,7],[-1,14],[0,16],[2,17],[3,13],[3,9],[4,8],[2,8],[-4,12],[29,24],[15,9],[15,-5],[5,-9],[3,-10],[4,-4],[7,6],[4,9],[5,20],[3,10],[9,13],[64,65],[56,76],[46,23],[-2,7],[-2,5],[-2,4],[-4,3],[14,32],[18,0],[36,-32],[17,-9],[18,-3],[55,3],[54,19],[25,22],[54,31],[17,1],[13,-5],[6,-10],[-2,-14],[-11,-16],[-41,-38],[-13,-3],[1,-1],[34,9],[127,77],[127,76],[40,36],[77,39],[40,40],[104,56],[39,40],[14,9],[19,6],[6,5],[2,8],[4,17],[4,8],[-5,9],[-3,2],[1,3],[0,2],[0,3],[1,3],[-9,10],[-12,7],[-8,10],[5,19],[-15,21],[-20,11],[-70,18],[-8,-2],[25,25],[30,48],[12,14],[4,5],[1,8],[-3,12],[3,10],[7,34],[1,10],[-6,12],[-18,6],[-6,9],[12,8],[38,9],[13,10],[12,13],[11,16],[10,19],[-30,-4],[-16,4],[-14,12],[45,53],[-4,1],[-7,-1],[-4,2],[-11,14],[-1,3],[7,4],[15,3],[6,4],[4,9],[5,21],[3,10],[5,7],[41,35],[4,6],[7,15],[4,6],[9,9],[21,12],[86,74],[85,75],[8,13],[1,4],[0,12],[3,7],[4,5],[29,22],[4,9],[-10,6],[8,10],[10,6],[129,40],[128,40],[129,40],[128,40],[120,-9],[119,-9],[119,-9],[11,-7],[128,-42],[128,-42],[127,-42],[97,-61],[97,-61],[14,-15],[10,-23],[4,-33],[-2,-16],[-4,-12],[-12,-19],[-5,-10],[-8,-24],[-20,-47],[-5,-7],[-12,-4],[-111,-12],[-110,-11],[-111,-12],[-40,-11],[-14,-8]],[[36317,4352],[-37,-4],[-7,1],[-8,8],[-2,1],[6,6],[26,14],[97,27],[39,23],[9,4],[9,-1],[9,-5],[-6,-1],[-132,-69],[-3,-4]],[[8619,4586],[-13,-1],[-53,14],[10,5],[-6,1],[-2,1],[-2,3],[32,10],[11,0],[62,-15],[-13,-9],[-26,-9]],[[8545,4688],[3,-6],[1,-2],[-1,-5],[0,-2],[3,-5],[80,-21],[3,-6],[-5,-5],[-7,-2],[-120,9],[-52,25],[-25,21],[8,6],[4,-1],[12,-5],[12,0],[3,-2],[-5,6],[-14,9],[29,5],[44,-6],[23,-9],[4,-4]],[[8199,4666],[9,-3],[28,2],[-3,-7],[-4,-4],[-4,-4],[-4,-1],[-26,-2],[-93,16],[-92,16],[-92,16],[-5,5],[0,9],[4,4],[5,3],[97,24],[41,-3],[122,-54],[12,-14],[5,-3]],[[7477,4714],[-7,-2],[-86,20],[-14,12],[9,5],[89,-2],[11,-6],[6,-6],[2,-8],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-7,-5]],[[9071,4718],[-11,-2],[-21,5],[1,1],[1,1],[2,3],[-9,4],[-2,2],[-1,2],[-2,4],[-1,4],[1,1],[-27,12],[-3,5],[10,11],[14,3],[74,-17],[17,-12],[-4,-4],[-34,-9],[1,-3],[1,-2],[1,-2],[2,-1],[-10,-6]],[[96419,4702],[-13,-20],[1,0],[1,0],[-1,-1],[20,-14],[119,-43],[90,13],[91,12],[128,-18],[128,-18],[36,-13],[10,-6],[9,-9],[5,-11],[2,-14],[-13,-9],[-75,-19],[-38,-36],[-11,-6],[-131,-33],[-87,30],[-94,0],[-95,1],[-17,-14],[-17,-23],[-8,-6],[-52,-17],[-49,-29],[-32,-30],[-28,-9],[-3,1],[-14,13],[10,16],[38,23],[22,31],[7,3],[-106,-5],[-16,7],[16,3],[33,-1],[15,6],[36,3],[19,9],[4,0],[-6,3],[-135,34],[-6,4],[-5,5],[-9,12],[-5,5],[-5,2],[-13,-1],[-5,2],[-11,16],[-3,1],[14,9],[43,13],[9,8],[21,32],[49,40],[6,2],[-21,14],[-7,2],[-8,12],[-41,27],[15,32],[20,18],[43,11],[41,2],[41,-13],[15,-13],[16,-21],[7,-25]],[[7209,4788],[-39,-10],[-90,11],[-8,5],[-3,2],[-1,2],[-1,2],[-1,2],[3,8],[7,6],[26,10],[41,5],[44,-8],[20,-11],[1,-2],[2,-3],[1,-4],[1,-11],[-3,-4]],[[96382,4891],[-30,-6],[0,6],[-1,9],[-4,7],[1,4],[5,2],[11,-3],[12,-4],[6,-8],[0,-7]],[[8755,4868],[-127,-15],[-83,18],[-7,6],[-3,10],[1,3],[0,5],[1,3],[-5,6],[-3,6],[-2,6],[-1,5],[25,9],[95,-16],[95,-15],[24,-14],[3,0],[-5,-11],[-8,-6]],[[8396,4932],[4,-19],[18,-6],[70,-53],[-1,-3],[-1,-2],[-2,-5],[2,-4],[2,-3],[5,-5],[-3,-5],[-3,-4],[32,-4],[16,-7],[14,-13],[-7,-8],[-17,-5],[-116,6],[-31,4],[9,8],[3,3],[-4,-1],[-17,5],[-77,2],[-76,3],[-45,31],[-55,18],[-5,10],[1,7],[4,4],[38,17],[63,12],[-3,6],[-4,7],[-5,5],[-4,1],[6,3],[17,5],[0,-3],[0,-15],[120,22],[34,-5],[18,-9]],[[9377,4936],[2,-4],[2,-1],[4,-1],[3,-3],[2,-2],[9,-15],[3,-4],[3,-3],[6,-4],[-5,-5],[-6,0],[-31,10],[-7,5],[-10,12],[1,0],[1,2],[2,2],[-1,0],[-7,6],[-6,3],[-5,0],[-3,-1],[-2,-2],[-2,-3],[1,-5],[0,-2],[1,-1],[-3,-5],[-1,-1],[1,-1],[1,-3],[-19,-11],[-135,-34],[-18,1],[-18,9],[12,6],[3,3],[9,11],[-6,16],[-4,5],[-24,23],[9,12],[3,4],[-10,9],[6,7],[9,2],[114,-16],[114,-17],[2,-4]],[[8596,5032],[70,-7],[4,1],[2,3],[5,5],[2,3],[2,0],[94,-13],[23,-11],[5,-5],[-13,-17],[-16,-5],[-32,4],[-52,-6],[-4,-2],[-3,-3],[-4,-9],[-3,-4],[-3,-2],[-42,-6],[-63,8],[-93,41],[24,21],[14,7],[12,3],[71,-6]],[[8269,5001],[-103,-11],[-59,15],[-17,18],[2,6],[5,7],[6,5],[87,7],[86,7],[32,-13],[-1,-4],[-1,-3],[-2,-6],[2,-1],[6,-4],[-10,-11],[-11,-6],[-22,-6]],[[8745,5049],[-17,-5],[-38,-1],[-6,2],[-10,2],[-5,-1],[-42,10],[-54,27],[-3,1],[42,18],[51,-3],[96,-39],[-1,0],[0,-1],[-13,-10]],[[8994,5094],[17,-25],[-21,-2],[-26,7],[-73,33],[1,3],[1,1],[-3,6],[-1,4],[-2,1],[17,8],[17,1],[42,-16],[31,-21]],[[9139,5147],[-3,-1],[-3,0],[10,-9],[5,-3],[6,0],[29,7],[6,-3],[-11,-10],[-3,-2],[6,1],[37,-10],[5,-4],[-4,-5],[-2,-3],[6,-5],[6,-7],[4,-7],[3,-3],[3,-1],[-13,-5],[-4,-1],[-73,13],[4,-3],[32,-13],[-5,-2],[-15,0],[3,-3],[8,-3],[13,-9],[22,-10],[-15,-8],[-16,-1],[-31,7],[-58,26],[-3,3],[-5,10],[-3,4],[-4,3],[-11,6],[6,7],[4,3],[3,0],[-7,8],[-2,2],[3,1],[8,1],[12,6],[2,-2],[-5,10],[2,5],[3,4],[-16,5],[6,9],[8,5],[8,2],[22,1],[19,-6],[3,-3],[-2,-4],[-3,-3]],[[9147,5416],[45,-18],[4,-4],[2,-6],[3,-6],[2,-7],[3,-3],[43,-32],[1,-9],[8,-23],[3,-10],[-14,-10],[-14,-3],[-14,2],[-70,28],[-6,7],[3,-1],[4,1],[8,5],[-12,10],[-86,29],[-6,6],[2,0],[7,5],[13,1],[-31,25],[-6,0],[6,12],[8,6],[18,3],[76,-8]],[[95222,5642],[-17,-4],[-30,7],[-9,6],[-7,10],[39,35],[5,10],[9,6],[42,11],[11,3],[4,-1],[2,-6],[-2,-5],[-20,-27],[-4,-7],[0,-3],[-1,-8],[-1,-3],[-2,-3],[-5,-3],[-2,-2],[-1,-3],[-4,-7],[-2,-3],[-2,-2],[-3,-1]],[[9521,5747],[79,-37],[9,-6],[16,-15],[24,-31],[9,-8],[8,-3],[-5,-11],[-7,-6],[-8,-2],[-30,0],[-88,29],[-88,29],[-30,19],[-9,8],[-1,3],[6,9],[7,7],[40,20],[27,3],[41,-8]],[[95158,5769],[-11,-2],[-8,6],[-4,10],[12,18],[11,2],[8,-8],[5,-13],[-13,-13]],[[95470,6117],[-10,-13],[-9,1],[-7,10],[-2,14],[3,6],[2,3],[1,3],[-1,5],[11,-2],[6,-7],[4,-9],[2,-11]],[[95621,6279],[0,-4],[1,-3],[-43,3],[-14,-6],[6,-7],[0,-13],[-4,-11],[-4,-3],[10,-7],[9,-8],[2,-10],[-8,-13],[-10,-4],[-32,-5],[17,-9],[14,-11],[-16,-20],[2,0],[2,-1],[1,-1],[2,-1],[-7,-9],[-5,-3],[-3,0],[-2,2],[0,3],[0,4],[0,3],[-1,7],[-1,2],[-2,2],[-10,4],[-7,1],[-2,-3],[0,-2],[2,-4],[-9,0],[-9,3],[-9,9],[-3,2],[1,1],[2,2],[1,2],[1,3],[-8,2],[-3,2],[-3,4],[-1,4],[-2,11],[-1,4],[-6,13],[-1,2],[8,6],[27,9],[-3,6],[59,52],[72,31],[8,-2],[-3,-3],[-8,-8],[-3,-4],[-2,-7],[-2,-7],[-2,-6],[2,-4]],[[13238,6406],[-7,-7],[-3,-3],[3,-3],[1,-1],[-3,-6],[-17,-11],[-11,-17],[-16,-8],[-16,-1],[-74,18],[-7,6],[5,6],[2,2],[3,0],[-11,10],[-3,2],[9,-1],[8,1],[6,3],[3,5],[16,-1],[49,16],[20,2],[21,-8],[18,-2],[4,-2]],[[13425,6456],[8,-7],[2,-1],[14,3],[5,-1],[-3,-4],[-10,-7],[7,-9],[9,-6],[119,-32],[39,11],[5,-2],[2,-2],[1,-2],[0,-4],[1,-4],[2,-3],[7,-3],[-2,-3],[-2,-2],[-5,-4],[0,-7],[-1,-17],[0,-8],[-2,-4],[-1,0],[-1,0],[-2,-2],[0,-2],[1,-2],[1,-2],[-19,-21],[-11,-8],[0,-1],[0,-3],[-1,-4],[-2,-2],[-2,-2],[-30,-3],[-73,21],[-72,21],[-11,-2],[-14,-7],[-8,-1],[-6,5],[-1,5],[-3,5],[-4,4],[-3,2],[-34,8],[-15,8],[1,1],[6,7],[10,4],[3,3],[-5,-1],[-6,3],[-16,15],[-14,8],[-6,0],[46,25],[0,2],[3,4],[6,7],[49,22],[23,-1],[11,2],[4,0]],[[14582,6406],[19,-4],[19,5],[8,-1],[29,-11],[3,-2],[2,-3],[3,-8],[1,-3],[5,-2],[9,1],[4,-4],[1,-1],[1,-2],[0,-2],[0,-1],[0,-4],[-1,-4],[-2,-3],[-14,-14],[-10,-7],[-2,-5],[17,-13],[-2,-5],[-7,-7],[1,0],[0,-2],[-4,-7],[-55,-28],[-26,-6],[-12,2],[-98,53],[1,3],[1,4],[0,4],[-1,4],[-3,4],[-9,4],[-3,6],[-6,3],[-4,3],[-1,2],[0,2],[-7,3],[-19,-4],[-6,7],[2,0],[8,6],[2,3],[-1,7],[-4,6],[-4,5],[-3,4],[0,2],[2,2],[1,4],[-3,4],[-8,2],[1,4],[0,4],[-4,12],[-2,10],[-1,4],[-6,12],[-2,5],[4,6],[10,1],[106,-23],[70,-37]],[[17421,6422],[-15,0],[-16,7],[9,22],[14,12],[80,16],[9,-1],[7,-5],[-28,-23],[-28,-15],[-32,-13]],[[13293,6547],[-8,-4],[-17,4],[-11,5],[-6,6],[-1,8],[6,3],[14,2],[12,-2],[13,-7],[4,-5],[-6,-10]],[[17597,6607],[41,-10],[5,1],[-10,-15],[-22,-21],[-51,-19],[-115,-16],[-28,10],[-9,6],[-12,9],[-7,15],[2,22],[6,10],[134,62],[135,63],[24,2],[49,-22],[-16,-22],[-38,-21],[-44,-35],[-35,-13],[-9,-6]],[[16805,6583],[-54,-12],[-35,3],[-19,6],[-9,6],[-2,10],[5,8],[7,3],[14,4],[0,1],[0,3],[2,6],[0,2],[3,2],[5,4],[3,1],[26,4],[9,3],[8,8],[-4,7],[-5,6],[-26,19],[-4,5],[-2,5],[-2,14],[-2,6],[-4,5],[-13,7],[6,4],[13,5],[6,6],[-34,11],[-4,4],[57,4],[33,19],[24,8],[103,-4],[41,-15],[17,-13],[3,-3],[1,-4],[1,-5],[-1,-10],[0,-5],[1,-4],[3,-2],[4,-2],[-21,-21],[-5,-5],[0,-4],[5,-8],[-7,-11],[-9,-8],[-61,-36],[-58,-14],[-4,-3],[-3,-5],[-3,-6],[-3,-5],[-6,-4]],[[16349,6794],[127,-10],[40,8],[31,-12],[15,-14],[-1,-20],[-4,-6],[-6,-4],[-78,-12],[-8,-6],[-3,-1],[25,-10],[100,-12],[7,-6],[-2,-2],[-6,-9],[-2,-4],[11,-4],[5,-5],[1,-8],[-2,-5],[-3,-3],[-6,-5],[-101,-43],[-101,-43],[-7,-5],[-5,-6],[-2,-6],[0,-10],[-1,-6],[5,-7],[1,-4],[-1,-5],[-3,-1],[-7,0],[-3,-1],[1,-6],[7,-7],[2,-5],[-3,-4],[-3,-2],[3,-5],[25,-9],[6,-5],[1,-1],[-43,-23],[-106,-13],[-106,-13],[-106,-13],[-60,20],[-31,-4],[-15,3],[-17,9],[-60,17],[-9,7],[-15,16],[-6,12],[2,9],[-7,9],[10,8],[11,3],[53,2],[9,6],[-2,5],[-2,2],[-7,2],[-7,4],[-4,4],[-6,12],[-30,16],[-2,3],[1,4],[-1,8],[0,2],[6,12],[4,2],[4,1],[9,0],[12,4],[1,2],[0,7],[4,3],[13,1],[2,1],[1,2],[0,4],[-2,7],[0,4],[0,2],[2,2],[1,1],[0,1],[0,3],[-1,1],[0,1],[1,3],[1,2],[2,1],[34,20],[15,2],[57,21],[5,5],[1,1],[-10,5],[-20,4],[-43,-4],[-96,16],[-2,2],[-2,4],[-1,4],[-1,4],[-1,5],[-3,5],[-4,3],[-9,2],[-92,-10],[0,1],[0,4],[0,2],[3,3],[25,4],[3,2],[2,3],[-1,6],[-4,5],[-8,7],[-3,6],[1,7],[3,6],[23,27],[20,15],[15,4],[110,-2],[110,-2],[60,-20],[127,-10],[127,-10]],[[44258,6598],[-3,-7],[-3,-6],[8,-15],[15,-38],[8,-17],[43,-52],[7,-14],[6,-17],[3,-19],[0,-19],[-1,-5],[-1,-5],[-1,-4],[-7,-16],[-3,-5],[-4,-3],[-14,-6],[-14,-2],[-77,16],[-10,8],[-6,14],[-1,4],[1,8],[0,5],[-2,5],[-5,16],[-20,81],[-6,16],[-8,14],[-14,14],[-17,12],[-49,22],[-115,10],[-85,-15],[-6,5],[41,38],[77,11],[78,12],[28,13],[25,18],[21,22],[17,25],[-1,27],[20,44],[4,28],[10,15],[10,11],[11,8],[46,16],[2,2],[1,4],[1,5],[-1,5],[-1,3],[8,-4],[8,-7],[7,-9],[7,-11],[5,-12],[2,-10],[-1,-11],[-4,-12],[-3,-14],[2,-12],[9,-20],[-13,-15],[-6,-10],[-5,-11],[0,-6],[1,-7],[1,-7],[-7,-17],[0,-10],[2,-10],[1,-12],[-2,-12],[-5,-5],[-5,-5],[-4,-7],[-1,-5],[0,-10],[0,-5],[-2,-8],[-3,-8]],[[29507,7005],[-4,-2],[-2,0],[-7,3],[-1,3],[6,8],[6,8],[7,2],[6,-8],[-3,-5],[-4,-5],[-4,-4]],[[97176,6875],[-47,-11],[-5,1],[0,8],[0,6],[-1,6],[-3,4],[-4,4],[-4,2],[-28,7],[-13,7],[23,35],[35,39],[3,5],[-8,9],[-4,7],[0,6],[10,12],[0,14],[9,9],[13,3],[12,-4],[6,-12],[0,-16],[1,-15],[9,-9],[3,-16],[9,-17],[19,-26],[-5,-10],[-8,-7],[-16,-11],[2,-2],[1,-6],[0,-8],[-1,-5],[-3,-5],[-5,-4]],[[14976,7058],[23,-28],[17,-15],[95,-31],[9,-9],[-1,-10],[-8,-11],[-8,-9],[1,-5],[5,-8],[24,-26],[14,-11],[62,-19],[6,-6],[4,-11],[0,-12],[-3,-12],[-6,-7],[-7,-4],[-128,-10],[-27,7],[-14,0],[-10,-11],[2,-19],[11,-16],[25,-17],[26,-9],[26,1],[61,19],[30,0],[6,-3],[10,-10],[6,-4],[15,-2],[13,-5],[6,-6],[1,-9],[-2,-2],[-7,-2],[5,-7],[8,-3],[14,0],[18,7],[4,0],[-5,6],[-1,3],[-2,6],[1,7],[1,2],[-1,2],[-3,7],[13,11],[40,12],[36,26],[13,4],[13,-2],[5,-5],[2,-10],[110,-47],[5,-6],[10,-3],[9,-4],[2,-13],[-5,-8],[-48,-26],[9,-16],[13,-9],[56,-16],[-3,-4],[-9,-8],[7,0],[15,-5],[6,-4],[2,-3],[3,-8],[1,-3],[3,-2],[24,-4],[-7,-9],[0,-1],[0,-4],[0,-5],[-1,-3],[-2,-1],[-5,0],[-8,-2],[-5,-3],[-2,-5],[0,-6],[2,-3],[2,-2],[1,-3],[-1,-7],[-5,-5],[-5,-3],[-5,-1],[26,-22],[-7,-9],[-9,-8],[-18,-10],[-22,-1],[-66,29],[-75,-4],[-74,-3],[-117,37],[-10,7],[1,0],[0,1],[-1,0],[36,16],[-84,24],[-85,25],[-8,9],[-2,4],[0,7],[-1,3],[-3,4],[-8,4],[-4,3],[2,1],[2,1],[1,2],[1,2],[-6,4],[-32,5],[-3,3],[-8,9],[-12,9],[-129,47],[6,5],[9,7],[5,12],[-1,14],[-6,7],[-19,5],[-5,9],[1,7],[3,4],[8,5],[2,6],[-1,3],[-26,10],[3,6],[1,2],[-50,3],[-30,11],[-11,0],[-11,-5],[-11,-7],[-9,-11],[9,-20],[0,-4],[-14,-8],[-63,4],[-6,2],[-3,3],[-2,4],[0,6],[3,17],[0,8],[1,13],[9,10],[16,14],[-6,5],[-50,19],[-15,0],[-8,1],[-6,7],[9,4],[6,4],[1,6],[-2,4],[0,5],[0,5],[0,5],[-1,4],[-1,2],[-4,3],[-8,9],[-4,7],[-2,6],[-1,7],[2,3],[18,15],[14,24],[20,24],[21,15],[22,9],[11,0],[9,-8],[-2,-3],[-6,-4],[-3,-2],[24,-2],[70,12],[69,12],[118,-16],[5,-5]],[[30040,7093],[-18,-8],[-19,0],[-17,9],[-13,17],[4,12],[14,6],[14,2],[26,-5],[13,-7],[12,-11],[-16,-15]],[[29555,7173],[17,-12],[5,0],[-42,-44],[-5,-7],[-4,-12],[1,-1],[2,-6],[2,-8],[0,-7],[-2,-5],[-4,-6],[-14,-13],[-22,-12],[-15,-18],[-5,-5],[-6,0],[-7,2],[-6,1],[-6,-7],[0,-11],[-4,-5],[-6,0],[-5,3],[-2,6],[-1,7],[-1,8],[2,8],[-23,17],[-4,10],[0,4],[1,3],[1,4],[0,6],[6,4],[35,12],[-4,2],[-8,13],[-5,4],[5,1],[16,0],[22,7],[6,6],[4,4],[2,4],[0,8],[-2,4],[-3,3],[-4,5],[4,17],[52,12],[13,-1],[14,-5]],[[20936,7113],[-33,-4],[-31,7],[-24,12],[-15,13],[-10,14],[-17,32],[-6,14],[-6,25],[-4,9],[26,30],[13,8],[16,-1],[6,-5],[15,-23],[54,-63],[14,-12],[13,-8],[10,-9],[6,-17],[-27,-22]],[[25145,7252],[-9,-12],[-13,-32],[-8,-12],[-13,-8],[-16,-4],[-30,-1],[-55,15],[-38,-16],[-24,6],[-21,21],[-12,36],[15,28],[19,-2],[34,-25],[12,0],[12,6],[12,11],[9,16],[11,27],[3,7],[3,5],[5,4],[6,2],[12,3],[60,-8],[46,-19],[21,-19],[-8,-11],[-33,-18]],[[29181,7318],[28,-1],[95,-9],[54,-23],[25,-42],[-5,-17],[-41,-49],[-3,-9],[-3,-20],[-2,-9],[-5,-9],[-19,-15],[-2,-26],[-52,-15],[-17,-16],[11,-3],[35,0],[10,-5],[6,-8],[1,-14],[-6,-19],[14,-4],[7,-5],[5,-8],[5,-11],[22,-16],[-6,-11],[-6,-27],[-4,-14],[-6,-11],[-7,-9],[-15,-14],[-21,-5],[-118,53],[-119,53],[-119,53],[-43,37],[-6,13],[-17,49],[-3,12],[6,21],[8,14],[10,9],[50,22],[31,-6],[62,-33],[30,4],[-13,19],[8,12],[17,5],[77,-6],[16,8],[-1,1],[0,1],[1,0],[-48,20],[-55,2],[-26,7],[-56,40],[-16,15],[-4,2],[22,9],[34,5],[5,-1],[4,6],[26,20],[12,3],[30,2],[97,-27]],[[23940,7282],[-13,-1],[-38,5],[-20,10],[-16,17],[17,28],[23,4],[46,-22],[13,-10],[4,-5],[2,-4],[0,-10],[-6,-8],[-12,-4]],[[22824,7406],[-30,-5],[-30,6],[-23,13],[25,18],[28,3],[53,-15],[-23,-20]],[[24745,7337],[-4,-9],[7,6],[13,1],[20,-3],[8,-6],[5,-8],[3,-12],[2,-16],[-4,-20],[-7,-20],[-16,-33],[-27,-39],[-30,-29],[-50,-26],[-51,-11],[-33,9],[-5,3],[11,40],[2,24],[1,7],[-1,6],[4,17],[2,35],[2,14],[9,5],[9,8],[14,19],[-54,67],[-8,16],[-17,52],[-13,22],[-6,13],[83,35],[96,5],[36,-12],[14,-10],[13,-14],[10,-20],[6,-36],[-8,-28],[-32,-44],[-4,-8]],[[24101,7454],[-11,-1],[-11,4],[-11,7],[-10,9],[9,14],[9,11],[14,9],[16,2],[16,-3],[14,-7],[-6,-20],[-8,-13],[-11,-7],[-10,-5]],[[33103,7484],[-33,-8],[-6,4],[4,12],[10,15],[2,3],[19,-3],[19,-10],[-7,-8],[-8,-5]],[[23652,7442],[-97,-13],[-20,15],[1,10],[7,12],[13,16],[9,4],[99,28],[63,39],[9,1],[8,-2],[5,-6],[2,-7],[1,-18],[1,-7],[0,-3],[1,-4],[21,-30],[3,-6],[-30,-15],[-96,-14]],[[45527,7423],[-27,-13],[-27,1],[-24,11],[-17,15],[-12,25],[-9,31],[1,30],[12,23],[17,14],[5,2],[8,-1],[7,-4],[7,-5],[6,-9],[29,-62],[16,-25],[6,-16],[2,-17]],[[30406,7665],[-18,-1],[-14,18],[12,11],[7,4],[9,2],[29,-4],[8,-6],[-33,-24]],[[33298,7681],[-15,-2],[-16,10],[-6,20],[6,16],[14,1],[15,-10],[7,-18],[-5,-17]],[[69102,7763],[3,-2],[1,-1],[6,-6],[10,-16],[3,-9],[3,-13],[-3,-12],[-6,-9],[-6,-7],[-19,-14],[-80,-30],[-10,1],[-6,9],[15,28],[43,47],[6,13],[2,16],[4,7],[10,8],[12,5],[7,-1],[1,-3],[1,-6],[1,-2],[1,-2],[1,-1]],[[46465,7814],[18,-19],[26,-25],[12,-16],[9,-23],[-21,-17],[-24,-2],[-25,9],[-38,24],[-12,13],[-8,17],[-5,22],[20,32],[24,1],[24,-16]],[[69385,7797],[-6,-2],[-2,0],[-7,2],[-2,0],[6,9],[-13,31],[-5,8],[4,4],[7,10],[1,2],[0,2],[0,2],[0,5],[-1,1],[8,9],[3,4],[1,2],[0,2],[0,1],[2,2],[5,4],[7,1],[12,-1],[18,-11],[-3,-13],[-4,-10],[-26,-45],[-3,-11],[1,0],[0,-1],[1,-1],[1,-1],[-3,-3],[-2,-2]],[[22699,7783],[-7,-29],[-3,-5],[-9,-11],[15,0],[7,4],[30,33],[9,6],[17,3],[21,-4],[40,-19],[-5,-3],[-23,-25],[35,1],[17,12],[3,29],[-5,13],[-8,4],[-8,2],[-7,7],[-3,17],[3,24],[4,20],[3,8],[-17,13],[13,9],[29,7],[38,-3],[31,-12],[5,1],[-42,-25],[60,-22],[12,4],[-7,-20],[-6,-12],[-8,-8],[-42,-22],[-7,-7],[8,-6],[6,-8],[10,-23],[4,-6],[12,-13],[22,-10],[24,18],[23,34],[17,34],[7,18],[6,20],[9,42],[10,30],[16,18],[19,7],[18,1],[9,-3],[25,-13],[104,15],[22,-5],[20,-10],[40,-32],[-9,-33],[-5,-15],[-7,-11],[-8,-5],[-9,-1],[-61,12],[-24,-6],[28,-24],[7,-1],[-16,-13],[-16,-8],[-34,-9],[-106,-64],[24,-20],[26,-10],[27,1],[79,42],[135,29],[60,52],[22,5],[18,-17],[-27,-10],[-8,-6],[1,0],[0,-1],[59,-28],[-10,-15],[-14,-10],[-14,-7],[-82,-8],[-82,-8],[-29,-13],[-12,-9],[-10,-11],[1,0],[0,-1],[17,-3],[86,23],[18,-1],[15,-11],[16,-24],[7,-5],[8,-3],[16,-1],[55,12],[15,-2],[20,-11],[-3,-12],[-12,-14],[-9,-14],[-67,-21],[-74,1],[-21,-15],[13,3],[17,-8],[13,-19],[0,-26],[-13,-17],[-18,-5],[-76,6],[-77,7],[-14,9],[-9,11],[-7,6],[-7,-2],[-10,-12],[-4,-15],[-19,-7],[-22,-1],[-53,11],[-12,8],[-6,9],[-6,8],[-5,5],[-8,2],[-94,-30],[-136,-4],[-137,-5],[-25,18],[13,8],[9,11],[16,27],[-120,-10],[-119,-10],[-20,22],[18,20],[42,11],[18,20],[-80,0],[-81,1],[-35,24],[-25,7],[-44,24],[-18,6],[-34,-9],[-14,1],[-10,15],[-111,13],[-111,14],[-110,14],[-22,14],[-10,2],[-49,-18],[-18,0],[-60,17],[-31,22],[-8,37],[5,17],[8,11],[52,26],[115,14],[114,14],[115,14],[115,14],[54,31],[30,3],[29,-13],[23,-30],[-13,-23],[-17,-6],[-74,-7],[-20,-8],[-17,-18],[119,15],[22,-3],[22,-11],[-10,-20],[2,-9],[10,-2],[31,5],[8,5],[8,10],[16,36],[10,10],[14,4],[13,0],[27,-7],[55,-32],[45,-44],[12,-7],[49,-5],[24,-8],[14,-1],[14,5],[-31,47],[-11,10],[-48,19],[-40,29],[-14,3],[8,16],[10,11],[22,10],[11,9],[25,38],[7,5],[8,3],[82,2],[76,-30],[76,-31],[-16,-33],[-20,-18],[-49,-17],[7,-20],[3,-5],[3,-5],[4,-11],[-4,-5],[-6,-11],[-5,-5]],[[49103,8391],[13,-34],[54,-44],[12,-24],[-26,-7],[-27,-1],[-25,6],[-22,12],[-10,9],[-9,13],[-7,13],[-5,11],[4,5],[3,5],[5,12],[-1,0],[0,1],[-10,15],[12,8],[21,2],[18,-2]],[[33186,8392],[-25,-7],[-38,8],[-37,18],[-19,25],[12,21],[28,15],[34,4],[29,-9],[13,-17],[7,-23],[0,-21],[-4,-14]],[[49194,8610],[78,-9],[17,-7],[15,-13],[-18,-15],[-46,-21],[5,-16],[29,-12],[87,28],[48,-10],[13,-9],[-3,-3],[-12,-22],[-4,-4],[-14,-8],[-5,-5],[-5,-6],[-5,-8],[-4,-9],[-7,-20],[-2,-12],[2,-10],[-3,-6],[-73,-69],[-47,-23],[-18,2],[-5,7],[-1,17],[-6,9],[1,11],[-1,8],[-2,8],[-4,8],[6,-1],[7,6],[11,15],[7,5],[17,9],[7,1],[-89,34],[6,2],[5,8],[1,12],[-2,12],[-4,8],[-6,6],[-7,3],[-49,15],[-70,43],[-40,8],[4,27],[12,7],[32,-6],[64,14],[78,-9]],[[50595,8630],[-8,-15],[-17,1],[-18,11],[-11,15],[1,4],[0,3],[0,3],[0,5],[13,4],[18,-2],[16,-10],[6,-19]],[[29476,8677],[74,-59],[20,-28],[-3,-19],[-17,-15],[-109,-60],[-108,-59],[-71,-14],[-71,-14],[-113,-23],[-113,-23],[-113,-22],[-59,9],[-17,9],[-8,7],[-5,6],[-4,9],[-18,57],[-3,5],[20,27],[24,19],[76,30],[127,18],[126,18],[19,12],[15,17],[10,21],[2,13],[0,28],[1,9],[8,9],[13,4],[14,1],[13,-5],[10,-9],[41,-56],[22,-55],[8,1],[21,18],[6,7],[1,56],[-5,37],[5,10],[21,1],[20,-7],[19,-12],[21,-21],[5,-4],[15,-5],[-13,37],[-3,6],[8,12],[8,7],[9,3],[9,0],[42,-13]],[[33134,8594],[-27,-3],[-12,4],[-8,5],[-6,8],[-21,39],[0,6],[2,8],[2,7],[1,1],[-2,8],[0,7],[1,6],[4,6],[15,10],[18,5],[74,3],[18,-6],[14,-14],[2,-5],[3,-20],[0,-8],[-3,-15],[-6,-10],[-21,-19],[-48,-23]],[[48350,8764],[-11,-25],[3,-20],[23,-30],[-10,-9],[-55,-28],[-9,-1],[-7,5],[-5,13],[1,3],[2,2],[1,2],[-66,59],[-10,16],[28,-9],[16,0],[58,32],[20,2],[21,-12]],[[50821,8651],[-59,-9],[-17,4],[-15,12],[-9,19],[-5,27],[19,18],[112,64],[24,7],[23,-11],[12,-26],[-3,-30],[-12,-26],[-14,-19],[-27,-18],[-29,-12]],[[95420,8791],[-47,-10],[-10,5],[3,1],[2,2],[2,2],[1,2],[3,4],[13,13],[16,4],[17,-4],[14,-11],[-14,-8]],[[49130,8700],[-83,-4],[-13,5],[-5,3],[-4,6],[4,20],[9,13],[19,21],[27,44],[10,10],[32,19],[43,12],[43,-1],[32,-19],[7,-18],[4,-26],[1,-29],[-2,-21],[-8,-15],[-10,-8],[-23,-7],[-83,-5]],[[30092,8839],[22,-1],[24,13],[26,6],[25,-19],[-6,-15],[-8,-17],[-10,-15],[-36,-35],[-19,-8],[-11,-1],[-11,3],[-8,10],[0,2],[0,1],[0,2],[0,1],[-4,7],[-5,5],[-4,7],[-2,11],[0,4],[1,7],[0,4],[-1,4],[-1,4],[-13,20],[23,16],[14,3],[4,-19]],[[70045,8629],[-22,-2],[-72,18],[-11,10],[-31,53],[-4,9],[-3,9],[-4,20],[-1,15],[0,29],[-2,15],[3,8],[2,3],[3,3],[6,15],[11,15],[13,10],[13,-2],[3,-6],[1,-11],[2,-12],[5,-8],[0,-20],[4,-16],[7,-14],[7,-10],[9,-10],[10,-6],[10,-3],[5,-2],[4,-7],[2,-9],[2,-9],[3,-9],[4,-6],[4,-2],[23,-1],[4,-2],[3,-5],[1,-8],[-2,-7],[-2,-7],[-1,-6],[0,-2],[0,-1],[1,-2],[0,-1],[5,-10],[0,-4],[-7,-8],[-8,-4]],[[30360,8817],[-10,0],[-10,4],[2,14],[1,12],[1,11],[4,9],[7,5],[6,1],[6,-1],[7,-3],[6,-5],[-3,-4],[-2,-4],[-1,-5],[0,-6],[1,-4],[3,-5],[0,-3],[-3,-7],[-5,-5],[-10,-4]],[[51240,8718],[-37,-2],[-35,21],[-28,40],[-16,58],[23,28],[46,11],[48,-4],[29,-19],[13,-45],[-4,-40],[-17,-31],[-22,-17]],[[51618,8835],[-22,-22],[-29,7],[-29,21],[-20,22],[26,16],[26,2],[25,-14],[23,-32]],[[94968,8862],[-9,-2],[-8,4],[-4,8],[6,11],[9,3],[9,-4],[6,-10],[-9,-10]],[[51806,8883],[-10,-1],[-10,6],[-28,26],[-10,13],[-6,15],[20,0],[30,-8],[23,-17],[0,-25],[-9,-9]],[[57458,8780],[-3,-9],[-6,-7],[-12,-4],[-10,1],[-21,9],[-11,1],[-16,-5],[-16,-15],[-14,-3],[-111,35],[-20,14],[-3,12],[-7,9],[-5,9],[-4,10],[-2,9],[8,13],[-1,9],[1,8],[2,7],[4,7],[7,9],[36,25],[6,6],[14,20],[9,9],[13,9],[17,7],[36,4],[36,-9],[17,-10],[7,-6],[5,-7],[4,-9],[9,-34],[7,-22],[15,-31],[13,-17],[4,-8],[1,-8],[-2,-9],[-7,-29]],[[50402,8958],[4,-32],[0,-1],[-26,-31],[-26,-42],[-5,-17],[-10,-45],[-7,-16],[-9,-6],[-4,11],[-2,22],[-7,26],[-16,29],[-16,19],[-13,26],[-4,52],[11,23],[17,11],[71,14],[18,-1],[13,-9],[7,-14],[4,-19]],[[53055,8969],[-22,-3],[-30,4],[-66,26],[-10,12],[27,4],[72,-8],[26,-17],[3,-18]],[[70177,9017],[6,-6],[16,3],[3,-2],[0,-11],[-47,-40],[-28,-11],[-13,20],[6,9],[6,5],[4,1],[3,-5],[7,3],[6,6],[5,7],[14,26],[5,6],[6,5],[0,-5],[0,-4],[0,-4],[1,-3]],[[33006,9026],[-19,-4],[-12,2],[-11,5],[-11,8],[-11,12],[2,21],[2,7],[2,7],[4,6],[3,4],[4,4],[10,5],[12,-1],[21,-9],[10,-7],[5,-5],[4,-7],[2,-6],[1,-3],[0,-4],[0,-3],[-1,-4],[0,-3],[0,-4],[3,-11],[-20,-10]],[[29245,9155],[0,-24],[47,-30],[3,-4],[4,-5],[5,-12],[3,-6],[5,-5],[14,-10],[3,-4],[2,-3],[1,-6],[2,-9],[-3,0],[-10,-7],[-36,-7],[-10,1],[-5,0],[-4,-5],[-2,-8],[0,-8],[2,-8],[3,-8],[3,-5],[11,-11],[-2,-10],[-4,-8],[-5,-6],[-5,-5],[-20,-11],[-13,-14],[-5,-4],[-27,-7],[-85,15],[-85,14],[-58,13],[-26,19],[-13,38],[8,13],[3,20],[4,22],[15,19],[34,16],[103,13],[-2,3],[-9,22],[-4,4],[-4,2],[-25,-1],[-8,3],[-5,11],[132,30],[49,-11],[19,-16]],[[54492,8971],[-14,0],[-63,50],[-58,15],[-27,19],[-10,35],[9,21],[12,19],[14,15],[12,9],[69,28],[76,7],[85,-7],[24,-15],[-13,-20],[-72,-31],[-6,-6],[-6,-6],[-5,-8],[-3,-8],[-3,-13],[0,-10],[1,-12],[0,-17],[-4,-14],[-13,-40],[-5,-11]],[[30014,9203],[-19,-17],[2,-3],[11,-21],[-9,0],[-9,6],[-21,24],[-9,7],[-4,2],[-3,1],[-3,-1],[-3,-1],[-2,-2],[-2,-6],[1,-3],[3,-3],[1,-5],[0,-6],[-2,-3],[-3,0],[-79,25],[-79,25],[-7,6],[-8,12],[-3,4],[-1,3],[0,3],[-1,10],[-9,10],[-22,17],[-7,16],[4,16],[11,15],[26,21],[24,7],[24,-2],[73,-29],[25,-22],[4,-11],[6,-10],[10,-13],[12,-8],[3,-4],[2,-5],[2,-10],[2,-5],[3,-3],[3,-3],[36,-15],[15,-12],[2,-7]],[[32832,9307],[2,-12],[-8,-2],[-17,3],[-9,-8],[5,-19],[4,-10],[3,-4],[-3,-3],[-7,-11],[-7,-7],[-2,-5],[5,-12],[2,-2],[-6,-2],[-5,-4],[-2,-8],[2,-14],[-6,-6],[-9,-6],[-12,-2],[-11,2],[-9,7],[-1,5],[2,6],[1,6],[-5,12],[-13,24],[-4,13],[0,5],[1,3],[2,3],[2,3],[1,5],[-1,3],[-2,3],[-1,4],[0,5],[2,8],[0,5],[-4,11],[-19,29],[-12,26],[-44,55],[-11,28],[-8,27],[-11,24],[12,18],[20,7],[23,-1],[52,-22],[28,-24],[12,-15],[8,-18],[44,-46],[12,-6],[-4,-9],[1,-7],[2,-8],[4,-6],[9,-10],[2,-4],[3,-6],[3,-6],[2,-7],[1,-6],[0,-4],[-4,-5],[-5,-2],[-10,-1]],[[30549,9493],[-2,-1],[-4,1],[-4,-3],[0,-3],[1,-7],[0,-3],[-1,-3],[-1,-3],[-4,-4],[-4,-4],[-5,-1],[-5,1],[-4,4],[10,-20],[4,-4],[-1,-2],[-4,-12],[9,5],[9,2],[48,-9],[29,10],[8,-4],[10,-13],[39,-72],[4,-5],[3,-3],[0,-5],[0,-2],[-4,-7],[10,-19],[9,-10],[2,-3],[0,-6],[0,-5],[-1,-5],[2,-6],[3,-4],[13,-8],[27,-24],[-3,-12],[-1,-5],[1,-4],[4,-20],[0,-4],[0,-4],[-1,-2],[-2,-4],[-2,-3],[-1,-1],[3,-11],[2,-11],[-1,-9],[-3,-7],[0,-9],[5,-14],[9,-20],[4,-11],[1,-7],[-2,-8],[-4,-10],[8,-7],[3,-4],[3,-7],[2,-6],[0,-8],[1,-6],[3,-6],[20,-30],[31,-66],[86,-124],[17,-36],[6,-20],[9,-38],[5,-15],[7,-9],[16,-12],[7,-9],[2,-4],[1,-2],[1,-3],[-1,-4],[-2,-5],[-1,-3],[2,-3],[9,-4],[3,-10],[0,-23],[5,-9],[2,-1],[2,-1],[2,-1],[1,-4],[0,-3],[-2,-9],[-1,-2],[3,-3],[8,-7],[6,-13],[1,-2],[-39,-7],[-3,1],[8,-8],[30,-7],[10,-11],[3,-9],[-3,-20],[4,-52],[-1,-4],[-3,-11],[8,-24],[2,-11],[0,-3],[-2,-4],[-2,-4],[-2,-2],[3,-11],[13,-32],[-2,-16],[0,-23],[2,-38],[0,-6],[0,-5],[1,-6],[2,-8],[-9,-5],[-2,-10],[1,-13],[2,-12],[-3,-4],[-1,-4],[0,-4],[-1,-4],[5,-13],[5,-13],[4,-15],[4,-27],[3,-11],[2,-6],[8,-16],[-9,-16],[-4,-18],[-1,-21],[1,-72],[-3,-22],[-9,-15],[-16,-7],[-32,3],[-16,-4],[5,-7],[5,-11],[5,-12],[2,-12],[0,-8],[1,-4],[2,-3],[12,-12],[2,-4],[3,-7],[1,-7],[1,-8],[-1,-8],[-2,-7],[-11,-22],[-5,-20],[-1,-39],[-6,-12],[-17,-7],[-16,5],[-32,16],[-13,2],[-7,-2],[-6,-4],[-3,-7],[0,-7],[3,-6],[3,-5],[-5,-5],[-23,-12],[-17,1],[1,-4],[2,-6],[0,-4],[0,-2],[-2,-4],[0,-3],[1,-3],[2,-6],[0,-1],[-4,-8],[-5,-4],[-5,-1],[-16,2],[-37,-5],[-2,-2],[-1,-3],[-2,-5],[0,-4],[1,-4],[-1,-5],[-3,-5],[-7,-2],[-9,0],[4,-26],[6,-3],[14,-16],[-22,-24],[-118,-27],[-118,-28],[-52,3],[-74,-22],[-34,0],[-7,5],[-5,10],[-2,13],[-1,15],[-3,13],[-4,7],[-5,1],[-6,-1],[-5,-3],[-6,-6],[-3,-1],[-7,-1],[-2,-1],[-4,-6],[-1,-8],[0,-9],[-2,-8],[-6,-7],[-8,-3],[-75,6],[-74,7],[-132,-14],[-132,-13],[-29,21],[1,8],[1,8],[3,6],[2,7],[16,21],[-21,-1],[-11,-3],[-28,-23],[-10,-4],[-10,-1],[-22,8],[-86,72],[-11,12],[-5,13],[3,5],[17,23],[76,54],[40,13],[62,-4],[37,-11],[7,-4],[6,-8],[4,-10],[2,-4],[3,-3],[3,-3],[14,-7],[17,1],[-5,8],[-1,4],[2,6],[2,3],[4,2],[3,1],[10,1],[54,-18],[107,-10],[108,-9],[107,-10],[16,5],[7,3],[1,2],[1,3],[-1,3],[0,2],[0,3],[2,5],[4,2],[8,1],[108,44],[3,3],[6,12],[3,2],[5,2],[2,2],[-19,10],[-33,7],[-4,6],[-3,15],[-10,11],[-13,7],[-13,2],[-77,-22],[-86,-47],[-90,-18],[-51,5],[-40,26],[2,1],[7,9],[-109,36],[4,14],[8,8],[129,21],[128,21],[88,35],[8,5],[2,8],[-1,3],[-4,5],[-2,3],[-1,10],[3,7],[5,6],[4,3],[-4,6],[-19,14],[-9,13],[-6,3],[-6,-1],[-52,-21],[-14,-1],[-14,2],[-38,23],[-25,5],[-25,-4],[-85,-35],[-11,0],[-7,7],[0,3],[-1,6],[0,3],[2,2],[5,2],[2,3],[1,6],[0,7],[-2,18],[-1,2],[-1,1],[-9,-1],[-2,1],[-3,2],[-3,8],[-3,3],[-2,2],[-24,11],[-1,1],[0,3],[-2,5],[-1,2],[0,1],[-33,19],[-8,1],[-7,-5],[2,4],[2,11],[2,5],[-26,19],[1,3],[2,5],[1,3],[-25,6],[-2,-1],[-2,-3],[-1,-8],[-2,-3],[-3,-2],[-10,-5],[-5,-4],[-4,-5],[-2,-8],[2,-10],[-27,-21],[-3,-10],[-25,10],[-9,-1],[-3,-4],[-2,-8],[0,-9],[0,-8],[1,-1],[3,-4],[-2,-8],[-5,-13],[-3,-19],[0,-1],[-8,-15],[-11,-10],[-22,-11],[-24,-5],[-25,2],[-52,17],[-52,28],[-26,9],[-79,-2],[-25,-15],[105,-88],[-79,-49],[-6,-22],[-24,-15],[-31,-10],[-33,1],[-27,17],[-26,46],[-12,13],[-11,2],[-73,-20],[-44,6],[-75,42],[-75,41],[-12,13],[-8,16],[-2,23],[10,21],[15,7],[17,1],[13,5],[-3,11],[20,5],[-3,6],[-5,5],[-11,5],[2,3],[1,3],[1,1],[2,2],[-5,7],[-7,3],[-14,1],[-24,12],[-3,6],[9,15],[14,8],[37,10],[2,10],[6,10],[7,10],[6,5],[12,7],[18,5],[36,-1],[26,-15],[41,-44],[71,-24],[10,0],[18,6],[3,4],[0,9],[-5,6],[-11,8],[-17,17],[3,13],[-1,14],[-5,13],[-8,13],[7,11],[-7,14],[4,14],[15,12],[40,15],[28,0],[75,-43],[18,-19],[9,-14],[49,-34],[15,-23],[18,7],[34,35],[-18,22],[-50,25],[-21,27],[-4,13],[1,13],[4,10],[7,9],[12,7],[50,5],[90,-27],[90,-26],[31,1],[5,2],[5,14],[12,7],[105,-6],[-5,8],[-3,5],[0,6],[2,3],[4,3],[4,1],[2,0],[-39,24],[-81,18],[-80,17],[-44,29],[-20,22],[7,17],[10,8],[41,0],[16,4],[3,3],[6,10],[3,3],[8,3],[71,-7],[38,6],[98,-28],[98,-28],[40,14],[52,40],[4,5],[2,5],[5,12],[2,5],[-5,3],[-6,7],[-4,9],[2,11],[4,4],[5,0],[39,-18],[9,-1],[9,4],[18,14],[8,3],[62,-21],[24,-1],[85,32],[31,-4],[25,-21],[21,-31],[34,-62],[4,-4],[18,-5],[13,0],[2,2],[0,5],[3,0],[8,-3],[0,4],[0,13],[0,2],[2,4],[0,3],[-1,1],[-1,4],[0,1],[1,10],[3,10],[3,9],[5,4],[-8,22],[-2,13],[-1,13],[1,12],[3,9],[9,16],[-5,6],[-1,3],[6,6],[2,4],[1,5],[-2,3],[-14,9],[-5,2],[-3,-2],[-3,-3],[-10,-17],[-2,-4],[-3,-1],[-7,1],[-12,13],[-6,4],[-38,-4],[-4,1],[-12,9],[-53,13],[-83,-8],[-23,7],[-60,32],[-46,6],[-9,7],[-3,3],[-2,5],[-1,5],[-3,14],[-1,3],[-1,3],[-8,5],[4,18],[9,14],[40,39],[3,7],[2,5],[12,13],[4,2],[-6,18],[7,11],[122,40],[123,40],[11,-1],[106,-52],[27,-2],[6,4],[-3,14],[-8,10],[-15,13],[-123,66],[-33,4],[-3,4],[1,3],[1,0],[-3,19],[8,8],[9,2],[4,4],[-1,6],[-1,4],[-2,4],[-3,3],[-10,2],[-67,-19],[-19,1],[-8,5],[-23,22],[-6,3],[-7,1],[-22,-7],[-5,-5],[-1,-9],[0,-1],[2,-4],[0,-1],[-8,-3],[-33,-31],[-6,-2],[-5,5],[-5,0],[-17,-7],[-5,1],[-4,4],[-7,10],[-10,6],[-46,7],[-5,3],[-3,5],[-6,13],[-4,5],[-5,3],[-41,10],[-41,21],[-24,20],[-8,8],[-2,5],[-4,11],[-2,4],[-3,2],[-8,6],[-9,9],[-4,7],[-1,8],[1,5],[10,13],[-5,9],[4,9],[8,8],[5,10],[2,27],[2,2],[-3,4],[-5,5],[-3,4],[-2,6],[0,5],[2,3],[3,2],[-4,8],[-6,9],[-4,8],[4,7],[2,8],[8,7],[33,15],[6,3],[-3,3],[-3,3],[-2,5],[-1,6],[0,3],[3,9],[1,1],[0,14],[5,12],[13,21],[-1,3],[-1,2],[-2,1],[-1,1],[3,11],[2,4],[3,4],[3,3],[10,4],[-5,6],[-15,20],[2,4],[3,3],[3,2],[2,1],[-7,5],[-35,7],[-6,3],[-4,7],[-3,4],[-21,6],[-7,6],[-3,7],[-5,2],[-28,-1],[-5,3],[13,4],[3,6],[-4,10],[-24,27],[-4,4],[4,9],[6,22],[5,7],[-3,3],[-14,22],[-7,7],[-3,6],[1,9],[3,9],[5,7],[34,38],[9,18],[0,3],[85,28],[84,29],[109,0],[25,10],[5,11],[9,6],[76,6],[36,13],[9,1],[10,-4],[24,-30],[43,-15],[15,-16],[2,-7],[1,-7],[0,-14],[1,-9],[2,-7],[5,-13],[-10,-8],[-1,-1],[8,-28],[2,-4],[10,-9],[11,-14],[-9,-2],[-9,-5],[-4,-3],[-2,-4],[-4,-11],[12,-6],[5,-6],[3,-11],[0,-10]],[[24855,9718],[-3,0],[-6,0],[-4,0],[-4,-1],[-4,-1],[-2,-1],[-1,0],[-1,1],[-1,3],[-3,5],[-2,5],[-2,5],[1,7],[3,3],[1,4],[0,6],[1,5],[1,4],[0,3],[1,2],[2,1],[5,0],[3,-1],[5,0],[2,-1],[4,-2],[4,-6],[3,-6],[0,-2],[0,-4],[1,-4],[0,-5],[2,-4],[-1,-7],[-3,-7],[-2,-1],[0,-1]],[[33145,9728],[-19,-2],[-11,3],[-30,20],[-29,22],[-7,10],[15,14],[24,2],[25,-8],[21,-14],[13,-18],[5,-17],[-7,-12]],[[31343,10106],[-10,-9],[-10,0],[-5,16],[4,7],[10,1],[19,-4],[-8,-11]],[[31423,10268],[-7,-3],[-27,4],[-6,4],[-6,8],[27,8],[13,-3],[12,-11],[-6,-7]],[[31330,10263],[-10,-1],[-8,6],[-4,4],[-1,5],[11,11],[5,9],[1,2],[-29,8],[28,12],[14,2],[10,-3],[4,-2],[14,-18],[-5,-10],[-7,-9],[-14,-12],[-9,-4]],[[32059,10430],[6,-6],[-24,-24],[-7,-5],[-9,-3],[-8,0],[-7,6],[5,7],[-8,6],[-7,3],[-8,-2],[-21,-15],[-7,-1],[-7,4],[2,1],[2,6],[2,7],[1,5],[0,5],[-1,5],[-2,8],[12,-1],[39,-9],[-2,3],[-4,11],[8,0],[45,-11]],[[31324,10390],[-6,-19],[-4,1],[-14,-2],[8,-9],[1,-2],[-13,-19],[-16,-11],[-33,-5],[-38,7],[-17,10],[-10,8],[-2,9],[2,2],[11,2],[3,3],[1,3],[1,3],[2,5],[2,3],[5,4],[3,3],[-5,1],[-5,-1],[-13,-9],[-6,-1],[-5,1],[-3,8],[3,11],[7,7],[68,39],[87,-6],[9,-6],[8,-19],[-31,-21]],[[63192,10452],[57,-12],[10,2],[10,5],[18,14],[3,1],[4,-1],[1,0],[3,-4],[11,-13],[2,0],[-36,-20],[-72,-13],[-18,3],[-16,9],[14,37],[7,11],[9,8],[11,4],[14,-2],[-4,-10],[-10,-9],[-11,-7],[-7,-3]],[[31389,10441],[-24,-6],[-21,8],[22,18],[16,7],[5,4],[4,8],[2,3],[4,2],[10,3],[11,0],[23,-7],[-5,-6],[-6,-5],[-7,-1],[-14,-15],[-20,-13]],[[31203,10580],[-11,-8],[-10,6],[4,12],[11,13],[12,6],[12,-4],[-8,-12],[-10,-13]],[[95782,10465],[-16,-12],[-16,2],[-13,17],[0,9],[-1,7],[-3,8],[-3,6],[8,9],[6,15],[4,18],[0,19],[-2,8],[-5,17],[-3,6],[0,3],[1,4],[1,3],[1,2],[-4,20],[0,11],[5,2],[10,-7],[31,-34],[5,-8],[-1,-14],[6,-7],[8,-7],[7,-10],[4,-16],[-3,-14],[-7,-13],[-12,-14],[2,-2],[1,-2],[2,-2],[3,-3],[-16,-21]],[[31196,10623],[-19,-6],[-13,18],[30,30],[8,5],[10,3],[9,-1],[8,-8],[-14,-22],[-19,-19]],[[31220,10708],[-7,-1],[-7,3],[-7,5],[3,2],[2,2],[3,3],[1,4],[1,5],[-1,4],[-2,4],[2,4],[2,3],[3,2],[3,3],[3,8],[2,3],[3,2],[5,0],[5,-5],[2,-7],[2,-10],[0,-9],[0,-3],[-2,-5],[-2,-4],[-3,-3],[-5,-5],[-6,-5]],[[83524,10846],[6,-2],[9,2],[26,12],[8,0],[-93,-48],[-5,-1],[-6,5],[-3,7],[-1,9],[4,9],[2,4],[5,11],[2,4],[5,4],[5,1],[13,0],[12,-5],[2,-1],[2,-4],[2,-3],[2,-3],[2,-1],[1,0]],[[83617,10881],[-24,-5],[-15,6],[17,10],[29,24],[22,6],[18,0],[0,-4],[-7,-12],[-16,-13],[-24,-12]],[[31283,10849],[-15,-3],[-16,2],[-31,14],[11,8],[10,27],[10,13],[-3,6],[-2,6],[-1,5],[-2,5],[10,12],[11,4],[11,-1],[27,-14],[5,-5],[1,-3],[1,-2],[1,-3],[1,-3],[1,-3],[3,-5],[1,-3],[3,-11],[2,-4],[-9,-14],[-9,-12],[-11,-9],[-10,-7]],[[73854,10829],[-25,-19],[-48,-11],[-7,3],[7,14],[3,6],[5,5],[-7,0],[-68,37],[-10,12],[-8,15],[-8,18],[-6,21],[5,17],[9,8],[10,3],[39,-1],[23,-10],[15,-1],[10,-3],[1,0],[30,-9],[8,-6],[11,-15],[29,-57],[-4,-12],[-14,-15]],[[63557,10929],[-12,-9],[-47,3],[-54,-18],[-25,-1],[-8,25],[0,9],[2,9],[4,9],[9,8],[11,5],[97,-2],[14,-10],[9,-28]],[[95363,10921],[1,0],[-1,-1],[0,-1],[1,0],[-8,-8],[5,-13],[2,-4],[0,-1],[1,0],[-5,-4],[-1,-2],[1,-28],[-13,5],[-16,20],[-10,18],[-20,60],[0,1],[0,1],[-1,1],[10,11],[15,-1],[15,-8],[10,-8],[1,-9],[1,-5],[0,-5],[-3,-9],[10,-7],[6,-2],[-1,-1]],[[74049,10958],[9,-2],[18,1],[-16,-15],[-34,-23],[-26,-7],[-16,2],[-8,4],[-14,14],[-8,10],[-2,9],[8,15],[10,10],[10,6],[52,6],[5,-1],[-1,-5],[0,-5],[2,-5],[3,-5],[8,-9]],[[31115,10754],[2,-2],[15,2],[11,-2],[11,-5],[11,-8],[4,-4],[1,-5],[0,-6],[-3,-7],[8,-5],[17,-4],[9,-4],[-2,-2],[-16,-13],[-8,-10],[-5,-2],[-9,1],[-4,-1],[-2,-1],[-1,-2],[-2,-3],[-1,-3],[0,-4],[1,-6],[-1,-3],[-3,-5],[-4,-3],[-9,-4],[-13,0],[-4,-3],[-2,-4],[0,-5],[2,-4],[0,-6],[-1,-4],[-2,-3],[-5,-3],[-29,-8],[-40,-30],[18,-9],[18,-3],[29,3],[14,-6],[5,-21],[-2,-12],[-5,-11],[-26,-36],[-9,-7],[-2,-4],[-2,-4],[-1,-5],[-1,-3],[-3,-3],[-2,1],[-21,15],[-3,5],[-3,4],[-3,4],[-5,2],[-5,-1],[-30,-16],[-6,-6],[-5,-9],[4,-5],[5,-6],[2,-9],[-1,-10],[-5,-9],[-18,-22],[-18,-32],[-4,-6],[-5,-1],[-5,2],[-14,15],[-5,3],[-5,-4],[2,-2],[5,-2],[-3,-4],[-4,-3],[-17,-9],[-40,-7],[-4,1],[-4,3],[-2,4],[-3,7],[-2,7],[1,6],[0,2],[2,1],[0,2],[0,3],[-1,2],[-2,1],[-4,2],[-11,13],[-5,2],[-8,0],[-4,2],[-3,3],[-2,3],[-2,6],[-1,2],[-7,8],[-7,13],[-6,9],[-3,6],[-2,8],[-2,9],[0,15],[3,16],[4,14],[11,26],[14,26],[63,71],[11,19],[1,3],[1,4],[2,13],[21,54],[92,171],[16,19],[128,97],[8,3],[8,1],[9,0],[8,-3],[22,-15],[0,-7],[0,-6],[2,-4],[3,-3],[-7,-8],[-1,-3],[-3,-7],[-1,-3],[-16,-9],[-2,-4],[0,-2],[1,-2],[2,-3],[-6,-7],[-14,-4],[-6,-7],[1,-3],[3,-8],[-18,-6],[-8,0],[-4,-2],[-3,-5],[-1,-4],[2,-7],[-1,-4],[-3,-5],[-4,-3],[-4,-4],[-1,-8],[-1,-2],[-8,-9],[-2,-5],[-1,-12],[0,-7],[3,-5],[20,-19],[5,-9],[-1,-6],[-2,-3],[-2,-3],[1,-6],[-3,-3],[-13,-4],[1,-9],[2,-5]],[[73690,11006],[-24,-5],[-24,6],[-16,18],[6,17],[4,19],[5,14],[12,3],[4,-5],[6,-18],[4,-8],[8,-8],[31,-14],[-16,-19]],[[77448,11097],[-7,-2],[-17,3],[-17,12],[-14,19],[-8,25],[2,5],[7,5],[11,4],[14,0],[41,-15],[26,-17],[-4,-8],[-28,-27],[-6,-4]],[[77062,11133],[-9,-4],[-91,15],[-8,6],[-7,8],[10,22],[16,9],[17,1],[33,-8],[17,-12],[5,-5],[4,-6],[7,-14],[6,-12]],[[31363,11155],[-10,-2],[-9,0],[6,7],[3,4],[1,5],[-1,3],[-5,5],[-2,3],[0,7],[2,4],[3,2],[3,0],[7,0],[11,-4],[9,-8],[1,-11],[-4,-6],[-5,-5],[-10,-4]],[[95154,11068],[-3,-1],[-4,3],[-5,4],[-10,7],[-2,2],[-36,58],[-4,3],[-10,4],[9,8],[5,7],[2,7],[-1,4],[-4,1],[-2,3],[0,5],[2,10],[-1,5],[-2,5],[-3,3],[-6,3],[3,24],[4,2],[68,-110],[4,-6],[15,-9],[-3,-4],[-13,-34],[-3,-4]],[[31374,11233],[7,-3],[29,4],[11,-6],[2,-1],[-9,-8],[-10,-5],[-9,-1],[-10,1],[-19,7],[-6,8],[-5,6],[3,6],[5,3],[6,0],[4,0],[1,-11]],[[77853,11266],[3,0],[4,0],[2,0],[-2,-2],[-13,-12],[-19,-6],[-19,1],[-10,6],[-4,10],[4,12],[21,26],[14,15],[8,4],[8,1],[7,-4],[2,-1],[1,-3],[2,-7],[1,-4],[2,-8],[0,-4],[-2,-9],[-5,-4],[-11,-3],[1,-1],[4,-5],[1,-2]],[[31433,11193],[-7,-3],[-6,1],[-1,3],[-4,6],[-2,5],[6,8],[27,28],[5,8],[1,3],[1,11],[1,11],[-1,4],[0,3],[-2,5],[-1,3],[0,4],[0,3],[2,6],[-2,2],[-3,3],[-2,2],[6,11],[10,8],[27,15],[10,1],[4,0],[4,-3],[3,-4],[3,-5],[-4,-7],[-6,-9],[-7,-7],[-5,-1],[10,-13],[3,-4],[3,-14],[-6,-16],[-1,-1],[-17,-16],[-24,-32],[-25,-19]],[[76867,11346],[7,-3],[12,0],[24,9],[11,-1],[16,-12],[11,-18],[4,-21],[-5,-19],[-29,-23],[-69,-4],[-70,-5],[-14,3],[-5,15],[-12,8],[14,38],[8,16],[12,15],[14,9],[17,7],[19,2],[18,-2],[6,-4],[11,-10]],[[31739,11389],[-18,-1],[4,9],[1,3],[0,4],[0,4],[0,3],[2,3],[2,2],[3,-3],[3,-5],[2,-6],[4,-12],[-3,-1]],[[31690,11433],[-23,-8],[-5,1],[-5,2],[8,12],[9,10],[11,6],[9,1],[2,-2],[1,-1],[0,-3],[0,-3],[-3,-12],[-4,-3]],[[31889,11469],[1,-17],[-3,-6],[-4,-3],[-5,-1],[-4,1],[-4,2],[-4,3],[-7,9],[-3,6],[-7,14],[-1,2],[11,1],[16,-3],[14,-8]],[[77999,11515],[48,-6],[10,-5],[5,-10],[-4,-15],[-13,-15],[-17,-8],[-40,-2],[-17,4],[-7,5],[-11,4],[-30,-9],[-18,-1],[-9,4],[-8,9],[38,38],[6,3],[14,4],[29,-5],[24,5]],[[75716,11492],[-41,-4],[-37,12],[-18,31],[14,23],[18,10],[20,1],[21,-6],[34,-13],[14,-14],[0,-21],[-25,-19]],[[31745,11657],[7,-3],[16,3],[3,2],[-3,-9],[-6,-13],[-2,-8],[0,-16],[-2,-6],[-3,-6],[0,-1],[0,-1],[4,-14],[-54,-18],[-14,-9],[20,-17],[4,-12],[1,-6],[1,-7],[-1,-6],[-3,-9],[-1,-6],[1,-5],[3,-3],[7,-3],[-5,-6],[-6,-2],[-11,0],[-49,-22],[-14,-2],[-20,7],[-3,4],[2,11],[0,4],[-1,6],[-1,1],[0,1],[-1,2],[-1,1],[-1,2],[0,2],[0,3],[1,4],[5,11],[3,11],[1,2],[4,1],[12,-4],[6,0],[2,3],[10,14],[-5,4],[-4,6],[-4,8],[0,9],[1,3],[2,4],[1,2],[0,3],[-1,1],[-1,2],[1,2],[2,3],[10,3],[3,3],[7,12],[5,4],[2,2],[1,4],[1,8],[-2,5],[-2,5],[-1,5],[0,1],[4,9],[1,2],[47,20],[8,-1],[13,-10]],[[31779,11699],[14,-5],[5,2],[-6,-9],[-8,-6],[-23,-8],[-7,1],[-7,5],[-6,9],[3,9],[4,-2],[6,-4],[5,-3],[4,2],[10,8],[6,1]],[[78062,11582],[-16,-11],[-114,-12],[-12,4],[7,6],[-1,2],[-3,3],[-6,3],[-38,-3],[-10,3],[-9,9],[-6,15],[-2,23],[9,34],[23,34],[27,28],[23,17],[46,13],[57,1],[53,-19],[35,-49],[2,-27],[-8,-20],[-57,-54]],[[78716,11701],[-16,-5],[-31,2],[-11,5],[-9,9],[-3,9],[3,28],[2,12],[-2,14],[-10,20],[-5,6],[-13,9],[-59,17],[-14,11],[0,4],[-7,28],[9,22],[16,8],[20,-2],[50,-25],[16,-14],[11,-19],[2,-20],[-8,-23],[3,-20],[5,-12],[8,-9],[18,-12],[28,-14],[5,-5],[3,-7],[-1,-8],[-4,-5],[-6,-4]],[[33490,11837],[-22,-7],[-37,15],[-36,27],[-18,28],[20,25],[34,-21],[59,-67]],[[32496,12053],[1,0],[6,4],[5,2],[4,-1],[5,-4],[4,-6],[-1,-2],[-9,-8],[-8,-1],[-25,4],[-8,4],[-6,8],[1,4],[1,7],[1,2],[6,3],[7,1],[8,-2],[5,-4],[1,-3],[0,-6],[2,-2]],[[32542,12089],[-15,-9],[-29,4],[-4,2],[-3,4],[10,6],[11,1],[30,-8]],[[32429,12100],[-6,-10],[-2,-5],[-2,-20],[-4,-6],[-6,-4],[-15,-7],[-14,-12],[-6,-4],[-24,-7],[-9,0],[-6,6],[3,4],[11,8],[14,14],[13,17],[-10,7],[-6,2],[-5,-2],[20,19],[7,3],[6,-1],[12,-6],[6,1],[3,3],[26,36],[8,7],[7,3],[6,-7],[1,-6],[-1,-5],[-2,-5],[-3,-4],[-22,-19]],[[32589,12126],[-7,-1],[-5,6],[-1,2],[1,4],[0,3],[-3,3],[-9,5],[9,5],[3,4],[4,6],[3,5],[4,3],[4,0],[4,-2],[2,-3],[1,-3],[0,-10],[0,-3],[1,-2],[1,-2],[1,-2],[0,-2],[-1,-1],[-1,-3],[-4,-7],[-7,-5]],[[32771,12181],[-4,-5],[-6,1],[-5,5],[-1,8],[3,3],[5,4],[5,2],[3,-1],[-2,-5],[0,-5],[0,-4],[2,-3]],[[32760,12204],[-8,-4],[-4,0],[-3,3],[-5,8],[2,3],[1,2],[1,3],[-6,4],[-2,1],[3,3],[7,0],[3,2],[2,4],[0,3],[0,3],[1,2],[1,2],[3,0],[1,1],[4,4],[2,1],[2,0],[8,-9],[0,-3],[-7,-13],[-1,-5],[-2,-9],[-1,-4],[-2,-2]],[[34010,12306],[-7,-17],[-18,12],[19,20],[6,-15]],[[32909,12333],[-5,0],[-6,1],[-9,4],[-4,4],[3,6],[-2,2],[-5,5],[4,3],[13,3],[5,0],[6,-7],[5,-7],[5,-7],[-2,0],[-8,-7]],[[34105,12233],[-23,-6],[-24,8],[-10,8],[-6,8],[-2,10],[-1,12],[0,6],[1,8],[1,8],[3,5],[7,5],[28,4],[16,6],[87,58],[6,1],[6,-2],[6,-3],[-19,-23],[-2,-6],[5,-20],[-9,-22],[-14,-19],[-11,-13],[-45,-33]],[[32426,12405],[8,-3],[8,2],[8,-1],[7,-8],[-1,-3],[0,-2],[1,-1],[1,-4],[-12,-1],[9,-9],[2,0],[-5,-6],[-30,-12],[-6,-5],[-5,-7],[3,-2],[12,0],[-2,-3],[-4,-3],[-2,-2],[-1,-3],[-2,-7],[-1,-3],[-3,-5],[-11,-7],[8,-6],[7,0],[8,5],[16,16],[8,7],[6,2],[16,-2],[-9,-6],[-22,-29],[-6,-12],[7,0],[6,1],[21,12],[5,1],[4,-3],[-5,-10],[-6,-10],[-30,-29],[-13,-7],[-4,-6],[5,-8],[3,-2],[3,-2],[35,4],[4,-2],[-2,6],[-1,2],[0,4],[15,9],[12,14],[5,3],[5,0],[-6,-9],[11,-3],[3,1],[10,9],[3,1],[2,-1],[2,-1],[1,-2],[16,-23],[4,-3],[-7,-8],[-47,-21],[-6,0],[-3,-2],[-2,-2],[-4,-7],[-2,-3],[-2,-1],[-2,0],[-3,1],[-12,-1],[-6,-4],[-5,-6],[0,-3],[0,-7],[-1,-3],[-1,-2],[-14,-15],[-9,-6],[-1,-1],[-4,-10],[-5,-6],[-5,-6],[-4,-2],[-6,-3],[-6,0],[-4,4],[-1,7],[1,6],[0,4],[-4,4],[-6,2],[-5,0],[-26,-6],[-4,-5],[4,-3],[9,-3],[4,-5],[-6,-1],[-5,-3],[-6,-5],[-22,-25],[-3,-5],[-1,-13],[-5,-3],[-6,2],[-10,6],[-2,2],[-2,4],[-1,6],[0,4],[-1,4],[-2,5],[-3,2],[-7,4],[-50,9],[-8,-2],[-4,0],[-4,5],[-13,18],[-11,12],[-42,4],[-3,1],[-2,2],[-1,2],[0,4],[2,3],[3,1],[5,-1],[4,2],[2,4],[2,6],[3,6],[3,3],[3,1],[2,2],[3,5],[0,6],[0,10],[-2,9],[-2,3],[13,8],[3,1],[16,13],[51,12],[13,19],[-3,4],[-19,18],[1,4],[2,1],[3,0],[3,2],[9,10],[4,1],[37,0],[10,3],[8,8],[-5,9],[-2,1],[4,7],[1,2],[2,1],[2,1],[2,1],[1,3],[0,7],[-4,5],[-10,3],[1,2],[7,11],[24,6],[3,2],[3,4],[1,8],[-2,6],[-3,5],[-2,6],[59,4],[-1,6],[1,3],[3,2],[2,0],[3,-2],[6,-7],[8,-4],[2,-2],[1,-1],[1,-4],[1,-1]],[[34246,12386],[-27,-9],[-24,3],[5,4],[4,5],[3,6],[1,7],[38,27],[22,8],[14,-8],[-14,-24],[-22,-19]],[[32872,12466],[-11,0],[-5,1],[-4,3],[-5,5],[-3,6],[2,5],[0,5],[-1,4],[1,5],[2,4],[3,4],[3,2],[2,2],[8,-5],[3,-12],[5,-29]],[[32703,12509],[72,-25],[-5,-8],[-7,-3],[-22,-1],[-15,-5],[-7,-5],[4,-6],[7,-3],[19,2],[2,-1],[1,-2],[2,-4],[1,-3],[0,-2],[7,-1],[2,-1],[-3,-8],[-30,-35],[-6,-2],[-3,-2],[-2,-4],[0,-4],[4,-8],[0,-4],[0,-5],[-2,-4],[-2,-4],[1,-4],[1,-2],[3,-1],[6,0],[-20,-19],[-3,-1],[-2,1],[-5,4],[-2,2],[-3,0],[-12,-6],[2,-2],[1,-3],[2,-4],[1,-4],[-1,-4],[-1,-3],[-1,-2],[-8,-8],[-6,-12],[-3,-1],[-11,1],[-4,-1],[-4,-4],[0,-2],[0,-5],[0,-2],[-6,-4],[-5,7],[-1,10],[4,5],[-9,2],[-4,0],[-4,-4],[-2,-5],[0,-5],[1,-5],[0,-5],[-2,-5],[-9,-10],[-3,-2],[-4,0],[-4,4],[-8,8],[-9,3],[-10,-2],[-10,1],[-8,9],[8,9],[9,1],[9,-3],[8,0],[18,12],[5,-1],[-14,7],[-7,6],[-4,13],[0,5],[1,3],[1,3],[2,2],[2,1],[3,1],[1,1],[2,2],[2,5],[1,2],[9,6],[2,4],[1,5],[2,10],[1,4],[3,4],[9,9],[4,5],[6,11],[5,13],[2,7],[0,7],[-2,7],[-4,3],[-7,2],[-4,1],[-1,2],[-4,8],[-1,2],[-3,2],[-2,2],[-1,3],[-2,11],[-10,6],[-4,7],[2,7],[2,2],[7,-2],[6,1],[13,8],[8,8],[-2,2],[-9,13],[-10,4],[-2,3],[3,4],[18,8],[1,2],[4,7],[0,1],[29,3],[16,-4],[14,-9],[-2,-4],[-2,-11],[-1,-13],[1,-9],[3,-3]],[[32788,12518],[-6,-4],[-7,0],[-7,3],[-6,5],[-2,4],[-1,5],[2,5],[2,4],[2,1],[3,0],[2,1],[1,2],[0,3],[1,2],[2,2],[-2,5],[-1,2],[4,3],[12,4],[2,2],[6,6],[3,3],[3,1],[10,0],[13,4],[-1,2],[-1,4],[-1,2],[4,3],[4,-1],[5,-2],[3,-3],[-4,-4],[-10,-15],[-3,-3],[-9,-4],[-2,-3],[-7,-12],[-2,-7],[3,-3],[-5,-1],[-3,-5],[-7,-11]],[[33942,12676],[10,-37],[4,-10],[-12,-4],[-4,-4],[-2,-4],[0,-4],[2,-3],[3,-4],[-2,-4],[-3,-4],[-18,-16],[14,-10],[5,-7],[-2,-4],[-1,-3],[-1,0],[2,-3],[2,-4],[1,-6],[-1,-6],[-2,-4],[-8,-4],[-3,-2],[10,-5],[11,-3],[10,0],[10,2],[-7,27],[4,6],[29,22],[23,26],[13,8],[-1,-2],[-2,-3],[-3,-6],[2,-6],[3,-3],[7,-5],[-9,-9],[-2,-3],[0,-4],[0,-3],[1,-3],[0,-3],[-1,-2],[-2,-2],[-4,-3],[4,1],[101,-38],[-9,-6],[-2,-1],[1,-5],[2,-2],[3,-2],[3,-1],[-9,-7],[-9,-2],[-29,1],[-9,-2],[-2,-2],[-6,-6],[-2,-1],[16,-1],[5,-2],[1,-5],[4,0],[4,0],[3,-2],[-10,-10],[-2,-2],[7,0],[12,3],[12,6],[18,2],[3,-3],[5,5],[8,4],[6,-4],[-2,-14],[-5,-8],[-5,-6],[-25,-9],[-7,1],[-7,3],[3,-5],[-3,-6],[-3,-3],[-4,-2],[-4,0],[-4,1],[-24,14],[-8,2],[-9,-2],[-8,-9],[2,0],[36,-11],[6,-4],[5,-7],[-18,-5],[-39,14],[-14,-19],[3,-3],[46,-8],[5,-3],[5,-4],[14,-17],[3,-5],[1,-4],[-3,-6],[-24,-10],[-9,0],[-4,1],[-4,3],[-1,5],[0,12],[-2,4],[-4,4],[-4,1],[-4,0],[-4,-2],[5,-8],[2,-7],[-1,-4],[-7,-1],[0,2],[-2,6],[-3,6],[-2,3],[-4,3],[-4,1],[-5,1],[-3,-1],[7,-10],[-4,0],[-4,1],[-10,11],[-4,3],[-3,0],[-4,-3],[6,-13],[1,-7],[-1,-8],[-5,-6],[-5,-1],[-5,2],[-5,-1],[0,7],[1,8],[0,9],[2,7],[3,6],[6,9],[5,7],[4,1],[-9,8],[-10,-4],[-9,-7],[-9,-5],[-5,2],[-9,8],[-5,0],[1,-3],[0,-2],[6,-9],[1,-3],[1,-4],[-1,-8],[0,-4],[1,-5],[2,-4],[3,-7],[-4,-6],[-1,-3],[-1,-5],[-4,2],[-4,-1],[-2,-3],[3,-5],[-4,-2],[-10,2],[-15,8],[-3,3],[3,6],[1,3],[1,4],[0,4],[1,11],[-1,3],[6,1],[3,1],[2,3],[-7,9],[-8,4],[-24,-1],[-3,-2],[-3,-5],[0,-6],[0,-12],[-1,-6],[-4,-7],[-5,-5],[-6,-3],[-5,1],[4,7],[8,11],[4,6],[-7,2],[-6,0],[-5,-4],[-9,-12],[-2,-3],[-3,-1],[-3,-1],[-4,3],[-1,5],[1,5],[0,3],[-23,22],[4,8],[5,5],[12,6],[15,4],[5,-1],[1,1],[1,2],[1,1],[0,2],[0,2],[4,4],[17,2],[10,3],[4,3],[4,6],[-11,7],[-25,4],[-11,5],[2,15],[11,41],[1,9],[-18,10],[-17,-8],[-15,-15],[-14,-8],[-16,1],[-11,4],[0,1],[4,9],[2,1],[6,3],[-11,10],[-1,2],[2,10],[5,5],[5,4],[6,6],[3,9],[3,9],[3,8],[6,5],[8,0],[3,2],[1,6],[-2,4],[-8,10],[8,17],[13,11],[25,8],[7,0],[4,-3],[3,0],[4,7],[0,3],[-2,3],[0,5],[5,9],[4,4],[15,6],[20,-14],[1,4],[1,4],[1,4],[-1,5],[-1,2],[-6,7],[-1,1],[6,5],[7,3],[37,5],[0,-1],[-8,-9],[-2,0],[2,-2],[3,-2],[1,-1]],[[34055,12663],[9,-1],[40,18],[11,1],[4,-1],[7,-5],[7,-7],[9,-5],[-2,-3],[-3,-2],[-12,-2],[-2,-1],[-1,-2],[-1,-3],[0,-2],[-2,-7],[-1,-1],[-2,-1],[-5,-3],[-12,-10],[2,11],[0,6],[-2,4],[-2,0],[-17,-3],[-12,-7],[-3,-1],[-4,1],[-30,17],[-4,-2],[-3,-10],[-6,5],[-4,1],[-1,1],[-2,2],[-1,2],[-1,2],[-2,1],[-11,-2],[-4,0],[-2,2],[-2,1],[-15,20],[13,7],[78,9],[1,0],[1,-1],[1,-5],[0,-5],[1,-5],[2,-3],[-12,-7],[-3,-4]],[[32874,12684],[-9,-2],[0,2],[-2,14],[-2,5],[-3,5],[-4,7],[-6,6],[-17,7],[6,4],[41,-2],[5,-4],[2,-18],[-4,-14],[-7,-10]],[[33176,12744],[-13,-15],[-1,-5],[-2,-2],[-6,-3],[-3,-6],[-4,-16],[-3,-8],[-4,-6],[-1,-2],[1,-9],[6,-10],[8,-8],[5,-2],[-15,-9],[-13,-13],[-4,-5],[-1,-1],[-2,1],[0,1],[0,2],[-1,1],[-3,3],[-4,1],[-3,-2],[-3,-4],[-4,-7],[-1,-1],[-17,6],[-5,4],[8,6],[2,5],[0,4],[-2,4],[-2,2],[-2,2],[-7,1],[-16,-2],[-4,2],[0,8],[1,2],[2,0],[4,-2],[10,-3],[21,1],[11,3],[5,4],[3,3],[2,4],[1,5],[0,3],[-1,3],[-1,4],[-5,4],[-3,5],[-1,7],[2,9],[2,2],[22,0],[4,3],[3,7],[1,1],[0,2],[2,2],[3,2],[-7,5],[-18,-5],[-4,1],[-2,2],[2,5],[-1,6],[-2,5],[-2,5],[-1,2],[-3,3],[-1,2],[1,3],[3,-1],[10,-8],[9,-4],[37,-1],[10,-6],[-3,-2]],[[34031,12748],[-7,-1],[-5,3],[-1,1],[0,1],[-1,4],[-4,16],[-2,6],[-4,2],[24,11],[13,2],[11,-5],[-3,-2],[-10,-27],[-5,-7],[-6,-4]],[[34284,12798],[-20,-7],[-11,18],[7,15],[17,6],[20,0],[17,-5],[-30,-27]],[[33390,12806],[-6,-2],[-5,1],[-5,3],[-5,6],[-1,7],[3,5],[7,6],[-1,5],[0,1],[7,-1],[4,-3],[1,-2],[1,-1],[1,-2],[-1,-4],[0,-2],[5,-12],[0,-3],[-5,-2]],[[34463,12817],[-9,-1],[-54,32],[-21,25],[-2,4],[0,3],[1,2],[2,2],[0,3],[3,11],[4,4],[54,15],[57,2],[16,-13],[8,-27],[0,-14],[-57,-30],[-2,-18]],[[32774,12956],[-20,-5],[-54,1],[3,2],[3,5],[3,6],[1,6],[1,9],[-2,7],[-2,6],[-3,5],[2,1],[13,10],[0,2],[-1,4],[0,4],[3,1],[5,-2],[9,-6],[33,-5],[4,-2],[2,-2],[2,-3],[1,-4],[1,-9],[1,-4],[3,-2],[3,-3],[6,-2],[-7,-13],[-10,-7]],[[34158,12994],[-2,-39],[3,-2],[4,-6],[3,-1],[-4,-7],[-3,-8],[-6,-17],[23,12],[6,-2],[4,-13],[-4,-11],[-7,-8],[-6,-4],[3,-7],[3,-1],[3,-1],[3,-3],[4,-7],[2,-6],[3,-5],[4,-4],[21,-8],[7,-7],[7,-12],[2,-12],[-2,-12],[-7,-14],[-6,-7],[-7,-3],[-8,1],[-7,4],[-13,13],[-6,1],[-14,-13],[-21,-11],[-8,-1],[-6,6],[-5,13],[-3,15],[1,10],[7,7],[8,5],[6,0],[-3,8],[-3,5],[-3,4],[-4,4],[1,2],[2,7],[1,3],[-5,3],[-9,13],[-7,2],[-25,-5],[-14,5],[-14,11],[-14,6],[-13,-9],[9,-19],[2,-11],[-2,-14],[20,-5],[-10,-12],[-17,-2],[-56,8],[-8,-1],[-4,-7],[-3,-9],[-7,-3],[11,-7],[33,-3],[-3,-2],[-11,-11],[-5,-3],[-7,0],[-2,-1],[-3,-3],[-3,-6],[-2,-3],[-4,-3],[-5,2],[-4,2],[-5,2],[-12,-1],[-6,-2],[-4,-4],[1,-1],[2,-3],[1,-1],[0,-1],[-6,-8],[-2,-1],[-3,0],[-5,0],[-19,8],[-12,-2],[-12,7],[-6,-1],[-5,-6],[-10,-18],[-6,-7],[-33,-22],[-10,-14],[-14,-32],[-6,-7],[-5,0],[-6,1],[-4,-1],[-4,-9],[1,-2],[3,-5],[2,-1],[-14,-23],[-33,-20],[-12,-12],[-12,-18],[-8,-22],[3,-21],[4,-12],[-2,-6],[-10,-10],[-6,-10],[-3,-9],[-6,-24],[-1,-5],[-1,-6],[-1,-5],[-1,-3],[-16,1],[-6,2],[-11,8],[-27,7],[-5,-2],[-2,-3],[-3,-10],[-3,-2],[-3,-2],[-4,-4],[-3,-5],[2,-6],[6,-6],[89,-15],[4,-7],[2,-13],[-4,-10],[-8,-4],[-16,0],[-7,-1],[-14,-10],[-7,0],[4,-13],[8,-12],[9,-8],[17,-2],[9,-9],[5,-16],[-1,-23],[-5,-18],[-9,-8],[-21,-6],[-7,3],[-11,9],[-10,10],[-6,11],[6,8],[2,11],[-2,12],[-6,8],[-6,0],[-38,-17],[-14,-1],[-15,4],[-15,8],[-10,17],[-14,48],[-13,12],[-7,-1],[-8,-3],[-7,-5],[-6,-8],[-12,-23],[-7,-7],[-8,-1],[3,-9],[8,-14],[3,-10],[0,-11],[-8,-22],[-3,-10],[7,4],[6,2],[5,-3],[6,-7],[4,-11],[-2,-10],[-4,-9],[-5,-6],[-13,-4],[-12,3],[-25,13],[3,7],[1,8],[2,27],[-2,36],[-4,6],[-6,3],[-11,2],[-24,14],[-11,3],[-14,-6],[5,-18],[1,-8],[-3,-8],[-4,-7],[-4,-5],[-4,-3],[-40,-19],[-11,-2],[-3,-2],[-3,-10],[-2,-10],[-3,-7],[-5,-3],[-18,20],[-5,3],[-16,4],[9,-40],[4,-9],[3,-6],[2,-6],[-1,-9],[-4,-3],[-6,1],[-11,5],[-6,-1],[-3,-3],[-3,-6],[-5,-5],[-39,-20],[-8,-7],[-10,-13],[-6,-16],[5,-14],[-8,-17],[-24,-20],[-10,-11],[-42,-74],[-12,-14],[-13,2],[-13,5],[-14,0],[-52,-32],[-2,1],[-2,3],[-7,15],[-2,4],[-2,3],[-23,18],[-6,3],[-52,3],[-6,-4],[-2,-10],[3,-48],[2,-8],[2,-3],[2,-1],[9,-11],[5,-4],[11,-4],[14,1],[4,-5],[4,-15],[-15,-7],[-5,0],[6,-18],[0,-14],[-6,-10],[-10,-3],[-20,3],[-19,-3],[-7,2],[-29,29],[-8,1],[-10,-4],[-9,-9],[-7,-9],[9,-12],[-4,-7],[-24,-19],[-7,-3],[-14,-4],[3,-15],[4,-8],[5,-4],[35,-13],[-4,-6],[-4,-4],[-4,-2],[-4,0],[-2,-6],[-1,-13],[0,-14],[1,-8],[8,-9],[21,-5],[8,-5],[3,-6],[5,-17],[3,-5],[11,-4],[12,0],[20,10],[10,1],[9,-9],[-7,-10],[-7,-5],[-35,-5],[-8,1],[-9,8],[-6,-1],[-24,-15],[-6,-1],[-4,-2],[-2,-6],[1,-12],[2,-6],[3,-3],[2,-4],[1,-11],[-3,-15],[-6,-12],[-9,-8],[-8,-6],[-12,-3],[-4,-3],[-3,-5],[-7,-13],[-3,-3],[-17,-3],[-7,-5],[-6,-11],[0,-8],[2,-7],[4,-6],[1,-6],[-1,-7],[-9,-27],[25,-3],[5,-4],[1,-6],[-2,-20],[1,-7],[2,-9],[2,-6],[63,-61],[30,-12],[15,0],[14,7],[10,8],[6,3],[5,-6],[6,-16],[5,-4],[28,-12],[-2,16],[-3,16],[-9,28],[-1,19],[9,7],[11,-1],[66,-38],[8,0],[-2,14],[-1,14],[1,13],[5,11],[-6,11],[-7,15],[-2,14],[6,7],[16,4],[8,0],[6,-5],[7,-12],[23,-25],[3,-7],[4,-16],[3,-4],[5,-2],[9,-2],[4,1],[0,12],[-1,53],[3,7],[6,1],[15,-3],[17,3],[82,-17],[8,-11],[-4,-23],[-11,-23],[-10,-11],[-6,3],[-6,5],[-5,0],[-1,-14],[1,-16],[0,-14],[-3,-9],[-7,4],[-17,15],[-5,8],[-2,5],[-2,13],[-1,4],[-2,2],[-17,3],[-3,0],[-2,-4],[-1,-8],[-1,-4],[-3,-1],[-19,-3],[-5,-6],[-5,-14],[5,-15],[14,-14],[27,-19],[-2,-6],[-7,-13],[-1,-4],[2,-11],[0,-7],[-2,-7],[-17,-33],[-6,-10],[-10,-4],[-17,-2],[-8,3],[-7,9],[-6,16],[1,14],[3,16],[2,19],[-3,13],[-9,11],[-17,13],[-10,3],[-20,-3],[-10,2],[-7,9],[-7,11],[-7,5],[-7,-9],[-2,-15],[-1,-23],[1,-23],[2,-16],[-8,5],[-14,15],[-8,4],[-36,11],[-9,-2],[-5,-6],[1,-10],[6,-14],[8,-15],[9,-13],[4,-9],[-2,-9],[-4,-7],[-2,-6],[2,-8],[9,-15],[-4,-30],[-3,-9],[-6,-8],[-9,-3],[-10,1],[-7,6],[-6,13],[-4,14],[-3,16],[-10,38],[-2,4],[-5,2],[-2,2],[-7,16],[-4,7],[-5,4],[6,17],[2,11],[0,8],[-4,6],[-7,1],[-33,-6],[-9,2],[-12,11],[-9,6],[-10,0],[-20,-7],[-18,1],[-6,-1],[-16,-12],[-6,-3],[-48,-9],[-9,-6],[-11,-14],[-7,-17],[1,-16],[19,-23],[21,-14],[18,-20],[11,-39],[-33,-8],[-16,-10],[-9,-20],[5,-22],[17,-7],[34,-1],[-8,-19],[-2,-10],[0,-13],[14,2],[6,4],[7,7],[0,-17],[-2,-11],[-4,-8],[-7,-5],[-8,-4],[-15,-4],[-15,0],[-6,4],[-35,32],[-3,9],[0,24],[-1,6],[-3,5],[-4,2],[-3,3],[-1,9],[-2,17],[-3,15],[-5,11],[-7,10],[-72,73],[-4,12],[-1,5],[-4,11],[-2,6],[0,10],[1,6],[0,5],[-3,7],[-6,6],[-7,-2],[-12,-12],[-5,-2],[-3,2],[-3,2],[-4,1],[-13,0],[-5,2],[-3,2],[-5,8],[-2,3],[-4,1],[-7,0],[-4,1],[-3,4],[-7,11],[-4,3],[-4,0],[-11,-8],[-14,-1],[-41,15],[8,-9],[8,-7],[-9,-10],[5,-5],[16,-6],[-11,-7],[-23,-1],[-11,-5],[10,-11],[11,-4],[23,-1],[-2,-3],[-3,-6],[-1,-3],[27,-8],[15,-11],[3,-4],[1,-7],[-1,-12],[-2,-2],[-89,8],[4,-17],[12,-9],[23,-6],[-25,-4],[-7,-4],[-4,-7],[-3,-10],[-3,-15],[30,-16],[-5,-9],[-1,-9],[3,-9],[5,-8],[-21,-5],[-6,-4],[-9,-2],[-6,5],[-13,19],[-7,5],[-6,-4],[-4,-10],[-4,-12],[-2,-15],[-2,-3],[-7,0],[-4,-2],[-3,-4],[1,-7],[6,-14],[6,-6],[29,-4],[14,-6],[26,-20],[25,-29],[-1,-3],[-3,-7],[-1,-2],[14,-32],[-10,-21],[-21,-12],[-59,-11],[-20,5],[-22,25],[-9,7],[-8,15],[-5,4],[-10,3],[-7,-9],[-4,-20],[-5,-15],[-19,7],[-22,-3],[-7,6],[-3,12],[0,7],[3,6],[2,12],[2,44],[-21,-10],[-2,1],[-1,2],[-2,1],[-1,-3],[-7,-18],[-9,-11],[-26,-14],[5,-13],[11,-22],[4,-14],[0,-7],[-1,-23],[-1,-5],[-5,-3],[-10,-1],[-8,4],[-5,9],[-5,11],[-7,11],[-14,15],[-8,4],[-9,3],[14,-16],[6,-11],[3,-12],[-3,-12],[-7,-12],[-14,-18],[4,-5],[9,-9],[3,-5],[3,-9],[3,-9],[4,-8],[6,-1],[4,2],[8,8],[5,3],[5,0],[13,-5],[-1,-11],[2,-7],[9,-12],[-21,-8],[-24,-4],[-6,2],[-4,-15],[-17,-6],[-32,0],[16,-21],[60,-15],[12,-27],[-24,-11],[-13,-3],[-11,4],[-10,11],[-5,4],[-5,1],[-5,-3],[-7,-12],[-5,-2],[8,-8],[-8,-12],[-10,-2],[-8,7],[-7,14],[-4,3],[-5,-5],[-11,-17],[-2,-2],[-2,-1],[-2,-1],[-2,-2],[1,-11],[-1,-3],[-11,-4],[-12,1],[-10,9],[-7,20],[0,8],[1,10],[1,9],[-3,7],[-23,17],[2,-8],[6,-13],[2,-4],[-1,-9],[-2,-8],[-4,-7],[-4,-3],[-7,-1],[-9,6],[-7,9],[-6,10],[-9,-34],[11,-10],[11,-6],[5,-7],[1,-22],[4,-11],[-7,-4],[-13,-4],[-7,-4],[-5,-7],[-1,-7],[2,-6],[7,-4],[0,-18],[10,-12],[27,-15],[4,-1],[3,-3],[0,-6],[1,-7],[1,-5],[5,-5],[18,-7],[-3,-7],[-3,-16],[-2,-4],[-51,-10],[-7,-5],[-4,-16],[8,-34],[-4,-19],[-8,-7],[-9,-3],[-19,1],[9,-17],[29,-15],[19,-20],[6,-2],[14,-1],[7,-3],[21,-15],[-15,-17],[-39,-19],[-17,0],[-9,-3],[-4,-3],[-5,-13],[-4,-6],[-8,-4],[-17,4],[-8,-5],[5,-20],[1,-10],[0,-12],[68,14],[2,-3],[3,-4],[3,-3],[4,0],[26,12],[7,-1],[22,-18],[13,5],[27,29],[29,23],[3,5],[4,13],[3,4],[15,9],[-3,-12],[-12,-28],[10,-6],[35,-1],[-1,5],[0,9],[-1,4],[7,-3],[5,-5],[10,-14],[-3,-5],[-1,-5],[0,-6],[2,-6],[-11,-11],[-56,-36],[-12,-4],[-12,4],[-11,9],[-5,1],[-5,-4],[-11,-15],[-12,-10],[-6,0],[-5,2],[-4,0],[-4,-9],[-3,-6],[-6,-6],[-12,-6],[-25,-6],[-3,-5],[0,-10],[3,-11],[2,-8],[11,-9],[12,-3],[59,14],[17,-2],[11,1],[5,-2],[24,-23],[-6,-10],[-22,-22],[-28,-15],[-8,-10],[-7,-8],[-30,-5],[-2,-5],[0,-9],[2,-9],[3,-5],[5,-3],[15,-4],[-2,-20],[5,-7],[17,2],[5,-1],[3,-4],[3,-5],[5,-5],[4,-1],[14,2],[68,-23],[9,0],[16,8],[15,3],[3,-1],[3,-5],[2,-11],[2,-7],[14,-24],[3,-4],[13,-9],[4,1],[3,2],[6,2],[8,0],[26,-11],[-2,9],[-4,7],[-9,11],[11,0],[28,-24],[52,-30],[15,-1],[-2,12],[-4,7],[-23,17],[-12,13],[13,0],[24,-6],[13,2],[-22,24],[-46,25],[-23,18],[13,5],[28,-9],[9,10],[-8,8],[-9,6],[-8,7],[-6,13],[8,2],[25,-9],[-1,15],[4,9],[15,9],[24,23],[7,2],[16,0],[80,21],[80,22],[127,-3],[4,-8],[-4,-15],[-9,-22],[-5,-5],[-9,-1],[-7,3],[-39,26],[-16,6],[-16,1],[-16,-6],[-10,-9],[-28,-40],[-10,-5],[-55,-1],[-10,-5],[-11,-8],[-6,-6],[-4,-7],[-9,-16],[-4,-12],[1,-7],[4,-6],[7,-5],[-5,-4],[-4,-2],[-10,2],[10,-24],[123,-33],[23,-16],[21,-23],[-18,-11],[-45,24],[-21,2],[7,-14],[28,-25],[-6,-11],[-15,-3],[-4,-12],[20,-7],[-11,-6],[-57,-9],[-44,11],[-6,0],[-16,-9],[-4,-6],[1,-9],[5,-9],[4,-5],[5,-2],[12,0],[50,-20],[85,-4],[4,-3],[0,-10],[-7,-14],[-10,-15],[-19,-22],[11,-16],[14,-6],[29,4],[7,6],[6,7],[6,3],[8,-7],[6,-10],[17,-37],[0,-7],[-2,-12],[-1,-13],[4,-13],[12,-18],[7,-8],[7,-4],[46,19],[14,-3],[15,-9],[11,-12],[9,-19],[7,-28],[10,-15],[33,3],[12,-16],[1,-13],[-2,-25],[2,-15],[2,-15],[1,-15],[0,-15],[-3,-16],[-2,-8],[-5,-12],[-2,-7],[-2,-7],[0,-5],[-1,-6],[-5,-14],[-2,-5],[-2,-4],[-11,-12],[-3,-5],[-3,-8],[57,-28],[3,-4],[5,-14],[4,-6],[-4,-2],[-3,-4],[-3,-5],[-2,-7],[8,-7],[9,-4],[18,0],[8,-3],[27,-29],[18,-12],[6,-11],[5,-19],[6,-11],[18,-26],[4,-12],[-4,-14],[-10,-11],[-27,-25],[-3,1],[-7,16],[-5,4],[-12,4],[-19,2],[-4,3],[-8,10],[-4,4],[-6,0],[-16,-3],[-16,5],[-5,-2],[4,-13],[5,-7],[11,-14],[-7,-9],[-17,-4],[-8,-4],[2,-8],[3,-5],[3,-3],[1,-3],[0,-9],[-2,-23],[1,-8],[8,-6],[49,-1],[9,-3],[6,-9],[4,-19],[0,-16],[-5,-13],[-9,-11],[11,-10],[15,3],[43,29],[112,-1],[17,5],[7,-1],[9,-5],[6,-9],[11,-26],[-21,-17],[-70,-17],[9,-8],[6,-10],[1,-12],[-9,-15],[-9,-7],[-42,-18],[-12,0],[-35,10],[-33,-2],[3,-8],[0,-7],[-2,-7],[-4,-6],[28,-8],[9,-5],[-3,-8],[-1,-17],[-2,-7],[-4,-7],[-1,-8],[0,-8],[3,-10],[8,-11],[10,-2],[19,4],[30,-1],[10,6],[3,5],[7,17],[5,6],[5,5],[5,2],[31,5],[70,-8],[7,-9],[5,-14],[-2,-22],[-4,-17],[-7,-17],[-8,-12],[-10,-4],[6,-11],[4,-3],[21,7],[8,0],[15,-3],[-2,-14],[-9,-16],[2,-10],[6,-5],[20,-3],[27,-13],[13,-11],[10,-16],[3,-23],[-12,-8],[-71,9],[-15,-3],[10,-16],[11,-6],[25,-4],[28,-11],[13,-12],[11,-19],[-16,-17],[-16,0],[-70,31],[-19,3],[-16,-8],[10,-6],[5,-4],[8,-15],[4,-3],[12,-2],[41,-24],[-7,-2],[-19,-14],[-31,-14],[-15,-1],[-46,12],[4,-35],[-15,-14],[-36,-2],[5,-32],[-1,-6],[-4,-5],[-25,-13],[-16,-3],[-51,6],[-4,-2],[-7,-8],[-5,0],[5,-12],[3,-6],[4,-2],[110,-5],[22,-8],[10,2],[76,58],[4,7],[1,3],[-1,4],[0,4],[2,3],[23,15],[6,1],[5,-1],[6,-4],[2,-5],[1,-7],[4,-8],[9,-10],[22,-9],[10,-8],[-4,-2],[-3,-3],[-7,-7],[5,-13],[7,-3],[15,4],[17,-2],[17,-9],[-2,-8],[-5,-5],[-9,-7],[5,-10],[9,-9],[4,-10],[-8,-12],[-8,-5],[-9,0],[-27,10],[-25,19],[-4,4],[-7,13],[-3,2],[-18,-6],[3,-6],[4,-15],[2,-6],[21,-20],[-13,-5],[4,-8],[5,-4],[12,-3],[-11,-8],[-2,-4],[-3,-9],[-2,-2],[-64,-3],[-49,12],[-77,-8],[-21,-13],[-11,-4],[-77,-7],[-76,-6],[12,-24],[28,-16],[51,-13],[-6,-12],[-8,-5],[-17,-8],[-35,-28],[11,-20],[16,-2],[33,14],[63,12],[49,25],[16,2],[69,-11],[14,-8],[25,-33],[26,-19],[7,-2],[5,9],[-1,15],[-7,13],[-4,12],[5,12],[16,10],[17,2],[35,-4],[16,4],[33,22],[16,7],[7,-8],[4,-18],[1,-22],[-3,-17],[-7,-8],[-31,-8],[-19,-10],[-20,-5],[-15,5],[-4,-2],[-18,-22],[16,-3],[32,6],[16,-1],[26,-10],[17,-16],[5,-6],[2,-8],[0,-10],[-2,-8],[0,-8],[4,-8],[-5,-7],[-5,-4],[-4,0],[-18,8],[-12,3],[-13,-3],[-38,-23],[9,-7],[76,-4],[10,-6],[5,-13],[-1,-13],[-11,-10],[-40,-11],[-88,6],[-90,28],[2,-13],[7,-8],[16,-9],[3,-5],[-2,-5],[-5,-3],[-3,-3],[-20,-8],[10,-14],[10,-7],[10,0],[12,6],[13,-1],[7,-18],[9,-49],[-11,-8],[-46,4],[8,-15],[37,-12],[10,-10],[4,-8],[1,-6],[-4,-13],[1,-6],[5,-4],[17,-8],[5,2],[6,8],[4,9],[7,20],[5,10],[10,9],[39,3],[36,16],[38,2],[13,-3],[8,-16],[6,-23],[3,-21],[-1,-20],[-5,-22],[-9,-20],[-10,-17],[-6,-7],[-18,-8],[3,-6],[2,-5],[4,-4],[3,-1],[-4,-9],[-37,-46],[-3,-9],[5,-14],[15,6],[29,25],[4,7],[5,10],[6,8],[6,-2],[7,-7],[22,-14],[19,-20],[6,-2],[16,6],[8,7],[6,11],[3,12],[9,22],[21,41],[7,8],[6,3],[7,1],[7,-2],[12,-7],[4,-3],[1,-4],[0,-9],[1,-7],[1,-6],[3,-7],[8,-29],[-4,-19],[-22,-33],[-5,-11],[-4,-13],[-3,-14],[1,-15],[2,-10],[5,-13],[5,-11],[5,-6],[-14,-24],[-19,-12],[-55,-14],[-24,0],[-20,12],[-5,44],[-8,9],[-28,17],[-8,-7],[-3,-16],[-8,-66],[-5,-22],[-5,-12],[-9,-4],[-10,0],[-9,2],[-9,6],[2,13],[2,8],[1,9],[-1,15],[-16,40],[-5,-4],[-2,-13],[-2,-15],[-2,-12],[-4,-9],[-5,-7],[-5,-4],[-6,-2],[-26,3],[-13,6],[-10,11],[-14,27],[-11,17],[-2,11],[3,9],[6,5],[-14,2],[-15,-3],[-10,0],[-7,6],[-14,21],[-3,-3],[-24,-7],[-127,42],[-4,0],[-3,-4],[-3,-5],[-3,-5],[-5,-1],[21,-26],[8,-6],[88,-40],[5,-20],[-12,10],[-27,13],[-52,13],[-13,-4],[51,-17],[30,-26],[21,-13],[18,-16],[8,-23],[-13,-1],[-28,11],[-55,6],[-13,-4],[2,-14],[2,-8],[3,-4],[7,-3],[19,-2],[24,-16],[4,-5],[0,-11],[-2,-12],[1,-11],[8,-11],[13,-5],[13,0],[9,4],[4,5],[7,18],[4,6],[5,4],[5,2],[6,0],[41,-10],[8,-10],[5,-9],[4,-5],[5,-2],[17,8],[5,1],[7,0],[89,-32],[-13,-26],[-16,-15],[-35,-16],[1,-3],[4,-9],[1,-4],[-38,-22],[44,-6],[15,7],[19,19],[7,3],[15,3],[6,-3],[8,-10],[-12,-15],[-10,-18],[-18,-42],[-2,-6],[-5,-21],[-2,-7],[-16,-26],[-5,-7],[-6,-4],[-6,-1],[-56,4],[-33,18],[-3,4],[-2,5],[-1,7],[-1,6],[-4,5],[-13,5],[-29,-12],[-29,6],[-13,-2],[-27,-12],[12,-14],[46,-23],[-19,-14],[-58,-22],[23,-7],[79,16],[12,-3],[12,-8],[7,-13],[8,-6],[74,1],[8,-6],[0,-17],[-9,-20],[-13,-16],[-30,-27],[-45,-23],[-22,-4],[1,6],[2,6],[2,3],[3,3],[-6,2],[-10,-6],[-5,-1],[-6,4],[-4,8],[-1,10],[4,12],[-23,-4],[-7,-5],[-19,-30],[-7,-6],[-16,-2],[-30,7],[-15,-1],[7,-8],[9,-5],[9,-7],[5,-13],[-3,0],[-4,-4],[-2,-1],[4,-10],[8,-2],[59,19],[43,-19],[59,-1],[58,18],[59,33],[29,5],[17,-2],[11,-9],[3,-23],[-11,-19],[-28,-20],[-28,-11],[-4,-4],[-5,-8],[-3,-2],[-4,-1],[-3,-3],[-8,-8],[6,-1],[5,-4],[5,-5],[4,-6],[-20,-29],[-25,-13],[-132,-14],[-14,4],[-13,22],[-6,1],[-7,-3],[-5,-2],[-113,25],[-26,19],[-44,17],[9,-33],[15,-20],[19,-16],[20,-27],[7,-3],[13,-3],[9,-5],[7,-7],[14,-22],[6,-13],[4,-3],[7,-5],[3,-3],[3,-4],[2,-9],[3,-4],[3,-1],[8,0],[5,-2],[3,-3],[2,-6],[-3,-34],[-9,-24],[-13,-18],[-72,-60],[-93,-27],[-17,0],[-13,12],[-5,16],[1,15],[2,15],[-1,16],[-4,14],[-3,17],[1,15],[5,13],[-6,6],[-4,1],[-11,0],[-7,5],[-3,10],[2,10],[5,9],[-7,15],[-10,0],[-20,-15],[-10,-3],[-11,2],[-65,32],[-6,0],[-3,-2],[-7,-6],[-3,-2],[-17,2],[-5,-2],[0,-3],[-8,-28],[40,-40],[12,-20],[10,-27],[2,-15],[-4,-9],[-7,-4],[-22,-3],[-62,13],[-32,18],[-15,-2],[-9,-27],[6,-3],[-7,-9],[-9,-4],[-105,-21],[-18,-12],[9,-5],[16,-1],[9,-2],[12,-11],[6,-2],[77,8],[77,8],[18,-5],[10,-5],[49,-57],[7,-16],[-73,-17],[-24,1],[-22,8],[-11,1],[-90,-19],[-90,-19],[-13,-7],[-12,-1],[-7,-2],[-23,-23],[-12,-7],[-6,-6],[-4,-9],[6,-6],[7,-2],[5,-3],[3,-10],[3,-7],[5,-1],[31,17],[6,1],[24,-9],[97,15],[94,-8],[94,-8],[-6,-20],[-15,-14],[-129,-56],[-128,-56],[-128,-56],[-129,-56],[-70,-2],[-7,-3],[-19,-22],[-6,-6],[-106,-42],[-106,-42],[-21,-15],[-131,-20],[-131,-21],[-131,-20],[-131,-20],[-7,-4],[-5,-7],[13,-9],[5,-5],[8,-12],[4,-5],[6,-2],[19,3],[-106,-18],[-106,-19],[-106,-18],[-106,-19],[-3,2],[-4,5],[-4,2],[-9,0],[-16,-6],[-31,-19],[-23,-5],[-15,-10],[-7,-1],[-13,3],[-49,-20],[-14,-12],[-8,-3],[13,-11],[17,-3],[61,13],[15,-3],[15,-8],[-85,-17],[15,-13],[50,-1],[-10,-6],[-35,-1],[-22,-8],[-11,-10],[-6,-14],[11,-17],[26,-4],[44,6],[-9,-6],[-29,-5],[-18,-10],[-18,-15],[32,7],[10,-3],[-8,-11],[-12,-4],[-88,9],[-69,-20],[14,-5],[45,3],[-7,-7],[-8,-2],[-22,-3],[-24,-8],[-52,9],[-2,-2],[-1,-7],[-2,-2],[-48,8],[-103,-7],[-103,-7],[-97,21],[-97,22],[-46,-9],[-86,19],[-4,-1],[-2,-4],[-2,-8],[-2,-5],[-3,-2],[-4,-2],[-9,-2],[-24,13],[-122,11],[-121,12],[5,-11],[5,-6],[29,-3],[7,-6],[1,-13],[-60,14],[-28,1],[-104,25],[-105,25],[-104,26],[-14,0],[-3,-19],[-17,-4],[-78,25],[-15,0],[16,-11],[3,-5],[2,-12],[-3,-7],[-6,-5],[-15,-9],[-37,3],[-23,11],[-44,35],[-24,7],[-44,-11],[-22,0],[-34,25],[-12,5],[-12,-2],[-11,-11],[-1,-4],[0,-5],[-1,-3],[-2,-3],[-36,-8],[1,-17],[4,-13],[6,-13],[6,-14],[-12,3],[-49,39],[-53,25],[-41,-1],[-14,5],[-14,12],[-25,32],[4,-10],[16,-28],[-8,-7],[-27,0],[5,-14],[5,-10],[14,-18],[-20,10],[-10,8],[-8,12],[-9,16],[-28,37],[-1,-17],[6,-12],[17,-14],[30,-42],[-4,-5],[-1,-6],[0,-16],[-2,-5],[-3,-3],[-7,-5],[12,-19],[94,-57],[41,-59],[15,-13],[33,-15],[8,-8],[4,-11],[-2,-12],[-9,-2],[-30,11],[-4,-1],[-3,-2],[-3,-3],[-1,-4],[3,-5],[39,-30],[30,4],[8,-1],[69,-49],[42,-59],[16,-13],[49,-27],[46,-3],[14,-8],[-11,-9],[26,-29],[9,-7],[26,-7],[7,-5],[19,-26],[9,-8],[2,-4],[3,-9],[3,-6],[3,-3],[19,-7],[6,3],[20,28],[16,16],[15,9],[48,12],[131,-16],[131,-17],[131,-16],[131,-16],[131,-17],[-21,-15],[7,-11],[4,-10],[-1,-11],[-5,-15],[-7,-11],[-66,-60],[-13,-17],[-5,-11],[-3,-5],[-4,-2],[-5,0],[-3,-2],[-7,-8],[-7,-7],[-52,-36],[-9,-12],[-5,-3],[-9,-3],[-4,-4],[18,-8],[-9,-9],[-4,-2],[-6,0],[-1,4],[-1,5],[-3,3],[-7,0],[-23,-16],[-90,-31],[-89,-31],[23,-3],[47,13],[24,0],[-34,-14],[-116,-9],[-117,-10],[-19,-8],[-10,-1],[2,-2],[4,-8],[-5,-11],[-7,-6],[-8,-1],[-7,3],[-4,4],[-2,5],[-1,5],[-3,7],[-3,5],[-8,9],[-19,13],[-137,26],[-137,25],[-137,26],[-137,25],[-138,25],[-20,-9],[-7,-2],[-126,21],[-126,20],[-126,21],[-8,-1],[-39,-18],[-30,-1],[-76,19],[-75,20],[-16,-2],[-57,11],[-44,27],[-53,17],[-53,31],[5,-11],[9,-9],[17,-12],[-13,-23],[-16,-16],[-110,-37],[-67,12],[-75,-5],[15,-12],[129,-37],[130,-37],[130,-36],[130,-37],[129,-37],[130,-37],[130,-36],[129,-37],[130,-37],[13,-16],[1,-32],[2,-6],[6,-8],[1,-5],[-2,-15],[0,-7],[2,-10],[0,-6],[-1,-5],[-4,-6],[-4,-5],[-83,-48],[-11,-12],[-6,-3],[-9,-3],[-117,-11],[-118,-11],[-118,-11],[-117,-11],[-118,-11],[-118,-11],[-117,45],[-117,45],[-117,44],[-117,45],[-117,44],[-16,1],[-7,2],[-111,90],[-110,89],[-110,90],[-16,19],[-9,7],[-9,0],[-3,-1],[-4,-3],[-2,-5],[1,-8],[3,-9],[8,-14],[3,-7],[9,-37],[6,-15],[8,-12],[9,-7],[9,-4],[20,-2],[-3,-4],[-8,-11],[0,-9],[2,-5],[59,-43],[20,-2],[12,-11],[13,-8],[10,-16],[44,-40],[2,-5],[3,-14],[3,-3],[13,-4],[-11,-11],[-17,-8],[-16,0],[-11,11],[2,2],[4,6],[3,2],[-11,16],[-12,15],[-12,11],[-13,4],[-25,-8],[-12,0],[-12,7],[4,8],[5,5],[12,4],[-6,8],[-6,2],[-13,-2],[-57,14],[-6,-4],[-3,-4],[-6,-8],[-1,-4],[0,-8],[1,-7],[3,-4],[4,-2],[-10,-13],[-13,-3],[-26,3],[8,-15],[15,-34],[23,-35],[50,-41],[28,-39],[10,-11],[42,-35],[93,-51],[53,-10],[26,7],[13,-2],[6,-16],[-12,-10],[0,-11],[8,-8],[17,-7],[11,-7],[5,-1],[20,0],[90,-29],[89,-28],[7,-9],[3,-6],[5,-3],[11,-3],[55,-39],[12,-4],[-12,-9],[12,-12],[6,-4],[6,0],[18,11],[7,2],[47,-6],[-32,-17],[-15,-13],[-12,-26],[5,-16],[37,-73],[14,-13],[87,-32],[87,-32],[6,2],[9,6],[7,8],[5,10],[2,16],[-4,11],[-29,26],[-7,8],[-4,10],[0,13],[2,41],[2,12],[12,18],[16,9],[136,-4],[135,-4],[135,-4],[135,-4],[136,-5],[135,-4],[135,-4],[136,-4],[57,-38],[30,-8],[11,-6],[13,-13],[5,-1],[13,-6],[9,-17],[7,-19],[11,-16],[4,1],[5,2],[4,-1],[0,-13],[-4,-16],[-7,-12],[-14,-20],[-6,-15],[-11,-35],[-7,-16],[-14,-21],[-31,-22],[-44,-43],[-59,-35],[-109,-23],[-110,-22],[-126,4],[-126,4],[-126,3],[-126,4],[-126,4],[12,-23],[118,-26],[118,-25],[118,-26],[21,-14],[6,-2],[104,17],[33,-7],[21,-10],[11,-2],[129,20],[129,20],[128,19],[8,-5],[-2,-11],[-5,-14],[-1,-13],[6,-18],[6,-10],[16,-17],[6,-9],[11,-21],[5,-8],[4,0],[4,3],[7,8],[4,2],[4,1],[13,-2],[3,-2],[2,-3],[-11,-12],[6,-6],[18,4],[8,-1],[82,-56],[3,-5],[6,-14],[4,-4],[5,-3],[4,-5],[9,-13],[3,-3],[11,-4],[4,-18],[-6,-13],[-10,-9],[-17,-8],[-35,-10],[-7,-5],[-5,-10],[-6,-15],[17,-15],[50,-24],[22,-1],[6,-4],[6,-6],[28,-11],[32,-2],[28,-17],[22,1],[-10,-12],[-15,-1],[-42,13],[-44,-17],[-104,-11],[-13,-12],[33,-2],[3,-2],[3,-4],[5,-11],[4,-5],[4,-3],[8,-4],[16,-3],[33,9],[38,-1],[26,11],[3,-1],[11,-11],[4,0],[6,3],[4,0],[17,-10],[7,1],[8,4],[8,1],[18,-20],[16,7],[16,13],[15,7],[14,0],[7,2],[32,21],[56,7],[32,14],[16,2],[16,-5],[16,-13],[11,-6],[24,3],[11,-2],[13,-8],[93,-24],[94,-24],[93,-23],[50,4],[-4,18],[-3,7],[-4,5],[13,47],[7,20],[11,16],[15,12],[15,4],[14,-3],[23,-10],[88,20],[89,19],[9,-1],[16,-8],[6,0],[68,31],[44,36],[16,0],[26,-13],[9,-1],[33,9],[108,-28],[9,-6],[7,-10],[3,-14],[-1,-9],[-6,-15],[-1,-9],[1,-10],[1,-8],[1,-8],[-4,-9],[2,-2],[18,-8],[35,-29],[12,-4],[34,2],[-6,-12],[-2,-10],[3,-8],[6,-10],[8,-6],[7,-3],[55,-6],[26,6],[71,-16],[71,-16],[16,2],[45,24],[76,14],[64,-9],[40,-16],[20,0],[18,-13],[31,-7],[-9,-8],[-58,-23],[-34,1],[14,-13],[126,-34],[127,-34],[127,-34],[127,-34],[127,-34],[127,-34],[127,-34],[69,-1],[70,0],[15,-10],[8,-2],[121,-3],[121,-3],[121,-2],[121,-3],[120,-3],[37,-17],[20,-3],[6,-5],[2,-4],[6,-14],[3,-6],[5,-3],[4,-1],[9,1],[-8,-15],[-13,-9],[-13,-4],[-109,-5],[-108,-4],[-109,-5],[-22,9],[46,31],[-27,10],[-28,-5],[-68,-29],[-83,-5],[-14,5],[67,40],[-9,12],[-17,-5],[-43,-33],[-29,-13],[-72,-3],[-71,-3],[13,12],[42,23],[-12,10],[-16,2],[-45,-11],[-56,-34],[-90,-14],[-32,10],[-76,-6],[-4,-2],[-2,-3],[0,-6],[2,-19],[1,-5],[2,-2],[5,-2],[15,-4],[99,-4],[99,-3],[-15,-11],[13,-3],[46,13],[18,-2],[15,4],[107,3],[107,3],[107,2],[-10,-13],[-8,-16],[9,-4],[9,-1],[-11,-14],[-17,-6],[-123,-2],[-124,-2],[-124,-2],[-123,-2],[-124,-2],[-126,-35],[77,-6],[77,-7],[20,-10],[-6,-11],[-8,-6],[-17,-7],[-50,-31],[-6,-10],[-12,-32],[-5,-10],[-16,-17],[8,-11],[46,3],[-7,-10],[-13,-5],[-24,-3],[10,-6],[35,3],[-14,-11],[-46,-17],[14,-11],[75,5],[76,5],[31,18],[39,4],[4,-2],[3,-3],[2,-5],[2,-5],[2,-5],[2,-2],[5,-2],[2,-2],[2,-5],[1,-3],[-1,-3],[-2,-4],[-3,-8],[0,-6],[4,-4],[12,-4],[4,-3],[1,-3],[-3,-12],[3,-5],[5,-2],[85,15],[86,15],[-9,-8],[-10,-6],[10,-15],[14,-4],[83,32],[83,32],[70,-11],[71,-12],[13,6],[25,22],[-11,15],[13,7],[41,3],[2,-13],[7,-4],[75,7],[74,7],[111,-18],[126,25],[127,25],[126,25],[17,-4],[-12,-18],[81,16],[-30,-26],[-85,-39],[-85,-38],[-47,1],[-130,-35],[-66,-34],[-111,-18],[-111,-18],[8,-20],[10,-14],[65,-62],[-5,-16],[-3,-5],[-4,-2],[5,-3],[11,4],[5,0],[5,-4],[11,-11],[84,-62],[3,-3],[0,-5],[0,-5],[0,-6],[3,-6],[41,-48],[-18,-17],[-19,-7],[-40,-3],[8,-9],[12,-2],[55,5],[10,5],[14,15],[6,1],[5,-1],[43,-37],[11,-4],[5,2],[4,6],[7,16],[4,8],[4,5],[41,21],[6,10],[4,24],[4,6],[6,5],[5,2],[5,-2],[5,-5],[12,-24],[9,-12],[10,-3],[11,9],[-7,18],[10,8],[9,-3],[16,-21],[8,-17],[1,-18],[-7,-40],[-11,-28],[-20,-27],[-22,-20],[-17,-7],[-20,-2],[-44,-24],[-39,-34],[-63,-33],[7,-4],[8,1],[16,7],[55,6],[3,-4],[2,-10],[1,-11],[1,-6],[7,-2],[20,9],[45,9],[19,-2],[11,-17],[11,-3],[58,15],[-29,-21],[-30,-14],[44,-17],[15,1],[64,26],[17,1],[45,-24],[80,12],[79,13],[3,-4],[5,-12],[3,-3],[101,-1],[109,67],[110,67],[109,67],[109,67],[55,58],[126,52],[126,53],[126,52],[5,5],[7,9],[84,48],[17,16],[2,2],[0,3],[-1,10],[0,3],[3,4],[19,8],[2,-3],[0,-5],[4,-5],[14,-2],[27,16],[34,0],[17,-8],[15,-1],[4,-2],[1,-4],[0,-4],[3,-4],[6,-4],[46,-7],[14,5],[9,12],[-12,19],[13,8],[3,3],[2,8],[3,19],[3,5],[24,19],[7,4],[36,-1],[3,3],[5,12],[3,4],[16,10],[73,7],[72,7],[18,7],[-7,6],[-26,0],[103,28],[-13,5],[-80,-2],[-13,6],[110,7],[30,-9],[135,25],[8,3],[3,3],[5,7],[5,2],[4,1],[81,-10],[81,-11],[126,29],[127,29],[134,31],[135,31],[8,-1],[49,-20],[121,12],[121,12],[121,13],[121,12],[121,12],[42,-16],[2,1],[4,10],[2,4],[3,0],[83,-18],[127,3],[14,-4],[10,-15],[-1,-3],[-3,-7],[-2,-2],[29,0],[-45,-22],[-44,-8],[6,-10],[10,-6],[10,-3],[8,0],[18,4],[9,1],[19,-15],[11,-2],[11,4],[11,8],[25,29],[9,6],[108,25],[107,25],[14,-5],[-6,-16],[-1,-6],[2,-11],[4,-9],[5,-9],[5,-6],[17,-13],[23,-28],[11,-7],[-4,-4],[-3,-7],[-2,-8],[0,-9],[20,10],[7,0],[-22,-17],[-6,-10],[-4,-13],[-3,-10],[-4,-9],[-59,-48],[-107,-59],[15,-15],[50,-24],[-3,-10],[-4,-5],[-11,-4],[129,-31],[8,2],[-5,7],[27,29],[31,24],[32,4],[39,-46],[16,-3],[137,44],[136,43],[65,38],[29,36],[17,6],[18,-2],[17,-9],[-2,-7],[-2,-6],[-3,-4],[-3,-4],[-2,-6],[0,-17],[0,-7],[-5,-8],[-8,-7],[-14,-8],[19,-8],[20,6],[92,54],[91,54],[2,6],[1,12],[3,5],[19,17],[29,10],[3,6],[-2,11],[-4,10],[-3,5],[-5,5],[-16,9],[6,10],[12,13],[6,9],[-13,17],[-2,5],[0,9],[3,9],[6,15],[7,9],[10,4],[37,7],[10,4],[15,18],[30,6],[78,38],[79,38],[-13,8],[16,20],[5,4],[61,10],[12,5],[12,17],[-7,13],[-4,4],[-5,2],[10,10],[12,24],[9,10],[1,3],[0,5],[0,5],[0,4],[3,2],[2,1],[11,1],[3,1],[1,3],[1,10],[1,4],[1,2],[9,5],[38,35],[131,67],[4,4],[11,19],[5,4],[46,14],[-9,-7],[-10,-4],[9,-8],[96,21],[48,-9],[71,29],[72,29],[9,14],[3,3],[39,13],[15,-1],[7,1],[20,14],[85,27],[86,27],[31,0],[14,8],[-14,4],[2,8],[3,5],[3,2],[4,-2],[6,-4],[58,-25],[43,0],[107,-24],[107,-25],[-4,-6],[-5,-3],[-9,-2],[60,-10],[27,-23],[10,-5],[30,-7],[5,1],[5,2],[15,15],[4,2],[41,2],[19,13],[13,26],[13,7],[63,-18],[-2,20],[12,12],[26,10],[118,8],[6,6],[4,11],[4,5],[28,10],[15,16],[10,5],[3,3],[1,11],[0,4],[2,0],[1,0],[2,1],[11,8],[70,27],[71,27],[-70,28],[30,19],[131,0],[130,0],[131,0],[131,0],[83,36],[-69,18],[-11,16],[14,0],[80,-21],[16,1],[38,-6],[125,31],[125,32],[106,-7],[106,-6],[106,-6],[106,-7],[33,-12],[10,-1],[-10,19],[-20,6],[-36,0],[-102,44],[-101,45],[11,7],[125,2],[126,3],[125,2],[3,2],[5,7],[3,3],[4,0],[42,1],[-20,17],[-20,11],[13,17],[16,7],[136,4],[136,5],[136,4],[136,5],[136,4],[136,5],[136,4],[7,2],[22,13],[9,3],[135,3],[135,2],[135,2],[134,3],[13,3],[28,30],[11,6],[108,5],[107,5],[108,6],[23,11],[-2,3],[-2,6],[-1,3],[20,10],[44,-2],[22,8],[-112,17],[-112,17],[-112,17],[-7,6],[-7,3],[-8,-1],[-16,-6],[-15,-2],[-44,6],[-31,-4],[-17,3],[-11,11],[5,8],[3,5],[1,5],[-1,10],[0,9],[2,7],[3,8],[-132,-39],[-137,9],[-138,10],[-138,9],[-137,10],[-138,9],[-137,10],[-138,10],[-137,9],[-138,10],[-138,9],[-137,10],[-138,9],[6,15],[103,56],[103,56],[103,56],[-13,7],[-12,0],[-44,-27],[-11,-3],[-6,7],[0,5],[4,13],[-62,8],[-130,-14],[-4,7],[-4,16],[29,18],[123,43],[18,20],[-13,12],[-57,-8],[3,6],[4,5],[4,4],[5,3],[-13,18],[-15,5],[-16,-1],[-45,-17],[-3,-3],[-4,-9],[-3,-4],[-5,-2],[-17,-6],[-3,0],[-1,4],[-1,8],[-2,5],[-4,1],[-122,-20],[-123,-20],[-123,-20],[-122,-20],[-123,-20],[-130,21],[-129,21],[-129,21],[8,8],[5,3],[5,1],[-14,16],[-16,8],[-110,27],[-111,27],[-111,26],[-110,27],[-111,27],[-26,21],[-19,37],[-2,13],[-2,28],[-5,29],[1,14],[4,12],[6,12],[2,4],[1,10],[1,4],[18,49],[5,11],[7,9],[2,3],[2,11],[2,5],[57,75],[5,11],[2,6],[1,6],[2,6],[2,3],[24,15],[21,1],[3,1],[2,3],[3,13],[1,2],[3,-1],[7,-2],[42,-3],[7,2],[7,5],[-4,6],[-4,11],[-3,13],[0,11],[4,5],[6,3],[23,5],[3,5],[4,38],[3,11],[14,26],[8,19],[8,18],[12,10],[72,13],[109,-18],[18,4],[25,-4],[2,1],[3,3],[5,11],[4,3],[-53,17],[1,18],[-10,7],[-22,2],[5,10],[1,11],[-3,10],[-7,5],[18,34],[6,7],[24,7],[8,4],[14,14],[13,18],[11,10],[3,3],[3,9],[4,6],[8,9],[14,10],[52,14],[13,8],[31,6],[31,18],[7,6],[33,40],[6,3],[15,0],[6,4],[8,7],[8,3],[9,0],[8,-3],[6,0],[21,12],[17,4],[48,-1],[14,5],[47,38],[126,37],[106,-26],[56,12],[6,4],[4,10],[3,35],[5,10],[28,33],[15,11],[93,25],[93,25],[93,25],[9,-1],[3,3],[2,7],[2,9],[2,6],[4,3],[13,5],[7,6],[24,24],[14,5],[2,4],[3,14],[3,4],[41,19],[21,19],[137,35],[9,4],[19,16],[-1,3],[-1,7],[-1,3],[3,3],[6,11],[3,3],[3,1],[8,-1],[4,1],[17,9],[7,7],[8,12],[5,2],[50,8],[83,43],[96,25],[97,25],[96,25],[62,0],[72,32],[32,7],[66,-5],[26,12],[9,8],[1,2],[1,3],[0,8],[1,3],[7,7],[8,3],[46,-2],[9,3],[24,21],[29,8],[9,5],[23,21],[16,7],[32,7],[47,24],[112,23],[113,22],[113,23],[112,23],[32,14],[131,5],[131,6],[7,4],[8,9],[7,2],[8,0],[15,4],[72,-1],[33,10],[22,0],[8,3],[7,6],[10,18],[7,1],[43,-21],[4,1],[4,5],[6,11],[4,2],[4,1],[63,-36],[1,12],[5,2],[53,-17],[14,1],[14,5],[22,17],[114,-25],[27,5],[26,15],[24,21],[13,7],[24,-2],[12,6],[12,11],[5,1],[7,-2],[12,-7],[6,0],[6,5],[-21,20],[-4,9],[1,13],[7,8],[59,18],[13,10],[13,5],[88,-23],[88,-23],[7,2],[13,10],[6,1],[22,-7],[57,-4],[4,2],[7,6],[3,1],[27,-10],[1,14],[0,13],[64,-11],[11,4],[9,14],[-26,22],[11,6],[93,-23],[8,0],[13,9],[8,2],[6,-1],[19,-9],[14,0],[44,12],[-71,26],[-7,5],[-6,18],[-6,11],[-11,17],[-7,6],[-7,5],[-20,7],[-11,12],[-6,3],[-6,2],[-9,5],[-6,8],[2,12],[6,2],[17,-3],[6,1],[3,3],[3,3],[5,8],[2,6],[1,14],[2,6],[6,6],[8,1],[15,-5],[15,7],[2,25],[1,30],[7,18],[7,1],[6,-3],[6,-1],[7,5],[6,8],[7,7],[14,9],[3,0],[10,-5],[4,-1],[3,3],[6,11],[6,6],[6,4],[14,6],[-5,8],[1,13],[5,11],[6,7],[14,8],[6,6],[6,10],[4,6],[23,12],[17,2],[8,4],[7,9],[-6,5],[-4,6],[-4,9],[-3,10],[-3,7],[-3,2],[-4,1],[-4,3],[-2,3],[-2,6],[-1,3],[-8,10],[-2,5],[0,12],[3,3],[9,-1],[31,10],[29,18],[9,1],[9,-5],[5,5],[2,20],[3,19],[11,3],[-3,9],[-3,8],[-4,6],[-4,3],[2,3],[4,8],[2,3],[-7,26],[12,20],[18,13],[14,6],[119,9],[119,9],[93,-21],[93,-21],[49,-31],[31,0],[7,4],[0,13],[1,1],[4,0],[4,1],[6,-1],[102,23],[-24,13],[-11,12],[-4,18],[1,4],[2,4],[4,5],[1,6],[0,15],[1,6],[4,3],[18,2],[4,4],[1,3],[-1,4],[2,4],[2,3],[11,8],[5,1],[2,2],[2,4],[2,11],[1,4],[6,3],[20,-2],[4,2],[9,10],[5,4],[35,13],[10,9],[16,26],[5,7],[6,5],[23,9],[10,-1],[14,7],[2,3],[0,5],[-1,13],[1,4],[23,15],[10,12],[10,18],[-15,9],[-50,0],[-9,2],[-7,6],[-6,10],[-6,13],[-6,6],[-7,-3],[-15,-10],[-123,-44],[-124,-43],[-136,6],[-6,5],[-12,17],[-6,4],[-55,0],[-16,6],[-10,12],[12,4],[21,-11],[12,-2],[55,27],[79,10],[12,5],[12,12],[-14,15],[-15,8],[-112,24],[-12,-6],[-7,-2],[-26,5],[-18,11],[-7,6],[-4,11],[-1,20],[1,19],[3,16],[5,15],[6,12],[-4,15],[1,11],[4,9],[29,33],[129,65],[5,8],[-1,15],[-5,15],[-4,15],[4,12],[23,26],[7,7],[64,22],[20,13],[7,2],[32,-9],[48,7],[4,4],[7,12],[3,3],[7,2],[54,-5],[28,6],[76,-24],[28,-22],[14,-23],[5,-4],[4,3],[13,17],[4,0],[7,-8],[5,2],[8,8],[9,5],[9,1],[8,-1],[19,-7],[10,-1],[13,5],[9,-3],[5,1],[17,9],[6,4],[-7,8],[-14,9],[-6,7],[9,14],[6,16],[6,12],[12,5],[-38,46],[-39,37],[-10,6],[-4,5],[-1,7],[0,11],[-3,7],[-4,5],[-16,11],[-22,10],[-9,11],[8,6],[7,2],[40,-1],[58,-16],[32,-19],[30,-10],[38,-3],[6,-4],[15,-16],[16,-11],[8,-1],[15,8],[16,-2],[8,3],[17,12],[7,3],[23,1],[7,3],[8,6],[20,23],[8,6],[7,3],[8,1],[3,3],[5,10],[3,3],[5,1],[4,2],[3,5],[4,7],[2,7],[1,5],[1,4],[78,41],[12,0],[6,1],[17,14],[5,3],[7,-1],[19,-5],[6,2],[21,12],[96,29],[95,29],[15,-2],[11,3],[21,14],[5,5],[4,7],[2,10],[4,21],[3,10],[-4,0],[-12,4],[-7,9],[-1,2],[9,5],[3,3],[2,5],[3,11],[2,3],[12,6],[3,4],[2,5],[2,8],[1,7],[-1,2],[7,7],[2,9],[-2,6],[-7,1],[-24,-8],[-6,3],[6,6],[30,14],[2,3],[0,4],[-2,3],[-6,5],[6,8],[28,11],[7,8],[3,2],[23,9],[-6,8],[-6,0],[-6,-2],[-6,1],[3,7],[3,4],[17,8],[15,15],[2,4],[0,1],[-1,3],[0,3],[0,3],[1,2],[11,18],[3,8],[2,8],[-2,10],[-6,8],[2,8],[5,12],[20,30],[-11,16],[-17,7],[-80,-4],[-81,-4],[-62,30],[-65,15],[-46,26],[-6,7],[-44,76],[-10,26],[-4,33],[9,23],[15,16],[24,16],[40,4],[52,21],[20,1],[41,-10],[-11,-17],[-5,-14],[1,-16],[8,-22],[9,-10],[12,-4],[66,-4],[21,-9],[21,-17],[41,-49],[10,-7],[21,-9],[33,-5],[23,4],[22,12],[22,18],[-6,16],[-5,12],[-23,31],[-3,11],[2,12],[6,16],[14,22],[16,16],[69,35],[69,34],[18,15],[13,22],[-12,20],[-17,12],[-34,15],[-38,4],[-20,8],[-7,17],[5,9],[10,8],[36,18],[54,12],[19,-5],[17,-15],[-11,-25],[1,-24],[11,-21],[15,-12],[14,-6],[106,-3],[96,-51],[14,-13],[12,-18],[6,-13],[1,-10],[-4,-10],[-8,-10],[-10,-8],[-18,-22],[-2,-4],[-1,-8],[1,-8],[1,-7],[2,-6],[4,-5],[3,-1],[9,4],[7,1],[14,-6],[7,0],[16,4],[16,0],[8,-4],[21,-27],[-22,-35],[17,-12],[9,-8],[6,-11],[7,-33],[1,-9],[-3,-8],[-14,-19],[8,-2],[7,0],[14,3],[8,0],[13,-8],[38,-10],[5,0],[5,4],[3,8],[0,4],[-1,4],[-1,3],[2,5],[3,4],[6,6],[11,19],[4,5],[19,12],[13,13],[5,4],[6,0],[7,-3],[8,-8],[4,-9],[0,-13],[-5,-15],[76,-9],[8,3],[7,7],[7,5],[8,0],[16,-6],[6,3],[7,11],[5,13],[-3,11],[-7,6],[-24,12],[-7,7],[-7,9],[-4,11],[-1,14],[1,28],[3,11],[36,43],[13,6],[5,6],[2,14],[1,65],[-2,30],[-8,22],[-26,30],[-32,20],[-14,14],[-6,9],[-5,12],[-13,45],[-6,13],[14,17],[15,11],[101,24],[58,-4],[93,-39],[92,-40],[4,6],[9,46],[5,13],[34,46],[16,10],[16,7],[84,17],[94,-31],[6,-7],[22,-35],[3,-10],[-1,-13],[-3,-12],[-4,-7],[-6,-6],[-4,-6],[-16,-38],[-3,-10],[-4,-25],[-3,-7],[-4,-6],[-79,-41],[-6,-6],[-10,-16],[-6,-6],[10,-11],[5,-8],[1,-8],[-4,-10],[-5,-8],[-33,-35],[-12,-9],[-12,-3],[28,-28],[8,-4],[8,1],[15,10],[49,-8],[20,11],[63,-7],[4,1],[11,7],[3,-1],[9,-4],[23,5],[32,-9],[7,1],[14,11],[8,3],[110,-9],[24,6],[31,-6],[59,13],[11,-2],[48,-26],[1,15],[8,2],[18,-9],[39,-6],[-10,14],[-5,17],[2,11],[13,1],[13,-7],[38,-35],[7,-4],[3,-4],[2,-5],[1,-7],[-1,-6],[-1,-6],[0,-7],[0,-13],[2,-2],[17,-4],[6,-5],[9,-16],[5,-7],[6,-3],[16,-4],[6,1],[-7,21],[0,10],[2,10],[6,8],[6,2],[13,-5],[7,-1],[6,3],[4,9],[1,59],[4,13],[3,8],[6,1],[7,-3],[7,-5],[19,-25],[10,-8],[40,-2],[-2,14],[-4,13],[-1,10],[6,10],[8,4],[7,3],[15,1],[30,-10],[14,0],[14,16],[7,-18],[46,-48],[14,-8],[27,-5],[18,8],[6,0],[4,-6],[6,-23],[5,-12],[12,-16],[6,-5],[7,-2],[6,2],[13,8],[5,6],[10,20],[4,1],[12,-10],[7,-4],[6,-1],[6,1],[21,16],[6,3],[7,-1],[34,-15],[5,2],[5,6],[5,1],[20,-19],[6,0],[20,9],[6,6],[12,14],[7,4],[-6,26],[1,11],[3,12],[11,17],[12,14],[12,7],[14,0],[51,-27],[11,-10],[28,-35],[2,-10],[0,-16],[-4,-9],[-5,-5],[-8,-2],[6,-33],[-7,-24],[-13,-23],[-10,-24],[15,-6],[6,-4],[6,-9],[5,-4],[15,4],[8,0],[37,-17],[6,-6],[5,-9],[6,-16],[11,-17],[14,7],[67,78],[68,78],[5,10],[7,22],[5,10],[43,41],[17,8],[33,6],[7,4],[22,28],[8,6],[25,4],[4,3],[12,16],[5,3],[24,3],[38,20],[72,18],[72,18],[2,2],[4,11],[3,3],[13,1],[3,2],[7,10],[6,3],[6,0],[8,2],[24,17],[40,9],[22,16],[56,7],[4,3],[5,9],[4,2],[72,21],[12,9],[5,2],[3,-1],[6,-4],[3,-1],[4,1],[10,7],[6,3],[16,-2],[6,1],[12,5],[19,-3],[43,4],[26,-6],[32,13],[4,4],[6,4],[10,-4],[6,0],[13,5],[68,3],[14,7],[19,2],[23,12],[13,0],[-4,9],[6,2],[5,0],[11,-3],[6,0],[29,12],[23,5],[36,-6],[13,5],[13,8],[5,5],[2,3],[2,7],[2,2],[4,1],[5,0],[3,3],[-1,10],[5,-1],[9,-6],[4,-1],[4,0],[9,3],[32,-1],[64,21],[15,2],[11,-4],[4,0],[4,2],[4,6],[3,7],[0,6],[1,6],[4,3],[15,2],[38,-9],[2,1],[2,2],[3,1],[22,-4],[7,0],[21,11],[7,1],[41,-12],[7,5],[6,9],[9,7],[3,1],[8,-2],[8,2],[3,-3],[3,-5],[3,-4],[9,-1],[48,14],[7,-1],[13,-8],[4,0],[11,10],[4,0],[19,-5],[6,-6],[-2,3],[-3,12],[10,0],[21,-11],[10,3],[2,3],[3,9],[1,3],[3,1],[4,0],[13,4],[6,0],[5,-3],[5,-1],[9,6],[5,2],[6,-2],[19,-12],[6,-2],[16,5],[5,0],[11,-3],[5,0],[1,3],[2,3],[5,3],[-4,15],[4,11],[8,4],[7,-7],[6,-8],[4,-1],[19,20],[5,2],[4,-1],[30,-13],[10,-9],[2,1],[2,3],[2,5],[2,3],[2,0],[13,-3],[4,1],[3,6],[-1,11],[4,-3],[20,-3],[4,2],[7,5],[3,2],[5,0],[13,-6],[18,0],[11,-4],[4,2],[3,7],[4,10],[5,6],[5,-6],[4,-9],[7,-4],[-1,18],[-3,8],[-50,57],[-6,11],[-4,13],[-3,15],[-4,34],[0,20],[3,10],[15,8],[99,16],[16,-8],[7,-10],[2,-14],[-1,-16],[-7,-39],[-2,-6],[-3,-3],[-9,-5],[-3,-4],[0,-15],[3,-19],[4,-18],[5,-11],[7,-10],[7,-5],[49,-2],[33,-11],[8,1],[14,11],[7,4],[7,-1],[25,-8],[29,6],[30,14],[3,4],[5,10],[2,2],[17,0],[9,2],[7,8],[6,13],[1,17],[38,-11],[3,0],[4,2],[7,7],[4,0],[22,-11],[5,0],[6,10],[3,15],[0,15],[-4,11],[-7,5],[-7,3],[-23,3],[-23,15],[-14,18],[3,18],[51,57],[13,8],[15,3],[31,-5],[31,-15],[3,-3],[2,-4],[2,-12],[3,-8],[3,-4],[22,-18],[6,-7],[6,-11],[5,-7],[12,-6],[6,-5],[4,-12],[0,-14],[-3,-15],[-1,-15],[16,2],[14,-6],[28,-26],[25,-30],[6,-6],[86,-42],[10,-7],[4,-2],[15,0],[8,-4],[16,-15],[15,-4],[19,-15],[16,-4],[13,-13],[5,-3],[24,-5],[44,-25],[28,-8],[11,3],[3,-2],[11,-17],[14,-12],[8,-5],[6,1],[17,9],[9,2],[80,-21],[17,1],[34,-7],[8,1],[2,3],[7,14],[2,5],[6,4],[22,7],[3,3],[3,4],[5,17],[4,3],[9,3],[-2,14],[5,28],[-1,35],[6,9],[16,9],[-7,17],[6,9],[6,5],[13,5],[6,4],[4,8],[3,11],[3,12],[9,14],[16,7],[42,4],[22,19],[11,3],[18,-4],[6,1],[18,13],[7,2],[4,18],[16,10],[34,3],[6,5],[-3,10],[-17,26],[-8,5],[-127,23],[-13,12],[-3,12],[5,9],[8,6],[7,3],[17,1],[49,-11],[65,15],[16,-3],[16,-14],[7,-9],[15,-36],[6,-9],[14,-13],[16,-35],[14,-15],[16,-8],[47,-2],[8,-5],[14,-15],[55,-14],[47,3],[18,-2],[3,1],[8,8],[4,2],[9,0],[6,-3],[4,2],[7,16],[5,4],[26,-7],[1,3],[1,3],[0,4],[2,1],[9,1],[4,-1],[7,-4],[4,-1],[8,1],[7,5],[4,2],[8,-4],[5,-1],[5,0],[3,-1],[3,-2],[4,-6],[2,-2],[3,1],[6,4],[9,-1],[18,-13],[9,-3],[16,2],[8,2],[4,6],[5,9],[38,4],[30,-11],[109,-16],[18,3],[8,-1],[20,-19],[18,-7],[17,0],[8,14],[2,18],[-1,6],[-3,7],[-1,5],[0,7],[2,7],[1,6],[14,25],[7,10],[9,6],[46,10],[3,4],[6,11],[4,4],[7,1],[23,-6],[65,14],[16,-3],[14,-12],[3,-6],[3,-7],[1,-7],[1,-9],[-2,-12],[-1,-6],[-4,-4],[-5,-3],[3,-21],[1,-20],[-2,-18],[-6,-19],[-6,-13],[-9,-13],[-8,-10],[-8,-7],[5,-4],[102,8],[15,-14],[-4,-8],[4,-4],[5,0],[5,2],[46,0],[19,9],[6,1],[74,-9],[74,-9],[11,-10],[24,-4],[9,2],[51,-17],[66,2],[1,3],[0,4],[2,5],[10,7],[11,3],[23,0],[-52,76],[-2,5],[-1,5],[-1,4],[-3,3],[-5,4],[-2,3],[-2,5],[17,1],[37,14],[16,13],[19,8],[39,3],[19,12],[6,12],[5,12],[4,10],[10,6],[19,0],[59,-19],[38,-26],[-4,-2],[-4,-1],[-8,2],[-5,0],[-4,-3],[-8,-12],[8,-8],[19,-31],[8,-16],[-5,-8],[-8,-5],[-5,-6],[-1,-9],[-2,-3],[-7,-4],[-5,-3],[-3,-4],[-6,-21],[-1,-7],[-2,-6],[-33,-60],[-7,-8],[-15,-7],[-6,-7],[1,-11],[3,-15],[0,-34],[4,-10],[4,-1],[6,3],[4,0],[5,-2],[4,-5],[8,-12],[5,-11],[10,-28],[5,-8],[45,-32],[77,-19],[17,3],[29,29],[15,0],[32,-12],[36,-4],[12,-6],[10,-1],[22,13],[10,2],[49,-10],[5,0],[21,12],[18,-1],[5,1],[11,8],[5,2],[19,2],[39,15],[11,1],[33,-9],[11,4],[44,31],[-8,16],[-4,17],[2,16],[9,16],[-8,14],[-3,8],[-1,9],[3,10],[5,6],[11,6],[-6,11],[2,10],[22,41],[8,10],[7,5],[25,2],[5,6],[6,17],[0,3],[-2,8],[0,2],[2,7],[8,13],[31,66],[7,9],[16,14],[14,5],[15,-6],[54,-39],[7,-10],[3,-5],[1,-5],[2,-4],[5,-4],[34,-21],[28,-31],[15,-11],[31,-13],[8,-7],[14,-16],[7,-5],[7,-9],[-1,-13],[-5,-12],[-7,-8],[-14,-9],[-87,-8],[-87,-8],[-8,-10],[56,-17],[62,-1],[12,-7],[15,2],[6,-1],[-12,-38],[5,-2],[10,1],[10,-5],[5,3],[5,4],[5,2],[5,-2],[17,-12],[4,0],[9,3],[36,2],[10,-5],[20,-16],[6,-2],[17,-3],[3,-2],[4,-6],[2,-1],[2,0],[5,3],[58,6],[21,-6],[10,1],[8,7],[25,39],[7,16],[-1,15],[4,3],[3,1],[8,1],[4,2],[3,5],[2,7],[4,6],[5,12],[1,14],[-2,12],[-8,6],[9,4],[18,2],[7,8],[7,16],[5,18],[7,40],[11,14],[99,-4],[19,-9],[28,-21],[37,-44],[3,-6],[2,-11],[1,-11],[2,-10],[5,-9],[-31,-35],[-7,-4],[-8,-1],[-7,2],[7,-24],[8,-13],[44,-33],[6,-8],[9,-17],[6,-5],[115,-58],[81,-21],[50,0],[24,-8],[12,0],[-2,3],[-2,6],[-2,2],[8,2],[6,-3],[6,-6],[7,-6],[5,-2],[3,0],[8,6],[4,0],[4,-2],[8,-5],[6,-2],[13,-1],[24,-16],[19,-4],[33,-1],[16,5],[16,11],[14,4],[34,-13],[15,-1],[10,8],[3,0],[4,-2],[3,0],[25,9],[8,5],[11,20],[7,2],[19,1],[7,-3],[3,1],[5,5],[2,5],[3,3],[6,-1],[8,1],[5,6],[5,4],[7,-3],[8,-5],[82,-30],[6,2],[2,10],[-2,10],[0,9],[6,7],[-5,8],[-5,2],[-11,0],[-7,2],[-6,4],[-5,7],[-5,9],[6,9],[6,6],[6,4],[7,0],[13,-5],[6,2],[3,11],[6,-8],[6,3],[5,7],[6,6],[8,2],[8,-2],[8,1],[13,10],[8,2],[3,4],[5,14],[4,7],[3,4],[111,8],[8,3],[8,6],[8,3],[16,-6],[8,1],[9,7],[6,9],[8,6],[9,0],[38,-9],[6,3],[6,6],[16,11],[16,16],[8,5],[23,8],[14,10],[17,-1],[52,14],[4,2],[4,4],[7,11],[4,4],[15,4],[2,3],[3,14],[3,6],[8,5],[26,12],[10,0],[4,3],[5,10],[3,4],[18,13],[1,2],[1,7],[1,2],[3,1],[5,-1],[2,0],[32,12],[41,4],[4,2],[2,4],[2,10],[2,6],[3,3],[5,4],[8,3],[90,16],[1,1],[3,6],[1,1],[2,-1],[4,-7],[2,-2],[7,1],[16,5],[16,0],[24,7],[53,3],[21,-8],[9,1],[55,35],[8,0],[14,-8],[8,-3],[65,-3],[37,8],[23,12],[32,2],[65,32],[42,7],[14,10],[61,18],[13,13],[8,4],[7,3],[56,1],[16,7],[13,10],[6,3],[8,0],[6,3],[4,8],[3,10],[4,10],[6,6],[13,6],[5,9],[2,15],[-2,12],[-5,8],[-8,3],[2,6],[5,13],[1,5],[0,4],[-3,13],[-1,7],[4,0],[3,2],[2,5],[-1,8],[6,0],[3,5],[1,9],[3,9],[3,6],[7,9],[3,6],[4,8],[3,7],[2,9],[1,11],[0,5],[-1,3],[-2,7],[-1,4],[1,4],[2,4],[1,5],[2,31],[-1,9],[-1,4],[-4,13],[-1,4],[1,3],[0,4],[0,4],[-4,38],[-4,16],[-7,9],[-38,32],[-11,16],[-14,12],[-47,73],[-3,7],[-2,8],[-3,6],[-4,2],[10,15],[2,4],[-1,7],[-5,27],[-2,18],[-1,18],[2,16],[15,28],[3,2],[4,1],[7,4],[63,55],[105,49],[139,-3],[138,-2],[24,-6],[18,-23],[6,-40],[-4,-7],[-78,-28],[-2,-4],[-2,-16],[-3,-1],[-5,1],[-4,-8],[-7,-16],[-9,-12],[-40,-37],[-63,-25],[7,-5],[39,4],[3,-3],[5,-14],[3,-5],[16,-13],[15,-6],[122,-6],[8,4],[17,23],[5,4],[33,8],[9,-2],[9,-8],[-12,-4],[12,-12],[4,-2],[19,1],[5,-3],[6,-5],[18,-9],[5,-5],[9,-13],[15,-12],[19,-22],[31,-18],[21,-20],[-7,-11],[-5,-7],[-3,-10],[4,-18],[2,-17],[-3,-15],[-7,-13],[-7,-7],[6,-21],[3,-8],[5,-5],[20,-12],[-7,-25],[-13,-10],[-13,-6],[-10,-15],[2,-23],[12,-17],[33,-22],[7,-1],[14,2],[7,3],[12,8],[13,2],[14,7],[21,1],[41,19],[55,0],[27,8],[14,9],[8,1],[6,-5],[12,-33],[4,-2],[14,9],[44,18],[-10,23],[10,8],[13,0],[24,-9],[56,-5],[13,-5],[2,-2],[0,-5],[0,-6],[0,-6],[3,-14],[4,-6],[37,-28],[16,-23],[6,-4],[-7,-11],[0,-14],[3,-14],[7,-11],[8,-3],[6,4],[5,7],[8,2],[7,1],[23,12],[8,6],[-1,10],[-5,10],[-7,10],[24,31],[59,-15],[29,15],[-13,9],[-6,6],[-6,8],[9,3],[69,2],[-2,-3],[-2,-6],[-1,-3],[2,-1],[4,-5],[2,-2],[-2,-4],[-3,-3],[-3,-1],[-3,0],[7,-16],[16,-2],[55,25],[6,0],[44,-23],[6,-6],[2,-9],[-1,-8],[-7,-4],[-28,-10],[-27,-18],[6,-8],[6,-3],[14,-3],[7,-5],[18,-26],[11,-10],[3,-4],[3,-11],[-1,-6],[-3,-4],[-8,-18],[-1,-6],[5,-2],[16,-3],[10,2],[7,4],[8,3],[9,-4],[8,-8],[6,-8],[19,-34],[7,-7],[34,-17],[8,-8],[0,-15],[21,0],[42,-10],[21,4],[10,6],[5,4],[2,5],[0,11],[-3,5],[-40,22],[-30,32],[-5,16],[2,24],[77,48],[22,2],[9,6],[1,19],[4,-1],[3,1],[4,2],[3,4],[-19,2],[-5,2],[-6,9],[-2,11],[2,28],[7,22],[13,11],[79,12],[12,11],[7,23],[7,18],[14,-6],[-4,-16],[6,-9],[9,-3],[8,-1],[-4,6],[-14,13],[7,13],[10,3],[21,-7],[-3,10],[-3,5],[-3,1],[-5,-3],[-4,1],[-4,8],[-2,11],[-2,8],[23,10],[8,-1],[-16,21],[8,1],[4,2],[2,5],[2,8],[6,25],[2,6],[5,11],[1,5],[-1,10],[-3,5],[-33,26],[-3,5],[3,10],[9,4],[19,2],[-3,19],[-5,11],[-14,20],[21,9],[-21,43],[-8,24],[1,27],[4,17],[4,10],[18,30],[4,12],[7,29],[2,13],[2,3],[11,4],[102,12],[30,16],[7,7],[13,17],[7,5],[15,4],[49,-4],[4,-3],[7,-9],[3,-2],[3,1],[2,4],[3,4],[30,15],[29,34],[13,10],[0,8],[-7,15],[4,2],[8,2],[3,1],[3,3],[5,7],[3,3],[3,1],[25,2],[6,3],[12,11],[23,13],[27,5],[14,8],[11,12],[122,39],[35,-2],[24,14],[26,5],[69,-1],[-3,17],[-1,9],[2,5],[4,5],[10,20],[-8,4],[-2,8],[1,12],[4,13],[3,5],[3,3],[4,3],[3,3],[7,13],[3,4],[4,3],[53,17],[-6,24],[9,-4],[38,7],[31,16],[82,18],[11,-4],[18,-11],[74,8],[10,4],[13,17],[5,3],[18,4],[4,4],[4,6],[5,6],[4,2],[43,-6],[94,11],[8,-2],[21,-24],[9,-3],[7,2],[9,13],[7,4],[25,0],[7,6],[-13,20],[-46,43],[12,29],[16,16],[71,31],[18,0],[18,-8],[8,-1],[8,3],[16,12],[8,4],[28,0],[4,2],[8,9],[4,1],[13,-9],[14,-2],[7,-4],[8,-6],[8,-9],[-3,-11],[-5,-10],[-5,-7],[-6,-3],[8,-12],[10,-4],[22,4],[8,9],[7,13],[7,12],[9,1],[-6,23],[-3,7],[22,25],[8,5],[102,3],[8,-7],[13,-24],[5,-6],[17,-17],[9,-1],[9,9],[-10,19],[-3,11],[-1,12],[2,16],[4,7],[5,3],[37,-2],[15,4],[3,13],[-9,7],[-67,5],[-12,6],[-2,2],[-1,4],[-2,15],[-1,7],[-3,5],[11,18],[-22,15],[7,19],[-3,10],[1,15],[4,15],[4,8],[27,23],[14,8],[14,4],[29,1],[22,-8],[7,-1],[22,8],[14,-2],[14,7],[7,2],[6,-2],[7,-3],[12,-10],[-8,-14],[3,-12],[8,-8],[9,-4],[78,-10],[37,-23],[-31,-15],[-5,-3],[-9,-11],[-4,-5],[-4,-1],[-13,3],[-78,-26],[10,-4],[4,-6],[3,-9],[-2,-4],[-5,-4],[-5,-6],[-2,-11],[13,1],[41,21],[28,-1],[28,-12],[-6,-10],[-10,-10],[-10,-7],[-8,-2],[-10,2],[-8,-2],[-7,-8],[-5,-17],[27,-1],[-18,-12],[-9,-3],[-11,0],[10,-12],[11,0],[10,6],[15,14],[7,9],[5,3],[102,-6],[-6,-18],[-12,-11],[-73,-20],[5,-11],[10,-7],[34,-12],[6,1],[11,5],[2,3],[1,3],[1,3],[25,13],[63,54],[10,4],[62,-2],[9,-3],[40,-36],[20,-7],[20,0],[-3,-10],[-4,-4],[-5,-1],[-6,-2],[-61,-77],[9,-12],[7,-14],[-2,-3],[-4,-6],[-3,-3],[6,-6],[4,-25],[5,-9],[7,-3],[30,1],[5,7],[4,9],[5,10],[25,23],[14,17],[11,20],[10,22],[17,53],[2,13],[2,16],[-2,12],[-6,9],[-13,13],[-3,5],[-4,10],[-7,11],[-1,7],[-1,18],[-6,25],[-1,13],[4,12],[7,8],[7,6],[106,34],[15,10],[8,3],[7,0],[15,-3],[2,5],[5,7],[2,4],[-3,7],[3,8],[4,6],[3,5],[7,5],[20,5],[-1,5],[-7,20],[-3,5],[6,10],[9,0],[9,-2],[8,1],[-15,24],[-26,6],[-47,-13],[7,14],[-6,9],[-7,3],[-6,-1],[-87,-40],[-25,1],[-16,5],[-15,10],[-15,3],[-8,4],[-15,13],[-6,10],[-5,12],[-2,16],[-2,18],[1,17],[5,12],[63,46],[131,31],[15,11],[14,17],[15,12],[15,-7],[4,-7],[12,-25],[2,-11],[0,-22],[3,-9],[-26,-10],[-26,-17],[14,1],[4,-2],[4,-4],[7,-15],[4,-5],[9,-2],[49,14],[85,-3],[9,-6],[8,-9],[8,-15],[3,-17],[-6,-16],[-12,-19],[-10,-26],[-3,-5],[-33,-36],[9,-6],[10,2],[9,7],[8,11],[8,9],[22,2],[9,7],[3,6],[7,17],[3,7],[4,5],[4,3],[4,1],[15,0],[4,3],[5,16],[5,5],[5,2],[5,0],[10,-3],[28,-25],[28,-5],[19,-14],[32,-13],[4,-3],[7,-9],[5,-3],[5,-1],[16,3],[-7,10],[-15,8],[-6,14],[9,4],[9,1],[18,-4],[5,-3],[13,-14],[4,-2],[15,-1],[-17,23],[9,8],[12,2],[23,-4],[-5,6],[-4,7],[-1,8],[4,11],[-8,-4],[-8,3],[-16,11],[-41,9],[-11,10],[-5,2],[-9,1],[-5,2],[-8,2],[-27,-9],[4,5],[2,6],[0,8],[-1,9],[1,8],[3,4],[9,3],[-20,10],[-7,9],[5,14],[13,22],[6,6],[4,2],[3,1],[3,2],[5,15],[3,5],[51,17],[6,7],[13,21],[-15,11],[-3,0],[-6,-7],[-3,0],[-8,4],[-8,1],[-17,-2],[-8,-3],[-13,-11],[-8,-4],[-3,1],[-8,9],[-5,2],[-29,-1],[-17,3],[-13,15],[-5,34],[-2,15],[-5,30],[-2,14],[1,10],[2,7],[6,14],[1,7],[2,19],[2,9],[23,48],[28,33],[32,21],[71,14],[72,14],[14,8],[14,12],[7,4],[8,1],[32,-8],[8,3],[4,11],[4,13],[6,11],[21,25],[38,16],[44,33],[124,39],[87,3],[87,3],[120,37],[34,-1],[93,33],[15,0],[47,-23],[15,-3],[63,8],[131,-16],[131,-17],[119,-57],[39,-47],[5,-5],[6,-2],[14,1],[5,-1],[-4,-18],[7,-19],[12,-16],[9,-10],[25,-13],[5,-6],[15,-25],[5,-6],[5,-3],[6,-2],[6,1],[6,-2],[3,-7],[2,-10],[4,-11],[6,-8],[13,-11],[6,-7],[13,-25],[6,-5],[3,20],[4,12],[6,6],[19,6],[81,-11],[111,-74],[9,-10],[5,-8],[5,-12],[3,-13],[-1,-13],[-9,-16],[0,-7],[9,-17],[2,-5],[-2,-4],[-5,-4],[-6,-2],[-63,-6],[-4,1],[-10,10],[-3,1],[-44,-4],[-15,3],[-33,17],[-16,17],[0,24],[-9,-5],[-5,-7],[-3,-13],[-2,-19],[-33,32],[-9,5],[-19,2],[-8,5],[-11,15],[-4,2],[-5,1],[-10,-1],[-23,6],[-9,-1],[-9,-6],[22,-9],[4,-6],[0,-13],[-6,-8],[-15,-9],[21,-9],[9,-1],[4,-1],[5,-7],[2,-7],[3,-5],[11,6],[5,0],[37,-13],[16,-12],[17,1],[8,-1],[-6,-9],[-36,-10],[4,-12],[3,-6],[2,-1],[5,2],[10,0],[20,8],[8,0],[-42,-24],[20,-16],[10,-2],[33,8],[11,-2],[10,-6],[-10,-17],[13,-5],[-7,-13],[-6,-7],[-7,-4],[-9,-2],[-47,9],[-4,3],[-2,4],[-2,5],[-3,5],[-8,9],[-8,5],[-18,0],[14,-20],[-8,-12],[-27,-3],[-11,-10],[33,-8],[10,-7],[-4,-2],[-4,-3],[-7,-8],[24,-1],[7,-6],[-22,-25],[-22,-18],[-98,-52],[-26,-22],[-8,-33],[117,40],[-3,-20],[-16,-70],[1,-6],[4,-9],[4,-8],[4,-5],[10,-8],[3,16],[3,15],[5,12],[15,25],[9,11],[4,5],[5,15],[3,6],[30,40],[31,32],[34,21],[44,11],[4,-2],[4,-3],[5,-2],[3,3],[3,6],[4,3],[13,1],[86,-23],[18,0],[4,-2],[-14,27],[10,5],[9,3],[33,-3],[4,1],[5,6],[6,12],[4,5],[9,2],[10,-2],[10,-5],[15,-13],[30,-5],[3,-3],[6,-11],[3,-3],[24,-8],[4,-4],[6,-12],[3,-4],[5,-1],[14,10],[14,0],[3,-3],[3,-7],[2,-9],[-1,-9],[-3,-7],[-19,-15],[-9,-11],[-5,-13],[7,-4],[7,3],[56,43],[43,-1],[-2,-22],[10,-5],[65,22],[50,-4],[13,-8],[35,-35],[14,-5],[-13,-26],[-7,-9],[-9,-3],[-74,21],[-39,25],[-9,1],[5,-26],[7,-14],[22,-17],[2,-2],[0,-4],[1,-4],[2,-1],[10,4],[9,1],[10,-3],[40,-21],[32,-31],[11,-4],[9,7],[1,-13],[-3,-8],[-6,-3],[-18,-4],[-6,-3],[-7,-6],[12,-2],[3,-2],[4,-7],[2,-2],[41,6],[12,8],[4,0],[9,-10],[32,-25],[19,-30],[9,-7],[10,1],[12,6],[-12,19],[-11,23],[4,6],[5,0],[9,-5],[5,-1],[6,2],[11,6],[-3,14],[-1,15],[1,13],[6,11],[-5,3],[0,6],[3,5],[6,2],[66,-4],[49,-3],[39,14],[26,3],[18,-4],[21,8],[2,-1],[4,-8],[3,-2],[33,-7],[11,-11],[5,-5],[20,-9],[12,0],[10,-11],[7,-5],[6,0],[5,2],[6,1],[11,-10],[6,-1],[5,4],[5,7],[2,-11],[4,-5],[12,0],[18,-8],[7,0],[-1,-8],[-2,-7],[-3,-4],[-4,-2],[3,-6],[3,-3],[3,-1],[4,2],[2,-1],[9,-14],[7,-6],[9,-2],[93,32],[70,-7],[71,-7],[8,-3],[16,-11],[8,-2],[27,0],[8,-5],[15,-16],[22,-5],[35,-16],[14,5],[6,3],[23,3],[88,61],[7,3],[74,9],[75,9],[54,-14],[32,0],[129,-37],[14,-11],[15,-4],[7,-5],[3,-1],[7,3],[4,0],[5,-2],[8,-8],[19,-9],[112,-17],[111,-16],[111,-17],[112,-16],[111,-17],[3,2],[7,7],[3,2],[26,-7],[6,1],[15,10],[18,5],[34,0],[44,-17],[4,-3],[7,-8],[4,-3],[101,-11],[102,-11],[31,-17],[54,-11],[93,13],[18,-7],[92,23],[13,8],[10,13],[1,4],[2,13],[2,5],[2,6],[4,3],[20,13],[14,4],[56,-5],[16,-7],[7,-8],[3,-10],[-1,-14],[2,-15],[3,-14],[6,-7],[-14,-44],[-9,-47],[-2,-14],[2,-16],[9,-31],[50,-97],[48,-51],[3,-5],[1,-5],[2,-6],[5,-4],[3,-5],[3,-8],[5,-18],[7,-15],[7,-6],[18,-1],[-16,-8],[-5,-5],[-4,-3],[-10,1],[-4,-3],[-9,-12],[-11,-10],[-11,-7],[-10,-4],[-9,0],[-19,4],[-36,-3],[-9,-6],[6,-4],[6,-2],[-20,-6],[-8,-7],[14,-6],[15,-1],[-7,-11],[-7,-30],[-6,-10],[5,-1],[4,1],[10,3],[-14,-13],[-52,-27],[-21,-18],[-15,-5],[-7,-6],[-3,-12],[11,1],[-5,-9],[9,-3],[17,-9],[92,13],[39,-6],[-9,-13],[-31,-25],[8,-3],[8,0],[-14,-15],[-16,-10],[-100,-37],[5,-3],[14,-3],[-3,-5],[-3,-6],[-2,-7],[-2,-7],[14,-2],[95,-40],[9,-16],[1,-29],[-6,-29],[-10,-19],[-14,-9],[-14,-6],[-15,0],[-43,18],[-15,0],[-23,-27],[-13,0],[-67,35],[-14,0],[-7,-4],[-6,-7],[-12,-20],[-5,-7],[-7,-5],[-13,-5],[10,-11],[24,-15],[10,-12],[-42,-23],[-4,-6],[-1,-10],[1,-18],[43,4],[44,-8],[86,-36],[-14,-24],[-14,-18],[-15,-10],[-18,-3],[-38,4],[-19,-5],[-14,-17],[40,-19],[41,-8],[9,-7],[0,-15],[-6,-17],[-8,-14],[-37,-43],[-36,-27],[-37,-14],[-42,-5],[-10,3],[-12,11],[-9,15],[1,12],[-38,36],[-14,21],[-6,5],[-3,4],[-3,7],[-11,37],[-3,15],[-5,12],[-7,4],[-8,-4],[-3,-6],[-1,-10],[0,-16],[-1,-10],[-1,-7],[0,-7],[0,-10],[-1,-7],[-3,-4],[-3,-3],[-12,-19],[-13,-9],[-28,-9],[1,-33],[-13,-14],[-72,-7],[-10,-6],[-3,-9],[0,-14],[2,-20],[-8,-3],[-9,-8],[-7,-12],[-1,-17],[1,-14],[-1,-8],[-3,-4],[-67,-26],[-2,-6],[0,-11],[1,-10],[2,-4],[125,19],[9,-1],[10,-7],[-5,-8],[-20,-14],[6,-13],[6,-2],[7,0],[7,-5],[1,-5],[1,-8],[1,-8],[4,-3],[26,4],[2,-4],[1,-5],[2,-6],[6,-9],[2,-3],[12,-9],[5,-1],[4,0],[5,2],[3,4],[4,2],[11,-8],[7,1],[14,11],[66,19],[9,0],[6,-7],[12,-23],[7,-8],[7,-4],[7,0],[8,3],[9,9],[3,2],[2,5],[3,31],[10,20],[17,12],[49,17],[62,-2],[6,-5],[22,-53],[3,-15],[-1,-17],[-7,-61],[-5,-64],[-2,-13],[-4,-10],[-24,-34],[-7,-6],[6,-9],[-3,-11],[-17,-26],[-3,-11],[-1,-12],[3,-14],[-5,-14],[-42,-49],[2,-3],[3,-3],[3,-1],[3,0],[-24,-26],[-62,-41],[-5,-7],[-6,-12],[12,-10],[4,-1],[14,0],[4,-2],[-41,-26],[-51,-6],[-5,-4],[-2,-9],[3,-18],[-18,-10],[-57,-17],[2,-1],[6,-5],[-4,-8],[-10,-13],[-30,-47],[-17,-17],[-5,-8],[-3,-9],[1,-8],[6,-3],[-1,-7],[-3,-6],[-3,-4],[-4,-3],[5,-5],[5,-3],[11,0],[-2,-10],[-2,-6],[-4,-3],[-5,-1],[8,-7],[2,-10],[-4,-10],[-7,-9],[-15,-11],[-2,-2],[-3,-12],[-3,-5],[-15,-11],[-48,-18],[4,-11],[5,-5],[12,-1],[-38,-27],[-7,-14],[7,-5],[10,-19],[6,-5],[-4,-7],[-1,-6],[0,-7],[-2,-9],[-3,-6],[-3,-4],[-8,-6],[-2,-4],[-4,-11],[-2,-4],[-8,-7],[-8,-4],[-24,0],[-6,-6],[-3,-15],[6,-8],[17,-5],[-2,-6],[0,-6],[1,-4],[2,-6],[0,-4],[-1,-5],[-3,-8],[-2,-13],[0,-28],[-3,-23],[1,-5],[2,-4],[0,-6],[-1,-8],[-2,-8],[-3,-7],[-18,-32],[-4,-11],[4,-6],[-4,-7],[-3,-7],[-3,-9],[-4,-22],[-2,-8],[-11,-22],[-13,-34],[0,-7],[2,-8],[0,-13],[-4,-23],[-2,-11],[-6,-21],[-5,-38],[-9,-39],[-6,-13],[-10,-13],[-22,-17],[-47,-13],[-38,-23],[-4,-4],[-11,-22],[-5,-6],[-38,-22],[-6,-2],[3,-2],[3,-4],[2,-4],[2,-5],[2,-6],[3,-15],[2,-6],[5,-8],[7,-3],[36,-6],[7,0],[16,7],[3,-1],[3,-4],[3,-5],[3,-3],[14,-2],[51,28],[7,1],[8,-3],[7,-7],[7,-3],[7,3],[14,9],[1,-16],[-7,-11],[-17,-16],[9,-9],[11,1],[21,11],[0,-22],[16,-6],[33,6],[134,70],[15,3],[7,5],[8,10],[8,4],[8,1],[9,-1],[2,18],[5,18],[3,17],[-3,15],[12,11],[4,8],[2,14],[2,14],[-1,5],[-2,9],[-2,5],[-5,9],[-2,17],[-6,6],[-15,6],[-7,7],[-4,10],[-2,13],[5,31],[-3,8],[-5,7],[-6,10],[0,11],[8,11],[18,16],[5,10],[3,3],[3,3],[8,2],[12,9],[21,7],[-1,2],[-5,6],[43,41],[22,15],[23,4],[35,-4],[24,-10],[12,3],[81,43],[11,3],[20,-6],[53,6],[47,-10],[-2,-5],[-2,-5],[-3,-4],[-3,-4],[11,-4],[11,3],[11,9],[9,11],[-11,20],[5,16],[3,6],[5,3],[-2,1],[-4,4],[-1,1],[7,14],[9,11],[9,7],[10,5],[12,2],[4,2],[14,12],[5,2],[19,-8],[5,4],[-3,23],[-7,12],[-10,4],[-20,3],[4,19],[4,13],[6,9],[9,5],[5,0],[3,-3],[2,1],[6,19],[2,2],[3,0],[58,9],[27,-5],[26,10],[37,1],[9,3],[35,31],[12,21],[8,8],[-1,3],[-4,8],[-1,3],[2,1],[3,4],[2,1],[-6,4],[-19,0],[-4,2],[-10,13],[-7,3],[-34,8],[-3,3],[0,11],[4,5],[5,2],[62,-3],[45,17],[8,6],[26,24],[18,3],[23,10],[8,-3],[9,-10],[9,-1],[18,15],[-8,6],[-32,12],[-15,12],[-8,4],[4,7],[1,7],[1,7],[1,5],[5,3],[4,0],[9,-3],[6,0],[4,1],[3,4],[5,6],[3,1],[54,-19],[9,1],[26,16],[-35,25],[-3,4],[-5,10],[-4,3],[-16,4],[-36,24],[-6,12],[-1,9],[3,6],[9,8],[4,6],[6,16],[5,5],[-8,13],[-3,8],[-3,10],[7,3],[5,4],[5,7],[5,11],[5,4],[38,5],[16,14],[5,3],[6,2],[-2,11],[2,1],[4,5],[2,1],[-6,6],[-7,2],[-22,1],[-17,5],[-8,6],[2,9],[4,5],[4,3],[5,1],[0,19],[41,94],[12,5],[13,-2],[15,1],[-9,24],[4,2],[8,1],[3,3],[2,7],[4,6],[6,4],[14,-1],[7,5],[6,13],[3,21],[-21,6],[-4,3],[-7,9],[-5,3],[20,34],[7,8],[8,3],[17,2],[8,4],[3,3],[5,7],[4,3],[4,2],[4,1],[8,-2],[9,-5],[14,-15],[9,-4],[-2,22],[12,9],[17,-2],[12,-8],[13,-3],[16,17],[11,25],[-1,20],[4,3],[4,2],[8,3],[-5,6],[37,21],[2,3],[1,12],[1,5],[6,6],[7,2],[7,0],[13,-4],[6,1],[24,14],[5,7],[-1,10],[-4,11],[-2,5],[-6,6],[-1,5],[-1,5],[-1,8],[-9,22],[-24,29],[-10,20],[-8,20],[-1,10],[4,11],[4,7],[12,15],[9,8],[2,4],[1,5],[2,8],[2,4],[3,3],[32,17],[7,8],[3,0],[7,-1],[4,0],[4,2],[3,3],[5,10],[2,2],[3,-1],[7,-7],[4,-1],[4,5],[5,8],[5,6],[6,0],[8,-7],[6,1],[14,8],[-5,15],[-1,7],[2,6],[5,13],[2,13],[0,10],[2,7],[8,6],[19,7],[6,4],[3,5],[5,10],[3,5],[3,1],[6,0],[9,8],[5,-3],[3,-7],[4,-3],[6,0],[7,-2],[5,-5],[8,-21],[6,-4],[21,-3],[6,6],[5,9],[19,21],[20,33],[12,10],[16,6],[12,0],[13,4],[40,-13],[4,-2],[2,-4],[1,-6],[2,-7],[18,-24],[3,-8],[-2,-10],[-13,-42],[8,-7],[9,3],[19,10],[2,-18],[16,2],[30,19],[26,26],[13,8],[15,-4],[-14,-22],[9,-13],[6,-4],[7,3],[19,20],[10,7],[10,1],[9,-7],[16,-26],[8,-11],[9,-4],[9,7],[16,28],[10,6],[-2,16],[4,11],[7,6],[7,1],[7,-5],[5,-8],[7,-28],[2,-4],[8,0],[2,-4],[2,-18],[2,-7],[4,-4],[6,3],[24,21],[9,5],[7,-3],[3,0],[3,2],[10,16],[6,5],[16,6],[12,10],[4,0],[7,-3],[4,1],[7,11],[6,13],[6,10],[9,-3],[-22,31],[-4,9],[-2,15],[-5,17],[-5,16],[-7,8],[3,4],[7,6],[3,4],[1,6],[0,6],[1,6],[5,4],[-2,1],[-7,5],[8,15],[10,1],[11,-3],[9,1],[5,6],[7,16],[5,3],[12,3],[13,6],[37,29],[45,9],[-3,-14],[-2,-12],[1,-11],[6,-6],[6,2],[8,6],[7,8],[16,28],[12,14],[12,9],[22,7],[14,1],[7,-2],[7,-5],[3,-1],[4,2],[5,5],[2,4],[-1,5],[1,11],[-1,8],[-1,5],[0,4],[4,4],[8,5],[8,2],[8,-2],[5,-2],[4,1],[7,10],[-1,3],[-4,7],[-2,2],[11,17],[18,5],[48,-1],[8,3],[15,10],[31,-1],[3,-3],[4,-6],[4,-4],[3,1],[7,9],[7,5],[86,30],[-4,11],[-1,9],[2,8],[5,7],[9,10],[2,5],[7,18],[2,4],[8,4],[26,-1],[-27,15],[6,13],[5,8],[5,5],[8,5],[-27,3],[2,13],[-1,13],[0,12],[5,8],[2,2],[4,8],[2,3],[37,34],[7,3],[57,4],[7,3],[12,12],[7,4],[63,12],[-12,17],[-15,9],[-17,4],[-15,-1],[6,4],[15,17],[3,8],[0,5],[-5,9],[-3,6],[-1,9],[0,10],[1,10],[3,7],[-4,4],[-4,1],[-9,-2],[-1,10],[2,5],[3,3],[4,2],[2,4],[2,15],[1,6],[6,15],[5,15],[2,6],[13,10],[39,51],[107,68],[87,32],[87,32],[31,4],[120,44],[121,43],[16,2],[23,-6],[88,35],[88,35],[16,0],[86,44],[3,-1],[8,-4],[4,-1],[3,2],[16,13],[17,7],[17,2],[32,-12],[2,-2],[2,-4],[3,-3],[4,-3],[3,1],[3,3],[4,1],[10,-3],[4,1],[9,19],[8,8],[25,18],[4,1],[4,3],[8,9],[4,2],[23,-4],[31,7],[7,-3],[13,-14],[7,-5],[7,-1],[26,16],[9,3],[15,-4],[6,1],[15,13],[8,4],[8,1],[8,-2],[14,-8],[7,-7],[12,-16],[7,-5],[23,-8],[40,11],[3,4],[2,6],[2,7],[3,7],[1,3],[-21,13],[-22,3],[-19,12],[-14,39],[1,20],[9,11],[46,17],[11,9],[7,18],[8,14],[13,10],[105,30],[41,23],[3,3],[9,16],[3,6],[9,7],[22,27],[6,5],[15,3],[29,-1],[102,21],[30,-7],[-15,-24],[7,-1],[15,3],[6,-6],[7,-9],[7,-5],[40,-6],[13,-7],[17,-5],[6,0],[4,3],[5,7],[4,1],[36,-10],[7,3],[15,11],[8,2],[15,-1],[28,15],[3,3],[4,13],[2,5],[3,4],[15,11],[8,2],[4,2],[3,5],[3,5],[2,4],[5,3],[15,2],[31,-6],[90,12],[8,-4],[16,-14],[7,-4],[8,0],[61,31],[27,28],[26,19],[102,35],[30,19],[16,3],[16,8],[8,2],[25,-3],[8,3],[19,21],[7,5],[7,3],[47,-1],[8,-3],[7,-5],[3,-4],[2,-4],[3,-8],[2,-19],[2,-5],[5,-4],[24,8],[15,0],[14,3],[47,27],[21,1],[14,6],[3,0],[41,-15],[8,2],[22,11],[9,-1],[26,-12],[17,-2],[32,4],[17,-3],[23,-15],[8,-3],[34,-2],[15,3],[29,23],[15,7],[21,1],[15,-4],[41,14],[17,0],[16,-5],[19,-13],[4,-1],[9,2],[3,-1],[4,-3],[7,-9],[7,1],[8,12],[12,27],[6,7],[14,-1],[7,3],[14,12],[15,8],[11,-2],[3,1],[22,20],[56,35],[15,16],[8,5],[16,3],[65,-16],[16,3],[57,22],[16,12],[23,0],[50,23],[29,-9],[28,2],[14,-6],[43,-44],[14,-4],[24,3],[38,-17],[32,-5],[15,4],[17,9],[27,22],[14,8],[14,-2],[31,-15],[8,0],[23,6],[45,-4],[30,4],[16,-2],[30,-12],[-6,-17],[-3,-7],[-5,-4],[2,-3],[3,-5],[2,-2],[-4,-9],[2,-14],[6,-14],[5,-10],[4,2],[37,34],[8,0],[6,-3],[7,-8],[2,-9],[-6,-8],[14,1],[22,8],[5,4],[3,5],[2,10],[2,5],[3,3],[45,12],[37,18],[5,7],[6,12],[7,12],[8,10],[7,6],[44,18],[23,3],[33,18],[3,1],[4,-2],[7,-5],[11,-1],[7,-2],[13,-10],[8,-3],[22,4],[14,-2],[15,-10],[11,-17],[7,-26],[0,-8],[-1,-7],[1,-7],[4,-3],[37,-7],[8,2],[-3,-5],[-8,-29],[4,5],[6,-1],[11,-5],[5,2],[17,16],[4,2],[9,0],[4,1],[17,9],[19,6],[9,-1],[9,-4],[16,0],[15,16],[14,21],[15,15],[7,-2],[13,-19],[7,-5],[8,2],[16,9],[32,7],[7,-2],[34,-17],[15,0],[101,63],[30,10],[30,-4],[13,-5],[6,-5],[4,-9],[18,-30],[23,9],[6,-3],[2,-18],[1,-5],[3,-8],[3,-4],[3,-3],[4,-2],[7,-2],[15,0],[7,-2],[19,-19],[7,0],[12,12],[18,39],[10,15],[13,7],[25,4],[26,24],[27,14],[12,14],[10,7],[78,0],[3,-4],[4,-11],[3,-4],[3,-3],[-9,-40],[-6,-18],[-8,-12],[13,-11],[24,8],[80,62],[23,7],[20,1],[-4,-20],[-13,-17],[-81,-53],[12,-4],[4,-5],[4,-8],[5,-25],[4,-9],[-32,-27],[8,-8],[4,-2],[4,-2],[4,-3],[1,-6],[0,-21],[2,-20],[4,-13],[7,-5],[8,3],[8,13],[-1,13],[-3,14],[3,17],[7,15],[24,35],[3,8],[2,6],[2,3],[6,0],[3,-2],[3,-6],[6,-12],[4,-6],[3,-3],[14,-5],[3,0],[2,4],[2,11],[5,10],[9,5],[18,3],[9,-2],[5,1],[4,4],[7,13],[4,4],[6,0],[0,26],[12,22],[17,14],[13,6],[-8,-28],[-3,-16],[1,-15],[6,-14],[6,1],[7,11],[5,13],[15,22],[35,23],[17,16],[9,11],[7,5],[7,1],[10,-2],[4,1],[10,5],[4,0],[5,-3],[5,0],[4,3],[10,8],[8,10],[4,3],[6,1],[4,1],[4,1],[14,11],[8,-1],[4,-9],[-3,-21],[6,1],[24,17],[7,-1],[6,-10],[9,-28],[8,15],[10,10],[22,11],[-7,6],[-25,-2],[11,16],[-7,6],[-20,10],[97,8],[9,3],[10,7],[51,59],[8,13],[6,16],[2,10],[1,9],[2,6],[6,2],[11,1],[5,2],[13,13],[2,5],[6,15],[3,7],[3,6],[4,4],[30,9],[10,6],[-85,17],[4,4],[4,2],[8,3],[-3,4],[-2,3],[-4,1],[-3,0],[15,10],[14,13],[13,11],[66,-3],[31,-11],[90,5],[91,4],[49,36],[24,12],[32,6],[55,-11],[15,1],[23,-7],[5,-2],[1,-6],[1,-7],[3,-6],[3,0],[14,5],[3,0],[12,-7],[22,2],[7,-2],[4,-3],[5,-7],[3,-3],[18,-4],[41,-27],[14,-4],[8,1],[25,15],[8,3],[42,-1],[70,-24],[71,-24],[43,-42],[16,-6],[65,-1],[119,-43],[16,4],[3,-1],[13,-12],[11,-1],[4,-3],[7,-10],[3,-3],[112,-36],[112,-36],[5,-5],[1,-5],[0,-7],[0,-7],[2,-6],[4,-1],[4,3],[4,5],[3,5],[7,6],[52,-8],[13,-7],[15,-26],[6,1],[13,8],[97,-4],[60,-22],[28,-17],[96,-14],[6,-6],[13,-19],[6,-12],[3,-11],[-4,-12],[-7,-8],[-15,-10],[-6,-7],[-18,-25],[4,-12],[0,-18],[-1,-35],[4,2],[3,4],[13,23],[3,3],[2,1],[5,-1],[2,0],[3,8],[6,19],[3,8],[4,4],[44,28],[26,33],[8,2],[12,-4],[-2,-15],[3,-11],[11,-15],[5,-12],[4,-13],[4,-10],[7,-6],[8,-1],[7,2],[7,-1],[21,-17],[6,-3],[21,-4],[13,-7],[11,-14],[10,-24],[3,-22],[1,-5],[3,-3],[11,-5],[20,-16],[7,-2],[6,2],[19,10],[10,-1],[3,1],[1,2],[-1,4],[0,4],[1,3],[22,19],[13,8],[7,-1],[20,-11],[7,0],[6,2],[6,0],[7,-4],[13,-11],[6,-4],[62,8],[-1,4],[-3,8],[-2,4],[9,9],[63,14],[-11,14],[28,13],[-7,5],[60,20],[16,11],[27,30],[38,22],[8,2],[7,-1],[17,-8],[14,-11],[14,-16],[7,-5],[7,-2],[24,8],[-2,11],[-6,8],[-11,9],[9,26],[-10,7],[-5,11],[-2,15],[2,22],[-7,1],[-7,0],[24,24],[5,10],[1,27],[4,12],[-25,12],[-6,8],[-5,6],[-4,4],[-10,2],[-5,3],[-4,6],[-3,8],[-3,9],[8,7],[8,13],[14,28],[7,6],[17,4],[6,10],[1,8],[0,7],[1,6],[2,6],[11,11],[11,8],[35,36],[8,4],[16,3],[84,32],[84,33],[64,-1],[127,32],[128,33],[31,16],[91,19],[5,-4],[8,-25],[7,-10],[8,-6],[33,-11],[29,-21],[37,-11],[32,-20],[6,-7],[12,-20],[15,-16],[30,-24],[16,-4],[7,-4],[13,-26],[8,-6],[8,0],[9,2],[9,-5],[10,-27],[8,-5],[5,0],[3,-2],[3,-4],[5,-6],[3,-2],[4,-1],[3,-2],[4,-5],[-6,-6],[-1,-11],[-1,-11],[-3,-10],[-14,-15],[-5,-10],[-3,-15],[7,3],[22,-9],[-2,-2],[-5,-7],[11,-11],[-1,-3],[-3,-6],[-2,-2],[21,3],[-36,-37],[-9,-19],[98,18],[26,-9],[12,-1],[24,14],[40,-6],[13,3],[7,-1],[5,-5],[6,-12],[5,-7],[6,-3],[20,-5],[24,-14],[23,-2],[46,-20],[14,-12],[9,-17],[-4,-18],[4,-8],[5,-6],[2,-5],[0,-5],[0,-6],[1,-5],[2,-4],[7,-5],[3,-4],[3,-11],[5,-9],[-25,-43],[-26,-35],[-59,-50],[-63,-30],[-110,-10],[-46,-27],[-32,-8],[-24,5],[-102,-41],[-7,-7],[-27,-48],[-8,-8],[-17,-12],[9,-5],[10,-2],[-5,-19],[-9,-10],[-20,-10],[-6,-5],[-7,-15],[-5,-5],[-11,-8],[-3,-8],[0,-11],[5,1],[4,-3],[3,-5],[4,-3],[5,0],[16,8],[9,2],[24,-4],[37,7],[88,40],[89,40],[-19,-30],[-5,-13],[12,-7],[12,2],[23,12],[6,4],[5,13],[5,5],[70,23],[42,1],[11,8],[-13,13],[10,19],[12,15],[14,8],[53,-2],[17,7],[23,1],[15,5],[14,12],[7,0],[2,-13],[3,-11],[8,-2],[33,15],[5,8],[4,18],[4,7],[9,0],[9,-4],[14,-11],[8,3],[6,9],[10,27],[5,4],[6,-2],[15,-23],[7,-6],[7,0],[39,15],[9,6],[15,20],[30,21],[29,33],[40,24],[0,-16],[-3,-18],[-8,-33],[-11,-24],[-2,-12],[8,-9],[30,-5],[27,9],[18,-1],[23,11],[16,4],[47,-1],[9,5],[7,8],[7,2],[6,-13],[5,-6],[16,-5],[7,-7],[2,-6],[1,-6],[2,-6],[2,-3],[6,0],[4,2],[37,39],[14,11],[126,22],[17,8],[-8,-23],[-5,-11],[-6,-8],[-30,-26],[5,-1],[3,-4],[2,-6],[1,-9],[37,14],[3,-2],[7,-14],[3,1],[4,4],[5,4],[28,4],[4,-2],[13,-8],[4,0],[8,4],[20,4],[6,-2],[11,-9],[4,-2],[3,1],[4,1],[0,2],[-1,9],[0,2],[3,1],[9,1],[63,25],[9,2],[24,-9],[8,-1],[9,2],[30,19],[45,11],[20,17],[81,20],[15,13],[93,34],[14,-6],[12,-20],[-29,-20],[-111,-39],[-112,-40],[-112,-39],[-112,-40],[4,-3],[4,-2],[8,-1],[-1,-3],[-3,-8],[-1,-4],[12,-22],[4,-3],[10,4],[5,0],[6,-1],[-1,-3],[-1,-7],[-1,-2],[19,-5],[-20,-23],[10,-2],[9,0],[18,6],[22,18],[7,0],[2,-1],[3,-4],[1,-2],[5,-1],[5,1],[4,3],[13,11],[7,4],[7,2],[17,1],[16,-4],[8,0],[79,29],[21,-4],[36,19],[78,17],[79,17],[15,11],[18,4],[84,45],[8,1],[16,-7],[9,0],[102,32],[30,-3],[41,25],[4,2],[7,-2],[4,3],[4,4],[4,3],[9,3],[-1,3],[-1,7],[0,3],[4,1],[4,-1],[3,-4],[3,-6],[2,0],[7,5],[3,-2],[-3,15],[-5,1],[-5,0],[-4,10],[8,5],[22,23],[8,6],[40,15],[29,22],[16,6],[53,8],[16,10],[8,2],[25,1],[75,22],[74,23],[17,-1],[33,-9],[52,-2],[12,3],[9,7],[20,19],[8,12],[3,7],[1,5],[2,4],[5,4],[56,25],[8,-1],[2,2],[1,3],[2,3],[6,3],[4,2],[4,-1],[5,-5],[-8,-9],[5,0],[4,2],[12,12],[2,1],[44,-4],[0,-17],[6,-7],[23,-9],[2,-4],[0,-10],[-1,-6],[-2,-8],[-6,-12],[5,-1],[5,1],[10,4],[5,-1],[7,-4],[5,2],[-2,-3],[-1,-8],[-2,-3],[8,4],[8,1],[16,-1],[2,0],[4,4],[1,0],[2,-3],[4,-10],[2,-4],[4,-4],[4,-2],[5,0],[13,4],[17,11],[7,7],[3,7],[1,6],[2,5],[6,1],[1,-2],[3,-8],[2,-2],[2,1],[41,21],[27,7],[8,5],[14,17],[7,11],[4,13],[2,17],[5,13],[7,9],[8,4],[4,41],[21,18],[82,16],[9,8],[9,11],[36,31],[6,2],[6,0],[5,-1],[4,-5],[4,-5],[4,-6],[18,-5],[7,-12],[4,-20],[2,-27],[17,-18],[5,6],[6,4],[12,3],[11,-3],[8,-10],[2,-11],[-12,-6],[4,-9],[13,-23],[6,-5],[5,5],[3,15],[2,35],[-3,47],[1,10],[8,10],[7,-1],[8,-6],[8,-3],[-5,-19],[-2,-11],[3,-4],[5,-2],[10,-6],[4,-1],[4,3],[13,14],[5,4],[11,3],[5,0],[-10,-10],[4,-13],[6,-1],[12,6],[8,0],[21,-9],[-6,-17],[-3,-4],[-3,-3],[-8,-4],[-4,-3],[-5,-12],[0,-9],[1,-10],[-3,-13],[-6,-10],[-7,-5],[-14,-5],[-7,-5],[-5,-7],[-9,-21],[29,13],[9,2],[17,-7],[4,-4],[7,-14],[4,-5],[-7,-14],[-22,-14],[-10,-11],[-1,-7],[-3,-28],[0,-9],[5,-8],[6,0],[73,22],[4,-1],[22,-23],[-7,-28],[-5,-12],[-5,-10],[23,-14],[-5,-8],[-2,-8],[0,-10],[0,-12],[0,-5],[-1,-4],[-3,-8],[0,-5],[3,-3],[3,-3],[2,-3],[-1,-8],[-1,-12],[0,-11],[5,-6],[4,1],[4,6],[10,25],[3,8],[0,8],[-2,12],[1,8],[4,10],[4,9],[4,5],[46,29],[-8,-30],[6,-6],[3,-4],[1,-4],[-3,-16],[0,-7],[3,-6],[8,-8],[9,-1],[51,12],[22,-4],[39,21],[8,1],[16,-6],[42,4],[2,-2],[2,-6],[4,-24],[2,-4],[15,-11],[6,-1],[6,2],[25,15],[10,2],[7,-4],[2,-6],[3,-13],[2,-5],[31,-15],[7,-1],[29,13],[16,3],[7,6],[5,12],[2,17],[9,20],[17,-5],[52,-46],[3,-6],[4,-20],[7,-11],[10,4],[29,40],[2,4],[1,5],[0,10],[0,5],[2,6],[7,15],[7,10],[45,24],[3,4],[0,9],[-2,10],[-4,9],[-11,21],[3,11],[8,9],[16,12],[4,5],[3,7],[3,11],[3,5],[13,15],[3,13],[-10,6],[-13,2],[-9,-1],[1,15],[10,23],[3,14],[3,9],[8,8],[22,15],[4,8],[5,9],[6,8],[5,10],[4,17],[2,17],[-3,12],[22,19],[21,26],[10,6],[27,4],[7,8],[8,22],[11,11],[37,9],[5,-1],[10,-10],[6,1],[10,7],[-1,-4],[0,-9],[-1,-4],[34,25],[18,6],[10,-11],[5,11],[6,27],[6,7],[22,21],[7,1],[31,-18],[8,-3],[42,-2],[14,-7],[7,-2],[17,4],[7,-2],[4,-4],[6,-11],[3,-4],[4,-2],[7,-2],[15,-2],[4,2],[4,3],[8,10],[4,2],[101,-19],[81,16],[27,23],[92,16],[7,-3],[14,-11],[14,-7],[61,-2],[53,26],[21,24],[8,5],[43,10],[63,-2],[29,-15],[52,2],[9,-5],[8,-8],[5,-11],[5,-14],[5,-8],[7,-6],[8,-3],[4,0],[7,2],[4,0],[16,-13],[15,-6],[6,-6],[11,-25],[6,0],[6,3],[7,-3],[2,-4],[2,-12],[2,-4],[3,-3],[3,-1],[21,8],[7,1],[7,-4],[3,-10],[-5,-9],[-20,-14],[-24,-27],[-9,-17],[-33,-37],[15,-5],[49,17],[-4,-3],[-3,-5],[-2,-6],[-3,-6],[15,-1],[19,13],[96,95],[-7,-18],[37,6],[17,9],[6,-1],[8,-9],[7,-4],[7,1],[40,19],[-1,12],[1,12],[0,10],[-4,8],[6,1],[12,7],[16,15],[3,4],[1,31],[5,22],[3,10],[3,5],[41,-6],[1,-2],[1,-5],[1,-5],[1,-5],[10,-21],[1,-3],[5,-3],[2,-3],[12,-33],[10,-19],[1,-14],[-3,-14],[-3,-13],[10,-4],[9,15],[8,20],[8,11],[15,5],[2,-1],[5,-5],[2,-1],[6,2],[12,9],[6,2],[15,-2],[4,1],[24,13],[13,1],[8,-6],[18,-25],[17,-17],[5,-7],[9,-17],[5,-6],[10,-7],[34,-10],[4,-2],[5,-6],[4,-8],[2,-7],[2,-13],[2,-10],[16,-33],[5,-7],[4,0],[10,17],[4,9],[3,12],[-7,1],[-13,9],[-6,2],[5,34],[9,20],[13,10],[58,12],[131,-13],[12,3],[3,-1],[6,-9],[3,-2],[47,-7],[11,5],[3,1],[3,-4],[6,-13],[4,-4],[4,-2],[11,-2],[7,-4],[18,-15],[3,-4],[1,-4],[2,-4],[7,-2],[3,-3],[6,-6],[8,-5],[34,-6],[2,-3],[4,-13],[2,-4],[4,-3],[-15,-51],[13,5],[12,9],[22,28],[9,8],[12,4],[64,-5],[3,1],[4,8],[3,2],[2,-3],[4,-10],[1,-4],[3,-3],[15,-8],[6,2],[5,2],[43,4],[12,-2],[16,-10],[5,0],[13,6],[23,-3],[21,3],[57,-16],[-4,-18],[3,-11],[7,-5],[8,0],[5,3],[14,11],[4,1],[24,-3],[10,-6],[18,-17],[10,-6],[8,-2],[7,-5],[7,-18],[-7,-7],[-7,-10],[-5,-12],[0,-15],[11,12],[15,11],[13,3],[16,-13],[5,7],[6,11],[6,6],[8,3],[48,0],[8,-4],[6,-7],[12,-22],[2,-2],[2,3],[5,9],[2,8],[-1,6],[0,4],[6,4],[8,2],[15,1],[49,-14],[57,-2],[29,-9],[71,-53],[6,-3],[4,5],[3,16],[8,-6],[7,-2],[8,3],[15,13],[37,20],[112,-12],[31,-16],[30,-29],[5,-10],[9,-23],[5,-10],[2,-1],[4,0],[2,0],[2,-3],[3,-6],[1,-3],[5,-2],[3,0],[3,-3],[4,-8],[12,-13],[17,-7],[96,4],[16,6],[33,28],[131,69],[11,0],[67,-21],[20,-12],[10,-11],[5,-12],[-4,-33],[1,-11],[2,-11],[3,-5],[1,-6],[-3,-13],[-6,-12],[-21,-16],[-8,-11],[81,30],[7,1],[2,-3],[1,-8],[1,-17],[2,-12],[3,-10],[4,-4],[3,10],[5,40],[3,12],[8,17],[12,12],[13,8],[12,5],[27,1],[27,-9],[10,-9],[27,-38],[5,-13],[-9,-26],[-9,-15],[-11,-6],[-16,0],[-12,5],[-13,9],[-13,6],[-12,-5],[6,-14],[5,-7],[6,-3],[16,2],[7,-3],[7,-6],[7,-7],[-2,-8],[-6,-12],[-3,-7],[-5,-25],[-3,-6],[-4,-6],[-12,-9],[-3,-4],[-15,-24],[-6,-7],[-7,-2],[-8,4],[-6,13],[-7,17],[-7,10],[-7,-9],[-2,-7],[1,-6],[0,-5],[-3,-9],[-5,-6],[-5,-1],[-4,-3],[0,-13],[2,-3],[8,-1],[4,-3],[5,-6],[3,-6],[0,-8],[0,-12],[0,-8],[1,-8],[4,-15],[2,-10],[0,-8],[-3,-8],[-10,-22],[-7,-11],[-7,-9],[-12,-11],[-18,-11],[-21,-23],[-8,-15],[-7,-19],[-4,-20],[8,-1],[24,9],[-10,-10],[-2,-7],[0,-11],[0,-7],[-3,-9],[-6,-16],[20,-7],[19,6],[37,30],[-4,-20],[-1,-10],[1,-10],[13,8],[6,-1],[6,-6],[5,-2],[6,5],[23,27],[20,45],[12,18],[24,19],[13,6],[13,3],[45,-5],[15,3],[11,7],[11,12],[31,49],[51,63],[12,8],[12,3],[27,1],[6,-4],[5,-11],[6,-25],[2,-12],[-2,-16],[7,-4],[6,-6],[2,-6],[-1,-8],[-2,-8],[0,-8],[6,-12],[9,-10],[10,-5],[8,0],[12,21],[5,34],[8,30],[17,11],[34,-9],[36,2],[7,-3],[16,-13],[17,-6],[3,-12],[1,-15],[6,-11],[-7,-11],[-26,-26],[5,-9],[13,-2],[6,-8],[5,-9],[10,-14],[4,-8],[10,-10],[12,12],[11,23],[7,23],[9,13],[14,-6],[11,-17],[2,-19],[-7,-23],[-11,-19],[-12,-15],[-12,-10],[7,-21],[12,1],[14,8],[11,-1],[-4,-7],[-1,-7],[2,-7],[3,-8],[2,-1],[4,4],[8,12],[6,6],[7,4],[7,3],[6,0],[-2,-2],[-5,-7],[13,-3],[30,23],[15,-10],[-19,-37],[-47,-51],[-21,-34],[6,-4],[6,-17],[5,-2],[23,8],[26,18],[48,51],[15,11],[11,-3],[3,-9],[1,-14],[0,-14],[-2,-9],[-4,-11],[-6,-8],[-12,-13],[-37,-23],[-15,-20],[-16,-16],[-7,-10],[-1,-10],[4,-7],[8,-4],[12,2],[25,15],[12,-1],[2,-4],[0,-5],[1,-3],[4,0],[40,13],[-2,-10],[-1,-18],[-4,-11],[-9,-12],[-3,-8],[-2,-13],[8,-4],[8,2],[24,14],[3,0],[8,-9],[4,-1],[9,2],[35,19],[5,0],[4,-1],[10,-6],[4,0],[13,8],[31,11],[9,0],[18,-8],[9,-2],[17,4],[8,-2],[10,-22],[9,-6],[19,-3],[-1,-8],[0,-5],[1,-6],[2,-5],[2,-1],[4,4],[3,5],[2,4],[8,3],[15,-5],[7,0],[21,16],[7,3],[7,-2],[8,-6],[3,-10],[-5,-13],[41,-4],[23,12],[26,-9],[3,6],[0,6],[-1,5],[2,5],[4,7],[4,5],[5,3],[5,1],[9,-1],[7,-5],[14,-16],[9,-7],[7,-1],[17,5],[18,0],[7,4],[15,16],[9,4],[9,2],[8,0],[-10,-11],[11,-17],[14,-7],[13,6],[15,26],[8,7],[8,4],[6,2],[7,-1],[19,-19],[84,-40],[14,1],[13,13],[-12,19],[-7,8],[-7,3],[-8,2],[-8,4],[-7,8],[-6,11],[14,10],[12,-7],[24,-28],[14,-7],[100,-2],[21,-7],[8,0],[76,17],[56,35],[15,5],[13,0],[16,-5],[14,-11],[9,-22],[5,-29],[-1,-10],[-12,-25],[-4,-13],[0,-13],[8,-9],[-22,-68],[-9,-17],[6,-6],[3,-10],[2,-10],[4,-9],[23,-30],[11,-23],[5,-7],[2,5],[19,23],[13,1],[10,-7],[21,-26],[6,-5],[5,-3],[18,-2],[18,-9],[3,44],[-1,21],[-6,14],[2,1],[3,3],[1,1],[-6,28],[0,12],[6,9],[4,1],[7,-5],[86,19],[3,-1],[5,-7],[3,-2],[4,1],[2,-1],[6,-6],[7,-5],[17,-5],[18,-15],[16,1],[52,21],[8,-1],[3,-3],[4,-8],[3,-3],[4,0],[8,5],[5,1],[7,-5],[12,-17],[7,-8],[8,-3],[24,8],[7,-2],[28,-18],[6,-7],[13,-18],[14,-17],[15,-9],[16,-2],[23,4],[14,-3],[7,0],[2,2],[1,4],[2,3],[3,2],[8,-1],[3,1],[2,4],[4,37],[0,2],[1,2],[3,4],[7,5],[7,0],[26,-13],[13,-3],[14,1],[26,16],[14,4],[29,0],[-4,16],[-10,55],[-5,14],[-21,42],[11,7],[13,3],[13,5],[8,16],[-12,10],[-25,16],[-9,17],[-4,26],[1,25],[6,20],[11,12],[12,4],[12,0],[12,-3],[12,-6],[20,-16],[18,-4],[6,-4],[10,-11],[5,-4],[11,-2],[0,-3],[0,-5],[3,-3],[49,-27],[20,-20],[12,-8],[13,-5],[10,-1],[15,3],[2,-2],[2,-4],[2,-6],[2,-4],[5,-6],[11,-8],[5,-2],[-2,-17],[0,-9],[1,-6],[9,-9],[3,-6],[4,-8],[-16,-12],[-5,-3],[-5,2],[-12,8],[-51,3],[4,-16],[9,-14],[20,-18],[5,-12],[-4,-17],[-15,-29],[14,-1],[12,10],[22,35],[14,12],[15,-1],[13,-10],[30,-44],[3,-9],[0,-16],[2,-13],[5,-12],[7,-7],[7,-2],[7,4],[12,12],[8,3],[48,-14],[8,-7],[4,-4],[3,-6],[2,-6],[2,-7],[1,-10],[0,-19],[2,-10],[-21,-9],[-6,-6],[29,-3],[5,-2],[5,-12],[7,-10],[15,-15],[36,-17],[7,2],[26,18],[-3,10],[-4,1],[-5,-2],[-5,0],[-4,4],[-11,18],[-20,11],[-8,10],[-1,18],[6,15],[9,6],[41,2],[10,-2],[10,-5],[2,-3],[3,-7],[1,-1],[9,0],[2,-1],[4,-4],[19,-27],[3,-7],[1,-8],[-1,-13],[2,-7],[3,-8],[5,-6],[3,-3],[5,0],[14,9],[6,1],[4,-2],[9,-8],[21,-11],[10,-11],[1,-14],[11,-9],[13,-6],[37,-3],[22,6],[25,16],[6,0],[13,-2],[13,2],[5,-1],[3,-3],[5,-8],[3,-2],[9,0],[9,2],[37,27],[6,0],[26,-10],[5,-5],[14,-30],[15,-21],[23,-40],[8,-18],[4,-20],[2,-14],[3,-11],[5,-4],[10,17],[5,-2],[5,-6],[6,-5],[4,11],[10,8],[22,9],[-17,7],[-13,2],[-6,3],[-4,8],[-1,15],[-1,26],[1,11],[4,10],[5,7],[10,11],[12,9],[4,2],[23,1],[5,-3],[5,-9],[5,-6],[6,-2],[7,3],[6,5],[5,12],[3,8],[4,5],[9,1],[24,-1],[5,-3],[19,-19],[13,-5],[27,0],[12,-4],[37,-35],[1,-4],[0,-5],[2,-6],[10,-11],[14,-9],[14,-5],[11,1],[-1,2],[-5,5],[5,6],[5,1],[5,-1],[13,6],[6,-1],[12,-4],[18,6],[6,0],[6,-5],[6,-5],[22,-29],[6,-10],[6,-22],[8,-13],[8,-20],[5,-4],[5,-2],[7,-7],[5,-2],[3,9],[5,24],[11,15],[13,4],[14,-3],[63,-39],[12,-1],[23,3],[32,-3],[6,-3],[13,-13],[4,-5],[12,-22],[27,-29],[5,-4],[12,-4],[6,-4],[4,-9],[4,-9],[4,-7],[6,-2],[5,-3],[17,-26],[24,-19],[12,-16],[2,-19],[-4,-12],[-6,-7],[-7,-5],[-8,-3],[-21,0],[-15,-7],[-8,-1],[-30,9],[-29,-5],[-21,5],[-7,-1],[-5,-6],[0,-14],[3,-6],[4,-1],[4,-1],[3,-1],[3,-6],[4,-12],[7,-9],[3,-10],[2,-3],[3,-1],[14,2],[21,-4],[7,3],[21,13],[7,0],[21,-11],[116,-36],[2,-4],[1,-5],[1,-6],[3,-5],[-18,-13],[35,5],[11,-4],[9,-9],[9,-13],[9,-15],[12,-26],[5,-7],[18,-12],[3,-5],[2,-7],[5,-11],[10,-13],[9,-10],[5,-14],[-5,-23],[27,-18],[5,-7],[12,-23],[3,-9],[-3,-11],[-6,-8],[-7,-7],[-4,-6],[-3,-15],[1,-11],[4,-4],[6,8],[4,12],[5,9],[5,3],[5,-8],[2,-15],[-5,-21],[2,-14],[10,-14],[13,-10],[25,-12],[-20,-38],[-16,-20],[-4,-7],[1,-7],[3,-9],[2,-11],[0,-9],[-6,-2],[6,-9],[4,-9],[5,-6],[7,-3],[8,1],[36,14],[13,-1],[4,2],[7,8],[4,1],[2,-4],[5,-17],[3,-6],[12,-9],[14,-1],[27,11],[16,0],[16,-9],[15,-14],[14,-18],[-2,-6],[-2,-6],[-3,-5],[-3,-3],[9,-18],[15,-14],[16,-8],[20,0],[7,-4],[12,-14],[5,-2],[8,6],[8,8],[4,10],[-3,4],[-2,5],[-2,6],[-1,7],[5,2],[2,0],[-31,58],[-2,2],[-10,1],[-5,1],[-3,4],[-4,16],[-1,17],[-2,6],[-4,4],[-9,5],[-8,1],[-15,-7],[-8,1],[-4,5],[-2,5],[-4,17],[-1,8],[2,2],[2,3],[1,6],[0,16],[1,8],[1,6],[7,15],[3,10],[1,8],[-2,5],[-9,6],[-3,4],[-1,7],[0,6],[0,7],[-6,15],[2,6],[2,5],[1,4],[0,11],[-1,9],[-2,9],[-3,8],[-3,16],[0,15],[7,32],[2,5],[4,4],[8,6],[3,7],[1,16],[2,4],[31,-9],[6,3],[26,23],[15,5],[61,4],[17,-4],[8,-5],[7,-9],[20,-46],[5,-10],[6,-6],[7,-1],[7,0],[7,-1],[5,-11],[-4,-3],[-4,-2],[-4,1],[-4,2],[6,-25],[12,-18],[14,-11],[13,-5],[15,0],[8,-2],[6,-6],[3,-4],[7,-19],[3,-3],[53,-22],[17,-17],[8,-3],[8,0],[13,3],[30,-7],[6,1],[7,4],[14,14],[15,1],[17,5],[6,-2],[2,-9],[-3,-18],[-1,-11],[1,-37],[2,-10],[6,-7],[7,-2],[7,2],[8,-1],[7,-4],[4,-1],[2,3],[1,7],[2,5],[2,5],[3,3],[3,4],[0,13],[3,6],[6,10],[2,5],[3,7],[5,9],[7,7],[7,4],[6,2],[-43,52],[-5,11],[19,16],[20,7],[20,2],[71,-18],[19,-11],[9,-4],[29,0],[16,5],[4,-2],[3,-3],[5,-5],[10,-7],[11,-4],[65,6],[9,-14],[11,1],[24,12],[12,3],[8,-3],[6,0],[2,-3],[2,-3],[2,-1],[4,1],[5,5],[3,1],[3,-1],[6,-4],[3,0],[-10,-12],[7,-5],[18,3],[9,-1],[-1,-2],[-2,-5],[-2,-2],[108,-42],[-1,13],[4,6],[5,2],[18,0],[5,3],[16,16],[76,20],[11,-3],[2,-3],[4,-9],[3,-1],[78,-4],[12,-8],[12,-12],[6,-8],[2,-7],[-4,-9],[-6,-5],[-14,-4],[-2,1],[-2,5],[-2,2],[-9,-4],[-3,2],[-7,5],[-5,0],[-13,-7],[-26,-1],[-13,-4],[-8,-14],[5,-7],[4,-8],[3,-5],[6,-2],[18,3],[4,-1],[6,-7],[4,-3],[5,-1],[27,4],[14,8],[7,-1],[11,-10],[5,-4],[6,3],[7,5],[7,3],[7,1],[14,-3],[19,6],[96,3],[12,-2],[25,-13],[42,-4],[10,-11],[1,-6],[1,-8],[0,-6],[2,-2],[8,2],[3,-1],[4,-2],[7,-7],[4,-11],[2,-12],[5,-15],[-12,-11],[-97,-4],[-17,-7],[-57,-11],[-13,-7],[-7,-2],[12,-21],[20,-4],[71,20],[102,-6],[7,-6],[13,-24],[7,-7],[35,-19],[-5,-10],[-5,-7],[-6,-4],[-7,0],[-9,4],[-3,1],[-4,-1],[-6,-5],[-3,-1],[-6,3],[-5,4],[-6,2],[-4,-7],[-5,-10],[-6,-6],[-15,-7],[-5,-7],[-2,-9],[2,-8],[5,-3],[98,20],[14,-4],[7,1],[21,9],[26,-7],[7,1],[18,11],[10,8],[5,1],[17,-6],[7,-7],[2,-1],[14,2],[7,-1],[6,-4],[11,-20],[6,-8],[6,-2],[-4,-21],[71,-29],[6,-6],[6,-7],[3,-3],[4,-2],[3,2],[7,9],[4,1],[2,-3],[1,-6],[2,-5],[3,-4],[24,-5],[5,-4],[16,-25],[5,-6],[6,-3],[7,0],[8,-3],[12,-12],[9,0],[-3,-3],[-2,-4],[-2,-4],[-1,-5],[4,-3],[7,-9],[3,-3],[10,-2],[10,-1],[37,9],[11,-1],[8,-7],[22,-24],[3,-5],[3,-4],[4,-2],[20,9],[-1,-11],[3,-8],[11,-12],[5,-8],[4,-9],[5,-7],[6,-2],[7,1],[17,-10],[6,0],[7,3],[6,5],[6,6],[-5,5],[-2,9],[3,8],[5,3],[-4,9],[14,17],[14,12],[-14,61],[-4,10],[-15,25],[-4,9],[-2,9],[-4,22],[2,7],[7,5],[7,1],[5,-3],[11,-29],[2,-4],[6,-1],[2,-3],[5,-9],[7,-20],[16,-24],[9,-19],[12,-33],[5,-8],[10,-13],[28,-50],[-5,-11],[-2,-3],[41,-11],[-2,-1],[-5,-6],[6,-13],[6,-8],[7,-4],[8,-3],[-5,-6],[-1,-8],[3,-9],[4,-7],[4,-6],[6,-5],[7,-4],[5,0],[-6,-15],[-8,-11],[-18,-16],[-22,-27],[-8,-4],[-20,-2],[-9,-4],[-5,-12],[-2,-6],[-4,-3],[-4,-2],[-4,1],[-4,4],[-2,7],[-3,19],[3,0],[3,1],[3,4],[2,5],[-22,25],[-15,8],[-1,5],[-1,5],[-2,4],[-11,9],[-4,7],[-4,9],[-8,9],[-9,-12],[-13,-30],[-32,-35],[25,-5],[7,-7],[-5,-15],[-5,-14],[-6,-12],[-8,-10],[-8,-4],[-17,12],[-9,2],[2,-7],[0,-6],[-1,-6],[-3,-6],[14,-13],[-3,-2],[-2,-4],[0,-5],[0,-6],[-1,-6],[-11,-12],[-2,-7],[0,-5],[-1,-4],[-4,-5],[-4,-1],[-11,2],[-6,-4],[-13,-11],[-7,-3],[-16,-1],[-7,-6],[-2,-15],[5,1],[3,-3],[3,-4],[4,-3],[20,-3],[4,-3],[4,-4],[4,-3],[4,1],[4,0],[8,-6],[5,2],[-5,-12],[-35,-53],[-2,-10],[7,-9],[16,2],[29,14],[5,5],[10,18],[5,6],[35,19],[6,2],[5,-5],[2,-23],[3,-2],[3,-1],[2,-5],[2,-16],[1,-7],[3,-8],[0,-5],[-3,-5],[-5,-9],[-3,-6],[-1,-7],[-1,-17],[-3,-30],[-4,-15],[-4,-8],[-14,-7],[-15,-2],[-14,4],[-14,7],[-21,16],[-14,3],[-12,8],[-6,2],[-36,-1],[-8,3],[-4,2],[-3,3],[-11,16],[-6,5],[-7,2],[-2,-2],[-4,-6],[-2,-2],[-3,1],[-32,25],[-12,4],[-22,-13],[-51,2],[-117,75],[-8,-3],[-10,-11],[-13,-3],[-52,11],[-25,-3],[76,-60],[77,-60],[14,-4],[106,3],[13,-10],[11,-14],[3,-5],[1,-8],[0,-5],[0,-4],[5,-5],[14,-11],[8,-3],[6,2],[15,7],[14,5],[15,-1],[57,-27],[13,-15],[-23,-38],[-25,-31],[-10,-8],[-2,-4],[-3,-17],[-3,-6],[-3,-5],[-20,-21],[-7,-4],[6,-18],[-2,-2],[-4,-6],[-2,-3],[15,-19],[-7,-12],[-7,-10],[-7,-6],[-43,-11],[-3,0],[-3,2],[-3,5],[-2,5],[-4,6],[-4,2],[-19,-2],[-26,-14],[14,-17],[8,-35],[0,-34],[-10,-17],[-39,6],[-18,-3],[-8,5],[1,15],[-14,-2],[-6,3],[-5,8],[1,2],[3,4],[1,2],[-7,9],[-2,9],[2,9],[7,9],[9,8],[1,2],[1,7],[1,3],[3,1],[11,2],[-8,11],[-10,2],[-25,-9],[-10,-9],[-6,-3],[-11,0],[-11,2],[3,5],[3,4],[4,3],[3,1],[-2,12],[-7,4],[-15,-2],[-10,4],[-7,7],[-13,21],[-7,7],[-41,22],[-7,1],[-9,0],[-11,-12],[8,-22],[14,-24],[8,-21],[-2,-15],[-4,-12],[-7,-7],[-6,-3],[-9,1],[-13,11],[-8,4],[-4,0],[-7,-7],[-3,-2],[-4,0],[-26,18],[-8,3],[-7,-2],[-10,-6],[-7,-2],[-16,4],[-9,-1],[-15,-10],[-8,-4],[-17,1],[-7,4],[-14,18],[-8,-2],[-16,-13],[-15,-5],[-92,-3],[-32,15],[-2,3],[-6,20],[-11,22],[-5,9],[-7,8],[-31,16],[-61,14],[-14,10],[-12,16],[13,19],[4,9],[-12,0],[-24,-11],[-24,0],[-7,-2],[-3,-6],[2,-9],[5,-11],[11,-18],[5,-5],[13,-5],[25,-20],[60,-21],[-2,-14],[-4,-10],[-4,-8],[-7,-2],[9,-24],[11,-16],[12,-11],[14,-8],[-36,-64],[10,-21],[13,6],[25,32],[17,15],[33,14],[60,-13],[-1,-4],[-2,-10],[-1,-4],[10,-6],[32,6],[134,-32],[-48,-6],[-37,5],[5,-13],[10,-12],[21,-18],[-10,-9],[-10,0],[-45,16],[-10,11],[-5,2],[-6,-3],[-5,-1],[-12,6],[-5,0],[-32,-6],[-5,-3],[-2,-5],[1,-9],[3,-6],[10,-5],[-14,-14],[7,-3],[16,3],[6,-3],[8,-6],[22,-7],[-15,-12],[-15,-5],[-15,2],[-22,22],[-48,17],[-9,-1],[19,-21],[5,-8],[-6,-20],[-6,-11],[-7,-3],[-23,6],[-11,0],[-2,-2],[-2,-4],[-3,-9],[-3,-3],[-3,1],[-6,7],[1,2],[4,7],[1,2],[-3,6],[-4,4],[-4,2],[-5,0],[14,10],[-11,14],[-12,7],[-13,-4],[-11,-15],[-5,-12],[-4,-14],[-4,-11],[-7,-6],[-9,0],[-24,6],[-2,-2],[-2,-3],[-1,-2],[-4,1],[-4,3],[-9,12],[-55,45],[-15,5],[-13,-7],[7,-14],[28,-29],[-22,-5],[-74,5],[-16,-7],[3,-12],[5,-6],[42,-9],[57,-29],[-3,-7],[-3,-5],[-4,-3],[-4,-2],[21,-1],[11,-4],[8,-10],[-6,-4],[-10,-16],[-6,-3],[-3,1],[-3,3],[-4,0],[-3,-2],[-1,-5],[0,-12],[-1,-5],[-3,-6],[-2,-3],[-32,3],[-6,-3],[-12,-9],[-7,-3],[-74,22],[-25,-5],[14,-17],[14,-11],[31,-12],[-5,-4],[-16,-4],[-5,-3],[-9,-10],[-5,-3],[-22,0],[-22,7],[-64,5],[-17,20],[-2,17],[15,31],[2,20],[-1,4],[-4,6],[-2,3],[1,4],[4,7],[-1,4],[-8,22],[0,9],[4,12],[2,11],[-1,8],[-4,6],[-6,5],[-5,6],[-3,9],[-6,22],[-4,21],[-2,8],[-20,27],[-6,4],[41,35],[12,5],[38,2],[-14,7],[-16,4],[-15,-1],[-14,-6],[-31,-24],[-16,-8],[-18,-1],[-98,38],[-9,-4],[-23,-22],[13,-18],[13,-11],[15,-5],[31,4],[18,-3],[17,-8],[14,-14],[4,-13],[-4,-26],[9,-27],[1,-17],[-3,-33],[-4,-15],[-8,-9],[-9,-4],[-9,-1],[-6,-5],[-7,-13],[-6,-15],[-4,-12],[17,-16],[4,-3],[10,-1],[4,-5],[3,-7],[1,-9],[2,-8],[5,-5],[20,-11],[-16,-20],[-6,-4],[5,-9],[6,-4],[24,-12],[6,-1],[7,2],[-7,17],[31,-21],[36,-13],[-6,-5],[19,-12],[-7,-7],[-8,-2],[-15,-1],[-25,-6],[-10,1],[-2,4],[-1,15],[-2,3],[-45,11],[-20,21],[-64,22],[-17,2],[-17,-3],[-16,-9],[7,-4],[23,-6],[19,-11],[2,-4],[0,-7],[-1,-13],[22,12],[-1,-10],[1,-10],[2,-6],[5,-2],[5,3],[7,12],[5,3],[8,-3],[9,-11],[7,-15],[6,-14],[-13,-8],[4,-6],[6,-3],[11,-1],[-5,-8],[-6,-4],[-12,-4],[20,-14],[-7,-23],[11,-11],[41,-13],[5,-4],[4,-10],[1,-6],[1,-14],[1,-4],[7,-4],[2,-4],[2,-8],[-6,-1],[-2,0],[6,-7],[9,-21],[7,-8],[8,-4],[4,-3],[4,-6],[3,-8],[3,-7],[4,-5],[4,-4],[33,-7],[15,-10],[1,-21],[-2,-14],[-2,-32],[-4,-13],[-6,-6],[-7,3],[-13,19],[-28,33],[-17,12],[-13,-2],[-7,-9],[-7,-5],[-6,-3],[-16,1],[-15,-5],[-7,0],[-7,-1],[-14,-11],[-8,2],[-7,5],[-8,2],[-49,-3],[-10,6],[-13,-2],[-5,1],[-6,5],[-29,30],[-6,3],[-6,0],[-57,-27],[-52,-5],[10,-17],[-32,-19],[-16,-4],[-19,7],[-7,-2],[-3,0],[-4,5],[-2,6],[0,8],[-1,8],[-3,15],[-2,17],[2,15],[6,10],[-18,12],[-10,3],[-10,-5],[0,15],[6,28],[0,14],[-5,12],[-9,2],[-10,-3],[-20,-12],[-25,-22],[-14,-8],[-6,0],[-13,2],[-18,0],[-4,-2],[-3,-3],[-2,-6],[-1,-6],[3,-4],[23,-1],[4,-5],[4,-15],[5,-13],[12,-23],[-15,-27],[-4,-4],[-10,-8],[-21,-30],[-3,-8],[-2,-9],[-3,-8],[-5,-4],[-9,3],[-6,16],[-10,35],[-4,7],[-6,1],[-5,-1],[-5,-3],[-5,-1],[-9,4],[-5,0],[6,-19],[1,-9],[-2,-8],[-2,-3],[-6,-4],[-2,-2],[-2,-5],[-3,-10],[-2,-4],[-11,-11],[-39,-11],[1,-10],[2,-8],[3,-5],[5,-2],[-6,-21],[-7,-14],[-8,-8],[-12,-4],[-10,4],[-20,16],[-11,-3],[6,-8],[19,-16],[0,-23],[10,-13],[15,-6],[41,-3],[14,-7],[12,-12],[-8,-15],[-13,-7],[-25,-2],[4,-7],[4,-2],[11,-2],[-8,-18],[-10,-8],[-21,-4],[3,-13],[6,-9],[7,-6],[6,-3],[8,-9],[-3,-12],[-7,-13],[-7,-8],[-14,-10],[-78,-18],[-65,7],[-30,14],[-6,5],[-13,14],[-6,5],[-7,3],[-8,1],[-30,-7],[-15,-8],[-7,-9],[-10,-21],[-7,-7],[-15,-6],[-138,-1],[-19,-8],[-8,-1],[-9,-4],[-13,-18],[-26,-15],[-35,-7],[16,-12],[80,-18],[14,4],[30,22],[103,-1],[102,0],[102,-1],[5,-6],[15,-26],[3,-9],[3,-13],[5,-16],[1,-14],[-7,-8],[-38,4],[-20,-4],[-12,-18],[8,-7],[8,-4],[7,-2],[29,2],[3,-4],[-1,-8],[-3,-10],[-3,-5],[4,-1],[3,-2],[2,-4],[2,-7],[3,-3],[3,-2],[7,1],[3,-3],[3,-9],[2,-4],[40,-11],[2,1],[3,1],[3,0],[1,-4],[1,-11],[2,-6],[3,-2],[5,-1],[7,0],[7,2],[3,0],[8,-8],[61,-19],[16,-18],[-5,-8],[-11,-10],[-7,-9],[-2,-1],[-1,-2],[0,-4],[1,-6],[0,-4],[-2,-2],[-3,-4],[-9,-4],[-51,3],[-5,-2],[-5,-5],[1,-6],[5,-5],[5,-2],[8,0],[5,-1],[22,-21],[1,-8],[-4,-15],[5,-5],[3,-8],[4,-19],[-24,-11],[-71,19],[8,-9],[27,-14],[-11,-6],[-11,2],[-12,7],[-10,9],[-2,-3],[-15,-10],[9,-8],[31,-9],[-9,-11],[-14,-2],[-27,2],[-28,-4],[-14,-9],[-6,-19],[9,0],[6,-2],[4,-8],[1,-19],[27,-4],[19,-11],[4,0],[25,25],[13,8],[25,3],[3,-1],[3,-3],[2,-3],[3,-3],[3,-1],[30,1],[6,-2],[6,-5],[4,-9],[0,-15],[-4,-10],[-7,-4],[-13,0],[1,-1],[5,-5],[4,-24],[24,-23],[17,-25],[-14,-32],[-31,-29],[-10,-4],[-34,9],[-8,-8],[1,-1],[4,-5],[1,-1],[-5,-3],[-10,-2],[-5,-3],[-2,-11],[-1,-4],[-2,0],[-2,0],[-2,-2],[-8,-22],[8,-7],[11,-4],[73,5],[24,-9],[9,-7],[16,-19],[3,-7],[3,-22],[2,-10],[4,-9],[-6,-1],[-4,-5],[-4,-7],[-3,-10],[-4,-8],[-4,-4],[-5,-1],[-6,1],[-13,8],[-4,1],[-12,0],[-12,4],[-20,1],[-57,-44],[35,-3],[11,-8],[-18,-12],[-61,-8],[62,-5],[-7,-10],[-11,-5],[-20,-2],[11,-14],[11,-2],[42,8],[8,-1],[12,-13],[7,-1],[29,7],[28,-3],[28,4],[13,-3],[26,-15],[-5,-12],[-6,-12],[17,-14],[7,-8],[8,-14],[8,-8],[21,-4],[10,-6],[3,-7],[5,-16],[3,-7],[4,-3],[9,-5],[4,-6],[6,-17],[3,-7],[5,-6],[4,-7],[1,-10],[-1,-11],[-2,-9],[9,-9],[9,-6],[10,-3],[22,-2],[3,-4],[5,-10],[4,-5],[6,-1],[12,0],[-14,-10],[12,-17],[4,-11],[-3,-14],[-6,-6],[-70,-12],[-12,-12],[45,-15],[14,-12],[-17,-19],[-19,-8],[-41,-5],[26,-28],[7,-2],[97,14],[2,-3],[2,-4],[4,-3],[85,-41],[-12,-15],[-22,-3],[-40,6],[-39,-8],[-37,-20],[7,-18],[15,1],[27,11],[86,2],[87,1],[7,-6],[5,-6],[3,-9],[3,-14],[-11,-3],[2,-40],[-14,-19],[-21,-6],[-19,-1],[5,-8],[5,-5],[12,-6],[-5,-14],[-9,-7],[-19,-6],[-33,-21],[-42,-16],[-41,-30],[-11,-3],[25,-3],[51,10],[25,-7],[46,-31],[21,-3],[5,-3],[18,-17],[7,-2],[23,-3],[11,3],[22,17],[94,23],[5,4],[9,16],[5,7],[6,5],[7,3],[7,0],[-6,6],[-16,11],[19,28],[22,18],[31,37],[8,4],[14,0],[13,-5],[5,-4],[7,-7],[6,-8],[3,-10],[0,-16],[-4,-12],[-6,-8],[-68,-37],[7,-7],[24,-10],[16,-10],[17,-6],[25,0],[8,-4],[6,-6],[8,-11],[4,-12],[-5,-8],[2,-1],[4,-4],[2,-1],[-5,-7],[-5,-4],[-10,-7],[11,-21],[16,-12],[95,-29],[60,-2],[61,-20],[121,3],[16,-5],[13,-10],[31,-44],[5,-13],[2,-15],[-4,-12],[-7,-8],[-15,-8],[-22,-7],[-73,-1],[-72,-2],[-36,16],[-12,16],[-49,42],[-30,12],[-90,1],[-89,1],[2,-5],[3,-4],[3,-3],[3,-1],[-49,-11],[-125,0],[-125,0],[-93,-49],[-24,1],[24,-12],[-8,-4],[-16,3],[-7,0],[-5,-4],[-7,-11],[-5,-2],[-14,-1],[-58,13],[-18,-3],[2,-2],[2,-5],[2,-2],[-4,-3],[-4,-2],[-4,0],[-3,0],[1,-3],[2,-8],[1,-4],[-21,-7],[-3,1],[-8,22],[-2,5],[-3,0],[-2,-3],[-4,-3],[-13,0],[-27,7],[-13,0],[-21,-8],[-6,1],[-8,4],[-6,1],[-6,-5],[-7,-10],[-9,-18],[-5,-6],[-6,-4],[-10,-2],[-3,-1],[-1,-5],[0,-7],[0,-8],[-4,-6],[6,-11],[2,-3],[-8,-4],[-21,-23],[-16,-8],[-16,-4],[-19,1],[-9,7],[-6,14],[-7,9],[-18,1],[-7,9],[3,7],[-1,9],[-1,8],[0,4],[19,20],[-12,11],[-14,-2],[-26,-8],[-59,21],[-6,6],[-11,18],[-26,25],[-5,2],[-13,2],[-15,9],[-25,26],[5,7],[12,26],[11,12],[3,7],[-3,13],[-11,12],[-12,-7],[-12,-12],[-11,-5],[-26,9],[-14,1],[-13,-6],[-2,-4],[-4,-11],[-3,-3],[-31,-20],[-7,-1],[10,-6],[5,-13],[4,-17],[7,-15],[5,-7],[4,-8],[7,-18],[4,-7],[15,-9],[-4,-15],[-3,-7],[-3,-5],[7,-6],[25,1],[9,-2],[8,-5],[16,-14],[-7,-12],[-9,-4],[-18,-3],[44,-23],[4,-4],[3,-7],[3,-7],[3,-6],[11,-7],[11,-21],[41,-42],[-80,0],[-79,29],[1,17],[-8,11],[-10,9],[-13,21],[-10,4],[-19,-1],[-5,-1],[-3,-4],[-3,-5],[-4,-4],[-5,-2],[-57,6],[54,-17],[-8,-10],[-4,-6],[-2,-9],[-5,-27],[-8,-6],[-11,-2],[-101,15],[14,-22],[-10,-13],[-90,-42],[30,-18],[-1,-4],[-1,-8],[-1,-4],[10,-9],[-3,-10],[-9,-8],[-11,-3],[6,-16],[10,-5],[23,1],[21,-6],[21,-12],[-6,-10],[-8,-6],[-15,-6],[4,-9],[6,-7],[14,-9],[70,-5],[18,-8],[2,-19],[-6,-5],[-72,9],[-19,10],[-17,0],[-33,-9],[-6,-6],[-5,-13],[-6,-9],[-8,-6],[-47,-10],[-8,-5],[-14,-14],[-7,-4],[-18,-1],[-123,32],[3,-7],[5,-4],[9,-4],[6,-6],[1,-8],[-1,-9],[1,-7],[4,-9],[6,-5],[12,-6],[17,-14],[4,-1],[134,13],[134,12],[-22,-19],[-94,-36],[-94,-36],[-82,-4],[-34,-16],[-47,-8],[11,-3],[24,0],[11,-5],[-8,-12],[-10,-6],[-21,-6],[41,-21],[42,-9],[42,2],[99,36],[11,-1],[25,-20],[47,-10],[46,-25],[16,-1],[130,47],[42,-14],[-6,-6],[-12,-15],[-6,-6],[-121,-31],[-120,-31],[-120,-30],[-121,-31],[-120,-31],[-121,-31],[2,-24],[-15,-15],[-73,-24],[-73,-24],[-10,-8],[5,-15],[18,-5],[77,-2],[4,-3],[8,-8],[3,-1],[120,12],[121,11],[120,11],[120,12],[120,11],[7,-1],[10,-7],[8,-9],[3,-5],[4,-12],[2,-3],[6,-3],[11,2],[5,-2],[7,-6],[17,-23],[-14,-15],[-16,0],[-85,31],[-19,-2],[14,-21],[8,-8],[8,-4],[-14,-10],[-72,-13],[-71,-13],[-17,3],[-21,19],[-8,2],[-32,-11],[-18,-1],[20,-22],[8,-21],[7,-5],[106,-16],[83,20],[83,20],[29,-6],[38,-16],[7,1],[7,4],[8,1],[6,-6],[1,-16],[-2,-5],[-4,-1],[-4,0],[-4,-1],[-2,-6],[-4,-15],[-2,-6],[-6,-6],[-26,-10],[94,-15],[-30,-11],[-100,4],[-100,4],[-100,5],[-33,-9],[-82,2],[-47,15],[-13,-8],[5,-4],[5,-3],[10,-3],[-7,-5],[-14,-16],[-8,-6],[9,-6],[61,14],[118,-11],[119,-12],[-1,-3],[-1,-7],[-1,-3],[79,-14],[-44,-19],[-6,2],[-10,7],[-6,-2],[7,-11],[10,-3],[44,6],[5,-2],[16,-12],[-7,-12],[-100,-9],[16,-11],[5,-8],[-2,-1],[-4,-3],[-2,-1],[15,-12],[49,-18],[-14,-16],[-65,4],[60,-23],[10,-9],[6,-10],[-14,-6],[-43,4],[74,-19],[57,4],[17,-15],[-62,-16],[-109,20],[-110,20],[7,-12],[10,-7],[19,-9],[7,-6],[14,-16],[7,-4],[70,-14],[3,1],[-9,-5],[-53,-1],[-10,-6],[-1,-14],[-15,-12],[12,-7],[14,0],[27,10],[108,11],[51,-17],[-23,-18],[-8,-4],[-33,-3],[12,-7],[-9,-12],[11,-7],[11,3],[24,11],[121,14],[19,-16],[-7,-15],[-7,-8],[-128,-35],[81,-6],[81,-7],[-6,-4],[-18,-4],[16,-12],[120,-8],[-11,-6],[-12,-3],[19,-8],[69,-12],[69,-13],[0,-3],[-1,-7],[0,-3],[15,-5],[-23,-4],[6,-3],[11,-9],[19,-1],[12,-3],[-64,-26],[23,-6],[-33,-9],[-32,-1],[9,-8],[8,-5],[8,-2],[86,8],[36,-7],[-1,2],[-1,6],[-1,2],[10,11],[14,5],[14,-2],[15,-13],[18,-5],[13,-8],[12,-13],[-17,-8],[-17,-4],[-70,4],[-8,-2],[-24,-13],[14,-6],[51,5],[15,-3],[14,-9],[24,-4],[-9,-6],[-10,-1],[-18,2],[47,-30],[49,-14],[-6,-3],[-6,-6],[109,-30],[-9,-6],[-28,-2],[21,-11],[66,-4],[-10,-8],[-33,-3],[81,-26],[-9,-15],[-12,-9],[-127,-16],[-127,-16],[-127,-16],[-127,-17],[-127,-16],[-127,-16],[-127,-16],[14,-17],[15,-14],[16,-10],[16,-6],[110,1],[110,1],[110,1],[110,1],[16,9],[8,2],[67,-6],[46,-26],[41,-8],[4,1],[7,12],[6,4],[82,-18],[-10,20],[-24,17],[-42,20],[32,14],[129,17],[129,17],[129,17],[16,-10],[42,-14],[96,-8],[34,-24],[16,-19],[8,-6],[34,-10],[-6,-9],[-17,-4],[-4,-6],[-6,-19],[-13,-10],[-14,-3],[-11,0],[19,-16],[102,-14],[102,-14],[22,7],[11,-1],[84,-35],[-20,-23],[-7,-5],[4,-1],[5,-3],[9,-9],[6,-4],[6,-2],[11,-1],[91,15],[111,-35],[10,-7],[2,-9],[-5,-8],[-37,-23],[-9,-2],[67,-15],[-11,-12],[-6,-4],[-79,-2],[13,-8],[97,-7],[0,-10],[-2,-7],[-3,-6],[-4,-4],[31,-8],[22,-11],[11,-2],[23,4],[42,18],[43,32],[21,6],[131,-23],[9,-4],[-2,-1],[-3,-4],[-3,-5],[-1,-4],[3,-15],[12,-10],[35,-12],[9,-9],[18,-23],[-2,-1],[-10,-13],[-8,-8],[-9,-4],[-96,2],[-95,2],[29,-23],[98,-7],[-9,-8],[-24,-11],[-73,10],[-74,10],[-6,-2],[-18,-9],[-14,-2],[-71,19],[-71,18],[-66,-4],[7,-11],[9,-5],[136,-24],[135,-24],[-22,-13],[9,-13],[13,-5],[36,-5],[34,9],[15,-7],[5,0],[32,7],[14,-3],[12,-6],[14,-13],[4,-3],[8,-1],[101,18],[100,17],[4,-1],[2,-5],[1,-5],[2,-5],[3,-4],[-4,-8],[-9,-14],[-4,-8],[9,-7],[19,-8],[21,-2],[5,2],[5,6],[3,7],[3,4],[4,2],[4,0],[-12,10],[4,3],[5,12],[3,2],[132,-21],[-12,-5],[2,-5],[4,-3],[3,-2],[4,1],[-2,-3],[-2,-6],[-2,-3],[12,-9],[26,-12],[50,-4],[3,1],[2,4],[5,10],[3,2],[79,6],[3,2],[1,6],[0,5],[2,2],[16,2],[106,-13],[18,-11],[35,-4],[26,-11],[21,-3],[6,-3],[-21,-11],[-21,-6],[-69,-2],[-70,-2],[6,-4],[7,-2],[14,-1],[-12,-9],[7,-4],[91,8],[103,-18],[8,-4],[16,-11],[48,-5],[-6,-8],[-7,-4],[-13,-3],[50,-8],[-9,-7],[-9,-5],[-19,-5],[24,-18],[27,0],[75,24],[126,5],[114,-26],[24,-12],[-1,-2],[-1,-7],[-1,-3],[29,-5],[58,7],[28,-8],[-11,-17],[-109,-38],[33,-13],[118,2],[10,7],[4,1],[8,-2],[4,-2],[7,-7],[3,-1],[94,10],[93,10],[94,10],[41,-23],[89,-20],[-18,-15],[-60,-17],[8,0],[22,-14],[9,-2],[104,13],[129,-14],[129,-14],[129,-14],[129,-15],[23,-9],[-16,-4],[15,-7],[72,-7],[72,-7],[7,-4],[12,-12],[5,-1],[52,16],[34,-2],[-34,-20],[21,-14],[24,-3],[59,7],[25,-7],[135,-8],[110,-43],[10,-9],[-26,-11],[-26,-5],[27,-12],[-99906,-14],[116,7],[116,7],[116,7],[116,7],[32,-8],[3,-1],[-3,-4],[-3,-2],[-3,-1],[-3,0],[51,-12],[8,-6],[1,-12],[82,-19],[45,11],[60,-4],[61,14],[96,-3],[97,-2],[96,-3],[-14,-7],[-95,-7],[-15,-9],[71,-16],[71,-15],[-6,-3],[-6,-1],[8,-3],[14,-11],[14,-15],[9,-3],[88,15],[88,15],[16,7],[13,20],[-5,4],[-6,2],[-12,1],[5,12],[8,3],[138,-10],[137,-10],[138,-10],[137,-9],[137,-10],[138,-10],[137,-10],[137,-10],[138,-10],[137,-10],[137,-10],[138,-9],[137,-10],[138,-10],[12,-5],[18,-20],[6,-3],[-11,-16],[30,-29],[10,-6],[71,-9],[71,-9],[8,-15],[-21,-7],[31,-11],[74,14],[74,14],[132,-6],[133,-5],[132,-6],[133,-5],[133,-6],[132,-5],[32,-11],[130,-6],[131,-6],[10,3],[30,16],[138,-15],[138,-14],[138,-14],[139,-15],[138,-14],[138,-14],[138,-14],[138,-15],[55,-33],[58,-13],[-6,12],[-7,9],[-15,12],[19,4],[20,0],[20,-7],[43,-33],[10,-3],[119,-7],[120,-7],[120,-6],[120,-7],[119,-7],[-13,11],[-121,2],[-121,3],[130,2],[130,3],[14,4],[11,13],[-12,8],[-43,1],[8,5],[79,2],[78,3],[-132,23],[-133,24],[-133,23],[-6,4],[-14,19],[-10,7],[-82,18],[-82,17],[15,9],[125,-3],[124,-4],[125,-3],[124,-3],[9,2],[2,0],[-11,6],[-89,3],[113,4],[-10,8],[-36,3],[78,12],[-15,7],[-127,4],[-127,4],[-127,4],[-127,4],[-127,3],[-127,4],[30,5],[8,8],[-130,11],[-130,11],[-130,10],[-130,11],[-130,11],[-130,11],[-130,10],[-130,11],[-130,11],[-130,11],[-130,10],[-130,11],[-8,3],[-5,9],[1,1],[1,4],[1,2],[-3,3],[-51,19],[115,-3],[115,-4],[-14,9],[-95,29],[-136,1],[-137,2],[-136,2],[-12,-8],[-5,-1],[-114,13],[-114,13],[-114,12],[128,-8],[127,-8],[-2,10],[29,10],[134,0],[133,0],[134,0],[134,1],[134,0],[-5,2],[-7,8],[-4,3],[-102,10],[-101,9],[-102,10],[-4,2],[-3,3],[5,7],[13,0],[5,5],[-3,-1],[-32,8],[-13,7],[11,3],[12,5],[-121,24],[-32,17],[-115,11],[7,12],[10,3],[20,-4],[-11,10],[-5,8],[-4,10],[23,9],[121,1],[121,2],[121,1],[-11,11],[-82,24],[2,1],[9,7],[7,2],[15,1],[5,1],[3,4],[-4,4],[-12,3],[-13,8],[-127,34],[-128,34],[-14,13],[-5,3],[-122,18],[-18,10],[-8,2],[-117,-23],[-5,-3],[-10,-8],[-22,-9],[-112,8],[-112,7],[-112,7],[-112,7],[15,-12],[104,-12],[16,-9],[-29,-7],[-109,17],[-109,17],[26,8],[-18,8],[-57,6],[81,-1],[81,0],[-16,13],[-134,6],[-33,12],[-33,22],[-43,19],[-7,11],[21,15],[7,4],[-4,18],[-10,7],[-120,9],[-9,4],[-7,11],[19,9],[63,-1],[-79,10],[-78,10],[-5,2],[-16,15],[-4,2],[-128,22],[-128,22],[-128,21],[-129,22],[-128,21],[13,6],[103,-13],[102,-13],[-122,29],[-122,29],[-122,30],[-121,29],[-122,29],[-122,30],[-122,29],[-86,61],[-9,20],[8,12],[20,1],[101,-31],[100,-32],[101,-32],[122,-1],[64,29],[102,-17],[102,-16],[103,-17],[125,-60],[7,-5],[27,-38],[11,-24],[7,-8],[14,-9],[104,-22],[103,-23],[104,-22],[18,5],[-56,34],[115,-2],[114,-1],[115,-2],[114,-1],[7,5],[9,18],[6,5],[78,-6],[79,-5],[4,1],[20,14],[7,2],[124,-1],[125,0],[125,-1],[125,0],[125,-1],[64,-28],[-5,-9],[-6,-3],[-6,0],[-6,-4],[-2,-1],[-1,-2],[-1,-2],[0,-3],[0,-2],[1,-4],[0,-3],[-2,-7],[-8,-14],[0,-9],[9,1],[36,-13],[12,-9],[21,-28],[8,-5],[2,-3],[-2,-3],[-4,-4],[-2,-2],[1,-10],[10,-8],[11,-5],[122,-12],[18,12],[-13,15],[-4,7],[-6,13],[-2,9],[0,9],[4,8],[6,4],[79,9],[79,8],[37,18],[50,-1],[42,14],[73,-4],[12,-7],[7,-19],[-2,-1],[-3,-2],[-2,-1],[7,-11],[9,-4],[111,-15],[31,-16],[-14,-7],[-41,-7],[14,-13],[66,-17],[117,6],[116,5],[117,5],[116,6],[117,5],[81,-20],[82,-19],[81,0],[25,7],[3,4],[6,16],[7,14],[12,11],[134,13],[134,14],[134,13],[7,3],[13,19],[8,6],[74,34],[75,33],[-30,14],[-133,8],[-133,7],[-134,8],[-16,5],[-10,15],[17,9],[134,7],[135,7],[134,7],[135,7],[134,7],[135,8],[43,22],[-17,31],[101,46],[7,9],[8,27],[6,9],[117,25],[116,25],[116,25],[117,25],[116,25],[117,25],[-4,13],[-6,8],[-15,10],[-6,7],[-12,17],[-7,8],[-25,17],[-23,24],[-122,49],[-122,49],[-123,49],[-11,14],[40,18],[-96,31],[-96,31],[-10,13],[18,13],[67,26],[30,24],[20,9],[73,9],[72,9],[20,9],[19,18],[-8,6],[-20,27],[-7,6],[-8,2],[-38,0],[-6,5],[-8,9],[-9,6],[-65,21],[-4,4],[-8,11],[-4,5],[-15,7],[-113,17],[-50,27],[-114,16],[-115,16],[-114,17],[-114,16],[-115,16],[-25,19],[1,6],[1,6],[5,9],[7,11],[9,6],[85,32],[86,31],[136,8],[136,7],[136,8],[136,7],[136,8],[136,7],[137,8],[136,7],[136,8],[136,7],[136,8],[136,7],[136,8],[137,7],[136,8],[136,8],[136,7],[136,8],[12,7],[10,12],[-9,16],[-12,8],[-87,7],[-87,7],[-13,6],[58,4],[-25,9],[-76,5],[6,4],[6,2],[12,1],[-11,15],[-98,5],[-98,5],[-97,6],[80,5],[80,6],[-78,5],[-78,5],[7,0],[12,9],[6,3],[89,1],[-59,11],[16,9],[130,-2],[129,-3],[-24,6],[-75,2],[-76,1],[-28,15],[-8,2],[-92,1],[-92,0],[-13,5],[62,8],[-20,6],[-61,3],[48,9],[-12,6],[-79,0],[-79,0],[-24,8],[14,11],[52,0],[-101,23],[3,6],[5,4],[4,2],[5,0],[-10,4],[-82,0],[-82,0],[19,11],[61,-1],[-46,9],[128,1],[128,1],[-13,9],[-55,14],[-24,15],[-27,8],[-91,-2],[42,8],[-10,22],[-18,9],[-36,5],[22,17],[22,3],[47,-6],[95,22],[-6,13],[-7,11],[-7,8],[-29,13],[-10,8],[-6,12],[106,-8],[107,-8],[106,-9],[107,-8],[2,1],[1,3],[2,7],[1,3],[3,2],[39,6],[32,13],[138,6],[137,6],[-15,7],[-117,4],[-118,5],[-15,10],[88,1],[87,2],[-15,10],[-94,3],[-94,2],[-94,3],[12,5],[99,-2],[99,-2],[-15,5],[-111,5],[19,2],[18,8],[-6,5],[-20,3],[7,4],[23,2],[-97,7],[5,4],[5,1],[9,1],[-28,11],[-25,1],[-8,6],[82,-2],[52,-13],[132,-2],[-10,-10],[-36,0],[14,-7],[45,1],[-9,-8],[14,-5],[114,-2],[114,-2],[-7,16],[32,6],[-14,5],[-14,2],[-29,-3],[-19,-12],[-8,-2],[-6,0],[-50,15],[-91,-1],[10,7],[77,9],[-132,23],[-22,15],[35,-3],[9,2],[17,8],[9,-1],[-16,8],[48,4],[-114,19],[-114,18],[-113,18],[-20,12],[9,10],[-15,11],[-125,14],[-125,15],[-126,14],[-24,14],[-136,38],[-136,38],[-136,38],[38,17],[30,21],[6,2],[11,1],[12,3],[-12,10],[-14,3],[-130,-38],[-14,1],[-14,6],[-27,20],[28,17],[90,19],[-33,1],[37,19],[-2,2],[-4,7],[-2,2],[78,40],[-18,2],[-80,-16],[-9,1],[-32,18],[-10,-1],[7,-13],[0,-7],[-29,-19],[-63,-19],[-8,2],[-6,9],[-25,25],[-64,-33],[-29,11],[-11,7],[-131,16],[-132,15],[-131,16],[-131,15],[-11,8],[-9,13],[-3,3],[-103,49],[-102,49],[-103,49],[-102,49],[-5,8],[-1,16],[6,11],[8,6],[114,22],[14,9],[-5,9],[-5,6],[-12,5],[18,8],[96,5],[96,5],[97,5],[9,7],[-20,19],[45,1],[26,-15],[18,-3],[58,12],[-17,10],[21,6],[41,1],[19,10],[-11,8],[8,13],[34,10],[-8,16],[-7,17],[27,19],[61,-1],[29,10],[-110,7],[-3,1],[-5,5],[-2,5],[-2,5],[-3,6],[-4,4],[-12,5],[-3,3],[-7,10],[-3,4],[-8,2],[-48,1],[-41,-11],[18,-13],[-4,-5],[-24,-15],[-2,-3],[-2,-9],[-2,-3],[-96,-13],[-26,6],[-11,25],[45,6],[32,-7],[-6,8],[-8,19],[-4,4],[-39,-5],[-26,-18],[-13,-4],[-7,2],[-14,11],[-7,4],[-7,-1],[-13,-10],[-7,-3],[-63,-6],[-52,9],[-26,-6],[-89,0],[-7,3],[-20,15],[-2,5],[0,9],[-33,-4],[-15,5],[-7,-1],[-8,-8],[2,-1],[3,-4],[2,-1],[-8,-15],[-16,-11],[-63,-24],[-65,0],[-16,7],[-26,27],[-88,42],[-87,43],[-7,6],[-14,16],[-9,6],[-25,-1],[-20,15],[-16,0],[-9,4],[-9,7],[-8,8],[-5,11],[-4,11],[-5,8],[-51,20],[-1,10],[5,11],[25,38],[6,5],[16,6],[7,6],[8,8],[5,11],[10,28],[6,12],[14,12],[32,16],[11,20],[-46,25],[9,18],[9,12],[22,21],[-11,16],[-31,15],[-10,19],[1,28],[12,23],[29,30],[-9,14],[-4,5],[-16,12],[-6,6],[-3,7],[3,16],[11,11],[12,8],[82,10],[23,-11],[41,-40],[18,-6],[6,-4],[4,-6],[2,-6],[4,-5],[17,-8],[32,-29],[40,-14],[-3,-3],[-4,-2],[-4,0],[-4,0],[14,-12],[48,-29],[17,-4],[4,2],[7,7],[14,-6],[8,3],[1,6],[0,6],[1,5],[20,0],[99,35],[-13,7],[-51,8],[-11,6],[-21,20],[-6,2],[14,13],[36,5],[18,27],[22,4],[26,16],[26,7],[127,4],[47,-13],[32,-19],[22,-28],[7,-4],[33,1],[8,-2],[4,-1],[2,4],[0,8],[0,8],[5,5],[110,15],[15,-5],[6,-6],[12,-15],[7,-4],[96,1],[58,-14],[7,-5],[13,-14],[7,-3],[78,-12],[79,-12],[60,-50],[-17,-25],[-22,-11],[-124,-4],[-11,-6],[10,-11],[12,-5],[86,-1],[85,-1],[47,-16],[23,0],[17,-4],[5,1],[12,6],[6,1],[7,-1],[5,-3],[10,-8],[6,-2],[49,-7],[-1,11],[-3,10],[-7,16],[9,8],[29,11],[-7,12],[10,27],[-5,13],[18,9],[19,1],[37,-13],[9,-5],[3,-4],[12,-21],[4,-5],[6,-4],[10,-3],[20,4],[132,-16],[39,-21],[-12,-14],[-7,-5],[-7,-2],[13,-13],[116,-30],[25,-19],[127,-53],[8,-5],[14,-17],[16,-11],[12,-17],[7,-5],[42,-3],[13,-8],[13,-11],[8,-3],[33,-3],[67,11],[31,18],[72,9],[-5,2],[-11,15],[-6,3],[-16,2],[-5,4],[-10,9],[-4,4],[-16,8],[-5,5],[-18,12],[-62,0],[3,2],[4,2],[3,0],[3,-1],[-1,3],[-4,8],[39,10],[41,-1],[75,-29],[75,-29],[20,0],[59,19],[-36,54],[6,3],[-3,2],[-4,6],[-2,3],[17,5],[53,-4],[76,19],[75,19],[40,-2],[22,5],[10,17],[-117,24],[-117,25],[-117,24],[-5,3],[-4,7],[-2,16],[3,11],[6,7],[7,4],[56,13],[-47,4],[4,9],[12,16],[13,29],[4,7],[11,8],[12,4],[71,-2],[93,-46],[92,-46],[22,-28],[-3,-35],[22,-23],[11,-8],[11,3],[-20,26],[-6,11],[8,3],[7,-4],[15,-16],[8,-1],[24,19],[28,7],[26,15],[9,2],[9,-1],[-9,16],[-3,11],[3,5],[80,14],[24,-11],[117,-109],[20,-33],[6,-5],[6,0],[12,2],[79,-11],[26,11],[-10,2],[-5,3],[-4,7],[60,1],[80,-28],[10,1],[9,10],[-2,2],[-4,4],[-2,1],[3,4],[4,3],[3,2],[4,0],[-42,17],[-3,3],[0,4],[1,4],[-1,3],[-27,25],[-19,10],[-61,3],[5,2],[9,7],[5,1],[21,-1],[-6,6],[-6,3],[-13,2],[2,2],[2,5],[2,2],[-17,20],[-7,15],[3,13],[10,4],[9,-4],[10,-7],[9,-4],[30,5],[40,-5],[3,1],[1,2],[3,5],[2,2],[2,0],[27,-7],[51,9],[-8,6],[-92,46],[-92,46],[-10,2],[-21,-2],[-32,4],[-41,17],[-20,16],[18,8],[108,-19],[109,-19],[2,-3],[1,-8],[1,-3],[4,-1],[45,13],[10,-1],[-5,11],[-9,7],[-58,27],[7,8],[-1,13],[-5,13],[-7,5],[-61,-1],[-20,6],[-9,7],[-9,10],[-5,14],[6,16],[8,7],[10,1],[19,-7],[20,0],[59,17],[4,2],[7,9],[3,1],[21,0],[-17,16],[-20,8],[-80,9],[-80,8],[-5,3],[-3,3],[-13,22],[-35,19],[-9,2],[-20,0],[-10,5],[-5,15],[10,14],[6,5],[6,2],[-16,6],[-47,9],[-129,59],[-133,-5],[-133,-4],[-21,-9],[-22,-1],[-72,-24],[-110,15],[-110,15],[-110,15],[-13,8],[-7,11],[1,12],[6,13],[8,10],[15,14],[16,8],[18,5],[125,-5],[44,21],[93,22],[-30,12],[-12,10],[0,18],[12,16],[16,10],[46,16],[63,2],[96,-29],[95,-28],[96,-29],[-4,-3],[-3,-2],[-4,-1],[-4,1],[14,-10],[59,-25],[54,-8],[45,-28],[8,3],[6,9],[8,6],[7,2],[8,-7],[13,-22],[7,-9],[40,-20],[8,2],[14,7],[46,-4],[20,-16],[60,-13],[101,18],[-8,15],[-27,33],[-7,14],[-4,5],[-5,4],[-103,33],[-82,51],[-82,51],[8,14],[9,8],[20,7],[-1,3],[-1,8],[-2,3],[25,11],[-1,4],[-2,10],[-1,4],[26,29],[72,20],[107,-7],[107,-8],[-9,8],[8,7],[35,4],[46,21],[84,-2],[56,18],[19,-1],[14,-5],[13,1],[5,2],[8,8],[4,0],[-12,33],[-2,9],[3,9],[4,3],[60,10],[-7,13],[-14,5],[-42,3],[-31,11],[-13,11],[14,6],[60,0],[97,22],[97,23],[99,-7],[99,-7],[7,2],[4,3],[3,4],[3,4],[5,1],[12,-2],[3,1],[2,2],[3,3],[4,7],[-6,9],[-4,9],[-8,22],[14,8],[17,4],[93,-17],[28,-21],[33,-5],[14,-10],[35,-62],[12,-17],[5,-9],[3,-15],[4,-7],[16,-14],[10,-18],[8,-4],[27,1],[4,1],[5,6],[2,6],[3,3],[21,-7],[108,-7],[5,-3],[10,-15],[5,-3],[5,-2],[49,-3],[-36,37],[7,2],[19,-3],[-43,37],[-111,50],[-17,19],[-7,24],[7,15],[19,5],[84,-11],[17,-9],[13,-3],[76,29],[75,29],[17,14],[5,10],[-6,10],[8,12],[9,9],[86,59],[9,3],[14,0],[3,1],[5,4],[18,5],[-1,13],[5,12],[7,9],[6,5],[12,3],[60,0],[41,14],[47,-10],[105,7],[105,7],[104,7],[16,6],[17,15],[6,4],[6,2],[74,-17],[106,-54],[6,1],[5,6],[4,8],[6,5],[7,1],[21,-7],[79,-6],[80,-7],[-5,12],[-5,7],[-13,7],[6,4],[20,1],[-11,11],[-70,20],[-70,21],[-24,15],[-12,2],[3,1],[11,9],[20,7],[4,3],[2,7],[0,9],[-1,10],[-5,19],[-1,11],[0,7],[1,4],[1,5],[-1,15],[1,7],[4,14],[9,19],[11,7],[64,-5],[41,11],[19,13],[35,9],[28,1],[52,-14],[17,-13],[5,-2],[39,0],[4,1],[3,3],[3,5],[3,4],[6,8],[-3,9],[-12,12],[19,22],[38,36],[21,9],[22,3],[114,-25],[115,-24],[8,-9],[-4,-11],[-6,-10],[-13,-14],[-4,-11],[5,-12],[8,-10],[7,-5],[34,-12],[5,-6],[-1,-10],[-5,-11],[-6,-7],[17,-7],[32,9],[18,1],[24,-16],[8,-2],[36,0],[-4,-2],[-2,-5],[-1,-6],[2,-8],[3,-2],[20,-3],[76,28],[76,27],[33,-3],[113,43],[9,0],[6,-5],[6,-10],[8,-6],[15,-9],[15,-4],[135,37],[88,-11],[57,-37],[5,-1],[75,9],[75,8],[11,-7],[6,-1],[38,9],[13,-5],[8,-7],[2,-2],[106,-22],[105,-22],[97,21],[97,22],[3,2],[7,8],[3,2],[12,-4],[132,3],[17,5],[32,24],[17,6],[130,13],[3,2],[6,10],[4,2],[15,-1],[15,-4],[3,1],[8,9],[4,3],[15,0],[31,-9],[77,7],[8,3],[15,11],[7,2],[33,-6],[52,8],[17,-3],[22,-13],[34,-10],[23,-13],[133,-11],[16,8],[9,0],[18,-3],[7,0],[31,15],[15,12],[8,1],[112,-3],[111,-3],[23,-10],[8,-2],[97,13],[11,-4],[4,0],[4,1],[8,6],[4,1],[16,-3],[30,-21],[34,-35],[7,-3],[81,9],[82,9],[34,15],[35,0],[-2,-11],[15,-8],[14,-5],[30,0],[49,18],[31,-6],[75,14],[8,-1],[25,-13],[8,0],[22,12],[7,1],[55,-12],[25,5],[23,-11],[8,-1],[8,0],[2,3],[3,10],[3,4],[8,4],[4,0],[18,-5],[45,2],[4,2],[5,9],[2,1],[50,7],[-4,-6],[-4,-4],[-5,-3],[-5,-1],[16,-5],[16,0],[16,7],[15,12],[6,5],[8,0],[7,-4],[11,-14],[9,-1],[32,5],[31,15],[79,16],[78,16],[31,-10],[40,-3],[98,23],[34,-9],[6,2],[5,5],[12,14],[5,4],[52,11],[22,-5],[20,6],[20,-4],[12,0],[52,23],[14,11],[4,14],[-9,7],[-136,4],[19,37],[26,21],[118,27],[119,28],[24,17],[12,12],[6,3],[7,-2],[7,-6],[20,-27],[2,-12],[-12,-15],[-26,-22],[18,-12],[6,0],[16,5],[7,-2],[5,-10],[-25,-22],[10,-24],[17,-5],[34,9],[16,-4],[32,-15],[41,-7],[55,7],[125,-14],[48,24],[16,4],[46,-5],[24,15],[7,-1],[9,-5],[29,4],[-10,11],[-3,7],[-1,12],[1,10],[3,7],[4,4],[5,3],[20,9],[21,4],[-4,-8],[-2,-7],[0,-7],[3,-8],[8,-12],[26,-27],[19,-12],[21,-6],[65,12],[49,-2],[60,19],[41,1],[10,6],[-4,4],[-5,7],[-3,9],[-2,9],[0,14],[3,6],[4,2],[6,0],[-3,4],[-3,2],[-7,3],[-4,3],[-5,10],[-3,2],[-10,5],[-7,7],[-21,40],[-2,7],[-4,23],[-9,19],[-1,13],[5,12],[7,11],[-11,11],[28,28],[31,18],[-9,13],[36,18],[5,15],[17,7],[64,4],[15,7],[21,16],[46,11],[8,-2],[22,-15],[42,-14],[-8,-20],[-9,-11],[-76,-54],[12,-12],[15,1],[82,32],[78,-1],[8,-2],[6,-4],[34,-38],[4,-12],[-6,-4],[0,-10],[3,-11],[4,-8],[-128,-37],[-18,-11],[8,-5],[31,-7],[16,2],[4,-2],[9,-9],[5,-3],[-29,-22],[-5,-5],[-1,-8],[2,-22],[2,-4],[4,-3],[9,-4],[-15,-24],[20,-10],[20,2],[41,20],[79,18],[-10,-29],[-13,-18],[-71,-43],[-16,-16],[-7,-4],[-114,-24],[-18,-16],[-6,-3],[-50,-13],[-9,-8],[15,-9],[10,-3],[32,0],[50,20],[16,1],[15,-5],[6,-6],[3,-8],[0,-10],[-4,-12],[-5,-6],[-17,-14],[-4,-11],[-5,-34],[-4,-15],[-14,-16],[-34,-14],[-36,-41],[-2,-9],[4,-14],[7,-6],[37,-9],[7,1],[32,17],[21,1],[7,6],[21,29],[7,7],[8,3],[22,-3],[43,10],[16,0],[73,22],[73,23],[14,-2],[39,-14],[14,1],[5,5],[4,9],[3,9],[2,4],[15,4],[90,-10],[5,5],[4,10],[7,3],[14,3],[12,8],[6,3],[74,2],[74,2],[-5,12],[1,11],[4,9],[7,5],[-9,10],[-33,-8],[-12,9],[-12,22],[-14,16],[-31,23],[1,9],[-1,9],[-2,10],[-1,11],[2,10],[5,8],[11,11],[12,7],[93,-6],[18,9],[26,6],[-9,10],[-33,2],[-61,19],[-12,8],[-12,11],[-29,45],[-5,20],[8,17],[-2,1],[-4,4],[-2,2],[5,7],[7,3],[13,1],[46,28],[16,2],[39,-8],[14,2],[7,-1],[8,-4],[32,-4],[22,-14],[30,-11],[2,-3],[6,-8],[3,-3],[17,-4],[16,-7],[7,-8],[5,-10],[4,-7],[9,-2],[9,2],[6,2],[6,10],[9,30],[5,7],[32,-2],[30,-16],[55,-60],[-42,-13],[-13,-9],[5,-5],[5,-5],[11,-7],[6,-1],[34,8],[10,-3],[17,-22],[2,-5],[0,-3],[-3,-6],[0,-2],[1,-4],[5,-12],[3,-15],[-4,-17],[-6,-14],[-7,-5],[-16,2],[-6,-3],[-21,-26],[-1,-7],[8,-9],[7,-6],[5,-8],[2,-10],[-1,-18],[-5,-9],[-9,-8],[-49,-24],[-34,-6],[-15,3],[-7,-1],[-6,-6],[-8,-11],[-35,-44],[-23,-14],[-16,-15],[-7,-5],[-67,-18],[-12,-8],[-23,-24],[-40,-20],[-14,-13],[-6,-15],[23,1],[7,-3],[-8,-9],[-27,-14],[16,-2],[22,3],[5,-3],[11,-10],[16,-10],[17,-4],[8,1],[24,17],[16,5],[95,3],[95,2],[8,-4],[15,-13],[7,-3],[46,-7],[50,11],[26,-7],[9,1],[8,4],[6,6],[28,34],[7,6],[8,-1],[8,-3],[106,-15],[107,-16],[106,-15],[106,-15],[11,-6],[10,-10],[45,-24],[133,6],[7,-3],[13,-11],[7,-2],[27,-2],[8,4],[4,4],[6,10],[4,3],[58,-1],[25,-12],[28,-2],[16,-22],[18,-5],[18,4],[13,10],[6,20],[3,3],[101,19],[102,20],[4,4],[8,10],[3,4],[73,12],[72,11],[6,3],[4,6],[2,3],[-1,3],[0,2],[-1,4],[2,13],[9,7],[11,3],[53,0],[5,-2],[2,-2],[3,-6],[5,-6],[6,-4],[35,-11],[23,-1],[60,22],[65,2],[47,-20],[33,1],[72,20],[71,20],[98,-13],[97,-13],[44,12],[27,-13],[47,5],[26,-4],[61,14],[20,13],[7,0],[29,-10],[16,-11],[10,-16],[3,-17],[-1,-13],[-3,-11],[-7,-13],[-9,-11],[-2,-4],[-2,-6],[-3,-13],[-2,-6],[34,-26],[107,-14],[-3,-13],[1,-11],[5,-9],[7,-2],[24,7],[24,-1],[86,18],[23,15],[31,9],[31,0],[28,-6],[24,-14],[7,-1],[4,2],[13,9],[3,1],[7,-1],[3,2],[8,5],[40,15],[111,16],[116,-21],[3,1],[12,10],[4,2],[48,-3],[36,7],[5,4],[8,13],[5,5],[4,2],[23,6],[22,14],[-8,11],[-13,1],[-26,-6],[-48,1],[86,54],[-32,5],[-97,-30],[-8,1],[-31,16],[-95,20],[8,11],[5,10],[2,14],[-1,27],[2,20],[0,7],[-3,6],[-14,15],[-15,8],[-45,-20],[-8,1],[-31,12],[-40,2],[-61,-13],[-66,10],[-50,21],[-4,4],[-2,6],[2,10],[2,1],[46,9],[16,-1],[28,-11],[16,1],[18,8],[7,8],[7,15],[6,7],[25,15],[-12,15],[-13,7],[-28,10],[1,3],[9,11],[7,8],[3,5],[6,16],[-6,3],[-21,4],[8,12],[9,5],[49,15],[17,23],[4,1],[-4,6],[-5,3],[-4,-1],[-6,-2],[-3,1],[-9,8],[-4,2],[-22,-2],[-7,2],[-4,3],[-13,14],[-5,3],[-5,0],[-32,-9],[-24,5],[-19,-1],[-6,3],[-4,1],[-8,-4],[-4,0],[-17,1],[-17,-2],[-91,-39],[-130,28],[-18,16],[12,12],[6,8],[5,10],[-7,2],[-6,5],[-2,10],[1,13],[5,11],[6,7],[13,10],[10,12],[2,6],[2,7],[-1,6],[-3,1],[-16,-5],[-17,1],[5,7],[8,6],[5,8],[2,11],[-3,16],[-5,14],[-6,9],[-8,3],[2,15],[-4,8],[-13,8],[-8,8],[-5,9],[-4,13],[-2,17],[-9,14],[-20,3],[-35,-5],[-32,3],[-45,24],[-46,-3],[-46,18],[-94,-3],[-32,9],[-14,12],[-7,26],[11,24],[17,22],[9,19],[-4,18],[-12,10],[-32,9],[-4,2],[-3,4],[0,12],[2,11],[-1,9],[-4,7],[13,12],[17,2],[136,-15],[136,-15],[31,-16],[115,-2],[7,-2],[24,-15],[3,-3],[1,-5],[0,-8],[0,-9],[3,-6],[4,-4],[20,-9],[74,-4],[73,-3],[4,2],[2,4],[4,11],[3,3],[3,1],[12,-3],[4,1],[5,8],[4,4],[8,2],[82,-2],[82,-2],[55,18],[23,-3],[8,4],[16,11],[8,4],[-8,8],[-24,16],[25,10],[79,-16],[110,8],[-10,16],[-4,6],[-7,4],[-83,12],[-82,12],[-28,14],[10,14],[13,6],[27,2],[-54,23],[-10,0],[-10,-4],[-8,-7],[-4,-1],[-3,3],[-1,8],[5,20],[0,10],[-2,9],[-4,6],[-5,4],[-5,1],[-125,7],[-125,7],[-125,7],[-26,8],[-134,-12],[-45,19],[-103,-8],[-104,-8],[-75,13],[-4,3],[-2,4],[-2,5],[-2,5],[-22,25],[-16,8],[-20,23],[-8,5],[-28,4],[-5,2],[-6,5],[-6,7],[-2,9],[2,9],[6,9],[13,14],[-3,6],[-3,5],[-4,4],[-3,3],[1,6],[2,7],[4,11],[-14,17],[-6,10],[-6,13],[-8,31],[-5,14],[-8,8],[27,44],[10,11],[71,29],[99,-9],[99,-9],[16,-10],[49,-10],[-6,-6],[-9,-7],[-5,-9],[5,-13],[-3,-6],[-3,-5],[-4,-4],[-3,-2],[10,-12],[-8,-8],[-20,-5],[-9,-4],[-4,-5],[-4,-6],[-3,-4],[-5,-3],[-21,-1],[-4,-1],[-8,-9],[-4,-3],[-20,0],[-45,-21],[11,-4],[84,8],[83,8],[26,-5],[-4,-32],[10,-9],[79,13],[78,12],[24,13],[76,5],[75,4],[30,-20],[78,-33],[17,-2],[15,5],[34,23],[8,2],[25,-3],[47,17],[47,-13],[137,-1],[136,-2],[137,-1],[136,-1],[-24,-39],[-9,-11],[-40,-35],[14,-12],[16,-6],[15,-1],[16,4],[44,34],[42,8],[9,-1],[23,-14],[8,-1],[6,2],[9,-1],[8,-3],[12,-16],[7,-3],[46,-4],[8,-5],[14,-17],[57,-22],[33,-5],[31,-14],[88,-10],[88,-9],[3,4],[3,7],[4,17],[3,5],[13,12],[17,6],[49,0],[32,13],[16,2],[17,-5],[2,1],[7,7],[3,2],[11,1],[53,-21],[118,6],[13,-7],[40,-37],[14,-7],[57,5],[54,20],[39,33],[6,4],[7,2],[15,0],[11,-5],[6,-2],[5,5],[2,4],[1,11],[2,5],[3,3],[5,1],[76,-5],[76,-5],[15,8],[14,4],[15,10],[18,7],[3,0],[5,-3],[3,-5],[1,-6],[4,-7],[7,-3],[49,11],[82,-6],[81,-5],[6,-4],[2,-7],[1,-7],[1,-6],[17,-16],[4,-2],[50,6],[76,-17],[76,-16],[3,-2],[2,-4],[1,-10],[1,-4],[3,-1],[89,16],[30,19],[8,1],[17,-5],[7,2],[49,34],[18,18],[24,25],[6,4],[7,2],[25,-2],[35,10],[12,-1],[28,-9],[15,1],[58,22],[7,0],[19,-10],[45,9],[15,-3],[-9,14],[-6,15],[1,15],[10,12],[43,34],[3,4],[4,7],[3,7],[-3,4],[-12,5],[-4,7],[1,12],[3,33],[2,10],[-3,27],[-17,20],[-52,31],[-18,20],[21,5],[104,-15],[104,-15],[104,-16],[14,-11],[10,-18],[2,-13],[1,-13],[1,-12],[4,-10],[-24,-20],[-25,-14],[-22,-5],[-12,-6],[-7,-10],[-2,-12],[2,-8],[11,-12],[-7,-18],[-10,-11],[-72,-48],[3,-4],[26,-13],[12,-10],[9,-13],[15,-33],[10,-12],[10,-4],[11,3],[29,26],[9,5],[12,2],[10,0],[10,-3],[4,-3],[8,-11],[4,-3],[38,-6],[10,4],[17,15],[49,16],[40,-4],[9,3],[29,16],[5,0],[5,-3],[2,-6],[-2,-11],[-4,-6],[-4,-4],[-9,-4],[10,-18],[11,-7],[38,-5],[13,-6],[6,-13],[-6,-26],[12,-8],[14,-6],[26,-4],[78,7],[20,13],[37,7],[7,6],[6,9],[8,22],[5,7],[6,3],[8,0],[7,-3],[6,-6],[6,-4],[7,2],[42,18],[24,26],[27,15],[29,5],[29,-5],[27,-14],[-17,-7],[-4,-6],[-3,-11],[1,-8],[3,-6],[12,-7],[4,-4],[3,-7],[3,-15],[3,-8],[5,-5],[12,-6],[-11,-11],[3,-8],[4,-2],[5,0],[4,-3],[7,-7],[5,-3],[6,2],[7,6],[8,3],[7,-3],[31,-26],[17,-9],[18,-18],[14,-3],[12,-7],[25,-6],[19,-11],[107,-22],[80,7],[12,4],[6,1],[20,-11],[6,1],[13,9],[7,3],[5,-2],[12,-8],[6,-2],[31,3],[0,-31],[-2,-13],[-7,-4],[-7,0],[-7,-2],[-6,-5],[-7,-8],[4,-7],[11,-4],[6,-5],[-2,-2],[-1,-7],[-1,-8],[1,-6],[2,-5],[4,-1],[29,10],[7,-1],[3,-4],[4,-10],[3,0],[15,10],[6,2],[3,-1],[4,-3],[3,1],[3,6],[5,14],[11,10],[15,-1],[28,-11],[101,-3],[61,-20],[11,-15],[7,-1],[13,2],[70,-34],[21,-20],[18,-12],[20,-6],[20,2],[18,10],[24,26],[6,4],[5,1],[24,-6],[22,0],[132,58],[13,15],[11,23],[6,26],[4,10],[7,6],[-8,15],[-11,8],[-23,11],[-10,9],[-9,12],[-6,13],[-2,13],[0,14],[6,34],[1,14],[-4,10],[-9,7],[12,30],[22,15],[23,5],[94,-14],[10,-7],[4,-6],[6,-13],[3,-6],[5,-4],[28,-6],[60,-47],[34,-5],[11,3],[10,9],[-8,1],[-28,22],[-7,10],[-2,7],[0,6],[0,7],[0,7],[-2,8],[-15,47],[-5,12],[-7,8],[-12,8],[-4,4],[-9,22],[-3,4],[-17,7],[-7,8],[-2,13],[0,10],[-2,7],[0,6],[2,9],[3,7],[3,5],[4,5],[4,3],[32,13],[32,2],[101,-27],[101,-26],[6,-6],[13,-18],[97,-69],[25,-30],[14,-11],[27,-13],[16,-1],[5,-2],[10,-11],[28,-16],[10,-16],[1,-29],[-6,-19],[-8,-13],[-9,-10],[-8,-14],[-2,-7],[0,-5],[1,-3],[0,-5],[-4,-24],[1,-10],[6,-6],[18,-1],[55,17],[15,13],[8,2],[83,1],[63,19],[34,1],[89,32],[9,1],[16,-4],[23,-18],[8,-3],[24,-3],[8,2],[15,10],[14,13],[9,5],[55,2],[9,-3],[19,-15],[17,-20],[6,-14],[-2,-14],[-7,-12],[-59,-46],[-4,-5],[-7,-14],[-4,-5],[-69,-61],[11,-13],[23,-22],[11,-5],[9,1],[8,4],[25,23],[42,25],[49,2],[7,-2],[12,-12],[7,-3],[57,-5],[8,2],[3,4],[7,12],[4,5],[4,1],[68,19],[4,3],[3,5],[5,4],[7,2],[23,-2],[30,11],[8,1],[24,-3],[9,1],[7,4],[49,43],[13,6],[12,2],[100,-12],[35,-16],[12,-12],[10,-15],[11,-12],[14,-1],[28,11],[6,6],[10,13],[6,6],[6,2],[19,-1],[18,7],[6,-2],[42,-30],[22,-5],[21,9],[24,25],[17,5],[9,6],[9,9],[14,26],[8,4],[9,-6],[9,-11],[-2,-10],[3,-7],[5,-3],[4,3],[12,27],[5,7],[13,10],[12,2],[27,-4],[22,6],[6,6],[14,38],[5,9],[6,7],[6,5],[7,3],[67,0],[52,-15],[36,5],[24,-5],[12,0],[8,9],[-17,11],[49,28],[66,9],[39,-3],[31,16],[58,-6],[33,4],[100,52],[50,6],[104,-11],[15,4],[8,0],[22,-13],[8,-3],[7,1],[104,45],[81,11],[80,11],[117,46],[21,-5],[17,2],[31,12],[7,5],[6,8],[7,5],[16,2],[20,23],[73,26],[73,26],[8,6],[21,28],[13,10],[7,1],[7,0],[7,-5],[7,-7],[7,-4],[8,3],[7,7],[7,5],[14,5],[7,6],[-2,12],[-3,14],[-2,13],[2,2],[6,14],[1,3],[3,4],[11,9],[21,30],[31,25],[12,17],[0,3],[1,20],[-1,21],[1,11],[3,10],[5,13],[11,19],[3,4],[12,6],[3,3],[9,16],[15,11],[6,7],[1,25],[4,5],[5,5],[4,8],[0,9],[-1,8],[0,7],[3,8],[5,6],[25,25],[6,8],[5,11],[6,15],[1,13],[-4,13],[-5,13],[-2,13],[2,24],[-1,6],[-3,9],[-2,3],[-3,1],[-4,3],[-4,2],[-2,-1],[-2,1],[-2,8],[-1,10],[-1,4],[-6,6],[-7,4],[-15,3],[-7,5],[-52,65],[6,4],[16,4],[-11,19],[-78,60],[-16,20],[-6,27],[-6,20],[-15,20],[-12,24],[1,33],[5,14],[2,6],[7,11],[9,17],[10,9],[2,5],[3,9],[2,5],[3,4],[5,2],[-4,10],[-8,5],[-16,4],[6,5],[18,5],[-2,13],[-11,22],[-2,12],[4,12],[9,7],[18,5],[-5,9],[-2,11],[2,13],[2,13],[-28,23],[-3,7],[-8,19],[-5,8],[-12,9],[-5,7],[-3,8],[-5,20],[-3,9],[-5,11],[-3,7],[-1,8],[3,8],[4,8],[3,9],[-4,19],[1,8],[1,9],[0,12],[-2,8],[-21,43],[-10,13],[-15,12],[-2,6],[-8,34],[-5,31],[-5,25],[-8,22],[-9,14],[-2,1],[-7,0],[-3,2],[-5,9],[-2,4],[-5,3],[-34,13],[-5,5],[-8,21],[-4,8],[-6,8],[-4,7],[-5,17],[-5,8],[-6,5],[-23,8],[-6,6],[-6,7],[-4,7],[0,12],[1,16],[2,14],[3,7],[-4,11],[-3,10],[0,10],[5,12],[5,5],[6,3],[12,3],[2,6],[1,13],[-4,44],[0,7],[8,26],[2,10],[-2,10],[-4,9],[-5,6],[-24,12],[-5,6],[-2,12],[-2,5],[-16,8],[-4,8],[-5,20],[-5,9],[-5,4],[-11,7],[-14,14],[-4,5],[-4,11],[-3,5],[-15,8],[3,12],[2,5],[42,13],[52,-1],[28,-12],[9,-2],[7,2],[4,2],[1,4],[2,17],[-1,9],[-2,5],[-9,11],[-2,11],[5,9],[10,4],[10,-2],[17,-17],[9,-3],[10,1],[4,-2],[5,-5],[4,-2],[16,3],[2,-23],[14,-5],[27,7],[13,-4],[78,-38],[10,-12],[9,-19],[6,-8],[5,-4],[8,2],[10,13],[13,8],[7,6],[2,8],[-5,8],[-7,5],[-4,7],[-2,9],[4,12],[3,2],[3,1],[3,1],[1,5],[3,29],[3,13],[4,9],[6,6],[6,2],[56,-2],[32,18],[5,7],[5,11],[4,16],[-8,7],[-15,18],[-8,6],[6,8],[6,5],[22,7],[14,10],[6,1],[-8,21],[-15,0],[-16,-7],[-12,-2],[7,12],[8,10],[9,6],[9,3],[-5,15],[-10,5],[-109,12],[-22,16],[-29,30],[-5,7],[-2,8],[1,10],[4,6],[22,12],[91,5],[5,-1],[6,1],[6,6],[10,16],[-5,8],[-2,9],[-1,9],[-3,10],[-2,9],[1,26],[-3,8],[-25,20],[-13,14],[-7,19],[3,21],[14,8],[35,-1],[6,3],[4,7],[3,21],[5,4],[14,0],[-15,11],[-8,8],[-1,11],[5,6],[8,0],[14,-6],[-12,10],[-43,8],[-18,-2],[-8,6],[-2,8],[1,9],[3,8],[5,4],[6,2],[95,-21],[9,7],[3,5],[5,11],[4,4],[18,13],[-14,29],[-4,4],[-18,1],[-12,-5],[-12,-9],[-6,-7],[-5,-3],[-18,4],[-1,13],[-9,15],[-36,34],[-8,17],[-6,4],[-14,5],[5,6],[4,1],[11,-4],[6,-1],[5,4],[10,14],[-25,9],[-8,5],[-2,7],[0,6],[-1,4],[-14,5],[-7,7],[70,25],[40,5],[6,2],[3,5],[2,8],[0,13],[-16,24],[9,9],[9,3],[8,5],[8,15],[-10,-2],[-30,6],[-47,-7],[14,20],[4,3],[66,12],[11,-5],[-11,20],[-38,-6],[-14,8],[12,19],[29,33],[14,10],[17,1],[32,-12],[16,-1],[-3,14],[1,6],[2,4],[4,10],[3,14],[-2,8],[-5,4],[-7,-1],[-4,-4],[-7,-12],[-4,-4],[-5,-1],[-28,10],[-19,16],[-10,4],[-7,0],[-31,15],[-5,0],[-134,-48],[-33,-1],[-5,2],[12,15],[6,5],[7,4],[-9,9],[-10,5],[-9,2],[-11,-2],[35,74],[14,18],[-17,10],[-5,11],[2,17],[7,14],[7,12],[17,18],[-11,5],[-24,-6],[-10,8],[4,7],[14,16],[10,16],[9,19],[1,7],[-2,5],[0,3],[4,4],[2,1],[3,-1],[3,-1],[1,-3],[5,-11],[5,-5],[25,-11],[4,4],[13,21],[3,10],[1,11],[1,18],[2,11],[6,-1],[6,-8],[4,-7],[6,-8],[6,-2],[5,4],[7,6],[-9,17],[-4,10],[1,11],[4,5],[7,3],[8,1],[5,0],[22,-11],[10,-10],[-3,-16],[0,-4],[5,-28],[-1,-9],[-2,-9],[-6,-14],[0,-6],[0,-10],[3,-17],[2,-6],[2,-3],[8,-3],[-14,-21],[-4,-7],[-2,-14],[-3,-7],[-3,-15],[9,-5],[20,0],[17,-16],[8,0],[6,13],[0,5],[0,8],[0,3],[2,7],[8,11],[2,6],[2,9],[0,6],[1,3],[5,-1],[12,-16],[12,-11],[3,-4],[9,-19],[1,-6],[5,-24],[2,-7],[3,-3],[7,-1],[10,6],[3,17],[-1,55],[0,10],[-5,22],[-3,8],[-8,12],[-4,8],[23,17],[-6,4],[-16,17],[-6,3],[-13,1],[-6,3],[4,15],[4,11],[25,45],[3,1],[2,0],[4,2],[6,7],[6,11],[0,13],[-6,9],[-31,20],[5,21],[2,18],[-2,19],[-5,20],[1,17],[10,12],[61,27],[10,1],[46,-5],[4,-3],[2,-3],[2,-11],[2,-4],[2,-1],[8,-1],[5,-3],[4,-4],[7,-12],[5,-6],[3,-2],[10,0],[16,-7],[3,-3],[4,-9],[4,-4],[4,0],[6,4],[4,5],[3,6],[4,4],[10,0],[4,4],[8,14],[-33,25],[-1,5],[4,4],[5,1],[5,-2],[4,1],[4,5],[-1,3],[-8,10],[-1,6],[1,5],[4,11],[5,19],[6,20],[2,7],[-1,9],[7,7],[17,8],[7,6],[-14,12],[-3,1],[-6,-1],[-2,1],[-5,10],[-1,10],[-2,8],[-6,6],[-13,1],[-13,-3],[-12,1],[-12,13],[24,15],[6,2],[5,-1],[5,2],[24,32],[2,9],[-4,11],[-4,7],[-12,12],[26,14],[1,3],[2,11],[2,2],[3,-1],[11,-12],[4,-2],[8,2],[4,-1],[14,-13],[6,-2],[26,0],[37,-15],[14,2],[13,12],[-44,49],[-14,10],[-6,7],[-3,10],[-1,12],[2,12],[4,6],[5,4],[10,4],[58,-3],[3,1],[7,9],[4,3],[23,8],[9,-1],[17,-7],[2,-4],[2,-14],[3,-6],[3,-2],[4,-2],[3,-2],[6,-13],[8,-3],[2,-9],[5,-3],[29,3],[3,2],[9,14],[9,9],[3,6],[2,9],[0,9],[-2,6],[-7,10],[-10,20],[0,4],[-10,0],[-10,2],[-9,8],[-9,15],[6,16],[0,36],[4,9],[9,-1],[17,-15],[47,-27],[5,3],[2,4],[1,20],[-1,4],[-1,5],[-1,4],[1,4],[11,11],[-30,35],[-10,16],[48,-1],[15,-6],[7,-8],[5,-10],[5,-7],[16,3],[16,-8],[8,0],[-6,14],[-15,16],[-6,11],[6,6],[2,2],[-7,14],[-7,11],[-8,7],[-9,2],[40,23],[22,0],[8,-24],[0,-9],[2,-3],[8,-2],[16,-12],[21,-5],[3,1],[1,9],[-3,9],[-8,16],[10,10],[31,4],[-5,12],[-15,5],[-2,14],[-19,-7],[1,3],[1,7],[1,3],[-28,-4],[-39,23],[-8,10],[7,2],[8,6],[8,9],[6,9],[-3,9],[-5,7],[-10,9],[-15,30],[-2,5],[9,-1],[4,0],[3,4],[-1,13],[-7,28],[1,17],[6,12],[17,-2],[7,9],[0,2],[-1,5],[0,3],[1,2],[2,2],[5,4],[7,4],[2,3],[2,5],[3,12],[2,5],[4,4],[13,10],[6,2],[4,-1],[9,-8],[5,-1],[5,1],[4,1],[5,-5],[5,-11],[2,-3],[3,-2],[18,-5],[9,1],[6,2],[2,-1],[8,-7],[13,0],[7,-2],[12,-9],[7,0],[12,12],[8,5],[7,1],[4,-6],[3,-16],[3,-11],[6,-6],[15,2],[12,-12],[6,-2],[7,5],[12,15],[7,4],[-9,24],[7,6],[2,2],[-2,2],[-4,6],[-2,2],[5,7],[-1,5],[-3,3],[-4,1],[-5,0],[-10,-5],[-5,0],[-10,5],[-10,11],[-16,26],[7,10],[30,9],[3,2],[3,5],[3,9],[3,1],[5,-2],[7,-7],[4,-2],[4,1],[3,3],[4,1],[4,-1],[8,-7],[5,-1],[8,6],[13,25],[9,7],[-10,7],[-4,5],[-4,8],[17,12],[15,-6],[40,-50],[3,-2],[6,0],[3,5],[3,7],[4,5],[8,1],[17,-1],[8,3],[-74,59],[6,8],[6,2],[14,0],[6,4],[12,13],[5,0],[-12,17],[-4,10],[-5,17],[1,4],[2,5],[3,3],[3,0],[5,-3],[5,0],[4,2],[5,4],[-3,5],[-3,4],[-4,2],[-3,0],[7,8],[7,4],[7,-1],[8,-4],[-2,-3],[-4,-8],[-2,-3],[15,-21],[7,-5],[0,14],[6,-1],[6,-3],[3,-3],[2,-5],[0,-5],[-2,-3],[-7,-5],[-5,-9],[-2,-13],[-2,-15],[63,-21],[-5,9],[-11,10],[-6,9],[7,2],[6,-1],[13,-6],[-2,9],[-1,9],[0,19],[23,-20],[3,2],[5,8],[3,3],[9,0],[4,3],[4,7],[3,7],[6,17],[-12,15],[6,8],[3,8],[5,6],[7,1],[3,-2],[10,-9],[2,0],[11,6],[-4,6],[-5,22],[-4,10],[4,3],[4,10],[2,2],[6,0],[2,-2],[0,-5],[3,-8],[13,-26],[2,-11],[1,-10],[2,-7],[5,-5],[4,-2],[3,-2],[1,-5],[0,-7],[1,-5],[4,-4],[8,-4],[8,3],[25,28],[-22,18],[-10,14],[0,17],[9,6],[15,-2],[15,-6],[9,-6],[-4,8],[0,12],[1,14],[0,13],[-23,-11],[-9,4],[-7,21],[5,3],[7,10],[4,3],[8,2],[3,2],[4,6],[3,9],[0,6],[2,3],[11,-2],[5,1],[9,6],[-2,-10],[-4,-5],[-10,-5],[2,-8],[3,-1],[5,2],[5,0],[5,-3],[15,-13],[0,16],[7,6],[34,1],[16,4],[-6,3],[-3,6],[-2,10],[-1,13],[5,-1],[2,6],[1,7],[3,6],[4,2],[4,2],[18,-2],[9,2],[7,8],[3,18],[-6,2],[-6,4],[2,12],[3,5],[5,1],[5,1],[-11,31],[25,-6],[8,2],[-1,6],[-3,4],[-2,2],[-3,1],[-3,3],[-5,11],[-3,5],[-29,16],[9,11],[17,5],[10,5],[3,0],[5,-4],[8,-11],[4,-2],[5,2],[9,5],[-2,-12],[8,3],[5,10],[2,14],[-3,16],[56,15],[62,42],[15,-3],[14,4],[8,-1],[49,-26],[4,0],[3,1],[4,3],[1,3],[-1,4],[0,6],[1,5],[4,9],[2,5],[-1,4],[-3,5],[0,4],[1,7],[2,5],[4,3],[3,2],[7,-1],[6,-5],[5,-1],[6,8],[-4,9],[-3,7],[0,8],[3,11],[4,7],[4,2],[5,-1],[4,-5],[4,-10],[-2,-8],[-4,-6],[-2,-7],[2,-11],[4,-4],[16,-1],[14,-7],[15,0],[11,-9],[5,-2],[5,2],[6,4],[6,2],[6,-5],[11,-14],[7,29],[-3,2],[-3,4],[-3,6],[-2,6],[27,23],[1,4],[1,7],[-2,7],[-6,17],[-1,6],[5,9],[7,6],[20,9],[7,1],[6,-1],[6,-4],[13,-13],[7,-4],[5,1],[23,26],[7,3],[8,-2],[7,1],[4,11],[-1,11],[-5,27],[0,13],[5,9],[7,5],[89,26],[89,25],[26,-5],[5,3],[4,8],[1,17],[-4,-1],[-6,1],[-5,5],[-1,9],[4,9],[7,-1],[7,-8],[5,-6],[4,-5],[5,-2],[6,-1],[4,1],[3,4],[5,9],[4,3],[6,1],[3,2],[22,40],[5,5],[18,-1],[85,33],[22,16],[12,4],[23,2],[50,-16],[21,-23]],[[34273,13033],[-9,-3],[-8,1],[-6,7],[-1,10],[3,8],[5,6],[5,4],[6,4],[7,1],[6,-2],[6,-5],[-5,-23],[-2,-4],[-7,-4]],[[34562,13084],[19,-12],[8,-2],[-4,-1],[-4,-4],[-5,-5],[-3,-6],[26,-17],[3,0],[3,3],[3,4],[3,3],[4,2],[63,-10],[9,-2],[11,-8],[9,-14],[3,-22],[-6,-22],[-12,-14],[-18,-9],[-21,-2],[-18,3],[-31,14],[-17,4],[-27,-7],[-12,2],[-46,29],[4,-10],[0,-4],[-1,-6],[-3,-3],[-5,-1],[-4,2],[-4,2],[-3,4],[-3,5],[-3,4],[-4,1],[-4,-1],[-2,-2],[0,-4],[-2,-5],[-2,-5],[-7,-10],[-14,4],[-7,-7],[-7,-13],[-13,-12],[-41,-11],[-13,-6],[-13,-12],[-6,-1],[-10,0],[-16,6],[-2,2],[-3,3],[-2,5],[-3,9],[-2,4],[-4,3],[-5,2],[-4,3],[-4,6],[2,12],[12,10],[22,9],[-13,10],[-2,2],[13,22],[17,17],[35,21],[75,27],[70,0],[25,10],[16,1]],[[34314,13174],[43,-16],[58,0],[16,-8],[3,-24],[-9,-17],[-41,-44],[-16,-11],[-17,3],[-20,11],[-39,33],[-16,18],[-4,11],[5,12],[7,7],[14,9],[7,7],[2,3],[1,2],[1,2],[3,2],[2,0]],[[33161,13221],[20,-17],[14,-23],[-8,-10],[-11,2],[-8,11],[-2,15],[-6,5],[-6,2],[-6,0],[-5,-2],[-1,-3],[-3,-11],[-1,-2],[1,-4],[0,-2],[1,-2],[6,-6],[32,-18],[-7,-6],[-10,0],[-18,8],[-6,5],[-6,8],[-4,10],[-1,14],[15,27],[20,-1]],[[32595,13110],[-8,-3],[-7,0],[7,7],[1,3],[1,4],[1,6],[1,3],[3,3],[7,4],[3,5],[2,9],[3,9],[4,8],[4,7],[8,8],[2,3],[1,4],[0,9],[0,4],[5,9],[9,5],[27,8],[3,2],[5,5],[3,2],[12,0],[-14,-34],[-20,-31],[-48,-48],[-15,-11]],[[32942,13265],[-16,-1],[-9,4],[-3,3],[-1,2],[-2,2],[-1,3],[0,4],[0,6],[1,6],[1,5],[2,4],[6,8],[7,5],[15,4],[58,1],[-8,-3],[-5,-5],[-3,-7],[1,-9],[-43,-32]],[[33316,13426],[-5,-7],[2,-10],[7,-21],[6,-7],[10,-2],[52,11],[-90,-62],[-6,-6],[-27,-15],[-13,-3],[-6,9],[-2,1],[-2,0],[-1,1],[-2,1],[11,27],[0,6],[-9,2],[-10,-7],[-9,-9],[-9,-7],[6,23],[3,6],[2,2],[5,2],[2,2],[9,13],[3,4],[-15,11],[-62,-18],[-22,14],[-8,2],[-10,-5],[-4,-7],[-1,-8],[-2,-6],[-11,-9],[-68,-6],[-15,3],[-14,9],[6,14],[-1,12],[-6,9],[-9,6],[12,5],[37,-14],[16,-2],[16,7],[17,10],[5,4],[3,4],[1,5],[-1,6],[-4,5],[-3,4],[-2,2],[8,17],[4,10],[0,11],[2,0],[24,-19],[1,-1],[1,-2],[0,-3],[0,-4],[0,-3],[-1,0],[9,-16],[9,-9],[10,-5],[32,-2],[10,4],[6,12],[14,-2],[14,2],[15,5],[13,9],[11,10],[5,6],[4,8],[5,14],[3,1],[7,-9],[7,-11],[2,-2],[10,-9],[7,-8],[-14,-15]],[[33409,13454],[4,-1],[3,1],[16,13],[9,1],[9,-3],[7,-9],[-3,-4],[-7,-2],[-3,-2],[0,-12],[-5,-6],[-14,-3],[-16,3],[-5,0],[-2,0],[-1,0],[-1,1],[-2,1],[-1,4],[-2,7],[-2,4],[-4,4],[-37,12],[-18,21],[18,8],[58,-7],[-12,-13],[-3,-4],[2,-4],[3,-3],[2,-3],[7,-4]],[[33505,13532],[9,-20],[-1,-2],[-5,-16],[-2,-3],[-1,-2],[-2,-1],[-2,-1],[-15,0],[-14,-5],[-3,0],[-13,7],[-5,1],[-5,8],[-9,13],[3,4],[1,4],[1,4],[2,3],[-3,-1],[-15,-3],[-2,1],[-2,1],[-2,2],[-2,2],[-1,2],[0,2],[0,2],[1,2],[1,3],[3,1],[21,7],[46,-5],[16,-10]],[[33615,13595],[3,-2],[13,4],[8,0],[7,-5],[7,-9],[4,-14],[-55,-23],[-11,0],[-5,1],[-4,3],[-11,11],[-4,2],[-2,2],[-11,11],[-4,3],[8,12],[9,7],[35,16],[8,0],[7,-4],[-1,-6],[-1,-4],[0,-3],[0,-2]],[[33919,13789],[15,-2],[36,15],[10,2],[4,-3],[2,-5],[1,-7],[-1,-6],[-2,-6],[-4,-4],[-3,-1],[-1,-3],[2,-5],[5,-9],[6,-8],[7,-6],[6,-4],[-48,11],[-7,-1],[-6,-3],[-10,-9],[-20,-22],[-10,-7],[-9,-1],[-42,14],[-5,-1],[-3,-3],[-1,-4],[0,-5],[0,-8],[-2,-5],[-1,-3],[-1,-4],[1,-5],[3,-5],[13,-7],[-4,-10],[-7,-6],[-22,-8],[-8,0],[-6,4],[-4,6],[-9,14],[-8,10],[-2,4],[-1,7],[2,2],[12,-1],[5,2],[9,10],[-8,5],[-8,0],[-15,-6],[-4,0],[-10,8],[-5,1],[-5,0],[-5,-3],[-4,-4],[10,-6],[2,-4],[0,-9],[-4,-8],[-6,-6],[-33,-20],[-4,-4],[6,-3],[6,-1],[12,2],[23,12],[6,-16],[-1,-10],[-5,-6],[-33,-20],[-10,1],[-3,12],[-12,2],[-20,-8],[-10,7],[6,3],[3,3],[3,3],[-4,3],[-12,4],[0,2],[1,3],[0,4],[0,2],[-1,4],[-1,1],[-2,1],[-5,0],[-32,-14],[-4,-4],[-1,-6],[3,-9],[-4,-1],[-5,0],[-8,4],[8,21],[10,15],[65,63],[3,7],[0,4],[-1,2],[-1,3],[1,4],[1,4],[3,3],[3,2],[59,22],[3,3],[2,4],[2,8],[2,3],[6,2],[7,-2],[13,-7],[32,-7],[14,5],[34,23],[12,5],[33,-20]],[[34979,14165],[-7,-5],[-6,2],[-23,14],[-7,9],[6,10],[34,43],[3,7],[1,5],[4,16],[0,3],[9,-2],[4,-4],[1,-9],[-3,-6],[-4,-3],[-5,-4],[-2,-10],[0,-6],[1,-3],[2,-2],[2,-4],[1,-4],[0,-3],[0,-10],[-3,-14],[-3,-11],[-5,-9]],[[34700,14289],[29,-8],[90,0],[-5,-2],[-8,-16],[-4,-6],[-5,-3],[-85,-2],[-5,-2],[-4,-5],[-1,-4],[0,-8],[-2,-4],[-2,-4],[-3,-2],[-10,-1],[-2,-2],[-3,-11],[-8,-16],[-9,-7],[-10,0],[-9,6],[-18,18],[-7,12],[-6,17],[9,11],[4,3],[0,1],[-8,7],[-16,10],[-5,5],[10,19],[10,8],[83,-14]],[[37637,14537],[15,-17],[-16,-6],[-3,-3],[-4,-10],[-9,-5],[-21,-3],[-15,3],[-7,-4],[1,-13],[-5,5],[-23,15],[-3,2],[-1,3],[-3,7],[-1,2],[12,-9],[6,-2],[6,1],[11,4],[5,1],[2,1],[3,2],[1,6],[0,6],[-2,13],[3,-5],[19,-14],[2,0],[1,1],[2,5],[1,2],[2,0],[2,0],[1,0],[5,4],[4,5],[4,3],[5,0]],[[37497,14517],[-4,-1],[-5,2],[-3,2],[-7,10],[-2,1],[3,8],[1,7],[1,17],[1,-3],[9,-12],[1,-3],[0,-6],[0,-6],[2,-5],[1,-2],[3,-3],[2,-1],[-3,-5]],[[37315,14626],[27,-17],[6,-1],[16,6],[3,0],[8,-5],[16,-15],[5,-11],[-5,-9],[3,-1],[9,-8],[5,-3],[16,4],[23,-4],[-6,-12],[-2,-1],[11,-7],[7,-9],[2,-2],[-5,2],[-3,0],[-2,-1],[-1,-9],[3,-9],[9,-13],[-5,-1],[-7,3],[-11,9],[-10,14],[-6,6],[-7,3],[-13,2],[0,1],[0,3],[-2,5],[-1,1],[-12,6],[-3,1],[-13,-3],[-9,1],[-12,5],[-13,1],[-25,-6],[-11,2],[-7,12],[-2,7],[-2,2],[-1,2],[3,7],[-11,7],[-9,-1],[-31,-22],[-5,-2],[-5,0],[-6,3],[-3,2],[-1,3],[-1,3],[0,3],[1,4],[1,5],[1,4],[1,4],[2,3],[2,2],[3,1],[4,-1],[2,-1],[-2,19],[0,4],[6,2],[5,-1],[18,-12],[3,-1],[2,1],[7,6],[4,1],[9,0],[4,2],[1,3],[1,3],[1,1],[2,2],[2,0],[5,-1],[11,-4]],[[69448,21117],[-2,-7],[-4,1],[-13,19],[-5,1],[-3,3],[-3,4],[-4,4],[-5,2],[-8,3],[-3,3],[0,4],[12,6],[12,-3],[14,-23],[9,-9],[3,-8]],[[69094,21256],[5,0],[9,3],[2,-2],[-1,-9],[-2,-8],[-4,-4],[-4,0],[-5,4],[-14,0],[-7,2],[-6,6],[5,12],[3,4],[5,0],[5,-1],[9,-7]],[[69344,21338],[-5,-10],[-9,5],[-4,-3],[-4,-1],[-4,2],[-4,6],[30,23],[10,1],[0,-4],[-6,-6],[-4,-13]],[[69257,21496],[-3,-9],[22,7],[4,-1],[-1,-8],[-3,-9],[-4,-8],[-3,-5],[-10,-11],[-4,-7],[1,-9],[3,-11],[-4,-6],[-6,-4],[3,-5],[-24,-15],[-5,5],[0,30],[-1,8],[-2,17],[-1,4],[2,7],[3,4],[3,3],[3,4],[9,20],[6,10],[8,8],[8,5],[8,0],[-3,-13],[-9,-11]],[[69229,21536],[1,-13],[3,1],[2,-2],[-1,-6],[-2,-2],[-3,-3],[-2,-3],[-3,-9],[-4,-17],[-5,-13],[-3,-5],[-3,-3],[-3,2],[-2,5],[1,2],[3,21],[3,16],[5,15],[6,11],[7,3]],[[69300,21521],[-5,-1],[-5,4],[-5,7],[-4,10],[-3,11],[10,0],[13,-15],[9,-1],[-2,-8],[-3,-5],[-5,-2]],[[69161,21570],[-21,-56],[5,6],[4,6],[6,3],[7,-5],[-3,20],[9,6],[4,-14],[15,39],[21,22],[6,-2],[4,-9],[-9,-12],[-13,-9],[8,-14],[8,14],[-1,-23],[-9,-20],[-14,-15],[-7,-24],[8,9],[8,7],[-8,-32],[-17,-22],[-4,-22],[-2,-25],[10,-6],[9,-6],[-3,42],[13,27],[11,-9],[7,-21],[1,-21],[2,-18],[10,-7],[8,7],[30,17],[24,40],[3,-10],[2,-11],[-2,-12],[-3,-6],[4,-6],[5,5],[14,51],[19,25],[0,-16],[2,-15],[5,-5],[-9,-9],[-4,-12],[14,1],[11,-9],[-9,-8],[-12,-8],[17,-6],[0,-15],[-16,-5],[-16,-3],[-6,5],[-6,4],[-24,6],[-17,-22],[-7,-10],[-9,-10],[4,-6],[8,6],[8,8],[19,20],[14,-9],[-12,-10],[-13,-8],[18,-8],[-2,-11],[9,-3],[7,-12],[10,0],[0,-2],[0,-2],[-17,-4],[-17,-13],[24,3],[23,3],[21,7],[20,4],[-18,-22],[-22,-11],[18,-4],[18,1],[11,16],[10,16],[1,-11],[3,-10],[7,18],[9,11],[-1,10],[-1,8],[6,3],[6,-1],[0,11],[6,4],[6,4],[4,9],[11,7],[11,7],[16,8],[17,-10],[-1,-6],[-2,-6],[15,1],[11,15],[11,33],[17,13],[20,-1],[19,-10],[13,-14],[2,-29],[5,-22],[6,-22],[-4,-28],[-9,-24],[-16,-29],[-20,5],[-9,6],[-7,-8],[-1,-10],[-6,-6],[23,-15],[20,-21],[-25,5],[-24,-5],[-13,47],[-28,13],[-11,-6],[-11,-6],[-13,-1],[-13,4],[-20,7],[-21,-5],[15,-10],[14,-15],[-3,-2],[-4,-3],[6,-10],[7,-9],[-7,-4],[-6,-2],[-9,12],[-8,15],[-7,3],[-5,-7],[0,-10],[5,-19],[-16,18],[-18,11],[6,-14],[9,-9],[6,-8],[2,-9],[4,-4],[4,-6],[1,-14],[2,-12],[22,-17],[24,-6],[22,-14],[22,-14],[-20,27],[-5,31],[12,6],[13,3],[12,-5],[11,-7],[21,-3],[8,-26],[-19,-24],[-25,-2],[17,-7],[13,-14],[-8,-19],[-15,1],[-11,-5],[-8,-12],[-15,-1],[-16,9],[-23,-1],[-20,13],[-10,23],[-9,22],[-2,25],[-1,24],[-11,13],[-13,-2],[4,-8],[0,-12],[-9,14],[-10,4],[10,-23],[12,-22],[-1,-33],[-14,-17],[-10,5],[-10,8],[-17,2],[-17,5],[-14,18],[-12,21],[-14,2],[-12,0],[-6,24],[-9,20],[-6,-5],[2,-12],[-2,-1],[-2,-2],[6,-14],[3,-16],[-13,10],[-11,25],[3,-17],[3,-16],[3,-9],[-6,-8],[-1,-15],[-10,12],[-3,25],[-5,12],[-4,-24],[9,-37],[-11,-28],[-11,-11],[-12,-7],[-3,2],[-2,3],[-5,-1],[-5,-1],[-13,0],[-14,-1],[-11,5],[-7,20],[0,15],[3,12],[0,22],[6,17],[7,17],[5,16],[-5,14],[12,13],[10,19],[-8,20],[-1,17],[-7,3],[-11,-1],[14,22],[19,3],[-1,10],[1,10],[-9,-4],[-16,-5],[-5,13],[4,3],[5,1],[-16,16],[-5,25],[-2,10],[1,8],[5,-8],[6,-10],[13,19],[21,17],[-21,-2],[-15,10],[6,8],[7,5],[-11,0],[-10,0],[1,8],[1,8],[-9,4],[2,17],[11,4],[9,-8],[-4,22],[0,31],[13,-1],[12,-5],[-7,18],[-8,17],[-7,16],[-7,14],[-2,11],[7,5],[11,10],[11,-1],[1,13],[1,12],[8,9],[1,17],[-4,8],[5,15],[5,16],[16,10],[17,-3],[-4,-7],[6,-13],[-2,-12],[11,-8],[-37,-43]],[[69074,21661],[-7,-2],[-6,3],[-3,4],[4,4],[7,4],[6,0],[3,-8],[-4,-5]],[[69113,21686],[-5,-7],[-3,6],[0,12],[4,9],[7,2],[3,-7],[-1,-9],[-5,-6]],[[64407,22985],[-12,-24],[-10,3],[-4,0],[-4,-3],[-9,2],[-6,6],[-5,9],[-5,11],[-4,15],[3,9],[19,21],[7,-1],[5,-8],[2,-14],[2,-4],[5,-1],[7,-1],[3,-4],[2,-4],[4,-12]],[[63965,23153],[-4,0],[-11,6],[-6,2],[-4,6],[-2,10],[-1,12],[4,5],[22,8],[3,-9],[4,-10],[1,-12],[-2,-12],[-4,-6]],[[71539,27529],[-2,-1],[-5,2],[-1,3],[-2,10],[1,5],[2,2],[3,-2],[1,-2],[4,-9],[1,-4],[-2,-4]],[[71545,28029],[-8,-5],[-9,11],[-4,18],[4,17],[11,2],[9,-14],[3,-18],[-6,-11]],[[61218,37240],[-5,-14],[-6,-1],[-2,3],[-2,7],[-1,10],[2,6],[3,2],[3,1],[2,-2],[0,-6],[-1,-3],[-1,-3],[-1,-3],[2,-4],[3,1],[3,6],[-1,9],[0,5],[2,-1],[0,-13]],[[61036,37770],[-1,0],[0,1],[1,-1]],[[61877,40366],[-2,-9],[-8,7],[4,4],[6,-2]],[[65144,41062],[0,-5],[-2,3],[2,2]],[[63138,43629],[2,-11],[-5,2],[3,9]],[[32840,60612],[5,-7],[0,5],[1,4],[3,7],[1,-5],[2,-3],[3,-1],[3,1],[-1,-3],[-1,-2],[-1,-2],[-2,-1],[1,-9],[3,-4],[3,1],[4,4],[2,0],[2,-3],[1,-3],[1,-7],[-2,1],[-4,-1],[-2,0],[3,-6],[2,-3],[2,-4],[-1,-7],[-3,-10],[-3,0],[-4,4],[-5,2],[-2,-2],[0,-5],[2,-15],[-3,-7],[-4,4],[-5,9],[-2,4],[-1,-1],[-6,-5],[-4,-2],[-6,0],[-3,2],[-9,11],[-2,5],[2,8],[1,7],[-1,6],[0,5],[5,5],[-2,1],[-6,7],[3,6],[5,4],[6,4],[-2,8],[0,7],[3,6],[4,5],[9,-2],[3,-11],[2,-12]],[[32824,60950],[4,-3],[6,4],[3,-1],[5,-7],[4,-10],[3,-10],[2,-10],[2,-17],[0,-10],[0,-9],[-2,-12],[-2,-2],[-3,1],[-5,-4],[-2,11],[-5,8],[-12,10],[-3,-4],[-2,8],[0,24],[-2,11],[-1,9],[-2,10],[1,11],[1,-2],[0,-2],[1,-4],[1,-7],[5,-11],[1,-7],[0,-8],[-1,-7],[0,-5],[3,-4],[2,11],[0,15],[-2,13],[-5,6],[-2,7],[2,11],[4,4],[5,-14],[-2,-3],[-2,-1]],[[94128,18046],[-7,0],[-2,7],[0,3],[2,2],[-2,11],[1,13],[3,20],[1,3],[2,6],[1,4],[-1,2],[0,3],[-1,3],[0,4],[1,6],[1,2],[1,3],[2,5],[3,12],[3,33],[4,8],[11,6],[4,10],[1,-12],[-3,-36],[-2,-12],[-6,-27],[-3,-20],[-6,-22],[-2,-11],[0,-16],[-1,-8],[-5,-2]],[[90934,24780],[0,-5],[0,-6],[-1,-7],[-2,-5],[-3,-7],[-1,-4],[-2,-7],[-2,-18],[-3,-13],[-3,-5],[-5,2],[-6,8],[-2,1],[-2,0],[-2,1],[-2,3],[0,2],[0,4],[1,3],[1,-1],[-2,11],[-2,4],[-3,1],[1,2],[3,4],[1,2],[-6,9],[-3,-7],[-2,-26],[-3,-12],[-5,-7],[-5,1],[-4,10],[-3,11],[-4,8],[-4,7],[-3,6],[2,11],[5,-2],[14,-23],[3,-3],[2,3],[1,10],[0,23],[-2,11],[-2,6],[2,5],[2,4],[2,1],[3,-3],[4,-12],[3,-5],[2,8],[2,4],[1,5],[-3,8],[-1,7],[2,5],[5,8],[9,20],[5,8],[2,-3],[7,-43],[0,-3],[7,-14],[1,-6]],[[90954,24863],[-3,-7],[-7,3],[-3,1],[-3,-2],[-3,-4],[-2,-2],[-2,4],[-2,13],[3,6],[4,5],[4,8],[-5,8],[-14,4],[-6,6],[-2,8],[4,4],[14,4],[-2,3],[-4,4],[-2,4],[1,12],[4,11],[4,4],[4,-16],[7,-9],[1,-8],[0,-8],[1,-7],[1,-5],[2,-7],[1,-7],[3,-15],[2,-15]],[[91159,25213],[-7,-11],[-13,1],[-9,-1],[4,-18],[7,-12],[-2,-1],[-17,-6],[-4,-5],[-3,-8],[-2,0],[0,12],[4,7],[2,9],[4,21],[-6,1],[-3,9],[0,12],[3,10],[4,6],[8,6],[3,9],[5,-3],[6,-1],[5,-3],[2,-8],[0,-10],[2,-7],[3,-5],[4,-4]],[[91203,25385],[-1,0],[-3,2],[-4,5],[-3,5],[-4,5],[-9,3],[-1,3],[-4,11],[5,3],[5,-1],[9,-5],[5,-6],[2,-5],[2,-7],[3,-11],[-2,-2]],[[90212,26351],[2,-1],[2,2],[2,4],[2,1],[9,-3],[19,-14],[10,-3],[10,3],[5,0],[4,-5],[4,-8],[3,-4],[9,-6],[5,-14],[2,-2],[3,-1],[7,-5],[5,2],[2,6],[-3,9],[26,-3],[6,3],[4,10],[0,13],[-1,13],[-3,9],[6,-2],[7,-10],[3,-11],[-8,-7],[-2,-4],[-1,-7],[1,-7],[2,-5],[11,-12],[4,-7],[3,-3],[4,-2],[9,-1],[4,-1],[11,-11],[8,2],[14,11],[3,-23],[11,-14],[13,-8],[26,-5],[4,-5],[2,-12],[3,-10],[4,-10],[9,-14],[5,-6],[6,-4],[6,-2],[14,-1],[3,-2],[2,-4],[1,-6],[3,-1],[5,1],[7,-4],[10,-13],[7,-4],[6,-7],[2,-2],[3,-3],[11,-4],[26,-20],[39,-8],[19,1],[19,9],[15,11],[3,-3],[1,-12],[1,-6],[3,-5],[3,-2],[4,3],[-5,8],[3,9],[10,12],[2,5],[4,11],[2,4],[3,3],[6,0],[4,1],[3,4],[5,6],[3,2],[3,0],[3,-2],[3,-3],[3,-3],[3,-7],[3,-13],[1,-11],[-3,-5],[2,-10],[5,-2],[5,-1],[5,-4],[3,5],[3,3],[2,0],[4,0],[3,-1],[3,-4],[3,-1],[3,2],[-4,6],[-3,7],[-4,5],[-14,4],[-6,5],[-3,10],[-2,14],[5,21],[13,8],[14,5],[11,11],[2,3],[2,3],[2,2],[4,3],[1,1],[1,2],[2,0],[2,-1],[1,-5],[1,-2],[37,-10],[11,10],[21,29],[3,-10],[13,9],[3,-6],[0,-7],[1,-4],[2,-2],[8,-2],[1,-4],[1,-6],[2,-5],[10,-3],[11,13],[10,20],[17,48],[1,9],[3,6],[15,10],[5,2],[4,-6],[5,-11],[5,-8],[10,7],[6,-7],[6,-10],[6,-5],[8,3],[10,9],[9,12],[3,14],[1,5],[4,15],[2,20],[2,6],[3,5],[4,4],[2,-3],[1,-1],[7,0],[2,-2],[2,-3],[2,-11],[3,0],[4,4],[4,-3],[3,-5],[6,-12],[5,-16],[3,-6],[6,-3],[9,1],[3,-2],[22,-49],[8,-22],[3,-13],[1,-11],[-2,-6],[-4,-2],[-5,-6],[-3,-6],[-2,-6],[3,-1],[3,-3],[2,-3],[1,-5],[-4,-24],[-1,-4],[-3,-7],[-2,-16],[0,-18],[1,-12],[1,-8],[2,-4],[9,-19],[2,-8],[-2,-8],[-12,-16],[-5,-10],[1,-12],[21,32],[6,0],[-7,-18],[-14,-76],[0,-9],[1,-10],[1,-14],[-1,-8],[-1,-5],[0,-5],[8,-23],[1,-6],[1,-12],[-1,-14],[-3,-14],[-4,-11],[0,-10],[5,-37],[-3,-7],[-6,-10],[-3,-12],[2,-13],[1,-5],[3,-15],[1,-5],[0,-5],[7,-13],[1,-4],[0,-3],[1,-3],[2,-2],[-4,-20],[-3,-31],[-1,-29],[18,-36],[0,-3],[-2,-2],[-2,-5],[-8,-17],[-1,-8],[12,-9],[1,-11],[-2,-22],[-2,-3],[-5,-10],[-1,-3],[-1,-6],[-3,3],[-3,6],[-1,3],[-9,4],[-2,4],[1,5],[5,6],[2,3],[0,4],[2,4],[2,6],[1,7],[-1,4],[-2,5],[-3,5],[-3,4],[8,7],[3,5],[2,9],[-7,0],[-5,4],[-9,16],[-5,6],[-18,10],[8,10],[4,4],[4,2],[4,5],[2,9],[1,10],[-9,8],[-2,9],[-1,8],[-1,4],[-5,-3],[1,-7],[4,-12],[-1,-13],[-2,0],[-3,4],[-4,2],[-4,-5],[0,-8],[2,-9],[0,-10],[-1,-2],[-3,-2],[-3,-2],[1,-4],[2,-6],[2,-2],[2,-3],[4,-2],[13,-6],[-27,2],[-7,-6],[-3,-9],[-1,-14],[0,-27],[-1,-7],[-10,-16],[-1,-6],[0,-7],[-1,-5],[-5,-2],[1,-4],[-1,-8],[-8,-24],[-6,-13],[3,3],[5,11],[4,3],[4,-4],[3,-8],[0,-9],[-7,-12],[-1,-17],[2,-28],[0,-27],[-1,-15],[-3,-6],[-4,-3],[-4,-11],[-4,-3],[-3,3],[-4,14],[-3,4],[0,-7],[-2,-5],[-2,-3],[-4,-1],[14,-27],[1,-12],[0,-10],[0,-4],[1,-4],[2,-3],[1,-2],[0,-1],[0,-16],[0,-8],[-2,-7],[1,-10],[-3,-9],[-6,-7],[-4,-2],[-5,-6],[-2,-12],[0,-14],[2,-9],[-1,-5],[-1,-1],[-1,0],[-3,2],[-4,-15],[-2,-8],[1,-9],[3,-4],[5,-3],[6,0],[5,3],[0,4],[-10,5],[3,13],[8,7],[5,-11],[0,-9],[2,-1],[3,2],[3,2],[2,-1],[2,-1],[1,-3],[0,-5],[1,-5],[3,-5],[2,-5],[-1,-2],[-2,-4],[-1,-5],[0,-5],[1,-1],[2,-2],[1,-2],[1,-3],[0,-12],[-3,-4],[-3,-2],[-4,-4],[-3,-14],[1,-29],[-5,-8],[7,-15],[1,-5],[0,-7],[0,-4],[-4,-9],[6,-1],[4,-3],[1,-6],[-1,-11],[-2,-3],[-2,-2],[-1,-4],[-1,-7],[3,-5],[2,-5],[1,-6],[-6,1],[-4,4],[-16,25],[-3,6],[-1,10],[-1,9],[-1,4],[-5,-6],[-3,-9],[0,-10],[1,-9],[2,-9],[-8,1],[-4,-7],[-4,-10],[-4,-8],[-6,16],[-20,32],[-1,17],[3,2],[7,7],[4,8],[-23,14],[-5,5],[-2,7],[-3,11],[-2,12],[1,9],[2,4],[9,7],[4,1],[1,2],[1,4],[0,3],[-1,2],[0,3],[0,5],[-2,5],[1,4],[4,2],[6,-1],[3,-1],[1,-4],[0,-18],[-1,-6],[-2,-11],[12,-19],[7,-6],[8,-3],[2,1],[3,2],[2,1],[5,0],[1,0],[4,3],[3,4],[6,9],[-8,1],[-6,6],[-4,11],[-3,15],[3,0],[1,1],[4,3],[0,4],[-8,3],[-1,8],[2,9],[1,8],[-4,5],[-17,-5],[-2,2],[-5,5],[-3,2],[-2,-1],[-9,-4],[-4,4],[-2,4],[-1,5],[-3,4],[-2,1],[-5,1],[-2,2],[-1,4],[0,5],[-1,6],[-2,5],[-3,3],[-3,0],[-14,-9],[-5,-5],[-4,-5],[0,-17],[5,-21],[11,-35],[-6,-16],[-3,-6],[-5,-6],[-15,-8],[-5,-5],[-3,5],[-4,7],[-2,9],[-1,7],[4,9],[4,-6],[3,-9],[3,-6],[5,5],[3,10],[1,9],[-1,5],[-4,4],[0,10],[3,22],[-5,-2],[-6,-6],[-4,-2],[-2,8],[-2,15],[-4,6],[-6,3],[-5,7],[-15,43],[-2,6],[-3,0],[-3,-3],[-3,-4],[2,-6],[3,-6],[2,-2],[5,-9],[4,-11],[5,-21],[6,-17],[0,-8],[-5,-19],[-3,-13],[0,-11],[1,-27],[-3,-2],[-5,7],[-9,14],[-5,-10],[2,-10],[9,-13],[2,-10],[-2,-5],[-5,-5],[-5,-8],[-3,-9],[-1,-9],[1,-9],[3,-22],[0,-11],[0,-23],[-2,-8],[-6,-8],[-6,-3],[-4,3],[-2,3],[-6,3],[-3,4],[0,4],[2,5],[0,5],[-4,2],[-12,-1],[-3,4],[3,11],[4,10],[0,4],[-1,7],[-2,14],[-2,-12],[-6,-10],[-5,-6],[-2,1],[-7,9],[-1,3],[0,25],[-2,15],[-4,1],[-4,-5],[-4,-7],[-2,-10],[-1,-16],[1,-14],[4,-7],[3,-2],[20,-24],[5,-8],[4,-9],[1,-10],[-1,-4],[-3,-5],[-3,-5],[-2,-2],[-4,0],[-1,3],[-1,3],[-2,2],[-5,1],[-6,-3],[-6,-6],[-4,-8],[16,2],[5,-2],[5,-5],[0,-5],[-7,-10],[-3,-7],[-4,-17],[-2,-5],[-5,-4],[-5,-1],[-11,1],[5,-8],[17,-7],[4,-14],[-15,4],[-5,-3],[-2,-11],[1,-4],[2,-4],[2,-5],[-2,-9],[-2,-3],[-4,0],[-4,1],[-3,2],[-2,-15],[3,-5],[6,-2],[4,-7],[0,-10],[-4,-8],[-20,-16],[-2,-1],[-4,0],[-1,3],[1,3],[-2,5],[-6,7],[-6,1],[-6,-3],[-14,-9],[-3,3],[-2,9],[-5,13],[-18,16],[-3,4],[-2,10],[-3,24],[-2,10],[-5,5],[-2,-7],[0,-13],[3,-13],[-4,3],[-2,1],[-7,-9],[-6,-2],[-31,5],[-6,5],[-5,9],[-6,-10],[-3,-5],[-4,-1],[-4,4],[-1,6],[-1,8],[-2,6],[-3,3],[-4,1],[-5,0],[-3,-4],[-2,-7],[0,-9],[-1,-8],[-3,-4],[-2,9],[-3,7],[-3,4],[-3,0],[-9,-6],[-3,-2],[0,-3],[1,-10],[-1,-3],[-2,-1],[-2,2],[-1,2],[-2,1],[-16,-8],[2,42],[-2,18],[-6,19],[-16,20],[-2,5],[2,7],[5,-2],[7,-6],[5,-2],[-2,7],[-6,14],[5,1],[25,-5],[8,-6],[5,-11],[3,-11],[5,-9],[2,7],[-2,11],[0,7],[2,-3],[1,0],[3,-2],[-2,8],[2,2],[2,-1],[2,-1],[3,-3],[4,-11],[3,-2],[2,7],[0,15],[-1,15],[-2,8],[-1,3],[-8,9],[-5,10],[-3,3],[-2,-2],[-8,-26],[-6,-7],[-7,10],[0,4],[-1,13],[0,3],[-4,2],[-2,-1],[-1,-5],[-1,-6],[-2,-14],[-5,1],[-6,8],[-4,7],[-4,9],[-2,10],[-1,10],[-1,14],[-1,3],[-6,6],[-5,9],[-1,-3],[0,-13],[1,-9],[-1,-5],[-3,-2],[-2,0],[-3,-1],[-2,-1],[-2,-3],[-1,-8],[4,-2],[10,2],[3,-3],[-1,-7],[-3,-7],[-5,-3],[-10,1],[-5,2],[-3,5],[-7,29],[-1,4],[1,14],[-1,3],[-8,12],[-3,3],[-2,4],[0,4],[-1,6],[0,4],[-2,2],[-3,4],[-2,7],[0,10],[1,8],[-3,-2],[-3,-2],[-3,-1],[-3,1],[-4,5],[-1,4],[1,13],[1,2],[2,5],[1,5],[-3,2],[-3,1],[-3,3],[-6,9],[-10,31],[-4,5],[-18,1],[-2,2],[-11,26],[-6,19],[-6,21],[-5,31],[-3,10],[-2,4],[-2,3],[-4,2],[-1,3],[-1,4],[1,2],[1,2],[4,11],[0,7],[-3,2],[-1,4],[-5,31],[-1,2],[-6,-1],[-1,1],[-2,7],[-1,8],[-2,6],[-3,3],[-8,2],[-1,5],[10,22],[-8,11],[-6,21],[-4,24],[2,21],[-6,34],[-3,20],[-2,19],[0,34],[-1,7],[-2,14],[-1,10],[4,-5],[4,-9],[4,-10],[1,-7],[2,-10],[3,-4],[11,-4],[3,-3],[2,-2],[2,-8],[1,-4],[1,-5],[2,-5],[7,-4],[19,-24],[3,-5],[1,-7],[1,-23],[2,-22],[4,-21],[2,-6],[2,2],[1,13],[0,43],[7,-8],[3,1],[2,19],[2,10],[6,16],[1,5],[-3,-1],[-4,-3],[-1,-3],[1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,1],[0,2],[1,3],[0,2],[-1,4],[0,4],[-1,5],[-2,4],[-3,0],[-1,-5],[0,-5],[-2,-3],[-5,8],[-16,33],[-5,13],[-5,5],[-1,2],[-2,17],[-4,16],[-1,11],[1,9],[-4,4],[-2,-1],[-6,-7],[0,-1],[-1,-7],[-1,-2],[-4,-3],[-1,-3],[0,-7],[1,-7],[1,-6],[-4,-5],[-2,2],[-10,15],[11,43],[-4,48],[-13,44],[-14,31],[-23,34],[-2,1],[-1,4],[-2,15],[-1,4],[-3,2],[-3,5],[-10,35],[-6,8],[-1,5],[-2,6],[-3,3],[-4,-1],[-3,1],[-1,4],[-2,8],[0,6],[0,16],[-13,63],[-16,41],[-4,17],[-2,3],[-3,2],[-3,5],[-5,10],[2,1],[0,2],[0,2],[0,3],[7,5],[0,16],[-4,17],[-18,55],[-6,12],[3,14],[0,18],[-2,18],[-5,10],[3,24],[-6,19],[-14,31],[4,2],[3,4],[2,7],[1,9],[-5,12],[-1,6],[1,2],[5,2],[4,13],[3,3],[5,1],[4,4],[2,9],[1,19],[0,17],[-5,63],[0,14],[2,12],[6,12],[1,-10],[3,-9],[6,-14],[1,-4],[1,-11],[1,-3]],[[90290,26377],[3,-8],[2,-8],[-8,0],[-6,9],[-9,-3],[-15,-14],[-2,0],[-2,1],[-2,0],[-3,-3],[-2,-1],[-2,2],[-1,3],[-1,2],[-1,27],[0,3],[13,25],[4,5],[1,-6],[3,-9],[4,-4],[5,-2],[5,-9],[5,-2],[4,-2],[5,-6]],[[91167,26436],[-3,-8],[-7,6],[-2,9],[-4,3],[-5,0],[-2,2],[-1,3],[-2,8],[-1,4],[0,4],[-1,0],[1,0],[2,4],[5,6],[11,4],[4,4],[18,6],[-2,-5],[-2,-7],[-2,-4],[0,-7],[0,-7],[-1,-5],[-3,-2],[-2,-6],[-1,-12]],[[90219,26528],[0,-44],[-1,-5],[-6,-9],[0,-35],[-7,-5],[-2,9],[-1,5],[0,33],[-1,5],[-4,5],[-1,4],[2,8],[4,1],[5,-1],[4,4],[1,6],[3,29],[1,3],[1,-2],[2,-7],[0,-4]],[[90251,26507],[-2,-4],[-7,1],[-4,7],[-4,9],[-4,8],[2,1],[6,1],[2,2],[2,3],[2,6],[1,5],[-3,2],[0,1],[1,3],[3,3],[2,1],[7,0],[3,-2],[3,-2],[5,-7],[0,-5],[-2,-7],[-1,-11],[1,-7],[-1,-2],[-6,-2],[-3,-1],[-3,-3]],[[91221,26567],[6,-4],[3,-3],[10,-25],[5,-7],[-2,-6],[-3,-2],[-2,2],[-1,6],[-1,-3],[-2,-10],[-6,-3],[0,-1],[-4,-7],[0,-5],[0,-8],[-6,5],[-5,-2],[-4,-5],[-4,-6],[0,20],[-4,20],[-9,1],[-18,-17],[-2,7],[-2,3],[-2,2],[-3,1],[-2,-2],[-3,-5],[-1,-2],[-2,1],[-3,3],[-2,0],[-19,-3],[-6,3],[-3,4],[-3,6],[-2,3],[-5,-1],[-3,1],[-1,6],[1,15],[3,8],[17,16],[5,3],[13,1],[6,-2],[3,-2],[6,-8],[3,4],[2,12],[11,1],[8,3],[3,6],[2,1],[6,7],[1,2],[4,-1],[2,-2],[13,-28],[2,-3]],[[91097,26952],[53,-111],[1,-7],[6,-15],[12,-9],[24,-6],[-2,-14],[0,-45],[-2,-12],[-12,-15],[-5,-12],[6,-4],[6,4],[6,7],[3,9],[3,-8],[3,-13],[4,-23],[-1,-11],[-3,1],[-8,14],[-1,-13],[4,-7],[6,-5],[1,-8],[-5,-9],[-6,4],[-5,9],[-6,4],[-6,3],[-3,0],[-3,-3],[-2,-5],[-1,-16],[-2,-3],[-5,-3],[-6,-6],[-6,-3],[-14,9],[-7,8],[-3,11],[6,12],[-9,14],[-4,9],[0,8],[1,8],[-1,10],[-3,10],[-3,6],[-6,2],[-3,-1],[-2,3],[-1,15],[-2,9],[-5,6],[-6,2],[-5,1],[1,4],[5,20],[1,8],[-1,9],[-4,17],[-1,9],[-2,13],[-5,0],[-10,-11],[-5,2],[-14,19],[4,6],[7,13],[4,5],[12,6],[2,6],[-2,12],[2,2],[5,7],[-3,8],[-2,5],[0,5],[1,5],[3,-1],[3,-5],[2,-2],[4,5],[12,22]],[[90019,26751],[-2,-5],[-2,-5],[-2,-5],[-3,-1],[-6,-2],[-26,-27],[-6,0],[-4,12],[-2,8],[-2,25],[4,-1],[1,11],[0,24],[-2,15],[-4,7],[-5,4],[-4,9],[0,9],[1,32],[2,7],[4,6],[1,14],[0,25],[-1,3],[-2,6],[-1,3],[0,3],[3,6],[1,4],[-2,14],[1,6],[4,3],[5,3],[6,6],[6,8],[3,8],[-1,12],[-2,14],[-1,13],[3,5],[3,1],[5,3],[3,1],[2,-2],[9,-15],[11,-9],[5,-7],[4,-13],[1,-4],[2,-6],[1,-7],[-2,-26],[1,-15],[4,-24],[1,-12],[-1,-13],[-5,-25],[0,-13],[2,-5],[3,-2],[3,-2],[2,-3],[1,-7],[0,-6],[0,-6],[-1,-21],[-1,-6],[-2,-3],[-2,-2],[-1,-6],[-1,-7],[-1,-5],[-2,-4],[-6,-5],[-3,-3]],[[90691,27524],[12,-6],[13,5],[6,0],[7,-5],[2,1],[2,1],[3,-1],[2,-1],[-1,-5],[-1,-3],[-2,-1],[-17,1],[-2,-2],[-3,-11],[-2,-3],[-6,-1],[-6,5],[-6,7],[-4,7],[-2,11],[5,1]],[[90372,27659],[1,-3],[2,-7],[2,-8],[0,-8],[-2,-6],[0,3],[-1,2],[0,1],[-1,3],[-7,10],[-8,8],[-8,4],[-10,-2],[-2,-4],[-2,-3],[-2,-1],[-2,1],[-5,5],[-1,2],[-5,-1],[-8,-4],[-5,0],[2,7],[10,14],[6,12],[3,5],[4,3],[17,4],[3,1],[1,1],[2,0],[4,-2],[2,-2],[2,-4],[1,-2],[-2,-3],[-2,-1],[3,-9],[1,-3],[-1,-5],[1,-2],[2,-1],[3,0],[2,-1],[1,-2],[-1,-2]],[[90378,27774],[4,-1],[13,6],[5,-1],[3,-3],[3,-4],[8,-22],[-1,-2],[-6,-2],[-12,-2],[-3,-2],[-11,-22],[-6,-7],[-8,4],[-2,4],[-9,7],[-1,7],[0,7],[-3,12],[8,20],[-2,4],[-1,5],[1,4],[2,4],[2,1],[2,-3],[1,-4],[2,-3],[11,-7]],[[88228,29397],[3,-5],[0,-7],[-4,-5],[-6,-3],[-4,-9],[-1,-8],[5,-4],[9,0],[4,-1],[1,-3],[-7,-17],[-12,-23],[6,-10],[6,-1],[6,2],[11,-9],[7,0],[12,5],[3,3],[2,2],[2,0],[2,-5],[2,-5],[-1,-5],[0,-5],[-1,-7],[2,-11],[5,-4],[7,1],[5,4],[5,5],[3,9],[3,10],[1,10],[3,9],[8,2],[8,-2],[11,-6],[12,-10],[4,-3],[1,-3],[2,-19],[2,-6],[4,-3],[4,-1],[5,0],[-1,-9],[1,-11],[-1,-8],[-7,-4],[-3,-4],[-8,-20],[-3,-5],[-6,0],[-7,3],[-5,6],[-9,14],[-5,3],[-6,0],[-6,-2],[-4,1],[-9,6],[-6,1],[-7,0],[-11,-4],[-23,-18],[-13,-5],[-4,-8],[-2,-12],[1,-13],[1,-4],[1,-2],[1,-4],[1,-5],[-1,-5],[-1,-5],[-2,-3],[0,-3],[-2,-4],[-13,-6],[-17,-21],[-10,-7],[-4,8],[-8,8],[-12,27],[-9,5],[-14,2],[-13,9],[-4,2],[-5,0],[-6,-8],[-2,-12],[-3,-12],[-8,-5],[-5,1],[-9,6],[-5,1],[-8,-4],[-4,1],[-3,7],[-19,-14],[-8,-2],[-9,4],[-6,7],[-2,1],[-3,-1],[-5,-6],[-2,-1],[-6,1],[-3,-1],[-2,-2],[-4,-6],[-2,-1],[-1,1],[-4,0],[-5,-3],[-3,-1],[-3,3],[0,11],[-2,7],[-4,12],[-8,19],[-4,4],[-10,3],[-4,4],[-16,26],[1,6],[0,12],[1,7],[1,3],[2,2],[2,4],[1,15],[1,5],[2,5],[1,4],[2,5],[-1,12],[0,5],[5,7],[6,3],[20,3],[13,12],[8,1],[4,2],[4,6],[3,2],[74,21],[6,4],[14,13],[37,16],[4,4],[3,7],[4,6],[5,3],[5,-2],[23,-14],[2,-1],[3,2],[5,7],[5,0],[7,-1],[5,1],[10,6],[5,2],[4,-4],[6,4]],[[87915,29640],[-1,-4],[-2,4],[-6,0],[-5,2],[-2,4],[2,8],[4,5],[4,-3],[3,-7],[3,-9]],[[87834,29700],[-1,-2],[-3,3],[-8,2],[-3,10],[0,15],[-2,14],[-13,19],[-3,12],[7,5],[4,-5],[13,-38],[3,-5],[3,-3],[1,-4],[2,-10],[0,-7],[0,-6]],[[88157,30024],[-4,-8],[-3,6],[-2,7],[2,9],[7,17],[2,-16],[-2,-15]],[[87358,30467],[-4,-4],[-2,9],[3,18],[1,5],[0,7],[0,3],[4,4],[8,3],[0,1],[3,1],[1,-2],[1,-7],[1,-13],[-2,-4],[-4,0],[-5,-3],[-5,-18]],[[87110,31336],[-9,-7],[-7,5],[1,10],[4,12],[6,9],[5,5],[7,4],[7,3],[7,0],[0,-4],[-15,-8],[2,-9],[2,-3],[-3,-3],[-2,-6],[-1,-5],[-1,-2],[-3,-1]],[[82132,31391],[1,-14],[-5,3],[-1,1],[-1,14],[-2,15],[-1,12],[4,8],[1,-14],[4,-25]],[[82097,31515],[-6,-7],[-4,-4],[-7,3],[-9,-2],[-5,1],[5,7],[7,-1],[2,9],[9,1],[5,-3],[3,-4]],[[94185,31803],[4,-9],[3,-10],[3,-9],[-2,-7],[-2,-6],[-3,-2],[-4,3],[4,7],[1,10],[-2,11],[-5,8],[-2,-4],[-1,4],[-1,5],[7,-1]],[[81581,33601],[-3,-1],[-1,10],[0,10],[6,2],[3,6],[2,6],[4,0],[4,0],[-5,-9],[-4,-11],[-4,-6],[-2,-7]],[[92634,34234],[4,-1],[14,1],[-6,-24],[-6,-29],[-14,-128],[-2,-1],[-4,0],[-4,-1],[-3,-2],[-2,1],[-3,14],[0,9],[2,17],[0,2],[2,3],[1,3],[0,5],[0,5],[-3,8],[0,5],[0,8],[3,18],[0,8],[0,10],[-3,23],[1,9],[6,16],[2,9],[0,17],[1,8],[2,4],[4,-3],[3,-5],[3,-5],[2,-4]],[[92618,34270],[-1,-2],[-4,11],[1,10],[-2,16],[-3,15],[-2,7],[-3,6],[-2,13],[-2,37],[2,36],[-1,13],[-2,9],[1,6],[6,7],[9,3],[6,10],[3,3],[4,-2],[1,-10],[0,-14],[-12,-71],[-2,-25],[0,-29],[1,-7],[3,-15],[0,-8],[0,-10],[-1,-9]],[[81377,35379],[2,-7],[5,0],[4,2],[2,-4],[0,-5],[0,-16],[0,-12],[4,-22],[6,-24],[2,-30],[0,-21],[6,-18],[5,-29],[8,-30],[5,-23],[-6,-31],[0,-15],[8,-4],[-1,4],[-1,6],[-1,3],[3,1],[3,-7],[3,-11],[3,-10],[2,-4],[4,-11],[2,-5],[1,-6],[1,-13],[1,-5],[2,-10],[1,-14],[-2,-12],[-3,-7],[-3,3],[-6,6],[-2,19],[-4,23],[-5,12],[-2,6],[-13,35],[-10,15],[-9,56],[-14,30],[-3,12],[3,6],[0,5],[-2,34],[-10,39],[0,33],[1,10],[-1,21],[3,10],[4,9],[4,6]],[[92501,35470],[-4,-6],[-8,23],[-3,12],[3,6],[8,-21],[4,-14]],[[81407,35501],[-1,0],[-2,5],[0,3],[-2,13],[7,42],[2,19],[-1,44],[3,20],[8,12],[-2,-21],[0,-11],[1,-5],[-3,-5],[0,-12],[0,-24],[-2,-9],[-5,-21],[-1,-8],[0,-22],[0,-11],[-2,-9]],[[81422,35680],[-1,-13],[0,6],[-1,5],[0,5],[-1,4],[6,94],[5,28],[2,-12],[0,-15],[-6,-54],[0,-15],[4,-5],[-6,-18],[-2,-10]],[[92579,35820],[-2,-72],[1,-11],[5,-31],[3,-7],[2,-3],[11,-17],[3,-8],[1,-14],[-2,-10],[-3,-10],[-2,-9],[-1,-12],[-22,-103],[-29,-123],[-22,-120],[1,-15],[4,-18],[0,-21],[-5,-18],[-8,-6],[-10,26],[-5,15],[-1,10],[2,11],[-5,28],[0,15],[-8,5],[-3,17],[1,18],[4,9],[6,7],[2,18],[2,36],[2,8],[3,5],[3,3],[2,5],[4,19],[2,7],[3,15],[-3,34],[3,14],[-2,7],[-2,2],[-2,1],[-7,5],[-1,0],[-1,1],[0,6],[2,8],[5,9],[30,41],[9,15],[7,18],[6,18],[4,20],[2,23],[-2,25],[-5,18],[-8,25],[-9,16],[-7,-2],[16,40],[3,2],[8,14],[11,13],[2,4],[2,-26]],[[92051,36337],[-1,-9],[-6,4],[-1,15],[-2,9],[-6,17],[-2,19],[0,1],[1,7],[2,4],[2,0],[1,-19],[2,-8],[6,-14],[3,-12],[1,-14]],[[91954,36582],[2,-2],[2,1],[3,2],[2,1],[2,-2],[1,-5],[-1,-6],[1,-3],[5,-3],[12,-5],[2,-7],[3,-3],[6,-2],[3,-4],[-4,-9],[5,-2],[4,7],[4,12],[4,7],[0,-16],[-3,-27],[-1,-13],[1,-14],[3,-16],[3,-13],[5,-6],[5,-7],[3,-17],[0,-17],[0,-7],[-2,-1],[-1,-3],[-1,-4],[-1,-3],[-1,-2],[0,-1],[-2,-3],[-1,1],[-10,-2],[-2,-1],[-2,1],[-3,5],[-3,9],[-3,7],[-4,7],[-2,22],[-4,11],[-11,28],[-8,11],[-3,7],[-3,11],[-10,26],[-6,17],[-5,11],[10,8],[2,3],[0,4],[-1,5],[2,5],[3,-3]],[[91591,37187],[-2,-7],[-3,7],[-1,2],[2,6],[0,6],[0,6],[-2,6],[2,6],[2,14],[1,6],[2,1],[3,-4],[6,-11],[-3,-2],[-1,-5],[1,-6],[-1,-7],[-6,-18]],[[91822,37266],[-2,-6],[-2,-4],[-3,-2],[-1,-2],[-1,-5],[-1,-4],[-2,-4],[-2,-2],[-5,-4],[-3,4],[-1,7],[3,10],[-4,6],[-1,2],[-1,-2],[-1,-1],[-2,-2],[2,10],[5,11],[3,12],[-2,10],[-2,5],[-1,5],[1,3],[3,1],[4,-1],[2,-5],[1,-6],[2,-6],[1,-5],[0,-6],[1,-5],[2,-2],[2,-1],[2,-3],[2,-4],[1,-4]],[[91640,37313],[-5,-6],[-3,4],[0,4],[1,5],[0,7],[-1,4],[-1,2],[-1,4],[-1,8],[0,12],[2,14],[2,13],[4,8],[-2,6],[1,7],[3,7],[4,4],[-2,-20],[0,-6],[1,-9],[3,-12],[1,-8],[0,-15],[-2,-18],[-4,-15]],[[91768,37603],[-3,-10],[-2,-10],[-2,-7],[-4,2],[-10,12],[0,4],[7,4],[3,0],[3,-4],[8,9]],[[91751,37642],[-2,-11],[0,1],[-1,1],[0,1],[-1,1],[-1,-5],[-1,-2],[-1,1],[-2,2],[-3,5],[-2,1],[-2,-1],[-1,-5],[-1,5],[0,4],[1,4],[2,3],[-1,5],[0,3],[-1,9],[2,0],[3,-9],[7,-6],[5,-7]],[[82058,38128],[-1,-8],[-3,-6],[-9,-8],[-2,7],[-3,6],[-3,3],[-2,-2],[-1,-7],[-2,-4],[-3,1],[-3,8],[2,8],[2,25],[5,16],[20,48],[8,14],[6,1],[1,-9],[1,-20],[2,-8],[1,-10],[-2,-10],[-6,-18],[0,-5],[0,-5],[-1,-5],[-2,-2],[-1,-1],[-3,-7],[-1,-2]],[[91414,38338],[-3,-9],[-3,-9],[-5,-7],[-2,2],[-1,4],[-1,5],[0,5],[2,4],[4,0],[3,2],[3,11],[1,10],[0,10],[2,12],[0,-12],[1,-9],[2,-7],[3,-9],[-6,-3]],[[91401,38463],[6,-9],[1,-6],[-1,-9],[-3,3],[-2,4],[-3,9],[-4,-19],[-2,-5],[-4,10],[-4,-2],[-2,-5],[-3,1],[0,24],[-5,-7],[-2,-1],[-2,0],[-2,1],[-1,3],[1,6],[9,16],[1,8],[-5,3],[3,12],[1,15],[2,13],[4,8],[1,-9],[4,-14],[0,-7],[0,-16],[2,-5],[5,-1],[0,-4],[5,-17]],[[91382,38592],[-2,-12],[-5,-12],[-3,-10],[1,-4],[3,-8],[0,-6],[-1,-4],[-8,-16],[1,12],[-1,4],[-1,-1],[-1,-3],[-1,1],[0,1],[0,2],[-1,0],[-2,-8],[-2,2],[-2,4],[-1,4],[-1,6],[2,9],[8,20],[-1,1],[-1,3],[-1,4],[1,4],[3,4],[1,-1],[2,-3],[1,0],[4,3],[1,3],[2,4],[1,6],[4,-9]],[[91243,38609],[-2,-12],[-2,3],[-1,0],[-1,0],[-2,1],[0,18],[0,9],[-1,6],[1,12],[7,-11],[2,-12],[-1,-14]],[[90797,39154],[1,-7],[-1,-14],[0,-6],[-2,-6],[-2,7],[-11,-14],[-5,7],[-2,7],[-2,6],[-2,5],[2,6],[3,3],[4,-1],[3,2],[3,8],[1,-3],[2,-2],[5,-3],[1,6],[1,2],[1,-3]],[[90731,39374],[5,-6],[8,1],[1,-5],[-3,-7],[-3,-2],[-3,-1],[-4,1],[-4,3],[-2,0],[-4,1],[-5,-2],[-4,2],[0,9],[4,17],[-1,8],[-1,9],[1,4],[3,-5],[3,-5],[2,-3],[4,-7],[3,-12]],[[90620,39678],[4,-6],[11,0],[4,-3],[-2,-7],[-3,-11],[-2,-11],[0,-12],[2,-9],[6,-18],[3,-2],[4,-1],[2,-3],[1,-6],[-1,-4],[-3,-2],[-3,0],[2,-5],[6,-8],[2,-3],[0,-7],[-2,-3],[-2,-1],[-2,-2],[-3,-19],[-3,-9],[-5,-8],[-5,6],[-10,5],[-4,5],[-3,14],[-2,31],[-2,9],[-7,24],[-3,5],[-12,16],[-3,6],[-3,6],[-2,7],[2,13],[6,-1],[15,-12],[12,-7],[2,10],[-2,19],[3,19],[2,-15]],[[88768,40343],[-4,-4],[-9,-1],[-2,-2],[-1,-4],[-1,-2],[-4,0],[-2,3],[-1,4],[0,3],[0,2],[-5,0],[-5,-4],[-3,-8],[-1,-13],[-2,0],[0,3],[0,2],[-1,1],[-1,3],[-4,16],[2,8],[5,4],[6,10],[7,23],[4,9],[2,5],[-1,10],[4,-5],[12,-17],[3,-10],[-2,-9],[2,-7],[3,-5],[1,-4],[-2,-11]],[[88642,40486],[-2,-3],[-2,2],[-1,7],[0,5],[0,3],[0,3],[-2,1],[5,4],[7,5],[6,0],[1,-9],[-3,-4],[-7,-1],[-1,-5],[-1,-8]],[[88804,40729],[-1,-7],[-1,-2],[5,-3],[3,6],[1,8],[3,1],[2,-7],[0,-11],[-1,-11],[-1,-8],[-1,3],[-2,6],[-1,3],[-3,-6],[0,-5],[1,-5],[0,-6],[-1,-3],[-3,2],[-5,4],[-6,-2],[-6,-4],[-5,-6],[-2,-9],[-3,7],[-6,21],[-2,4],[0,2],[-3,5],[-2,2],[-1,-3],[-1,-2],[-5,-12],[-3,-1],[-7,-1],[-1,-1],[-1,-7],[3,-4],[3,-2],[3,0],[3,-4],[-1,-7],[-3,-5],[-3,1],[-3,5],[-3,1],[-2,-2],[-2,-6],[2,-18],[0,-6],[-2,-4],[-3,-10],[0,-2],[1,-3],[-2,-7],[-2,-7],[-3,-3],[-3,2],[-4,12],[-3,2],[-4,-5],[-3,-23],[-4,-5],[-5,-2],[-6,-10],[-5,-4],[-18,0],[-3,2],[-2,7],[-8,22],[-3,6],[1,-12],[1,-17],[-1,-13],[-3,1],[-2,-8],[-3,-6],[-3,0],[0,17],[-2,11],[0,6],[1,4],[2,5],[2,6],[1,8],[1,14],[1,11],[2,10],[4,7],[6,11],[2,8],[1,12],[1,6],[2,4],[3,3],[3,1],[2,3],[6,16],[2,6],[6,5],[6,2],[12,0],[32,14],[16,19],[10,4],[6,-2],[3,-4],[1,-7],[3,-7],[4,-5],[5,-2],[10,-1],[0,-3]],[[87970,41148],[-9,-23],[-2,5],[-4,5],[-3,8],[-3,10],[-1,11],[2,12],[4,6],[5,5],[4,7],[2,-10],[4,-4],[4,-4],[2,-6],[-2,-10],[-3,-12]],[[87999,41206],[4,-6],[5,-9],[1,-9],[-4,-4],[-3,2],[-2,8],[-3,2],[-3,-2],[-1,-4],[3,-14],[1,-2],[1,-2],[-1,-4],[0,-3],[-2,-2],[-3,-4],[-6,-8],[-3,-2],[-3,3],[1,14],[2,13],[0,13],[-3,16],[5,2],[10,-2],[4,4]],[[88053,41235],[3,0],[3,0],[2,-5],[1,-15],[6,-7],[3,6],[2,0],[0,-11],[5,-3],[-1,-20],[0,-24],[1,-9],[-2,-5],[1,-5],[2,-2],[2,-2],[3,-5],[-1,-17],[-3,-11],[-5,-15],[-8,7],[-1,10],[-1,7],[-1,6],[-3,2],[-4,1],[-2,2],[-4,22],[-1,5],[1,13],[-1,5],[-3,0],[-2,-1],[-2,1],[-2,0],[-1,-11],[-1,1],[-1,0],[-1,4],[1,13],[0,10],[1,9],[2,7],[4,9],[3,-9],[2,-5],[2,2],[-2,16],[2,2],[3,9],[-2,13]],[[87944,41224],[-4,-14],[-3,3],[-5,-2],[-3,4],[-2,-5],[-2,-2],[-4,-2],[-1,2],[-2,1],[-3,6],[4,4],[0,7],[-1,7],[-3,6],[5,7],[2,4],[1,5],[0,7],[-1,5],[1,3],[5,1],[6,4],[5,6],[5,0],[4,-14],[-4,-14],[0,-29]],[[88016,41216],[-3,-6],[-1,3],[0,2],[-1,1],[0,2],[1,1],[0,2],[-1,5],[-2,6],[1,2],[2,2],[1,3],[0,2],[1,5],[1,3],[-1,3],[-3,5],[0,2],[1,10],[3,9],[4,8],[3,5],[-2,-14],[1,-13],[5,-25],[-4,-2],[-2,-4],[-1,-6],[1,-9],[-2,-1],[-2,-1]],[[84567,41409],[-3,-5],[-4,1],[-3,3],[-3,1],[-1,-2],[-1,-4],[-1,-3],[-3,-3],[-1,2],[-8,6],[-2,4],[0,2],[0,3],[13,6],[7,5],[3,11],[1,5],[3,-1],[3,-3],[2,-7],[-1,-6],[-3,-6],[-1,-5],[3,-4]],[[84600,41435],[-4,-25],[1,-5],[3,0],[3,-2],[2,-5],[-1,-9],[7,-6],[7,-26],[6,-5],[-4,-5],[-24,-19],[-5,-2],[-3,2],[-1,8],[0,6],[2,2],[3,-4],[6,16],[3,6],[4,3],[-3,0],[-9,4],[-3,-2],[-3,-5],[-3,-1],[2,12],[-4,-10],[-3,0],[-4,5],[-4,5],[3,6],[1,6],[0,5],[0,3],[2,5],[2,3],[2,-2],[3,-6],[-1,6],[0,5],[1,5],[2,5],[-5,0],[3,7],[13,18],[5,3],[-2,-7]],[[85609,41482],[-2,-8],[-2,5],[-2,4],[-3,4],[-3,3],[-5,10],[-2,7],[-1,9],[0,42],[2,6],[6,-9],[2,-20],[0,-2],[1,-4],[2,-2],[3,-2],[2,-2],[2,-12],[1,-15],[-1,-14]],[[84703,41607],[-2,-5],[-1,-6],[1,-4],[2,-3],[1,-1],[1,-10],[-1,-7],[-3,-2],[-4,7],[-1,3],[-2,10],[-1,3],[-2,0],[-4,-1],[-2,1],[-1,11],[2,9],[4,2],[5,-10],[1,6],[1,5],[1,5],[2,4],[2,-4],[0,-7],[1,-6]],[[85677,41577],[0,-13],[-8,12],[-15,36],[-2,14],[-1,30],[2,8],[5,-3],[4,-10],[6,-32],[2,-7],[4,-5],[2,-14],[1,-16]],[[87711,41652],[0,-7],[-4,2],[-6,1],[-6,-10],[-4,2],[-1,4],[3,5],[2,4],[3,5],[1,7],[0,4],[-3,1],[0,3],[2,2],[1,6],[2,3],[6,-2],[3,-7],[2,-10],[-1,-13]],[[86008,41663],[-1,-3],[-5,5],[-1,6],[-5,12],[-1,6],[-1,11],[0,3],[2,-2],[5,-6],[3,-5],[2,-6],[2,-7],[1,-7],[-1,-7]],[[85997,41640],[0,-32],[-1,7],[-1,6],[-2,4],[-2,4],[-4,12],[-6,29],[-4,13],[-4,20],[-1,3],[2,7],[2,-1],[2,-4],[3,-2],[12,-37],[3,-14],[1,-15]],[[84779,41893],[-2,-17],[-5,-14],[-1,-4],[1,-7],[5,-15],[1,-9],[-3,-1],[-7,-9],[-1,0],[-1,2],[-2,-2],[-2,-4],[0,-4],[1,-5],[0,-3],[-1,-4],[-2,-2],[-3,12],[-2,5],[-2,3],[-3,-1],[-2,-2],[-1,0],[-1,7],[2,17],[0,18],[2,5],[3,-1],[4,-6],[3,-4],[-1,10],[1,19],[-2,-1],[-5,8],[2,10],[6,8],[4,6],[-1,8],[2,3],[3,-1],[2,-7],[0,-5],[1,-4],[1,-1],[3,-1],[3,-2],[0,-5]],[[85169,42241],[0,-4],[-4,-2],[-3,2],[-4,3],[-4,1],[-5,-2],[-4,-3],[-3,-1],[-2,6],[0,3],[-2,9],[6,2],[9,-2],[9,-6],[7,-6]],[[88002,42289],[-1,-3],[0,3],[1,3],[1,2],[1,2],[-2,-4],[0,-3]],[[87855,42335],[-3,-3],[-3,1],[-3,-2],[-1,-9],[4,0],[2,-5],[2,-7],[2,-8],[-5,-1],[-3,-7],[0,-11],[-2,-9],[-3,-5],[-3,-3],[-4,-2],[-3,2],[2,4],[0,3],[0,3],[0,3],[2,3],[-3,7],[-4,24],[-3,6],[-6,-5],[-1,-13],[1,-16],[0,-11],[-9,8],[-2,5],[0,55],[10,-10],[4,-1],[1,10],[1,11],[3,12],[3,10],[5,5],[2,0],[4,-3],[4,-3],[1,-4],[2,-7],[3,-4],[3,-3],[2,-2],[0,-8],[0,-3],[0,-3],[-2,-4]],[[87978,42364],[-3,-12],[-8,-8],[-2,-6],[0,-8],[1,-6],[3,-4],[3,-1],[3,0],[3,0],[-1,-5],[-4,-12],[2,-9],[0,-7],[1,-6],[4,-6],[4,-3],[14,-5],[5,2],[4,5],[3,9],[1,10],[-1,4],[-2,3],[-2,-1],[-2,-1],[2,3],[1,2],[4,25],[4,-5],[8,3],[5,-3],[1,-4],[3,-8],[1,-9],[1,-7],[-3,-7],[-8,-17],[-3,-8],[-5,-33],[-10,6],[-8,-8],[-7,-16],[-2,-19],[1,-11],[2,-5],[3,-3],[3,-5],[1,0],[3,-3],[1,-4],[-2,-1],[-2,-1],[-2,-2],[-2,-4],[0,-5],[-5,4],[-3,-4],[-1,-7],[1,-9],[-3,7],[-3,3],[-4,-1],[-3,-6],[1,-7],[0,-8],[-1,-16],[3,-24],[0,-7],[2,-4],[3,-2],[5,-1],[8,2],[1,0],[-1,4],[0,9],[2,9],[6,-6],[17,-28],[3,-1],[3,6],[2,6],[2,7],[2,8],[1,9],[2,0],[3,-4],[3,0],[5,3],[4,1],[-3,-4],[-2,-6],[-3,-10],[-1,-1],[-1,1],[-1,0],[-1,-4],[0,-5],[2,-6],[0,-3],[1,-2],[2,-5],[1,-5],[-1,-3],[-4,-3],[-1,-7],[2,-8],[2,-6],[-3,2],[-2,-1],[0,-4],[1,-5],[-3,5],[-3,2],[-2,-3],[-1,-8],[-10,11],[-5,2],[-4,-5],[-3,6],[-6,4],[-11,2],[-5,4],[-3,1],[-4,-3],[-11,-14],[-11,3],[-50,38],[-2,1],[-5,9],[-3,2],[-3,-1],[-9,-6],[-7,-11],[-4,-3],[-1,0],[-2,-1],[-2,2],[1,8],[2,4],[6,7],[3,5],[9,7],[3,6],[3,16],[3,6],[1,5],[-1,7],[-3,12],[-2,19],[-1,35],[0,19],[4,34],[1,18],[-1,8],[-3,9],[-2,10],[1,8],[4,5],[4,-4],[7,-13],[2,3],[7,0],[4,0],[4,9],[-2,8],[3,11],[2,-2],[3,-12],[4,-6],[3,13],[2,-3],[4,-5],[0,16],[4,-4],[4,2],[2,7],[-4,8],[-2,-5],[-2,10],[0,10],[-2,8],[-6,0],[2,6],[1,6],[-1,4],[-4,1],[2,5],[2,3],[3,1],[3,-1],[4,-2],[1,-2],[-1,-2],[0,-2],[0,-3],[0,-7],[0,-2],[1,-1],[2,1],[1,3],[0,1],[1,2],[1,3],[2,2],[3,-3],[5,16],[1,6],[1,5],[7,0],[3,5],[2,-10],[0,-13]],[[87832,42502],[1,-4],[-1,-9],[-8,12],[0,-12],[-4,2],[0,-10],[2,-14],[-4,-13],[-1,-15],[-4,8],[1,10],[4,10],[-2,6],[-2,5],[-3,13],[4,22],[0,16],[-4,9],[-1,11],[-7,8],[7,-1],[4,-14],[4,-2],[4,-13],[5,-16],[1,-4],[1,-4],[3,-1]],[[88007,43285],[-2,-4],[-2,1],[-2,6],[-3,11],[1,14],[5,5],[1,-5],[1,-12],[-1,-9],[2,-7]],[[86779,43284],[-6,0],[-13,21],[2,7],[3,5],[5,3],[3,1],[7,-7],[1,-16],[-2,-14]],[[87478,43300],[-4,-7],[-6,4],[-3,7],[-3,14],[-3,23],[7,-10],[1,-2],[6,-1],[3,-2],[3,-3],[1,-12],[-2,-11]],[[87495,43339],[-10,-8],[-4,2],[-4,6],[-3,3],[0,8],[13,3],[2,-6],[6,-5],[0,-3]],[[87861,43355],[-9,-15],[-10,-7],[-4,-2],[-3,-5],[-3,-5],[-4,-4],[-4,0],[-5,2],[-4,4],[-2,6],[1,6],[0,6],[0,6],[-1,6],[4,-4],[3,-5],[2,-1],[3,4],[5,12],[2,4],[4,-1],[-1,-3],[-1,-5],[0,-6],[1,-3],[2,1],[5,3],[2,0],[5,5],[6,19],[3,4],[7,-6],[-4,-16]],[[87523,43395],[-8,-4],[-3,7],[2,13],[9,-1],[7,-2],[3,-3],[-4,-8],[-6,-2]],[[87908,43419],[-1,-1],[-1,3],[0,5],[2,15],[0,17],[2,15],[5,10],[0,-11],[-5,-29],[0,-6],[1,-4],[0,-4],[-1,-7],[-2,-3]],[[87942,43497],[-2,-6],[-2,-8],[-5,2],[-9,-3],[-3,5],[3,8],[2,2],[6,-2],[3,2],[4,6],[6,11],[4,6],[1,-1],[0,-5],[-2,-7],[-6,-10]],[[87779,43536],[-6,-5],[-8,6],[-2,14],[9,13],[12,12],[8,-6],[-9,-22],[-4,-12]],[[86827,43572],[3,-1],[8,1],[6,2],[1,-4],[1,-10],[-1,-7],[-1,-7],[-2,-6],[-2,-4],[-5,-4],[-7,-3],[-7,0],[-4,7],[-4,10],[-5,12],[-1,13],[6,9],[4,1],[3,-2],[4,-4],[3,-3]],[[87054,43563],[-3,-2],[-4,0],[-3,3],[2,4],[-3,15],[0,7],[4,3],[2,1],[8,11],[6,3],[7,2],[6,-2],[2,-9],[-3,-6],[-6,-3],[-11,-2],[-4,-2],[0,-5],[2,-7],[1,-6],[-3,-5]],[[87904,43645],[-15,-18],[-3,-2],[-1,-3],[-4,-17],[-14,-14],[-2,-5],[-2,-2],[-1,1],[-2,3],[0,2],[-4,-5],[-3,-8],[-4,-8],[-8,-5],[0,5],[-10,-17],[-5,-4],[1,3],[1,3],[0,3],[2,15],[2,5],[4,2],[5,5],[3,9],[3,12],[4,11],[5,5],[0,-5],[5,-11],[5,-7],[2,5],[1,5],[10,25],[1,-2],[1,-2],[1,9],[4,6],[8,10],[9,12],[4,7],[3,9],[1,-14],[-2,-12],[-5,-11]],[[87086,43657],[-5,-3],[-5,1],[-5,2],[-4,0],[-4,-3],[-4,-7],[-4,-7],[-2,-7],[0,5],[1,2],[1,6],[1,6],[-1,6],[0,4],[-2,4],[8,2],[6,6],[4,6],[5,6],[1,-10],[2,-7],[3,-7],[4,-5]],[[86218,43678],[-1,-10],[1,-20],[2,-9],[14,-20],[4,-14],[1,-17],[0,-18],[-2,-15],[-2,-11],[0,-4],[3,2],[2,3],[2,2],[3,1],[4,-1],[9,-6],[1,-3],[4,2],[7,-8],[12,-20],[4,-8],[1,-4],[-1,-11],[-1,-10],[-3,-5],[-13,-11],[-14,1],[-7,-6],[-7,9],[-9,8],[-9,5],[-8,3],[-5,2],[-6,12],[-5,2],[-4,-1],[-7,-6],[-12,-4],[-25,-21],[-8,-2],[-9,0],[-9,3],[-4,7],[-4,9],[-2,6],[0,5],[2,9],[2,2],[6,-3],[5,5],[0,11],[-2,27],[2,12],[5,-2],[8,-12],[8,-3],[6,4],[5,10],[4,13],[-2,14],[-3,49],[3,8],[1,8],[0,8],[-1,7],[-2,5],[-3,2],[-3,-1],[-5,-2],[7,25],[3,7],[3,6],[7,9],[3,6],[8,30],[3,6],[6,3],[5,0],[5,2],[5,8],[1,-14],[3,-16],[4,-16],[7,-23],[0,-7],[-3,-14]],[[86251,43791],[3,-11],[2,4],[3,5],[3,5],[3,1],[5,-3],[3,-7],[3,-8],[1,-9],[-3,-10],[-8,-17],[-1,-10],[3,-9],[3,-2],[3,3],[3,4],[11,25],[5,7],[3,-8],[-4,-19],[1,-4],[3,-5],[6,-18],[1,-7],[8,29],[17,10],[17,5],[8,15],[4,13],[9,2],[9,-4],[4,-7],[2,-5],[8,-6],[2,-5],[2,-27],[1,-7],[2,8],[6,50],[3,5],[5,4],[6,5],[9,20],[6,5],[2,-11],[0,-13],[2,-12],[2,-12],[12,-36],[0,-5],[3,5],[0,12],[-4,19],[0,6],[0,13],[0,6],[-1,0],[-2,0],[-2,1],[-1,2],[0,4],[2,6],[1,16],[3,12],[4,11],[5,8],[7,3],[5,-5],[3,-11],[1,-15],[-1,-3],[-3,-7],[0,-7],[3,-4],[4,3],[1,6],[1,7],[2,5],[3,1],[3,-3],[2,-4],[3,-2],[3,1],[6,6],[3,1],[4,-5],[2,-9],[1,-11],[-1,-11],[6,-4],[1,-13],[0,-15],[3,-15],[1,-5],[1,-3],[1,4],[6,6],[4,-1],[3,-4],[1,-6],[1,-9],[1,-20],[-1,-10],[-2,-7],[-3,-2],[-6,4],[-4,-2],[-3,-11],[-3,-20],[-1,-21],[3,-14],[0,5],[2,-13],[-5,-5],[-7,1],[-3,3],[-1,3],[-6,9],[-3,2],[-2,-4],[-14,-58],[-7,-11],[-3,-13],[-3,-3],[-3,0],[-3,-1],[-8,-9],[-4,-7],[-2,-6],[-2,-5],[-28,-31],[-34,-58],[-5,-5],[-5,4],[-6,16],[-7,13],[-10,11],[-14,10],[-14,17],[-2,2],[-5,2],[-6,5],[-6,6],[-4,7],[-1,3],[3,3],[-1,2],[-1,2],[-3,1],[-1,1],[-14,24],[-8,11],[-2,5],[-3,10],[-2,3],[-5,4],[-7,2],[-5,5],[-2,11],[-1,40],[-1,11],[-1,2],[-3,4],[-2,2],[-6,19],[-2,8],[-6,65],[-1,12],[0,3],[-2,2],[-1,2],[-1,5],[1,7],[0,5],[1,6],[2,5],[-7,16],[-3,10],[-1,12],[0,16],[2,12],[3,10],[4,9],[10,-30],[20,-44]],[[87989,43944],[0,-12],[-5,-32],[-3,-26],[-4,-22],[-1,-19],[-2,-2],[-1,-1],[-1,0],[-6,-7],[-3,-19],[-9,-18],[-3,-26],[-4,-3],[-6,-25],[-13,-31],[-2,-8],[-3,-2],[-1,4],[-2,3],[-2,-2],[-4,-10],[-4,4],[4,8],[2,7],[-5,6],[4,8],[9,13],[9,13],[0,5],[5,11],[0,14],[2,12],[8,28],[11,30],[9,5],[3,22],[3,12],[0,14],[4,6],[2,4],[1,9],[-4,8],[5,13],[1,-2],[1,-1],[1,-1],[1,-1],[1,6],[2,5]],[[86829,43932],[3,-15],[-1,0],[1,-5],[2,-7],[2,-8],[0,-6],[-1,-8],[-2,-1],[-2,0],[-3,-5],[-1,-13],[5,-3],[6,-1],[4,-8],[-6,-7],[0,-8],[2,-11],[2,-16],[-1,-16],[-6,-26],[-1,-17],[-9,20],[-1,20],[-3,18],[-5,17],[-11,30],[-1,5],[1,5],[2,2],[3,2],[2,3],[0,7],[-2,24],[-1,5],[-4,3],[-2,6],[-2,7],[-2,6],[-1,7],[4,-2],[5,-4],[3,-5],[2,4],[4,2],[5,3],[2,8],[1,11],[1,11],[4,7],[5,1],[-1,-8],[-3,-11],[-1,-7],[0,-8],[2,-8]],[[89596,44128],[4,-5],[10,-11],[4,-6],[1,-4],[-1,-6],[-2,-6],[-1,-4],[-3,-4],[-4,-4],[-2,-2],[-2,-6],[-2,-13],[-2,-6],[-2,-2],[-6,-3],[-1,-3],[-2,-15],[1,-14],[1,-13],[-4,-15],[6,4],[5,9],[3,13],[1,13],[3,7],[7,3],[6,-2],[3,-8],[3,-29],[1,0],[3,1],[3,-2],[2,-11],[-2,-19],[2,-12],[3,13],[6,7],[7,1],[5,-4],[1,-6],[2,-18],[1,-6],[3,-8],[3,-8],[3,-19],[1,-17],[1,-18],[3,-14],[1,-2],[-2,-5],[-2,-9],[-1,-14],[0,-18],[2,-17],[5,-11],[3,1],[3,-8],[2,-11],[1,-9],[1,-6],[4,-12],[1,-6],[-1,-5],[-2,-6],[-3,-7],[-6,-24],[-2,-15],[1,-6],[4,-6],[0,-13],[-1,-26],[1,-6],[4,-11],[1,-7],[2,-78],[-2,-50],[1,-9],[3,-8],[15,-26],[4,1],[9,-20],[5,-5],[8,2],[5,3],[11,11],[7,3],[6,-5],[14,-31],[2,0],[5,1],[8,4],[3,-1],[3,-7],[-3,-6],[-4,-2],[-6,-1],[-27,-90],[-2,-3],[-2,-1],[-2,-4],[0,-11],[0,-2],[2,-16],[-1,-7],[0,-6],[-1,-5],[-2,-5],[1,-2],[1,-4],[2,-2],[-3,-11],[-1,-11],[0,-25],[2,-4],[5,-4],[10,-2],[10,4],[3,-2],[5,-8],[2,-2],[12,-17],[1,-2],[1,-5],[3,-10],[1,-9],[1,-37],[1,-13],[3,-11],[5,-9],[3,-4],[11,-7],[4,-1],[4,-3],[4,-7],[8,-15],[0,-4],[-6,-16],[-3,-11],[2,-5],[1,-5],[-9,-30],[-1,-10],[-3,-33],[0,-33],[-2,-11],[6,16],[2,-4],[4,-4],[3,-1],[3,3],[4,7],[3,0],[3,-3],[3,-2],[7,2],[4,4],[4,5],[5,5],[-13,-53],[4,-19],[1,-25],[-3,-47],[7,-73],[0,-77],[1,-8],[1,-4],[10,-16],[0,-7],[4,-10],[2,-6],[0,-7],[0,-5],[-3,-37],[0,-11],[4,-5],[-1,-11],[-8,-33],[-2,-20],[-3,-35],[-3,-23],[-1,-11],[1,-10],[5,-22],[1,-11],[2,-6],[8,-27],[2,-4],[-1,-18],[1,-7],[2,-6],[1,-6],[2,-5],[17,-28],[2,-7],[3,-36],[-1,-10],[3,-13],[1,-56],[11,-78],[10,-37],[6,-17],[7,-15],[4,-6],[4,-5],[4,-3],[5,-2],[10,-1],[2,-4],[2,-11],[3,7],[3,3],[7,2],[12,14],[10,9],[13,28],[4,6],[5,4],[4,9],[3,10],[2,9],[1,16],[0,16],[1,14],[4,7],[1,-3],[2,-5],[1,-4],[1,3],[1,1],[1,1],[1,3],[1,0],[5,-20],[1,-4],[4,-3],[3,0],[3,0],[3,-5],[38,36],[3,4],[5,28],[1,5],[1,1],[0,5],[0,8],[1,3],[2,-1],[4,-4],[4,-3],[2,-5],[2,-5],[1,-3],[3,-5],[12,-36],[-3,-10],[-1,-13],[0,-24],[2,-12],[6,-1],[6,7],[3,8],[1,-9],[-1,-12],[-2,-11],[-3,-4],[-1,-7],[1,-32],[1,-10],[2,-4],[8,-12],[1,-6],[3,-15],[2,-6],[6,-3],[12,6],[4,-1],[4,-8],[3,-10],[4,-10],[7,-4],[18,-1],[4,-3],[2,-5],[1,-4],[0,-5],[1,-6],[2,-5],[5,-9],[-1,-3],[2,-29],[0,-5],[3,-6],[17,-24],[4,-13],[7,8],[6,-5],[6,-10],[7,-5],[4,-1],[5,-5],[4,-2],[4,1],[7,4],[4,0],[-3,-16],[2,-13],[16,-39],[4,-2],[6,4],[9,0],[-4,-16],[-21,-62],[-2,-12],[-4,-42],[1,-10],[4,-17],[2,-16],[3,-6],[3,-4],[4,-1],[4,2],[2,5],[2,17],[5,-8],[2,-12],[-2,-11],[-11,-9],[-5,-9],[-1,-11],[5,-9],[-3,-6],[-1,-6],[1,-6],[-1,-6],[-2,-2],[-4,-5],[-2,-2],[-2,-10],[-1,-13],[0,-9],[3,4],[2,0],[4,-23],[1,-12],[-4,-6],[-1,-2],[0,-6],[1,-5],[2,-3],[0,-2],[10,-16],[1,-3],[2,-13],[1,-6],[-1,-5],[-4,-12],[1,-3],[1,-2],[11,-50],[3,-8],[1,-8],[-2,-28],[0,-10],[1,-6],[2,-3],[1,-2],[0,-5],[-2,-7],[-3,-12],[-1,-8],[1,-11],[2,-7],[6,-12],[12,-33],[6,-21],[3,-20],[0,-22],[-6,-40],[-1,-21],[6,-8],[1,-3],[2,-15],[0,-9],[-2,-8],[-8,-17],[-5,-19],[0,-44],[-4,-20],[1,-7],[1,-6],[3,-5],[3,-3],[5,5],[5,-7],[2,-12],[1,-12],[2,-6],[10,-21],[3,-20],[5,-11],[1,-3],[1,-9],[3,-10],[4,-9],[13,-23],[3,-4],[7,-6],[2,-4],[2,-5],[1,-13],[1,-6],[3,-5],[5,-6],[3,-4],[5,-28],[5,-6],[4,-11],[1,-5],[-1,-8],[-3,-2],[-3,-1],[-3,-3],[0,-8],[2,-6],[3,-6],[3,-9],[0,-4],[0,-10],[1,-4],[3,-2],[2,1],[2,4],[-3,12],[-1,11],[1,9],[2,4],[2,3],[8,15],[2,6],[5,-7],[3,-6],[3,-1],[7,12],[2,5],[2,3],[2,2],[3,0],[5,-3],[1,-7],[-2,-7],[-1,-3],[-3,-6],[0,-2],[-1,-3],[2,-3],[0,-2],[-2,-13],[-2,-5],[-2,-3],[-2,-4],[-5,-21],[-2,-7],[-1,-13],[0,-11],[2,-9],[4,-4],[2,-5],[11,-43],[2,-12],[1,-13],[0,-14],[2,-9],[10,-30],[7,-37],[3,-9],[5,-9],[3,-3],[2,-6],[-1,-26],[1,-35],[-2,-6],[3,-14],[7,-21],[8,-15],[3,-9],[1,-11],[-2,-8],[-7,-13],[-3,-9],[-1,-13],[1,-38],[-1,-2],[-3,-6],[-2,-7],[1,-3],[2,-3],[0,-6],[0,-7],[-1,-4],[4,-12],[2,-6],[-2,-7],[-2,-20],[-1,-4],[1,-9],[-8,-39],[-13,-52],[-2,-18],[-3,-15],[0,-9],[0,-9],[0,-8],[2,-8],[1,-8],[-2,-14],[4,-16],[22,-51],[5,-8],[3,-1],[9,-1],[3,-2],[3,-6],[1,-9],[0,-17],[7,-41],[-1,-12],[5,4],[6,-3],[5,-4],[2,-3],[4,4],[4,0],[10,-6],[-1,-27],[-1,-24],[-3,-20],[-8,-38],[-4,-70],[-1,-4],[0,-4],[-1,-6],[0,-6],[1,-7],[5,-13],[2,-6],[0,-4],[4,-6],[2,-5],[3,-16],[22,-30],[4,-11],[6,-19],[4,-9],[5,-5],[11,-7],[4,-6],[6,-13],[2,-7],[2,-1],[2,0],[3,-1],[19,-24],[10,-6],[15,12],[4,-6],[5,-17],[7,-15],[4,-6],[3,-3],[6,-7],[7,-14],[8,-10],[10,6],[5,-1],[5,7],[9,19],[3,9],[1,12],[0,12],[-2,12],[2,0],[1,-9],[6,-11],[1,-11],[0,-3],[3,-5],[1,-2],[-1,-3],[-1,-5],[-2,-18],[0,-7],[2,-9],[6,-15],[1,-6],[14,-35],[3,8],[6,-1],[15,-8],[6,-6],[3,-1],[2,1],[7,7],[37,-1],[8,10],[1,10],[-3,12],[-3,10],[-7,8],[-2,9],[1,6],[6,-7],[6,-16],[13,-65],[16,-41],[3,-10],[0,-14],[2,-16],[3,-15],[4,-13],[-1,-16],[3,-14],[0,-10],[-10,-1],[5,-4],[3,-6],[6,-19],[19,-44],[10,-3],[18,-1],[-6,35],[-2,5],[0,6],[-1,39],[20,-13],[6,-13],[4,-53],[4,-17],[7,-13],[8,-13],[6,-6],[6,-2],[12,0],[1,3],[1,5],[0,6],[2,2],[2,0],[2,-3],[2,-1],[2,2],[4,6],[3,-4],[9,-19],[2,-7],[2,-5],[19,-5],[16,-11],[7,-1],[-2,-12],[2,-10],[7,-19],[-6,-3],[-5,-5],[3,-5],[1,-5],[-1,-6],[-3,-5],[7,-6],[3,-3],[7,-20],[1,-3],[2,-2],[10,-14],[8,-6],[2,-5],[-2,-9],[4,-2],[5,1],[5,4],[3,5],[1,6],[-3,2],[-5,0],[-4,4],[3,7],[3,1],[4,1],[3,3],[2,7],[-1,7],[-3,4],[-3,2],[-3,4],[-1,8],[0,9],[2,8],[4,3],[3,-5],[3,-7],[4,-4],[7,0],[2,3],[4,8],[5,7],[2,-4],[0,-33],[2,-19],[4,-15],[7,-3],[-2,-8],[-1,-8],[2,-5],[5,1],[3,5],[0,7],[1,7],[1,9],[3,-5],[1,-5],[0,-5],[-2,-5],[6,5],[2,3],[0,-8],[-1,-6],[-2,-6],[-3,-5],[6,-6],[2,-1],[-1,-4],[-1,-5],[0,-6],[0,-6],[11,10],[5,4],[5,-2],[-1,14],[7,-6],[6,-16],[-3,-12],[2,-4],[3,-8],[1,-2],[1,-6],[2,-2],[3,0],[2,-2],[2,-12],[0,-8],[-2,-8],[0,-9],[3,-18],[5,-11],[15,-20],[-7,-2],[2,-10],[5,-13],[3,-11],[-2,2],[-2,1],[-3,-1],[-2,-2],[-2,6],[-3,2],[-3,0],[-2,-4],[-2,8],[-2,6],[-3,4],[-4,2],[1,7],[1,7],[0,8],[-2,7],[-1,2],[-4,5],[-2,1],[-3,-2],[0,-2],[0,-4],[-2,-6],[-1,-6],[-2,-4],[-4,-1],[-4,2],[-2,4],[-1,5],[-3,6],[-6,3],[1,-9],[3,-15],[2,-12],[-2,-13],[-5,-12],[-6,-8],[-6,0],[2,-9],[2,-9],[6,-14],[0,-2],[1,-8],[1,-2],[1,-2],[4,1],[1,-1],[2,-7],[0,-7],[-5,-13],[5,-4],[4,-19],[6,-5],[1,-3],[5,-14],[0,-5],[2,-3],[3,1],[3,3],[2,1],[3,-2],[2,-3],[2,-5],[1,-6],[1,-26],[0,-4],[-2,-3],[-1,-4],[0,-6],[-1,-6],[0,-5],[-2,-4],[-1,-3],[5,2],[4,8],[4,18],[4,-6],[3,-7],[3,-5],[5,-2],[8,4],[4,0],[2,-6],[6,-12],[4,-5],[1,2],[1,3],[1,2],[4,0],[5,-1],[3,-4],[1,-11],[-4,3],[-6,2],[-3,-2],[3,-9],[1,-10],[-3,-9],[-1,-6],[6,-2],[9,6],[4,0],[2,-8],[3,-6],[11,-2],[3,-7],[1,-9],[3,-8],[3,-5],[4,-1],[0,-4],[8,-21],[0,-21],[-10,-33],[1,-23],[8,-32],[2,-5],[2,3],[2,11],[2,3],[2,0],[0,-1],[1,-3],[2,-5],[0,-2],[0,-2],[-1,-3],[2,-1],[3,1],[1,-1],[2,-8],[0,-6],[-1,-2],[-1,-6],[3,-13],[5,-21],[-2,-5],[-2,-4],[-2,-2],[-3,-1],[2,-7],[9,-3],[4,-6],[-5,-8],[-5,-6],[-4,-8],[-1,-13],[1,-16],[4,1],[11,17],[3,-9],[4,-3],[5,-1],[2,-1],[-1,-18],[1,-9],[5,-4],[0,-4],[1,-8],[3,-5],[6,5],[2,6],[3,17],[3,5],[2,-4],[2,-6],[2,-14],[-15,-30],[-1,-10],[1,-14],[5,-23],[3,-7],[1,-4],[0,-5],[-2,-7],[-2,-1],[-3,-1],[-4,-6],[-2,-10],[1,-13],[3,-12],[3,-11],[2,-6],[2,-3],[1,-4],[1,-8],[0,-5],[-2,-14],[0,-7],[1,-12],[2,-13],[11,-37],[1,-9],[1,-28],[2,-12],[11,-37],[-5,-7],[-1,-4],[0,-6],[6,-3],[1,-12],[1,-3],[7,-16],[-1,-6],[-4,-11],[-1,-5],[1,-2],[14,-10],[1,-2],[2,-5],[3,-8],[2,-9],[3,-6],[5,5],[1,-11],[1,-12],[0,-23],[-2,-15],[-3,-8],[-4,-8],[-3,-12],[9,4],[10,11],[10,14],[5,12],[5,22],[3,6],[5,-6],[7,-19],[4,-12],[1,-9],[2,-7],[23,-39],[2,-7],[2,-19],[6,-19],[7,-14],[6,-7],[-7,54],[-19,90],[-5,13],[-2,14],[0,11],[6,-4],[-2,10],[-4,8],[-1,9],[2,12],[3,8],[5,26],[2,20],[3,8],[3,7],[3,2],[5,2],[10,8],[1,-4],[5,-5],[1,-3],[1,-5],[5,-28],[2,-9],[3,-7],[3,-6],[2,-2],[3,-2],[1,-3],[1,-7],[0,-6],[1,-5],[0,-4],[1,-4],[7,-10],[1,-7],[-4,-7],[5,-16],[6,-10],[23,-14],[4,-4],[7,-12],[5,-5],[8,-7],[5,-5],[2,-5],[5,-12],[4,-7],[5,-4],[14,-8],[6,-8],[21,-37],[2,4],[-5,10],[-4,17],[-3,17],[2,9],[0,4],[-10,16],[-3,32],[3,36],[6,26],[3,-5],[7,-8],[5,6],[4,-5],[3,-8],[-5,-5],[2,-5],[0,-5],[-1,-4],[-2,-2],[3,-2],[3,-4],[3,-5],[2,-5],[2,4],[-2,7],[-1,9],[1,10],[4,6],[1,-13],[1,-14],[3,-13],[3,-9],[2,-2],[7,-5],[3,-1],[2,-3],[1,-7],[-1,-7],[-2,-3],[-7,-19],[-5,-5],[-2,14],[-3,3],[-3,-4],[-2,-8],[6,-9],[-4,-16],[7,3],[4,-3],[1,-11],[-1,-16],[1,-9],[3,-3],[3,3],[3,7],[1,7],[1,8],[0,16],[1,14],[3,3],[2,-7],[1,-16],[-2,-34],[2,-16],[6,1],[2,-12],[3,-15],[1,-10],[-2,-11],[-3,-23],[-2,-24],[-2,-21],[-2,-30],[-1,-5],[0,-2],[1,-7],[-1,-3],[-1,-1],[-5,2],[-6,-2],[-2,-3],[2,-6],[2,-4],[5,-7],[2,-3],[0,-6],[-2,-5],[0,-6],[1,-5],[1,-4],[1,-5],[0,-11],[-5,-49],[1,-22],[10,-13],[-2,-10],[0,-9],[2,-9],[4,-8],[0,3],[1,2],[1,3],[5,-13],[-2,-16],[-6,-13],[-7,-6],[8,-61],[8,-14],[9,-24],[2,-8],[-3,-6],[-5,-3],[-11,1],[0,-4],[6,-2],[6,-4],[4,-8],[1,-12],[3,-11],[6,4],[6,9],[2,4],[6,-1],[8,-11],[7,-2],[4,-8],[4,-19],[8,-7],[9,-17],[3,-7],[4,-6],[4,-20],[2,-11],[1,-15],[1,-5],[1,-6],[4,-12],[1,-1],[3,-6],[6,-6],[12,-6],[2,0],[2,0],[3,0],[1,-2],[0,-5],[1,-5],[1,-5],[1,-3],[1,0],[2,1],[3,-1],[3,-2],[1,-5],[3,-11],[2,-5],[16,-32],[5,-15],[4,-14],[1,-4],[2,-2],[1,4],[2,5],[2,3],[4,0],[5,-3],[4,-5],[5,-9],[2,-2],[1,-3],[2,-6],[-1,-4],[-1,-2],[-1,-2],[-1,-2],[0,-12],[2,-6],[2,-5],[5,-4],[1,3],[0,2],[1,1],[0,2],[-1,5],[3,11],[0,9],[1,-3],[2,-3],[1,-2],[7,3],[7,-8],[6,-12],[7,-8],[-3,22],[-2,9],[-3,10],[-4,5],[-8,9],[-1,6],[2,7],[5,3],[5,1],[5,-3],[3,-5],[3,-7],[4,-6],[5,-2],[0,-4],[-6,-12],[3,-9],[5,-3],[0,8],[3,2],[8,14],[0,-18],[2,-21],[3,-19],[4,-13],[7,-12],[4,-5],[5,-1],[2,0],[0,1],[2,3],[1,4],[0,3],[1,4],[2,1],[1,-5],[0,-14],[1,-5],[2,-6],[6,-8],[1,-5],[1,-10],[17,-104],[16,-61],[7,-10],[10,-36],[8,-16],[43,-62],[6,-3],[5,-1],[17,-11],[9,-13],[9,-21],[6,-24],[2,-27],[0,-51],[2,-12],[20,-60],[1,-5],[3,-7],[11,-13],[1,-11],[-1,-5],[-2,-2],[-6,-1],[-1,1],[-4,3],[-2,0],[-2,-1],[-1,-3],[0,-2],[1,-2],[7,-1],[6,-5],[5,-6],[4,-8],[3,-8],[4,-8],[6,-6],[14,-4],[7,-3],[7,-6],[5,-6],[0,7],[0,8],[0,7],[4,3],[1,-3],[2,-14],[3,-3],[14,-5],[3,-2],[1,-6],[0,-16],[4,-54],[-1,-4],[-11,-13],[-2,-5],[-2,-7],[-1,-6],[6,4],[15,18],[5,0],[1,-9],[-2,-6],[-4,-4],[-2,-3],[2,-7],[4,-2],[2,-4],[-3,-10],[-10,-18],[-4,-10],[-2,-14],[3,-35],[0,-15],[-7,-3],[3,-8],[4,-7],[8,-10],[-4,-3],[-2,0],[3,-11],[4,-8],[6,-4],[5,-2],[11,-36],[2,-12],[2,-24],[0,-11],[-1,-2],[-2,-7],[-1,-5],[0,-6],[0,-19],[2,0],[8,32],[1,7],[0,19],[1,11],[3,9],[-3,9],[-1,3],[5,-4],[1,-7],[2,-17],[6,-31],[3,-10],[7,-5],[9,-1],[7,6],[-1,-9],[-5,-15],[-2,-14],[-5,-22],[-3,-7],[-2,-8],[-2,-25],[-2,-6],[-4,-30],[-1,-9],[-8,-60],[-1,-21],[0,-11],[1,-10],[3,-9],[4,-4],[4,-1],[3,-2],[2,-9],[-4,-18],[-2,-20],[-1,-112],[1,-9],[1,-5],[0,-3],[9,-5],[-2,-29],[0,-10],[2,-19],[1,-7],[2,-3],[-3,-4],[-1,-11],[-1,-12],[0,-9],[0,4],[1,-23],[1,-20],[15,-71],[1,-19],[-5,-13],[-10,9],[-11,-3],[-9,-13],[-8,-17],[-2,-7],[-2,-13],[0,-12],[5,-5],[6,-1],[3,1],[3,2],[3,5],[2,-4],[-1,-27],[-3,-7],[-4,-4],[-5,-8],[-3,-12],[1,-9],[3,-7],[4,-6],[5,-5],[12,-7],[5,-7],[2,-11],[2,-27],[2,-12],[5,-10],[4,-1],[4,0],[4,-3],[2,-7],[3,-7],[3,-16],[1,-6],[0,-4],[0,-4],[6,-14],[1,-4],[0,-37],[2,-9],[2,-7],[6,-12],[1,-7],[0,-1],[2,-13],[2,-6],[1,-2],[1,-2],[8,-16],[3,-9],[-1,-8],[-1,-8],[2,-4],[5,3],[3,11],[2,0],[0,-11],[-4,-30],[0,-10],[0,-34],[-4,16],[-2,-6],[-2,-10],[-1,-11],[1,-10],[3,-3],[2,4],[3,7],[2,5],[2,-19],[1,-55],[4,-11],[5,-11],[6,-22],[1,-1],[7,-17],[8,2],[3,-11],[3,-31],[2,-13],[0,-30],[-7,-84],[-1,-26],[4,-51],[2,-10],[11,-22],[2,-10],[0,-3],[-3,-12],[-1,-5],[1,-6],[0,-7],[0,-7],[-5,-19],[0,-13],[3,-26],[-2,-24],[-6,-17],[-17,-28],[-13,-34],[-6,-21],[-4,-22],[-1,-7],[0,-5],[3,-28],[0,-6],[-1,-3],[-6,-3],[-1,-2],[-1,-7],[-12,-39],[-6,-23],[-2,-25],[2,-22],[5,-13],[1,-8],[-3,-10],[-1,-7],[0,-11],[1,-11],[1,-5],[-3,-12],[-2,-27],[-5,-17],[-1,-7],[0,-12],[0,-3],[1,-6],[0,-4],[0,-3],[-3,-7],[0,-4],[0,-14],[2,-10],[-1,-9],[-7,-22],[-1,-11],[-1,-10],[0,-9],[2,-24],[-1,-5],[-4,-9],[-1,-4],[-1,-27],[-1,-13],[-2,-11],[-10,-26],[-1,-9],[-1,-3],[-4,-10],[-1,-7],[1,-6],[1,-16],[0,-33],[-4,-27],[-15,-50],[3,-16],[-4,-23],[-12,-38],[-2,-10],[-2,-19],[-7,-21],[-2,-12],[-6,-49],[-1,-34],[-3,-11],[1,-2],[-6,-47],[3,-10],[1,-50],[7,-23],[2,-4],[2,-4],[3,-3],[3,0],[1,5],[1,2],[2,-2],[2,-6],[1,-6],[-1,-13],[0,-5],[-1,-5],[-5,-9],[-5,-20],[-2,-22],[2,-10],[3,-3],[1,-5],[0,-10],[-5,-7],[-9,-19],[-8,-26],[-1,-20],[-5,-24],[3,-9],[2,-38],[-13,-28],[-4,-17],[0,-15],[5,-11],[1,-9],[1,-5],[-2,-12],[-8,-13],[-8,-16],[-9,-22],[1,-18],[-3,-15],[3,-11],[-5,-7],[-5,-12],[-7,-17],[5,-9],[-1,-8],[-7,-13],[-9,-23],[-2,-20],[3,-9],[-9,-10],[-6,-15],[-8,-11],[-15,-25],[-18,-58],[3,-17],[-8,-15],[-2,-11],[-2,-12],[-1,-15],[2,-9],[5,-4],[3,-8],[5,-5],[1,-8],[-3,-8],[-3,-8],[-2,-8],[-2,-5],[-2,-8],[0,-8],[1,-10],[3,-1],[4,-4],[0,-4],[-1,-3],[-2,-2],[0,-4],[-2,-7],[0,-9],[-3,-11],[-1,-13],[0,-10],[5,-9],[-38,-28],[-13,-15],[-17,-27],[-2,-17],[-6,-3],[-8,-8],[-7,-14],[-5,-13],[-2,-9],[5,-11],[4,-6],[-4,-1],[-1,2],[-2,5],[-1,2],[-1,0],[-3,-1],[-1,1],[-7,10],[-3,2],[0,-2],[-5,-8],[-2,-2],[-14,-9],[7,-10],[2,-2],[21,0],[3,-1],[3,-3],[2,-2],[-1,-2],[-1,-2],[0,-13],[-1,-5],[-3,-2],[-7,2],[-3,-2],[-2,-7],[-1,-3],[-2,-2],[-3,-2],[-14,5],[-21,-8],[-14,-10],[-16,-16],[-6,-8],[-6,-5],[-9,-17],[1,-16],[-5,-7],[-4,-8],[-6,-7],[-4,-9],[0,-13],[0,-12],[-4,-3],[-5,-5],[-6,-13],[-3,-7],[-1,-7],[-1,-8],[-3,-14],[-2,-20],[-3,-8],[-2,-10],[-1,-10],[-3,-9],[-7,-7],[-5,-15],[-2,-12],[4,-11],[-2,-5],[-11,-16],[-4,-5],[0,6],[4,8],[3,15],[-7,10],[-7,-7],[-10,-19],[-1,-4],[5,-10],[-4,-1],[-4,-2],[1,-7],[2,-6],[2,-2],[4,-2],[4,8],[2,5],[3,-2],[-1,-10],[-3,-8],[-2,-12],[-7,-15],[-4,-10],[2,-5],[0,-5],[-4,-6],[2,-9],[1,-4],[-2,-3],[-4,-2],[2,-9],[-1,-3],[0,-4],[-2,-4],[-2,-3],[-2,-1],[-6,0],[-2,-1],[-5,2],[-2,-5],[-3,-4],[-6,-2],[-4,2],[-7,-8],[-4,0],[-3,9],[-3,15],[-4,-8],[-1,-12],[2,-11],[5,-5],[-2,-5],[-1,-3],[-2,-3],[-3,-1],[0,-4],[7,1],[9,20],[5,2],[3,-5],[-3,-17],[-3,-17],[2,-8],[3,7],[3,9],[2,18],[4,-15],[-5,-30],[-4,-15],[-1,-16],[0,-3],[2,-6],[2,-7],[0,-6],[-3,-14],[-1,-26],[-3,-3],[-4,1],[-3,0],[-4,-8],[-2,-9],[0,-6],[2,-4],[4,-2],[3,4],[2,6],[0,2],[2,-8],[0,-13],[-5,-27],[2,-8],[-4,-18],[-2,-6],[-3,-7],[-2,3],[-8,19],[-3,5],[-6,-3],[-1,-6],[-1,-8],[-3,-8],[-5,-2],[-6,2],[-5,0],[-3,-8],[8,-4],[2,-2],[3,-5],[2,0],[3,9],[17,-4],[3,0],[0,-10],[-2,-3],[-13,-1],[-1,1],[-1,-1],[-2,-4],[-1,-5],[-1,-5],[-2,-4],[-4,-3],[3,-2],[7,0],[2,-2],[0,-6],[-3,-6],[-5,-8],[-10,-15],[-5,-8],[-7,-7],[-12,-16],[-5,-11],[-11,-25],[-8,-24],[-4,-16],[1,-20],[-6,-26],[-1,-26],[4,-21],[-6,-9],[-3,-17],[-4,-9],[-5,3],[4,11],[-2,5],[-4,2],[-2,0],[-1,-2],[-10,-20],[2,-6],[1,-2],[3,-1],[6,1],[3,-5],[8,-13],[4,-6],[5,-1],[-9,-2],[-3,-12],[-7,-74],[-4,-18],[-6,-8],[-9,-6],[-7,-31],[-7,-7],[0,-2],[3,-6],[4,-6],[3,-2],[4,-3],[0,-5],[-4,-4],[-5,0],[2,-6],[6,-5],[3,-6],[-2,-4],[2,-4],[-3,-16],[6,-10],[9,-5],[6,-2],[1,-4],[-3,-19],[0,-14],[-3,-8],[-7,-11],[-2,6],[-4,6],[-2,7],[1,7],[3,9],[-3,13],[1,8],[-5,5],[-5,-2],[-5,-4],[-10,-5],[-2,-8],[-3,-22],[5,-2],[2,-8],[-1,-10],[1,-6],[1,-2],[4,-7],[5,2],[4,4],[4,1],[1,-6],[0,-9],[-2,-10],[-1,-8],[-3,-2],[-2,0],[-2,1],[-1,-1],[-1,-2],[-2,-3],[-2,-3],[-2,-2],[-6,14],[-13,-2],[-7,-5],[-7,-5],[-9,-10],[-2,-5],[-1,-10],[-1,-6],[-2,-4],[-3,-5],[-6,-15],[-3,-10],[-2,-11],[0,-15],[1,-9],[1,-3],[0,-2],[-2,-6],[-8,-12],[-1,-3],[-2,-10],[-3,-9],[-4,-8],[-2,-7],[-1,-12],[0,-31],[0,-6],[-5,-5],[-5,-13],[-11,-36],[-7,-36],[-4,-13],[-5,-5],[-6,3],[-6,8],[-3,-3],[-8,-5],[7,-15],[2,-16],[1,-4],[3,-8],[1,-6],[-1,-14],[-2,-7],[-4,-3],[-7,-4],[-1,-2],[-10,-20],[-1,-3],[0,-8],[3,-16],[1,-10],[-2,-41],[-2,-22],[-5,2],[-7,6],[-5,-8],[1,-5],[0,-3],[-3,-5],[2,1],[1,0],[2,1],[1,3],[5,-5],[4,-8],[3,-10],[-6,-22],[-1,-13],[1,-13],[6,-34],[0,-12],[-3,-5],[0,-3],[2,-13],[0,-7],[-1,-5],[-3,-5],[-5,-8],[-5,-10],[-3,-11],[-3,-12],[-1,-13],[2,-14],[0,-6],[-1,-4],[-3,-12],[-1,-7],[2,-25],[1,-14],[-2,-12],[-8,-22],[-10,-37],[-1,-10],[-1,-11],[0,-13],[-2,-15],[-4,-15],[-5,-12],[-5,-9],[3,-13],[-1,-11],[-7,-20],[-2,-14],[2,-6],[4,-3],[5,-6],[-3,-7],[-3,-10],[0,-12],[1,-9],[3,-5],[1,-4],[1,-5],[0,-7],[0,-5],[-2,-4],[-1,-1],[-1,2],[-2,3],[-4,-5],[-5,-8],[-1,-4],[-3,-3],[2,-7],[4,-7],[5,-3],[4,1],[3,2],[2,0],[3,-3],[11,-15],[2,-5],[2,-9],[1,-19],[1,-9],[10,-28],[0,-5],[-7,6],[-6,4],[-6,0],[-6,-5],[-4,-10],[0,-9],[6,-22],[-4,-24],[0,-22],[3,-23],[5,-25],[-4,-8],[-5,-13],[-16,-10],[-33,-5],[3,2],[1,3],[0,4],[-2,4],[4,9],[-1,5],[-4,-1],[-2,-10],[-4,3],[-11,5],[11,-30],[2,-10],[-3,-8],[-9,-14],[-3,-16],[-10,-25],[-3,-6],[-14,-6],[-2,-4],[-1,-5],[-3,-5],[-5,-4],[-12,-3],[-6,-6],[-1,-3],[-3,-10],[-2,-3],[-3,-2],[-38,0],[-12,-7],[-7,-15],[-2,4],[-2,4],[0,4],[0,6],[-2,2],[-22,0],[-6,2],[-4,6],[-12,-8],[-42,0],[-11,-4],[-32,-1],[-6,-3],[-8,-10],[-4,-2],[-33,7],[-83,-7],[-49,-20],[-59,-36],[-44,-40],[-47,-56],[-54,-83],[-59,-105],[-28,-45],[-27,-58],[-25,-37],[-3,-3],[-1,-3],[-9,-24],[-3,1],[-1,6],[4,8],[-5,3],[-39,-15],[-13,2],[-7,-2],[-12,-14],[-6,-1],[-6,2],[-7,1],[-13,-6],[-7,-6],[-3,-7],[-3,-5],[-6,9],[-5,11],[-1,4],[-5,3],[-26,-4],[-5,-2],[-4,-6],[-12,-24],[10,-17],[1,-4],[2,-10],[3,-6],[1,-1],[5,1],[1,-1],[0,-4],[0,-4],[0,-3],[1,-8],[0,-7],[1,-6],[4,-3],[-2,-12],[2,-6],[5,-2],[4,4],[4,7],[6,15],[5,6],[3,1],[5,-1],[3,2],[1,5],[1,6],[0,5],[1,6],[3,10],[4,6],[4,0],[4,-11],[-2,-8],[0,-10],[0,-17],[0,-6],[2,-4],[1,-4],[1,-4],[0,-5],[0,-2],[0,-2],[0,-6],[-2,-3],[-3,-5],[-3,-7],[-2,-9],[0,-6],[-3,-18],[0,-9],[0,-4],[2,-2],[2,0],[4,4],[1,-2],[4,-22],[-2,-4],[-3,-1],[-5,-3],[-4,-6],[0,-5],[2,-7],[-1,-11],[-3,-5],[-4,-4],[-5,-2],[-4,3],[-8,7],[-4,6],[-3,8],[-1,10],[2,3],[4,3],[1,8],[-2,6],[-11,10],[-3,6],[-7,19],[-4,33],[-19,42],[-25,29],[-21,-7],[-2,-9],[-1,-11],[0,-18],[-3,-3],[-15,-5],[-5,2],[-2,6],[-5,39],[-12,42],[-9,24],[-15,26],[-3,9],[8,-5],[11,-17],[8,-2],[-6,18],[-6,11],[-9,6],[-12,1],[-10,-4],[-16,-19],[-12,-1],[-8,11],[-11,40],[-4,9],[-4,2],[-15,15],[-15,4],[-5,4],[0,3],[6,3],[7,6],[3,8],[-3,8],[3,8],[1,9],[-1,10],[-3,10],[8,8],[3,-1],[3,-3],[2,-3],[1,-1],[6,1],[5,8],[3,7],[2,4],[5,4],[-1,10],[-4,10],[-6,5],[-1,3],[1,7],[1,9],[-1,6],[-4,10],[-8,23],[-3,7],[-5,3],[-5,1],[-13,-4],[-10,0],[-2,-3],[-1,-4],[-2,-1],[-4,6],[-5,3],[-7,-1],[-4,-4],[2,-9],[-2,-5],[-3,-5],[-2,-5],[-2,-15],[-3,-3],[-3,-2],[-2,-6],[0,-6],[5,-9],[1,-7],[0,-14],[1,-16],[-25,7],[-7,-3],[-2,-5],[-1,-7],[-2,-6],[-9,-5],[-3,-7],[-4,-15],[2,-4],[-5,-3],[-20,-3],[-3,-7],[-6,5],[-10,12],[-43,77],[-5,6],[-6,2],[-4,3],[-1,6],[1,4],[2,-2],[3,-4],[10,-3],[5,-6],[10,-18],[5,-4],[13,0],[12,4],[17,14],[8,4],[3,5],[1,6],[-1,6],[0,5],[2,5],[6,8],[1,4],[2,10],[1,6],[2,5],[5,10],[3,10],[13,28],[3,20],[-1,22],[-5,22],[-7,17],[-2,3],[-9,5],[-3,4],[-2,4],[-6,21],[-3,24],[-3,12],[-5,10],[-8,9],[-7,-1],[-1,-18],[-18,4],[-5,-3],[-2,-8],[-1,-9],[-2,-8],[-3,-5],[-5,-3],[-5,-3],[-4,-2],[-3,-4],[-11,-17],[-2,-5],[-4,-7],[-32,-18],[-4,-6],[-3,-8],[-3,-7],[1,-5],[1,-4],[0,-4],[-3,-4],[-3,0],[-3,2],[-2,3],[-2,4],[-8,-5],[-16,-1],[-6,-7],[-3,-16],[5,-7],[15,-1],[25,-11],[9,3],[7,6],[20,23],[14,-13],[6,-11],[-2,-15],[-1,-4],[0,-8],[0,-3],[-2,-2],[-4,0],[-2,-2],[-5,-9],[-2,-7],[-2,-8],[-1,-14],[-11,-4],[-23,2],[-3,-3],[-2,-3],[-2,-2],[-4,0],[-3,1],[-6,5],[-3,2],[-7,-2],[-5,-5],[-26,-33],[-14,-23],[-3,-3],[-6,-1],[-3,-2],[-2,-3],[-4,-10],[-2,-4],[-14,-7],[-1,-2],[-3,-9],[-2,-2],[-12,-4],[-5,-6],[-15,-29],[-1,-3],[1,-5],[0,-5],[-2,-7],[-4,-4],[-7,-3],[-3,-3],[-4,-9],[-6,-26],[-5,-5],[-2,-3],[-3,-5],[-4,-10],[-3,-5],[-28,-16],[-5,-2],[-6,-4],[-3,-9],[-3,-10],[-3,-12],[0,-1],[0,-2],[-1,-2],[-2,-1],[-3,1],[-1,0],[-10,-10],[-3,-5],[-7,-17],[-5,-6],[-6,-3],[-5,5],[-9,16],[-4,3],[-1,2],[-3,9],[-1,2],[-11,7],[-10,12],[-5,3],[-7,2],[-26,-4],[-5,4],[-5,8],[-5,9],[-2,9],[-17,27],[-10,13],[-6,5],[-31,10],[-13,10],[-8,3],[-5,6],[-2,1],[-10,4],[-14,24],[-7,7],[-23,32],[-18,17],[-10,14],[-4,3],[-2,3],[-1,1],[-2,0],[-1,1],[-4,13],[1,3],[-1,3],[-4,1],[-3,-2],[-1,-6],[-1,-6],[-1,-6],[-6,5],[-3,4],[-6,11],[-4,3],[-24,0],[-8,-4],[-4,-11],[-12,-8],[-14,4],[-23,20],[-30,39],[-10,10],[-3,1],[-10,-1],[-4,2],[-6,5],[-29,5],[-11,-3],[-13,-10],[-12,-14],[-4,-18],[2,-9],[6,-11],[2,-8],[0,-8],[-1,-2],[-8,2],[-2,1],[-1,2],[-2,1],[-2,-2],[-6,-10],[-1,-4],[-1,-7],[-2,-5],[-4,3],[-3,7],[-4,15],[-3,7],[-3,3],[-4,3],[-4,1],[-5,1],[-5,-2],[-1,-3],[0,-6],[-2,-7],[-3,-2],[-5,3],[-4,5],[-2,4],[1,5],[4,11],[2,9],[1,4],[-1,10],[-2,8],[-4,9],[-45,70],[-22,27],[-41,34],[-4,6],[-6,3],[-66,-9],[-6,1],[-6,4],[-5,6],[-5,7],[-2,2],[-7,-1],[-2,3],[-3,6],[-2,3],[-6,5],[-21,35],[-6,7],[-11,6],[-5,5],[-1,2],[-1,8],[0,2],[-2,1],[-3,2],[-1,1],[-3,6],[-1,4],[0,8],[-1,9],[-4,18],[-14,40],[-2,11],[-11,38],[-8,14],[-21,28],[-7,15],[0,4],[6,4],[0,11],[-5,12],[-6,6],[-3,2],[-5,8],[-4,2],[-1,0],[-3,3],[-1,1],[-2,-2],[-1,-4],[0,-4],[0,-2],[-9,8],[-54,130],[-7,28],[-8,24],[2,6],[4,3],[5,7],[2,16],[-4,13],[-5,13],[-4,15],[-1,23],[-2,8],[-5,10],[-7,7],[-3,5],[-1,8],[31,31],[9,13],[7,20],[4,22],[2,25],[-2,78],[-1,8],[-34,147],[-26,100],[-19,76],[-6,10],[-9,14],[-11,30],[-2,9],[-3,7],[-51,90],[-21,35],[-10,11],[-9,17],[-8,8],[-10,16],[-9,8],[-9,17],[-9,6],[-14,18],[12,6],[11,-12],[97,-155],[28,-47],[14,-30],[18,-43],[10,-36],[18,-69],[2,0],[-2,26],[-15,64],[-3,23],[-2,9],[-33,74],[-5,8],[-11,7],[-4,8],[-7,17],[-53,82],[-5,3],[-18,26],[-3,6],[-11,12],[-3,4],[-2,11],[2,7],[4,3],[5,-4],[1,15],[2,9],[8,14],[6,8],[5,-3],[9,-15],[4,-4],[5,-2],[4,-5],[2,-11],[-1,-14],[-2,-9],[-1,-6],[2,-10],[2,-2],[3,0],[1,-1],[0,-9],[-2,-4],[-4,-4],[-2,-6],[1,-8],[4,-3],[15,-4],[5,0],[6,8],[1,11],[-1,13],[2,11],[4,12],[-1,9],[-20,32],[-4,4],[-9,4],[-4,4],[-1,7],[3,4],[9,3],[1,3],[1,2],[1,3],[3,1],[3,-1],[16,-7],[3,2],[3,8],[1,7],[-3,7],[-3,7],[-2,7],[4,24],[0,7],[-3,4],[-4,-4],[-6,-12],[-4,24],[-9,15],[-13,7],[-12,2],[1,-3],[1,-2],[1,-2],[2,-1],[-4,-9],[-13,-13],[-5,-8],[-4,-5],[-8,-2],[-8,1],[-5,4],[-13,-10],[-6,-8],[-2,-13],[1,-17],[4,-6],[12,-7],[5,-6],[2,-7],[-2,-5],[-7,-3],[-3,2],[-6,5],[-16,5],[-2,4],[-3,9],[-2,4],[-3,1],[-21,-3],[-3,-4],[4,-11],[5,-3],[20,-1],[3,-1],[3,-3],[4,-10],[3,-2],[4,1],[3,3],[2,0],[6,-6],[-2,-5],[-5,-4],[-7,-1],[-3,1],[-5,2],[-3,1],[-3,-1],[-5,-6],[-3,-1],[-5,3],[-10,11],[-7,2],[-12,-2],[-24,-12],[-6,-5],[-3,-7],[-2,-10],[-4,-8],[-10,-13],[-11,-8],[-26,-7],[-44,3],[0,5],[-4,-6],[-6,-5],[-6,-4],[-6,-2],[-6,2],[-6,5],[-14,24],[0,6],[1,7],[2,15],[2,10],[4,9],[6,7],[27,23],[8,12],[8,18],[7,22],[4,10],[5,5],[4,2],[6,6],[5,6],[3,6],[2,12],[-1,24],[1,13],[2,5],[2,3],[2,4],[2,8],[0,7],[-2,6],[-1,5],[-1,6],[0,11],[2,34],[3,11],[8,21],[2,11],[-1,25],[-5,48],[-1,24],[2,49],[2,12],[4,1],[5,-7],[4,-12],[0,11],[-1,14],[-3,11],[-5,4],[-3,2],[-3,4],[-2,6],[0,6],[-2,3],[-7,4],[-3,3],[-1,6],[0,6],[0,6],[-1,7],[-1,4],[-10,17],[-8,11],[-3,8],[-5,23],[-3,10],[-10,10],[-4,12],[-5,27],[-10,70],[-6,19],[-9,10],[-4,6],[-1,6],[3,12],[-1,11],[-17,40],[-6,9],[-3,-7],[-1,-13],[-3,-11],[-10,-27],[-2,-10],[0,-12],[4,-12],[2,-4],[1,-5],[1,-5],[-11,-29],[-19,-34],[-1,-9],[-9,-57],[-1,-9],[0,-17],[0,-7],[-2,-5],[8,-20],[-4,-12],[-3,-13],[-2,-15],[-2,-41],[-1,-8],[-1,-8],[-5,-14],[-1,-5],[-2,-7],[-5,-12],[-1,-5],[0,-8],[-4,-26],[-7,-35],[-3,-19],[3,-15],[-6,-8],[-2,-7],[2,-20],[-1,-20],[0,-2],[-1,-2],[-8,-7],[-7,-16],[-2,-4],[-4,-1],[-14,8],[-11,16],[-5,6],[-4,0],[-8,0],[-3,1],[-5,6],[-2,1],[-11,0],[-5,-1],[-6,-3],[-6,-7],[-9,-18],[-5,-4],[-20,4],[-6,-4],[-8,-15],[-5,-16],[-6,-10],[-13,0],[-17,9],[-6,0],[-17,-17],[-7,-17],[-11,-7],[-11,1],[-5,14],[-1,3],[-4,5],[-1,5],[0,4],[3,9],[1,6],[2,7],[9,9],[4,6],[-2,4],[2,4],[5,5],[2,3],[1,4],[2,8],[6,21],[0,9],[-1,11],[-3,9],[-1,5],[-1,5],[3,9],[7,11],[1,7],[-2,11],[12,29],[1,10],[3,0],[18,-14],[12,-1],[24,11],[12,1],[6,-3],[2,-6],[3,-4],[14,-6],[5,-6],[4,-4],[8,5],[8,17],[1,20],[0,23],[2,26],[4,17],[2,7],[0,7],[-1,14],[1,7],[9,57],[-4,16],[-1,21],[-4,17],[1,25],[-1,10],[-6,11],[-4,-2],[-4,-8],[-4,-4],[0,5],[6,26],[2,9],[1,1],[4,-1],[1,0],[0,3],[1,6],[2,7],[2,13],[2,43],[0,13],[0,14],[-2,13],[-3,13],[-5,17],[-1,5],[1,5],[2,4],[2,2],[7,-7],[3,-1],[4,8],[8,30],[2,9],[-1,8],[0,5],[-3,13],[-2,6],[-1,1],[3,9],[3,10],[5,10],[6,9],[7,6],[2,6],[1,7],[1,5],[-2,7],[-2,5],[-2,4],[-2,4],[4,5],[4,7],[6,15],[14,23],[3,3],[11,37],[6,19],[5,-3],[2,0],[17,43],[5,17],[7,6],[1,-6],[-3,-10],[2,-8],[7,7],[1,7],[-1,15],[2,15],[0,15],[-2,10],[-3,14],[-4,19],[-3,10],[-3,8],[-3,7],[-3,10],[1,13],[1,9],[-2,9],[-5,12],[-7,18],[-2,20],[3,8],[2,12],[3,12],[4,9],[11,6],[16,22],[2,0],[2,-4],[2,0],[1,1],[3,6],[1,1],[4,-2],[3,-4],[2,-1],[4,5],[1,6],[1,3],[-1,2],[0,5],[0,14],[0,4],[-2,9],[-1,10],[-3,8],[-3,7],[-2,3],[-7,-1],[-2,2],[-2,5],[-1,3],[-16,128],[0,8],[3,6],[7,7],[-11,18],[-2,4],[-1,3],[-2,2],[-2,1],[-3,3],[-3,1],[-1,3],[0,2],[0,3],[0,2],[-1,3],[2,11],[0,5],[-2,5],[-6,11],[-3,8],[-2,9],[1,8],[4,7],[-3,5],[-2,1],[-3,1],[-2,2],[-1,5],[-1,12],[-1,3],[-3,-3],[-1,-9],[-1,-12],[-1,-8],[2,-12],[0,-14],[0,-25],[-2,-14],[0,-6],[7,-5],[3,-6],[2,-8],[1,-8],[2,-24],[0,-40],[0,-6],[-1,-5],[-2,-7],[-3,-14],[-2,-6],[-2,-1],[-2,3],[-1,1],[-2,-7],[0,-5],[0,-7],[1,-6],[5,-13],[1,-7],[-2,-5],[-7,-1],[-4,0],[-2,2],[-6,6],[-8,14],[-5,2],[-7,-6],[-6,-9],[-4,-9],[0,-4],[0,-12],[0,-5],[-1,-4],[-22,-44],[-6,-6],[-6,-5],[-5,-7],[-2,-13],[0,-14],[-1,-12],[-2,-10],[-13,-42],[-1,-11],[-2,-46],[-2,-14],[-3,-11],[-11,-29],[-3,-11],[-15,-67],[-8,-24],[-6,-11],[-5,-4],[-8,-16],[-7,-4],[-13,-3],[-18,-8],[-2,1],[-2,1],[-3,5],[-1,3],[0,4],[-1,5],[-6,8],[-5,2],[-5,-7],[-1,-13],[-1,-5],[-3,-5],[-3,-3],[-2,-1],[-3,-3],[0,-6],[1,-7],[1,-3],[16,12],[5,-1],[-15,-17],[-3,-6],[-6,-7],[-6,-1],[-7,0],[-7,-2],[-5,-6],[-3,-7],[-5,-5],[-7,-2],[-3,-3],[-4,-11],[-2,-3],[-2,-1],[-7,-7],[-17,-11],[-5,-7],[-2,-4],[0,-4],[-1,-12],[-11,-15],[-8,-15],[-5,-6],[-12,-5],[-5,-6],[-17,-27],[-3,-6],[-1,-6],[0,-12],[-1,-6],[-1,-6],[-4,-8],[-2,-6],[-3,-16],[-7,-14],[-17,-59],[-9,-14],[-17,-14],[-6,-17],[3,-9],[-2,-6],[-2,-5],[0,-6],[3,-8],[1,-7],[-1,-18],[-2,-20],[-4,-10],[-4,1],[-2,17],[-3,13],[-7,-3],[-14,-16],[-8,-1],[-4,-3],[-4,-8],[-1,-9],[-2,-17],[-2,-7],[6,-18],[1,-10],[-3,-9],[-6,11],[-5,2],[-5,-8],[-2,-15],[0,-6],[-1,-11],[-1,-7],[1,-5],[5,-10],[2,-7],[-2,-13],[-6,0],[-6,1],[-3,-6],[-1,-6],[-6,-7],[-1,-4],[2,-6],[3,-3],[9,0],[5,1],[6,4],[4,5],[11,20],[1,2],[4,-3],[2,-5],[2,-3],[3,3],[1,6],[0,13],[1,5],[2,3],[2,-1],[2,-4],[1,-8],[0,-26],[-2,-10],[-3,-10],[-5,-9],[-3,-7],[-1,-9],[9,-41],[-1,0],[0,-9],[1,-3],[3,-8],[-2,-6],[-7,-4],[-4,-6],[-5,6],[-5,25],[-4,5],[-3,2],[-7,7],[-4,1],[-1,4],[0,5],[-1,5],[-9,19],[-11,9],[-12,-2],[-10,-17],[-2,-12],[-1,-2],[-1,-2],[-2,0],[1,-5],[1,-7],[0,-6],[-3,-3],[-13,0],[-3,3],[0,7],[0,8],[0,7],[-5,18],[-26,50],[-10,27],[-5,11],[-8,11],[-12,10],[-4,4],[-3,3],[-8,-3],[-3,2],[6,21],[0,7],[-5,11],[-10,17],[-10,13],[-6,3],[-5,-2],[-5,-3],[-6,-2],[-4,-4],[-5,-8],[-5,-5],[-4,5],[1,11],[8,22],[3,10],[1,13],[3,8],[3,5],[4,8],[1,6],[1,7],[1,5],[2,3],[3,-3],[0,-6],[-3,-14],[1,-13],[4,-7],[4,-4],[20,-8],[4,-2],[-5,-7],[-2,-7],[1,-7],[4,-8],[8,-5],[2,-4],[-4,-7],[3,-7],[5,-8],[6,-6],[4,-3],[3,1],[5,6],[17,5],[2,7],[-6,4],[-12,3],[0,7],[1,11],[0,6],[-1,8],[-3,-2],[-3,-5],[0,-2],[-3,-5],[0,-5],[0,-1],[-3,2],[-2,4],[-1,6],[-1,7],[0,6],[0,2],[-1,7],[0,6],[4,5],[1,5],[0,7],[0,7],[-2,12],[-6,17],[-2,9],[-4,78],[-5,32],[-7,25],[-10,1],[-6,11],[-2,6],[-2,7],[5,2],[5,4],[2,7],[-2,7],[1,7],[0,6],[-1,5],[0,7],[0,26],[-2,12],[-4,10],[-7,17],[-8,35],[-4,5],[-6,3],[-4,6],[-21,44],[-16,29],[-17,20],[-3,6],[-6,9],[-2,3],[-5,15],[-2,3],[-9,8],[-2,4],[4,5],[-2,12],[1,11],[3,11],[1,12],[0,27],[-1,12],[-2,12],[-9,39],[-3,24],[-4,10],[-9,16],[-10,21],[-3,4],[-6,6],[-3,3],[-3,10],[5,3],[6,0],[4,2],[0,7],[-3,13],[-3,11],[-4,5],[-6,2],[-18,11],[-7,-2],[-3,-8],[1,-10],[4,-5],[8,1],[3,-1],[2,-6],[1,-6],[2,-4],[2,-3],[2,-5],[-2,-1],[-3,-2],[-2,-4],[-2,-5],[-7,20],[-4,6],[-13,5],[-18,21],[-9,2],[-6,-4],[-6,-7],[-7,-3],[0,4],[-2,6],[-3,4],[-1,-4],[0,-8],[-1,-8],[-1,-6],[-4,-4],[-15,25],[-2,10],[-1,12],[-1,11],[-6,29],[-3,7],[-3,3],[-6,1],[-8,-2],[-3,2],[-3,7],[4,6],[9,4],[4,6],[0,12],[-2,11],[-4,9],[-4,5],[-3,0],[-2,-3],[-1,-3],[-1,-2],[-3,2],[-5,6],[-11,2],[-4,3],[-2,11],[2,3],[3,9],[3,5],[7,10],[3,4],[2,14],[-2,17],[-5,16],[-10,28],[-1,4],[2,7],[4,1],[8,-4],[21,-1],[7,-3],[-4,-9],[-1,-5],[-1,-6],[0,-6],[0,-8],[0,-7],[1,-4],[4,-3],[2,2],[1,14],[2,7],[3,9],[6,8],[2,4],[1,6],[2,12],[4,14],[0,11],[-7,43],[-5,20],[-7,18],[-9,16],[-13,23],[-5,3],[-4,0],[-2,-1],[-3,-3],[-3,-6],[-2,-1],[-5,5],[-3,2],[-6,-4],[-4,-10],[-3,-10],[-3,-4],[-7,2],[-5,3],[-4,-2],[-6,-11],[-2,-6],[-1,-4],[-1,-4],[-4,-2],[-3,-1],[-3,1],[-2,3],[-1,7],[0,3],[2,7],[1,2],[0,2],[-1,7],[0,3],[-1,18],[1,4],[2,12],[4,13],[4,6],[1,-8],[3,-5],[5,1],[5,7],[0,11],[-2,8],[-9,20],[-2,10],[-2,7],[-13,24],[-4,14],[-2,2],[-4,-1],[-3,-4],[-2,-5],[-1,-2],[-4,1],[-2,4],[-1,6],[0,16],[-1,3],[-2,0],[-5,5],[-6,3],[-3,3],[-3,4],[0,1],[0,2],[1,7],[-1,6],[-2,2],[-3,1],[-3,3],[-1,6],[3,4],[2,4],[1,4],[-3,8],[-6,5],[-7,2],[-6,1],[-5,-4],[-1,-11],[0,-14],[-2,-11],[-3,-5],[-3,0],[-12,11],[-4,5],[-1,3],[-1,15],[-3,2],[-7,-11],[-3,-1],[-4,1],[-2,-2],[-1,-8],[1,-6],[2,-2],[7,-2],[6,-6],[5,-8],[1,-7],[-6,-4],[-2,2],[-5,6],[-3,1],[-2,-2],[-1,-4],[-1,-4],[-3,-2],[-15,3],[-9,4],[-6,5],[-7,-14],[-2,-3],[-3,2],[-4,9],[-6,3],[-6,5],[-3,1],[-3,-1],[-5,-5],[-2,-1],[-2,0],[-1,2],[-1,4],[-2,6],[-22,41],[-6,6],[-6,1],[-2,-2],[-2,-4],[-3,-3],[-3,1],[-1,5],[0,9],[-2,7],[-3,4],[-6,3],[-18,28],[-7,14],[-13,21],[-6,3],[-6,1],[-13,-2],[-13,2],[-20,8],[-7,1],[-13,-4],[-6,-4],[-5,-5],[-4,-5],[-2,-12],[1,-8],[3,-7],[4,-10],[-3,-2],[-3,1],[-6,5],[-6,4],[-6,0],[-6,-1],[-14,-11],[-13,-3],[-12,3],[-11,9],[-9,16],[-15,35],[-9,14],[-43,50],[-38,57],[-69,72],[-53,45],[-47,31],[-11,2],[-12,-10],[-28,-37],[-44,-28],[-12,-4],[-26,1],[-42,12],[-65,0],[-12,7],[-31,0],[-6,-2],[-16,-10],[-37,3],[-53,-15],[-60,-4],[-19,-11],[-5,-2],[-24,0],[-16,-7],[-6,-1],[-18,1],[-6,-1],[-17,-12],[-4,-1],[-9,1],[-25,-7],[-3,-1],[-17,-10],[-44,-42],[-4,-9],[-9,-6],[-19,-25],[-121,-102],[-56,-39],[-70,-23],[-50,-35],[-6,-2],[-3,-2],[-5,-11],[-1,-2],[-68,-37],[-49,-12],[-6,-4],[-2,4],[-8,-6],[-33,2],[-32,-6],[-9,6],[-8,-6],[-23,-4],[-84,20],[-27,16],[-8,9],[-12,2],[-5,3],[-3,-2],[-11,-6],[-3,-4],[-4,-9],[-2,-3],[-7,-4],[-20,4],[-8,-7],[-14,-13],[-16,-15],[-19,-25],[-36,-50],[-37,-53],[-18,-9],[-38,-22],[-22,-23],[-45,-43],[-17,-10],[-5,-2],[-5,-3],[-27,-57],[-19,-20],[-24,-15],[-11,-6],[-52,-15],[-45,-14],[-12,-8],[-5,-7],[-12,-21],[-3,-5],[-6,-3],[-6,-7],[-10,-18],[-13,-31],[-6,-21],[-4,-20],[-1,-25],[-2,-13],[-3,-9],[-4,-9],[-10,-41],[0,-5],[0,-4],[0,-5],[-1,-6],[-3,-14],[-2,-14],[-5,-27],[-1,-11],[-1,-28],[-3,-12],[-5,-5],[-6,-2],[-6,-6],[-4,-7],[-3,-9],[0,-2],[0,-1],[0,-3],[0,-2],[-2,-3],[-12,-14],[-16,-33],[-4,-14],[-2,-12],[-1,-6],[1,-8],[1,-4],[0,-4],[-3,-6],[-5,-7],[-12,-10],[-5,-5],[-2,-6],[-4,-12],[-1,-3],[-3,0],[-9,1],[-4,-5],[-11,-32],[-4,-1],[-5,5],[-4,7],[-2,7],[-3,5],[-22,5],[-11,-7],[-8,-17],[-13,-33],[-10,-8],[-1,1],[-1,2],[-2,1],[-1,0],[-2,-2],[-3,-5],[-2,-1],[-9,-1],[-2,4],[-4,37],[-6,21],[-8,15],[-10,10],[-7,1],[-4,-2],[-4,-3],[-11,-2],[-21,-15],[-10,-4],[-7,0],[-3,3],[-5,11],[-3,2],[-4,-1],[-8,-7],[-24,1],[-11,-3],[-9,-10],[2,-8],[0,-7],[-3,-7],[-3,-6],[-6,10],[-1,2],[-2,1],[-1,2],[-1,1],[-6,-8],[-3,1],[-28,16],[-11,1],[-10,-6],[-9,-12],[-4,-8],[-1,-7],[1,-20],[-2,-11],[-5,4],[-5,8],[-2,5],[-2,-2],[-3,-6],[-1,-5],[-2,-3],[-26,1],[-6,3],[0,4],[9,16],[0,10],[-6,22],[-2,21],[-2,8],[-2,4],[-6,9],[-7,18],[-2,3],[-3,-1],[-4,-4],[-12,0],[-7,-6],[-9,-19],[-5,-4],[-4,-2],[-10,-9],[-5,-1],[-5,4],[-9,14],[-4,3],[-4,0],[-5,3],[-3,1],[-3,-2],[-3,-4],[-2,-4],[-2,-3],[-6,1],[-4,7],[-3,8],[-5,5],[-3,1],[-7,6],[-5,6],[-3,1],[-6,-2],[-46,4],[-5,-3],[-10,-8],[-14,-2],[-5,-4],[-13,-14],[-1,-1],[-1,3],[-7,7],[-7,5],[-3,1],[-5,-2],[-11,-8],[-5,-2],[-8,0],[-3,-1],[-3,-4],[-6,5],[-8,3],[-14,1],[-8,-5],[-7,-8],[-7,-5],[-7,1],[-5,-4],[-49,0],[-2,-1],[-3,-3],[-2,-5],[0,-5],[0,-4],[-1,-4],[-4,-5],[-29,-20],[-8,-2],[-4,7],[-28,14],[-28,4],[-5,-2],[-10,-9],[-7,-1],[-4,2],[-8,10],[-5,4],[-5,1],[-5,-2],[-5,-3],[-4,-4],[-7,-11],[-4,-4],[-6,-1],[-14,-2],[-14,-10],[-4,-5],[-17,-32],[-8,-9],[-17,-13],[-8,-11],[3,-4],[-2,-6],[-3,-4],[-7,-4],[-2,-5],[-10,-39],[-1,-5],[-10,-13],[-4,-12],[-2,-16],[-2,-16],[0,-14],[4,-13],[7,-5],[7,-3],[7,-7],[-3,-3],[-4,-1],[-6,-4],[-9,-4],[-10,18],[-10,2],[-6,-9],[-3,-15],[2,-17],[5,-11],[-3,-3],[-6,-10],[-1,-3],[0,-3],[0,-3],[-3,1],[-1,2],[-3,10],[-2,13],[-4,4],[-5,-1],[-4,-4],[-3,-4],[-1,-4],[-2,-12],[0,-13],[-1,-8],[-4,-3],[-4,-3],[-3,0],[-1,5],[-1,7],[-1,5],[-2,3],[-4,3],[-3,1],[-5,-2],[-3,1],[-3,3],[-4,8],[-2,2],[-51,15],[-3,-1],[-5,-5],[-2,-1],[-14,3],[-2,0],[12,-22],[2,-6],[-4,-4],[-18,-4],[-6,-3],[-10,-14],[-3,-3],[-4,-6],[-1,-12],[2,-12],[7,-3],[-9,-19],[-5,-7],[-11,-6],[-9,-12],[-6,-5],[-25,-10],[-12,-8],[-10,-14],[-4,-8],[-5,-21],[-4,-10],[-2,-12],[0,-12],[3,-18],[0,-14],[-4,-5],[-12,2],[-22,-3],[-5,-4],[-12,-13],[-9,-2],[-2,-2],[-1,-6],[2,-3],[3,-1],[1,-2],[4,-10],[2,-11],[-1,-9],[-5,-2],[-3,2],[-14,18],[-2,-4],[-2,4],[-3,-4],[-14,-8],[-3,-3],[-2,-1],[-2,-1],[-3,1],[-5,3],[-3,1],[-2,-1],[-5,-3],[-2,-1],[-2,1],[-1,2],[-2,2],[-2,0],[-1,-2],[-2,-5],[-1,-1],[-16,-3],[-4,-3],[-1,-9],[4,-9],[4,-6],[8,-6],[3,0],[1,5],[-1,5],[-1,6],[-1,5],[3,2],[4,-3],[5,-20],[5,-5],[10,3],[3,-2],[-1,-9],[-4,2],[-3,-2],[-6,-8],[-5,-2],[-11,2],[-9,5],[-14,22],[-17,12],[-18,3],[-4,-2],[-8,-7],[-4,-11],[-1,-16],[-1,-18],[-8,7],[-14,20],[-10,5],[-9,2],[-3,2],[-16,18],[-4,5],[-8,8],[-5,4],[-3,-1],[-2,-8],[-5,1],[-11,9],[-5,1],[-2,-1],[-2,-2],[-3,-1],[-3,2],[-3,4],[-3,2],[-5,-4],[-4,-8],[-5,-21],[-3,4],[-6,10],[-3,3],[-5,1],[-7,5],[-4,2],[-3,-2],[-4,-2],[-3,-1],[-3,3],[-3,3],[-4,3],[-5,0],[-3,-3],[-6,-11],[-5,-8],[-6,-2],[-9,3],[-4,3],[-11,14],[-11,5],[-4,3],[-2,-4],[0,-2],[-1,-2],[1,-4],[-20,0],[-3,-6],[-2,-8],[-6,5],[-9,13],[-15,3],[-5,7],[-3,2],[-3,1],[-7,-1],[-2,2],[-7,14],[-11,14],[-5,10],[2,5],[24,-9],[5,-4],[3,0],[1,4],[-1,6],[-3,6],[-3,3],[-10,5],[-4,8],[-4,10],[-4,7],[-1,2],[-2,2],[-2,-1],[-2,-3],[7,-24],[-6,-8],[-13,3],[-11,9],[-12,12],[-42,23],[-21,5],[-3,0],[-5,-3],[-4,0],[-1,3],[1,7],[1,10],[-2,11],[-7,15],[-4,20],[-5,13],[-8,14],[-39,81],[-37,56],[-12,13],[-10,4],[-2,2],[-2,5],[-2,6],[-1,5],[-3,2],[-2,1],[-43,40],[-13,8],[-7,2],[-22,-2],[-6,-5],[-7,-24],[-5,-8],[-3,11],[-25,49],[-2,10],[-1,16],[1,23],[-1,10],[-2,11],[-7,31],[-1,5],[1,13],[-1,82],[-3,24],[0,14],[1,9],[4,27],[2,10],[-4,15],[-4,21],[0,23],[4,16],[7,14],[2,8],[-1,13],[-3,32],[-1,12],[4,0],[12,-10],[7,-15],[6,-18],[8,-13],[10,-10],[11,-7],[11,-4],[13,0],[12,4],[12,8],[10,10],[8,11],[23,49],[16,51],[9,34],[4,29],[2,7],[3,5],[2,0],[3,-3],[6,-2],[7,7],[2,15],[-1,37],[-1,10],[-2,-1],[-1,-7],[-2,-21],[-3,-28],[-2,0],[1,99],[1,57],[-4,51],[-10,75],[-3,49],[-3,20],[0,20],[3,23],[5,18],[12,34],[7,13],[-2,-23],[-15,-34],[0,-28],[8,-44],[7,-24],[6,-5],[2,9],[-1,14],[-6,22],[-3,8],[-1,5],[0,10],[-1,5],[-1,8],[-4,5],[0,4],[2,3],[3,0],[4,-6],[3,-2],[13,-1],[4,6],[1,15],[-1,14],[-5,5],[-5,3],[-2,5],[-2,12],[0,6],[1,4],[3,11],[2,5],[3,22],[0,22],[-4,18],[-7,11],[7,14],[1,7],[-2,11],[-4,7],[-8,8],[-3,10],[13,0],[4,5],[2,13],[1,12],[3,22],[0,13],[-2,6],[-3,8],[-1,6],[1,9],[1,7],[-1,7],[-3,10],[0,11],[4,76],[-6,91],[-6,49],[-5,25],[-21,60],[-15,67],[-27,77],[-20,101],[-19,84],[-21,67],[-16,30],[-4,37],[0,6],[-1,8],[-17,64],[-1,5],[-1,12],[-9,49],[-2,10],[1,22],[-1,12],[-6,46],[-3,18],[-1,2],[-2,7],[-1,3],[1,4],[2,6],[1,4],[0,13],[0,7],[-1,4],[-2,4],[-6,7],[-2,3],[-2,10],[1,14],[1,14],[1,13],[0,6],[-3,12],[-1,14],[-3,5],[-2,5],[-2,5],[-1,21],[7,76],[-1,13],[-4,21],[-1,9],[-2,51],[2,51],[4,46],[5,34],[1,12],[-1,13],[-7,30],[-4,25],[-1,14],[-1,12],[-1,9],[-5,21],[-4,35],[-15,74],[-3,10],[-50,106],[-1,6],[-9,27],[-3,11],[-3,24],[-5,8],[5,22],[1,27],[-2,27],[-17,79],[-6,19],[-24,53],[-15,46],[-1,9],[-2,9],[-13,37],[-4,6],[-10,9],[-4,8],[-22,50],[-3,17],[-2,6],[0,4],[-1,20],[0,6],[-11,67],[-2,25],[0,26],[1,12],[5,23],[1,12],[1,5],[4,13],[1,6],[0,7],[-19,142],[-18,78],[-24,85],[-45,150],[-30,85],[-18,59],[-16,31],[-19,39],[-30,61],[-4,7],[-8,16],[-4,11],[0,13],[-2,13],[2,8],[-4,12],[-4,18],[-7,29],[-9,15],[-10,22],[-5,15],[1,7],[7,-9],[6,-11],[6,-4],[8,-3],[1,-15],[4,-14],[1,22],[1,19],[2,20],[-1,23],[-1,22],[2,19],[4,16],[4,-74],[3,-67],[-1,-24],[2,-21],[4,-12],[4,-16],[1,-12],[5,-3],[-3,19],[-5,26],[-1,19],[3,28],[4,11],[1,65],[-7,34],[2,18],[7,-29],[2,-68],[5,12],[3,-1],[8,-1],[-1,-25],[3,-12],[0,-17],[4,-8],[1,-12],[2,-10],[3,-16],[2,-29],[-4,-14],[1,-20],[-4,-23],[2,-4],[6,6],[0,21],[0,14],[2,10],[3,23],[-4,25],[1,10],[0,13],[4,4],[4,-12],[2,-10],[1,-12],[2,-17],[-2,-18],[2,-17],[2,-20],[-3,-15],[3,-11],[0,-23],[-1,-22],[5,0],[3,8],[1,8],[0,12],[2,6],[5,12],[-1,11],[0,14],[2,4],[5,-25],[0,-11],[0,-16],[0,-13],[-3,-14],[1,-9],[-2,-6],[4,-3],[5,1],[1,-8],[1,-12],[0,-11],[5,0],[0,13],[2,10],[5,3],[6,5],[7,3],[4,5],[2,-8],[9,1],[0,21],[6,6],[5,5],[5,14],[4,17],[1,17],[-2,25],[-2,14],[2,12],[1,21],[-5,14],[-7,14],[-8,17],[-9,15],[-9,2],[-18,10],[-1,12],[0,10],[-3,11],[-6,16],[-10,25],[-10,4],[-1,19],[-1,12],[2,17],[-4,5],[-2,17],[1,18],[-11,13],[2,16],[-2,13],[-2,10],[-3,6],[-3,9],[-4,6],[-2,8],[0,7],[-2,9],[-4,7],[-7,22],[-2,16],[1,12],[1,16],[4,12],[5,18],[3,18],[7,16],[4,19],[3,3],[1,-19],[2,-22],[-1,-14],[3,-10],[4,1],[2,-2],[2,-7],[6,0],[3,-20],[4,-23],[6,-19],[9,-8],[4,-18],[7,-7],[7,-2],[-1,-19],[-2,-11],[2,-12],[1,-4],[5,-4],[3,-3],[1,-12],[-2,-9],[-5,-9],[1,-11],[0,-18],[-2,-13],[-3,-15],[1,-10],[-2,-17],[-1,-26],[-2,-16],[6,-19],[0,-10],[10,0],[1,-7],[8,2],[15,50],[5,25],[3,21],[-4,26],[0,7],[-3,10],[-1,6],[1,8],[0,2],[2,-1],[1,-1],[6,-2],[7,-15],[-1,-13],[-1,-20],[2,-34],[-1,-18],[6,-11],[5,-1],[-3,-30],[2,-22],[4,-19],[0,-14],[2,-15],[2,-13],[14,-35],[13,-27],[5,-7],[5,0],[5,11],[6,9],[3,12],[8,7],[6,4],[3,18],[5,17],[-4,25],[-4,16],[-2,17],[-2,13],[2,17],[2,12],[3,25],[2,2],[1,8],[0,8],[0,6],[-3,13],[-7,23],[-1,15],[1,4],[2,-3],[4,-10],[2,-2],[3,0],[4,2],[3,2],[1,1],[2,-1],[-2,11],[-3,6],[-3,7],[-1,13],[2,11],[4,14],[2,14],[-1,12],[-5,7],[-14,16],[-10,8],[-2,9],[-1,10],[-3,4],[1,10],[-2,11],[-4,8],[-4,4],[-1,2],[-1,12],[-2,2],[-10,12],[-3,8],[-7,38],[-18,48],[-6,23],[-18,87],[-2,13],[-1,10],[-10,33],[-2,15],[-2,7],[-4,6],[-11,14],[-10,7],[-6,12],[-4,14],[-2,20],[-4,13],[-1,12],[-2,7],[0,5],[1,5],[4,8],[1,5],[0,13],[-2,12],[-5,10],[-8,2],[-1,12],[-1,13],[0,12],[3,9],[2,11],[-1,15],[-2,15],[-2,10],[-17,50],[-29,66],[-6,21],[-5,23],[-2,27],[-2,97],[1,13],[2,8],[7,14],[3,12],[0,13],[-3,26],[-2,20],[0,12],[2,10],[4,7],[3,8],[3,10],[1,14],[0,13],[-1,11],[1,10],[9,22],[3,12],[6,52],[4,9],[5,4],[12,64],[1,6],[2,2],[2,2],[2,3],[1,7],[2,2],[7,7],[6,3],[1,6],[2,7],[2,5],[10,14],[3,9],[2,15],[0,4],[3,8],[1,5],[0,40],[3,24],[0,13],[-3,51],[-5,36],[-1,11],[1,14],[1,6],[1,5],[2,5],[3,4],[3,4],[5,13],[1,14],[-1,72],[-1,18],[-5,15],[-3,13],[-4,38],[-13,28],[-3,3],[-3,3],[-4,2],[-5,0],[4,22],[0,13],[-3,12],[-1,4],[0,20],[-1,8],[-1,5],[-1,5],[1,9],[3,5],[6,6],[3,5],[6,26],[4,7],[1,5],[2,27],[2,14],[3,11],[9,21],[3,10],[23,130],[2,13],[0,12],[2,12],[6,21],[7,36],[18,55],[7,13],[9,11],[5,4],[6,2],[5,3],[5,5],[4,2],[4,-6],[1,-12],[-3,-7],[-4,-7],[-2,-9],[-1,-11],[-4,-25],[-8,-109],[-4,-20],[-2,-21],[5,-20],[2,-8],[5,-22],[1,-9],[-3,-22],[-1,-11],[4,-3],[2,6],[2,11],[3,8],[5,-5],[1,-9],[0,-12],[-2,-11],[-3,-1],[-8,-18],[-1,-6],[0,-9],[2,-15],[-4,-23],[3,-16],[7,-10],[9,0],[4,8],[3,13],[4,11],[9,5],[3,2],[3,5],[3,2],[4,-3],[2,-8],[1,-8],[3,-7],[5,-4],[5,5],[3,5],[1,7],[0,14],[1,5],[2,12],[1,7],[0,13],[2,13],[8,35],[2,16],[3,16],[1,4],[7,19],[0,7],[-1,8],[1,5],[2,2],[3,1],[3,2],[2,22],[5,22],[0,12],[-1,5],[-3,7],[-2,4],[0,4],[-1,11],[0,7],[2,5],[4,-9],[6,-12],[3,-6],[13,51],[4,18],[0,1],[1,0],[1,1],[1,2],[1,3],[1,9],[2,24],[2,9],[7,3],[2,2],[4,10],[2,5],[22,16],[42,52],[11,7],[11,-6],[13,10],[3,4],[3,5],[3,5],[3,0],[2,-8],[33,40],[64,50],[7,7],[2,11],[2,10],[4,10],[8,15],[18,48],[7,12],[10,15],[40,37],[3,5],[3,21],[8,21],[5,24],[8,18],[9,15],[6,7],[4,2],[14,13],[9,7],[4,4],[4,6],[10,4],[8,10],[7,16],[4,23],[0,27],[2,7],[6,2],[3,-2],[5,-5],[5,-4],[7,-1],[5,5],[7,13],[4,3],[12,0],[12,3],[5,5],[8,13],[3,3],[2,1],[2,3],[2,4],[2,14],[3,2],[5,0],[10,7],[32,45],[12,25],[10,34],[5,6],[-2,9],[4,3],[3,1],[2,0],[3,-2],[3,-3],[0,-2],[-3,-1],[-4,-5],[-1,-12],[-1,-24],[-2,-5],[-5,-9],[-1,-6],[0,-8],[1,-4],[14,-24],[5,-4],[7,-1],[5,3],[6,6],[6,7],[2,6],[2,5],[30,27],[2,1],[5,-8],[2,-2],[3,1],[3,3],[7,14],[3,6],[2,0],[2,-4],[0,-4],[0,-3],[0,-5],[-2,-9],[0,-3],[0,-3],[3,-6],[1,-1],[2,-7],[4,-7],[21,-17],[11,-6],[11,-3],[24,3],[21,10],[8,8],[10,15],[7,6],[5,-2],[4,-7],[4,0],[3,7],[1,2],[1,-2],[2,-4],[0,-3],[4,3],[11,10],[2,-5],[3,6],[11,8],[6,7],[6,2],[2,2],[3,6],[3,13],[2,5],[3,7],[2,1],[7,2],[2,3],[4,10],[1,5],[-1,11],[1,6],[1,5],[55,77],[4,3],[3,2],[2,2],[2,1],[3,0],[1,-4],[0,-6],[1,-4],[4,5],[6,-5],[5,4],[4,6],[5,4],[3,1],[6,5],[2,2],[4,-2],[1,-5],[1,-5],[3,-5],[4,1],[12,9],[39,15],[1,-1],[3,1],[1,1],[1,1],[1,1],[8,4],[3,1],[3,-1],[2,-2],[2,-3],[2,-2],[4,-1],[5,0],[6,3],[10,15],[6,3],[7,1],[6,3],[7,11],[6,15],[8,31],[21,48],[3,19],[2,13],[3,5],[4,4],[4,6],[9,6],[2,3],[2,5],[1,6],[1,5],[7,9],[7,-3],[12,-21],[-1,16],[1,8],[3,4],[5,1],[6,-2],[22,-14],[11,-4],[7,-1],[5,-1],[12,-9],[5,-2],[2,2],[4,6],[1,0],[3,-3],[2,-5],[0,-5],[2,-5],[10,-13],[7,-6],[5,-3],[7,1],[9,12],[4,3],[1,2],[6,16],[2,1],[6,-3],[3,0],[4,6],[0,6],[0,6],[0,6],[5,6],[6,1],[13,-2],[29,11],[45,15],[47,9],[36,23],[78,62],[43,38],[42,38],[48,67],[10,22],[4,2],[4,5],[33,70],[29,78],[29,90],[5,34],[5,14],[2,8],[1,12],[0,6],[2,6],[4,8],[2,6],[4,28],[6,24],[3,8],[1,14],[1,6],[-1,8],[-2,5],[-3,4],[-2,5],[-2,16],[3,1],[5,-4],[5,1],[2,4],[3,2],[10,1],[2,3],[13,24],[2,10],[1,13],[-2,8],[-3,5],[-8,10],[7,12],[4,9],[7,34],[4,15],[3,6],[4,-2],[4,-5],[4,-4],[6,-1],[6,5],[31,47],[6,14],[3,18],[2,6],[17,16],[6,8],[4,10],[7,22],[1,-2],[1,-3],[2,-3],[4,17],[2,8],[9,6],[20,22],[6,17],[5,20],[2,14],[-1,22],[-2,16],[-4,10],[-9,7],[-8,4],[-10,2],[-9,-5],[-5,-17],[-2,0],[-1,4],[-1,3],[-2,2],[-2,3],[8,19],[3,20],[0,23],[-4,40],[1,37],[0,6],[2,6],[0,7],[-1,6],[-4,10],[-3,12],[-1,6],[-1,15],[-4,18],[0,6],[-3,9],[0,5],[-1,62],[3,70],[4,27],[2,20],[2,10],[3,8],[5,4],[2,8],[14,36],[4,7],[-2,6],[-3,1],[-2,3],[3,12],[3,7],[38,69],[10,13],[-1,-11],[1,-7],[4,-1],[4,7],[1,13],[-2,10],[-1,7],[5,3],[5,-2],[2,-6],[2,-7],[2,-8],[4,-4],[14,-6],[-3,9],[-6,28],[-9,21],[-1,7],[1,7],[1,3],[1,3],[1,3],[1,-2],[1,-1],[1,1],[1,4],[0,8],[0,2],[2,9],[3,6],[3,6],[5,4],[2,-9],[2,-5],[3,-3],[5,0],[2,2],[4,5],[2,1],[7,0],[2,0],[4,5],[3,6],[3,4],[5,2],[4,-2],[13,-11],[-16,30],[-5,16],[0,20],[1,4],[2,9],[1,5],[0,20],[1,6],[2,9],[4,8],[3,4],[8,-2],[4,1],[3,5],[2,7],[1,8],[3,6],[4,3],[3,12],[2,24],[4,21],[6,0],[19,24],[3,-4],[0,-8],[-6,-16],[12,-11],[5,-7],[-1,-10],[-4,-5],[-3,1],[-4,2],[-3,2],[-4,-2],[-1,-5],[-2,-14],[3,-14],[-8,-30],[3,-9],[1,-13],[1,-5],[3,-2],[5,7],[4,1],[1,-6],[0,-14],[1,-16],[4,-10],[7,5],[4,-11],[2,-4],[3,-1],[3,1],[1,4],[1,4],[2,5],[2,1],[0,-6],[-1,-9],[-1,-6],[-3,-4],[-2,0],[-2,-2],[-2,-8],[0,-14],[3,-10],[5,-7],[5,-2],[3,-4],[1,-10],[1,-11],[-1,-7],[-3,-22],[0,-13],[4,-5],[7,-4],[4,-8],[5,-21],[12,-22],[2,-8],[0,-24],[1,-10],[3,-9],[9,-22],[6,-14],[2,-15],[2,-10],[5,-14],[3,-16],[-2,-14],[5,-22],[3,-8],[9,-9],[4,-12],[3,-12],[2,-3],[3,-9],[4,-7],[3,-8],[3,-24],[8,-18],[4,-10],[1,-11],[2,-23],[1,-9],[0,-2],[2,2],[2,6],[1,6],[0,33],[0,4],[-2,9],[-5,21],[0,6],[0,25],[2,26],[1,7],[5,14],[1,7],[0,7],[0,7],[0,7],[1,5],[2,6],[1,6],[0,13],[1,7],[2,5],[3,3],[1,1],[1,-1],[2,-1],[0,12],[-1,7],[-5,10],[-12,36],[-2,31],[1,10],[4,15],[1,9],[3,-7],[3,0],[2,2],[3,1],[4,-1],[2,-1],[3,-8],[1,-4],[3,-27],[1,2],[2,4],[2,2],[4,-3],[6,-8],[5,-10],[2,-9],[0,-6],[1,-6],[2,-5],[2,-3],[3,-5],[6,-6],[3,-3],[4,-10],[3,-12],[4,-11],[5,-4],[7,0],[3,1],[1,5],[-1,5],[-3,2],[-3,1],[-3,2],[-8,16],[-5,19],[-6,46],[-4,20],[-1,12],[2,5],[4,-3],[10,-13],[3,-4],[1,12],[-3,8],[-4,7],[-2,11],[2,9],[8,13],[1,7],[2,9],[5,6],[6,5],[4,6],[3,11],[2,13],[-2,11],[-4,5],[-3,-23],[-5,-11],[-19,-14],[-12,-5],[-7,7],[-10,38],[-1,11],[-3,23],[-2,9],[-5,7],[-9,9],[-4,6],[-9,18],[-5,5],[-24,7],[0,2],[1,5],[5,6],[6,3],[4,6],[-3,13],[11,12],[4,6],[0,11],[-3,6],[-12,-2],[-6,4],[3,-18],[0,-3],[-9,1],[-4,2],[-1,8],[-2,3],[-8,11],[0,1],[-3,7],[-1,0],[-1,2],[-2,2],[-1,3],[-1,5],[12,-7],[4,-1],[3,3],[-2,7],[-6,15],[7,-3],[9,-18],[6,-4],[7,-3],[7,-7],[7,-5],[7,3],[-3,6],[-4,3],[-9,3],[6,7],[8,2],[5,3],[-33,35],[-9,6],[0,5],[9,-4],[3,1],[2,10],[26,-19],[18,-1],[-7,13],[-4,5],[-4,2],[-2,2],[-2,4],[-3,8],[-1,4],[3,3],[3,0],[3,-6],[5,-4],[5,-2],[4,-1],[0,5],[1,9],[0,9],[-1,6],[-4,2],[-11,1],[-3,3],[-1,4],[-2,6],[-3,5],[-2,3],[-3,-2],[-2,-2],[0,-3],[3,-1],[1,-1],[0,-3],[-2,-3],[-2,-1],[-2,2],[-2,3],[-1,4],[-1,3],[-6,7],[-3,6],[-2,7],[7,3],[3,11],[-2,12],[-4,7],[2,14],[2,5],[3,5],[1,-3],[4,-3],[1,2],[-2,12],[27,4],[8,-4],[1,12],[2,-3],[3,-8],[2,-5],[6,0],[1,0],[1,-3],[2,-8],[1,-1],[3,-2],[2,-3],[1,-5],[-2,-5],[-2,0],[-6,4],[-2,-2],[1,-7],[5,-5],[6,-3],[5,-1],[-4,-8],[-8,-4],[-8,-1],[-7,-3],[20,-29],[7,-7],[4,-2],[3,0],[2,-3],[2,-7],[1,-10],[-2,-7],[-2,-1],[-2,6],[-4,-5],[5,-28],[3,-8],[1,8],[2,0],[1,-3],[2,-2],[1,-3],[1,12],[-1,23],[2,10],[-1,9],[4,0],[6,-5],[4,-4],[2,-4],[4,-9],[5,-6],[3,4],[-10,34],[-2,16],[10,5],[0,4],[-6,6],[-6,9],[-6,11],[-3,10],[6,-2],[11,-11],[7,-3],[6,0],[3,-2],[1,-4],[1,-5],[3,0],[6,3],[11,-4],[5,-4],[6,-9],[5,-6],[1,-3],[8,-43],[3,-8],[3,-4],[22,-4],[9,-5],[3,2],[6,25],[6,8],[4,-1],[7,-13],[6,-7],[7,-4],[33,-4],[9,0],[7,7],[2,-4],[7,5],[12,3],[12,-2],[5,-8],[5,-11],[10,-5],[11,3],[7,11],[-6,2],[-12,-4],[-4,4],[-5,7],[-5,3],[-10,4],[-16,18],[-28,11],[-6,0],[-21,-6],[-4,-5],[-2,-2],[-6,9],[0,-1],[-1,-2],[-2,-1],[-4,0],[-5,1],[-3,5],[-2,18],[-1,4],[-1,3],[-1,3],[1,7],[2,12],[1,7],[-1,6],[-3,3],[-1,5],[2,8],[1,8],[0,7],[1,6],[7,3],[2,4],[1,7],[0,43],[1,7],[3,4],[3,-1],[3,-5],[2,-7],[0,-9],[-1,-8],[1,-8],[1,-3],[6,-13],[4,-10],[2,-10],[3,12],[4,16],[7,11],[7,-3],[-2,12],[0,41],[-1,22],[2,7],[7,0],[-3,11],[0,13],[1,22],[3,10],[6,10],[7,2],[3,-11],[2,0],[3,14],[1,12],[2,9],[7,9],[-10,7],[-5,2],[-13,-2],[-3,-2],[-3,-5],[-6,-25],[-8,-16],[-12,-56],[-8,-17],[-1,8],[1,6],[1,6],[1,9],[-1,5],[-2,4],[-2,4],[-2,19],[-5,31],[-4,10],[1,-7],[-1,-7],[-1,-3],[-2,1],[-1,-4],[-2,-3],[-3,-6],[-2,42],[-1,9],[-3,11],[0,13],[0,13],[2,6],[-3,17],[-1,7],[0,5],[1,2],[2,-2],[1,-5],[2,0],[0,7],[0,7],[1,6],[1,4],[4,-20],[2,13],[0,15],[-2,11],[-6,-3],[2,29],[-2,12],[-6,8],[4,2],[4,-3],[4,-4],[2,-1],[1,3],[5,3],[1,3],[0,18],[6,13],[9,1],[9,-8],[8,-13],[3,-3],[6,-2],[5,1],[4,2],[0,43],[0,4],[1,4],[1,2],[2,-2],[1,-4],[-2,-12],[0,-6],[3,-9],[4,-4],[4,3],[3,10],[-5,8],[-1,15],[3,15],[4,11],[9,8],[1,2],[-1,6],[-6,1],[0,7],[-7,-10],[-3,-1],[-2,7],[1,9],[3,2],[3,1],[2,4],[0,9],[-3,2],[-3,0],[-3,2],[-1,4],[0,6],[1,14],[5,-6],[2,-1],[2,-1],[0,1],[0,3],[2,3],[1,1],[1,-2],[1,-9],[0,-3],[2,-1],[10,-5],[1,-5],[-2,-9],[-4,-15],[2,-1],[10,20],[4,6],[2,-2],[3,-9],[3,-2],[3,-3],[-1,-7],[-1,-8],[-2,-6],[6,1],[7,3],[4,0],[6,-3],[4,-5],[7,-17],[1,-4],[1,-4],[2,-2],[5,-3],[2,-2],[1,-2],[2,-3],[-1,-9],[-4,-18],[1,-5],[3,-1],[3,3],[2,4],[2,2],[3,-2],[0,-5],[-1,-5],[1,-4],[6,-5],[1,8],[0,12],[3,9],[6,-3],[20,-30],[8,-7],[-4,9],[-11,18],[-2,7],[-14,24],[0,7],[4,36],[3,5],[4,5],[4,5],[4,1],[0,4],[-4,0],[-4,3],[-3,6],[-2,8],[-1,-12],[-5,0],[-6,7],[-4,7],[-3,-2],[-12,-16],[-9,-7],[-6,-9],[-3,-1],[-4,4],[-1,7],[-1,13],[-1,1],[-1,0],[-1,1],[-1,4],[0,5],[1,3],[3,7],[3,4],[3,3],[1,3],[-1,6],[1,5],[4,4],[3,2],[5,3],[1,3],[2,0],[4,-7],[4,-1],[6,11],[8,24],[-3,3],[-6,3],[-3,2],[-2,-17],[-1,-2],[-2,0],[-2,2],[-2,3],[0,6],[-2,-3],[-3,-11],[0,-2],[-2,-1],[-7,-7],[-12,-21],[-5,-7],[0,10],[1,3],[1,3],[-2,4],[-2,-8],[-2,0],[1,6],[0,13],[-1,2],[1,5],[3,7],[0,5],[-2,2],[-5,-3],[-3,2],[2,14],[1,0],[3,4],[1,2],[1,7],[0,3],[3,3],[3,2],[4,2],[3,1],[2,-1],[4,-6],[6,-2],[2,-3],[4,-8],[7,21],[4,8],[2,-9],[2,9],[1,14],[-1,12],[-5,6],[1,4],[0,11],[-1,13],[-3,8],[4,-1],[3,-3],[5,-8],[2,5],[3,6],[3,2],[3,-5],[0,-10],[-5,-12],[0,-10],[2,4],[1,-21],[4,5],[3,13],[3,3],[0,-2],[1,-3],[2,-3],[1,0],[0,-7],[0,-3],[-2,-3],[0,-6],[4,-22],[1,-4],[1,-4],[4,-18],[3,-7],[2,4],[-1,4],[0,4],[0,6],[2,5],[0,5],[-4,31],[-4,11],[0,10],[5,10],[0,-12],[2,-8],[4,-4],[4,-1],[4,-3],[2,-5],[2,-4],[5,4],[1,-7],[1,-4],[2,-2],[5,-11],[1,-4],[-1,-4],[-2,-4],[4,-8],[7,-6],[5,-1],[0,7],[8,3],[17,-8],[3,7],[0,10],[-2,3],[-8,-3],[-3,2],[-3,6],[-1,6],[0,6],[1,1],[2,1],[2,1],[1,3],[-1,5],[-2,1],[-2,1],[-1,3],[-1,5],[1,2],[3,1],[2,2],[5,9],[7,5],[0,6],[-4,4],[-9,-7],[-5,3],[-3,9],[-2,-1],[-3,-1],[-2,1],[-1,5],[-1,2],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-3,-1],[-2,-1],[-3,0],[-2,6],[0,5],[2,4],[2,7],[-3,0],[-3,-3],[-3,-3],[0,-2],[-3,3],[-1,7],[-3,2],[-2,-1],[-1,-2],[-1,-2],[-3,1],[-2,3],[-3,4],[-1,3],[4,2],[2,3],[1,5],[1,6],[1,3],[3,1],[5,3],[3,0],[1,-3],[0,-4],[1,-4],[4,-1],[4,1],[1,3],[0,5],[-2,7],[6,6],[-3,9],[-8,8],[-10,-3],[-1,6],[-7,3],[-3,8],[-1,31],[-2,5],[-4,-3],[-2,-1],[-1,2],[-1,7],[-1,2],[-2,0],[-1,1],[-1,13],[2,4],[4,0],[3,-1],[3,2],[0,4],[-1,4],[0,5],[2,4],[1,0],[1,-1],[2,-1],[4,1],[-3,9],[1,10],[4,3],[10,-6],[2,1],[0,11],[3,1],[3,1],[5,9],[-5,3],[-7,-2],[-5,1],[-2,10],[3,12],[6,11],[7,5],[5,-4],[2,0],[2,9],[2,5],[1,4],[1,17],[1,7],[2,2],[2,-3],[0,-39],[-1,-7],[-2,-15],[3,12],[5,8],[4,8],[1,12],[4,-8],[9,-47],[0,-4],[1,2],[1,9],[-2,13],[1,6],[5,-3],[0,7],[0,7],[1,6],[3,4],[-2,3],[-1,4],[0,4],[1,6],[8,-12],[-2,16],[0,9],[2,7],[2,3],[2,0],[2,-2],[2,-3],[2,-2],[5,1],[2,-1],[0,-10],[-3,-8],[-4,-6],[-1,-4],[3,-5],[5,0],[5,2],[4,3],[-1,6],[0,5],[1,9],[1,0],[1,0],[1,1],[1,3],[0,3],[-2,3],[0,4],[3,32],[2,14],[1,5],[-2,10],[-4,10],[-2,10],[1,8],[0,6],[-2,11],[0,12],[3,10],[0,4],[-3,5],[0,6],[3,4],[4,-3],[-1,9],[3,3],[5,-4],[2,-16],[2,0],[0,4],[2,0],[2,-8],[8,-9],[4,-7],[0,5],[1,4],[2,3],[2,4],[2,-4],[-2,-5],[-4,-15],[2,-5],[0,-6],[-2,-6],[-3,-4],[-3,2],[-2,4],[-3,3],[-4,-5],[2,-4],[-1,-5],[0,-4],[-1,-3],[4,-58],[3,-9],[0,-19],[-13,-55],[1,-21],[4,7],[12,70],[2,6],[2,14],[0,26],[2,15],[4,2],[2,-7],[-2,-12],[3,-3],[0,-6],[-3,-15],[10,4],[4,4],[1,7],[1,5],[2,1],[2,-2],[1,-4],[-1,-5],[0,-2],[0,-1],[3,-3],[2,2],[1,4],[2,3],[2,0],[2,-5],[0,-6],[-2,-4],[-2,-2],[-5,-4],[5,-21],[-3,-7],[0,-5],[4,-3],[0,-5],[-2,-5],[0,-7],[1,-7],[2,-6],[2,-3],[2,0],[10,-16],[5,-7],[2,1],[2,24],[0,3],[-1,4],[-3,5],[-2,4],[1,4],[1,2],[1,1],[1,12],[1,7],[1,5],[10,-1],[2,-1],[0,-3],[3,-9],[2,-2],[4,2],[0,6],[-1,7],[1,5],[3,1],[5,-6],[2,1],[2,5],[-1,7],[-1,7],[0,7],[-1,7],[-4,9],[-1,5],[0,8],[-1,3],[-2,2],[-3,5],[-1,2],[-2,2],[-1,4],[1,8],[1,-1],[4,3],[3,4],[0,2],[2,2],[5,5],[7,3],[1,5],[0,7],[-1,6],[1,5],[3,5],[0,5],[0,5],[-3,10],[-1,5],[0,8],[1,7],[2,5],[9,3],[1,1],[3,3],[6,12],[1,0],[1,11],[-1,11],[-1,9],[3,5],[-5,23],[-7,10],[-28,0],[-4,4],[-2,10],[0,6],[-3,8],[0,6],[0,5],[1,7],[1,6],[3,-5],[5,-16],[3,-3],[4,2],[0,6],[-1,8],[1,8],[3,4],[8,-25],[6,1],[-1,5],[-1,5],[1,7],[-1,7],[-1,9],[-1,3],[-2,1],[-11,12],[-2,4],[-3,8],[1,1],[3,-3],[8,-4],[2,3],[0,9],[2,7],[3,6],[3,1],[2,-6],[-1,-7],[-2,-5],[0,-4],[8,-3],[2,-1],[3,1],[3,5],[0,-7],[-2,-5],[-4,-8],[2,-1],[3,-3],[1,0],[0,-5],[-4,-3],[-3,-7],[-3,-8],[-1,-10],[5,3],[4,6],[8,15],[3,4],[3,3],[7,6],[-3,-13],[-8,-11],[-4,-9],[8,-2],[5,-7],[1,-8],[-5,-3],[-8,-2],[-1,-6],[1,-7],[-1,-9],[9,5],[4,-3],[0,-10],[-7,-14],[-2,-6],[6,4],[-3,-20],[7,-9],[7,-6],[1,-8],[-2,-2],[-1,-1],[-2,-1],[0,-4],[1,-2],[4,-4],[1,-1],[3,4],[4,5],[3,0],[1,-13],[2,0],[1,10],[1,7],[2,6],[10,4],[0,6],[-3,8],[-4,10],[-2,2],[-1,0],[-3,0],[-1,3],[1,5],[3,9],[1,9],[1,6],[2,4],[6,4],[-2,2],[-1,4],[-1,3],[4,8],[5,0],[4,1],[4,23],[8,13],[3,7],[5,-12],[6,-1],[5,8],[3,10],[5,15],[3,5],[4,-2],[7,-6],[-3,-2],[-5,-5],[-3,-6],[-2,-6],[-1,-6],[-1,-3],[-2,-1],[-2,-4],[-1,-15],[-1,-5],[-8,-17],[-3,-10],[3,-5],[5,2],[9,8],[4,-3],[-10,-23],[3,-5],[3,-12],[2,-4],[4,1],[3,4],[3,3],[3,-4],[1,-6],[-1,-19],[0,-7],[2,-9],[2,-2],[2,-2],[4,-8],[0,18],[0,8],[2,7],[3,3],[3,3],[4,4],[1,8],[0,7],[-1,6],[0,5],[2,7],[1,4],[-2,5],[-1,6],[1,7],[2,-4],[4,-5],[2,-3],[1,-5],[1,-13],[2,-3],[3,2],[4,19],[4,7],[-2,9],[2,8],[3,9],[1,11],[-2,0],[-1,-4],[-2,-3],[-3,-5],[-3,6],[-2,8],[0,8],[2,6],[1,1],[6,-4],[4,-1],[1,6],[3,6],[3,-2],[4,1],[0,1],[8,-7],[4,0],[3,7],[-5,4],[-3,4],[-1,5],[2,4],[4,-1],[7,-3],[-1,6],[-2,4],[-3,2],[-4,1],[-3,2],[-2,6],[-1,9],[-1,8],[-1,4],[-5,13],[-2,6],[-3,24],[-2,8],[5,1],[5,2],[5,4],[2,7],[1,0],[3,-5],[1,-9],[-1,-12],[2,-2],[3,-2],[1,7],[2,4],[3,1],[4,0],[0,4],[-5,5],[-4,8],[0,9],[5,7],[5,-2],[5,-6],[4,-5],[5,4],[-5,7],[-2,2],[2,4],[4,3],[7,4],[7,-18],[4,-7],[5,-3],[2,-4],[1,-9],[0,-19],[4,6],[4,1],[1,-4],[-1,-11],[5,6],[1,-8],[-2,-15],[-3,-12],[9,2],[2,-9],[1,-16],[3,-15],[6,-9],[4,7],[3,13],[5,11],[-3,2],[-1,5],[0,7],[2,6],[4,-5],[2,-7],[0,-18],[1,-9],[2,-1],[2,3],[2,5],[4,18],[3,8],[4,-4],[10,-24],[4,-6],[8,-7],[0,10],[-3,16],[3,9],[4,-2],[2,-7],[2,-8],[2,-3],[4,-1],[2,-4],[1,-5],[2,-6],[1,0],[1,3],[3,9],[3,-7],[3,-9],[3,-11],[1,-10],[0,-6],[-2,-20],[1,-5],[6,-8],[2,-5],[3,12],[4,-4],[4,-11],[4,-5],[4,-3],[8,-15],[4,-7],[1,0],[3,1],[2,-1],[1,-2],[2,-6],[12,-18],[1,-11],[4,-12],[4,-11],[16,-29],[1,-6],[8,-43],[2,-2],[6,-2],[2,-4],[0,-5],[0,-22],[1,-6],[2,-3],[2,-1],[0,3],[1,7],[1,6],[3,1],[3,-5],[2,-10],[-7,-15],[1,-11],[5,8],[3,-2],[5,-14],[10,-13],[4,-8],[-3,-4],[-1,-2],[0,-7],[1,-7],[1,-4],[3,-3],[3,0],[7,6],[1,4],[2,1],[4,-6],[6,-12],[2,-2],[2,-4],[1,-10],[2,-9],[4,-5],[4,0],[3,-2],[3,-3],[12,-23],[4,-6],[6,-2],[4,1],[1,1],[2,-1],[2,-6],[1,-5],[0,-5],[0,-6],[-1,-4],[-4,5],[-4,2],[-4,-3],[-1,-10],[0,-9],[3,-22],[1,-9],[-1,-5],[-3,-1],[-5,0],[-4,-1],[-3,-3],[-6,-9],[6,-5],[-1,-19],[-6,-39],[-1,-7],[-4,-15],[-1,-8],[0,-12],[0,-9],[0,-9],[-5,-16],[-1,-11],[-1,-11],[1,-9],[3,-13],[1,-7],[-2,-61],[-2,-6],[-3,-3],[-4,1],[8,-45],[0,-22],[-5,-23],[-10,-21],[-1,-5],[2,-6],[6,6],[7,10],[4,8],[5,19],[3,25],[2,28],[-1,26],[-4,36],[2,3],[1,7],[-1,8],[1,6],[3,5],[3,-4],[3,-6],[8,-9],[14,-28],[3,-8],[1,-5],[5,-16],[7,-44],[0,-10],[2,0],[2,50],[-1,15],[-4,12],[-10,20],[-3,8],[-3,11],[-1,12],[2,11],[0,4],[-2,25],[-1,4],[-2,2],[-2,4],[-1,26],[6,20],[14,31],[1,1],[2,1],[1,2],[1,3],[-1,7],[0,2],[4,11],[5,12],[2,-4],[2,-15],[4,-50],[2,-10],[4,-5],[-2,19],[0,9],[2,9],[10,-24],[5,-9],[7,-4],[2,2],[1,5],[1,6],[1,6],[-1,7],[0,4],[-2,3],[-1,4],[-7,26],[-1,14],[-3,12],[-1,7],[1,9],[1,2],[2,0],[2,3],[2,3],[1,1],[1,2],[-2,6],[-2,3],[-4,4],[-2,3],[-4,12],[2,4],[12,2],[11,8],[5,6],[4,5],[6,5],[6,-4],[10,-11],[23,-6],[11,-6],[10,-17],[5,3],[6,-3],[7,-5],[5,-3],[24,0],[6,-3],[9,-11],[5,-2],[5,-1],[12,-7],[11,-10],[3,-5],[2,-6],[2,-6],[0,-6],[1,-6],[2,-2],[8,-2],[5,-7],[3,-10],[1,-13],[-1,-10],[-2,-11],[-1,-11],[3,-11],[3,-13],[1,-11],[-2,-11],[-6,-22],[-5,-30],[5,1],[8,32],[6,-1],[-2,-10],[-2,-11],[0,-10],[2,-9],[8,73],[6,4],[0,10],[-3,35],[-1,8],[-2,6],[-1,14],[-1,28],[-4,41],[0,14],[2,4],[4,-4],[4,-11],[2,-15],[1,0],[6,15],[10,0],[9,-10],[4,-15],[29,-17],[5,-12],[1,-3],[4,-29],[3,-5],[8,-9],[3,-4],[2,-9],[4,-21],[3,-9],[1,-8],[-3,-21],[-1,-10],[12,18],[5,3],[4,-2],[2,-6],[0,-17],[1,-11],[2,-2],[5,2],[5,0],[3,1],[2,4],[-1,10],[-2,6],[-17,41],[-2,8],[-7,34],[-2,37],[-3,8],[3,6],[4,15],[1,8],[2,32],[1,5],[4,-2],[7,-9],[4,-2],[9,0],[9,-4],[5,-1],[4,1],[7,4],[6,7],[2,1],[3,1],[1,2],[0,3],[2,4],[12,20],[2,1],[2,3],[5,-4],[8,-10],[0,16],[3,32],[-3,9],[-2,-18],[-5,-9],[-17,-9],[-27,-27],[-10,-2],[9,26],[1,7],[-2,0],[-10,-12],[-5,-3],[-3,-1],[-4,4],[-11,19],[-2,7],[3,11],[-6,7],[-7,11],[-6,12],[-5,26],[0,8],[2,4],[4,0],[10,4],[13,-1],[7,4],[3,11],[2,5],[11,15],[4,7],[-6,-1],[-7,-4],[-7,-6],[-9,-14],[-5,-1],[-12,5],[-2,1],[-6,-1],[-3,0],[-1,2],[-2,3],[-2,2],[-4,1],[-5,5],[-16,28],[-2,1],[-3,-1],[-1,0],[-1,2],[-1,8],[0,2],[-1,1],[-4,2],[-1,1],[-1,4],[-1,8],[-1,3],[-13,16],[-3,6],[4,47],[1,3],[7,17],[2,6],[1,7],[0,6],[0,7],[2,11],[3,8],[12,25],[3,9],[2,10],[1,12],[0,21],[0,6],[-3,11],[-1,5],[2,2],[3,-4],[4,-4],[5,6],[1,-5],[0,-7],[1,-5],[2,-3],[4,2],[3,4],[3,0],[1,-10],[5,15],[-1,18],[-1,16],[3,7],[1,-18],[6,-4],[16,6],[8,5],[5,15],[3,18],[1,17],[-2,11],[-2,6],[-4,5],[-2,8],[0,8],[2,9],[6,16],[15,24],[5,14],[-3,11],[-1,-4],[-2,-5],[-1,-3],[-2,3],[2,9],[-1,10],[-1,20],[1,10],[6,36],[5,19],[1,8],[0,19],[1,9],[1,7],[3,4],[3,2],[3,4],[2,15],[2,10],[2,8],[2,1],[2,-7],[1,-11],[-1,-21],[3,-6],[5,-5],[10,-6],[3,4],[17,11],[6,7],[14,26],[5,-7],[9,17],[14,42],[6,15],[5,7],[5,3],[5,-5],[7,-9],[5,-2],[-3,16],[-3,6],[-5,7],[-6,5],[-6,2],[-2,4],[-4,9],[-4,16],[-15,38],[-2,2],[-6,1],[-3,1],[-1,5],[0,65],[1,9],[2,7],[2,13],[-2,17],[0,17],[5,11],[3,0],[3,2],[2,4],[2,6],[3,-6],[1,-9],[2,-6],[6,-3],[6,3],[10,11],[5,2],[5,6],[4,12],[4,14],[1,11],[0,37],[2,17],[-1,12],[-2,11],[-1,11],[3,13],[3,0],[5,-5],[4,0],[1,3],[0,7],[0,7],[2,3],[3,2],[5,8],[3,2],[3,-2],[11,-11],[5,-3],[-4,12],[-2,8],[0,9],[3,5],[3,-4],[11,-46],[3,-3],[3,-2],[2,-3],[0,-9],[3,3],[3,-1],[2,-3],[3,-2],[0,1],[1,3],[2,2],[1,1],[2,0],[3,-3],[2,-1],[3,0],[3,2],[2,3],[0,6],[-22,14],[0,-2],[-1,-1],[-2,-2],[-1,1],[-1,1],[-1,6],[-1,1],[-1,2],[-3,10],[-1,2],[-1,3],[-2,2],[0,2],[3,3],[2,0],[3,-1],[2,-1],[2,2],[3,6],[1,3],[-1,4],[0,6],[-2,2],[-7,-1],[-1,3],[0,7],[7,38],[0,10],[-4,15],[1,6],[2,5],[6,4],[-2,6],[-4,8],[-2,1],[-4,3],[0,4],[8,9],[9,1],[10,-5],[5,-13],[5,2],[8,-3],[7,-5],[5,-7],[-3,-11],[0,-9],[3,-20],[0,-36],[2,-12],[1,8],[1,8],[1,7],[3,5],[8,-13],[10,-34],[6,-14],[0,10],[-1,3],[0,3],[4,9],[6,-3],[10,-14],[-3,16],[-6,11],[-8,10],[-6,12],[-2,11],[-1,7],[2,3],[5,-1],[6,-2],[8,-10],[5,-4],[-1,10],[-3,8],[-6,12],[-2,2],[-6,0],[-1,2],[0,5],[-2,5],[-3,7],[-4,4],[-3,-5],[-3,-4],[-6,7],[0,5],[1,5],[1,7],[-2,11],[10,4],[-3,8],[2,7],[8,9],[2,5],[1,4],[1,2],[2,2],[3,-1],[1,-2],[1,-3],[3,-3],[25,-8],[7,-8],[0,12],[-1,7],[-5,14],[-1,8],[1,30],[-1,11],[-7,17],[-1,9],[1,12],[3,9],[4,5],[5,0],[3,-2],[5,-8],[2,-2],[2,2],[3,9],[2,1],[3,-5],[3,-9],[3,-7],[7,5],[7,-16],[5,-4],[3,-4],[2,-8],[3,-6],[7,1],[-6,14],[0,7],[0,5],[5,9],[1,4],[0,13],[0,8],[3,22],[1,18],[1,6],[3,6],[2,2],[2,-2],[1,-14],[3,-8],[0,-6],[0,-27],[3,-27],[5,-20],[8,-16],[9,-14],[5,-6],[6,-6],[7,-3],[6,-1],[6,1],[12,6],[6,1],[3,-2],[6,-6],[3,2],[23,7],[22,7],[10,8],[5,6],[7,12],[3,3],[3,3],[3,0],[2,-2],[1,-6],[1,-6],[1,-6],[5,-8],[12,-8],[7,-9],[7,-3],[5,-6],[4,0],[6,6],[10,13],[10,17],[4,13],[1,2],[13,8],[2,5],[2,17],[1,6],[5,3],[3,-6],[1,-9],[1,-10],[2,-18],[5,1],[7,9],[7,6],[4,-1],[3,-2],[2,-6],[9,-34],[2,-12],[0,-3],[1,-3],[0,-4],[-1,-4],[-4,-4],[-1,-5],[-3,-5],[-1,-3],[0,-5],[0,-15],[5,13],[8,16],[5,18],[-8,41],[1,25],[4,20],[7,9],[7,3],[15,22],[5,4],[4,-2],[8,-10],[10,-9],[10,-6],[11,-2],[11,4],[-3,3],[-5,0],[-3,1],[-3,3],[-3,6],[-2,3],[-11,14],[-4,9],[-2,14],[0,24],[7,82],[0,10],[-1,9],[-2,9],[-12,15],[-1,5],[2,10],[11,24],[4,11],[3,20],[3,6],[5,2],[0,4],[-13,11],[-10,3],[-5,5],[-4,6],[-4,8],[-4,9],[0,4],[1,5],[1,8],[-2,6],[-4,4],[-3,5],[1,12],[-5,1],[-5,18],[-16,18],[-6,3],[-12,4],[-7,-2],[-10,-14],[-6,0],[-7,3],[-6,1],[-3,-2],[-1,-2],[-2,-4],[-3,-4],[-2,-6],[-2,-2],[-2,0],[-1,2],[-2,2],[-2,-2],[-8,-14],[-5,-6],[-5,-2],[-6,3],[-4,6],[-3,8],[-3,3],[-1,3],[-2,6],[-1,8],[-1,5],[2,3],[3,0],[2,2],[1,5],[-5,9],[-7,-2],[-7,-1],[-2,15],[-2,0],[-3,-4],[-3,1],[-2,6],[0,9],[6,3],[3,4],[-1,9],[-3,4],[-7,-5],[-3,1],[-2,6],[1,7],[0,5],[-4,3],[-4,1],[-7,5],[-4,2],[-3,-2],[-6,-5],[-2,-1],[-14,3],[0,2],[2,5],[4,4],[5,1],[-5,16],[3,0],[6,-6],[5,-2],[2,8],[-2,12],[-4,12],[-1,13],[2,-2],[6,-1],[2,-3],[3,-5],[2,2],[1,6],[-1,3],[-1,4],[1,8],[2,5],[1,-3],[1,-4],[4,-9],[9,-28],[1,-3],[2,1],[4,5],[6,9],[0,10],[-3,12],[-1,13],[5,-5],[1,4],[-2,13],[0,10],[1,1],[3,-4],[5,-2],[2,-5],[3,-10],[3,-9],[9,-8],[-1,-15],[4,-6],[3,2],[2,7],[3,3],[1,-8],[0,-4],[-3,-10],[-1,-4],[1,-6],[1,-9],[0,-6],[-1,-17],[0,-9],[2,-4],[2,-1],[0,-2],[1,0],[2,3],[0,4],[-1,5],[0,6],[3,6],[3,-14],[0,-17],[0,-18],[6,-12],[8,-3],[0,11],[-3,15],[-1,9],[4,1],[4,-5],[3,-3],[2,7],[0,7],[-2,7],[-5,10],[-2,2],[-1,-1],[-2,0],[-1,4],[0,2],[2,5],[0,4],[0,9],[0,8],[-1,7],[-3,9],[3,7],[-2,12],[-4,12],[-3,5],[-3,6],[0,12],[4,8],[7,-5],[3,-9],[2,-10],[3,-10],[5,-4],[2,-5],[4,-26],[2,-9],[6,-8],[1,8],[-3,22],[-2,24],[2,9],[6,6],[3,-1],[1,-3],[2,-2],[3,6],[0,3],[1,9],[2,6],[1,-4],[1,-10],[9,-41],[1,-2],[-1,-3],[0,-3],[1,-10],[-2,-22],[3,-5],[4,5],[2,10],[3,22],[6,9],[9,-12],[7,-24],[5,-22],[-2,-6],[0,-5],[2,-5],[1,0],[2,1],[2,2],[0,1],[2,-2],[3,-8],[2,-5],[2,-11],[12,-18],[6,-19],[4,-23],[7,-19],[12,-4],[6,4],[6,10],[5,12],[3,17],[2,2],[2,1],[3,2],[3,7],[1,1],[1,2],[0,4],[0,4],[0,3],[7,-1],[6,-8],[4,-3],[2,14],[0,14],[-2,8],[-7,12],[1,6],[2,1],[2,-1],[7,-2],[1,-2],[1,-3],[1,-3],[2,-2],[2,-1],[1,-2],[1,-5],[3,-15],[1,-3],[8,-7],[7,-17],[6,-20],[3,-17],[2,0],[2,-3],[3,-2],[2,-4],[1,-5],[-2,-17],[0,-8],[7,-21],[12,-46],[3,-9],[4,-9],[5,-7],[6,-3],[15,-5],[6,5],[3,20],[4,-2],[8,2],[3,0],[5,-6],[-2,-4],[-4,-4],[-4,-4],[-3,-10],[-1,-8],[3,-6],[5,-3],[6,0],[2,2],[1,4],[3,10],[3,5],[3,3],[2,-3],[2,-9],[-1,-3],[-2,-3],[-2,-4],[0,-4],[2,-2],[3,0],[5,0],[7,-9],[3,-3],[2,6],[2,2],[4,4],[5,5],[2,8],[3,-11],[0,-19],[-2,-21],[-3,-14],[2,-4],[2,7],[3,18],[3,7],[7,7],[1,1],[3,-2],[1,-4],[0,-4],[1,-2],[3,-7],[1,-2],[5,5],[5,2],[1,2],[3,5],[3,23],[5,-3],[5,-1],[5,1],[4,3],[4,7],[10,26],[8,0],[2,-1],[2,-3],[1,-3],[1,-2],[5,-2],[4,-4],[5,1],[4,10],[5,-14],[1,-8],[-1,-3],[-4,-1],[-3,-5],[-2,-7],[-2,-7],[-7,3],[-6,-8],[-4,-15],[3,-14],[13,-19],[15,-16],[11,15],[6,4],[2,7],[1,8],[2,6],[5,3],[4,-2],[3,-6],[2,-8],[0,-3],[2,-2],[1,-3],[1,-5],[-1,-7],[0,-5],[-1,-4],[2,-6],[12,24],[2,4],[1,-4],[4,-20],[1,-6],[2,-4],[4,-2],[4,-4],[0,-8],[-1,-1],[-5,-1],[-2,-2],[0,-5],[1,-4],[2,-4],[1,-4],[2,-7],[0,-6],[0,-13],[0,-4],[-2,-7],[0,-5],[1,-5],[2,-2],[2,2],[3,14],[10,15],[3,6],[1,11],[0,8],[1,5],[6,5],[17,-31],[10,-13],[13,-9],[25,-4],[11,7],[6,1],[3,-8],[3,9],[8,11],[18,37],[2,4],[5,5],[7,3],[6,0],[1,-3],[0,-7],[0,-13],[1,-5],[1,-5],[3,-8],[1,-4],[2,-9],[1,-3],[3,1],[3,2],[3,1],[1,-6],[2,-26],[1,-13],[3,-8],[5,-4],[13,-1],[3,-1],[2,-2],[6,-3],[1,-3],[1,-3],[5,-16],[2,-12],[2,-3],[9,-11],[2,-4],[1,-2],[6,-14],[2,-2],[4,2],[6,6],[5,4],[4,0],[3,-6],[4,-10],[4,-6],[4,-8],[5,-4],[5,5],[-2,10],[-11,14],[-6,14],[11,-1],[7,2],[7,3],[3,-8],[4,-9],[5,-5],[6,5],[4,3],[3,5],[0,6],[-6,-5],[-6,2],[-4,4],[-7,10],[-7,1],[-5,9],[4,7],[8,0],[11,13],[2,2],[3,6],[0,2],[-4,3],[-2,4],[6,10],[8,4],[4,10],[6,-2],[7,4],[1,-2],[-2,-11],[5,-5],[9,1],[7,4],[5,5],[3,11],[0,8],[6,2],[0,-11],[10,-10],[4,0],[10,18],[1,2],[6,6],[2,2],[16,19],[-3,6],[-14,-7],[-4,-2],[-12,-19],[-3,-1],[-3,8],[-2,11],[2,18],[6,18],[2,5],[6,1],[2,-1],[0,-3],[2,-3],[2,-1],[3,1],[1,3],[1,4],[2,4],[4,5],[5,4],[5,0],[5,-5],[10,13],[10,17],[8,10],[1,3],[1,8],[3,2],[3,1],[2,2],[4,13],[-2,11],[-2,10],[-2,13],[3,6],[6,-1],[7,-6],[3,-5],[-4,-23],[-5,-20],[-17,-38],[-9,-22],[-4,-8],[-10,-3],[-2,-3],[-1,-5],[-9,-12],[2,-4],[12,8],[6,4],[18,4],[4,3],[8,9],[6,1],[0,-4],[-4,-5],[-13,-8],[-8,-9],[-10,-19],[-7,-20],[-10,-18],[-3,-4],[-8,-13],[-6,-10],[-5,-10],[0,-23],[5,-20],[5,-8],[5,-9],[2,-7],[5,-20],[6,24],[4,8],[4,-4],[2,0],[2,17],[3,11],[12,17],[9,21],[2,3],[2,-2],[2,-6],[1,-6],[1,-4],[1,-3],[2,5],[3,10],[1,6],[2,1],[4,-1],[3,2],[17,36],[7,11],[-1,-11],[-4,-12],[-5,-10],[-3,-4],[-1,-2],[-3,-9],[0,-3],[-1,-6],[-1,-3],[-9,-11],[-3,-5],[-2,-5],[0,-7],[1,-5],[2,-3],[1,-4],[2,-14],[5,-5],[5,3],[5,6],[4,6],[5,5],[5,0],[2,-13],[-2,-7],[-2,-2],[-3,-1],[-1,-2],[0,-5],[-4,-17],[-10,-25],[-1,-6],[0,-6],[1,-7],[1,-5],[2,2],[4,4],[0,-5],[-1,-13],[2,-13],[1,-12],[3,-6],[5,5],[1,6],[0,5],[1,5],[4,2],[1,-1],[1,-3],[1,-3],[0,-3],[2,-2],[2,1],[1,2],[11,4],[2,0],[3,-3],[3,-10],[1,-2],[6,1],[6,2],[10,9],[9,15],[5,19],[9,47],[8,28],[1,10],[-1,10],[-4,7],[-5,5],[-5,1],[-4,-2],[-6,-2],[-5,-1],[-7,-1],[-3,11],[-2,3],[-8,-3],[-2,3],[-1,10],[2,5],[3,2],[8,3],[2,13],[15,39],[4,9],[6,1],[2,-1],[2,0],[7,16],[7,11],[9,19],[3,5],[3,2],[3,11],[4,-2],[4,-3],[9,6],[4,11],[8,4],[3,4],[0,10],[2,-3],[2,-6],[-1,-6],[-4,-6],[-4,-7],[-5,-6],[-4,-1],[-5,-4],[-5,0],[-3,-5],[1,-12],[2,-9],[3,-3],[4,8],[4,3],[4,-3],[4,-27],[3,-24],[8,-2],[-2,-17],[1,-22],[2,-15],[6,-11],[3,-9],[7,-17],[3,-12],[1,-4],[8,-11],[8,0],[7,10],[6,13],[-2,6],[-2,4],[-7,4],[-4,8],[-3,9],[-6,-8],[1,12],[8,-1],[5,8],[8,5],[6,-5],[7,-13],[5,-12],[7,0],[7,-5],[9,-23],[5,-16],[2,-20],[-1,-16],[6,-4],[5,6],[4,1],[-3,-13],[-2,-3],[-2,-2],[-3,-1],[-5,0],[-6,-7],[-13,-27],[-19,-49],[-3,-10],[-3,-5],[-1,10],[4,10],[5,15],[1,3],[1,6],[0,7],[-2,5],[-3,1],[-2,-3],[-2,-4],[-1,-2],[-8,-9],[-1,-19],[2,-23],[4,-16],[-5,0],[-3,-2],[-8,-23],[-6,-32],[5,-17],[-2,-8],[-6,4],[-12,2],[-5,-7],[-2,-11],[2,-11],[4,-7],[0,-14],[-1,-6],[1,-6],[0,-7],[-3,-7],[-4,0],[-3,5],[-2,8],[0,10],[-3,16],[-1,7],[0,3],[-2,2],[-2,1],[-2,0],[-3,-3],[-2,-4],[0,-8],[2,-7],[0,-8],[0,-6],[-6,-1],[-4,15],[-5,8],[-2,-4],[1,-11],[2,-20],[1,-10],[1,-5],[10,-17],[5,5],[1,-12],[-1,-13],[4,1],[3,0],[12,-16],[7,-9],[1,-13],[5,-12],[-1,-6],[-1,-4],[-3,3],[-2,5],[-1,2],[-3,4],[0,4],[-1,2],[-4,-2],[-6,-18],[-4,1],[0,19],[-3,9],[-4,1],[0,-1],[-2,-6],[0,-1],[-2,0],[-2,5],[-2,-1],[-4,-3],[-1,-3],[0,-8],[0,-4],[1,-5],[2,-3],[1,-2],[4,-1],[0,-3],[0,-4],[3,-12],[9,-5],[-7,-26],[-3,-31],[-5,7],[-5,-3],[-3,-11],[-1,-15],[0,-21],[-2,-9],[-4,-5],[0,6],[0,5],[-2,10],[-2,0],[-2,-7],[-10,-8],[-3,-14],[-6,-19],[-4,-8],[-3,-7],[-3,1],[0,6],[-3,1],[0,8],[7,8],[-1,7],[-2,6],[1,7],[4,0],[3,-4],[5,6],[2,11],[-2,8],[-4,10],[1,18],[-2,9],[1,32],[1,18],[-2,6],[-6,5],[-3,0],[-4,-9],[-2,-8],[-2,-9],[1,-9],[4,-9],[-3,-10],[1,-9],[-1,-6],[-6,-1],[-4,3],[-4,18],[-3,0],[-3,-5],[-2,-7],[2,-10],[2,-9],[0,-9],[-4,-7],[-2,3],[-2,0],[-1,-4],[0,-7],[0,4],[-2,-10],[-3,-1],[-5,-1],[-5,-16],[-3,14],[-3,19],[6,21],[-1,15],[-2,14],[-3,-1],[-9,-20],[-5,-24],[0,-18],[-3,-1],[-3,5],[-2,-1],[-1,-3],[-1,-9],[2,-28],[-1,-12],[-2,0],[-2,15],[-1,16],[-2,14],[-6,12],[-4,-2],[-4,-7],[-3,-26],[-3,-8],[-1,15],[-3,4],[-5,-6],[-4,-10],[-1,-11],[-6,-14],[0,-25],[8,-4],[2,-2],[1,-5],[0,-7],[-2,-3],[1,-7],[4,-1],[7,1],[1,0],[1,-6],[0,-6],[-1,-8],[-5,1],[-3,-2],[-4,-8],[-6,16],[-5,4],[-6,-4],[-1,-11],[1,-14],[0,-15],[3,-21],[-1,-7],[-1,-3],[-2,-3],[-2,-3],[0,-7],[-1,-13],[2,-9],[5,-22],[4,-8],[9,8],[0,-3],[1,-7],[1,-3],[-9,-8],[-2,-15],[5,-15],[9,-6],[10,4],[7,12],[10,28],[1,5],[0,4],[0,3],[3,4],[2,1],[3,-1],[1,-2],[2,-1],[1,-6],[-2,-5],[-5,-10],[-2,-7],[-4,-29],[-8,-29],[2,-6],[0,-8],[-2,-14],[-1,-3],[-1,-2],[-1,-4],[0,-6],[0,-14],[0,-4],[-8,-20],[-11,-14],[-6,-105],[2,-35],[-6,3],[-5,-1],[-5,-5],[-1,-7],[-2,-4],[-7,-3],[-1,-2],[-1,0],[-6,-8],[0,-2],[-8,-13],[-7,-19],[-16,-64],[-2,-12],[-5,-6],[-7,3],[-5,-12],[-15,-56],[-6,-20],[-4,-21],[1,-21],[-5,-7],[-7,-5],[-7,-8],[-3,-9],[-1,-7],[-1,-5],[-5,-1],[-4,2],[-3,3],[-4,1],[-3,-6],[5,-2],[2,-9],[1,-22],[2,-21],[13,-61],[6,-19],[22,-42],[9,-10],[9,-6],[3,1],[5,3],[2,-2],[5,-14],[8,-12],[3,-6],[2,-10],[6,3],[6,-4],[5,-7],[3,-6],[2,-5],[18,-18],[8,-14],[8,-20],[9,-18],[11,-8],[4,-2],[11,-12],[5,-7],[8,-16],[3,-4],[3,-3],[7,-3],[8,-14],[11,-10],[5,-7],[4,-6],[1,-3],[4,-27],[3,-44],[2,-9],[3,-7],[13,-19],[5,-6],[13,-2],[6,-3],[14,-31],[7,-9],[4,-9],[6,-8],[7,-3],[2,2],[3,4],[3,3],[3,-2],[1,-4],[2,-16],[2,-5],[13,-20],[3,-7],[10,-28],[3,-4],[2,-5],[-2,-11],[-2,-12],[-1,-9],[3,-12],[5,-1],[5,6],[2,9],[2,7],[5,0],[12,-5],[9,1],[2,-1],[3,-3],[6,-11],[2,-2],[5,1],[0,3],[-1,8],[2,12],[4,6],[11,12],[2,1],[5,-17],[10,-18],[13,-14],[12,-8],[5,-8],[2,-2],[6,-1],[2,-2],[3,-2],[14,-21],[3,-5],[1,-7],[8,-18],[19,-30],[5,-4],[7,0],[2,-1],[2,-5],[1,-6],[3,-1],[3,1],[2,0],[7,-13],[2,-3],[4,-1],[6,4],[3,1],[6,-2],[30,-23],[8,-12],[12,-7],[4,-5],[9,-30],[2,-9],[16,-49],[2,-7],[4,-15],[13,-24],[11,-19],[13,-19],[1,0],[17,-42],[11,-12],[14,-26],[9,-12],[10,-7],[4,-5],[7,-3],[3,-1],[2,-2],[3,-8],[1,-2],[5,-3],[17,3],[8,-7],[12,-13],[13,-9],[15,9],[28,0],[3,-1],[8,-17],[3,-3],[4,-2],[8,-10],[4,-4],[14,-6],[10,-12],[8,-4],[28,-4],[11,-6],[8,-12],[6,-37],[9,-14],[18,-19],[-5,-19],[1,-30],[3,-31],[3,-21],[12,-48],[9,-23],[9,-14],[12,-7],[24,-4],[10,-5],[3,-4],[7,-13],[10,-10],[2,-4],[4,-8],[12,-18],[12,-25],[6,-11],[8,-5],[8,-2],[23,-14],[7,-1],[4,-6],[3,-6],[26,-19],[2,-6],[6,-22],[10,-19],[3,-3],[33,-6],[34,8],[45,20],[6,5],[2,4],[3,7],[6,2],[12,1],[4,4],[5,5],[7,14],[3,3],[6,1],[3,4],[2,4],[8,10],[8,16],[4,6],[13,4],[2,5],[2,8],[2,10],[3,6],[6,5],[7,4],[5,1],[4,6],[3,12],[7,44],[3,50],[3,22],[2,6],[6,14],[2,18],[1,5],[2,8],[3,38],[-1,11],[-2,11],[-1,11],[3,10],[26,68],[9,51],[2,2],[5,1],[2,1],[2,4],[6,17],[15,33],[2,9],[1,9],[4,20],[3,39],[3,10],[4,-2],[7,24],[2,14],[1,12],[2,12],[0,7],[-1,4],[-2,3],[-1,6],[0,11],[2,8],[6,17],[2,10],[1,12],[4,23],[2,11],[0,24],[1,6],[2,9],[2,12],[16,58],[2,12],[-6,12],[-9,61],[0,5],[1,7],[5,8],[1,7],[1,24],[9,120],[13,101],[23,113],[2,10],[0,20],[1,11],[2,8],[5,1],[-2,12],[3,9],[5,6],[3,10],[0,10],[-2,10],[1,8],[7,0],[-2,11],[1,12],[2,12],[1,14],[-1,12],[-3,12],[-2,9],[-4,7],[0,4],[2,6],[-7,18],[-2,11],[-17,152],[0,38],[-1,10],[-4,21],[-1,12],[0,26],[3,24],[16,91],[3,25],[1,25],[-2,28],[-4,23],[-6,18],[-8,16],[-13,41],[-5,49],[1,53],[15,121],[7,29],[1,13],[1,6],[9,22],[2,9],[8,41],[1,14],[3,-3],[3,-1],[3,1],[3,3],[-4,10],[1,9],[3,7],[1,8],[1,6],[3,11],[0,5],[0,6],[-1,7],[0,6],[-1,2],[-1,4],[-2,3],[-3,3],[-1,3],[-1,4],[-1,3],[-3,6],[-2,7],[-3,16],[-1,9],[-1,41],[-3,25],[-1,2],[-2,2],[-2,3],[-1,5],[0,5],[6,20],[3,9],[3,11],[1,10],[4,-9],[4,6],[6,10],[10,10],[6,13],[4,14],[2,11],[1,9],[7,37],[2,17],[1,10],[3,6],[3,0],[0,-6],[-1,-15],[1,0],[4,14],[5,-3],[4,-10],[4,-10],[3,-35],[0,-26],[0,-13],[2,-6],[3,-4],[8,-29],[-1,11],[1,12],[-1,13],[-4,21],[-2,25],[-3,8],[24,16],[5,9],[-7,-1],[-9,1],[-7,3],[-6,4],[-4,12],[-2,6],[-14,9],[-3,2],[4,8],[11,12],[6,10],[6,4],[3,5],[2,2],[4,0],[6,0],[-7,5],[-5,6],[-3,0],[-5,-11],[-4,3],[-4,0],[-10,-3],[-7,0],[-4,3],[-4,5],[-3,6],[-4,15],[-2,7],[-4,4],[-12,8],[12,16],[4,9],[-1,4],[-13,-2],[-4,2],[-5,8],[-1,-3],[-1,-1],[0,-11],[0,-36],[1,-1],[7,0],[2,-3],[1,-6],[-3,-2],[-6,2],[-12,-11],[-7,0],[-2,13],[1,9],[27,127],[5,37],[2,9],[4,2],[11,-8],[5,0],[3,3],[3,1],[-3,3],[-2,5],[-1,5],[0,8],[-2,0],[-1,-4],[-1,-5],[-2,-3],[-3,1],[-1,7],[1,8],[3,24],[5,23],[4,35],[9,30],[11,23],[11,7],[-2,-12],[-2,-10],[0,-9],[5,-35],[1,-12],[0,-12],[9,36],[4,5],[3,-2],[13,-18],[3,18],[-1,7],[-5,3],[-4,17],[-2,5],[-3,5],[-3,0],[-2,-1],[-3,2],[-2,19],[1,29],[5,50],[12,31],[1,8],[-2,9],[1,15],[34,217],[1,13],[-1,34],[1,13],[1,9],[4,20],[2,22],[-1,50],[-3,49],[2,20],[6,12],[13,6],[2,-5],[3,6],[5,4],[6,2],[6,1],[6,3],[5,6],[7,19],[10,23],[1,8],[1,9],[5,27],[2,10],[4,8],[4,2],[12,-2],[1,2],[5,8],[1,2],[1,1],[1,1],[1,2],[1,0],[1,-1],[0,-4],[0,-4],[0,-3]],[[89522,44124],[-1,-2],[-1,0],[-3,1],[-3,0],[-6,-5],[-4,-2],[-3,-3],[-3,-7],[-2,-8],[0,-6],[-10,8],[-2,4],[-3,11],[-4,12],[-2,15],[1,19],[1,3],[1,2],[1,2],[5,1],[1,2],[1,2],[2,4],[5,6],[1,0],[0,3],[3,11],[6,-3],[4,-14],[7,-27],[7,-14],[1,-7],[0,-8]],[[89528,44173],[-8,-5],[-6,9],[-2,15],[4,13],[9,3],[7,-9],[2,-14],[-6,-12]],[[89532,44421],[-8,-28],[-4,3],[-3,6],[-4,3],[-5,1],[-3,-2],[-3,6],[-3,7],[-1,8],[-1,8],[3,3],[2,3],[1,4],[0,11],[0,3],[5,7],[6,2],[11,-1],[6,-5],[5,-13],[2,-12],[-2,-6],[-4,-8]],[[89490,44440],[-3,-4],[-4,2],[-1,7],[-4,9],[-4,6],[-3,7],[-1,10],[13,41],[4,-2],[4,-4],[5,-12],[2,-7],[0,-6],[-2,-25],[-2,-5],[-2,-5],[-2,-12]],[[89658,44918],[3,-7],[-4,-7],[-4,-6],[-3,-7],[-3,-3],[-5,-2],[-20,0],[-4,2],[-4,5],[-3,10],[3,10],[7,5],[7,0],[8,-3],[7,1],[10,5],[5,-3]],[[89516,44968],[-11,-1],[-11,4],[-9,8],[4,12],[12,7],[20,-13],[1,-10],[-1,-5],[-5,-2]],[[54706,79254],[3,-28],[-1,-7],[-1,-3],[-5,-7],[-4,-5],[-2,-6],[-2,-8],[-7,-15],[-3,-8],[-1,-8],[-2,-32],[-1,-4],[-1,-1],[0,-3],[-1,-7],[1,-3],[2,-2],[6,-1],[2,-1],[3,-4],[2,-4],[2,-5],[-1,-2],[-1,-4],[-1,-3],[2,-1],[0,-1],[1,-3],[1,-4],[1,-2],[1,-4],[2,-2],[2,-1],[3,-4],[2,-1],[1,-2],[0,-3],[0,-7],[0,-2],[4,-22],[2,-10],[0,-13],[2,-10],[7,-10],[3,-4],[5,-1],[3,-2],[4,-11],[1,-4],[4,-5],[-3,-5],[-1,-6],[-2,-11],[1,-1],[4,-4],[-2,-10],[6,-5],[9,-4],[7,-9]],[[54763,78899],[-18,-21],[3,-5],[0,-3],[-1,-4],[-1,-5],[0,-1],[-3,-3],[-1,-1],[1,-3],[1,-1],[1,-1],[1,-1],[-1,-10],[-2,-8],[-3,-6],[-4,-5],[-10,-3],[-3,-3],[0,-6],[2,-3],[5,-4],[3,-2],[2,-11],[2,-4],[-4,-7],[0,-10],[2,-12],[1,-19],[1,-6],[2,-5],[4,-3],[-6,-3],[-20,-4],[-22,-8],[-11,2],[-4,16],[-4,-5],[-5,-12],[-3,-4],[-3,-1],[-15,3],[-3,3],[-3,5],[-2,6],[-1,6],[-2,5],[-3,4],[-23,12],[-11,2],[-11,-6],[-1,-6],[0,-8],[-1,-5],[-3,-3],[-11,-9],[-3,-4],[-2,-1],[-1,0],[-2,2],[-1,3],[-2,-3],[-4,-10],[-3,-5],[5,-4],[16,-9],[7,3],[19,-11],[9,2],[6,-4],[5,-9],[2,-12],[-1,-12],[4,-4],[4,-5],[2,-8],[0,-9],[-3,-7],[-8,-5],[-3,-5],[1,-24],[-4,-4],[-10,-12],[-30,-20],[-4,8],[-3,4],[-4,-2],[-3,-7],[1,-23],[0,-2],[-2,-1],[-1,-1],[0,-4],[1,-2],[1,-1],[1,-1],[1,-1],[8,-26],[1,-9],[-1,-8],[-4,-5],[-9,-7],[1,-11],[-4,-13],[1,-9],[1,-2],[2,0],[3,-1],[2,-3],[0,-6],[-3,-10],[0,-3],[4,-4],[9,7],[5,-1],[3,-7],[-1,-7],[-6,-12],[-6,-5],[-2,-9],[2,-8],[6,-2],[3,-3],[1,-3],[-1,-3],[-3,-3],[-13,-7],[-3,-5],[8,-1],[4,-2],[4,-6],[1,-6],[-5,-2],[-7,0],[-5,-1],[-1,-2],[-2,-1],[-1,1],[-2,2],[-4,5],[-6,1],[-12,-2],[-10,3],[-4,-1],[-2,-6],[-2,-9],[-2,-3],[-3,-1],[-2,-3],[-1,-4],[0,-3],[0,-4],[-2,-4],[-2,-2],[-6,-4],[-7,-7],[-3,-5],[-10,-20],[-4,-5],[-4,-4]],[[54470,78222],[-11,-9],[-6,-5],[-1,-1],[-12,-4],[-1,-1],[-3,-4],[0,-2],[2,-1],[0,-4],[-2,-19],[0,-1],[-1,-9],[1,-10],[3,-15],[6,-5],[3,-10],[1,-13],[-6,9],[-3,3],[-11,3],[-19,14],[-8,3],[-7,-1],[-11,-7],[-8,-5],[-7,0],[-22,4],[-4,4],[-1,-8],[0,-8],[-2,-5],[-1,-2],[-2,-1],[-3,-2],[-4,2],[-6,0],[-6,-3],[-4,-4],[-3,-9],[0,-1],[-1,-5],[-1,-4],[-1,-2],[-5,-6],[-8,-2],[-7,5],[-1,2],[-5,6],[-8,5],[-15,-1],[-36,-3],[-9,1],[-19,3],[-5,1],[-7,1],[-16,-7],[-10,-22],[-5,11],[-4,1],[-4,-3],[-6,-6],[-1,0],[-5,-1],[-4,1],[-3,-2],[-5,-10],[-3,-10],[-2,-10],[-2,-9],[-3,-10],[-3,-7],[-1,-2],[-6,-5],[-7,-1],[-3,2],[-5,-3],[-1,-3],[-2,-4],[-3,-5],[-2,-8],[-2,1],[-1,0],[-2,0],[-5,-9],[-3,-3],[-3,-1],[-6,-1],[-3,-1],[-4,-9],[-2,-11],[-2,-5],[-1,-5],[-5,-3],[-3,5],[-3,11],[-4,7],[-10,-3],[-4,1],[-4,3],[-5,3],[-2,3],[0,3],[-2,3],[-3,1],[-9,-3],[-33,1],[-26,1],[-1,0],[-3,2],[-15,19],[-4,3],[-5,2],[-5,1],[-5,-2],[-4,-1],[-5,1],[-25,18],[-8,2],[-18,-5],[-4,0],[-19,7],[-4,0]],[[53805,78019],[-4,-1],[-4,1],[-34,16],[-12,0],[-2,3],[-4,6],[-2,1],[-17,-2],[-12,4],[-28,-9],[-11,1],[-6,3],[-18,16],[-23,8],[-65,7],[-15,15],[-7,3],[-3,1],[-2,0],[-4,-3],[-3,0],[-2,2],[-6,5],[-2,2],[-14,2],[-16,-3],[-4,1],[-5,3],[-8,9],[-9,2],[-6,1],[-12,7],[-9,13],[-6,19],[-2,13],[-5,4],[-5,1],[-6,3],[-3,3],[-1,3],[-1,4],[0,7],[1,7],[1,4],[1,4],[-1,8],[-2,13],[-5,4],[-11,1],[-4,2],[-2,3],[-1,3],[-3,5],[-3,2],[-7,2],[-3,2],[4,6],[0,5],[-2,6],[-2,6],[-1,14],[-1,7],[-2,6],[3,10],[16,14],[6,11],[0,8],[1,8],[-7,3],[-13,-4],[-5,-1],[-28,-21],[-20,-2],[-12,-6],[-12,-9],[-10,-11],[-12,-3],[-3,-3],[-6,-7],[-3,-1],[-5,3],[-9,10],[-5,1],[-2,-1],[-3,1],[-14,4],[-7,-1],[-8,-3],[-3,-2],[-2,-1],[-3,1],[-2,2],[-2,2],[-1,3],[-2,1],[-5,2],[-3,-1],[-2,-3],[-2,-4],[-10,-14],[-8,1],[-9,6],[-10,3],[-19,-5],[-20,-9],[-4,-4],[-18,-26],[-3,-7],[-3,-21],[-5,-18],[0,-3],[0,-6],[0,-3],[-2,-2],[-3,-2],[-1,-1],[-6,-16],[-4,-6],[-4,-1],[-4,3],[-10,1],[-5,-1],[-9,-5],[-3,0],[-3,2],[-5,6],[-2,2],[-3,0],[-5,-3],[-3,1],[-8,6],[-3,2],[-6,-3],[-3,0],[-2,5],[2,3],[6,8],[1,4],[-2,6],[-22,18],[-4,2],[-5,-1],[-28,-11],[-12,2],[-9,10]],[[52903,78223],[0,13],[3,20],[-1,10],[-3,5],[-9,10],[-6,14],[-3,5],[-1,1],[-2,1],[-2,-1],[-8,-7],[-7,-11],[-4,-14],[-1,-11],[-7,-1],[-5,3],[-4,-2],[-5,-10],[-1,-8],[0,-5],[-1,-4],[-3,-6],[-12,-9],[-7,-3],[-2,0],[-4,0],[-12,6],[-6,5],[-11,15],[-30,14],[-6,8],[-4,7],[0,6],[0,6],[1,14],[1,6],[0,3],[-1,2],[-1,0],[-2,1],[1,7],[-53,24],[-4,1],[-15,-3],[-5,2]],[[52661,78337],[8,15],[2,15],[-3,15],[-7,13],[-8,8],[0,5],[3,9],[0,4],[-3,8],[-2,5],[-1,5],[1,9],[-4,6],[-3,5]],[[52644,78459],[9,22],[10,17],[1,4],[1,10],[1,6],[11,19],[3,9],[0,25],[-8,11],[-10,6],[-8,18],[-1,4],[-1,10]],[[52652,78620],[1,-1],[17,-6],[17,0],[8,5],[4,10],[3,10],[7,10],[4,4],[4,0],[4,-2],[3,-5],[1,-7],[-1,-7],[1,-6],[6,-5],[2,1],[4,3],[1,0],[8,-4],[9,-1],[4,1],[3,4],[1,-10],[3,-5],[3,-5],[3,-8],[0,-2],[0,-2],[0,-3],[3,-3],[3,2],[2,3],[4,2],[13,-29],[3,-7],[-2,-6],[-6,-7],[3,-6],[1,-6],[0,-6],[2,-6],[2,-4],[2,1],[2,2],[4,2],[1,0],[3,-2],[2,0],[1,1],[3,5],[12,3],[5,-4],[0,-10],[-5,-22],[1,-4],[0,-4],[-1,-4],[-1,-2],[-4,-1],[-1,-1],[-2,-7],[-2,-4],[2,-1],[4,1],[18,3],[6,4],[12,11],[6,7],[5,10],[6,18],[1,3],[3,3],[6,3],[3,2],[4,9],[4,12],[3,14],[0,12],[-1,8],[-2,5],[-2,4],[-4,3],[3,23],[0,6],[-2,6],[-2,7],[-1,5],[4,2],[5,2],[2,1],[1,-1],[1,-6],[0,-2],[-1,-3],[-1,-4],[0,-5],[2,-2],[2,-3],[4,-3],[12,-2],[3,1],[4,4],[6,11],[3,4],[7,0],[37,-20],[1,-2],[1,-3],[1,-3],[3,-1],[8,1],[11,8],[4,1],[4,0],[3,-2],[6,-7],[-2,-4],[-9,-9],[2,-5],[14,-10],[14,-21],[1,-3],[0,-4],[-1,-4],[-1,-3],[2,-8],[4,-3],[29,-1],[6,3],[18,18],[7,3],[6,-4],[-1,-16],[7,-1],[6,4],[4,6],[4,7],[5,8],[5,2],[12,0],[5,3],[2,6],[-1,4],[-3,3],[-3,2],[13,21],[6,3],[7,-2],[6,-3],[13,4],[6,3],[5,8],[2,6],[2,13],[2,7],[7,9],[1,2],[6,0],[12,-4],[22,0],[16,-5],[3,2],[3,10],[3,3],[23,6],[64,-4],[2,1],[8,15],[1,4],[0,5],[0,16],[-1,3],[-1,2],[-3,3],[-2,4],[-1,3],[0,5],[4,2],[7,8],[2,3],[4,2],[1,0],[-1,-2],[0,-7],[-1,-4],[-2,-4],[-1,-4],[1,-7],[3,-3],[3,0],[6,5],[6,1],[16,-5],[5,2],[11,6],[5,-2],[1,-3],[3,-13],[1,-5],[3,-3],[8,-10],[4,-3],[5,0],[6,2],[5,2],[2,4],[10,12],[5,4],[10,4],[10,0],[16,-6],[4,1],[-2,-11],[4,-7],[7,-7],[6,-8],[-8,-5],[-3,-14],[1,-15],[7,-8],[4,-1],[3,-1],[2,-3],[13,-20],[14,-15],[3,-2],[2,2],[2,1],[3,0],[3,-2],[1,-2],[2,-1],[3,0],[2,2],[8,14],[0,5],[-1,3],[-1,3],[0,4],[-1,3],[0,11],[1,1],[3,10],[0,1],[-1,-1],[0,14],[1,-1],[4,9],[1,1],[3,12],[1,1],[0,8],[0,7],[0,7],[-3,9],[-5,13],[-3,6],[-4,4],[-4,1],[-7,-4],[-4,-2],[-16,5],[-4,6],[5,12],[2,4],[0,4],[0,4],[1,3],[1,5],[18,41],[-1,2],[-6,13],[-10,31],[-4,7],[-2,2],[-6,8],[-7,6],[-2,4],[-1,7],[-1,1],[0,6],[-4,13],[-20,29],[-3,6],[-2,7],[-1,8],[0,8],[2,4],[2,1],[1,0],[2,1],[4,9],[1,2],[11,11],[4,6],[5,11],[2,4],[5,4],[15,4],[0,1],[4,5],[9,7],[10,15],[5,4],[28,16],[39,10],[9,7],[27,34],[4,9],[2,13],[0,3],[1,3],[2,4],[0,6],[0,17],[0,5],[2,6],[3,11],[1,6],[0,5],[-3,6],[-1,10],[-1,3],[0,2],[1,4],[3,4],[9,4],[9,2],[29,-11],[5,-4],[4,-5],[5,-9],[11,-7],[1,-1],[2,16],[2,6],[1,0],[6,1],[2,2],[3,3],[1,3],[5,14],[1,8],[1,9],[1,10],[-2,19],[1,7],[3,5],[-3,2],[-1,2],[-3,8],[-2,0],[1,5],[8,25]],[[53837,79350],[11,-4],[6,-4],[5,-6],[6,-7],[18,-15],[3,-3],[5,-10],[1,-5],[2,-2],[2,-1],[1,-2],[1,-3],[-1,-4],[-1,-1],[-1,1],[-1,-1],[-2,-6],[-1,-1],[-1,-1],[1,-8],[2,-4],[4,-8],[3,-3],[9,-6],[39,-6],[28,-14],[3,1],[2,1],[6,6],[14,9],[4,7],[7,23],[4,4],[6,-11],[11,-8],[4,-2],[4,2],[8,5],[4,1],[2,-2],[1,-4],[0,-4],[0,-3],[3,0],[4,2],[2,0],[3,-6],[1,-5],[2,-4],[5,-1],[4,6],[2,2],[1,15],[0,19],[1,16],[5,12],[15,18],[1,11],[3,7],[1,7],[2,6],[4,2],[14,-3],[15,-8],[5,1],[4,10],[-1,1],[-1,4],[-2,5],[0,3],[0,5],[2,7],[6,37],[0,16],[-1,19],[0,16],[4,13],[0,3],[0,3],[0,2],[1,1],[6,1],[16,-7],[21,-3],[2,-8],[2,-8],[-1,-8],[-1,-9],[5,0],[21,8],[2,1],[4,7],[0,3],[1,8],[1,2],[2,0],[2,-2],[1,-3],[1,-1],[13,-1],[7,-2],[13,-10],[12,-5],[6,-5],[14,-17],[6,-3],[17,-10],[21,-17],[7,-2],[6,0],[5,2],[10,8],[2,1],[8,0],[2,-2],[1,-7],[2,-3],[1,-2],[6,0],[3,-3],[2,-2],[2,1],[-3,-6],[4,2],[3,-1],[2,-2],[0,-7],[5,2],[2,-2],[0,-5],[0,-2],[28,-29],[15,-9],[25,2],[39,-8],[6,2],[4,-5],[1,0],[5,1],[3,4],[14,35],[5,4],[8,-2],[3,1],[5,3],[2,0],[3,-1],[5,-4],[16,-7],[5,-1],[6,-3],[2,-7],[1,-9],[2,-7],[3,-3],[5,-1],[10,0],[5,-2],[10,-9],[5,-3],[5,1],[11,5],[4,0],[7,-13],[4,-39],[9,-16]],[[62815,73485],[-3,0],[-16,6],[-18,14],[-59,21],[-6,4],[-14,9],[-25,1],[-16,6],[-8,1],[-2,0],[-1,1],[-6,5],[-4,2],[-4,2],[-6,5],[-6,7],[-3,6],[0,6],[0,5],[1,5],[1,6],[-1,4],[-7,5],[-3,3],[-1,5],[-2,13],[-1,5],[-3,4],[-2,3],[-3,3],[-2,6],[3,9],[-2,6],[-4,4],[-3,1],[-3,2],[0,6],[1,5],[-1,4],[-3,0],[-2,-1],[-2,-3],[-1,-1],[-29,16],[-7,-4],[-2,9],[-3,30],[-2,6],[-2,6],[-2,6],[-5,19],[-2,6],[-3,2],[-3,6],[-2,6],[-1,4],[-1,3],[-10,11],[-1,3],[-1,2],[-1,3],[-2,1],[-3,-1],[-1,1],[-8,8],[-1,5],[3,7],[-6,8],[-4,12],[-8,57],[-3,13],[-6,7],[1,2],[1,2],[-7,1],[-5,1],[-2,1],[-4,4],[0,2]],[[62446,73945],[-3,7],[-4,23],[-2,7]],[[64057,74358],[4,-7],[1,-9],[-2,-6],[-5,2],[-4,-2],[-4,6],[-2,9],[0,7],[4,-4],[3,1],[2,3],[3,0]],[[63979,74444],[3,-3],[4,2],[2,-4],[1,-12],[3,-7],[3,-5],[3,-8],[0,-7],[-2,-4],[-4,-1],[-6,0],[2,14],[-9,21],[0,14]],[[62897,75278],[6,-3],[7,1],[13,-3],[5,-5],[2,-11],[-2,-24],[2,-10],[5,-7],[5,0],[5,5],[9,13],[6,3],[11,4],[3,4],[2,2],[5,8],[2,0],[1,-7],[3,-23],[1,-8],[3,-7],[18,-27],[5,-5],[3,-1],[8,-2],[3,-2],[1,-4],[2,-11],[1,-4],[3,-8],[14,-19],[7,-18],[2,-18],[4,-11],[1,0],[11,3],[5,3],[6,2],[5,-2],[4,-8],[2,-11],[1,-10],[2,-8],[5,-6],[1,-1],[2,-4],[1,-5],[1,-6],[2,-6],[8,-17],[2,-7],[1,-15],[0,-31],[3,-13],[4,-8],[22,-21],[6,-3],[2,-2],[29,-4],[6,-4],[8,-17],[5,-7],[6,0],[9,11],[6,3],[5,-1],[15,-12],[8,-7],[6,-1],[19,2],[4,1],[12,6],[6,6],[2,6],[-2,8],[-1,12],[1,12],[2,6],[4,4],[4,8],[2,11],[2,9],[3,5],[7,-2],[6,6],[9,42],[6,17],[9,9],[32,10],[8,7],[15,20],[24,24],[6,11],[5,17],[12,52],[2,3],[19,40],[14,34]],[[63494,75251],[2,-4],[9,-8],[10,-14],[24,-55],[10,-15],[4,-9],[1,-15],[19,-34],[11,-37],[5,-3],[5,-8],[4,-9],[2,-8],[6,-15],[2,-3],[1,-3],[7,-3],[2,-2],[4,-10],[10,-34],[9,-28],[4,-10],[3,-11],[2,-13],[3,-51],[2,-11],[3,-4],[2,-7],[5,-43],[13,-35],[33,-61],[3,-7],[3,-10],[5,-8],[13,-12],[6,2],[6,-7],[5,-10],[5,-5],[3,-6],[-1,-13],[-5,-22],[-2,-12],[0,-6],[0,-6],[2,-4],[3,-8],[1,-3],[2,-5],[5,-8],[6,-7],[3,-3],[12,-1],[6,-2],[4,-4],[10,-14],[6,-5],[13,-3],[12,-6],[7,-1],[5,2],[15,10],[7,2],[32,-2],[2,-3],[1,-5],[1,-4],[1,-4],[5,-10],[6,-8],[5,-5],[25,-8],[5,-5],[3,-9],[4,-13],[4,-13],[5,-6],[6,-3],[6,-9],[4,-12],[2,-12],[3,-49],[2,-5],[2,-11],[2,-13],[-1,-8],[-5,17],[-6,15],[-7,13],[-14,18],[-6,5],[-6,4],[-12,3],[-11,6],[-5,1],[-3,-1],[-4,-2],[-3,-2],[-10,0],[-5,-3],[-10,-13],[-5,0],[-2,3],[-4,9],[-2,4],[-3,2],[-7,2],[-7,7],[-6,-5],[-9,-14],[2,-14],[-8,-13],[-11,-9],[-19,-7],[-16,-16],[-21,-12],[-5,-6],[-11,-20],[-5,-5],[-3,-7],[0,-12],[1,-16],[0,-7],[-15,-9],[-2,-9],[0,-12],[4,-12],[3,-5],[4,-5],[2,-4],[1,-6],[-2,-4],[-2,-3],[-5,-8],[-3,-1],[-2,-3],[-2,-6],[-1,-7],[0,-5],[1,-12],[4,-13],[1,-7],[-2,-7],[-2,-4],[-2,-3],[-2,-3],[0,-6],[0,-3],[1,-3],[1,-4],[0,-4],[-2,-3],[-4,-5],[-2,-9],[0,-3],[2,-4],[-1,-8],[1,-8],[6,-15],[0,-5],[-4,-5],[-7,-6],[-7,-14],[-6,-12],[-5,-15],[0,-10],[-3,-10],[-3,-13],[-2,-14],[-1,-12],[0,-16],[3,-11],[25,-39],[4,-6],[2,-8],[0,-3],[-1,-2],[-2,-20],[0,-5],[3,-7],[-4,3],[-2,3],[-2,5],[-2,5],[-2,0],[1,-9],[3,-10],[3,-8],[5,-5],[0,-5],[-7,3],[-4,7],[-3,9],[-14,15],[-10,-6],[-7,-15],[-3,-19],[1,-65],[-1,-7],[-2,-11],[-4,-19],[-1,-9],[-1,-21],[-1,-13],[-3,-10],[-21,-25],[-11,-7],[-7,11],[1,7],[0,5],[0,3],[3,5],[12,4],[4,4],[4,9],[2,12],[1,11],[-4,12],[-5,4],[-13,1],[0,5],[-2,25],[-1,6],[-5,7],[-5,3],[-12,-1],[-4,-2],[-1,-5],[-1,-6],[-3,-8],[0,-3],[0,-7],[0,-4],[-2,-2],[-1,0],[-1,0],[0,-28],[1,-15],[4,-12],[-1,-15],[-7,-42],[-1,-4],[-6,-21],[0,-2],[-8,-16],[-10,5],[0,-21],[1,-10],[1,-9],[6,-28],[2,-91],[2,-100]],[[63576,73231],[-18,6],[-9,0],[-6,-5],[-6,-10],[-7,-7],[-8,-5],[-6,-4],[-13,2],[-1,0],[-9,15],[-8,21],[-4,8],[-6,14],[-5,10],[-4,9],[-5,12],[-4,6],[-4,8],[-2,16],[-3,13],[-6,0],[-15,-11],[-8,0],[-5,8],[-4,11],[-14,18],[0,10],[1,12],[-2,8],[0,5],[-4,5],[-37,30],[-18,24],[-5,17],[-1,25],[3,6],[14,15],[1,4],[0,5],[1,3],[51,16],[12,11],[2,7],[2,7],[0,1],[2,8],[0,8],[-2,7],[-8,30],[-4,7],[-16,11],[-16,25],[-7,16],[-3,16],[0,20],[5,17],[8,13],[10,8],[17,6],[15,16],[7,4],[3,1],[-6,22],[-8,18],[-19,29],[-47,92],[-17,26],[-5,6],[-4,2],[-3,-8],[-3,-4],[-4,-2],[-21,1],[-6,-3],[-6,-6],[-4,-7],[-12,-21],[-33,-31],[-5,-4],[-15,-25],[-4,-4],[-6,-1],[-19,-11],[-12,-11],[-9,-12],[-14,-30],[-9,-15],[-8,-8],[-4,-3],[-27,-18],[-14,-13],[-2,-5],[-1,-6],[-10,-27],[-5,-22],[-1,-5],[-3,-5],[-2,-2],[-17,-16],[-3,-1],[-4,2],[-8,6],[-5,0],[-4,-4],[-4,-6],[-4,-7],[-7,-21],[-2,-3],[-2,-3],[-5,-4],[-2,-3],[-3,-9],[-5,-18],[-5,-7],[-16,-14],[-5,-7],[-3,-8],[-8,-27],[-3,-9],[-4,-7],[-5,-6],[-4,-4],[-6,-4],[-5,-1]],[[62500,74922],[27,36],[42,56],[9,5],[9,-1],[5,-4],[13,-11],[5,-2],[5,1],[9,4],[4,-1],[5,-7],[9,-14],[39,-25],[19,-6],[6,-4],[0,-4],[-4,-3],[-6,-4],[-6,-12],[7,-17],[11,-16],[5,-5],[14,-14],[42,-24],[13,-3],[7,1],[5,4],[7,7],[8,8],[6,2],[21,0],[5,-3],[4,-7],[8,-16],[16,-24],[6,-5],[17,-9],[4,-7],[8,-16],[5,-5],[6,0],[3,6],[1,10],[3,9],[6,6],[6,-1],[5,-2],[5,1],[4,9],[2,3],[2,19],[1,21],[3,16],[2,3],[3,6],[2,4],[1,3],[0,11],[1,4],[2,5],[2,0],[1,0],[-2,9],[-8,21],[-6,10],[-2,5],[-2,3],[-4,-3],[-5,16],[-13,13],[-27,19],[-13,19],[-6,2],[-3,3],[-15,16],[-4,10],[-3,13],[-2,23],[-1,4],[-6,19],[0,3],[-4,0],[-2,-4],[-1,-6],[-3,-3],[-7,10],[-4,26],[0,30],[3,21],[5,9],[6,1],[13,-5],[6,1],[4,4],[4,5],[12,24],[6,15],[11,35]],[[58487,49048],[-9,-25],[-4,-12],[-11,-55],[-2,-19],[-1,-6],[-3,-7],[-6,-14],[-3,-7],[-1,-15],[3,-6],[6,0],[6,4],[10,10],[6,5],[-2,-12],[-16,-35],[-2,-8],[-1,-9],[0,-15],[-6,-18],[-3,-13],[0,-10],[7,-19],[4,-9],[5,-3],[-1,-6],[2,-5],[2,-5],[1,-7],[0,-1],[2,2],[5,16],[4,6],[3,3],[3,-1],[18,-23],[3,-3],[2,-2],[0,-4],[1,-9],[1,-3],[4,-2],[2,2],[3,2],[4,1],[3,-3],[6,-9],[4,-2],[7,1],[13,8],[6,0],[-2,-7],[-1,-4],[-8,-21],[-2,-9],[1,-9],[7,-13],[3,-9],[0,-3],[-1,-8],[-1,-3],[1,-5],[4,-5],[1,-4],[0,-8],[0,-7],[-2,-14],[-4,-12],[0,-5],[1,-10],[0,-4],[-4,-16],[-7,-9],[-7,-2],[-8,8],[-1,-7],[-1,-6],[-3,-3],[-4,-1],[-7,-6],[-6,-8],[-6,-11],[-5,-13],[2,-2],[9,-10],[-1,-15],[-7,-15],[-13,-13],[-4,-10],[-2,-4],[-2,-1],[-7,-4],[-1,-1],[0,-5],[0,-2],[-6,-1],[0,2],[-5,-2],[-1,-2],[-1,-7],[0,-2],[-8,-12],[-2,-7],[1,-12],[0,-11],[-2,-11],[-12,-38],[-2,-11],[0,-11],[1,-10],[2,-9],[1,-9],[-1,-11],[-13,9],[-7,-10],[-10,-39],[-15,-32],[-3,-12],[-5,-43],[-4,-22],[-1,-4],[-7,-24],[-8,-21],[-19,-34],[-3,-9],[-7,-36],[-3,-9],[-7,-8],[-2,-4],[-10,-12],[-10,-20],[-15,-15],[-2,-1],[-5,1],[-3,3],[-3,1],[-4,-6],[-1,-2],[0,-9],[-2,-5],[-4,-5],[-2,-4],[-1,-8],[0,-8],[-1,-6],[-3,-6],[-2,1],[-11,2],[-14,7],[-65,-2]],[[58167,47834],[-8,144],[-2,11],[-8,57],[-17,61],[-10,25],[-5,12],[-2,16],[-3,70],[3,43],[2,25],[1,46],[-6,151],[1,17],[1,8],[7,13],[1,2],[-5,8],[-2,12],[-1,39],[1,12],[2,10],[4,5],[1,6],[0,4],[-2,34],[-2,9],[-4,6],[-5,4],[-5,2],[-5,4],[-3,11],[-1,12],[-2,9],[-4,6],[-5,4],[-4,5],[-2,9],[0,10],[-1,6],[-5,13],[-2,15],[-1,5],[-5,4],[-5,1],[-5,3],[-3,10],[1,13],[2,10],[3,7],[6,1],[-4,14]],[[58059,48858],[5,60],[6,13],[16,2],[5,-1],[17,-16],[6,-4],[12,-3],[6,-3],[5,-6],[3,-6],[0,-2],[0,-7],[1,-8],[0,-1],[6,-12],[2,-7],[-1,-7],[-4,-10],[-1,-6],[1,-7],[3,-13],[0,-7],[2,-11],[7,1],[12,11],[5,1],[5,-2],[11,-4],[6,-7],[5,3],[5,7],[7,2],[2,0],[3,2],[2,2],[8,7],[2,0],[3,-3],[11,-8],[6,-1],[6,1],[3,4],[1,5],[1,13],[2,5],[3,0],[6,-4],[7,0],[6,2],[5,7],[6,12],[3,11],[4,12],[2,13],[2,13],[0,6],[1,61],[6,45],[-2,45],[2,31],[0,5],[1,4],[3,0],[2,-3],[2,-3],[0,-1],[5,-9],[2,-1],[3,1],[2,-1],[3,-2],[4,-6],[8,-21],[5,-9],[6,-8],[6,-5],[6,0],[5,7],[13,34],[0,4],[0,5],[1,4],[4,0],[8,-9],[4,-2],[4,0],[6,3],[5,3],[4,5],[3,7],[2,3],[1,4],[2,5],[5,3],[1,-2],[9,-4],[1,1],[1,-4],[2,-8],[1,-5],[15,-26],[10,-9],[9,-1]],[[51665,80525],[-1,-2],[0,-1],[0,-1],[1,-1],[4,-3],[0,-6],[-1,-6],[1,-5],[4,-1],[11,5],[5,-1],[5,-7],[17,-35],[-4,-4],[3,-8],[6,-4],[19,-1],[1,-3],[-2,-6],[-3,-5],[0,-2],[-6,-5],[-9,-10],[-5,-11],[4,-8],[-2,-4],[1,-3],[2,-1],[3,0],[-2,-6],[2,-2],[2,-7],[3,-3],[2,0],[10,4],[0,1],[1,0],[1,0],[0,-1],[5,-3],[12,-3],[5,-1],[-3,-4],[-1,-5],[1,-5],[1,-6],[3,-5],[2,-1],[1,-2],[-1,-10],[-1,-14],[-2,-8],[0,-7],[10,-23],[0,-3],[0,-5],[-3,-5],[-8,-2],[-3,1],[-4,2],[-3,0],[-3,-3],[-3,-4],[-2,-6],[-1,-6],[2,-5],[-5,-7],[-12,-4],[-6,-4],[-3,-6],[-6,-6],[-3,-5],[4,-5],[1,-7],[0,-7],[-2,-5],[-2,-2],[-5,-1],[-3,-2],[0,-2],[-1,-7],[-1,-2],[3,-4],[1,-3],[-1,-4],[-2,-4]],[[51699,80152],[-4,2],[-1,5],[0,6],[-1,5],[-3,5],[-3,-1],[-1,-2],[-3,-2],[-6,-2],[-3,1],[-1,1],[-3,1],[-2,5],[-1,5],[-1,3],[-5,-5],[-6,-1],[-2,-5],[-1,-8],[-2,-9],[-4,-6],[-11,-6],[-4,-6],[-1,-4],[-1,-10],[-1,-4],[-1,-3],[-4,-5],[-2,-4],[0,-6],[0,-6],[0,-5],[-2,-3],[-6,-3],[-2,-3],[0,-8],[2,-4],[1,-3],[-3,-8],[-2,-3],[-4,-1],[-2,-2],[-2,-4],[-2,-3],[0,-3],[-1,-4],[-10,-23],[-1,-6],[3,-2],[6,-6],[3,-6],[-7,1],[0,-3],[-1,-2],[0,-1],[-1,-2],[3,-4],[-3,-3],[-2,-5],[1,-7],[2,-8],[2,-7],[3,-2],[3,0],[4,-3],[2,-4],[6,-18],[1,-3],[0,-8],[0,-1],[2,-2],[4,-2],[1,-1],[2,-1],[2,1],[2,0],[1,-3],[0,-2],[1,-3],[-2,-2],[-1,-3],[0,-3],[0,-4],[-1,-2],[-1,-2],[1,-4],[2,-2],[6,-1],[2,-2],[1,-9],[-1,-5],[-3,-3],[-2,-4],[-4,-14],[-2,-6],[-3,-4],[5,-3],[-3,-10],[-6,-9],[-7,-4]],[[51608,79807],[-3,1],[-6,5],[-3,1],[-3,-3],[-4,-6],[-3,-2],[-6,1],[-6,4],[-7,2],[-6,-5],[-4,-6],[0,-4],[-1,-3],[-4,0],[-3,1],[-9,5],[-5,-3],[-7,-8],[-7,-6],[-6,3],[-2,5],[1,5],[1,6],[0,6],[-2,5],[-13,34],[-3,4],[-2,2],[-9,5],[-3,2],[-2,1],[-1,-2],[-1,-3],[-1,-3],[-2,-1],[-5,1],[-1,3],[-1,5],[1,9],[2,2],[1,2],[-1,9],[-6,9],[-6,8],[-6,-1],[-12,-4],[-7,2],[-5,5],[-4,6],[-12,24],[-3,4],[-10,4],[-5,4],[-11,14],[-5,4],[-6,0],[-12,-6],[-6,-1],[-7,1],[-3,5],[0,22],[0,3],[-3,6],[0,3],[0,4],[2,4],[1,3],[2,7],[1,5],[1,5],[0,8],[-5,11],[-13,7],[-4,9],[2,9],[10,37],[0,6],[0,5],[0,5],[6,16],[1,1],[3,-5],[1,11],[1,12],[1,10],[-3,5],[-8,-3],[-4,2],[-1,9],[-7,-5],[-30,-41],[-2,-5],[0,-5],[0,-4],[1,-3],[1,-4],[-2,-19],[-2,-9],[-3,-7],[-3,-3],[-12,-2],[-38,-27],[-9,-2],[-2,1],[-41,16],[-17,-4],[-5,0],[-3,1],[-16,12],[2,-1],[0,9],[-1,9],[-2,1],[1,7],[2,4],[2,4],[5,6],[6,6],[7,5],[0,4],[-2,5],[-2,5],[-4,26],[-3,2],[-3,-1],[-6,-3],[-3,2],[0,11],[6,24],[1,11],[1,4],[3,6],[7,7],[3,4],[0,7],[-2,3],[-3,5],[-4,3],[-2,1],[-4,-2],[0,-4],[1,-4],[-2,-3],[-6,4],[-7,22],[-6,7],[-6,5],[-9,14],[-5,3],[-6,-1],[-18,-10],[-6,0],[-5,3],[-5,5],[-6,4],[-11,2],[-12,-1],[-4,-2],[-2,-4],[-5,-11],[-2,-5],[0,-2],[-2,-1],[-1,0],[-1,-4],[-9,12],[-3,25],[0,27],[-2,23],[-5,11],[-5,8],[-6,4],[-7,2],[-18,0],[-3,3],[3,7],[0,5],[-2,3],[-4,1],[-4,0],[-2,-3],[-3,-3],[-4,-4],[-12,-6],[-7,-2],[-5,2],[-12,9],[-4,4],[-4,7],[-1,7],[-1,19],[-7,33],[-2,18],[4,9],[-4,15],[-2,5],[-4,2],[-3,0],[-3,4],[-3,11],[-4,10],[-5,11],[-4,6],[-7,3],[-23,-10],[-14,-6],[-7,-5],[-5,-8],[-8,-19],[-4,-4],[-4,1],[-1,1],[-22,14],[-6,6],[-1,3],[-4,12],[-1,4],[-11,14],[-2,4],[0,4],[-2,3],[-3,3],[-3,0],[-5,-1],[-2,1],[-5,1],[-2,1],[-1,3],[-2,8],[-2,2],[-3,2],[-1,2],[0,3],[2,6],[1,4],[-6,26],[2,6],[6,8],[2,4],[-1,12],[-4,8],[-10,15],[-3,12],[-3,26],[-4,13]],[[50700,80724],[6,6],[10,5],[38,38],[58,46],[56,49],[62,27]],[[50930,80895],[2,-23],[-1,-15],[0,-13],[4,-15],[7,-10],[2,-1],[6,-4],[9,-2],[13,3],[1,6],[-1,7],[1,7],[3,4],[4,1],[4,1],[11,3],[7,1],[7,-2],[34,-15],[5,-5],[2,-7],[-1,-7],[1,-6],[4,-7],[3,-2],[33,1],[7,2],[12,14],[35,23],[13,14],[11,20],[2,6],[2,14],[0,3]],[[51172,80891],[0,-1],[6,-6],[2,-6],[2,-11],[4,-7],[5,-6],[4,-6],[1,-4],[0,-3],[-1,-5],[-1,-4],[-1,-1],[3,2],[2,4],[4,11],[-9,5],[-2,3],[-1,5],[0,13],[-1,6],[-2,5],[-4,6]],[[51183,80891],[6,0],[2,0],[10,-7],[6,-3],[13,-1],[5,4],[1,10],[-1,6],[-7,10],[-2,5],[0,6],[2,5],[1,4],[-4,5],[15,11],[15,8],[8,1],[3,-1],[3,-4],[-1,-10],[-2,-8],[-1,-6],[6,-5],[3,0],[8,2],[9,-3],[5,0],[3,2],[3,3],[22,35],[9,6],[4,0],[5,-3],[5,-4],[2,-5],[1,-9],[-2,-8],[-1,-9],[2,-10],[-12,7],[-3,0],[-2,-8],[6,-3],[20,-1],[5,-2],[10,-6],[6,2],[7,9],[7,12],[4,9],[2,7],[1,6],[2,4],[4,1],[1,-1],[8,-8],[6,-14],[-1,-10],[-3,-9],[-1,-13],[1,-6],[10,-14],[1,-5],[3,-13],[2,-4],[4,-3],[11,1],[5,-1],[5,-8],[0,-21],[5,-2],[2,1],[9,3],[32,-2],[6,3],[12,11],[5,3],[6,-1],[7,-5],[5,-9],[2,-12],[1,-13],[2,-2],[4,-5],[16,-7],[4,-3],[2,-4],[3,-3],[5,0],[12,3],[3,-1],[5,-3],[6,-11],[3,-4],[9,3],[5,-1],[2,-7],[1,-3],[-4,-5],[-1,-7],[6,-9],[-2,-2],[-3,-2],[-3,-1],[-3,1],[1,-4],[0,-2],[1,-3],[-2,-8],[-2,-4],[-2,-4],[-3,4],[-2,-2],[-2,-6],[0,-8],[3,-6],[-4,-15],[-11,-23],[6,2],[3,0],[3,-2],[-4,-8],[-4,-13],[-4,-8],[-1,-1],[-4,-2],[-3,-1],[-20,-31],[1,-13],[4,-9],[5,-4],[2,-2],[6,-4],[4,-1],[-1,-7],[-2,-14],[5,-4],[3,-1],[3,1],[1,3],[3,6],[2,2],[3,-1],[6,-8],[3,-3],[24,1],[3,-2],[3,-1],[20,-1],[6,2]],[[50998,57396],[-6,-13],[-19,-69],[-3,-27],[-2,-9],[-6,-32],[1,-14],[4,-16],[50,-147],[7,-14],[2,0],[2,1],[1,0],[2,-1],[2,-4],[-2,-23],[0,-13],[1,-12],[2,-11],[3,-10],[5,-53],[0,-17],[-6,-32],[0,-10],[1,-7],[2,-5],[3,-4],[2,-5],[1,-7],[3,-19],[2,-7],[4,-2],[4,-1],[3,-5],[3,-11],[1,-17],[0,-15],[0,-18],[-2,-16],[-7,-29],[-2,-16],[-1,-31],[-1,-11],[-5,-11],[-4,-1],[-18,19],[-6,3],[-5,-4],[-5,-11],[-2,-6],[-1,-4],[0,-11],[-1,-7],[-7,-23],[-6,-27],[0,-11],[4,-14],[19,-41],[2,-7],[1,-9],[-1,-11],[0,-3],[-2,-13],[-4,-6],[-4,-4],[-4,-9],[-2,-9],[-2,-51],[-2,-11],[-9,-23],[-8,-28],[-5,-10],[-16,4],[-11,-6],[-20,-18],[-5,-7],[-2,-11],[-1,-14],[1,-11],[4,-19],[2,-18],[-2,-15],[-9,-11],[-5,1],[-5,2],[-5,-3],[-2,-15],[0,-4],[2,-7],[-1,-3],[-16,-47],[-3,-4],[-4,-3],[-2,-3],[-5,-19],[-1,-16],[1,-17],[4,-18],[1,-10],[0,-38],[-2,-13],[-6,-23],[-9,-61],[-4,-18],[-7,-10],[-19,-11],[-3,0],[-3,3],[-3,4],[-3,3],[-3,1],[-8,-1],[-3,-1],[-3,-4],[-2,-5],[-3,-4],[-4,-1],[-21,3],[1,-15],[-1,-38],[-2,-16],[0,-4],[-4,-10],[0,-1],[0,-5],[1,-1],[2,-1],[1,-4],[0,-9],[-4,-17],[-1,-9],[1,-5],[1,-10],[0,-5],[-2,-3],[-4,-4],[-2,-5],[0,-6],[0,-1],[5,-144],[1,-18],[-2,-20],[-2,-6],[-6,-14],[-1,-7],[-1,-5],[1,-11],[0,-6],[-2,-24],[0,-12],[1,-14],[2,-13],[5,-25],[2,-12],[0,-13],[-2,-11],[-3,-10],[-2,-10],[-1,-11],[-1,-35],[-3,-38],[-1,-37],[-1,-5],[-3,-12],[-1,-4],[1,-3],[0,-2],[2,-7],[3,-17],[7,-16],[2,-9],[1,-8],[-3,-80],[0,-19],[1,-23],[6,-22],[8,-21],[6,-22],[-1,-25],[0,-5],[0,-3],[-1,-2],[-6,3],[-3,0],[-2,-3],[-1,-6],[6,-146],[-1,-8],[0,-6],[-3,-6],[-2,-11],[-1,-4],[-1,-4],[1,-8],[3,-6],[7,-13],[2,-5],[-1,-7],[-3,-3],[-4,-2],[-3,-3],[-7,-22],[1,-21],[3,-23],[2,-25],[-3,-25],[-1,-12],[1,-12],[3,-6],[2,-4],[3,-2],[3,0],[2,-3],[0,-6],[1,-27],[-1,-7],[-4,-5],[-5,-9],[-3,-13],[0,-12],[2,-25],[0,-13],[-5,-31],[-1,-6],[-1,-12],[-2,-27],[0,-36]],[[50751,54241],[-1,0],[-110,-22],[-22,-10],[-95,-23],[-74,-36]],[[50449,54150],[-2,12],[6,6],[36,18],[6,1],[-6,44],[-5,44],[-7,25],[-3,3],[-6,7],[-1,3],[-1,5],[1,13],[-1,6],[-1,5],[-5,8],[-1,4],[0,7],[-2,1],[-3,0],[-2,1],[-3,2],[-2,4],[-2,5],[-2,5],[-1,6],[0,5],[1,5],[0,5],[-3,12],[-4,6],[-1,7],[2,13],[4,12],[2,6],[1,9],[-1,14],[-3,12],[-1,11],[0,10],[2,25],[0,8],[-3,6],[-4,7],[-4,10],[-5,42],[21,0],[5,3],[0,87],[0,86],[0,89],[-1,58],[0,51],[0,10],[0,118],[0,93],[1,95],[0,68],[-3,50],[-1,6],[-2,1],[-1,2],[2,15],[0,10],[0,5],[9,32],[1,11],[-1,5],[-7,20],[-2,6],[0,7],[0,18],[-1,79],[0,55],[0,65],[-1,74],[-1,16],[-2,14],[-6,22],[-17,38],[-23,49],[-1,5],[-5,17],[-4,23],[-2,60],[-3,17],[-5,-5],[-4,9],[-3,15],[-1,12],[1,7],[5,16],[2,8],[0,6],[0,12],[1,6],[0,7],[-2,28],[0,46],[-1,64],[0,44],[0,5],[-4,20],[-29,41],[-40,56],[-24,33],[-16,23],[-26,37],[-21,29],[-2,9],[0,14],[3,61],[5,33],[0,23],[-2,53],[4,20],[15,30],[3,11],[1,6],[0,14],[1,6],[4,18],[0,6],[-2,12],[-1,6],[1,12],[7,37]],[[50250,56980],[8,-10],[4,-1],[5,0],[1,3],[1,7],[0,7],[-2,3],[-2,2],[-1,6],[0,6],[0,6],[1,2],[2,7],[2,7],[2,5],[1,1],[1,0],[6,-3],[2,-2],[2,-3],[1,-1],[1,-2],[2,-5],[0,-2],[2,0],[3,4],[1,0],[8,-2],[3,-2],[1,-3],[2,-6],[2,-4],[1,3],[0,10],[-3,6],[-2,7],[0,6],[0,7],[-1,7],[-3,2],[-1,2],[0,2],[1,8],[-1,2],[-2,1],[-2,-3],[-1,-1],[0,9],[1,1],[9,5],[2,2],[2,11],[1,3],[3,0],[5,-6],[3,-2],[-1,11],[-1,20],[-5,18],[1,7],[3,6],[3,9],[2,-4],[2,-7],[0,-3],[3,0],[1,1],[1,2],[3,1],[5,0],[5,-3],[9,-9],[3,14],[1,4],[-1,6],[-3,6],[0,4],[1,7],[3,-3],[4,-8],[1,-6],[2,5],[2,2],[2,-2],[2,-5],[5,9],[-1,7],[-2,8],[-2,11],[2,11],[6,7],[6,6],[5,6],[-3,13],[1,5],[2,7],[3,5],[4,3],[3,3],[1,9],[5,-6],[5,-2],[26,-5],[0,-3],[-1,-9],[0,-4],[5,1],[5,-23],[6,4],[5,5],[12,6],[6,5],[4,3],[12,-1],[6,0],[10,10],[6,2],[5,-3],[2,4],[4,-2],[7,-7],[12,-9],[9,-2],[8,8],[1,3],[37,78],[20,35],[15,17],[4,8],[1,6],[0,6],[0,10],[3,17],[11,25],[3,16],[10,57]],[[50663,57515],[0,6],[-3,10],[-1,7],[2,7],[2,2],[3,-1],[2,1],[2,5],[2,8],[2,5],[3,0],[3,-2],[2,1],[0,10],[0,7],[-2,3],[-3,1],[-3,3],[-3,5],[-2,5],[-1,6],[-10,55],[-2,33],[-1,14],[3,10],[7,7],[3,1],[7,-1],[3,1],[1,1],[2,7],[2,2],[2,-1],[1,-3],[2,-1],[1,6],[2,7],[2,2],[2,-1],[3,0],[1,-1],[1,-4],[1,-2],[2,0],[1,2],[3,5],[1,2],[10,5],[1,0],[2,-3],[2,0],[1,1],[4,6],[2,0],[9,-5],[3,3],[4,13],[1,4],[0,5],[1,4],[2,4],[3,2],[3,-4],[2,2],[3,4],[4,11],[4,4],[2,1],[6,0],[3,1],[6,1],[4,9],[13,-25],[6,-7],[2,-6],[2,-7],[2,-14],[3,-5],[3,-3],[3,-2],[9,-3],[2,-1],[1,-3],[3,-11],[11,-35],[48,-91],[1,-4],[4,-5],[1,-4],[0,-12],[2,-14],[2,-10],[6,-23],[4,-10],[2,-4],[4,-5],[4,-2],[3,4],[4,4],[4,-1],[3,-4],[3,-2],[12,-16],[10,-7],[3,-5],[3,-4],[9,-28],[2,-4],[1,-2],[2,-2],[1,-5],[1,-9],[1,-5],[1,-5],[1,-4],[2,-3],[3,-10],[1,-3]],[[50060,59300],[1,-13],[-3,-8],[-3,-7],[-4,-9],[0,-17],[8,-34],[2,-18],[-19,-110],[2,-30],[8,-28],[4,-7],[40,-76],[11,-33],[1,-4],[0,-5],[-3,-7],[-1,-5],[-1,-18],[-1,-7],[-7,-22],[-1,-7],[1,-7],[3,-11],[2,-4],[2,-2],[1,-4],[2,-5],[-1,-3],[-2,-10],[0,-5],[3,-6],[3,-4],[3,-5],[1,-11],[2,-10],[4,-7],[5,-5],[3,-7],[0,-5],[-2,-11],[0,-6],[2,-4],[6,-8],[2,-5],[2,-11],[2,-7],[2,-3],[4,-8],[9,-13],[3,-8],[3,-7],[5,-4],[2,-5],[-1,-11],[-3,-13],[-1,-9],[4,-15],[7,-5],[37,3],[3,-2],[0,-4],[0,-5],[1,-3],[-1,-2],[-1,-3],[1,-4],[3,-6],[5,-6],[5,0],[11,2],[13,-8],[15,-19],[11,-25],[1,-27],[6,-18],[9,-14],[30,-29],[5,-3],[12,-3],[4,-3],[5,-6],[5,-13],[-8,-6],[-5,6],[-5,8],[-5,3],[-1,-3],[-1,-7],[-3,-20],[-2,-1],[-6,5],[-15,8],[-22,19],[-6,2],[-4,-24],[0,-50],[0,-56],[0,-38],[0,-11],[1,-11],[3,-9],[8,-10],[20,-3],[8,-9],[16,-28],[16,-29],[21,-36],[7,-13],[23,-40],[15,-27],[19,-33],[8,-9],[9,-5],[29,-6],[35,-6],[5,1],[4,7],[4,10],[3,12],[4,14],[2,8],[1,3],[3,1],[2,-2],[2,-1],[3,4],[5,11],[2,3],[27,-5],[11,-6],[8,-18],[1,-11],[1,-3],[3,-7],[3,-5],[5,-6],[3,-7],[2,-8],[0,-7],[3,-36],[1,-8],[2,-9],[2,-4],[3,-8],[1,-5],[0,-2],[0,-7],[0,-3],[0,-13],[-2,-6],[-4,-2],[-16,-3],[-2,0],[-3,4],[-1,0],[-1,-2],[-2,-6],[-2,-2],[-16,-7],[-4,-7],[-1,-17],[6,-21],[12,-35],[20,-61],[20,-57],[22,-64],[14,-26]],[[50250,56980],[-36,-2],[-27,-1],[-17,-7],[-35,-26],[3,26],[-4,2],[1,2],[0,3],[0,2],[1,3],[0,2],[-1,1],[0,1],[-31,13],[-25,11],[-63,27],[-34,15],[-14,6],[-15,6]],[[49953,57064],[-37,17],[-1,-10],[1,-6],[1,-5],[-3,-9],[-3,-7],[-14,-21],[-5,12],[-5,9],[-6,0],[-5,-14],[-1,-9],[-1,-13],[-1,-6],[-4,-6],[-7,-7],[-3,-7],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-11,1],[-6,-1],[-4,-3],[-2,-10],[-2,-15],[-3,-13],[-5,-6],[-13,27],[1,4],[2,4],[1,5],[-2,4],[-2,1],[-2,-2],[-1,1],[-1,6],[-2,1],[-31,1],[-2,4],[-1,1],[-2,-1],[-2,-4],[-6,-2],[-6,-15],[-5,-1],[2,8],[-3,0],[-1,2],[-2,8],[-2,3],[-3,1],[-38,6],[-8,-2],[-2,-9],[-34,0],[-35,1],[-7,3],[-9,7],[-3,3],[-3,2],[-35,3],[-5,-3],[-2,-11],[-4,-4],[-43,-1],[-61,-1],[-62,-1],[-67,-2],[-54,-1],[-26,0],[-7,0],[0,6],[-24,1],[1,-4],[-1,-4],[2,-11],[3,-11],[1,-11],[-1,-13],[-4,-9],[-4,-7],[-4,-9],[-2,-13],[-3,-27],[-5,-16],[-1,-14],[-1,-5],[-3,-7],[-1,-3],[0,-6],[1,-3],[1,0],[2,-1],[1,-3],[0,-4],[-1,-3],[-1,-2],[-2,-10],[-3,-14],[-1,-6],[1,-11],[8,-31],[1,-6],[1,-12],[0,-6],[2,-4],[3,-8],[1,-2],[1,-12],[2,-7],[10,-19],[3,-3],[5,-2],[7,0],[1,-3],[-1,-5],[-3,-6],[-3,-2],[-4,-1],[-2,-2],[-2,-4],[-2,-5],[-2,-9],[-2,-12],[0,-12],[3,-10],[2,-2],[3,-1],[2,-1],[1,-4],[1,-7],[2,-1],[2,0],[3,-2],[2,-4],[2,-2],[1,-3],[0,-7],[-1,-8],[-2,-5],[-5,-10],[-4,-12],[0,-12],[3,-26],[0,-51],[1,-12],[7,-20],[1,-11],[0,-15],[-3,-27],[2,-15],[6,-22],[1,-6],[-2,-6],[-9,-23],[-5,-20],[-1,-12],[2,-12],[2,-6],[2,0],[1,0],[3,-2],[1,-5],[0,-6],[1,-5],[2,-3],[1,-2],[-3,-6],[-3,-9],[-1,-10],[0,-9],[0,-10],[2,-6],[9,-19],[11,-27]],[[49253,56089],[-9,-17],[-7,-31],[-5,-9],[-7,1],[-6,10],[-28,78],[-14,57],[-5,27],[-3,14],[-4,9],[-6,3],[-9,-6],[-5,1],[-5,8],[-3,14],[-3,29],[-6,14],[-6,3],[-7,0],[-4,6],[-2,12],[1,14],[0,11],[-3,5],[-5,-7],[-9,-28],[-4,-8],[-7,-1],[-2,7],[-1,13],[0,11],[-1,4],[-3,-2],[-3,-4],[-3,-2],[-3,3],[-4,10],[-4,2],[-44,8],[-16,-5],[-5,2],[-3,5],[-2,5],[-2,4],[-4,3],[-1,-2],[-2,-7],[-2,-1],[-1,0],[-4,5],[-2,0],[-14,-3],[-4,-3],[-2,-4],[-5,-10],[-2,-4],[-6,-3],[-18,-1],[-6,-3],[-10,-15],[-6,-3],[-4,-4],[-1,-10],[-2,-8],[-9,-1],[-2,-1],[-5,-5],[0,-1],[0,-3],[-1,-3],[-1,-1],[-2,1],[-3,4],[-16,9],[-4,-1],[-5,-8],[-8,-23],[-5,-6],[-11,-3],[-5,-4],[-3,-7],[1,0],[3,-3],[-8,-18],[-2,-6],[0,-5],[1,-14],[-1,-7],[-3,-15],[-2,-5],[-8,7],[-4,2],[-1,-9],[0,-10],[-1,-5],[-4,4],[-1,6],[-3,20],[-2,8],[-7,4],[-10,-1],[-9,2],[-4,12],[1,11],[2,15],[1,10],[-1,3],[-1,2],[-2,1],[-5,0],[-1,-1],[-1,-3],[0,-4],[-2,-8],[0,-8],[-1,-6],[-4,-2],[-3,2],[-4,13],[-3,5],[-4,-8],[-3,-3],[-4,-1],[-4,0],[1,-2],[-1,-3],[-2,-4],[-3,-3],[-2,-2],[0,2],[-1,4],[-4,3],[-2,2],[0,5],[-1,6],[-1,4],[-3,6],[-1,4],[-1,4],[-2,2],[-3,0],[-2,0],[-1,-2],[0,-3],[2,-3],[-4,-2],[-4,13],[-4,-3],[-1,5],[0,3],[-3,4],[0,5],[3,-1],[2,1],[5,3],[-3,10],[-1,14],[-2,9],[-6,-4],[-2,12],[-4,8],[-5,3],[-7,1],[-2,1],[-1,3],[-1,3],[-3,1],[-2,-2],[-2,-6],[-1,-4],[-3,2],[-8,16],[0,7],[4,24],[-1,4],[-3,14],[-3,8],[-1,6],[6,1],[1,8],[-2,11],[-3,9],[-4,4],[-3,4],[-3,6],[-2,10],[-2,-5],[-4,-3],[-3,1],[-2,7],[4,4],[-2,1],[-2,2],[-2,1],[-2,0],[3,5],[6,5],[0,4],[-7,10],[-2,6],[2,11],[-8,-1],[1,7],[2,10],[-1,13],[-1,-4],[-1,-4],[-2,-3],[-2,-2],[-3,1],[0,3],[1,3],[1,3],[0,33],[-2,9],[-1,0],[-4,6],[-5,1],[-2,-8],[-2,-1],[-14,17],[-4,-2],[-13,4],[-5,0],[-2,-3],[-1,-4],[-2,-3],[-3,-2],[-3,0],[-2,0],[-1,2],[-2,1],[-1,-2],[-1,-3],[-1,-2],[-6,0],[-4,3],[-4,4],[-3,5],[-1,4],[-1,5],[-1,5],[-2,2],[-2,1],[-2,0],[-4,3],[0,11],[-4,15],[-5,13],[-5,6]],[[48465,56644],[2,8],[2,31],[1,4],[7,22],[4,31],[-1,6],[-2,4],[0,9],[2,9],[3,6],[-5,3],[0,5],[-1,10],[0,5],[2,32],[2,9],[2,4],[2,2],[2,3],[0,6],[0,5],[4,34],[-1,7],[-4,13],[-5,41],[-3,17],[-7,-4],[2,16],[-3,30],[0,6],[1,9],[4,6],[27,7],[5,3],[5,4],[6,9],[3,8],[2,24],[2,14],[9,19],[4,12],[0,10],[-2,61],[1,11],[5,8],[6,6],[2,5],[0,8],[-2,13],[0,49],[-2,21],[-10,17],[-3,1],[-3,-1],[-3,1],[-2,7],[0,7],[2,6],[2,6],[1,6],[3,23],[0,13],[0,11],[-2,11],[-3,9],[-5,5],[-5,5],[-3,2],[-3,1],[-4,-2],[-1,2],[-8,9],[-1,1],[-2,7],[0,3],[2,1],[4,1],[1,-1],[3,-5],[2,-1],[1,1],[2,4],[1,2],[10,3],[1,1],[1,2],[1,2],[2,0],[2,-2],[2,-2],[1,-2],[2,1],[2,3],[6,17],[10,18],[8,17],[4,8],[9,5],[9,12],[4,4],[4,1],[11,-1],[5,1],[3,0],[3,1],[3,3],[2,5],[6,5],[6,-1],[6,-3],[6,0],[12,9],[6,0],[5,-10],[5,3],[8,3],[4,5],[2,6],[2,7],[2,8],[3,5],[3,2],[5,-2],[3,1],[6,5],[0,2],[1,6],[1,9],[3,12],[10,12],[8,1],[3,6],[-7,28],[24,42],[1,3],[1,3],[-1,7],[1,9],[0,5],[1,4],[3,4],[4,1],[3,-5],[2,-7],[2,-4],[9,3],[-3,26],[-10,50],[2,14],[5,12],[5,11],[4,11],[2,8],[0,2],[-2,3],[-2,7],[-6,28],[-5,9],[-12,20],[-2,10],[2,30],[1,2],[1,-1],[3,1],[8,7],[10,4],[9,2],[8,-4],[8,-10],[4,-2],[6,1],[5,4],[3,5],[1,1],[2,7],[6,38],[1,7],[-4,27],[1,34],[-2,16],[-5,14],[-9,14],[-3,10],[-7,34],[-9,16],[-1,5],[0,8],[1,5],[2,5],[4,19],[4,4],[18,-1],[3,1],[2,6],[0,5],[-6,7],[-2,5],[1,9],[4,11],[5,9],[4,6],[3,1],[3,-1],[2,0],[3,3],[6,13],[4,14],[5,24],[2,11],[5,9],[2,3],[8,4],[2,3],[5,10],[3,3],[3,2],[4,5],[4,7],[1,6],[-2,3],[-3,0],[-2,3],[4,9],[1,2],[1,1],[1,-1],[1,-2],[1,-4],[0,-1],[2,-11],[1,-4],[2,-2],[7,-3],[1,-1],[0,-7],[-2,-2],[-3,-1],[-2,-2],[-5,-11],[-3,-3],[-3,-7],[3,-5],[7,-4],[5,0],[6,1],[4,-2],[10,-8],[11,-6],[5,-5],[21,-34],[13,-17],[22,-36],[2,-2],[4,1],[2,-1],[4,-10],[3,-3],[2,-1],[6,0],[12,-3],[3,-1],[3,1],[3,10],[0,11],[-3,20],[1,17],[6,5],[45,6],[4,5],[-10,148],[4,21],[2,14],[1,33],[-2,15],[-6,9],[6,11],[7,-5],[13,-20],[8,-2],[6,3],[5,1],[7,-9],[5,-10],[2,-5],[0,-9],[2,-9],[4,2],[4,11],[4,4],[2,1],[7,-1],[2,-2],[2,-3],[2,-2],[2,1],[9,8],[10,7],[-8,56],[-1,32],[5,23],[4,17],[11,76],[0,1],[-1,2],[0,1],[-2,-1],[7,25],[41,48],[5,11],[16,36],[6,11],[23,27],[15,8],[21,-10],[65,-64],[9,-4],[4,1],[5,5],[14,13],[2,4],[1,6],[6,146],[2,15],[8,8],[13,1],[23,-3],[20,2],[19,7],[96,130],[12,12],[53,27],[11,9],[10,13],[57,106],[15,31],[3,4],[5,8],[10,5],[61,1],[9,0],[2,-2],[7,-36],[2,-8],[8,0],[10,9],[17,22],[18,7],[19,-10],[37,-32],[70,-50]],[[75538,63330],[10,-40],[2,-23],[0,-13],[-3,-24],[0,-14],[-3,-10],[-6,-1],[-7,3],[-5,-2],[0,-3],[1,-4],[0,-5],[-3,-3],[-3,0],[-3,3],[-1,5],[-2,11],[0,4],[0,4],[4,13],[1,6],[0,14],[-2,24],[-5,39],[1,22],[3,12],[2,5],[3,0],[4,-7],[2,-7],[-1,-9],[-3,-10],[0,-8],[4,10],[2,15],[-1,15],[-2,13],[5,1],[5,3],[0,-10],[0,-3],[1,-26]],[[74762,63344],[-4,-10],[-8,8],[-14,34],[0,2],[2,4],[1,11],[0,11],[-3,20],[0,9],[-2,11],[0,5],[3,1],[2,-2],[1,-3],[0,-3],[1,-9],[3,-39],[3,-18],[7,-7],[6,-9],[2,-16]],[[75511,63342],[-3,-6],[-2,10],[4,49],[-2,30],[1,11],[2,7],[7,15],[1,-2],[0,-2],[1,-4],[3,-23],[1,-8],[-1,-9],[-4,-15],[-2,-21],[-6,-32]],[[75163,63460],[-2,-13],[-3,3],[-2,0],[-2,-12],[-5,-13],[-5,-9],[-5,1],[0,4],[2,1],[4,3],[2,0],[-2,7],[-2,3],[-2,3],[2,4],[0,4],[-1,6],[1,6],[1,4],[1,3],[19,25],[0,-12],[1,-3],[1,-4],[2,-9],[-5,-2]],[[75092,63409],[-3,-3],[-1,1],[0,28],[1,14],[3,13],[6,23],[4,10],[7,4],[-1,-13],[-7,-24],[-7,-46],[-2,-7]],[[75095,63482],[-1,0],[1,13],[4,17],[4,13],[4,2],[-2,-15],[-8,-18],[-2,-12]],[[75119,63444],[-4,-5],[-4,4],[-2,9],[0,10],[1,9],[2,6],[2,7],[0,13],[0,18],[1,6],[3,6],[2,-4],[11,-22],[3,-16],[-2,-19],[-6,-7],[-7,-15]],[[75170,63596],[-6,-37],[0,6],[0,4],[-2,7],[-3,-21],[-2,-22],[-2,-21],[-6,-13],[-5,-4],[-3,3],[-2,7],[0,8],[2,5],[9,17],[-1,4],[-12,-14],[-2,-6],[-1,0],[0,14],[2,13],[3,9],[5,4],[3,5],[8,16],[3,0],[3,7],[3,6],[3,3],[3,0]],[[75264,63622],[1,-6],[0,-32],[-2,-14],[-6,-2],[-2,9],[0,16],[2,18],[2,13],[2,-4],[1,4],[1,0],[1,-2]],[[75274,63614],[-4,-6],[1,32],[1,12],[4,-3],[0,-11],[0,-13],[-2,-11]],[[75274,63665],[-10,-32],[-4,3],[0,9],[3,10],[2,8],[1,27],[2,14],[2,10],[3,-5],[1,-9],[1,-11],[0,-12],[-1,-12]],[[75300,63558],[-5,-6],[-7,0],[-5,3],[-3,4],[-2,9],[8,18],[6,16],[1,10],[3,29],[0,42],[2,46],[5,1],[9,-10],[6,-10],[2,-15],[5,-7],[2,-22],[1,-13],[1,-20],[-5,-18],[-2,-9],[-2,-7],[-4,-14],[-5,-9],[-4,-6],[-4,-1],[-3,-11]],[[75175,63754],[4,-14],[3,-17],[1,-14],[-3,12],[-1,5],[-2,-11],[2,-24],[-2,-10],[-1,5],[-1,7],[0,6],[0,6],[2,0],[-2,11],[-2,23],[-2,11],[-1,2],[-2,0],[-2,1],[0,7],[0,4],[2,1],[2,-1],[1,-2],[4,-8]],[[75181,63754],[-2,-4],[2,35],[0,-2],[2,0],[1,-7],[1,-6],[0,-12],[-3,-3],[-1,-1]],[[75321,63765],[-7,0],[-5,7],[2,16],[10,9],[12,6],[3,-11],[-3,-14],[-6,-8],[-6,-5]],[[75431,63736],[-13,-3],[-9,10],[-8,24],[-5,23],[-1,19],[6,31],[6,6],[25,-64],[2,-26],[-3,-20]],[[75229,63589],[-15,-46],[-4,-8],[-1,2],[-1,6],[-7,-13],[-2,-3],[-8,-24],[-2,-2],[-4,-4],[-3,-3],[-3,1],[-2,13],[3,17],[5,18],[4,16],[-16,-45],[-4,-1],[-2,11],[1,17],[3,17],[4,13],[-3,13],[3,22],[11,50],[2,10],[1,11],[0,35],[1,10],[-2,18],[0,11],[1,7],[0,4],[-3,11],[-4,36],[-3,14],[-4,8],[-16,22],[-5,2],[-1,22],[1,21],[6,49],[2,6],[3,5],[5,3],[5,3],[5,1],[3,-18],[3,-21],[3,-16],[5,-20],[4,-14],[4,-10],[5,-14],[2,-29],[3,-18],[7,-13],[12,-22],[6,-14],[-6,-56],[1,-96],[-3,-15]],[[75168,64018],[5,-12],[5,-5],[6,-12],[4,-12],[-5,-2],[-9,4],[-11,1],[-8,-14],[-4,-4],[-4,-8],[-1,-15],[2,-9],[-4,-10],[-3,6],[-3,7],[-1,5],[-1,6],[-3,4],[-7,5],[2,7],[1,5],[-1,17],[0,10],[1,11],[2,8],[3,3],[10,-4],[5,2],[1,8],[3,1],[11,0],[4,-3]],[[75179,64076],[6,-10],[0,-3],[-8,-1],[-2,1],[3,-4],[3,-6],[2,-5],[2,-6],[-9,2],[-3,2],[-2,5],[-3,12],[-2,3],[-3,2],[-1,-1],[-1,-2],[-3,-2],[-3,-1],[-7,0],[-3,1],[-5,13],[6,19],[9,15],[7,1],[6,-10],[11,-25]],[[75132,64098],[-2,-3],[-3,24],[-1,9],[11,0],[2,1],[2,2],[2,-5],[-1,-5],[-4,-8],[-6,-15]],[[75149,64298],[11,-16],[2,-13],[-10,15],[-6,4],[-1,-7],[-5,-4],[-5,3],[-6,7],[-8,18],[-3,8],[1,6],[7,0],[10,-7],[13,-14]],[[75715,63485],[4,-36],[1,-18],[-5,-90],[4,-141],[0,-15],[3,-30],[10,-60],[1,-6],[0,-6],[-2,-10],[-6,-11],[-6,-8],[-6,-1],[-3,7],[-2,12],[-2,24],[-6,24],[-7,3],[-9,-4],[-12,3],[-6,4],[-3,3],[-2,5],[-2,10],[-1,10],[-1,10],[-4,10],[-9,6],[-10,-26],[-9,1],[-5,-2],[-3,-11],[-3,-26],[-8,-22],[-2,-10],[0,-12],[2,-23],[0,-12],[-2,-18],[-1,-9],[2,-10],[2,-8],[7,-13],[1,-8],[2,-10],[11,-19]],[[75628,62942],[-1,-22],[-1,-25],[1,-24],[3,-22],[8,-24],[2,-6],[0,-12],[5,-31],[2,-7],[1,-7],[0,-6],[-3,-5],[-1,2],[-2,5],[-1,2],[-3,5],[-6,31],[-19,69],[-5,39],[-1,6],[-15,24],[-3,8],[-4,17],[-3,10],[-13,29],[-2,9],[0,13],[2,38],[0,14],[-2,12],[-15,56],[-3,5],[-3,4],[-2,8],[-2,11],[-1,10],[2,0],[0,-2],[0,-1],[1,0],[1,-1],[2,11],[3,11],[5,6],[5,-4],[-4,7],[-2,11],[-2,12],[0,11],[2,7],[4,7],[3,8],[-1,10],[4,10],[1,4],[-1,6],[1,6],[0,5],[-2,4],[-2,1],[1,6],[1,5],[0,6],[-1,4],[-1,-5],[0,-1],[-1,-2],[2,0],[-4,-20],[-3,-9],[-5,0],[-2,7],[1,10],[1,9],[0,7],[-2,0],[-1,-10],[-3,1],[-2,7],[-1,8],[1,13],[2,4],[4,1],[4,8],[-2,4],[-4,-6],[-2,5],[2,8],[6,6],[0,4],[-13,-2],[-5,-4],[-5,-2],[-2,5],[0,14],[3,12],[5,6],[-2,6],[1,5],[3,5],[4,3],[0,5],[-3,-1],[-3,-2],[-2,-5],[-2,-5],[-1,7],[-1,13],[-2,23],[0,6],[-4,9],[-1,5],[0,23],[-7,60],[-1,20],[3,-2],[1,-1],[-2,8],[-2,-2],[-2,-7],[0,-11],[-2,0],[-3,10],[-2,13],[-2,14],[0,15],[1,9],[2,6],[3,4],[1,5],[0,10],[-2,5],[-3,3],[-2,3],[-1,15],[5,7],[7,4],[6,6],[3,11],[6,42],[-1,0],[-4,0],[-1,-9],[-3,-23],[1,-4],[-2,-4],[-3,-6],[-5,-7],[-4,-4],[-1,-3],[-7,-7],[-2,-6],[1,-9],[3,-5],[3,-2],[3,-4],[-1,-11],[-4,-8],[-6,1],[-5,14],[-4,67],[-3,22],[-19,73],[-36,98],[-9,7],[-4,9],[-4,11],[-3,9],[-2,-2],[-2,3],[-1,6],[0,7],[0,7],[3,8],[2,17],[4,25],[0,14],[-2,0],[-1,-11],[-5,-31],[-2,-6],[-6,-4],[-4,-10],[-2,-13],[1,-14],[-4,6],[-4,4],[-5,2],[-6,0],[0,-4],[6,-4],[1,-5],[-3,-5],[-5,-3],[-14,0],[5,-3],[4,-5],[2,-3],[0,-9],[-4,-5],[-4,-2],[-5,-1],[0,1],[-9,4],[-1,-1],[-1,0],[0,2],[0,9],[0,2],[-4,2],[-4,1],[-9,1],[0,-4],[3,-6],[1,-7],[-2,-4],[-6,0],[0,-4],[16,-8],[7,-6],[3,-12],[0,-8],[-3,-8],[-3,-23],[-5,-11],[-6,-8],[-7,-4],[-14,-5],[-10,10],[-6,16],[-3,25],[-2,7],[-3,11],[-4,18],[-2,5],[-4,-3],[4,-8],[4,-16],[2,-18],[0,-11],[-6,-6],[-9,-2],[-8,0],[-4,6],[-2,9],[-7,10],[-2,6],[-1,5],[-4,11],[-2,17],[-3,2],[-9,-1],[-1,3],[-3,22],[-2,3],[-3,2],[-2,3],[-2,11],[-4,11],[-1,4],[0,6],[-3,17],[-2,20],[-3,10],[-2,9],[-2,10],[-1,13],[-1,7],[-22,58],[-3,16],[-1,7],[0,6],[4,36],[0,24],[2,14],[3,11],[2,11],[-1,11],[2,0],[-5,19],[0,8],[3,5],[-1,1],[-1,0],[0,1],[0,3],[-7,-5],[-5,12],[-3,18],[0,11],[0,35],[2,14],[7,8],[16,0],[7,7],[0,22],[-1,8],[-2,3],[-2,1],[-5,-1],[-1,-2],[2,-6],[5,-7],[-2,-13],[-4,6],[-4,0],[-5,-6],[-7,-4],[-4,-6],[-1,3],[-4,23],[1,17],[4,14],[7,6],[-2,4],[0,-2],[0,-1],[-2,-1],[-2,6],[-4,-1],[-11,-9],[2,-8],[-1,-5],[-4,-3],[-4,0],[-5,0],[-3,3],[-7,9],[2,-9],[4,-6],[4,-4],[5,-1],[10,-1],[2,-5],[1,-53],[-1,-6],[-2,-4],[-2,-9],[-2,-10],[0,-9],[-10,7],[-54,21],[-11,8],[-9,12],[0,-7],[2,-6],[36,-43],[5,-7],[2,-7],[2,-8],[2,-5],[9,-4],[8,-8],[4,-3],[18,-4],[3,-4],[8,-24],[1,-10],[1,-21],[-1,4],[-2,6],[-3,5],[1,-12],[2,-35],[-1,-14],[-8,-21],[-2,-3],[-3,1],[-1,5],[2,6],[2,4],[0,4],[-2,0],[-3,-8],[-3,-6],[-4,-4],[-5,-2],[-10,0],[-4,-3],[-1,-9],[0,-4],[1,-13],[4,-19],[6,-17],[5,-15],[1,-3],[-1,-7],[1,-4],[1,-1],[1,0],[1,0],[1,-3],[3,-5],[1,-4],[-1,-5],[-4,-4],[-4,1],[-5,2],[-3,-1],[-6,-13],[-2,-20],[-4,-16],[-7,-4],[4,-8],[-1,-8],[-4,-3],[-3,7],[-6,-8],[4,-6],[8,-5],[5,-5],[3,11],[4,-2],[5,-8],[3,-9],[1,-6],[1,-19],[4,-19],[1,-20],[-1,-5],[-3,-7],[-2,-2],[-7,-2],[-2,-4],[-2,-8],[-3,-33],[0,-9],[1,6],[2,4],[1,2],[2,4],[0,6],[-1,12],[1,6],[2,8],[5,5],[5,2],[5,-2],[10,-13],[5,-17],[3,-19],[5,-21],[-4,3],[-2,2],[0,-14],[2,-11],[6,-21],[1,-12],[0,-12],[-1,-24],[-9,-46],[-7,-20],[-5,-3],[-8,-8],[-3,-5],[-1,-5],[0,-8],[-2,-10],[-8,-27],[-3,-7],[-3,-3],[-4,2],[-4,4],[-4,5],[-2,5],[1,15],[7,28],[1,14],[-3,17],[0,8],[1,18],[-1,8],[-4,2],[1,-12],[-3,-26],[1,-9],[2,-4],[2,-1],[1,-3],[1,-6],[0,-4],[-1,-4],[-2,-4],[-1,-1],[0,-1],[-1,-3],[-1,-8],[-1,0],[-1,2],[-1,-2],[-1,-5],[-1,-19],[-1,-7],[-1,-6],[-5,-15],[-4,-8],[0,-2],[-2,-10],[-5,-22],[-1,-11],[-1,-22],[-3,-23],[-2,-11],[-3,-8],[-15,-26],[-4,-5],[-5,-2],[-6,1],[-11,9],[-4,2],[-5,5],[-1,10],[2,7],[4,-2],[-2,9],[2,5],[3,6],[1,7],[0,5],[-1,3],[0,4],[1,6],[-2,-7],[-5,-25],[-3,-5],[-3,-1],[-3,-8],[-3,-3],[-2,1],[-4,6],[-3,1],[2,16],[1,32],[3,13],[2,5],[4,3],[3,5],[2,8],[1,9],[1,7],[1,7],[3,9],[11,20],[1,4],[2,7],[2,3],[2,3],[3,-2],[2,-2],[1,-1],[6,8],[5,14],[2,15],[-1,16],[-5,-25],[-4,-14],[-4,-6],[-7,-2],[-5,-5],[-16,-35],[-2,-6],[-2,-13],[-4,-11],[-1,-4],[-1,-3],[-4,-2],[-3,1],[-9,8],[2,8],[0,9],[2,7],[3,4],[2,3],[2,4],[1,9],[-1,18],[1,6],[1,9],[3,6],[3,3],[2,3],[2,8],[-7,-6],[-4,-10],[-4,-29],[-2,-6],[-8,-15],[-2,-5],[1,-27],[-1,-8],[-4,-7],[-5,4],[-4,10],[-2,12],[0,5],[-3,14],[0,7],[-1,44],[-3,24],[0,15],[-1,6],[-4,11],[-1,6],[-1,8],[0,6],[0,6],[1,8],[6,27],[22,66],[2,7],[1,8],[2,6],[3,6],[-8,-10],[0,-2],[-9,-18],[-4,-10],[-2,-9],[-2,-10],[-5,3],[-8,13],[0,-12],[2,-10],[1,-10],[-1,-13],[-12,-44],[4,-13],[3,-21],[3,-40],[0,-20],[0,-10],[-3,-8],[-4,-5],[-5,1],[-4,2],[-5,0],[0,-4],[6,-5],[5,-6],[3,-10],[1,-13],[0,-6],[-2,-11],[1,-6],[1,-5],[3,-12],[3,-11],[2,-7],[2,-8],[-2,-9],[-2,-2],[-6,-2],[-7,-13],[-2,-4],[0,-2],[-1,-3],[-3,-3],[-5,-4],[-3,-1],[-1,3],[-2,9],[-3,-2],[-4,-6],[-4,-3],[-5,1],[-5,2],[-4,4],[-4,5],[-1,5],[-1,6],[0,7],[3,10],[-1,6],[-4,11],[-8,-33],[4,-11],[5,-14],[6,-14],[6,-5],[2,-6],[-3,-12],[-6,-8],[-7,3],[-3,5],[-3,0],[-7,-3],[-1,-3],[3,-16],[1,-5],[-5,-11],[-6,8],[-8,24],[0,10],[-3,25],[1,13],[2,8],[5,12],[2,9],[1,10],[-1,42],[2,35],[2,12],[6,23],[2,13],[-1,13],[-3,12],[-3,11],[-4,9],[0,9],[9,22],[2,10],[0,12],[1,12],[2,12],[2,10],[-3,-4],[-2,-8],[-4,-16],[-3,-6],[-1,-6],[2,-13],[-1,-5],[-6,-8],[-3,-11],[0,-8],[6,-20],[2,-7],[0,-6],[0,-14],[0,-7],[-3,-11],[-1,-6],[-2,-38],[-1,-8],[-6,-6],[-2,9],[0,27],[1,6],[2,12],[1,8],[-13,59],[-1,12],[2,27],[-1,11],[-2,13],[-2,0],[-3,-39],[3,-75],[2,0],[0,8],[1,8],[2,4],[0,-1],[1,-5],[1,-8],[1,-7],[2,-5],[1,-7],[0,-8],[-2,-15],[-1,-3],[-4,-1],[-1,-2],[1,-4],[0,-3],[1,-3],[2,-7],[3,-15],[2,-5],[0,-4],[-2,-31],[-3,-7],[-4,-6],[-3,-7],[-3,-10],[-1,-8],[1,-10],[1,-14],[-1,-14],[-3,-11],[-4,-10],[-10,-17],[-3,-1],[-7,16],[-1,9],[-1,15],[1,27],[2,11],[3,18],[1,14],[-1,12],[-5,20],[-2,10],[-2,0],[-1,-9],[0,-8],[2,-7],[1,-8],[0,-10],[-1,-5],[-4,-10],[-3,-7],[-2,-6],[-4,-22],[-2,-4],[-1,-1],[-2,8],[-2,0],[0,-15],[3,-23],[-1,-15],[-5,-20],[1,-7],[6,-5],[-3,-8],[-5,-7],[-5,-4],[-6,-1],[-5,6],[-2,11],[1,10],[3,5],[1,6],[-9,49],[0,5],[0,7],[-2,2],[-2,-3],[-3,-6],[-1,-5],[-2,-3],[-3,2],[-6,7],[-3,5],[-1,3],[-7,49],[-1,10],[1,12],[3,25],[0,14],[-2,12],[-6,17],[-2,9],[2,27],[-1,11]],[[74738,63575],[0,1],[5,12],[0,14],[-2,12],[-2,10],[-12,31],[-3,13],[4,5],[-5,16],[-1,7],[-3,32],[0,5],[0,6],[3,8],[0,5],[-1,14],[-5,23],[-3,22],[-3,5],[-9,7],[7,8],[1,14],[-1,16],[-3,15],[-3,12],[-1,14],[-1,7],[-3,17],[-1,11],[2,8],[3,8],[3,9],[1,8],[1,11],[1,12],[-1,8],[-3,6],[-8,5],[-3,7],[-6,28],[-3,9],[-5,14],[-1,6],[0,12],[2,17],[1,30],[4,15],[15,32],[7,12],[3,5],[1,7],[0,5],[-1,2],[-8,0],[-2,1],[-3,2],[-19,14],[-5,2],[-3,-2],[-3,-3],[-2,-3],[-2,-2],[-3,0],[-18,11],[-4,7],[-3,11],[0,13],[3,12],[6,21],[14,70],[1,13],[-4,6],[-4,-6],[-3,-10],[-3,-2],[-5,16],[-3,3],[-8,11],[-4,9],[-7,23],[-4,9],[-2,1],[-6,-1],[-3,2],[-2,6],[0,4],[0,5],[1,7],[-1,2],[-3,1],[-3,3],[0,7],[6,53],[-1,6],[-2,9],[0,6],[2,6],[4,12],[1,7],[0,6],[0,5],[-1,5],[1,6],[5,7],[5,1],[6,-1],[5,2],[4,5],[10,21],[3,6],[1,11],[-1,13],[-2,11],[-1,7],[3,12],[3,8],[0,6],[-7,3],[0,7],[-6,9],[-1,7],[0,5],[2,13],[0,6],[-1,12],[0,6],[2,7],[2,6],[7,4],[4,4],[1,5],[3,10],[1,5],[-1,2],[0,10],[-1,2],[-1,24],[-7,17],[-9,11],[-6,2],[-3,-13],[-4,-13],[-6,-1],[-14,9],[-18,2],[-6,3],[-21,32],[-73,74],[-8,4],[0,4],[-3,8],[-2,6],[-1,3],[-1,3],[0,31],[-1,3],[-4,8],[-2,12],[-5,4],[-5,3],[1,18],[3,11],[3,10],[1,26],[4,2],[3,2],[2,5],[0,8],[1,7],[2,4],[4,-1],[2,11],[4,7],[3,8],[-1,11],[-4,21],[-1,5],[-1,3],[0,3],[13,14],[6,4],[5,-1],[4,-6],[4,-10],[3,-12],[0,-11],[3,0],[12,-6],[5,-1],[2,4],[5,17],[10,25],[3,14],[1,15],[7,16],[3,17],[2,39],[0,34],[2,9],[10,4],[4,-3],[9,-6],[7,-4],[2,-2],[1,0],[3,2],[2,2],[4,8],[2,1],[10,0],[8,-3],[17,-12],[17,-4],[2,4],[3,12],[1,5],[3,1],[1,-2],[2,-2],[19,-13],[7,-1],[-4,13],[5,2],[1,6],[-1,8],[1,8],[2,6],[11,15],[2,6],[0,6],[0,5],[-2,5],[-14,-1],[-7,2],[-4,9],[-2,3],[-6,0],[-2,2],[-2,3],[-7,16],[-1,6],[0,6],[-1,5],[-3,4],[0,4],[4,21],[0,13],[-2,7],[-4,6],[-3,8],[-3,4],[-8,7],[0,-11],[-3,-2],[-2,0],[-3,1],[-2,-1],[-3,-5],[-2,-5],[-3,-5],[-3,-2],[-6,3],[-9,11],[-5,5],[-12,1],[-6,2],[-3,6],[-2,8],[-7,11],[-3,12],[-11,10],[-4,8],[-1,36],[-7,16],[-20,27],[-17,37],[-9,9],[-13,-7],[-4,-5],[-6,-5],[-5,0],[-3,7],[-2,12],[-2,5],[-4,9],[0,5],[0,6],[-2,9],[-2,26],[1,3],[2,1],[1,5],[5,33],[6,20],[7,11],[2,11],[-1,7],[-1,3],[-2,2],[-1,3],[0,6],[0,3],[1,3],[3,19],[2,7],[9,12],[3,4],[2,4],[2,4],[3,2],[5,3],[16,10],[5,6],[3,9],[-1,22],[1,8],[4,11],[5,8],[13,16],[2,5],[1,5],[2,3],[2,-4],[2,-1],[3,-1],[3,1],[2,1],[6,-2],[-1,15],[-5,32],[-4,13],[-8,7],[-16,6],[-6,5],[-2,0],[-1,-4],[-1,-14],[-1,-3],[-4,2],[-2,8],[0,9],[1,8],[4,12],[6,38],[2,8],[3,11],[4,8],[2,-4],[1,-11],[-1,-12],[1,-12],[4,-8],[10,-6],[4,-4],[4,-8],[3,-5],[3,-7],[2,-4],[6,-7],[6,-5],[3,-1],[6,0],[3,-3],[2,-5],[1,-7],[3,-6],[3,-3],[3,-3],[6,-3],[-1,-5],[-1,-5],[1,-4],[2,-1],[2,-2],[0,-11],[2,-4],[6,-6],[4,-6],[1,-7],[-3,-11],[-4,-6],[-10,-10],[-2,-4],[5,-7],[23,16],[10,-7],[3,-9],[1,-10],[3,-9],[5,-4],[4,4],[4,19],[6,8],[7,-3],[13,-24],[8,-5],[12,6],[6,8],[-2,11],[-3,1],[-3,1],[-2,4],[1,12],[-3,-3],[-2,-1],[-3,1],[-1,5],[-3,17],[-7,7],[-8,5],[-6,12],[0,10],[3,11],[3,10],[4,6],[4,4],[3,-1],[2,-5],[5,-6],[3,-3],[4,-10],[2,-4],[4,-2],[6,-3],[2,-4],[1,-7],[-1,-5],[1,-4],[4,-4],[7,-4],[2,-4],[0,-8],[-2,-2],[-4,3],[-3,-1],[0,-16],[2,-9],[5,-18],[2,-9],[3,-36],[2,-11],[3,-8],[18,-15],[5,-5],[2,-7],[2,-12],[2,-5],[10,-9],[7,-15],[5,-7],[6,-5],[4,-1],[5,5],[3,6],[3,0],[4,-12],[2,-1],[1,0],[1,0],[2,1],[15,3],[1,-1],[2,0],[1,-2],[4,-13],[2,-6],[3,-3],[4,1],[2,6],[1,7],[-1,8],[3,16],[12,20],[2,10],[-2,7],[-3,1],[-4,-2],[-3,3],[0,7],[3,5],[4,4],[3,4],[-5,1],[-4,4],[-2,8],[3,10],[2,4],[1,1],[2,1],[6,-4],[0,3],[-2,7],[0,18],[2,5],[6,4],[5,-2],[1,-9],[0,-12],[0,-13],[0,-2],[0,-1],[4,-3],[2,-1],[5,1],[3,0],[3,-6],[2,-8],[1,-10],[2,-8],[4,-10],[0,-7],[-1,-8],[1,-10],[1,-6],[6,-14],[2,-8],[2,-4],[1,-1],[2,2],[2,3],[1,1],[1,0],[0,-1],[4,-9],[-1,-8],[-4,-6],[-6,-4],[6,-6],[4,-1],[2,-3],[-1,-14],[-12,-41],[-1,-15],[5,-53],[6,-30],[3,-23],[-2,-42],[-1,-44],[-4,-30],[-2,-15],[-1,-6],[-1,-17],[1,-21],[3,-21],[3,-11],[4,-2],[10,8],[11,1],[61,-51],[44,-18],[22,-18],[9,-1],[29,12],[22,-4],[11,6],[4,-1],[4,-2],[6,-5],[10,-3],[2,0],[2,2],[3,6],[1,1],[5,-1],[3,-4],[4,-5],[4,-4],[8,-2],[31,9],[2,0],[9,6],[45,14],[15,-1],[3,1],[7,6],[2,1],[14,-14],[41,-24],[11,-3],[3,1],[5,4],[3,0],[3,2],[5,7],[2,2],[5,0],[2,-5],[2,-7],[5,-7],[4,-2],[7,-1],[7,2],[3,6],[1,9],[3,1],[4,-4],[2,-1],[2,3],[2,7],[2,3],[4,1],[13,-2],[30,7],[16,-4],[5,3],[7,4],[9,0],[9,-5],[8,-5],[2,-4],[2,-8],[2,-3],[2,-2],[4,0],[2,-3],[2,-1],[4,2],[2,-1],[2,-3],[4,-10],[4,-7],[3,-4],[4,-4],[5,-2],[14,-4],[2,-3],[5,-13],[8,-6],[7,-8],[1,-11],[0,-6],[2,-1],[5,-3],[0,-2],[9,-13],[3,-3],[1,-2],[0,-1],[-2,-4],[7,-5],[2,-5],[2,-10],[1,-10],[-1,-7],[-4,-12],[-9,-5],[-17,-11],[-3,1],[-2,2],[-1,3],[-1,4],[-19,23],[-10,7],[-8,-7],[-2,-10],[1,-11],[4,-19],[1,-9],[-1,-10],[0,-9],[-14,-77],[-3,-23],[-1,-20],[-2,-9],[-3,-9],[-1,-1],[-3,-5],[-4,-5],[-3,-7],[-2,-11],[2,-36],[-1,-17],[-6,-14],[-7,-6],[-8,-2],[-23,4],[0,-7],[6,-20],[0,-8],[-5,4],[-6,8],[-3,5],[-6,-4],[-1,-11],[3,-23],[0,-12],[-6,-50],[-2,-11],[-4,-4],[-5,3],[-9,16],[-1,6],[0,13],[-1,4],[-3,0],[-17,8],[-3,-8],[1,-12],[1,-12],[1,-10],[-4,-9],[-5,-4],[-5,2],[-5,6],[-2,9],[-5,24],[-3,2],[-2,-7],[-2,-37],[-3,-13],[-2,-8],[-4,-5],[-7,-4],[-11,-3],[-11,2],[-21,9],[-11,-2],[-4,-15],[0,-23],[-3,-24],[-3,-4],[-3,1],[-2,1],[-1,1],[-4,1],[-5,-4],[-3,-7],[-3,-7],[-10,-33],[-1,-9],[0,-8],[3,-14],[1,-7],[0,-11],[-6,-32],[-3,-10],[-5,-5],[-5,-1],[-5,-3],[-2,-12],[1,-13],[4,-4],[5,-4],[2,-8],[-3,-10],[-4,1],[-3,-1],[-1,-15],[1,-10],[8,-30],[2,-10],[3,-19],[2,-10],[3,-4],[4,-6],[2,-6],[1,-4],[1,-15],[4,-25],[3,-12],[3,-5],[4,-2],[1,-4],[-1,-5],[-3,-5],[-2,-5],[0,-5],[2,-5],[1,-6],[6,-95],[4,-25],[7,-17],[9,-5],[1,19],[-5,50],[0,26],[1,14],[3,9],[7,0],[5,-8],[4,-11],[2,-9],[1,4],[0,1],[2,-5],[0,-4],[0,-3],[0,-3],[4,-8],[1,0],[2,-19],[1,-6],[6,-43],[2,-15],[1,-2],[2,-1],[1,-3],[0,-17],[1,-6],[4,-8],[4,-3],[3,-1],[4,-4],[2,-6],[0,-6],[1,-2],[4,5],[2,4],[1,6],[1,5],[3,2],[2,-1],[2,-1],[2,-1],[2,1],[3,2],[8,4],[3,4],[2,4],[5,9],[2,4],[5,14],[0,2],[0,3],[0,3],[1,2],[1,0],[3,0],[1,0],[4,9],[1,6],[-1,7],[-4,18],[-4,40],[-4,19],[-1,24],[5,29],[8,28],[7,19],[5,8],[15,13],[4,6],[4,8],[6,21],[1,23],[-8,69],[0,22],[1,13],[1,8],[4,0],[4,-8],[3,-11],[12,-26],[4,-4],[7,3],[4,8],[9,25],[5,10],[12,8],[5,-17],[3,-22],[4,-11],[4,8],[3,28],[5,5],[6,-6],[0,-2],[0,-11],[-3,-25],[1,-20],[11,-67],[1,-29],[2,-9],[1,-4],[4,-7],[1,-5],[1,-5],[-1,-8],[1,-4],[1,-4],[4,-6],[1,-3],[0,-5],[-1,-12],[0,-6],[2,-9],[1,-6],[0,-6],[-2,-11],[-5,-20],[-1,-9],[0,-24],[7,-84],[0,-41],[2,-20],[5,-15],[9,-8],[4,-10],[3,-46],[2,-18],[3,-9],[7,-13],[3,-9],[2,-9],[1,-45],[0,-35],[1,-10],[4,-18],[0,-10],[16,-194],[0,-15],[-3,-3],[-5,0],[-3,-5],[6,-40],[4,-39],[1,-6],[0,-5]],[[57938,76374],[-1,-8],[-1,-72],[1,-8],[3,-10],[3,-7],[2,-7],[0,-8],[-3,-16],[-4,-18],[-5,-16],[-4,-7],[-3,-2],[-13,-19],[-3,-6],[-1,-8],[0,-10],[-4,8],[-13,11],[-2,4],[-3,5],[-7,5],[-13,4],[-7,-2],[-10,-9],[-5,-2],[-18,2],[-6,-2],[-11,-9],[-7,-17],[-2,-5],[-15,-63],[-4,-9],[-5,-6],[-19,-8],[-3,-3],[-2,-1],[-2,0],[0,-4],[9,-12],[2,-4],[0,-7],[-6,-26],[-3,-29],[-2,-5],[-3,-4],[-2,-4],[-1,-7],[0,-13],[5,-27],[1,-12],[-2,-40],[2,-9],[-6,-7],[0,-10],[2,-12],[2,-16],[0,-28],[-1,-11],[-1,-5],[-14,-1],[-15,4],[-12,1],[-3,-1],[-2,-4],[-2,-8],[-1,-6],[1,-6],[2,-4],[4,-4],[-8,-2],[-12,-8],[-6,-2],[-5,-7],[1,-15],[3,-17],[2,-10],[-4,4],[-26,1],[-8,-8],[-4,-12],[-2,-15],[-3,-14],[-5,4],[-3,-6],[0,-9],[4,-5],[-1,-5],[0,-3],[1,-9],[1,5],[0,1],[-1,2],[2,12],[8,-14],[3,-2],[4,5],[2,7],[3,3],[5,-7],[2,6],[2,-1],[3,-3],[2,-2],[4,2],[3,3],[2,1],[4,-1],[0,-4],[-1,0],[-1,-1],[2,-10],[3,-7],[4,-2],[7,7],[0,-5],[2,-3],[2,-1],[3,1],[0,-4],[-1,-1],[-5,-3],[2,-6],[2,-1],[2,-1],[-2,-6],[-1,-8],[2,-9],[3,-6],[4,-2],[3,0],[4,2],[4,0],[0,-3],[-1,-4],[0,-3],[1,-3],[2,-3],[-7,-9],[-3,-11],[1,-11],[7,-9],[-1,-2],[-1,-3],[10,-10],[2,-4],[1,-4],[3,-6],[4,-5],[3,-3],[0,-2],[-1,-5],[-1,-1],[9,-8],[2,-4],[5,-16],[14,-15],[2,-6],[3,-6],[3,-2],[-1,-6],[2,-6],[2,-4],[3,-4],[0,-3],[0,-1],[-1,0],[-1,0],[3,-6],[2,-7],[1,-9],[-2,-7],[1,-6]],[[57782,75326],[-10,4],[-4,2],[-14,-2],[-4,1],[-7,6],[-7,3],[-2,0],[-6,-1],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,-6],[0,-8],[-1,-6],[5,-4],[-1,-4],[-4,-2],[-3,0],[-4,2],[-14,12],[-11,1],[-21,-9],[-1,-6],[-1,-3],[-1,0],[-3,3],[-2,-5],[-3,-3],[-6,-3],[1,-2],[1,0],[0,-1],[1,-1],[-1,-1],[-1,-2],[-1,-1],[4,-3],[-5,-3],[-3,4],[-7,15],[-4,6],[-21,18],[-6,9],[-6,12],[-12,29],[-8,12],[-9,8],[-9,4],[-6,-2],[-4,-4],[-6,-13],[-1,-3],[0,-2],[-1,-1],[-7,3],[-6,1],[-3,-1],[-5,6],[-4,4],[-5,3],[-5,0],[-1,0],[-6,-6],[-6,-18],[-6,-6],[-4,-2],[-2,-7],[-2,-7],[-4,-6],[-2,-1],[-5,2],[-3,-2],[-3,-5],[-3,0],[-2,2],[-3,0],[-3,-3],[-4,-5],[-2,-4],[-3,-2],[-3,2],[-5,7],[-3,2],[-3,-2],[-6,-9],[-3,-4],[-5,-1],[-26,7],[-5,-1],[-5,-5],[-8,-13],[-2,-3],[-1,-3],[-2,-3],[1,-3],[3,-3],[1,-2],[0,-4],[-1,-5],[-1,-3],[0,-3],[0,-5],[-1,-10],[-2,-11],[-4,-8],[-13,-7],[-29,2],[-12,-16],[-3,-14],[-1,-13],[1,-12],[3,-6]],[[57314,75173],[-10,-2],[-6,3],[-4,5],[-7,13],[-3,2],[-4,1],[-6,-9],[-15,-1],[-7,-3],[-8,-10],[-2,-2],[-2,0],[-2,-1],[-1,-3],[-2,-7],[0,-9],[1,-8],[1,-7],[1,-3],[2,-5],[4,-3],[4,-1],[3,-3],[3,-4],[1,-5],[3,-15],[0,-5],[0,-9],[0,-4],[2,-2],[4,-2],[2,-2],[1,-8],[0,-7],[0,-7],[-1,-7],[-3,-5],[-1,-4],[3,-11],[1,-3],[4,-5],[1,-4],[-1,-5],[-1,-1],[-2,-1],[-1,-4],[-3,-14],[-5,-16],[-3,-8],[-1,-1],[-3,1],[-23,-9],[-4,-3],[-7,-8],[-7,-5],[-3,-1],[-3,2],[-4,0],[-7,-6],[-4,-1],[-5,3],[-9,15],[-6,3],[-3,-1],[-10,-12],[-10,-1],[-3,-2],[-3,-4],[-2,-3],[-2,-2],[-3,-1],[-3,2],[-6,5],[-2,2],[-25,2],[-4,-2],[-2,-5],[-2,-7],[-2,-5],[-3,-1],[-2,0],[-2,1],[-3,1],[-7,-2],[-47,-25],[-6,-1],[-7,2],[-5,5],[-12,26],[-5,8],[-1,1],[-11,7],[-1,2],[-2,6],[-1,2],[-1,0],[-5,-2],[-45,31],[-9,9],[-3,0],[-3,0],[-6,-4],[-11,-1],[-1,-8],[1,-10],[-2,-9],[-6,1],[-6,8],[-9,20],[-6,8],[-5,4],[-5,1],[-7,0],[2,6],[-10,-1],[-3,2],[-5,6],[0,3],[1,6],[0,3],[-2,2],[-2,3],[-1,1],[-2,4],[-1,2],[-1,3],[-1,5],[-1,16],[-3,16],[-6,8],[-8,-5],[-6,-2],[-6,-13],[-4,-1],[-6,1],[-4,-1],[-10,-4],[-2,-1],[-8,2],[-2,-1],[-2,-1],[-2,-1],[-2,1],[-1,3],[1,5],[0,5],[-6,6],[-4,8],[-5,-1],[-5,-3],[-5,-5],[0,-1],[-4,-5],[-2,-4],[-1,-9],[-1,-3],[-2,1],[-1,2],[-1,4],[-2,2],[-9,4],[-11,2],[-8,-6],[1,-19],[1,-13],[0,-5],[-2,-5],[-3,-2],[-4,1],[-6,6],[-1,-4],[-1,-1],[-2,-1],[-1,-2],[-5,-7],[-4,0],[-13,15],[-2,0],[-8,-11],[-4,-3],[-6,-3],[-6,-1],[-5,1],[-4,-3],[-6,-17],[-5,-2],[-9,3],[-9,0],[-5,-3],[-7,-11],[-1,-1],[-4,-4],[-9,1],[-18,15],[-28,1],[-5,-2],[-8,-10],[-5,-5],[-6,-1],[-3,5],[-3,6],[-5,6],[-5,0],[-6,-5],[-6,-6],[-4,-6],[-1,-5],[-1,-11],[-1,-5],[-3,-4],[-3,-3],[-6,-3],[-12,-2],[-55,13]],[[56365,74949],[7,9],[1,11],[-2,12],[0,13],[1,3],[3,7],[1,3],[-1,3],[-1,6],[-1,3],[0,41],[-1,9],[2,10],[0,4],[-1,4],[-2,6],[-1,4],[-1,8],[1,8],[1,8],[1,7],[1,2],[5,2],[1,2],[1,3],[2,8],[2,7],[4,9],[3,14],[0,14],[-5,12],[-3,2],[-7,1],[-3,2],[-1,4],[-6,23],[-3,20],[-2,7],[-1,2],[-4,3],[0,2],[-1,0],[-1,5],[1,9],[-1,4],[-3,13],[-2,14],[0,14],[-1,6],[-2,7],[-1,8],[0,4],[-2,3],[-3,4],[-1,0],[-5,-3],[-2,0],[-2,3],[-1,4],[0,4],[-2,2],[-2,1],[-13,-1],[-2,1],[-1,2],[-1,3],[-1,2],[-9,3],[-13,11],[-3,2],[-24,27],[-6,9],[-1,3],[-3,9],[-4,17],[-10,13],[-28,58]],[[56206,75528],[6,5],[11,0],[5,3],[4,8],[5,22],[4,9],[4,3],[4,1],[3,3],[3,10],[4,22],[1,12],[-2,9],[-2,8],[-3,7],[-9,10],[-14,21],[-1,1],[1,12],[3,23],[1,7],[1,14],[-2,8],[8,22],[3,6],[1,1],[0,2],[0,2],[-1,2],[-4,5],[-4,9],[-6,25],[-1,2],[0,3],[1,2],[2,4],[2,3],[7,6],[3,4],[5,11],[2,3],[4,0],[5,-1],[2,2],[1,3],[4,4],[8,2],[21,-9],[8,3],[8,6],[4,6],[0,1],[2,7],[5,28],[1,8],[2,5],[3,3],[8,3],[4,2],[4,8],[11,18],[2,4],[2,11],[1,4],[2,3],[5,4],[2,3],[6,13],[5,20],[3,19],[0,8],[-1,7],[-4,3],[-14,5],[-5,4],[-4,6],[-7,16],[-7,11],[-2,4],[-1,4],[0,11],[-1,5],[-4,8],[-20,31],[-2,3],[-2,1],[-4,3],[-3,1],[-5,-1],[-3,2],[-1,3],[-1,1],[-3,10],[-2,3],[-3,2],[-6,-1],[-3,1],[-2,3],[-4,8],[-2,3],[-10,7],[-3,6],[-3,11],[-5,28],[-4,11],[0,3],[1,3],[0,3],[1,1],[0,2],[0,1],[-1,2],[-1,2],[0,2],[0,2],[1,2],[0,1],[0,1],[-2,7],[0,14],[-2,7],[-3,5],[-8,7],[-3,5],[-3,6],[-2,7],[-2,8],[-1,8],[0,4],[1,10],[-1,5],[-7,13],[-3,16],[1,13],[4,14],[2,18],[1,18],[1,3],[2,8],[1,2],[1,10],[0,17],[1,7],[3,8],[6,4],[9,3],[4,1],[6,0],[4,6],[2,9],[3,7],[6,3],[5,-1],[5,2],[4,9],[0,5],[-2,13],[-1,6],[1,6],[3,18],[-1,0],[0,2],[0,3],[0,3],[1,1],[4,8],[4,11],[3,4],[12,8]],[[56303,76662],[59,-62],[10,-7],[13,-3],[6,-3],[6,-5],[2,-18],[-4,-18],[-10,-8],[-6,-2],[-11,-5],[-6,-2],[-5,-5],[-3,-13],[-7,-45],[0,-13],[3,-12],[7,-9],[9,-3],[37,5],[22,3],[8,6],[10,3],[10,8],[26,6],[44,-4],[30,-25],[8,-2],[4,-1],[24,8],[6,-2],[16,-14],[97,-38],[2,-1],[50,4],[6,0],[4,2],[16,18],[10,5],[9,-2],[45,-26],[12,-7],[13,-3],[59,7],[33,-18],[36,-5],[11,-4],[9,-8],[1,-1],[10,-11],[10,-10],[12,-2],[6,2],[12,8],[4,2],[2,0],[12,-1],[6,1],[6,4],[5,2],[6,4],[6,6],[4,6],[5,6],[17,1],[2,0],[12,7],[6,17],[1,2],[9,15],[8,7],[13,26],[3,8],[2,7],[34,38],[2,9],[5,12],[10,17],[10,8],[22,9],[22,15],[6,2],[23,5],[55,12],[10,5],[5,1],[3,2],[5,5],[4,1],[12,0],[10,5],[26,24],[33,5],[7,7],[20,-19],[30,-9],[5,-5],[7,1],[1,-1],[4,-5],[-1,-14],[6,-10],[15,-11],[4,-5],[5,-15],[3,-3],[53,1],[16,8],[7,-4],[5,-18],[2,-3],[11,-23],[18,7],[19,16],[16,3],[6,-17],[13,-68],[9,-12],[58,-40],[59,-16],[40,4]],[[64041,65982],[12,-20],[6,-29],[2,-34],[-1,-53],[-4,-65],[-3,-13],[-8,-25],[-2,18],[-3,19],[-4,19],[-6,17],[-12,26],[-2,17],[6,19],[1,9],[2,9],[-2,22],[-4,22],[-5,16],[-1,7],[0,10],[3,28],[2,7],[4,3],[6,0],[4,-2],[4,-4],[4,-3],[11,9],[2,-2],[1,-8],[2,-6],[1,-2],[0,-2],[-1,-7],[-3,-1],[-8,2],[-4,-3]],[[29713,62999],[-18,-45],[-9,-52],[-6,-6],[-21,-18],[-12,4],[-3,-2],[-3,-3],[-5,-8],[-2,0],[0,5],[2,3],[-4,6],[-6,2],[-15,-17],[-9,1],[-17,-8],[-12,10],[-18,4],[-4,-2],[-4,-4],[-2,-5],[-1,-5],[-1,-5],[-2,1],[-3,4],[-4,9],[-1,6],[0,10],[-1,14],[-5,17],[0,3],[1,4],[8,2],[4,6],[2,13],[1,11],[-4,8],[-3,6],[0,6],[10,-9],[6,4],[4,4],[4,5],[8,5],[2,12],[6,11],[3,11],[6,-3],[6,6],[8,0],[3,1],[2,2],[3,5],[4,11],[3,5],[1,-2],[1,-13],[5,-10],[5,-15],[8,-7],[17,-11],[6,8],[6,6],[14,7],[7,16],[5,23],[14,44],[4,11],[6,7],[6,-5],[2,-11],[-1,-13],[-5,-64],[-2,-16]],[[29710,63158],[-3,0],[0,6],[0,7],[-2,12],[-3,11],[-1,12],[3,5],[6,4],[5,6],[5,12],[4,6],[3,-3],[3,-9],[3,-5],[6,-6],[5,-5],[3,-6],[-1,-12],[-6,-6],[-10,-3],[-5,-9],[-3,-1],[-9,-10],[-3,-6]],[[28966,63618],[1,-4],[1,-7],[-2,-5],[-4,0],[-2,5],[-2,8],[0,5],[1,0],[2,-1],[2,-2],[-1,3],[-1,10],[1,2],[1,-4],[3,-10]],[[28959,63638],[-1,-1],[-1,2],[1,15],[1,-1],[0,-10],[0,-5]],[[28943,63708],[0,-4],[-2,5],[-2,9],[-1,9],[1,1],[1,-6],[1,-4],[1,-3],[1,-7]],[[29692,63755],[5,-1],[0,1],[1,3],[3,3],[1,1],[2,0],[5,-3],[2,-1],[7,-5],[14,-19],[7,-1],[-2,4],[-2,9],[9,-9],[5,-2],[3,3],[4,-7],[4,-4],[5,-1],[7,0],[2,-2],[2,-4],[3,-9],[3,-3],[6,0],[2,-3],[2,-10],[-1,-12],[-3,-10],[-5,-4],[-5,3],[-13,25],[-5,9],[-5,5],[-5,2],[-7,1],[-3,-1],[-4,-3],[-2,-1],[-3,1],[-2,3],[-2,3],[-2,2],[-6,-3],[-11,-11],[-7,-3],[-2,1],[-2,3],[-2,3],[-1,1],[-11,5],[-5,2],[-2,4],[0,6],[6,7],[-2,5],[0,2],[2,6],[1,8],[-1,6],[0,6],[3,5],[5,-13],[2,-3]],[[29553,63840],[-5,-2],[2,16],[4,5],[3,-4],[-4,-15]],[[29592,63846],[-2,0],[-12,7],[-5,3],[-6,2],[0,3],[5,1],[4,1],[7,-3],[6,-6],[3,-8]],[[29346,63832],[-9,-13],[3,25],[8,17],[9,15],[8,20],[-1,-16],[-8,-25],[-10,-23]],[[29487,63925],[-6,-23],[-3,-6],[-1,6],[-1,5],[-1,3],[-3,2],[1,-8],[2,-8],[3,-4],[4,4],[1,-8],[3,-45],[1,-9],[4,-15],[-5,-2],[-2,-10],[-1,-13],[-1,-11],[-3,-7],[-4,-8],[-4,-7],[-4,-3],[-3,-5],[-9,-35],[-15,-24],[-2,-3],[-3,0],[-17,-14],[-7,-3],[-4,-7],[-7,-23],[-2,-4],[-8,-13],[-3,-3],[-6,-2],[-5,-5],[-9,-17],[0,5],[0,21],[1,6],[3,2],[11,-2],[3,2],[8,15],[0,4],[-3,4],[0,4],[6,6],[2,2],[-2,1],[-1,1],[-1,2],[0,4],[5,5],[9,9],[6,2],[1,2],[3,9],[4,5],[0,7],[-1,8],[0,6],[5,4],[8,1],[6,4],[3,9],[2,14],[3,7],[5,3],[6,2],[11,8],[7,14],[3,19],[-4,24],[-8,11],[-20,1],[-8,9],[-5,8],[1,2],[3,11],[2,3],[2,2],[2,2],[-1,4],[-4,12],[9,-5],[2,-3],[1,7],[2,5],[2,2],[3,-2],[1,3],[1,1],[1,0],[0,4],[-2,2],[-1,1],[-1,2],[-1,4],[14,0],[7,2],[7,6],[1,-3],[0,-2],[0,-1],[1,-2]],[[29390,63949],[1,0],[4,0],[1,0],[0,-2],[2,-6],[5,-4],[10,-1],[6,-3],[-2,8],[6,-3],[17,-13],[-21,-37],[-1,5],[0,1],[-3,2],[0,10],[-5,-2],[-7,-4],[-21,10],[-2,5],[-5,10],[-2,-7],[-3,-6],[-3,-3],[-2,1],[2,13],[0,7],[-3,3],[-18,53],[1,1],[1,2],[0,2],[0,3],[3,0],[5,3],[2,1],[3,-2],[8,-10],[3,-2],[6,-1],[3,-1],[7,-13],[1,-5],[1,-10],[0,-5]],[[29495,64152],[21,-4],[15,3],[6,-3],[0,-4],[-25,-10],[-12,0],[-5,18]],[[29016,64344],[5,-14],[-10,7],[-12,4],[-10,8],[-4,14],[9,-2],[12,-6],[10,-11]],[[27912,64384],[0,-1],[-6,8],[0,2],[6,-9]],[[27902,64407],[-1,-1],[-11,25],[2,-2],[7,-15],[3,-7]],[[28895,64492],[2,-8],[3,-6],[4,-3],[4,-2],[6,0],[-1,-3],[0,-2],[-1,-2],[-2,-1],[19,-38],[13,-15],[3,-2],[4,-19],[10,-15],[24,-17],[-4,-9],[-7,4],[-12,13],[-14,2],[-5,6],[2,12],[-5,7],[-5,10],[-5,5],[-4,-5],[-10,20],[-10,15],[-12,7],[-14,-2],[0,4],[8,5],[2,1],[-1,6],[-2,5],[1,3],[-3,4],[-3,7],[0,8],[2,6],[3,-1],[3,1],[2,3],[1,1],[3,-2],[1,-3]],[[29080,64489],[16,-53],[4,-5],[5,-11],[5,-14],[2,-11],[4,-40],[3,-10],[5,-11],[16,-63],[0,-6],[2,-5],[1,-13],[0,-26],[2,-29],[5,-17],[8,-11],[23,-18],[10,-16],[18,-39],[-1,-3],[-1,-6],[-1,-3],[3,-6],[2,-15],[2,-18],[0,-23],[-1,-7],[-1,-2],[-4,2],[-1,4],[-2,20],[-1,-1],[-3,-3],[-2,15],[-8,28],[-3,25],[-2,8],[-10,22],[-3,6],[-3,3],[-32,13],[-7,8],[-3,6],[-20,25],[-4,3],[0,6],[2,5],[1,5],[3,5],[1,0],[3,-9],[8,-7],[3,-9],[-7,2],[-3,2],[2,-7],[3,-6],[3,-3],[4,0],[3,-4],[5,-9],[3,-3],[3,-1],[5,-1],[2,2],[-1,6],[-16,35],[-2,10],[1,16],[2,11],[3,10],[1,9],[0,14],[-2,16],[-3,14],[-4,9],[-1,-3],[-3,-5],[0,14],[-10,17],[0,14],[-4,1],[-3,3],[-2,4],[2,8],[-6,8],[-2,10],[-2,27],[-6,28],[-2,3],[-2,-2],[-2,-3],[-3,-2],[2,29],[-2,8],[-6,-9],[3,8],[1,3],[2,2],[-4,2],[-2,-4],[-2,-7],[-4,-4],[0,5],[3,5],[2,7],[2,9],[-1,11],[2,-1],[1,-2],[2,-2],[1,-3]],[[29225,64496],[-1,-8],[-3,-4],[-6,0],[0,-3],[2,-5],[-5,0],[-7,4],[-3,9],[-5,-5],[-9,0],[-5,-3],[-1,13],[1,8],[5,4],[6,3],[14,8],[10,0],[4,-3],[6,-9],[-3,-9]],[[29136,64575],[-2,-2],[-2,10],[2,8],[2,1],[1,-3],[0,-6],[-1,-8]],[[28800,64671],[-2,-4],[-4,9],[-5,21],[-5,13],[-3,18],[-3,10],[-1,6],[0,8],[7,-9],[16,-72]],[[29323,64710],[-11,-39],[-1,7],[1,6],[2,12],[-2,-7],[-4,-24],[-1,-6],[-18,-4],[0,4],[5,12],[3,18],[1,21],[-1,18],[0,14],[3,9],[5,5],[5,4],[2,3],[1,3],[2,2],[2,-1],[4,-15],[1,-2],[0,-6],[3,-8],[1,-4],[-1,-5],[-1,-12],[-1,-5]],[[28388,64828],[-2,-3],[-5,-3],[-2,0],[-1,2],[-1,1],[-3,-3],[-2,-6],[-3,-16],[-3,-7],[-3,-5],[-15,-14],[-5,-1],[-1,4],[-2,8],[0,8],[0,6],[3,1],[3,-2],[4,-1],[1,6],[3,2],[15,20],[1,2],[5,5],[3,2],[11,0],[-1,-6]],[[28349,64825],[2,-8],[-4,2],[-7,-2],[-4,0],[-3,3],[-4,5],[-1,5],[4,4],[7,2],[7,7],[6,3],[3,-8],[-4,0],[-2,-5],[0,-8]],[[28758,64818],[2,-9],[-5,0],[-3,3],[-12,30],[-3,8],[0,8],[5,-5],[2,-7],[2,-9],[3,-7],[3,-6],[3,-2],[3,-4]],[[28403,64761],[7,-9],[4,4],[2,-6],[-1,-11],[-5,-17],[0,-8],[-2,-6],[-4,-4],[5,-3],[5,8],[8,34],[6,13],[3,8],[1,12],[0,15],[1,14],[4,9],[5,-2],[4,-12],[4,-15],[3,-10],[3,-9],[2,-9],[1,-10],[1,-20],[1,-12],[0,-5],[0,-7],[-1,-11],[-1,-7],[1,-3],[4,-11],[1,-6],[-1,-7],[-2,-4],[-2,-3],[-1,-2],[-3,-3],[-6,0],[-5,-4],[-1,-15],[10,13],[5,5],[6,-2],[2,-8],[-1,-23],[1,-10],[-5,-21],[-3,-3],[-7,4],[1,-8],[5,-8],[1,-8],[0,-8],[-2,-9],[-2,-8],[-1,-4],[-9,-6],[-7,6],[-6,9],[-7,3],[5,-11],[0,-5],[-3,-8],[-2,0],[-4,13],[-9,4],[-17,-1],[9,8],[-1,11],[6,-1],[14,-10],[2,11],[3,8],[4,5],[15,14],[4,7],[0,6],[-5,4],[-5,-5],[-5,-9],[-4,-4],[-16,-20],[1,-2],[0,-2],[-6,1],[-7,19],[-6,4],[19,13],[9,11],[1,13],[-4,-9],[-5,-3],[-15,-1],[-4,-1],[-3,-3],[-3,-2],[-4,2],[-2,5],[-2,7],[-4,40],[0,15],[1,6],[-4,3],[0,6],[1,8],[0,8],[-3,7],[-4,4],[-2,4],[2,5],[0,4],[-6,7],[-17,13],[2,5],[2,4],[4,-5],[1,1],[1,5],[-1,2],[1,6],[-1,3],[0,2],[2,6],[3,2],[8,5],[3,5],[1,5],[2,15],[1,4],[9,2],[4,2],[2,5],[1,4],[1,4],[2,8],[4,6],[11,10],[4,8],[7,8],[3,-8],[2,-9],[2,-8],[4,-3],[1,-4],[-2,-7],[-17,-28],[-7,-7],[-9,-3],[0,-4],[5,-1],[2,-4],[-1,-5],[-5,-2],[-1,-3],[3,-5]],[[28375,64877],[-5,-5],[-5,5],[0,8],[4,3],[9,2],[1,0],[-1,-5],[-3,-8]],[[28421,64892],[0,-5],[-2,-4],[-3,2],[-3,4],[-2,2],[-5,-1],[-3,-2],[-5,-12],[-6,-7],[-3,2],[-2,6],[2,5],[6,6],[5,8],[5,4],[6,3],[5,-1],[1,-2],[3,-4],[1,-4]],[[28674,64990],[-2,-3],[-3,3],[-1,8],[0,10],[3,2],[2,-5],[1,-3],[0,-4],[0,-8]],[[29079,64812],[2,-9],[5,-34],[-13,8],[-6,1],[-6,-1],[-13,-5],[-4,-5],[-5,-8],[-7,-2],[-7,10],[-3,12],[6,6],[4,2],[6,6],[5,8],[3,8],[5,0],[3,16],[-2,19],[-5,10],[-8,3],[-6,9],[-15,47],[-2,17],[-5,15],[-2,8],[-1,19],[-5,14],[-7,9],[-9,1],[1,6],[0,7],[-1,8],[0,7],[-2,7],[-1,3],[-2,2],[-13,21],[-8,8],[-3,4],[-2,5],[0,4],[1,5],[6,14],[2,1],[4,-1],[2,-2],[8,-14],[7,-6],[3,-3],[3,-7],[3,-38],[1,-11],[3,-6],[4,-8],[4,-10],[4,-18],[8,-28],[15,-44],[5,-8],[11,-11],[5,-9],[7,-28],[2,-4],[3,-4],[12,-26]],[[28520,65322],[7,-8],[11,-5],[-3,-7],[-30,-26],[-6,0],[-9,8],[-2,-5],[-3,-7],[-4,-5],[-3,3],[-5,5],[-5,1],[-5,-1],[-4,1],[-4,10],[3,12],[6,9],[7,6],[4,1],[9,7],[4,1],[12,-1],[12,4],[4,0],[4,-3]],[[28303,65372],[5,-3],[4,4],[4,6],[5,4],[4,-4],[4,-5],[4,-4],[3,-5],[3,-8],[-4,-9],[0,-11],[2,-9],[4,-7],[-3,-24],[-1,-14],[1,-7],[6,-1],[4,-5],[3,-9],[17,-82],[13,-35],[4,-10],[5,-4],[3,-4],[10,-20],[3,-9],[0,-10],[0,-15],[-1,-13],[-2,-8],[-1,-12],[2,-14],[6,-25],[1,-21],[-2,-15],[-7,-10],[-10,-3],[-5,-2],[-2,-6],[-3,-7],[-3,-5],[-8,-2],[-2,-5],[3,-13],[-3,-7],[-11,-13],[-5,-3],[-9,-1],[-4,-3],[-10,-15],[-2,-5],[1,-5],[1,-5],[0,-4],[-2,-4],[-3,-2],[-2,2],[-3,4],[-1,4],[-4,16],[-1,20],[-3,18],[-7,7],[-8,7],[-2,18],[2,40],[-5,-8],[-4,-8],[-4,-6],[-7,-2],[-6,2],[-35,39],[-16,30],[-6,12],[-3,14],[4,1],[5,6],[6,6],[2,5],[1,8],[2,0],[3,-4],[2,-2],[3,4],[2,4],[0,6],[-2,6],[4,11],[5,-1],[3,-7],[2,-13],[0,-10],[-1,-9],[-2,-8],[-3,-7],[-5,-7],[0,-1],[0,-6],[1,-6],[2,-2],[8,10],[4,2],[2,5],[0,13],[5,-5],[0,-11],[-1,-12],[0,-11],[5,-5],[3,7],[0,13],[-1,12],[3,-3],[3,-3],[2,-2],[1,4],[0,8],[-2,6],[-3,5],[-2,5],[0,3],[0,9],[0,4],[-2,4],[-4,8],[-2,4],[-1,9],[-1,9],[-1,6],[-4,-3],[3,-5],[1,-9],[-1,-23],[-2,6],[-2,10],[-2,9],[-4,4],[0,4],[0,10],[3,18],[4,9],[6,9],[4,12],[-1,15],[3,3],[7,3],[2,4],[1,7],[3,15],[1,8],[3,0],[-1,5],[-2,6],[-2,5],[1,5],[1,8],[3,8],[2,4],[2,7],[0,17],[-3,26],[-3,19],[-6,25],[-3,22],[3,13],[4,0],[11,-4],[4,-3],[3,-6],[2,-7],[2,-5]],[[28377,65526],[-3,-7],[-3,-2],[-4,0],[-3,0],[-5,0],[0,1],[2,3],[2,2],[2,0],[3,0],[4,0],[3,4],[3,6],[0,-1],[-1,-6]],[[27978,65602],[0,-3],[-3,7],[0,2],[3,-6]],[[28694,65609],[4,-1],[3,-3],[-3,-9],[-1,-9],[0,-11],[0,-12],[5,11],[3,-5],[2,-12],[3,-6],[5,-3],[35,-53],[11,-11],[12,-6],[13,-1],[5,-2],[4,-7],[15,-39],[16,-32],[18,-25],[8,-10],[4,-9],[1,-11],[-2,-50],[-1,-10],[-1,-5],[-1,-6],[-2,-4],[-3,-2],[-1,-2],[-1,-11],[1,-11],[3,-15],[2,-10],[-2,-28],[-1,-12],[-7,-21],[-1,-8],[-1,-41],[1,-23],[4,-19],[-9,8],[-5,19],[-3,21],[-4,17],[-5,6],[-12,10],[-5,6],[-6,13],[1,6],[4,1],[28,-9],[2,1],[1,4],[1,5],[1,4],[5,8],[1,6],[1,8],[0,14],[-2,-4],[-4,-9],[-3,-5],[-1,6],[0,15],[2,27],[2,10],[1,3],[1,4],[8,14],[2,4],[2,34],[0,13],[-5,27],[-9,14],[-10,10],[-9,14],[-23,65],[-7,11],[-10,8],[-22,9],[-12,11],[-17,31],[-11,7],[-6,1],[-11,5],[-5,2],[-6,-3],[-10,-11],[-4,2],[7,14],[4,23],[4,44],[-2,0],[10,0]],[[27987,65727],[1,-12],[-1,-5],[-1,3],[-1,-2],[-4,-2],[0,5],[2,9],[-1,3],[-4,-7],[-2,-5],[-2,-4],[0,-8],[3,-5],[4,-3],[3,-5],[-1,-3],[-8,2],[-3,0],[-1,3],[1,9],[2,11],[3,12],[6,9],[3,2],[1,-7]],[[28383,65699],[0,-5],[-3,1],[-4,8],[-4,15],[-6,12],[-2,8],[2,5],[4,-2],[2,-6],[11,-36]],[[28460,66044],[-8,-18],[1,14],[-1,8],[-2,8],[0,11],[2,-3],[8,-12],[1,-3],[-1,-5]],[[28545,66148],[0,-2],[0,-1],[0,1],[-1,0],[-1,-1],[1,-1],[-1,-1],[0,-7],[1,-7],[-2,-2],[-1,0],[-1,0],[-2,2],[-1,7],[-2,4],[-1,3],[0,3],[1,-1],[2,2],[1,3],[2,2],[3,-1],[2,-3]],[[28376,66220],[0,-3],[-2,-4],[-1,-7],[-2,-5],[-1,0],[-1,2],[-1,2],[-3,9],[-2,5],[0,5],[1,2],[9,4],[1,-3],[-3,-6],[0,-2],[2,2],[1,2],[1,3],[3,5],[1,-2],[-3,-6],[0,-3]],[[28189,66299],[22,-17],[6,3],[13,-6],[14,-5],[9,-1],[4,11],[6,5],[8,-7],[6,-2],[10,8],[13,-4],[9,6],[9,7],[5,2],[18,0],[4,4],[3,6],[2,8],[2,7],[5,3],[0,-11],[-1,-12],[-1,-12],[5,-21],[0,-11],[-2,-10],[-5,-4],[-2,1],[-5,8],[-3,3],[-3,1],[-18,-2],[-17,-7],[-38,-15],[-15,0],[-59,-28],[-5,-2],[-5,-3],[-8,-14],[-6,-3],[-5,-6],[-6,-6],[-5,-7],[-2,-4],[-6,-1],[-3,-2],[-11,2],[-11,7],[-7,13],[-12,14],[-29,58],[-13,21],[-3,9],[3,0],[2,-2],[2,-2],[2,-4],[36,-44],[8,-22],[6,2],[4,2],[9,-8],[7,0],[6,6],[6,7],[3,4],[4,4],[2,2],[1,5],[3,6],[1,7],[4,7],[4,13],[5,6],[-1,7],[-7,8],[-11,4],[2,7],[7,17],[2,7],[2,25],[5,-7],[5,-12],[4,-12],[1,-11],[6,-6]],[[28396,66416],[25,-11],[15,-2],[6,9],[15,-13],[12,-17],[51,-95],[6,-7],[6,-4],[9,-1],[-2,-7],[-4,-2],[-9,0],[4,-16],[6,-13],[7,-8],[17,-6],[8,-7],[13,-19],[10,-11],[3,-5],[3,-8],[2,-11],[0,-9],[-4,-5],[0,-4],[-1,-26],[1,-10],[3,-6],[4,-4],[4,-2],[-4,-14],[0,-4],[1,-7],[1,-4],[1,-3],[1,-3],[0,-5],[1,-2],[-1,-2],[-2,-5],[-2,-4],[-3,-2],[-5,-2],[1,3],[1,9],[-9,-2],[-8,-10],[-8,-13],[-6,-13],[-3,-15],[-2,-45],[0,-12],[-3,-33],[2,-48],[-1,-42],[-10,-19],[-7,8],[-7,16],[-4,19],[-2,12],[-5,8],[-20,8],[-6,15],[5,0],[5,3],[4,6],[3,15],[4,2],[4,1],[3,3],[10,22],[7,11],[7,6],[-2,4],[-1,5],[-1,6],[0,7],[-1,4],[-2,4],[-2,4],[-1,6],[2,7],[2,5],[3,6],[1,8],[0,16],[-1,8],[-5,9],[9,25],[0,5],[-3,7],[0,42],[4,0],[3,4],[2,5],[2,7],[1,3],[-1,12],[1,4],[2,2],[2,2],[1,2],[3,9],[1,11],[-2,8],[-10,5],[-6,6],[-26,7],[-5,6],[-3,10],[-3,15],[1,3],[0,5],[0,5],[-4,8],[-1,7],[-1,3],[-1,1],[-2,-3],[-1,-3],[-2,-1],[-5,1],[-5,3],[-2,6],[2,9],[-5,20],[-12,41],[-8,17],[-5,6],[-6,5],[-6,0],[-5,-5],[-5,-4],[-6,3],[-17,10],[-5,1],[-11,0],[-3,2],[-8,10],[-5,4],[-5,2],[-22,-3],[-9,-7],[-6,0],[1,2],[1,1],[2,1],[10,13],[13,4],[26,-1]],[[55282,77040],[8,4],[6,1],[5,3],[25,27],[3,1],[2,-3],[1,-5],[1,-3],[3,0],[5,3],[3,1],[12,-4],[3,1],[2,1],[2,0],[6,-8],[3,-1],[3,0],[0,1],[0,1],[1,-2],[2,-3],[2,-3],[1,-3],[1,-5],[0,-6],[-1,-1],[-2,-1],[-1,-3],[-10,-71],[-2,-11],[-3,-6],[-6,-7],[-3,-5],[-2,-6],[-4,-18],[-13,-33],[-1,-2],[-3,-3],[-1,-3],[-1,-4],[0,-9],[0,-4],[-2,-5],[-2,-4],[-2,-3],[-10,-5],[0,-9],[4,-27],[0,-16],[-4,-8],[-4,-8],[-2,-12],[0,-12],[3,-11],[6,-21],[5,-9],[5,-4],[12,-4],[6,-4],[3,-2],[3,0],[9,3],[4,-1],[4,-6],[5,-10],[4,-13],[0,-12],[2,-8],[5,-8],[12,-14],[3,-4],[2,-2],[2,1],[3,5],[2,0],[2,-5],[1,-11],[1,-3],[5,-7],[5,-11],[1,-4],[9,-8],[5,-8],[2,-3],[1,1],[2,4],[3,1],[3,-5],[2,-11],[-2,-9],[-5,-9],[-11,-13],[-7,-3],[-7,-1],[-16,2],[-14,-1],[-4,-2],[-4,-1],[-4,4],[-7,10],[-7,8],[-4,2],[-4,-1],[-6,-2],[-2,-4],[-2,-5],[0,-5],[2,-7],[-1,-4],[-3,-5],[3,-3],[10,-11],[8,-17],[15,-37],[28,-48],[6,-19],[7,-33],[0,-16],[-7,-11],[-1,-7],[-1,-8],[1,-8],[1,-7],[2,-3],[1,-2],[-1,-3],[-2,-2],[-10,7],[-4,-1],[-3,-13],[-3,-5],[-2,5],[-2,10],[-4,12],[-5,9],[-5,4],[-2,-1],[-7,-8],[-3,-3],[-3,0],[-8,2],[-3,-2],[-3,-9],[-3,-14],[-3,-10],[-7,0]],[[55331,76250],[-13,4],[-7,-2],[-7,-13],[-6,-4],[-5,0],[-5,3],[-4,7],[-3,8],[-4,6],[-6,-1],[-4,-4],[-7,-12],[-5,-4],[-2,-3],[-2,-5],[0,-5],[3,-3],[4,-1],[2,-2],[4,-9],[0,-4],[-2,-5],[0,-3],[6,2],[2,-2],[10,-20],[8,-35],[9,-25],[-2,-3],[-8,0],[-3,-3],[-1,-1],[-1,-4],[-2,-5],[-2,-5],[-3,-4],[-1,3],[0,1],[-6,11],[-2,7],[-1,5],[1,4],[-1,4],[-2,4],[-7,8],[-7,3],[-16,-2],[-5,-4],[1,-2],[1,-6],[1,-2],[-7,-4],[-36,-40],[-4,-10],[7,-5],[-12,-26],[-5,-15],[-2,-18],[0,-2],[0,-15],[5,-45],[-11,2],[-17,0],[-15,-5],[-9,-13],[-5,-23],[0,-10],[3,-12],[6,-21],[2,-12],[-2,-5],[-4,-5],[-2,-6],[0,-10],[3,-15],[3,-14],[10,-25],[6,-9],[4,-9],[3,-17],[0,-17],[-2,-7],[-1,-5],[-6,-9],[-3,-3],[-5,-5],[2,-6],[0,-5],[-1,-4],[-3,0],[-3,3],[-3,0],[-3,-2],[-3,-4]],[[55121,75674],[-5,2],[-10,2],[-4,4],[0,1],[-5,13],[-3,3],[-8,0],[-15,8],[-9,8],[-49,51],[-15,15],[-6,9],[-12,21],[-7,8],[-10,4],[-3,4],[-9,21],[0,7],[0,14],[-1,6],[-3,7],[-2,-1],[-3,-3],[-2,-2],[-6,2],[-11,7],[-6,2],[-7,-2],[-3,-6],[-4,-9]],[[54903,75870],[-27,26],[5,0],[8,-5],[4,-2],[-4,6],[-6,6]],[[54883,75901],[15,5],[8,9],[-1,16],[-9,31],[-8,16],[-3,6],[-38,39],[-3,2],[-4,8],[-3,11],[-2,13],[-2,6],[-3,4],[-6,6],[-11,16],[-11,26],[-6,29],[5,50],[-4,15],[-9,9],[-27,7],[-16,14],[-6,8],[-9,13],[-13,24],[-44,70],[-31,38],[-4,10],[-3,12],[-1,10],[-2,9],[-11,16],[-9,20],[-14,21],[-8,18],[-3,7],[-4,8],[-5,6],[-12,6],[-2,7],[-2,9],[-3,9],[-3,2],[-7,-1],[-3,1],[-3,2],[-3,4],[-5,8],[-4,10],[-7,23],[-4,11],[-12,20],[-4,10],[-5,26],[-3,18],[0,9],[1,7],[2,9],[1,5],[1,10],[0,1],[-1,5],[-3,5],[-6,5],[-5,2],[-3,1],[-1,-2],[0,4],[2,3],[3,2],[1,4],[0,10],[-2,11],[-6,29],[-2,12],[-2,10],[-3,6],[-6,2],[-10,-7],[-6,1],[-5,9],[2,10],[4,9],[2,8],[2,2],[-1,8],[-1,8],[-2,5],[-4,3],[-6,1],[-4,2],[-3,3],[-3,8],[-3,15],[-3,6],[-2,0],[-2,-2],[-2,-1],[-2,4],[-1,5],[-1,6],[-1,6],[-2,3],[-3,0],[-2,-3],[-2,-5],[-2,-4],[-2,-1],[-5,-1],[-3,-1],[-4,-1],[-2,4],[-2,6],[-2,5],[-7,7],[-2,3],[-7,18],[-3,10],[0,10],[4,8],[6,3],[5,3],[1,11],[-3,11],[-4,10],[-4,12],[-1,15],[1,4],[1,7],[7,18],[1,10],[-3,18],[0,11],[7,26],[1,9],[-1,35],[0,5],[3,13],[3,4],[6,8],[15,4],[27,-1],[6,2],[3,0],[4,-3],[2,-5],[0,-5],[-1,-5],[0,-3],[2,-2],[6,-2],[4,-4],[4,-11],[6,-23],[5,-10],[25,-38],[8,-7],[10,-7],[11,-4],[7,3],[1,8],[3,17],[6,16],[1,5],[1,7],[-1,4],[0,3],[2,6],[3,2],[7,4],[3,3],[4,9],[9,30],[13,14],[16,-1],[55,-25],[7,2],[4,4],[0,5],[0,5],[2,7],[2,4],[4,2],[2,3],[2,6],[2,3],[3,4],[2,5],[1,3],[8,10],[2,-4],[2,-12],[1,-5],[-1,-5],[2,-3],[6,1],[-1,4],[-1,4],[4,-2],[3,-7],[3,-3],[3,8],[1,-5],[0,-3],[0,-4],[-1,-5],[2,2],[4,5],[2,2],[5,-18],[12,-13],[7,-6],[18,-12],[3,3],[13,1],[1,3],[5,18],[11,-11],[5,-3],[10,-9],[2,-4],[4,-3],[5,1],[9,4],[1,2],[1,4],[1,2],[2,-2],[2,-4],[0,-3],[-1,-3],[-2,-4],[4,-2],[3,1],[7,5],[-3,-12],[-1,-4],[2,1],[14,3],[6,-1],[3,1],[5,5],[11,17],[6,4],[9,-1],[8,-7],[8,-11],[15,-30],[5,-7],[6,-4],[3,1],[8,5],[7,2],[3,2],[4,7],[17,30],[4,4],[5,0],[4,-4],[16,-21],[6,-4],[5,-2],[3,0],[3,0],[6,2],[5,5],[2,6],[0,7],[1,8],[3,5],[7,3],[6,-4],[13,-14],[4,-3],[20,-2],[5,-4],[5,-6],[6,-10],[4,-7],[4,-4],[3,-2],[7,-5],[7,0],[-1,8],[-1,8],[0,4],[0,1],[4,2],[2,0],[5,-1],[2,-1],[2,2],[4,3],[2,1],[2,-2],[1,-3],[2,-7],[1,-5],[2,-4],[3,-2],[2,3],[1,2],[1,4],[0,3],[2,3],[2,0],[1,-1],[2,-3],[10,-32],[4,-6],[3,-2],[8,-2],[1,-1],[2,-1],[0,-3],[1,-3],[0,-2],[0,-3],[0,-2],[1,-1],[2,-3],[0,-2],[-1,-6],[-6,-7],[-2,-6],[3,-17],[10,-15],[6,-7],[5,-5],[9,-4],[32,1],[3,2]],[[27780,59824],[1,0],[0,-1],[-1,1]],[[32544,61060],[-3,5],[-3,9],[-1,8],[0,6],[2,-3],[19,-6],[-2,-6],[-4,-7],[-3,-6],[-5,0]],[[57819,83718],[5,-10],[19,-25],[9,-15],[6,-7],[6,-2],[6,4],[9,18],[6,5],[42,6],[15,-4],[5,-2],[3,-3],[4,-10],[10,-17],[2,-6],[3,-14],[1,-14],[3,-12],[8,-8],[21,-7],[6,2],[1,14],[7,9],[17,9],[17,13],[14,6],[16,-1],[15,-6],[14,-12],[8,-8],[43,-15],[5,-3],[5,-6],[5,-8],[2,-6],[1,-4],[-1,-4],[-2,-1],[-2,0],[-2,-1],[-3,-2],[-2,-1],[-2,-2],[-2,-5],[-1,-6],[-2,-14],[-1,-6],[-6,-20],[-2,-9],[2,-13],[4,-8],[14,-15],[13,-24],[6,-3],[7,2],[22,32],[27,19],[7,2],[20,-6],[7,4],[11,25],[6,10],[11,8],[11,3],[11,-1],[33,-15],[8,3],[12,15],[6,4],[5,-2],[10,-10],[5,-5],[55,-22],[2,-3],[0,-5],[-1,-5],[-1,-5],[3,-5],[25,-14],[3,-3],[2,-4],[1,-8],[-1,-5],[-1,-5],[0,-5],[3,-9],[6,-4],[6,-2],[12,1],[3,-2],[3,-6],[3,-9],[8,-20],[8,-1],[9,6],[12,5],[11,-6],[6,-13],[1,-4],[2,-22],[-5,-21],[4,-3],[1,-1],[-2,-7],[-7,-7],[-1,-10],[2,-11],[4,-7],[4,-8],[0,-12],[-4,-7],[-16,-15],[-10,-16],[-4,-11],[-1,-11],[3,-8],[5,-5],[10,-6],[3,-7],[5,-22],[4,-8],[13,-12],[3,-5],[1,-3],[-1,-5],[0,-3],[1,-1],[3,-1],[1,-1],[1,-3],[1,-2],[0,-3],[-1,-6],[-2,-4],[-1,-4],[1,-5],[2,-4],[4,-12],[3,-14],[0,-12],[-7,-2],[-13,4],[-6,-1],[-1,-7],[2,-10],[4,-6],[2,-7],[-5,-12],[-5,-4],[-17,-5],[-7,-6],[1,-6],[3,-9],[-1,-15],[-4,-10],[-6,-8],[-6,-10],[-1,-17],[2,-9],[4,-4],[12,-5],[42,-39],[4,-9],[1,-11],[6,1],[24,-3],[6,-16],[11,-12],[-8,-23],[-14,-27],[-7,-26],[9,-8],[20,-7],[3,-8],[9,-3],[4,-12],[7,-31],[3,-7],[4,-5],[3,-5],[2,-10],[2,-34],[3,-17],[4,-9],[43,-43],[7,-8],[7,-3],[14,-5],[24,-16],[8,-3],[8,0],[3,-2],[3,-5],[2,-6],[2,-9],[3,-7],[3,-2],[7,6],[2,1],[2,-2],[0,-2],[0,-3],[7,-31],[-2,-5],[0,-4],[0,-5],[-1,-4],[-3,-13],[-4,-34],[-5,-15],[-11,-23],[-3,-14],[12,-1],[24,-10],[59,20],[6,-2],[16,-15],[35,-12],[10,-9],[9,-16],[4,-3],[13,1],[6,-1],[6,-4],[5,-9],[2,-4],[0,-5],[0,-4],[-2,-5],[-21,-13],[-2,-3],[0,-4],[1,-11],[3,-16],[5,-12],[6,-9],[8,-7],[14,-8],[6,-6],[5,-11],[2,-4],[2,-1],[2,1],[2,4],[5,1],[5,-1],[4,-3],[-1,-5],[-1,-6],[1,-7],[3,-1],[9,4],[3,0],[5,-14],[0,-5],[-4,-38],[4,-19],[-6,-5],[-4,1],[-5,2],[-4,2],[-20,-6],[1,-2],[3,-5],[1,-2],[-8,-6],[-8,-2],[-9,1],[-7,5],[-7,-3],[-2,-7],[2,-6],[6,-2],[-2,-12],[-4,-11],[-9,-19],[-5,-7],[-5,-3],[-10,-4],[-9,-11],[-7,-13],[-7,-9],[-15,0],[-1,-2],[-1,-3],[0,-2],[0,-2],[0,-3],[-1,-3],[-1,-1],[-1,0],[-2,1],[-10,-2],[-8,-7],[-2,-2],[-10,1],[-20,10],[-8,-1],[-7,-5],[-7,-1],[-6,2],[-15,11],[-3,1],[-10,-1],[-3,2],[-5,9],[-3,24],[-3,11],[-5,3],[-13,0],[-5,2],[-17,8],[-6,1],[-5,-2],[-11,-8],[-6,0],[-14,3],[-13,0],[-10,-10],[-5,-29],[0,-7],[0,-1],[1,-6],[0,-6],[0,-6],[-3,-4],[-7,-2],[-3,-2],[-14,-28],[-6,-8],[21,-23],[5,-11],[7,-29],[6,-12],[9,-11],[9,-8],[8,-3],[7,-1],[2,-5],[1,-8],[2,-9],[4,-7],[3,-4],[3,-4],[3,-12],[0,-25],[-6,-11],[-19,-14],[3,-9],[12,-22],[9,-24],[3,-7],[10,-11],[4,-7],[-1,-6],[-4,-1],[-10,3],[-4,0],[1,-2],[4,-7],[-5,-3],[-3,-5],[1,-6],[4,-5],[6,-6],[0,-15],[-1,-18],[-1,-15],[3,-6],[2,-5],[2,-7],[1,-10],[-2,-8],[-3,-8],[-3,-6],[-4,-4],[8,-16],[5,-6],[5,-5],[5,-3],[9,-2],[5,-3],[-3,-5],[-2,-8],[-1,-8],[1,-9],[2,-6],[3,-3],[14,-13],[3,-8],[1,-12],[0,-18]],[[58823,81324],[-32,-2],[-49,13],[-25,-1],[-22,-11],[-6,-10],[-4,-12],[-4,-10],[-7,-4],[-7,4],[-12,14],[-7,5],[-11,2],[-38,-3],[-7,-3],[-4,-6],[2,-10],[-2,-3],[-1,-3],[0,-3],[-1,-3],[8,-1],[3,-8],[-3,-8],[-7,-1],[-2,4],[-1,1],[-2,-1],[-2,-3],[-3,-3],[0,-4],[0,-3],[0,-2],[-3,-5],[-3,-4],[-3,-4],[-4,-3],[-8,-4],[0,-2],[0,-4],[2,-2],[0,-5],[-4,-6],[-2,-4],[-3,-2],[-8,1],[-2,-1],[-1,-3],[0,-6],[-1,-5],[-6,-4],[-2,-4],[-1,-4],[-2,-2],[0,-2],[-6,-10],[-2,-4],[-1,-2],[0,-2],[2,-6],[0,-9],[-5,-7],[-6,-5],[-4,-6],[6,-3],[2,-1],[0,-4],[-3,-4],[-1,-7],[0,-8],[-2,-5],[-3,-2],[-8,0],[-4,-2],[2,-8],[-3,-12],[1,-9],[-2,-2],[-2,-5],[-1,-1],[0,-2],[1,-6],[-3,-2],[-8,-10],[0,-4],[5,-6],[3,-2],[0,-4],[-3,-1],[-1,-1],[-1,-1],[-1,-1],[0,-4],[3,-6],[9,-3],[5,-3],[-2,-7],[-2,-3],[-2,-2],[3,-4],[3,-4],[2,-4],[-2,-5],[1,-7],[3,-5],[3,-2],[2,-2],[0,-4],[-3,1],[-3,-2],[-2,-4],[-1,-7],[1,-7],[2,-2],[3,0],[3,-3],[2,-4],[2,-17],[2,-3],[2,-4],[0,-3],[-4,-2],[2,-16],[-8,-11],[-8,-9],[-1,-8],[-5,-12],[-1,-1],[0,-14],[0,-1],[-1,-3],[-3,-1],[-2,5],[-4,5],[-3,3],[-4,2],[-4,-1],[-4,2],[-6,12],[-4,5],[-4,2],[-9,0],[-4,2],[-4,4],[-8,15],[-2,6],[1,1],[2,12],[0,5],[0,6],[0,5],[-1,4],[-1,4],[-4,4],[-14,9],[-4,6],[-10,19],[-8,8],[-8,2],[-39,-1],[-6,-2],[-17,-12],[-4,0],[-4,4],[-3,0],[-3,-3],[-5,-12],[-3,-4],[-5,-2],[-25,6],[-4,6],[-2,9],[-5,11],[-4,5],[-6,1],[-7,-2],[-5,-3],[-6,-7],[-4,-7],[-4,-7],[-7,-4],[-7,-1],[-4,-2],[-2,-7],[-4,-15],[-5,-9],[-5,0],[-12,6],[-7,-3],[-7,-8],[-3,-4],[-6,-3],[-7,5],[-3,11],[-2,13],[-3,11],[-6,9],[-5,4],[-2,7],[3,16],[-1,15],[-3,10],[-10,18],[-5,22],[-4,7],[-7,6],[-11,3],[-5,0],[-6,-3],[-5,-7],[-7,-18],[-5,-8],[-8,-4],[-17,0],[-8,-2],[-9,-7],[-9,-9],[-7,-13],[-6,-16],[-1,-10],[1,-22],[-1,-9],[-5,-8],[-3,6],[-2,11],[-2,8],[-4,0],[-3,-3],[-4,-2],[-5,3],[-3,6],[-2,8],[-4,33],[-1,12],[-2,8],[-7,4],[-25,7],[-8,0],[-7,-3],[-14,-13],[-7,-9],[-3,-2],[-4,2],[-2,4],[-3,17],[-1,6],[-4,5],[-8,7],[-3,4],[-3,7],[0,5],[0,5],[-1,6],[-4,6],[-5,1],[-7,-4],[-6,-7],[-5,-12],[-9,-23],[-7,-8],[-5,-2],[-27,0],[-5,2],[-6,3],[-16,25],[-6,4],[-7,-1],[-5,-7],[-3,-10],[-2,-12],[0,-7],[1,-7],[0,-6],[-1,-8],[-2,-4],[-13,-23],[-3,-4],[-4,-1],[-4,2],[-5,5],[-3,6],[-2,3],[0,1],[9,30],[2,15],[-3,13],[-5,3],[-15,1],[-30,16],[-10,0],[-5,-4],[-8,-11],[-6,-4],[-6,-1],[-16,4],[-11,-5],[-6,0],[-4,4],[2,10],[4,13],[1,10],[-9,3],[-6,-1],[-6,1],[-4,5],[-2,11],[0,16],[1,13],[-2,9],[-8,6],[-11,3],[-25,1],[-28,-13],[-18,4],[-52,31],[-62,3],[-3,2],[-4,7],[-1,6],[1,5],[0,4],[-3,2],[-65,4],[-8,5],[-18,21],[-8,2],[-20,0],[-59,14],[-23,-6],[-38,1],[-54,1],[-47,17],[-13,0],[-12,-6],[-25,-17],[-78,-17],[-6,0],[-17,6],[-69,-7],[-6,-3],[-6,-8],[-10,-20],[-5,-12],[-6,-38],[-8,-15],[-32,-29],[-41,-49],[-11,-3],[-8,10],[-8,13],[-11,6],[-7,0],[-19,8],[-7,1],[-27,-10],[-3,-2],[-3,-4],[-4,-8],[0,-5],[2,-5],[7,-28],[1,-6],[-1,-9],[-3,-2],[-2,3]],[[56557,80979],[-1,8],[-4,3],[-5,2],[-3,9],[2,0],[2,0],[-6,14],[-3,9],[-1,8],[2,16],[-1,6],[-3,4],[0,5],[3,0],[1,2],[4,6],[-1,2],[-2,4],[-1,4],[1,2],[3,1],[-1,4],[-2,4],[-1,3],[2,14],[1,6],[1,4],[5,8],[6,4],[5,7],[3,14],[-5,9],[-5,11],[4,5],[1,13],[3,2],[0,3],[0,1],[-1,0],[-1,0],[2,7],[0,19],[2,11],[5,16],[4,8],[4,4],[-3,10],[-4,23],[-2,7],[0,7],[-2,7],[-3,3],[-3,1],[-1,4],[-2,5],[-2,5],[-5,4],[-13,-1],[-5,3],[-8,20],[1,2],[1,7],[-1,4],[-5,-6],[-2,3],[-2,3],[-2,3],[-3,-6],[-3,1],[-2,3],[-4,2],[-4,-2],[-1,1],[2,5],[0,4],[-6,1],[-17,8],[-3,5],[-5,-2],[-20,7],[-6,5],[2,11],[-1,8],[-3,5],[-2,3],[-2,2],[-1,0],[13,35],[5,10],[11,18],[34,68],[25,26],[24,19],[47,17],[37,33],[11,17],[4,26],[-1,17],[-2,72],[-1,5],[-1,3],[-1,3],[0,7],[0,4],[3,8],[1,4],[0,5],[-2,16],[0,4],[0,7],[0,5],[-3,8],[-9,14],[-2,10],[0,12],[3,8],[3,7],[3,9],[1,14],[-3,7],[-5,5],[-5,7],[-3,9],[-3,9],[-2,8],[-5,9],[-5,16],[-11,56],[-6,19],[-13,35],[-24,92],[-6,41],[-1,37],[-7,12],[-2,12],[-3,32],[-3,15],[-4,13],[-2,15],[-1,17]],[[56523,82413],[10,-3],[25,-19],[5,-2],[4,0],[14,8],[17,3],[5,4],[4,3],[2,-1],[5,-4],[2,-1],[2,1],[22,15],[4,1],[4,-2],[8,-7],[5,-1],[18,0],[8,3],[17,12],[9,2],[9,-4],[8,-12],[5,-17],[3,-6],[5,-1],[9,1],[9,-4],[10,0],[10,7],[32,36],[14,10],[18,4],[6,7],[1,0],[1,0],[1,-1],[4,-12],[4,-5],[5,0],[18,3],[5,4],[4,10],[0,16],[-2,11],[-4,10],[-3,13],[-2,9],[1,2],[2,0],[2,4],[5,4],[1,3],[-1,4],[0,4],[1,4],[8,6],[2,1],[13,2],[13,-2],[21,-11],[13,3],[12,9],[11,16],[5,13],[6,28],[3,7],[5,1],[18,-8],[23,2],[6,6],[11,20],[7,4],[4,-1],[2,-2],[1,-3],[20,-34],[-3,-2],[-6,1],[-6,-4],[0,-6],[6,-5],[2,-5],[-2,-4],[-8,-4],[-2,-4],[2,-10],[6,-8],[8,-5],[24,-5],[6,0],[3,3],[5,7],[3,2],[10,-2],[3,1],[7,6],[2,9],[0,27],[1,3],[3,6],[1,2],[-1,4],[-1,1],[-1,1],[-2,2],[-1,6],[-3,6],[-2,4],[-3,4],[-1,0],[-3,-1],[-1,0],[-1,2],[-3,11],[-1,5],[-2,5],[-4,3],[-4,-1],[-16,-11],[-12,-1],[-6,3],[-4,7],[0,15],[5,13],[13,19],[5,13],[1,11],[0,13],[1,15],[3,12],[4,7],[17,13],[6,7],[4,9],[1,12],[-2,11],[-6,21],[-2,12],[0,7],[1,6],[2,6],[1,6],[0,6],[-1,30],[1,8],[3,6],[6,6],[3,2],[2,0],[1,1],[1,5],[0,5],[-2,12],[-1,5],[3,11],[6,7],[6,7],[6,8],[2,6],[0,5],[1,5],[4,3],[10,6],[5,0],[10,-3],[5,0],[34,8],[10,7],[4,6],[5,8],[5,10],[10,27],[1,5],[1,7],[0,15],[0,7],[9,16],[13,3],[30,-10],[3,0],[2,1],[2,3],[2,3],[2,3],[4,1],[29,-16],[7,1],[4,9],[3,17],[2,16],[2,7],[4,7],[8,10],[4,3],[11,3],[7,3],[7,6],[3,9],[-2,10],[-7,6],[-46,10],[-17,-5],[-4,0],[-17,7],[-4,4],[-2,6],[3,11],[7,15],[2,6],[3,22],[3,7],[10,12],[0,7],[-5,12],[1,14],[6,11],[7,10],[5,10],[3,13],[0,16],[-1,15],[-2,14]],[[57387,83436],[6,13],[6,4],[8,-1],[15,-7],[6,1],[22,14],[6,7],[16,36],[16,23],[6,5],[36,6],[11,-3],[7,-4],[17,-17],[7,-5],[6,2],[13,16],[6,8],[6,-10],[9,-6],[9,-4],[35,-3],[8,1],[3,9],[2,13],[2,28],[8,26],[27,22],[9,19],[1,14],[9,11],[19,18],[3,7],[3,8],[3,6],[4,5],[3,3],[12,3],[12,6],[7,7],[5,4],[12,6],[11,-9]],[[25610,60724],[0,-14],[-2,0],[0,7],[0,2],[-2,-1],[-1,-2],[0,-2],[-1,-4],[0,36],[-1,15],[-3,6],[4,7],[3,-11],[5,-28],[-2,-5],[0,-6]],[[25534,60836],[2,-8],[0,-6],[-1,-3],[0,-3],[-1,-6],[-2,1],[-1,5],[0,12],[0,3],[-3,-1],[-2,2],[-2,4],[0,3],[-1,2],[0,4],[2,2],[4,-3],[5,-8]],[[25614,60852],[2,-11],[-2,-9],[-5,-24],[-4,-10],[-3,-10],[-4,-5],[-5,9],[-3,-10],[-4,-6],[-3,-7],[-2,-14],[-2,-27],[0,-4],[-2,-6],[-1,-7],[0,-9],[-4,8],[1,2],[0,2],[0,2],[1,3],[0,12],[3,21],[1,28],[2,10],[4,7],[5,7],[6,12],[2,0],[4,-3],[4,-1],[3,5],[2,12],[0,12],[-2,8],[-3,-6],[-3,-3],[-2,1],[0,3],[3,16],[3,0],[4,-2],[4,-6]],[[25543,60865],[-2,0],[-1,6],[-3,14],[-3,32],[4,-6],[2,-15],[3,-31]],[[25518,60935],[-9,-1],[0,2],[0,2],[2,4],[6,5],[15,22],[4,3],[-3,-19],[-6,-12],[-9,-6]],[[25563,61173],[-3,-1],[0,3],[2,6],[1,2],[1,0],[1,2],[1,-2],[0,-6],[-3,-4]],[[25571,61185],[-2,-4],[-1,1],[0,3],[-1,2],[1,2],[1,2],[2,2],[0,4],[1,2],[0,1],[1,-3],[0,-6],[-2,-6]],[[25598,61222],[-1,-13],[-3,-7],[-2,-7],[-6,-32],[-3,-10],[-2,2],[-2,2],[0,-6],[-1,-5],[-2,-3],[-2,-2],[0,-4],[2,-9],[2,8],[1,4],[0,5],[2,0],[-2,-26],[-6,-23],[-8,-18],[-12,-6],[0,4],[3,0],[1,0],[10,15],[3,10],[2,15],[-5,0],[2,18],[5,37],[0,3],[2,2],[1,3],[0,4],[1,6],[4,31],[2,6],[5,-4],[6,8],[3,-8]],[[25590,61249],[0,-3],[-1,-6],[-3,-6],[-1,2],[1,10],[1,4],[1,-1],[0,1],[-1,2],[0,1],[1,0],[1,0],[1,-1],[0,-3]],[[25471,61415],[0,-3],[5,-8],[-6,-15],[-21,-31],[-2,-9],[3,-9],[4,-1],[13,13],[-1,-9],[-3,-9],[-6,-17],[-2,-5],[1,-3],[2,1],[2,3],[5,11],[9,13],[5,5],[4,1],[7,-1],[8,-8],[3,-3],[6,2],[9,12],[9,6],[3,1],[2,-2],[-1,-9],[-1,-5],[-6,-9],[-6,-5],[-1,-3],[0,-6],[2,-2],[2,2],[2,7],[2,4],[3,2],[3,1],[1,-3],[2,-70],[-2,-54],[-1,-10],[-4,-14],[-1,-9],[-10,-54],[-5,-7],[-12,-46],[2,-16],[-3,-49],[-7,-49],[-2,-10],[-7,-17],[-3,-11],[-2,-13],[2,-14],[3,-7],[10,-11],[2,-8],[3,-5],[11,-5],[3,-4],[-4,-12],[-7,0],[-7,2],[-3,-5],[-1,-9],[-4,-29],[-7,-50],[-3,-60],[0,-12],[-1,-23],[2,-13],[1,-11],[0,-1],[0,-6],[2,-13],[1,-8],[2,-3],[6,-4],[4,-9],[2,-11],[1,-13],[1,-19],[2,-14],[-1,-7],[-2,-2],[-2,1],[-3,-2],[-3,-6],[-4,-9],[-3,-11],[-1,-9],[1,-11],[5,-17],[1,-11],[1,0],[1,-1],[1,-3],[-1,-3],[-1,-1],[-3,1],[-2,0],[-3,-6],[-2,-4],[0,-5],[-1,-3],[-1,-3],[-1,-4],[-1,-6],[0,-7],[1,-9],[1,-6],[-3,-42],[-1,-7],[-3,-5],[-3,-7],[-3,-25],[-1,-7],[-1,-10],[2,-15],[-2,-6],[-2,-5],[-1,0],[-1,9],[8,67],[5,10],[2,6],[-7,-7],[-8,-39],[-6,-15],[2,0],[4,-4],[-2,-2],[-2,-1],[-1,1],[-3,2],[1,-5],[0,-3],[2,0],[3,0],[0,-4],[-3,-4],[-2,-6],[-1,-7],[1,-3],[1,-4],[-5,-9],[-6,-23],[-5,-5],[-1,-3],[0,-14],[0,-3],[-2,-2],[-1,0],[-1,1],[0,1],[-2,-3],[0,-1],[-1,-1],[-1,-3],[-3,-18],[-2,-3],[-2,-2],[-7,-20],[-1,-3],[-1,-8],[-1,-3],[0,-2],[0,-5],[0,-1],[-1,-1],[-2,1],[-1,0],[-1,-2],[-3,-1],[-1,-2],[-1,-2],[-1,-9],[0,24],[-2,0],[-2,-13],[-4,-2],[-4,5],[-2,8],[-1,3],[-2,1],[-2,-1],[-1,-1],[-1,-2],[0,-10],[0,-4],[-2,-2],[-10,-2],[-1,-3],[-2,-2],[-2,-3],[-3,-1],[-4,-4],[-1,-9],[0,-23],[-1,-12],[-2,-9],[-4,-6],[-5,-2],[-2,-1],[-1,-4],[-2,-4],[-1,-11],[-2,-3],[-2,-2],[-3,-3],[-3,-5],[-1,-3],[-1,-4],[-1,-7],[0,-6],[-1,-5],[-7,-5],[-5,-5],[-4,-8],[-3,-8],[-1,-15],[5,-25],[-1,-14]],[[25301,59882],[-10,-8],[-25,13],[-9,0],[-8,-3],[-21,2],[-5,-4],[-2,-1],[-4,-2],[-2,-3],[-1,-1],[-2,7],[0,8],[0,28],[8,137],[4,123],[2,61],[5,166],[5,154],[0,168],[-2,165],[-1,128]],[[25233,61020],[0,51],[2,24],[6,17],[23,17],[6,-4],[4,-9],[4,-9],[5,-7],[3,-1],[4,1],[2,-1],[4,-17],[4,-5],[11,-14],[2,2],[2,5],[1,13],[1,4],[15,22],[2,6],[4,23],[2,6],[4,7],[3,4],[4,5],[2,9],[1,6],[1,14],[1,6],[7,23],[1,7],[-1,8],[-1,2],[8,12],[8,8],[3,5],[3,9],[1,7],[0,2],[0,9],[1,10],[3,10],[9,20],[3,11],[1,7],[1,15],[3,14],[1,18],[2,6],[2,5],[8,13],[3,0],[3,-3],[3,-2],[2,1],[6,4],[3,3],[2,1],[1,-1],[3,-5],[2,-3],[1,1],[2,2],[2,1],[17,0],[2,0]],[[32034,69651],[-1,-7],[-2,-5],[-5,-8],[0,-10],[-4,-12],[-6,-11],[-4,-4],[-3,-2],[-8,-12],[-4,-2],[-8,-1],[-3,2],[-3,3],[15,4],[7,5],[-3,7],[3,2],[5,5],[3,1],[15,36],[6,9]],[[33844,38528],[0,15],[4,31],[1,13],[-1,25],[1,13],[-1,18],[-5,34],[0,19],[1,20],[-1,8],[-3,7],[-11,14],[-26,32],[-26,33],[-26,32],[-26,32],[-26,33],[-25,32],[-26,33],[-26,32],[-14,18],[-8,11],[-9,12],[-5,3],[-23,-1],[-52,-1],[-52,-2],[-53,-1],[-52,-1],[-23,-1],[-42,-18],[-94,-41],[-94,-42],[-94,-41],[-94,-41],[-6,-2],[-13,-4],[-13,-4],[-6,-2],[-25,-7],[-4,-4],[-2,-7],[-5,-29],[-8,-44],[-8,-43],[-8,-44],[-8,-43],[-3,-15],[-4,-16],[-2,-7],[-1,-8],[-4,-15],[-5,-14],[-4,-15],[-5,-14],[-5,-14],[-12,-36],[-12,-36],[-13,-36],[-12,-36],[-6,-17],[-6,-17],[-10,-31],[-3,-16],[1,-54],[0,-52],[0,-57],[1,-86],[-1,-39],[-9,-61],[-9,-61],[-10,-67],[-10,-68],[-9,-63],[-13,-86],[-11,-67],[-12,-81],[-7,-52],[-8,-56],[-6,-30]],[[31335,36954],[-88,-38],[-10,-4],[-20,-2],[-43,5],[-9,6],[-2,4],[-6,18],[-1,0],[-11,4],[-3,9],[-1,15],[0,46],[9,88],[0,12],[-9,33],[-2,30],[-2,12],[-11,39],[-2,12],[0,12],[5,37],[0,11],[-3,15],[-8,22],[-1,6],[1,6],[4,10],[1,5],[-1,13],[-4,14],[-4,13],[-6,7],[-14,26],[-6,13],[-3,7],[-1,8],[-3,98],[-6,45],[-17,63],[-2,21],[1,144],[-4,26],[-58,192],[-4,9],[-6,3],[-12,-1],[-4,1],[-6,7],[-6,8],[-5,25],[0,76],[2,14],[4,12],[19,34],[0,10],[-8,14],[-7,6],[-13,17],[-29,27],[-6,10],[-6,13],[-6,16],[-4,18],[-1,18],[3,16],[7,10],[15,11],[-11,39],[-3,20],[1,23],[1,17],[-1,6],[-9,4],[-8,11],[-1,11],[4,10],[34,21],[9,2],[4,-1],[3,-2],[2,0],[3,6],[1,7],[3,20],[0,11],[6,28],[0,9],[0,3],[-1,4],[-1,8],[-1,17],[0,5],[-2,8],[-3,4],[-8,7],[-5,7],[-9,19],[-13,21],[-2,7],[0,11],[4,12],[12,21],[5,10],[15,46],[12,38],[6,17],[4,8],[11,10],[2,4],[-2,12],[-4,11],[-6,11],[-30,44],[-10,8],[-7,10],[-10,34],[-7,14],[-26,46],[-9,13],[-13,9],[-4,5],[-3,9],[-6,31],[-5,19],[-4,8],[-4,5],[8,23],[2,11],[1,13],[-1,6],[-16,66],[0,1],[0,1],[2,8],[1,8],[-1,8],[-2,7],[-6,24],[-3,29],[0,31],[2,28],[0,14],[-2,12],[-10,35],[-1,9],[1,33],[0,5],[-5,25],[0,5],[0,6],[-1,14],[-3,10],[-8,18],[-4,28],[8,17],[10,17],[2,25],[0,1],[-3,9],[-3,0],[-4,-4],[-6,0],[-5,3],[-4,4],[-9,10],[-6,3],[-2,2],[-2,4],[-6,13],[-4,-2],[-4,-5],[-3,0],[-4,14],[-3,22],[0,44],[-2,21],[-7,27],[-10,23],[-22,41],[-6,18],[-3,22],[-1,46]],[[30691,40102],[0,1],[1,42],[-1,21],[-3,17],[-4,11],[-6,12],[-11,18],[-4,3],[-15,4],[5,15],[4,33],[3,13],[1,1],[5,2],[2,1],[15,28],[8,12],[8,6],[8,3],[7,6],[6,14],[2,9],[-2,4],[-2,2],[-1,3],[1,6],[2,4],[12,14],[3,8],[7,33],[29,62],[4,12],[5,32],[2,9],[5,5],[10,2],[5,3],[16,17],[5,7],[4,13],[4,9],[-8,21],[-1,10],[1,18],[-1,35],[1,12],[2,10],[8,19],[9,10],[31,25],[6,20],[-3,16],[-6,9],[-14,12],[-12,26],[-6,8],[-8,-6],[-9,6],[-3,1],[-3,-2],[-5,-9],[-3,-3],[-8,0],[-6,5],[-6,8],[-5,9],[-10,25],[-6,32],[-12,61],[-12,61],[-12,61],[-11,61],[-4,18],[-1,18],[2,17],[18,56],[1,12],[1,12],[2,12],[3,10],[3,3],[8,6],[2,2],[0,6],[-3,17],[1,10],[5,12],[5,10],[9,7],[4,22],[5,1],[7,-1],[4,7],[1,11],[-7,14],[-7,20],[-4,9],[-17,25],[-4,10],[-16,51],[-5,9],[-6,11],[-1,11],[1,11],[4,22],[1,4],[-1,49],[0,10],[3,8],[6,8],[15,9],[5,5],[4,17],[1,76],[4,12],[5,1],[7,-3],[6,0],[1,6],[0,28],[0,10],[2,2],[5,3],[2,2],[11,26],[5,9],[18,20],[6,11],[-1,12],[-4,12],[-2,10],[-1,23],[1,12],[1,10],[7,10],[10,5],[18,5],[6,12],[-2,21],[-6,40],[-2,20],[-2,9],[-3,9],[-15,20],[-3,11],[-2,19],[0,22],[-1,20],[-5,15],[-3,23],[-1,8],[1,9],[2,7],[0,7],[-3,9],[-15,25],[-6,17],[4,14],[3,0],[9,-3],[3,1],[2,7],[0,7],[0,7],[1,8],[2,7],[6,13],[2,8],[2,14],[2,15],[-1,13],[3,116],[-4,47],[0,23],[2,71],[-1,8],[-3,58],[0,26],[1,13],[9,14],[3,15],[3,11],[7,-2],[3,17],[4,12],[6,8],[23,13],[2,5],[6,27],[-2,6],[-9,6],[-3,5],[0,10],[3,8],[4,7],[8,9],[4,8],[3,9],[3,9],[1,11],[2,6],[3,3],[-2,5],[-7,25],[-29,108],[-29,107],[-29,107],[-29,107],[-29,108],[-29,107],[-28,107],[-29,107],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4],[-1,3],[-1,4],[-1,4]],[[30673,43984],[20,-2],[11,2],[19,10],[9,-3],[9,-6],[10,-3],[16,1],[22,-5],[10,-5],[10,2],[4,-2],[21,-19],[1,0],[3,0],[1,0],[6,1],[14,-8],[6,-1],[7,3],[8,6],[7,3],[9,-5],[4,-5],[-4,-13],[-3,-15],[-2,-15],[1,-24],[1,-6],[2,-3],[5,0],[40,17],[7,8],[15,22],[12,8],[4,2],[5,0],[5,-2],[4,2],[9,18],[5,5],[13,3],[5,4],[5,9],[6,11],[4,13],[4,12],[7,35],[4,12],[16,35],[10,39],[4,9],[6,10],[9,9],[4,3],[5,1],[8,-3],[33,3],[4,-1],[4,-2],[5,-7],[11,-18],[6,-4],[9,5],[5,17],[2,21],[3,18],[3,7],[9,14],[3,9],[6,18],[3,8],[4,8],[6,4],[10,10],[11,8],[6,8],[4,9],[4,11],[2,7],[0,5],[0,4],[3,6],[3,1],[12,1],[3,1],[3,2],[2,4],[1,5],[-2,13],[1,5],[4,5],[6,2],[12,1],[5,-2],[11,-6],[4,0],[4,4],[2,7],[1,7],[2,4],[3,2],[6,1],[3,1],[13,15],[45,97],[36,60],[6,6],[22,18],[3,4],[1,5],[1,6],[1,6],[2,5],[3,2],[33,12],[17,-3],[5,2],[6,4],[11,14],[5,4],[27,8],[5,4],[9,12],[4,4],[16,4],[1,-1],[1,-3],[1,-2],[2,-1],[1,3],[2,7],[1,1],[4,2],[2,-1],[3,-2],[7,-9],[4,-2],[5,3],[13,16],[5,3],[5,1],[4,-1],[11,-6],[4,0],[3,4],[4,10],[1,-4],[1,-6],[2,-4],[1,-3],[3,1],[1,5],[0,7],[0,4],[2,12],[2,3],[2,-8],[0,-6],[1,-4],[2,-4],[2,-2],[11,10],[4,0],[-1,-13],[-1,-8],[1,-2],[2,1],[2,-1],[1,1],[3,2],[2,0],[1,-2],[3,-6],[1,-2],[8,-12],[4,-4],[6,-3],[3,1],[1,3],[1,3],[1,5],[1,2],[0,5],[0,3],[2,1],[3,2],[1,1],[3,7],[3,9],[1,5],[1,10],[2,5],[13,22],[4,9],[2,1],[8,0],[5,-4],[7,-14],[4,-18],[1,-2],[4,-27],[2,-6],[4,-7],[4,-8],[1,-9],[-1,-14],[-6,-24],[-2,-13],[-1,-24],[1,-24],[2,-23],[5,-31],[1,-12],[1,-26],[1,-6],[2,-14],[1,-6],[-1,-6],[-5,-15],[-3,-29],[-3,-14],[-10,-10],[-4,-12],[-3,-13],[-1,-11],[-1,0],[1,-4],[0,-2],[2,-2],[-7,-25],[-4,-9],[-7,-3],[0,-4],[3,-10],[1,-4],[0,-3],[-2,-5],[0,-4],[0,-5],[1,-6],[1,-5],[1,-3],[1,-6],[-2,-29],[0,-9],[5,-11],[5,-7],[4,-8],[1,-17],[0,-10],[-2,-23],[-4,-27],[1,-8],[11,-6],[5,-7],[4,-9],[3,-9],[1,-51],[1,-3],[2,-3],[1,-5],[0,-7],[-1,-5],[-2,-4],[-2,-3],[-3,-4],[-4,-14],[0,-11],[2,-10],[1,-12],[-3,-11],[-10,-17],[-5,-11],[0,-14],[3,-9],[5,-7],[2,-8],[-2,-9],[-3,-5],[-3,-7],[1,-14],[3,-11],[6,-9],[5,-6],[2,-4],[-1,-7],[-4,-12],[-2,-7],[0,-6],[0,-5],[9,-51],[8,-17],[10,6],[6,-8],[3,-5],[2,-8],[0,-5],[-2,-11],[0,-8],[1,-8],[2,-2],[2,0],[3,-2],[6,-9],[2,-5],[-7,-5],[-1,-5],[2,-15],[-1,-6],[-3,-9],[0,-5],[0,-22],[2,-8],[3,-9],[5,-8],[4,-2],[2,6],[2,29],[1,7],[2,5],[4,2],[0,-5],[0,-14],[4,-8],[5,-4],[4,-6],[2,-19],[4,-13],[1,-7],[1,-5],[-1,-12],[0,-6],[2,-13],[1,-5],[3,-3],[1,0],[3,-3],[2,-6],[0,-7],[-1,-6],[-4,-11],[0,-11],[2,-10],[3,-7],[4,-4],[4,-3],[12,-1],[6,-2],[5,-5],[6,-2],[7,5],[3,-3],[5,-2],[5,-4],[2,-9],[1,-12],[3,-11],[9,-20],[-2,-8],[1,-7],[4,-3],[3,2],[1,5],[1,16],[1,3],[4,1],[1,-3],[2,-10],[0,-5],[-2,-7],[0,-4],[0,-3],[3,-5],[0,-2],[3,-6],[7,-8],[13,-13],[4,-1],[7,0],[2,-1],[4,-7],[6,-7],[0,2],[0,2],[1,0],[4,-1],[1,-1],[5,-8],[1,-5],[0,-6],[0,-14],[-2,-12],[-5,-24],[1,-10],[2,-3],[6,-4],[2,-3],[3,-6],[3,-12],[2,-6],[4,-9],[4,-7],[5,-5],[7,-2],[11,5],[4,-3],[3,-18],[3,-2],[2,2],[2,1],[2,2],[3,7],[2,3],[6,1],[5,-3],[4,-6],[8,-17],[3,-2],[2,6],[5,12],[4,-10],[17,-1],[6,-17],[5,1],[9,7],[3,-3],[3,-5],[3,-4],[5,0],[3,6],[2,5],[2,6],[9,24],[0,3],[5,2],[8,5],[4,2],[40,-12],[1,-2],[15,-17],[11,-20],[5,-4],[6,-2],[4,-1],[3,-1],[3,-2],[2,-4],[2,-7],[1,-6],[0,-5],[1,-6],[2,-4],[3,-2],[2,-3],[1,-6],[1,-4],[10,-16],[7,-4],[3,-2],[8,-14],[3,-3],[20,1],[3,1],[1,5],[3,5],[6,9],[1,0],[3,-1],[1,1],[2,2],[1,7],[1,3],[8,7],[1,1],[3,-2],[5,-5],[9,-4],[3,-8],[2,-22],[1,-3],[2,-3],[1,-4],[-3,-7],[0,-3],[0,-3],[1,-3],[7,-11],[3,-7],[1,-7],[1,-13],[2,-11],[3,-9],[4,-5],[3,-2],[2,-1],[3,2],[2,3],[2,2],[2,-4],[1,-6],[14,-39],[1,-4],[2,-3],[3,-1],[2,0],[2,-2],[2,-3],[0,-5],[2,-9],[3,-9],[5,-7],[5,-5],[1,11],[3,4],[5,0],[5,1],[3,5],[3,5],[4,1],[5,-7],[3,-5],[2,-5],[1,-5],[0,-14],[1,-3],[24,-22],[18,1],[5,-2],[4,-5],[8,-19],[0,-3],[1,-6],[1,-1],[3,0],[1,0],[5,-6],[2,-2],[13,-3],[4,1],[3,6],[6,-5],[4,2],[4,4],[11,6],[3,1],[3,-2],[7,-11],[1,14],[2,-2],[7,-15],[3,-3],[2,2],[2,-1],[0,-9],[0,-39],[1,-11],[3,-8],[6,-9],[12,-28],[4,-4],[0,-3],[5,-14],[1,-2],[6,-6],[5,-6],[13,-28],[3,-4],[6,-6],[2,-4],[1,-5],[6,-39],[3,-6],[6,-2],[6,2],[5,4],[6,2],[5,-5],[5,7],[7,5],[7,3],[19,4],[1,0],[2,-1],[7,-15],[3,-3],[13,-6],[13,3],[12,9],[19,21],[4,-1],[4,-4],[10,-4],[6,-7],[3,-3],[3,0],[6,4],[19,-1],[3,3],[1,12],[4,6],[12,4],[1,2],[4,4],[3,2],[2,-6],[0,-24],[5,-12],[12,-5],[14,-2],[9,-4],[5,-10],[2,-3],[19,-17],[21,-35],[21,-33],[9,-11],[7,-2],[1,-2],[2,-3],[1,-7],[1,-3],[3,-2],[21,-11],[5,-6],[2,-11],[0,-16],[2,-16],[2,-15],[3,-13],[2,-5],[6,-10],[1,-4],[-1,-6],[1,-4],[3,-2],[2,-2],[0,-5],[0,-4],[-2,-11],[-4,-28],[-3,-13],[-4,-9],[-7,-4],[-2,-3],[-2,-8],[-1,-13],[0,-14],[1,-8],[4,-13],[0,-15],[-1,-16],[0,-16],[3,-11],[15,-26],[2,-10],[4,-37],[9,-42],[2,-25],[-9,-6],[5,-19],[14,-19],[3,-13],[1,-36],[1,-49],[1,-48],[1,-49],[1,-49],[1,-38],[-1,-7],[-32,-1],[-54,-1],[15,-27],[19,-47],[30,-75],[26,-63],[4,-13],[2,-14],[4,-88],[5,-120],[3,-88],[2,-63],[2,-67],[5,-26],[9,-4],[19,-2],[53,-4],[53,-4],[53,-4],[53,-4],[53,-4],[53,-4],[52,-4],[53,-3],[20,-2],[7,2],[5,6],[2,5],[4,15],[2,3],[12,-1],[3,-5],[2,-58],[-2,-8],[-6,-11],[0,-10],[5,-22],[-3,-22],[-28,-64],[-5,-18],[-2,-21],[1,-25],[6,-45],[1,-23],[-1,-4],[-2,-11],[-1,-5],[0,-7],[3,-30],[5,-18],[1,-10],[2,-42],[1,-9],[3,-10],[2,-13],[0,-53],[2,-23],[5,-17],[10,-12],[9,-2],[3,-2],[2,-3],[5,-9],[3,-4],[2,-1],[5,-2],[2,-2],[3,-9],[5,-19],[4,-7],[4,-2],[3,-1],[3,-2],[4,-5],[7,-17],[3,-4],[10,-9],[4,-4],[12,-20],[8,-7],[10,-6],[11,-1],[8,5],[6,2],[5,-2],[6,-5],[4,-8],[3,-13],[0,-15],[0,-14],[1,-9],[-1,-23],[1,-11],[2,-11],[3,-8],[4,-7],[4,-5],[4,-4],[-2,-19],[1,-7],[5,-12],[4,-15],[-1,-10],[-8,-2],[25,-92],[15,-72],[9,-36],[11,-13],[6,0],[5,-1],[2,-6],[0,-13],[-19,-1],[-6,-2],[-3,-7],[-5,-29],[-13,-85],[-13,-84],[-13,-85],[-13,-84],[-3,-20],[11,-2],[3,-5],[1,-12],[2,-35],[1,-26],[-15,-2],[-5,-6],[-6,-28],[-9,-36],[-19,-81],[-19,-80],[-9,-37],[-3,-15],[-7,-32],[-8,-32],[-3,-15],[-10,-42],[2,-16],[21,-39],[23,-41],[28,-52],[-3,-7],[-3,-10],[-4,-9],[-7,-6],[-7,4],[-4,1],[-2,-3],[-1,-5],[-2,-5],[-2,-3],[-4,-1],[-7,-6],[-8,-25],[-8,-6],[-1,-2],[-4,-10],[-1,-4],[-4,-4],[-12,-8]],[[36516,33996],[-3,-1],[-2,0],[-1,1],[-1,2],[1,44],[2,19],[3,15],[-4,4],[2,10],[8,15],[-1,13],[-4,12],[-2,8],[6,3],[3,1],[2,3],[1,5],[0,7],[0,3],[-2,3],[-3,3],[0,4],[0,3],[1,3],[1,4],[-1,6],[-4,7],[-1,5],[2,8],[3,5],[2,5],[-1,10],[5,1],[14,9],[4,4],[2,10],[5,-7],[5,-12],[3,-9],[0,-13],[-2,-12],[-3,-9],[-2,-12],[-1,-2],[-1,-4],[-1,-6],[1,-8],[1,-13],[0,-6],[-2,-10],[-3,-10],[-4,-9],[-3,-3],[-13,-41],[0,-13],[4,-21],[-1,-9],[-2,-2],[-5,-3],[-2,-3],[-4,-12],[-2,-5]],[[36506,34823],[-2,0],[-1,1],[-1,3],[-6,1],[-4,14],[-4,17],[-4,9],[-12,17],[-1,2],[1,3],[4,15],[3,5],[3,2],[5,1],[2,4],[0,6],[2,7],[7,7],[8,6],[5,7],[-2,15],[5,8],[5,-2],[4,-8],[6,-21],[1,-5],[0,-5],[-1,-4],[-4,-8],[-2,-15],[-6,-22],[-2,-13],[-1,-6],[-8,-15],[-1,-5],[0,-7],[1,-14]],[[36591,35382],[-6,-7],[-5,2],[-4,10],[2,8],[-1,8],[-5,9],[0,11],[5,14],[6,10],[9,11],[3,0],[2,-10],[-2,-14],[-3,-22],[0,-12],[3,-12],[-4,-6]],[[36820,35846],[-13,-18],[-10,-5],[-6,-6],[-65,-108],[-10,-10],[-5,-10],[-6,-18],[-5,-23],[-3,-8],[-3,3],[0,12],[5,20],[1,10],[2,4],[11,27],[32,49],[12,11],[17,34],[14,11],[7,15],[5,5],[3,1],[7,-1],[3,2],[4,5],[3,2],[0,-4]],[[37116,36304],[9,-4],[6,0],[2,-1],[0,-2],[0,-2],[1,-3],[4,-11],[3,-12],[0,-7],[-14,12],[-4,0],[-3,-7],[-2,3],[-5,0],[-2,1],[-2,3],[-4,14],[4,3],[1,-1],[2,-2],[2,4],[0,3],[0,3],[-2,6],[4,0]],[[37436,36391],[-2,-42],[-8,3],[-2,-18],[5,-17],[9,3],[2,-4],[0,-1],[0,-3],[-3,-2],[0,-4],[1,-7],[0,-7],[1,-3],[0,-3],[-2,-4],[-1,-2],[-4,-4],[-1,2],[-1,1],[-1,0],[-2,1],[-3,8],[-2,13],[-3,8],[-4,-5],[-1,4],[-11,-9],[-11,-6],[-10,2],[-7,13],[-1,13],[1,8],[4,6],[4,6],[18,34],[3,10],[2,18],[1,4],[1,5],[1,4],[0,3],[3,3],[2,0],[3,-2],[3,-3],[14,-19],[2,-7]],[[37720,36787],[6,-8],[4,5],[2,-4],[2,-6],[4,-3],[2,2],[1,4],[1,4],[1,2],[3,-2],[0,-4],[-1,-3],[0,-3],[2,-5],[2,-6],[5,-7],[1,-5],[-5,-2],[-1,-3],[-2,-1],[-1,2],[-1,3],[0,2],[0,2],[-3,0],[-2,0],[-2,-2],[-1,-3],[-4,5],[-2,-4],[-3,-6],[-3,-3],[-12,-4],[-3,0],[-4,4],[-2,4],[-3,3],[-5,1],[-2,-3],[-3,-8],[-2,-9],[-1,-8],[-2,0],[0,1],[0,1],[0,2],[-2,4],[-2,5],[1,5],[1,6],[-5,0],[-2,1],[-1,3],[-1,5],[1,1],[1,0],[11,11],[7,16],[3,-3],[4,5],[7,14],[0,3],[1,9],[2,1],[1,-2],[1,-2],[0,-1],[3,0],[3,-2],[3,-3],[3,-3],[0,-4],[-2,0],[-2,-2],[-1,-1],[-1,-1]],[[41852,38282],[-2,-3],[-3,14],[1,6],[4,-1],[4,-9],[-2,-2],[-1,-2],[-1,-3]],[[41977,38319],[-1,-1],[1,2],[0,2],[0,1],[1,-1],[0,-1],[0,-1],[-1,-1]],[[39192,42541],[3,-39],[-1,-10],[-4,-8],[1,-6],[-1,-8],[-3,-9],[-1,-9],[-2,-11],[1,-7],[4,-7],[1,-7],[3,-4],[-1,-4],[0,-9],[3,-5],[1,-6],[-3,-19],[-3,0],[-1,3],[-1,7],[-4,-1],[-4,-1],[-2,15],[-6,20],[-2,15],[1,9],[1,7],[0,18],[2,5],[1,3],[0,3],[-3,5],[-13,10],[-5,9],[3,9],[-3,11],[1,10],[2,8],[5,4],[4,-2],[5,-3],[5,-2],[6,2],[8,7],[2,-3]],[[39273,42815],[6,-23],[2,-13],[-5,-6],[-6,-3],[-4,-7],[-10,-18],[-12,-17],[-5,-10],[-4,-14],[-3,-2],[-2,-3],[-1,-3],[-1,-4],[-2,0],[0,9],[-2,25],[0,10],[2,5],[7,8],[8,11],[17,33],[0,5],[-2,1],[-2,2],[0,3],[2,5],[1,-1],[0,-1],[0,-1],[1,-1],[0,10],[-3,9],[-2,9],[-3,9],[4,4],[12,-12],[5,-7],[2,-12]],[[40322,45844],[-2,-2],[-3,1],[-5,2],[-2,3],[0,9],[0,14],[1,7],[2,6],[3,9],[1,8],[0,6],[1,4],[2,1],[3,-1],[2,-4],[-1,-4],[1,-8],[2,-8],[0,-7],[-2,-9],[-1,-8],[-1,-10],[-1,-9]],[[40988,48171],[-3,-1],[-3,3],[2,4],[3,5],[1,3],[1,5],[3,2],[4,2],[3,3],[3,2],[1,-4],[0,-7],[-3,-5],[-4,-3],[-8,-9]],[[37634,48798],[0,-7],[3,7],[7,18],[-2,-47],[-1,-11],[-3,-8],[-1,-7],[2,-20],[-5,-6],[-6,-6],[-5,-20],[-8,-19],[0,-7],[-1,-3],[0,-2],[-1,-3],[-2,0],[0,5],[0,4],[-1,3],[0,3],[0,6],[0,2],[3,13],[2,6],[2,5],[1,15],[2,14],[1,7],[-1,11],[-5,24],[0,9],[0,10],[2,17],[8,34],[6,9],[13,14],[-1,-34],[-4,-27],[-3,-1],[-1,-3],[-1,-5]],[[38304,48828],[-8,-1],[-10,3],[-6,8],[-7,7],[-9,4],[-3,10],[0,14],[2,8],[3,1],[3,-7],[4,-5],[5,-11],[9,-4],[5,-5],[6,-12],[4,-5],[2,-5]],[[38316,48874],[4,-10],[1,2],[0,1],[0,1],[2,0],[0,-6],[0,-7],[1,-6],[1,-5],[-2,-3],[-2,-2],[-3,-2],[-6,-2],[-3,1],[-2,3],[-3,5],[4,4],[2,0],[0,4],[-4,1],[-2,3],[-1,5],[1,7],[-5,-2],[-6,4],[-12,15],[4,2],[23,-4],[5,-3],[3,-6]],[[37829,49016],[3,-1],[1,1],[2,8],[1,1],[4,6],[3,0],[2,-11],[-1,-8],[-2,-9],[-1,-11],[-3,-6],[-8,-4],[-4,-1],[-4,4],[-1,8],[0,1],[0,7],[1,10],[2,5],[0,7],[-2,6],[-3,5],[2,5],[1,0],[4,5],[3,-1],[2,-7],[-1,-9],[-1,-11]],[[37899,49038],[-3,-4],[-3,5],[-5,2],[-2,9],[-1,7],[1,7],[5,3],[3,2],[4,2],[6,1],[1,-7],[-1,-11],[-3,-8],[-2,-8]],[[37879,49048],[-1,-2],[-5,2],[-5,0],[-4,0],[-1,-5],[-3,-1],[0,-3],[-1,-5],[-2,-1],[-3,2],[-2,2],[-3,4],[0,6],[2,4],[1,12],[-1,12],[0,12],[2,10],[3,17],[4,9],[5,6],[4,3],[4,1],[5,2],[3,1],[6,-3],[0,-5],[2,-11],[-3,-10],[-5,-9],[-1,-10],[0,-16],[-1,-10],[-2,-4],[2,-5],[0,-5]],[[36289,49354],[-3,-7],[-5,5],[-11,6],[-4,6],[-3,10],[1,8],[7,14],[1,5],[1,12],[1,5],[3,5],[8,9],[6,18],[4,5],[5,-2],[1,-9],[1,-7],[3,-6],[4,-3],[3,-5],[-2,-11],[-3,-11],[-2,-5],[-3,-3],[-6,-21],[-7,-18]],[[36259,49490],[8,-6],[4,-6],[0,-6],[0,-7],[-2,-7],[-4,-3],[-7,-4],[-3,-6],[-4,-7],[-4,-2],[-4,6],[-2,11],[1,8],[0,11],[1,7],[3,6],[3,3],[3,-3],[3,4],[4,1]],[[37530,49716],[3,-7],[1,-7],[-3,-18],[-1,0],[-2,4],[-1,3],[-3,3],[-2,2],[0,-5],[1,-4],[2,-4],[3,-3],[-3,-3],[-2,-4],[-2,-5],[-1,-4],[-2,-4],[-3,-2],[-2,-1],[-3,3],[0,-14],[-5,-3],[-6,4],[-5,7],[-2,10],[0,12],[2,10],[1,7],[4,-4],[2,-5],[0,-7],[0,-9],[4,20],[1,11],[-4,5],[0,5],[2,9],[3,5],[7,-7],[3,2],[2,5],[2,2],[2,-1],[2,-2],[5,-6]],[[36578,49765],[-5,-9],[-4,-2],[-4,-1],[-4,-4],[-3,3],[-1,4],[0,5],[0,4],[-2,-8],[-4,3],[-5,13],[-5,5],[-3,2],[-1,4],[3,10],[6,10],[1,4],[2,22],[5,7],[6,2],[12,-1],[4,-5],[4,-22],[4,-10],[-5,-15],[-1,-3],[0,-13],[0,-5]],[[36604,49863],[-4,-2],[-14,2],[-5,2],[-3,7],[0,9],[0,12],[1,12],[8,19],[3,15],[6,20],[1,7],[2,5],[13,13],[9,-18],[2,-9],[-7,-1],[0,-4],[7,-8],[-2,-20],[-9,-37],[-2,-16],[-1,-4],[-5,-4]],[[36680,50093],[1,-3],[3,3],[6,-3],[5,-7],[3,-10],[-3,-13],[-5,-10],[-13,-13],[-1,9],[-4,14],[-1,9],[1,2],[2,4],[2,5],[-4,4],[1,4],[1,4],[1,2],[2,1],[2,0],[1,-2]],[[35881,50124],[2,-22],[2,-20],[0,-9],[-3,-18],[-5,-9],[-8,-4],[-10,-1],[-8,-5],[-11,-22],[-7,-5],[-7,-3],[-8,-8],[-7,-9],[-4,-9],[-2,0],[-3,12],[0,14],[1,16],[2,15],[5,17],[2,4],[1,1],[1,8],[1,2],[2,1],[3,-4],[2,0],[6,8],[10,25],[7,11],[13,14],[14,11],[-5,-21],[-1,-8],[2,0],[9,33],[1,-2],[1,-2],[0,-5],[2,-6]],[[36749,50128],[4,-5],[8,4],[3,-8],[2,-10],[1,-11],[-3,-12],[2,-6],[0,-10],[-1,-11],[-1,-5],[-3,-3],[-7,0],[-5,-2],[1,10],[-2,11],[-3,23],[-10,8],[0,9],[-2,19],[1,5],[3,2],[1,10],[2,3],[5,-3],[3,-8],[1,-10]],[[35771,50139],[6,-27],[4,-6],[7,-4],[3,-10],[0,-13],[-1,-13],[-17,-71],[-4,-22],[-6,-73],[-5,-33],[-2,-4],[-2,-4],[-7,17],[-6,-4],[-22,-85],[-7,-20],[-34,-60],[-11,-14],[-4,-2],[-2,-5],[-2,-6],[-2,-4],[-8,-6],[-2,-2],[0,-2],[-1,-8],[-1,-2],[-1,-2],[-4,-2],[-2,-2],[-11,-21],[-12,-18],[-6,-4],[-13,-4],[-11,-12],[-6,1],[-4,7],[-4,8],[-3,20],[3,19],[11,30],[2,9],[1,11],[1,23],[1,7],[4,7],[18,30],[3,2],[0,3],[2,13],[1,2],[1,3],[3,2],[5,2],[10,11],[9,19],[4,23],[-6,23],[1,80],[3,22],[15,34],[11,54],[6,20],[8,18],[8,16],[14,19],[4,8],[4,5],[15,11],[4,2],[2,0],[-2,-8],[-2,-10],[-1,-12],[0,-8],[0,-4],[0,-2],[1,-3],[-1,-6],[-2,-5],[-3,-9],[-1,-6],[2,0],[2,6],[6,11],[1,7],[0,8],[-1,7],[0,5],[3,4],[0,-11],[2,0],[0,11],[2,-4],[3,-4],[2,-2],[3,-1],[-6,17],[-2,7],[0,8],[0,3],[1,3],[1,4],[3,1],[15,-7],[5,-4],[4,-12]],[[35729,50197],[-5,-4],[-4,4],[1,15],[3,6],[5,5],[4,5],[1,10],[1,3],[4,6],[2,6],[19,87],[5,12],[3,11],[2,3],[8,3],[2,1],[2,3],[5,11],[0,3],[12,0],[1,-3],[-1,-1],[-1,0],[-1,-1],[-1,-8],[-1,-11],[1,-9],[0,-5],[-3,-4],[-1,-12],[0,-20],[-5,-24],[-10,-23],[-21,-34],[-18,-19],[-9,-16]],[[36084,50391],[16,-13],[8,1],[60,-27],[39,-25],[37,3],[11,6],[6,1],[3,0],[6,-4],[2,-2],[6,-11],[3,-3],[0,4],[-3,9],[-3,11],[1,11],[5,8],[17,18],[2,-3],[2,0],[1,2],[3,1],[4,0],[2,0],[4,3],[7,1],[6,4],[2,1],[3,-1],[4,-5],[4,-3],[3,0],[3,2],[4,0],[3,-6],[8,5],[18,-4],[5,0],[5,-7],[3,-9],[5,3],[4,5],[6,9],[9,3],[4,-6],[-1,-17],[-3,-8],[1,-6],[8,4],[12,1],[32,-18],[5,1],[11,6],[6,1],[6,-1],[16,-11],[33,-9],[7,-7],[2,0],[3,-6],[2,-4],[2,-6],[1,-10],[-1,-27],[-1,-8],[-2,-6],[-3,-7],[-3,-5],[-3,-2],[-3,-4],[-3,-19],[-6,-23],[-2,-18],[0,-36],[-1,-8],[-5,-22],[0,-15],[-1,-7],[-3,-7],[3,-5],[0,-10],[-2,-12],[-1,-13],[-6,6],[-5,9],[-10,22],[4,-19],[6,-18],[4,-17],[-4,-15],[3,-13],[1,-16],[-1,-15],[-3,-13],[-6,-12],[-15,-11],[-6,-9],[2,-6],[-1,-6],[-5,-13],[-2,-5],[-2,-1],[0,-1],[3,-5],[2,-1],[3,2],[2,0],[0,-9],[-1,-3],[-6,-9],[0,-5],[7,3],[0,-9],[-4,-12],[-4,-6],[-4,-4],[-13,-20],[-6,-4],[-5,-6],[-11,-24],[-6,-7],[-9,3],[-7,10],[-6,14],[-5,14],[-2,-4],[3,-12],[5,-12],[5,-9],[5,-4],[4,-6],[2,-12],[-2,-9],[-7,3],[0,-4],[4,-2],[8,0],[4,-2],[4,-7],[1,-6],[-3,-36],[-8,-45],[-2,0],[-5,10],[-23,61],[-6,8],[-8,-6],[9,-2],[4,-8],[-3,-9],[-8,-5],[0,-4],[2,-4],[0,-5],[-1,-6],[-3,-5],[4,3],[7,11],[2,2],[3,-3],[1,-7],[1,-8],[1,-6],[7,-4],[1,-2],[2,-9],[1,-2],[3,-2],[9,-14],[0,-4],[-4,-2],[-5,-3],[-4,-5],[-4,-6],[-1,-4],[-1,-5],[-1,-5],[-2,-2],[-5,6],[-2,2],[-1,-6],[-2,-5],[-5,-3],[-14,-4],[-4,-4],[-3,-3],[-5,0],[-2,3],[0,4],[0,4],[-2,2],[-3,0],[-1,0],[-2,2],[-1,2],[-2,5],[-3,19],[-1,6],[-6,26],[-1,5],[-8,0],[-1,2],[-2,4],[-1,1],[-4,-3],[5,-9],[2,-12],[0,-14],[-5,-45],[1,-14],[5,-8],[-3,-3],[-1,-1],[0,3],[0,1],[-2,4],[-1,-3],[-2,-3],[-2,-1],[-2,-1],[2,-6],[3,-1],[3,-1],[1,-8],[2,4],[2,2],[4,2],[-6,-12],[-9,-8],[-10,0],[-5,-1],[-5,3],[-6,8],[-5,9],[-6,9],[-10,20],[-1,6],[1,9],[1,6],[1,6],[-1,6],[-2,-7],[-3,-13],[-3,-14],[2,-13],[9,-14],[6,-16],[-1,-14],[-4,-5],[-9,5],[-5,3],[-6,-2],[-7,7],[-4,13],[0,20],[-2,7],[-1,35],[-3,-2],[-2,-1],[-2,1],[-3,2],[2,-5],[2,-5],[3,-5],[1,-8],[0,-30],[-2,3],[-1,0],[-2,0],[-1,1],[3,-7],[0,-10],[-2,-8],[-4,-4],[-5,-2],[-1,-8],[1,-9],[2,-9],[-4,0],[0,-4],[4,-2],[0,-7],[-2,-13],[-2,-2],[-12,4],[-6,-5],[-8,-21],[-4,-7],[-6,2],[-5,11],[-3,16],[-3,27],[-5,15],[-1,6],[0,10],[3,18],[-1,9],[-1,-11],[-4,-19],[-1,-9],[1,-14],[9,-36],[0,-7],[0,-6],[-1,-6],[-1,-6],[-2,-4],[-9,-17],[-7,-6],[-2,-1],[-4,2],[-3,4],[-2,5],[-4,5],[-2,2],[-6,1],[-3,1],[-3,5],[-3,5],[-3,4],[-6,4],[-5,5],[-4,1],[-6,0],[-1,2],[-6,13],[-1,3],[0,3],[2,29],[-1,3],[-6,-1],[-1,-4],[0,-9],[0,-14],[-2,-9],[-7,-12],[-2,-6],[-17,-18],[-4,5],[-3,7],[-2,6],[-11,6],[-2,8],[-1,12],[1,42],[-1,8],[-3,3],[-4,1],[-3,2],[-2,8],[1,5],[2,1],[2,1],[1,3],[2,10],[0,2],[-1,10],[-2,9],[-1,6],[0,4],[2,10],[0,6],[-5,-8],[0,-10],[4,-22],[1,-1],[0,-1],[0,-3],[-1,-3],[-1,0],[-1,0],[-1,-1],[-2,-5],[-1,-3],[-2,-4],[0,-6],[3,-10],[6,-8],[4,-8],[-1,-11],[-2,-9],[-2,-30],[-1,-12],[-2,0],[-1,12],[-6,41],[-2,0],[5,-44],[1,-15],[-3,-10],[-6,-4],[-8,1],[-6,3],[7,-7],[8,-6],[4,-5],[-6,-10],[-8,-5],[-8,-2],[-8,0],[-43,19],[-4,3],[-6,11],[-2,2],[-1,5],[2,9],[4,8],[5,3],[-6,27],[-42,91],[-5,13],[-2,13],[-1,5],[-7,19],[-2,7],[-1,6],[2,14],[3,4],[0,3],[-1,2],[-2,2],[0,1],[-4,18],[0,8],[1,13],[8,72],[1,12],[-2,12],[-4,16],[-2,14],[4,9],[3,-1],[12,-15],[17,-16],[13,-5],[4,-3],[15,-17],[-3,15],[-13,22],[8,5],[4,6],[2,1],[7,-3],[1,-1],[5,6],[0,6],[-4,5],[-5,3],[3,13],[-1,-1],[5,9],[4,1],[4,-2],[6,0],[-5,6],[-5,3],[-4,-1],[-4,-5],[-4,-10],[-5,-7],[-6,-4],[-6,-2],[-2,-2],[-6,-8],[-2,-2],[-3,-1],[-19,3],[-6,5],[-3,7],[-1,5],[-5,17],[-1,8],[-2,21],[0,43],[2,22],[1,10],[2,9],[2,7],[-1,6],[2,8],[3,0],[4,-5],[2,-7],[-1,15],[-4,5],[-4,4],[-5,9],[0,5],[0,17],[1,3],[3,5],[0,2],[0,4],[-3,2],[-1,3],[2,24],[12,65],[3,-7],[4,-14],[3,-15],[1,-11],[4,-5],[21,-22],[5,-3],[3,0],[7,1],[1,1],[0,3],[-1,5],[-2,3],[-15,11],[-16,6],[-3,4],[-1,10],[-1,12],[-7,39],[-2,11],[0,13],[0,9],[5,34],[1,22],[1,6],[2,4],[3,8],[1,3],[1,10],[1,12],[4,20],[2,5],[9,16],[3,3],[1,3],[5,16],[2,2],[3,0],[4,0],[3,0],[5,5],[4,7],[4,6],[7,2],[6,-2],[5,-3],[4,-1],[5,6],[3,9],[2,11],[2,9],[6,4],[6,-1],[15,-8],[49,-11]],[[35862,50288],[-8,-14],[-2,1],[-3,4],[-6,5],[-1,5],[-1,6],[-1,2],[-11,11],[-7,22],[0,21],[10,7],[0,4],[-3,1],[-5,7],[14,49],[3,25],[7,19],[6,3],[10,4],[20,20],[14,7],[7,-7],[4,-16],[7,-6],[7,-5],[3,-2],[3,-5],[2,-6],[1,-7],[1,-3],[-1,-6],[0,-3],[4,-10],[0,-2],[0,-11],[-3,-10],[-10,-20],[-5,-7],[-18,-17],[-6,-9],[-16,-34],[-5,-9],[-11,-14]],[[36254,50511],[0,-4],[4,4],[4,3],[4,0],[4,-2],[10,-12],[3,-4],[3,-10],[0,-7],[-1,-5],[1,-5],[3,-4],[2,0],[1,-1],[0,-7],[0,-6],[-2,-3],[-1,-5],[0,-8],[-2,1],[-3,2],[-1,1],[-2,-11],[-9,-15],[-2,-9],[-3,-6],[-7,-4],[-8,-3],[-54,-2],[-8,-7],[-33,27],[3,19],[6,14],[17,27],[18,17],[13,18],[29,9],[8,7],[0,-3],[3,-6]],[[35989,50470],[-3,-9],[-11,-2],[-2,1],[-3,1],[-2,2],[-1,2],[-2,2],[-10,0],[-3,4],[-5,6],[-3,7],[-2,6],[-1,11],[-1,4],[-3,1],[-2,6],[-1,5],[0,5],[1,5],[0,6],[-1,6],[-3,13],[0,7],[3,9],[7,10],[8,1],[6,-5],[5,-3],[8,-3],[7,-4],[5,-8],[7,-12],[0,-10],[0,-16],[1,-12],[3,-15],[0,-11],[-2,-10]],[[36065,50625],[-15,-10],[0,10],[5,16],[17,22],[7,7],[6,0],[2,-10],[-1,-9],[-5,-8],[-16,-18]],[[36242,50648],[-21,-21],[-11,-20],[-14,-16],[-20,-42],[-6,-25],[-5,-26],[-7,-22],[-10,-13],[-19,-10],[-8,-3],[-3,-2],[-3,-4],[-3,-3],[-3,-3],[-2,5],[-3,12],[-6,13],[-7,11],[-7,9],[-9,4],[-13,-5],[-2,3],[-2,4],[-5,-1],[-4,-3],[-1,-2],[-6,-4],[-7,-6],[-7,-1],[-7,9],[-6,12],[-2,7],[0,11],[3,22],[0,11],[-3,-4],[-2,-6],[-2,-15],[-4,11],[-1,12],[1,38],[1,8],[3,4],[17,1],[7,7],[7,1],[6,-3],[9,-1],[20,-1],[6,0],[12,24],[8,22],[9,6],[12,-1],[11,-9],[17,5],[9,12],[22,19],[27,19],[25,0],[8,-19],[1,-31]],[[36015,50782],[-3,-68],[1,-7],[1,-6],[3,-13],[4,-17],[2,-18],[-2,-13],[-4,-10],[-3,-11],[-4,-2],[-4,-2],[-5,-3],[-5,-8],[-2,-14],[0,-8],[1,-8],[-1,-5],[-2,0],[-6,6],[-3,2],[-6,1],[-3,2],[-3,3],[-4,10],[0,4],[0,17],[1,8],[2,5],[3,3],[3,-1],[1,-2],[1,0],[2,3],[0,2],[9,73],[2,10],[0,1],[2,2],[3,1],[1,0],[1,6],[-1,3],[-2,3],[-1,4],[-2,10],[-1,8],[0,17],[0,16],[0,8],[3,10],[11,28],[4,5],[0,-3],[0,-2],[1,-1],[1,-2],[3,-21],[1,-26]],[[36102,50816],[0,-14],[0,-3],[2,-5],[0,-4],[-1,-3],[-2,-6],[-2,-9],[-34,-57],[-10,-13],[-8,-9],[-6,-10],[-8,-2],[-6,11],[-3,23],[-1,26],[0,23],[4,20],[6,16],[7,7],[1,4],[-2,5],[5,5],[15,-1],[3,2],[2,6],[5,-5],[8,-15],[2,9],[-6,7],[1,8],[3,9],[5,8],[6,4],[5,0],[7,-24],[2,-8],[0,-5]],[[41841,50963],[-5,-1],[-6,2],[-3,6],[-1,8],[0,8],[5,8],[7,4],[7,-6],[3,-9],[-1,-8],[-2,-7],[-4,-5]],[[36087,51012],[7,-8],[9,1],[3,-7],[-2,-11],[-3,-12],[-4,-19],[-5,-8],[-2,-5],[-2,-12],[-6,-14],[-2,-2],[-3,0],[-8,-1],[-14,0],[-11,-3],[-10,0],[-2,14],[2,24],[14,30],[19,16],[7,16],[6,2],[7,-1]],[[36102,51023],[-9,-7],[-2,5],[-8,5],[0,12],[7,10],[7,5],[3,13],[2,5],[4,6],[5,5],[9,5],[6,12],[5,4],[3,-8],[-6,-19],[-2,-9],[-2,-7],[-1,-6],[-2,-8],[-10,-12],[-2,-5],[-1,-2],[-4,-2],[-2,-2]],[[36000,51722],[3,-10],[6,-17],[3,-6],[1,-15],[4,-14],[3,-11],[4,-14],[0,-12],[-2,-7],[-5,-14],[-11,-20],[-5,-5],[-7,-4],[-6,4],[-5,7],[-5,36],[-5,15],[0,10],[-3,6],[-5,4],[1,18],[3,14],[0,14],[2,10],[4,2],[5,-1],[5,8],[3,-2],[4,2],[5,1],[3,1]],[[35968,51765],[6,0],[8,0],[4,-7],[5,-6],[4,-12],[0,-11],[-2,-4],[-5,-1],[-4,1],[-3,-2],[-2,-5],[-3,1],[-4,-1],[-3,1],[-3,3],[-1,14],[-3,4],[-2,1],[-3,3],[0,3],[3,7],[8,11]],[[34310,51620],[15,-12],[4,-1],[5,1],[8,4],[5,-1],[6,-5],[10,-14],[5,-5],[4,-1],[14,2],[18,-10],[17,-15],[18,-8],[18,12],[9,20],[1,21],[-1,24],[-1,26],[1,8],[1,5],[1,5],[-1,8],[-2,7],[-10,17],[-10,27],[-2,5],[-8,11],[-3,12],[-3,24],[-5,10],[-5,3],[-12,1],[-4,5],[1,11],[3,17],[5,17],[3,10],[4,1],[2,-2],[3,-3],[3,-1],[3,4],[2,4],[8,26],[2,11],[0,26],[3,25],[2,11],[2,3],[3,2],[7,-1],[6,-8],[15,-26],[5,-5],[19,-10],[3,-3],[2,-5],[3,-13],[3,-5],[6,-3],[22,12],[10,10],[6,0],[5,-1],[16,3],[10,-1],[11,-3],[10,0],[8,7],[2,9],[1,11],[1,11],[5,10],[5,4],[5,1],[4,-4],[3,-8],[7,-1],[22,36],[10,2],[1,-5],[-1,-12],[2,-5],[2,0],[3,2],[10,10],[10,19],[6,8],[11,10],[5,1],[2,-6],[-2,-8],[-5,-12],[-1,-8],[1,-5],[27,-57],[11,-8],[14,9],[4,5],[5,5],[4,0],[6,-5],[4,-4],[1,-3],[0,-12],[1,-3],[1,-7],[0,-3],[0,-4],[-1,-1],[-2,1],[-1,-1],[-1,-11],[2,-14],[1,-6],[-1,-6],[1,-5],[3,-3],[6,-2],[5,1],[6,2],[5,3]],[[34829,51847],[7,-1],[7,-5],[5,-9],[5,-11],[-6,-1],[1,-7],[10,-15],[5,-12],[4,-5],[12,-3],[2,-1],[4,-5],[3,-1],[4,-1],[2,1],[2,-1],[3,-4],[8,-15],[3,-4],[2,-1],[14,-4],[5,2],[5,3],[5,3],[5,1],[1,-1],[9,-24],[3,-4],[3,-2],[7,2],[3,8],[4,24],[2,9],[2,3],[6,0],[2,-1],[2,-4],[2,-1],[2,1],[2,6],[2,2],[12,9],[5,8],[2,10],[0,15],[1,3],[3,-2],[6,-1],[4,5],[2,10],[4,9],[6,1],[4,2],[2,8],[3,10],[3,8],[5,6],[5,2],[5,-2],[3,-9],[-1,-6],[-2,-12],[-1,-4],[2,-2],[8,-1],[19,-17],[5,-2],[9,-1],[5,-2],[8,-11],[5,-3],[5,3],[11,2],[3,2],[10,16],[10,8],[3,5],[8,20],[1,4],[1,1],[4,-2],[2,-4],[7,-21],[17,-31],[0,-6],[-5,-4],[-5,-9],[-2,-9],[3,-5],[4,0],[34,14],[5,0],[6,-4],[8,-16],[12,-2],[11,-5],[6,1],[1,2],[3,7],[1,3],[2,0],[3,-1],[1,1],[3,5],[2,6],[2,13],[4,14],[5,9],[12,10],[31,40],[4,8],[4,10],[6,24],[10,20],[8,24],[6,27],[2,5],[1,4],[1,5],[1,7],[-1,7],[-5,15],[-1,6],[1,3],[6,5],[2,3],[1,5],[2,18],[22,103],[2,6],[2,4],[2,3],[3,2],[4,5],[-1,4],[-2,6],[-1,7],[1,9],[18,69],[1,4],[-3,26],[0,13],[1,12],[10,16],[6,28],[6,10],[3,1],[2,-1],[2,0],[4,4],[3,6],[37,131],[1,6],[-1,5],[0,4],[6,6],[2,8],[3,16],[12,37],[2,14],[2,25],[2,12],[5,10],[2,2],[2,-1],[2,1],[3,5],[0,5],[0,13],[0,5],[2,5],[9,9],[18,42],[5,14],[3,16],[2,19],[4,18],[7,13],[21,22]],[[35643,52862],[9,5],[5,12],[10,53],[0,34],[3,11],[4,1],[4,-7],[2,-10],[3,-34],[8,-41],[17,-65],[4,-24],[2,17],[-2,16],[-8,27],[-9,44],[-14,89],[-4,60],[0,7],[4,31],[3,6],[6,6],[7,-8],[10,-15],[18,-26],[25,-59],[21,-56],[10,-51],[2,-32],[0,-59],[0,-71],[-5,-62],[6,-31],[1,14],[5,39],[2,53],[3,24],[6,23],[6,1],[4,-15],[-3,-93],[2,-79],[1,-59],[-5,-26],[1,-43],[16,-87],[2,-28],[-3,-18],[2,-14],[4,-21],[1,-12],[-1,-9],[0,-13],[4,-7],[2,-10],[2,-15],[1,-13],[2,-12],[4,-13],[3,-16],[2,-9],[0,-7],[-1,-9],[0,-6],[1,-9],[3,-5],[3,-3],[2,-5],[4,-4],[1,-8],[2,-10],[3,-9],[2,-11],[0,-15],[2,-12],[4,-10],[2,-12],[0,-12],[3,-20],[4,-24],[-1,-14],[-2,-6],[-2,-2],[-1,-5],[1,-5],[1,-4],[3,-1],[2,3],[1,4],[2,2],[4,-6],[5,-17],[3,-13],[0,-15],[3,-13],[3,-11],[-1,-6],[1,-10],[2,-22],[4,-13],[0,-20],[2,-13],[4,-12],[3,-10],[2,-16],[-4,-15],[-3,-3],[-2,-2],[-5,1],[-2,-3],[-8,5],[-3,4],[-3,7],[-1,0],[0,-4],[0,-3],[1,-5],[2,-3],[2,-2],[2,-2],[0,-3],[0,-4],[-1,-6],[-2,-15],[-1,-7],[2,-6],[1,-5],[2,-5],[3,1],[2,5],[0,6],[0,7],[0,6],[3,11],[4,9],[5,6],[6,3],[5,-3],[12,-15],[5,-17],[2,-28],[1,-7],[8,-32],[8,-19],[3,-11],[2,-23],[1,-9],[3,-8],[2,-7],[7,-10],[10,-8],[10,-3],[12,5],[6,7],[7,-2],[4,-1],[6,0],[3,-3],[10,4],[4,0],[7,3],[5,-2],[7,-10],[13,-10],[25,-18],[14,-18],[8,-18],[4,-16],[2,-31],[1,-20],[0,-12],[1,-16],[2,-36],[3,-21],[1,-25],[0,-19],[-3,-31],[-3,-11],[-5,-10],[-8,-8],[-9,-8],[-14,-9],[-12,-3],[-10,-6],[-4,1],[-4,2],[-2,3],[-3,-2],[1,-9],[2,-7],[5,-5],[7,5],[8,-4],[11,6],[8,1],[7,-1],[8,12],[7,0],[4,-7],[4,-12],[1,-7],[-1,-5],[-5,-19],[-8,-22],[-11,-14],[-10,-1],[-5,21],[-3,-11],[-1,-21],[-4,-20],[-10,-9],[-3,-5],[-10,-32],[-4,-8],[-4,-7],[-21,-21],[-4,-6],[-11,-27],[-3,-4],[-9,-48],[-2,-6],[-4,-7],[-19,-21],[-5,-9],[-4,-11],[-9,-53],[-17,-64],[-13,-44],[-24,-52],[-27,-69],[-3,0],[-5,3],[-9,0],[-21,-11],[-14,-21],[-11,-29],[-14,-54],[-4,-8],[-4,-3],[-18,-1],[-11,-5],[-2,-3],[0,-5],[-2,-4],[-7,-2],[-7,-7],[-12,4],[-5,-1],[0,-4],[3,-3],[6,-3],[4,-4],[1,-6],[1,-5],[2,-4],[4,0],[-20,-52],[-4,-27],[-5,-17],[-2,-21],[-2,-10],[-5,-19],[-3,-9],[-9,-15],[-3,-8],[-1,-7],[1,-9],[-1,-10],[-2,-9],[-9,-18],[-6,-8],[-4,-4],[-4,1],[-7,6],[-5,1],[0,-4],[2,0],[2,-1],[3,-3],[0,-4],[-4,-3],[-5,-1],[0,-4],[4,-1],[3,1],[3,2],[1,6],[4,-4],[-13,-31],[-14,-43],[-2,-3],[-4,-5],[-1,-3],[-12,-31],[-1,-7],[-3,-20],[-3,-50],[4,-60],[-1,-19],[0,-6],[-1,-4],[-1,-3],[-1,-4],[-3,-4],[-5,-5],[-9,-17],[-4,-5],[-6,-19],[-4,-6],[-20,-14],[-6,-12],[0,-27],[4,-51],[-2,-9],[-4,-9],[-8,-12],[-9,-21],[-3,-3],[-16,-2],[-6,2],[-18,12],[-4,6],[-4,8],[-4,7],[-5,3],[-7,-4],[-3,-4],[-7,-18],[-3,-4],[-6,-2],[-7,-8],[-19,-8],[-6,-5],[-6,-8],[-4,-9],[-2,-9],[-3,-6],[-23,-21],[-5,-2],[-12,-2],[-17,-11],[-5,-5],[-2,-5],[-1,-4],[0,-5],[0,-8],[1,-6],[2,0],[2,2],[3,2],[6,1],[18,11],[48,4],[22,8],[4,3],[10,14],[4,4],[4,-5],[4,-10],[2,-11],[1,-14],[1,-5],[1,-5],[0,-7],[-2,-7],[-4,-11],[-2,-7],[-1,-12],[1,-11],[3,-5],[7,7],[4,0],[2,1],[1,3],[0,6],[0,3],[10,20],[6,8],[5,2],[13,-1],[1,1],[4,5],[3,2],[3,0],[6,-1],[3,1],[13,8],[12,13],[68,101],[21,8],[5,6],[5,7],[21,15],[6,6],[6,10],[6,13],[2,14],[3,10],[6,6],[14,6],[0,-4],[-2,-2],[-1,-3],[-1,-3],[-2,-4],[6,2],[6,6],[6,7],[4,7],[5,11],[7,23],[4,11],[7,13],[7,11],[36,39],[8,14],[3,16],[-1,10],[-3,10],[-1,10],[4,8],[5,2],[6,-18],[6,-4],[0,5],[-3,4],[-2,6],[0,7],[3,6],[4,2],[13,-5],[7,2],[5,-1],[3,-6],[2,-7],[-1,-9],[-1,-20],[1,-28],[-1,-8],[-2,-8],[-3,-5],[-3,-3],[-3,-5],[-7,-19],[-3,-5],[-3,-3],[-3,-1],[-9,-1],[30,-41],[5,-9],[3,-11],[0,-12],[-3,-35],[1,-35],[1,-3],[2,-4],[2,-5],[1,-6],[-2,-8],[-1,-6],[-1,-7],[3,-13],[8,-24],[4,-25],[3,-9],[18,-33],[3,-10],[3,-40],[1,-14],[3,-11],[-5,-15],[-5,-1],[-13,16],[3,-13],[2,-5],[3,-13],[-2,-19],[-7,-6],[-5,-7],[-2,-11],[0,-11],[-6,-9],[-8,1],[-6,8],[-6,10],[-6,8],[-2,-10],[-1,-6],[3,-2],[3,-11],[5,-4],[-1,-15],[3,-13],[4,-5],[3,-3],[-1,13],[-1,9],[2,4],[8,-2],[15,4],[7,4],[3,3],[1,12],[-1,10],[1,11],[2,6],[4,8],[2,13],[2,3],[8,-5],[6,-2],[5,-17],[8,-28],[5,-10],[6,-8],[6,-5],[4,1],[3,1],[3,-1],[1,-7],[-1,-4],[-4,-12],[-1,-7],[4,5],[4,15],[4,5],[0,-6],[0,-6],[-1,-5],[-2,-5],[-1,-6],[1,-6],[3,-11],[2,-19],[2,-11],[3,-6],[2,15],[2,7],[2,6],[4,5],[1,7],[0,4],[1,7],[0,8],[3,7],[6,15],[8,16],[9,9],[8,-5],[5,4],[7,-1],[7,-4],[6,-7],[2,20],[5,12],[7,8],[24,13],[7,2],[6,-2],[7,-4],[6,-6],[15,-21],[2,-6],[1,-10],[-1,-8],[-7,-26],[6,12],[4,12],[1,-12],[1,-12],[0,-12],[-1,-13],[-2,-12],[-5,-24],[-2,-13],[2,0],[6,25],[1,0],[2,-10],[3,-11],[3,-10],[4,-6],[-5,30],[-3,31],[1,47],[-3,10],[0,4],[4,-2],[1,-7],[-1,-19],[3,13],[1,9],[2,7],[8,3],[6,-1],[4,-4],[3,-7],[3,-8],[-1,11],[2,4],[3,-2],[2,-9],[3,9],[5,-1],[6,-6],[9,-18],[5,-11],[2,-12],[1,-14],[4,11],[-4,18],[-12,32],[-3,-4],[-1,5],[-1,7],[6,17],[9,14],[10,5],[7,-15],[4,38],[4,10],[7,9],[5,0],[2,-9],[-1,-16],[3,4],[4,9],[4,3],[-1,-12],[-7,-15],[-1,-7],[0,-12],[2,-8],[4,-6],[5,-5],[10,-4],[3,-6],[0,-12],[0,-8],[-2,-10],[-2,-10],[-3,-6],[0,-5],[4,0],[-3,-8],[-6,-13],[-3,-7],[-1,-7],[0,-48],[-1,-5],[-3,-12],[-1,-14],[-2,-4],[-3,-3],[-2,-4],[-7,-26],[-1,-3],[-1,-4],[0,-30],[-1,-6],[-2,-4],[-2,-4],[-1,-5],[-1,-6],[0,-11],[-1,-6],[-5,-13],[-1,-6],[1,-7],[1,-11],[1,-32],[-1,-12],[-17,-52],[-3,-6],[-6,-3],[-6,-7],[-5,-10],[-3,-12],[7,-5],[12,4],[21,17],[5,8],[1,8],[0,8],[2,13],[1,4],[6,6],[1,1],[1,2],[1,11],[1,4],[7,15],[3,9],[1,13],[1,11],[-1,22],[0,11],[3,17],[26,96],[5,26],[3,22],[0,11],[1,8],[19,85],[8,24],[8,15],[2,2],[2,2],[4,11],[1,10],[4,23],[1,20],[10,11],[11,16],[11,24],[5,27],[7,21],[11,4],[6,5],[7,8],[4,7],[2,0],[0,-4],[-5,-12],[-5,-7],[0,-14],[-3,-10],[-2,-20],[-5,-8],[-2,-4],[-2,-4],[-1,-3],[2,-9],[-1,-14],[-3,-13],[-4,-12],[-7,-4],[-5,-9],[-2,-12],[-3,-6],[-1,-5],[5,0],[4,2],[3,6],[2,11],[8,7],[7,9],[3,15],[2,12],[3,4],[2,7],[3,4],[0,2],[-2,12],[0,4],[2,4],[5,5],[2,3],[1,2],[2,8],[0,2],[1,3],[1,-1],[1,0],[2,1],[3,0],[1,1],[1,3],[-1,5],[1,3],[21,65],[0,2],[0,3],[0,2],[1,3],[1,1],[3,0],[0,1],[4,7],[1,3],[1,6],[5,27],[6,20],[4,-1],[3,-12],[4,-13],[3,-17],[8,-33],[4,-10],[3,-9],[2,-13],[3,-9],[3,1],[6,-19],[3,-4],[7,-1],[4,-3],[3,-6],[2,-8],[1,-8],[2,10],[-1,12],[-1,11],[-1,10],[-3,12],[-10,21],[-1,14],[5,-7],[5,-2],[5,1],[15,8],[5,6],[5,8],[4,10],[-3,1],[-8,-1],[-4,1],[-3,1],[-2,3],[-3,3],[-3,-5],[-5,-3],[-5,-2],[-6,2],[-6,5],[-2,8],[1,10],[1,14],[2,48],[2,27],[8,22],[5,15],[4,-8],[-2,-20],[1,-19],[4,-3],[20,-8],[1,2],[1,11],[2,9],[1,29],[5,25],[6,13],[9,-14],[-2,10],[-4,7],[-2,7],[2,9],[-2,3],[2,5],[3,-3],[3,2],[4,3],[3,2],[-3,3],[-3,0],[-8,-3],[-1,3],[-4,17],[-1,15],[1,7],[4,2],[13,1],[5,1],[4,3],[3,7],[1,6],[0,7],[0,5],[2,3],[0,2],[4,10],[1,2],[0,14],[2,13],[1,2],[2,3],[0,3],[-1,9],[0,3],[1,15],[0,7],[-1,6],[-2,4],[-1,3],[-1,3],[0,12],[2,9],[11,34],[21,37],[3,-8],[1,-5],[1,-7],[0,-4],[-1,-8],[0,-5],[0,-1],[3,-3],[1,-2],[2,-7],[9,-20],[2,-1],[4,24],[19,26],[3,14],[5,1],[8,-5],[5,-6],[-1,8],[-4,7],[-1,15],[0,19],[2,11],[1,9],[1,5],[6,-10],[4,-10],[1,-12],[0,-11],[7,2],[6,-6],[2,-14],[0,-27],[-2,-6],[-3,-7],[-2,-6],[2,-7],[2,1],[21,19],[7,10],[4,8],[4,10],[3,21],[2,3],[-2,13],[1,21],[3,-2],[4,-5],[6,-12],[-2,-10],[3,-6],[1,-5],[1,-7],[1,-7],[1,-4],[3,-6],[4,-15],[2,-10],[0,-10],[-3,-11],[20,0],[5,-4],[0,-18],[4,-7],[0,7],[1,7],[1,6],[2,5],[-2,2],[-1,3],[-1,4],[0,5],[-6,6],[-7,20],[-2,5],[-1,-7],[-1,-6],[-2,-4],[-2,-4],[0,64],[1,8],[5,1],[-4,9],[4,4],[5,3],[4,-1],[4,-6],[-1,-5],[-2,-5],[-1,-3],[1,-8],[-1,-20],[2,-12],[0,7],[0,6],[1,4],[3,3],[1,-8],[1,-7],[2,-4],[3,-1],[0,3],[-2,4],[-2,6],[0,8],[2,7],[4,2],[4,-4],[6,-10],[-1,9],[-1,6],[-2,5],[-2,8],[5,-4],[3,4],[3,6],[3,3],[5,-4],[0,-9],[0,-11],[0,-9],[2,0],[3,4],[2,-4],[1,-8],[-2,-9],[5,7],[1,8],[-1,9],[-1,9],[12,-18],[1,-7],[-1,-8],[-3,-3],[-2,7],[-2,0],[-1,-6],[-1,-4],[-2,-4],[-3,-1],[0,-4],[4,-9],[1,0],[2,9],[4,2],[5,-3],[5,-4],[0,7],[0,4],[2,3],[1,3],[2,-9],[0,-10],[-1,-9],[-2,-9],[-2,-3],[-5,-4],[-1,-3],[1,-5],[2,0],[3,3],[2,4],[3,-4],[2,-6],[1,-7],[1,-7],[2,10],[-1,13],[-1,11],[4,6],[0,-4],[2,-5],[0,-3],[1,5],[0,4],[-1,3],[0,6],[0,4],[3,6],[1,5],[0,12],[2,5],[3,3],[3,-3],[1,-5],[0,-7],[-2,-5],[1,-2],[1,1],[0,-1],[0,-2],[-2,-5],[0,-15],[-1,-9],[1,-4],[2,8],[2,-9],[0,-10],[1,-8],[5,-1],[-3,-7],[-5,-7],[-2,-7],[1,-6],[4,-11],[1,-7],[1,6],[1,22],[1,6],[1,5],[2,6],[2,4],[1,-2],[3,-2],[-1,13],[1,6],[2,1],[4,0],[2,5],[2,11],[3,21],[3,-9],[0,-15],[-3,-29],[2,0],[2,8],[2,-3],[1,-4],[0,-4],[-1,-5],[5,0],[-1,-4],[-2,-9],[-1,-4],[3,2],[0,1],[1,1],[2,-9],[-3,-4],[-3,-3],[-3,-4],[-3,-7],[-1,-8],[1,-8],[5,-5],[-1,10],[0,7],[0,6],[4,5],[7,-4],[3,2],[0,11],[2,-5],[0,8],[0,29],[2,-3],[2,-4],[1,-4],[0,-6],[2,0],[1,4],[1,2],[1,2],[3,1],[-1,4],[-2,3],[-2,3],[-3,2],[4,7],[7,21],[5,4],[0,4],[-4,4],[3,-1],[3,-3],[2,-5],[2,-7],[-4,-2],[0,-4],[1,-5],[3,-5],[-5,-4],[-1,0],[0,-4],[1,-4],[0,-4],[-2,-3],[-3,-1],[0,-4],[3,-2],[1,-3],[-1,-6],[-1,-6],[3,2],[2,3],[2,5],[1,7],[1,0],[-2,-33],[0,-1],[0,-2],[1,-5],[3,-12],[0,-4],[2,9],[-2,7],[-1,7],[3,9],[2,0],[0,-12],[3,3],[1,7],[0,18],[3,-5],[7,-22],[1,-7],[-1,-10],[-8,-29],[4,7],[7,25],[3,5],[0,7],[0,15],[3,11],[5,-5],[2,-7],[1,-6],[0,-5],[4,-2],[3,2],[-1,6],[-6,24],[1,7],[5,0],[6,-7],[5,-32],[-7,-18],[-1,-7],[2,0],[2,3],[1,-4],[-1,-8],[-2,-6],[-4,-5],[-4,-1],[-3,3],[0,10],[-3,0],[-1,-8],[-3,-6],[-11,-15],[-4,-7],[-3,-9],[0,-12],[3,11],[5,10],[5,8],[6,4],[1,-1],[6,-1],[8,3],[6,3],[6,-8],[5,12],[1,13],[4,9],[8,7],[4,10],[4,3],[4,-3],[2,5],[6,2],[5,2],[3,-7],[-1,-8],[-5,-5],[-6,-2],[-6,-8],[2,-10],[-1,-10],[-3,-7],[0,-6],[5,-6],[-1,-13],[-2,-9],[4,0],[1,-5],[-3,-8],[3,-1],[3,2],[2,3],[2,6],[1,2],[3,-3],[3,-4],[2,-2],[4,7],[2,11],[5,0],[0,-10],[0,-11],[2,-13],[1,-5],[1,4],[0,11],[2,9],[3,7],[3,1],[2,-8],[0,-23],[-1,-5],[-1,-9],[0,-6],[4,7],[2,10],[1,12],[0,16],[2,0],[3,-11],[7,-16],[2,-10],[-2,10],[-4,14],[-2,8],[-1,2],[-1,4],[0,4],[5,4],[-2,6],[-2,5],[0,7],[3,8],[2,13],[3,11],[5,9],[9,5],[8,-8],[0,-21],[-2,0],[-3,-1],[-4,-11],[-3,-12],[-2,-8],[5,3],[2,-3],[-1,-4],[-4,-4],[1,-2],[0,-2],[0,-2],[1,-3],[-1,-3],[-1,-5],[-2,-3],[3,-10],[-14,-64],[9,21],[2,4],[4,-1],[3,-4],[4,-2],[5,3],[3,13],[2,7],[2,0],[1,-7],[-2,-21],[-1,-9],[4,7],[2,11],[0,25],[1,5],[2,6],[2,5],[2,2],[2,-1],[1,-4],[0,-6],[1,-5],[5,-18],[1,-10],[-3,-4],[-3,-5],[-2,-9],[-1,-11],[3,-8],[4,5],[2,7],[4,16],[3,-7],[0,-7],[-1,-7],[-2,-7],[5,6],[0,9],[-1,11],[0,11],[1,5],[2,7],[2,8],[0,12],[2,0],[0,-3],[1,-1],[0,-2],[1,-2],[3,2],[0,15],[0,6],[4,8],[4,-5],[0,-6],[1,-8],[-3,0],[-1,-3],[4,-9],[-3,-2],[-2,-5],[-1,-13],[3,2],[2,1],[2,-1],[2,-2],[-3,-3],[-11,-3],[-1,-25],[1,-5],[4,-1],[3,-1],[4,-3],[1,-6],[0,-12],[2,-6],[3,3],[1,3],[0,5],[-2,5],[2,1],[0,1],[1,1],[1,1],[-1,9],[2,17],[4,19],[5,30],[7,16],[3,-3],[0,-19],[-8,-24],[-2,-8],[-2,-8],[-2,-3],[0,-15],[0,-7],[2,16],[2,7],[3,5],[-1,-9],[0,-3],[3,-11],[-2,-10],[-4,-11],[-1,-12],[7,13],[2,3],[0,-4],[-1,-4],[1,-4],[0,-4],[-1,-4],[-3,-8],[-1,-4],[6,7],[4,9],[3,14],[0,18],[3,-9],[2,-14],[0,-12],[-2,-6],[-4,-4],[2,-11],[4,-10],[2,-7],[-2,18],[3,13],[4,4],[3,-6],[3,8],[1,21],[2,11],[4,4],[7,41],[6,0],[1,-16],[-8,-38],[-2,-15],[1,0],[1,2],[1,6],[5,9],[4,12],[3,-5],[1,-11],[1,-9],[-1,-9],[3,-6],[3,-3],[-2,-11],[3,-4],[0,-11],[-2,-9],[-2,-8],[-2,-4],[-1,-7],[10,-3],[2,2],[3,6],[1,5],[2,8],[0,9],[-1,6],[-2,8],[0,7],[3,5],[4,2],[4,-1],[1,-4],[-2,-5],[-3,-2],[1,-1],[0,-1],[1,-1],[1,0],[-1,-5],[0,-5],[0,-3],[1,-4],[7,26],[5,7],[3,-8],[-3,0],[-2,-3],[-1,-6],[1,-7],[1,1],[3,1],[1,1],[-1,-7],[-3,-5],[-1,-6],[0,-10],[1,1],[3,3],[0,6],[3,7],[0,8],[2,0],[1,-25],[0,-4],[-3,-15],[-1,-11],[-1,-7],[5,7],[12,32],[0,4],[0,6],[1,6],[2,7],[2,3],[9,8],[-8,0],[6,4],[3,-1],[2,-5],[1,-12],[0,-5],[-2,-10],[0,-5],[-1,-2],[-5,0],[-2,-2],[-6,-5],[-1,-1],[-2,-5],[0,-5],[0,-5],[0,-5],[-3,-17],[-1,-10],[2,-10],[-6,3],[-4,-4],[-7,-15],[3,0],[3,4],[1,5],[0,7],[4,-4],[2,-6],[-1,-8],[-3,-6],[3,-1],[2,1],[2,3],[1,5],[5,-6],[0,-9],[0,-10],[1,-8],[3,11],[0,13],[-2,27],[1,4],[3,6],[3,6],[2,2],[1,-2],[0,-7],[-2,-7],[-2,-4],[3,3],[4,8],[2,1],[0,3],[4,15],[2,11],[7,26],[0,8],[-1,10],[3,5],[6,-1],[5,-8],[0,-6],[3,-47],[-2,3],[-1,2],[-4,-17],[-5,-10],[-7,-7],[-7,-11],[1,-4],[3,7],[2,3],[3,1],[2,-3],[-2,-7],[-2,-9],[-1,-9],[-1,-10],[-2,-3],[-3,-4],[-3,-7],[3,-12],[1,9],[1,5],[-1,6],[10,-8],[3,-14],[-1,-17],[-3,-25],[-2,-8],[-1,-10],[0,-11],[2,-10],[2,-6],[4,-5],[4,-4],[11,8],[3,6],[-1,11],[4,4],[9,8],[2,6],[-1,10],[-7,19],[-1,10],[2,16],[5,19],[7,13],[7,0],[1,15],[3,11],[4,0],[3,-13],[2,0],[1,10],[3,5],[4,4],[1,3],[2,2],[3,-5],[0,-5],[-6,-2],[7,0],[2,8],[0,12],[2,12],[1,-22],[1,-6],[2,-3],[3,-3],[3,-2],[2,2],[4,-2],[3,-11],[-1,-9],[-6,4],[3,-9],[4,-2],[4,0],[4,-6],[0,-4],[-5,-5],[-6,-4],[-4,-6],[0,-13],[1,0],[2,10],[4,1],[8,-7],[-2,8],[2,9],[2,9],[1,10],[0,18],[2,6],[6,1],[0,4],[-2,0],[0,4],[5,5],[6,7],[4,9],[2,9],[1,3],[2,-3],[2,-6],[1,-6],[0,-18],[0,-4],[-2,-3],[-5,-6],[-3,-3],[-1,-5],[-2,-9],[-4,-12],[-2,-9],[0,-10],[2,-12],[-4,-1],[-5,3],[-3,-2],[4,-6],[5,-11],[2,-11],[-5,-5],[4,-1],[2,2],[3,18],[-1,4],[1,4],[4,6],[4,-8],[3,-10],[4,-6],[5,3],[-5,4],[-1,8],[2,9],[2,8],[-2,0],[0,3],[1,3],[1,2],[0,4],[4,-6],[2,-9],[1,-10],[0,-12],[2,12],[0,5],[3,-11],[-1,-7],[-2,-5],[-2,-8],[1,-4],[6,-8],[1,-6],[-1,-1],[-5,-11],[2,-4],[5,-6],[2,-2],[-4,-8],[-2,-3],[-3,-6],[-1,2],[-1,1],[-3,-3],[0,-2],[0,-2],[2,-4],[11,15],[2,8],[-2,14],[9,-10],[5,-2],[5,4],[-4,-19],[-8,-14],[-17,-20],[0,-4],[5,3],[10,4],[4,3],[3,6],[3,-3],[1,-7],[3,-6],[8,1],[4,15],[3,21],[0,20],[15,-17],[-4,-5],[-3,-6],[-2,-7],[-2,-10],[-1,-9],[0,-8],[-1,-6],[-4,-1],[0,-4],[3,2],[5,5],[3,1],[2,-2],[2,-5],[1,-4],[1,-1],[2,4],[1,7],[1,6],[3,3],[2,-3],[1,-8],[-2,-8],[-2,-5],[2,-4],[2,6],[3,3],[2,4],[1,7],[2,-2],[1,-2],[1,-4],[1,-4],[-4,-11],[-11,-13],[-4,-9],[6,1],[9,5],[4,-2],[3,-5],[2,-9],[1,-11],[0,-9],[1,-5],[2,-10],[1,-5],[-1,-5],[-1,-3],[-1,-2],[-1,-3],[-2,-4],[-5,-1],[-6,1],[-4,2],[-3,-7],[-4,-4],[-8,-5],[2,0],[1,0],[1,-1],[1,-3],[5,7],[5,3],[6,0],[5,-2],[5,0],[3,-2],[0,-6],[-2,-5],[-9,-15],[-6,-4],[-6,-21],[-8,-19],[-9,3],[-2,-4],[4,-2],[4,0],[4,1],[1,1],[3,-6],[-2,-5],[-6,-9],[-11,-25],[-5,-5],[-9,2],[2,-4],[1,-4],[1,-9],[-11,7],[-5,1],[-5,-5],[-5,-9],[-4,-6],[-6,4],[5,-7],[12,9],[12,6],[3,-20],[2,0],[2,8],[4,7],[4,2],[1,-7],[0,-8],[-2,-6],[-2,-4],[-1,-5],[-3,-13],[-1,-3],[-3,-6],[-2,-6],[-1,-14],[-2,-6],[2,-4],[1,7],[1,5],[2,4],[7,13],[3,2],[1,-5],[-1,-23],[0,-10],[3,-5],[-1,5],[0,8],[1,8],[3,11],[-1,5],[-1,5],[-1,4],[0,14],[1,11],[2,11],[3,11],[13,25],[3,4],[3,1],[3,3],[3,8],[-1,-1],[1,9],[0,2],[2,3],[1,3],[9,17],[10,2],[10,-11],[8,-21],[2,-12],[1,-12],[1,-22],[0,-1],[4,-9],[1,-4],[1,-7],[-1,-14],[-2,-25],[-3,-11],[-3,-4],[-10,-3],[-7,0],[-5,3],[-2,3],[-3,8],[-2,2],[-1,1],[-1,1],[0,2],[-1,1],[0,3],[-2,-1],[-1,-2],[-5,-5],[-4,-6],[-3,-8],[-2,-7],[13,17],[4,-2],[2,-17],[-3,-30],[-2,-18],[-4,-11],[-4,-2],[-2,1],[-3,0],[-3,-7],[-3,-18],[-2,-2],[-5,-2],[-7,-6],[-5,-8],[-1,-9],[4,9],[13,11],[5,6],[3,7],[1,6],[1,4],[5,2],[1,-4],[-1,-7],[-2,-7],[-1,-2],[-14,-61],[-7,-17],[2,-5],[-1,-7],[-3,-16],[-2,-14],[-1,-11],[1,-26],[-1,-14],[-10,-37],[-1,-4],[1,-18],[-1,-6],[-1,-12],[0,-6],[2,-10],[6,-3],[7,-1],[4,-4],[1,-15],[-5,-11],[-6,-8],[-3,-9],[-2,-8],[-2,-6],[-4,-4],[-2,-4],[-1,-6],[-2,-14],[-1,-5],[-5,-6],[-7,-2],[-5,-4],[-2,-10],[1,-11],[1,-11],[3,-11],[3,-9],[-10,-9],[10,-3],[2,9],[-2,31],[2,11],[3,7],[5,5],[13,3],[5,6],[4,9],[4,11],[5,23],[4,4],[7,2],[12,41],[14,15],[2,3],[1,9],[10,21],[3,10],[2,12],[2,13],[1,12],[-1,27],[1,13],[4,7],[-1,2],[-1,2],[-1,2],[-1,2],[9,66],[2,23],[1,-5],[1,-5],[0,-4],[0,-6],[2,0],[-5,67],[3,7],[1,5],[3,2],[5,0],[4,-4],[3,-9],[3,-19],[0,17],[-1,7],[-3,4],[1,7],[0,7],[0,8],[2,8],[4,4],[16,3],[30,32],[8,0],[3,10],[6,-1],[5,-9],[1,-16],[-4,2],[-7,1],[-6,-3],[-2,-8],[8,-3],[2,-1],[1,-5],[0,-14],[1,-6],[0,6],[0,5],[2,10],[2,0],[2,-14],[0,-12],[-1,-11],[-3,-12],[-5,1],[-5,-6],[-4,-11],[-1,-2],[-2,-1],[-2,-2],[-2,-4],[5,-4],[-1,-12],[-8,-29],[-4,-6],[-4,-4],[-4,-1],[-3,0],[-2,2],[-4,10],[1,-10],[1,-4],[2,-3],[-4,-6],[-7,-4],[-4,-4],[-7,-16],[-2,-2],[-8,-6],[-7,-14],[-2,-15],[5,-10],[0,14],[2,11],[3,4],[4,-8],[-2,-11],[-2,-2],[0,-4],[4,-8],[2,16],[1,1],[2,-1],[2,0],[1,2],[0,8],[1,6],[1,5],[1,4],[3,-5],[7,-11],[-1,9],[2,6],[9,5],[-1,-12],[4,-17],[-2,-10],[-3,-3],[-4,-4],[-2,-3],[-1,-4],[0,-2],[1,0],[2,2],[0,-3],[1,-3],[1,-2],[0,-4],[9,18],[2,6],[1,-1],[1,-1],[0,-2],[3,8],[3,10],[1,11],[1,10],[2,6],[3,5],[2,1],[-2,-6],[0,-4],[4,2],[1,2],[1,4],[2,-4],[-1,-5],[0,-1],[1,-2],[0,-4],[1,4],[0,2],[1,2],[0,-8],[-1,-6],[-3,-11],[4,7],[2,11],[0,25],[1,10],[2,10],[4,15],[4,16],[2,8],[9,12],[1,2],[1,1],[8,-11],[0,4],[-3,6],[0,7],[3,15],[4,11],[3,5],[1,-1],[7,-30],[4,-21],[1,7],[-1,7],[-1,8],[-1,9],[2,7],[7,7],[2,2],[2,0],[1,1],[2,2],[2,0],[2,0],[3,1],[6,10],[4,4],[4,1],[2,-3],[2,7],[0,18],[4,6],[3,-7],[2,-15],[-1,-15],[-3,-8],[0,-5],[2,0],[0,5],[2,0],[0,-5],[2,0],[0,4],[0,3],[2,6],[2,-3],[2,-1],[5,0],[-6,10],[0,14],[3,13],[7,4],[-2,-5],[-1,-5],[-3,-11],[4,6],[5,2],[3,-4],[2,-12],[5,6],[11,-9],[5,3],[-2,4],[-4,0],[0,5],[1,9],[3,6],[0,-12],[2,8],[1,8],[-1,7],[-4,6],[5,12],[4,-4],[1,-13],[-1,-16],[4,0],[2,-20],[4,-4],[-2,-8],[3,1],[2,4],[1,5],[2,6],[2,-10],[1,-10],[2,5],[1,8],[-1,9],[-5,17],[3,2],[10,-5],[0,4],[-5,1],[-3,7],[-2,9],[-2,8],[2,0],[2,-5],[2,-3],[4,-1],[4,1],[-5,9],[-12,14],[-4,13],[1,10],[2,8],[2,7],[0,4],[4,3],[4,1],[4,1],[5,1],[6,-2],[6,-2],[7,-1],[8,-1],[16,-12],[15,-8],[22,-22],[29,-24],[20,-14],[7,-6],[10,-11],[7,-7],[9,-12],[1,-2],[3,-1],[10,-8],[2,0],[16,0],[3,-2],[1,-4],[2,-4],[1,-1],[3,-6],[12,-31],[14,-18],[4,-2],[3,-1],[4,-3],[3,0],[4,1],[8,7],[0,-10],[-1,-8],[-2,-3],[-5,4],[2,-14],[4,-6],[5,-3],[6,-9],[2,3],[5,5],[3,4],[2,-4],[1,-7],[8,-4],[32,-1],[2,-5],[0,-10],[-1,-11],[-2,-7],[8,6],[1,-4],[-2,-14],[2,0],[1,7],[2,6],[3,5],[2,2],[3,-5],[5,-2],[5,2],[3,3],[18,2],[-1,-2],[-1,-2],[2,-8],[0,-4],[4,5],[6,-1],[5,-2],[2,0],[2,8],[3,-1],[10,-12],[3,-4],[4,1],[1,8],[1,22],[-1,8],[-4,-3],[-2,0],[-3,6],[-8,11],[-4,5],[1,9],[4,3],[27,-2],[17,-3],[5,-2],[-6,-19],[3,2],[2,3],[4,7],[8,-22],[24,-30],[8,-14],[2,-7],[-2,2],[-4,4],[-2,2],[1,-2],[1,-6],[-2,2],[-3,2],[0,-4],[3,-4],[3,-3],[3,1],[4,6],[3,-10],[5,-6],[6,-4],[23,-3],[8,2],[6,9],[3,-5],[2,-5],[0,-6],[-3,-8],[1,-1],[3,1],[-1,-3],[0,-1],[-1,-2],[0,-2],[2,0],[1,1],[3,3],[-3,13],[5,3],[22,-7],[2,-1],[2,-6],[1,-5],[-2,-4],[-2,-2],[1,-2],[3,-4],[1,-2],[2,2],[1,-1],[2,-4],[1,-5],[2,0],[0,8],[6,-9],[4,-15],[3,-4],[1,-2],[1,16],[-1,9],[-4,14],[-2,12],[-5,8],[-1,7],[-3,-2],[-1,0],[-2,0],[-2,2],[4,4],[8,11],[4,2],[17,0],[8,-2],[8,-4],[8,-7],[6,-12],[2,0],[-1,7],[-1,7],[-4,11],[4,-4],[2,0],[40,8],[3,-1],[5,-2],[2,-1],[3,1],[1,6],[2,1],[9,1],[2,-3],[1,-10],[2,0],[3,6],[14,15],[4,3],[48,8],[15,14],[5,2],[1,2],[2,7],[2,-1],[1,-1],[1,-2],[1,0],[22,-8],[35,-1],[24,-8],[4,-2],[6,-11],[3,-3],[3,2],[1,6],[2,4],[3,-4],[4,2],[4,-3],[4,-5],[4,-2],[14,1],[4,-1],[23,-32],[9,-5],[3,-3],[15,-31],[3,-4],[4,-2],[4,-4],[7,-11],[5,-11],[-2,-6],[2,-2],[2,-1],[1,-1],[3,0],[-3,8],[4,5],[5,-2],[11,-11],[1,-1],[5,1],[1,-2],[2,-8],[0,-3],[11,-18],[20,-24],[3,-8],[25,-23],[4,-1],[2,0],[2,1],[3,0],[1,-2],[2,-4],[2,-4],[5,-4],[10,-14],[2,1],[2,-1],[1,-3],[1,-3],[1,-4],[0,-2],[18,-27],[8,-15],[3,-3],[3,-1],[5,-1],[3,-2],[4,-8],[3,-10],[3,-7],[6,-3],[12,-1],[4,-3],[4,-4],[7,-14],[5,-15],[8,-36],[5,3],[4,-5],[3,-7],[4,-8],[14,-8],[5,-16],[7,-14],[9,-13],[7,-6],[3,-4],[7,-19],[3,-5],[18,-8],[19,-16],[9,-2],[4,14],[3,-5],[3,-7],[6,-24],[7,-21],[2,-9],[2,-19],[2,-8],[3,-9],[16,-31],[3,-5],[13,-13],[3,-6],[18,-53],[22,-63],[22,-47],[26,-41],[4,-4],[19,-37],[5,-5],[6,-4],[6,-2],[6,-1],[16,-70],[8,-20],[9,-18],[12,-17],[12,-13],[8,-5],[3,3],[3,5],[7,-3],[17,-19],[29,-21],[9,-12],[5,-15],[12,-59],[13,-41],[13,-12],[6,6],[5,1],[4,-3],[9,-8],[3,0],[8,4],[8,1],[23,-5],[5,-6],[9,-22],[1,-4],[3,-3],[4,-6],[3,-7],[1,-6],[4,-13],[9,-9],[11,-5],[6,0],[0,-8],[4,-2],[11,2],[10,-4],[5,-4],[8,-12],[4,-3],[4,3],[2,10],[-3,3],[-10,5],[-3,7],[10,-5],[34,5],[23,-5],[11,-7],[5,-2],[7,1],[0,4],[-10,0],[0,4],[45,-4],[5,2],[10,12],[10,4],[7,8],[5,2],[22,-6],[42,-17],[30,-14],[22,-5],[9,-5],[11,-10],[4,-8],[11,-23],[5,-5],[5,-4],[4,-9],[4,-10],[5,-21],[3,-13],[1,-13],[1,-13],[2,-6],[8,-16],[16,-60],[2,-24],[2,-13],[3,-12],[3,-9],[-2,-4],[2,-6],[5,-41],[0,-6],[3,-7],[0,-41],[2,-8],[3,-6],[2,-8],[1,-13],[-1,-9],[0,-6],[1,-7],[5,-11],[0,-2],[1,-6],[-1,-20],[1,-6],[3,-8],[0,-6],[1,-3],[5,-10],[2,-5],[0,-6],[0,-19],[-2,-12],[0,-6],[3,-2],[1,-3],[2,-71],[-8,13],[-1,-11],[-7,-14],[-1,-6],[5,-4],[4,5],[3,9],[4,5],[2,-4],[3,-13],[2,-4],[6,0],[2,-2],[1,-4],[0,-13],[3,-24],[1,-11],[-1,-9],[1,-6],[2,-7],[1,-5],[4,-4],[2,-4],[2,-8],[3,-25],[4,-62],[0,-27],[-3,-20],[2,-13],[1,-7],[1,-14],[2,-6],[2,-6],[1,-7],[0,-11],[-1,-12],[-1,-12],[2,-13],[0,3],[6,-48],[3,-14],[3,-4],[8,-8],[1,-4],[0,-29],[-1,-8],[-1,-4],[-2,-2],[-1,-4],[-1,-7],[1,-13],[0,-8],[-5,-24],[1,-1],[-2,-4],[-2,-2],[-2,2],[-2,4],[3,-6],[1,-7],[0,-7],[-2,-8],[5,8],[6,13],[4,14],[2,12],[1,12],[4,23],[-1,11],[4,-7],[0,-11],[-2,-22],[0,-35],[1,-18],[1,-4],[2,-4],[4,-6],[2,-3],[1,-10],[-1,-10],[-2,-9],[0,-9],[0,-87],[-3,-44],[0,-23],[3,-18],[-3,-17],[-1,-4],[-2,0],[-3,4],[-2,0],[-10,0],[-4,0],[-1,-1],[-4,-2],[-5,-5],[18,1],[8,-5],[1,-12],[3,-10],[3,-8],[1,-6],[-2,-9],[-2,-9],[-2,-16],[-2,1],[0,7],[-1,7],[0,7],[-1,-4],[-1,-4],[0,-9],[-6,24],[-2,8],[0,-11],[4,-29],[-1,-11],[-3,1],[-3,-3],[-4,-6],[-2,-9],[6,6],[2,5],[3,0],[1,-2],[-1,-6],[-2,-5],[-3,-5],[-2,-10],[0,-26],[2,-6],[11,-4],[0,-7],[1,-8],[-1,-22],[4,16],[2,-7],[2,-14],[2,-7],[-2,-5],[0,-3],[0,-3],[2,-5],[-3,-12],[-7,-53],[0,-10],[-1,-6],[-4,-1],[-4,5],[-6,12],[-3,4],[-5,0],[4,-6],[2,-4],[2,-6],[1,-7],[0,-6],[0,-6],[3,-6],[1,5],[1,4],[-1,-9],[-3,-22],[-2,-22],[-1,-6],[-5,-15],[-3,-16],[-2,-18],[-1,-23],[0,-16],[1,-6],[0,-2],[-2,-3],[-1,-5],[-1,-6],[-1,-5],[-19,-114],[-12,-51],[0,-6],[-3,-5],[-1,-12],[-1,-24],[-2,-12],[-9,-27],[-2,-12],[-1,-26],[-3,-24],[-11,-47],[-12,-34],[-8,-39],[-8,-23],[-4,-24],[-25,-66],[-6,-11],[0,4],[-6,-7],[-7,-11],[-6,-12],[-2,-13],[-1,-9],[-22,-70],[-2,-6],[-14,-18],[-7,-8],[-5,-19],[-6,-38],[-4,-1],[-2,-2],[-7,-1],[-3,-2],[-2,-2],[-5,-8],[4,15],[4,9],[1,11],[-5,18],[-2,6],[-4,7],[-4,2],[-3,-7],[0,-4],[4,-15],[1,-8],[0,-16],[0,-5],[-2,-3],[-2,-2],[-13,-26],[-1,-2],[-3,10],[-2,12],[0,6],[-9,28],[1,9],[-4,10],[-6,5],[-6,-7],[3,-10],[8,-11],[4,-8],[2,-7],[6,-46],[2,-4],[3,-2],[1,2],[0,5],[1,4],[10,3],[4,3],[2,6],[-4,-14],[-14,-30],[-6,-36],[-6,-13],[-12,-21],[-7,-31],[-2,-5],[-3,-4],[-3,-9],[-9,-40],[-4,-9],[-11,-9],[-15,-39],[-30,-52],[-8,-19],[-3,-10],[-1,-14],[1,-7],[0,-4],[0,-3],[-1,-5],[-32,-89],[-3,-4],[-11,-7],[-7,-1],[-6,-3],[-4,-4],[-5,-5],[-11,-4],[-1,-2],[-3,-9],[-1,-2],[-4,-2],[-44,-58],[-37,-59],[-14,-38],[-3,-17],[-4,-12],[-14,-30],[-3,-8],[-2,-9],[0,-12],[-1,-8],[-21,-69],[-4,-6],[-2,2],[0,6],[1,7],[0,5],[-1,4],[-1,1],[-2,1],[-1,6],[-2,0],[-2,-8],[-3,6],[-4,19],[-2,2],[-11,10],[-3,2],[-1,2],[-2,0],[-2,-4],[0,-6],[0,-5],[2,-7],[1,-7],[2,-4],[2,-1],[2,1],[2,1],[3,-3],[2,-4],[2,-3],[4,-3],[0,-4],[-5,4],[-1,-3],[1,-6],[3,-3],[3,1],[1,3],[1,3],[1,1],[3,-3],[2,-3],[0,-5],[-1,-5],[1,-6],[0,-21],[3,-10],[0,4],[1,-4],[-6,-9],[-8,-7],[-6,-9],[-2,-13],[-2,-5],[-2,-4],[-3,-3],[-3,-3],[-1,-4],[-5,-19],[-8,-53],[-4,-9],[-12,-5],[-4,1],[0,5],[1,6],[0,4],[-5,2],[8,22],[2,6],[1,16],[1,5],[3,8],[12,19],[3,7],[1,3],[5,3],[-4,7],[0,17],[-3,8],[-1,-15],[0,-7],[1,-6],[-2,0],[-5,20],[-4,10],[-2,4],[-1,-12],[8,-27],[0,-12],[-2,4],[-6,9],[1,-7],[1,-4],[1,-3],[1,-5],[-1,-6],[-1,-1],[-3,0],[-2,-2],[-3,-6],[-3,-7],[-4,-16],[-4,-30],[-2,-6],[-3,0],[-2,10],[-2,22],[-1,-8],[-2,-3],[-2,1],[-3,6],[3,-20],[2,-7],[3,-5],[11,-10],[2,-5],[-3,-19],[-7,-14],[-9,-8],[-8,-5],[5,-3],[6,2],[6,4],[4,4],[4,8],[4,9],[3,9],[5,3],[-2,-11],[-19,-57],[-21,-91],[-1,-22],[-2,-9],[-7,-17],[-16,-86],[-8,-27],[-6,-32],[-18,-52],[-19,-76],[-23,-69],[-17,-55],[-19,-52],[-14,-47],[-4,-3],[-2,-4],[-20,-48],[-19,-51],[-22,-44],[-8,-24],[-5,-9],[-6,-7],[-3,-2],[-6,-1],[-4,-1],[-3,-2],[-5,-12],[-8,-6],[-6,-6],[-7,-5],[-6,3],[-1,8],[5,21],[3,21],[3,8],[3,2],[2,-12],[0,12],[-2,10],[-1,10],[4,18],[-1,5],[-2,5],[-2,3],[0,4],[0,3],[-2,5],[-1,3],[1,2],[0,2],[0,4],[-2,40],[-5,0],[-5,1],[-4,3],[-4,8],[-9,-7],[-6,7],[-3,13],[-3,25],[-2,3],[-3,0],[-5,4],[-3,7],[0,7],[1,8],[0,11],[-2,0],[-5,-20],[-2,-11],[0,-12],[0,-16],[-1,-5],[-1,-2],[-1,-1],[-1,-2],[-4,-15],[1,-7],[3,-7],[-11,-42],[-3,-7],[-2,-1],[-3,-8],[-2,-3],[-3,1],[-3,6],[-3,1],[-3,5],[-2,13],[-5,43],[0,10],[3,8],[6,11],[-3,12],[-2,0],[1,-10],[-2,-4],[-3,-4],[-4,-6],[-2,-9],[-1,-7],[-1,-6],[-4,-3],[3,-7],[3,-14],[2,-7],[2,-4],[2,-1],[2,-1],[2,-7],[0,-2],[0,-7],[0,-8],[2,-7],[2,-3],[5,-6],[2,-3],[4,8],[3,2],[2,0],[1,-4],[1,-6],[1,-4],[2,2],[3,3],[4,0],[4,-2],[4,-3],[-3,-4],[0,-2],[-2,-8],[-1,-5],[-2,-4],[0,-8],[0,-12],[0,-7],[-1,-5],[-3,-8],[-6,-17],[-3,-9],[-4,-8],[-6,-8],[-6,-6],[-6,-3],[-3,-2],[-2,-7],[0,-8],[0,-7],[1,-4],[1,-3],[1,-3],[3,-2],[19,-10],[-1,-6],[-3,-2],[-3,-1],[-3,-2],[-3,-4],[-6,-16],[-16,-22],[-4,-8],[-3,-11],[-2,-24],[-2,-12],[4,-18],[1,-10],[-3,-4],[-7,9],[-2,2],[-3,1],[-9,-4],[1,5],[0,4],[0,5],[-1,6],[-6,-40],[-2,-24],[3,-18],[-3,-5],[-3,-9],[-2,-12],[0,-12],[1,-26],[-2,-9],[-7,-3],[0,-4],[8,1],[3,8],[-1,29],[1,15],[5,13],[6,6],[7,-7],[1,-5],[1,-11],[3,-7],[0,-4],[-1,-3],[-1,-4],[-1,-5],[1,-15],[2,-12],[3,-11],[3,-13],[1,-15],[-2,-11],[-3,-11],[-2,-13],[0,-37],[0,-10],[3,-9],[1,-5],[-3,-2],[-3,1],[-3,3],[-5,10],[-2,6],[-1,7],[-1,7],[-1,6],[-2,6],[-1,4],[-2,2],[-2,5],[-2,1],[-1,-1],[-1,1],[-1,17],[-2,2],[-4,0],[-6,0],[-2,-6],[-2,-11],[1,-4],[8,12],[2,-4],[0,-6],[0,-5],[-2,-5],[12,-13],[4,-7],[4,-20],[3,-9],[10,-7],[1,-6],[-2,-7],[-2,-4],[-7,1],[-4,2],[-5,5],[-2,-16],[1,-5],[2,-19],[1,-2],[5,-5],[5,-5],[4,-8],[3,-10],[1,-7],[0,-7],[-1,-6],[0,-6],[4,-12],[1,-7],[0,-4],[-3,-3],[-10,-3],[-4,2],[-4,10],[-4,-11],[-1,-5],[4,-8],[-2,-4],[-2,-6],[-1,-7],[1,-8],[2,-5],[3,-3],[3,-4],[1,-8],[2,0],[-7,25],[-1,14],[5,6],[6,1],[5,5],[13,14],[0,5],[0,6],[-1,6],[-2,3],[-1,3],[0,7],[2,10],[0,3],[-1,2],[-1,2],[1,3],[2,2],[2,0],[1,2],[-1,7],[-1,4],[-2,2],[-4,2],[1,2],[1,6],[-4,-3],[-1,6],[2,8],[2,7],[3,5],[4,4],[4,0],[2,-5],[0,-50],[1,-13],[-6,-58],[-3,-12],[-2,-7],[-1,-7],[0,-14],[-1,-7],[-5,-18],[-1,-9],[0,-24],[3,-19],[-1,-7],[-2,-8],[-2,-6],[-1,-7],[2,-8],[-3,-6],[0,-7],[1,-9],[0,-10],[-6,-29],[-2,-45],[-5,-31],[-1,-18],[-3,-19],[0,-12],[3,-47],[1,-7],[4,-8],[1,-8],[-3,-2],[-2,-3],[-1,-6],[2,-4],[2,0],[3,2],[2,0],[-1,-25],[1,-26],[4,-41],[2,-155],[6,-54],[2,-51],[8,-92],[5,-89],[6,-25],[3,-11],[1,-4],[2,-18],[1,-6],[4,-12],[1,-6],[-2,-10],[-6,-20],[-2,-9],[-1,-12],[-7,-39],[0,-11],[-1,-8],[-4,-17],[-1,-9],[-2,-51],[-1,-9],[-11,-42],[-2,-13],[-1,-14],[1,-16],[-1,-20],[-3,-14],[-10,-31],[1,-7],[0,-5],[-2,-13],[-9,-106],[-12,-85],[0,-26],[0,-7],[3,-13],[1,-8],[-1,-4],[-7,-31],[-6,-74],[-4,-23],[-5,-17],[-2,-11],[-2,-79],[2,-51],[5,-29],[2,-13],[-1,-75],[1,-13],[5,-19],[5,-14],[3,-13],[-3,-19],[-31,-65],[-2,-9],[-1,-6],[0,-7],[-1,-5],[-2,-3],[-2,-2],[-7,-9],[-19,-8],[-10,-10],[-9,-16],[-13,-35],[-35,-110],[-10,-48],[-4,-30],[-14,-115],[-6,-97],[1,-130],[6,-112],[6,-88],[-1,-81],[-2,-24],[-21,-110],[-6,-20],[-8,-13],[-32,-28],[-16,-25],[-5,-10],[-16,-78],[-1,-11],[-3,-10],[-12,-8],[-4,-8],[6,0],[1,-8],[-4,-30],[-2,-3],[-3,-1],[-2,-3],[-2,-5],[0,-9],[1,-5],[2,-12],[1,-6],[-1,-5],[-2,-12],[-5,-38],[-1,-5],[-2,-6],[-5,-26],[-3,-9],[-3,-5],[0,-1],[-1,2],[-3,6],[-2,2],[-2,-4],[-2,-6],[-2,-2],[-3,4],[1,17],[-2,8],[-4,2],[-6,1],[-9,-3],[4,-7],[1,-8],[-2,-5],[-5,-1],[0,-4],[1,-1],[1,-1],[2,-2],[-2,-12],[1,-13],[5,-2],[7,1],[-1,-8],[3,2],[4,9],[5,3],[6,-4],[-4,-7],[-4,-10],[-4,-12],[-2,-28],[-7,-22],[-3,-27],[-14,-41],[-6,-27],[-4,-8],[-5,7],[-7,-12],[-2,-6],[-11,-40],[-3,-7],[-6,-10],[-2,-6],[-6,-29],[-7,-3],[-3,-15],[-2,-4],[-2,6],[0,6],[-2,7],[-3,0],[-3,-3],[-1,-2],[-9,-12],[-9,-4],[-4,-6],[-3,-6],[-1,-11],[-3,-4],[-2,-8],[-3,-8],[-3,-9],[-2,-19],[0,-21],[-1,-12],[-1,-11],[-4,-7],[-3,-11],[0,-7],[-2,-9],[-21,-57],[-8,-28],[-4,-21],[0,-1],[2,-7],[0,-10],[-1,-9],[-1,-10],[1,-17],[-6,-16],[-9,-29],[-9,-17],[-2,-8],[-4,-24],[3,-22],[12,-28],[1,-26],[-3,-40],[5,-61],[11,-74],[-2,-23],[-6,-16],[-41,-49],[-28,-29],[-28,-16],[-34,-18],[-24,-18],[-31,-29],[-21,-28],[-8,-15],[-2,-5],[-1,-10],[-1,-5],[-5,-8],[-9,-11],[-4,-8],[-6,-21],[-1,-3],[-2,-1],[-3,-2],[-3,-4],[0,-3],[-3,-10],[-5,-7],[-10,-9],[-5,-18],[-3,-26],[-1,-29],[2,-25],[3,-9],[10,-22],[2,-7],[1,-2],[3,4],[4,8],[2,3],[6,2],[3,3],[0,-10],[-2,-7],[-2,-4],[-2,-7],[-5,3],[-3,-4],[-7,-16],[-8,-7],[-2,-1],[-2,-1],[-1,-5],[0,-5],[-1,-10],[0,-5],[0,-4],[-2,-2],[-3,-1],[-2,-1],[-1,-3],[-1,-3],[-1,-12],[1,-13],[2,-6],[2,6],[2,0],[1,-8],[0,-7],[-3,-13],[-4,3],[-5,11],[-3,2],[-32,2],[-57,8],[-43,2],[-25,-3],[-9,-4],[-4,-1],[-1,-2],[-4,-8],[-2,-2],[-21,-1],[-26,-5],[-19,3],[-28,-1],[-7,12],[-4,5],[-5,-5],[-3,7],[-6,7],[-2,6],[4,-1],[1,-1],[2,-2],[4,6],[0,5],[-2,4],[-4,1],[-5,3],[1,7],[5,13],[2,15],[6,13],[13,23],[-6,-2],[-2,3],[0,4],[2,7],[5,5],[2,3],[1,3],[1,13],[0,6],[-1,15],[-1,4],[-3,2],[-7,-2],[-3,4],[-2,-4],[-3,-9],[-3,-4],[-3,-2],[-2,0],[-2,1],[-3,1],[-3,-1],[-7,-7],[-11,-16],[-5,0],[-6,-2],[-4,-5],[-1,-13],[1,-12],[8,-33],[2,0],[1,3],[1,2],[1,2],[1,2],[0,-6],[1,-5],[2,-3],[3,-3],[-2,0],[0,-1],[-1,-1],[-1,-2],[11,-13],[3,-5],[1,-8],[-1,-11],[0,-8],[3,4],[0,-10],[-5,-11],[-7,-10],[-7,-5],[-63,-14],[-14,-8],[-12,-11],[-2,-3],[-2,-4],[-1,-3],[-2,0],[-3,9],[-1,1],[-11,5],[-70,-17],[-12,0],[-5,-1],[-5,-5],[-5,-7],[-5,-3],[-5,4],[-1,12],[2,13],[4,4],[10,0],[3,-2],[7,-7],[3,1],[1,3],[2,17],[7,-11],[10,-4],[23,-2],[22,8],[12,8],[6,9],[-5,1],[-6,5],[-5,6],[-2,6],[-2,-1],[-3,0],[-3,2],[-2,1],[-3,5],[-3,12],[-2,4],[-4,3],[-12,3],[-3,-1],[-2,12],[-4,1],[-5,-1],[-6,2],[4,4],[0,5],[-4,-3],[-8,-8],[-2,-1],[-15,-5],[-3,-2],[-8,-8],[-3,-1],[-2,-4],[-2,-8],[-3,-7],[-5,-2],[1,9],[2,9],[-1,5],[-4,-2],[-2,-6],[-5,-23],[-2,-4],[-8,-17],[-3,-3],[-7,0],[-1,-2],[-5,-6],[-2,-2],[-1,-2],[-2,0],[0,6],[-1,3],[-3,-3],[-4,-7],[-5,2],[-1,3],[1,19],[-1,6],[-2,2],[-6,1],[-5,-10],[-3,-1],[-1,11],[-4,-5],[-2,-3],[-1,-4],[-7,9],[0,8],[4,5],[6,2],[2,2],[0,6],[-2,8],[-1,2],[-2,2],[0,3],[3,5],[-2,3],[-3,1],[-3,1],[-3,-1],[2,-9],[-1,-5],[-3,-5],[-2,-5],[-1,3],[-2,6],[0,4],[-2,-2],[-1,-1],[-1,-2],[-4,6],[-3,-6],[-5,-20],[1,-9],[-6,-8],[-8,-5],[-13,-4],[-19,-18],[0,3],[1,5],[0,4],[-9,0],[-7,-5],[-5,-9],[-7,-29],[0,-4],[1,-4],[1,-4],[-3,-10],[-2,-18],[-1,-7],[2,-16],[5,2],[6,9],[6,5],[5,-5],[-13,-20],[-1,-12],[2,6],[4,5],[5,2],[4,-4],[-4,-10],[-3,-7],[-1,-5],[0,-8],[2,1],[5,15],[4,8],[4,6],[4,3],[8,1],[-2,-7],[-2,-3],[-2,-3],[5,-8],[7,-2],[7,-4],[2,-14],[-6,4],[-5,-8],[-6,-20],[-6,-9],[-5,1],[-4,5],[-4,-1],[-4,3],[-8,1],[-8,-3],[-7,-5],[0,-1],[-1,-8],[-4,-3],[-5,-1],[-5,-4],[-5,5],[-4,-4],[-3,-5],[-5,1],[-2,3],[-1,6],[-1,5],[-3,2],[-2,0],[-2,-1],[-4,-3],[2,14],[-8,-5],[-9,-11],[-3,-7],[-2,-1],[-2,-8],[-1,-3],[-2,-1],[-4,-1],[-2,-1],[-5,-7],[-2,1],[-2,6],[-2,-14],[3,-6],[5,-5],[3,-8],[-7,-1],[-4,-7],[-6,-24],[-3,10],[-3,3],[-1,-3],[2,-10],[-4,1],[-3,3],[-3,4],[-3,5],[-3,3],[-2,-7],[1,-10],[1,-8],[-5,-2],[-5,4],[-5,2],[-4,-12],[3,-11],[1,-6],[-3,-3],[-3,-1],[-8,-7],[-4,2],[-4,8],[-3,2],[-3,-2],[-3,-6],[-3,-6],[-1,-2],[-6,-4],[-6,-7],[-5,-5],[-7,4],[-1,-7],[-3,-7],[-2,-7],[0,-7],[2,-13],[0,-6],[1,-8],[2,-3],[3,0],[2,-3],[0,-8],[-2,-13],[1,-5],[2,-11],[0,-12],[-3,-10],[-6,-6],[-3,-1],[-3,2],[-2,2],[-2,1],[-4,-2],[-6,-6],[-3,0],[-5,4],[-7,17],[-6,3],[-9,-4],[-3,0],[-1,2],[-2,4],[-1,2],[-5,0],[-1,0],[-18,11],[-18,1],[-3,2],[-6,5],[-2,2],[-11,-1],[-26,-12],[-9,-8],[-5,-7],[-3,-5],[-3,-11],[-3,0],[-6,3],[-5,-3],[-6,-5],[-10,-9],[0,2],[-1,3],[-2,0],[-3,-16],[-6,-12],[-7,-8],[-9,-5],[0,-4],[7,0],[4,2],[4,6],[10,21],[4,4],[6,0],[-11,-25],[-3,-8],[-1,-9],[-1,-12],[0,-10],[1,-6],[-3,-5],[-3,-3],[-3,1],[-1,5],[-2,3],[-4,-1],[-3,-2],[-5,-6],[-5,-9],[-5,-6],[-8,3],[2,9],[7,5],[2,6],[0,9],[-2,7],[-3,5],[-1,6],[0,7],[-2,6],[-4,3],[-7,3],[-4,2],[-1,4],[1,5],[0,4],[-7,3],[-1,-7],[0,-11],[-2,-5],[-4,-2],[0,-4],[1,-4],[-1,-2],[-6,1],[-6,3],[1,-7],[3,-4],[2,-2],[1,-1],[1,-4],[2,-11],[1,-4],[3,-1],[4,0],[3,-1],[2,-4],[0,-14],[-2,-5],[-2,-3],[-1,5],[-1,3],[-2,2],[-2,2],[-17,-18],[-35,-30],[-42,-51],[-31,-31],[-22,-26],[-9,-16],[-6,-19],[-3,-21],[-2,-3],[-1,-3],[3,-14],[0,-5],[-4,-8],[-6,-5],[-4,2],[0,13],[-6,-25],[-3,-3],[-4,-4],[-7,-14],[-4,-3],[-12,-26],[-73,-87],[-3,2],[-4,-3],[-8,-7],[-6,3],[-4,0],[-2,-9],[-5,-6],[-7,-11],[-14,-14],[-53,-82],[-5,-9],[-7,-19],[-2,-2],[-1,-2],[-2,-3],[-2,-5],[-11,-43],[-8,-9],[-13,3],[2,10],[4,1],[4,-1],[3,3],[0,6],[-3,2],[-12,-1],[-2,-3],[0,-4],[0,-7],[-1,-6],[-2,-3],[-3,2],[-2,6],[0,-10],[5,-6],[8,-4],[5,-1],[7,-4],[3,-1],[3,3],[3,5],[4,4],[4,2],[4,-1],[-10,-60],[-8,-25],[-15,-8],[-4,-7],[-14,-32],[-2,-7],[-2,-9],[0,-1],[-2,-9],[-21,-26],[-2,-7],[-6,-22],[-4,-24],[-4,-1],[-5,7],[-2,12],[1,10],[6,35],[1,5],[0,2],[0,3],[3,6],[2,4],[6,7],[12,10],[3,6],[-4,6],[-3,-8],[-6,-5],[-7,-3],[-6,0],[-2,-3],[-4,-8],[-2,-2],[-3,3],[-4,10],[-3,4],[1,-10],[0,-6],[-1,-4],[-3,-11],[-3,-6],[-3,-4],[-4,0],[4,20],[-2,0],[-2,-3],[-1,7],[1,28],[2,16],[0,9],[-4,-5],[-3,-8],[-3,-8],[-1,-3],[-2,-2],[0,-2],[2,-5],[1,-1],[2,-2],[0,-2],[0,-3],[-1,1],[-1,-2],[-2,-3],[-4,4],[-7,8],[-2,6],[-2,13],[-3,6],[0,-12],[-2,0],[-1,3],[-1,2],[-1,1],[-1,2],[1,-9],[6,-36],[-5,0],[-9,-4],[-5,0],[0,-4],[10,-3],[5,-2],[3,-7],[-5,-6],[-2,-7],[2,-3],[5,4],[1,-6],[4,-9],[0,-4],[-1,-10],[-2,-3],[-3,1],[-3,-2],[-2,-7],[0,-8],[-2,-7],[-3,-2],[-4,1],[-3,3],[-5,13],[-3,-4],[-3,-1],[-3,1],[-3,4],[-1,-8],[-3,-1],[-14,7],[-3,3],[-14,19],[-2,4],[-11,27],[-3,5],[1,-9],[4,-24],[2,-9],[0,-3],[2,-3],[3,-3],[1,-2],[3,-13],[-1,-6],[-5,-1],[-6,4],[5,-17],[7,-1],[9,3],[9,-2],[-1,-4],[0,-1],[-1,-3],[-2,4],[-2,1],[-2,-3],[-1,-6],[3,-3],[4,-1],[3,-4],[3,-8],[3,10],[5,1],[5,-1],[10,7],[5,-5],[5,-7],[5,-5],[-3,-6],[-1,-2],[2,4],[-4,-8],[-2,-2],[-2,-2],[6,-5],[3,4],[2,8],[3,5],[4,1],[5,-3],[4,0],[6,6],[7,-16],[-8,-14],[-12,-16],[-23,-88],[0,-16],[-5,-25],[-2,-3],[-5,2],[-4,12],[-3,2],[1,9],[1,3],[-4,-1],[-3,-2],[-3,-3],[-2,-6],[3,0],[3,-3],[2,-4],[2,-5],[1,-8],[-1,-2],[-19,6],[-25,-4],[-3,-2],[-3,-3],[-1,-4],[-1,-8],[2,-4],[2,2],[2,4],[2,2],[46,0],[2,3],[1,2],[1,0],[1,-9],[1,-6],[-1,-7],[-5,-35],[-2,-20],[-6,-17],[-2,-10],[1,-8],[3,-10],[4,-51],[0,-9],[-2,-7],[-7,-2],[-5,-4],[-3,-9],[-3,-9],[-3,-7],[-6,-1],[-7,3],[-6,5],[-2,7],[-1,14],[-1,9],[-4,16],[-1,10],[-1,12],[0,5],[-3,6],[-2,17],[-2,-3],[0,-12],[4,-15],[-2,-7],[0,-6],[0,-6],[2,-5],[1,-2],[1,-2],[2,-2],[1,-4],[0,-7],[0,-3],[1,-2],[1,-7],[-2,-15],[1,-7],[1,-6],[-1,-4],[-2,-3],[-3,-1],[6,-16],[-4,1],[-3,-1],[-3,-3],[-1,-5],[11,-4],[5,-5],[3,-9],[2,-6],[17,-15],[3,-4],[2,-5],[0,-7],[1,-7],[1,-6],[2,-4],[3,-1],[2,-6],[-1,-11],[-14,-59],[-3,-23],[-3,-40],[1,-34],[1,-7],[2,-5],[12,-18],[3,0],[7,4],[3,-2],[1,-6],[-1,-6],[-1,-5],[-4,-5],[-3,-9],[-3,-11],[-2,-9],[0,-7],[0,-19],[1,-4],[2,-5],[1,-3],[0,-4],[-2,-5],[0,-3],[0,-22],[0,-5],[3,-7],[2,-2],[2,0],[1,1],[5,-12],[-1,-10],[-3,-9],[-2,-22],[-2,-5],[-1,-6],[5,-27],[2,-5],[4,-2],[4,2],[2,5],[1,6],[2,6],[5,5],[2,-7],[3,-9],[6,-3],[-2,-7],[-1,-3],[-3,-3],[3,-14],[0,-7],[-2,-3],[-3,-2],[-3,-2],[-2,1],[-2,7],[4,2],[1,5],[-2,5],[-3,4],[-3,0],[-5,-6],[-3,-2],[-1,-2],[-9,-14],[-2,-6],[-1,-3],[-1,-5],[0,-8],[2,-23],[1,-4],[1,-1],[9,-3],[3,-8],[2,-10],[1,-26],[-3,8],[-1,3],[-1,-5],[-2,-5],[0,-5],[0,-7],[-1,-7],[-3,-3],[-3,-1],[-3,-3],[-4,-5],[-3,-6],[-2,-8],[-1,-11],[11,-47],[5,-3],[3,-7],[1,-11],[-2,-11],[-3,7],[-5,-7],[-6,-12],[-4,-9],[3,-8],[2,-11],[1,-12],[0,-11],[1,-4],[4,-9],[1,-6],[-2,-1],[-3,-4],[-1,-5],[1,-2],[2,-4],[10,-20],[2,-8],[0,-5],[-2,-2],[-2,-1],[-1,-2],[1,-7],[2,-1],[3,-1],[1,-2],[-1,-10],[-8,-23],[-2,-9],[-3,-35],[1,-12],[1,-3],[1,-3],[1,-4],[1,-8],[-1,-6],[-2,-4],[-2,-3],[-1,-3],[0,-5],[-4,-18],[-2,-24],[-3,-25],[-1,-13],[6,-11],[-5,-10],[-10,-18],[-1,-6],[-1,-14],[0,-14],[0,-4],[-8,-17],[-2,-8],[-3,-22],[-4,-14],[-2,-7],[1,-6],[1,-6],[-1,-6],[-3,-3],[-3,3],[-3,10],[-3,11],[-1,12],[1,14],[3,9],[1,7],[-1,6],[-8,15],[-4,5],[-4,8],[-4,2],[-2,-15],[0,-8],[3,-13],[0,-6],[0,-6],[-3,-5],[0,-5],[1,-5],[3,0],[3,0],[2,-1],[0,-5],[-1,-5],[-2,-6],[-1,-5],[0,-4],[0,-3],[1,-2],[2,-5],[10,-10],[2,-6],[3,-4],[3,-2],[3,4],[2,3],[3,1],[-2,-10],[-2,-9],[-9,-22],[-3,-12],[-2,-6],[-3,-3],[-13,-3],[-3,-1],[-8,-9],[-8,-5],[-4,-6],[-6,-11],[-22,-26],[-80,-121],[-58,-121],[-45,-117],[-27,-70],[-13,-51],[-21,-62],[-18,-77],[-13,-30],[-45,-229],[-12,-72],[-18,-82],[-75,-231],[-2,-12],[-2,-6],[-34,-96],[-29,-58],[-16,-46],[-42,-94],[-32,-61],[-48,-73],[-67,-102],[-83,-92],[-7,-13],[-40,-92],[-10,-31],[-2,-3],[-2,12],[2,13],[6,22],[2,8],[2,13],[1,14],[-2,11],[-4,13],[4,7],[5,5],[4,10],[-4,18],[-17,37],[0,18],[11,11],[13,-8],[22,-27],[12,-2],[12,10],[6,15],[-6,17],[14,5],[11,-2],[11,2],[11,13],[29,61],[4,16],[10,14],[2,11],[1,14],[4,-5],[8,-19],[3,1],[-1,10],[-4,23],[1,11],[3,13],[4,12],[4,7],[2,-20],[10,-5],[12,5],[9,10],[4,7],[9,10],[3,5],[10,29],[8,33],[6,43],[1,44],[-6,38],[2,8],[2,25],[0,9],[2,6],[6,-1],[10,-7],[5,2],[9,8],[4,2],[5,-1],[2,-5],[0,-32],[1,-5],[3,-2],[3,1],[2,2],[1,5],[0,7],[2,6],[3,3],[3,3],[2,2],[-1,7],[-3,1],[-3,-1],[-3,1],[-5,17],[3,22],[5,25],[1,26],[-4,11],[-2,6],[1,3],[3,-1],[4,-3],[3,0],[7,1],[5,5],[21,32],[11,4],[6,6],[4,6],[4,7],[10,39],[4,50],[-3,105],[-1,11],[-5,22],[-3,18],[-1,5],[0,4],[5,5],[3,3],[2,-2],[4,-9],[9,-14],[0,-4],[-1,-3],[-1,-4],[-1,-5],[1,-11],[4,-12],[4,-9],[4,-7],[10,14],[2,7],[-1,9],[-1,15],[1,7],[4,11],[5,34],[0,16],[-1,16],[-2,9],[-10,12],[-2,3],[-2,14],[-2,5],[-3,5],[-3,2],[-3,-1],[-3,-4],[-7,-15],[-1,-1],[-1,-6],[1,-2],[2,-1],[3,-5],[1,-6],[0,-6],[-2,-8],[-3,-8],[-6,-3],[-19,2],[-5,-1],[-4,-6],[-1,-12],[-16,3],[-5,-1],[-7,5],[-4,-3],[-3,-10],[-1,-13],[-1,-15],[0,-11],[4,-22],[-5,3],[-14,21],[-5,4],[-5,3],[-3,5],[-2,10],[0,9],[0,2],[2,8],[2,5],[2,4],[1,4],[1,5],[-1,10],[-2,9],[-4,4],[-3,-5],[-2,0],[-1,14],[-6,2],[-7,-3],[-3,-3],[-2,-4],[-5,5],[-10,13],[1,9],[-2,6],[-8,5],[-3,1],[-2,0],[-2,0],[-1,4],[1,3],[4,8],[1,5],[-1,11],[-3,7],[-4,5],[-2,5],[0,10],[4,20],[0,11],[-6,-4],[-1,8],[0,11],[-3,5],[-3,-1],[0,-3],[0,-5],[0,-7],[-5,-18],[-1,-4],[0,-4],[2,-1],[1,-2],[1,-1],[-1,-4],[-1,-6],[0,-3],[0,-13],[-1,-6],[-2,-5],[-1,-5],[0,-7],[1,-6],[1,-6],[-1,-7],[-5,-16],[3,1],[5,3],[3,0],[2,-2],[4,-14],[-7,-16],[3,-9],[9,-6],[3,-9],[3,3],[5,11],[1,2],[2,-5],[1,-9],[-1,-16],[3,-14],[6,-2],[14,10],[6,1],[1,-4],[-2,-9],[-1,-11],[-1,-5],[-3,-4],[-3,-4],[-3,-1],[-1,1],[-4,5],[-2,2],[-11,-3],[-8,-15],[-6,-22],[-7,-46],[-3,-24],[-1,-26],[2,-26],[5,-39],[0,-12],[-1,-16],[-3,-9],[-5,1],[-4,13],[7,4],[-1,16],[-6,33],[-3,25],[-2,3],[-7,1],[-6,-4],[-1,-10],[0,-70],[1,-10],[3,-23],[2,-13],[-1,-14],[-2,-5],[-12,3],[-6,-1],[-6,-3],[-3,-8],[-3,-12],[-2,-26],[0,-28],[4,-24],[8,-16],[-35,-23],[-6,-1],[-9,-8],[-6,-19],[-2,-23],[1,-19],[3,-7],[0,-4],[-4,-1],[-3,1],[-3,2],[-3,1],[-3,-2],[-5,-6],[-6,-2],[-13,1],[-4,0],[-7,-3],[-5,-6],[-5,-17],[-6,0],[-7,2],[-5,0],[-2,-2],[-1,-5],[-2,-4],[-4,-1],[-3,-3],[0,-5],[2,-6],[3,-2],[1,-3],[-2,-5],[-10,-14],[-2,-4],[-1,-6],[-1,-12],[1,-39],[-1,-7],[-1,-13],[0,-7],[1,-6],[3,-9],[1,-5],[-4,-30],[-1,-9],[-1,-4],[-2,6],[-3,13],[-1,15],[-1,5],[-2,6],[-2,3],[-1,1],[-3,4],[-3,2],[-3,-3],[-2,-5],[-1,-6],[1,-17],[3,-2],[4,3],[5,-2],[2,-9],[-2,-12],[-4,-13],[-4,-9],[-5,-6],[-30,-22],[-5,-8],[-1,-13],[0,-7],[3,-11],[1,-4],[-1,-5],[-2,-5],[-1,-6],[0,-8],[-6,0],[-1,-12],[4,-11],[7,7],[6,-16],[1,-3],[2,-2],[6,-2],[2,-2],[2,-3],[1,-4],[1,-5],[-1,-6],[-3,-1],[-6,3],[-3,-2],[-5,-6],[-6,-4],[-5,-5],[-2,-10],[-1,-22],[-1,-11],[-2,-9],[9,2],[5,-4],[-1,-6],[-7,-8],[7,-3],[9,4],[7,8],[4,9],[1,7],[4,5],[4,3],[4,-1],[4,-3],[0,-4],[-5,-7],[-14,-16],[-6,-14],[4,-13],[4,2],[11,24],[4,7],[-4,-23],[0,-10],[3,-18],[0,-8],[-10,-6],[-28,-44],[-7,-18],[-34,-129],[-19,-110],[-8,-69],[-41,-178],[-7,-21],[-27,-66],[-21,-43],[-29,-48],[-47,-74],[-29,-54],[-20,-34],[-31,-38]],[[35172,30488],[-9,-1],[-3,7],[-2,10],[-3,10],[-4,5],[-5,1],[-5,-2],[-6,0],[-7,24],[0,53],[7,98],[-6,89],[-1,43],[5,28],[2,15],[8,19],[10,15],[34,40],[3,7],[1,11],[1,22],[2,10],[8,15],[19,25],[6,13],[5,13],[10,14],[4,8],[1,11],[-3,9],[-18,36],[-5,5],[-8,8],[-10,10],[-9,0],[-4,3],[-12,13],[-16,10],[-16,33],[-18,22],[-6,13],[-6,14],[-5,15],[-3,7],[-7,11],[-2,8],[-2,10],[-1,30],[-2,20],[-3,17],[-14,38],[-8,34],[0,21],[-2,8],[-4,5],[-16,6],[-8,9],[-4,6],[-2,6],[-2,6],[-1,6],[-1,6],[-3,7],[-8,10],[-4,3],[-5,3],[-9,1],[-3,2],[-2,4],[-3,9],[-1,4],[-5,7],[-5,4],[-6,1],[-5,-3],[-5,-9],[-3,-6],[-3,-1],[-6,8],[-14,24],[-16,19],[-19,32],[-8,18],[-8,15],[-10,12],[-7,13],[-1,5],[-3,13],[0,24],[-2,10],[-3,11],[-4,8],[-15,21],[-3,8],[-5,19],[-3,7],[-4,2],[-10,0],[-46,12],[-8,6],[-4,5],[-4,6],[-3,8],[-3,7],[-12,9],[-8,15],[-7,17],[-4,15],[-5,11],[-4,-2],[-5,-20],[-4,-9],[-3,-3],[-5,1],[-5,6],[-13,22],[-5,6],[-11,8],[-5,5],[-4,10],[-3,10],[-4,25],[-3,9],[-9,11],[-3,6],[-2,10],[-1,21],[-1,10],[-5,11],[-20,42],[-13,22],[-6,14],[-5,6],[-10,11],[-8,17],[-5,3],[-6,-3],[-5,-8],[-1,-10],[1,-25],[0,-11],[-4,-6],[-6,1],[-7,3],[-5,-2],[-4,-7],[-3,-21],[-2,-9],[-4,-7],[-15,-19],[-2,-3],[-1,-4],[-1,-3],[-3,-3],[-2,-1],[-7,-1],[-8,-3],[-19,2],[-7,-2],[-2,5],[-1,4],[0,13],[2,27],[0,39],[1,13],[5,16],[1,17],[-2,18],[-4,17],[-18,27],[-4,9],[-10,33],[-1,5],[-3,5],[-5,6],[-3,5],[-2,6],[0,6],[-2,6],[-9,20],[-5,9],[-9,9],[-17,25],[-12,13],[-4,6],[-4,10],[-7,21],[-4,9],[-15,18],[-5,7],[-3,6],[-11,21],[-2,8],[-2,3],[-3,4],[-2,0],[-3,0],[-3,2],[-4,5],[-1,4],[1,6],[-1,12],[-2,8],[-4,7],[-5,6],[-9,8],[-17,22],[-3,6],[-5,16],[-10,13],[-10,-1],[-11,-3],[-13,7],[-6,-1],[-10,-3],[-2,-1],[-5,-6],[-3,0],[-5,5],[-3,0],[-7,-9],[-8,-17],[-6,-19],[-2,-15],[-1,-18],[-6,-17],[-8,-12],[-9,-3],[-1,1],[-4,7],[-2,2],[-1,-1],[-4,-8],[-2,-1],[-4,3],[-3,5],[-4,4],[-5,0],[-4,-3],[-6,-10],[-3,-3],[-4,2],[-4,12],[-4,4],[-6,-1],[-13,-4],[-7,2],[-8,10],[-6,31],[-7,13]],[[34833,35324],[0,1],[2,14],[0,15],[-2,11],[-2,11],[-1,13],[0,12],[0,7],[4,21],[6,22],[8,14],[5,13],[7,21],[6,39],[3,11],[10,16],[2,11],[-1,11],[-7,23],[-2,11],[0,10],[0,11],[3,21],[13,107],[2,10],[8,22],[3,21],[10,61],[1,20],[-4,40],[0,18],[3,20],[11,31],[3,13],[3,18],[0,17],[-4,19],[-2,13],[-6,17],[-3,8],[-1,22],[-4,19],[0,9],[2,19],[7,16],[10,14],[6,10],[-1,0],[-7,8],[-26,31],[-16,42],[-5,8],[-48,52],[-7,4],[-4,-4],[-7,-15],[-5,-5],[-36,-25],[-18,-19],[-4,-8],[-6,-16],[-4,-5],[-5,-2],[-10,-1],[-4,-4],[-9,-5],[-17,0],[-8,-7],[-9,-9],[-10,-2],[-10,4],[-10,7],[-9,4],[-17,3],[-9,7],[-6,13],[-3,16],[-4,114],[-6,37],[-12,26],[-5,15],[-1,20],[0,21],[0,3],[-2,17],[-1,21],[8,33],[0,18],[-3,11],[-8,18],[-2,13],[1,10],[6,27],[0,10],[-6,44],[-1,5],[-8,10],[-3,7],[0,10],[2,22],[-2,11],[-3,9],[-7,17],[-1,10],[2,20],[0,11],[-7,45],[0,22],[3,18],[5,17],[3,20],[0,5],[-2,10],[-1,5],[1,5],[1,10],[1,4],[-1,13],[-2,7],[-4,4],[-6,4],[-9,10],[-7,16],[-5,19],[-2,21],[-1,50],[-2,15],[-3,6],[-11,17],[-14,37],[-3,-12],[-1,-4],[-5,6],[-17,4],[-5,4],[-4,6],[-4,4],[-3,-4],[-4,-2],[-48,5],[-4,2],[-5,6],[-8,16],[-16,18],[-8,16],[-7,20],[-7,36],[-3,6],[-4,1],[-20,-7],[-5,-3],[-3,-5],[-2,-6],[-5,-12],[0,-4],[-2,-9],[-1,-3],[-2,-2],[-1,-1],[-4,-17],[-3,-6],[-10,-14],[-2,-2],[-3,-2],[-2,-4],[3,-10],[-1,-5],[-5,2],[-9,22],[-5,4],[-1,-2],[-2,-11],[-2,-4],[-2,-3],[-1,1],[0,2],[-2,1],[-10,-5],[-2,-1],[-3,3],[-1,-1],[-1,-4],[-2,-5],[-6,-14],[-4,-3],[-6,2],[-1,8],[-3,15],[-3,9],[-3,-16],[-3,1],[-5,5],[-2,0],[-3,-1],[-1,2],[0,10],[-3,-4],[-3,0],[-7,4],[-4,0],[-9,1],[-4,-2],[-2,-1],[-1,0],[-2,1],[-5,2],[-1,2],[-1,3],[0,1],[-2,3],[-8,6],[-5,1],[-2,-1],[-2,-2],[-1,-2],[-3,1],[-2,3],[-1,9],[-1,3],[-4,-2],[-7,-12],[-5,-2],[-13,6],[-4,1],[0,-2],[-1,-3],[-1,-4],[-3,0],[-5,5],[-2,1],[-1,-3],[-2,0],[-9,11],[-4,3],[-3,1],[-6,4],[-2,0],[-11,-5],[-6,9],[-2,1],[-4,1],[-1,-1],[-1,-1],[-3,-2],[-6,-2],[-5,2],[-4,7],[-3,12],[-4,24],[-3,2],[-2,-1],[-2,-2],[-3,-2],[-6,1],[-4,2],[-3,1],[-6,-5],[-1,0],[-3,2],[-1,0],[0,-2],[-1,-3],[0,-3],[1,-1],[-3,-4],[-3,-1],[-2,2],[-3,0],[-5,-8],[-3,-1],[-1,2],[-4,8],[-3,3],[-2,0],[-4,-4],[-3,0],[-10,6],[-3,7],[-3,10],[-3,5],[-4,4],[0,6],[0,9],[0,8],[6,35],[1,6],[3,5],[6,24],[1,7],[-2,14],[-4,10],[-2,8],[2,10],[3,13],[1,12],[-1,10],[-1,12],[13,39],[-2,6],[-3,4],[-3,8],[-3,11],[-2,10],[2,10],[4,13],[2,12],[-3,5],[-5,5],[-2,10],[0,13],[1,13],[4,20],[19,57],[2,15],[-3,6],[-5,3],[-2,6],[-1,3],[-2,3],[-1,5],[0,7],[2,5],[7,12],[7,18],[4,25],[1,28],[-2,26],[-4,18],[0,9],[7,23],[3,14],[-1,13],[-5,9],[-1,-11],[-2,0],[-6,14],[-7,11],[-1,0],[-1,1],[-2,1],[-2,3],[-1,7],[3,7],[11,13],[3,6],[0,11],[-4,9],[-4,6],[-6,2],[-7,2],[-2,3],[2,6],[4,6],[3,7],[3,3],[6,3],[3,3],[2,4],[-1,6],[-2,5],[-4,6],[-2,3],[-1,4],[-2,9],[-1,3],[-4,6],[-4,1],[-4,-4],[-2,-21],[-3,-1],[-2,4],[-2,7],[0,7],[2,11],[0,7],[-1,6],[-4,12],[-1,8],[1,13],[-1,7],[-3,14],[-1,14],[0,15],[0,12],[5,17],[0,11],[-4,5],[-5,2],[-6,7],[-6,9],[-5,11],[-2,10],[-2,14],[0,15],[2,17],[-1,5],[-2,5],[-2,2],[-3,0],[-2,-4],[-1,-3],[-2,-1],[-5,7],[-2,11],[2,10],[11,7],[-1,7],[-3,6],[-2,4],[-1,2],[-3,-1],[-1,2],[-1,10]],[[30673,43984],[-6,0],[-34,-8],[-9,4],[-11,14],[-5,4],[-7,2],[-11,-2],[-6,1],[-5,3],[-12,1],[-67,-72],[-11,-8],[-14,-6],[-14,-2],[-14,5],[-13,14],[-7,13],[-13,31],[-7,14],[-6,-3],[-24,-40],[0,48],[0,75],[0,76],[0,75],[1,75],[0,76],[0,75],[0,76],[0,49],[0,26],[0,35],[3,24],[1,6],[2,6],[3,4],[3,3],[1,0],[3,-4],[2,1],[1,3],[1,7],[1,4],[3,10],[2,10],[1,11],[-2,12],[-3,9],[-9,14],[-3,9],[-1,10],[-2,20],[-3,11],[1,0],[8,1],[1,-1],[4,-2],[2,2],[-3,14],[0,7],[3,6],[3,2],[-1,2],[0,5],[-1,2],[5,4],[2,8],[0,10],[3,10],[1,2],[-1,8],[-11,-3],[-6,-3],[-5,-5],[-6,-11],[-10,-25],[-5,-11],[-18,-22],[-6,-9],[-10,-22],[-6,-10],[-14,-15],[-4,-11],[-8,-25],[-4,-5],[-7,-10],[-3,-5],[-2,-7],[-4,-15],[-2,-7],[-5,-8],[-17,-10],[-19,-17],[-4,-8],[-4,-13],[-2,-13],[-4,-12],[-14,-9],[-9,-17],[-6,-6],[-4,0],[-2,3],[-2,3],[-3,3],[-4,-1],[-1,-4],[-2,-4],[-2,-5],[-5,-3],[-11,1],[-49,0],[-50,0],[-49,0],[-50,0],[-15,0],[3,13],[1,10],[-1,10],[1,13],[1,6],[5,11],[0,7],[-1,6],[-2,12],[-1,7],[-5,24],[-20,25],[-3,23],[3,22],[1,11],[-2,11],[-7,19],[-3,10],[-1,12],[1,18],[-1,5],[-1,5],[-3,1],[-3,-1],[-3,0],[-5,7],[-8,15],[-5,6],[-6,2],[-17,-2],[-12,3],[-5,3],[-12,12],[-11,7],[-6,3],[-1,-1],[-2,-3],[-1,-1],[-2,1],[-2,5],[-1,1],[-34,14],[-112,2],[6,19],[15,32],[6,18],[5,19],[3,9],[3,4],[4,2],[5,2],[3,5],[2,7],[0,16],[13,22],[3,7],[2,11],[1,18],[-3,50],[-1,9],[-8,25],[-4,8],[-10,14],[-4,8],[-22,66],[-4,25],[-4,11],[-4,10],[-6,6],[-16,7],[-6,7],[-5,10],[-11,33],[-2,9],[0,12],[2,26],[0,12],[-2,11],[-4,8],[-2,2],[-6,2],[-3,2],[-3,6],[-4,12],[-3,6],[-22,25],[-4,8],[-2,12],[-2,24],[-2,15],[-8,23],[-4,14],[0,11],[1,22],[0,11],[-3,14],[-9,26],[-2,14],[-5,19],[-10,12],[-12,10],[-8,13],[-2,8],[-3,29],[0,10],[4,0],[10,-7],[9,12],[3,23],[-3,23],[-8,15],[-11,6],[-8,8],[-8,11],[-36,81],[-12,14],[-2,10],[9,9],[4,3],[4,13],[0,13],[2,9],[2,9],[-2,16],[-8,28],[-1,11],[6,0],[11,-9],[5,-1],[7,5],[10,13],[5,3],[7,1],[11,-1],[5,2],[5,6],[3,12],[-1,11],[-2,11],[-3,25],[-19,58],[-1,5],[-2,9],[2,15],[4,17],[7,53],[0,33],[2,10],[3,7],[12,15],[2,8],[4,15],[3,6],[8,10],[14,24],[22,27],[19,35],[11,14],[10,19],[6,4],[20,0],[12,7],[10,11],[7,17],[7,24],[4,25],[2,13],[0,13],[-2,13],[-6,27],[-2,14],[-3,47],[-1,11],[-14,32],[-2,14],[0,27],[4,23],[6,20],[16,75],[10,19],[29,82],[3,16],[3,18],[5,54],[0,17],[-2,19],[-2,20],[3,19],[8,36],[1,9],[2,26],[2,8],[3,8],[3,9],[0,9],[-1,36],[-2,10],[-2,8],[-2,11],[1,8],[6,4],[4,0],[2,1],[4,5],[0,2],[1,9],[0,3],[2,0],[3,-2],[2,-1],[11,5],[5,5],[4,9],[3,6],[5,-1],[6,-4],[15,0],[3,2],[2,5],[1,5],[0,6],[1,6],[4,8],[8,8],[7,15],[4,7],[5,5],[5,2],[4,0],[2,3],[1,6],[1,5],[0,2],[0,3],[1,4],[0,3],[2,1],[3,1],[2,0],[6,7],[5,7],[2,9],[2,33],[3,7],[12,6],[1,3],[1,5],[1,4],[4,2],[10,-3],[4,0],[5,3],[5,7],[14,22],[15,18],[6,9],[3,9],[5,22],[2,4],[2,0],[3,-3],[3,-2],[2,1],[2,4],[5,8],[8,6],[13,27],[7,11],[5,3],[23,5],[2,1],[1,3],[0,4],[1,4],[2,2],[3,0],[7,-7],[3,-2],[5,2],[3,5],[3,2],[5,-7],[3,-6],[2,-3],[2,1],[4,2],[5,12],[3,2],[-1,-12],[13,11],[4,1],[7,-3],[2,-1],[1,4],[2,13],[2,5],[4,4],[4,1],[8,0],[13,4],[4,-1],[3,-4],[1,-7],[3,-3],[3,3],[1,2],[3,7],[2,2],[1,-1],[2,-1],[1,-1],[3,8],[0,6],[-1,6],[1,7],[4,8],[7,3],[6,-2],[8,-18],[4,9],[4,13],[4,6],[2,-4],[3,-13],[2,-5],[5,-1],[2,3],[4,13],[7,6],[14,-13],[6,10],[1,13],[4,-11],[6,-11],[6,12],[2,11],[4,10],[8,17],[3,10],[1,11],[3,8],[4,5],[4,3],[1,5],[-2,15],[0,8],[4,7],[13,13],[3,1],[17,-10],[5,0],[4,5],[3,18],[2,6],[5,4],[4,-2],[0,-8],[-1,-11],[1,-9],[13,-16],[2,6],[1,11],[2,10],[5,5],[4,-4],[1,-9],[1,-8],[3,-4],[4,3],[11,19],[5,4],[4,2],[4,0],[5,-4],[6,-14],[4,-2],[5,17],[3,-2],[4,-8],[2,-8],[0,-12],[-2,-23],[0,-10],[3,-8],[14,-23],[2,-2],[3,0],[2,-1],[2,-6],[2,-9],[3,-8],[5,10],[5,22],[4,11],[5,6],[6,1],[5,-5],[3,-10],[2,-15],[1,-4],[4,-8],[3,-5],[4,-2],[4,1],[9,14],[5,15],[3,15],[-1,17]],[[30565,47961],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,2],[8,95],[8,96],[8,95],[9,95],[8,96],[8,95],[8,96],[8,95],[8,96],[8,95],[9,96],[8,95],[8,95],[8,96],[8,95],[8,96],[3,36],[4,30],[0,12],[5,40],[0,28],[5,54],[-1,27],[6,33],[-3,18],[-10,36],[0,7],[1,12],[1,7],[-2,22],[1,2],[-1,4],[-1,2],[-1,2],[-3,1],[-2,3],[-6,18],[-3,4],[-6,5],[-2,5],[-2,7],[0,6],[1,6],[0,7],[-2,6],[-2,4],[-2,2],[-2,3],[-2,9],[-1,6],[1,15],[-2,8],[-11,25],[-3,14],[2,11],[9,28],[2,14],[-1,7],[-2,5],[-1,5],[-2,6],[0,5],[-1,18],[-1,13],[-2,12],[-4,10],[-4,9],[-5,6],[-22,17],[-5,8],[-8,19],[-3,4],[-6,7],[-3,4],[-2,6],[-3,13],[-1,5],[-5,7],[-11,5],[-5,5],[-3,5],[-6,19],[-15,28],[-10,26],[-4,13],[-1,21],[0,29],[0,16],[1,39],[1,57],[0,64],[1,65],[1,56],[0,40],[1,15],[0,41],[4,-8],[6,3],[5,6],[7,0],[6,-2],[6,1],[5,4],[19,2],[11,5],[11,8],[9,11],[11,18],[4,0],[8,-7],[9,-4],[4,10],[3,13],[6,5],[5,1],[9,13],[5,5],[7,2],[6,-3],[5,-7],[20,-43],[1,-2],[6,6],[6,3],[5,0],[3,-6],[-1,-16],[5,0],[10,-3],[4,1],[2,3],[3,9],[2,2],[3,1],[5,-5],[3,0],[5,3],[2,8],[-1,10],[-3,14],[-2,4],[-6,6],[-3,4],[0,8],[2,6],[3,4],[1,6],[0,14],[-2,26],[0,13],[2,2],[3,1],[2,3],[0,8],[-2,5],[-3,4],[-7,5],[-4,9],[1,22],[-6,8],[-1,6],[0,7],[-1,5],[-2,4],[-4,7],[-5,13],[-4,6],[-14,15],[-5,2],[-4,-3],[-13,-20],[-3,1],[-5,7],[-2,2],[0,3],[-2,3],[-2,2],[-3,1],[-9,-3],[-9,0],[-3,1],[-12,8],[-6,1],[-27,-8],[-3,1],[0,13],[-3,3],[-3,1],[-4,1],[-7,-4],[-11,-16],[-7,1],[0,36],[0,40],[1,41],[0,41],[0,40],[0,41],[0,41],[0,40],[0,41],[-2,23],[4,0],[10,0],[5,3],[12,13],[4,3],[5,-1],[6,-2],[12,2],[19,19],[10,1],[21,-9],[21,-19],[11,-3],[13,0],[35,0],[50,1],[57,0],[57,0],[49,0],[35,0],[14,0],[20,0],[-4,5],[-3,4],[0,4],[0,7],[-1,5],[-2,3],[-11,1],[0,11],[0,13],[-2,7],[-7,2],[-2,2],[5,17],[17,89],[2,4],[2,-4],[0,-12],[0,-4],[3,-5],[2,-2],[5,-2],[7,-6],[4,-8],[3,-11],[6,-38],[6,-26],[7,-23],[9,-16],[10,-6],[10,1],[9,5],[10,7],[11,13],[8,17],[34,95],[21,49],[11,10],[7,14],[5,7],[10,2],[2,3],[5,11],[2,3],[5,-1],[12,-9],[4,-5],[7,-15],[6,-21],[8,-47],[7,-25],[30,-85],[11,-47],[10,-62],[2,-38],[-7,-170],[1,-31],[3,-15],[5,-2],[25,14],[18,11],[10,5]],[[31423,51194],[5,-10],[14,-26],[19,-36],[21,-42],[22,-41],[19,-36],[13,-26],[6,-10],[11,-22],[17,-26],[17,-8],[16,10],[5,1],[6,-5],[4,-7],[5,-6],[6,-1],[6,6],[9,21],[6,6],[13,1],[5,3],[6,8],[5,12],[11,28],[6,12],[6,8],[24,24],[11,15],[7,4],[5,2],[20,-2],[6,2],[4,-1],[3,-3],[4,-6],[3,-6],[6,-17],[3,-12],[2,-13],[1,-14],[-5,-28],[-8,-23],[-7,-23],[1,-28],[3,-12],[3,-9],[5,-4],[7,1],[6,5],[7,8],[6,10],[5,19],[5,12],[1,8],[0,17],[0,5],[3,14],[3,12],[17,44],[5,5],[7,0],[12,-4],[5,1],[6,6],[6,18],[3,25],[3,49],[6,28],[10,5],[12,-2],[10,5],[0,2],[1,8],[0,3],[1,2],[3,2],[1,2],[9,17],[3,3],[7,4],[5,1],[5,3],[5,9],[6,14],[5,7],[5,0],[14,-14],[5,-2],[6,3],[35,49],[4,11],[5,27],[6,14],[6,10],[15,16],[12,18],[6,8],[7,2],[6,-8],[0,-11],[-6,-25],[-2,-11],[-1,-15],[2,-13],[5,-7],[5,5],[3,10],[5,24],[6,13],[19,30],[16,32],[13,16],[5,12],[5,15],[3,14],[2,11],[1,11],[-1,36],[4,37],[2,51],[5,20],[11,18],[10,8],[11,2],[33,-1],[5,1],[6,7],[40,68],[16,15],[3,1],[8,-2],[3,0],[18,7],[9,8],[3,12],[-1,11],[1,9],[4,19],[4,18],[1,9],[-1,40],[1,9],[2,21],[-1,8],[-5,4],[-35,3],[-18,5],[-36,2],[-17,-5],[-18,0],[-34,19],[-16,4],[-6,-3],[-4,5],[-3,10],[0,13],[2,15],[11,41],[1,11],[1,34],[1,15],[1,5],[-1,7],[-3,11],[-5,32],[-22,88],[-8,24],[-10,38],[-9,22],[-5,21],[-1,24],[3,51],[-1,25],[-7,74],[1,15],[2,10],[8,22],[2,10],[1,11],[0,22],[-2,15],[-6,12],[-12,22],[-16,42],[-7,9],[-13,10],[-11,13],[-27,45],[-12,36],[-6,13],[-13,22],[-5,14],[-13,51],[-3,24],[-2,10],[-4,10],[-6,7],[-6,4],[-5,7],[-3,13],[-1,12],[1,13],[2,12],[4,7],[13,2],[12,-14],[11,-22],[4,-11],[3,-10],[4,-26],[4,-13],[5,-4],[63,19],[34,-5],[19,-11],[7,-8],[6,-13],[5,-18],[3,-20],[5,-42],[4,-25],[7,-17],[12,-1],[11,12],[11,17],[12,12],[12,0],[11,-10],[6,-3],[6,1],[16,8],[5,2],[14,-7],[19,-35],[12,-13],[11,8],[4,20],[2,23],[7,17],[9,2],[11,-8],[18,-22],[10,-21],[16,-47],[17,-26],[30,-74],[4,-13],[3,-10],[7,-9],[6,-8],[6,-4],[6,-1],[5,-1],[5,3],[6,7],[5,11],[3,2],[4,-1],[3,0],[3,4],[4,11],[6,22],[3,24],[0,25],[-3,24],[-5,23],[0,15],[-2,5],[-1,3],[-2,7],[-1,16],[2,12],[3,12],[2,15],[-1,13],[-1,11],[2,9],[6,8],[4,2],[16,3],[23,-7],[8,4],[3,23],[0,13],[1,9],[2,7],[6,4],[9,4],[2,3],[2,4],[1,10],[1,4],[10,5],[12,-6],[53,-46],[11,-3],[12,9],[21,32],[12,4],[6,-4],[5,-4],[5,-4],[7,0],[6,2],[5,5],[6,5],[4,6],[15,33],[6,8],[5,4],[6,1],[10,-1],[9,-5],[2,-1],[4,1],[5,5],[3,1],[4,0],[2,-3],[3,0],[4,4],[3,4],[2,7],[2,7],[1,7],[2,45],[4,17],[12,10],[5,1],[16,-2],[6,1],[8,3],[7,5],[4,9],[-1,12],[-7,24],[2,7],[5,2],[16,-5],[5,-3],[10,-10],[4,-2],[5,1],[16,9],[23,6],[10,10],[8,23],[2,12],[2,26],[8,37],[2,5],[2,2],[6,0],[2,0],[27,26],[13,17],[10,20],[19,49],[6,29],[-2,28],[-19,103],[-5,10],[-8,6],[-8,2]],[[33127,53550],[13,6],[6,1],[17,-3],[3,-1],[3,-3],[3,-4],[3,-3],[4,-1],[16,5],[5,-3],[2,-3],[2,-4],[2,-3],[2,0],[3,4],[3,12],[2,3],[6,1],[12,-9],[6,0],[6,8],[11,24],[5,6],[12,6],[3,-2],[3,-14],[4,-8],[12,10],[3,-7],[9,-44],[0,-1],[4,-9],[6,-9],[12,-15],[8,-8],[0,-17],[-5,-36],[0,-23],[-1,-11],[-2,-11],[-2,-17],[-1,-36],[-4,-26],[2,-26],[-1,-11],[-2,-10],[-2,-10],[-8,-24],[-1,-7],[-1,-7],[0,-6],[-1,-6],[-3,-5],[-2,-2],[-6,0],[-2,-1],[-8,-17],[-1,-11],[2,-11],[3,-9],[4,-4],[3,-2],[3,0],[2,3],[0,6],[2,5],[3,0],[3,-4],[1,-4],[2,-11],[3,-1],[4,2],[5,2],[7,-5],[3,-1],[2,4],[1,5],[3,1],[3,0],[3,-1],[2,-3],[4,-12],[2,-3],[2,1],[6,6],[3,0],[1,-3],[0,-7],[1,-4],[1,-1],[3,0],[1,0],[6,-3],[3,1],[2,5],[4,-10],[16,-19],[2,-5],[2,-6],[3,-5],[3,-2],[3,-1],[1,-2],[0,-5],[0,-5],[-2,-14],[-9,-21],[-3,-11],[0,-2],[3,-7],[1,-4],[-1,-4],[-3,-7],[0,-3],[-1,-11],[0,-5],[1,-6],[3,-16],[4,-7],[12,-8],[6,-10],[0,-9],[-4,-9],[0,-14],[2,-9],[10,-19],[4,-15],[1,-3],[1,-4],[0,-15],[2,-2],[3,0],[8,-3],[4,-3],[2,-4],[0,-6],[0,-5],[-2,-3],[-2,0],[-6,-5],[-5,-11],[-4,-14],[-2,-12],[1,-13],[1,-10],[-1,-8],[-5,-10],[-11,-10],[-4,-8],[-2,-15],[0,-7],[0,-5],[0,-5],[-2,-7],[-2,-4],[-7,-6],[-10,-21],[-23,-17],[-7,-16],[0,-18],[4,-13],[5,-12],[3,-15],[-5,-24],[-1,-11],[5,4],[-1,-29],[0,-4],[2,-7],[0,-5],[-2,-2],[-2,-1],[-2,0],[0,-1],[-3,-20],[-8,-25],[-1,-6],[-4,-27],[-1,-5],[-2,-4],[-2,-5],[0,-7],[1,-4],[2,-6],[1,-4],[-1,-2],[-3,-1],[-1,-2],[0,-3],[2,-7],[1,-4],[-1,-4],[-2,-2],[-2,-1],[-1,-3],[-8,-25],[-2,-14],[-2,-15],[1,-34],[0,-13],[-6,-48],[-2,-97],[1,-11],[9,-37],[0,-3],[-2,-7],[0,-2],[1,-2],[4,-3],[1,-3],[2,-9],[1,-5],[0,-7],[1,-12],[8,-38],[0,-7],[1,-12],[0,-7],[0,-6],[-3,-10],[0,-6],[3,-11],[5,-8],[11,-12],[9,-16],[3,-4],[3,-1],[5,0],[3,-1],[6,-15],[0,-20],[-1,-23],[0,-22],[2,-18],[1,-6],[-1,-6],[-4,-10],[0,-6],[0,-8],[3,-12],[1,-7],[0,-5],[-2,-10],[0,-5],[0,-15],[0,-5],[-1,-7],[-4,-11],[-1,-7],[0,-9],[1,-13],[1,-13],[3,-6],[3,0],[6,4],[3,0],[10,-9],[4,-2],[1,1],[1,-1],[0,-7],[-5,-24],[-5,-13],[1,-5],[6,-13],[2,-5],[3,-3],[3,-1],[6,0],[5,3],[5,2],[6,-4],[5,-11],[8,-27],[5,-12],[8,-15],[3,-6],[5,-21],[3,-6],[1,-1],[4,-1],[1,-2],[1,-3],[2,-9],[1,-3],[4,-2],[5,3],[3,0],[3,-9],[1,-11],[1,-11],[5,-6],[2,-6],[6,-29],[4,-10],[5,-5],[17,-13],[47,-17],[11,-9],[1,-1],[6,-7],[5,-9],[4,-14],[2,-13],[2,-12],[7,-12],[6,-5],[5,-2],[5,1],[5,2],[7,6],[5,8],[5,10],[8,24],[3,5],[4,1],[28,-6],[2,2],[4,6],[1,1],[1,-2],[2,-2],[1,-2],[0,-2],[2,-1],[2,-3],[2,0],[9,29],[2,11],[0,14],[-2,12],[-5,24],[-2,12],[3,9],[1,2],[20,7],[4,1],[7,11],[0,6],[-1,12],[0,6],[2,4],[6,6],[3,4],[2,7],[1,8],[2,8],[4,5],[1,-1],[2,-10],[2,-4],[5,-6],[6,-3],[6,-2],[6,-1],[3,2],[3,4],[3,1],[4,-5],[2,-6],[2,-13],[2,-5],[9,-5],[13,-1],[12,5],[4,11],[5,20],[2,10],[1,11],[-2,18],[0,9],[2,4],[4,-1],[8,-7],[5,-1],[5,4],[9,12],[23,21],[9,5],[9,-1],[24,-9],[8,1],[13,7],[9,13],[18,50],[3,11],[7,39],[3,5],[4,3],[6,7],[4,8],[3,10],[4,8],[7,5],[6,-2],[10,-13],[6,-2],[24,31],[13,12],[9,-15],[1,-16],[4,-13],[5,-9],[7,-8],[5,-2],[5,0],[9,2],[6,0],[2,-4],[2,-5],[5,-8],[3,-3],[20,-7],[4,0],[3,3],[12,21],[4,1],[6,-2],[5,0],[4,5],[4,6],[4,4],[6,-2],[4,-6],[4,-6],[4,-5],[5,1],[8,10],[13,11]],[[33492,58263],[-1,-20],[-7,-15],[-5,-8],[-4,-5],[-6,-13],[-2,0],[-2,0],[-1,-1],[-2,-2],[-3,10],[-5,6],[-6,3],[-4,0],[-2,1],[-4,5],[-3,13],[-4,26],[-2,80],[1,9],[2,8],[4,9],[5,4],[5,-6],[3,-12],[2,-6],[2,-9],[5,-24],[4,-11],[5,-8],[7,-11],[4,-5],[6,-4],[5,-5],[3,-9]],[[81984,53377],[0,-14],[3,-6],[4,-3],[3,-5],[7,-22],[18,-111],[2,-14],[-1,-11],[-2,-23],[0,-23],[1,-25],[4,-24],[6,-18],[10,-19],[4,-13],[1,-12],[-4,-10],[-6,1],[-7,6],[-5,7],[-2,2],[-6,-1],[-2,3],[-5,8],[-2,2],[-8,-2],[-6,2],[-16,13],[-4,5],[-2,9],[-3,58],[-3,23],[-10,46],[-2,23],[-1,49],[2,47]],[[81952,53325],[5,-12],[5,7],[6,13],[6,7],[6,3],[0,7],[-2,9],[-2,10],[1,5],[1,2],[3,1],[3,0]],[[81666,53195],[70,-5],[21,8],[19,23],[27,21],[10,7],[6,13],[4,17],[10,21],[34,57],[10,14],[47,60],[36,32],[7,2],[5,-5],[0,-7],[-4,-7],[-8,-8],[-3,-8],[-4,-23],[-1,-7],[-2,-8],[-9,-18],[-2,-9]],[[81939,53365],[-7,-13],[-1,-10],[0,-9],[-2,-9],[-4,-6],[-5,-1],[-5,2],[-5,1],[-6,-4],[-5,-6],[-9,-19],[-5,-6],[-10,-9],[-3,-5],[0,-10],[2,-11],[5,-22],[2,-12],[1,-13],[1,-70],[2,-21],[5,-17],[5,-4],[4,1],[2,-3],[0,-16],[-3,-23],[-2,-10],[-3,-10],[-7,-14],[-1,-3],[-2,-6],[0,-12],[9,8],[1,-11],[-2,-11],[-7,-20],[-1,-11],[-2,-25],[-2,-8],[-26,-52],[-13,-17],[-11,3],[-2,5],[-2,15],[-1,6],[-2,4],[-6,9],[-18,34],[-4,12],[-2,11],[-6,38],[-4,8],[-5,0],[-11,-4],[-12,5],[-10,1],[-1,6],[0,9],[0,3],[4,7],[1,6],[-2,27],[-3,12],[0,16],[-3,17],[-1,6],[-3,7],[-1,4],[0,5],[-1,4],[-2,1],[-4,1],[-2,1],[-2,12],[-3,5],[-7,6],[-9,15],[-6,6],[-15,5],[-18,19]],[[75453,66909],[-2,-25],[-13,-35],[-2,-23],[6,-43],[3,-8],[8,-13],[2,-9],[5,-10],[6,-4],[7,-2],[6,-5],[5,-12],[0,-10],[1,-4],[9,2],[21,14],[8,2],[10,-1],[3,2],[9,12],[3,2],[6,-14],[24,-85],[1,-7],[-1,-11],[-9,-14],[-4,-8],[-1,-6],[-1,-11],[-1,-5],[-1,-5],[-4,-7],[-1,-2],[0,-2],[-2,-9],[-2,-10],[-1,-11],[0,-11],[4,-19],[14,-27],[4,-19],[5,-34],[-1,-9],[-2,-20],[-10,-19],[-17,-5],[-5,4],[-9,15],[-5,3],[-4,-2],[1,-8],[0,-8],[-6,-6],[3,-8],[0,-9],[-2,-7],[-4,1],[-3,8],[-1,10],[-2,8],[-5,6],[-8,-3],[-18,-22],[-8,-8],[-13,-3],[-5,0],[-12,7],[-5,0],[-10,-7],[-5,0],[-4,6],[-6,26],[-3,8],[-4,2],[-11,1],[-4,-1],[-5,-6],[-3,-10],[-2,-10],[-3,-11],[-4,-7],[-4,-6],[-5,-4],[-5,-2],[-5,0],[-4,3],[-8,9],[-10,4],[-20,0],[-9,2],[-9,0],[-13,-12],[-2,-2],[-17,-1],[-64,-7],[-35,7],[-32,31],[-25,35],[-10,3],[-5,-3],[-4,-6],[-4,-8],[-5,-6],[-5,-3],[-10,0],[-5,0],[-9,-12],[-7,-36],[-7,-12],[-11,-5],[-32,-6],[-17,-9],[-6,-1],[-3,0],[-6,4],[-2,1],[-1,1],[-2,3],[-2,0],[-1,-2],[-1,-3],[0,-3],[0,-1],[0,-1],[0,-4],[-1,-4],[-2,-2],[-1,0],[-2,2],[-1,0],[-11,0],[-2,0],[-4,2],[-15,12],[-6,1],[-10,-8],[-5,0],[-4,5],[5,17],[-1,10],[-7,11],[-11,8],[-11,3],[-18,-4],[-9,10],[-11,14],[-8,10],[-11,-6],[-4,1],[-4,-1],[-2,-4],[-3,-6],[-4,-4],[-7,-4],[-8,-2],[-16,2],[-9,5],[-4,8],[-2,12],[-4,15],[-4,10],[-7,9],[-6,6],[-6,-1],[-3,-4],[-3,-1],[-3,0],[-3,4],[-2,6],[0,5],[0,7],[-1,7],[-4,11],[-6,-1],[-5,-9],[-5,-11],[-1,29],[0,33],[-2,15],[-3,13],[-7,9],[-17,18],[-3,4],[-1,1],[3,17],[4,19],[6,17],[7,9],[17,9],[4,6],[2,3],[3,17]],[[74692,66646],[6,9],[10,-1],[6,-10],[7,11],[-5,14],[-5,23],[-3,24],[2,14],[2,13],[5,8],[-1,3],[-1,6],[-1,6],[1,8],[4,4],[4,7],[-1,6],[4,9],[5,2],[1,9],[4,9],[3,4],[8,6],[3,-1],[1,-1],[1,0],[3,-2],[1,-2],[1,7],[8,23],[12,38],[5,24],[2,22],[9,12],[12,9],[10,15],[9,24],[13,47],[1,4],[7,21],[4,10],[5,8],[5,4],[6,8],[12,31],[5,6],[6,3],[33,12],[10,9],[5,17],[2,9],[5,7],[9,11],[2,5],[5,12],[2,5],[3,3],[2,-2],[10,11],[10,-5],[5,6],[6,2],[22,14],[15,-6],[8,-8],[6,2],[7,14],[7,6],[10,-14],[0,-21],[8,-23],[11,-3],[7,26],[9,0],[8,-10],[11,0],[14,-19],[12,-2],[11,-8],[2,-20],[-8,-6],[-5,-19],[-10,-2],[-8,-17],[-3,-31],[5,1],[5,0],[18,-5],[6,2],[7,2],[8,8],[5,2],[4,-2],[12,-15],[8,-4],[9,-4],[18,-2],[16,-7],[14,-22],[4,-8],[9,-9],[12,-2],[12,5],[7,14],[4,11],[12,26],[5,7],[7,3],[7,-2],[7,1],[6,11],[5,-21],[9,-15],[21,-21],[5,-4],[3,-1],[4,-2],[10,0],[11,-8],[12,-3],[6,-3],[6,-6],[4,-6],[4,-14],[-1,-11],[-3,-12],[-2,-15],[-1,-13],[2,-42]],[[57016,39932],[-11,-51],[0,-17],[2,-14],[8,-41],[11,-40],[8,-16],[9,-12],[9,-14],[5,-21],[9,-46],[9,-30],[3,-12],[2,-25],[2,-8],[3,-12],[18,-39],[10,-13],[4,-8],[13,-38],[8,-15],[11,-11],[7,-12],[3,-21],[1,-44],[10,-44],[35,-64],[8,-46],[0,-1],[-1,-12],[-5,-22],[-1,-12],[1,-15],[3,-11],[6,-23],[9,-23],[6,-26],[27,-152],[7,-22],[11,-13],[12,-7],[15,0],[3,-3],[3,-4],[2,-5],[3,-8],[0,-4],[-2,-13],[-2,-7],[-2,-2],[0,-1],[4,-5],[2,-2],[8,-3],[7,-7],[7,-24],[6,-10],[5,-4],[11,-5],[5,-4],[11,-15],[5,-10],[2,-11],[2,-13],[4,-8],[5,-5],[13,-7],[4,-5],[1,-2],[2,-4],[4,-11],[4,-9],[5,-5],[5,-2],[7,0],[10,-4],[32,-32],[10,-4],[9,0],[9,-2],[9,-10],[3,-6],[4,-13],[3,-5],[4,-3],[3,0],[2,0],[4,0],[6,-2],[5,-3],[5,-7],[4,-10],[14,-73],[5,-70],[-4,-85],[10,11],[10,2],[32,0],[22,-6],[16,6],[9,-9],[11,0],[5,-4],[4,-8],[2,-11],[0,-23],[-4,-21],[-2,-21],[7,-47],[1,-24],[-5,-48],[-1,-6],[-2,-5],[-2,-6],[0,-8],[0,-6],[-1,-14],[0,-6],[2,-33],[0,-12],[-3,-32],[0,-10],[2,-11],[9,-26],[5,-9],[19,-29],[8,-20],[7,-23],[10,-24],[3,-8],[0,-5],[0,-9],[1,-4],[2,-6],[4,-10],[8,-33],[1,-7],[-1,-4],[-2,-7],[-1,-6],[1,-1],[2,-1],[2,-4],[-2,-7],[1,-6],[2,-1],[1,1],[2,-2],[1,-5],[3,-12],[2,-6],[3,-7],[4,-5],[4,-3],[16,-2],[21,-8],[33,-1],[11,-4],[11,-8],[22,-23],[6,-3],[5,2],[4,3],[10,5],[3,3],[3,1],[9,-4],[8,-2],[4,-3],[11,-17],[13,-8],[40,-37],[9,-5],[17,-2],[8,-4],[5,-6],[11,-7],[4,-8],[1,-11],[-3,-14],[-5,-14],[-3,-13],[-1,-25],[2,-25],[5,-22],[9,-18],[10,-11],[10,-4],[26,2],[2,-2],[3,-7],[1,-5],[2,-12],[2,-5],[21,-37]],[[58152,37330],[-5,-3],[-8,1],[-15,7],[-7,-2],[-6,-7],[-4,-8],[-5,-4],[-34,-4],[-2,-2],[-6,-15],[0,-3],[-4,-5],[-6,-11],[-6,-17],[2,-41],[-1,-7],[-3,-5],[-6,-24],[-5,-8],[-12,3],[-7,-1],[-2,-7],[-2,-12],[-4,-6],[-5,-3],[-7,-2],[-12,-7],[-20,-23],[-10,-6],[-7,0],[-5,1],[-5,-1],[-6,-11],[-5,-2],[-17,9],[-23,-4],[-11,-5],[-10,-12],[-4,-7],[-10,-23],[-3,-3],[-7,-2],[-3,-1],[-2,-4],[-9,-22],[-1,-5],[-1,-8],[1,-7],[0,-5],[0,-5],[-2,-7],[-2,-5],[-3,-2],[-3,-1],[-2,-3],[-1,-3],[-2,-9],[-1,-4],[-4,-3],[-7,-4],[-5,-5],[0,-6],[2,-13],[-1,-13],[-3,-12],[-5,-9],[-3,-5],[-6,-5],[-6,-4],[-5,-2],[-3,-6],[0,-13],[2,-25],[-4,-17],[-10,-13],[-11,-10],[-11,-5],[2,-11],[-5,-3],[-6,1],[-3,1],[0,-5],[1,-5],[1,-4],[0,-3],[1,-1],[1,-3],[1,-2],[-2,-1],[0,-1],[-2,-3],[-1,-1],[-4,-22],[-1,-6],[-4,-4],[-4,3],[-8,17],[-11,-18],[-3,-2],[-4,2],[-4,4],[-3,0],[-2,-16],[-5,-12],[-2,-9],[0,-3],[0,-3],[-1,-3],[-1,-1],[-1,-1],[0,-4],[1,-5],[1,-4],[-2,-13],[-4,-11],[-6,-7],[-6,-4],[-11,-1],[-4,-2],[-2,-6],[-3,-7],[-2,-4],[-4,4],[2,9],[-3,1],[-4,-3],[-3,-3],[-1,-3],[-2,-7],[-3,-3],[-3,18],[-4,-7],[-7,-20],[-4,-9],[-5,-7],[-11,-10],[-10,-7],[-3,-7],[4,-11],[-3,-2],[-3,-1],[-2,3],[-2,4],[-1,-3],[-2,-5],[-1,-4],[-2,5],[-3,3],[-3,-1],[-1,-5],[1,-7],[2,-4],[2,-4],[-2,-7],[-3,4],[-3,0],[-3,-5],[-2,-7],[2,0],[-5,-7],[-2,-4],[-1,-5],[-2,2],[-1,2],[0,-12],[2,-10],[0,-9],[-4,-6],[-5,1],[-2,6],[-2,7],[-3,3],[-2,-5],[-5,-24],[-6,-19],[-1,-11],[1,-6],[0,-4],[-8,-29],[2,-12],[-1,-16],[-19,-157],[-1,-26],[-5,-52],[-3,-11],[-5,-8],[-5,-6],[-25,-16],[-6,-6],[-2,-9],[-17,-34],[-18,-23],[-8,-12],[-7,-18],[-8,-42],[-2,-7],[-18,-36],[-6,2],[-5,1],[-6,2],[-5,1],[-13,-4],[-31,-19],[-43,-26],[-9,-13],[-4,-4],[-14,1],[-9,-6],[-2,-1],[-2,-3],[0,-14],[3,-43],[-1,-24],[-3,-19],[-8,-36],[0,-22],[-9,-29],[-6,-40],[-24,-105],[-9,-77],[-3,-14],[-12,-57],[-6,-36],[-36,-54],[-20,-19],[-58,-12],[-11,4],[-13,8],[-11,3],[-10,-3],[-13,-11],[-17,-25],[-5,-4],[-17,-9],[-8,-2],[-8,4],[-9,4],[-20,-4],[-10,4],[-15,19],[-21,15],[-12,9],[-6,-1],[-5,-5],[-8,-3],[-14,4],[-11,17],[-20,44],[-12,14],[-15,-1],[-28,-15],[-6,-1],[-1,2],[2,6],[0,4],[-3,5],[-3,3],[-3,2],[-15,-7],[-5,6],[-4,12],[-13,17],[-10,27],[-3,3],[-5,4],[-3,3],[-2,5],[-3,12],[-2,5],[-16,9],[-3,7],[-2,6],[-30,45],[-7,8],[-8,7],[-3,4],[-3,8],[-5,12],[-2,5],[-4,3],[-4,-2],[-9,-6],[-5,-1],[-4,2],[-13,9],[-15,6],[-14,-2],[-13,-8],[-21,-19],[-2,-4],[-4,-4],[-1,3],[-2,6],[-2,5],[-6,2],[-7,-7],[-11,-21],[-1,-5],[-1,-5],[-1,-5],[-3,-4],[-4,-3],[-3,-4],[-2,-5],[-2,-7],[-5,-23],[-3,-7],[-7,-6],[-2,-6],[-5,-36],[-3,-9],[0,-5],[-1,-5],[2,-6],[3,-6],[1,-7],[-2,-5],[-4,-6],[-1,-5],[1,-5],[1,-6],[-1,-9],[0,-6],[-2,-6],[-12,-28],[-4,-12],[-2,-13],[0,-8],[1,-2],[2,-1],[2,-6],[2,-9],[0,-3],[-3,-10],[-4,-9],[-6,-9],[-3,-10],[4,-11],[1,-7],[1,-14],[-1,-14],[-2,-10],[-2,-7],[-3,-4],[-8,-6],[-3,-4],[0,-6],[2,-6],[-1,-6],[-11,-35],[-1,-1],[-3,-5],[-5,-8],[-3,-8],[-5,-20],[-5,-16],[-5,-3],[-12,5],[-9,-3],[-6,-10],[-10,-27],[-14,-27],[-7,-7],[-4,-2],[-13,-5],[-2,-3],[-3,-12],[-12,-22],[-5,-21],[-9,-47],[-10,-32],[-14,-27],[-17,-19],[-17,-8],[-27,0],[-9,-3],[-7,-6],[-4,-6],[0,-9],[2,-27],[1,-11],[-1,-11],[-3,-10],[-6,-10],[-15,-20],[-7,-5],[-6,0],[-16,9],[-24,1],[-13,12],[-7,2],[-12,-1],[-24,-12],[-4,0],[-7,2],[-4,-1],[-25,-13],[-8,0],[-37,15],[-11,14],[-12,9],[-15,-4],[-8,-7],[-12,-17],[-18,-16],[-6,-8],[-1,-2],[-2,6],[-2,19],[-3,6],[-4,6],[-2,3],[-2,4],[-3,17],[-3,21],[-2,22],[0,18],[6,40],[1,14],[-2,8],[-4,12],[-2,8],[-1,15],[1,17],[4,32],[1,7],[8,12],[4,9],[8,30],[16,39],[7,21],[5,23],[12,32],[1,9],[-11,36],[-1,11],[1,43],[-2,51],[-8,35],[0,2],[-3,7],[-2,1],[-2,-3],[-4,-3],[0,6],[3,11],[-6,39],[-3,11],[-3,5],[-7,6],[-2,6],[0,7],[3,12],[-1,7],[-2,4],[-3,0],[-3,3],[-1,6],[2,4],[6,7],[2,6],[-3,16],[-12,21],[0,17],[2,9],[8,10],[-3,6],[-3,0],[-2,-3],[-3,-2],[-2,3],[-1,6],[2,7],[0,5],[-4,-1],[-1,12],[-2,5],[-8,7],[-4,6],[-2,6],[-2,19],[-1,5],[-3,7],[-1,4],[0,5],[1,3],[1,4],[-1,5],[-1,4],[-5,5],[-2,3],[-1,4],[0,16],[-6,4],[-5,6],[-2,8],[2,10],[1,9],[-3,12],[-8,23],[-9,37],[-3,8],[-36,57],[-21,25],[-3,2],[-5,1],[-3,1],[-3,4],[-7,17],[-15,22],[-5,16],[-5,7],[-2,4],[-1,10]],[[55550,35811],[0,102],[0,102],[0,101],[0,102],[0,102],[0,17],[0,85],[-1,102],[0,102],[0,40],[0,62],[0,101],[0,102],[0,102],[0,89],[0,89],[0,89],[0,90],[0,51],[65,0],[65,0],[65,0],[65,0],[16,0],[4,21],[0,25],[-1,34],[0,34],[0,34],[0,34],[0,34],[0,34],[0,35],[0,34],[0,34],[0,34],[0,34],[0,34],[0,34],[0,34],[0,35],[0,34],[0,74],[-1,74],[0,74],[0,74],[0,74],[0,14],[0,60],[0,74],[0,74],[0,74],[0,74],[-1,74],[0,74],[0,74],[0,74],[0,47],[0,27],[0,74],[0,24],[0,24],[0,25],[0,24],[0,24],[0,24],[0,24],[0,24],[0,25],[0,24],[0,24],[0,24],[0,24],[0,25],[0,24],[0,24],[0,17],[5,0],[8,1],[16,1],[16,1],[16,2],[15,1],[13,1],[13,1],[13,1],[13,2],[6,0],[5,0],[5,2],[4,2],[5,2],[5,2],[23,9],[24,9],[23,10],[24,9],[23,9],[24,10],[23,9],[23,9],[24,9],[23,10],[24,9],[23,9],[24,10],[23,9],[23,9],[24,9],[24,10],[33,6],[24,4],[19,3],[11,-1],[3,-3],[2,-3],[0,-4],[0,-8],[1,-4],[2,-1],[2,-1],[1,-2],[0,-14],[0,-4],[1,-3],[3,-9],[3,-15],[9,-20],[1,-6],[0,-4],[0,-9],[0,-4],[2,-1],[2,-2],[3,-1],[3,6],[4,-7],[4,-10],[1,-5],[4,-3],[4,-1],[3,-3],[1,-7],[1,-6],[3,-5],[2,-6],[-3,-9],[10,-20],[2,-13],[-4,-12],[3,-8],[4,-25],[2,-25],[4,-6],[5,0],[10,7],[1,1],[2,3],[6,16],[6,2],[4,6],[26,57],[5,3],[3,7],[5,15],[3,6],[8,12],[5,8],[1,21],[9,14],[2,0],[2,-1],[1,-1],[1,-2],[1,4],[1,3],[4,5],[8,7],[2,3],[8,16],[2,3],[10,3],[10,14],[13,33],[10,10],[5,2],[6,-2],[3,-2],[5,-5],[2,-1],[3,4],[8,29],[4,9],[5,3],[9,-1],[6,-2],[4,-7],[4,-19],[2,-4],[2,-1],[2,-4],[0,-9],[10,-18],[3,2],[13,3],[3,1],[1,3],[3,10],[1,3],[1,2],[14,34],[5,8],[9,12],[8,19],[1,3],[2,2],[3,2],[2,1],[2,2],[2,8],[2,2],[6,3],[6,11],[5,3],[5,0],[21,14],[2,2],[2,4],[1,4],[1,3],[3,1],[-2,-8],[3,-4],[2,-5],[2,-3],[4,4],[3,-7],[3,1],[8,10],[3,-12],[8,0],[9,8],[10,19],[11,0],[18,-7]],[[56350,56936],[0,-16],[40,-121],[29,-43],[50,-104],[46,-157],[47,-158],[5,-26],[9,-103],[-2,-22],[-4,-18],[-10,-33],[-3,-17],[0,-7],[3,-14],[0,-8],[0,-19],[1,-5],[2,-8],[2,0],[1,-1],[2,-5],[0,-4],[-7,-46],[0,-10],[3,-18],[0,-9],[-3,-7],[-3,-6],[-11,-29],[-6,-13],[-3,-4],[-5,-2],[-9,1],[-4,-3],[-3,-10],[-2,-5],[-6,-75],[1,-15],[4,-12],[7,-9],[8,2],[10,21],[5,0],[2,-13],[0,-21],[-4,-34],[-5,-16],[-11,-27],[-4,-16],[0,-14],[2,-16],[5,-13],[5,-5],[4,2],[7,10],[4,5],[5,2],[5,-1],[4,-4],[4,-6],[4,-3],[9,0],[9,-5],[4,3],[9,9],[9,0],[18,-8],[16,3],[11,-10],[5,-2],[8,3],[29,-10],[15,5]],[[56713,55616],[3,0],[11,1],[5,-6],[-1,-8],[-5,-16],[-1,-8],[2,-9],[7,-12],[2,-7],[-2,-6],[-11,-16],[-3,-6],[-16,-56],[-3,-20],[-1,-19],[3,-17],[6,-15],[7,-12],[7,-9],[5,-3],[10,-5],[1,-1],[5,-1],[4,0],[2,0],[2,-3],[5,-7],[1,-2],[18,13],[10,2],[6,-13],[2,-6],[1,-4],[2,-2],[3,-1],[9,-12],[8,-1],[20,7],[15,-6],[6,0],[5,-2],[9,-10],[16,-4],[9,-8],[24,-47],[3,-10],[0,-21],[6,-12],[1,-11],[1,-4],[2,-4],[2,-3],[3,-3],[13,-32],[8,-13],[9,-7],[4,1],[8,4],[4,0],[7,-3],[2,-2],[1,-4],[2,-3],[7,-5],[4,-7],[2,-10],[3,-18],[4,-16],[2,-10],[0,-9],[-1,-25],[1,-9],[2,-9],[0,-8],[-1,-11],[-6,-11],[-18,-13],[-6,-12],[0,-8],[1,-9],[6,-30],[16,-18],[4,-6],[2,-4],[2,-9],[2,-4],[2,-3],[5,-3],[2,-3],[2,-8],[2,-17],[1,-9],[3,-8],[4,-6],[15,-17],[11,-17],[8,-7],[5,4],[4,-2],[5,-5],[12,-25],[4,-5],[18,-9],[5,-5],[6,-11],[3,-1],[5,0],[3,-3],[4,-9],[3,-2],[7,0],[2,-5],[0,-8],[2,-10],[4,-3],[13,-2],[5,-5],[1,-5],[0,-11],[2,-5],[8,-11],[3,-1],[6,-2],[3,-2],[1,-4],[0,-5],[1,-4],[3,-2],[13,-2],[2,-13],[1,-31],[2,-13],[2,-2],[1,0],[2,1],[2,0],[1,-2],[0,-3],[-1,-4],[1,-3],[1,-8],[0,-7],[1,-6],[3,-7],[6,-9],[5,-2],[5,-4],[8,-23],[12,-17],[4,-11],[10,-10],[16,-13],[14,-16],[0,-13],[0,-7],[-2,-6],[-4,-18],[-9,-25],[-6,-24],[-2,-4],[-3,-3],[-2,-4],[-2,-7],[5,-4],[0,-9],[-1,-11],[-1,-11],[2,-12],[3,-5],[4,-4],[6,-6],[4,-10],[7,-19],[5,-7],[12,-5],[4,-7],[1,-15],[0,-15],[3,-3],[4,0],[4,-2],[4,-9],[0,-12],[-2,-11],[-5,-8],[-5,-6],[-6,-8],[-4,-10],[-2,-12],[1,-12],[4,3],[11,16],[5,-3],[3,-10],[3,-13],[2,-10],[5,-8],[16,-12],[9,-2],[19,2],[20,-17],[5,-7],[3,-7],[2,-27],[2,-10],[7,-7],[6,1],[5,4],[3,-1],[3,-14],[3,-10],[6,-1],[12,7],[3,-7],[3,-17],[6,-8],[2,-9],[1,-3],[3,0],[5,3],[3,0],[11,-9],[3,-4],[2,-10],[0,-6],[1,-5],[6,-3],[4,-5],[3,-7],[2,-10],[1,-9],[0,-5],[1,-4],[1,-2],[5,-7],[0,-3],[0,-4],[-1,-10],[-1,-9],[0,-4],[2,-6],[1,0],[2,1],[1,1],[1,0],[1,2],[2,1],[3,-4],[1,-5],[-1,-11],[1,-5],[-11,-65],[-1,-9],[1,-8],[2,-15],[1,-29],[1,-9],[8,-37],[4,-18],[6,-15],[16,-22],[8,-14],[4,-23],[8,-13],[3,-7]],[[57622,53473],[-7,6],[-3,1],[-4,5],[-3,2],[-5,0],[-3,1],[-2,2],[-4,6],[-4,7],[-4,6],[-5,2],[-6,2],[-6,4],[-23,24],[-11,8],[-12,2],[-13,-8],[-10,-11],[-8,-12],[-8,-14],[-8,-19],[-2,-5],[-2,-14],[-2,-6],[-3,-7],[-1,-2],[-5,1],[-1,1],[-1,3],[-1,3],[-2,1],[-2,-1],[-3,-6],[-2,-1],[-2,3],[-11,26],[-2,2],[-4,2],[-13,0],[-3,-3],[-4,-7],[-3,-3],[-3,3],[-3,0],[-1,-7],[-2,0],[-2,7],[-5,1],[-5,-3],[-4,-9],[-1,4],[-2,-4],[-4,-4],[-4,-3],[-2,-1],[-5,1],[-7,6],[-4,1],[0,4],[-6,23],[-3,5],[-4,5],[-4,7],[-3,9],[-6,-5],[-2,-3],[-2,7],[-5,1],[-5,-2],[-7,3],[-6,5],[-5,8],[-2,10],[-1,-1],[-3,-2],[-2,-1],[0,10],[0,3],[-3,-3],[-2,5],[-2,18],[-1,-2],[-3,-6],[-1,3],[-2,2],[-1,3],[-4,-4],[-1,5],[-2,7],[-4,4],[-2,-6],[-1,-4],[-2,-2],[-2,0],[-2,1],[-1,1],[-2,2],[1,-16],[1,-4],[-2,2],[-3,1],[-2,-3],[-1,-6],[-1,-1],[-3,0],[-4,-1],[-3,-5],[-3,6],[-5,12],[-3,3],[-4,2],[-3,-2],[-1,-6],[0,-10],[-4,4],[-5,-2],[-4,-7],[0,-12],[-5,9],[-3,11],[-3,8],[-6,1],[-1,-4],[-3,-7],[-3,-3],[-2,12],[-1,4],[-1,5],[1,9],[-1,-2],[-3,-1],[-1,-1],[-1,14],[-4,4],[-2,-2],[3,-4],[-3,-8],[-4,0],[-4,3],[-3,5],[-7,18],[-4,6],[-6,4],[-1,1],[-1,1],[-2,5],[-2,1],[-3,-1],[-2,-4],[-2,-1],[-4,6],[0,4],[1,2],[1,2],[1,2],[1,3],[-6,-1],[-3,6],[-1,7],[-2,8],[-1,0],[-4,-1],[-5,1],[-3,-2],[2,-10],[-3,-2],[-7,-6],[-2,2],[-3,6],[-1,1],[-1,-2],[-12,-15],[-6,-3],[-5,7],[-3,-8],[-4,-3],[-2,-3],[3,-11],[-5,-4],[-4,-8],[-1,-12],[-1,-14],[-2,-7],[-3,-8],[-3,-11],[2,-13],[2,-2],[6,-2],[2,-4],[0,-4],[-2,-12],[0,-6],[-1,-4],[-4,-10],[-1,-7],[0,-14],[-1,-6],[-3,-6],[-4,-3],[-12,-2],[-3,-5],[-3,-4],[-18,-2],[-2,2],[-2,3],[-2,2],[-3,1],[-2,-6],[-2,-4],[-3,-2],[-1,-2],[-3,-12],[-2,-12],[-2,-2],[-10,6],[-9,11],[-11,7],[-3,0],[-2,-3],[-5,-7],[-1,-2],[-7,-3],[-10,-13],[-5,-5],[-3,1],[-3,2],[-2,2],[-3,-3],[-3,-6],[-3,-6],[-3,-1],[-3,7],[-5,-6],[-5,-1],[-18,4],[-3,3],[1,6],[3,10],[-3,6],[-9,6],[-3,5],[-1,7],[0,12],[-3,5],[-3,3],[-7,2],[-3,3],[-2,4],[-2,12],[-2,4],[-5,8],[-8,8],[-1,1],[-6,3],[-7,-4],[-1,-6],[1,-9],[-1,-4],[-4,3],[-2,5],[-2,18],[-2,6],[-4,-8],[-4,-14],[-2,-13],[3,-6],[7,-3],[1,-7],[-4,-8],[-5,-6],[-20,-5],[-2,-5],[-1,-2],[-3,-17],[-1,-6],[0,-6],[-1,-4],[-2,-4],[-2,0],[-2,15],[-4,4],[-6,-3],[-5,-7],[-8,-22],[-2,-3],[-4,2],[-6,8],[-3,2],[-5,-2],[-5,-5],[-7,-13],[-14,-14],[-5,-7],[-4,9],[-2,1],[-2,-2],[-1,-3],[-1,-6],[0,-7],[1,-6],[1,-7],[-7,0],[-12,5],[-2,-1],[-3,-5],[-2,-2],[-2,1],[-6,3],[-3,1],[-5,-4],[-11,-16],[-6,-5],[-12,-3],[-6,-4],[-11,-13],[-12,-7],[-6,-5],[-17,-29],[-5,-4],[-6,-1],[-5,-5],[-3,-8],[-2,-10],[-1,-7],[0,-5],[0,-4],[-1,-5],[-3,-2],[-5,1],[-2,-3],[-5,6],[-4,4],[-5,2],[-6,0],[-1,2],[-3,7],[0,2],[-2,1],[-6,3],[-2,2],[-4,16],[-7,10],[-1,2],[-4,4],[-7,21],[-4,8],[-12,-14],[-7,-2],[-6,6],[-3,5],[-3,4],[-4,4],[-4,1],[-3,3],[-2,8],[-1,9],[-3,12],[-3,16],[-2,5],[-3,0],[-4,-2],[-3,-4],[-3,-2],[-4,0],[-3,2],[-2,-1],[-3,-6],[-1,-7],[0,-8],[1,-7],[2,-6],[-2,-6],[-6,-10],[-3,-16],[-5,2],[-5,6],[-4,3],[-5,-3],[-3,-9],[-3,-20],[-2,-9],[-2,-8],[-3,-6],[-4,-5],[0,-7],[1,-12],[1,-6],[-1,-4],[-3,-10],[0,-4],[-1,-3],[-4,-6],[-1,-3],[0,-14],[0,-6],[-2,-6],[-4,-4],[-6,-2],[-12,1],[-5,-6],[-1,-14],[0,-17],[2,-11],[4,-12],[1,-5],[-1,-6],[-3,-7],[-3,-5],[-3,-2],[-3,-5],[-8,-32],[0,-6],[2,-13],[0,-5],[-1,-6],[-5,-9],[-1,-3],[-3,-9],[-5,-10],[-9,-15],[-2,-2],[-5,-4],[-3,-3],[-33,-3],[-27,13],[-6,8],[-6,5],[-3,4],[-5,11],[-2,3],[-5,4],[-14,6],[-6,5],[-8,8],[-2,1],[-3,0],[-2,-1],[-1,-1],[-3,-2],[-5,-2],[-17,2],[-6,3],[-5,6],[-3,6],[-5,6],[-3,0],[-8,0],[-3,0],[-1,3],[-1,2],[-2,3],[-5,4],[-4,1],[-10,-1],[-10,2],[-5,-1],[-27,-30],[-3,3],[-5,0],[-3,1],[-2,3],[-2,4],[-3,4],[-3,2],[-12,-2],[-6,1],[-6,4],[-5,5],[-13,18],[-1,4],[-2,4],[-3,2],[-4,-1],[-2,-1],[-2,-2],[-3,-4],[-1,-4],[-2,-4],[-2,-5],[-2,-3],[-4,-1],[-2,3],[-2,4],[-3,2],[-5,0],[-2,2],[-3,10],[-3,4],[-7,4],[-2,8],[-6,20],[-2,5],[-5,2],[-26,20],[-26,12],[-11,-2],[-4,-4],[-3,-5],[-4,-5],[-7,-2],[-22,0],[-23,-8],[-7,3],[-5,8],[-29,57],[-1,3],[-3,13],[1,11],[3,10],[2,8],[-2,13],[-5,13],[-5,11],[-5,4],[-2,5],[-6,28],[-6,18],[-4,10],[-4,4],[-6,1],[-13,10],[-5,5],[-6,10],[-12,33],[-6,7],[-18,15],[-9,13],[-6,12],[-8,10],[-24,11],[-7,5],[-3,8],[-2,9],[-4,17],[-3,8],[-3,9],[-4,5],[-12,13],[-9,3],[-5,6],[-3,1],[-32,2],[-10,10],[-5,-3],[-9,-9],[-6,-1],[-18,1],[-6,-3],[-4,-8],[-6,-17],[-25,-33],[-13,-13],[-2,-5],[-4,-15],[-5,-16],[-5,-2],[-13,0],[-5,-4],[-2,-5],[-7,-13],[-4,-11],[-3,-14],[-2,-18],[-2,-6],[-2,-5],[-2,-4],[-2,-5],[-3,-22],[-3,-9],[-5,-7],[-5,-8],[-10,-35],[-1,-2],[-5,-4],[-2,-2],[0,-1],[-3,-17],[-10,-17],[-6,-20],[-15,-75],[-6,-19],[-9,-14],[-13,-9],[-6,-3],[-5,-1],[-6,3],[-5,6],[-5,1],[-6,-11],[-4,-15],[-1,-13],[2,-10],[7,-14],[2,-7],[2,-11],[10,-39],[3,-23],[4,-50],[0,-38],[-1,-14],[-2,-14],[-6,-20],[-1,-13],[0,-7],[1,-20],[-6,-73],[9,-138]],[[55173,52529],[-12,0],[-3,7],[-5,22],[-11,39],[-4,11],[-7,13],[-4,-1],[-3,-8],[-5,-10],[-3,-3],[-4,1],[-4,-1],[-1,-2],[-1,-8],[-1,-3],[-2,1],[-3,3],[-2,1],[-22,-5],[-3,1],[-2,1],[-3,-1],[-1,-8],[-2,-18],[-1,-6],[-3,-10],[-5,-10],[-6,-6],[-6,2],[-4,8],[-3,24],[-5,10],[-10,7],[-9,0],[-10,-6],[-9,-9],[-3,0],[-3,2],[-10,13],[-1,1],[-2,-2],[-10,-11],[-5,-3],[-4,1],[-2,9],[-2,12],[-2,11],[-4,9],[-4,5],[-2,0],[-6,-2],[-2,0],[-2,2],[-3,7],[-2,2],[-2,0],[-3,-3],[-1,-1],[-23,0],[-11,4],[-10,9],[-11,19],[-1,1],[-4,1],[-1,2],[-1,8],[-1,3],[-7,2],[-4,-4],[-5,-7],[-3,-4],[-11,-12],[-6,-15],[-5,-11],[-11,-2],[-7,5],[-3,1],[-4,-3],[-4,-7],[-2,-6],[-3,-6],[-5,-4],[-4,-1],[-11,0],[-3,-2],[-8,-6],[-4,-1],[-7,1],[-3,-2],[-4,-4],[-2,-3],[-3,-6],[-3,-2],[-1,0],[-4,1],[-2,-1],[-4,-3],[-2,3],[-2,5],[-3,4],[-3,0],[-8,-2],[-2,1],[-5,4],[-3,2],[-4,-1],[0,-5],[0,-6],[0,-5],[-6,-6],[-6,-1],[-22,12],[-6,1],[-6,-1],[-13,-8],[-12,-16],[-8,-22],[-5,-26],[-2,-50],[-7,-37],[0,-14],[-2,-13],[-10,-28],[-3,-14],[0,-15],[2,-12],[3,-12],[2,-14],[-2,-21],[-10,-44],[0,-26],[4,-11],[4,-10],[2,-10],[-1,-15],[-8,-36],[-6,-29],[-4,-17],[-12,-53],[-13,-58],[-9,-40],[-12,-57],[-14,-65]],[[54499,51794],[-2,2],[-3,4],[0,6],[2,8],[0,5],[-1,2],[-4,5],[-1,3],[0,12],[-1,5],[-1,5],[-2,6],[-5,13],[-4,15],[-2,12],[0,5],[0,22],[-1,11],[-4,14],[-1,7],[0,14],[5,20],[1,11],[-1,12],[-4,21],[-1,12],[1,7],[2,8],[3,9],[-4,1],[-3,1],[-4,-2],[-3,1],[-1,5],[1,8],[-1,20],[1,16],[7,16],[2,14],[0,15],[-3,14],[-4,12],[-4,20],[-6,18],[-2,5],[-3,3],[-2,0],[-3,-2],[-4,-2],[-1,2],[-1,3],[-1,3],[-4,30],[-2,11],[-5,13],[-5,9],[-4,4],[-12,-3],[-2,1],[-2,4],[-2,1],[-2,-2],[-3,-3],[-1,-1],[-3,1],[-3,1],[-2,3],[-20,47],[-27,59],[-27,62],[-29,66],[-23,52],[-19,43],[-3,6],[-22,51],[-24,75],[-17,83],[5,0],[9,-5],[5,-1],[5,2],[11,11],[6,3],[5,5],[0,7],[-4,5],[-4,1],[-4,0],[-1,4],[-1,9],[-2,8],[-4,3],[-4,-1],[-4,6],[-1,16],[-1,33],[-3,36],[-2,16],[-4,17],[-10,25],[-2,8],[-2,15],[-2,6],[-3,5],[-12,9],[-44,64],[-10,21],[-7,25],[-4,28],[-2,45],[-2,10],[1,4],[1,6],[1,15],[0,6],[-4,56],[-1,7],[-2,6],[-1,6],[1,16],[-2,5],[-1,5],[-1,7],[0,9],[0,2],[2,22],[-1,23],[0,30],[-2,13],[-2,14],[-3,12],[-4,9],[-6,6],[-12,9],[-6,8],[-4,10],[-1,7],[2,1],[3,7],[3,10],[1,10],[1,8],[1,2],[3,9],[2,10],[0,5],[4,3],[1,6],[0,17],[1,10],[4,17],[1,6],[0,18],[0,7],[-2,10],[-4,14],[-1,8],[-1,10],[1,9],[5,27],[4,32],[2,9],[-2,12],[-2,63],[-4,11],[-2,12],[-3,12],[-4,0],[-7,-10],[-4,-1],[-9,2],[-5,0],[-4,7],[-2,9],[-2,11],[-2,9],[-4,9],[-4,7],[-3,8],[-2,5],[-2,7],[-1,5],[1,4],[2,5],[1,0],[3,-4],[2,0],[1,2],[1,5],[1,3],[1,6],[0,3],[-1,3],[0,2],[4,7],[6,14],[4,2],[8,17],[4,11],[3,10],[11,-1],[40,41],[4,7],[11,28],[3,11],[0,7],[0,6],[-1,14],[1,7],[7,20],[31,153],[3,15],[4,9],[5,6],[16,18],[4,6],[2,8],[5,27],[5,25],[10,51],[4,37],[2,11],[3,10],[2,3],[7,7],[2,6],[1,6],[-1,34],[0,6],[1,6],[4,14],[5,28],[7,11],[4,8],[21,25],[13,21],[1,4],[3,10],[1,3],[2,1],[5,0],[1,1],[1,8],[-5,10],[1,10],[15,43],[2,8]],[[54300,54925],[9,-6],[10,-2],[21,6],[12,-2],[14,-28],[11,-8],[10,1],[36,18],[5,4],[9,12],[4,9],[6,18],[4,9],[5,5],[6,4],[18,5],[9,7],[6,0],[6,2],[6,7],[10,15],[5,5],[25,7],[3,5],[1,9],[0,40],[2,12],[4,8],[3,-1],[3,-2],[2,-2],[4,2],[2,5],[3,15],[2,6],[4,8],[5,5],[11,7],[1,-5],[0,-5],[0,-5],[-2,-18],[1,-11],[3,-9],[5,-7],[3,-3],[3,-1],[2,-2],[2,-6],[2,-8],[-1,-6],[-1,-6],[-1,-7],[2,-13],[2,-7],[11,-6],[7,-7],[6,-11],[10,-24],[6,-22],[4,-5],[7,1],[2,3],[0,1],[6,10],[1,0],[3,-1],[1,1],[1,5],[-1,3],[-2,2],[0,5],[2,11],[3,8],[5,5],[10,7],[12,4],[6,-2],[2,7],[2,4],[3,1],[9,-3],[0,2],[0,5],[1,6],[4,7],[6,-4],[3,-4],[1,-3],[2,0],[4,5],[5,11],[10,25],[5,10],[2,0],[2,0],[2,2],[1,11],[2,7],[4,7],[0,1],[4,6],[38,29],[5,7],[4,9],[13,-8],[4,4],[2,14],[5,7],[5,3],[10,2],[6,3],[5,6],[6,17],[5,4],[7,0],[5,0],[38,-14],[11,-1],[11,4],[22,18],[26,13],[122,7],[22,10],[8,25],[0,28],[6,24],[9,17],[12,13],[16,12],[5,5],[6,11],[12,38],[9,18],[4,11],[2,14],[3,11],[28,67],[11,48],[3,4],[3,3],[3,9],[9,13],[-6,14],[-8,13],[-5,6],[-2,9],[-33,30],[-4,5],[-1,8],[-1,10],[-2,6],[-4,-6],[-5,8],[0,9],[6,20],[3,-2],[2,0],[2,3],[1,5],[1,6],[1,2],[3,1],[4,5],[5,4],[2,2],[0,5],[2,4],[4,8],[6,9],[11,11],[11,7],[7,-5],[2,0],[3,1],[7,-4],[2,1],[1,7],[4,3],[11,1],[6,3],[2,0],[4,-3],[3,-6],[2,-2],[3,7],[3,-5],[5,-4],[5,-2],[5,-1],[4,1],[10,9],[3,-3],[21,1],[1,-1],[2,-2],[1,0],[3,3],[6,-1],[8,8],[9,3],[7,-10],[5,4],[12,0],[2,2],[2,3],[6,6],[3,1],[3,0],[7,4],[6,2],[23,-3],[4,3],[3,11],[4,-4],[1,0],[3,2],[7,10],[2,0],[3,0],[2,1],[1,5],[0,3],[1,3],[1,3],[1,1],[2,-2],[1,-9],[2,-1],[1,2],[0,3],[0,4],[1,3],[8,14],[2,2],[2,0],[4,-4],[3,0],[0,2],[0,4],[0,4],[2,2],[3,-3],[2,-7],[3,-7],[5,-3],[4,2],[8,12],[4,2],[3,-1],[3,-5],[6,-10],[6,2],[23,-2],[5,2],[2,2],[5,8],[3,3],[3,0],[3,-3],[6,13],[3,15],[4,12],[7,5],[1,6],[-2,14],[-2,14],[5,6],[3,2],[2,3],[1,6],[1,7],[1,6],[2,-1],[6,-7],[0,1],[6,-1],[4,-3],[2,-1],[15,0],[-4,25],[11,12],[13,8],[2,4],[3,-4],[2,6],[1,6],[2,6],[3,3],[1,1],[2,5],[1,2],[1,-2],[2,-2],[2,-2],[1,1],[2,12],[1,14],[2,13],[6,6],[3,5],[11,25],[2,9],[1,6],[3,4],[6,8],[1,5],[0,5],[2,2],[4,-4],[0,8],[-1,2],[-1,2],[0,4],[4,3],[2,8],[0,20],[1,9],[4,16],[1,11],[0,3],[2,3],[2,3],[1,1],[1,1],[0,1],[1,2],[1,1],[1,-2],[3,-6],[1,-1],[2,2],[2,3],[4,7],[1,1],[1,-1],[1,0],[0,2],[0,9],[0,2],[5,21],[2,11],[16,21],[2,1],[1,9],[2,9],[14,34],[4,7],[4,-5],[11,-9],[4,-2],[10,8],[9,19],[7,24],[15,70],[7,22],[9,11],[3,-1],[3,-2],[4,-1],[3,2],[1,-1],[8,6],[2,2],[7,3],[4,9],[2,12],[3,12],[2,2],[4,1],[2,1],[2,6],[-1,5],[-1,9],[0,6],[1,12],[8,31],[-2,4],[0,4],[1,4],[0,4],[-2,5],[-5,12],[-1,5],[-1,10],[-2,23],[-1,12],[1,11],[2,18],[1,12],[2,9],[3,5],[5,3],[4,1],[2,2],[1,4],[2,4],[3,2],[2,1],[5,3],[3,0],[6,-5],[3,-2],[1,5],[1,1],[6,13],[9,12],[5,5],[17,9],[3,7],[-3,12],[2,8],[2,12],[3,12],[5,4],[23,-5],[5,2],[8,-9],[3,13],[3,18],[8,14],[3,8],[4,6],[4,-4],[2,0],[3,4],[6,10],[3,4],[6,5],[6,4],[1,0],[7,2],[5,3],[3,5],[5,12],[3,4],[3,2],[5,-2],[4,-3],[3,-1],[3,6],[6,-13],[6,0],[6,3],[6,2],[3,-2],[5,-5],[3,-1],[10,0],[2,0],[11,-6],[7,-12],[16,-12],[16,-3]],[[31775,76188],[-6,-3],[3,8],[-2,6],[-2,4],[-3,4],[-3,2],[3,5],[3,3],[7,4],[-2,15],[3,3],[13,-2],[-3,-9],[-1,-11],[-4,-8],[-3,-11],[-3,-10]],[[33386,76492],[-14,-10],[-13,-5],[-16,-1],[-15,0],[-16,8],[-11,9],[-4,11],[3,-1],[4,-3],[4,-3],[4,-4],[22,-3],[35,3],[8,4],[6,3],[7,6],[15,19],[9,11],[-14,-29],[-14,-15]],[[31584,76695],[-5,-19],[-4,4],[12,39],[8,18],[4,14],[3,5],[5,6],[3,-3],[0,-6],[-4,-8],[-6,-18],[-16,-32]],[[31453,76998],[3,-10],[4,2],[3,-8],[-1,-5],[-5,2],[-2,-5],[2,-8],[4,-18],[3,-16],[2,-12],[4,-7],[4,-5],[1,-8],[0,-6],[-6,-3],[-5,5],[-1,11],[-3,7],[-3,2],[-4,-2],[-4,5],[-4,-1],[-4,-5],[-8,-1],[-5,-7],[-2,-5],[-3,-14],[-4,-2],[-4,2],[1,14],[3,15],[2,20],[5,13],[1,10],[3,16],[7,20],[10,6],[6,-2]],[[29461,77303],[-2,-5],[-6,-7],[-4,-8],[-3,-3],[-3,-2],[-7,-2],[-5,-4],[-9,-3],[-17,-1],[-2,1],[-1,2],[-2,2],[-2,6],[0,6],[1,5],[2,4],[4,4],[3,3],[3,1],[21,-2],[3,1],[9,6],[1,2],[3,3],[1,1],[17,4],[0,-4],[-1,-3],[-1,-3],[-2,-2],[-1,-2]],[[29470,77337],[-2,-1],[-5,1],[-5,1],[0,1],[-1,1],[-2,4],[-4,7],[-2,4],[-1,5],[1,4],[1,1],[1,0],[16,-3],[3,-2],[1,-1],[3,-4],[1,-1],[4,-1],[3,-3],[2,0],[0,-2],[0,-3],[-4,0],[-2,-1],[-6,-6],[-2,-1]],[[29467,77411],[-4,-2],[-1,0],[-1,1],[-1,2],[-1,2],[0,3],[1,3],[1,2],[2,1],[10,7],[1,0],[2,-1],[0,-6],[-4,-7],[-5,-5]],[[33074,77461],[5,-6],[2,6],[2,1],[3,-3],[3,-4],[-2,-5],[-2,-3],[-3,-1],[-3,1],[-11,-13],[-2,-8],[4,-12],[-6,-6],[-5,-10],[-5,-6],[-5,6],[3,4],[2,5],[1,5],[-3,2],[-8,1],[-3,1],[-4,2],[-3,4],[-4,7],[-4,2],[0,3],[0,3],[-2,7],[2,2],[4,1],[4,6],[6,5],[7,3],[6,2],[14,1],[7,-3]],[[29565,77529],[-2,-3],[-6,-5],[-5,-6],[-7,-11],[-1,-4],[-1,-2],[-1,-5],[-10,-26],[-6,-10],[-4,-5],[-3,-3],[-5,-3],[-9,-3],[-17,0],[-4,2],[-2,3],[-1,3],[1,5],[4,9],[6,10],[6,7],[13,24],[5,7],[7,7],[11,8],[3,1],[2,0],[4,-2],[2,0],[14,7],[3,1],[3,-2],[0,-4]],[[29571,77431],[1,-20],[0,-3],[0,-3],[-1,-2],[-2,-1],[-5,-5],[-1,-1],[-1,-2],[-3,-7],[-1,-2],[-2,-3],[-3,-1],[-3,0],[-27,13],[-22,2],[-1,0],[-4,-2],[-10,-9],[-21,-11],[-5,1],[-3,-1],[-1,1],[-3,3],[-1,1],[0,1],[0,2],[-1,1],[4,2],[18,21],[6,5],[1,2],[4,12],[2,3],[2,1],[5,0],[6,2],[2,0],[3,-1],[1,0],[4,2],[14,10],[6,6],[7,12],[6,14],[1,6],[5,13],[2,4],[3,5],[19,23],[4,9],[2,2],[3,2],[2,2],[6,2],[2,0],[1,-5],[-2,-9],[-1,-7],[-6,-30],[0,-11],[-1,-5],[-1,-3],[-5,-11],[-2,-5],[-1,-6],[-1,-6],[-1,-7],[0,-6]],[[32629,77610],[5,-1],[3,1],[-2,-3],[0,-5],[-4,-3],[-6,-4],[-2,-2],[-3,1],[-3,2],[-5,-1],[-2,1],[0,3],[2,3],[6,5],[3,0],[3,0],[2,2],[3,1]],[[33415,77718],[0,-7],[-1,-3],[-2,2],[-3,2],[-9,0],[-6,2],[1,5],[15,10],[8,3],[1,-3],[-3,-4],[-1,-7]],[[30269,78223],[-11,-3],[-12,1],[-3,10],[11,17],[25,26],[20,32],[10,13],[12,4],[4,-1],[4,-4],[1,-6],[-1,-9],[-4,-7],[-9,-24],[-4,-6],[-4,-3],[-17,-21],[-22,-19]],[[33194,78304],[4,-1],[7,3],[11,11],[7,2],[4,-5],[-5,-13],[-10,-18],[-8,-22],[-7,-13],[-2,-6],[6,1],[6,-3],[3,-5],[-3,-5],[0,-4],[6,-3],[11,0],[9,1],[6,6],[2,-2],[2,-3],[2,-3],[2,-4],[1,-13],[-1,-18],[-4,-34],[-5,-22],[-1,-8],[-2,-5],[-13,-10],[2,-5],[3,-3],[3,-1],[4,1],[0,-4],[-2,-1],[-4,-2],[-2,-1],[3,-8],[4,-3],[3,-5],[-1,-8],[-1,-4],[-6,-9],[-12,-33],[-11,-60],[-3,-9],[-10,-23],[-2,-8],[-4,-19],[-14,-35],[-7,-31],[1,-6],[1,-3],[13,39],[3,6],[4,3],[14,25],[9,7],[2,1],[5,-2],[1,-4],[-1,-5],[-1,-7],[-2,-11],[-4,-8],[-9,-11],[-38,-74],[-6,-6],[-12,-9],[-4,-7],[-3,-1],[-4,11],[-3,-1],[-6,-12],[-2,-3],[-5,-4],[-12,-7],[-16,-5],[-1,5],[1,4],[3,2],[3,1],[-6,3],[-10,-16],[-18,-35],[-5,-6],[-6,-4],[-24,-10],[-5,-5],[-2,-12],[26,4],[6,3],[5,7],[3,10],[4,9],[18,15],[5,14],[6,2],[13,1],[12,12],[7,4],[4,-6],[-2,-11],[-5,-9],[-6,-9],[-5,-9],[-1,-10],[-1,-13],[-2,-10],[-6,-4],[-3,-1],[-3,-2],[-3,-3],[-2,-4],[-3,-3],[-4,1],[-6,4],[-11,-1],[-6,-3],[-2,-6],[-3,-1],[-15,0],[-5,-1],[6,-4],[2,0],[-4,-6],[-4,-3],[-4,-3],[-3,-9],[4,0],[6,2],[6,4],[3,5],[3,2],[6,0],[4,1],[-2,7],[6,-2],[15,-19],[-3,-4],[-3,2],[-4,4],[-4,2],[-1,-2],[7,-13],[2,-5],[-5,0],[-2,1],[-2,3],[-4,-8],[-3,0],[-3,2],[-2,0],[-4,-6],[-21,-20],[-6,-9],[-3,-12],[1,2],[5,2],[0,-4],[0,-5],[0,-5],[-1,-2],[-3,-1],[-2,-3],[-2,-3],[-2,-2],[2,-3],[2,-3],[14,-5],[9,5],[29,31],[9,3],[11,-2],[11,-7],[8,-12],[2,-10],[-2,-8],[-5,-7],[-6,-14],[-1,-2],[0,-2],[3,-3],[3,-1],[1,2],[-1,3],[-1,3],[6,5],[-2,3],[9,0],[2,3],[3,12],[2,0],[4,-5],[4,0],[0,4],[-3,7],[3,6],[-1,6],[-2,7],[-2,5],[1,10],[2,8],[3,6],[3,5],[5,4],[8,6],[4,6],[3,6],[3,8],[3,7],[4,3],[3,3],[8,14],[8,7],[5,14],[12,7],[9,10],[8,13],[5,13],[-6,-3],[-12,-9],[-9,-12],[-19,-8],[-16,-14],[-6,-4],[-6,-8],[-9,-5],[-3,0],[-4,3],[-2,5],[-3,11],[-2,4],[-4,1],[-3,-1],[-4,0],[-1,6],[3,8],[18,19],[9,13],[5,4],[7,2],[5,4],[16,25],[16,14],[5,7],[16,28],[4,4],[3,5],[9,19],[5,5],[6,0],[6,2],[3,6],[1,12],[-5,-5],[-6,-3],[-12,-1],[-5,-3],[-13,-25],[-45,-59],[-6,-5],[-3,-1],[-3,3],[-1,6],[1,5],[3,3],[5,3],[6,9],[8,20],[19,30],[3,11],[5,9],[35,46],[18,10],[1,-7],[6,-22],[15,-22],[-2,-11],[-22,-40],[4,2],[2,4],[2,4],[2,2],[3,0],[3,-2],[3,-6],[3,-10],[2,-2],[3,8],[1,6],[-1,5],[-1,5],[-1,6],[2,11],[6,11],[6,9],[4,4],[8,-1],[7,-3],[7,-5],[6,-8],[-15,-8],[27,-2],[14,-6],[-1,-20],[3,-3],[9,9],[6,2],[20,-4],[-8,-8],[-7,-12],[-5,-15],[-1,-18],[4,8],[5,6],[6,5],[6,2],[0,-5],[-17,-20],[-7,-14],[-4,-5],[-12,-3],[-1,-5],[2,-7],[3,-8],[5,-5],[6,2],[11,5],[6,0],[2,-2],[2,-3],[-2,1],[0,-4],[0,-8],[2,-5],[5,-6],[1,-2],[0,-7],[-1,-6],[-2,-3],[-3,2],[-11,1],[-21,-18],[-8,3],[-2,-2],[-2,-3],[-1,-3],[-1,-4],[1,-2],[1,-4],[2,-2],[-42,-4],[-8,-13],[0,-5],[0,-1],[2,1],[4,-3],[6,-6],[3,-1],[4,-1],[3,-3],[1,-5],[-1,-6],[-1,-2],[-4,-1],[-23,-15],[-6,-6],[-3,-9],[-2,-13],[-5,-7],[-7,-4],[-7,-2],[-11,-8],[-20,-24],[-13,-4],[-6,0],[-2,2],[-1,6],[-7,-10],[-3,-4],[-33,-18],[-9,-11],[-3,-2],[-9,0],[-2,-1],[-2,-2],[-2,-2],[-2,1],[-2,4],[0,5],[-1,5],[-2,2],[-21,4],[-5,2],[-1,6],[0,8],[-2,7],[-4,4],[-4,-5],[-3,-8],[-3,-6],[-2,4],[-3,3],[-3,1],[-3,0],[0,-9],[-6,-3],[-15,4],[4,-4],[-2,-7],[-3,-2],[-6,1],[-3,-1],[-8,-11],[-12,-8],[-7,-2],[-5,1],[5,4],[1,4],[-1,4],[-3,5],[-4,2],[-4,-1],[-3,2],[-1,9],[-2,-4],[-1,-7],[-1,-4],[-2,1],[-3,1],[-3,-3],[-4,-5],[-3,-3],[2,-11],[-4,0],[-10,6],[-4,5],[-8,26],[-15,27],[-7,15],[-3,17],[-3,39],[-3,21],[-5,9],[-1,5],[2,32],[-3,10],[-4,8],[-2,8],[2,10],[-2,6],[0,12],[0,7],[-2,2],[-2,4],[-3,5],[-1,6],[3,12],[7,7],[7,6],[4,6],[2,11],[1,17],[2,15],[4,6],[3,4],[13,19],[27,28],[2,2],[1,6],[18,45],[6,21],[4,11],[23,40],[2,8],[2,8],[1,19],[3,9],[7,13],[3,11],[-2,8],[-4,6],[-2,6],[1,6],[3,8],[4,7],[4,3],[-4,-18],[0,-6],[2,-5],[1,4],[2,8],[1,7],[1,5],[9,11],[2,6],[5,21],[13,42],[9,18],[10,13],[12,8],[5,5],[19,36],[14,46],[3,13],[2,4],[3,4],[5,10],[3,0],[6,-5],[11,-2],[3,-2],[2,-4],[2,-3],[2,-4]],[[32212,78201],[-1,-3],[-1,0],[-2,0],[-2,-1],[-1,-8],[-1,1],[-3,2],[-1,1],[0,-6],[-1,-5],[-1,-5],[-2,-4],[6,-13],[4,-5],[6,-2],[6,2],[4,3],[4,0],[4,-5],[-1,-4],[-2,-13],[6,-5],[6,-8],[5,-9],[5,-10],[4,-7],[2,-5],[0,-8],[-1,-7],[-3,-1],[-3,3],[-3,5],[1,-7],[2,-5],[2,-3],[4,-1],[4,1],[1,3],[0,4],[2,4],[-1,1],[0,3],[2,2],[3,-4],[2,-4],[1,-4],[-1,-3],[-3,-3],[1,-3],[1,-2],[1,-2],[1,-1],[0,-5],[-3,-1],[-2,-3],[-8,-30],[-4,-3],[-7,-4],[-6,-6],[2,-13],[4,8],[5,4],[12,4],[4,6],[3,2],[2,0],[2,-4],[2,-7],[0,-7],[-3,-2],[-3,-2],[0,-4],[1,-4],[2,-5],[3,-2],[23,-8],[6,1],[3,7],[-4,12],[-6,11],[0,9],[9,5],[0,4],[-6,3],[-2,1],[5,15],[10,6],[10,-1],[29,-13],[4,-5],[1,-1],[1,-1],[3,0],[2,-1],[1,-2],[-1,-3],[0,-2],[0,-4],[-1,-4],[0,-4],[1,-4],[4,0],[7,-15],[3,0],[4,10],[1,8],[-3,5],[-7,0],[7,4],[11,0],[10,-3],[8,-5],[4,-6],[2,-6],[0,-8],[2,-8],[1,0],[6,-7],[4,-8],[2,-2],[2,4],[2,-10],[2,-3],[2,1],[4,4],[0,1],[1,2],[1,3],[1,2],[3,1],[31,-6],[36,2],[28,8],[3,-4],[2,-7],[3,-3],[3,9],[-2,5],[15,6],[50,-11],[0,5],[-26,6],[-7,5],[8,5],[18,1],[7,7],[5,-5],[7,1],[7,2],[44,2],[26,-3],[22,8],[24,-2],[26,-12],[8,-5],[0,-4],[-5,-5],[-10,-15],[-38,-33],[-13,-7],[-4,-1],[-3,3],[-3,6],[-9,13],[3,-17],[-1,-5],[-4,-2],[-5,2],[-9,8],[-5,1],[0,-4],[3,-5],[0,-12],[4,-7],[-10,-4],[-4,0],[-5,4],[9,-17],[1,-8],[-7,-3],[-22,9],[-8,-5],[14,-8],[7,-8],[0,-13],[-4,-4],[-8,-1],[-13,1],[-12,10],[-6,3],[-2,-7],[12,-7],[8,-8],[4,-11],[-7,2],[-14,12],[-7,2],[1,-4],[2,-3],[2,-1],[3,0],[0,-4],[-3,0],[-3,0],[-4,-4],[5,-3],[12,-2],[4,-3],[-2,-6],[-1,-8],[0,-7],[0,-4],[14,-1],[4,-3],[-1,9],[-3,3],[-7,5],[8,2],[7,-10],[3,-17],[-1,-16],[-1,0],[-4,-10],[-2,-2],[-2,0],[-5,0],[-6,-2],[-8,-7],[-4,-3],[0,-4],[4,-1],[13,-8],[4,1],[7,3],[4,0],[-8,-20],[-17,-11],[-39,-4],[-8,3],[-4,0],[-2,-2],[-3,-8],[-1,-2],[-2,1],[-4,6],[-1,1],[-15,5],[-5,4],[-13,16],[4,3],[2,0],[0,4],[-5,2],[-4,3],[-4,4],[-3,6],[-1,6],[4,1],[9,-1],[-6,11],[-24,-6],[-10,3],[6,3],[6,1],[4,2],[6,9],[10,6],[8,16],[6,4],[-4,12],[-4,1],[-6,-6],[-4,-9],[-5,-3],[-2,10],[1,13],[7,6],[-2,6],[-4,4],[-8,7],[-3,-5],[1,-3],[0,-2],[1,-1],[1,-2],[-6,-2],[-7,4],[-8,6],[-15,8],[-3,3],[2,5],[5,9],[1,1],[3,2],[1,1],[2,3],[0,3],[0,4],[1,2],[1,1],[3,-1],[1,0],[1,3],[0,3],[0,4],[1,2],[16,11],[5,9],[-5,0],[-9,-7],[-8,-4],[-8,-11],[-3,-2],[-4,-4],[-7,-17],[-4,-3],[-1,1],[-6,11],[-10,8],[6,-20],[0,-7],[-7,-2],[-2,-2],[-5,-8],[-2,-1],[-11,0],[0,-5],[16,-3],[7,2],[4,13],[8,-6],[1,-5],[-1,-9],[-9,-7],[-8,-4],[-7,-11],[-7,-2],[-7,3],[-15,11],[-10,3],[-7,6],[-4,1],[-2,1],[-1,6],[-1,1],[-6,0],[-2,0],[-3,5],[-4,9],[-3,2],[-2,-1],[-6,-5],[-4,-2],[-3,2],[-3,3],[-3,3],[-2,-2],[-3,-2],[-5,0],[-7,4],[-13,11],[-5,8],[-2,12],[-3,8],[-7,8],[-13,10],[-5,7],[-1,7],[1,3],[5,-4],[-6,19],[18,-10],[7,-2],[-14,17],[4,3],[2,1],[2,0],[0,4],[-8,2],[-21,-1],[-8,7],[-3,-1],[-2,-2],[0,-1],[-2,2],[-3,4],[-1,2],[-5,3],[-2,1],[-6,-8],[-9,-6],[-26,6],[-8,-1],[-4,1],[-2,4],[-1,8],[1,8],[2,4],[3,-4],[1,18],[-1,23],[2,19],[10,5],[-1,6],[-1,2],[5,2],[-1,5],[-2,7],[-2,5],[0,12],[0,6],[2,8],[-16,-26],[-4,0],[-3,3],[-3,4],[-4,2],[-3,1],[-2,1],[-6,8],[-3,3],[-26,0],[-11,-5],[-6,0],[-5,9],[-4,24],[4,24],[9,21],[10,16],[12,14],[5,9],[2,12],[2,13],[3,11],[5,10],[19,32],[30,38],[16,28],[2,-8],[1,-4],[1,-5],[-4,-17],[0,-23],[2,-23],[4,-16],[0,-7],[-14,-27],[-1,-4],[-2,-9]],[[34778,78447],[-4,-6],[-4,7],[-1,14],[10,7],[5,-3],[-4,-9],[-2,-10]],[[34483,78468],[2,-2],[3,0],[-8,-13],[-2,8],[-3,-3],[-4,2],[-3,4],[-4,2],[-3,-1],[-3,-2],[0,5],[8,7],[9,3],[7,-1],[0,-5],[1,-4]],[[34950,78517],[-9,0],[-3,5],[1,8],[4,2],[2,5],[5,14],[6,-2],[3,-8],[-2,-19],[-7,-5]],[[30446,78525],[-5,-2],[-5,1],[-2,3],[0,6],[1,5],[2,6],[4,5],[6,5],[6,3],[8,0],[4,0],[-1,-5],[-13,-21],[-5,-6]],[[32947,78674],[-3,-5],[-9,-5],[-4,-5],[-2,-9],[-4,-9],[-9,-8],[-9,-2],[-5,5],[7,5],[7,8],[6,11],[3,12],[-8,1],[-8,-1],[-8,-4],[-7,-8],[-11,-20],[-7,-9],[-7,-4],[-6,-7],[-2,-4],[-12,-26],[-7,-7],[-6,-4],[-13,-19],[-6,-5],[10,-5],[10,11],[32,61],[9,12],[13,2],[-9,-7],[-9,-11],[-15,-27],[-15,-44],[-4,-3],[-12,3],[-4,-6],[-3,-11],[-3,-11],[-1,-5],[-11,-1],[-4,-3],[-4,-6],[-3,-7],[-4,-18],[-3,-8],[2,-5],[5,-7],[6,-1],[3,11],[3,-8],[4,-6],[4,-3],[12,-5],[4,1],[3,5],[4,8],[-2,-15],[-6,-7],[-9,-2],[-7,0],[-1,7],[-5,-2],[-12,-9],[-14,-1],[-6,5],[-2,12],[7,17],[6,20],[3,6],[2,11],[1,27],[2,12],[4,6],[7,6],[7,3],[5,2],[5,3],[39,57],[2,3],[36,53],[7,6],[9,3],[33,1],[1,-4],[-2,-7]],[[35284,78657],[-8,-2],[-7,4],[3,11],[18,22],[10,-2],[1,-11],[-9,-9],[-8,-13]],[[34966,78684],[-8,-32],[-3,-19],[1,-13],[-6,-16],[-18,-59],[-4,-5],[-4,-2],[-22,4],[-3,5],[3,7],[26,37],[11,32],[1,12],[-9,-3],[2,6],[16,30],[3,4],[-2,-12],[-2,-4],[4,-4],[2,11],[8,34],[3,4],[1,-4],[0,-13]],[[34465,78682],[7,-8],[6,-5],[-7,-6],[-7,-1],[-8,1],[-23,8],[-7,6],[-9,0],[-3,4],[0,10],[7,7],[32,12],[8,0],[4,-5],[-4,-12],[4,-11]],[[34981,78633],[1,-7],[-1,-7],[-4,-3],[3,-5],[-1,-6],[-2,-8],[0,-10],[-5,8],[0,9],[2,11],[1,12],[-1,-1],[-3,-2],[0,12],[2,34],[1,7],[1,5],[1,4],[1,3],[1,11],[-1,13],[3,-4],[1,-5],[2,-12],[-1,-8],[0,-8],[-2,-7],[-3,-4],[0,-5],[1,-6],[0,-15],[2,-3],[1,-3]],[[32082,78821],[0,-9],[-1,-8],[-3,-9],[-6,-13],[-15,-25],[-15,-20],[-2,9],[-3,4],[-4,1],[-5,2],[12,14],[2,5],[-2,7],[-3,0],[-4,-3],[-3,-2],[1,5],[1,4],[2,4],[2,3],[-5,-1],[-3,1],[-1,4],[1,8],[2,5],[3,7],[3,6],[3,2],[17,6],[8,-1],[-3,-12],[6,4],[5,0],[5,2],[5,10],[-2,7],[2,9],[7,16],[0,-4],[0,-3],[-4,-13],[-2,-11],[-1,-11]],[[32064,78841],[-6,-2],[-1,6],[5,15],[8,19],[6,29],[4,8],[7,-8],[2,-13],[2,-10],[0,-11],[-4,-13],[-6,-7],[-17,-13]],[[35038,79001],[6,-4],[20,4],[6,-3],[12,-12],[7,-1],[8,4],[23,20],[6,10],[7,-4],[2,-8],[-6,-6],[4,-11],[-1,-8],[-4,-9],[-4,-13],[4,0],[1,0],[-9,-15],[-14,0],[-28,11],[-26,-4],[-3,1],[-15,6],[-2,7],[0,8],[-2,7],[-4,11],[-4,5],[-2,8],[-1,14],[3,5],[6,-7],[10,-16]],[[30871,79126],[-4,0],[-4,0],[0,2],[1,3],[2,4],[5,2],[2,4],[4,1],[1,-1],[-1,-2],[0,-3],[-1,-6],[-5,-4]],[[15742,79275],[3,-7],[3,-6],[3,-2],[2,-1],[2,-1],[0,-6],[-2,-6],[-4,4],[-3,6],[-3,7],[-3,7],[-1,2],[2,-3],[0,3],[-2,7],[0,1],[3,-5]],[[15764,79350],[2,-3],[6,0],[5,-2],[4,-1],[1,-8],[-1,-4],[-3,-2],[-7,1],[-5,1],[-4,2],[-7,7],[-3,3],[-4,5],[-1,4],[0,10],[0,5],[-3,5],[0,4],[2,3],[4,-1],[3,-2],[6,-7],[4,-6],[1,-8],[0,-6]],[[15808,79351],[-3,-4],[-5,2],[-5,0],[-6,-1],[-3,3],[-4,4],[-5,6],[0,5],[0,5],[0,4],[-2,4],[-2,3],[-2,1],[0,6],[6,-2],[6,-8],[11,-8],[14,-2],[10,-2],[3,-4],[0,-2],[-3,-1],[-4,-3],[-2,-1],[-4,-5]],[[15693,79424],[20,-29],[-3,-1],[-4,2],[-4,4],[-3,5],[-2,2],[-1,-1],[-1,-3],[-1,-4],[1,-2],[7,-11],[29,-32],[-4,-10],[-7,-1],[-14,7],[2,-4],[6,-13],[0,-5],[-3,-4],[-6,-4],[-6,-2],[-4,2],[-3,5],[-3,2],[-3,4],[-3,7],[-2,6],[-1,8],[1,8],[4,6],[0,4],[-6,8],[-4,11],[-1,10],[7,8],[-7,11],[-4,10],[-2,12],[0,20],[1,-3],[1,-3],[2,-7],[21,-23]],[[15745,79411],[-3,-3],[-4,3],[-7,-5],[-7,7],[-12,18],[-26,23],[-29,49],[-5,5],[-2,5],[-11,24],[-1,10],[1,6],[3,-1],[8,-21],[25,-48],[6,-9],[21,-22],[4,-3],[8,-2],[11,-6],[7,-8],[8,-2],[4,-4],[2,-9],[-1,-7]],[[15640,79569],[-3,-2],[-2,0],[-1,0],[-4,-2],[-5,-1],[-8,3],[-18,11],[-5,7],[-2,6],[1,3],[-1,3],[-1,1],[1,3],[1,3],[9,3],[2,-1],[2,-5],[2,-4],[12,-9],[13,-5],[5,-2],[2,-5],[0,-7]],[[15010,79579],[-2,-3],[-2,1],[-9,5],[-2,6],[0,8],[-4,5],[-1,7],[3,6],[5,1],[6,-2],[7,-3],[3,-3],[1,-2],[2,-4],[0,-3],[-2,-1],[-2,-1],[-2,-6],[-1,-11]],[[15055,79573],[-11,-6],[-11,8],[0,9],[-2,7],[-8,2],[-2,12],[2,9],[4,8],[11,7],[9,0],[9,-6],[3,-11],[-2,-17],[-2,-22]],[[29246,77119],[22,9],[45,31],[10,11],[8,17],[1,6],[0,6],[1,6],[3,2],[3,1],[3,3],[3,3],[8,11],[6,3],[24,8],[6,4],[9,15],[6,3],[27,-1],[12,8],[11,13],[21,41],[2,2],[7,0],[2,2],[5,7],[15,15],[3,4],[6,14],[3,4],[6,2],[2,3],[5,3],[23,-5],[6,3],[4,0],[1,-5],[2,-3],[4,1],[4,3],[3,3],[4,13],[0,9],[-5,24],[-1,6],[0,8],[1,7],[9,26],[6,9],[2,5],[1,6],[1,11],[2,4],[-3,18],[2,19],[5,16],[5,11],[43,61],[12,27],[3,10],[0,10],[-1,10],[0,12],[2,7],[6,13],[2,6],[0,7],[1,6],[2,4],[2,4],[4,5],[28,9],[2,5],[5,7],[4,6],[6,7],[6,9],[7,8],[6,-5],[9,0],[9,4],[24,18],[8,2],[17,23],[0,9],[-1,10],[6,7],[11,10],[15,18],[17,32],[5,5],[6,2],[16,14],[35,15],[9,13],[7,22],[3,12],[1,9],[3,6],[24,20],[13,4],[7,0],[7,3],[4,7],[4,10],[5,9],[15,15],[11,15],[6,1],[6,-4],[5,-7],[12,-9],[13,-1],[114,67],[6,5],[11,13],[5,2],[6,5],[8,22],[5,9],[11,8],[27,-1],[13,6],[15,21],[5,3],[3,0],[6,-3],[3,-1],[4,2],[5,7],[3,3],[3,1],[6,-2],[2,1],[3,4],[6,14],[4,6],[36,24],[12,3],[6,5],[40,62],[29,56],[16,45],[9,17],[33,32],[7,19],[6,41],[8,17],[3,3],[6,3],[3,2],[2,5],[2,5],[3,5],[9,5],[27,45],[31,63],[28,51],[8,8],[2,4],[1,5],[0,4],[-1,4],[0,9],[2,11],[28,60],[5,4],[6,2],[13,7],[5,4],[5,6],[20,37],[28,32],[27,51],[25,32],[33,33],[6,14],[5,4],[16,0],[6,2],[18,21],[3,5],[3,7],[22,11],[10,12],[17,34],[11,11],[13,2],[7,3],[11,19],[30,32],[6,4],[14,2],[5,5],[9,15],[6,5],[7,2],[15,1],[5,1],[68,56],[2,3],[11,10],[7,5],[12,4],[16,18],[33,6],[18,18],[19,12],[49,23],[66,50],[72,45],[26,6],[85,44],[46,10],[48,0],[55,11],[19,10],[14,4],[47,-3],[33,-10],[24,-4],[63,-11],[24,-14],[15,-4],[6,-4],[12,-15],[13,-11],[7,-3],[21,-6],[2,-2],[7,-8],[7,-5],[16,-21],[3,-3],[2,-1],[2,-1],[6,-11],[3,-4],[12,-10],[4,-6],[9,-15],[2,-3],[9,-4],[3,-3],[1,-3],[2,-8],[2,-4],[16,-23],[5,-15],[-3,-25],[7,-16],[4,-9],[6,-7],[-4,-7],[-6,7],[-6,11],[-4,5],[-7,3],[-14,15],[-63,31],[-8,0],[6,-4],[16,-20],[0,-4],[-17,-3],[0,-6],[5,-2],[17,6],[12,-1],[6,-3],[2,-6],[1,-1],[2,-5],[1,-5],[-3,-2],[-6,2],[-3,0],[-3,-7],[3,-3],[3,0],[2,3],[3,0],[3,-2],[7,-8],[7,-4],[14,-18],[12,-28],[4,-5],[4,-2],[4,-6],[4,-7],[4,-9],[-9,-4],[-9,1],[-9,-3],[-5,-18],[-1,-12],[0,-5],[8,-6],[8,-10],[5,-3],[4,-1],[-3,-4],[-1,-4],[-2,-5],[-2,-5],[-3,-3],[-10,-3],[-6,-4],[-5,-6],[-4,-8],[-2,-11],[4,-3],[-5,-8],[-8,-3],[-24,-4],[-14,-8],[-14,-4],[-32,-22],[-6,-5],[-8,-1],[-3,-2],[3,-4],[2,-3],[1,-4],[-1,-6],[-1,-3],[-1,-4],[-2,-4],[-2,-1],[-1,-2],[-2,-9],[-5,-17],[-3,-12],[-4,-9],[-36,-16],[-4,-1],[-4,1],[-3,2],[-3,4],[-1,-1],[0,-6],[1,-9],[3,-6],[-11,-14],[-17,-15],[-36,-35],[-29,-18],[-28,-2],[-5,-4],[-8,1],[-7,4],[-5,6],[-2,3],[-1,9],[-1,4],[-4,3],[-9,4],[-11,3],[-25,19],[-33,11],[-10,9],[-10,17],[-9,7],[-1,10],[1,12],[-2,11],[-2,-10],[-2,-5],[-4,-2],[-4,0],[-4,-1],[-3,-5],[-22,-43],[-6,-8],[-8,-2],[-25,10],[-24,1],[-4,-1],[-4,-4],[2,-2],[2,-1],[6,-1],[-3,-17],[-1,-3],[-3,-1],[-2,2],[-1,4],[-2,3],[-1,1],[-2,-1],[-2,0],[-1,2],[0,3],[-1,3],[-1,3],[-1,1],[-10,8],[-27,3],[-12,-7],[-5,-22],[-2,-7],[-12,1],[-4,-10],[-4,2],[-5,4],[-4,-1],[-1,-4],[-2,-4],[-2,-3],[-10,-6],[-14,-3],[-6,-6],[-4,-2],[-9,1],[-4,-1],[-4,-4],[1,-1],[3,-2],[4,-1],[9,0],[10,-3],[5,0],[13,12],[20,2],[8,8],[7,9],[48,21],[9,-3],[-2,-17],[4,-11],[8,-6],[8,-3],[8,-1],[2,-2],[2,-6],[2,-4],[6,5],[4,-2],[7,-6],[57,-33],[30,-4],[13,-6],[13,-14],[8,-21],[15,-73],[3,-10],[4,-7],[9,-15],[-9,-8],[-2,-1],[1,-6],[2,-5],[4,-4],[3,-5],[8,21],[4,7],[7,5],[19,1],[6,3],[11,13],[20,33],[22,12],[21,22],[51,18],[13,-5],[-21,-23],[-5,-13],[3,0],[6,3],[14,3],[23,12],[14,3],[8,0],[8,-4],[4,-9],[-1,-13],[-6,-6],[-14,-2],[0,-4],[5,-2],[11,-1],[5,-5],[0,-3],[1,-10],[1,-3],[4,-2],[1,4],[1,5],[-1,1],[1,4],[-1,8],[0,4],[2,3],[5,4],[1,1],[3,-2],[11,-12],[3,-6],[-4,-5],[-15,-13],[-4,0],[-2,-9],[-4,-2],[-5,0],[-6,-3],[1,-2],[3,-6],[-3,-3],[-1,-3],[1,-4],[3,-3],[-4,-12],[-4,-9],[-11,-19],[-2,-2],[-3,-2],[-2,-4],[-1,-6],[0,-5],[0,-3],[-4,-10],[10,0],[-4,-12],[-10,-19],[-1,-10],[4,8],[3,4],[4,3],[6,5],[-7,-37],[-5,-40],[-1,6],[1,6],[1,6],[0,5],[-1,5],[-5,-5],[-3,-9],[-2,-10],[-4,-10],[0,-8],[1,-11],[-1,-11],[-4,-5],[-12,-2],[-7,-4],[-5,-14],[-10,-9],[-3,-9],[-4,-11],[-58,-61],[-10,-3],[0,-4],[23,-4],[11,0],[12,8],[-1,-9],[-1,-9],[-1,-7],[2,-4],[16,5],[24,21],[8,3],[5,-4],[5,-14],[3,-3],[6,2],[3,5],[2,5],[3,5],[8,3],[23,-2],[7,-5],[-7,-11],[1,-13],[4,-15],[0,-18],[-3,-5],[-10,-8],[-12,-28],[-3,-17],[1,-17],[2,-16],[4,-15],[5,-14],[5,-12],[15,-22],[-8,0],[-5,-5],[-4,-9],[0,-15],[2,0],[4,14],[8,-3],[14,-15],[-2,12],[3,6],[5,-1],[5,-7],[2,-8],[0,-12],[-1,-22],[-3,-23],[1,-12],[4,-5],[3,-5],[3,-12],[1,-11],[-5,-5],[-2,-1],[-2,-3],[-1,-3],[1,-1],[2,-1],[2,-6],[1,-2],[2,0],[2,2],[1,2],[1,0],[4,-4],[5,-7],[5,-10],[2,-9],[-1,-22],[-1,-9],[-2,-8],[-5,-8],[-5,-2],[-6,-1],[-6,-5],[6,1],[3,-1],[2,-2],[2,-1],[3,2],[6,5],[10,1],[4,2],[-1,6],[6,12],[6,-10],[4,-18],[-2,-9],[-7,-5],[-3,-11],[2,-33],[6,7],[6,2],[30,0],[2,-2],[3,-5],[2,-2],[3,0],[2,1],[2,2],[2,1],[27,2],[4,-2],[14,-12],[7,-9],[-2,-7],[2,-8],[3,-2],[7,2],[0,3],[2,4],[2,3],[2,-7],[2,-4],[4,-5],[1,2],[8,10],[3,2],[5,1],[13,-1],[8,-3],[14,-13],[23,-9],[6,-6],[5,-9],[-5,-10],[-6,-3],[-13,-4],[-2,-2],[-5,-11],[-3,-3],[-3,-1],[-44,2],[-2,-1],[-1,-4],[0,-5],[-1,-5],[-4,-2],[3,-6],[8,-13],[3,-5],[0,-1],[3,3],[2,4],[2,2],[3,0],[28,-15],[10,-11],[1,-15],[6,-1],[6,-6],[3,-9],[2,-12],[5,1],[8,-3],[7,-6],[5,-5],[-3,-3],[-6,-5],[-3,-4],[6,-3],[13,7],[6,-4],[-2,-6],[0,-6],[2,-2],[2,2],[2,6],[0,3],[-1,5],[-1,8],[1,6],[1,0],[3,-2],[2,-4],[2,-1],[10,8],[28,4],[15,-4],[8,-13],[-5,0],[-10,4],[-6,0],[4,-5],[9,-8],[3,-7],[-6,-3],[-10,3],[-5,0],[-6,-4],[2,-5],[6,-3],[5,4],[2,-3],[3,-1],[2,-1],[3,1],[1,-1],[2,-2],[1,-1],[1,1],[1,6],[1,1],[5,-1],[8,-5],[4,-2],[9,2],[9,5],[9,3],[8,-6],[-8,-9],[-12,-9],[-13,-6],[-9,3],[2,-8],[5,-6],[12,-6],[2,-3],[3,-4],[2,-1],[0,6],[1,4],[3,4],[4,7],[0,-3],[0,-7],[0,-3],[13,13],[4,3],[0,2],[1,3],[0,3],[1,1],[2,-2],[0,-3],[0,-3],[-1,-2],[-4,-6],[-1,-4],[0,-5],[4,-1],[15,14],[5,2],[5,1],[5,-1],[5,-2],[-2,11],[-4,7],[-10,10],[6,3],[33,-9],[16,-8],[41,-11],[7,1],[14,4],[7,-1],[-6,-6],[-6,0],[-6,1],[-5,-2],[5,-6],[3,-3],[8,0],[5,-1],[5,-4],[5,-5],[4,-6],[-20,-18],[-13,-3],[-6,-4],[-3,-8],[-2,-11],[3,6],[4,5],[4,2],[4,-6],[-3,-16],[-1,-9],[3,3],[5,17],[4,6],[4,-2],[7,-13],[3,-2],[3,9],[-5,3],[-2,5],[0,7],[2,7],[2,1],[5,0],[4,0],[3,5],[4,-2],[6,-1],[3,-1],[3,-3],[2,-7],[1,-2],[5,-3],[5,1],[4,1],[5,1],[-7,-19],[-2,-9],[4,-5],[7,4],[10,17],[4,4],[5,2],[7,5],[4,7],[-3,6],[-3,-2],[-6,-3],[-10,-12],[7,14],[40,15],[59,62],[20,32],[11,12],[6,4],[4,0],[3,-4],[1,-6],[-2,-4],[-3,-3],[-2,-6],[1,-12],[3,-26],[6,-29],[0,-10],[-2,-10],[5,-6],[11,-7],[4,-5],[4,-8],[3,-4],[20,-15],[5,-3],[6,0],[5,2],[3,6],[4,3],[4,-3],[-2,0],[-4,-1],[0,-4],[2,-4],[6,-4],[0,5],[1,5],[2,5],[2,2],[4,2],[1,4],[1,6],[1,6],[5,6],[6,3],[12,1],[7,-4],[9,-20],[5,-4],[5,-6],[4,-13],[5,-18],[3,-2],[2,-4],[3,-10],[4,-7],[17,-18],[5,-2],[2,0],[0,-1],[1,-9],[-1,-14],[-3,-8],[-5,-6],[-24,-18],[-5,-3],[-1,8],[-4,-2],[-4,-6],[-4,-6],[-3,-4],[-15,-10],[6,-12],[3,-3],[87,3],[5,-1],[11,-6],[23,-5],[4,-4],[3,-8],[0,-7],[0,-8],[1,-10],[-4,0],[-1,3],[-1,5],[-2,4],[-3,2],[-3,-1],[-2,1],[-3,3],[2,-9],[2,-4],[2,-4],[-2,-5],[-2,-1],[-3,-1],[-2,-3],[-2,-6],[-1,-5],[-1,-2],[-5,3],[2,-8],[-13,-6],[-5,2],[-4,12],[3,4],[2,5],[2,5],[2,6],[-13,-5],[-2,-3],[-2,-9],[3,-16],[-1,-8],[-3,4],[-1,4],[-1,4],[-1,8],[-3,6],[-2,4],[-1,-3],[-8,-5],[-5,0],[0,7],[-4,2],[-6,-4],[-9,-10],[-5,-8],[-4,-9],[0,-7],[7,0],[-4,-7],[-5,-6],[-5,-3],[-50,-10],[-11,3],[-8,14],[-3,-11],[-5,4],[-6,7],[-4,-3],[5,-5],[5,-7],[5,-9],[3,-8],[-3,0],[-3,0],[-4,-4],[10,-12],[0,-4],[-11,1],[-5,1],[-2,4],[0,6],[-2,0],[-2,-4],[-11,0],[1,-4],[-1,-3],[0,-3],[0,-2],[-7,7],[-8,5],[-4,-1],[4,-11],[-3,-2],[-7,2],[-3,0],[0,-4],[2,-2],[2,-3],[2,-5],[-1,-6],[-2,-1],[-9,5],[-2,-4],[1,-7],[-4,-3],[-6,4],[-5,10],[-1,-12],[0,-5],[-5,7],[-5,0],[-4,-6],[-4,-9],[0,3],[-1,3],[0,2],[0,4],[-3,-3],[-3,-4],[-2,-4],[-4,-1],[5,-4],[16,-8],[-3,-4],[-5,-1],[-4,1],[-3,4],[-3,-5],[-5,-4],[-4,-2],[-3,3],[-4,-2],[-6,-3],[-5,0],[-2,3],[-2,1],[-6,-9],[-3,-3],[-13,2],[-6,-4],[-5,-14],[-2,5],[-3,-6],[-5,-4],[-4,-2],[-3,3],[-2,0],[0,-2],[-1,-2],[0,-2],[-1,-2],[1,-2],[0,-1],[1,-5],[-6,4],[-4,5],[-5,0],[-6,-9],[1,-2],[2,-3],[1,-3],[-5,-2],[-5,-6],[-3,-9],[0,-11],[-5,4],[-2,11],[0,13],[-1,12],[-4,-12],[-4,-11],[-6,-4],[-7,7],[-4,-16],[3,-5],[3,-4],[4,-11],[-6,-4],[-7,20],[-6,-4],[-2,6],[-5,-4],[-10,-14],[2,-9],[-9,6],[-33,-10],[2,-8],[-1,-6],[-3,-4],[-4,-2],[1,-4],[2,-4],[2,-3],[3,-2],[-6,-5],[-3,-2],[-4,0],[-2,3],[-2,7],[-2,2],[-2,-8],[-4,4],[-6,4],[-6,1],[-4,-3],[-8,-10],[-4,-4],[-3,2],[0,5],[0,3],[-1,2],[0,4],[0,16],[0,4],[-4,4],[-8,-7],[-4,7],[0,-9],[3,-7],[8,-15],[2,-9],[-3,-8],[-10,-13],[-1,8],[1,9],[-1,8],[-3,4],[-6,3],[-2,8],[1,19],[-1,5],[-2,4],[-2,0],[-3,-3],[1,-2],[1,-18],[-1,-10],[-3,-16],[-1,-11],[-4,4],[-2,6],[0,7],[2,7],[-5,-5],[-3,-17],[-6,-6],[-3,0],[0,1],[1,4],[-1,8],[-5,13],[-1,7],[-4,-7],[-1,-9],[2,-8],[3,-5],[-4,-10],[-8,-17],[-2,-9],[-8,5],[-20,4],[-8,7],[4,6],[2,1],[2,1],[-3,8],[-5,1],[-11,-9],[6,-5],[4,-7],[1,-9],[-1,-11],[-5,-11],[-5,3],[-6,7],[-9,7],[-8,14],[-10,10],[-16,28],[-3,3],[-5,0],[3,-18],[3,-6],[3,-5],[2,-1],[7,1],[2,-3],[4,-10],[2,-3],[1,-4],[4,-19],[1,-6],[0,-11],[-1,-7],[1,-7],[6,-19],[0,-9],[-2,-8],[-5,-10],[-1,-1],[-6,-4],[-1,0],[-2,3],[0,3],[2,4],[0,2],[-5,2],[-2,-6],[-2,-9],[-3,-6],[-1,-4],[-2,-3],[-2,1],[-1,4],[1,6],[2,4],[1,2],[-4,4],[-4,0],[-10,-4],[-2,-1],[-1,-3],[0,-3],[-3,-1],[-2,3],[0,5],[-2,3],[-2,-3],[-3,3],[-3,4],[-1,6],[-1,8],[-2,-7],[-3,-9],[-3,-5],[-3,4],[-1,8],[1,8],[6,17],[-3,-3],[-3,-7],[-2,-2],[-2,1],[-2,4],[-2,3],[-4,-4],[1,-2],[1,-6],[-3,0],[-6,-4],[-4,-1],[-3,1],[-4,2],[-2,2],[-2,4],[-4,13],[0,12],[6,23],[-2,4],[-4,13],[5,5],[2,3],[0,4],[-1,1],[-2,3],[7,11],[3,8],[1,10],[-5,-8],[-6,-5],[-17,-11],[-3,-1],[-16,-10],[-2,-2],[1,-8],[0,-20],[2,-5],[5,-5],[3,-12],[4,-23],[-9,7],[-4,-9],[-2,-12],[-3,-7],[-6,-1],[-3,2],[-3,6],[-1,16],[-1,4],[2,9],[-3,11],[-4,9],[-5,5],[-5,2],[-5,-1],[-4,-6],[0,-11],[-4,-9],[-7,4],[-8,9],[-7,4],[1,-3],[3,-9],[-4,-2],[0,-3],[1,-6],[1,-7],[-1,-7],[-2,-6],[-2,-5],[-3,-5],[3,0],[5,-4],[-3,-3],[-12,-5],[0,-6],[2,-5],[3,-5],[-1,-8],[11,1],[6,-1],[5,-4],[-4,-1],[-4,-3],[-3,-5],[-4,-4],[0,-3],[14,-1],[7,-2],[7,-5],[-4,-4],[-5,0],[-10,4],[-19,0],[0,-4],[3,-3],[1,-4],[0,-4],[-1,-6],[3,-1],[3,-4],[3,-2],[4,3],[-2,2],[-2,5],[-2,1],[3,2],[3,-1],[7,-5],[-7,-17],[1,-3],[14,0],[-9,-19],[-5,-5],[-5,8],[-2,-4],[-5,7],[-2,4],[-3,5],[3,3],[1,1],[-21,18],[-5,6],[3,-8],[4,-8],[6,-5],[5,-3],[1,-2],[1,-5],[-1,-5],[0,-4],[-2,-4],[-16,-18],[-2,-5],[-1,-11],[-1,-5],[-3,-4],[-5,-3],[-3,-3],[-1,-5],[-4,-20],[-5,6],[-2,1],[-3,2],[-1,0],[-2,3],[-2,1],[0,-1],[-1,-6],[-1,-1],[-10,6],[-3,0],[1,-6],[-1,-2],[-1,-1],[-2,-1],[-2,-1],[6,-3],[7,-1],[6,-2],[2,-7],[-1,-11],[-3,-12],[-4,-6],[-5,6],[-8,-9],[-7,-3],[-19,0],[3,-8],[5,-2],[5,-4],[2,-12],[-1,-10],[-4,-3],[-5,-2],[-4,-6],[-5,-10],[-4,-3],[-17,0],[-3,-2],[-1,-5],[0,-5],[-2,-4],[-3,-1],[-2,0],[3,-9],[10,-11],[4,-12],[-5,1],[-3,-1],[-2,-5],[2,-8],[-5,-5],[-1,-6],[-1,-3],[-4,6],[-2,4],[-2,9],[-2,3],[-2,4],[-3,2],[-3,2],[-3,0],[1,-5],[4,-9],[2,-6],[1,-4],[0,-10],[1,-6],[-7,-4],[-5,10],[-4,16],[-3,10],[-5,4],[1,-8],[8,-28],[1,-4],[-1,-4],[-4,-14],[-2,-6],[-4,-4],[-3,0],[-4,7],[-7,28],[-5,9],[1,-10],[5,-27],[1,-7],[0,-9],[0,-9],[-3,-7],[-2,-2],[-1,2],[0,3],[-2,1],[-3,-1],[-1,-5],[-1,-4],[1,-2],[-5,5],[1,20],[-4,8],[-3,-13],[-7,-23],[-2,-14],[-6,9],[1,10],[3,13],[-1,14],[-6,-21],[-2,-4],[-2,0],[-3,4],[-2,5],[-2,16],[-3,12],[-3,12],[-4,8],[-1,-4],[0,-2],[0,-2],[1,-5],[-5,-5],[2,-12],[7,-21],[-5,-15],[-2,-12],[-4,-2],[-7,2],[-11,13],[0,8],[3,14],[1,6],[-1,10],[-2,3],[-2,-1],[-3,-3],[-1,-4],[0,-6],[-2,-3],[-4,4],[4,-16],[3,-13],[2,-14],[-2,-17],[0,-4],[1,-6],[0,-5],[-1,-2],[-3,-1],[-1,-5],[0,-4],[2,-2],[1,-3],[1,-25],[-6,17],[-2,3],[-3,-2],[-3,-6],[-2,0],[-4,3],[-8,13],[-4,4],[0,-4],[12,-32],[1,-6],[1,-6],[2,-9],[-4,-2],[-2,7],[-2,20],[-3,7],[-3,2],[-1,-3],[1,-6],[-1,-6],[-2,-5],[-3,-2],[-3,1],[2,-13],[1,-6],[0,-8],[-1,-5],[-2,0],[-3,5],[-1,8],[-2,6],[-11,15],[-1,2],[-1,3],[0,3],[2,8],[-2,3],[-1,3],[-1,2],[-2,3],[-4,-5],[-9,-18],[-10,-11],[-1,-2],[-1,-4],[-1,-3],[-3,-3],[1,2],[-2,3],[-4,3],[-9,-1],[-3,3],[-2,11],[2,9],[0,9],[-2,8],[-4,6],[0,-6],[0,-4],[1,-3],[1,-3],[-1,-3],[0,-1],[-1,0],[-2,-1],[-5,10],[-1,12],[3,32],[0,16],[-1,7],[-1,5],[-3,1],[-2,-5],[-1,-8],[-2,-8],[3,-5],[1,-8],[0,-8],[-2,-8],[-4,15],[-1,15],[1,15],[-2,16],[-1,5],[-4,12],[-2,8],[-2,7],[-2,25],[-2,0],[0,-11],[1,-5],[1,-5],[-5,0],[-3,8],[-3,12],[-2,9],[-5,5],[-3,-1],[-1,-4],[3,-4],[0,-4],[-8,-12],[-4,-3],[-1,9],[-1,4],[-1,10],[-1,12],[-1,6],[-2,3],[0,-3],[-2,-11],[0,-3],[0,-6],[0,-4],[1,-3],[7,-32],[4,-7],[-3,-14],[-2,-5],[-3,-2],[2,10],[0,6],[-2,1],[-4,-5],[-1,-4],[1,-5],[0,-5],[-3,-2],[-2,1],[-1,3],[-1,4],[1,4],[-2,0],[1,12],[-3,6],[-4,-3],[-1,-15],[-4,8],[-1,6],[1,17],[-2,2],[-4,-3],[-3,-7],[-3,-7],[-1,0],[-4,39],[4,9],[2,7],[0,7],[-2,3],[-2,-2],[-2,-4],[-2,-6],[-2,-4],[0,8],[0,8],[-2,4],[-4,0],[1,6],[0,6],[-1,4],[0,5],[1,5],[4,12],[1,5],[-1,9],[-2,8],[-1,9],[4,16],[0,4],[-2,7],[0,1],[-8,36],[-3,5],[-4,-4],[0,12],[4,22],[1,13],[1,4],[8,17],[2,5],[3,13],[8,66],[5,19],[9,11],[4,8],[2,11],[2,7],[19,31],[10,10],[11,15],[6,7],[6,8],[2,10],[-3,8],[-5,0],[-13,-5],[-2,1],[-3,2],[-3,0],[-24,-38],[-44,-74],[-2,-2],[1,15],[3,10],[51,86],[30,31],[4,7],[25,32],[3,-7],[3,-8],[2,-9],[1,-9],[0,-6],[-1,-6],[0,-6],[2,-2],[5,1],[6,3],[5,4],[3,4],[7,12],[9,11],[3,7],[3,11],[2,-5],[16,28],[4,5],[8,2],[12,13],[6,5],[-5,2],[-13,-14],[-12,-7],[-22,-22],[-11,-6],[-6,-1],[-11,-13],[-7,-4],[-5,8],[10,27],[29,30],[45,45],[17,24],[5,4],[6,2],[35,30],[5,7],[9,15],[44,40],[44,47],[42,31],[19,5],[19,11],[18,6],[10,7],[9,9],[8,9],[5,18],[-6,11],[-12,5],[-10,3],[5,4],[6,-1],[12,-7],[18,-4],[5,-6],[3,-9],[0,-7],[-3,-6],[-3,-7],[-3,-8],[-2,-20],[-2,-10],[4,-7],[-1,-9],[-4,-8],[-5,-5],[6,-13],[1,-6],[-1,-5],[3,-2],[3,1],[2,4],[1,7],[1,7],[1,3],[3,3],[3,1],[23,-23],[20,-35],[0,-7],[-1,-32],[2,8],[3,3],[4,0],[4,-3],[-2,8],[-1,11],[1,10],[4,4],[0,3],[-5,2],[-5,6],[-13,25],[-4,11],[0,9],[9,7],[0,5],[0,6],[0,4],[2,4],[5,5],[3,4],[4,5],[25,15],[17,6],[16,15],[6,2],[11,-2],[5,2],[5,5],[1,6],[0,5],[1,3],[4,0],[7,0],[4,-3],[3,-4],[2,3],[3,10],[1,3],[2,0],[9,-4],[27,1],[10,6],[5,1],[6,-3],[3,-7],[3,-8],[3,-7],[3,20],[7,12],[11,6],[10,3],[-9,6],[-32,2],[-6,2],[-12,8],[-6,2],[-62,0],[-5,-1],[-4,-5],[-7,-10],[-2,-3],[-1,-4],[-2,-2],[-3,1],[-2,3],[-1,4],[0,4],[1,5],[-7,10],[-22,-4],[-11,2],[3,4],[1,0],[-7,7],[-11,1],[-22,-4],[-17,-8],[-9,-1],[-10,5],[0,-11],[-3,-2],[-3,4],[-4,2],[-3,-2],[-3,-3],[-3,-4],[-2,-4],[-3,3],[-10,5],[-3,4],[-1,4],[-3,3],[-32,9],[-12,-4],[-15,-11],[-9,-17],[2,-20],[-5,-1],[-5,-5],[-3,-6],[-4,-4],[-2,-2],[-1,1],[1,3],[-1,5],[-1,4],[2,4],[0,3],[-2,2],[-4,-1],[-1,1],[-9,8],[-10,3],[-10,-3],[-9,-12],[-2,14],[2,19],[4,18],[3,10],[14,16],[4,1],[7,5],[4,2],[-10,8],[36,31],[7,4],[5,8],[4,1],[1,17],[8,9],[12,8],[8,9],[8,15],[8,12],[2,1],[4,2],[2,1],[2,4],[3,8],[3,4],[-2,9],[-1,8],[2,5],[5,2],[4,3],[4,7],[2,8],[-1,7],[21,20],[4,-7],[-1,-6],[-5,-11],[-2,-3],[-2,-1],[-1,-1],[-1,-6],[1,-3],[1,-2],[0,-3],[-2,-6],[5,7],[4,4],[4,1],[6,0],[-1,6],[-3,2],[-3,1],[-4,0],[3,3],[3,5],[3,7],[1,5],[0,10],[-2,7],[-12,21],[-4,5],[-4,2],[-4,-3],[-1,-5],[2,-5],[6,0],[0,-4],[-9,-8],[-14,-33],[-7,-7],[-5,-4],[-2,-9],[-1,-9],[-2,-9],[-4,-4],[-5,0],[-5,3],[-4,4],[6,6],[5,14],[3,16],[2,14],[-2,5],[-7,9],[-3,4],[-1,9],[0,7],[1,17],[-4,-11],[-4,-3],[-3,4],[-16,41],[-5,9],[-6,8],[-3,4],[-1,6],[0,15],[0,6],[-2,6],[-4,9],[-6,10],[-6,7],[-5,-2],[16,-22],[3,-10],[-2,-9],[-1,-6],[1,-5],[3,-6],[7,-11],[1,-3],[3,-7],[1,-2],[4,-3],[3,-8],[4,-17],[3,-7],[6,-11],[2,-7],[-4,-21],[-7,-15],[-10,-13],[-8,-16],[3,-3],[4,-9],[3,-4],[-4,-2],[-6,3],[-4,-1],[-2,-5],[-3,-16],[-1,-3],[-5,-6],[-7,-27],[-4,-8],[-4,-1],[-2,4],[-1,5],[-3,5],[-3,1],[-18,-2],[-6,-4],[-6,-5],[-5,-7],[-14,-29],[-6,-3],[-6,-2],[-41,-23],[-36,-31],[-49,-52],[-8,-4],[-3,-4],[-2,-6],[-1,-6],[-1,-4],[-4,-3],[-17,-6],[-3,-2],[-8,-10],[-11,-6],[-9,-19],[-6,-5],[-2,2],[-6,8],[-3,2],[-3,-3],[-6,-11],[-8,-5],[-10,-11],[-5,-2],[-6,1],[-9,6],[-5,1],[-4,4],[-3,8],[-4,16],[-6,8],[-26,16],[28,35],[9,16],[1,5],[0,7],[0,13],[-1,6],[-1,5],[-1,3],[-1,-2],[-2,-7],[-11,-15],[-3,-14],[-5,-15],[0,-3],[0,-3],[-1,-3],[-1,-3],[-2,0],[-3,4],[-2,0],[-12,-5],[-6,-5],[-3,-6],[1,-2],[4,-14],[3,-6],[3,-4],[4,-4],[4,-2],[6,-1],[5,0],[5,-2],[3,-10],[-7,-3],[-9,-9],[-7,-12],[0,-9],[-13,-14],[-2,-4],[-2,-7],[-3,6],[-5,16],[-5,5],[-8,2],[-9,-2],[-5,-9],[7,-2],[9,2],[6,-3],[-3,-14],[-6,-7],[-17,-3],[-3,-8],[-1,-9],[-3,-1],[-3,1],[-4,-3],[-6,-11],[-4,-5],[-3,-2],[-4,-2],[-2,0],[-1,4],[0,8],[0,4],[1,2],[0,4],[-8,24],[-4,-4],[-4,-2],[-7,-2],[-1,-1],[-31,-33],[-9,-5],[-7,3],[2,4],[-2,2],[-2,2],[-2,-11],[-4,-6],[-6,-3],[-6,-1],[-2,4],[3,9],[1,10],[-5,6],[-1,-8],[-3,-3],[-3,0],[-4,-1],[-9,-13],[-5,-3],[-5,23],[-1,9],[4,4],[3,1],[7,3],[4,0],[-2,6],[-4,4],[-5,2],[-3,0],[-5,4],[-3,8],[-3,8],[-2,5],[-3,-1],[-4,-4],[-3,-6],[-1,-8],[-2,2],[-4,3],[-4,1],[-6,-15],[1,-5],[-2,-10],[-1,-13],[2,-12],[-7,4],[-5,9],[-11,27],[-2,6],[-1,7],[0,19],[-1,5],[-3,0],[-4,-4],[0,8],[-1,6],[-3,4],[-3,2],[0,-9],[0,-9],[2,-8],[2,-6]],[[31340,77225],[-9,6],[-3,2],[-7,6],[-3,2],[-4,-2],[-2,-4],[-1,-5],[0,-5],[-1,-5],[-10,-10],[-10,8],[-10,16],[-10,25],[-12,18],[-1,10],[1,11],[3,10],[7,19],[1,22],[-14,40],[-3,22],[7,9],[7,9],[4,6],[1,21],[-2,17],[-5,8],[-8,1],[-8,-2],[-13,1],[-15,6],[-15,10],[-8,10],[-4,6],[-2,6],[-2,6],[-3,4],[-2,-1],[-1,-4],[-2,-3],[-4,1],[-7,7],[-4,5],[-2,7],[-1,32],[2,9],[3,11],[4,9],[2,8],[-1,7],[-5,11],[-1,10],[3,8],[5,9],[3,9],[0,5],[-3,5],[-2,4],[-2,4],[0,6],[-1,80],[-1,79],[-1,80],[0,79],[-1,80],[-1,80],[0,79],[-1,80],[-1,23],[-1,4],[-12,10],[-4,5],[-8,19],[-12,15],[-2,5],[-1,8],[-3,7],[-8,15],[-13,13],[-17,24],[-4,4],[-8,5],[-4,3],[-7,16],[-4,5],[-14,11],[-14,5],[-14,-6],[-9,-18],[-1,-7],[0,-5],[0,-4],[-7,-2],[-4,-3],[-3,-1],[-9,9],[-7,1],[-7,-2],[-6,-3],[-13,-10],[-6,-7],[-5,-9],[-5,-6],[-7,-1],[-14,1],[-12,-5],[-35,-27],[-5,-1],[-37,35],[-5,12],[-2,13],[0,3],[0,20],[3,35],[0,18],[-4,8],[-43,16],[-4,-1],[-4,-3],[-4,-8],[-25,-53],[-25,-53],[-26,-53],[-25,-53],[-25,-54],[-25,-53],[-25,-53],[-25,-53],[-5,-10],[-4,-26],[-3,-30],[-5,-59],[-3,-39],[-3,-15],[-22,-28],[-4,-2],[-6,-6],[-2,-13],[-1,-13],[-1,-6],[-6,-2],[-3,-8],[-5,-22],[-8,-23],[-1,-12],[6,-5],[4,-12],[1,-13],[-1,-12],[-4,-8],[-10,-11],[-4,-5],[1,-5],[2,-3],[1,-3],[1,-2],[1,-2],[0,-4],[-1,-2],[-2,-4],[-1,-2],[-3,-21],[0,-10],[4,-8],[6,-6],[5,-1],[2,-5],[-2,-15],[-5,-19],[-9,-14],[-21,-25],[-6,-9],[-1,-3],[-1,-7],[1,-3],[2,-4],[1,-6],[0,-13],[-1,-10],[-3,-9],[-6,-7],[-3,-1],[-6,0],[-3,-2],[-9,-11],[-16,-11],[-5,-7],[-27,-47],[-12,-38],[0,-10],[2,-12],[5,-8],[11,-11],[5,-7],[2,-11],[-3,-7],[-6,-4],[-6,-1],[-6,6],[-10,14],[-5,5],[-7,0],[-5,-4],[-3,-8],[-2,-10],[-1,-12],[1,-26],[-1,-11],[-2,-5],[-5,-7],[-2,-4],[-1,-5],[0,-11],[-1,-6],[-5,-7],[-4,7],[-12,51],[-5,7],[-7,2],[-6,-2],[-3,-5],[-3,-7],[-5,-8],[-2,-2],[-6,-1],[0,-1],[-3,-1],[-4,-9],[-9,-20],[-5,-4],[-7,2],[-7,3],[-23,22],[-5,2],[-6,-4],[-5,-6],[-8,-16],[-4,-6],[-12,-4],[-3,-4],[7,-6],[5,-7],[-2,-11],[-8,-21],[-1,-7],[-2,-11],[-1,-6],[-12,-26],[-2,-8],[0,-10],[0,-14],[-27,0],[-28,0],[-28,0],[-27,-1],[-28,0],[-28,0],[-27,-1],[-28,0],[-28,0],[-28,0],[-27,-1],[-28,0],[-28,0],[-27,-1],[-28,0],[-28,0],[-28,0],[-27,-1],[-15,0],[-13,0],[-28,0],[-27,-1],[-28,0],[-28,0],[-27,-1],[-28,0],[-28,0],[-28,0],[-27,-1],[-28,0],[-28,0],[-27,-1],[-28,0],[-5,1]],[[14982,79653],[4,-7],[-5,-6],[-6,-1],[-13,6],[-6,5],[-10,-1],[-8,3],[-5,15],[4,3],[-1,8],[-1,7],[-2,6],[3,9],[-1,5],[1,7],[1,3],[6,0],[15,8],[5,0],[7,-7],[6,-13],[3,-14],[-2,-14],[2,-7],[1,-8],[2,-7]],[[15729,79688],[-3,-1],[-8,1],[-3,2],[-1,4],[1,5],[0,7],[2,8],[9,13],[4,5],[6,3],[7,2],[3,-4],[-1,-8],[-2,-6],[-2,-3],[0,-2],[1,0],[-1,-5],[-1,-5],[-2,-5],[-5,-8],[-4,-3]],[[34821,79770],[-4,-6],[-3,0],[-3,-2],[-2,-3],[1,-5],[1,-6],[-1,-7],[-3,-6],[-1,-5],[-3,-1],[-6,3],[-6,7],[-1,13],[4,8],[11,8],[3,6],[3,6],[6,-3],[4,-7]],[[15464,79792],[2,-1],[7,1],[4,-2],[4,-2],[5,-1],[5,-3],[17,-21],[0,-6],[-4,-4],[-13,7],[-5,0],[-2,-2],[-3,0],[-8,1],[-6,3],[-9,7],[-3,3],[1,3],[1,4],[-3,4],[-3,1],[-1,5],[2,4],[2,4],[3,1],[7,-6]],[[15744,79776],[-1,-14],[-5,-12],[-9,-2],[2,9],[-2,6],[-4,2],[-4,-1],[-3,-4],[-2,-5],[-3,-3],[-5,0],[0,8],[-1,6],[-1,5],[4,5],[0,4],[-3,9],[4,8],[6,6],[7,3],[3,2],[3,1],[3,-1],[1,-3],[4,-17],[6,-12]],[[15389,79801],[1,-4],[-3,0],[-5,1],[-3,-3],[-2,-8],[-3,-5],[-3,-1],[-2,2],[-6,7],[-3,7],[0,10],[5,6],[8,-1],[14,-9],[2,-2]],[[34533,79797],[-8,-8],[-7,3],[-1,5],[0,9],[1,9],[2,6],[4,2],[15,-2],[0,-12],[-6,-12]],[[15364,79774],[-4,-2],[-2,0],[-3,2],[-7,3],[-22,31],[-4,10],[0,12],[1,12],[3,3],[6,-10],[3,-3],[21,-48],[3,-1],[4,-4],[1,-5]],[[34540,79860],[-1,-3],[4,1],[3,-1],[2,-4],[-1,-7],[7,0],[2,0],[2,0],[2,3],[1,0],[2,-1],[0,-3],[0,-3],[-2,-1],[-5,-1],[-12,-5],[-8,-9],[-7,-1],[-6,2],[-3,6],[1,3],[4,9],[2,12],[2,3],[6,5],[6,0],[-1,-5]],[[34853,79858],[-1,-5],[-2,-6],[-2,-6],[0,-7],[-7,-7],[-10,-7],[-26,-11],[-5,-4],[-3,-4],[-2,-2],[-1,-5],[0,-8],[-1,-5],[-3,0],[-7,3],[-13,-6],[-7,-2],[-7,4],[5,7],[4,3],[4,2],[5,0],[2,2],[-2,2],[-3,3],[-5,3],[-2,4],[-3,9],[-1,1],[-4,-1],[-2,2],[0,3],[-1,7],[-1,6],[-2,0],[4,8],[9,-3],[5,8],[4,-2],[7,0],[4,-3],[-3,-10],[-1,-9],[5,-4],[7,-2],[5,1],[11,7],[6,7],[2,8],[1,11],[3,8],[5,6],[5,1],[-3,-6],[-1,-2],[4,-4],[8,9],[8,13],[5,5],[-1,-6],[1,-1],[1,-3],[2,-12]],[[34979,79923],[3,-5],[3,-4],[1,-1],[2,0],[2,-1],[0,-4],[0,-3],[-1,-2],[-1,-2],[0,-3],[3,-9],[4,-5],[5,-2],[6,0],[-3,-8],[-3,-1],[-9,5],[-2,-2],[-2,-4],[-3,-5],[-8,-3],[-3,-3],[-2,-4],[-3,-4],[-5,-2],[-11,-2],[-11,-7],[-3,-1],[-2,-1],[-8,-13],[-1,-1],[-2,2],[-2,1],[-4,7],[-2,16],[-1,19],[-2,15],[4,3],[7,-2],[4,3],[-2,1],[-2,3],[-2,3],[-1,5],[1,2],[1,2],[1,2],[1,2],[-2,0],[-3,0],[-1,0],[5,9],[7,-1],[7,-6],[6,-6],[-2,-4],[3,-12],[3,8],[0,8],[-1,7],[0,5],[4,5],[3,-1],[3,-2],[4,2],[-2,3],[-2,10],[11,0],[5,-2],[5,-10]],[[15550,79948],[0,-1],[-1,0],[-1,0],[-13,-20],[-2,-7],[-1,-3],[-7,-27],[-7,-13],[-8,2],[-7,11],[-5,16],[17,25],[3,4],[4,0],[5,-4],[0,8],[1,3],[2,2],[12,6],[8,1],[0,-3]],[[15464,79892],[2,-7],[8,-12],[1,-6],[2,-7],[3,-7],[27,-37],[8,-14],[6,-18],[-5,-6],[-6,4],[-9,15],[-51,48],[-16,6],[-1,3],[1,4],[-1,4],[-6,13],[-3,10],[0,1],[-2,1],[-1,0],[-3,-1],[-6,7],[0,1],[-5,3],[-11,11],[-11,5],[-5,5],[-9,13],[2,4],[1,4],[0,4],[-1,4],[0,4],[1,4],[0,2],[-1,6],[3,0],[4,0],[3,-1],[3,-3],[4,-6],[5,-14],[4,-4],[12,-4],[9,-8],[27,-8],[12,-10],[5,-13]],[[14794,79995],[5,-4],[6,7],[3,-2],[4,-14],[5,-27],[3,-9],[1,-8],[1,-11],[2,-29],[4,-23],[0,-13],[-6,-21],[-11,-2],[-35,21],[-5,5],[-5,10],[-4,7],[-16,16],[-17,26],[1,11],[3,2],[3,-3],[5,-8],[1,6],[2,6],[3,3],[8,3],[5,2],[2,4],[-2,5],[-3,0],[-3,-1],[-2,-2],[-2,-1],[-2,1],[-3,6],[-1,1],[-2,1],[-4,6],[-3,1],[-2,0],[-7,4],[2,8],[3,3],[6,1],[23,12],[17,15],[9,1],[3,-7],[5,-9]],[[32185,80051],[29,-17],[8,-2],[2,-1],[13,-12],[69,-17],[26,-10],[25,-3],[39,-10],[46,-23],[23,-4],[22,-17],[23,-8],[7,-7],[9,-16],[3,-3],[13,1],[20,-18],[5,-2],[7,-1],[7,-2],[5,-4],[20,-19],[8,-5],[15,-5],[6,-7],[10,-18],[2,-1],[4,-1],[2,-2],[1,-3],[0,-7],[1,-2],[12,-23],[3,-3],[3,-1],[6,2],[4,-1],[8,-11],[3,-2],[7,-1],[3,-1],[3,-4],[8,-17],[1,-1],[2,-4],[3,-5],[3,-1],[4,-1],[12,-8],[32,-5],[4,-2],[9,-11],[6,-8],[3,-2],[10,3],[6,0],[5,-10],[13,-17],[-2,-8],[2,-5],[8,-8],[1,-3],[1,-9],[1,-4],[2,-2],[6,-6],[3,-7],[8,-22],[7,-11],[7,-8],[-3,-6],[-6,-7],[-3,-4],[-1,-7],[0,-5],[0,-3],[-6,-1],[-5,1],[-3,0],[-15,-17],[-4,1],[-11,7],[-5,1],[-47,-6],[-22,5],[-32,-9],[-8,3],[-8,4],[-5,8],[-6,6],[-20,6],[-25,15],[-49,6],[-56,29],[-58,21],[-20,18],[-13,6],[-18,25],[-16,5],[-8,10],[-6,4],[-5,4],[-17,3],[-34,18],[3,9],[-3,8],[-5,9],[-3,9],[0,11],[-1,10],[-2,8],[-4,9],[-10,17],[-25,36],[-44,43],[-37,23],[-34,16],[-34,23],[-5,7],[-4,14],[-9,6],[-6,-4],[4,-14],[-7,2],[-7,6],[-6,9],[-3,9],[-4,8],[-7,4],[-4,5],[6,14],[11,11],[27,10],[16,3],[7,-1],[3,1],[4,3],[2,5],[2,3],[5,1],[22,-1]],[[14652,80080],[-6,-13],[-3,1],[-3,5],[-3,3],[-3,4],[-1,5],[2,3],[0,4],[1,4],[2,4],[5,2],[6,-1],[6,-8],[3,-5],[0,-2],[-1,-2],[-2,-2],[-3,-2]],[[34490,80196],[-3,-3],[-6,2],[-5,2],[1,4],[8,1],[1,5],[2,1],[3,-2],[2,-5],[-3,-5]],[[34529,80195],[-4,-2],[-6,5],[-7,1],[-9,4],[-4,8],[1,6],[10,1],[3,0],[6,-1],[5,-6],[3,-10],[2,-6]],[[15284,80093],[-3,-4],[-5,2],[-1,7],[0,8],[1,5],[0,7],[0,5],[-2,5],[-11,15],[-2,6],[3,6],[6,11],[12,20],[1,6],[-1,7],[-5,13],[-1,6],[1,1],[2,-1],[2,-4],[16,-33],[3,-11],[1,-3],[0,-4],[-1,-4],[-1,-1],[-1,-2],[1,-4],[2,-3],[1,-1],[1,-9],[1,-7],[1,-5],[3,-6],[-8,-5],[-8,-3],[-4,-4],[-4,-16]],[[32262,80202],[-8,-4],[-8,4],[-4,10],[1,10],[6,9],[1,-3],[1,-1],[2,-1],[8,-17],[1,-7]],[[15233,80082],[-1,-6],[-4,4],[-2,6],[-2,13],[-2,6],[-5,11],[-2,5],[1,1],[3,3],[-5,8],[-15,17],[-3,6],[-2,2],[-3,3],[-3,4],[-2,7],[0,6],[-1,17],[-4,16],[0,13],[1,11],[2,8],[5,5],[8,5],[8,2],[4,-4],[3,-13],[2,-3],[4,-3],[4,-11],[6,-5],[2,-6],[2,-8],[0,-8],[-2,-8],[-4,-6],[-2,-6],[2,-8],[-7,-4],[-4,-4],[-1,-6],[5,-11],[2,-3],[3,-1],[2,-2],[2,-6],[1,-5],[1,-19],[3,-23]],[[15329,80206],[6,-8],[8,-6],[3,-12],[-3,-7],[-6,-10],[-7,-9],[-6,-4],[-3,3],[-2,6],[-4,13],[-1,7],[3,4],[5,3],[3,4],[-3,8],[-4,1],[-10,-5],[-6,1],[-4,4],[-9,20],[-2,9],[1,8],[4,3],[3,5],[3,10],[3,6],[9,-8],[13,-5],[6,-4],[1,-3],[-1,-4],[-2,-10],[2,-20]],[[15354,80261],[10,-8],[8,-17],[3,-23],[-4,-19],[-8,-12],[-6,-6],[-3,1],[-2,3],[0,4],[-1,7],[-2,10],[1,10],[3,13],[6,11],[0,8],[-2,7],[-3,4],[-1,-1],[1,-6],[0,-5],[0,-4],[-2,-7],[-7,-21],[-3,-3],[-4,3],[-6,6],[-1,2],[-1,4],[5,14],[2,9],[4,7],[4,4],[2,4],[7,1]],[[15222,80312],[2,0],[4,1],[2,-1],[1,-4],[2,-13],[1,-5],[1,-6],[7,-13],[4,-15],[10,-20],[3,-7],[1,-5],[2,-7],[2,-7],[0,-8],[-2,-6],[-3,-1],[-2,3],[-2,4],[-4,-24],[-3,-12],[-6,-6],[-2,-4],[-2,-1],[-3,5],[0,3],[4,19],[2,12],[0,13],[-1,11],[-9,9],[-3,9],[-9,33],[0,2],[-4,0],[-3,-3],[-3,-1],[-3,2],[-3,5],[-2,0],[-3,-2],[-7,-2],[-3,-4],[-1,-4],[-3,-3],[-6,-4],[-7,1],[-4,7],[-2,14],[3,10],[6,1],[12,-5],[4,4],[1,9],[-1,10],[0,10],[1,8],[3,10],[4,5],[14,-13],[4,-2],[2,-1],[3,-8],[1,-3]],[[15138,80325],[0,-5],[-25,-10],[-5,2],[-3,-1],[-4,-4],[-30,-3],[-6,1],[-1,1],[-3,3],[-1,2],[0,2],[0,3],[1,2],[2,2],[10,4],[14,-1],[8,5],[6,4],[6,3],[2,3],[4,2],[13,3],[6,-1],[5,-6],[1,-11]],[[15162,80293],[-9,-3],[-11,2],[-7,6],[-5,3],[-4,3],[2,4],[5,4],[6,6],[2,7],[0,5],[4,5],[19,11],[3,2],[3,4],[5,1],[8,-5],[4,-11],[-3,-13],[-3,-5],[-2,-3],[-8,-3],[1,-2],[1,-4],[-1,-4],[-3,-5],[-7,-5]],[[15060,80324],[-6,-2],[-5,1],[-14,4],[-9,0],[-12,5],[-5,8],[4,3],[4,1],[14,10],[10,4],[13,4],[3,-2],[7,-8],[1,-3],[0,-3],[3,-3],[3,-4],[1,-5],[-2,-4],[-3,-1],[-7,-5]],[[14838,80430],[2,-1],[10,-3],[4,-2],[2,-3],[0,-3],[-3,-3],[-4,-1],[-11,-4],[-9,-2],[-10,3],[-2,3],[3,4],[-2,5],[-4,4],[-1,3],[3,0],[10,0],[4,1],[4,1],[3,1],[1,-3]],[[14935,80410],[-3,-1],[-3,0],[-4,0],[-3,-3],[-5,-7],[-2,-2],[-30,-4],[-2,-2],[-8,-3],[-49,9],[12,8],[60,21],[1,1],[5,8],[2,3],[4,1],[10,-1],[7,-14],[5,-5],[5,-1],[-2,-8]],[[14896,80439],[-14,-10],[-4,-1],[-4,1],[-9,-6],[-4,0],[-3,2],[-1,2],[2,0],[-1,2],[-5,2],[-3,2],[1,2],[-3,0],[-3,3],[3,6],[21,8],[19,1],[5,0],[6,-6],[-3,-8]],[[33517,80462],[6,-24],[3,-4],[3,-15],[-1,-5],[-1,-1],[-2,-2],[-2,-2],[-3,-5],[-4,-5],[-3,0],[-2,8],[2,8],[8,27],[-3,3],[-2,-2],[-2,-3],[-1,-2],[-3,0],[-1,1],[0,3],[-3,6],[-2,11],[2,8],[5,2],[6,-7]],[[14712,80473],[28,-2],[11,4],[4,-4],[6,-8],[6,-7],[1,-5],[-1,-2],[-2,2],[-2,2],[-3,0],[-2,-3],[-7,-2],[-30,3],[-9,8],[-9,-3],[-15,-3],[-8,6],[3,9],[5,7],[4,3],[10,-1],[10,-4]],[[34589,80541],[1,-3],[1,-2],[2,-1],[-9,-9],[-4,-6],[1,-5],[-5,-8],[-16,-13],[-2,6],[-2,5],[-3,1],[-2,-3],[-8,6],[-1,5],[7,17],[0,3],[-1,4],[0,5],[2,6],[2,3],[2,-3],[2,-5],[0,-5],[6,3],[13,9],[5,6],[5,2],[7,-2],[4,-5],[-3,-5],[-2,-1],[0,-2],[-1,-1],[-1,0],[0,-2]],[[14277,80545],[-4,-1],[-5,4],[-1,6],[0,3],[3,4],[6,0],[1,5],[3,-4],[5,-3],[0,-3],[0,-5],[-4,0],[-4,-1],[0,-5]],[[14948,80520],[-13,-9],[-3,-6],[-7,-19],[1,-12],[-6,-6],[-17,-2],[-24,11],[-7,-3],[3,-5],[0,-3],[-2,-3],[-4,-1],[-4,1],[-6,5],[-4,2],[-15,-3],[-8,1],[-4,11],[5,1],[3,3],[1,5],[0,8],[10,18],[6,7],[6,-2],[8,10],[14,22],[8,8],[5,2],[11,1],[5,1],[9,8],[5,1],[8,-8],[3,-6],[3,-7],[1,-6],[2,-8],[7,-7],[2,-5],[-2,-5]],[[33653,80548],[-4,-6],[-5,3],[-1,6],[6,23],[3,-12],[1,-14]],[[14255,80556],[-3,-1],[-3,3],[-4,5],[1,5],[1,5],[2,3],[1,-3],[5,-2],[2,0],[3,-2],[-2,-4],[1,-3],[3,-3],[-2,-2],[-5,-1]],[[34108,80578],[2,-3],[3,-4],[2,-3],[-3,-2],[-3,-3],[-5,-3],[0,-4],[-4,-4],[-4,0],[-2,2],[2,2],[4,2],[-2,2],[-4,-1],[-3,1],[-2,4],[1,6],[3,6],[4,2],[5,0],[1,-2],[2,2],[3,0]],[[14828,80576],[8,-9],[4,-5],[4,-7],[-4,0],[-5,3],[-3,1],[-3,-1],[-6,-5],[-10,-3],[-19,-11],[-1,1],[-4,6],[-3,1],[0,-1],[-1,-3],[-1,-2],[-1,-2],[-4,0],[-17,7],[-8,15],[-6,6],[0,5],[4,0],[4,2],[4,2],[10,0],[3,-5],[3,-9],[3,-3],[4,8],[-1,6],[4,3],[24,-1],[5,1],[2,4],[2,2],[3,2],[2,-1],[1,-3],[2,-2],[1,-2]],[[14477,80594],[87,-43],[9,-8],[5,-1],[4,-4],[2,-6],[3,-9],[-1,-1],[-1,-3],[0,-6],[1,-4],[2,-6],[1,-4],[2,-5],[4,11],[3,12],[5,9],[6,-3],[-4,-11],[5,-12],[8,-11],[7,-7],[24,-13],[8,-7],[4,-6],[3,-4],[3,-4],[5,-2],[15,2],[4,-2],[2,-3],[1,-4],[1,-4],[0,-1],[3,-2],[2,1],[2,0],[3,1],[14,-5],[5,0],[-2,0],[2,0],[2,-1],[2,-1],[1,-1],[-1,-2],[-3,-5],[-1,-1],[4,-4],[29,-1],[5,-1],[2,-5],[-2,-5],[-2,-4],[0,-4],[4,-1],[1,1],[2,8],[2,3],[2,1],[10,-1],[6,-2],[24,-16],[7,-2],[6,-4],[10,-16],[8,-1],[1,3],[1,8],[2,2],[2,-1],[3,-3],[1,0],[3,-1],[8,-3],[3,-3],[6,-4],[27,7],[6,-2],[13,-9],[6,-1],[22,2],[21,-9],[26,-18],[19,-18],[6,-2],[27,-2],[13,-6],[11,-11],[3,-2],[42,9],[7,-3],[11,-11],[13,-5],[6,-6],[5,-9],[4,-11],[-2,-4],[3,-9],[3,-9],[6,-35],[11,-32],[-6,-4],[5,-8],[9,-8],[5,-2],[2,-10],[10,-15],[-1,-10],[11,-18],[1,-5],[0,-11],[1,-5],[3,-8],[4,-18],[3,-8],[82,-119],[3,-7],[1,-10],[-2,-11],[-4,-3],[-23,8],[-2,-2],[1,-8],[3,-3],[2,-2],[3,-4],[2,-4],[6,-9],[3,-6],[20,-61],[5,-4],[3,-3],[1,-4],[1,-11],[2,-5],[6,-7],[13,3],[6,-6],[3,-4],[7,-3],[3,-3],[4,-13],[1,-3],[12,-12],[14,-8],[28,-9],[16,-1],[7,-3],[6,-6],[3,-4],[3,-2],[30,-16],[3,0],[4,3],[3,1],[4,-3],[14,-18],[-5,-3],[-10,-2],[-4,-7],[4,-3],[3,0],[8,3],[4,-1],[7,-6],[4,-1],[17,0],[9,-3],[6,-7],[1,-4],[1,-4],[0,-4],[-5,-4],[1,-3],[3,-8],[6,-24],[3,-5],[4,-1],[6,2],[11,-5],[4,1],[4,-7],[3,-8],[2,-10],[2,-11],[9,-16],[1,-8],[-6,-5],[3,-7],[1,-7],[-1,-5],[-4,-1],[-4,4],[-3,7],[-3,5],[-6,-4],[0,-4],[13,-20],[14,-14],[2,-5],[4,-7],[34,-50],[4,-9],[-3,-5],[-1,-1],[-2,-5],[0,-4],[1,-2],[2,1],[2,1],[2,1],[2,-3],[1,-8],[0,-12],[-2,-8],[-3,2],[-4,5],[-5,3],[-6,0],[-4,-2],[0,-4],[6,-7],[19,-17],[3,-4],[6,-12],[1,-4],[-1,-8],[-2,-5],[-1,-4],[0,-8],[2,-5],[2,-4],[3,-6],[0,-9],[-1,-9],[-2,-5],[-2,-4],[-2,-7],[1,-8],[7,4],[11,17],[-2,9],[1,18],[-1,9],[12,8],[-7,8],[-3,5],[0,8],[3,2],[4,2],[5,0],[3,-1],[4,-3],[1,-2],[1,-5],[0,-8],[1,-2],[1,-6],[0,-7],[-1,-3],[1,-6],[9,-35],[3,-22],[3,-9],[4,-7],[5,-7],[4,-10],[2,-11],[-2,-15],[-4,-6],[-8,-5],[-7,-3],[-22,26],[-5,-6],[-7,-25],[-5,-5],[-4,-2],[-1,-4],[0,-5],[-1,-6],[-2,-4],[-5,-7],[-3,-5],[1,-9],[-6,-4],[-6,3],[0,10],[-5,0],[-8,-6],[-3,-2],[-4,2],[-5,9],[-6,3],[-8,8],[-13,7],[-16,-1],[-14,3],[-67,40],[-72,50],[-7,1],[-6,3],[2,8],[6,8],[5,5],[-3,3],[-9,2],[-3,-1],[-4,-3],[-2,-4],[-6,-9],[-2,1],[-5,3],[-42,15],[-19,14],[-10,11],[-9,15],[-4,4],[-77,49],[-5,5],[-9,22],[-5,7],[-7,8],[4,9],[17,16],[1,3],[3,9],[2,4],[3,4],[3,2],[2,1],[7,1],[4,2],[2,3],[2,5],[-1,8],[-1,5],[0,4],[3,7],[5,9],[6,4],[12,6],[10,11],[10,17],[8,23],[3,24],[2,10],[4,10],[2,11],[-5,22],[-3,34],[-2,-2],[-2,-3],[-1,-3],[-1,-4],[0,-5],[2,-21],[0,-25],[-2,-12],[-3,-9],[-5,-9],[-3,-9],[-3,-25],[-2,-11],[-6,-4],[-4,-2],[-12,-9],[-7,-1],[-15,4],[-3,-1],[-5,-6],[-3,-1],[-7,3],[-5,5],[-5,3],[-7,-3],[-8,-16],[-6,-7],[-5,1],[-7,4],[-14,2],[-6,4],[10,18],[5,7],[6,3],[0,4],[-10,0],[-3,0],[-2,3],[-3,3],[-2,3],[-3,0],[-3,-9],[-1,-12],[-2,-11],[-10,-9],[-8,-17],[-5,-4],[-1,-2],[-1,-4],[-1,-4],[-3,-2],[-5,1],[-3,1],[0,2],[-4,2],[-5,3],[-4,5],[-4,5],[-4,4],[-9,4],[-4,4],[-1,4],[-2,7],[-1,3],[-10,15],[-7,6],[-3,5],[-8,10],[-28,9],[-3,3],[-4,4],[-3,6],[1,7],[2,4],[9,3],[4,5],[4,-6],[5,-5],[4,-1],[6,4],[2,3],[11,12],[2,-1],[3,9],[10,9],[3,7],[1,7],[3,5],[2,6],[1,12],[-24,-27],[-7,-12],[-7,-7],[-2,12],[0,32],[3,17],[1,10],[-3,-3],[-3,-6],[-4,-3],[-4,-1],[-3,4],[0,6],[0,22],[1,7],[2,6],[3,10],[1,10],[0,8],[-1,0],[-4,-6],[-3,-9],[-4,-12],[-1,-17],[-2,-7],[-2,-6],[-2,-4],[-2,0],[-4,6],[-3,2],[-7,-3],[-10,-20],[-5,-5],[-6,1],[-5,5],[-4,7],[-5,11],[5,11],[9,7],[7,10],[7,31],[5,15],[3,14],[-4,10],[-2,-11],[-11,-16],[-2,-8],[-1,-13],[-2,-9],[-5,-7],[-5,-5],[-3,4],[-6,5],[-4,5],[-4,22],[1,8],[4,9],[0,6],[1,10],[0,4],[-3,-1],[-16,-10],[-5,-2],[-5,-3],[-4,-2],[-1,-2],[-1,-3],[-2,-1],[-3,0],[-4,1],[-4,4],[-2,5],[-1,8],[-2,6],[-3,3],[-4,-3],[3,-8],[1,-10],[-2,-9],[-4,-11],[-2,-9],[-1,-2],[-3,0],[-1,3],[-1,3],[-1,2],[-8,6],[-3,3],[-3,5],[-4,4],[-6,4],[-3,5],[4,5],[-4,7],[-4,14],[-3,4],[-5,-1],[-4,-6],[-4,-8],[-3,-5],[4,-12],[3,-8],[0,-6],[-7,-7],[-6,-3],[-5,1],[-4,4],[-4,6],[-4,11],[-1,6],[2,8],[2,12],[0,1],[0,15],[0,6],[1,4],[0,4],[-1,7],[1,0],[0,3],[-2,3],[-1,2],[-2,8],[1,3],[0,4],[0,4],[1,5],[1,5],[1,2],[3,5],[5,4],[9,5],[13,15],[10,1],[22,-4],[33,9],[6,5],[3,2],[4,0],[6,-4],[4,-1],[13,7],[-1,5],[-2,5],[-2,3],[-3,1],[-21,-2],[-29,-12],[-7,-8],[-4,1],[-32,15],[-7,5],[-3,7],[3,10],[18,35],[1,4],[-4,2],[-8,5],[-4,1],[-2,-4],[1,-21],[-2,-9],[-4,-9],[-7,-6],[-8,-3],[-7,2],[-6,5],[-3,10],[-9,50],[-1,10],[-1,23],[-2,15],[-4,-1],[-5,-7],[-6,-4],[-6,3],[-6,8],[-5,10],[-5,17],[-5,7],[-11,12],[0,-8],[9,-10],[2,-9],[-2,-8],[-4,-9],[-4,-7],[-4,-3],[-5,0],[-4,0],[-2,5],[-5,39],[-3,10],[0,-3],[-1,-6],[0,-4],[-1,-11],[0,-30],[-2,-10],[-3,-1],[-35,-1],[-7,-3],[-7,0],[-5,5],[-25,48],[-2,9],[2,8],[9,19],[1,2],[2,0],[1,1],[1,5],[0,3],[-2,2],[0,3],[3,11],[3,11],[5,7],[12,7],[4,9],[2,12],[-4,12],[-2,-5],[-1,-5],[-1,-5],[-2,-5],[-2,-2],[-6,-2],[-4,-8],[-8,-1],[-7,2],[-3,5],[-2,6],[-5,9],[-5,7],[-4,4],[-2,-4],[1,-10],[2,-11],[2,-10],[-1,-9],[-2,-9],[-3,-6],[-6,-6],[-6,-4],[-7,-1],[-6,1],[-6,4],[-9,11],[-5,8],[-3,9],[0,11],[3,5],[11,9],[-19,0],[2,7],[4,8],[11,13],[-11,5],[-9,-11],[-8,-15],[-7,-7],[-12,-7],[-6,0],[-4,7],[-1,9],[1,8],[3,8],[2,7],[-10,-4],[-11,-11],[-10,-14],[-14,-26],[-3,-4],[-3,-2],[-2,2],[-5,9],[-2,1],[-13,2],[-6,5],[-3,10],[3,7],[16,19],[18,34],[5,3],[3,3],[-1,7],[-2,3],[-2,0],[-6,-3],[-5,-1],[-2,2],[-4,8],[-2,3],[-5,4],[2,6],[8,2],[3,4],[1,8],[-3,4],[-3,1],[-3,-3],[-3,0],[-7,11],[-3,3],[-2,-1],[-6,-9],[-3,-2],[-7,4],[-7,8],[-3,9],[4,4],[3,17],[3,13],[5,6],[0,4],[-2,6],[0,6],[2,6],[3,3],[9,-5],[5,1],[2,8],[9,-4],[7,3],[7,6],[8,3],[43,-1],[6,-4],[5,-9],[15,-37],[6,-10],[8,-4],[-10,34],[-7,18],[-14,16],[-1,17],[3,13],[8,-1],[6,15],[21,9],[2,13],[-26,-9],[-6,-6],[-4,-5],[-2,1],[-3,4],[-2,3],[-4,6],[-4,4],[-4,2],[-57,4],[-16,12],[4,-8],[6,-8],[7,-6],[5,-3],[31,0],[15,-5],[6,-6],[5,-7],[0,-9],[-6,-4],[-13,-1],[-49,-26],[-2,9],[-5,-1],[-12,-10],[-12,-6],[-13,-2],[-5,4],[-5,7],[-5,2],[-3,-10],[2,0],[1,-1],[1,-6],[2,-4],[-1,-3],[-4,-2],[-2,1],[-3,3],[-3,3],[-5,8],[-7,3],[-4,3],[-2,3],[-3,9],[-3,4],[-4,5],[-3,2],[-3,1],[-2,1],[-2,4],[-1,5],[-3,11],[-1,13],[-2,7],[-11,8],[-6,-2],[-3,2],[-1,6],[-3,10],[-1,6],[3,2],[7,2],[5,4],[2,5],[-5,2],[-3,-1],[-6,-3],[-3,-1],[-3,2],[-3,4],[-3,4],[-2,4],[-1,12],[-6,21],[0,10],[-4,7],[3,5],[6,3],[5,1],[0,2],[6,8],[2,1],[10,-3],[10,6],[11,12],[11,8],[10,-5],[15,17],[6,3],[6,-1],[10,-4],[28,5],[10,-2]],[[14540,80577],[-5,-1],[-15,5],[-7,8],[-8,2],[-10,4],[-5,6],[0,6],[16,7],[9,7],[9,0],[7,-7],[5,-12],[2,-12],[2,-13]],[[14489,80620],[0,-5],[-3,-4],[-4,-2],[-3,-1],[-3,1],[-3,3],[-7,-1],[-4,5],[-5,-1],[-7,3],[-1,5],[12,5],[3,3],[2,4],[2,2],[15,-2],[4,-4],[0,-4],[1,-2],[1,-5]],[[34567,80617],[3,-9],[-6,0],[-5,3],[-10,9],[3,7],[-1,5],[-5,11],[-2,7],[3,2],[7,1],[12,11],[5,1],[4,-9],[-2,-8],[-2,-4],[-3,-4],[-3,-6],[-2,-7],[1,-5],[3,-5]],[[14572,80703],[-4,-1],[-3,1],[-3,-1],[-4,1],[-3,5],[-2,6],[-1,3],[4,3],[11,5],[4,1],[5,-4],[0,-10],[-4,-9]],[[33730,80732],[-3,-12],[-11,7],[9,16],[12,19],[23,15],[10,-5],[-8,-16],[-11,-12],[-21,-12]],[[33788,80792],[-14,0],[0,12],[7,10],[22,8],[0,-10],[-5,-9],[-10,-11]],[[33774,80840],[0,-9],[1,-2],[0,-3],[1,-2],[2,-1],[-3,-4],[-13,-13],[-5,-3],[-25,8],[3,7],[5,7],[9,11],[6,1],[13,-1],[6,4]],[[34476,81038],[5,-3],[4,2],[4,4],[4,1],[-15,-31],[-1,-11],[11,2],[-6,-17],[-7,-16],[4,-3],[5,0],[9,3],[20,0],[9,-4],[11,-8],[10,-4],[10,4],[-5,4],[-10,3],[-5,5],[-1,8],[0,8],[-1,6],[-14,10],[2,13],[5,5],[-4,-17],[7,6],[12,20],[7,6],[-3,-7],[-1,-3],[0,-3],[2,-2],[1,-3],[2,-5],[5,-3],[6,0],[4,2],[-1,2],[-1,1],[-1,0],[-1,1],[16,14],[5,2],[10,-6],[0,-9],[2,1],[1,4],[1,2],[10,-2],[5,-4],[2,-10],[-4,-7],[-6,2],[-5,4],[-4,1],[2,-5],[7,-9],[2,0],[0,-7],[-2,-7],[-2,-6],[-3,-3],[-8,5],[-14,0],[4,-7],[8,-8],[3,-5],[8,3],[-1,-10],[-4,-14],[0,-9],[-3,-7],[-3,-14],[-2,-7],[-4,-5],[-3,2],[-2,5],[-7,6],[-2,0],[-1,-6],[-1,-8],[1,-4],[3,-2],[1,-1],[-1,-3],[-2,-3],[-2,-1],[-6,0],[-2,1],[-2,3],[-1,-6],[1,-7],[1,-7],[2,-4],[-6,-3],[-6,6],[-6,9],[-7,4],[-33,9],[-17,-5],[-6,0],[-2,2],[-2,2],[-6,8],[-3,3],[-5,1],[2,-3],[2,-9],[-8,-2],[-6,7],[-6,9],[-7,6],[0,-5],[0,-3],[-1,-4],[0,-4],[-3,6],[-3,2],[-4,1],[-4,-1],[0,-4],[1,-3],[-2,-14],[-1,-7],[5,-1],[13,-4],[3,-3],[2,-18],[0,-2],[-1,-4],[-3,-1],[-2,-1],[-3,1],[2,-4],[7,-8],[-4,-2],[-9,-2],[-4,-4],[10,-7],[6,-2],[1,-3],[1,-4],[1,-4],[7,-18],[5,-6],[5,-1],[-2,10],[-2,2],[1,1],[0,3],[0,4],[-1,5],[14,1],[6,5],[6,8],[5,4],[21,-6],[3,-2],[3,-4],[6,-8],[3,-7],[0,-3],[-2,-1],[-2,-4],[-1,-3],[-1,-7],[1,-7],[4,-3],[1,-3],[-1,-8],[-3,-8],[-2,-5],[2,-8],[-3,-8],[-5,-6],[-5,-3],[-2,3],[-2,4],[-3,2],[-1,-6],[1,-6],[3,-4],[3,-3],[3,-1],[-10,-17],[-2,-6],[-1,-6],[-2,-5],[-2,-4],[0,-3],[2,-4],[1,-5],[2,-12],[-4,-3],[-2,5],[-1,7],[-2,4],[-3,-3],[-2,-9],[-2,-9],[1,-8],[2,3],[2,1],[1,-1],[3,-3],[-4,-3],[-3,-5],[-2,-7],[-1,-9],[-4,20],[-3,0],[-6,-8],[-4,-8],[-6,-21],[-13,-28],[-6,-10],[-1,-2],[-5,-6],[-4,-13],[-4,-9],[-7,4],[2,4],[1,5],[1,5],[0,6],[-5,-6],[-3,2],[-5,12],[3,13],[1,3],[-3,17],[2,15],[4,15],[2,14],[-7,-1],[-5,-6],[-4,-8],[-3,-13],[6,-1],[2,-8],[0,-12],[-2,-12],[-1,-3],[-5,-11],[1,-3],[3,-5],[0,-2],[0,-3],[-2,-6],[0,-3],[1,-12],[1,-8],[3,-7],[5,-6],[7,-1],[3,-2],[-2,-7],[-7,-15],[-3,-3],[-1,-2],[-13,-21],[-9,-9],[-4,-8],[-2,-22],[-2,-3],[-20,0],[0,-5],[7,-3],[6,-1],[2,-4],[-4,-11],[-9,-17],[-10,-12],[-5,-8],[-8,-22],[-4,-6],[-5,-1],[-2,4],[-2,5],[-3,4],[-13,-4],[5,-10],[9,-2],[6,-5],[-1,-20],[-3,-14],[-5,-16],[-6,-14],[-7,-8],[1,-13],[-5,-13],[-23,-36],[-3,-3],[-4,0],[-4,2],[-4,1],[-4,-3],[7,-7],[2,-6],[-1,-6],[-6,-10],[-13,-18],[-4,-6],[-3,-9],[-10,-45],[-2,-9],[0,-10],[4,8],[5,10],[6,6],[2,-6],[-1,-10],[-5,-22],[0,-7],[0,-3],[-4,-3],[-2,-3],[-1,-2],[-1,-6],[1,-3],[1,-2],[1,-2],[-2,-7],[-3,-7],[-4,-6],[-3,-4],[-22,-18],[-6,-10],[5,-3],[16,-2],[4,-2],[1,-5],[3,-1],[4,0],[1,-2],[0,-19],[-1,-3],[0,-6],[-8,-35],[-3,-18],[-1,-6],[-8,-20],[5,5],[5,8],[7,20],[15,31],[5,20],[35,72],[7,9],[1,3],[1,5],[2,4],[3,4],[8,6],[9,17],[5,3],[12,-31],[2,4],[-1,11],[-2,9],[1,10],[6,9],[2,-4],[9,-8],[-2,13],[-3,8],[-1,8],[13,42],[6,13],[7,5],[6,7],[8,28],[18,20],[4,5],[4,4],[4,1],[5,0],[-1,-3],[-1,-6],[0,-3],[4,0],[4,-3],[0,-3],[-4,-2],[3,-7],[4,-4],[5,-6],[1,-8],[-2,-7],[-8,-14],[-3,-7],[-6,-27],[-2,-9],[-3,-8],[-12,-21],[10,5],[9,13],[14,33],[4,4],[13,8],[4,0],[1,-9],[-3,-9],[-9,-13],[9,-4],[6,13],[3,19],[3,9],[10,-2],[9,-4],[8,-9],[6,-14],[-2,0],[2,-6],[11,-15],[1,-1],[2,1],[2,1],[2,-2],[1,-4],[1,-4],[1,-2],[6,-4],[6,0],[3,2],[3,4],[3,6],[2,4],[-2,5],[7,5],[15,-2],[8,1],[3,2],[22,22],[0,-4],[6,-17],[2,-10],[0,-10],[-4,-9],[-5,-6],[-6,-4],[-6,-1],[-10,-6],[-20,-25],[-12,-6],[-7,-16],[-26,-12],[-42,-36],[-3,-1],[-3,3],[-3,4],[-2,1],[-4,-8],[3,-8],[-5,-7],[-13,-9],[2,-9],[-8,-12],[-17,-19],[-2,-5],[-2,-5],[-1,-8],[-1,-9],[2,-7],[4,7],[8,18],[7,13],[16,21],[20,17],[3,2],[5,0],[4,2],[4,3],[4,3],[1,-4],[0,-1],[1,-3],[-5,-3],[-10,-7],[-5,-2],[0,-4],[5,0],[5,3],[4,3],[4,6],[1,-6],[5,0],[11,2],[-1,-4],[-2,-4],[-2,-3],[-2,-1],[-2,-2],[-1,-5],[-1,-5],[-1,-5],[-3,-5],[-14,-15],[3,-6],[4,-3],[10,1],[-6,-20],[-11,-15],[-12,-10],[-12,-4],[-3,-2],[-5,-8],[-2,-2],[-4,-1],[-1,-2],[0,-5],[-2,-6],[-9,-16],[-3,-8],[2,0],[6,6],[11,4],[19,23],[11,9],[25,12],[12,1],[13,-5],[-2,-9],[-2,-3],[6,1],[2,-1],[2,-2],[2,-1],[4,-3],[3,-4],[-3,-2],[-3,1],[-2,1],[-2,0],[-3,-2],[0,-1],[-1,-4],[-3,-4],[-2,-3],[6,-2],[9,3],[15,11],[-1,-8],[-3,-11],[-1,-9],[5,-1],[2,1],[0,-5],[-2,-5],[0,-7],[2,-6],[4,-2],[4,4],[2,8],[1,8],[2,7],[12,26],[8,10],[9,2],[-8,-25],[-4,-15],[1,-8],[-2,-7],[-1,-7],[0,-8],[1,-7],[7,12],[3,8],[1,7],[1,9],[1,7],[3,5],[5,1],[-1,2],[0,2],[0,2],[-1,2],[2,6],[2,6],[3,-11],[3,3],[3,9],[2,7],[5,4],[16,4],[-2,-8],[4,2],[2,2],[2,-4],[-17,-30],[-6,-7],[0,-3],[9,4],[16,16],[7,-4],[-4,-5],[-18,-34],[-10,-10],[-4,-8],[7,5],[8,3],[5,-4],[-3,-16],[5,10],[5,17],[5,13],[4,1],[-4,-9],[5,-1],[7,8],[0,-7],[-2,-11],[-4,-3],[-4,-2],[-5,-4],[2,-4],[2,-6],[2,-7],[1,-7],[2,1],[1,1],[1,2],[-2,8],[1,6],[2,4],[9,5],[4,7],[2,7],[2,3],[0,3],[-8,18],[-2,7],[0,9],[0,10],[2,6],[-14,33],[8,0],[4,3],[4,5],[8,-7],[3,-4],[-4,-5],[2,-4],[2,-3],[3,-1],[3,-1],[-1,4],[-2,9],[-1,4],[5,3],[5,4],[6,1],[5,-5],[-4,0],[0,-3],[3,-5],[3,-8],[1,-8],[1,-10],[-2,-10],[-3,-6],[-5,-6],[-4,-9],[3,-7],[-3,-10],[-4,-6],[-3,8],[-4,-9],[-4,-13],[-1,-14],[3,-16],[0,-24],[-1,-7],[-3,-6],[-3,-3],[-6,-3],[-8,-7],[-3,-5],[-3,-7],[-1,-6],[-3,-6],[-10,-12],[-1,-5],[2,-2],[8,0],[3,-2],[-5,-20],[6,0],[2,-5],[0,-8],[-3,-8],[-4,-7],[-8,-9],[-5,-8],[4,2],[10,11],[4,3],[4,1],[8,-1],[5,4],[21,25],[0,4],[-7,-2],[-14,-13],[-5,1],[-3,12],[1,14],[4,13],[4,7],[0,5],[-8,-4],[-1,-1],[0,6],[2,6],[2,4],[3,1],[4,2],[5,4],[9,10],[40,33],[-2,4],[2,4],[-6,15],[-1,8],[-1,9],[5,-7],[6,-9],[4,-4],[4,12],[5,-30],[1,-9],[-2,-9],[-4,-8],[-9,-13],[3,-1],[5,3],[5,7],[4,7],[7,21],[4,3],[7,1],[1,-2],[0,-5],[1,-4],[4,-2],[2,2],[3,3],[2,5],[1,5],[2,19],[-1,3],[-5,2],[-1,3],[0,7],[1,8],[2,6],[3,6],[3,6],[2,3],[4,-1],[1,-4],[-1,-12],[0,-35],[1,-5],[-1,-6],[1,-11],[4,-7],[7,9],[2,6],[1,4],[0,11],[0,7],[2,6],[2,4],[3,1],[-1,-5],[0,-5],[0,-6],[1,-4],[3,-1],[2,4],[1,9],[2,5],[2,7],[2,4],[2,3],[5,3],[2,2],[2,3],[1,4],[3,10],[1,1],[1,0],[1,1],[1,4],[-1,4],[0,3],[-1,-2],[4,10],[14,25],[7,16],[4,8],[4,3],[6,1],[11,6],[5,1],[2,-3],[-14,-20],[-1,-3],[-2,-17],[-1,-3],[-7,-15],[6,8],[8,7],[9,4],[6,-3],[-4,-7],[-3,-7],[-1,-8],[4,-6],[-8,-12],[-2,-3],[-1,-12],[-1,-7],[2,-3],[6,-4],[1,-10],[-2,-12],[-6,-24],[0,-6],[2,1],[1,8],[3,10],[6,8],[7,6],[5,7],[-5,9],[2,12],[5,12],[5,18],[7,4],[13,1],[-1,-9],[4,-1],[9,7],[0,-10],[3,-1],[8,6],[-2,-8],[-3,-7],[-1,-8],[2,-9],[3,8],[1,8],[2,7],[4,6],[4,-11],[1,-6],[1,0],[4,10],[3,11],[1,11],[2,9],[15,7],[1,-1],[1,-4],[3,3],[2,5],[0,2],[3,3],[1,2],[1,0],[3,-7],[3,-3],[7,-1],[3,-2],[-4,-1],[-12,-11],[7,-4],[18,10],[8,2],[4,-4],[10,-14],[4,-3],[4,-1],[11,-7],[3,-4],[6,2],[5,-4],[8,-10],[13,-6],[4,-4],[-4,-6],[6,-10],[9,-3],[8,-2],[4,-3],[0,-5],[1,-2],[1,-1],[2,-2],[1,-1],[3,1],[1,0],[1,-2],[-1,-5],[0,-2],[4,-2],[3,-2],[5,0],[4,4],[4,-11],[2,-3],[3,-2],[0,-4],[1,-6],[-10,-14],[0,-12],[-3,-1],[-5,-2],[-3,-1],[-3,-3],[0,-5],[2,-9],[-1,-4],[-5,-10],[-1,-4],[-2,-4],[-3,1],[-8,5],[-1,-2],[-2,-4],[-1,-5],[-1,-5],[2,-2],[4,-2],[3,-2],[3,-7],[0,-12],[-2,-9],[-6,-5],[-51,-10],[-12,4],[-1,-2],[2,-4],[3,-4],[3,-2],[19,2],[5,-2],[-6,-9],[-9,-6],[-8,-4],[-8,-1],[-4,1],[-7,7],[-2,0],[-4,-7],[3,-6],[9,-7],[12,-14],[0,-3],[-4,-1],[-7,-9],[-3,-2],[-17,4],[-4,-3],[-3,-5],[-4,-4],[-4,0],[4,-6],[7,0],[15,6],[0,-4],[-21,-12],[-5,-8],[3,-8],[-3,-4],[-5,-1],[-9,1],[-4,-1],[-10,-8],[-16,0],[-3,-2],[-7,-7],[-4,-3],[2,-5],[-1,-5],[-1,-3],[-3,-3],[0,-4],[9,3],[40,26],[4,-1],[4,-5],[0,-6],[-2,-6],[-4,-7],[6,-3],[6,3],[2,5],[-4,4],[9,21],[14,10],[14,-1],[12,-15],[-8,-7],[-8,-2],[-16,1],[4,-6],[0,-7],[0,-7],[3,-4],[4,2],[2,6],[3,4],[5,-4],[-10,-15],[-6,-5],[-7,0],[-13,7],[-7,1],[-7,-4],[0,-4],[15,-2],[6,-5],[0,-9],[3,-5],[-1,-6],[-3,-6],[-1,-8],[3,-6],[4,-2],[5,-2],[4,-2],[0,-4],[-5,-3],[-5,-5],[10,1],[28,28],[0,4],[-22,-7],[-12,-1],[-1,9],[4,8],[10,13],[9,16],[0,-4],[-5,-23],[29,5],[1,-8],[6,-1],[3,-1],[3,-3],[-2,-4],[-1,-2],[-2,-1],[-2,-3],[-1,-5],[2,-3],[3,-1],[3,1],[14,14],[4,6],[2,3],[4,0],[3,-2],[1,-5],[0,-6],[-2,-2],[-2,-1],[-2,-3],[-5,-7],[-5,-5],[-5,-2],[-11,-1],[-19,-11],[-12,-16],[-5,-3],[-10,0],[-6,-1],[-5,-5],[-3,-6],[-3,-7],[-4,-7],[4,-3],[4,4],[4,7],[3,4],[54,-4],[-6,-4],[-12,-2],[-5,-6],[2,-2],[3,0],[2,1],[0,1],[5,-6],[2,-4],[-2,-2],[-2,-2],[-8,-8],[-5,-2],[-9,-1],[-8,-3],[-8,-5],[-8,-7],[-16,-19],[-8,-7],[-9,-3],[-10,3],[-4,1],[-5,-4],[-10,-15],[-5,-5],[3,-3],[3,-4],[2,-6],[0,-8],[13,28],[6,5],[6,0],[12,-3],[7,3],[21,28],[13,10],[11,-6],[-4,-9],[-13,-23],[-1,-13],[2,-9],[5,-3],[5,5],[-4,4],[2,7],[8,13],[1,4],[2,5],[1,5],[2,2],[4,2],[1,4],[0,6],[2,7],[7,14],[12,17],[12,11],[9,-4],[-3,-5],[-5,-5],[-3,-6],[4,1],[4,-1],[3,-3],[2,-5],[-23,-26],[-4,-6],[-3,-8],[2,-5],[6,7],[6,5],[6,3],[6,1],[2,7],[10,38],[2,0],[1,-8],[0,-6],[-3,-14],[5,5],[3,2],[3,1],[-19,-49],[6,6],[10,16],[5,10],[3,-4],[3,3],[4,14],[1,3],[0,10],[1,3],[2,1],[3,-2],[1,0],[2,12],[1,3],[2,2],[0,2],[0,5],[-1,7],[-1,4],[0,9],[1,4],[5,3],[1,4],[0,4],[1,3],[4,4],[2,0],[9,-4],[8,-1],[3,-1],[10,-14],[2,-6],[-5,-16],[2,-2],[5,2],[4,5],[0,-6],[1,-6],[2,-5],[2,-3],[5,0],[1,4],[1,6],[1,6],[5,8],[10,13],[4,7],[-2,5],[3,9],[2,4],[3,3],[3,2],[6,0],[3,4],[0,2],[4,29],[2,3],[2,-2],[-1,-6],[2,-6],[3,-2],[3,-1],[3,-3],[2,-6],[2,-12],[2,-6],[8,-15],[1,-8],[-7,-9],[1,-3],[3,-7],[2,-3],[-4,-4],[-5,-3],[-3,-4],[-2,-7],[0,-4],[-3,-10],[-1,-4],[0,-5],[0,-14],[-3,-15],[-7,-11],[-16,-12],[-4,-5],[-7,-16],[-2,-4],[-9,0],[-5,3],[-9,13],[-4,2],[-8,-1],[-3,-4],[-2,-1],[-1,3],[-1,4],[-2,1],[-2,-1],[-2,-2],[2,-14],[-9,-32],[5,-7],[-5,-5],[-16,0],[-4,-5],[-3,-12],[-6,-5],[-14,-5],[-2,-3],[-7,-14],[-10,-13],[-3,-5],[-5,-7],[-7,-1],[-7,2],[-18,13],[-6,3],[-8,0],[-11,-4],[-3,3],[-3,7],[-2,7],[-1,4],[-8,6],[-6,0],[-4,-6],[-1,-15],[1,-14],[2,-11],[2,-10],[3,-11],[1,-17],[2,-6],[28,-6],[22,5],[11,-1],[6,-12],[-17,-12],[-17,-8],[-19,0],[-15,7],[-4,-3],[4,-8],[6,-3],[13,-2],[6,-2],[6,-4],[6,-1],[10,10],[15,2],[6,5],[10,12],[5,3],[-2,-9],[-2,-3],[1,-17],[-7,-23],[-14,-41],[-7,3],[-18,1],[0,-4],[9,-1],[8,-3],[-1,-12],[-1,-16],[-2,-15],[-7,-6],[-2,-4],[-2,-9],[-3,-7],[-4,2],[-5,8],[-2,5],[-2,7],[-2,8],[-7,11],[-7,9],[-6,3],[-4,-6],[15,-15],[0,-12],[5,-4],[1,-9],[0,-11],[3,-5],[3,-4],[1,-10],[-1,-8],[-6,-2],[2,-7],[11,-17],[4,-8],[8,-23],[7,-3],[5,14],[4,19],[6,9],[5,-4],[0,-9],[-4,-9],[-2,-7],[-4,-13],[-1,-2],[-1,-4],[0,-7],[2,-6],[3,2],[2,4],[1,0],[3,-2],[0,-3],[1,-7],[2,-5],[1,5],[0,1],[1,-2],[1,-4],[0,-5],[-1,-5],[-5,-15],[4,4],[7,13],[2,3],[2,-1],[1,-2],[1,-4],[0,-3],[1,-3],[3,1],[2,2],[2,1],[8,-4],[1,3],[0,10],[0,7],[-1,5],[0,4],[5,4],[-5,10],[-2,7],[1,3],[4,0],[2,-1],[6,-6],[-1,9],[1,7],[1,7],[-3,9],[5,1],[4,6],[2,6],[0,3],[-3,3],[-2,8],[-1,9],[1,9],[3,8],[3,3],[2,4],[1,11],[2,9],[5,9],[-1,4],[4,13],[3,7],[3,5],[4,3],[3,1],[8,-4],[0,3],[-3,7],[1,8],[3,8],[3,8],[3,8],[4,20],[3,8],[8,17],[2,2],[5,-1],[3,1],[3,3],[2,4],[2,4],[8,2],[1,3],[1,4],[2,4],[6,2],[5,-5],[4,-6],[5,-3],[5,2],[5,5],[6,6],[3,5],[11,21],[11,28],[4,8],[4,2],[6,-6],[10,-22],[8,-6],[0,-5],[-3,-4],[-3,-2],[-13,0],[-3,-3],[-2,-4],[-1,-5],[-1,-4],[-5,-8],[-2,-5],[-1,-5],[0,-12],[-2,-9],[-4,-9],[-5,-9],[-11,-14],[-4,-9],[-3,-11],[1,-16],[-1,-10],[-2,-10],[-5,-11],[-10,-16],[-5,-10],[-2,-13],[-1,-3],[-3,-4],[-2,-4],[-3,-2],[-1,-1],[-3,-3],[-2,-1],[-1,-1],[1,-4],[3,-3],[8,-4],[-3,-8],[-3,-8],[3,3],[2,1],[2,-3],[1,-5],[-4,-6],[-7,-18],[-5,-4],[-5,-2],[-6,-5],[-2,-7],[2,-7],[3,4],[4,3],[3,1],[4,1],[-4,-7],[-7,-7],[-3,-7],[6,1],[6,4],[11,12],[-3,-10],[-7,-9],[-8,-7],[-6,-3],[-1,-1],[2,-3],[4,-3],[3,-2],[3,1],[9,8],[1,-22],[-1,-7],[-1,-6],[-2,-5],[-2,-5],[0,-8],[4,5],[4,7],[3,5],[4,0],[-1,-6],[0,-2],[1,-5],[-9,-16],[-4,-8],[2,-4],[6,2],[3,4],[3,2],[7,-4],[-2,-10],[-1,-2],[5,8],[10,23],[11,9],[18,25],[17,17],[5,9],[5,10],[4,12],[3,13],[2,12],[7,55],[5,27],[8,7],[2,-3],[2,-10],[1,-3],[12,-7],[2,-4],[1,-24],[0,-7],[-5,-19],[2,-5],[5,-1],[7,2],[3,-2],[0,-5],[0,-29],[-2,-10],[-8,-19],[4,4],[2,-8],[3,-6],[4,-5],[5,-1],[3,-3],[0,-6],[-3,-16],[-4,1],[-5,-3],[-9,-10],[9,-11],[1,-5],[-2,-8],[-3,-7],[-8,-12],[-2,-5],[-2,-9],[-4,-21],[-2,-7],[-4,-4],[-9,-2],[-4,-2],[2,-3],[3,-2],[3,0],[3,0],[-2,-6],[-4,-4],[-9,-5],[3,-9],[-1,-5],[-2,-4],[-2,-14],[-3,-10],[-1,-11],[-1,-4],[-2,-2],[0,-5],[-2,-19],[-2,-11],[-2,-8],[-4,-3],[-10,-2],[-5,-3],[14,-8],[5,0],[5,-3],[1,-5],[-3,-3],[-5,2],[1,-5],[1,-5],[2,-3],[2,-3],[0,-4],[-10,-11],[-1,-7],[3,-10],[-4,-3],[0,-4],[1,-4],[2,-1],[1,-4],[-8,-23],[-1,-13],[-3,-13],[-2,-13],[1,-12],[-2,-6],[0,-8],[-1,-7],[-6,-5],[-3,-10],[-2,-4],[-8,-3],[0,-1],[-6,-10],[-10,-41],[-7,-10],[-14,-12],[-10,-2],[-4,1],[-5,5],[-6,11],[-6,17],[-4,19],[1,14],[-5,-3],[-5,-8],[-7,-15],[-2,-1],[-1,5],[-2,6],[-1,3],[-3,-2],[-4,-5],[-5,-13],[2,9],[8,24],[-5,-2],[-5,-7],[-7,-15],[-5,-6],[-2,-4],[-2,-10],[-3,-3],[-4,-2],[-2,-2],[-11,-14],[-10,-6],[-9,4],[-10,18],[-1,4],[-2,14],[0,5],[0,10],[5,17],[3,9],[1,5],[0,7],[-1,6],[-1,7],[3,9],[10,20],[3,11],[2,8],[13,5],[4,9],[-4,-2],[-9,-3],[-4,-5],[-18,-42],[-7,-9],[-2,-2],[-1,3],[2,16],[1,6],[2,6],[2,6],[2,6],[2,16],[2,6],[14,13],[8,10],[0,12],[-3,-7],[-3,-5],[-4,-2],[-3,1],[1,6],[0,5],[0,5],[-1,5],[-2,0],[-1,-4],[-3,-11],[-1,-2],[-2,1],[-3,1],[-1,3],[0,6],[4,11],[-3,3],[-9,-4],[5,17],[5,13],[8,14],[2,8],[-3,5],[5,10],[14,15],[4,7],[-5,0],[-2,5],[-1,7],[2,8],[-4,-1],[-6,-6],[-4,-1],[-1,4],[3,18],[1,7],[-10,-35],[-6,-16],[-9,-6],[4,22],[2,6],[-4,-2],[-2,-3],[-2,-5],[-2,-6],[-4,-22],[-1,-1],[-4,-3],[-2,-4],[2,-5],[-2,-5],[-6,-9],[-3,-1],[-6,-1],[-3,-2],[-2,-4],[-12,-41],[-2,-3],[-10,-6],[-2,-3],[-1,-3],[-1,-12],[-2,-5],[-2,-3],[-6,-7],[-6,-4],[-2,-4],[0,-6],[-2,-6],[-2,-3],[-10,-3],[-3,-3],[-7,-13],[-4,-5],[-2,-3],[-3,-1],[-4,0],[-2,0],[-3,-3],[-2,0],[-1,1],[-3,5],[-1,1],[-15,5],[-4,3],[-1,1],[0,3],[-2,18],[0,13],[1,13],[2,12],[6,22],[1,5],[1,13],[2,6],[10,22],[4,10],[16,71],[5,13],[1,5],[1,8],[2,6],[2,3],[14,-4],[6,2],[-4,4],[-7,5],[-5,7],[-2,6],[-1,5],[0,14],[1,8],[2,1],[5,-3],[0,-1],[-1,-2],[-1,-1],[4,-3],[7,1],[4,5],[0,9],[8,7],[3,5],[2,8],[-7,0],[-4,1],[1,6],[5,11],[5,8],[6,5],[13,6],[0,4],[-6,-1],[-2,1],[-3,4],[-1,3],[1,1],[-15,-8],[-2,2],[-1,5],[-2,3],[-1,4],[1,4],[3,7],[1,4],[0,5],[2,9],[3,8],[0,6],[-5,4],[4,26],[-1,12],[-3,11],[-1,0],[-3,-5],[-1,1],[-1,2],[-1,4],[-1,3],[-2,6],[-1,8],[0,9],[1,6],[-2,4],[-6,37],[0,3],[1,2],[0,3],[-1,3],[-1,2],[-2,-2],[-2,-2],[-1,0],[-3,7],[-2,14],[-1,8],[2,8],[-10,-11],[-5,-1],[-4,8],[0,4],[1,3],[2,1],[1,0],[-1,3],[-1,5],[-1,6],[-2,3],[-1,4],[0,7],[-3,-7],[-2,-15],[-3,-6],[-4,0],[-5,5],[-6,11],[-1,3],[0,7],[-1,2],[-2,2],[-7,3],[-17,12],[3,-10],[6,-3],[6,-2],[4,-5],[1,-10],[-1,-12],[-8,-36],[-7,-25],[-8,-19],[-9,2],[-4,5],[-1,-8],[2,-17],[-1,-12],[-7,-17],[-1,-8],[-2,-8],[-9,-19],[-5,-17],[-4,-8],[-9,-10],[1,-4],[0,-1],[1,-2],[2,-2],[2,9],[2,-8],[2,-9],[2,-7],[4,-5],[-10,-13],[-4,-3],[2,8],[0,7],[-2,3],[-4,-2],[-3,-5],[-5,-16],[-3,-8],[2,-2],[2,0],[2,2],[1,5],[2,-5],[-9,-12],[-5,-3],[-1,4],[-14,-14],[-8,-5],[-2,10],[1,5],[10,11],[38,95],[7,27],[0,2],[-1,3],[-5,-10],[-11,-26],[-8,-11],[-11,-37],[-17,-34],[-15,-15],[-2,-6],[-2,3],[-1,3],[-1,4],[0,6],[-3,-2],[-2,-4],[-2,-4],[-2,-6],[2,-1],[0,-2],[1,-2],[1,-3],[-4,-3],[-3,0],[-2,3],[-1,8],[-4,-5],[-3,-2],[-3,2],[-1,10],[-7,-6],[-3,-2],[-4,-1],[8,15],[3,10],[-1,8],[-4,-1],[-3,-9],[-4,-19],[-4,5],[0,8],[2,8],[3,8],[-4,-3],[-3,-7],[-5,-16],[-4,-8],[-8,-12],[-4,-7],[-1,-5],[0,-4],[0,-5],[-3,-4],[-8,-10],[-2,-1],[-4,-3],[-4,-9],[-7,-16],[-3,-12],[1,-4],[4,-2],[2,-8],[-1,-6],[-3,-7],[-3,-6],[-4,-4],[-6,1],[0,6],[2,10],[-1,10],[-5,3],[-5,-5],[-5,-9],[-3,-8],[11,1],[2,-1],[2,-6],[-1,-6],[-1,-6],[0,-6],[5,-20],[-1,-8],[-8,0],[1,-3],[1,-7],[0,-3],[-11,-7],[-3,-6],[-1,-13],[-1,-2],[-3,2],[-2,4],[-2,2],[0,7],[2,14],[0,4],[-2,4],[-3,0],[-2,-3],[-1,-4],[0,-4],[2,-14],[1,-6],[-1,-13],[-2,-12],[-3,-9],[-6,-4],[1,-13],[-6,-10],[-9,-7],[-8,-3],[-13,4],[-3,0],[0,-8],[3,-7],[0,-5],[-7,-4],[-9,-1],[-10,5],[-6,13],[3,20],[-13,-7],[-4,1],[-1,13],[-2,-5],[0,-5],[-1,-6],[-1,-4],[-2,-5],[-1,1],[-1,3],[-1,1],[-4,-1],[-2,-1],[-2,-2],[-2,-3],[-5,-9],[-10,-8],[-5,-3],[-4,-1],[-9,5],[-4,-1],[-3,-8],[-3,5],[-7,3],[-13,0],[-8,1],[-15,10],[-12,10],[-5,8],[-4,9],[-1,8],[2,14],[4,11],[11,18],[10,24],[5,9],[7,4],[7,2],[10,10],[6,4],[7,-1],[15,-7],[4,2],[5,5],[19,5],[16,11],[8,1],[3,3],[2,6],[3,8],[1,5],[1,5],[2,2],[3,1],[3,3],[10,16],[7,6],[8,11],[6,5],[5,7],[4,11],[0,6],[0,13],[0,6],[1,7],[4,13],[1,6],[0,14],[3,9],[20,29],[5,5],[10,3],[6,6],[3,1],[10,0],[4,0],[4,3],[8,7],[5,3],[8,0],[2,2],[-1,11],[3,3],[10,0],[4,1],[11,14],[2,7],[1,10],[-6,-9],[-2,-1],[-2,6],[3,4],[4,11],[3,6],[3,3],[14,11],[8,3],[3,3],[5,7],[3,3],[4,2],[-6,3],[-10,-3],[-5,0],[2,8],[-17,-24],[-18,-15],[-20,-8],[-30,-4],[-5,2],[3,10],[9,14],[4,9],[1,10],[2,7],[19,39],[3,10],[1,11],[-13,-22],[-20,-54],[-13,-22],[3,-13],[-4,-9],[-7,-1],[-5,11],[0,7],[2,11],[4,19],[-5,-8],[-6,-6],[-7,-2],[-11,11],[-7,3],[-14,2],[-1,1],[-1,1],[-2,2],[-2,0],[0,-1],[0,-3],[-1,-3],[-2,-2],[-6,-1],[0,2],[0,6],[-1,3],[-1,2],[-1,1],[-1,2],[0,3],[1,2],[1,1],[0,2],[2,3],[3,4],[1,3],[-4,4],[1,3],[1,5],[-3,0],[-2,-1],[-3,-3],[-2,-4],[2,-2],[1,-3],[1,-3],[-1,-2],[-3,-2],[-2,-1],[-1,3],[-2,6],[-2,4],[-3,1],[-1,-3],[1,-19],[-1,-6],[-3,-7],[-6,-12],[-2,-8],[3,-6],[4,1],[3,7],[5,2],[6,-10],[-9,-13],[-1,-4],[2,-2],[9,6],[0,-4],[-3,-3],[0,-3],[1,-3],[1,-3],[-6,-20],[4,-8],[-1,-11],[-4,-11],[-5,-7],[-6,-4],[-17,0],[-1,-2],[-8,-10],[-2,-6],[-4,-15],[-2,-4],[-4,-2],[-1,4],[1,11],[-1,9],[1,4],[2,3],[0,4],[-6,-2],[-9,-9],[-6,-1],[2,4],[4,4],[2,4],[7,25],[2,4],[4,3],[-3,9],[-5,9],[-5,2],[-4,-11],[2,1],[2,0],[1,-1],[3,0],[-2,-5],[-3,-7],[-4,-6],[-3,-3],[-3,2],[-3,3],[-3,4],[-4,0],[2,-8],[0,-2],[2,-3],[-5,-5],[-5,-5],[-6,-4],[-5,-2],[3,11],[0,6],[-1,3],[-1,7],[1,7],[2,7],[2,8],[-5,-6],[-5,-10],[-2,-12],[2,-9],[-5,-10],[-4,2],[-5,5],[-5,3],[-4,-3],[-6,-7],[-4,-8],[-3,-6],[0,12],[7,12],[16,20],[18,36],[6,9],[-3,-1],[-6,-6],[-3,-1],[-2,-3],[-3,-6],[-2,-2],[0,7],[-5,-1],[-4,-5],[-8,-14],[-4,4],[-6,-5],[-6,-8],[-4,-4],[-6,-1],[-13,-6],[-24,-20],[-4,1],[-12,14],[-2,7],[5,10],[5,3],[24,6],[30,19],[3,0],[3,-1],[2,1],[1,2],[1,2],[1,3],[5,3],[5,8],[3,2],[6,1],[6,4],[6,5],[13,16],[5,3],[7,2],[19,14],[-6,3],[-8,-2],[-15,-9],[-22,-23],[-8,-2],[-7,4],[-8,7],[-5,11],[-1,15],[4,9],[21,23],[-2,3],[-1,3],[-1,2],[1,4],[5,8],[1,3],[0,11],[1,2],[3,1],[0,4],[-6,8],[2,11],[6,11],[6,7],[-6,5],[3,10],[7,10],[5,7],[-4,13],[-3,5],[-4,2],[2,-15],[-3,-6],[-6,-5],[-6,-10],[3,-5],[-1,-5],[-4,-10],[-3,-16],[-1,-15],[-3,-12],[-7,-8],[-23,-10],[-6,-5],[-5,-7],[-12,-21],[-2,-3],[-4,-1],[-8,1],[-3,3],[4,4],[0,4],[-2,5],[3,10],[6,11],[5,11],[-10,-14],[-3,2],[-4,12],[-6,27],[-4,9],[-1,-9],[2,-9],[3,-10],[2,-10],[-1,-13],[-2,-8],[-9,-14],[4,0],[2,-3],[2,-4],[2,-5],[-3,-6],[-4,-2],[-4,-1],[-4,-3],[4,-3],[1,-1],[-1,-3],[0,-2],[-1,-2],[-1,-2],[7,-8],[-2,-3],[-4,-4],[-4,0],[-1,6],[-1,5],[-3,4],[-2,0],[-2,-5],[-2,-9],[-6,-3],[-13,1],[1,10],[0,12],[0,12],[3,7],[-4,5],[-1,8],[-1,19],[-1,-8],[-1,-10],[-1,-8],[-4,-2],[0,-4],[6,-7],[1,-15],[-3,-16],[-4,-10],[-7,-5],[-8,-1],[-21,3],[-9,5],[-5,1],[-14,-3],[-30,6],[-7,-3],[4,-6],[9,-7],[4,-7],[-7,-4],[-2,-2],[-2,0],[-9,6],[-3,4],[-7,18],[-2,7],[-2,-4],[-2,-5],[4,-6],[2,-9],[4,-9],[7,-4],[0,-4],[-5,-4],[-15,-16],[-4,-2],[-3,5],[-2,0],[-2,-2],[-2,-1],[-7,-1],[-2,3],[2,10],[-6,-5],[-6,1],[-7,6],[-5,8],[-6,7],[-7,2],[-38,-11],[-4,1],[-3,2],[-4,3],[-3,4],[1,3],[5,6],[1,6],[-5,13],[-2,3],[-7,-23],[-3,-2],[-4,1],[-6,3],[-4,-1],[-9,-7],[-7,-3],[-3,2],[-3,5],[-2,8],[1,6],[2,4],[1,5],[-1,5],[-2,1],[-3,-3],[-5,-2],[-2,-3],[-2,-1],[-2,1],[-5,3],[-3,1],[-24,-3],[-8,3],[0,4],[1,2],[0,2],[-4,-2],[-3,-3],[-3,-4],[-4,-6],[-13,-14],[-5,1],[-3,4],[-3,14],[-4,4],[-11,8],[-4,1],[-4,-3],[-2,-7],[0,-8],[-3,-5],[-5,9],[-1,3],[-2,-1],[-3,-4],[-2,0],[-4,5],[-2,5],[-3,4],[-5,2],[-4,0],[-11,-3],[4,17],[3,7],[3,4],[-9,0],[-3,-2],[-1,-3],[-1,-4],[-2,-3],[-4,-3],[-14,3],[-1,3],[-5,7],[-4,2],[-5,-13],[-4,-1],[-3,4],[4,6],[0,4],[-8,-2],[-25,-13],[-7,-7],[-4,-3],[-4,2],[-10,10],[-4,-1],[-2,-5],[-8,-11],[-3,-3],[-4,4],[0,9],[2,8],[2,4],[1,3],[6,23],[3,5],[4,4],[4,4],[4,1],[-17,-1],[-8,-6],[-6,-13],[-4,-25],[-4,-13],[-7,-10],[-2,0],[-5,5],[-5,4],[-5,0],[-6,-6],[-2,7],[-2,5],[-2,2],[-3,-1],[4,-8],[-2,-3],[-10,-2],[-2,-4],[-7,-9],[-7,-5],[-3,8],[-2,1],[-16,-15],[-18,-3],[-42,3],[-9,-6],[-3,-6],[-2,0],[-2,3],[-3,1],[-3,-2],[-6,-5],[-3,-1],[-22,-8],[-10,0],[-5,2],[-7,8],[-4,0],[-3,-2],[-3,0],[-4,5],[-2,7],[-2,6],[-5,3],[-4,0],[-4,2],[-2,5],[2,9],[-3,15],[1,22],[4,21],[3,14],[-8,2],[-4,7],[-1,12],[0,14],[-2,3],[-6,6],[-2,3],[0,6],[-1,4],[-8,15],[-1,4],[-1,6],[1,7],[2,4],[3,3],[2,4],[3,2],[3,1],[6,-1],[4,2],[2,5],[1,7],[2,6],[17,30],[20,26],[46,38],[9,11],[17,34],[15,10],[4,7],[7,15],[5,7],[16,17],[5,7],[11,23],[1,5],[1,12],[2,6],[3,2],[6,2],[2,2],[8,16],[8,12],[10,8],[11,2],[0,-4],[-8,-6],[-8,-4],[-7,-6],[-7,-12],[5,1],[14,11],[13,6],[4,2],[4,7],[7,18],[4,8],[4,2],[18,8],[9,1],[5,1],[5,4],[-1,4],[-4,3],[-6,1],[-18,-5],[-10,-6],[-6,-9],[-4,8],[-6,1],[-14,-5],[-6,3],[-9,15],[-6,6],[-30,4],[-6,-1],[-31,-16],[-28,-5],[-26,2],[-13,-3],[-44,-25],[-7,0],[1,4],[3,7],[2,5],[2,8],[-1,6],[3,10],[5,9],[26,32],[40,39],[46,57],[10,5],[-6,-12],[-7,-14],[-7,-10],[-8,-4],[-5,-6],[-9,-14],[-8,-16],[-3,-13],[0,-8],[2,-5],[7,-7],[8,-6],[0,-4],[0,-13],[2,-2],[4,6],[6,13],[2,6],[0,7],[-1,17],[2,0],[1,-17],[0,-6],[1,-6],[4,-5],[3,-5],[5,-3],[8,-2],[9,1],[5,2],[8,20],[2,25],[0,25],[3,24],[12,29],[4,21],[5,10],[10,17],[2,5],[1,4],[3,11],[2,15],[2,7],[2,2],[3,45],[13,21],[3,9],[7,35],[6,12],[8,8],[2,1],[4,-4],[0,-8],[-2,-9],[-5,-4],[8,0],[0,-4],[-4,-5],[-2,-6],[-1,-7],[3,-6],[4,-1],[10,7],[4,1],[22,0],[11,-4],[8,-12],[13,-30],[8,-10],[42,-10],[10,6],[-7,6],[-28,0],[-10,8],[-4,7],[-10,11],[-3,6],[-5,22],[-2,8],[-1,4],[-1,7],[1,12],[2,5],[5,0],[14,-4],[16,5],[19,-6],[6,2],[3,5],[14,27],[-2,5],[-10,-16],[-6,-6],[-7,-2],[-8,2],[0,6],[5,7],[7,4],[0,5],[-27,-21],[-16,-6],[-8,14],[3,7],[23,-2],[7,5],[7,10],[11,25],[-6,-3],[-11,-9],[-6,-4],[-7,-1],[-29,6],[-15,9],[-6,6],[-4,9],[-2,10],[0,11],[2,40],[5,23],[7,19],[13,25],[13,18],[9,7],[10,16],[6,5],[10,-1],[7,-7],[6,-10],[2,-13],[0,-15],[1,-15],[3,-12],[7,-5],[-7,26],[0,11],[7,8],[8,0],[7,-7],[8,-9],[8,-8],[7,-3],[9,-1],[1,2],[-4,6],[-23,22],[-6,12],[-1,19],[-3,-6],[-3,-8],[-3,-6],[-5,-1],[-1,3],[-2,6],[-2,6],[0,4],[-1,5],[-3,5],[-6,8],[1,2],[0,3],[1,1],[0,3],[-7,6],[-2,18],[1,21],[2,15],[8,28],[4,9],[2,3],[5,6],[2,3],[1,4],[0,6],[1,5],[2,5],[0,7],[7,17],[4,20],[10,19],[4,10],[8,36],[9,22],[11,39],[14,34],[2,9],[0,13],[2,12],[7,26],[9,24],[3,13],[1,14],[0,1],[-1,1],[0,2],[-1,4],[1,2],[1,1],[2,1],[1,9],[5,21],[7,14],[1,6],[1,10],[1,4],[4,6],[11,16],[5,18],[3,18],[6,16],[10,6],[22,-10],[11,-2],[10,10],[2,7],[-3,2],[-20,-7],[-5,0],[-5,4],[0,4],[2,0],[3,0],[2,2],[3,2],[-4,8],[-13,-1],[-3,11],[-3,11],[-8,3],[-9,0],[-4,4],[0,6],[3,4],[8,4],[2,2],[2,1],[2,-1],[0,-6],[2,-1],[12,4],[13,8],[7,10],[2,2],[3,0],[8,-1],[3,3],[5,8],[13,10],[6,8],[2,5],[3,11],[3,5],[7,9],[6,9],[2,4],[3,4],[1,8],[0,11],[2,1],[3,-3],[4,1],[4,4],[-2,6],[-2,3],[-6,4],[-3,-5],[-2,2],[-2,4],[-2,5],[3,4],[6,6],[-4,4],[-11,-1],[-5,5],[-1,3],[-2,10],[-1,3],[-3,4],[-2,3],[-3,1],[-4,0],[6,4],[16,-4],[2,-5],[3,-9],[4,-6],[6,6],[11,7],[5,5],[-1,11],[-5,4],[-11,2],[-5,5],[11,0],[10,4],[8,10],[3,21],[3,3],[12,7],[4,4],[2,7],[0,7],[-6,19],[8,8],[2,-3],[2,-1],[6,0],[-3,7],[-3,6],[-8,11],[3,5],[5,7],[2,4],[4,17],[2,6],[5,8],[15,18],[48,37],[14,5],[14,2],[4,4],[12,16],[5,5],[22,9],[3,5],[3,7],[7,5],[24,11],[5,4],[7,10],[12,12],[4,2],[31,30],[2,-6]],[[14479,80953],[1,-10],[-2,-9],[-5,-7],[-6,-5],[-4,-1],[-3,2],[-2,3],[-1,3],[-2,4],[-6,7],[-7,10],[-2,-2],[-3,-4],[-7,1],[-5,6],[-5,10],[-3,13],[-2,13],[-1,8],[-10,27],[-3,22],[5,18],[9,14],[22,23],[5,2],[5,-14],[4,-10],[1,-11],[-3,-7],[9,-14],[8,-19],[5,-22],[-4,-22],[4,-5],[4,-11],[4,-13]],[[14327,81221],[-3,-14],[-3,-3],[-3,12],[-7,-6],[-4,11],[2,16],[14,16],[1,9],[4,5],[1,-12],[-2,-18],[0,-16]],[[34624,81196],[-16,-1],[-5,5],[3,17],[9,24],[3,2],[8,5],[4,1],[5,6],[7,10],[5,3],[-1,-15],[-4,-12],[-12,-37],[-6,-8]],[[14453,81302],[4,-8],[-2,-19],[0,-9],[2,-9],[-3,-10],[-4,-24],[-2,-10],[-14,-41],[2,-4],[-2,-4],[3,-7],[3,-7],[2,-6],[0,-8],[-3,-6],[-4,-5],[-8,-5],[-4,6],[-4,-3],[-6,-5],[-6,-3],[-2,3],[1,7],[1,6],[1,3],[0,4],[2,4],[2,5],[-1,9],[-1,5],[-4,11],[0,2],[1,3],[0,3],[-1,4],[-1,0],[-4,-3],[-2,-1],[-12,-1],[-7,1],[-5,4],[0,7],[1,10],[4,8],[10,6],[-1,6],[-5,10],[-1,7],[0,5],[4,6],[8,25],[5,11],[5,5],[3,1],[7,6],[3,1],[8,0],[19,6],[8,-2]],[[27985,81310],[-12,-12],[-4,-6],[-3,-7],[-1,-8],[-1,-7],[1,-16],[-1,-6],[-2,-5],[-5,-6],[-5,-5],[-6,-3],[-6,-1],[-28,5],[-19,-8],[-2,-1],[-4,-6],[-1,-1],[-3,1],[0,2],[0,4],[0,5],[-10,28],[5,17],[1,4],[4,2],[3,-2],[3,-3],[4,-1],[7,2],[7,6],[6,9],[5,9],[3,3],[8,-1],[3,2],[14,10],[7,9],[5,4],[6,0],[8,-4],[4,-1],[4,-3],[5,-9]],[[28053,81323],[-7,-3],[-15,3],[2,5],[10,4],[5,0],[2,-1],[5,-2],[-2,-6]],[[13606,81329],[2,-1],[1,1],[1,2],[2,0],[10,-4],[3,-6],[-2,-11],[-3,-5],[-5,-1],[-9,2],[-7,-5],[-3,3],[-3,10],[-2,-13],[5,-9],[12,-10],[5,-9],[-2,-1],[-7,4],[-5,6],[1,-9],[6,-11],[2,-9],[-9,-4],[2,-3],[1,-4],[2,-9],[-7,4],[-7,10],[-10,19],[3,5],[3,6],[1,6],[-4,3],[-3,4],[-2,9],[0,10],[-3,14],[1,8],[3,20],[2,5],[3,1],[5,-2],[3,-1],[2,-2],[0,-4],[-1,-6],[7,-6],[3,-2],[3,-5]],[[14478,81367],[-3,-16],[-2,-6],[-6,-10],[-3,-6],[-1,-5],[-2,-6],[-6,-4],[-15,5],[-7,-7],[-3,-2],[-5,2],[-5,5],[-3,6],[-2,7],[-2,11],[-2,8],[-1,6],[5,0],[8,-4],[3,2],[5,8],[3,2],[25,0],[3,-1],[5,-2],[2,-1],[3,1],[1,3],[2,3],[3,1]],[[14384,81275],[-3,0],[-3,0],[-3,3],[-1,3],[0,4],[0,4],[-1,5],[-6,25],[-5,9],[2,11],[3,11],[4,5],[0,2],[3,10],[1,4],[2,3],[2,2],[4,3],[5,3],[6,1],[6,-1],[4,-3],[-2,-4],[-1,-54],[-2,-13],[-2,-3],[-4,-4],[-2,-3],[-2,-5],[-1,-11],[-1,-4],[-3,-3]],[[14367,81405],[9,-5],[5,-9],[-6,-4],[-5,-5],[-3,-8],[-1,-9],[-1,-3],[-5,-20],[-3,1],[-4,9],[-2,-18],[4,-16],[-5,-6],[-7,5],[-5,6],[4,14],[3,13],[-4,3],[-6,4],[-3,-8],[-5,-9],[-5,-2],[-4,4],[4,7],[3,7],[-13,-2],[-8,1],[-5,3],[1,10],[10,7],[3,10],[4,5],[1,8],[2,8],[11,-1],[12,-1],[6,3],[18,-2]],[[27923,81405],[-7,-2],[0,2],[2,5],[3,5],[10,5],[12,-1],[5,-3],[2,-2],[-1,-4],[-5,-3],[-21,-2]],[[14455,81440],[7,-27],[1,-7],[2,-7],[3,-7],[2,-8],[-2,-11],[-5,-4],[-6,1],[-11,5],[-14,-3],[-7,1],[-6,6],[-1,7],[2,7],[4,4],[11,5],[4,6],[-1,5],[-5,3],[-4,-1],[-6,-5],[-6,-3],[-5,0],[-6,1],[-5,3],[-5,5],[20,14],[6,8],[7,7],[10,1],[9,-2],[7,-4]],[[14620,81418],[-2,-5],[-1,-1],[-3,0],[-4,3],[-3,1],[-11,-10],[-3,-9],[-5,-8],[-13,-10],[-3,-1],[-7,-1],[-3,-2],[-2,-5],[-3,-13],[-2,-2],[-7,-2],[-4,-6],[-14,-42],[-4,-14],[1,-11],[1,-13],[-5,-9],[-8,-6],[-7,-3],[-14,-1],[-5,-3],[-9,-7],[-5,-1],[-4,9],[1,20],[6,48],[1,6],[3,7],[1,2],[2,1],[2,1],[1,4],[-1,0],[-1,18],[2,11],[6,17],[7,13],[6,1],[6,18],[11,3],[12,0],[14,15],[12,6],[7,9],[2,1],[6,1],[3,2],[4,8],[6,6],[3,8],[3,10],[2,7],[4,5],[5,3],[28,13],[5,3],[7,10],[3,0],[5,-6],[2,-13],[-2,-12],[1,-10],[9,-10],[-9,-22],[-11,-14],[-24,-16],[-1,-2]],[[28124,81530],[5,-2],[4,1],[4,1],[-1,-2],[-4,-6],[-4,-4],[-5,-3],[1,-2],[7,-1],[0,-3],[-6,-4],[-3,1],[0,2],[-1,2],[-1,-1],[-2,0],[-2,1],[-1,0],[0,-1],[-2,-1],[-1,1],[1,1],[-1,0],[-1,-1],[-1,3],[1,7],[-1,3],[-1,-3],[-4,-3],[-2,2],[4,5],[5,2],[8,5],[4,0]],[[14256,81548],[-3,-6],[3,1],[2,1],[3,3],[2,3],[6,-7],[2,-4],[2,-5],[0,-11],[-1,-5],[-1,-5],[3,-25],[-3,-28],[-7,-24],[-8,-12],[-2,10],[-9,13],[-3,9],[0,6],[0,13],[0,6],[-6,4],[0,2],[1,7],[-1,3],[-2,10],[-2,12],[0,12],[2,11],[4,4],[7,4],[12,4],[0,-4],[-1,-2]],[[27886,81582],[-8,-2],[0,3],[5,11],[1,10],[1,3],[3,0],[3,-1],[1,-3],[0,-4],[1,-5],[3,-5],[2,-1],[-2,-2],[-2,-1],[-8,-3]],[[14298,81619],[15,-65],[-3,-27],[-4,-4],[-5,-1],[-5,1],[-4,4],[-3,6],[-9,5],[-8,10],[-8,8],[-4,2],[-4,3],[-3,7],[-3,4],[-4,-6],[3,-6],[-1,-4],[-4,-2],[-4,4],[-6,-3],[-6,6],[-5,8],[-6,5],[2,11],[3,4],[4,-2],[5,-5],[2,-3],[2,-4],[2,-3],[3,-2],[2,2],[2,4],[2,2],[4,-4],[2,4],[-3,2],[-5,6],[2,2],[2,2],[-2,2],[-5,2],[-2,2],[0,5],[1,8],[-1,2],[-1,1],[1,3],[2,3],[2,1],[39,1],[6,7],[-1,11],[1,13],[3,7],[4,-7],[3,-32]],[[14050,81647],[-4,-5],[-4,4],[3,9],[3,9],[-2,5],[6,3],[3,-5],[0,-9],[0,-10],[-5,-1]],[[13429,81692],[-5,-9],[4,4],[4,1],[3,-4],[2,-9],[5,3],[15,1],[3,3],[3,8],[6,7],[7,4],[5,-1],[4,-10],[2,-9],[0,-11],[-4,-15],[2,-8],[-4,-5],[-6,-3],[-6,0],[-6,5],[-11,13],[-6,2],[1,-3],[1,-1],[-2,-12],[11,-14],[-7,-10],[-6,-2],[-5,7],[-10,23],[2,11],[-13,21],[-2,13],[6,8],[12,1],[20,-5],[-7,-4],[-18,0]],[[34497,81698],[-6,-3],[-8,2],[-2,8],[-5,5],[-3,7],[2,7],[10,-2],[6,-1],[5,0],[1,-5],[0,-11],[0,-7]],[[14339,81489],[-6,-3],[-11,1],[-7,4],[0,12],[5,7],[6,7],[4,8],[2,13],[2,4],[-8,12],[-3,23],[-1,50],[-1,4],[-2,3],[0,4],[2,7],[2,6],[-1,12],[1,7],[3,9],[0,9],[-2,8],[-4,8],[3,12],[6,12],[7,9],[5,-1],[3,-22],[3,-24],[5,-12],[4,-6],[0,-7],[-1,-7],[-1,-3],[3,-42],[2,-6],[1,-3],[1,-5],[1,-6],[0,-12],[2,-7],[2,-8],[0,-6],[0,-6],[-1,-6],[-1,-6],[-5,-16],[-1,-7],[-19,-30]],[[14151,81683],[31,-46],[4,-8],[1,-8],[0,-9],[0,-10],[0,-25],[-2,-17],[-4,-15],[-9,-11],[-1,8],[-1,7],[-1,4],[-5,1],[2,9],[0,10],[-3,6],[-4,-3],[-5,-5],[-4,4],[-4,9],[-1,11],[-7,-2],[-5,7],[-1,13],[1,14],[-9,-4],[-9,13],[-12,32],[2,2],[3,0],[2,0],[3,-2],[-4,8],[-14,12],[-5,8],[2,4],[-5,9],[-2,7],[2,7],[5,9],[-4,13],[2,8],[5,2],[21,-23],[8,-15],[5,-6],[9,-6],[5,-7],[8,-15]],[[14373,81631],[-5,-9],[-4,3],[-1,9],[3,9],[0,4],[-1,2],[-3,10],[2,11],[-1,9],[-5,17],[-3,9],[-1,4],[0,15],[1,2],[1,0],[11,5],[12,0],[6,5],[2,7],[2,8],[3,5],[4,-3],[0,-6],[-1,-11],[-1,-6],[0,-6],[-4,-9],[-1,-5],[-2,-14],[0,-6],[-1,-7],[-4,-10],[-1,-3],[0,-3],[-3,-11],[-3,-22],[-2,-3]],[[13404,81762],[7,0],[11,2],[4,-1],[3,-2],[0,-4],[-4,-4],[-3,-1],[-6,-3],[-12,-4],[-10,0],[-7,2],[-7,7],[-2,9],[6,3],[16,6],[7,-2],[1,-5],[-4,-2],[0,-1]],[[14077,81751],[-2,-13],[-5,1],[-5,8],[-1,18],[4,11],[7,-8],[5,-6],[-3,-11]],[[14318,81732],[-2,-8],[-5,4],[1,-45],[-2,-9],[-5,-13],[-2,-9],[-2,0],[-4,16],[2,4],[-2,4],[-3,8],[0,8],[2,4],[1,3],[-2,20],[1,7],[3,14],[4,36],[2,5],[5,-4],[3,-7],[2,-8],[2,-18],[1,-12]],[[13273,81842],[-24,-5],[-6,2],[-16,20],[2,2],[3,0],[37,-7],[3,-2],[5,-4],[-4,-6]],[[34504,81858],[-1,-4],[5,1],[1,-5],[-4,-7],[-2,-8],[0,-9],[-4,-2],[-5,9],[-4,10],[-4,9],[0,7],[11,2],[2,5],[4,1],[3,-4],[-2,-5]],[[14014,81851],[4,-8],[1,-7],[-3,-3],[-5,3],[-5,10],[-4,0],[-5,-12],[-3,-2],[-2,20],[-5,11],[-2,7],[15,2],[8,-3],[4,-11],[2,-7]],[[13980,81895],[15,-5],[12,2],[3,-2],[5,-9],[4,-3],[4,0],[-1,-5],[-2,-5],[-2,-3],[-2,-3],[-2,5],[-2,5],[-2,4],[-2,2],[-3,2],[-2,-2],[-1,-3],[-3,-1],[-2,1],[-5,7],[-2,3],[-3,3],[-8,3],[-3,4],[4,0]],[[34508,81910],[4,-8],[1,-10],[-5,-6],[3,-9],[-4,-3],[-8,2],[-4,-5],[-8,0],[-7,2],[-1,7],[0,11],[3,8],[4,6],[6,-1],[10,9],[6,-3]],[[14003,81900],[-8,-5],[-12,3],[-9,8],[-7,13],[-7,16],[6,3],[8,1],[7,-1],[4,-3],[7,-8],[8,-15],[3,-12]],[[27831,81915],[-3,-4],[-4,-2],[-5,-2],[-10,5],[-7,-2],[-5,3],[-2,18],[2,15],[4,12],[6,6],[11,-7],[1,-4],[1,-5],[2,-5],[10,-11],[1,-3],[1,-6],[1,-2],[-1,-2],[-3,-4]],[[14052,81939],[14,-34],[4,-8],[5,-4],[4,-4],[3,-11],[3,-21],[1,-10],[-3,-5],[-7,-2],[-3,1],[-10,12],[-1,1],[-5,3],[-4,8],[-5,17],[-5,10],[-4,7],[-3,7],[-2,11],[-1,6],[-2,-1],[-5,-7],[-3,1],[0,4],[2,5],[2,2],[-4,7],[-5,3],[-5,5],[1,13],[4,11],[7,5],[7,-1],[6,-2],[2,-11],[3,-7],[9,-11]],[[27382,81993],[69,-10],[15,-6],[32,-46],[6,-6],[2,-3],[3,-5],[5,-19],[4,-5],[15,-17],[28,-49],[3,-9],[3,-9],[9,-33],[2,-9],[11,-40],[3,-23],[-10,-12],[1,-13],[-5,-3],[-7,3],[-11,14],[-68,18],[-34,29],[-38,25],[-51,10],[-50,25],[-39,23],[-45,19],[-17,21],[-13,8],[2,10],[11,18],[2,3],[6,18],[11,22],[18,22],[6,3],[22,-3],[6,1],[26,15],[14,4],[33,-1],[20,10]],[[13390,82006],[8,-31],[1,-10],[-6,-5],[0,-5],[18,-7],[5,-5],[1,-2],[3,-10],[2,-4],[3,-1],[5,0],[3,-3],[2,-6],[6,-27],[2,-4],[2,-2],[1,-2],[-3,-4],[-4,-1],[-3,1],[-3,2],[-3,5],[-5,5],[-14,0],[-6,3],[-6,5],[-6,3],[-12,2],[-5,-2],[-11,-5],[-5,-1],[-28,0],[4,-6],[11,-4],[3,-5],[0,-10],[1,-8],[1,-6],[3,-6],[4,16],[2,4],[3,4],[7,7],[2,4],[6,2],[24,-17],[19,-6],[8,-5],[4,-1],[3,-2],[5,-8],[2,-2],[2,-3],[-2,-6],[-4,-6],[-1,-1],[-2,-8],[1,0],[1,-2],[1,-3],[1,-3],[-2,-4],[-6,-7],[-9,-15],[-6,-4],[-29,-1],[-6,2],[-6,10],[-5,12],[-5,9],[-5,5],[-7,1],[-4,-1],[-2,-1],[-2,-2],[3,-4],[4,-3],[4,-2],[5,0],[0,-3],[-25,-17],[0,-4],[8,1],[8,6],[7,3],[7,-6],[4,-4],[1,-2],[1,-5],[-1,-2],[-3,-3],[-1,-4],[-1,-3],[-1,-2],[-1,-1],[1,-6],[2,0],[2,2],[2,0],[6,-16],[2,-3],[35,0],[8,3],[3,-1],[2,-6],[-9,-3],[-12,-1],[-11,-3],[-8,-13],[-3,5],[-4,2],[-4,-1],[-4,-2],[4,0],[3,-2],[6,-6],[-8,-17],[-1,-7],[16,2],[7,-2],[7,-8],[5,-12],[6,-16],[1,-13],[-6,-4],[5,-7],[9,-18],[5,-3],[6,-3],[-2,-5],[-5,-6],[-5,-3],[0,-4],[3,-2],[2,-1],[6,-1],[2,-2],[1,-4],[2,-4],[3,-2],[4,3],[3,6],[4,4],[5,-5],[-1,-9],[6,-3],[14,0],[-4,-14],[5,-7],[8,-5],[6,-6],[-8,-28],[-2,-9],[7,1],[7,-2],[3,-7],[-5,-12],[4,1],[4,4],[3,2],[4,-3],[0,12],[-1,9],[0,7],[3,8],[4,5],[12,2],[11,6],[2,-7],[-2,-10],[-10,-7],[-3,-8],[-2,-10],[-1,-11],[3,5],[4,2],[9,1],[-2,-10],[-2,-2],[-3,0],[-3,-1],[-6,-4],[-3,-3],[-2,-5],[-2,9],[-3,6],[-2,1],[-3,-7],[4,-6],[4,-22],[4,-9],[4,7],[17,-19],[7,0],[-9,10],[-3,6],[1,9],[2,1],[2,-2],[4,-4],[8,10],[4,3],[6,1],[5,-2],[3,-6],[1,-6],[9,-5],[3,-7],[-4,-12],[-7,-3],[-8,-1],[-7,-5],[0,-3],[15,0],[7,-3],[6,-6],[10,8],[5,1],[4,-5],[1,-8],[-2,-11],[-4,-8],[-2,-5],[-5,-2],[-12,0],[-4,2],[-3,7],[0,8],[-2,7],[-5,2],[2,-21],[-3,-21],[-7,-10],[-7,8],[-2,9],[-1,19],[-1,8],[-3,7],[-5,7],[-9,10],[10,-41],[1,-21],[-7,-6],[-5,4],[-3,9],[-3,10],[-1,7],[-1,8],[-8,16],[-2,11],[-2,0],[-1,-21],[-7,2],[-8,12],[-6,13],[-3,8],[-2,8],[-2,7],[-9,6],[-3,7],[-2,8],[-3,6],[-2,-3],[-3,-1],[-3,1],[-3,3],[3,8],[3,9],[-6,-4],[-3,0],[-2,2],[1,1],[-3,17],[-1,2],[3,9],[7,0],[8,-4],[5,-3],[-2,10],[-5,7],[-6,5],[-5,2],[-3,-2],[-4,-3],[-3,-1],[-3,4],[-8,15],[-1,2],[-3,12],[-7,7],[-14,7],[-7,6],[-34,38],[-4,7],[-1,5],[0,8],[-1,6],[-2,3],[-4,1],[-1,2],[0,11],[-3,1],[-20,18],[-21,32],[7,15],[5,3],[6,-2],[3,-3],[12,-17],[1,4],[-10,19],[-5,5],[4,4],[11,-16],[5,-9],[3,-5],[4,-2],[-1,4],[-1,4],[-2,2],[-1,2],[0,4],[0,11],[-6,8],[-16,9],[-5,9],[-8,19],[-6,5],[6,-22],[1,-10],[-2,-5],[-6,-5],[-5,-18],[-7,-1],[-2,2],[-10,14],[0,2],[-1,5],[0,1],[-2,2],[-5,2],[-2,2],[-4,7],[-3,10],[-1,10],[5,8],[-18,11],[-5,7],[-6,11],[-2,5],[-2,12],[1,0],[3,5],[3,2],[8,-3],[2,1],[3,3],[3,1],[3,-1],[3,-1],[11,-13],[5,-3],[4,8],[-4,1],[-2,4],[-3,4],[-1,7],[17,-20],[0,5],[-1,5],[-2,3],[-3,2],[0,5],[4,2],[5,5],[4,7],[1,6],[-5,3],[-14,-5],[-5,4],[-9,13],[-11,2],[-21,-1],[1,6],[1,2],[-5,-2],[-10,-2],[-4,-4],[-4,8],[-4,-1],[-5,-4],[-4,-3],[-6,2],[-4,5],[-1,8],[3,10],[-5,2],[-6,7],[-4,8],[1,3],[4,3],[-2,7],[-7,14],[7,4],[7,-3],[8,-6],[8,-3],[24,1],[7,3],[2,2],[5,8],[3,2],[4,2],[14,-6],[50,6],[4,5],[3,7],[18,19],[1,1],[3,-1],[2,0],[1,2],[3,6],[10,8],[18,0],[3,2],[2,4],[3,3],[3,-1],[1,-2]],[[14272,81949],[9,-25],[1,-3],[1,-4],[12,-48],[3,-23],[1,-28],[0,-25],[-3,-27],[-9,-61],[-1,-3],[-4,2],[2,-24],[-2,-9],[-6,-12],[2,1],[2,-1],[2,-1],[2,-3],[-1,-6],[-2,-15],[-2,-5],[-3,-2],[-27,0],[-6,-2],[-7,-6],[-2,3],[3,11],[2,10],[1,10],[0,10],[0,11],[-3,21],[-1,11],[2,11],[7,19],[1,10],[1,14],[2,7],[4,4],[4,6],[6,26],[1,4],[1,11],[0,12],[0,3],[-2,4],[-3,3],[-3,0],[-1,-4],[2,-22],[0,-11],[-4,-6],[-5,3],[-4,5],[-4,4],[-5,-3],[4,-8],[2,-14],[0,-13],[-5,-6],[-3,-6],[-2,-13],[-1,-26],[-3,-23],[0,-9],[5,-16],[1,-6],[-1,-5],[-3,-2],[-3,3],[-2,5],[-2,7],[-2,6],[-6,-17],[-9,-8],[-9,1],[-10,7],[-25,26],[-8,11],[-3,4],[1,2],[1,2],[2,2],[1,2],[0,4],[-7,4],[-4,6],[-7,16],[-2,9],[-3,14],[-1,14],[2,6],[7,-2],[17,-10],[4,1],[-3,5],[-12,14],[9,8],[9,13],[5,4],[6,19],[5,5],[0,14],[9,11],[22,11],[-4,10],[-7,12],[-8,10],[-8,6],[-8,11],[-15,16],[1,-7],[0,-5],[1,-4],[2,-4],[1,-3],[1,-4],[1,-2],[3,5],[3,1],[2,-1],[1,-2],[3,-5],[7,-7],[4,-4],[5,-12],[2,-4],[5,-3],[0,-4],[-11,-1],[-5,-2],[-5,-5],[-2,-3],[-5,-8],[-2,-5],[-1,-3],[-2,-9],[-1,-4],[-7,-13],[-12,-17],[-12,-8],[-6,11],[-1,6],[-10,-1],[-5,4],[-2,7],[-1,12],[-1,21],[1,11],[5,14],[1,8],[2,8],[5,5],[4,-1],[2,-6],[8,10],[4,14],[0,15],[0,15],[-1,15],[0,8],[4,8],[1,10],[-1,11],[-1,7],[-2,7],[-3,5],[0,5],[3,7],[4,3],[6,2],[6,0],[12,-9],[20,-1],[10,-13],[20,-31],[26,-27],[7,-5],[12,-1],[4,-5]],[[14128,81919],[-7,-3],[-21,1],[-6,2],[-2,-7],[-2,0],[-3,3],[-2,6],[-2,3],[-6,7],[-3,4],[-1,13],[-1,15],[2,14],[3,11],[17,26],[3,11],[0,7],[-1,5],[-5,10],[-1,6],[4,2],[5,0],[8,-4],[5,-3],[3,-5],[3,-7],[1,-6],[-1,-10],[0,-8],[2,-6],[3,-7],[1,-7],[0,-5],[-1,-11],[-1,-8],[2,-14],[5,-26],[-1,-9]],[[27792,82074],[0,-3],[0,-2],[-1,-4],[-1,-17],[10,-15],[-1,-13],[-7,-5],[-10,-1],[-10,5],[-7,21],[-7,6],[-4,7],[4,14],[8,7],[19,-1],[8,4],[-1,-3]],[[34475,82152],[2,-8],[10,-2],[6,-2],[3,6],[3,-2],[5,-4],[5,-1],[4,-7],[1,-6],[2,-5],[-1,-3],[-5,5],[-5,4],[-6,0],[-1,-7],[-2,-7],[4,-5],[5,-3],[3,-4],[0,-6],[-5,5],[-6,4],[-2,-4],[6,-6],[3,-4],[-4,0],[-9,8],[-9,4],[-12,3],[-5,6],[-11,2],[-5,6],[-1,10],[-1,7],[4,8],[13,5],[4,0],[3,2],[4,1]],[[13726,82140],[0,-7],[-5,3],[-6,6],[-3,10],[5,5],[7,-6],[2,-11]],[[14189,82064],[0,-7],[-2,-6],[-4,-2],[-5,1],[-10,7],[-5,2],[-13,-2],[-4,-2],[-8,-9],[-4,1],[-9,25],[10,27],[13,26],[1,21],[4,12],[7,14],[7,7],[3,-8],[0,-17],[3,-13],[18,-43],[2,-9],[0,-6],[-2,-6],[-4,-8],[2,-5]],[[27857,82159],[-3,-1],[-2,3],[-5,3],[-2,2],[-3,6],[0,2],[0,2],[1,5],[17,-18],[-1,-3],[-2,-1]],[[13823,82195],[14,-16],[20,-14],[11,-16],[28,-21],[13,-15],[7,-14],[3,-3],[2,-3],[2,-12],[2,-6],[29,-61],[6,-18],[2,-11],[0,-15],[-3,-12],[-6,-7],[-5,2],[-3,6],[-2,5],[-4,4],[-3,-2],[-3,-5],[-3,-6],[-2,-4],[-8,-1],[-7,1],[-4,3],[-3,3],[-16,27],[-3,10],[-1,10],[-12,7],[-6,5],[-3,6],[0,12],[0,8],[-2,6],[-5,5],[-9,0],[-3,4],[-2,10],[-1,5],[-3,2],[-6,-1],[-1,2],[-1,4],[-3,4],[-2,2],[-26,5],[-3,4],[-11,28],[-8,13],[-3,9],[-2,8],[2,7],[7,3],[12,1],[-8,6],[-5,0],[-6,-4],[-8,-2],[-4,0],[-3,2],[-3,3],[-9,15],[-2,0],[-2,0],[-3,1],[-1,5],[1,13],[1,16],[3,12],[5,6],[14,-3],[9,-4],[6,-6],[7,-3],[14,-14],[15,-5],[7,-6]],[[34158,82279],[-6,-7],[-4,-9],[-4,-3],[-1,-8],[0,-6],[-2,-4],[-6,-4],[-12,2],[-4,8],[1,11],[4,9],[6,6],[8,0],[6,0],[4,3],[6,4],[4,-2]],[[14200,82208],[-1,-10],[-20,9],[-7,-4],[-25,-38],[-3,-2],[-4,-5],[1,-9],[2,-15],[-2,-10],[-3,-5],[-3,-2],[-4,-5],[-6,-13],[-5,-14],[-1,14],[-1,25],[1,25],[3,23],[-2,35],[1,14],[1,7],[7,14],[4,3],[11,7],[3,6],[3,4],[6,5],[12,5],[26,0],[5,2],[6,5],[5,2],[6,-5],[-10,-15],[-3,-9],[1,-8],[-5,-19],[1,-17]],[[13859,82215],[4,-20],[-7,0],[-15,12],[-22,4],[-12,13],[-10,3],[-5,6],[-5,14],[-2,5],[-2,3],[-5,5],[-2,4],[11,15],[17,20],[4,5],[-2,11],[-1,10],[1,6],[6,2],[4,-3],[8,-8],[3,-5],[-2,-7],[-2,-7],[1,-7],[1,-8],[4,-6],[4,-1],[5,0],[12,-8],[4,-4],[2,-7],[-1,-7],[-1,-5],[-1,-6],[3,-8],[-2,-5],[3,-8],[2,-8]],[[34176,82338],[12,-9],[9,6],[15,0],[5,-10],[-9,-8],[-9,-8],[-10,0],[-8,-7],[-10,5],[-7,17],[2,13],[10,1]],[[13764,82329],[8,-8],[-5,-16],[-16,5],[-5,17],[-11,-5],[-15,7],[-3,16],[14,8],[16,-7],[17,-17]],[[13955,82254],[24,-46],[39,-50],[3,-5],[2,-7],[-5,-3],[-4,0],[-5,1],[-14,9],[-3,-2],[-3,-9],[6,2],[2,2],[6,-8],[8,-2],[17,2],[6,-4],[7,-9],[7,-10],[4,-10],[3,-12],[9,-9],[9,-13],[-3,-20],[6,-19],[-1,-19],[-9,-11],[-5,21],[-5,7],[2,10],[-4,14],[-7,2],[-3,-12],[-5,-12],[-4,1],[-8,12],[-3,-4],[1,-8],[2,-9],[0,-8],[6,-14],[-1,-12],[-4,-5],[-7,7],[-6,-6],[-6,-1],[-5,5],[-2,12],[-3,7],[-12,23],[-4,8],[2,1],[3,3],[1,1],[-10,8],[0,4],[4,4],[-3,3],[-4,-3],[-4,-3],[-4,-1],[-3,2],[-10,14],[-1,3],[1,4],[0,4],[-1,1],[-9,-4],[-3,4],[-4,12],[-2,4],[2,17],[1,11],[-1,7],[-3,1],[-5,-3],[-7,-1],[-6,7],[1,6],[5,19],[1,10],[-1,10],[-3,5],[-5,1],[-6,-1],[2,6],[3,3],[6,4],[-7,7],[-4,0],[-4,-3],[0,4],[2,2],[6,6],[-7,5],[-5,-6],[-3,-10],[-5,-5],[-13,-2],[-5,4],[-2,12],[6,14],[16,7],[17,0],[10,-7],[2,5],[-8,11],[-12,3],[-13,-2],[-11,-4],[-7,-8],[-5,-1],[-5,5],[-1,9],[1,18],[-2,9],[-19,12],[-9,2],[-3,3],[-1,11],[1,10],[2,8],[0,10],[-3,9],[-4,5],[-17,7],[4,20],[2,9],[5,4],[5,3],[10,11],[4,-2],[7,-9],[14,-11],[7,-11],[3,-3],[9,-3],[2,-2],[1,-5],[3,-4],[6,-5],[17,-25],[9,-5],[3,-4],[4,-9],[3,-3],[7,-4],[3,-2],[15,-28],[2,-7],[2,-4]],[[27813,82395],[-1,-1],[-9,7],[-3,5],[-3,8],[5,-1],[14,-11],[0,-4],[-1,0],[-1,-1],[-1,-2]],[[13815,82458],[5,-11],[4,-13],[1,-12],[-3,-10],[-12,-13],[-5,-7],[-7,-16],[-2,-7],[-1,-6],[-1,-5],[-3,-5],[-3,-1],[-9,0],[-3,1],[-2,4],[-3,14],[0,2],[-5,-5],[-6,-8],[-4,-3],[-3,12],[-1,8],[1,1],[2,0],[3,3],[3,4],[2,4],[12,33],[4,5],[8,3],[10,0],[0,4],[-4,2],[-2,3],[1,3],[3,5],[-3,2],[-4,-1],[-7,-5],[-12,-1],[-5,-4],[-2,-11],[-2,-16],[-2,-15],[-5,-6],[-9,1],[-6,5],[-11,20],[-6,9],[-4,4],[-3,-1],[-3,-5],[-3,-4],[-2,1],[-1,10],[-4,-4],[-2,-8],[-2,-9],[-3,-7],[3,-9],[4,-4],[5,-3],[5,-5],[3,-7],[2,-10],[-2,-8],[-6,-3],[-2,1],[-6,7],[-5,0],[-3,1],[-2,3],[0,8],[2,11],[0,9],[-3,5],[-1,4],[1,10],[4,10],[4,4],[1,3],[2,10],[2,4],[2,1],[3,0],[2,0],[0,-1],[4,6],[4,8],[4,7],[5,3],[5,2],[14,14],[0,7],[18,4],[5,3],[4,12],[8,-3],[15,-15],[13,-24],[3,-4],[4,-5]],[[13056,82546],[5,0],[3,3],[5,0],[4,-3],[3,-4],[3,-5],[2,-2],[20,-10],[16,-2],[7,2],[14,9],[8,2],[7,-3],[13,-11],[7,-3],[3,-6],[1,-13],[0,-15],[-1,-10],[-4,-12],[-6,-5],[-6,-3],[-6,-6],[-8,-18],[-2,-11],[5,-6],[2,2],[7,12],[3,4],[3,2],[6,0],[5,4],[4,10],[2,13],[1,12],[3,4],[21,10],[5,7],[4,8],[5,6],[31,8],[3,-3],[3,-7],[10,-14],[2,-11],[0,-8],[-1,-3],[1,-3],[4,-4],[4,-3],[8,-2],[3,-4],[4,-9],[1,-11],[-1,-12],[-2,-12],[3,-6],[5,-13],[3,-12],[0,-6],[-8,-18],[-3,-3],[-8,-1],[-3,-2],[-5,-9],[-3,-12],[-5,-11],[-7,-4],[-30,-5],[-6,-5],[-10,-16],[-6,-3],[-6,-2],[-14,-8],[-7,-2],[-16,2],[-8,-2],[-6,-6],[-2,-8],[3,-1],[7,3],[4,0],[3,-2],[2,-4],[1,-6],[0,-4],[-3,-13],[5,3],[6,14],[4,4],[3,-1],[8,-9],[4,-2],[10,3],[20,11],[10,1],[-8,-14],[-11,-8],[-10,-11],[-7,-23],[4,0],[3,4],[3,6],[3,6],[8,5],[8,3],[17,0],[8,3],[5,10],[-5,-1],[-6,2],[-5,4],[-1,7],[4,7],[6,1],[12,-4],[10,-7],[4,0],[2,9],[2,6],[8,12],[1,8],[-2,7],[-7,9],[-2,8],[0,11],[3,8],[3,7],[2,5],[1,4],[13,16],[8,22],[2,9],[-2,5],[-6,13],[-1,4],[-1,7],[-3,19],[0,15],[-1,7],[-2,3],[-3,1],[-3,5],[-6,10],[4,1],[10,-7],[23,-6],[15,2],[21,8],[15,16],[19,8],[11,13],[9,6],[4,3],[4,7],[4,7],[5,15],[0,-5],[0,-1],[-2,-2],[2,-5],[1,-5],[-1,-4],[-2,-3],[0,-27],[-3,-27],[-4,-25],[-6,-22],[-9,-22],[-20,-37],[-9,-22],[-3,-10],[-2,-10],[-1,-12],[0,-15],[-1,-12],[-2,-12],[-3,-11],[-7,-23],[-3,-13],[-1,-13],[3,-13],[1,-6],[-1,-7],[-2,-7],[-2,-4],[-1,-7],[1,-7],[3,-13],[4,-21],[0,-9],[-1,-29],[0,-8],[3,-10],[-5,-9],[-11,-35],[-5,-13],[-7,-5],[-24,1],[-20,-5],[-8,-7],[-4,0],[-4,-2],[-2,-8],[-1,-6],[-4,0],[-8,4],[5,-8],[4,-3],[10,3],[23,0],[-3,-7],[-5,-8],[-6,-6],[-5,-4],[-9,-1],[-8,3],[-7,6],[-6,11],[-3,4],[-2,-4],[0,-8],[1,-4],[-2,-3],[-4,-2],[-10,-3],[-7,-5],[-4,-2],[-8,0],[-4,2],[-3,2],[2,7],[1,4],[0,4],[0,4],[-2,2],[-2,0],[-1,-2],[-2,-10],[-6,0],[-9,8],[0,4],[5,4],[-4,3],[-9,2],[-4,3],[5,7],[2,4],[1,5],[-5,0],[-16,12],[-11,4],[-12,0],[3,10],[7,6],[15,8],[0,2],[1,2],[0,3],[1,2],[9,4],[4,-3],[4,-4],[2,0],[2,9],[-9,6],[-52,-12],[2,8],[10,23],[3,5],[3,0],[9,-6],[3,-2],[33,0],[3,-2],[5,-8],[5,-4],[5,-8],[7,-4],[3,-3],[2,-5],[2,-6],[4,20],[-7,12],[-20,16],[-2,5],[-2,12],[-2,3],[-3,3],[-6,1],[-25,8],[-6,5],[2,13],[-1,12],[-3,5],[-4,-20],[-6,-4],[-8,2],[-6,4],[0,4],[4,5],[4,8],[1,9],[-3,7],[-4,0],[-1,-5],[-1,-5],[-1,-3],[-3,-1],[-20,-14],[-5,-1],[-3,4],[0,8],[10,13],[3,7],[-29,0],[3,5],[4,12],[3,4],[-4,6],[-6,-1],[-7,-4],[-6,-1],[1,11],[-5,8],[6,5],[6,0],[13,-5],[5,3],[-2,15],[-26,28],[-8,12],[4,-4],[3,0],[3,2],[2,6],[4,-4],[4,-1],[3,3],[-2,6],[-4,4],[-6,2],[-3,4],[2,11],[-2,5],[2,11],[-2,4],[-3,0],[-2,-2],[-2,-4],[-3,-3],[-3,0],[-3,4],[-6,2],[-10,8],[-3,5],[-1,7],[4,5],[9,6],[-3,10],[-12,16],[-5,9],[-2,12],[3,11],[3,9],[1,6],[5,8],[1,10],[-2,10],[1,9],[2,1],[4,-2],[2,1],[1,2],[1,2],[0,2],[0,2],[4,6],[2,5],[2,5],[-3,4],[-1,4],[-1,6],[-3,16],[-2,4],[-4,2],[12,26],[1,10],[-9,1],[6,10],[7,-4],[8,-8]],[[13829,82521],[-4,-2],[-4,3],[-3,6],[-2,7],[-2,5],[3,17],[2,5],[3,3],[3,1],[4,-2],[0,-4],[8,-4],[7,-11],[1,-12],[-16,-12]],[[13707,82519],[-5,-3],[-7,1],[-6,5],[-3,8],[-3,0],[-14,15],[-4,7],[3,8],[2,9],[3,7],[6,0],[21,-25],[8,-16],[-1,-16]],[[13060,82564],[-5,-2],[-3,2],[-1,7],[-1,6],[-4,1],[-3,1],[-2,2],[-7,1],[-1,5],[1,8],[4,6],[6,2],[10,-3],[3,-1],[4,-4],[3,-4],[1,-3],[-3,-10],[-1,-8],[1,-4],[-2,-2]],[[34083,82597],[-4,-6],[-7,5],[-8,7],[0,6],[5,4],[6,7],[10,-3],[-4,-4],[-4,-4],[3,-6],[3,-6]],[[13790,82610],[1,-1],[0,-1]],[[13791,82608],[-1,-2],[-2,-4],[-1,-1],[-1,-2],[0,-3],[1,-3],[-8,7],[-14,22],[-7,7],[2,8],[3,6],[4,3],[5,0],[9,-13],[2,-4],[5,-15],[2,-4]],[[13790,82610],[0,15],[6,14],[8,8],[8,-1],[6,-12],[-3,-20],[-9,-15],[-11,2],[-3,3],[0,2],[-1,2]],[[27473,82646],[-1,-1],[-2,1],[0,6],[-1,7],[1,7],[1,5],[3,-3],[1,-6],[1,-7],[-1,-6],[-2,-3]],[[13695,82692],[0,-3],[1,-3],[2,0],[-1,-4],[0,-2],[-1,-2],[1,-11],[-6,-5],[-9,-1],[-4,3],[-3,11],[4,8],[6,5],[5,6],[2,-4],[2,4],[1,-2]],[[34108,82728],[3,-13],[-7,2],[-6,9],[-7,-4],[-6,5],[2,8],[11,1],[5,5],[2,-7],[3,-6]],[[13676,82727],[10,-18],[0,-11],[-15,-5],[-11,5],[-1,11],[-12,-2],[2,12],[13,18],[7,5],[7,-15]],[[34085,82747],[-13,-1],[-6,4],[-1,9],[4,11],[1,8],[12,12],[8,3],[1,-8],[-3,-6],[3,-7],[5,-4],[0,-7],[-4,-14],[-7,0]],[[13592,82797],[-6,-3],[-3,8],[1,19],[11,-1],[2,-12],[-5,-11]],[[13680,82816],[1,-5],[0,-1],[1,-2],[-3,-18],[-2,-7],[-4,-8],[-15,-17],[-2,-5],[-34,-34],[-2,4],[0,4],[1,5],[1,5],[0,32],[0,6],[4,6],[2,8],[2,6],[1,4],[0,4],[-1,5],[-1,5],[1,5],[4,4],[5,3],[5,-2],[2,-7],[5,6],[4,-2],[4,-5],[5,-3],[5,3],[5,7],[4,3],[2,-9]],[[13762,82879],[-2,-8],[-4,0],[-9,6],[-1,-3],[-2,-4],[-4,-3],[-3,4],[-3,4],[-7,9],[-3,5],[-1,2],[-4,6],[-1,5],[3,3],[4,1],[3,2],[19,18],[7,3],[7,-4],[2,-6],[5,-14],[-2,-5],[-3,-15],[-1,-6]],[[13828,82919],[-1,-2],[1,0],[5,0],[-1,-4],[-1,-8],[0,-4],[-4,-11],[-5,-8],[-12,-9],[-4,-2],[-7,-1],[-4,-1],[-7,-5],[-4,-1],[0,4],[10,19],[6,8],[13,8],[11,23],[7,5],[-1,-5],[0,-4],[-2,-2]],[[33896,82970],[-2,-5],[-2,-13],[-2,-6],[0,-4],[3,-3],[1,-4],[-1,-4],[-1,-6],[5,2],[8,12],[3,1],[3,-6],[5,-6],[4,-1],[4,7],[-1,7],[2,2],[3,-1],[4,-4],[-4,-13],[-7,-4],[-14,1],[-6,-4],[-13,-15],[-6,-6],[-8,-2],[-29,7],[-3,2],[-2,4],[-1,7],[0,9],[-1,3],[-2,1],[-3,6],[-4,8],[-3,12],[-1,11],[5,5],[3,-2],[4,-8],[3,-2],[3,1],[6,8],[3,3],[3,1],[7,-2],[3,1],[3,3],[5,8],[3,1],[6,2],[11,9],[7,1],[2,2],[2,2],[1,-1],[1,-18],[-3,-5],[-3,-1],[-4,-3]],[[27981,82978],[-7,-8],[-6,2],[-24,-18],[-56,-14],[-43,-29],[-6,2],[4,7],[8,6],[8,3],[7,1],[0,4],[-14,0],[10,13],[12,8],[51,21],[28,2],[6,2],[11,8],[6,2],[74,16],[-2,-5],[-3,-3],[-32,-14],[-25,-3],[-7,-3]],[[13778,82905],[-3,-1],[-1,3],[-5,10],[-2,3],[-3,7],[-2,8],[-1,7],[11,11],[46,71],[14,30],[6,6],[4,-9],[4,-15],[1,-13],[-2,-12],[-6,-15],[-3,-5],[-7,-9],[-3,-6],[-9,-27],[-3,-7],[-4,-4],[-11,-8],[-13,-18],[-8,-7]],[[28448,83300],[-17,-5],[8,6],[47,57],[10,16],[9,6],[4,4],[6,14],[4,7],[5,3],[19,15],[9,6],[1,-9],[-4,-1],[-4,-3],[-23,-30],[-9,-9],[-7,-4],[-41,-56],[-17,-17]],[[33103,83604],[7,-2],[17,1],[-1,-6],[-1,-2],[-1,-10],[5,1],[7,4],[6,1],[-6,-14],[-10,-10],[-33,-13],[-7,0],[-3,7],[3,5],[7,2],[13,-1],[0,3],[-10,4],[-5,5],[-2,8],[0,8],[1,8],[3,5],[3,3],[7,-7]],[[28061,83653],[-7,-9],[9,6],[5,2],[5,-4],[-9,-11],[-8,-14],[-7,-17],[-3,-23],[-4,-21],[-8,-26],[-10,-21],[-8,-1],[5,7],[5,13],[4,15],[9,43],[7,31],[1,6],[1,19],[2,15],[2,6],[3,3],[4,0],[6,11],[4,-3],[-1,-6],[0,-6],[0,-5],[1,-3],[0,-4],[-4,-1],[-4,-2]],[[33045,83704],[21,-8],[6,-8],[-4,-1],[-1,-4],[-1,-5],[-2,-6],[-2,-4],[-3,-3],[-3,-3],[-3,-2],[0,-4],[14,-7],[5,-4],[-4,-5],[-4,-1],[-10,1],[-47,13],[-8,7],[-4,8],[-4,13],[0,12],[6,4],[0,-5],[-2,0],[0,-4],[4,-5],[5,0],[10,5],[-1,7],[-3,1],[-2,-3],[-3,-5],[-2,10],[4,4],[11,2],[1,5],[-1,7],[0,6],[3,3],[3,0],[2,2],[2,3],[0,7],[4,-3],[1,-1],[10,-4],[0,-4],[-6,-5],[0,-6],[3,-6],[5,-4]],[[28685,83704],[-12,-9],[-1,3],[2,9],[1,9],[-1,8],[0,8],[2,6],[2,2],[4,-8],[2,-2],[2,-1],[1,-4],[3,-10],[-2,-7],[-3,-4]],[[28375,83820],[-10,-7],[-8,-3],[-4,1],[-12,-8],[-2,0],[2,6],[2,6],[1,2],[1,1],[2,1],[3,-1],[25,7],[2,0],[0,-2],[-2,-3]],[[32834,83883],[61,-17],[9,1],[-2,0],[6,2],[7,4],[6,3],[6,-5],[0,4],[3,-5],[9,-10],[1,-5],[-2,-6],[-9,-4],[-2,-7],[3,-1],[7,-5],[3,-1],[0,-4],[-13,-5],[-4,0],[-6,3],[-28,6],[-31,18],[-5,6],[-5,12],[-3,4],[-3,2],[-6,3],[-2,3],[0,4]],[[28471,83863],[-5,-7],[-4,2],[0,6],[0,5],[2,4],[4,4],[2,4],[1,3],[0,4],[1,4],[2,3],[2,1],[1,-1],[1,-3],[0,-3],[-2,-2],[-1,-6],[-4,-18]],[[28149,83843],[1,-20],[3,-17],[-3,-6],[0,-8],[1,-9],[0,-9],[-2,-9],[-3,-7],[-2,-8],[1,-9],[-3,-3],[-3,-1],[-4,1],[-3,3],[-5,-9],[-3,-3],[-3,0],[2,4],[-6,3],[-5,-7],[-5,-9],[-5,-7],[-15,-7],[-14,-2],[1,8],[2,17],[2,6],[22,46],[3,12],[-5,5],[3,7],[4,7],[2,5],[-4,5],[2,4],[2,12],[-5,0],[2,8],[7,12],[3,13],[3,8],[6,12],[6,6],[10,3],[8,-4],[2,-13],[0,-40]],[[27877,83850],[-10,-20],[-11,-13],[-72,-64],[-16,-7],[-8,-1],[-7,2],[-4,4],[-1,1],[1,4],[1,16],[0,4],[11,19],[2,7],[-2,8],[0,4],[8,9],[8,4],[31,2],[5,3],[3,6],[-1,6],[-4,8],[-1,5],[2,2],[2,3],[2,0],[8,-4],[16,-7],[8,-1],[5,2],[8,6],[3,1],[4,2],[6,12],[6,7],[4,11],[5,12],[1,11],[2,12],[3,10],[4,7],[5,5],[0,-5],[-1,-4],[-1,-4],[-2,-3],[-3,-20],[-6,-24],[-14,-38]],[[32956,83943],[8,-4],[5,-11],[-11,-7],[-5,-1],[0,-5],[3,0],[6,-3],[3,0],[4,2],[3,5],[20,3],[10,-1],[7,-6],[-5,-2],[-5,-1],[-4,-3],[-3,-6],[5,-2],[6,2],[6,0],[5,-7],[-64,5],[-25,11],[-6,0],[1,-2],[2,-5],[1,-2],[-3,-6],[-4,-2],[-3,2],[-3,6],[2,0],[-7,9],[-9,1],[-9,-2],[-8,1],[0,3],[4,0],[0,5],[-2,1],[-1,3],[-2,4],[52,-11],[6,3],[1,5],[-8,4],[-50,7],[3,8],[5,0],[5,-3],[5,3],[-3,3],[-3,5],[-4,9],[0,3],[3,2],[10,-2],[5,-2],[22,-3],[4,-3],[9,-8],[8,-4],[8,-1]],[[28124,84023],[-8,-1],[-8,1],[-3,2],[-3,5],[-2,0],[-3,2],[3,2],[17,0],[4,1],[4,-1],[3,-5],[-4,-6]],[[28009,84024],[9,-15],[0,-11],[-5,-6],[-7,10],[-3,12],[-10,4],[-7,-10],[-2,-22],[3,-19],[3,-7],[12,1],[9,-5],[6,2],[2,-2],[4,-32],[6,-19],[10,-13],[13,-5],[15,4],[6,-3],[4,-13],[0,-6],[-2,-12],[0,-7],[1,-3],[3,-5],[2,-4],[-7,0],[-1,0],[-3,-8],[-1,-5],[1,-3],[18,5],[-3,-9],[-4,-5],[-5,-3],[-5,-4],[-4,-8],[-4,-18],[-2,-8],[-23,-56],[-10,-52],[-27,-87],[-2,-27],[-4,3],[0,5],[1,7],[3,5],[-2,0],[2,8],[5,25],[9,28],[2,16],[7,19],[2,19],[34,104],[5,25],[1,23],[-8,6],[4,10],[2,8],[-1,5],[-7,-3],[0,-1],[-1,-3],[0,-2],[-1,-2],[-4,-3],[-2,-1],[-3,-1],[-1,-3],[-2,-7],[-13,-68],[0,-7],[1,-3],[4,0],[3,2],[2,2],[2,3],[2,0],[-3,-7],[-1,-3],[-2,-2],[3,-3],[1,-1],[-4,-12],[-11,-24],[-2,-15],[-1,-3],[-6,-14],[-1,-7],[-20,-73],[-18,-51],[1,13],[24,73],[19,89],[0,11],[-1,15],[-3,13],[-4,6],[-5,-5],[-4,-9],[-17,-40],[-29,-99],[-3,-5],[-5,-5],[-24,-49],[-11,-8],[-13,2],[-14,11],[-5,7],[-3,2],[-3,-4],[-26,-50],[-5,-4],[0,-3],[-2,-3],[-3,-2],[-3,0],[5,16],[38,73],[24,61],[4,10],[15,25],[1,10],[-6,7],[-8,2],[-6,-1],[-11,-14],[-38,-78],[-30,-47],[-8,-16],[-1,-6],[-2,-11],[-3,-4],[-4,-1],[-4,-6],[-1,11],[-3,8],[-3,6],[-1,4],[-3,9],[-6,5],[-16,2],[7,23],[4,9],[11,8],[59,114],[51,62],[7,17],[6,23],[10,57],[2,30],[-5,26],[2,1],[0,1],[1,1],[1,1],[0,3],[-1,7],[-1,3],[5,4],[2,-3],[5,-26],[1,-4],[3,-4],[-2,-10],[-2,-10],[0,-19],[-2,-10],[-6,-20],[-2,-6],[0,-4],[-2,-4],[-2,-6],[-1,-6],[1,-15],[0,-6],[-1,-9],[-6,-24],[-3,-7],[-16,-31],[-6,-7],[-2,-5],[-1,-8],[0,-8],[0,-3],[2,0],[3,3],[2,3],[3,12],[3,5],[4,6],[4,4],[9,6],[13,5],[6,4],[6,7],[0,7],[13,68],[10,28],[5,23],[2,27],[3,63],[1,12],[0,32],[8,12],[15,2],[10,-15]],[[33031,84029],[0,-4],[4,0],[-2,-6],[-5,-7],[-2,-7],[10,4],[3,0],[0,-4],[-4,-1],[-9,-7],[-13,-2],[-4,-2],[-6,-10],[-4,-3],[-4,1],[-1,2],[-3,10],[-1,4],[0,3],[1,1],[-1,4],[10,10],[1,4],[2,7],[5,1],[10,-2],[0,4],[-5,3],[-3,2],[-1,3],[0,6],[3,2],[3,-1],[3,-2],[5,-1],[6,-2],[3,-4],[-1,-6]],[[28709,83960],[-2,-1],[1,7],[0,8],[-1,8],[0,10],[2,13],[3,18],[0,34],[3,-3],[2,-8],[-1,-7],[-1,-2],[0,-1],[-1,-2],[1,-2],[1,-10],[0,-4],[-1,-3],[0,-6],[1,-10],[1,-18],[-2,-10],[-6,-11]],[[27902,84098],[2,0],[2,1],[3,-1],[2,1],[2,-1],[2,-8],[0,3],[1,-1],[1,-2],[4,-18],[1,-10],[-3,-4],[3,-7],[0,-6],[-2,-18],[-2,-2],[-6,4],[-4,-7],[-5,-13],[-5,-8],[-4,8],[-1,9],[2,5],[2,4],[2,7],[2,15],[0,2],[2,14],[-3,11],[-10,14],[4,4],[2,0],[0,4],[-3,3],[-1,4],[0,4],[2,6],[2,3],[1,-1],[1,-3],[2,-3],[0,-2],[2,-9],[0,-2]],[[27811,84079],[-2,-2],[-7,1],[-8,6],[-3,15],[0,17],[2,15],[2,3],[6,11],[3,2],[9,0],[4,-1],[9,-10],[2,-10],[-1,-11],[-4,-11],[-2,-2],[-4,-1],[-1,-3],[-1,-2],[0,-7],[-1,-3],[-3,-7]],[[27837,84191],[6,-9],[2,-6],[1,-7],[1,-7],[5,-23],[2,-19],[-2,-11],[-5,-6],[-9,-1],[-2,3],[0,7],[1,11],[-1,6],[-2,17],[-1,7],[-3,12],[-19,-7],[-7,5],[2,6],[6,11],[5,7],[2,3],[2,-1],[5,-6],[2,8],[3,6],[3,0],[3,-6]],[[32936,84188],[5,-4],[5,1],[4,4],[4,1],[4,0],[3,-3],[-8,-17],[-7,-9],[-4,-6],[5,-1],[3,-2],[4,-4],[3,-5],[-5,-8],[-8,-9],[-9,-5],[-6,2],[3,4],[-1,4],[-2,3],[-4,1],[-4,-2],[-3,-4],[-2,-4],[2,-5],[-2,-6],[-3,-5],[-2,-3],[-3,0],[-9,-5],[-2,-3],[-3,-3],[-1,-4],[0,-5],[1,-4],[4,-2],[4,3],[4,5],[6,4],[5,8],[3,2],[4,0],[20,-6],[4,-5],[3,-9],[1,-14],[0,-24],[-2,-9],[-3,-2],[-3,0],[-2,-4],[1,-6],[6,-7],[1,-7],[-3,-6],[-4,-2],[-9,0],[-5,3],[-15,25],[-6,5],[-3,2],[-3,1],[-3,3],[-4,11],[-7,6],[-3,7],[-4,5],[-6,1],[0,4],[4,11],[3,21],[1,20],[-3,9],[-1,4],[2,8],[6,12],[10,8],[8,4],[4,4],[1,8],[0,9],[1,4],[4,1],[4,2],[3,2],[5,-1],[4,-5],[5,-7]],[[28705,84265],[-4,0],[-5,4],[-2,6],[-2,11],[0,5],[-3,13],[-1,6],[1,3],[-3,6],[-1,11],[0,6],[2,3],[4,3],[4,-2],[4,-13],[1,-11],[3,-4],[3,-3],[1,-7],[-2,-5],[-3,-2],[-1,-5],[1,-6],[5,-6],[0,-3],[-1,-3],[0,-2],[1,-2],[0,-2],[-2,-1]],[[28262,84341],[-2,-2],[-2,0],[-2,0],[-2,-1],[-1,1],[-1,1],[-1,-1],[-1,-3],[-3,-5],[-4,-3],[-2,-1],[-3,0],[-4,0],[-7,2],[0,2],[2,5],[2,2],[2,-1],[0,2],[1,3],[1,1],[8,6],[3,1],[4,-2],[9,-4],[1,-1],[2,-2]],[[28228,84397],[-10,-6],[-4,0],[-11,5],[-3,0],[0,2],[1,4],[5,4],[21,15],[10,-1],[5,-6],[-2,-7],[-12,-10]],[[28683,84394],[-4,-2],[-3,3],[-1,11],[-2,4],[-2,6],[-2,9],[0,5],[-5,12],[-2,9],[-1,6],[-1,6],[-3,5],[-2,6],[2,4],[2,-2],[2,-4],[3,-2],[2,-4],[8,-9],[4,-6],[1,-3],[1,-3],[2,-6],[0,-6],[-1,-5],[-1,-4],[0,-5],[2,-6],[1,-6],[2,-7],[-2,-6]],[[32868,84516],[4,0],[3,0],[0,-4],[-2,-2],[-4,-7],[-3,-3],[-4,-1],[-21,1],[-5,-2],[-5,-5],[-5,-9],[3,-3],[5,-1],[4,1],[1,5],[3,3],[5,0],[23,-5],[15,-8],[0,-4],[-10,-9],[-9,0],[-47,9],[-11,7],[-3,13],[3,3],[16,9],[10,8],[4,6],[3,6],[5,15],[3,4],[5,2],[13,-1],[5,-2],[3,-6],[2,-1],[1,-1],[1,-2],[0,-3],[-4,-1],[-5,-2],[-8,-5],[3,-3],[3,-2]],[[32809,84574],[3,-1],[6,0],[17,-17],[4,-13],[-4,-17],[-7,-7],[-27,-21],[-4,-2],[-9,11],[-10,14],[-5,12],[-1,17],[6,15],[9,10],[8,2],[-4,-13],[-1,-7],[4,-4],[4,2],[5,17],[4,5],[2,-3]],[[27862,84553],[0,-14],[-2,-10],[-5,-6],[-11,11],[-5,-5],[-2,-11],[0,-29],[-2,-9],[-4,3],[-6,11],[-5,12],[-1,8],[3,2],[4,-3],[4,0],[2,16],[3,4],[2,2],[2,3],[-2,6],[-3,-1],[-6,-7],[-3,3],[1,6],[3,10],[2,8],[5,10],[5,9],[5,4],[1,2],[2,4],[2,2],[2,-3],[2,-5],[2,-11],[3,-10],[2,-12]],[[32851,84716],[2,-2],[2,6],[3,1],[2,0],[2,-2],[-1,-8],[-5,-13],[-2,-7],[13,3],[7,0],[-2,-7],[2,0],[-2,-5],[-2,-4],[-6,-8],[1,1],[5,-1],[-3,-13],[-4,-3],[-5,1],[-10,-7],[-6,4],[-5,9],[-4,7],[-6,7],[-1,2],[0,5],[0,4],[-1,4],[-3,1],[-4,-5],[-3,-8],[-4,-5],[-6,6],[5,13],[23,34],[4,1],[10,-4],[4,-7]],[[32798,84757],[-4,-13],[15,0],[4,-16],[0,-5],[-2,-8],[-3,-6],[-8,-7],[-3,-5],[-8,-4],[-9,9],[-10,12],[-8,5],[-3,-2],[-6,-8],[-1,0],[-1,8],[-3,3],[0,3],[4,8],[14,24],[8,9],[8,4],[15,0],[2,-4],[-1,-7]],[[28425,84963],[-8,-2],[-11,5],[-59,46],[0,3],[7,1],[3,-1],[-2,0],[29,-14],[33,-32],[8,-2],[0,-4]],[[31241,84994],[-14,-11],[-15,7],[-7,22],[1,22],[6,22],[12,12],[9,-6],[9,-38],[-1,-30]],[[28164,85194],[-2,-3],[-2,0],[-3,0],[-2,3],[0,-4],[5,-7],[39,-38],[7,-3],[0,-5],[-48,34],[-15,15],[2,4],[1,2],[2,2],[3,0],[0,4],[-5,4],[-4,7],[-2,10],[0,12],[2,-5],[2,-3],[2,-3],[3,-2],[3,-7],[9,-11],[3,-6]],[[28157,85287],[1,-4],[0,-3],[1,-1],[0,-3],[-1,-1],[-2,1],[-3,-1],[-1,1],[-1,3],[0,1],[-8,0],[-3,-1],[-3,1],[-1,4],[2,3],[1,1],[2,-1],[2,-1],[1,-1],[2,2],[-2,2],[-3,2],[2,2],[9,0],[4,-3],[-2,-1],[3,-2]],[[28087,85298],[0,-1],[-4,3],[-1,2],[0,2],[-1,2],[-2,1],[-4,2],[-3,3],[-1,2],[1,3],[1,3],[0,10],[3,1],[3,-7],[4,-13],[1,-6],[3,-7]],[[30813,85388],[-13,-3],[2,8],[8,15],[6,9],[18,3],[3,-7],[3,-9],[-11,-10],[-16,-6]],[[27628,85466],[-3,-2],[-8,1],[-1,4],[3,4],[5,3],[4,-3],[1,-3],[-1,-4]],[[30778,85498],[9,-2],[4,-6],[10,5],[4,-7],[5,-11],[5,-11],[1,-10],[-11,-6],[5,-3],[-11,-9],[-7,-5],[-2,-7],[-6,-5],[0,-4],[-11,-10],[-4,-8],[3,-10],[-5,-6],[-5,4],[-11,14],[-2,-12],[-5,-8],[-6,-1],[-6,9],[3,6],[6,11],[2,7],[1,3],[-1,11],[1,3],[2,2],[3,3],[2,11],[2,3],[1,3],[-4,8],[-10,18],[-5,16],[4,3],[8,-1],[4,4],[17,1],[10,-3]],[[27645,85681],[-3,-9],[-7,-19],[-2,-11],[-2,-9],[-4,-3],[-3,6],[4,16],[-2,0],[6,16],[1,5],[-2,0],[-3,1],[-4,3],[17,20],[6,4],[-2,-5],[0,-2],[1,-2],[2,-3],[0,-3],[-1,-3],[-1,-1],[-1,-1]],[[27624,85795],[-4,-2],[-2,4],[-1,3],[-3,2],[2,5],[11,8],[1,3],[5,4],[2,1],[1,-3],[0,-5],[-4,-5],[-8,-15]],[[27669,85816],[-2,-1],[-3,1],[0,-2],[0,-4],[-2,-4],[-2,-4],[-2,-5],[-4,-3],[-1,6],[3,12],[4,10],[7,7],[3,3],[2,0],[3,-2],[-1,-2],[-3,-3],[-1,-4],[-1,-5]],[[27715,85843],[4,-5],[12,-4],[5,-3],[-2,-5],[-1,-3],[0,-3],[1,-5],[-1,0],[-1,-1],[-2,-3],[-10,-5],[-4,-3],[-4,-6],[-1,-3],[-3,-9],[-2,-4],[-2,-1],[-6,-2],[-6,-3],[-3,-1],[-2,0],[-5,3],[0,2],[2,3],[1,7],[2,5],[5,4],[3,5],[-1,8],[4,3],[3,0],[4,-2],[4,-1],[0,4],[-1,1],[-1,4],[-1,3],[2,3],[3,5],[1,6],[1,6],[1,-3],[1,1],[0,2]],[[32226,85867],[6,-11],[-3,-4],[-5,-11],[-2,-2],[-15,0],[-4,-3],[-11,-9],[-5,-2],[-4,0],[-8,6],[5,6],[3,2],[-5,4],[-5,0],[-4,2],[-4,6],[2,10],[2,4],[2,3],[4,0],[4,-2],[4,-4],[4,-2],[-2,5],[-1,5],[-3,4],[-2,2],[7,33],[2,7],[6,5],[6,2],[5,-1],[4,-6],[-1,-2],[-3,-6],[2,-6],[6,-15],[-13,-3],[6,-9],[20,-8]],[[27780,85927],[2,-2],[3,2],[3,4],[4,2],[5,-5],[3,-4],[3,-3],[3,-1],[4,0],[-3,-9],[-3,-7],[-9,-12],[-6,-6],[-3,-1],[-3,-1],[-3,-2],[-8,-14],[-13,-8],[-8,-1],[-4,4],[3,7],[5,8],[2,7],[-6,7],[-1,-7],[-2,-3],[-3,-3],[-2,-5],[-2,-2],[-2,-1],[-2,-1],[-1,-5],[0,-5],[0,-4],[-1,-3],[-3,-2],[-4,3],[0,5],[14,41],[5,10],[3,4],[9,5],[7,11],[3,3],[2,0],[3,3],[2,1],[1,-2],[3,-8]],[[32048,86289],[4,-4],[3,-5],[-2,-7],[6,2],[5,-1],[2,-5],[-1,-11],[7,-3],[3,-7],[0,-10],[-1,-13],[2,0],[8,13],[3,3],[15,0],[3,-3],[-1,-6],[-2,-7],[0,-2],[-1,-2],[-2,-3],[-6,-5],[-1,-2],[0,-2],[-1,-2],[-2,-2],[0,-5],[8,-11],[4,-8],[2,-9],[-12,9],[-13,11],[-21,16],[-7,5],[-8,2],[-15,1],[-7,3],[-7,5],[-20,25],[-8,14],[-2,15],[9,12],[6,1],[22,-5],[12,1],[7,2],[5,5],[4,-5]],[[31089,86352],[14,-4],[8,2],[5,-14],[10,-19],[11,-13],[7,-7],[11,-5],[4,-14],[-6,-29],[-11,-22],[-6,-1],[-7,-18],[-7,-9],[1,-18],[-5,-7],[-4,0],[-5,4],[-15,-1],[-4,-4],[-4,-6],[-6,-5],[-8,-2],[-9,-5],[-3,-11],[-6,-7],[-10,-5],[-12,-1],[-10,-12],[-15,0],[-13,8],[-5,29],[6,29],[10,40],[13,33],[7,23],[5,21],[14,47],[31,7],[8,-2],[6,-2]],[[32039,86361],[-9,-10],[-3,1],[-3,4],[-1,5],[7,6],[15,28],[5,14],[2,2],[4,-1],[1,-3],[0,-3],[0,-5],[-1,-11],[-3,-12],[-5,-10],[-9,-5]],[[28271,86497],[0,-5],[0,-8],[-2,0],[-31,-24],[13,4],[5,0],[0,-4],[-16,-8],[-47,-12],[-23,-14],[-26,-2],[-4,1],[1,4],[15,15],[3,4],[1,5],[0,5],[2,4],[3,2],[98,29],[2,4],[2,-1],[1,-1],[1,0],[2,2]],[[30563,86567],[-2,-14],[-7,3],[1,20],[-3,17],[7,13],[8,9],[10,-2],[0,-10],[3,-8],[-11,-9],[0,-12],[-6,-7]],[[30135,86772],[-12,-2],[-8,4],[0,13],[7,5],[20,2],[1,-10],[-1,-10],[-7,-2]],[[32002,86963],[4,-2],[4,3],[6,4],[5,3],[0,-4],[-4,-4],[0,-4],[15,2],[4,-2],[3,-3],[2,-3],[0,-3],[-3,-3],[-2,-4],[-9,-13],[-3,-3],[-2,-2],[-1,-4],[0,-5],[1,-1],[5,-1],[3,-1],[2,-2],[-9,-12],[8,0],[3,-3],[-1,-8],[-1,-5],[-2,-11],[-2,-6],[-6,-11],[-17,-9],[-5,-8],[3,-9],[-4,-11],[-11,-15],[-3,-11],[-6,-1],[-7,5],[-4,13],[-5,-5],[-6,-3],[-6,1],[-2,9],[1,8],[5,5],[6,3],[5,6],[-14,8],[-29,2],[-13,11],[0,4],[4,-1],[3,1],[2,3],[1,5],[-14,-1],[-7,2],[-5,5],[-1,5],[-1,10],[-2,5],[-2,3],[-5,0],[-8,-1],[-4,2],[-3,5],[-2,6],[-3,4],[-4,2],[-13,2],[-6,4],[-12,14],[-3,2],[-5,7],[-7,2],[-4,6],[1,13],[3,13],[6,8],[6,3],[106,21],[7,-2],[13,-8],[72,-10],[-5,-8],[-11,-9],[-5,-8]],[[31726,87087],[2,-2],[3,2],[3,6],[5,4],[4,-2],[2,-10],[1,-6],[3,-13],[0,-2],[7,-14],[0,-5],[-4,-6],[-8,4],[-9,9],[-5,9],[-4,-13],[-8,-3],[-17,4],[-7,3],[-8,9],[-5,8],[16,13],[14,18],[13,11],[11,-9],[-2,-3],[-9,-4],[0,-4],[2,-4]],[[29995,87100],[-12,-2],[-13,12],[-7,11],[5,9],[6,-5],[20,-11],[7,-4],[6,-7],[-12,-3]],[[24154,87143],[5,-5],[0,-3],[-2,-5],[14,-8],[5,-1],[-5,-12],[-10,-14],[-11,-9],[-8,3],[-4,7],[-8,17],[-5,5],[-13,-4],[-6,3],[-2,15],[3,8],[5,2],[26,-1],[5,2],[5,7],[6,-7]],[[24222,87156],[8,-7],[-5,-4],[-8,4],[-5,-6],[-8,3],[-3,5],[7,5],[14,0]],[[31926,87146],[10,-25],[3,-19],[4,6],[4,12],[3,6],[5,-8],[1,-15],[0,-15],[2,-7],[3,1],[6,6],[3,1],[4,-1],[2,-4],[3,-11],[9,-15],[2,-5],[2,-7],[-1,-3],[-2,-1],[-10,-12],[-8,-4],[-7,-1],[-8,3],[-22,22],[-31,9],[-2,5],[-1,7],[-3,6],[-3,3],[-7,1],[-3,4],[-2,4],[-7,26],[-2,7],[1,8],[3,10],[3,2],[3,0],[3,1],[2,5],[1,7],[3,3],[7,0],[14,-4],[13,-8]],[[29909,87196],[-7,-9],[-12,8],[-13,8],[-6,6],[14,1],[8,-4],[16,-10]],[[24267,87211],[-4,-8],[-10,9],[-2,9],[-1,10],[16,-8],[1,-12]],[[24369,87428],[8,-5],[28,3],[0,-4],[-6,0],[-18,-20],[-4,-2],[-6,3],[-17,-4],[-8,3],[9,12],[6,4],[6,0],[-6,8],[-7,-1],[-7,-5],[-7,-2],[0,4],[4,2],[1,4],[2,3],[3,3],[4,2],[5,-2],[5,-2],[5,-4]],[[27933,87412],[1,-5],[3,-15],[2,-3],[3,-1],[11,-11],[2,-4],[3,-12],[3,-4],[4,-3],[8,-3],[4,-4],[4,-12],[1,-9],[-1,-8],[-1,-10],[1,-24],[-1,-11],[-3,-11],[-9,-21],[-4,-12],[-2,-14],[1,-7],[1,-12],[1,-16],[-1,1],[-4,1],[-2,2],[-5,6],[-3,1],[-2,-3],[-1,-6],[-1,-12],[-3,-8],[-2,-4],[-5,-8],[-3,-6],[-2,-5],[-3,-13],[-4,-10],[-13,-19],[0,-8],[-1,-6],[-1,-6],[-2,-5],[-1,-11],[-1,8],[0,-14],[-2,-10],[-4,-11],[-6,-12],[-9,-10],[-6,-26],[-4,-4],[-10,-17],[-10,-8],[-3,-4],[-4,-11],[-3,-2],[-14,-5],[-6,-1],[-6,6],[-1,2],[0,6],[-1,3],[-2,3],[-4,3],[-2,2],[-9,21],[-8,19],[-2,4],[-3,2],[-10,11],[-10,4],[-5,10],[0,7],[-15,8],[-7,5],[-12,3],[-6,10],[-4,6],[-1,5],[1,7],[-7,6],[-5,15],[1,19],[-5,10],[-2,7],[-1,8],[7,30],[1,20],[2,21],[9,24],[1,27],[16,37],[9,12],[14,16],[11,19],[12,18],[4,19],[7,14],[5,8],[5,5],[13,8],[10,6],[4,-2],[4,-4],[4,-3],[9,6],[5,0],[4,-1],[4,-4],[-3,-3],[0,-4],[1,-3],[4,-2],[4,2],[6,8],[6,4],[7,8],[3,2],[14,2],[5,-2],[-1,0],[3,-2],[5,-7],[3,-3],[5,-2],[4,-1],[5,-2],[4,-5]],[[24328,87422],[-4,-1],[-3,1],[-26,-8],[-8,1],[-7,4],[-2,5],[6,2],[5,4],[4,8],[4,5],[10,-9],[18,-1],[7,-3],[-2,-5],[-2,-3]],[[32029,87504],[2,-1],[3,1],[5,6],[3,1],[26,-4],[1,11],[7,1],[17,-8],[-1,-12],[18,5],[6,-5],[-1,-4],[1,-4],[3,-3],[3,-2],[0,-3],[-35,-8],[0,-5],[6,-3],[13,-2],[6,-3],[-8,-12],[-6,-4],[-4,2],[-2,3],[-4,1],[-4,1],[-2,-3],[1,-3],[8,-13],[-12,-13],[-8,-5],[-7,-2],[-2,-1],[-4,-6],[-1,-1],[-3,0],[-6,3],[-8,2],[-11,6],[-24,3],[-39,15],[-9,10],[3,14],[-4,3],[-2,0],[9,15],[13,4],[26,-2],[-4,6],[-13,7],[-4,7],[7,17],[11,8],[13,-1],[11,-8],[6,-11]],[[28372,87513],[-20,-2],[-43,8],[-5,3],[-2,5],[1,6],[5,2],[56,7],[10,-7],[5,-15],[-7,-7]],[[28402,87542],[5,-5],[3,-2],[23,3],[5,-3],[-7,-11],[-5,-5],[-8,4],[-5,-5],[-5,-6],[-4,-5],[-5,0],[-6,1],[-6,4],[-2,5],[0,8],[-2,6],[-2,6],[-2,7],[2,-1],[2,0],[2,-2],[2,-1],[3,0],[6,3],[2,1],[4,-2]],[[31976,87517],[-5,-2],[-5,1],[-3,-1],[-2,-2],[-4,-6],[-2,-3],[-2,-1],[-26,-1],[-15,4],[-7,9],[16,3],[4,3],[2,6],[3,5],[4,4],[3,4],[9,4],[11,3],[11,-1],[7,-6],[13,-8],[-7,-12],[-5,-3]],[[24562,87561],[0,-4],[-3,1],[-23,16],[-5,10],[2,1],[3,-1],[2,-1],[2,-3],[14,-4],[3,-4],[3,-4],[2,-7]],[[24710,87591],[16,-11],[-1,-3],[-1,0],[-3,3],[-40,0],[-15,8],[-5,1],[-10,-1],[-4,2],[0,7],[6,4],[32,-9],[25,-1]],[[29320,87617],[2,-1],[5,2],[2,-1],[5,-7],[1,-3],[-2,-4],[2,-4],[2,-5],[3,-2],[62,5],[4,-1],[9,-6],[20,-3],[5,-3],[4,-7],[9,-24],[1,-5],[-43,-4],[-71,19],[-9,5],[-7,8],[-3,3],[-25,4],[-4,3],[-5,8],[-24,19],[5,6],[19,6],[7,7],[3,1],[3,0],[7,-4],[3,0],[2,-4],[2,-3],[3,-3],[3,-2]],[[30336,87685],[50,-25],[15,-12],[17,-7],[6,-10],[8,-4],[9,-7],[4,-7],[-6,0],[-2,0],[0,-4],[11,-10],[17,-5],[-7,-7],[-6,-5],[5,-2],[9,-1],[6,1],[7,-4],[5,-12],[4,-12],[12,-4],[6,-12],[-5,-13],[-10,-10],[-12,-5],[-24,-9],[-22,4],[-34,4],[-6,3],[-11,11],[-6,3],[-2,-2],[-5,-9],[-3,-2],[-13,4],[-3,2],[4,7],[-1,7],[-1,9],[-16,4],[-9,14],[1,28],[-8,15],[-5,12],[-17,16],[5,4],[5,1],[5,-1],[4,-4],[2,4],[4,-3],[6,-2],[6,0],[4,3],[2,7],[-1,6],[-3,4],[-5,1],[-19,-4],[-10,1],[-14,17],[-11,5],[-10,1],[-11,-8],[-6,-1],[-17,3],[-3,2],[-3,5],[9,6],[21,-3],[10,5],[-30,6],[-15,6],[-11,14],[0,8],[8,1],[116,-28]],[[31571,87690],[-19,-1],[-23,18],[-21,22],[2,9],[35,-21],[20,-14],[6,-13]],[[27192,87761],[48,-8],[10,-6],[10,-12],[-5,-8],[-5,-9],[-3,-11],[2,-13],[-7,-4],[-4,-3],[-3,-5],[5,-5],[-1,-6],[-7,-10],[6,-13],[3,-10],[2,-9],[-1,-10],[-3,-11],[-5,-8],[-11,-6],[-12,-15],[-10,-6],[-17,-21],[-7,-5],[-37,-13],[-5,-9],[-9,-4],[-5,-6],[-8,-14],[-3,-8],[-6,-26],[-55,-45],[-34,-51],[-42,-37],[-47,-36],[-19,-6],[-4,2],[-2,6],[-3,11],[-3,5],[-6,7],[-16,11],[-7,3],[-38,-8],[-71,-56],[-9,-1],[-4,10],[2,47],[-3,27],[-8,15],[-44,50],[-8,17],[0,21],[9,19],[54,46],[12,23],[3,14],[1,3],[4,1],[16,18],[5,8],[4,10],[1,14],[-1,6],[-2,5],[0,6],[4,13],[3,20],[4,11],[11,12],[10,19],[7,8],[34,23],[2,1],[2,-4],[2,-3],[3,-1],[9,-2],[6,-4],[5,-8],[6,-11],[14,-17],[16,-3],[17,6],[73,51],[12,4],[25,0],[51,-10],[12,6],[-1,5],[0,4],[1,4],[2,3],[-2,0],[7,0],[7,3],[7,5],[6,6],[7,4],[13,-6],[7,0],[-2,0],[23,-10]],[[31452,87747],[-6,-12],[-11,16],[-17,17],[-22,31],[-18,22],[-10,16],[22,-3],[19,-16],[33,-47],[10,-24]],[[31095,87911],[2,-18],[-22,17],[-16,17],[-8,16],[19,-2],[25,-30]],[[31130,87917],[10,-26],[-18,18],[-20,31],[-17,29],[19,-12],[26,-40]],[[31154,87972],[7,-20],[-13,0],[-13,27],[-11,26],[-3,17],[14,-10],[17,-28],[2,-12]],[[24829,88045],[-8,-3],[-16,1],[-5,3],[-4,9],[-6,20],[9,0],[20,-5],[8,-7],[2,-2],[1,-3],[1,-2],[2,-1],[-4,-10]],[[28218,88071],[10,-22],[28,16],[25,6],[8,-2],[14,-9],[8,-1],[6,7],[2,1],[17,-4],[26,0],[14,-4],[7,-12],[-2,-1],[-2,-1],[-3,-6],[5,-4],[7,-3],[12,-1],[5,1],[10,7],[6,0],[0,-3],[-1,-6],[-1,-3],[5,0],[4,-2],[3,-3],[4,-4],[-2,0],[-4,-3],[2,-1],[3,-3],[3,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[3,-12],[7,-8],[7,-6],[6,-8],[2,-5],[2,-10],[1,-3],[4,-2],[5,-2],[3,-3],[-2,-10],[-13,-19],[-5,-12],[2,-9],[0,-4],[-23,-25],[-18,-10],[-14,-9],[-18,-5],[-18,-8],[-14,-1],[-6,7],[-24,18],[1,9],[-6,3],[-7,2],[-6,5],[-4,8],[-7,8],[-6,7],[-10,6],[-11,13],[-19,29],[-7,6],[-32,38],[-11,8],[-3,3],[-7,9],[6,12],[-6,5],[2,8],[-5,10],[7,21],[9,16],[13,5],[7,-16]],[[24730,88108],[58,-16],[-5,4],[-3,4],[-2,4],[5,3],[5,0],[11,-3],[10,-11],[3,-5],[-4,-7],[-4,0],[-11,2],[-5,-1],[-9,-5],[-5,-2],[-11,4],[-22,19],[-11,6],[0,4]],[[32204,88095],[-7,-28],[-16,32],[-6,38],[9,8],[26,-32],[-6,-18]],[[24611,88108],[-5,-1],[-5,1],[-5,2],[-4,4],[-1,5],[-1,6],[-2,5],[-4,2],[-3,1],[-5,2],[-4,4],[0,5],[4,2],[17,-2],[5,-4],[13,-7],[11,-3],[17,-15],[-32,0],[4,-7]],[[32162,88010],[2,0],[4,4],[1,1],[2,-3],[4,-10],[0,-2],[0,-4],[0,-2],[1,-1],[3,-1],[10,-11],[4,-3],[5,0],[-4,-8],[3,-8],[5,-9],[3,-11],[-9,3],[-18,24],[-7,0],[3,-3],[1,-4],[-1,-3],[-4,-1],[-4,2],[-6,8],[-10,5],[-6,8],[-9,17],[-1,3],[-2,4],[-2,4],[-3,1],[-3,3],[-1,6],[-1,8],[-1,5],[-1,2],[-2,1],[-1,1],[-1,3],[-2,7],[0,1],[-3,8],[-3,3],[-3,1],[4,5],[5,3],[-1,1],[-3,2],[-2,1],[1,11],[-3,12],[-5,10],[-5,4],[-3,4],[-6,24],[-3,8],[3,6],[2,7],[4,5],[5,3],[5,0],[6,2],[3,5],[0,8],[6,0],[5,-5],[5,-7],[3,-7],[1,-30],[2,-12],[3,-11],[4,-12],[3,-11],[-1,-10],[-6,-8],[6,-4],[3,-5],[6,-15],[-6,0],[-3,-2],[-2,-2],[3,-5],[2,-1],[3,-1],[3,-1],[2,-4],[4,-9],[0,-2],[2,-3],[2,-3]],[[28569,88175],[4,-2],[7,1],[1,2],[-4,4],[0,5],[115,-70],[-3,-2],[-1,-1],[4,-10],[8,-6],[9,-3],[6,-1],[2,-4],[-20,-21],[9,-5],[21,-1],[10,-6],[-1,-2],[-1,-2],[-5,0],[-11,-14],[-5,-3],[-7,5],[0,-4],[4,-7],[-4,-12],[-7,-12],[-6,-6],[-7,0],[-12,6],[-17,4],[-6,2],[-4,5],[0,6],[-7,2],[-15,0],[-7,-3],[-3,0],[-6,8],[-10,7],[-8,12],[-7,7],[-18,22],[-1,4],[-5,0],[-4,1],[-4,3],[-4,4],[-1,1],[-3,1],[-2,2],[0,1],[0,5],[0,2],[-2,4],[-2,2],[-2,-2],[-6,7],[-24,13],[1,2],[1,1],[2,1],[-16,1],[-5,3],[2,2],[2,1],[3,1],[2,0],[-5,1],[-5,5],[-1,4],[5,2],[25,0],[0,5],[-22,1],[-10,5],[1,12],[6,10],[8,9],[8,5],[9,-2],[13,-8],[25,0],[5,-2],[8,-8]],[[29868,88197],[4,-10],[-3,-8],[-6,-2],[-3,6],[-3,7],[-7,0],[-9,-4],[-6,-6],[4,-2],[7,-3],[3,-2],[-16,-11],[-8,0],[-14,15],[-9,0],[-20,-4],[0,4],[79,24],[7,-4]],[[32151,88230],[-2,-22],[-15,9],[-7,18],[0,30],[2,15],[33,-2],[12,-22],[-9,-9],[-14,-17]],[[24177,88300],[-3,-3],[-22,7],[-8,6],[-4,9],[27,1],[6,-5],[3,-9],[1,-6]],[[32045,88311],[6,-7],[15,13],[2,-6],[-3,-8],[-9,-16],[-3,-9],[15,6],[7,-1],[7,-5],[-17,-23],[-9,-5],[-4,-4],[5,0],[11,-5],[4,-3],[7,-11],[4,-3],[4,2],[4,6],[3,7],[5,5],[6,-2],[2,-5],[7,-24],[-6,0],[3,-10],[2,-9],[-3,-7],[-7,-7],[-4,0],[-4,0],[-4,2],[-4,3],[-2,4],[-6,14],[-2,2],[-15,4],[-2,2],[-2,4],[-2,4],[-13,6],[-11,16],[-5,4],[-7,-1],[-12,-9],[-6,-1],[-14,6],[-13,10],[-8,17],[7,14],[22,22],[7,-18],[4,-8],[6,-7],[1,6],[-2,6],[-3,5],[-3,3],[2,7],[3,2],[4,-1],[4,-4],[0,20],[12,9],[12,-2],[2,-10]],[[28459,88384],[-12,-1],[-5,-3],[-5,-8],[-5,-11],[-18,-24],[-8,-6],[-5,0],[-9,7],[-37,7],[-10,5],[-5,1],[-2,4],[2,9],[4,10],[3,6],[6,3],[6,3],[13,2],[19,-4],[6,4],[-2,4],[50,4],[14,-8],[0,-4]],[[27382,88488],[-13,-3],[-13,3],[-6,6],[1,10],[10,8],[16,0],[13,-5],[3,-9],[-4,-6],[-7,-4]],[[29649,88513],[0,-3],[-1,0],[-1,-1],[1,-1],[-1,-2],[-2,-5],[7,-4],[15,1],[7,-5],[-6,-5],[-7,-4],[-14,-3],[1,-2],[1,-2],[1,-2],[1,-2],[-6,-12],[-3,-2],[-3,4],[-4,3],[-5,-1],[-5,-3],[-4,-1],[0,4],[2,0],[2,2],[2,2],[1,4],[-5,0],[-12,-4],[2,9],[2,3],[-2,7],[5,0],[12,-3],[4,5],[1,8],[-2,7],[-5,5],[0,3],[21,0]],[[28758,88493],[-4,-14],[-11,9],[-12,5],[-1,17],[11,7],[9,-2],[1,-11],[7,-11]],[[28718,88532],[14,-10],[-9,-9],[-3,-11],[-6,1],[-10,12],[-7,6],[0,7],[10,-1],[11,5]],[[31960,88494],[-13,-8],[-14,30],[-7,21],[-3,16],[8,13],[23,-11],[-6,-12],[11,-8],[17,-7],[-15,-12],[17,-9],[-18,-13]],[[29580,88660],[3,-2],[1,-4],[0,-17],[-2,-9],[-5,-6],[-8,-7],[2,-11],[-1,-8],[2,-5],[7,0],[-5,-6],[-6,-4],[-6,-5],[-2,-10],[3,1],[2,-1],[1,-3],[1,-5],[-14,-1],[-11,3],[-2,3],[0,41],[-2,12],[-3,11],[5,8],[4,3],[4,1],[3,-1],[7,-3],[3,1],[0,3],[-3,7],[-4,9],[0,6],[7,-1],[0,3],[-22,6],[-4,3],[-3,10],[4,6],[9,6],[8,9],[10,5],[11,-1],[7,-6],[0,-7],[0,-3],[1,-3],[-1,0],[1,-4],[-4,-5],[-2,-5],[-1,-4],[1,-7],[4,-3]],[[31864,88795],[5,-2],[5,1],[-4,-8],[-13,-20],[10,1],[3,-1],[4,-5],[0,-2],[0,-6],[1,-4],[4,4],[2,0],[5,0],[-2,-8],[-3,-3],[-13,-2],[-3,-2],[-6,-5],[-9,-4],[-19,-2],[-8,-6],[5,-4],[5,-1],[11,0],[-8,-12],[-15,-6],[-29,-2],[6,-7],[7,-2],[14,1],[-6,-7],[-8,-2],[-16,1],[-28,-7],[-7,3],[-1,20],[9,19],[14,16],[15,9],[15,26],[11,8],[4,6],[4,23],[5,7],[5,-1],[3,-8],[0,-8],[-8,-32],[5,-3],[3,7],[6,21],[4,7],[10,13],[5,4],[-2,-11],[3,-4]],[[31407,89151],[-9,-20],[-9,9],[-5,13],[13,16],[13,11],[6,-12],[-9,-17]],[[25253,89207],[3,-2],[5,1],[4,-2],[6,5],[3,-4],[1,-4],[6,-5],[5,-3],[-3,-3],[-6,2],[-8,3],[-7,6],[-5,-3],[-4,-2],[-4,3],[0,7],[1,4],[3,-3]],[[25438,89234],[-10,-1],[-7,6],[-2,5],[1,5],[10,0],[6,3],[13,-9],[3,-6],[-5,-2],[-9,-1]],[[31271,89394],[-15,-11],[-14,3],[-26,-7],[-17,-7],[-5,7],[-1,9],[8,6],[14,4],[18,3],[35,2],[12,-3],[-9,-6]],[[32652,89407],[10,-5],[2,1],[2,2],[1,2],[2,-2],[0,-2],[1,-7],[0,-1],[4,0],[3,1],[6,6],[6,4],[5,1],[12,0],[2,0],[0,-5],[-2,-1],[-1,-2],[0,-1],[-10,-12],[9,-3],[18,3],[9,-4],[-5,-5],[-5,-3],[0,-4],[6,4],[5,0],[5,-3],[5,-5],[-4,-4],[2,-11],[-5,-3],[-8,-1],[-6,-1],[3,-5],[1,-4],[-1,-5],[-2,-5],[-3,-2],[-2,2],[-3,4],[-3,2],[-3,6],[-2,11],[-3,7],[-4,-5],[-6,-18],[-4,-6],[-6,2],[-2,7],[2,8],[5,7],[3,5],[-3,-1],[-5,-5],[-3,-2],[-3,0],[-6,2],[-3,-2],[1,3],[0,7],[1,3],[-6,-3],[-17,-2],[1,5],[2,4],[2,3],[3,1],[0,4],[-4,4],[-5,6],[-3,8],[0,10],[4,5],[5,0]],[[31722,89368],[-10,-3],[-7,16],[1,26],[-2,19],[16,-2],[10,-8],[-4,-37],[-4,-11]],[[26863,89465],[1,-7],[-6,-1],[-11,2],[-18,-1],[-5,-3],[-2,-3],[-4,-7],[-2,-2],[-12,0],[-9,6],[-10,12],[-3,13],[11,5],[49,0],[11,-4],[6,-4],[4,-6]],[[26253,89435],[9,-1],[8,5],[3,4],[5,12],[4,4],[4,2],[12,-1],[35,-17],[8,-12],[2,-7],[-1,-4],[-1,-1],[0,-5],[2,-5],[2,-5],[1,-4],[-3,-2],[-5,-4],[4,-10],[26,-36],[6,-11],[0,-10],[-8,-12],[-8,-7],[-39,-16],[-10,3],[-4,-2],[-4,-9],[15,-20],[9,-8],[19,-6],[23,-16],[16,-18],[4,-6],[1,-6],[0,-6],[-3,-19],[-2,-7],[6,-15],[19,-37],[1,-6],[0,-7],[-1,-8],[0,-6],[3,-3],[20,0],[9,5],[7,11],[2,6],[4,19],[2,2],[3,3],[1,3],[0,4],[-1,2],[-1,2],[0,2],[0,13],[2,10],[5,9],[6,11],[15,31],[8,8],[3,6],[6,13],[4,3],[6,-2],[11,-7],[18,-7],[7,-7],[-3,-12],[-2,-6],[1,-3],[4,-1],[4,-1],[3,-2],[7,-10],[3,-3],[19,-5],[21,-14],[17,-4],[3,-4],[-1,-5],[-1,-1],[-2,-1],[-2,-1],[-2,-3],[-1,-3],[0,-2],[-1,-3],[-11,-12],[-2,-3],[0,-9],[5,-5],[10,-5],[22,-24],[8,-6],[7,-1],[20,1],[27,-4],[-12,-9],[5,-5],[5,-2],[11,0],[19,8],[14,-10],[49,0],[22,-9],[11,-2],[9,-4],[5,-12],[5,-14],[7,-10],[-1,-24],[9,-16],[23,-23],[2,-6],[1,-4],[1,-3],[28,-8],[16,-9],[10,-1],[4,-1],[3,-3],[5,-7],[4,-5],[4,-2],[16,-5],[6,-4],[5,-7],[14,-28],[6,-8],[8,-7],[8,-4],[26,0],[6,-4],[14,-16],[4,-2],[2,2],[16,5],[13,7],[8,1],[8,-1],[8,-4],[8,-6],[9,-13],[3,-2],[13,-1],[4,-2],[-3,-13],[-1,-4],[27,0],[7,-3],[5,-7],[2,-3],[2,-8],[1,-3],[59,-69],[6,-2],[8,-4],[7,-7],[4,-9],[0,-3],[1,-2],[1,-4],[0,-6],[-1,-4],[-4,-7],[-1,-4],[0,-9],[1,-9],[5,-19],[-2,-4],[2,-10],[-3,-6],[-3,-6],[-2,-9],[2,-9],[3,-10],[14,-23],[6,-8],[7,-6],[12,-5],[4,-7],[5,-15],[-4,-16],[-1,-4],[0,-10],[-5,-6],[-23,-7],[-16,-11],[-25,-5],[-7,-4],[-8,-6],[-5,-7],[-3,-3],[-2,4],[-1,6],[-3,-3],[-3,-6],[-2,-3],[1,-8],[-2,-5],[-3,-4],[-2,-5],[2,-7],[6,-3],[26,6],[27,-1],[36,15],[17,4],[24,-1],[13,3],[7,10],[-1,3],[-4,13],[3,6],[5,4],[6,2],[4,-3],[-5,-7],[-2,-2],[10,-5],[21,4],[15,-14],[51,-18],[24,-19],[12,0],[7,10],[-5,11],[-9,12],[-6,11],[8,10],[3,5],[2,6],[-4,11],[-2,4],[18,-4],[18,-12],[17,-17],[13,-21],[2,-5],[1,-4],[2,-4],[23,-5],[19,-14],[7,-9],[-5,-6],[-3,-15],[14,-9],[-10,-8],[-12,-4],[-11,2],[-24,10],[8,-14],[9,-8],[73,-18],[28,-25],[5,0],[11,5],[5,-1],[3,-4],[2,-7],[4,-13],[-3,-4],[0,-7],[-4,-2],[-10,1],[-14,-7],[-51,-9],[-4,-3],[-3,-6],[-3,-11],[-3,-7],[-3,-3],[-2,-1],[-9,-9],[-6,-10],[-4,-4],[-8,-3],[-28,-25],[-13,-7],[-7,-11],[-4,-2],[-2,-1],[-1,-3],[-3,-6],[-2,-2],[-2,-1],[-3,1],[-11,-1],[-5,-2],[-3,-5],[-1,-6],[0,-9],[0,-7],[0,-3],[-14,-14],[-4,-3],[-6,0],[-29,8],[-27,22],[-65,29],[-12,15],[-9,3],[-29,-3],[-7,4],[-5,8],[-6,10],[-8,11],[-9,6],[-10,2],[-10,0],[-13,-5],[-4,0],[-5,3],[-8,8],[-13,4],[-15,14],[-9,4],[-46,-3],[-6,-5],[1,-8],[-8,12],[-9,-15],[-10,0],[-35,15],[-2,2],[-1,4],[1,11],[-1,3],[-11,8],[-5,6],[0,9],[5,16],[4,7],[5,3],[6,2],[12,8],[7,2],[5,0],[2,1],[2,3],[0,1],[2,6],[3,7],[1,0],[0,9],[-1,7],[-1,6],[2,5],[-4,9],[-6,6],[-24,16],[-4,1],[-4,2],[-5,9],[-2,1],[-57,0],[-29,9],[-7,0],[-24,-6],[-11,-7],[-10,0],[-8,-7],[-7,3],[-13,12],[0,2],[1,4],[1,3],[-5,3],[1,4],[8,9],[9,17],[8,8],[19,32],[2,6],[2,6],[0,5],[-2,7],[-11,17],[-1,3],[-19,-1],[-10,-4],[-9,-7],[-5,-10],[-4,-12],[-5,-7],[-9,3],[-10,6],[-9,2],[-9,-4],[-9,-6],[-6,-7],[-3,-2],[-5,0],[-2,2],[-4,5],[-2,2],[-3,1],[-15,-3],[-8,-6],[-6,-9],[-6,-12],[-3,-12],[-2,-6],[-4,-2],[-6,-1],[-4,-4],[-9,-11],[2,-9],[3,-7],[13,-21],[1,-2],[0,-2],[1,-2],[2,-4],[0,-3],[-1,-2],[-1,-2],[-1,-4],[-3,-13],[-4,-7],[-2,-4],[-1,-4],[3,-8],[9,-13],[4,-7],[-4,0],[-2,-1],[-1,-3],[1,-4],[-3,-17],[-2,-5],[-4,-4],[-5,2],[-9,8],[-8,0],[-8,-2],[-8,-6],[-31,-30],[-3,-5],[-4,-9],[-3,-3],[-4,-2],[-13,-5],[-4,-3],[-15,-30],[-7,-7],[-9,1],[-18,11],[-12,-4],[-9,4],[-4,1],[-3,-3],[-1,-2],[-1,-4],[-2,-6],[-3,-5],[-11,-9],[-11,-13],[-4,-3],[0,-17],[-13,-28],[2,-12],[-10,-39],[-4,-6],[-7,-5],[-20,-35],[-8,-5],[-17,-4],[-11,-14],[-10,-3],[-8,-10],[-47,-36],[-39,-22],[-49,-20],[-51,0],[-15,4],[-21,26],[-2,7],[-3,16],[-9,18],[-1,5],[-1,10],[-1,4],[1,11],[-1,30],[-2,7],[1,10],[-1,27],[0,12],[4,11],[5,13],[4,13],[-1,12],[2,0],[-3,8],[-3,12],[-1,11],[2,5],[2,3],[5,12],[2,3],[-1,7],[-3,12],[0,6],[-4,12],[-8,5],[-10,4],[-7,5],[-2,10],[0,11],[1,11],[-1,9],[0,4],[-14,-25],[-8,-11],[-7,-5],[-37,-4],[-73,-28],[-19,-3],[-59,15],[-38,-4],[-8,-4],[-8,-10],[-14,-23],[-17,-16],[-18,-8],[-55,-4],[-16,5],[-15,13],[-11,22],[-2,22],[4,22],[9,20],[62,99],[16,19],[83,40],[10,11],[19,4],[21,18],[19,12],[27,3],[9,5],[7,10],[3,12],[-1,12],[-3,12],[-4,10],[-6,7],[-18,15],[-5,9],[0,5],[2,5],[2,5],[2,5],[-7,3],[-5,5],[-4,7],[-3,9],[0,8],[-1,7],[-2,7],[-1,7],[1,10],[2,6],[3,6],[3,10],[-9,7],[-8,9],[4,10],[1,12],[1,42],[-1,8],[-9,22],[10,14],[9,18],[30,91],[2,5],[3,2],[8,-1],[4,3],[3,6],[-6,4],[-2,3],[-2,5],[7,3],[-1,7],[-8,14],[7,5],[6,5],[3,7],[0,12],[-4,9],[-12,10],[-3,9],[0,10],[2,12],[2,11],[3,7],[5,9],[6,7],[4,8],[2,11],[0,41],[0,10],[-3,14],[0,8],[-2,10],[-3,9],[-1,10],[3,12],[13,24],[5,6],[-3,7],[-9,4],[-3,6],[0,6],[2,8],[2,7],[2,5],[3,9],[4,41],[6,28],[5,15],[10,12],[1,12],[-1,22],[11,28],[14,31],[59,59],[32,28],[19,6],[15,2],[7,-26],[-8,-13],[-4,-12],[5,-11],[0,-14]],[[31399,89554],[11,-13],[-2,-15],[-9,1],[-7,13],[-19,6],[-9,-6],[-5,-9],[-6,12],[-6,10],[8,7],[19,1],[25,-7]],[[26385,89561],[3,-1],[13,5],[7,0],[9,-15],[11,-14],[-2,-2],[-3,-2],[-2,-4],[-2,-4],[17,-19],[5,-7],[5,-6],[6,-4],[4,-5],[-1,-8],[9,-11],[4,-6],[-1,-7],[1,-9],[3,-7],[12,-28],[2,-7],[3,-8],[2,-8],[2,-4],[3,-3],[5,-3],[2,-4],[0,-2],[-3,-5],[0,-1],[1,-2],[2,-4],[0,-2],[4,-9],[1,-5],[-4,-6],[-17,-19],[-7,-15],[-4,-5],[-7,-3],[-10,1],[-14,6],[-11,13],[-3,18],[-1,3],[-1,4],[0,11],[-1,7],[-4,6],[-13,11],[-34,16],[-4,4],[-5,10],[-5,6],[-5,7],[-3,12],[-4,34],[-4,10],[5,14],[-3,15],[-6,15],[-5,9],[2,6],[1,6],[0,6],[-1,7],[6,13],[7,8],[8,3],[11,0],[3,-1],[2,-2],[2,-3],[4,-4],[1,-1],[2,-1]],[[26380,89586],[-9,-1],[-8,1],[-3,5],[1,9],[5,4],[17,1],[5,-5],[-2,-5],[3,-5],[-9,-4]],[[26789,89586],[0,-3],[-3,-1],[-1,1],[-1,1],[-2,-1],[-2,-2],[-1,-1],[-3,-2],[-4,2],[-1,5],[3,3],[2,4],[0,3],[1,2],[2,4],[5,4],[2,0],[-1,-3],[1,-4],[1,-7],[2,-5]],[[26769,89628],[5,-5],[3,1],[1,2],[2,0],[5,-5],[0,-2],[-1,-3],[-4,-2],[0,-3],[-2,-3],[-4,-2],[-2,0],[-1,-2],[-2,-3],[-5,-3],[1,3],[1,5],[-3,4],[-2,5],[1,8],[2,6],[5,-1]],[[26570,89626],[45,-18],[12,-1],[5,-2],[4,-3],[3,-4],[3,-4],[5,-1],[4,4],[5,7],[4,4],[5,-5],[2,-6],[0,-8],[0,-7],[-1,-5],[5,-4],[11,-4],[31,-26],[16,-5],[9,-7],[8,-9],[6,-10],[3,-26],[-9,-17],[-25,-18],[5,-6],[16,-6],[1,-2],[2,-2],[1,-3],[3,-1],[7,0],[3,-2],[9,-11],[20,-7],[6,-4],[2,-3],[2,-4],[-2,-7],[-1,-5],[2,-2],[4,2],[7,5],[5,2],[50,0],[15,-4],[7,-9],[-6,-4],[-7,-6],[-2,-7],[6,-8],[-3,-4],[-3,-3],[-6,-4],[2,0],[-5,-7],[-10,-6],[-9,-3],[-5,1],[-6,9],[-6,6],[-7,5],[-7,3],[-32,0],[-8,3],[2,8],[9,17],[-9,-2],[-9,-8],[-2,-10],[9,-8],[0,-5],[-10,3],[-19,9],[-9,1],[-15,-12],[-7,0],[-3,14],[2,4],[4,1],[4,0],[3,1],[2,5],[0,4],[-1,4],[-1,5],[5,7],[10,6],[18,6],[0,4],[-11,5],[-29,-5],[11,12],[2,4],[-1,6],[-5,1],[-18,-7],[-25,-25],[-6,0],[-4,3],[-3,5],[-4,4],[-5,1],[-10,-4],[-15,4],[-4,3],[0,7],[4,6],[3,3],[2,5],[2,8],[-2,12],[-4,12],[-2,12],[2,18],[-3,5],[-5,4],[-10,4],[0,4],[1,7],[0,7],[-3,7],[-3,3],[-7,3],[-16,13],[-5,2],[-18,0],[-7,3],[-8,10],[-7,14],[-6,14],[2,0],[-2,4],[2,4],[-2,0],[1,8],[0,8],[-1,8],[0,5],[4,4],[7,0],[7,-3],[17,-13]],[[26906,89739],[-6,-4],[-3,-3],[-2,-5],[5,-2],[16,2],[3,-2],[7,-11],[5,-3],[33,11],[7,-7],[-10,-8],[-5,-7],[-9,-20],[-5,-6],[-9,-3],[-10,2],[-10,6],[-8,10],[-13,10],[-18,5],[-11,10],[5,25],[-4,0],[-2,2],[0,4],[2,6],[4,8],[3,2],[8,-1],[3,-2],[7,-13],[4,-2],[9,-2],[4,-2]],[[26131,89817],[-10,-1],[-3,7],[-2,8],[7,-1],[13,-1],[4,-4],[-1,-7],[-8,-1]],[[20031,90069],[-10,-7],[-7,2],[13,20],[5,13],[2,17],[3,16],[7,18],[8,9],[5,-12],[-1,-13],[-6,-32],[-3,-10],[-7,-9],[-9,-12]],[[20002,90122],[7,-4],[8,3],[-8,-11],[-2,-3],[-1,-2],[-2,-1],[-3,1],[-1,-1],[0,-3],[0,-3],[0,-2],[-6,-5],[-4,-1],[-4,5],[-1,12],[-12,26],[0,5],[0,11],[-2,12],[-3,9],[4,-7],[6,-7],[4,-7],[1,-8],[4,-4],[15,-15]],[[32664,90259],[10,-13],[-10,-4],[-51,-37],[-8,-11],[-8,-15],[-6,-4],[-14,5],[-5,-4],[-1,-7],[0,-6],[-1,-4],[-7,-2],[-10,3],[-26,26],[22,-3],[5,3],[0,3],[0,15],[1,5],[4,1],[13,1],[6,2],[4,6],[2,9],[3,4],[15,0],[5,2],[-3,6],[-6,5],[-2,6],[4,3],[4,1],[10,0],[4,1],[9,6],[5,1],[26,-1],[6,-3]],[[20171,90198],[-37,-1],[-7,3],[-7,10],[-13,36],[-3,14],[0,9],[4,3],[8,-5],[6,-9],[40,-40],[20,-4],[7,-4],[-7,-9],[-11,-3]],[[32337,90351],[-2,-19],[11,1],[5,3],[5,4],[5,8],[3,2],[3,0],[25,-17],[8,-10],[-14,-12],[-14,-3],[-86,3],[-18,9],[3,2],[11,9],[9,6],[18,16],[5,3],[10,3],[9,-1],[4,-7]],[[20031,90389],[-3,-11],[-8,-10],[-3,-8],[5,-6],[3,-10],[1,-8],[-7,-4],[-6,3],[-17,25],[1,2],[0,2],[0,2],[1,2],[-9,1],[-13,6],[-12,8],[-6,10],[4,5],[2,0],[3,-3],[8,-4],[14,-11],[-1,3],[0,2],[0,3],[3,5],[-14,8],[8,11],[22,7],[7,10],[-6,4],[8,1],[6,3],[5,-1],[6,-11],[-2,-9],[0,-18],[0,-9]],[[19890,90476],[9,-3],[4,3],[2,3],[3,3],[5,0],[3,-2],[2,-3],[2,-5],[0,-7],[-4,-5],[0,-6],[1,-7],[-1,-6],[-3,-4],[-19,-12],[-11,2],[-9,11],[-7,13],[-6,14],[3,0],[2,1],[2,3],[1,4],[-2,2],[-4,7],[10,6],[9,-5],[8,-7]],[[32280,90451],[-53,-3],[-10,4],[-6,10],[2,15],[1,6],[10,23],[3,8],[1,9],[-1,6],[2,5],[5,2],[4,-6],[4,-3],[9,-22],[28,-28],[10,-19],[-9,-7]],[[20020,90478],[1,-5],[-3,-7],[-5,-1],[-5,4],[-2,7],[-4,-3],[-16,-2],[-6,-3],[0,-5],[3,-3],[5,-4],[2,-6],[0,-3],[-1,-2],[-6,-12],[-7,-7],[-6,-1],[-2,10],[-1,10],[-3,6],[-2,4],[-2,7],[2,12],[5,4],[7,1],[5,3],[-9,6],[-3,5],[-3,9],[-1,9],[0,7],[1,12],[2,13],[3,5],[4,1],[20,-6],[6,-4],[5,-9],[6,-28],[3,-4],[2,-4],[3,-7],[2,-9]],[[22962,90579],[1,-20],[-1,-8],[-3,-4],[-6,-3],[-18,-17],[-24,-9],[-5,2],[-4,10],[0,7],[2,7],[5,7],[-5,5],[-5,3],[9,3],[19,-2],[8,7],[5,9],[6,7],[7,2],[9,-6]],[[19702,90628],[9,-12],[-2,0],[-1,-1],[-1,-2],[0,-1],[-23,-9],[-12,1],[-9,12],[26,12],[13,0]],[[18295,90674],[14,-3],[31,5],[14,-7],[-12,1],[-6,-1],[-5,-4],[-64,4],[-4,1],[-8,6],[-4,1],[0,4],[11,4],[11,0],[22,-11]],[[18532,90704],[10,-11],[-6,-5],[-7,-3],[-65,-7],[-21,7],[6,4],[7,2],[38,-6],[6,4],[-3,3],[-3,1],[-4,0],[-3,0],[0,4],[29,7],[16,0]],[[19158,90659],[-12,-4],[-4,6],[6,8],[33,20],[29,25],[10,3],[0,-2],[-1,-2],[-1,-4],[-5,-6],[-7,-20],[-6,-6],[-20,-4],[-22,-14]],[[18596,90693],[-19,-3],[-9,4],[4,9],[37,6],[17,2],[17,6],[19,5],[15,-3],[-15,-8],[-14,-2],[-8,-11],[-12,-5],[-32,0]],[[19981,90681],[-7,-9],[-8,-3],[-19,4],[-11,-3],[-5,1],[-3,6],[5,3],[1,5],[-1,7],[1,7],[4,7],[4,4],[9,7],[20,11],[10,-2],[4,-13],[-1,-18],[-3,-14]],[[19677,90729],[32,-16],[-6,10],[-2,3],[5,0],[12,-4],[2,1],[3,5],[1,1],[3,0],[13,-6],[9,-8],[5,-2],[0,-2],[-7,-18],[8,-1],[2,-11],[-3,-11],[-7,-5],[-9,2],[-55,33],[-12,15],[-4,22],[10,-8]],[[22509,90782],[0,-17],[-1,-8],[-1,-7],[3,-1],[9,-7],[-6,-11],[-8,-1],[-8,5],[-6,9],[-2,5],[-2,7],[-2,4],[-7,10],[-1,4],[8,-3],[17,15],[7,-4]],[[19629,90768],[5,-10],[2,-13],[-2,-14],[-7,-2],[-11,5],[-40,32],[-6,8],[5,-2],[6,-4],[6,-2],[4,4],[0,7],[-3,6],[-4,5],[-3,3],[3,6],[4,2],[9,-1],[7,-4],[3,-4],[1,-6],[2,-6],[4,-3],[9,-1],[6,-6]],[[19423,90775],[-8,-2],[-15,1],[-6,-3],[-7,-5],[-7,-3],[-8,3],[12,12],[14,11],[16,7],[13,2],[13,6],[13,11],[13,8],[13,-4],[0,-3],[-1,-2],[-10,-21],[-13,-6],[-14,-1],[-18,-11]],[[18677,90826],[-8,-9],[-10,7],[-15,0],[-9,2],[3,9],[3,8],[10,1],[5,-3],[25,-1],[8,-7],[-12,-7]],[[29367,90786],[6,-8],[26,4],[10,-2],[10,-7],[47,-13],[18,-13],[8,-3],[7,-5],[4,-2],[3,2],[8,8],[4,3],[5,0],[16,-4],[15,4],[23,-4],[21,-10],[9,-14],[-5,-16],[0,-5],[0,-6],[3,-7],[2,-5],[3,-2],[1,-3],[0,-7],[-2,-12],[2,-4],[9,-7],[2,-4],[0,-8],[-3,-12],[-5,-11],[-6,-5],[-138,0],[-138,1],[-41,19],[-13,12],[-12,15],[-31,54],[-5,10],[-2,12],[1,27],[2,11],[3,9],[7,6],[21,6],[50,-8],[4,0],[4,3],[3,6],[-1,4],[1,4],[0,3],[2,2],[5,6],[2,0],[5,6],[7,25],[6,6],[8,-3],[16,-17],[9,-4],[2,-3],[-1,-5],[-1,-6],[-7,-5],[-4,-5],[-3,-6],[-2,-7]],[[19560,90880],[-3,-10],[-7,-1],[-6,1],[-6,-3],[-3,-7],[-1,-6],[-1,-5],[-5,-6],[-23,-18],[-13,-3],[-8,13],[20,12],[39,37],[21,4],[-2,-4],[-2,-4]],[[31599,90881],[-6,-9],[-2,-13],[3,-14],[-3,-9],[-13,-1],[-73,16],[-11,-1],[-5,2],[-4,5],[-2,7],[0,4],[4,3],[5,1],[9,-2],[7,-4],[6,1],[7,11],[7,7],[11,1],[32,-7],[4,1],[3,4],[3,7],[3,6],[0,3],[18,4],[9,0],[4,-8],[-1,-5],[-8,-3],[0,-4],[-7,-3]],[[26007,90703],[-2,-6],[-9,-49],[-14,-31],[-4,-5],[-9,-5],[-16,-22],[-8,-6],[-12,1],[-11,3],[-4,4],[-4,10],[-3,5],[-11,7],[-22,8],[-9,11],[-4,7],[-10,23],[-2,9],[-1,7],[-3,11],[-1,6],[-1,2],[-1,1],[0,2],[1,3],[2,4],[3,-1],[2,-1],[3,0],[2,3],[2,7],[2,2],[3,1],[4,1],[2,2],[3,3],[1,6],[2,9],[0,1],[-3,17],[-7,7],[-18,6],[-8,7],[-5,7],[0,10],[4,14],[3,4],[14,11],[3,3],[0,8],[-4,13],[5,13],[19,19],[8,11],[6,13],[8,11],[9,9],[8,5],[8,0],[23,-12],[20,-16],[20,-26],[4,-3],[3,-4],[-2,-8],[-6,-16],[0,-9],[0,-32],[1,-10],[5,-10],[3,-12],[3,-12],[5,-38],[0,-13]],[[18978,90874],[-13,-3],[-12,5],[-4,16],[3,7],[6,4],[9,5],[0,3],[0,4],[-1,4],[2,1],[16,0],[36,6],[8,-6],[-2,-3],[-2,-1],[-10,0],[-14,-4],[-5,-4],[-3,-8],[-2,-13],[-3,-7],[-9,-6]],[[29000,90926],[28,-18],[100,-28],[6,-8],[5,-11],[5,-10],[3,-2],[7,-5],[3,-1],[1,-3],[6,-13],[1,-6],[0,-8],[-1,-7],[-7,-7],[-2,-8],[-3,-17],[-5,-14],[-20,-33],[-5,-15],[2,-8],[5,-9],[5,-34],[6,-11],[8,-9],[6,-9],[-5,-24],[-1,-27],[2,-27],[4,-24],[2,-5],[2,-1],[0,-2],[0,-8],[-1,-6],[-6,-14],[-3,-19],[-5,-11],[-15,-28],[-13,-15],[-6,-10],[-6,-7],[-19,-6],[-8,-5],[0,-2],[0,-4],[-1,-4],[-1,-3],[-2,-1],[-3,-1],[-2,-2],[-3,-3],[-5,-11],[-1,-2],[-33,2],[-10,-6],[-2,-5],[-4,-11],[-3,-4],[-5,-4],[-26,-2],[-56,-29],[-8,-2],[-47,4],[-16,-4],[-27,9],[-9,-3],[-17,-11],[-8,-3],[-48,4],[-17,-10],[-9,-2],[-97,9],[-11,9],[-3,4],[-8,6],[-4,7],[-11,22],[-15,49],[2,0],[-5,11],[-6,6],[-7,5],[-7,6],[3,12],[1,9],[-1,9],[-5,11],[6,3],[3,4],[1,5],[-1,5],[-6,16],[-4,9],[-16,55],[-1,12],[2,10],[4,10],[16,56],[9,21],[64,114],[20,28],[8,19],[1,6],[2,3],[6,5],[33,45],[11,12],[109,43],[7,0],[6,-2],[-2,-9],[8,-8],[13,-3],[28,0],[9,4],[16,14],[22,9],[87,-18]],[[28053,90845],[-10,-6],[-15,6],[-14,13],[-10,14],[2,4],[-3,10],[-1,13],[1,13],[2,16],[-1,1],[1,2],[1,6],[6,7],[3,2],[57,4],[3,-2],[0,-2],[4,-10],[2,-4],[21,-14],[6,-9],[-5,-19],[-12,-13],[-27,-16],[-11,-16]],[[22197,90912],[-9,-7],[-11,6],[-20,21],[9,2],[13,6],[9,10],[1,15],[2,1],[2,-1],[2,-2],[2,-2],[3,-6],[0,-5],[-2,-4],[-1,-6],[0,-22],[0,-6]],[[27190,90956],[-1,-5],[2,-2],[4,-1],[21,2],[6,-2],[0,-3],[-1,-2],[-12,-15],[-5,-5],[-5,-1],[-19,16],[-30,6],[-25,12],[6,8],[20,-9],[8,1],[-1,3],[-3,4],[-1,2],[0,4],[19,0],[10,-4],[7,-9]],[[29396,90887],[-7,-1],[-6,2],[-10,12],[-4,15],[3,12],[12,1],[0,4],[-22,13],[-11,9],[-9,17],[-7,12],[-2,8],[0,10],[3,8],[4,5],[4,3],[11,1],[6,-3],[14,-12],[22,-26],[14,-24],[10,-9],[1,-7],[-4,-11],[-4,-5],[-5,-4],[-4,-6],[-4,-19],[-5,-5]],[[19250,91030],[-7,-1],[-2,1],[-47,-11],[-50,3],[-4,3],[5,6],[12,11],[55,24],[10,-1],[12,-7],[11,-13],[5,-15]],[[19271,91078],[-2,-4],[-1,-1],[-1,-2],[0,-1],[-2,0],[0,-4],[35,0],[-9,-13],[-17,-3],[-19,2],[-12,6],[-4,4],[-4,7],[-2,7],[3,2],[17,-2],[9,1],[7,6],[2,-5]],[[20964,90979],[-35,-3],[-17,10],[-16,5],[-9,8],[-16,6],[-10,6],[-29,31],[-10,17],[-6,7],[-7,0],[27,17],[28,5],[58,-5],[8,-7],[21,-7],[15,-17],[9,-6],[3,-2],[3,-3],[4,-9],[7,-28],[-10,-17],[-18,-8]],[[18399,91094],[-9,-9],[-48,9],[2,5],[-2,4],[4,3],[3,2],[30,-4],[20,-10]],[[28170,91113],[6,-2],[21,1],[7,-5],[0,-5],[0,-1],[0,-2],[0,-5],[-2,-3],[-1,-6],[0,-7],[-2,-8],[-6,-7],[-7,0],[-35,11],[-4,-6],[-2,-8],[-4,-5],[-5,-3],[-4,-2],[7,-3],[19,-2],[4,-5],[-2,-8],[-7,-6],[-25,-18],[-13,-4],[-13,1],[-14,4],[4,7],[2,2],[-7,4],[-24,0],[4,4],[3,5],[1,6],[-2,5],[4,7],[4,0],[5,-2],[4,-1],[5,4],[8,13],[4,3],[24,1],[11,6],[9,14],[-6,8],[-8,4],[-8,1],[-8,3],[2,4],[-36,20],[2,2],[2,1],[5,1],[7,4],[47,-5],[7,-3],[17,-14]],[[29301,91074],[-6,-5],[-70,4],[-8,3],[-8,7],[-3,6],[-10,22],[18,21],[10,8],[30,-7],[11,-9],[-1,-15],[0,-7],[7,-4],[14,-4],[3,-2],[13,-18]],[[18320,91112],[-6,-5],[-11,5],[-15,25],[-8,7],[3,3],[4,0],[3,-3],[3,-5],[20,-17],[7,-10]],[[29193,91068],[10,-10],[12,-16],[10,-8],[4,-6],[1,-7],[-3,-8],[-4,-5],[-4,-3],[-14,2],[-7,-2],[-4,-8],[1,-7],[5,-2],[11,1],[12,1],[3,-2],[-2,-7],[-4,-5],[-5,-4],[-7,-3],[-4,0],[0,-4],[4,-1],[6,-2],[6,-5],[1,-9],[-3,-4],[-9,3],[-3,-3],[7,-3],[3,-3],[3,-6],[-9,-1],[-3,1],[-3,4],[-3,5],[-2,3],[-26,-5],[-6,1],[-2,5],[-1,14],[-2,10],[-5,6],[-62,31],[-34,30],[-9,14],[5,16],[-2,0],[2,9],[0,8],[-2,18],[2,10],[17,20],[2,7],[4,15],[3,3],[5,4],[6,7],[6,2],[5,-10],[5,-3],[9,-7],[42,-5],[8,-8],[4,-16],[4,-18],[6,-11],[2,-12],[8,-11]],[[31001,91220],[21,-8],[32,0],[55,-16],[86,-30],[9,-7],[0,-3],[-69,5],[-76,33],[-71,11],[-5,5],[2,10],[3,4],[4,1],[3,-1],[6,-4]],[[21728,91207],[6,0],[7,1],[7,-1],[3,-11],[0,-8],[-1,-15],[-1,-5],[1,-7],[1,-7],[4,-15],[-4,-12],[-2,-5],[-3,-3],[-7,-1],[-24,9],[5,-5],[2,-5],[0,-5],[-5,-15],[-1,-8],[-2,-6],[-4,-5],[-6,1],[-11,12],[-5,3],[-7,2],[-13,10],[-8,1],[-8,-4],[-3,0],[-4,1],[-6,6],[-4,2],[-4,5],[-1,2],[-5,1],[-11,-1],[-6,2],[-12,8],[-10,4],[-17,14],[11,1],[14,6],[14,10],[14,15],[24,12],[3,2],[1,3],[1,6],[0,4],[0,4],[-1,2],[10,16],[12,1],[56,-22]],[[18236,91257],[-9,-2],[-10,3],[-9,5],[-7,6],[4,3],[3,1],[3,0],[24,-3],[6,-5],[-5,-8]],[[22179,91287],[8,-10],[-15,-8],[4,-9],[-2,-8],[-4,-5],[-5,-2],[1,-7],[5,-9],[1,-5],[1,-8],[-2,0],[-3,1],[-3,-1],[-4,-6],[0,-4],[1,-4],[-1,-6],[-5,-2],[-14,4],[-6,-2],[-6,-9],[-4,-10],[-5,-9],[-8,-4],[-7,2],[-8,7],[-13,19],[13,8],[-3,10],[-4,4],[-5,0],[-5,-2],[-10,-6],[-5,-5],[1,-5],[-6,-10],[-7,2],[-5,10],[-2,14],[0,46],[2,27],[2,2],[4,-1],[3,3],[3,13],[-3,10],[-11,18],[14,10],[3,4],[2,11],[7,2],[37,-7],[12,-6],[10,-10],[-1,-14],[5,-8],[8,-6],[14,-16],[21,-3]],[[22220,91302],[-4,-5],[-4,0],[-36,17],[-9,8],[-8,10],[-6,14],[-2,16],[2,11],[3,10],[4,7],[5,5],[9,6],[3,4],[3,9],[1,3],[3,3],[1,-7],[3,-4],[7,-6],[6,-2],[7,-5],[4,-7],[-2,-6],[3,-7],[8,-12],[3,-5],[2,-9],[0,-7],[-4,-34],[-2,-7]],[[24930,91405],[5,-2],[6,3],[4,7],[5,4],[7,-2],[-2,-4],[-1,-2],[-2,-1],[-3,-1],[0,-4],[3,-1],[3,-2],[2,-2],[2,-3],[1,-9],[4,-15],[0,-4],[-3,-5],[-4,1],[-3,5],[1,11],[-14,-5],[-6,0],[-6,7],[-4,10],[-2,9],[0,9],[3,11],[3,-5],[0,-5],[1,-5]],[[12204,91409],[12,-12],[4,-11],[-9,-2],[-13,2],[-9,-7],[-13,5],[-16,11],[0,9],[13,-3],[-1,11],[-12,13],[-7,9],[10,5],[19,-11],[22,-19]],[[21760,91385],[-5,-1],[-6,7],[6,11],[17,9],[4,11],[-4,8],[-20,1],[-8,8],[9,19],[17,7],[18,-3],[11,-10],[0,-2],[-1,-2],[0,-2],[-1,-2],[7,-7],[0,-13],[-6,-13],[-7,-12],[-4,-3],[-6,-3],[-11,-2],[-5,-2],[-5,-4]],[[24839,91547],[8,-12],[3,-6],[4,-12],[3,-6],[4,-5],[4,-4],[4,-4],[2,-10],[-3,-1],[-3,-2],[-2,-4],[-1,-5],[2,3],[3,1],[2,-1],[2,-3],[2,-5],[-1,-3],[-2,-1],[-6,-7],[-5,-2],[-9,-2],[-9,-4],[-5,-1],[-4,3],[-2,6],[-1,6],[-2,6],[-3,4],[2,3],[1,1],[0,4],[-5,-1],[-5,-6],[-3,-6],[-5,-3],[-1,3],[3,7],[4,7],[5,3],[0,4],[-9,-1],[-3,2],[-1,7],[1,4],[10,13],[-8,0],[0,4],[6,8],[2,11],[-4,4],[-7,-9],[-10,-22],[-6,-9],[-7,-8],[0,31],[2,10],[4,7],[5,5],[22,9],[11,-3],[11,-8]],[[28206,91566],[13,-4],[27,0],[11,-11],[9,-24],[8,-15],[-1,-5],[-6,-3],[-7,-4],[-9,-12],[-7,-14],[-3,-12],[-3,-7],[-5,-5],[-5,0],[-3,4],[-2,7],[-6,3],[-6,2],[-5,2],[-4,-6],[-1,-8],[1,-20],[-3,-6],[-17,-11],[-6,-6],[4,-18],[-15,-20],[-31,-31],[-1,-5],[0,-13],[-1,-6],[-4,-7],[-17,-7],[-3,-5],[-2,-4],[-1,-5],[-2,-6],[-5,-6],[-7,-3],[-17,-3],[-9,-6],[-32,-5],[-18,-6],[-5,-4],[-14,-16],[-4,-2],[-11,0],[-6,2],[-16,10],[-11,4],[-3,2],[-1,7],[1,7],[1,6],[1,6],[-2,4],[-5,3],[-2,5],[15,9],[12,17],[23,54],[5,8],[6,6],[7,4],[5,1],[11,-1],[6,1],[10,6],[5,1],[19,-1],[5,3],[10,12],[3,3],[10,5],[3,3],[3,7],[0,7],[-1,11],[1,7],[4,8],[21,24],[10,8],[19,-7],[10,3],[-7,11],[-17,13],[-6,13],[2,7],[4,3],[9,2],[5,3],[14,13],[6,3],[17,1],[13,8],[6,1]],[[12355,91574],[17,-8],[20,3],[10,-1],[9,-11],[-6,-9],[-2,-3],[6,-2],[13,4],[2,-8],[-1,-10],[-4,-9],[-5,-4],[-10,14],[-8,6],[-54,25],[5,13],[8,0]],[[27753,91549],[-12,-2],[-14,10],[-7,17],[2,12],[15,-16],[6,-5],[15,-5],[-5,-11]],[[27302,91586],[19,-8],[26,1],[12,-6],[2,-20],[4,-15],[-23,-2],[-29,6],[-8,9],[3,9],[-25,2],[4,-13],[-18,-13],[-14,12],[-6,18],[2,13],[16,10],[35,-3]],[[24949,91566],[-4,-5],[4,1],[4,-1],[3,-2],[3,-6],[-2,-7],[-2,-7],[-4,-4],[-10,-4],[-4,-6],[-3,-8],[-4,-8],[0,-12],[-6,-10],[-7,-4],[-4,5],[-2,0],[-2,-14],[-8,4],[-15,18],[0,4],[4,7],[-2,3],[-6,2],[-5,1],[-5,3],[-8,11],[-6,2],[1,8],[-1,6],[1,7],[5,7],[27,14],[5,5],[1,6],[3,3],[9,1],[3,1],[2,2],[2,1],[3,0],[3,-2],[8,-10],[0,-4],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[7,0],[4,5],[-1,7],[-6,8],[3,2],[7,8],[4,2],[-2,-8],[0,-3],[1,-2],[1,-2],[5,-5],[1,-5],[-1,-7]],[[28598,91581],[19,-7],[54,0],[7,3],[6,6],[5,1],[7,-8],[11,-11],[2,-6],[-1,-7],[-1,-6],[0,-6],[2,-7],[-7,-5],[-2,-4],[1,-7],[-9,-3],[-16,-14],[-8,-4],[-6,-3],[-12,-17],[-7,-4],[-7,-2],[-6,-6],[-4,-8],[1,-12],[4,-10],[7,-4],[6,-2],[6,-4],[-4,-6],[-4,-4],[-9,-7],[3,-6],[2,-2],[0,-4],[-8,3],[-4,4],[-3,5],[0,9],[-10,2],[-22,-3],[-18,-11],[-6,-2],[-30,17],[-15,21],[-13,25],[-6,25],[2,11],[8,15],[3,9],[1,12],[-2,10],[-3,8],[-1,8],[9,16],[21,11],[38,8],[9,-10],[10,-7]],[[12304,91634],[32,-25],[-1,-11],[-12,2],[-20,13],[-16,5],[-21,0],[0,8],[15,6],[23,2]],[[21877,91658],[1,-1],[5,2],[3,2],[7,8],[3,2],[-2,-4],[3,-8],[3,-3],[22,-5],[5,-4],[-4,-5],[0,-4],[1,-2],[4,-2],[5,-5],[11,-6],[5,-5],[5,-3],[2,-3],[-3,-4],[-2,-3],[-2,-4],[-2,-2],[-3,-1],[-6,2],[-5,4],[-6,1],[-6,-7],[-3,-6],[-2,-6],[0,-7],[1,-5],[-5,0],[-8,-6],[-4,-2],[-4,2],[-4,4],[-3,1],[-3,-7],[2,-4],[-1,-4],[-3,-3],[-3,-2],[-4,1],[-11,7],[5,2],[5,3],[2,6],[-1,10],[-4,7],[-10,2],[-3,7],[11,-4],[8,1],[7,8],[6,15],[-17,12],[-6,0],[2,-5],[0,-3],[-5,0],[-3,3],[-9,12],[-14,14],[-2,0],[1,2],[5,16],[2,3],[3,3],[9,3],[9,1],[5,-3],[1,-3],[0,-3],[0,-3],[4,-9]],[[23154,91664],[2,-1],[26,5],[44,-2],[5,-2],[4,-4],[4,-7],[5,-6],[4,1],[9,7],[18,4],[6,12],[5,-1],[6,-4],[3,-7],[0,-9],[3,-9],[4,-9],[3,-10],[0,-13],[-2,-10],[-5,-8],[-7,-5],[4,-9],[2,-5],[0,-6],[-1,-7],[-3,-5],[-2,-5],[2,-8],[-24,6],[-12,7],[-11,12],[-15,26],[-5,7],[-25,11],[-15,2],[-7,4],[-16,15],[-11,17],[-25,27],[0,4],[11,1],[3,-1],[2,-2],[5,-5],[3,-2],[3,-6]],[[31303,91663],[-13,-16],[-39,2],[-16,-7],[5,0],[9,-6],[4,-2],[1,-1],[-2,-3],[-4,-4],[-20,9],[-14,-5],[-13,6],[-15,2],[-7,4],[3,3],[0,4],[1,3],[0,3],[4,3],[3,0],[3,-2],[4,-1],[7,2],[14,8],[15,3],[4,2],[2,3],[2,4],[2,11],[1,3],[3,1],[3,0],[2,-2],[2,-5],[1,-2],[12,0],[-2,0],[13,0],[6,-3],[8,-11],[7,-3],[4,-3]],[[12818,91692],[1,-1],[11,0],[-5,-7],[-28,-5],[0,-4],[12,-4],[-12,-4],[-5,0],[-19,8],[0,2],[0,2],[1,4],[4,1],[6,6],[21,14],[4,-1],[7,-4],[0,-1],[1,-3],[1,-3]],[[23422,91693],[3,0],[4,2],[3,2],[4,3],[3,-2],[3,-3],[24,-20],[8,-4],[31,-29],[3,-5],[0,-11],[-1,-6],[-5,-15],[-1,-7],[-2,-13],[0,-17],[-3,-7],[-13,-4],[-6,-6],[-6,-14],[-3,-6],[-5,-2],[-50,-6],[-9,10],[2,1],[7,3],[-4,14],[2,10],[6,6],[10,3],[2,5],[-8,28],[-2,11],[1,4],[2,3],[2,4],[1,7],[-1,5],[-2,6],[-4,10],[-8,9],[-11,5],[-12,0],[-8,-4],[6,-30],[4,-13],[5,-10],[-21,-40],[-6,-17],[2,0],[0,-3],[0,-1],[0,-2],[2,-2],[-6,-9],[-10,0],[-12,4],[-8,5],[1,6],[-1,10],[0,5],[3,4],[11,12],[-11,9],[-5,7],[-2,10],[0,6],[-1,2],[0,2],[1,4],[4,6],[8,5],[3,6],[-1,6],[1,7],[8,31],[4,5],[6,3],[13,0],[4,2],[2,3],[5,11],[7,2],[21,-3],[7,-3],[-4,-8],[3,-2]],[[11425,91683],[-10,-8],[-23,5],[-11,-1],[-6,-5],[-11,-17],[-6,-7],[-8,-1],[-9,4],[-10,7],[-7,7],[-3,4],[-2,5],[-3,3],[-3,-2],[-4,-4],[-5,-2],[-4,0],[-4,0],[5,8],[27,28],[15,9],[14,4],[9,-3],[19,-11],[17,-4],[9,-4],[8,-6],[6,-9]],[[12356,91671],[-8,0],[-8,4],[-5,9],[3,9],[13,17],[7,6],[10,3],[20,1],[-2,-7],[-15,-30],[-7,-7],[-8,-5]],[[31144,91753],[3,-5],[7,-7],[8,-6],[7,-2],[9,-1],[-1,-5],[4,-2],[5,-2],[1,-8],[-3,-6],[-20,-12],[-16,-19],[-9,-15],[-3,-14],[-16,-3],[-95,37],[6,4],[19,4],[-2,0],[5,3],[9,11],[10,5],[18,20],[17,4],[35,-17],[17,7],[-34,11],[-7,9],[1,7],[4,2],[11,-1],[7,2],[3,-1]],[[21633,91730],[-11,-10],[-14,4],[-7,14],[0,12],[0,8],[3,4],[19,6],[5,-2],[3,-10],[2,-26]],[[28341,91738],[8,-23],[-4,-8],[-6,-3],[-11,-5],[-9,-7],[-4,-4],[-3,-7],[-5,-6],[-4,-2],[-10,2],[-40,-12],[-22,-17],[-21,-8],[-21,-18],[-8,0],[-10,10],[-10,5],[-10,-2],[-33,-26],[-14,-7],[-9,4],[-6,8],[-1,5],[3,7],[5,7],[45,34],[5,5],[16,30],[10,10],[4,5],[4,-1],[19,6],[19,-7],[5,2],[3,8],[-1,7],[-2,6],[0,8],[5,6],[7,-2],[13,-8],[-5,-8],[7,-7],[11,-2],[8,9],[-1,8],[-8,18],[-2,10],[16,1],[5,10],[5,1],[6,-1],[4,-2],[4,-7],[4,-1],[9,-1],[15,-10],[10,-12],[5,-8]],[[27868,91818],[39,-13],[6,6],[16,-4],[13,-13],[-2,-22],[8,0],[6,-3],[5,-6],[5,-11],[-5,-8],[-52,-37],[-22,-7],[-67,-5],[-12,-4],[-6,0],[-5,2],[-7,13],[-2,1],[-15,8],[-8,2],[-7,-7],[4,-11],[26,-39],[9,-10],[-7,-17],[-10,-4],[-28,7],[-14,8],[-18,4],[-5,5],[-2,10],[3,12],[4,13],[1,11],[-8,4],[-6,-6],[-13,-28],[-7,-6],[-1,9],[-1,10],[-1,9],[-2,6],[-3,4],[-11,2],[-4,3],[-6,9],[-17,13],[-18,3],[-55,-3],[-10,5],[-5,11],[3,6],[14,10],[5,6],[1,5],[1,3],[1,3],[2,3],[19,-3],[17,-13],[15,-1],[4,-3],[3,3],[4,0],[5,-2],[3,-5],[2,-4],[1,-11],[1,-5],[7,-8],[7,1],[1,8],[-7,11],[3,3],[7,2],[3,3],[-9,1],[-8,4],[-7,6],[-6,10],[-3,6],[-3,9],[1,7],[7,2],[8,5],[11,2],[19,-3],[1,-9],[9,2],[20,11],[7,-2],[10,-6],[10,-9],[3,-10],[-1,-4],[-6,-7],[-2,-5],[2,-5],[3,1],[16,16],[4,1],[26,-14],[30,9],[9,9],[5,2],[8,-5],[5,-1],[4,3],[0,3],[-1,6],[0,4],[0,3],[1,2],[2,1],[1,2],[2,1],[6,0],[3,1],[1,2],[1,8],[1,2],[5,1]],[[27085,91784],[-18,-11],[-38,10],[-34,13],[-10,7],[3,8],[26,7],[28,4],[39,-21],[4,-17]],[[26795,91798],[-4,-2],[-11,1],[-13,-8],[-12,0],[-5,-1],[-4,-8],[9,-5],[4,-4],[2,-7],[-12,-3],[-12,3],[-25,13],[-9,5],[-9,9],[-5,11],[6,15],[12,8],[79,-16],[12,-8],[-3,-3]],[[24493,91822],[-4,-1],[-2,2],[-6,10],[1,3],[2,3],[1,3],[14,11],[15,2],[15,-4],[15,-9],[-8,-6],[-28,-7],[-15,-7]],[[24596,91828],[-7,-8],[-7,-3],[9,-11],[2,-6],[0,-7],[-3,-9],[-5,-8],[-11,-11],[-7,-1],[-14,10],[-7,3],[-3,1],[-9,13],[-4,3],[-13,7],[0,4],[35,14],[11,8],[5,2],[9,-3],[5,3],[2,6],[1,7],[1,7],[3,4],[5,1],[5,2],[5,1],[4,-4],[-2,-4],[-4,-3],[-7,-4],[4,-5],[-3,-9]],[[22947,91688],[4,-2],[1,7],[1,7],[11,31],[4,9],[5,6],[3,-1],[4,-3],[13,-5],[29,-33],[5,-9],[3,-12],[2,-6],[3,-2],[8,-3],[42,-45],[10,-6],[18,5],[7,-7],[15,-17],[9,-4],[17,-2],[24,-10],[8,-10],[2,-2],[5,-2],[19,-18],[25,-11],[28,-25],[10,-13],[4,-17],[-2,-7],[-8,-12],[-2,-11],[-1,-11],[-2,-8],[-3,-6],[-5,-6],[8,-11],[2,-13],[-2,-14],[-4,-14],[3,-10],[7,-8],[8,-5],[6,-2],[8,2],[1,5],[-8,16],[-2,10],[1,7],[3,8],[1,9],[-1,11],[-3,6],[-1,6],[3,9],[10,11],[2,4],[1,5],[2,6],[4,5],[2,2],[6,-3],[3,-8],[5,-19],[5,-8],[9,-11],[4,-8],[1,-3],[1,-8],[1,-5],[5,-16],[-4,-2],[-5,-5],[-4,-7],[-2,-7],[1,-6],[7,-9],[2,-7],[1,-4],[4,-5],[5,-4],[8,-3],[3,-3],[3,-7],[2,-8],[1,-14],[-1,-13],[1,-11],[5,-9],[5,-1],[4,4],[3,5],[5,2],[17,-5],[4,-3],[4,-6],[0,-4],[0,-5],[2,-5],[3,-6],[4,-2],[4,-1],[16,3],[49,37],[12,4],[11,-5],[9,-9],[4,-4],[8,-2],[5,-3],[1,-2],[2,-5],[-1,-3],[-2,-1],[-2,-1],[-3,-9],[-5,-10],[-5,-8],[-27,-24],[-7,-2],[-12,-10],[-25,-36],[-11,2],[4,16],[2,12],[-4,9],[-9,7],[-38,-14],[-6,0],[-2,5],[-5,0],[-5,-2],[-3,-5],[3,-11],[1,-7],[-4,-3],[-8,-4],[-5,-11],[-1,-14],[4,-15],[-11,-5],[-21,11],[-12,-2],[-3,-4],[-10,-16],[-5,-6],[-5,-4],[-5,-2],[-6,-1],[-8,-3],[-40,-50],[-8,-5],[-54,-15],[-11,3],[-21,11],[-22,5],[-46,23],[-18,5],[-11,8],[-10,4],[-5,4],[-4,6],[-4,7],[-4,6],[-6,3],[-12,1],[10,-20],[4,-11],[-3,-6],[-5,-1],[-10,-6],[-5,-1],[-6,1],[-17,7],[-17,2],[-19,10],[-5,0],[-5,-2],[-5,-4],[-6,-3],[-27,17],[-25,26],[-9,3],[-7,4],[-14,19],[-8,5],[-13,-1],[-44,23],[-13,3],[-5,-3],[-8,-10],[-4,-4],[-5,1],[-3,3],[-5,8],[-4,4],[-15,9],[-14,15],[-6,10],[0,9],[6,13],[5,10],[-1,8],[-10,8],[-20,11],[-12,2],[-6,-7],[2,-13],[4,-10],[1,-11],[-3,-13],[-7,-9],[-12,-4],[-12,2],[-8,9],[-5,13],[-4,4],[-16,5],[-3,-1],[-5,-5],[-2,-2],[-11,1],[-40,25],[-3,6],[-1,9],[1,9],[3,8],[4,5],[7,3],[1,3],[1,4],[0,5],[-1,4],[-2,1],[-13,6],[-17,2],[-10,7],[-3,0],[-3,-1],[-3,-3],[-1,-5],[1,-5],[1,-3],[-1,-3],[-4,-7],[-5,0],[-5,4],[-6,3],[-12,2],[-2,-3],[4,-8],[14,-16],[5,-8],[-8,-5],[-16,-3],[-8,-4],[-7,-8],[-3,-1],[-4,3],[-10,12],[-6,3],[-8,5],[-34,13],[-7,5],[-4,7],[3,9],[-5,14],[-6,11],[-16,16],[-9,6],[-4,5],[-2,7],[1,9],[4,7],[9,13],[15,27],[9,8],[11,3],[17,-4],[3,0],[3,4],[8,11],[4,2],[5,-8],[5,4],[5,-2],[5,-4],[4,-3],[6,0],[15,5],[35,-5],[11,7],[8,11],[4,5],[5,1],[25,-3],[8,2],[11,5],[10,9],[1,12],[2,0],[-3,10],[0,10],[3,10],[6,8],[7,9],[4,2],[4,-2],[9,-11],[5,-4],[5,0],[3,3],[5,10],[4,4],[5,1],[16,-1],[8,2],[4,6],[0,9],[-5,11],[-12,14],[-27,18],[-15,22],[-1,3],[1,6],[3,5],[2,5],[3,3],[4,1],[20,-8],[11,-2],[9,6],[-32,14],[-15,13],[-2,22],[6,11],[7,5],[24,-1],[26,-9],[5,-8],[3,-6],[12,-12],[6,-15],[26,-19],[16,1],[4,-2],[1,-4],[-1,-12],[4,-7],[10,0],[10,5],[6,8],[-43,31],[-11,16],[-12,22],[-3,4],[-3,2],[-8,8],[-4,2],[-10,2],[-4,3],[-4,3],[7,13],[2,6],[2,10],[1,8],[-1,14],[0,6],[5,17],[8,16],[18,24],[7,4],[14,1],[7,3],[5,5],[10,24],[12,15],[13,6],[13,0],[14,-5],[4,-5],[10,-6],[27,-6],[6,-3],[3,-5],[0,-5],[0,-5],[1,-6],[4,-6],[12,-5],[5,-3],[39,-10],[7,-6],[3,-15],[9,-9],[18,-11],[-10,-10],[-22,-1],[-10,-9],[18,-32],[11,-12]],[[22956,91870],[9,-9],[20,1],[7,-9],[-6,-11],[-7,-1],[-7,5],[-6,7],[-10,8],[-20,1],[-10,4],[-6,8],[-2,10],[2,11],[6,8],[9,2],[12,-3],[12,-6],[5,-10],[-2,-3],[-2,-4],[-4,-9]],[[25833,91996],[55,-17],[42,17],[15,-4],[4,-5],[9,-16],[7,-9],[4,-7],[2,-8],[-1,-6],[3,-3],[10,-3],[-5,-13],[-7,-6],[-76,-8],[-39,12],[-18,13],[-7,1],[-14,-12],[-7,-4],[-10,3],[-19,15],[-17,5],[-5,2],[-3,4],[0,3],[0,11],[0,4],[-7,7],[-17,8],[-4,7],[7,5],[10,3],[10,0],[7,-3],[17,-2],[27,10],[-10,7],[-3,1],[8,12],[12,-6],[20,-18]],[[15281,92017],[-1,-5],[1,0],[-6,-7],[-16,7],[-8,-4],[13,-8],[-5,-4],[-5,0],[-6,1],[-5,3],[1,10],[4,8],[6,4],[30,4],[5,-2],[-3,-1],[-2,-3],[-3,-3]],[[18617,92093],[-51,0],[-13,8],[4,0],[3,3],[2,4],[3,2],[30,-1],[22,-6],[9,-6],[-4,-3],[-5,-1]],[[22008,92077],[-7,-1],[-8,8],[-13,17],[3,2],[3,3],[1,5],[-1,6],[6,3],[10,-1],[9,-3],[5,-6],[-3,-3],[-3,-5],[-2,-4],[-2,-5],[1,-6],[2,-4],[1,-3],[-2,-3]],[[18980,92110],[-121,-7],[-57,27],[-3,6],[3,6],[7,1],[53,-9],[40,-17],[20,-4],[58,-3]],[[17615,92212],[4,-9],[-10,5],[-41,0],[-9,3],[-8,6],[-4,10],[11,0],[35,-8],[15,-2],[7,-5]],[[17709,92241],[-10,-8],[-5,-2],[-15,1],[-27,-4],[-7,1],[-5,6],[7,8],[7,3],[9,0],[8,-5],[9,0],[15,12],[9,-2],[30,-1],[9,-7],[-29,0],[-5,-2]],[[17627,92260],[9,-9],[-9,-4],[-56,-1],[-9,5],[7,4],[4,1],[4,-1],[12,6],[19,2],[19,-3]],[[17811,92248],[-17,-2],[-34,5],[16,5],[5,4],[22,5],[6,4],[6,2],[8,-2],[6,-5],[-3,-7],[-15,-9]],[[17533,92251],[-8,-5],[-26,5],[-61,-5],[-15,5],[-8,12],[18,13],[7,0],[44,-13],[39,-3],[10,-9]],[[14421,92288],[-3,-5],[-2,-2],[-3,0],[-3,3],[1,-13],[-5,-6],[-8,0],[-6,3],[-9,10],[-6,2],[-4,-9],[2,-1],[1,-4],[1,-3],[-7,-3],[-21,-13],[7,16],[17,45],[6,8],[9,0],[13,-7],[12,-11],[8,-10]],[[22031,92330],[30,-14],[8,4],[9,7],[9,1],[7,-12],[13,-12],[15,-5],[4,-3],[-4,-3],[-1,-1],[5,-6],[20,-2],[11,-7],[11,-9],[-5,-7],[-7,0],[-8,3],[-13,10],[-8,2],[-7,-1],[-7,-4],[7,-9],[15,-9],[7,-10],[0,-11],[9,-17],[7,-15],[-9,-5],[-6,3],[-12,12],[-7,5],[-30,4],[-54,32],[-7,14],[1,11],[2,13],[1,9],[-2,9],[-3,8],[-8,13],[7,2]],[[30048,92553],[2,-1],[6,0],[80,-25],[40,-1],[6,-5],[-1,-13],[-4,-8],[-10,-13],[3,-12],[-5,-8],[-9,-3],[-52,-6],[-76,-28],[-6,-5],[-8,-11],[-5,-5],[-10,-3],[-13,-2],[-11,2],[-8,8],[0,1],[1,5],[-1,6],[-1,6],[-3,4],[-3,3],[-6,3],[-6,5],[-4,6],[-8,18],[1,3],[-1,2],[0,3],[14,4],[6,-1],[7,-3],[-5,-5],[7,-4],[8,1],[8,5],[6,9],[2,9],[3,22],[3,9],[1,5],[-1,5],[-1,5],[0,4],[2,4],[43,15],[8,-3],[-2,-4],[3,-3]],[[29679,92768],[4,-2],[2,7],[1,10],[2,4],[4,2],[19,16],[5,6],[8,13],[4,2],[7,-3],[5,-4],[3,-6],[3,-7],[4,-7],[5,-5],[13,-5],[5,-6],[-11,-8],[-23,-1],[-20,-9],[-4,-4],[-1,-9],[1,-4],[4,-12],[0,-6],[0,-2],[-1,-2],[-1,-2],[1,-2],[1,-1],[4,-3],[3,-7],[2,-1],[-1,-2],[-3,-8],[-3,-4],[-7,-2],[-7,-2],[-5,2],[-4,6],[0,5],[2,4],[4,1],[-16,8],[-24,3],[-16,12],[3,33],[-9,4],[-2,4],[1,9],[-4,8],[-18,16],[1,7],[-1,4],[-2,3],[0,2],[3,7],[4,3],[50,23],[10,-3],[10,-8],[6,-9],[-2,-7],[-6,-13],[-1,-7],[-3,-8],[-13,-9],[-3,-7],[2,-10],[5,-7]],[[29798,92841],[-11,-11],[-64,17],[-13,17],[7,14],[8,10],[17,17],[53,4],[8,-3],[5,-8],[9,-26],[-19,-31]],[[23539,93010],[-14,-32],[-3,-12],[0,-9],[-6,-3],[-8,-1],[-11,-4],[-8,2],[-15,6],[6,11],[22,7],[8,11],[-5,2],[-12,-2],[-6,4],[1,2],[1,6],[-1,2],[-1,2],[-1,2],[-1,2],[8,5],[19,8],[8,0],[10,0],[5,-3],[4,-6]],[[15025,93088],[-11,-1],[-5,2],[-6,3],[-2,4],[4,3],[5,0],[15,-11]],[[29246,77119],[-8,0],[-35,6],[-5,0],[-5,-3],[-10,-10],[-16,-9],[-5,-4],[-12,-15],[-5,-3],[-15,-6],[-39,-36],[-20,-28],[-31,-45],[-34,-47],[-34,-47],[-15,-32],[-10,-19],[-11,-19],[-4,-15],[-3,-10],[-4,-8],[-8,-5],[-47,-31],[-23,-26],[-8,-15],[0,-4],[2,-14],[1,-3],[-5,-10],[-6,-5],[-31,-19],[-2,-2],[-3,-5],[-1,-5],[-1,-4],[-2,-4],[-22,-29],[-7,-11],[-12,-33],[-11,-32],[-12,-33],[-12,-32],[-12,-32],[-12,-33],[-12,-32],[-12,-33],[-1,-1],[-2,-2],[-1,-1],[-2,-2],[-2,-1],[-1,-2],[-2,-1],[-1,-2],[-64,1],[-64,0],[-65,1],[-64,0],[-64,1],[-64,0],[-64,1],[-64,0],[-18,-9],[-54,-41],[-37,-29],[-26,-20],[23,-72],[9,-39],[1,-10],[2,-53],[0,-6],[-1,-8],[-1,-5],[-2,-5],[-1,-6],[0,-8],[1,-6],[2,-5],[4,-7],[3,-6],[2,-5],[0,-5],[-2,-9],[-1,-12],[3,-7],[4,-6],[7,-9],[6,-6],[7,-4],[6,-7],[2,-10],[-3,-25],[-12,-29],[-16,-22],[-43,-32],[-42,-33],[-43,-32],[-43,-32],[-36,-28],[-6,-5],[-43,-32],[-42,-33],[-43,-32],[-36,-12],[-36,-11],[-4,-2],[-31,-10],[-36,-11],[-36,-12],[-36,-12],[-35,-11],[-36,-12],[-40,-39],[-40,-40],[-40,-39],[-40,-39],[-39,-40],[-40,-39],[-40,-39],[-40,-40],[-7,-3],[-60,-1],[-13,6],[-42,43],[-33,33],[-24,24],[-8,16],[-7,27],[-3,12],[-6,35],[-1,27],[5,41],[1,50],[2,24],[6,19],[8,19],[11,16],[27,14],[31,25],[9,12],[29,60],[14,23],[10,2],[9,6],[7,12],[7,17],[4,16],[8,43],[1,25],[2,11],[0,6],[-1,4],[-3,12],[1,10],[4,17],[1,12],[3,21],[6,19],[5,19],[-1,20],[2,20],[9,37],[9,37],[9,37],[9,37],[8,37],[9,37],[9,36],[9,37],[2,16],[1,15],[-1,6],[-13,125],[-14,124],[-13,125],[-13,124],[-14,125],[-13,124],[-14,125],[-13,124],[-4,24],[-12,23],[-47,44],[-72,68],[-50,47],[-55,52],[-32,30],[-23,22],[11,31],[12,37],[13,36],[1,9],[-4,9],[-4,9],[-5,6],[-16,25],[-13,15],[-15,2],[-28,-7],[-14,6],[-6,1],[-5,-2],[-4,-5],[-16,-24],[-5,-4],[-5,2],[-3,6],[-5,16],[-4,7],[-2,2],[-1,21],[-10,12],[-9,18],[-2,14],[-1,7],[0,8],[-2,16],[-2,11],[-2,11],[2,8],[2,11],[-6,17],[-6,14],[-3,20],[14,55],[-11,9],[-13,3],[-13,-12],[-17,-14],[-14,12],[-10,-1],[-9,-5],[-7,-13],[-5,-7],[-3,-7],[-4,-6],[-6,-3],[-8,1],[-7,5],[-6,8],[-29,53],[-22,41],[-4,14],[-8,52],[-6,35],[-5,34],[-3,12],[-4,9],[-4,5],[-5,4],[-4,4],[-5,5],[-4,4],[-5,4],[-4,4],[-5,5],[-35,30],[-34,31],[-35,31],[-35,30],[-34,31],[-35,31],[-35,30],[-35,31],[-29,25],[-29,25],[-29,25],[-29,25],[-29,25],[-29,25],[-29,25],[-29,25],[-52,44],[-53,44],[-52,44],[-52,43],[-52,44],[-52,43],[-52,44],[-52,44],[-8,4],[-9,-1],[-47,-20],[-18,-8],[-39,-32],[-34,-29],[-53,-44],[-42,-34],[-26,-22],[-6,-3],[-7,0],[-21,9],[-10,0],[-26,1],[-18,7],[-6,0],[-9,-3],[-4,1],[-6,5],[-5,2],[-4,0],[-7,-2],[-27,-16],[-5,1],[-17,13],[-4,5],[-4,7],[-14,36],[-4,6],[-13,8],[-16,1],[-81,-16],[-2,1],[-2,2],[-1,1],[-4,-1],[-8,-6],[-3,0],[-5,3],[-4,5],[-3,4],[-7,-1],[-25,-11],[-14,0],[-10,9],[-3,10],[-1,18],[-3,8],[-3,5],[-3,2],[-2,3],[-2,7],[0,6],[3,7],[-1,5],[-9,9],[-14,-5],[-23,-19],[-6,-6],[-12,-8],[-37,-37],[-9,-15],[-11,-11],[-25,-4],[-17,-12],[-5,2],[-5,5],[-6,3],[-25,-3],[-3,2],[0,5],[2,6],[0,6],[-3,4],[-2,2],[-6,-1],[-20,5],[-7,8],[6,15],[-9,19],[-5,6],[-6,5],[-24,5],[-29,19],[-5,5],[-5,7],[-4,8],[-4,15],[-2,15],[-4,13],[-7,7],[-24,2],[-29,-6],[-6,-5],[-6,-12],[0,-12],[3,-12],[0,-12],[-3,-6],[-7,-6],[-7,-4],[-5,0],[-4,6],[-9,29],[-9,18],[-3,10],[-2,14],[0,24],[-2,10],[-4,13],[-10,8],[-12,0],[-24,-5],[-6,3],[-7,2],[-4,8],[2,14],[5,4],[13,5],[5,3],[-1,10],[-5,10],[-21,7],[-44,18],[-20,20],[-7,3],[-42,4],[-35,3],[-36,-9],[-8,-6],[-10,-4],[-1,-6],[1,-9],[-2,-9],[-9,-9],[-21,-2],[-9,-7],[-5,3],[-39,-9],[-6,2],[-8,14],[-8,43],[-11,12],[-44,4],[-55,5],[-5,3],[0,3],[-1,13],[-1,4],[-2,4],[-3,4],[-2,3],[-3,2],[-5,1],[-47,-8],[-11,2],[-20,13],[-27,31],[-3,7],[-3,10],[0,10],[0,11],[0,12],[0,31],[-12,66],[-10,59],[-4,12],[-2,12],[2,26],[-1,11],[-3,13],[-2,25],[-3,9],[-5,6],[-20,16],[-15,6],[-34,-1],[-16,9],[0,-33],[0,-54],[1,-67],[0,-58],[-1,-6],[-2,-4],[-2,-1],[-61,0],[-61,0],[-61,0],[-62,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-19,0],[-42,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-62,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-9,0],[-52,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-62,0],[-61,0],[-61,0],[-21,0],[-40,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-62,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-27,0],[-34,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-62,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-57,0],[-4,0],[-61,0],[-61,0],[-61,0],[-61,0],[-62,0],[-61,0],[-61,0],[-61,0],[-58,0],[-3,0],[-61,0],[-61,0],[-61,0],[-61,0],[-28,0],[-33,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-62,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-61,0],[-62,0],[-27,0]],[[15902,79484],[-2,5],[-6,9],[-6,-4],[-6,-2],[-8,6],[-6,12],[0,11],[3,9],[-1,6],[-4,3],[-7,1],[-6,0],[-6,-3],[-23,-19],[-4,-9],[1,-11],[3,-13],[-1,-1]],[[15823,79484],[-15,0]],[[15808,79484],[-1,7],[-2,10],[-2,7],[-4,8],[-4,4],[-2,4],[4,8],[15,19],[6,10],[4,17],[-11,-14],[-12,-7],[-12,0],[-13,8],[0,4],[4,7],[-2,25],[2,9],[5,2],[7,-2],[5,-6],[-2,7],[-9,10],[-9,7],[-7,8],[-3,15],[8,3],[11,-2],[9,2],[-5,12],[2,5],[5,0],[2,-2],[2,-6],[4,-4],[5,0],[5,4],[1,-5],[3,4],[5,1],[5,-1],[4,-4],[13,-3],[11,11],[8,20],[8,43],[2,10],[0,11],[-1,5],[-2,3],[-3,1],[-1,-5],[1,-19],[-1,-7],[-16,-47],[-23,-11],[-53,21],[-4,1],[-12,-5],[-2,9],[-2,7],[-2,4],[2,8],[8,8],[3,9],[1,9],[0,9],[-3,41],[0,7],[3,19],[4,17],[3,7],[-1,1],[-1,0],[-1,1],[0,3],[3,3],[3,7],[0,9],[-2,8],[12,15],[4,11],[-4,7],[-5,-8],[-4,-6],[-4,-2],[-3,-2],[-3,-5],[-3,-5],[-1,-5],[2,-14],[0,-8],[-1,-9],[-2,-3],[-3,-1],[-6,-6],[-8,1],[-3,0],[-2,-3],[-4,-10],[-2,-3],[-7,2],[-4,0],[-2,-4],[-2,-2],[-8,-7],[-2,-3],[-12,-10],[-3,-5],[4,-8],[-1,-12],[5,-22],[-3,-13],[-5,-8],[-4,-5],[-5,-2],[-6,1],[-63,45],[-7,3],[-16,1],[-6,3],[-5,5],[-2,5],[-1,4],[-1,4],[-3,3],[-5,3],[-2,0],[-3,2],[-3,6],[-5,11],[-9,32],[-2,4],[-5,7],[-3,5],[-1,8],[0,10],[1,10],[3,4],[2,4],[4,17],[3,7],[4,5],[4,2],[10,2],[4,-2],[2,-5],[1,-6],[2,-6],[15,-26],[8,-20],[1,-2],[2,-23],[0,-8],[2,-9],[5,-23],[3,-9],[4,-5],[3,5],[2,9],[2,7],[-3,10],[-2,11],[0,11],[3,9],[3,2],[9,2],[2,4],[2,4],[2,3],[16,4],[13,7],[11,13],[5,18],[-36,-29],[-37,-7],[-3,1],[-1,12],[-3,10],[-17,33],[-10,10],[-2,4],[-2,12],[3,10],[9,17],[2,11],[1,11],[-1,21],[-2,12],[-5,6],[-6,3],[-4,5],[-4,13],[1,13],[5,11],[11,6],[5,8],[4,2],[12,2],[4,2],[10,19],[5,12],[-1,5],[-6,6],[-10,22],[-4,5],[-16,14],[-12,5],[-11,14],[-7,4],[3,-9],[3,-7],[4,-7],[4,-6],[5,-4],[12,-7],[6,-5],[1,-3],[2,-8],[1,-3],[3,-3],[6,-5],[2,-3],[-2,-7],[-5,-9],[-10,-12],[-31,-20],[-4,-6],[-1,-11],[-1,-11],[1,-12],[2,-12],[3,-9],[5,-8],[10,-11],[4,-10],[-2,-5],[-3,-13],[-2,-6],[-7,-7],[-1,-1],[-1,-1],[-1,-2],[-2,-1],[-2,0],[-4,2],[-2,5],[-1,13],[0,3],[0,2],[0,2],[0,6],[-1,3],[-4,5],[-1,3],[2,7],[2,8],[-1,7],[-4,3],[-2,-5],[-8,-28],[3,-3],[3,-7],[1,-7],[-3,-3],[-4,0],[-3,-3],[-1,-5],[2,-8],[-6,-6],[-13,-8],[-6,-2],[-22,0],[-7,-4],[2,-14],[-4,-3],[-6,4],[-6,13],[-8,0],[-14,-4],[-7,2],[-13,11],[-10,4],[-2,5],[-2,6],[0,13],[-1,4],[-15,23],[-6,6],[-6,3],[-2,2],[-4,11],[-3,3],[-4,1],[-16,16],[-9,14],[-16,37],[-2,9],[3,10],[5,-6],[6,-10],[4,-6],[6,-4],[11,-18],[5,-7],[-5,22],[0,11],[4,4],[2,2],[1,6],[2,7],[0,5],[-2,4],[-8,8],[4,7],[5,3],[3,4],[-2,11],[6,5],[6,10],[3,11],[-2,10],[5,16],[1,5],[-1,6],[-6,9],[-1,7],[-2,9],[-7,7],[-7,5],[-5,5],[-2,6],[1,1],[2,1],[7,11],[1,4],[1,8],[3,11],[8,5],[9,2],[6,0],[9,-4],[3,0],[3,2],[5,9],[3,2],[5,1],[13,9],[5,5],[15,24],[3,7],[-3,7],[-7,-7],[-12,-18],[-22,-17],[-23,-8],[-23,4],[-4,-6],[-2,-11],[-11,-19],[-2,-6],[-3,-5],[-16,-18],[-6,-3],[-6,2],[-7,3],[-6,2],[-12,-2],[-3,2],[-3,7],[1,5],[3,6],[1,7],[-2,12],[-4,13],[-5,9],[-6,2],[2,-12],[2,-16],[-1,-14],[-12,-11],[-7,-9],[-5,-1],[-2,15],[1,8],[2,2],[2,1],[3,5],[-2,20],[1,2],[-1,6],[0,6],[1,6],[1,15],[1,4],[1,3],[3,3],[20,8],[3,6],[2,16],[4,5],[13,5],[1,3],[4,10],[1,4],[0,3],[-1,11],[0,4],[2,9],[0,25],[3,13],[7,16],[2,8],[-4,12],[-17,12],[-2,2],[-2,4],[0,5],[1,3],[6,12],[7,8],[3,5],[7,17],[5,6],[6,3],[-5,19],[-3,6],[-5,3],[-4,0],[-4,-2],[-2,-7],[0,-13],[-2,-6],[-12,-24],[-4,-5],[-10,-9],[-5,-7],[6,-3],[3,-3],[1,-4],[0,-15],[1,-3],[6,-2],[5,-5],[2,-8],[-3,-18],[-3,-21],[-1,-7],[2,-8],[3,-5],[0,-5],[-7,-15],[-2,-2],[-2,-1],[-1,1],[0,2],[-1,1],[-1,0],[-1,-3],[-1,-5],[-17,-19],[-4,-16],[-17,-19],[-6,-15],[3,-11],[-4,-11],[-7,-7],[-7,-3],[-5,0],[-3,4],[-5,15],[-5,9],[-1,4],[0,4],[1,5],[1,4],[-1,5],[-3,1],[-4,-5],[-4,-12],[-4,-6],[-2,0],[-2,2],[-4,2],[-4,9],[-2,18],[-2,14],[-8,-5],[0,-5],[0,-8],[-2,-9],[-2,-6],[-4,-8],[-5,-5],[-24,-6],[-8,0],[-5,2],[-4,7],[1,5],[4,4],[3,5],[2,7],[4,22],[0,7],[-1,6],[-2,9],[-1,5],[2,17],[2,11],[3,9],[3,7],[5,6],[7,4],[3,3],[2,4],[3,8],[3,5],[-9,4],[-7,-8],[-6,-11],[-8,-6],[-7,-7],[-3,-17],[-1,-18],[2,-11],[-2,-9],[-2,-13],[-2,-10],[-10,-7],[0,-7],[2,-7],[1,-3],[-1,-9],[-1,-5],[-4,-9],[-3,-4],[-4,-3],[-4,-2],[-9,-1],[-1,1],[-3,3],[-15,25],[-6,4],[2,7],[10,2],[3,6],[-13,7],[-8,1],[-6,-3],[-1,-3],[-4,-9],[-2,-4],[-26,-15],[-14,-2],[-14,4],[-9,13],[-6,-6],[-6,-1],[-30,7],[-6,4],[-5,7],[1,3],[5,3],[4,5],[5,4],[5,-4],[8,-11],[-2,17],[0,9],[2,7],[2,2],[10,3],[6,6],[3,2],[2,-1],[1,-2],[2,-2],[6,9],[24,6],[5,3],[6,7],[-6,9],[-7,-1],[-14,-8],[-7,-2],[-20,-14],[-8,-4],[-23,0],[-2,2],[-4,11],[-2,3],[-1,1],[2,3],[6,4],[7,3],[29,2],[19,11],[9,1],[22,-9],[7,2],[24,13],[21,5],[3,0],[4,-3],[3,-1],[3,2],[1,5],[5,21],[1,5],[2,4],[4,3],[7,3],[3,4],[4,14],[-4,11],[-5,10],[-3,12],[1,11],[5,4],[19,2],[3,5],[1,8],[3,14],[2,4],[2,2],[3,3],[1,8],[0,6],[-2,6],[-1,6],[-2,4],[-4,11],[-7,35],[-4,10],[-16,19],[0,-14],[1,-10],[6,-29],[8,-28],[2,-5],[7,-7],[2,-4],[-4,-12],[-5,-7],[-7,-4],[-8,-2],[-3,-1],[-4,-5],[-4,-5],[-3,-5],[-1,-6],[-1,-10],[0,-9],[1,-4],[9,-10],[2,-4],[-1,-9],[-3,-3],[-3,0],[-5,-2],[-6,-10],[-10,-24],[-7,-6],[0,4],[-31,-3],[-5,-7],[-2,-4],[-4,-3],[-5,-1],[-4,1],[-4,7],[-2,7],[-3,4],[-6,-1],[-4,-4],[-7,-11],[-4,-2],[-35,-8],[-7,2],[-4,11],[4,10],[12,5],[6,7],[6,11],[19,15],[7,9],[-1,3],[-12,0],[-7,-3],[-7,-6],[-6,-3],[-8,4],[-5,10],[1,10],[3,10],[1,13],[-1,8],[-4,-3],[-5,-8],[-5,-3],[-1,2],[-1,4],[0,4],[0,2],[-4,0],[-4,0],[-12,-4],[-14,-1],[-7,-2],[-20,-18],[-8,-3],[-6,5],[-3,4],[-7,3],[-3,4],[-1,6],[1,9],[-1,5],[3,7],[14,20],[3,-1],[3,-3],[3,-3],[30,-4],[11,6],[27,-6],[5,3],[6,8],[3,9],[-2,9],[-3,-2],[-10,-11],[-5,-2],[-45,7],[-15,7],[-6,8],[-7,27],[-2,31],[0,8],[-2,0],[-6,-27],[-3,-15],[2,-13],[6,-17],[-3,-8],[-5,-6],[-2,-10],[-4,-5],[-27,-17],[-7,0],[-6,3],[-8,5],[0,4],[-2,4],[-4,3],[-9,2],[-4,3],[-5,10],[-3,5],[-4,0],[-3,-3],[-2,-4],[-3,-7],[-1,-4],[-2,-4],[-35,0],[-7,5],[-4,4],[-4,3],[-9,3],[-7,0],[-4,1],[-4,4],[-2,-8],[5,-7],[7,-4],[13,-3],[14,-9],[7,-2],[15,0],[4,-2],[4,-2],[1,-3],[-4,-1],[-6,-4],[-12,-19],[-6,-6],[-6,1],[-7,4],[-17,21],[-23,7],[-3,2],[-7,10],[-2,12],[-2,0],[-4,-3],[-2,-1],[-7,1],[-5,2],[-28,16],[-5,6],[6,6],[2,4],[1,4],[-3,4],[-2,2],[-3,1],[-3,-1],[2,0],[-7,-2],[-10,4],[-6,8],[-1,8],[4,14],[2,18],[3,14],[5,5],[0,4],[-6,6],[-6,-2],[-8,-5],[-22,-7],[-8,0],[-7,8],[-1,11],[-24,23],[-1,11],[-3,7],[0,6],[1,7],[0,8],[5,4],[5,5],[5,5],[30,11],[5,6],[10,9],[44,-7],[2,-1],[5,-6],[3,-1],[44,8],[11,12],[10,6],[2,2],[3,9],[2,13],[1,13],[-1,10],[-4,-8],[-9,-24],[-3,-5],[-7,-3],[-15,-13],[-7,-4],[-65,8],[0,4],[6,5],[6,7],[2,6],[-6,2],[-8,-2],[-13,-12],[-8,-2],[-16,4],[-9,0],[-6,-6],[-5,-3],[-9,0],[-7,5],[-3,12],[3,9],[6,8],[8,5],[6,2],[7,1],[5,3],[12,27],[4,8],[6,5],[7,1],[2,2],[0,5],[-1,6],[1,5],[2,4],[3,3],[3,4],[2,7],[0,13],[-1,12],[-1,11],[3,11],[5,8],[7,5],[42,16],[76,8],[93,-15],[9,1],[6,6],[1,2],[0,3],[0,7],[1,2],[5,-1],[1,0],[2,5],[1,7],[1,6],[2,3],[-9,29],[0,7],[-3,6],[-3,5],[-2,6],[0,-5],[1,-2],[1,-2],[-3,-13],[2,-9],[3,-9],[2,-9],[-1,-8],[-3,-3],[-2,-2],[-4,-3],[-5,-16],[-110,23],[-46,-11],[-7,3],[-12,12],[-6,1],[-1,-15],[-9,-8],[-10,-2],[-7,9],[2,1],[1,2],[0,2],[-1,-1],[2,3],[1,2],[1,3],[-2,0],[-1,23],[1,6],[3,3],[10,4],[3,1],[3,7],[7,45],[-3,8],[-4,-8],[-3,-11],[-3,-13],[-2,-10],[0,-9],[-2,-4],[-12,-1],[-2,1],[-1,-2],[-2,-7],[-4,-29],[-5,-9],[-8,3],[-8,5],[-9,0],[-9,-2],[-8,-5],[0,-4],[7,-2],[13,-8],[6,-2],[14,2],[7,-1],[2,-7],[-3,-7],[-18,-10],[-4,-9],[-5,-18],[-4,-7],[0,-4],[5,-7],[2,-8],[-2,-10],[-14,-29],[-6,-8],[-6,-3],[-13,-1],[-4,1],[-8,17],[-1,3],[4,7],[18,0],[6,2],[0,3],[-3,3],[-5,6],[-3,3],[-5,1],[-21,-5],[-1,0],[-2,6],[1,4],[2,3],[1,4],[-1,7],[-2,6],[-1,6],[0,9],[-6,-3],[-2,6],[0,11],[-2,11],[-3,7],[-4,4],[-3,5],[-1,14],[0,11],[1,4],[2,5],[1,4],[-1,4],[-2,4],[-1,5],[0,16],[0,4],[-3,8],[-1,6],[1,3],[3,13],[0,1],[-1,7],[-1,2],[1,3],[1,2],[2,1],[1,11],[2,10],[3,9],[9,5],[10,12],[4,2],[15,-2],[8,0],[5,6],[-2,4],[4,15],[3,39],[3,15],[6,14],[9,13],[10,9],[9,5],[6,1],[5,-2],[2,-6],[0,-9],[-2,-11],[-4,-5],[-5,-1],[-16,2],[-3,-4],[-13,-38],[9,13],[8,16],[3,3],[24,0],[9,3],[7,10],[-9,27],[-1,5],[-2,2],[-1,6],[1,6],[3,2],[7,3],[4,3],[2,4],[3,10],[7,6],[20,5],[6,5],[5,7],[16,30],[4,4],[7,2],[15,-5],[14,-1],[7,-2],[6,-5],[11,-17],[4,-9],[2,-11],[-3,-13],[11,-20],[36,-48],[6,-13],[4,-4],[8,-13],[4,-7],[5,-21],[2,-8],[0,15],[1,11],[-1,10],[-4,9],[-3,3],[-3,2],[-2,3],[-2,11],[-5,14],[-3,6],[-11,15],[-26,24],[-8,19],[3,11],[0,8],[-2,6],[-5,15],[-3,7],[0,8],[4,10],[2,2],[9,3],[1,2],[1,5],[1,1],[5,-1],[12,7],[11,2],[11,0],[-5,13],[-9,2],[-36,-15],[-8,-5],[-7,-8],[-10,-6],[-10,-1],[-22,7],[-2,1],[-5,-1],[-2,0],[-2,3],[-1,4],[0,3],[-1,3],[-7,10],[-1,6],[4,8],[-5,16],[-3,4],[-3,2],[-1,4],[-3,31],[2,8],[10,19],[6,8],[6,7],[11,6],[9,15],[6,6],[14,5],[6,7],[2,14],[3,10],[9,16],[2,13],[-2,11],[-6,21],[-4,24],[-7,9],[-14,12],[-2,4],[-2,4],[-2,3],[-3,1],[4,-15],[12,-27],[5,-19],[0,-4],[0,-14],[1,-3],[4,-8],[1,-5],[-2,-8],[-19,-34],[-27,-25],[-17,-22],[-3,-5],[-5,-3],[-5,-5],[1,-10],[-4,-4],[-2,-4],[-1,-4],[0,-7],[2,-5],[2,-3],[1,-3],[-2,-9],[-4,-6],[-47,-28],[-5,-14],[-6,-18],[-14,-10],[-13,-6],[-6,-7],[-1,-12],[-4,-2],[-6,3],[-6,2],[-5,-5],[-5,-7],[-6,-5],[-7,4],[2,6],[0,12],[1,4],[3,6],[6,17],[-7,-2],[-5,-9],[-7,-21],[-3,-10],[-1,-7],[0,-6],[-1,-5],[-3,-4],[-3,-3],[-2,-3],[-5,-9],[-4,-5],[-3,2],[-4,12],[0,7],[0,8],[-1,7],[-7,5],[-2,5],[-2,6],[-1,7],[3,4],[1,5],[1,5],[1,5],[4,4],[7,0],[4,2],[3,8],[-3,8],[-10,16],[-6,17],[-1,5],[1,9],[3,5],[3,4],[2,5],[2,4],[2,5],[-1,5],[-4,2],[-2,-2],[-3,-9],[-3,-5],[1,-5],[-1,-5],[-1,-7],[-1,-8],[0,-8],[2,-3],[3,-4],[2,-9],[-1,-12],[-5,-14],[-13,-23],[-9,8],[-4,6],[-3,17],[-4,6],[-3,5],[-3,7],[2,4],[-3,22],[4,21],[8,16],[11,6],[3,-2],[3,-4],[3,-4],[1,-2],[4,2],[0,6],[-2,5],[0,3],[3,4],[6,2],[2,2],[2,5],[2,7],[2,13],[-5,-4],[-10,-10],[-27,-8],[-5,-5],[-4,-9],[-2,-4],[-3,-1],[-3,-1],[-2,-3],[-1,-4],[-1,-4],[-13,-37],[-1,-4],[-1,-7],[-2,-5],[-2,-3],[-4,-4],[-2,-3],[-11,-37],[-13,-25],[-4,-5],[-4,0],[-3,3],[-3,3],[-2,2],[-8,0],[-3,2],[-4,2],[4,8],[4,5],[10,7],[-3,11],[0,12],[3,11],[5,7],[3,2],[3,0],[2,-1],[3,-1],[3,2],[1,5],[0,6],[1,5],[4,8],[3,11],[2,11],[-4,15],[0,12],[0,2],[-2,18],[0,7],[3,10],[11,30],[0,5],[0,6],[1,6],[1,5],[8,12],[1,5],[0,6],[1,4],[1,3],[4,10],[1,3],[0,3],[1,7],[-1,12],[-3,22],[0,13],[2,17],[6,11],[9,6],[11,3],[2,2],[0,4],[-2,3],[-1,1],[-18,-7],[-4,1],[-3,8],[-2,0],[-1,-12],[-3,-13],[-4,-13],[-4,-7],[-9,-12],[-3,-6],[-2,-4],[-2,-4],[-3,-3],[-7,-2],[-9,2],[-18,11],[-17,2],[-3,2],[-2,14],[-2,4],[-3,2],[-2,4],[-6,16],[0,2],[1,6],[-1,12],[-3,21],[0,12],[-3,24],[-1,13],[0,3],[-3,10],[-1,7],[2,5],[3,2],[3,1],[4,2],[-5,6],[-6,-1],[-4,2],[-2,11],[2,5],[14,3],[5,2],[-5,3],[-17,-3],[-5,3],[-4,7],[-16,36],[-1,5],[-1,5],[-2,1],[-1,-1],[-2,-3],[1,-4],[1,-6],[2,-10],[-6,-5],[-5,3],[-28,35],[-4,3],[-5,3],[-5,7],[-7,16],[-2,12],[2,11],[4,10],[5,6],[-9,0],[-3,3],[1,7],[3,7],[-1,4],[-2,4],[-1,8],[2,12],[10,14],[3,10],[-8,1],[-4,-2],[-4,-5],[-3,-7],[-2,-4],[-3,0],[-4,5],[-4,11],[-4,28],[-3,14],[8,-2],[14,-10],[8,0],[5,6],[5,9],[5,6],[6,-1],[4,-9],[5,-27],[2,-9],[3,-2],[9,-6],[3,-4],[6,-12],[2,4],[-4,8],[-3,5],[0,3],[2,3],[5,-2],[8,-9],[21,-33],[12,-10],[3,-5],[1,-1],[2,-3],[1,-3],[-1,-2],[-1,-1],[0,-4],[0,-4],[0,-3],[2,-8],[2,1],[1,7],[1,17],[-1,7],[-2,4],[-5,1],[0,3],[3,3],[6,7],[2,3],[25,8],[4,7],[4,13],[12,-12],[15,-5],[29,1],[6,-2],[6,-5],[4,-7],[3,-11],[2,-5],[1,-3],[-1,-4],[-2,-5],[-1,-3],[-1,-5],[-5,-19],[10,16],[5,5],[5,-3],[5,-5],[11,-10],[4,-7],[1,-7],[1,-32],[3,-7],[20,-15],[-2,13],[-5,7],[-6,6],[-4,10],[0,8],[1,13],[-1,8],[-3,4],[-10,7],[-3,1],[-3,3],[-8,11],[-2,4],[-1,2],[-5,16],[-2,4],[-5,13],[-3,4],[-2,2],[-3,5],[-1,6],[1,7],[-6,-2],[-18,2],[-28,-4],[-13,10],[-8,3],[-3,-7],[-1,-10],[-4,-8],[-5,-5],[-5,-3],[-3,-1],[-11,1],[-3,-2],[-2,-3],[-2,-3],[-4,0],[-2,3],[-4,11],[-2,2],[-4,1],[-3,2],[-3,5],[-1,6],[-4,12],[-8,5],[-9,2],[-4,2],[-1,8],[-2,8],[-8,14],[-6,-5],[-4,8],[-4,11],[-4,6],[-2,2],[-2,4],[-2,6],[-1,6],[1,9],[1,5],[4,8],[6,19],[1,10],[-6,23],[1,13],[4,10],[5,7],[7,3],[6,0],[5,3],[1,12],[3,11],[6,2],[27,-12],[22,-3],[2,2],[-3,8],[-5,5],[-5,0],[-8,-3],[-7,2],[-12,9],[-8,3],[-2,4],[-3,2],[-3,-3],[-2,2],[-2,2],[-1,4],[0,4],[1,2],[2,1],[1,1],[2,10],[10,24],[1,4],[0,6],[0,10],[1,5],[3,4],[5,6],[-6,1],[-9,-7],[-8,-11],[-5,-12],[-5,-14],[-5,-14],[-1,-1],[-2,-4],[-1,-3],[-4,-4],[-2,0],[-3,4],[-2,-16],[-7,-9],[-7,-7],[-6,-21],[-20,-32],[1,11],[6,19],[1,10],[-3,8],[-3,-7],[-6,-21],[0,17],[1,8],[1,7],[-7,15],[-5,5],[-7,1],[0,-4],[9,-16],[3,-27],[-2,-25],[-8,-10],[-5,8],[-8,22],[-4,-1],[0,-11],[8,-25],[-3,-5],[-6,-1],[-6,-5],[-7,-5],[-4,-7],[-2,-5],[-1,-8],[-2,-7],[-3,-3],[-3,0],[-3,-3],[-3,-3],[-11,-17],[-3,-8],[-1,-15],[1,-25],[-1,-13],[-5,-5],[0,-3],[5,-3],[2,-12],[0,-14],[-2,-12],[-2,-10],[-4,-12],[-4,-10],[-3,-5],[-13,7],[-71,104],[-6,3],[-16,24],[-2,6],[-3,7],[-10,19],[-5,5],[0,4],[3,-1],[3,-2],[6,-6],[-4,14],[-5,6],[-6,3],[-6,6],[-2,5],[-6,15],[-2,1],[-6,-1],[-3,0],[-2,3],[-8,14],[-9,8],[-2,4],[-2,5],[-3,11],[-3,4],[-3,3],[-10,5],[6,9],[2,6],[1,8],[-2,1],[-10,-10],[-4,1],[-2,5],[-7,8],[-3,5],[-8,20],[-3,4],[5,14],[0,20],[-2,45],[2,12],[8,23],[2,10],[3,-1],[16,4],[5,3],[4,-4],[1,-6],[0,-6],[1,-4],[3,-4],[6,-5],[3,-3],[7,-16],[6,-17],[1,-5],[0,-4],[1,-3],[2,-4],[2,-3],[3,0],[2,0],[2,-1],[2,-3],[2,-7],[2,-2],[2,-1],[4,2],[1,-1],[1,-4],[1,-6],[0,-3],[4,-10],[2,-4],[4,-2],[-3,11],[-2,12],[-4,10],[-10,7],[-12,18],[-3,7],[-3,6],[-3,13],[-2,5],[-8,12],[-1,3],[-2,9],[-5,7],[-2,7],[1,11],[4,8],[7,7],[8,4],[6,2],[8,-1],[4,-2],[8,-8],[4,0],[8,2],[24,-15],[7,1],[8,8],[5,9],[3,2],[6,4],[8,6],[3,2],[4,-1],[-4,10],[-7,-2],[-14,-12],[-2,-2],[-4,-12],[-2,-2],[-8,1],[-40,20],[-17,4],[-16,-5],[-19,-14],[-6,-2],[-3,-2],[-6,-11],[-3,-3],[-12,1],[-4,-1],[-3,-3],[-3,-8],[-3,-1],[-4,1],[-4,2],[-4,5],[-2,6],[-4,7],[-28,7],[-1,4],[-1,10],[-1,2],[-2,2],[3,3],[15,10],[10,2],[-4,5],[-6,5],[-3,4],[0,6],[0,9],[-1,8],[-2,4],[-2,5],[3,28],[-1,11],[-2,-9],[-2,-11],[-2,-9],[-4,-3],[-6,-3],[-11,-8],[-7,-1],[-14,6],[-6,2],[-4,2],[-4,6],[-2,9],[2,10],[-2,7],[0,9],[2,9],[2,6],[6,6],[13,0],[5,4],[-11,15],[-4,10],[-2,14],[1,13],[0,6],[2,5],[4,2],[4,-3],[5,0],[1,7],[-3,5],[-8,11],[-5,12],[2,5],[7,-1],[6,-5],[6,-6],[5,-9],[7,-19],[9,-16],[1,-3],[2,-8],[62,-108],[6,-6],[7,-4],[8,-2],[4,1],[1,2],[-1,3],[-3,3],[-4,1],[-3,-1],[-4,1],[-4,4],[-13,22],[-3,8],[0,12],[6,21],[-2,8],[2,11],[3,4],[10,1],[5,4],[4,6],[1,7],[-4,4],[-3,-2],[-16,-10],[-4,-7],[-1,-7],[-1,-9],[0,-12],[-4,-10],[-10,9],[-15,24],[-6,6],[-22,46],[1,3],[1,6],[-11,11],[-10,17],[-4,19],[10,17],[14,8],[15,3],[14,-4],[17,-13],[7,-3],[3,-3],[2,-3],[5,-15],[6,-8],[8,-6],[24,-6],[5,0],[3,2],[4,5],[0,2],[-3,1],[-20,0],[-7,3],[-8,5],[-5,9],[-11,23],[-6,5],[-4,0],[-3,3],[-5,7],[-4,2],[-9,1],[-4,3],[2,16],[1,4],[3,6],[2,2],[3,13],[1,3],[0,8],[1,5],[2,2],[4,1],[2,1],[7,7],[4,6],[4,7],[3,8],[3,8],[-5,2],[-4,-4],[-6,-14],[-5,-4],[-9,-4],[-5,-5],[2,8],[4,10],[4,8],[9,8],[11,31],[5,7],[7,5],[7,2],[6,-3],[5,-9],[-2,-5],[-4,-6],[-3,-11],[4,1],[2,2],[3,3],[2,3],[3,6],[1,2],[1,-1],[8,1],[6,4],[10,19],[5,5],[4,-2],[8,-8],[4,-2],[4,1],[7,6],[3,1],[15,-3],[6,3],[5,12],[-14,-9],[-78,9],[-6,-2],[-3,0],[-3,4],[-1,6],[3,7],[5,14],[5,26],[4,10],[7,4],[7,19],[3,4],[3,3],[2,4],[3,7],[0,3],[0,6],[0,3],[2,5],[2,3],[3,12],[1,5],[2,5],[3,4],[6,5],[4,5],[3,1],[1,1],[1,4],[0,3],[0,4],[0,4],[8,22],[5,10],[6,4],[2,3],[0,7],[0,7],[1,3],[2,3],[5,13],[2,5],[8,3],[19,-5],[6,4],[9,9],[3,1],[0,1],[1,3],[-1,6],[0,3],[-2,-1],[-3,-4],[-3,-2],[-7,-8],[-3,-2],[-5,0],[-9,3],[-12,1],[-3,-2],[-3,-4],[-8,-19],[-2,-3],[-6,4],[0,26],[-8,11],[-3,11],[-10,57],[-5,15],[-5,-3],[3,-10],[1,-11],[0,-25],[7,-22],[3,-15],[-1,-6],[-3,-3],[0,-6],[0,-7],[0,-4],[-2,-5],[-5,-4],[-3,-3],[-2,-6],[-1,-5],[-1,-6],[1,-8],[1,-4],[2,1],[2,4],[-2,7],[3,4],[2,2],[2,2],[3,0],[-2,-7],[-2,-2],[-2,-2],[2,-5],[1,-3],[2,-1],[3,0],[-1,-5],[-1,-6],[-2,-3],[-6,-4],[-2,-4],[0,-16],[1,-3],[0,-4],[-1,-6],[-10,-14],[-4,-5],[-3,-11],[-3,-24],[-4,-12],[-23,-41],[-7,-18],[-5,-19],[-5,-16],[-2,-4],[-5,-3],[-7,0],[-5,5],[-2,8],[-1,10],[-9,29],[8,16],[5,21],[2,4],[2,2],[5,12],[1,4],[2,5],[17,21],[16,26],[3,12],[-3,10],[-10,17],[-2,11],[0,24],[-1,7],[-1,5],[-3,14],[-1,14],[-2,5],[-2,4],[-3,5],[-8,20],[-4,18],[-2,20],[2,27],[4,16],[0,7],[-1,8],[-2,4],[-3,2],[-3,4],[-4,8],[-2,13],[1,13],[4,12],[22,41],[14,34],[6,9],[-2,6],[-3,2],[-4,-1],[-4,-3],[-3,-12]],[[13883,83579],[1,7],[1,26],[-2,23],[-2,13],[-3,13],[-9,23],[-6,10],[-7,2],[-26,-9],[-9,1],[-13,5],[-31,13],[-4,4],[-3,9],[-8,39],[-4,9],[-7,4],[-30,9],[-12,9],[-31,49],[-22,16],[-50,9],[-23,12],[-32,27],[-36,30],[-41,33],[-12,15],[-7,5],[-7,1],[-29,-6],[-30,2],[-7,3],[-2,6],[1,24],[-1,12],[-2,11],[-7,18],[-5,9],[-1,5],[-1,7],[2,6],[3,8],[1,8],[-1,5],[-66,38],[21,101],[-36,13],[-50,18],[18,40],[13,28],[-20,50],[-16,39],[-26,44],[-27,46],[-22,48],[-22,50],[-34,76],[-24,52],[-21,37],[-22,39],[-6,15],[-13,52],[-7,15],[-25,38],[-33,47],[-11,24],[-4,24],[10,19],[-19,35],[-24,26],[-22,24],[-20,31],[-27,56],[-9,14],[-12,11],[-31,20],[-35,23],[-31,20],[-26,36],[-3,8],[-2,10],[1,7],[2,2],[1,2],[-3,6],[-4,4],[-15,3],[4,26],[-1,11],[-3,9],[-15,27],[-7,10],[-9,5],[-13,0],[-7,4],[-8,9],[-14,22],[-3,7],[-3,17],[-3,8],[-3,3],[-11,2],[-27,8],[-25,8],[-7,6],[-7,9],[-10,23],[1,10],[3,9],[3,8],[-29,22],[5,12],[11,14],[4,9],[1,9],[1,30],[0,10],[-4,8],[-16,20],[-5,3],[-14,6],[-9,15],[-9,16],[-10,14],[-24,19],[-16,13],[-17,22],[-5,2],[-44,-27],[-53,-32],[-26,-16],[-28,-8],[-33,-10],[-32,-9],[-25,-17],[14,-10],[11,-11],[4,-17],[-8,-25],[-13,-16],[-13,-5],[-13,1],[-15,6],[0,-46],[1,-57],[-5,-18],[-1,-2],[-23,-49],[-12,-10],[-17,-2],[-31,3],[-15,-5],[-29,-22],[-29,-22],[-4,-4],[-31,-24],[-30,-23],[-16,-19],[-23,-28],[-9,-5],[-9,0],[-6,9],[0,15],[7,31],[-10,47],[-8,37],[-9,43],[-4,11],[-4,8],[-41,45],[-43,47],[-43,49],[-42,47],[-40,44],[-35,39],[-31,34],[-11,18],[-4,12],[-11,49],[-1,4],[-2,2],[-11,9],[-27,15],[-45,23],[-14,11],[-2,3],[-14,18],[-20,25],[0,16],[9,36],[10,39],[11,43],[2,13],[-3,11],[-6,4],[-45,-2],[-42,-3],[-29,-1],[-31,-2],[-14,-4],[-14,-10],[-27,-32],[-25,-28],[-14,-12],[-13,0],[-43,23],[-43,24],[-28,15],[-6,1],[-5,-3],[-3,-8],[-9,-24],[-3,-7],[-4,-3],[-35,13],[-30,11],[-40,15],[-19,7],[-4,5],[-2,10],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[-1,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86],[0,86],[0,87],[0,86]],[[10832,91718],[4,-3],[25,-3],[0,-2],[0,-1],[-2,-2],[5,-3],[4,-1],[10,0],[0,3],[-1,1],[6,3],[49,-13],[66,-8],[51,-2],[20,12],[65,1],[85,-22],[3,-2],[-31,5],[-17,7],[7,-9],[13,-6],[94,-18],[14,-14],[5,-2],[42,-2],[9,-9],[18,-26],[4,-8],[10,-12],[11,-9],[53,-28],[11,-17],[17,-17],[8,-11],[8,-20],[1,-4],[4,-1],[3,3],[2,4],[3,2],[3,1],[12,-1],[0,-4],[-6,0],[3,-3],[9,-4],[9,-2],[2,1],[0,1],[0,3],[0,3],[1,1],[6,3],[3,8],[1,9],[2,9],[-4,0],[-4,-2],[-7,-7],[7,11],[10,4],[9,-2],[4,-11],[1,-16],[3,-10],[5,-8],[23,-27],[37,-26],[63,-28],[97,-45],[26,-1],[12,-7],[-13,0],[0,-4],[36,-12],[21,-15],[9,-1],[36,4],[19,-4],[2,-2],[4,-9],[3,-2],[16,-3],[29,-19],[15,-6],[23,-2],[5,2],[3,3],[2,4],[3,3],[4,2],[21,-4],[-3,3],[-1,1],[0,4],[11,6],[12,-2],[4,-2],[7,-3],[50,-11],[47,0],[52,-21],[8,-8],[20,-9],[2,-5],[4,-10],[7,-7],[9,-6],[18,-7],[33,-5],[8,-9],[3,-5],[5,-8],[5,-5],[4,-4],[2,0],[2,-2],[1,-4],[0,-4],[0,-2],[9,-5],[24,8],[10,-3],[19,-11],[10,-2],[-3,7],[-11,2],[-3,7],[2,1],[4,3],[-8,2],[-15,12],[-13,5],[-4,6],[-7,21],[-1,4],[-1,2],[-8,3],[-8,5],[-10,4],[-6,6],[-4,9],[-3,11],[46,-4],[-19,9],[-45,3],[-16,20],[4,4],[3,7],[-61,-5],[-12,2],[-38,25],[3,10],[6,2],[13,-4],[0,4],[-14,16],[-4,12],[2,15],[8,4],[10,-5],[19,-18],[22,-11],[25,0],[24,9],[21,14],[-49,-8],[-4,2],[-1,5],[-1,7],[-1,4],[-6,8],[-50,20],[-4,7],[-4,32],[-4,17],[-1,11],[0,9],[9,19],[11,-1],[23,-22],[7,-4],[3,-2],[7,-13],[46,-35],[32,-5],[15,-10],[-4,11],[-12,8],[-33,7],[-9,6],[-58,64],[-6,17],[5,12],[9,7],[11,4],[18,3],[5,-2],[5,-5],[1,-2],[3,-4],[2,-2],[0,-4],[0,-7],[0,-4],[4,-8],[13,-20],[4,-4],[3,6],[-3,13],[-9,22],[-2,8],[-1,6],[0,4],[3,4],[4,4],[5,2],[15,-4],[11,0],[11,-3],[17,-20],[10,-6],[45,-16],[3,0],[1,2],[0,4],[-1,3],[0,3],[-2,0],[-4,2],[-5,2],[-4,4],[-3,5],[-3,6],[0,4],[1,4],[0,6],[-2,11],[-1,3],[-2,4],[-6,19],[-2,2],[0,6],[0,7],[1,5],[4,4],[15,8],[16,15],[8,1],[5,-12],[2,6],[3,4],[4,1],[4,1],[-2,0],[9,4],[16,-6],[8,-2],[15,8],[9,3],[12,-7],[2,4],[2,8],[3,-2],[2,-3],[1,-4],[1,-3],[9,-2],[29,2],[30,-19],[16,-4],[14,13],[3,19],[-9,12],[-14,0],[-11,-13],[3,-6],[1,-2],[-5,-4],[-4,2],[-8,10],[2,7],[1,1],[-5,2],[-1,9],[3,9],[3,5],[4,-1],[6,-6],[4,-2],[4,1],[7,3],[4,1],[-6,12],[1,2],[6,8],[7,6],[4,8],[6,19],[-1,12],[-8,14],[-17,24],[5,3],[5,-2],[4,-3],[5,-2],[6,2],[9,5],[9,-2],[4,1],[3,-1],[0,-9],[-1,-7],[-2,-4],[-3,-3],[-4,-2],[6,-5],[22,6],[8,-1],[5,-7],[5,-8],[4,-7],[7,-2],[0,-5],[-13,-7],[-6,-7],[-5,-10],[-2,-9],[4,1],[6,5],[6,3],[2,-2],[1,-12],[3,-2],[3,-2],[6,-8],[3,-2],[8,2],[8,5],[8,3],[8,-2],[-2,-7],[-3,-4],[-8,-5],[15,0],[4,-2],[2,-2],[2,-2],[2,-2],[6,-3],[7,-1],[8,2],[7,5],[-1,2],[-3,5],[-1,1],[5,5],[12,0],[5,4],[-1,1],[-4,3],[-2,0],[2,7],[3,4],[4,1],[4,0],[-1,-3],[-1,-1],[2,-5],[2,-4],[3,-2],[3,-1],[-3,-7],[-7,-2],[-2,-5],[1,-4],[3,-8],[0,-3],[-1,-5],[0,-1],[-2,-1],[-8,-14],[-7,-9],[-52,-41],[-17,-22],[-2,-28],[-19,0],[-4,-2],[-6,-9],[-3,-2],[-2,-2],[-1,-6],[-1,-5],[-3,-3],[-4,-1],[-2,-4],[-3,-5],[-2,-6],[-1,-6],[1,-3],[1,-2],[-1,-5],[-1,-6],[-1,-2],[-5,-5],[-2,-11],[3,2],[7,0],[3,1],[5,6],[3,6],[3,17],[8,17],[9,11],[12,6],[34,4],[12,8],[14,3],[6,6],[3,9],[0,5],[1,4],[4,6],[4,2],[11,0],[4,1],[8,6],[4,1],[-1,-2],[-1,-7],[0,-3],[13,0],[6,3],[6,5],[-5,5],[-5,3],[7,13],[11,7],[47,11],[57,-2],[2,-2],[4,-5],[2,-1],[4,0],[1,2],[2,3],[2,3],[30,18],[1,0],[3,-3],[2,-2],[3,-1],[3,0],[-2,8],[-1,9],[2,8],[5,3],[6,3],[3,6],[3,6],[5,6],[-4,4],[1,7],[6,11],[1,8],[-2,6],[-8,8],[4,13],[8,12],[17,16],[32,0],[-2,-2],[-2,-3],[-2,-4],[-2,-3],[21,-2],[5,4],[5,6],[5,2],[18,-4],[15,-11],[6,0],[40,8],[10,8],[5,15],[-5,4],[-31,-18],[3,5],[3,3],[2,5],[1,7],[-2,6],[-4,2],[-5,-2],[-7,-8],[-5,-3],[-10,-3],[-2,-1],[-4,-6],[-3,-1],[-6,1],[-7,3],[2,4],[3,4],[3,3],[3,1],[6,12],[5,16],[43,6],[14,9],[9,3],[9,1],[6,-2],[-8,-1],[-21,-11],[-25,-4],[-9,-1],[0,-4],[53,0],[-1,-4],[-2,-4],[-2,-2],[-2,-2],[15,-4],[2,1],[4,3],[1,0],[2,-2],[2,-5],[16,-9],[8,0],[5,12],[-1,6],[6,5],[28,8],[8,4],[12,14],[25,0],[5,3],[13,13],[5,8],[-2,9],[4,6],[13,5],[23,18],[47,12],[8,11],[-2,0],[-4,0],[-2,0],[3,11],[4,10],[5,7],[5,-2],[9,-5],[19,0],[9,-5],[4,-5],[5,-9],[4,-10],[2,-10],[-1,-5],[-4,-8],[-1,-5],[1,-7],[3,-4],[6,-6],[8,18],[1,6],[-7,1],[-2,-1],[5,13],[6,3],[13,-3],[4,3],[3,8],[5,17],[8,17],[4,10],[1,11],[3,8],[15,5],[5,6],[-6,4],[-14,-6],[-7,2],[5,3],[18,25],[9,10],[5,6],[-1,-7],[-2,-4],[-4,-3],[0,-4],[4,-4],[4,4],[4,7],[4,3],[5,1],[10,7],[9,1],[4,2],[-1,6],[3,6],[4,2],[4,-1],[4,-3],[-8,-14],[-3,-8],[1,-7],[6,0],[9,5],[7,7],[2,7],[-2,9],[1,7],[4,3],[6,-3],[6,-1],[8,3],[5,6],[0,6],[4,8],[8,2],[15,-2],[-6,-4],[-8,-3],[-8,-6],[-3,-11],[2,-11],[6,-6],[7,0],[4,9],[-12,4],[6,7],[6,1],[13,-4],[4,1],[4,4],[2,5],[-2,6],[6,3],[9,-18],[8,3],[-2,-12],[1,-6],[4,-2],[6,-1],[-10,-7],[-3,-5],[5,-2],[19,2],[7,3],[12,9],[6,0],[-6,-12],[-2,-7],[-1,-7],[2,-5],[5,3],[5,8],[12,22],[2,3],[5,-2],[1,-5],[-2,-7],[-4,-7],[12,3],[23,11],[6,1],[5,-3],[-12,-9],[-4,-5],[3,-2],[14,3],[12,5],[-1,3],[0,1],[-1,4],[8,4],[2,0],[-2,17],[6,11],[15,17],[-2,4],[-3,2],[-3,2],[-3,0],[0,4],[4,0],[3,3],[2,5],[3,6],[3,3],[10,-3],[5,3],[-5,8],[3,7],[8,6],[7,3],[0,-4],[-1,0],[0,-4],[5,0],[3,-3],[1,-8],[-2,-10],[4,1],[3,-1],[4,-3],[2,-5],[3,-6],[1,-2],[-5,-11],[-3,-4],[-3,-1],[8,-3],[16,3],[8,-4],[-2,-4],[5,-4],[10,3],[4,-3],[-5,-8],[-5,-4],[-2,-6],[2,-9],[6,-7],[5,9],[4,12],[5,5],[4,-8],[-2,-12],[-4,-12],[-4,-7],[-6,-7],[-3,-2],[-4,-1],[-10,0],[-5,-1],[-4,-3],[13,-5],[4,-3],[-6,-6],[-13,-7],[-10,-11],[-31,-11],[-12,-9],[-99,-52],[-23,-5],[-21,-12],[-8,-1],[-1,7],[-5,-1],[-6,-4],[-5,-6],[-10,-14],[-5,-5],[-11,-2],[-3,-2],[-2,-3],[-2,-4],[-14,2],[-2,-2],[-5,-8],[-5,-5],[0,-5],[1,-4],[1,-1],[-2,-10],[-2,-6],[-3,-4],[-23,-10],[-27,-4],[-6,-4],[-4,-13],[-8,-14],[-3,-8],[2,-4],[-2,-4],[-8,-3],[-7,-8],[-5,-4],[-3,-6],[-4,-2],[-9,11],[-10,4],[-5,5],[-3,6],[0,4],[1,3],[0,6],[-3,7],[-3,-1],[-3,-3],[-5,-3],[-22,2],[-5,-4],[-10,-11],[-11,-4],[-24,1],[1,-3],[2,-10],[1,-3],[-17,0],[-3,1],[-3,5],[-2,2],[-6,-1],[-11,-8],[-6,-3],[-3,0],[-5,3],[-3,1],[-3,-1],[-5,-2],[-3,-1],[-24,4],[2,-4],[2,-5],[1,-5],[-1,-6],[-2,-5],[-3,2],[-6,11],[-9,6],[-9,1],[-18,-7],[-19,-13],[-7,-1],[-12,2],[-6,-1],[-8,-5],[-19,-27],[7,-5],[2,-5],[-2,-5],[-12,-4],[-2,-5],[0,-6],[4,-6],[-8,0],[-3,-1],[-3,-3],[14,-12],[3,-5],[-10,-14],[-61,-28],[-3,-4],[2,-7],[7,-17],[1,-7],[-4,-4],[-5,5],[-5,9],[-2,8],[0,5],[-2,4],[-2,4],[-1,2],[-14,-4],[-2,-7],[1,-6],[1,-7],[0,-11],[-3,-3],[-6,-3],[-5,-4],[3,-8],[-2,-9],[-1,-19],[-3,-9],[-2,19],[-1,23],[-2,22],[-8,13],[-5,2],[-6,0],[-10,-2],[-3,-3],[-7,-10],[-4,-3],[-14,0],[-14,-4],[0,-12],[-7,-4],[-9,-3],[-5,-9],[6,-3],[-2,-9],[-11,-22],[-3,-4],[-4,-4],[-3,-4],[0,-7],[4,-4],[6,-1],[11,1],[-4,-4],[-9,-7],[-4,-5],[-2,-5],[-2,-19],[3,-6],[2,-8],[2,-9],[0,-8],[-3,-6],[-6,2],[-4,9],[2,13],[-2,3],[-6,10],[6,11],[2,6],[-2,5],[-4,0],[-7,-11],[-4,-3],[-11,-2],[-4,2],[-13,8],[-5,0],[-1,-2],[0,-3],[-1,-3],[0,-3],[-3,-2],[-3,-1],[-7,1],[-4,0],[-5,-3],[-4,-4],[-2,-7],[0,-3],[-1,-5],[-1,-2],[1,-3],[2,-7],[1,-2],[-2,-6],[-3,-3],[-4,-1],[-4,-2],[3,-4],[8,-8],[-5,-16],[-2,-5],[-4,-4],[-9,-4],[-5,-4],[-6,-11],[-4,-4],[-5,-1],[-4,2],[-4,3],[-3,5],[-2,6],[7,1],[4,5],[0,5],[-7,1],[-23,-12],[2,-7],[2,-5],[3,-5],[4,-3],[-7,-5],[-7,-1],[-3,-4],[2,-15],[4,-9],[5,-6],[12,-9],[19,-8],[3,-3],[4,-4],[3,-4],[19,-4],[7,-5],[0,-8],[10,0],[30,-13],[30,3],[10,-3],[0,5],[-7,7],[-7,4],[-18,1],[9,-4],[0,-5],[-40,10],[-1,3],[0,4],[-3,4],[-4,3],[-4,3],[-4,2],[-5,0],[-9,5],[-1,9],[3,7],[5,-3],[5,-7],[6,-5],[7,-2],[7,0],[-4,8],[-24,14],[-8,3],[-16,-6],[-9,5],[0,5],[2,0],[4,3],[-3,6],[-3,4],[-7,7],[5,2],[15,2],[16,8],[6,0],[4,-1],[5,-3],[8,-8],[1,-3],[3,-6],[1,-3],[3,-2],[6,0],[3,-3],[-2,-3],[4,-4],[3,-1],[8,0],[-1,6],[-1,2],[10,5],[21,-13],[9,0],[-7,15],[-3,9],[1,9],[6,2],[11,-3],[10,-7],[12,-13],[14,-6],[13,-13],[4,3],[0,8],[-9,9],[0,4],[10,3],[53,-19],[9,0],[4,6],[0,9],[3,4],[4,1],[6,0],[2,2],[2,2],[2,6],[1,2],[1,4],[-28,24],[-16,8],[-8,-8],[27,-12],[-8,-5],[-7,2],[-13,7],[-5,1],[-5,-1],[-5,-3],[-5,-5],[3,-12],[-9,-6],[-12,-2],[-13,1],[-5,2],[-2,5],[4,8],[5,3],[5,-2],[5,0],[4,7],[-8,1],[-11,5],[-11,7],[-4,8],[6,9],[13,0],[25,-6],[-7,11],[-11,9],[-13,6],[-9,3],[-9,6],[-4,14],[2,14],[9,7],[-2,6],[-4,2],[-7,0],[3,9],[6,6],[13,5],[36,0],[5,3],[18,19],[8,5],[12,1],[7,5],[4,6],[4,8],[1,5],[0,4],[-1,4],[-1,1],[3,9],[4,11],[5,5],[2,-7],[-3,-30],[-2,-7],[-1,-1],[0,-2],[0,-4],[-1,-5],[-1,-1],[-2,0],[-2,-1],[-2,-4],[-2,-3],[-1,-3],[0,-6],[18,11],[9,11],[3,17],[1,6],[2,17],[2,5],[4,5],[6,1],[3,-3],[-1,-9],[1,-6],[-4,-4],[-5,-2],[-5,0],[13,-8],[4,-1],[2,2],[8,15],[2,3],[4,2],[4,2],[3,-1],[2,-4],[-1,-5],[-5,-9],[-5,-17],[0,-7],[5,4],[3,6],[11,30],[-2,6],[-1,5],[2,4],[2,3],[3,2],[2,1],[3,0],[2,-1],[1,-1],[1,-3],[-1,-3],[1,-1],[9,-1],[16,12],[8,1],[4,0],[6,2],[3,5],[0,9],[5,3],[9,15],[6,3],[-3,-8],[-5,-6],[-1,-4],[6,-3],[3,1],[3,2],[1,3],[2,3],[10,8],[5,5],[13,30],[12,18],[-4,2],[-6,-1],[-26,-15],[-3,-1],[-1,5],[2,6],[-2,4],[-2,1],[-7,5],[-6,1],[-11,-8],[-6,5],[18,12],[10,3],[8,-3],[-2,-4],[6,0],[12,6],[7,2],[32,-4],[-8,12],[1,9],[7,6],[10,1],[5,-1],[14,-7],[19,-3],[5,-3],[8,-10],[-3,-4],[-8,-4],[-6,-12],[0,-7],[2,-11],[0,-7],[-3,-4],[-4,-4],[-8,-4],[6,-2],[11,5],[10,9],[7,8],[3,15],[0,10],[3,5],[9,-1],[-6,20],[4,0],[3,-1],[4,-1],[3,-2],[0,4],[-2,4],[0,5],[1,5],[2,4],[3,5],[2,-3],[2,-5],[2,-3],[10,-32],[4,-8],[-1,13],[-6,33],[-1,8],[6,3],[5,-12],[4,-18],[3,-26],[-1,-7],[-3,-7],[-4,-3],[-23,-11],[-11,-16],[-9,-7],[-4,-5],[-2,-10],[6,5],[12,6],[7,5],[12,20],[5,4],[7,3],[5,0],[5,1],[6,8],[1,1],[1,0],[2,0],[1,4],[0,1],[-1,2],[-1,2],[0,3],[1,5],[0,3],[-1,4],[2,3],[3,6],[1,3],[-4,4],[-2,7],[1,9],[1,8],[-20,27],[-4,16],[-2,4],[0,4],[3,2],[4,-2],[2,-3],[4,-11],[3,-4],[8,-9],[1,-1],[1,-1],[0,-2],[0,-1],[1,-3],[1,0],[2,1],[2,-1],[3,-1],[2,-1],[2,-1],[1,-7],[-3,-27],[-1,-6],[0,-3],[1,-4],[2,-6],[1,-4],[-2,-7],[-6,-8],[-2,-6],[0,-8],[3,-2],[3,4],[3,4],[2,5],[5,14],[1,6],[1,8],[1,5],[1,4],[3,16],[1,5],[-2,15],[-2,7],[-2,5],[-4,1],[-3,3],[-6,11],[-3,3],[-4,1],[-5,3],[-4,5],[-2,7],[3,9],[7,6],[8,2],[6,-1],[4,-5],[2,-7],[-1,-8],[-5,-4],[8,-13],[7,-15],[5,-18],[2,-23],[-2,-11],[-2,-12],[-3,-10],[-4,-10],[-1,-4],[-1,-10],[-2,-6],[-8,-12],[-2,-6],[6,4],[8,10],[8,11],[3,9],[1,12],[14,41],[1,2],[0,2],[-1,6],[-4,11],[-2,6],[1,3],[1,4],[1,7],[2,6],[5,-2],[3,-5],[1,-5],[0,-5],[-1,-8],[1,-9],[3,-21],[0,-5],[0,-7],[-1,-8],[-3,-5],[-2,-3],[-1,-4],[-2,-2],[-8,-21],[-4,-2],[-4,-2],[-5,-4],[-2,-8],[1,-6],[3,-7],[4,-4],[1,3],[3,11],[6,15],[8,13],[6,8],[7,1],[3,-6],[0,-11],[-2,-13],[-3,-11],[-5,-10],[-16,-23],[0,-7],[0,-7],[-2,-9],[-5,-9],[-2,-7],[1,-2],[4,-3],[0,-4],[-2,-6],[-3,-3],[2,-14],[2,-4],[2,-3],[3,-1],[2,2],[3,2],[2,2],[3,-1],[5,-4],[3,0],[-7,15],[0,8],[4,12],[2,9],[-2,10],[-3,10],[-2,9],[3,8],[21,30],[14,7],[6,8],[-3,5],[-4,6],[-1,6],[4,3],[6,2],[7,8],[4,3],[18,6],[7,9],[4,17],[-7,0],[-22,-4],[60,52],[8,11],[4,4],[10,6],[2,4],[1,6],[-2,5],[-2,4],[2,7],[4,5],[9,6],[4,3],[3,7],[3,7],[3,5],[6,2],[0,4],[-3,-1],[-3,1],[-3,1],[-3,3],[12,4],[47,6],[59,25],[16,1],[55,20],[26,21],[7,1],[20,-1],[16,7],[91,11],[11,8],[11,12],[4,7],[3,6],[7,18],[8,14],[11,7],[11,0],[8,-13],[-9,9],[-2,-8],[-1,-15],[-3,-12],[-9,-5],[-4,-5],[0,-6],[4,-11],[2,-5],[1,-7],[-50,2],[-17,-10],[12,-32],[-1,-6],[0,-5],[-1,-7],[-6,-19],[2,-7],[4,-4],[5,-1],[22,-1],[13,-8],[7,0],[8,2],[6,3],[-11,11],[-4,7],[2,8],[7,6],[8,4],[23,2],[7,4],[7,5],[11,16],[12,9],[15,23],[12,12],[48,39],[25,9],[7,8],[-3,3],[-1,1],[1,2],[1,3],[1,4],[1,2],[-1,6],[0,10],[-1,5],[-2,3],[-3,3],[-3,3],[-1,5],[-2,9],[-2,10],[-2,10],[3,12],[7,8],[18,6],[8,6],[4,5],[6,3],[10,2],[4,2],[8,8],[4,2],[33,-4],[20,13],[10,3],[19,0],[64,17],[20,-9],[-8,11],[-11,6],[-44,7],[-36,6],[-45,13],[-8,7],[0,11],[-5,4],[-3,6],[-3,7],[-3,8],[8,0],[21,-6],[8,-4],[6,-1],[8,22],[6,5],[-10,5],[-33,-13],[-22,-3],[-10,3],[-6,12],[1,27],[9,29],[12,24],[12,13],[19,13],[0,1],[0,3],[0,2],[2,2],[3,0],[3,-1],[4,-3],[10,-11],[64,-40],[70,-56],[60,-57],[11,-16],[15,-18],[3,-7],[3,-9],[17,-26],[18,-42],[17,-27],[4,-12],[4,-12],[2,-4],[2,-4],[5,-5],[11,-5],[8,-6],[4,-2],[3,-3],[-6,0],[1,-15],[2,-5],[4,-4],[-8,-7],[-3,-7],[1,-7],[10,-23],[12,-35],[2,-9],[2,-5],[3,-6],[6,-8],[9,-14],[103,-108],[5,-8],[4,-5],[5,-5],[5,-3],[10,-3],[4,-4],[7,-11],[54,-40],[36,-17],[9,0],[17,5],[8,0],[3,-2],[1,-3],[2,-2],[2,-4],[3,-2],[10,0],[2,-2],[1,-4],[2,-4],[0,-2],[40,-20],[7,0],[3,3],[9,12],[3,5],[-3,2],[-5,6],[2,4],[-6,5],[-12,4],[-5,8],[2,4],[2,4],[8,-9],[75,-8],[4,2],[3,6],[2,7],[3,6],[-2,1],[-3,5],[-2,2],[3,5],[12,7],[-17,0],[0,4],[2,0],[3,0],[2,2],[2,2],[-30,0],[-8,-4],[2,-8],[-4,0],[-4,0],[-7,4],[1,2],[0,2],[1,2],[2,2],[-5,3],[-45,-11],[-21,-12],[-10,0],[-2,-2],[-2,-4],[-3,-2],[-3,-1],[-3,1],[3,6],[7,11],[4,7],[-1,2],[-1,2],[0,2],[0,2],[11,3],[12,-3],[0,4],[-3,3],[-1,3],[2,3],[6,10],[4,0],[10,-3],[35,-4],[0,4],[-2,2],[-4,5],[-2,1],[6,3],[6,-4],[13,-11],[18,-6],[18,-2],[-10,9],[-24,8],[-10,11],[2,5],[-5,4],[-2,0],[0,4],[3,0],[3,2],[2,3],[1,5],[12,6],[-8,6],[-47,5],[-6,5],[10,-1],[4,3],[3,6],[-5,1],[-1,1],[0,2],[-2,1],[-1,1],[-1,1],[-2,2],[11,26],[3,6],[9,5],[20,-5],[9,0],[25,20],[4,1],[7,-2],[4,1],[1,2],[0,3],[0,3],[0,3],[2,2],[3,0],[10,-2],[17,-8],[1,-5],[-1,-5],[1,-5],[3,-8],[2,-5],[1,-5],[0,-8],[2,-9],[6,2],[6,8],[4,7],[4,13],[1,8],[3,3],[8,-2],[-14,15],[-15,7],[-42,4],[-17,9],[-9,2],[-14,-6],[-5,2],[-6,12],[2,4],[-3,6],[-2,1],[-3,1],[18,20],[4,4],[6,3],[5,-1],[-2,-10],[2,-7],[-1,-15],[3,-2],[23,0],[3,1],[1,1],[-1,1],[1,1],[8,10],[2,6],[1,7],[0,8],[-2,5],[14,13],[13,22],[4,6],[5,4],[53,20],[3,3],[4,-4],[6,-2],[6,2],[2,8],[-1,7],[-4,7],[-5,6],[-5,2],[-5,-4],[-6,-18],[-4,-7],[-7,-2],[-10,2],[-9,3],[-6,5],[8,8],[9,5],[-6,3],[-24,0],[-3,-1],[-1,-3],[-1,-3],[-1,-3],[-2,-2],[-5,2],[-7,6],[-5,1],[-5,-1],[-4,-3],[-9,-9],[1,-2],[1,-6],[-5,1],[-7,0],[-6,-3],[-4,-5],[2,-1],[2,-2],[3,-6],[-5,-3],[-4,0],[-5,3],[-5,0],[-4,-3],[-3,-4],[-4,-1],[-2,8],[6,8],[3,7],[-1,8],[-5,10],[3,3],[9,5],[10,12],[20,9],[6,5],[2,4],[2,9],[2,1],[3,0],[3,-1],[2,-3],[1,-6],[-2,-13],[-5,-3],[-6,0],[-6,-6],[12,-6],[15,-2],[15,4],[12,8],[-29,-4],[0,4],[3,1],[5,5],[3,2],[16,4],[2,2],[3,3],[2,2],[4,1],[1,-1],[2,-6],[1,-1],[2,0],[5,3],[31,9],[6,-2],[5,-6],[10,-16],[-1,-9],[6,-5],[9,3],[5,11],[-10,0],[10,14],[10,-4],[11,-7],[9,5],[-8,17],[-5,4],[-6,-3],[-6,-5],[-7,-1],[-7,3],[-6,5],[5,3],[7,0],[5,2],[4,7],[-25,7],[-8,-2],[-24,-13],[-8,0],[0,4],[4,1],[4,1],[7,7],[-3,3],[-4,2],[-4,-1],[-6,-3],[-1,0],[-1,3],[0,4],[1,3],[2,1],[2,1],[2,1],[7,8],[9,1],[19,-3],[3,1],[7,6],[3,1],[5,-1],[5,-6],[4,-1],[18,5],[9,0],[7,-9],[-13,-11],[-4,-6],[3,-4],[6,-1],[6,-5],[5,-7],[3,-7],[0,-9],[-2,-9],[-3,-7],[-3,-5],[-7,-4],[-17,4],[-8,-6],[5,-5],[14,0],[5,-4],[-4,-2],[-11,1],[-2,-4],[-2,-6],[-5,-2],[-5,0],[-5,-2],[15,-7],[14,-2],[2,-2],[-1,-5],[-1,-6],[-1,-3],[-3,-5],[-3,-1],[-7,2],[-5,-3],[2,-5],[6,-6],[6,-2],[2,-2],[0,-4],[-1,-6],[2,-3],[3,-3],[4,-2],[4,0],[-6,-6],[-7,-9],[-6,-12],[0,-10],[-5,-1],[-2,-4],[2,-6],[2,-7],[1,-5],[-2,-5],[-5,-9],[7,-9],[18,2],[6,-3],[8,-9],[11,-3],[11,2],[8,6],[8,9],[7,3],[36,-2],[1,-2],[2,-4],[2,-4],[4,-2],[-1,-3],[-3,-9],[2,-1],[2,-2],[2,-1],[-11,-9],[-31,-20],[-7,-10],[-2,-12],[-1,-13],[-5,-13],[-8,-9],[-21,-12],[-13,-12],[-11,-13],[-3,-7],[0,-8],[2,-7],[4,-13],[-22,0],[-6,-4],[5,-7],[18,-16],[4,-1],[11,0],[10,-6],[6,-2],[46,-3],[18,6],[11,21],[-2,-9],[7,-13],[4,-6],[5,-1],[3,5],[-1,6],[-6,9],[3,10],[3,5],[4,0],[5,-2],[1,-2],[0,-3],[2,-3],[20,-8],[4,-1],[2,1],[3,5],[2,2],[4,1],[6,0],[3,-4],[-1,-9],[13,6],[7,1],[8,-3],[2,-1],[2,-3],[2,-3],[4,-1],[4,2],[9,5],[20,4],[45,22],[-11,3],[-4,4],[-2,7],[-1,15],[1,8],[4,3],[5,2],[15,10],[25,4],[-2,-4],[27,-4],[3,3],[1,6],[-1,8],[1,7],[1,4],[1,2],[1,1],[2,5],[2,3],[2,4],[0,4],[-1,8],[-7,11],[-1,5],[1,9],[4,5],[4,4],[4,5],[3,7],[1,5],[-1,29],[-2,12],[-5,9],[-8,7],[23,10],[6,6],[14,16],[7,6],[8,2],[32,-21],[17,-5],[8,18],[0,4],[4,-1],[8,-5],[5,-2],[10,2],[5,0],[13,-7],[15,2],[13,-7],[36,8],[50,-6],[38,8],[109,-17],[23,-12],[37,-1],[86,-43],[86,-42],[35,-40],[12,-13],[100,-75],[34,-11],[20,-15],[24,-10],[59,0],[17,-10],[69,-15],[61,-5],[108,-24],[56,-18],[4,-4],[6,-10],[43,-43],[71,-30],[50,-32],[57,-18],[41,-5],[88,-21],[19,-15],[38,-18],[11,-1],[15,7],[6,1],[13,-1],[6,1],[5,4],[-3,4],[-7,6],[-3,6],[10,4],[9,-5],[22,-27],[4,-3],[5,-1],[2,0],[7,6],[3,1],[3,-2],[3,-3],[2,-2],[81,-13],[12,2],[3,11],[7,0],[16,-5],[22,-15],[9,-11],[3,-1],[66,-13],[8,4],[-44,23],[-7,14],[11,0],[0,4],[-63,36],[-3,5],[1,8],[6,6],[8,4],[15,2],[15,-3],[70,-32],[8,-2],[4,2],[5,5],[3,1],[19,0],[-7,6],[-20,11],[-5,4],[-11,12],[-5,4],[7,4],[32,-11],[16,-11],[8,-2],[35,4],[6,-2],[19,-16],[5,-1],[10,-1],[4,-3],[2,-2],[12,-7],[47,-15],[27,-24],[14,-2],[0,4],[-1,1],[-3,3],[12,6],[13,-5],[44,-32],[8,-10],[7,-12],[9,-12],[61,-23],[23,-18],[-2,-2],[-2,-2],[-4,-8],[10,-9],[4,-6],[2,-7],[3,-7],[7,-6],[48,-21],[5,-5],[-1,-8],[2,-7],[3,-5],[4,-3],[4,-1],[4,-2],[6,-8],[3,-2],[4,-5],[3,-11],[2,-13],[1,-8],[-15,0],[-3,-5],[3,-11],[7,-7],[8,-2],[15,1],[0,4],[1,8],[3,9],[6,3],[4,-3],[13,-21],[-3,-2],[-5,-1],[-4,-1],[-1,-6],[-1,-6],[-2,-3],[-21,-27],[-5,-11],[3,-8],[7,-14],[2,-8],[-6,-7],[-12,0],[-35,10],[-4,-1],[-3,-3],[-7,-8],[-3,-1],[-20,0],[-3,2],[-8,8],[-3,2],[-4,1],[-9,6],[-4,1],[-48,-10],[-59,6],[-19,13],[-10,4],[-8,-5],[7,-5],[16,-16],[13,-7],[23,-25],[-6,-2],[-8,2],[-7,-2],[-3,-12],[-5,-8],[-10,-3],[-96,21],[5,-10],[7,-8],[6,-9],[-2,-11],[-3,-5],[-6,-7],[-3,-7],[-2,-6],[-2,-15],[-2,-7],[8,-8],[5,-3],[4,-1],[17,0],[4,-4],[-5,-5],[-10,-4],[-10,-11],[-7,-3],[-21,-3],[-46,-19],[-12,-1],[-6,-3],[-3,-6],[2,-12],[5,-5],[13,-1],[22,-8],[38,4],[-2,-1],[-2,-2],[-2,-2],[-1,-3],[5,-7],[10,-9],[5,-7],[6,-6],[17,-7],[3,-5],[33,-7],[58,15],[20,-3],[9,-5],[14,-13],[5,-3],[5,-1],[6,1],[9,4],[1,2],[0,4],[1,2],[39,-33],[19,-8],[18,0],[18,8],[7,1],[53,-11],[11,-8],[23,-9],[50,-1],[101,10],[34,-6],[31,-14],[11,-2],[58,8],[24,-6],[91,3],[18,7],[3,5],[-1,8],[-6,11],[12,7],[39,-11],[44,12],[8,-4],[3,-9],[0,-10],[2,-9],[3,-1],[12,1],[8,-5],[4,0],[4,5],[-4,7],[-4,4],[-5,4],[-4,2],[1,4],[1,3],[2,0],[3,0],[0,4],[-2,1],[-5,3],[14,10],[93,-26],[0,4],[-9,12],[5,2],[2,3],[2,5],[3,3],[5,1],[16,-1],[-3,-15],[5,-5],[7,2],[7,7],[10,21],[3,4],[7,7],[3,5],[7,7],[21,5],[14,7],[3,-2],[1,-7],[-3,-8],[-4,-4],[-6,-7],[-3,-5],[3,2],[4,2],[4,-1],[0,-7],[-2,-5],[-7,-2],[-2,-5],[7,0],[8,3],[19,13],[4,-1],[3,-4],[3,-5],[4,-4],[5,1],[32,19],[16,4],[7,6],[10,14],[1,2],[3,2],[6,9],[3,2],[4,1],[13,7],[28,5],[12,16],[31,20],[26,-1],[-1,3],[-3,10],[8,0],[10,-3],[16,-10],[11,-14],[6,-3],[8,5],[-16,16],[-4,12],[7,15],[6,5],[7,1],[14,0],[6,-3],[11,-11],[6,-3],[7,-8],[-1,-19],[-7,-29],[2,-20],[7,-11],[10,0],[6,14],[-3,3],[-8,10],[0,4],[22,-2],[11,-6],[13,-20],[8,-7],[16,-10],[-3,-7],[-8,-5],[-2,-8],[26,-13],[8,-8],[-8,-1],[-19,6],[-6,-3],[-1,-9],[8,-6],[49,-18],[6,1],[6,8],[2,8],[-6,6],[4,8],[13,2],[4,4],[4,7],[4,4],[4,-1],[3,-8],[-2,-1],[-4,-7],[14,-7],[5,-1],[3,-1],[3,-2],[3,-1],[5,4],[5,4],[2,0],[51,-7],[2,-1],[1,-3],[0,-3],[1,-2],[13,-17],[2,-3],[3,-10],[5,-39],[-2,0],[3,-9],[11,-17],[2,-9],[-5,-7],[-13,-9],[-5,-5],[-3,-5],[0,-6],[2,-10],[5,-7],[12,-4],[6,-5],[0,-10],[18,-1],[5,-12],[2,-16],[5,-6],[6,2],[6,11],[7,21],[3,23],[2,82],[2,14],[5,5],[20,3],[11,-3],[5,-10],[0,-7],[-1,-6],[0,-5],[17,-43],[1,-6],[1,-8],[-1,-5],[-1,-5],[0,-8],[1,-16],[3,-19],[5,-16],[6,-8],[6,-1],[4,4],[1,8],[0,9],[-2,4],[-1,5],[-1,4],[1,4],[0,3],[1,4],[-2,5],[4,0],[3,1],[3,2],[3,3],[3,3],[5,-1],[13,-7],[3,-8],[3,-10],[4,-8],[6,-6],[76,-59],[8,-19],[4,-5],[0,-4],[3,-10],[13,-29],[2,-8],[2,-10],[-11,0],[9,-27],[1,-11],[0,-12],[-1,-3],[-5,2],[-5,4],[-10,6],[-9,2],[-9,7],[-5,0],[-4,-3],[-4,-3],[-3,-2],[-5,0],[-12,5],[-5,-1],[0,-1],[0,-3],[-1,-3],[-1,-1],[-2,-2],[-7,-3],[2,-14],[-7,-3],[-24,8],[-19,12],[-15,15],[-17,9],[-7,6],[-14,20],[-8,8],[-9,1],[0,-4],[9,-11],[4,-7],[2,-7],[5,-25],[3,-8],[4,-8],[2,-3],[3,0],[5,3],[0,4],[-1,5],[0,4],[3,5],[2,2],[3,-1],[4,-2],[5,-6],[3,-5],[1,-3],[3,-6],[11,-12],[3,-7],[4,-9],[10,-4],[23,-2],[9,-6],[5,-1],[2,-2],[7,-11],[6,-4],[1,-9],[0,-12],[-2,-11],[2,-4],[-6,-11],[-9,-2],[-9,1],[-9,-4],[13,-7],[37,7],[16,-11],[3,-3],[1,-8],[4,-6],[5,-6],[3,-7],[-1,-5],[-2,-17],[0,-6],[1,-7],[7,-11],[2,-9],[3,-6],[4,-6],[3,-2],[2,4],[1,8],[-1,8],[-2,5],[5,9],[-1,8],[-4,7],[-3,8],[8,-1],[7,-7],[19,-34],[21,-27],[-3,1],[-3,-1],[-2,-3],[-2,-5],[7,-6],[18,-31],[11,-13],[3,-5],[5,-5],[5,1],[2,5],[-3,9],[9,-1],[6,-11],[15,-41],[3,-7],[5,-5],[14,-7],[25,-43],[9,-8],[9,7],[3,11],[-11,8],[-3,13],[-12,16],[-34,34],[-5,7],[-3,9],[-2,13],[-5,6],[-7,3],[-9,10],[-7,4],[-3,5],[-1,4],[-1,10],[-1,4],[-15,22],[-8,27],[-31,19],[-9,17],[16,-9],[8,0],[7,9],[-2,6],[-1,6],[0,4],[1,4],[-4,17],[-2,28],[-11,30],[-2,10],[-1,8],[0,11],[1,11],[2,7],[6,2],[14,-18],[14,-8],[4,-1],[4,5],[0,5],[-1,6],[-2,4],[-1,3],[-2,7],[-8,23],[-3,5],[0,1],[3,4],[4,3],[4,0],[3,-2],[15,-20],[6,-5],[5,-7],[3,-11],[-2,0],[10,-49],[-9,5],[-4,2],[-2,-4],[-3,-4],[-5,1],[-7,3],[-3,4],[-6,8],[-6,7],[-7,2],[-7,-3],[3,-9],[10,-12],[4,-14],[5,-6],[6,-2],[4,2],[-2,9],[4,-2],[9,-7],[3,-4],[-1,-6],[-3,-5],[-8,-9],[3,-3],[11,-8],[3,-2],[4,3],[3,9],[3,1],[4,-5],[4,-10],[5,-7],[6,6],[-12,18],[-5,11],[-4,11],[6,-1],[8,-3],[6,0],[5,8],[0,8],[-3,8],[-10,26],[1,4],[4,3],[6,0],[7,-3],[6,-5],[5,-7],[8,-9],[24,-19],[5,-8],[2,-5],[10,-15],[4,-9],[4,-5],[5,-4],[7,-1],[0,5],[-20,28],[7,8],[-37,58],[-12,15],[-16,11],[-9,4],[2,6],[9,10],[32,10],[-1,8],[3,5],[10,11],[-6,4],[-5,-1],[-6,-2],[-6,-1],[-5,2],[-9,8],[-15,4],[-9,6],[-29,32],[-5,10],[-4,23],[-8,25],[-19,37],[-10,8],[-6,11],[-2,9],[7,4],[4,-4],[5,-7],[4,-5],[4,4],[2,26],[12,16],[2,7],[-2,7],[-4,5],[-4,4],[-10,4],[-5,3],[-2,7],[-2,5],[-7,13],[-11,13],[-18,16],[-15,7],[-18,18],[-9,13],[-7,6],[-3,4],[-2,5],[-3,15],[1,15],[4,12],[11,24],[1,7],[2,7],[2,6],[3,2],[18,3],[34,19],[9,3],[3,2],[4,5],[5,11],[2,10],[-3,4],[-22,7],[-5,-1],[-5,-4],[-5,-1],[-3,4],[-2,6],[-3,5],[-5,3],[-11,1],[-5,4],[-3,7],[2,2],[3,2],[2,8],[0,14],[1,14],[3,11],[5,7],[4,2],[3,-2],[3,-4],[3,-4],[6,-1],[12,2],[5,-3],[10,-6],[-6,-10],[-9,-2],[-18,0],[4,-7],[5,-2],[13,1],[-7,-5],[-8,-2],[-8,-4],[-4,-9],[11,-10],[6,-2],[6,3],[1,4],[1,3],[1,3],[1,3],[12,17],[3,2],[10,2],[9,7],[9,2],[21,-3],[21,-11],[16,2],[28,18],[22,24],[13,8],[11,-3],[-5,-10],[-2,-5],[-1,-6],[30,8],[16,-3],[5,1],[-5,6],[12,9],[17,-2],[30,-11],[0,4],[3,17],[-5,17],[-7,14],[-7,9],[7,10],[10,3],[20,0],[-4,-13],[-1,-5],[6,-5],[5,-8],[4,-2],[5,7],[-1,15],[-2,16],[2,7],[9,-2],[28,-26],[6,-7],[4,-9],[5,-13],[3,3],[6,10],[3,3],[3,1],[8,0],[4,3],[-38,25],[-3,10],[4,6],[9,9],[3,7],[3,12],[-2,7],[-10,10],[7,11],[8,3],[17,-3],[7,5],[15,16],[7,4],[19,0],[3,-2],[2,-6],[2,-5],[2,-4],[7,1],[13,16],[7,4],[4,-1],[4,-2],[4,-1],[5,2],[2,4],[2,7],[1,5],[1,3],[7,-1],[10,-6],[9,-4],[9,8],[1,4],[1,8],[2,4],[3,3],[2,-5],[3,-11],[6,-4],[8,0],[6,3],[-1,8],[3,10],[4,9],[2,10],[-2,10],[-3,4],[-8,3],[-3,3],[-2,4],[-4,12],[4,8],[11,11],[5,7],[1,4],[1,9],[2,4],[3,3],[3,0],[3,1],[3,6],[-14,1],[-8,-2],[-5,-5],[-6,-7],[-7,-3],[-7,0],[-17,16],[-17,0],[-18,-5],[-13,-7],[-2,-11],[-8,-5],[-121,-39],[-8,-6],[36,0],[-9,-4],[-23,-1],[-6,-11],[8,-3],[5,-7],[1,-8],[-6,-7],[-5,1],[-3,4],[-2,5],[-1,3],[-13,2],[-5,-2],[2,-10],[4,-8],[6,-7],[5,-4],[16,-2],[8,-5],[0,-11],[-5,-7],[-8,-5],[-6,-6],[-3,-11],[3,-8],[6,-9],[2,-6],[-7,-3],[-8,0],[-3,2],[-3,4],[-5,13],[-1,2],[-2,1],[-3,9],[-3,1],[-18,0],[-1,3],[-1,5],[0,11],[-17,19],[-6,-2],[-1,-8],[5,-7],[-5,-9],[-8,0],[-16,9],[-5,0],[-11,-8],[-15,-1],[-5,-4],[1,-9],[-6,-7],[-14,-10],[-4,-4],[-3,-3],[-3,-5],[-1,-8],[-2,-9],[-4,-1],[-9,4],[-16,-5],[-8,0],[-7,23],[-10,7],[-10,3],[-27,-3],[-11,3],[-4,10],[-6,7],[-41,-6],[-10,-5],[-4,-1],[-6,1],[-11,7],[-6,-1],[-6,-6],[-4,-12],[-3,-13],[-4,-13],[3,-5],[4,-6],[6,-4],[5,-1],[8,0],[4,-1],[4,-3],[2,-3],[3,-8],[1,-2],[4,-4],[30,-14],[5,-5],[-3,-5],[-8,0],[-25,8],[-31,0],[-6,-2],[-3,-5],[-2,-5],[-3,-4],[-8,-3],[-24,4],[6,10],[-45,1],[-9,-2],[-17,-15],[-40,-20],[-9,7],[-4,8],[-1,6],[1,6],[5,5],[5,2],[6,-1],[4,-4],[-4,-7],[-1,-1],[0,-4],[7,0],[5,9],[2,14],[1,15],[-1,6],[-3,6],[-3,5],[-3,2],[-5,-3],[-2,-6],[-1,-6],[-1,-6],[-1,-3],[0,-3],[-1,-2],[-2,-4],[-11,4],[-2,0],[0,6],[2,8],[2,8],[7,15],[4,12],[1,10],[-5,10],[-10,5],[-9,-5],[-9,-8],[-12,-7],[-6,-11],[-5,-2],[-27,0],[-3,-3],[-3,-6],[-4,-4],[-5,3],[-12,9],[-3,5],[-3,7],[2,2],[8,3],[7,8],[3,6],[-1,2],[-1,3],[-1,7],[0,7],[2,3],[4,2],[39,31],[52,95],[16,24],[19,12],[132,19],[14,-4],[35,16],[40,7],[16,9],[37,1],[32,22],[3,4],[4,2],[22,5],[45,25],[15,4],[11,5],[5,1],[27,-3],[10,3],[28,21],[32,8],[20,12],[20,6],[10,6],[2,5],[6,15],[6,3],[6,0],[56,-27],[52,-8],[4,-2],[13,-10],[10,-14],[10,-6],[20,-25],[23,-21],[8,-12],[7,-7],[-3,-12],[-2,-6],[-2,-3],[-4,-1],[-4,-2],[-4,-4],[-2,-5],[1,-10],[5,-9],[11,-13],[5,-9],[15,-40],[7,-6],[7,-2],[10,0],[-1,-5],[1,-15],[0,-4],[-4,-4],[-4,3],[-8,9],[-6,3],[-5,0],[-4,-2],[-6,-5],[-4,-6],[-1,-2],[-3,-2],[-4,-1],[-3,-2],[-7,-6],[-3,-6],[-1,-7],[2,-9],[5,-2],[44,6],[10,-4],[-1,-5],[-1,-6],[-2,-4],[-2,-5],[8,-15],[64,-50],[15,-6],[12,10],[-19,13],[-6,7],[15,-1],[3,3],[3,5],[4,2],[4,-2],[3,-5],[5,-4],[8,5],[6,10],[3,11],[3,-6],[5,-4],[4,-4],[3,-10],[-1,-11],[-4,-6],[-25,-12],[-2,-6],[5,-9],[7,-5],[7,1],[13,12],[3,7],[2,2],[6,-7],[4,-2],[42,0],[9,-8],[-5,-20],[-16,-37],[16,0],[4,-7],[1,-20],[3,-6],[5,-3],[12,-1],[6,-4],[2,-2],[0,-4],[-3,-7],[0,-3],[7,-6],[34,2],[5,3],[4,5],[4,4],[5,-2],[19,-14],[23,-3],[44,14],[31,-15],[12,-1],[12,3],[10,6],[3,5],[6,11],[4,4],[6,1],[20,-9],[8,0],[4,1],[4,3],[4,5],[0,2],[-1,3],[0,12],[-1,3],[1,4],[2,8],[3,4],[24,20],[7,2],[8,-6],[5,-7],[3,-7],[6,-15],[-4,-5],[-3,-4],[-3,-4],[-2,-7],[1,-3],[2,-17],[1,-6],[0,-9],[1,-4],[2,-1],[10,-1],[4,-3],[10,-14],[4,-4],[3,-2],[6,0],[12,1],[7,-2],[5,-6],[7,-11],[8,-7],[9,-3],[9,-1],[14,5],[5,-1],[7,-14],[1,-4],[3,-7],[20,-24],[21,-17],[52,-12],[34,-8],[31,-18],[9,-17],[15,5],[3,-4],[1,-10],[2,-7],[4,-2],[5,5],[-3,3],[-3,5],[-2,6],[0,6],[3,4],[14,8],[7,10],[3,2],[8,-12],[5,-3],[6,-1],[10,1],[4,2],[3,4],[4,6],[-1,1],[-1,3],[0,4],[2,4],[2,1],[9,-1],[2,-3],[3,-5],[4,-11],[4,-5],[12,-2],[5,-3],[0,-5],[2,-5],[2,-4],[2,-2],[2,-1],[4,-3],[2,0],[1,2],[4,10],[8,0],[6,-7],[6,-8],[7,-5],[5,0],[9,4],[5,-2],[5,-4],[11,-5],[5,-1],[14,9],[2,1],[4,-5],[6,0],[6,1],[4,2],[-3,7],[-10,4],[-2,6],[2,7],[5,1],[5,-3],[8,-7],[4,1],[3,3],[5,1],[16,-4],[5,1],[6,8],[-1,11],[-2,9],[5,4],[5,-2],[7,-9],[5,-2],[5,2],[8,11],[4,4],[5,2],[0,-1],[-1,-4],[0,-5],[0,-9],[0,-3],[1,-1],[38,1],[11,3],[7,9],[-3,10],[-5,10],[0,10],[4,5],[4,-2],[4,-6],[3,-5],[5,-6],[5,-1],[5,4],[12,14],[5,1],[5,-6],[2,5],[3,13],[3,2],[5,-2],[7,-7],[5,-3],[9,8],[5,2],[3,-8],[-1,-6],[-2,-5],[0,-4],[1,-7],[13,6],[24,21],[12,5],[69,-4],[5,-2],[13,-12],[6,-2],[14,4],[4,-1],[9,-6],[4,-1],[3,1],[5,6],[3,1],[4,0],[12,-8],[15,-6],[7,3],[-1,11],[7,1],[23,-5],[7,-6],[4,-6],[4,-3],[4,1],[9,7],[5,1],[16,-3],[4,-3],[1,-2],[1,-3],[0,-2],[0,-1],[5,-1],[3,3],[2,4],[4,2],[4,-2],[4,-3],[5,-7],[5,-4],[4,-3],[12,-2],[6,-4],[12,-18],[7,-6],[3,0],[4,4],[2,1],[3,-1],[4,-4],[3,0],[9,7],[4,2],[15,-6],[11,2],[10,0],[12,-15],[4,2],[2,6],[2,17],[2,5],[3,3],[4,1],[27,-4],[13,4],[9,21],[-2,7],[3,5],[4,1],[5,-1],[5,-5],[4,-6],[5,-4],[7,-1],[50,4],[3,-1],[5,1],[5,3],[2,5],[-2,5],[-9,13],[-10,12],[-2,2],[-1,2],[-3,5],[-2,2],[-3,-1],[-6,-3],[-2,0],[-10,4],[-10,8],[-11,14],[-9,5],[-19,16],[-4,7],[-2,47],[-3,8],[0,6],[3,6],[4,3],[21,-3],[4,3],[9,11],[3,1],[5,-4],[2,-5],[2,-6],[2,-6],[6,-9],[49,-48],[9,-5],[16,-18],[5,-7],[1,-5],[3,-10],[2,-5],[3,-6],[6,-8],[3,-5],[23,-52],[3,-3],[2,1],[5,6],[2,2],[3,-1],[15,-11],[2,-3],[10,-24],[4,-4],[5,-2],[22,-1],[9,-5],[10,-10],[6,-9],[2,-2],[5,-2],[11,1],[5,-1],[4,-5],[6,-11],[8,-9],[9,-4],[18,7],[22,2],[8,6],[6,10],[8,9],[9,6],[8,2],[5,-7],[6,-12],[6,-6],[6,9],[-1,14],[12,7],[25,3],[-4,7],[-5,5],[-10,8],[-7,2],[-13,-4],[-7,2],[5,12],[25,27],[0,8],[-4,12],[-8,18],[-3,4],[-7,5],[-2,4],[-2,5],[-1,12],[-2,5],[-7,13],[-4,-2],[-3,-10],[-6,-11],[-9,-6],[-10,0],[-9,6],[-13,21],[-8,8],[-28,23],[-19,21],[-4,2],[-5,4],[-5,2],[-5,-6],[-1,-6],[0,-12],[-2,-4],[-2,-2],[-3,2],[-3,2],[-5,2],[-1,2],[-1,1],[-2,-2],[-3,-5],[-11,0],[-5,-1],[-5,-3],[-25,-24],[-5,1],[-4,14],[-3,3],[-4,-5],[-12,-20],[-2,-10],[1,-15],[2,-14],[2,-8],[-7,-4],[-6,3],[-10,13],[-11,11],[-2,3],[-5,9],[0,2],[-2,4],[-2,8],[-3,8],[-4,4],[-5,3],[-15,18],[-21,14],[-6,6],[-3,8],[-9,28],[-4,3],[-12,14],[-8,13],[-10,10],[-5,9],[3,2],[4,-3],[8,-7],[2,13],[6,12],[7,5],[7,-4],[2,-3],[3,-3],[2,-3],[1,-5],[0,-7],[-3,-11],[0,-7],[7,-21],[14,7],[10,20],[1,19],[2,4],[-7,8],[-8,6],[-33,15],[-15,12],[4,1],[4,-1],[4,2],[3,6],[-15,11],[-14,14],[-26,35],[-7,6],[-2,4],[1,7],[5,3],[7,1],[7,0],[4,-2],[24,-26],[9,-4],[-1,5],[-2,5],[-2,3],[-3,3],[0,3],[12,-6],[6,-1],[5,7],[-17,21],[-6,9],[0,5],[4,1],[7,-5],[13,-18],[5,-4],[2,-2],[31,-11],[18,-24],[11,-8],[6,2],[5,7],[4,7],[3,2],[5,-4],[7,-3],[7,1],[4,8],[-12,7],[-2,4],[2,5],[4,2],[53,-14],[-1,28],[16,-1],[19,-11],[10,-1],[-2,12],[-5,7],[-6,5],[-21,4],[-4,2],[-3,2],[-4,4],[-1,5],[4,5],[-25,21],[-6,10],[-1,5],[1,7],[2,7],[1,5],[5,4],[6,-2],[9,-8],[5,1],[10,6],[4,1],[17,-7],[25,-2],[5,-5],[2,-3],[4,-3],[2,-2],[1,-5],[0,-4],[0,-3],[0,-2],[6,-16],[6,-7],[8,-4],[10,-8],[5,-2],[5,4],[2,6],[0,2],[-1,2],[-1,2],[-2,3],[-2,1],[-13,-4],[-10,3],[-2,1],[-1,5],[0,1],[2,1],[1,2],[2,7],[3,7],[4,4],[4,2],[37,2],[47,-22],[3,-14],[39,-31],[-4,2],[-6,1],[-5,-2],[-2,-5],[2,-5],[6,-4],[37,-12],[4,-8],[-1,-6],[-1,-6],[1,-6],[1,-6],[-5,1],[-12,5],[-5,-4],[-3,-8],[-1,-7],[2,-5],[30,-7],[6,-6],[3,-1],[4,0],[65,26],[6,-2],[2,-11],[1,-3],[3,-1],[2,1],[2,0],[1,-6],[-14,-6],[-3,-7],[3,-10],[5,-7],[6,-6],[6,-2],[3,5],[-7,12],[3,12],[9,12],[29,29],[11,6],[12,2],[-18,-18],[-3,-8],[0,-18],[-1,-8],[-2,-7],[-10,-15],[-33,-31],[6,-9],[-4,-7],[-8,-4],[-7,-1],[1,-5],[1,-3],[-9,-4],[-11,-2],[-11,-5],[-5,-13],[3,-14],[11,-6],[20,0],[4,3],[2,7],[2,8],[1,6],[5,4],[7,3],[6,0],[3,-5],[6,-12],[12,-2],[13,3],[8,5],[-6,5],[-6,7],[2,12],[-6,2],[-13,-5],[6,18],[10,11],[26,22],[14,8],[6,1],[3,1],[6,6],[22,7],[17,11],[39,14],[6,4],[5,6],[6,10],[3,2],[9,3],[3,1],[-5,-13],[-7,-13],[-29,-38],[-6,-12],[-5,-13],[16,-18],[-6,-23],[-11,-23],[1,-17],[-2,-8],[-9,-16],[-2,-7],[-3,-14],[-2,-6],[-2,-4],[-2,-7],[-2,-7],[-2,-16],[-3,-7],[-4,-6],[-3,-8],[-1,-12],[0,-18],[2,-16],[4,-7],[1,-3],[-3,-7],[-6,-12],[0,-3],[2,-5],[1,-4],[2,-2],[10,12],[-3,-34],[-5,-10],[-9,-1],[-6,3],[-4,4],[-3,7],[-4,9],[-1,6],[-1,8],[-2,5],[-4,3],[-6,-7],[-1,-15],[3,-17],[0,-13],[-6,-18],[-10,-9],[-20,-11],[7,-3],[2,0],[-1,-6],[-4,-6],[-4,-7],[0,-20],[1,-2],[4,4],[6,8],[5,2],[4,-1],[5,-3],[3,-6],[-3,-11],[3,-4],[5,-3],[3,-4],[3,-2],[12,1],[6,-1],[7,-7],[2,-1],[5,-1],[6,4],[4,1],[6,5],[4,10],[5,7],[6,-2],[-1,-8],[1,-4],[4,-2],[4,-2],[-4,-8],[-5,-3],[-3,-4],[-1,-12],[-2,-7],[-4,-9],[-9,-14],[-11,-8],[-4,-5],[-2,-9],[-1,-10],[-4,-16],[-1,-9],[23,4],[2,2],[3,2],[3,1],[2,-3],[1,-4],[0,-5],[-2,-5],[7,-8],[10,3],[11,8],[8,9],[13,21],[5,3],[1,0],[1,-6],[2,-2],[3,1],[3,2],[32,37],[3,9],[5,4],[8,3],[5,0],[-1,-7],[6,-6],[3,-7],[3,-5],[6,2],[5,6],[1,6],[1,7],[2,6],[5,4],[6,-1],[6,-5],[7,-11],[1,0],[-1,-1],[-1,-7],[-4,-12],[-8,-14],[-64,-64],[-6,-16],[8,2],[14,9],[7,2],[7,4],[11,18],[6,2],[-2,-3],[-4,-9],[12,-3],[28,10],[10,-11],[-2,-2],[-2,-2],[2,-2],[2,-5],[2,-1],[-3,-8],[-1,-5],[0,-3],[2,-6],[1,-1],[2,1],[4,1],[5,4],[1,9],[-1,11],[1,9],[3,-7],[1,-3],[10,-14],[2,0],[0,-5],[-2,-5],[-1,-3],[-1,0],[4,-15],[0,-3],[-9,-16],[-1,-7],[4,-8],[6,-4],[7,-1],[5,-3],[3,-12],[-1,-7],[-5,-21],[-2,-6],[-3,-1],[-7,6],[-3,1],[-3,-4],[-1,-6],[-1,-5],[-15,3],[-36,-4],[-9,12],[3,1],[3,2],[2,4],[2,5],[-16,-3],[-30,-14],[-32,-7],[-9,0],[-7,8],[-2,11],[-1,11],[-3,6],[-9,0],[3,11],[4,12],[5,9],[5,5],[-7,2],[-6,-6],[-19,-28],[-1,-7],[3,-7],[4,-11],[-9,-6],[-10,-5],[-9,1],[-9,6],[4,1],[3,3],[2,3],[3,5],[-10,3],[-20,-6],[-10,5],[-6,12],[5,22],[-5,13],[-5,3],[-9,-4],[-5,1],[-3,4],[-5,6],[-4,3],[-17,-14],[0,-6],[10,-18],[4,-16],[2,-4],[26,-12],[6,-9],[5,-11],[5,-8],[8,-7],[18,-9],[7,-11],[2,-6],[1,-13],[1,-5],[4,-6],[5,-3],[6,-2],[54,-33],[3,-5],[2,-5],[2,-10],[2,-5],[9,-16],[4,-10],[1,-11],[-1,-14],[-2,-9],[-8,-19],[8,6],[14,28],[8,6],[10,1],[4,2],[5,3],[4,6],[0,6],[-4,11],[-3,14],[-3,6],[-3,0],[-2,-6],[3,-14],[0,-6],[-4,-6],[-4,-3],[-4,-1],[-5,-1],[-6,2],[-3,5],[-2,14],[-5,13],[-6,7],[-7,5],[-6,9],[-9,20],[-5,8],[-6,7],[-14,7],[-5,5],[-8,18],[-2,2],[-3,2],[-8,9],[-3,3],[-2,7],[1,4],[6,7],[11,7],[15,2],[14,-4],[11,-10],[4,-1],[12,9],[5,-1],[3,-1],[6,-2],[3,-3],[1,-3],[1,-9],[2,-4],[5,-1],[18,5],[26,0],[19,-6],[5,4],[4,7],[6,5],[6,2],[6,0],[1,-6],[5,-6],[7,-5],[6,-2],[7,0],[6,2],[5,6],[7,11],[0,8],[2,6],[7,11],[-4,9],[-6,4],[-7,2],[-6,5],[3,14],[-4,10],[-11,15],[-1,5],[2,6],[5,9],[0,5],[-2,6],[-3,6],[-2,5],[0,4],[1,4],[18,26],[1,3],[2,2],[2,6],[1,8],[0,6],[1,10],[3,4],[9,1],[11,5],[-1,7],[-35,23],[-8,8],[-3,15],[-1,7],[-4,9],[-1,4],[0,6],[-2,16],[-2,5],[-4,4],[-4,0],[-2,1],[1,7],[3,6],[5,7],[6,5],[4,2],[6,6],[0,11],[-4,13],[-5,9],[-23,22],[-4,6],[-3,15],[-7,4],[-10,0],[-7,6],[-6,9],[-6,7],[-7,4],[-12,3],[-5,4],[-4,5],[-3,7],[-1,6],[1,5],[5,10],[3,4],[13,7],[1,2],[-1,2],[0,3],[2,1],[10,0],[11,11],[6,24],[-3,22],[-13,8],[10,19],[6,7],[17,18],[3,9],[2,12],[2,0],[5,6],[-1,6],[-2,8],[0,8],[-7,0],[-3,1],[-3,3],[8,5],[49,3],[8,4],[3,0],[4,-4],[-4,-4],[-3,-8],[-3,-6],[-5,-2],[0,-4],[13,5],[24,24],[13,3],[4,-6],[11,-15],[7,-3],[16,6],[7,0],[7,-8],[12,-9],[18,4],[17,12],[10,13],[1,5],[1,4],[1,4],[2,3],[10,8],[24,25],[24,12],[2,3],[2,4],[2,3],[14,7],[5,4],[4,10],[0,-4],[8,9],[26,9],[10,6],[5,11],[-2,11],[-3,12],[2,14],[-2,8],[2,6],[9,9],[4,2],[3,1],[2,2],[1,7],[1,4],[3,3],[48,32],[53,18],[9,8],[12,3],[6,4],[11,11],[4,3],[13,2],[4,3],[-1,2],[-2,4],[-1,3],[4,0],[0,11],[6,6],[21,4],[20,15],[-6,-4],[-51,-12],[-18,8],[-7,0],[-16,-8],[-7,0],[0,4],[5,7],[2,4],[1,5],[0,-4],[4,9],[1,6],[1,13],[3,14],[4,13],[-2,3],[-2,2],[-1,5],[2,7],[10,2],[3,7],[-4,0],[5,7],[0,9],[5,7],[11,10],[3,7],[-2,11],[-4,5],[-13,10],[-3,7],[1,9],[2,8],[0,5],[-5,2],[2,7],[2,3],[2,3],[-7,6],[-7,0],[-8,-3],[-7,1],[3,2],[1,2],[-3,1],[-12,-1],[2,0],[-6,-5],[-9,-3],[-9,0],[-5,8],[2,6],[3,5],[4,3],[3,2],[0,4],[-6,0],[-5,-2],[-10,-6],[3,13],[9,12],[18,16],[-7,2],[-12,-4],[-11,-9],[-8,-10],[3,1],[7,-1],[0,-4],[-9,-10],[-3,-2],[2,0],[-2,-1],[-1,-1],[-1,-2],[2,-2],[4,-5],[2,-1],[-3,-4],[-7,-6],[-1,-4],[-2,-7],[-3,-3],[-7,-5],[-11,-10],[-4,-8],[-4,-10],[2,0],[-1,-7],[2,-4],[3,-2],[3,1],[-2,-3],[-9,-5],[3,-3],[7,-4],[3,-1],[3,1],[4,6],[9,5],[9,14],[6,2],[0,-4],[-1,-3],[-1,-2],[-1,-2],[-3,-1],[0,-4],[37,24],[-4,-12],[-9,-7],[-10,-4],[-7,-7],[-7,-11],[-9,-12],[-10,-8],[-13,-6],[-6,-10],[-4,-4],[-4,-2],[-48,-1],[-36,-21],[-9,9],[-6,4],[-4,-3],[-3,-5],[-2,-3],[-2,0],[-4,2],[-3,5],[-3,7],[-3,6],[-5,2],[-18,-4],[4,13],[5,28],[3,10],[9,12],[2,6],[1,11],[-2,2],[-4,1],[-4,4],[1,6],[4,13],[-1,3],[-4,2],[-4,3],[-1,6],[0,6],[9,8],[11,-3],[19,-13],[0,-8],[6,1],[7,6],[4,5],[2,6],[7,22],[7,10],[7,5],[8,2],[16,0],[8,2],[8,5],[7,9],[-8,8],[-2,4],[1,8],[3,5],[18,12],[8,1],[7,8],[13,10],[-9,-1],[-27,-15],[-33,-3],[-13,9],[-6,8],[0,9],[3,8],[5,17],[4,9],[-2,3],[-2,7],[-2,2],[6,7],[6,9],[-12,9],[-4,4],[9,14],[13,9],[34,6],[24,11],[27,0],[4,-2],[6,-8],[2,-2],[11,3],[10,5],[5,6],[9,17],[6,7],[35,18],[24,1],[-4,-7],[-15,-18],[-10,-5],[-3,-5],[-7,-12],[-3,-4],[-4,-2],[-3,-2],[-4,-2],[-19,-18],[-7,-2],[-20,-37],[6,1],[8,9],[6,2],[-9,-16],[-5,-6],[-6,-2],[4,-6],[5,-1],[5,2],[6,1],[0,-4],[-7,-10],[-4,-7],[-1,-7],[4,-4],[6,4],[6,7],[4,7],[6,7],[16,9],[11,14],[16,12],[-3,4],[-3,-1],[-2,-3],[-2,-4],[0,4],[6,5],[11,13],[26,11],[9,8],[1,8],[5,7],[20,9],[-7,4],[-25,-12],[-8,1],[-14,6],[-9,-3],[2,7],[15,27],[10,10],[4,9],[-1,1],[-1,3],[6,4],[3,3],[2,5],[-2,4],[-2,-3],[-3,-1],[-2,1],[-2,3],[0,8],[-6,8],[-8,6],[-7,3],[-36,-5],[1,0],[-21,-14],[-7,-8],[-5,-2],[-1,1],[-1,6],[0,1],[-4,0],[-13,-5],[-2,-5],[0,-7],[3,-7],[-8,-9],[-9,-3],[-19,4],[-42,-4],[-48,11],[-6,7],[-11,18],[-4,4],[-9,5],[-5,6],[-20,33],[-2,12],[-1,3],[-3,5],[-2,7],[-1,6],[-2,5],[-3,3],[-4,1],[-3,-1],[-2,-5],[-1,-3],[-3,3],[-3,6],[-2,4],[0,5],[0,5],[2,10],[-32,-12],[-6,-4],[1,-8],[5,-10],[5,-7],[-6,-15],[-11,-9],[-14,-5],[-10,1],[-22,10],[-3,4],[-2,8],[-4,2],[-4,-2],[-4,-2],[4,8],[-7,5],[-26,-5],[-4,1],[-9,6],[-5,8],[-4,2],[-8,-1],[-51,24],[-8,8],[-11,4],[-17,14],[-8,3],[-5,4],[-18,25],[-5,2],[-19,2],[-4,-3],[-3,-8],[-3,-9],[-4,-9],[-6,7],[-3,4],[-2,6],[4,10],[3,2],[4,0],[-5,7],[-7,3],[-5,-4],[-2,-12],[-4,-2],[-17,8],[-6,0],[3,-4],[-9,1],[-8,7],[-14,20],[-9,9],[-33,11],[5,1],[9,10],[3,0],[9,-10],[4,0],[4,7],[-6,6],[-5,7],[10,8],[0,4],[-6,-1],[0,4],[1,5],[1,6],[-2,7],[-6,2],[-5,1],[-4,3],[-3,3],[-5,-1],[-9,-4],[-5,1],[-4,3],[-64,75],[-8,14],[-3,4],[-2,5],[0,8],[0,9],[-1,6],[-8,22],[-2,14],[3,47],[4,15],[10,17],[19,23],[6,4],[5,-1],[5,-3],[6,0],[5,4],[2,6],[3,14],[-2,23],[9,19],[12,17],[7,14],[2,0],[2,-6],[2,-7],[2,-7],[5,-3],[5,1],[9,6],[-2,12],[5,9],[8,6],[6,2],[8,-3],[14,-14],[40,-15],[11,-1],[1,-1],[1,-2],[2,-1],[1,4],[0,4],[-1,2],[-1,2],[-32,7],[-11,5],[-13,11],[-11,4],[-3,6],[0,10],[0,12],[27,22],[4,1],[12,6],[9,7],[10,3],[5,3],[-25,-3],[-61,-32],[-5,-5],[-5,-8],[2,0],[-11,-5],[-21,8],[-22,16],[-14,14],[-5,10],[-3,10],[-4,9],[-7,7],[-30,14],[-8,10],[-4,21],[5,20],[17,34],[2,9],[6,30],[1,2],[-1,8],[1,2],[2,2],[1,2],[2,11],[-1,4],[-3,6],[9,0],[8,4],[7,7],[9,16],[1,1],[1,1],[0,5],[-8,7],[-2,3],[-2,-1],[-1,-1],[-1,-2],[4,-9],[-2,-5],[-6,-2],[-5,0],[-8,3],[-14,16],[-7,5],[1,8],[3,2],[6,2],[19,14],[5,-1],[7,-8],[7,-5],[4,8],[-20,15],[-3,6],[0,8],[2,12],[5,20],[-3,0],[-10,-4],[2,4],[-2,4],[-3,2],[-2,2],[-3,0],[7,9],[10,4],[33,0],[6,3],[7,5],[-2,4],[6,13],[7,14],[8,13],[8,9],[14,7],[41,1],[17,-7],[8,-6],[5,-12],[-1,0],[12,-13],[50,-35],[7,-2],[7,4],[6,1],[8,-2],[6,1],[-1,10],[1,2],[3,4],[2,2],[-5,6],[-11,6],[-4,8],[33,0],[-1,6],[-1,2],[11,0],[0,4],[-6,2],[-6,3],[-7,5],[-5,6],[-7,9],[1,3],[4,3],[3,13],[4,2],[5,1],[3,2],[4,4],[0,2],[0,5],[0,2],[6,5],[18,10],[-17,-2],[-10,-4],[-5,-8],[-38,4],[-9,4],[-7,6],[-33,0],[-5,4],[-11,13],[-5,3],[-12,2],[-5,3],[3,11],[12,5],[3,8],[-3,0],[-2,1],[-3,2],[-1,5],[8,7],[10,5],[19,5],[10,-2],[4,1],[13,11],[2,5],[-1,5],[3,3],[5,1],[8,0],[2,2],[6,8],[2,2],[7,3],[12,10],[6,3],[53,-1],[7,2],[5,8],[-6,2],[-2,6],[0,8],[2,8],[1,3],[5,5],[2,4],[4,12],[6,6],[22,2],[15,8],[5,1],[11,-4],[3,0],[8,4],[42,-3],[13,-6],[13,-2],[13,4],[12,8],[12,11],[-9,3],[-33,-20],[-5,1],[-11,6],[-79,6],[-14,-7],[-8,-1],[-10,3],[-9,6],[-2,10],[1,2],[3,1],[2,2],[0,3],[-2,1],[-5,4],[3,3],[10,13],[-1,3],[0,2],[-1,1],[-2,2],[0,4],[94,16],[94,15],[16,-7],[1,-3],[1,-7],[1,-7],[2,-3],[19,-6],[3,-4],[-2,-10],[-6,-7],[-8,-2],[-8,-1],[-7,-2],[5,-3],[6,-2],[4,-4],[0,-11],[-2,-6],[-5,-3],[-21,-1],[-9,-5],[-18,-14],[10,-14],[2,-7],[-4,-11],[2,0],[-1,-5],[1,-4],[2,-2],[3,-2],[12,11],[4,6],[8,25],[3,4],[2,3],[4,0],[3,-3],[2,-6],[-1,-7],[4,-5],[3,4],[2,6],[3,3],[9,0],[4,-3],[5,-5],[-2,-4],[-2,-2],[-2,-2],[-2,-1],[-1,-1],[-1,-6],[0,-2],[-2,-7],[0,-6],[1,-7],[2,-7],[-6,-24],[-2,-10],[4,0],[33,42],[5,8],[8,19],[7,6],[8,0],[6,-5],[-1,-11],[12,-3],[19,17],[11,-6],[7,-12],[4,-3],[6,-1],[15,1],[7,3],[7,6],[11,6],[13,0],[11,-8],[5,-19],[-1,-10],[-2,-7],[-30,-29],[5,-5],[19,-11],[28,-29],[25,-15],[35,-11],[7,-4],[4,-6],[3,-5],[3,-5],[28,-11],[12,-8],[1,-12],[3,-2],[1,-2],[1,-4],[1,-4],[0,-2],[0,-3],[0,-3],[2,-5],[4,-8],[5,-6],[6,-4],[22,-3],[8,-3],[8,-6],[3,-5],[0,-7],[-2,-5],[-3,-5],[11,-8],[3,-6],[2,-22],[2,-7],[1,-6],[-2,-8],[15,-20],[4,-9],[3,-9],[0,-5],[-2,-5],[-1,-9],[0,-5],[2,-4],[0,-3],[-1,-3],[-3,-5],[-2,-4],[-1,-9],[1,-5],[8,-10],[-7,-15],[-3,-8],[-1,-10],[-2,-28],[-2,-9],[2,-3],[-2,-12],[3,-11],[6,-8],[6,-6],[-4,-4],[-12,-4],[-7,0],[-2,0],[-16,15],[-7,5],[-7,0],[3,-11],[5,-7],[21,-19],[35,-5],[15,-7],[6,-6],[15,-8],[5,-5],[-6,-5],[1,-5],[2,-3],[3,-1],[3,1],[0,-4],[-15,-4],[0,-4],[12,1],[5,-2],[4,-7],[-4,-1],[-3,-3],[-7,-8],[10,0],[-6,-5],[4,-1],[14,6],[55,-13],[-1,-2],[0,-1],[-1,-1],[4,-3],[15,-5],[11,-7],[3,-1],[1,-4],[-1,-8],[-4,-7],[-6,-1],[3,-11],[7,-5],[7,5],[4,17],[4,9],[9,-5],[11,-12],[6,-10],[-6,-4],[-8,-1],[-8,2],[-4,3],[1,-5],[-3,-3],[-2,-5],[1,-5],[3,-7],[3,-2],[3,1],[3,-1],[4,-6],[3,-8],[-2,-2],[-4,2],[-5,0],[-3,-2],[-12,-10],[10,-2],[20,-8],[10,-2],[6,2],[2,0],[1,-6],[0,-5],[-1,-3],[-2,-1],[-1,0],[-2,-2],[-1,-2],[0,-4],[25,-8],[1,-2],[-2,-10],[1,-4],[2,-1],[7,2],[4,-1],[0,-4],[-2,-2],[-4,-6],[3,0],[3,-1],[3,-1],[3,-2],[-5,-5],[-2,-6],[0,-6],[3,-8],[-6,-4],[-7,-3],[-14,0],[0,-5],[16,1],[8,-2],[5,-7],[-2,-1],[-4,-3],[11,-8],[1,-2],[0,-3],[1,-3],[1,2],[1,2],[2,8],[2,4],[2,5],[2,4],[4,3],[3,1],[12,-1],[-11,13],[-4,8],[2,10],[6,5],[7,1],[7,-1],[6,-4],[2,-4],[2,-6],[2,-3],[3,3],[3,8],[2,2],[3,0],[6,-2],[4,-5],[3,-8],[3,-9],[-3,-3],[-6,-4],[-3,-1],[9,-29],[3,-16],[-3,-12],[0,-4],[4,2],[3,4],[4,4],[1,4],[1,6],[3,-1],[6,-7],[17,-14],[8,-10],[5,-12],[-1,-4],[-3,-3],[-5,-2],[-43,-7],[-32,4],[-6,-2],[-14,-5],[-31,-3],[-8,2],[-5,4],[-10,14],[-6,6],[-6,4],[-24,5],[-5,3],[-2,5],[1,7],[-9,19],[-5,6],[-5,4],[0,-10],[-6,-2],[-13,0],[20,-11],[6,-1],[2,-2],[0,-4],[0,-4],[-1,-3],[-3,-3],[-2,-1],[-7,0],[2,4],[-5,0],[-12,-6],[-7,-2],[-25,0],[0,-4],[8,0],[7,-2],[5,-5],[6,-9],[-4,-4],[-8,-2],[-4,-4],[-7,-19],[-17,-3],[-15,-9],[5,-2],[11,2],[3,-4],[7,-12],[4,-3],[5,3],[1,10],[41,16],[55,-4],[17,-7],[16,-12],[14,-19],[-4,-5],[-19,-12],[-2,0],[-9,0],[-3,-1],[-1,-4],[-1,-4],[-1,-3],[-38,-36],[-6,-3],[-7,-1],[0,-4],[2,-1],[5,-3],[-5,-11],[-22,-8],[-10,-10],[-3,0],[-3,0],[-2,0],[-3,-2],[-4,-5],[-1,-1],[-5,-1],[-10,-5],[-6,-2],[-7,1],[-3,-2],[-1,-5],[0,-4],[2,-7],[0,-3],[-3,-7],[-4,-5],[-4,-1],[-5,3],[-11,14],[-2,2],[-7,-8],[0,-4],[5,-2],[-8,-8],[-44,-28],[-7,-1],[0,-4],[92,8],[0,-4],[-24,-2],[-7,-3],[-18,-14],[-7,-1],[-21,3],[-11,6],[-19,-5],[0,-4],[16,-7],[9,-1],[17,5],[20,-9],[8,0],[6,4],[13,13],[36,9],[6,-6],[13,-2],[4,2],[1,2],[0,4],[1,4],[2,2],[2,0],[8,-4],[0,-4],[-3,-3],[-3,-4],[-2,-4],[-2,-5],[6,-4],[4,-1],[3,1],[-1,0],[-1,1],[0,3],[20,-1],[10,-4],[14,-15],[17,-1],[7,-4],[1,-4],[-44,9],[-4,1],[-1,-1],[-2,3],[-5,4],[-3,0],[0,-3],[17,-21],[16,-7],[3,-5],[0,3],[1,1],[0,-2],[1,-2],[-2,-4],[7,0],[3,-2],[3,-2],[0,-2],[-1,-6],[7,0],[37,-14],[9,-9],[17,-6],[15,-11],[6,-1],[-1,14],[8,8],[10,5],[8,6],[-8,4],[7,4],[18,0],[4,3],[10,11],[5,2],[-2,9],[-2,4],[-2,3],[4,4],[9,5],[3,6],[3,2],[6,-1],[3,3],[0,2],[1,8],[9,4],[11,0],[20,-4],[5,-4],[4,-1],[4,3],[4,1],[4,-3],[3,-5],[4,-3],[16,9],[7,0],[0,-14],[5,0],[16,5],[-4,-9],[-7,-4],[-15,0],[-9,-3],[-29,-30],[-10,-6],[-50,-11],[-9,-7],[4,-6],[5,0],[4,4],[6,2],[44,0],[2,2],[6,8],[3,3],[32,12],[4,-2],[3,-4],[5,-11],[10,-14],[7,-1],[22,10],[8,-7],[22,12],[4,-3],[1,-7],[0,-9],[-2,-9],[38,0],[0,18],[8,9],[11,3],[8,-2],[42,-16],[10,-7],[8,-2],[3,-5],[2,-5],[3,-5],[3,-2],[1,-2],[5,0],[2,-1],[0,-3],[0,-3],[0,-3],[2,0],[10,5],[4,1],[0,-4],[-11,-7],[-35,7],[-3,-1],[-8,-7],[-5,-3],[-7,-1],[-5,1],[-5,2],[-5,3],[0,2],[2,0],[2,4],[-6,3],[-22,1],[0,-4],[4,0],[6,-3],[9,-9],[2,-2],[7,0],[4,-2],[-3,-3],[-6,-2],[-2,-3],[-7,3],[-6,-3],[-7,-6],[-11,-4],[-17,-15],[1,-2],[1,-6],[-6,-3],[-1,-8],[2,-8],[1,-5],[-2,-3],[-1,-4],[1,-4],[2,-6],[-4,-4],[2,-3],[2,-9],[-36,-4],[0,4],[8,7],[3,1],[-4,1],[-11,-5],[2,0],[-2,0],[-2,0],[-2,2],[-2,2],[6,4],[2,0],[0,4],[-4,0],[0,4],[4,0],[3,0],[3,3],[2,6],[-7,-1],[-36,-21],[-5,1],[-2,9],[7,7],[16,9],[1,3],[1,9],[2,4],[2,3],[9,5],[0,4],[-8,0],[-7,-5],[-22,-23],[-18,-11],[-10,-2],[-18,5],[-54,36],[0,-4],[16,-16],[37,-25],[22,-5],[4,-5],[4,-5],[4,-7],[3,-4],[26,-12],[49,-44],[9,-4],[5,-3],[10,-14],[3,-2],[6,-1],[18,-9],[5,-6],[-2,-10],[-11,-13],[2,-6],[-4,-13],[6,-6],[18,-1],[-1,0],[4,-5],[9,-23],[-6,0],[0,-5],[2,-2],[2,-6],[-5,0],[-4,-3],[-1,-3],[25,-3],[24,-15],[3,-4],[-2,-5],[-9,-5],[-2,-6],[12,1],[5,-1],[0,-4],[-7,-3],[-15,2],[-7,-3],[-4,-1],[-6,-5],[-11,-15],[10,-3],[23,17],[11,2],[-2,-5],[-2,-2],[-2,-2],[-3,-4],[0,-7],[2,-3],[3,-1],[2,0],[-2,-8],[-5,-4],[-5,1],[-3,8],[-2,0],[-1,-9],[-4,-10],[-1,-6],[2,-5],[3,-6],[3,-4],[6,-4],[-1,-6],[-2,-7],[-2,-12],[-3,-4],[-6,-5],[2,-7],[-3,-3],[-8,-6],[5,-2],[6,-4],[5,-7],[5,-7],[-4,-5],[-8,-1],[-2,-2],[0,-4],[0,-4],[2,-3],[1,-2],[6,-2],[6,-6],[2,-5],[-4,-3],[-2,-3],[-5,-19],[-3,-2],[-20,-17],[-2,-1],[0,-5],[0,-4],[1,-2],[11,-4],[19,-12],[49,-20],[0,-4],[-11,0],[-32,-21],[24,8],[14,1],[7,-9],[-1,-2],[0,-2],[0,-1],[1,-3],[-3,-8],[1,-7],[9,-11],[2,-7],[0,-10],[3,-5],[9,-6],[12,2],[12,7],[8,9],[-2,3],[-2,5],[-1,5],[0,5],[-7,6],[-2,2],[2,5],[15,11],[3,2],[8,4],[13,17],[7,4],[1,2],[1,4],[1,10],[-4,4],[0,4],[6,5],[-6,3],[7,7],[15,4],[6,5],[-3,6],[1,5],[2,4],[4,0],[5,-2],[1,3],[1,7],[1,6],[2,8],[4,8],[4,5],[-12,0],[-8,3],[-7,8],[-5,14],[-2,10],[0,7],[4,5],[6,5],[3,7],[-1,9],[15,10],[4,6],[4,12],[3,3],[4,2],[8,-7],[3,-16],[0,-17],[-5,-13],[5,0],[4,2],[7,10],[0,3],[-1,4],[-1,6],[0,3],[-1,9],[0,11],[2,11],[2,8],[3,8],[1,7],[-2,7],[-3,8],[3,2],[2,4],[2,4],[0,6],[-1,7],[-3,2],[-9,-1],[3,9],[1,4],[0,6],[-3,17],[-4,15],[-1,19],[0,5],[2,7],[5,15],[6,15],[9,15],[35,28],[29,37],[0,5],[9,7],[2,6],[2,16],[-1,2],[4,3],[14,17],[6,3],[13,4],[18,10],[46,-6],[26,-20],[1,-4],[-1,-7],[2,-7],[3,-5],[4,-3],[2,-1],[4,-5],[7,-17],[4,-7],[33,-33],[47,-32],[10,-10],[21,-9],[55,-39],[63,-73],[12,-22],[9,-25],[6,-25],[2,-13],[0,-7],[-1,-6],[-7,-20],[2,-13],[4,-13],[5,-10],[4,-7],[1,-12],[3,-12],[6,-10],[7,-6],[-3,-9],[0,-7],[2,-6],[10,-16],[1,-11],[-1,-11],[-1,-14],[1,-4],[2,-1],[0,-3],[-2,-6],[-2,-5],[-1,-6],[-1,-5],[-2,-2],[-2,-2],[-3,-13],[-2,-5],[-2,-4],[-11,-8],[-5,-8],[-5,-9],[-4,-4],[-14,17],[-9,5],[-19,3],[-2,0],[-4,4],[-3,0],[-1,-1],[-3,-6],[-1,-1],[-4,0],[-3,2],[-3,4],[-2,6],[0,8],[2,53],[0,7],[-2,5],[-3,2],[-4,-1],[-1,-5],[2,-8],[-2,-3],[-11,-6],[-3,-3],[-8,-13],[-7,-5],[-21,-11],[0,-1],[-1,-4],[-2,-3],[6,-11],[12,-18],[5,-12],[0,-3],[0,-4],[0,-4],[1,-3],[5,-10],[6,-24],[0,-7],[-1,-5],[-12,-16],[-2,-1],[-2,-1],[0,-3],[1,-4],[0,-4],[1,0],[1,-3],[-1,-4],[-4,-2],[-7,-5],[-1,-2],[0,-5],[2,-4],[4,-7],[-4,-16],[2,-12],[5,-10],[4,-24],[8,-21],[2,-9],[1,-10],[3,-12],[5,-11],[4,-9],[18,-14],[6,-10],[-3,-17],[6,-16],[3,-6],[8,-8],[3,-4],[9,-11],[25,-8],[11,-8],[8,-12],[12,-12],[4,-6],[3,-8],[8,-12],[28,-23],[15,-28],[5,-4],[3,-2],[16,-18],[25,-18],[4,-6],[3,-11],[1,-36],[2,-6],[4,1],[9,6],[6,-1],[4,-4],[1,-6],[-3,-9],[-3,-2],[-9,-6],[-11,-12],[-11,-5],[-2,-3],[-3,-6],[0,-3],[1,-3],[0,-5],[-1,-7],[0,-5],[0,-6],[-1,-10],[5,2],[6,3],[4,5],[9,18],[4,6],[5,2],[7,1],[12,-4],[1,-2],[0,-9],[3,-12],[1,-10],[2,-9],[4,-3],[3,6],[6,43],[2,3],[4,5],[2,4],[-1,3],[-2,2],[-1,3],[0,4],[4,4],[9,-3],[4,3],[0,5],[5,0],[7,-4],[5,-9],[-2,-7],[1,-9],[2,-5],[4,3],[5,13],[2,7],[1,6],[-1,15],[1,6],[6,-3],[6,-4],[7,-3],[6,0],[6,5],[-10,11],[-3,8],[4,10],[-5,4],[-10,4],[-5,4],[-3,4],[-3,7],[-2,6],[4,3],[11,-2],[6,-3],[4,-5],[2,-6],[2,-4],[4,0],[4,4],[-2,7],[0,8],[2,7],[9,5],[9,14],[4,4],[20,6],[8,1],[11,-7],[15,-20],[9,-6],[8,5],[1,18],[2,7],[5,-4],[1,-6],[-1,-8],[-1,-7],[-1,-4],[6,-9],[8,2],[9,7],[5,9],[-2,7],[-5,15],[-2,6],[0,2],[0,6],[0,4],[11,3],[4,4],[2,11],[-1,7],[-3,6],[-1,7],[3,11],[-2,7],[1,6],[1,6],[0,7],[3,3],[4,8],[1,8],[-10,7],[-1,6],[0,8],[-1,7],[-2,5],[-5,9],[-2,6],[14,18],[24,55],[13,20],[15,14],[5,9],[6,7],[18,11],[2,4],[2,7],[2,3],[8,8],[2,4],[2,7],[-1,9],[-2,9],[-2,6],[3,4],[2,3],[4,0],[3,-3],[-4,-8],[1,-7],[3,-4],[5,-2],[3,2],[3,9],[2,2],[7,2],[4,2],[30,26],[1,4],[-1,5],[-3,10],[-1,7],[1,8],[2,6],[4,3],[7,2],[0,5],[-3,8],[-2,7],[-1,7],[-1,6],[1,4],[5,5],[5,1],[7,-1],[6,2],[4,11],[-7,1],[-5,4],[-3,8],[2,15],[3,4],[2,2],[2,2],[1,8],[-1,5],[-6,7],[-3,4],[7,3],[4,4],[24,37],[3,9],[-3,3],[-5,6],[-3,5],[2,2],[10,2],[6,2],[5,4],[-13,4],[-6,3],[-2,8],[1,3],[2,3],[2,4],[0,6],[0,14],[0,4],[0,2],[-1,1],[0,1],[1,4],[-3,4],[-2,5],[1,6],[3,6],[-5,16],[0,7],[3,9],[2,4],[6,7],[3,5],[1,5],[2,12],[1,5],[3,14],[7,9],[9,3],[14,-10],[10,2],[11,5],[7,8],[-7,6],[-22,11],[42,-6],[14,-7],[-4,-7],[-2,-3],[-2,-2],[9,-5],[37,-8],[2,7],[-4,7],[-8,3],[6,10],[11,-1],[21,-9],[46,8],[6,-2],[11,-8],[25,-7],[5,1],[2,3],[6,10],[2,3],[-2,9],[-4,4],[-4,2],[-2,3],[-3,12],[-9,6],[-18,1],[-5,-1],[-12,-6],[-6,-1],[-44,14],[-9,7],[-4,13],[6,5],[36,-7],[-3,2],[-1,2],[0,4],[8,0],[4,1],[3,3],[-4,4],[-11,4],[-4,4],[2,7],[14,-1],[3,5],[-40,14],[8,9],[10,0],[35,-8],[4,-4],[6,-3],[11,2],[21,-5],[2,2],[0,8],[-2,6],[-3,3],[-25,5],[-10,6],[-1,11],[-3,0],[-3,0],[-3,2],[-3,2],[10,5],[32,-5],[-1,6],[-1,2],[10,7],[23,-15],[15,3],[15,-6],[5,-3],[5,-1],[5,2],[6,5],[4,8],[-9,4],[-26,0],[-3,3],[-3,5],[-4,2],[-7,-7],[-4,1],[-4,3],[-3,5],[0,5],[1,4],[1,6],[-2,6],[-4,2],[-34,-6],[-9,1],[-8,7],[1,9],[-7,4],[-15,3],[13,8],[4,4],[-12,4],[-24,-15],[-12,3],[7,17],[12,5],[13,0],[10,7],[-7,3],[-43,-4],[-7,-4],[3,-8],[-1,-6],[-4,-4],[-5,-2],[-14,3],[-7,4],[-6,6],[7,7],[18,5],[5,8],[-13,5],[-26,2],[-12,9],[4,4],[-16,24],[-2,3],[-6,3],[-3,2],[-1,3],[-2,8],[-2,4],[-2,10],[3,5],[6,0],[12,-8],[9,-3],[8,1],[7,5],[-5,2],[-16,10],[-9,3],[-3,2],[-3,7],[3,4],[2,0],[2,0],[-4,7],[-6,3],[-6,4],[-3,11],[7,4],[20,0],[8,2],[1,5],[-3,6],[-6,7],[19,-4],[-4,7],[-5,5],[-6,3],[-6,1],[-5,-2],[-7,-11],[-5,-3],[-8,3],[-7,10],[-1,12],[7,11],[-5,14],[7,8],[9,6],[-2,9],[6,3],[21,-3],[-31,31],[-14,21],[9,17],[12,0],[6,5],[2,13],[-2,17],[-6,5],[-7,2],[-5,11],[23,10],[9,-1],[-4,-18],[6,0],[6,3],[6,5],[4,7],[0,6],[-3,9],[-4,8],[-3,3],[-61,4],[3,11],[4,5],[57,-3],[11,-4],[40,-31],[22,-9],[11,-1],[0,11],[7,6],[34,4],[8,3],[6,8],[-2,4],[-9,9],[10,5],[24,-14],[12,2],[10,7],[99,4],[2,-2],[4,-6],[3,-2],[3,-5],[2,-2],[12,4],[21,-8],[39,-36],[60,-18],[17,-13],[6,-2],[13,0],[53,-13],[12,5],[26,-8],[8,3],[13,11],[8,2],[64,-16],[33,8],[60,-8],[6,4],[-2,0],[-3,1],[-2,3],[-2,4],[19,1],[9,-3],[8,-6],[-1,-3],[-1,-5],[44,-17],[46,-3],[-43,-13],[-7,2],[-7,10],[-44,4],[1,-3],[2,-3],[1,-1],[3,-1],[-5,-3],[-10,1],[-4,-6],[29,-11],[-8,-6],[-47,-7],[37,-5],[6,-5],[5,-7],[28,-28],[-10,-5],[-103,19],[-102,19],[-6,-2],[-4,-5],[-1,-4],[5,-2],[23,0],[126,-34],[127,-35],[10,-7],[5,-8],[-11,-5],[-34,13],[0,-4],[8,-5],[15,-19],[18,-8],[11,-8],[10,-11],[6,-10],[-7,-4],[-16,4],[-7,-5],[6,-8],[-3,-6],[-15,-6],[7,-10],[9,-2],[58,8],[-2,3],[-1,3],[-2,6],[15,5],[67,-6],[31,-12],[40,-26],[8,-1],[13,4],[5,0],[12,-7],[4,-1],[2,-4],[4,-29],[6,-13],[4,-7],[4,-4],[0,-4],[-25,5],[-7,-3],[-7,-6],[-19,-12],[-2,-4],[-18,-33],[-7,-6],[-9,-2],[-7,0],[-9,3],[-4,0],[-2,-5],[-1,-5],[0,-5],[-2,-5],[-1,-3],[-7,-6],[-43,-9],[-34,-18],[-15,-12],[52,13],[11,6],[5,1],[3,-1],[3,-6],[2,-1],[4,1],[9,3],[11,1],[8,-3],[8,-6],[8,-8],[2,-2],[3,0],[2,-2],[2,-4],[0,-3],[0,-4],[-1,-4],[-1,-1],[4,-5],[4,-3],[4,0],[4,6],[4,8],[4,4],[4,2],[10,1],[4,3],[5,2],[7,-2],[5,-3],[3,-3],[20,-29],[2,1],[1,-7],[2,-4],[7,-6],[5,-7],[-1,-5],[-4,-3],[-2,-3],[-1,-10],[-1,-17],[1,-15],[2,-7],[1,-3],[-1,-7],[-3,-10],[-5,-4],[-16,-6],[-5,-12],[-11,-7],[-13,-4],[-9,-5],[-42,-37],[-6,-3],[-7,0],[-25,11],[-14,2],[5,-10],[0,-5],[-2,-7],[-6,-13],[-3,-3],[-5,-3],[-17,-4],[-10,-14],[-6,-1],[-12,3],[-4,7],[-9,31],[-7,7],[-13,3],[-25,11],[-13,2],[0,-4],[7,-9],[8,-7],[10,-4],[2,-5],[-3,-9],[-10,-8],[-12,0],[-45,10],[-12,5],[-28,25],[-11,2],[-7,-12],[0,-7],[4,-2],[9,1],[4,-5],[4,-5],[4,-4],[14,-5],[-5,-6],[-12,-6],[-11,-2],[-9,5],[-4,-1],[-2,-8],[1,-8],[4,-5],[4,-3],[5,0],[22,4],[5,-2],[4,-5],[3,-5],[4,-4],[26,-18],[6,-11],[-8,-11],[-25,3],[-11,-4],[9,-10],[9,-10],[10,-6],[10,-2],[19,12],[8,1],[4,-17],[-2,-12],[-5,-11],[-17,-29],[0,-3],[4,-8],[4,-6],[31,-13],[8,0],[9,5],[10,10],[1,2],[1,3],[0,7],[0,3],[2,2],[2,1],[2,2],[6,14],[4,6],[4,3],[10,-4],[1,-10],[-8,-40],[-8,-6],[-17,-6],[-4,0],[9,-10],[2,-7],[-8,-5],[-4,-5],[-3,-7],[-2,-6],[4,0],[-4,-6],[-2,-8],[-3,-5],[-4,-1],[2,-8],[9,-13],[4,-8],[-2,0],[1,-3],[0,-1],[-1,-4],[5,-14],[3,-8],[3,-6],[8,-8],[17,-8],[8,-7],[2,-3],[0,-4],[0,-3],[1,-4],[3,-3],[17,-12],[17,-3],[4,-6],[-3,0],[-2,-2],[-3,-2],[6,-10],[10,-9],[9,-7],[8,-3],[6,-3],[16,-29],[16,-14],[36,-21],[15,-18],[5,-12],[11,-18],[4,-4],[5,-12],[3,-5],[10,-10],[8,-20],[-5,-18],[-10,-17],[-7,-18],[2,0],[-3,-18],[-9,-34],[-3,-17],[-2,-31],[-2,-9],[-11,-33],[1,-5],[1,-3],[-2,-8],[2,-4],[-3,-2],[-1,-3],[-1,-3],[-1,-4],[-2,-4],[-2,-3],[-3,-1],[-4,0],[-6,-2],[-1,-5],[1,-20],[-3,-10],[-7,-3],[-29,7],[-2,-2],[-5,-10],[-2,-4],[-14,-5],[-29,16],[-16,-5],[-6,-4],[-16,-5],[-6,-5],[-2,-4],[-3,-11],[-1,-2],[-3,0],[-4,-3],[-3,-4],[-1,-5],[2,-1],[5,-7],[-22,-28],[0,-2],[2,-8],[1,-4],[-2,-3],[-11,-9],[-9,-12],[-4,-8],[-2,-7],[0,-12],[4,-7],[3,-6],[0,-7],[-60,8],[-2,-2],[0,-3],[1,-9],[-1,-5],[-23,-9],[-5,-6],[1,-11],[-16,-10],[-5,-6],[-2,-5],[-6,-15],[-2,-12],[-12,-5],[-61,5],[-16,-10],[-24,1],[-4,-3],[-1,-6],[0,-9],[-3,-18],[-9,-9],[-20,-12],[2,0],[-4,-5],[-35,-33],[-10,-5],[-4,-1],[-4,-3],[-11,-18],[-5,4],[-17,-1],[-15,6],[-17,-9],[-7,4],[1,2],[4,7],[-19,19],[-6,9],[2,0],[4,0],[2,0],[-2,10],[2,3],[5,-1],[5,-4],[0,-10],[5,-10],[7,-7],[5,-1],[1,7],[-3,9],[-6,9],[-8,6],[-15,22],[-2,7],[-5,18],[-2,5],[-15,7],[-32,5],[-12,14],[-4,15],[-3,1],[-7,-5],[-6,-3],[-5,6],[-2,8],[4,7],[-11,8],[2,8],[0,6],[-2,6],[0,8],[2,11],[6,6],[7,3],[7,-3],[5,-8],[0,-8],[-1,-8],[2,-9],[4,-3],[5,6],[4,10],[2,8],[-7,12],[-2,4],[-5,2],[-5,1],[-5,2],[-2,7],[1,4],[-1,1],[-2,3],[4,13],[12,12],[4,16],[1,13],[-2,11],[-4,9],[-4,7],[-2,-7],[-3,-20],[-2,-7],[-6,-10],[-15,-7],[-8,-5],[5,-4],[-5,-7],[-15,-14],[1,-17],[-11,-4],[-36,9],[-10,8],[-1,11],[11,13],[-10,11],[-30,4],[-8,14],[14,2],[42,-2],[0,4],[-37,18],[-11,10],[-1,13],[1,5],[6,2],[-5,10],[-8,3],[-16,-1],[-5,3],[-15,16],[-4,6],[14,-1],[31,-11],[13,8],[-121,32],[-9,5],[-19,15],[-8,-4],[5,-3],[4,-5],[-4,-3],[-3,-1],[-2,1],[5,-5],[21,-8],[-2,-6],[-2,-3],[-7,-3],[8,-4],[8,3],[8,6],[8,3],[9,0],[10,-3],[9,-6],[8,-7],[-102,-8],[-57,-29],[4,-3],[10,-2],[4,-3],[-5,-5],[-6,-7],[-5,-4],[-6,4],[3,-10],[8,-9],[9,-7],[7,-2],[8,4],[5,3],[2,3],[4,2],[23,1],[5,3],[5,5],[5,9],[3,8],[1,4],[-3,2],[-18,2],[-5,2],[8,6],[15,-8],[8,2],[2,5],[0,5],[1,4],[2,2],[29,6],[4,-1],[2,-3],[5,-8],[2,-2],[33,4],[-3,-10],[1,-7],[5,-3],[-43,-3],[14,-3],[22,-11],[20,-15],[10,-17],[-12,3],[-28,15],[-11,-5],[12,-12],[28,-4],[13,-5],[17,-14],[6,-2],[21,1],[6,-5],[-7,-10],[-21,-18],[-8,-4],[5,-4],[17,-4],[6,-4],[6,-10],[4,-3],[2,2],[9,9],[3,1],[3,0],[3,-2],[3,-1],[18,-1],[6,-3],[-1,-6],[1,-4],[0,-3],[0,-4],[-1,-6],[-5,-11],[-3,-11],[-3,-2],[-5,-1],[-3,-3],[2,-4],[37,-43],[11,-7],[8,-11],[3,-2],[5,-2],[5,-4],[8,-11],[11,-16],[4,-11],[2,-11],[0,-26],[1,-13],[2,-8],[7,-5],[8,0],[7,-4],[2,-17],[4,-10],[16,-16],[5,-9],[-2,-8],[-5,-5],[-14,-7],[-13,-10],[-7,-2],[-7,0],[3,8],[3,4],[4,4],[5,6],[1,1],[2,4],[2,4],[-2,1],[-10,0],[-26,-6],[-14,1],[-2,10],[-6,7],[-24,9],[-8,5],[-4,4],[-3,5],[-1,5],[-1,11],[-2,4],[-6,8],[-7,3],[-8,-1],[-6,-6],[-14,-6],[-5,-5],[4,-7],[-5,-3],[-6,0],[-7,4],[-4,5],[-3,7],[-1,6],[0,6],[-1,8],[-5,14],[-7,8],[-9,5],[-10,1],[4,8],[-10,4],[-8,-11],[-7,-14],[-12,-12],[3,-8],[6,-8],[5,-4],[5,-1],[4,-3],[3,-4],[9,-17],[23,-24],[7,-10],[5,-12],[1,-10],[-7,-4],[-21,0],[-3,2],[-12,14],[-20,13],[-41,4],[-8,3],[-9,9],[-11,13],[-4,3],[-6,0],[-10,-7],[-4,-1],[-12,-1],[-5,3],[-4,8],[-6,5],[-7,1],[-5,3],[-1,9],[-1,4],[-2,5],[-3,5],[-3,2],[-5,-2],[0,-5],[1,-7],[0,-6],[-2,-4],[-11,-12],[-5,-2],[-6,0],[-6,3],[-5,5],[-3,5],[-5,27],[2,16],[-9,7],[-1,10],[4,11],[-4,22],[-2,21],[-7,13],[-8,8],[-3,12],[-8,19],[-14,4],[-17,-5],[-43,-21],[-19,-8],[-9,-10],[-16,3],[-3,-2],[-15,8],[-65,-8],[-4,2],[-10,8],[-5,2],[-16,-2],[-5,2],[-4,5],[-8,13],[-5,2],[-5,-3],[-2,-8],[-3,-8],[-3,-5],[-7,0],[-30,20],[-13,4],[-7,0],[4,-10],[2,-2],[-13,-17],[-16,5],[-17,10],[-12,-6],[10,-15],[32,-33],[-9,-6],[-34,14],[-6,-5],[5,-10],[27,-38],[13,-23],[7,-7],[22,-1],[20,-10],[35,-4],[5,-2],[14,-10],[89,-41],[18,-4],[10,-18],[-12,-9],[-9,-14],[-12,-15],[0,-13],[-3,-7],[0,-6],[1,-6],[2,-5],[-25,-22],[-8,-3],[-19,-1],[-9,-5],[-2,-12],[1,-8],[-2,-6],[-6,-4],[-9,-2],[-9,0],[-5,-2],[-2,-2],[-1,-2],[-1,-2],[-2,-2],[-4,-3],[-5,-1],[-9,0],[-5,-1],[-4,-3],[2,-10],[-5,-8],[-7,-8],[-3,-9],[1,-1],[1,-1],[0,-1],[0,-3],[-1,-2],[-5,-5],[-2,-1],[2,-7],[3,-5],[4,-3],[3,-5],[-3,-3],[0,-3],[1,-3],[0,-4],[0,-3],[0,-3],[-1,-4],[-3,-6],[-13,-17],[-4,-7],[-1,-3],[0,-3],[-1,-3],[-2,-3],[-2,-2],[-9,2],[-7,-2],[-14,-7],[-6,-5],[-4,-6],[-7,-13],[-4,-6],[-14,-13],[-4,-7],[-6,-7],[-6,-3],[-13,-1],[-21,-8],[-5,-3],[1,-2],[3,-6],[-2,-4],[-5,-3],[-2,-2],[-1,-2],[-1,-4],[0,-4],[0,-2],[-5,-2],[-10,3],[-4,-3],[-3,-3],[-3,-5],[-3,-6],[-1,-6],[3,-9],[10,-4],[2,-5],[-4,-10],[-21,-6],[-8,-7],[-3,-5],[-4,-3],[-14,-3],[-14,-11],[-20,-8],[-76,1],[-76,1],[-37,16],[-30,23],[-10,4],[-4,3],[-3,5],[-4,11],[-3,5],[-10,11],[-2,1],[-2,3],[-5,11],[-3,3],[-6,3],[-17,15],[-12,16],[-25,18],[-9,4],[-22,3],[-8,7],[-8,10],[-10,6],[-21,7],[69,0],[29,-10],[16,-2],[2,4],[-9,7],[-82,18],[-11,6],[-6,1],[-4,2],[-8,8],[-3,0],[-4,-2],[-27,-2],[-5,2],[-18,12],[-16,5],[-4,3],[-3,6],[-2,5],[0,5],[-1,5],[-4,5],[-19,13],[-12,5],[-5,1],[-6,2],[-3,5],[-2,6],[-2,5],[-20,16],[-11,5],[-8,-3],[2,-6],[-2,-2],[-5,0],[-4,2],[-3,5],[-2,11],[-3,7],[-4,4],[-24,10],[-9,11],[-5,3],[-4,0],[-16,-6],[-4,4],[-53,8],[-10,-6],[65,-32],[7,-8],[4,-12],[-1,-10],[-4,-8],[-7,-3],[-8,1],[-10,4],[-10,7],[-7,10],[-3,3],[-17,3],[-16,11],[-5,2],[-17,-1],[-9,-3],[-8,-6],[-17,-9],[-20,0],[-37,15],[9,7],[10,2],[21,-1],[19,4],[1,1],[1,2],[0,4],[-1,3],[-2,2],[-3,1],[-46,-13],[-89,10],[-90,11],[-11,6],[-6,1],[-21,-4],[-35,18],[-10,-4],[-10,-5],[-23,-2],[-9,-7],[104,-61],[17,-16],[8,-5],[8,5],[-17,24],[-8,16],[-4,8],[-5,5],[5,10],[10,3],[32,-4],[17,-10],[54,-7],[48,-6],[63,-25],[58,-11],[37,-16],[30,-25],[22,-8],[10,-6],[26,-33],[3,-3],[5,-11],[3,-2],[5,-2],[26,-16],[6,-6],[4,-10],[2,-17],[2,-9],[4,-10],[5,-9],[4,-7],[38,-26],[11,-3],[5,-3],[4,-4],[6,-9],[2,-3],[2,-2],[0,-4],[0,-7],[1,-3],[5,-9],[12,-14],[5,-8],[7,-7],[21,9],[9,0],[11,-10],[4,-2],[73,-5],[19,-9],[119,-11],[12,-8],[9,0],[19,10],[10,2],[30,-3],[15,-8],[7,-1],[5,9],[-4,3],[11,8],[14,0],[14,-6],[23,-14],[43,5],[90,-22],[3,-5],[-1,-7],[-5,-7],[7,-7],[15,-9],[7,-8],[4,-14],[-3,-7],[-7,-6],[-5,-10],[0,-12],[4,-8],[1,-7],[-8,-10],[-22,-15],[-8,-9],[3,-2],[3,-4],[2,-4],[2,-6],[-8,-13],[-4,-4],[-5,-1],[-4,-1],[-5,-1],[-4,-6],[-5,-11],[-12,-18],[-8,-18],[-8,-22],[-2,-9],[1,-6],[2,-10],[0,-4],[-5,-3],[-11,-1],[-4,-2],[-13,-20],[-7,-8],[-8,6],[0,5],[1,6],[0,5],[-5,2],[-3,-2],[-4,-6],[-3,-7],[-2,-5],[0,-8],[5,-22],[1,-9],[-2,-8],[-2,-5],[-7,-7],[-2,-7],[-4,-14],[-2,-5],[-7,-7],[-45,-21],[-12,-2],[-1,-2],[0,-4],[0,-7],[-1,-6],[-2,-4],[-5,-9],[-3,-8],[-2,-8],[-2,-10],[0,-12],[-3,-24],[-7,-16],[-33,-35],[-6,-10],[-3,-12],[15,-19],[4,-8],[-17,-4],[-5,-6],[-3,-7],[-6,-7],[-5,-6],[-5,-3],[-25,5],[-5,-3],[-9,-14],[-5,-4],[-5,-1],[-49,-34],[-5,-1],[-16,0],[-1,-4],[3,-8],[-11,-6],[-21,-4],[-2,-4],[0,-7],[-4,-8],[-5,-4],[-8,0],[-13,4],[-12,7],[-4,0],[-2,-3],[-3,-2],[-2,0],[-4,3],[1,6],[1,2],[-9,4],[-17,-11],[-10,3],[0,1],[1,6],[0,3],[-1,2],[-3,2],[-13,4],[-12,11],[-13,8],[-7,11],[-7,14],[-2,13],[-1,6],[-3,5],[-6,7],[-2,3],[-1,2],[-3,-1],[-7,-13],[4,-3],[12,-15],[4,-7],[11,-33],[5,-9],[15,-21],[2,-6],[1,-5],[2,-4],[4,-2],[7,1],[3,-1],[4,-4],[-7,-3],[-27,3],[1,2],[5,6],[-5,3],[-10,0],[-4,1],[-4,4],[-9,15],[-3,3],[-6,3],[-4,1],[0,-3],[3,-4],[4,-2],[3,-5],[-2,-8],[1,-4],[1,-1],[0,-3],[-11,12],[-12,20],[-13,13],[-16,-10],[-7,6],[-9,16],[-9,9],[-5,2],[-5,-3],[1,-11],[-1,-18],[2,-11],[4,-9],[16,-24],[-7,0],[-9,12],[-14,29],[-18,24],[-10,10],[-8,-2],[2,-2],[1,-5],[2,-5],[0,-6],[-1,-8],[-3,4],[-4,12],[-5,8],[-21,22],[2,7],[2,4],[3,3],[3,2],[8,0],[5,1],[2,6],[-1,5],[-2,8],[-1,5],[0,6],[0,17],[0,5],[-2,4],[-4,7],[-4,4],[-2,-3],[-3,-11],[-1,-6],[1,-6],[0,-3],[-4,-2],[-14,4],[-5,0],[5,-9],[7,-3],[5,-5],[2,-13],[-4,-8],[-8,3],[-14,11],[-8,2],[-8,0],[-8,-3],[-14,-11],[-22,-9],[16,-8],[5,-6],[3,-3],[5,0],[2,4],[-2,10],[17,-1],[9,-3],[5,-8],[-7,-5],[-3,-7],[1,-9],[5,-8],[0,1],[6,-1],[2,-1],[0,-3],[1,-2],[0,-2],[6,-5],[6,-3],[0,-4],[-10,1],[-5,-2],[-4,-3],[2,-4],[0,-1],[0,-1],[0,-2],[6,-5],[14,-3],[6,-9],[2,-7],[0,-9],[-2,-7],[-4,-5],[-5,-2],[-13,2],[-6,0],[-7,-4],[-4,0],[-2,1],[-8,7],[7,4],[4,6],[1,9],[-5,9],[-7,6],[-6,2],[-3,-4],[3,-12],[-6,0],[-7,3],[-5,0],[-3,-11],[-6,7],[-9,18],[-6,8],[-7,3],[-8,1],[-8,-1],[-7,-3],[0,-4],[15,-5],[24,-28],[14,-12],[-3,-3],[-2,-1],[-3,-1],[-4,1],[8,-8],[2,-11],[26,-27],[8,-11],[1,-5],[0,-4],[0,-4],[-1,-5],[-1,-8],[-3,-1],[-7,3],[-31,0],[4,-4],[11,-7],[2,-5],[0,-7],[-4,-6],[-4,-5],[-3,-3],[2,-8],[-3,-3],[-9,-1],[-1,-3],[-8,-21],[3,-8],[3,-8],[-9,-3],[-12,-8],[-10,-3],[-7,9],[4,3],[9,2],[4,3],[-6,5],[-7,4],[-8,0],[-6,-4],[2,-1],[4,-4],[-12,-9],[-15,-3],[-14,3],[-12,9],[9,9],[-19,3],[-6,5],[9,-1],[5,1],[4,4],[-11,8],[-24,11],[-11,1],[1,-13],[-4,-5],[-6,-2],[-6,-4],[4,-4],[5,-2],[5,0],[5,2],[4,4],[2,4],[2,3],[4,0],[5,-4],[5,-10],[3,-13],[-1,-13],[-3,-7],[-4,1],[-6,6],[-19,-4],[-14,-10],[-4,-5],[-5,-1],[-46,-4],[-18,6],[-18,14],[-4,6],[-2,1],[-11,4],[-9,7],[-5,3],[-12,-4],[-11,2],[-10,6],[-13,10],[-4,2],[-12,0],[-5,1],[-5,6],[5,9],[6,-2],[5,-5],[6,-2],[-4,9],[-7,6],[-38,17],[-8,1],[-3,-1],[-9,-7],[-3,0],[-23,2],[-3,2],[0,6],[2,3],[3,2],[3,1],[-3,9],[-4,8],[-6,3],[-5,-5],[-5,-10],[-3,-4],[-42,-1],[-13,6],[-12,15],[6,6],[22,6],[0,4],[-26,8],[-4,-2],[0,-7],[1,-3],[-1,-2],[-2,-6],[-3,-5],[-3,-4],[-4,-2],[-3,-1],[0,-4],[1,-6],[-5,-1],[-12,3],[-11,0],[-4,1],[-7,6],[-31,9],[-21,-1],[-6,3],[-20,20],[-10,7],[-68,19],[0,15],[-10,8],[-12,3],[-6,1],[-4,-3],[-14,1],[-5,2],[-2,6],[-2,6],[-3,6],[-8,2],[-23,-6],[-8,6],[-8,11],[-11,8],[-41,12],[-15,10],[-13,3],[-9,4],[-9,6],[-7,9],[-10,16],[-5,4],[-14,9],[-4,5],[-2,11],[4,18],[-5,6],[-5,1],[-12,-3],[-6,4],[-8,13],[-5,4],[-4,-3],[23,-24],[2,-4],[2,-4],[2,-4],[1,-4],[1,-5],[-1,-13],[1,-2],[6,-5],[11,-19],[5,-5],[4,0],[3,-1],[2,-4],[1,-5],[-13,-6],[3,-3],[4,-2],[8,1],[0,-4],[-14,-5],[-47,1],[1,-6],[0,-5],[-1,-5],[-2,-5],[4,0],[9,3],[4,-3],[3,-5],[3,-11],[2,-6],[5,-8],[2,-5],[0,-7],[3,-4],[31,-19],[6,-1],[13,1],[10,-4],[17,-15],[10,-1],[-3,5],[-8,4],[-3,3],[0,6],[5,1],[16,-9],[9,0],[16,6],[0,4],[-19,0],[-5,2],[-8,8],[-5,2],[-3,3],[-9,18],[-16,16],[4,3],[1,1],[3,0],[-5,7],[-5,5],[16,11],[18,-10],[33,-29],[19,-4],[5,-4],[8,-10],[4,-3],[21,-4],[29,-17],[39,-5],[37,-29],[6,-2],[7,4],[7,11],[8,9],[9,0],[10,-5],[8,-10],[5,-25],[2,-4],[30,-3],[11,4],[4,-1],[2,-2],[6,-7],[3,-3],[23,-9],[7,-7],[-6,-3],[-13,-1],[-5,-4],[-6,-11],[3,-5],[5,-3],[3,-5],[-9,-3],[-21,-11],[-8,6],[4,3],[-4,10],[-5,-1],[-5,-6],[-3,-6],[-5,-15],[-3,-6],[-6,-4],[-35,-15],[-4,-5],[21,-16],[3,-1],[2,1],[2,12],[5,2],[17,-2],[2,1],[2,1],[3,2],[0,2],[0,3],[0,4],[1,3],[9,0],[13,-20],[7,0],[4,6],[3,12],[0,12],[-1,10],[8,7],[16,0],[7,7],[5,7],[3,2],[9,-2],[4,2],[11,16],[8,5],[16,5],[17,11],[8,3],[8,-1],[32,-22],[10,-13],[2,-2],[1,-3],[1,-8],[-1,-6],[-1,-6],[0,-5],[3,-7],[3,-4],[3,-2],[13,-1],[3,-3],[7,-8],[29,-18],[5,-11],[-2,-1],[-6,-7],[5,-7],[6,-2],[5,3],[6,4],[4,3],[41,-5],[6,-3],[13,-17],[6,-4],[5,0],[4,4],[3,6],[5,1],[8,-3],[8,-5],[9,-15],[40,-20],[-6,-4],[-8,1],[-33,17],[-6,2],[3,-10],[5,-6],[6,-4],[14,-3],[15,-11],[8,-3],[23,1],[5,-5],[2,-11],[-5,-5],[-8,-2],[-6,-3],[4,-7],[-1,-8],[3,-5],[5,-3],[5,-4],[-7,-8],[0,-5],[4,-4],[4,-8],[1,-5],[-1,-6],[0,-5],[-1,-4],[-1,-4],[1,-2],[0,-2],[-2,0],[-5,2],[-2,1],[-1,-3],[2,-6],[10,-3],[3,-3],[1,-7],[-2,-3],[-3,-3],[-1,-4],[1,-7],[10,-21],[-3,-1],[-7,-3],[4,-7],[9,-1],[5,-5],[-5,-2],[-4,-14],[-9,5],[-3,-4],[-3,-6],[-3,-6],[9,0],[-3,-7],[-5,-2],[-10,0],[-1,-2],[3,-5],[4,-6],[3,-3],[-4,-3],[-4,-2],[-9,1],[3,-8],[-3,-4],[-12,-4],[-57,7],[-6,-3],[-12,-14],[-5,-2],[-7,-2],[-6,-2],[-10,-9],[-3,-12],[-3,-8],[-26,-19],[-3,-1],[-21,-1],[-6,-3],[4,-4],[10,-4],[5,-5],[-12,-8],[-13,0],[-60,14],[-14,9],[-8,2],[-26,0],[-41,11],[-29,15],[-14,2],[0,-3],[1,0],[1,-1],[-2,-12],[4,-7],[6,-5],[3,-6],[-3,-9],[-8,-2],[-9,3],[-19,14],[-15,7],[-14,2],[-27,-6],[-7,-5],[-2,-8],[2,-11],[6,-6],[7,-6],[4,-6],[10,-18],[11,-12],[26,-12],[0,-5],[-5,1],[-5,3],[-4,0],[-5,-4],[4,-3],[21,-7],[65,-7],[20,-9],[2,-6],[0,-6],[0,-12],[-2,-6],[-2,-6],[-3,-5],[-9,-7],[-2,-5],[3,-6],[-5,-4],[-6,-1],[-12,1],[-19,8],[-18,-2],[-5,2],[-3,9],[3,5],[10,7],[-3,7],[-4,7],[-5,4],[-9,-10],[-12,3],[-5,-3],[9,-13],[-4,-7],[-7,1],[-8,3],[-7,0],[1,-3],[3,-7],[1,-3],[-22,-5],[-8,1],[-8,4],[-5,5],[-1,7],[6,12],[-6,7],[-3,-4],[-2,-7],[-2,-4],[-4,1],[-2,2],[-1,3],[-13,13],[-3,5],[-5,4],[-4,1],[0,-8],[3,-7],[6,-5],[4,-6],[-2,-11],[4,-2],[3,-2],[3,-5],[2,-7],[-4,-4],[-2,-3],[-2,-4],[0,-7],[2,-6],[4,3],[5,6],[1,3],[5,2],[1,-2],[-1,-8],[-1,-6],[-3,-1],[-3,-1],[-4,-5],[2,-3],[1,-3],[0,-2],[-1,-3],[1,-4],[0,-2],[0,-3],[-4,2],[-13,10],[-5,2],[-17,-2],[-9,3],[-3,-3],[-2,-10],[0,-10],[1,-4],[3,-8],[-2,-8],[1,-5],[4,-3],[5,0],[0,-4],[-5,-1],[-9,-6],[-6,-1],[-10,0],[-6,-1],[-5,-3],[7,-4],[18,0],[22,-11],[7,-2],[4,-3],[5,-7],[3,-7],[0,-3],[-1,-2],[-1,-4],[0,-4],[-1,-4],[-9,-6],[3,-5],[6,-4],[2,-3],[2,-6],[2,-12],[1,-5],[7,-8],[15,-10],[6,-8],[1,-4],[-7,2],[-16,11],[-12,-7],[-4,7],[-3,12],[1,11],[-20,12],[1,3],[0,1],[1,2],[1,2],[-2,6],[-3,7],[-3,6],[-5,3],[-3,6],[-2,1],[-2,0],[-4,-4],[-3,0],[-4,1],[-6,4],[-5,4],[-3,5],[-5,4],[-13,-3],[-10,7],[-52,12],[-34,15],[19,-14],[10,-5],[20,-4],[26,-22],[8,-3],[10,-1],[1,-2],[0,-4],[0,-4],[0,-2],[2,-1],[8,1],[9,-2],[9,-5],[9,-9],[5,-13],[-6,-2],[-1,-7],[-1,-9],[-4,-6],[-7,1],[-4,1],[-4,2],[-2,3],[-1,3],[-2,4],[-3,2],[-3,0],[-12,-4],[-10,4],[-5,0],[-4,-4],[12,-8],[-6,-6],[-8,-1],[-15,3],[-3,-1],[-3,-6],[-4,-1],[-2,-2],[-1,-6],[-2,-12],[12,-7],[5,-1],[15,6],[8,1],[8,-3],[7,-4],[-3,-9],[-6,-9],[-6,-8],[-6,-3],[-11,7],[-6,1],[-4,-8],[3,-1],[2,-2],[0,-4],[-1,-5],[-3,-4],[-3,-1],[-7,1],[2,0],[-6,6],[-3,2],[-3,0],[-3,-4],[0,-3],[2,-4],[1,-5],[-1,-10],[-2,-9],[-3,-6],[-5,0],[-5,5],[-10,24],[-5,5],[-7,4],[-7,3],[-6,0],[3,-5],[3,-4],[3,-5],[2,-6],[-34,8],[0,-4],[55,-41],[0,-4],[-42,2],[-6,-2],[15,-11],[4,-1],[3,-3],[3,-6],[3,-6],[3,-5],[-9,-2],[-7,2],[-44,25],[-29,9],[-5,-1],[6,-11],[23,-19],[6,-8],[-26,-1],[-5,-4],[-3,-11],[4,-4],[27,1],[3,-6],[3,-5],[3,-2],[34,-8],[-6,-4],[-6,-1],[-13,1],[0,-4],[4,-2],[7,-8],[3,-2],[16,0],[12,4],[4,-1],[6,-3],[1,-2],[-3,-10],[-2,-13],[-2,-5],[-3,3],[-3,4],[-3,2],[-17,1],[-10,4],[-10,7],[-5,1],[-5,-4],[6,-6],[4,-8],[4,-7],[8,-4],[16,6],[6,-2],[-36,-24],[-5,-2],[-10,-1],[-6,-2],[-47,-40],[-7,-8],[-13,-20],[-7,-8],[-2,0],[-4,4],[-3,4],[-4,4],[-1,-8],[-11,-24],[-5,-9],[-3,-3],[-6,-3],[-3,-2],[-13,-20],[3,-2],[2,-3],[0,-4],[-1,-3],[1,-6],[2,-5],[3,-4],[3,-1],[-7,-4],[-2,-1],[12,-7],[5,-1],[4,1],[3,1],[4,0],[3,-4],[9,-13],[1,-8],[-5,-5],[1,-6],[1,-2],[-7,-6],[-18,-9],[-8,-1],[-11,3],[-23,12],[-11,1],[5,-10],[12,-11],[6,-8],[0,-4],[2,-13],[0,-3],[3,-1],[2,-3],[1,-4],[1,-4],[-2,0],[-6,-4],[3,-10],[-8,-7],[-10,-7],[-5,-9],[16,0],[-5,-11],[-2,-6],[0,-7],[3,-8],[5,1],[6,4],[5,-1],[3,-9],[-2,-6],[-6,-4],[-4,-1],[-11,0],[-5,-1],[-5,-4],[-3,0],[-3,-3],[0,-5],[-5,-6],[-4,-9],[-2,-11],[-1,-12],[-2,-7],[-11,-22],[-4,-9],[-1,-7],[-1,-5],[-1,-4],[-2,-5],[-4,-3],[-9,-3],[-6,-8],[-6,-4],[-3,-4],[-1,-3],[0,-3],[0,-6],[-1,-2],[-3,-3],[-2,-1],[-7,-25],[-2,-13],[1,-9],[2,-13],[-3,-10],[-17,-25],[-4,-6],[-2,-5],[-1,-7],[1,-4],[1,-4],[-2,-7],[-5,-10],[-2,-6],[1,-3],[3,-3],[0,-6],[-2,-7],[-2,-4],[-14,-11],[-33,15],[-13,-8],[6,-5],[14,-6],[6,-5],[-7,-11],[-26,7],[-11,-4],[27,-8],[7,-6],[14,-33],[0,-5],[3,-8],[1,-3],[-1,-7],[-4,-12],[-1,-5],[-2,-9],[-9,-17],[-3,-12],[-7,-13],[0,-7],[2,-3],[2,-3],[2,-3],[2,-13],[0,-12],[-1,-10],[-3,-10],[-2,-2],[-3,-3],[-1,-3],[0,-5],[0,-1],[1,-2],[2,-8],[1,-5],[0,-5],[0,-7],[-4,-9],[-11,-6],[-4,-9],[1,-1],[3,-3],[-2,-3],[-1,-3],[0,-3],[-1,-3],[4,-4],[-7,-1],[-5,-4],[-1,-6],[1,0],[4,-6],[-4,-6],[-4,-10],[-2,-9],[6,-3],[-2,-9],[-2,-3],[2,-2],[1,-4],[1,-2],[-1,-15],[7,-27],[-4,-11],[5,-13],[1,-5],[-1,-7],[-2,-12],[-1,-5],[-1,-4],[-3,-10],[-2,-5],[3,-29],[0,-5],[-4,-2],[-3,-4],[1,-6],[3,-13],[0,-4],[0,-3],[1,-4],[3,-7],[3,-3],[2,-1],[3,-2],[2,-6],[-6,-3],[-2,-7],[0,-8],[-2,-6],[2,-6],[2,-1],[2,-1],[3,-3],[1,-4],[1,-2],[0,-3],[1,-5],[-1,0],[-1,-5],[0,-5],[3,-2],[2,-2],[2,-2],[1,-4],[1,-4],[-2,-4],[0,-4],[1,-16],[1,-2],[1,-2],[1,-5],[1,-7],[-1,-6],[-2,-4],[-3,-7],[4,-3],[5,3],[6,6],[5,2],[1,-1],[-3,-3],[-4,-3],[-1,-1],[-5,-9],[-3,-3],[-4,0],[2,-6],[0,-2],[-10,-5],[-3,-4],[2,-8],[-3,-7],[-1,-3],[-2,-2],[3,-3],[1,-4],[-1,-4],[-3,-5],[2,-4],[1,-5],[-1,-11],[-2,-2],[-1,-3],[-1,-4],[1,-2],[4,-7],[1,-3],[-1,-4],[-2,-10],[-1,-6],[-1,-20],[-1,-4],[-13,-8],[-19,4],[-16,-1],[-9,-19],[9,5],[42,4],[3,-3],[0,-2],[-1,-9],[0,-4],[1,-3],[1,-2],[0,-2],[-2,-5],[12,-2],[12,-6],[8,-12],[3,-20],[-1,-11],[-2,-9],[-7,-17],[-3,-4],[-2,-2],[0,-3],[1,-4],[0,-3],[-1,-8],[-3,-9],[18,24],[9,7],[12,-2],[17,-15],[9,-10],[8,-11],[4,-14],[5,-32],[4,-11],[11,-7],[10,4],[19,15],[-1,4],[0,1],[-1,3],[4,4],[3,11],[3,5],[4,4],[9,4],[4,1],[-1,-5],[-2,-4],[-2,-2],[-3,-2],[2,-6],[0,-6],[-2,-8],[-2,-10],[2,-9],[3,-5],[3,-3],[2,-5],[-1,-8],[-3,-8],[-5,-6],[-8,-6],[-3,-9],[-6,-18],[-3,-17],[6,-32],[-4,-24],[4,-19],[0,-7],[-3,-10],[-8,-12],[-2,-11],[0,-3],[1,-10],[0,-5],[0,-8],[-3,-14],[-1,-16],[-5,-26],[-2,-7],[2,-5],[6,26],[5,13],[5,6],[0,3],[5,21],[3,4],[3,3],[2,3],[-2,7],[8,14],[1,6],[0,5],[0,16],[-1,3],[-1,5],[0,38],[1,12],[0,6],[-1,6],[-1,5],[-1,8],[0,8],[1,6],[4,13],[14,23],[4,13],[-1,6],[-1,9],[2,9],[3,4],[3,3],[-3,9],[-4,9],[-3,8],[9,-6],[8,-1],[17,2],[48,-8],[5,0],[3,2],[6,8],[4,3],[4,-1],[4,-3],[4,-1],[4,2],[8,8],[4,2],[8,-1],[32,-15],[5,-1],[6,5],[11,1],[3,-1],[3,-10],[0,-12],[2,-10],[8,-4],[4,-1],[4,-2],[3,0],[3,5],[8,17],[3,5],[6,5],[25,5],[7,-1],[6,-4],[5,-9],[4,0],[1,-11],[5,-25],[1,-7],[-2,-8],[-1,-11],[2,-23],[1,-6],[2,-10],[1,-7],[-2,-14],[0,-6],[1,-9],[7,-22],[13,-32],[3,-21],[2,-12],[3,-9],[11,-22],[3,-10],[1,-13],[2,-9],[8,-16],[-1,-6],[4,-11],[3,-5],[3,-4],[7,-6],[4,-4],[2,-6],[-4,-5],[1,-4],[2,-5],[3,-6],[2,-16],[1,-6],[3,-3],[5,-6],[1,-15],[-1,-31],[11,-52],[3,-26],[-8,-16],[4,-3],[8,-1],[3,-4],[2,-6],[3,-14],[5,-15],[7,-30],[7,-12],[8,-15],[2,-7],[2,-10],[12,-33],[0,-6],[-1,-13],[1,-6],[2,-3],[9,-7],[3,-4],[2,-4],[1,-6],[1,-6],[2,-11],[2,-5],[3,-4],[3,-6],[2,-10],[2,-27],[6,-19],[0,-12],[-2,-26],[-3,-22],[-5,-18],[-24,-69],[-15,-34],[-19,-29],[-6,-17],[-5,-10],[-4,-3],[-11,-4],[-23,-13],[-11,-4],[6,-4],[38,12],[13,8],[39,46],[13,11],[59,17],[10,5],[3,-1],[4,-6],[-2,-5],[-4,-4],[-4,-2],[-6,-4],[-18,-32],[-4,-4],[-5,-2],[-9,-2],[-6,-3],[-8,-10],[-5,-4],[0,-4],[15,9],[22,6],[7,6],[25,31],[31,13],[42,10],[54,32],[78,32],[77,36],[49,21],[50,-2],[45,-19],[22,2],[7,-2],[20,-17],[7,-3],[15,-2],[7,-3],[6,-8],[2,-12],[18,-6],[15,-17],[26,-13],[3,-7],[1,-1],[23,-11],[4,-3],[19,-25],[7,-6],[25,-4],[13,-12],[70,-19],[17,-10],[8,-3],[25,3],[8,-3],[14,-11],[14,-4],[21,-14],[23,-2],[5,-4],[4,-6],[5,-5],[5,-1],[5,4],[5,2],[15,0],[8,0],[5,4],[3,1],[3,-1],[2,-3],[1,-8],[2,-1],[5,-1],[6,-2],[1,-5],[-6,-8],[10,-13],[22,-21],[10,-15],[8,-15],[4,-7],[11,-4],[17,-15],[6,1],[8,-8],[8,-12],[8,-15],[7,-9],[2,-1],[5,-2],[2,-3],[2,-4],[2,-4],[15,-16],[58,-36],[16,-5],[15,-11],[3,-4],[1,-7],[1,-2],[5,-20],[4,-8],[25,-34],[37,-76],[0,-4],[1,-8],[1,-9],[3,-3],[7,-5],[6,-11],[8,-19],[4,-4],[4,-2],[1,-3],[0,-9],[-2,-4],[-8,-16],[1,-8],[1,-9],[4,9],[3,9],[4,8],[8,3],[7,-1],[7,-3],[4,-6],[-1,-10],[7,-4],[23,0],[7,-4],[2,-10],[-4,-23],[13,8],[72,-20],[22,3],[7,-3],[-1,-2],[0,-2],[-1,-2],[-2,-2],[4,-3],[16,3],[6,-2],[16,-14],[11,-6],[11,-2],[5,-3],[10,-10],[28,-21],[58,-32],[23,-22],[68,-25],[21,-5],[18,-7],[9,-10],[12,-5],[9,-7],[8,-5],[10,-5],[10,-3],[4,-10],[9,-11],[11,-10],[8,-10],[7,-16],[9,-11],[6,-9],[18,-27],[32,-23],[16,-9],[31,-8],[7,-6],[3,-13],[-3,-15],[-6,-5],[-7,-2],[-7,-4],[-2,-5],[-2,-11],[-2,-5],[-3,-4],[-7,-5],[-4,-5],[-4,-11],[-6,-22],[-4,-10],[-18,-24],[-3,-10],[1,-3],[2,-8],[1,-5],[-1,-4],[-5,-15],[-4,-16],[1,-6],[4,2],[6,10],[4,11],[8,40],[3,10],[35,71],[13,15],[13,10],[15,6],[30,0],[92,-29],[16,2],[21,11],[10,3],[6,5],[54,9],[10,-1],[17,-9],[9,-2],[5,1],[34,26],[8,3],[7,-3],[12,-10],[26,-14],[10,-13],[2,-9],[-2,-7],[-1,-5],[5,-1],[2,2],[2,11],[1,3],[4,0],[3,-4],[3,-4],[3,-4],[4,0],[4,2],[3,0],[4,-4],[1,-5],[1,-6],[2,-5],[3,-2],[2,-3],[-2,-5],[-4,-8],[0,-7],[1,-5],[3,-4],[3,-5],[2,4],[-5,9],[1,7],[3,6],[0,5],[-5,12],[-1,6],[-1,10],[-3,6],[-6,2],[-12,2],[-4,3],[-4,4],[-7,9],[7,5],[31,-10],[21,-15],[5,-2],[12,2],[4,-1],[7,-5],[33,-6],[12,1],[3,-1],[4,-3],[5,-8],[3,-1],[7,1],[19,15],[14,6],[18,0],[15,-11],[7,-27],[-2,-4],[-2,-2],[-3,-5],[-1,-8],[-1,-3],[-6,-15],[6,3],[9,19],[5,7],[4,-1],[9,-6],[5,-2],[14,-1],[5,1],[20,15],[8,2],[7,-4],[15,-12],[7,-1],[-1,3],[-1,7],[0,3],[5,0],[4,-5],[3,-5],[3,-3],[6,0],[4,-3],[3,-4],[3,-7],[2,-2],[3,-2],[2,-2],[0,-3],[-1,-3],[0,-2],[1,-4],[4,-5],[12,-2],[5,-1],[4,-4],[-1,6],[-5,14],[8,8],[-1,8],[-6,10],[-5,11],[7,-3],[9,-18],[13,-9],[1,-11],[-2,-12],[-6,-20],[-2,-10],[2,-10],[6,-17],[0,-4],[-1,-4],[0,-7],[-1,-1],[-1,-2],[-2,-1],[0,-3],[0,-4],[1,-3],[1,-3],[3,-21],[1,-4],[2,-2],[7,-1],[3,-3],[3,-12],[-1,-13],[-16,-70],[-16,-82],[-17,-58],[-5,-31],[-5,-16],[-1,-6],[-1,-3],[-5,-8],[-2,-3],[2,-17],[-1,-3],[4,-3],[0,-6],[-1,-12],[0,-41],[1,-9],[2,-8],[3,-7],[11,-22],[1,-7],[-4,-8],[3,-3],[3,1],[3,2],[4,0],[3,-1],[3,-3],[16,-23],[4,-8],[18,-87],[4,-11],[2,-7],[3,-31],[3,-7],[2,-7],[-1,-16],[-4,-24],[-2,-8],[-10,-30],[-4,-6],[-2,-13],[-1,-15],[-2,-11],[4,-9],[0,-9],[-1,-9],[-1,-9],[1,-10],[2,-11],[3,-10],[8,-22],[4,-16],[9,-70],[0,-12],[-1,-7],[-6,-11],[-13,-16],[-4,-2],[-5,-1],[-5,-3],[-4,-5],[2,-7],[-9,-35],[-4,-19],[-3,-46],[1,-8],[3,-7],[1,-9],[-1,-8],[-4,-6],[8,-6],[10,-19],[11,-5],[3,-4],[3,-4],[2,-3],[12,-4],[5,-4],[18,-25],[15,-26],[3,-10],[-2,-8],[7,-12],[12,-40],[9,-9],[9,-5],[10,-14],[29,-59],[9,-14],[9,-5],[23,-27],[2,-7],[-1,-8],[-4,-11],[2,-10],[4,-25],[3,-5],[3,-3],[12,-15],[3,-6],[-29,7],[-7,-1],[-32,-22],[-4,-1],[-2,-10],[-3,-4],[-4,4],[-6,3],[-8,-3],[-8,-6],[-6,-8],[6,2],[3,3],[3,3],[2,-5],[-9,-12],[-8,-16],[6,1],[7,3],[7,6],[10,16],[7,3],[65,-1],[14,-12],[7,-17],[13,-37],[10,-14],[24,-8],[10,-12],[21,-17],[8,1],[4,5],[4,1],[6,-9],[6,-7],[15,-7],[7,-8],[1,-5],[4,-16],[7,-16],[1,-6],[3,-12],[6,-7],[14,-8],[2,0],[4,1],[2,-1],[1,-2],[0,-2],[0,-2],[0,-2],[10,-10],[3,-4],[8,-13],[10,-13],[4,-7],[9,-21],[3,-5],[3,-1],[3,-3],[5,-10],[3,-7],[1,-4],[-1,-4],[0,-7],[3,-12],[7,-25],[3,-19],[8,-34],[3,-7],[5,-10],[5,-8],[5,-3],[4,-6],[1,-13],[0,-25],[3,-23],[-1,-10],[-5,-4],[-6,-1],[-32,-20],[-12,-11],[-11,-15],[-10,-18],[-2,-4],[-3,-13],[-2,-5],[-3,-6],[-2,-3],[-5,-6],[-21,-13],[-6,-7],[-3,-6],[-7,-20],[-3,-4],[-16,-11],[-5,-6],[-4,-8],[-4,-9],[10,2],[5,3],[5,7],[2,-3],[1,-4],[0,-5],[-1,-3],[-7,-10],[2,-4],[10,13],[11,39],[8,17],[7,4],[15,2],[7,4],[9,9],[3,1],[3,2],[2,5],[2,5],[1,5],[18,19],[3,7],[3,11],[5,10],[11,14],[21,15],[12,15],[7,1],[37,-16],[7,-5],[8,-4],[17,1],[7,-3],[4,-4],[4,-10],[4,-3],[16,-4],[6,-3],[18,-29],[12,-14],[26,-21],[11,-14],[11,-35],[4,-6],[5,-3],[29,-38],[14,-25],[27,-51],[2,-8],[4,-16],[2,-7],[10,-14],[1,-6],[0,-9],[0,-7],[2,-6],[3,-4],[0,24],[-1,14],[-5,6],[-3,6],[-11,35],[-10,20],[-6,9],[-4,4],[-5,5],[-6,18],[-3,7],[-4,10],[-35,38],[-9,19],[-6,19],[-5,21],[-1,22],[4,23],[11,28],[4,19],[-3,16],[-2,7],[-1,10],[0,10],[1,8],[2,0],[12,12],[5,3],[6,14],[4,3],[17,5],[3,3],[0,10],[-3,15],[-4,16],[-4,12],[12,2],[13,12],[34,49],[6,3],[13,-15],[6,-2],[3,-5],[-4,-16],[-6,-19],[-1,-11],[3,-13],[2,-2],[23,-1],[4,1],[3,3],[3,4],[2,2],[4,0],[5,-7],[4,-7],[3,-7],[15,-16],[5,-8],[1,-6],[0,-15],[1,-7],[2,-7],[5,-11],[2,-7],[5,-39],[4,-11],[1,-7],[-1,-5],[-6,-9],[-1,-6],[1,-9],[2,-8],[12,-21],[3,-4],[15,-7],[-3,7],[-4,10],[-3,8],[-9,7],[-1,9],[0,10],[2,23],[1,4],[1,5],[5,9],[7,14],[3,4],[6,0],[-3,8],[-11,6],[-3,8],[2,9],[4,7],[5,5],[5,6],[6,16],[5,9],[11,7],[2,0],[15,0],[-6,12],[-19,-2],[-9,6],[-2,14],[0,18],[4,16],[4,9],[-3,2],[-7,0],[-4,2],[-2,4],[-5,14],[-3,3],[-7,1],[-7,4],[-4,8],[2,15],[-8,7],[-4,4],[-3,5],[-5,16],[-3,6],[-6,3],[3,10],[4,6],[5,3],[6,1],[2,-1],[6,-3],[3,0],[3,1],[7,6],[7,4],[5,7],[5,9],[2,9],[-2,7],[-8,13],[-2,11],[-5,14],[0,8],[6,4],[12,3],[23,11],[4,6],[3,16],[3,1],[2,-1],[2,3],[0,6],[-1,6],[-1,5],[-2,5],[11,-1],[6,3],[4,6],[-2,2],[-2,4],[-2,2],[6,6],[6,3],[6,5],[5,11],[1,5],[2,13],[1,6],[2,5],[4,9],[1,6],[-6,22],[2,6],[8,5],[8,1],[23,-10],[0,5],[-5,4],[-3,6],[-4,4],[-5,2],[-12,1],[-7,-1],[-5,-4],[-1,12],[3,9],[10,15],[3,16],[-2,6],[-4,6],[-3,11],[2,3],[3,6],[1,6],[-2,3],[-5,3],[-2,5],[1,6],[7,5],[1,6],[-1,5],[-2,3],[-12,4],[2,5],[2,3],[2,2],[0,6],[-2,6],[-3,5],[-4,3],[-3,2],[-13,-6],[-5,0],[1,10],[-5,4],[-5,-2],[-4,-4],[-5,-2],[0,3],[1,6],[1,3],[-4,0],[-7,4],[-4,1],[0,4],[5,0],[10,10],[5,2],[-2,4],[-3,4],[-3,2],[-3,2],[0,4],[6,0],[-3,8],[-1,8],[-5,-3],[-4,0],[-4,2],[-4,5],[7,15],[-1,7],[-6,3],[-10,0],[0,3],[7,1],[5,4],[2,6],[-4,10],[-5,2],[-8,3],[-5,4],[1,11],[4,4],[21,0],[6,4],[2,5],[0,8],[-1,12],[-5,-6],[-3,-2],[-3,0],[-3,1],[2,4],[23,35],[-4,0],[-21,-8],[-4,0],[-9,2],[-4,2],[-4,3],[-3,5],[-4,12],[-2,6],[-3,3],[7,7],[2,6],[0,11],[4,-4],[9,4],[4,-5],[2,3],[2,3],[1,3],[1,4],[-8,0],[-3,1],[-3,5],[-2,6],[-2,6],[-2,3],[-5,-1],[1,-2],[0,-1],[1,-1],[-7,-4],[-9,2],[-10,6],[-6,8],[5,2],[5,4],[6,6],[3,9],[-4,5],[-4,0],[-5,-1],[-4,0],[17,56],[-7,9],[1,4],[4,2],[6,6],[-2,5],[-1,3],[-2,2],[-3,2],[3,2],[7,3],[1,1],[0,7],[-3,3],[-3,1],[-3,-1],[5,7],[2,1],[0,4],[-3,1],[-4,2],[-3,2],[-3,4],[-2,5],[-1,2],[4,6],[1,7],[-3,6],[-3,5],[-2,5],[1,8],[4,7],[1,7],[0,6],[-2,6],[-2,5],[-3,1],[-1,4],[-4,16],[-1,5],[-4,1],[-4,-1],[-4,-3],[-3,-3],[-3,-3],[-2,2],[-1,3],[4,4],[0,4],[-7,5],[-3,7],[-3,7],[-5,9],[6,8],[7,5],[8,3],[3,0],[-2,-1],[-3,-2],[2,-5],[-2,-3],[5,-10],[7,-1],[7,4],[6,7],[-3,3],[-7,3],[-2,4],[-4,9],[-2,3],[-3,2],[4,8],[5,-2],[6,-7],[5,-3],[8,3],[3,7],[-3,7],[-7,3],[0,4],[1,5],[-3,6],[-5,4],[-4,1],[-8,-8],[-3,-1],[-5,-1],[-3,-2],[1,7],[2,6],[2,6],[2,6],[5,-5],[3,4],[1,6],[0,3],[-4,0],[-3,1],[-2,3],[-2,7],[3,0],[4,0],[3,3],[0,6],[-2,4],[-4,1],[-7,-1],[-7,2],[-13,5],[-7,1],[3,7],[5,2],[19,-2],[3,4],[2,9],[-6,2],[0,7],[4,20],[-2,1],[-2,1],[-3,6],[15,12],[-4,4],[-3,0],[-2,0],[0,4],[11,5],[10,-6],[10,-8],[11,-3],[-8,16],[-12,6],[-26,2],[2,13],[-2,9],[-5,4],[-7,3],[8,6],[8,0],[8,-2],[9,0],[-9,13],[-21,8],[-10,7],[17,-7],[9,-1],[4,8],[-5,0],[-9,4],[10,0],[-2,7],[-5,2],[-10,-1],[3,3],[3,2],[3,0],[3,0],[-1,2],[-1,2],[-1,2],[-1,2],[7,4],[23,-4],[-4,10],[-12,8],[-3,8],[-3,-2],[-18,12],[2,1],[0,1],[2,2],[-12,7],[-37,1],[-6,4],[7,5],[27,-5],[-1,12],[5,1],[7,-3],[6,3],[-4,4],[-1,5],[1,3],[4,-5],[1,3],[1,1],[0,2],[0,3],[-2,2],[-3,1],[-3,1],[-3,0],[3,5],[4,2],[9,1],[3,1],[4,8],[3,3],[-6,4],[-9,0],[-17,-4],[-14,-10],[-7,-1],[0,11],[-6,-3],[-4,-1],[-3,0],[-2,9],[-8,5],[-10,1],[-7,-3],[3,7],[4,6],[8,7],[0,4],[-3,5],[1,4],[4,-3],[4,-2],[4,2],[2,7],[-2,3],[-32,6],[-10,7],[4,6],[1,2],[3,0],[-3,6],[-3,2],[-8,0],[2,12],[-1,14],[-5,9],[-7,2],[1,2],[0,2],[1,2],[2,2],[-1,2],[-1,7],[0,3],[3,0],[4,0],[6,4],[0,4],[-11,4],[-4,0],[3,13],[1,8],[-1,4],[-3,2],[-2,7],[-2,6],[0,5],[-3,-1],[-2,1],[-2,1],[-2,3],[6,4],[-3,11],[-8,10],[-9,3],[0,5],[14,3],[6,4],[1,8],[-3,8],[-6,3],[-6,-2],[-6,-5],[2,-2],[1,-1],[1,-1],[2,0],[-7,-6],[-4,-2],[-4,0],[3,10],[5,8],[4,8],[-1,7],[-27,0],[11,6],[1,4],[-1,7],[-2,5],[-3,2],[-3,0],[2,-9],[-7,-3],[-18,0],[0,4],[6,1],[18,19],[4,2],[3,1],[3,1],[0,9],[-1,6],[1,7],[4,3],[-3,-4],[-1,-4],[2,-5],[2,-3],[3,-1],[6,7],[6,3],[7,5],[9,3],[3,2],[2,3],[4,2],[20,4],[5,6],[3,1],[13,1],[3,2],[9,11],[90,32],[5,3],[15,25],[6,5],[28,11],[13,10],[14,5],[13,8],[7,2],[7,4],[14,17],[7,-1],[15,12],[16,3],[4,3],[4,5],[14,10],[12,14],[3,2],[6,4],[23,28],[30,25],[-1,0],[12,4],[37,36],[20,9],[6,5],[29,56],[5,3],[6,3],[111,127],[20,30],[7,9],[7,10],[6,16],[1,7],[-2,0],[-3,-5],[-9,-4],[-8,-9],[-6,-1],[7,16],[33,44],[40,70],[17,19],[5,11],[2,5],[1,10],[1,5],[3,5],[4,3],[9,2],[11,10],[8,14],[7,18],[10,39],[1,16],[1,6],[7,37],[3,10],[9,23],[3,14],[1,15],[0,16],[1,12],[3,14],[1,14],[-3,14],[2,5],[-2,7],[-1,7],[0,6],[1,4],[-1,13],[0,37],[6,69],[-1,11],[2,20],[0,12],[-2,8],[0,10],[-3,24],[-2,25],[-4,25],[-1,24],[-3,21],[0,9],[1,13],[6,21],[0,9],[0,7],[-2,6],[-3,4],[-2,5],[-2,8],[-1,6],[1,17],[-7,47],[-19,78],[-2,8],[-4,3],[-2,3],[-4,16],[-2,5],[2,0],[1,0],[0,2],[0,2],[-5,2],[-6,16],[-8,35],[-9,23],[-2,9],[-1,37],[-14,26],[-10,26],[-3,4],[-2,4],[-4,8],[-3,9],[-1,6],[-2,7],[-9,11],[0,4],[-4,3],[-3,5],[-13,38],[-4,7],[-1,4],[-1,4],[-1,3],[-3,2],[-3,0],[-2,1],[-1,2],[-3,4],[-2,5],[-3,13],[-2,6],[-15,23],[-18,18],[-5,3],[-11,2],[-5,3],[-4,7],[-9,16],[-4,6],[2,0],[-7,0],[-20,12],[6,4],[5,1],[2,4],[-3,11],[-4,6],[-17,11],[-19,24],[-6,4],[-21,4],[-5,4],[-15,16],[-52,24],[-15,15],[-6,2],[5,14],[0,7],[-4,3],[-4,2],[-7,11],[-3,3],[-9,-2],[-4,1],[-2,7],[-3,6],[-16,17],[-18,9],[-3,5],[-2,5],[-8,21],[-16,25],[-11,9],[-5,-5],[3,-12],[10,-14],[17,-18],[-7,-5],[-7,2],[-8,7],[-5,9],[-3,3],[-3,1],[-2,2],[-2,12],[-1,4],[-3,4],[-3,1],[-13,-4],[-6,1],[-5,7],[-2,10],[2,9],[2,7],[-4,6],[4,3],[6,1],[5,2],[0,7],[6,3],[3,-3],[3,1],[2,4],[-2,9],[-2,6],[-3,5],[-11,12],[-3,3],[0,5],[0,9],[2,4],[4,-2],[3,-5],[1,-2],[3,2],[2,6],[0,8],[0,8],[-2,7],[-2,5],[-5,10],[-4,14],[-2,12],[-1,9],[0,4],[2,4],[2,8],[-7,1],[-2,7],[4,7],[9,-3],[5,-8],[5,-11],[5,-8],[6,-2],[-2,15],[4,8],[8,5],[5,1],[9,-3],[1,-4],[-2,-8],[-2,-12],[2,-3],[3,2],[9,5],[1,4],[0,5],[0,4],[2,8],[6,8],[11,14],[-9,-2],[-5,-2],[-5,-4],[0,2],[-1,0],[-1,2],[4,6],[4,4],[3,5],[3,9],[-1,1],[-2,3],[-1,5],[0,4],[1,3],[3,3],[3,3],[1,1],[3,-4],[5,-5],[5,-1],[2,6],[-1,6],[-5,20],[6,3],[6,-12],[7,1],[7,8],[1,9],[-3,10],[-5,9],[5,4],[9,-4],[5,4],[-2,7],[-1,15],[-3,7],[9,10],[21,10],[9,10],[5,4],[12,1],[8,6],[16,8],[-5,6],[-10,3],[-6,3],[7,4],[17,0],[7,4],[5,8],[-1,6],[-10,10],[8,8],[28,13],[-3,2],[-7,2],[-3,4],[-1,-5],[-2,-3],[-2,-1],[-3,4],[-4,0],[-1,0],[0,2],[-1,6],[0,3],[-5,3],[-7,-3],[-10,-11],[-5,-2],[-6,-2],[-4,2],[-2,8],[2,10],[5,6],[6,3],[6,0],[0,4],[-10,17],[11,14],[29,18],[2,5],[-1,10],[2,7],[3,26],[-3,6],[-7,0],[-4,5],[-5,12],[-3,7],[-1,7],[4,-1],[4,1],[4,3],[3,5],[-5,5],[-4,3],[20,-4],[3,-2],[4,-11],[3,-3],[11,0],[7,2],[4,4],[3,5],[2,-1],[2,-5],[3,-5],[18,-17],[7,-14],[-2,-17],[8,-11],[12,-4],[24,-2],[0,4],[-20,6],[-11,7],[-7,11],[2,7],[-1,11],[-2,11],[-3,8],[-5,4],[-18,4],[0,3],[1,1],[1,0],[-2,0],[4,3],[4,1],[4,2],[3,6],[-4,1],[-4,5],[-3,6],[-4,4],[3,9],[4,-1],[4,-5],[4,-3],[7,2],[2,5],[1,6],[2,8],[5,6],[6,2],[24,-2],[6,1],[3,5],[-17,40],[-2,11],[-3,9],[-7,4],[-6,3],[-2,4],[4,4],[12,0],[4,2],[-2,4],[-2,3],[-3,2],[-3,-1],[6,8],[5,5],[7,2],[7,1],[-5,5],[-5,3],[6,5],[15,4],[6,-1],[0,4],[-5,0],[-7,2],[-6,4],[-3,7],[8,0],[11,4],[10,7],[5,9],[-7,-1],[-25,-13],[-7,0],[-5,4],[1,10],[-3,3],[-4,1],[-3,1],[-4,-1],[-2,-3],[-3,-7],[-1,-2],[-17,4],[-22,0],[-2,1],[-4,6],[-2,1],[-13,0],[3,5],[9,7],[3,4],[-2,3],[-2,3],[-2,7],[12,9],[7,2],[5,-5],[2,-1],[4,1],[3,2],[2,2],[3,0],[15,-2],[0,4],[-20,11],[-6,5],[-9,12],[-4,9],[-3,8],[13,-2],[7,1],[5,4],[-17,23],[-6,5],[-3,2],[1,3],[6,8],[-6,-1],[-10,-9],[-5,-2],[-2,4],[2,9],[6,20],[-4,7],[-2,3],[-5,3],[0,3],[0,4],[0,3],[-6,5],[-12,4],[-5,4],[-8,13],[1,13],[5,12],[7,11],[29,22],[8,10],[0,3],[1,7],[1,4],[3,3],[37,-1],[-6,7],[-7,5],[-23,5],[-8,0],[-3,-2],[-7,-6],[-3,-1],[-13,-2],[-6,1],[-23,20],[-5,8],[-12,22],[0,4],[5,3],[15,18],[11,9],[5,5],[8,14],[13,13],[5,3],[-6,9],[-11,1],[-21,-5],[7,8],[58,32],[0,4],[-14,-2],[-93,-51],[2,7],[2,6],[6,11],[-6,4],[-25,-4],[25,21],[-11,4],[-12,-3],[-23,-14],[-9,0],[-33,-8],[8,39],[1,6],[7,3],[5,7],[8,18],[20,21],[3,6],[2,6],[32,39],[5,8],[2,2],[4,0],[7,0],[4,2],[0,4],[-1,7],[0,7],[6,34],[1,6],[2,3],[4,11],[3,3],[15,4],[2,10],[-4,6],[-12,8],[2,6],[3,5],[2,5],[1,8],[-1,4],[-4,7],[-1,4],[0,31],[-1,15],[-2,15],[-8,32],[3,5],[7,-2],[3,-3],[4,-10],[7,-4],[6,5],[-2,15],[21,0],[10,3],[7,9],[-24,14],[-9,11],[3,16],[4,4],[5,2],[5,0],[10,-10],[25,-4],[-6,13],[-13,8],[-24,4],[3,6],[4,1],[5,-1],[5,1],[0,4],[-8,4],[-24,0],[-6,5],[-9,19],[-4,5],[-2,5],[-8,21],[-2,0],[-4,-6],[-35,2],[-8,4],[-6,8],[-4,10],[-1,6],[0,7],[1,8],[-2,7],[-1,2],[-1,2],[-2,4],[-1,5],[-2,11],[-1,5],[-2,6],[-5,11],[-4,10],[-2,9],[1,9],[3,12],[-2,8],[-2,12],[-2,11],[-9,10],[-3,12],[-1,15],[-1,41],[-1,12],[-3,11],[-2,12],[2,13],[3,14],[2,11],[-4,25],[0,14],[7,6],[3,1],[2,4],[1,6],[0,7],[2,6],[21,26],[4,3],[9,0],[12,6],[5,8],[3,2],[5,1],[29,25],[5,3],[14,0],[8,3],[3,7],[5,16],[12,9],[21,9],[4,6],[6,13],[3,5],[6,4],[18,-4],[2,-2],[2,-10],[1,-4],[3,-2],[2,0],[1,2],[3,0],[22,-4],[7,0],[2,-3],[21,-1],[2,-1],[3,-2],[2,-3],[1,-4],[1,-2],[2,1],[4,3],[10,1],[3,-1],[3,-3],[2,-3],[2,-3],[7,9],[6,4],[7,2],[6,-2],[4,-4],[3,-4],[3,-3],[43,-7],[6,-2],[5,-6],[4,-4],[11,-2],[5,-5],[-2,-3],[7,-7],[9,-2],[17,1],[20,-14],[17,-3],[27,-14],[24,-5],[8,-6],[11,-1],[5,-2],[2,-5],[2,-12],[1,-3],[4,-2],[4,1],[4,3],[4,2],[4,-2],[5,-5],[3,-2],[4,2],[9,6],[5,1],[3,-2],[6,-11],[17,-6],[7,-6],[47,-10],[19,-14],[0,-4],[-35,-17],[-10,-14],[-5,-5],[-11,-2],[-5,-5],[-3,-5],[-15,-13],[17,0],[5,3],[11,11],[11,5],[16,12],[3,4],[26,13],[22,30],[7,4],[39,9],[43,-14],[7,-5],[2,-8],[-1,-10],[-2,-14],[5,2],[9,16],[5,3],[-2,0],[11,4],[13,-3],[32,-20],[14,-18],[14,-13],[2,-3],[1,-2],[2,-10],[3,-3],[24,-17],[21,-7],[11,-1],[0,4],[-7,3],[-15,14],[-13,6],[-16,18],[-4,7],[0,9],[4,11],[5,9],[5,4],[80,0],[7,3],[4,4],[2,3],[2,5],[4,2],[9,3],[6,7],[5,15],[9,4],[4,2],[4,2],[7,-7],[5,-1],[5,1],[5,1],[14,15],[19,5],[6,4],[4,5],[7,17],[4,8],[10,6],[5,8],[3,9],[2,4],[34,5],[15,5],[7,0],[6,-5],[4,-8],[11,-27],[6,-11],[5,-3],[6,1],[8,-1],[4,-3],[2,-3],[2,-3],[2,-3],[5,-2],[4,2],[3,2],[5,2],[8,-4],[6,-8],[5,-10],[6,-7],[19,-4],[11,-5],[1,-9],[-2,-12],[4,-10],[32,-27],[2,-5],[2,-6],[2,-5],[4,-2],[10,-2],[12,-5],[10,-7],[9,-10],[-3,-6],[-3,-2],[-4,-2],[-3,-2],[34,-4],[11,-4],[0,4],[-11,11],[5,4],[14,5],[6,0],[4,-3],[9,-11],[16,-6],[2,-9],[-4,-11],[-8,-13],[11,1],[5,-2],[3,-7],[-4,-2],[-1,-4],[1,-5],[4,-5],[-2,-8],[0,-11],[-1,-10],[-4,-4],[-14,-4],[-4,-4],[-1,-3],[1,-11],[0,-10],[-1,-5],[-29,-40],[11,0],[7,7],[10,17],[8,5],[0,-20],[9,-17],[9,-5],[-1,17],[-4,15],[-4,17],[1,16],[7,13],[2,-1],[7,-6],[23,-5],[37,-21],[34,-4],[8,-10],[2,-6],[1,-5],[1,-5],[3,-6],[10,-11],[3,-5],[-5,0],[-16,-5],[4,-2],[2,-1],[0,-4],[-7,-1],[-4,-7],[1,-10],[4,-7],[4,-1],[3,1],[3,3],[6,8],[3,0],[18,-7],[5,-5],[4,-7],[1,-5],[0,-5],[1,-4],[5,-3],[3,-3],[2,-4],[1,-4],[-3,-10],[-5,-11],[-11,-16],[-6,-5],[-6,-2],[-6,1],[-20,7],[-12,1],[-9,-9],[-7,-21],[16,18],[6,2],[29,-7],[10,0],[3,1],[10,6],[3,1],[9,-1],[3,1],[2,4],[1,6],[1,7],[1,6],[2,3],[3,2],[1,4],[2,8],[-1,4],[-2,3],[-2,5],[-5,6],[-1,4],[5,2],[26,-8],[15,-9],[13,-3],[3,-2],[5,-5],[16,-6],[6,-3],[20,-22],[3,-7],[-6,0],[5,-3],[4,-5],[3,-8],[-2,-8],[-3,-1],[-11,5],[-5,-1],[-1,-4],[0,-4],[-3,-3],[-15,-5],[-31,2],[-15,-5],[3,-6],[5,-1],[10,3],[2,-3],[2,-5],[-1,-6],[-4,-3],[0,-4],[7,-5],[3,-2],[4,-1],[-6,-10],[-12,-8],[-22,-6],[0,-4],[10,-4],[16,-1],[17,-7],[33,4],[9,-4],[-12,-9],[-5,-1],[-3,-3],[-1,-4],[-3,-4],[-10,-4],[-32,4],[5,-3],[2,-1],[0,-4],[-5,-3],[-2,-1],[5,-4],[6,-1],[12,1],[5,-2],[10,-6],[6,0],[-3,-9],[-5,-7],[-10,-8],[0,-4],[9,-6],[28,-11],[-6,-14],[-2,-8],[-2,-10],[4,2],[6,8],[3,2],[3,-3],[2,-4],[2,-5],[1,-4],[-5,-15],[-2,-7],[2,-3],[6,1],[4,1],[5,3],[3,3],[-4,8],[-3,8],[0,9],[4,8],[6,4],[6,-3],[5,-8],[2,-11],[2,-6],[14,-21],[1,-4],[5,-8],[3,-1],[-3,13],[27,4],[12,7],[5,0],[-2,-11],[3,-6],[4,-8],[3,-2],[2,10],[3,1],[16,-9],[4,0],[7,4],[9,0],[23,-9],[5,-6],[3,-8],[-4,-12],[26,1],[7,-4],[2,-4],[3,-2],[4,-2],[4,0],[4,1],[0,4],[-3,4],[-3,2],[6,8],[10,-4],[18,-15],[0,-5],[-2,-1],[-5,-7],[5,-3],[18,3],[13,-11],[6,-1],[0,5],[-4,1],[-2,4],[-2,4],[-2,6],[3,0],[4,1],[3,-1],[-1,2],[-1,1],[0,2],[0,3],[4,3],[5,0],[6,-3],[4,-3],[0,-2],[1,-8],[1,-3],[2,-2],[9,-1],[-2,8],[-2,5],[-1,5],[3,6],[2,-3],[2,-1],[4,-1],[-3,8],[-1,2],[-2,3],[0,4],[7,-1],[10,-11],[6,0],[-1,9],[2,7],[4,3],[4,-1],[3,-2],[9,-4],[4,-7],[2,-2],[5,0],[3,3],[4,4],[4,2],[9,0],[3,-3],[-2,-6],[4,-2],[4,0],[3,-1],[1,-5],[-2,-2],[-7,-6],[-3,-3],[-2,-11],[3,-7],[6,0],[7,6],[2,-5],[-4,-4],[-1,-6],[3,-10],[1,-4],[1,-1],[1,-1],[0,-4],[0,-4],[-1,-3],[0,-3],[-2,-7],[-1,-4],[2,-2],[0,-1],[2,-4],[0,-4],[0,-3],[-3,-4],[-14,-4],[0,-4],[21,0],[6,-4],[-3,-10],[2,-5],[5,-1],[13,0],[2,0],[2,-3],[4,-8],[2,-1],[7,-8],[5,-3],[4,4],[3,6],[9,9],[2,8],[-6,-2],[-10,-8],[-6,-2],[-3,3],[5,7],[7,6],[3,2],[7,11],[11,12],[12,9],[10,2],[1,-22],[10,-7],[11,7],[3,18],[-3,7],[-5,9],[-3,9],[1,10],[1,4],[1,13],[0,5],[2,6],[4,6],[2,5],[0,4],[-1,5],[1,5],[5,2],[3,2],[6,8],[4,2],[8,-1],[6,-4],[4,-6],[4,-9],[10,-32],[3,-5],[3,-5],[5,-12],[2,-13],[0,-11],[4,0],[11,-4],[-1,-7],[-4,-13],[0,-8],[1,-8],[3,-14],[1,-4],[-3,-15],[-8,-9],[-9,-5],[-17,-3],[-19,-11],[-8,-8],[-12,-18],[-3,-3],[-4,-1],[-10,-6],[-4,-4],[3,-5],[5,-9],[2,-11],[-1,-10],[-3,-10],[4,-3],[5,-2],[2,-10],[-2,-10],[-6,-6],[-33,-12],[-6,-6],[2,-4],[7,-16],[10,-11],[3,-7],[-2,-9],[-4,-7],[-1,-6],[1,-4],[7,-1],[3,-3],[1,-15],[3,-6],[-2,-8],[-3,-9],[-4,-8],[-5,-6],[1,-4],[4,-6],[2,-1],[7,-1],[2,-2],[11,-22],[2,-4],[3,-8],[11,-4],[4,-6],[-3,-7],[-8,-11],[-3,-7],[15,0],[1,-3],[-2,-6],[-2,-11],[0,-11],[0,-10],[-1,-8],[-5,-4],[1,-10],[-6,-5],[-13,-1],[-3,-2],[-2,-8],[-3,-2],[-3,2],[-11,10],[-9,4],[-5,-1],[-4,-8],[-1,-17],[5,-4],[9,-5],[5,-6],[-6,-8],[-7,-1],[-22,9],[-110,13],[-11,4],[0,-4],[2,-2],[5,-6],[-5,-4],[-68,-6],[-7,1],[-5,4],[-10,10],[-95,33],[-11,-6],[31,-7],[11,-12],[6,-3],[15,-4],[10,-5],[14,-3],[40,-19],[27,-4],[20,11],[6,1],[5,-1],[8,-5],[5,-2],[26,6],[4,-2],[13,-12],[17,-6],[17,-1],[28,7],[24,-2],[24,6],[10,0],[4,-6],[0,-14],[-2,-9],[-4,-4],[-7,1],[12,-11],[37,-13],[8,-7],[-1,-2],[-8,-10],[-2,-6],[0,-5],[1,-5],[0,-4],[-3,-9],[-1,-6],[2,-3],[4,-1],[4,-2],[4,-2],[4,-4],[-5,-4],[-6,-13],[-10,-5],[-6,-11],[-4,-3],[3,-3],[3,-1],[6,0],[3,-1],[1,-2],[1,-3],[2,-2],[16,-2],[3,-2],[2,-16],[-6,-16],[-9,-12],[-7,-4],[-9,-3],[-9,-7],[-9,-10],[-16,-27],[-1,-5],[-1,-7],[-1,-2],[0,-1],[3,-4],[3,-1],[11,1],[-2,-7],[2,-3],[4,-3],[4,-3],[1,-4],[3,-6],[2,-7],[1,-7],[-3,-2],[-2,-3],[-2,-5],[0,-7],[8,0],[2,-2],[0,-4],[-3,-8],[-29,-13],[-2,-7],[0,-8],[4,-6],[5,-1],[27,1],[2,1],[1,3],[1,2],[2,2],[2,1],[6,6],[3,1],[11,0],[22,16],[7,0],[7,-2],[6,-6],[5,-8],[-4,-8],[3,-4],[6,1],[11,11],[7,1],[5,-6],[2,-13],[-1,-2],[-3,-7],[-1,-7],[5,-3],[1,-3],[2,-6],[1,-9],[-3,-8],[-6,-5],[-8,-2],[-5,3],[-8,12],[-2,2],[-4,0],[-2,-3],[0,-4],[0,-12],[1,-3],[0,-2],[-3,-4],[-3,-2],[-3,1],[-3,3],[-2,2],[-1,4],[0,5],[-1,4],[-4,3],[-3,-1],[-22,-26],[-4,-9],[3,-9],[-2,-2],[0,-2],[0,-3],[2,-5],[-2,-4],[2,-6],[5,-5],[4,-1],[2,6],[1,2],[1,2],[1,2],[2,2],[3,4],[2,-3],[3,-7],[2,-3],[1,-1],[0,-2],[3,-2],[1,2],[5,5],[2,1],[5,-1],[4,-2],[3,-5],[3,-8],[-14,-13],[-6,-10],[-4,-18],[-4,3],[-4,5],[-2,5],[-3,7],[-1,5],[-2,3],[-5,1],[11,-82],[4,-20],[0,-4],[-5,-9],[-3,-4],[-3,3],[-2,4],[-4,3],[-3,0],[-2,-7],[0,-11],[-2,-14],[-4,-12],[-4,-5],[-21,-9],[-7,0],[-5,8],[-10,37],[8,10],[4,6],[2,8],[-1,11],[-2,5],[-2,-3],[-1,-9],[-3,2],[-2,2],[-2,4],[-1,5],[4,15],[-7,12],[-8,3],[-2,-10],[-8,6],[-12,38],[-7,9],[-4,-5],[1,-9],[3,-19],[-1,-10],[-2,-7],[-3,-4],[-3,-3],[10,-2],[11,-9],[5,-16],[-4,-22],[2,-6],[2,-10],[1,-10],[-1,-7],[-4,0],[-5,5],[-6,12],[-3,6],[-3,4],[-4,2],[-5,0],[4,-17],[2,-3],[0,-5],[-19,-10],[-6,-2],[-11,2],[-4,-2],[-3,-2],[-5,-8],[-3,-2],[-18,-5],[-21,4],[-5,-3],[-6,-8],[15,4],[8,-1],[6,-9],[3,-3],[22,1],[1,-2],[2,-8],[2,-2],[5,1],[8,5],[7,6],[4,8],[3,2],[6,3],[1,-3],[-1,-7],[-3,-11],[0,-10],[1,-15],[3,-9],[5,4],[5,9],[6,4],[5,0],[12,-6],[1,-3],[-2,-6],[-2,-5],[-3,-4],[-4,-3],[-3,-1],[-2,-2],[-5,-9],[-2,-3],[1,-5],[3,-5],[4,-8],[4,-6],[6,-5],[5,2],[2,11],[2,7],[11,14],[3,10],[6,12],[1,1],[1,4],[1,2],[2,1],[4,-4],[2,0],[5,2],[3,8],[1,5],[0,10],[2,-1],[6,13],[12,9],[22,10],[19,22],[2,9],[4,8],[5,7],[5,3],[3,0],[5,3],[7,2],[7,7],[7,3],[19,-3],[17,4],[41,0],[-2,-3],[-1,-6],[-1,-3],[27,-2],[30,26],[4,0],[2,-2],[1,-3],[3,-3],[6,-3],[24,-3],[8,-4],[21,-18],[9,-14],[2,-3],[25,-5],[2,-3],[1,-6],[2,-5],[6,-6],[2,-4],[2,-7],[-1,-6],[-5,-10],[-2,-6],[0,-13],[1,-7],[2,-2],[10,-9],[2,-4],[0,-10],[-5,-22],[0,-12],[4,-7],[12,5],[5,-6],[0,-12],[-4,-11],[-1,-8],[5,-6],[6,2],[11,12],[6,-1],[-6,-23],[-2,-14],[1,-11],[2,-5],[1,-7],[0,-7],[-5,-5],[-1,-5],[0,-13],[-5,-25],[-20,-60],[-6,-39],[-2,-6],[-1,-3],[0,-7],[1,-6],[1,-2],[-1,-8],[-3,-5],[-6,-6],[-28,-41],[-12,-7],[-55,-11],[-36,-22],[-34,-9],[-3,-5],[-2,-5],[-3,-5],[-12,-10],[-1,-2],[-26,-10],[-23,-22],[-41,-54],[63,59],[5,8],[5,6],[19,9],[25,19],[54,19],[19,12],[22,3],[39,13],[14,11],[3,5],[1,5],[2,5],[1,5],[4,3],[8,4],[3,3],[5,12],[3,7],[1,7],[0,26],[1,14],[3,12],[4,6],[7,3],[3,9],[0,11],[0,9],[2,13],[4,13],[9,21],[0,3],[-1,7],[0,5],[1,3],[1,2],[2,5],[1,5],[0,4],[-1,36],[0,5],[3,3],[8,16],[4,5],[3,-4],[6,-3],[6,-1],[6,0],[5,2],[1,2],[-1,6],[0,10],[6,16],[9,-5],[6,-15],[-4,-12],[0,-4],[4,-3],[5,-1],[7,0],[5,-8],[-1,-8],[-4,-10],[-2,-9],[-2,-24],[0,-4],[1,-3],[0,-2],[2,-3],[1,-5],[0,-4],[0,-3],[0,-2],[2,-5],[10,-17],[1,-3],[0,-10],[-2,-11],[-4,-11],[-4,-9],[-24,-29],[-5,-3],[-22,-28],[-12,-34],[-1,-9],[2,-6],[6,6],[9,18],[4,5],[10,7],[5,5],[2,5],[5,23],[6,14],[7,8],[9,5],[9,2],[-1,13],[6,11],[12,12],[-5,12],[-1,10],[1,38],[0,5],[2,5],[7,15],[0,4],[0,9],[0,3],[4,4],[5,-1],[4,-3],[6,-6],[1,-1],[1,-3],[0,-4],[1,-1],[6,-3],[3,-9],[-5,-11],[-4,-13],[5,-14],[-11,-15],[-1,-8],[4,-13],[-1,-2],[-3,-6],[5,2],[6,-1],[5,-4],[4,-7],[3,-10],[1,-9],[-2,-9],[-11,-29],[-2,-18],[2,-19],[6,-22],[-5,-27],[-3,-7],[-4,-8],[-4,-11],[-3,-11],[0,-13],[2,-3],[2,-4],[3,-2],[3,1],[1,5],[-1,7],[-2,10],[1,15],[4,9],[10,15],[4,10],[1,10],[-2,9],[-4,9],[0,12],[4,13],[10,22],[4,15],[6,15],[2,3],[2,0],[4,0],[2,2],[10,17],[5,7],[5,6],[8,1],[11,-2],[10,2],[8,22],[11,6],[17,3],[4,3],[4,4],[6,12],[6,5],[5,-3],[5,-5],[3,-4],[4,1],[3,1],[3,4],[3,7],[1,7],[-1,4],[-2,5],[-2,8],[11,0],[5,3],[5,6],[10,24],[1,6],[5,6],[11,1],[7,-8],[-4,-22],[7,-3],[3,-2],[2,-5],[1,-4],[1,5],[2,7],[0,2],[8,9],[3,8],[-2,12],[27,0],[14,-4],[7,0],[5,4],[-12,16],[-3,9],[9,4],[4,3],[0,7],[-1,9],[0,8],[3,8],[4,7],[4,8],[-1,8],[-1,6],[-1,8],[1,5],[3,-3],[4,-1],[2,7],[3,17],[7,5],[9,0],[7,2],[5,13],[-7,3],[-2,3],[-2,6],[4,4],[4,9],[0,10],[-3,5],[3,7],[5,5],[6,3],[5,2],[0,1],[2,2],[2,3],[2,2],[2,-1],[4,-2],[4,-2],[0,-2],[-1,-3],[1,-3],[14,-17],[12,-5],[5,-7],[7,-15],[4,-5],[14,-9],[5,-2],[3,-3],[2,-6],[1,-10],[1,-9],[3,-7],[3,-8],[5,-5],[4,1],[6,4],[5,-1],[3,-4],[-2,-9],[4,-3],[9,-2],[4,-3],[2,-7],[-1,-8],[-3,-8],[-3,-8],[-1,-2],[-2,0],[-1,-1],[0,-5],[-1,-3],[-1,-5],[-2,-4],[-5,-5],[-2,-9],[-1,-8],[0,-4],[1,-7],[4,-13],[2,-16],[-1,-13],[-6,-8],[-15,-9],[-6,-12],[5,-14],[3,-4],[4,2],[2,7],[1,10],[2,9],[4,7],[6,3],[4,0],[4,2],[3,7],[1,4],[-1,6],[0,4],[1,3],[7,3],[2,0],[-1,10],[-6,4],[-7,2],[-4,5],[2,7],[5,9],[11,15],[3,1],[2,4],[0,6],[1,6],[0,5],[1,4],[2,4],[4,2],[9,-6],[4,4],[-8,7],[-1,2],[-1,1],[-3,15],[0,3],[-6,7],[-6,2],[-5,3],[-2,12],[0,4],[-5,8],[-15,1],[-7,4],[1,7],[0,13],[0,11],[-2,5],[-14,9],[-4,4],[5,5],[14,35],[4,7],[2,1],[2,-2],[11,-19],[8,9],[23,-5],[9,5],[5,4],[3,4],[1,5],[-2,3],[-23,2],[-14,6],[-8,6],[-5,8],[0,7],[11,5],[6,5],[14,4],[3,2],[2,10],[-4,10],[-5,9],[0,9],[5,0],[31,-19],[14,-16],[5,-10],[3,-2],[2,5],[0,7],[-1,7],[-2,4],[-2,4],[-3,3],[-26,15],[2,7],[4,2],[9,-1],[-3,3],[-8,5],[7,1],[7,3],[12,9],[0,-4],[8,0],[14,-20],[27,-15],[5,2],[-3,8],[-4,5],[-5,2],[-4,1],[-4,2],[-9,15],[4,3],[10,7],[4,2],[5,-1],[3,-1],[7,-6],[9,-5],[26,-3],[8,4],[0,4],[-8,7],[-21,-1],[-12,12],[-12,5],[-5,1],[-1,2],[-1,4],[-1,3],[-2,-3],[-2,-4],[0,-3],[-1,-3],[-2,-4],[-4,-3],[-6,-3],[-7,0],[-4,2],[-3,6],[-4,18],[-12,22],[-2,4],[0,10],[2,6],[3,4],[4,3],[-5,6],[-4,2],[-4,3],[-4,9],[3,6],[-3,7],[1,6],[0,3],[1,2],[3,0],[13,-4],[8,-12],[16,-33],[0,11],[-5,25],[3,5],[1,-1],[2,-3],[2,-3],[1,-1],[3,1],[1,2],[1,3],[2,4],[3,2],[9,-6],[6,2],[0,4],[-6,5],[-8,13],[-4,3],[-3,4],[-2,12],[-2,13],[0,9],[6,7],[13,-10],[39,-47],[4,1],[-13,35],[-6,1],[-4,6],[-2,9],[1,12],[3,9],[4,2],[10,-2],[-7,9],[-25,11],[0,4],[7,0],[0,4],[-6,5],[-7,4],[-7,5],[-4,10],[9,-1],[19,-10],[10,-1],[11,7],[5,1],[33,-7],[12,-5],[1,-1],[2,1],[2,0],[0,-2],[1,-5],[1,-4],[1,-4],[31,-30],[2,-4],[4,1],[10,-4],[6,3],[-14,6],[-14,12],[-12,15],[-15,23],[-6,4],[-14,5],[-17,11],[-22,2],[-5,3],[-5,8],[-17,56],[-8,45],[-3,10],[-5,7],[7,12],[10,6],[6,6],[-9,13],[2,4],[0,-1],[2,1],[6,-4],[2,-2],[2,-2],[2,4],[2,10],[4,3],[5,-3],[5,-4],[4,-2],[-2,6],[-1,6],[0,6],[3,2],[4,1],[5,6],[3,2],[4,-2],[27,-15],[5,-4],[8,-12],[14,-6],[9,-7],[9,-3],[19,-1],[0,5],[-20,4],[-3,2],[-8,8],[-13,6],[-15,17],[-8,3],[0,5],[1,0],[5,3],[-2,6],[-5,7],[-1,4],[0,6],[2,2],[2,-1],[2,-3],[4,-1],[8,-6],[7,-4],[3,9],[-2,8],[-6,5],[-14,5],[0,4],[8,-1],[3,1],[5,4],[2,0],[1,1],[0,2],[-1,3],[1,2],[0,2],[0,3],[0,2],[2,1],[4,-1],[3,-2],[3,-3],[5,-10],[2,8],[-3,8],[-13,12],[5,3],[4,0],[4,-2],[5,-1],[-3,7],[-4,4],[-4,3],[-4,4],[-1,7],[0,8],[-2,4],[0,4],[17,0],[6,5],[6,15],[-8,5],[-3,4],[1,5],[3,4],[4,3],[5,3],[2,-1],[1,-5],[2,3],[2,6],[1,2],[-1,1],[-1,4],[0,5],[1,4],[3,2],[3,-2],[2,1],[0,11],[4,12],[7,2],[9,-1],[5,5],[-2,9],[-21,24],[14,8],[6,6],[6,8],[5,10],[2,9],[0,9],[-6,7],[0,3],[3,3],[3,0],[2,-2],[3,-1],[12,0],[5,-2],[10,-8],[4,-1],[6,-4],[3,-1],[-2,6],[-1,1],[-3,1],[0,5],[6,-3],[14,-2],[4,-6],[4,-4],[14,-14],[4,-1],[19,-8],[5,-5],[4,-8],[4,-6],[10,-8],[-5,-3],[-7,1],[-8,5],[-12,13],[-25,12],[-14,0],[-12,-9],[-22,-23],[8,-2],[22,17],[9,5],[17,-2],[5,-2],[15,-15],[6,-1],[-5,-11],[-17,-16],[-6,-10],[14,0],[3,1],[5,6],[7,6],[6,9],[6,6],[6,-4],[-3,-2],[-2,-3],[-3,-4],[-1,-3],[5,0],[3,-4],[2,-6],[3,-6],[-5,-11],[-27,-21],[0,-5],[3,-1],[2,-2],[3,-3],[1,-6],[-8,-3],[-22,-1],[-17,-5],[-8,-6],[-4,-7],[-4,-4],[-34,-21],[-3,-4],[-1,-6],[1,-3],[4,-1],[1,0],[61,45],[9,-3],[14,1],[14,6],[7,10],[2,11],[6,11],[6,5],[3,-6],[-1,-13],[-1,-9],[-3,-3],[-5,6],[-3,-9],[11,-19],[-4,-8],[-1,-7],[-8,-4],[-33,2],[14,-4],[20,-11],[5,-6],[1,-11],[-2,-9],[-4,-5],[-6,-2],[-3,0],[-15,-11],[-4,-5],[6,-3],[6,2],[11,11],[3,2],[4,1],[8,-1],[3,3],[3,5],[0,6],[-1,3],[0,4],[4,9],[7,9],[5,5],[17,-1],[6,1],[0,4],[-11,-1],[-11,4],[-7,11],[0,19],[7,-5],[7,-2],[16,-1],[1,-1],[0,-5],[1,-2],[8,-1],[0,1],[3,-6],[4,-14],[3,-5],[0,-4],[-9,-5],[-26,-7],[-7,-12],[19,-1],[7,-5],[6,-10],[-3,-9],[-5,-7],[-6,-4],[-7,0],[0,-5],[11,0],[6,1],[4,4],[4,6],[2,6],[2,5],[5,3],[3,-5],[-3,-11],[-7,-17],[-2,-9],[-2,-9],[0,-20],[-5,-11],[-18,6],[-2,-14],[5,-13],[10,-16],[10,-13],[8,-6],[30,0],[21,7],[6,-3],[-4,-9],[-4,-7],[7,0],[4,-1],[3,-3],[-10,-6],[-11,1],[-10,-2],[-8,-14],[-2,-17],[-1,-10],[-6,-8],[-3,-9],[-3,-9],[-2,-8],[16,16],[7,10],[0,11],[2,0],[0,18],[7,8],[9,0],[8,-8],[16,4],[7,-4],[-4,-16],[-4,-4],[-10,-2],[-4,-4],[-11,-24],[0,-12],[4,4],[9,16],[4,6],[13,14],[30,-15],[8,-10],[3,-7],[-1,-6],[-2,-7],[-6,-12],[-6,-16],[0,-4],[-1,-2],[-1,-4],[0,-5],[-2,-2],[-57,-2],[-10,-5],[-8,-8],[1,-5],[2,-3],[3,-1],[3,0],[-2,0],[11,5],[11,1],[43,-10],[4,3],[3,3],[4,3],[4,-1],[-1,-7],[-1,-2],[-2,-3],[4,-3],[3,1],[4,2],[5,0],[-5,-10],[-5,-25],[-3,-11],[-6,-16],[-1,-1],[-1,-2],[-12,-3],[0,-5],[14,2],[7,4],[6,6],[3,10],[6,26],[3,5],[3,3],[4,14],[3,3],[2,-1],[4,-6],[1,-1],[20,0],[6,-4],[0,-5],[0,-2],[2,-2],[0,-5],[0,-4],[-1,-3],[-1,-3],[0,-16],[-1,-6],[-3,-7],[-2,-3],[-16,-15],[-4,-2],[-4,0],[1,-3],[2,-1],[4,0],[-2,0],[5,-2],[9,1],[8,2],[3,5],[14,26],[4,4],[14,8],[7,1],[3,-9],[-2,-6],[-5,-7],[-7,-5],[-5,-2],[3,-9],[-2,-7],[-3,-6],[-2,-8],[2,0],[9,8],[4,2],[0,3],[3,2],[4,0],[3,-1],[2,-5],[1,-6],[0,-6],[-4,-3],[-4,-5],[-10,-24],[-4,-8],[-7,-4],[-15,-4],[-6,-6],[-5,-9],[-6,-4],[-22,-3],[-16,-8],[-8,-2],[-8,1],[-13,8],[-39,7],[-3,-1],[-3,-3],[-2,-5],[-1,-5],[-2,-5],[-7,-6],[-3,-4],[0,-8],[5,1],[14,10],[4,11],[3,3],[14,0],[0,-4],[-6,-16],[3,-22],[7,-16],[6,1],[0,9],[-2,10],[-4,13],[3,9],[5,2],[6,1],[5,5],[9,-11],[5,-4],[5,-2],[6,1],[17,11],[12,2],[23,-3],[3,1],[2,3],[1,4],[2,3],[3,3],[10,6],[2,0],[4,-4],[5,1],[4,4],[1,7],[4,11],[10,1],[18,-6],[0,-3],[-1,-7],[0,-2],[11,2],[6,-2],[5,-6],[6,-2],[9,2],[7,-1],[1,-9],[-9,-10],[-50,1],[0,-4],[25,-7],[8,-5],[-13,-15],[-6,-9],[-4,-12],[6,4],[12,15],[7,5],[4,1],[5,-1],[4,-4],[0,-8],[-2,-4],[-5,-2],[-10,-2],[0,-4],[5,0],[6,-2],[5,-4],[3,-7],[-7,-4],[-14,-20],[-6,-4],[-19,-8],[3,-3],[1,0],[4,-2],[6,0],[13,5],[9,-1],[4,3],[4,10],[4,-4],[-7,-20],[0,-7],[7,-2],[4,5],[4,8],[2,9],[-1,7],[8,12],[11,4],[11,-2],[7,-10],[-11,-3],[-6,-3],[-1,-6],[3,-1],[32,-21],[3,-7],[2,-9],[-1,-7],[-1,-6],[0,-6],[0,-3],[0,-1],[-1,-1],[1,-3],[-33,-19],[-3,-5],[2,-1],[4,-4],[1,0],[21,0],[7,3],[7,4],[6,1],[5,-8],[3,-10],[-1,-10],[-3,-8],[-4,-6],[-4,-3],[-6,-1],[-2,-4],[-1,-5],[0,-4],[-1,-6],[-3,-6],[-40,-22],[-13,-16],[-8,-4],[-2,-3],[-1,-7],[-1,-2],[-2,-1],[-29,2],[-7,3],[-6,-9],[-12,1],[-12,6],[-8,10],[-2,-12],[-6,-9],[-8,-5],[-7,-2],[37,8],[5,0],[5,-2],[4,-5],[0,-10],[-2,-3],[-11,-17],[-6,-13],[-3,-4],[-4,-5],[-15,-8],[-13,-15],[-13,-21],[-3,-7],[7,0],[6,4],[16,19],[19,14],[43,60],[0,-4],[5,5],[29,4],[5,-1],[5,-4],[6,-8],[-4,-6],[-8,-18],[-8,-12],[-2,-7],[1,-9],[2,8],[4,1],[17,35],[4,6],[3,0],[6,-6],[1,-1],[0,-2],[1,-3],[2,-2],[2,0],[7,5],[2,6],[5,7],[6,5],[6,1],[17,5],[3,-1],[3,-3],[3,0],[1,8],[2,3],[2,3],[2,2],[4,0],[-3,-10],[0,-9],[2,-4],[4,2],[1,4],[2,9],[1,4],[4,3],[3,0],[3,-2],[4,-1],[24,9],[12,-1],[5,-16],[-13,-13],[1,-5],[1,-3],[-5,-2],[-4,-4],[-6,-10],[7,-17],[2,-9],[-3,-7],[1,-4],[2,-9],[0,-10],[-1,-7],[-3,-4],[-21,-10],[0,-2],[-1,-3],[-2,-2],[-3,-1],[-34,-2],[-5,-4],[-4,-14],[-3,-7],[-3,-7],[2,-7],[4,0],[3,8],[2,8],[2,5],[2,1],[6,8],[3,2],[7,-2],[28,0],[6,5],[2,6],[5,-2],[9,-6],[5,-2],[3,-5],[1,-7],[2,-7],[-10,-5],[-2,-5],[-1,-6],[-3,-5],[-4,-4],[-3,-3],[-26,-2],[-18,4],[-72,-14],[4,-4],[10,-2],[5,-2],[-7,-14],[-46,-29],[-2,-4],[2,-3],[14,3],[4,2],[-4,-13],[-5,-9],[-7,-5],[-17,-3],[-9,-4],[-8,-7],[-7,-7],[5,-1],[51,10],[5,3],[5,6],[1,4],[0,9],[0,5],[2,7],[7,9],[9,6],[13,6],[2,0],[3,2],[0,4],[0,4],[2,3],[4,6],[4,3],[2,2],[10,2],[11,6],[5,1],[0,-4],[-1,-1],[-5,-3],[4,-7],[6,1],[13,6],[2,-1],[2,-3],[2,-2],[4,2],[0,1],[0,2],[1,3],[1,2],[3,2],[1,0],[9,-6],[5,-4],[4,-3],[5,3],[5,7],[4,9],[5,6],[4,-2],[2,-8],[0,-9],[2,-2],[6,11],[1,5],[1,3],[1,4],[3,4],[11,4],[2,0],[3,-9],[-4,-9],[-16,-25],[-2,-4],[0,-6],[2,-3],[2,-3],[2,-5],[-2,-5],[0,-4],[6,1],[1,5],[0,8],[0,6],[3,5],[4,4],[4,2],[15,2],[6,-1],[3,-4],[-2,-6],[-5,-3],[-11,-3],[12,-8],[-2,-8],[1,-4],[3,0],[5,6],[5,5],[5,-4],[4,-9],[2,-10],[-6,-3],[-11,-13],[-6,-4],[-9,-1],[-17,8],[-8,1],[-7,-4],[-34,-33],[-5,-8],[9,1],[14,15],[8,4],[21,4],[5,-1],[9,-5],[4,-1],[-2,-9],[1,-11],[1,-9],[-1,-4],[0,-5],[0,-10],[2,-7],[5,2],[2,5],[2,10],[3,29],[2,7],[8,14],[3,-10],[1,-13],[-1,-12],[-5,-6],[6,-4],[6,7],[7,21],[3,-3],[7,-4],[3,-3],[1,-5],[2,-5],[1,-5],[2,-3],[3,16],[1,4],[11,18],[4,3],[6,-5],[5,-8],[4,-4],[2,-1],[1,-4],[1,-4],[1,-13],[1,-4],[0,-4],[-2,-6],[-4,-8],[-11,-14],[-4,-11],[2,-1],[1,-2],[2,-3],[1,-2],[0,-13],[11,-4],[13,-2],[7,-3],[13,-28],[3,-15],[-5,-8],[0,-4],[18,-10],[3,0],[0,-6],[2,-8],[0,-6],[-1,-8],[-2,-2],[-3,0],[-4,0],[-14,-9],[-18,-5],[-6,-6],[-3,-1],[-2,-2],[1,-6],[1,-7],[-1,-5],[-4,-7],[-8,-3],[-13,-2],[-22,8],[-8,-4],[-5,-9],[-11,-34],[-5,-5],[-7,3],[-14,12],[-26,15],[-8,2],[3,-9],[5,-8],[13,-12],[15,-8],[3,-4],[5,-7],[3,-1],[17,0],[4,2],[7,8],[3,2],[15,0],[2,2],[2,4],[4,3],[4,2],[2,1],[7,-5],[29,-3],[36,-24],[23,-23],[4,-6],[-6,-5],[-28,5],[0,-4],[11,-5],[4,-5],[-1,-8],[-1,-6],[2,-7],[0,-9],[-2,-9],[-4,-4],[-11,-7],[-3,-1],[-22,0],[1,-4],[2,-4],[3,-3],[2,-1],[8,0],[1,-1],[0,-6],[1,-1],[14,-2],[7,-6],[3,-10],[2,-13],[5,0],[10,10],[7,5],[3,-3],[-1,-9],[-2,-12],[38,46],[8,-2],[-3,-4],[-13,-23],[-4,-6],[-2,-1],[0,-5],[1,-4],[3,-1],[44,3],[15,-3],[14,-9],[11,-11],[5,-9],[1,-10],[0,-6],[-4,-7],[-1,-7],[1,-6],[4,-8],[2,-5],[0,-3],[0,-1],[-4,-3],[-1,-6],[3,-5],[4,-2],[-1,-5],[0,-5],[1,-3],[2,-3],[-2,-4],[-3,3],[-6,12],[-4,5],[-5,-5],[-5,-1],[-10,2],[-5,-1],[-5,-2],[-5,-3],[-5,-6],[-8,-25],[-3,-4],[-4,-1],[-6,-5],[-5,-6],[-4,-6],[-2,-9],[1,-8],[1,-8],[-1,-9],[-4,-10],[-6,0],[-7,2],[-5,-2],[-9,-10],[-14,-2],[-13,3],[-10,7],[-3,-7],[0,-10],[2,-10],[3,-6],[-3,-7],[-1,-9],[1,-8],[3,-4],[3,12],[3,11],[5,6],[8,3],[19,-3],[8,-5],[7,-8],[-4,-11],[-6,-5],[-7,1],[-16,5],[-2,-2],[9,-17],[5,4],[7,-5],[7,-7],[14,-7],[3,-8],[-1,-8],[-7,-5],[-4,1],[-11,7],[-35,2],[-9,4],[-7,6],[8,9],[-2,5],[-7,3],[-3,-3],[-4,-7],[-8,-1],[-15,6],[-24,18],[-32,7],[-7,3],[-23,19],[-38,13],[-5,5],[6,8],[49,12],[8,6],[4,0],[9,-6],[51,5],[-12,9],[-70,3],[-4,-1],[-8,-6],[-5,-2],[-6,2],[-15,11],[-5,1],[-5,-1],[-5,-3],[-4,-5],[-3,-7],[-1,-8],[-3,-6],[-4,-4],[5,-1],[42,-27],[16,-17],[5,-3],[15,-3],[5,-4],[6,-6],[22,-10],[19,-16],[25,-10],[14,1],[7,-1],[5,-4],[-7,-6],[-84,6],[1,-3],[0,-1],[-1,0],[61,-16],[6,-3],[23,-1],[14,4],[4,-2],[20,-14],[3,-1],[4,0],[3,3],[3,4],[3,2],[3,-3],[4,-8],[2,-3],[3,-5],[6,-5],[2,-4],[0,-9],[-4,-8],[-13,-1],[-12,-10],[-61,15],[-17,-1],[-13,-11],[0,-4],[6,0],[12,4],[10,-1],[4,-1],[4,-2],[2,-5],[0,-6],[-1,-1],[-3,0],[-13,-6],[-26,3],[-12,-2],[6,-7],[6,-5],[6,-3],[29,-4],[4,1],[2,11],[6,-4],[6,-8],[2,-5],[17,-3],[8,-3],[7,-6],[-7,-3],[-9,-1],[5,-6],[14,-10],[2,-3],[0,-3],[1,-4],[3,-2],[3,0],[5,3],[3,0],[0,-3],[-5,-4],[-2,0],[6,-5],[15,2],[8,-2],[4,-4],[5,-7],[2,-7],[-2,-6],[-6,0],[-39,17],[-8,0],[-6,-5],[5,-4],[39,-12],[0,-4],[-25,-9],[-13,1],[-10,8],[12,-1],[6,2],[3,7],[-5,4],[-15,4],[-22,-1],[-11,-5],[-5,-1],[-5,3],[-5,6],[-5,5],[-5,-1],[-11,-6],[3,-7],[6,-7],[11,-10],[-3,-5],[2,-5],[20,-14],[6,0],[9,10],[4,-1],[5,-3],[4,-3],[11,1],[9,3],[-2,-9],[-2,-3],[15,0],[4,2],[5,5],[4,1],[22,1],[2,-1],[1,-2],[1,-2],[1,-3],[0,-1],[6,-4],[3,-1],[32,8],[8,6],[9,3],[7,-4],[0,-3],[-2,-6],[3,-6],[2,-5],[0,-6],[-4,-2],[-6,-1],[-6,-2],[-2,-7],[-1,-10],[-1,-5],[0,-1],[6,2],[2,1],[2,3],[3,3],[3,1],[3,-2],[0,-3],[-2,-5],[-2,-2],[0,-5],[4,-5],[-3,-4],[-21,-13],[-5,-5],[-3,-9],[8,-5],[7,1],[15,8],[7,1],[8,-1],[9,-5],[7,-7],[-13,1],[-7,-1],[-5,-4],[3,-3],[4,-1],[8,0],[0,-4],[-35,5],[-20,-2],[-10,-11],[8,0],[7,-2],[3,-1],[16,-5],[1,-2],[0,-4],[0,-5],[-1,-1],[-3,0],[-2,1],[-4,2],[-1,4],[-3,4],[-2,2],[-3,2],[-2,1],[-2,-1],[0,-7],[4,-6],[8,-9],[4,-3],[16,6],[23,0],[6,-2],[3,-2],[8,-9],[7,17],[11,-3],[10,-12],[8,-14],[-1,-4],[-1,-5],[0,-6],[0,-6],[-6,4],[-10,1],[-10,-1],[-6,-4],[1,-8],[7,-6],[13,-6],[6,-6],[9,1],[33,12],[4,0],[4,-4],[6,-2],[32,0],[10,-6],[5,-15],[-2,-15],[-7,-11],[-16,-15],[-15,-2],[-6,-2],[-16,4],[-5,-4],[3,-2],[2,-2],[1,-2],[1,-5],[2,0],[4,4],[5,0],[11,3],[26,-4],[6,1],[6,6],[9,13],[7,15],[4,18],[4,2],[7,-2],[4,-3],[-1,-8],[-6,-14],[3,-5],[2,-12],[1,-12],[-2,-11],[2,0],[2,-3],[2,-1],[-3,-6],[-4,-5],[-4,-3],[-3,-2],[-4,-3],[-1,-7],[3,-7],[3,-4],[2,-3],[-2,-8],[-5,-13],[-6,-10],[-2,-6],[1,-8],[13,28],[5,4],[4,5],[3,12],[5,24],[7,22],[3,8],[2,4],[0,5],[0,8],[2,11],[4,11],[5,3],[4,-7],[3,2],[3,-4],[4,-7],[4,-3],[2,1],[3,6],[2,1],[2,-3],[3,-4],[3,-6],[4,3],[3,5],[3,0],[1,-13],[-15,-22],[4,-5],[-2,-3],[-1,-4],[-1,-1],[3,-6],[0,-4],[-3,-1],[-9,-2],[-10,-6],[-5,-1],[-6,-5],[-5,-11],[-4,-14],[-1,-15],[7,12],[9,11],[10,2],[10,-13],[1,-16],[-4,-18],[-12,-31],[7,5],[8,12],[12,26],[4,5],[4,0],[2,-4],[-5,-17],[1,-5],[4,-3],[5,-2],[-1,-7],[-1,-3],[0,-3],[-6,6],[-3,-2],[-3,-6],[-3,-10],[-6,-8],[-19,-16],[0,-4],[2,-3],[1,-4],[-1,-5],[-2,-4],[3,-7],[-2,-11],[-9,-19],[6,3],[5,7],[8,18],[-4,9],[3,8],[11,12],[8,20],[6,8],[7,-4],[-3,-1],[-5,-7],[0,-5],[-7,-12],[-2,-7],[3,0],[3,2],[2,4],[1,6],[4,-8],[3,-3],[3,-1],[3,3],[0,8],[-2,15],[3,13],[7,3],[9,-4],[6,-6],[-2,-9],[-2,-3],[2,-3],[1,-4],[0,-4],[-3,-5],[5,-3],[1,-1],[0,-4],[-1,-2],[-1,-2],[-8,4],[-11,-4],[-26,-18],[-3,-6],[-2,-21],[-3,-7],[-6,-13],[6,-4],[-3,-7],[-7,-6],[-4,2],[0,4],[-2,2],[-2,1],[-3,-1],[0,-2],[-8,-12],[-2,-1],[-1,-4],[0,-10],[-1,-5],[-5,-8],[-1,-5],[-1,-7],[-3,-4],[-18,-18],[12,8],[21,26],[10,6],[2,-2],[2,-4],[3,-3],[2,3],[5,14],[3,6],[4,2],[7,-2],[-1,-6],[-15,-21],[-11,-9],[-4,-6],[-4,-10],[-6,-22],[-3,-9],[-6,-7],[-19,-13],[-14,-17],[-5,-4],[0,-4],[3,-3],[-1,-7],[-6,-18],[5,8],[16,16],[10,22],[5,7],[6,4],[12,6],[5,6],[4,22],[1,3],[6,6],[2,2],[6,0],[3,-3],[2,-1],[5,4],[23,39],[5,5],[6,5],[5,3],[2,-1],[1,-3],[2,-1],[2,3],[3,6],[1,3],[5,4],[3,6],[2,3],[4,-3],[-9,-25],[1,-6],[-2,-7],[-5,-15],[7,5],[10,19],[13,8],[11,14],[7,2],[-2,-9],[-4,-4],[-4,-4],[-4,-7],[-1,-7],[-2,-14],[-2,-7],[-24,-38],[-3,-15],[-2,0],[-6,4],[-10,-11],[-9,-19],[-4,-19],[3,3],[24,35],[26,28],[3,3],[2,7],[4,13],[10,27],[2,3],[3,0],[1,2],[-1,5],[7,5],[16,-5],[7,4],[-2,7],[1,5],[2,3],[4,2],[3,1],[2,5],[2,5],[1,4],[5,8],[7,7],[7,5],[6,1],[1,-9],[4,-10],[-1,-6],[2,-3],[-2,0],[1,-2],[1,-1],[2,-2],[4,10],[4,-11],[1,-13],[-6,2],[-1,-6],[-4,-14],[3,-1],[2,-2],[1,-4],[-1,-5],[-1,-4],[-3,0],[-3,4],[-4,-3],[-1,-2],[-1,-3],[-5,-6],[-5,-5],[-8,-3],[-6,-5],[-6,-2],[-12,5],[-7,0],[-4,-3],[2,-6],[-2,-4],[3,-13],[4,2],[4,9],[4,6],[3,0],[3,-3],[4,-1],[5,5],[1,-4],[0,-7],[-1,-6],[19,-4],[3,3],[6,13],[3,4],[5,3],[17,-3],[1,-1],[3,-5],[3,-2],[2,1],[4,3],[6,2],[12,15],[7,5],[1,4],[0,9],[1,9],[4,0],[4,-5],[2,-6],[1,-9],[-2,-8],[0,-7],[1,-9],[8,7],[8,0],[2,-5],[-6,-14],[-9,-11],[-3,-5],[-5,-15],[-3,-5],[-5,-5],[0,1],[-2,1],[-2,-1],[-2,-1],[-18,-29],[-3,-3],[-2,0],[-2,1],[-2,2],[1,1],[-6,-8],[-12,-9],[-4,-3],[5,-8],[-4,-11],[-7,-10],[-12,-7],[-7,-9],[-6,-11],[-3,-9],[2,-8],[2,1],[3,4],[3,-1],[1,-7],[-2,-6],[-3,-6],[-2,-8],[-3,-10],[-25,-20],[7,-8],[6,3],[6,6],[9,5],[7,8],[8,4],[0,5],[-2,6],[-1,6],[0,22],[2,14],[8,8],[5,9],[3,2],[11,4],[2,1],[4,6],[14,13],[49,67],[6,3],[4,-5],[0,-17],[4,6],[9,35],[16,28],[0,2],[0,9],[4,8],[2,5],[1,4],[2,4],[2,5],[5,4],[5,3],[5,-1],[2,-6],[-3,-4],[-1,-5],[0,-7],[0,-8],[4,6],[5,10],[5,11],[3,15],[4,-4],[4,-11],[2,-11],[-5,-24],[-11,-14],[-13,-10],[-9,-13],[-2,-5],[-2,-11],[-2,-4],[-3,-3],[-7,-4],[-19,-25],[-1,-9],[3,-7],[4,7],[6,11],[5,5],[6,1],[6,2],[6,5],[5,10],[1,1],[0,1],[1,0],[-1,13],[4,7],[13,9],[3,-11],[4,-4],[2,4],[-2,11],[2,6],[2,6],[3,5],[5,-1],[3,-6],[0,-7],[-2,-7],[1,-8],[6,11],[2,7],[1,12],[2,11],[4,7],[6,1],[6,-5],[0,-4],[0,-6],[1,-5],[2,-5],[2,2],[5,8],[2,2],[2,-5],[-1,-12],[-4,-19],[-14,-35],[-5,-8],[-1,-4],[3,-2],[2,1],[3,8],[3,3],[2,2],[2,1],[1,-1],[2,-2],[0,-1],[2,-9],[0,-2],[3,-1],[2,-1],[4,-6],[9,-10],[5,-7],[-5,-6],[-11,-4],[-5,-5],[2,0],[-4,-6],[-12,-11],[0,-4],[12,-1],[4,1],[5,4],[1,3],[1,4],[0,3],[0,2],[8,2],[5,-7],[1,-8],[-6,-3],[1,-9],[-1,-4],[-3,-3],[-1,-6],[2,-4],[4,-2],[18,-2],[3,1],[2,4],[2,3],[3,1],[7,-6],[2,-3],[1,-4],[0,-8],[1,-8],[2,-3],[2,1],[3,22],[5,5],[5,-4],[-1,-7],[5,-8],[8,-5],[16,-4],[22,0],[-7,-7],[-4,-5],[-2,-8],[4,1],[7,6],[5,1],[19,-4],[-2,-9],[2,-7],[4,-3],[6,-1],[4,3],[-1,7],[-2,10],[0,8],[3,3],[51,2],[3,-2],[1,-3],[1,-2],[-1,-2],[-3,-3],[3,-8],[4,-9],[4,-4],[6,-2],[32,2],[5,-3],[-1,-9],[5,-3],[4,4],[4,7],[5,4],[22,1],[5,-3],[16,-27],[1,-2],[0,-2],[0,-2],[1,-2],[3,-1],[1,2],[2,2],[2,1],[3,1],[2,2],[2,-1],[2,-6],[-2,-10],[5,-9],[7,-6],[5,-3],[16,4],[8,0],[1,2],[1,3],[2,3],[2,3],[1,1],[19,-1],[10,-5],[1,-14],[3,0],[2,-1],[5,-3],[0,-4],[-2,-9],[5,-3],[13,-1],[1,-1],[0,-2],[0,-7],[-1,-4],[-2,-1],[-2,0],[-3,0],[-3,-3],[-8,-2],[-4,0],[0,-4],[8,-1],[6,-4],[2,-9],[-4,-14],[-6,-7],[-8,-2],[-61,1],[-13,-8],[6,-6],[56,1],[9,0],[9,-4],[-5,-7],[-4,3],[-3,5],[-6,0],[-5,1],[-8,-6],[-3,-4],[6,-7],[-3,-6],[-12,-9],[-4,-6],[-13,-10],[-5,-2],[-7,-1],[-24,6],[-6,2],[-3,0],[-3,-1],[-5,-5],[-3,-1],[-3,0],[-2,1],[-2,2],[-2,3],[-3,2],[-3,-1],[-4,-2],[-78,-17],[-1,-9],[-15,-11],[-5,-9],[11,1],[23,12],[11,0],[-5,-8],[-12,-8],[-5,-5],[-5,4],[-4,-1],[-10,-7],[1,-4],[4,-9],[0,-3],[-2,-4],[-4,-1],[-21,-1],[-39,-11],[-27,-16],[-33,-30],[-13,-6],[-42,0],[-34,-15],[-36,-8],[-6,-3],[-9,-9],[-13,-3],[-10,-9],[-36,-10],[-6,0],[-26,8],[-13,-4],[-5,-4],[-2,-4],[-2,0],[3,-3],[14,-7],[2,0],[1,-3],[0,-10],[3,-2],[19,9],[39,1],[50,22],[44,11],[40,24],[14,6],[6,1],[14,-1],[4,3],[8,11],[22,16],[9,11],[2,-1],[2,-1],[3,1],[2,1],[4,0],[5,1],[6,3],[5,4],[7,14],[5,3],[6,-5],[-5,-5],[-5,-6],[-5,-8],[-7,-19],[-3,-6],[-11,-8],[-6,-7],[-3,-7],[-3,-9],[-5,-10],[-11,-17],[-6,-7],[-8,-4],[-14,-2],[-43,10],[-51,-12],[0,-4],[34,-4],[-12,-23],[-3,-4],[-8,-4],[-2,-4],[-7,-3],[-19,0],[-2,-3],[-6,0],[-23,-10],[-15,-11],[-9,-10],[-12,-6],[-6,-3],[-17,-21],[-4,0],[-9,-10],[-16,-3],[-30,1],[-42,14],[-15,-2],[-6,-3],[-3,-4],[0,-5],[3,-4],[11,0],[4,-2],[2,-9],[-5,-3],[-21,1],[-28,-9],[-12,-8],[-6,-3],[-5,2],[-14,11],[1,-5],[1,-1],[0,1],[0,1],[5,-11],[8,-12],[10,-10],[7,-4],[0,-4],[-14,1],[-7,-5],[-3,-14],[-1,-15],[-1,-10],[0,-10],[4,-12],[4,-9],[3,-9],[-1,-8],[-7,-2],[-3,-2],[-5,-9],[-2,-1],[-1,1],[-1,2],[0,3],[-1,8],[0,1],[-2,0],[-1,1],[-7,5],[-13,6],[-12,14],[-18,16],[-5,8],[-4,10],[-5,7],[-14,5],[-18,18],[-52,18],[-13,12],[-18,8],[-5,5],[-7,24],[-4,9],[-5,-3],[4,-9],[1,-12],[-2,-12],[-4,-10],[-11,-11],[-4,-7],[4,-8],[6,-2],[18,10],[8,-1],[23,-11],[24,-2],[54,-34],[9,-15],[2,-2],[7,-2],[6,-4],[22,-27],[7,-5],[20,-8],[22,-23],[8,4],[2,0],[4,-6],[2,-11],[1,-12],[1,-11],[-6,6],[-7,5],[-6,2],[-8,-1],[-19,-12],[-9,-12],[-14,-14],[-5,-2],[-7,-2],[-5,-5],[-3,-7],[-2,-11],[-7,8],[-1,2],[-1,1],[-3,-2],[-2,-5],[1,-6],[4,-5],[4,-1],[34,4],[15,6],[5,-2],[2,-9],[-8,-10],[-19,-13],[-19,-9],[-21,-4],[0,-4],[33,2],[15,5],[15,10],[5,5],[2,0],[3,-2],[2,-3],[5,-11],[1,-2],[4,1],[3,4],[3,5],[1,8],[-14,6],[-4,5],[3,6],[4,1],[7,1],[12,7],[4,1],[5,4],[12,19],[4,8],[9,12],[0,2],[3,3],[5,13],[3,4],[2,-2],[3,-5],[2,-1],[1,6],[-2,6],[-1,5],[-1,4],[3,3],[5,-1],[7,-5],[6,-2],[7,4],[0,4],[-7,4],[-14,3],[-6,8],[-3,10],[3,5],[7,0],[28,-9],[41,6],[14,8],[7,2],[6,3],[6,8],[10,17],[18,17],[3,5],[0,8],[3,2],[6,1],[4,2],[1,6],[1,7],[2,5],[6,0],[7,-13],[5,7],[2,4],[3,3],[4,3],[3,0],[2,-2],[1,-4],[3,-5],[3,-2],[7,2],[3,2],[3,3],[3,2],[8,-2],[3,2],[1,4],[2,13],[0,3],[3,-1],[6,-2],[4,-1],[0,7],[0,7],[1,4],[0,3],[3,0],[-6,1],[-6,2],[1,9],[-1,7],[-3,5],[-3,4],[6,10],[13,9],[5,7],[5,8],[22,23],[2,2],[2,6],[2,6],[1,8],[3,7],[3,3],[26,4],[25,11],[36,25],[57,22],[4,5],[5,4],[14,-2],[5,0],[18,18],[8,2],[86,-19],[6,3],[0,8],[-6,6],[-9,5],[-7,1],[-21,-2],[-6,2],[-18,15],[-31,7],[-8,-1],[-13,-7],[-7,-5],[-4,-7],[-2,-4],[-3,-3],[-3,-2],[-4,-1],[-4,1],[-2,3],[-1,4],[-3,5],[-15,9],[-5,7],[2,14],[5,12],[4,9],[6,6],[7,3],[21,-3],[3,6],[4,10],[8,2],[25,-4],[3,-3],[7,5],[9,3],[8,-1],[6,-5],[6,-6],[10,-5],[9,-2],[7,3],[4,-7],[9,1],[17,6],[-4,-4],[3,-6],[7,-1],[13,3],[27,-8],[-2,-3],[-2,-9],[7,2],[6,7],[6,3],[5,-8],[18,16],[2,-6],[8,-7],[11,-15],[1,-4],[-3,-8],[6,1],[5,3],[0,-4],[-2,-14],[6,-25],[15,-38],[8,-15],[4,-6],[3,-4],[15,-2],[6,-4],[4,-10],[-5,1],[-5,2],[-5,1],[-5,-6],[-2,-9],[1,-11],[2,-10],[4,-5],[4,-2],[11,-14],[5,-2],[5,-1],[5,-2],[4,-7],[-8,0],[-4,1],[-3,3],[0,-3],[-1,0],[-1,-1],[5,-5],[3,-7],[1,-6],[-12,-5],[-2,-8],[3,-8],[6,-5],[0,-5],[-8,-1],[-14,-12],[-15,-6],[-22,-22],[-34,-14],[-16,-13],[-9,-21],[14,7],[14,14],[2,-5],[0,-4],[-2,-4],[-2,-4],[10,1],[5,2],[4,3],[3,0],[10,-10],[3,-4],[3,1],[-1,-8],[-6,-17],[6,0],[4,-5],[1,-10],[-2,-14],[-4,-12],[-10,-15],[-5,-9],[4,2],[6,5],[3,1],[4,-1],[6,-4],[4,1],[0,4],[-3,13],[7,12],[30,30],[3,2],[4,4],[0,8],[-3,4],[-6,-5],[9,12],[1,3],[-1,13],[0,7],[4,3],[6,1],[7,5],[3,8],[-2,10],[9,11],[7,14],[8,11],[10,5],[7,-2],[10,-8],[6,1],[9,7],[5,0],[5,-7],[1,6],[2,2],[2,-1],[3,-3],[3,0],[3,3],[1,5],[-3,5],[10,2],[20,-20],[14,-3],[0,4],[-3,3],[-5,7],[-2,2],[0,5],[6,0],[-2,9],[0,3],[2,0],[4,-8],[4,2],[5,6],[5,4],[5,0],[4,2],[9,6],[12,-13],[3,-9],[-4,-7],[2,-1],[6,-7],[-5,-4],[-18,0],[-14,-5],[-10,-9],[-3,-8],[-1,-2],[-3,-1],[-34,5],[5,-7],[21,-9],[10,-9],[46,-16],[9,0],[7,6],[7,5],[10,-4],[9,-8],[6,-7],[-6,-4],[-13,4],[-6,-4],[5,-4],[23,-4],[7,2],[11,7],[7,-1],[2,-2],[2,-2],[3,-3],[4,-1],[17,0],[6,-2],[16,-18],[0,-4],[-1,-2],[-2,-4],[-1,-2],[0,-2],[0,-1],[1,0],[1,-2],[-3,-6],[-3,-4],[-2,0],[-4,2],[1,3],[1,5],[-3,0],[-3,0],[-3,2],[-2,3],[1,0],[5,4],[-8,5],[-36,9],[-11,0],[-7,-4],[6,-10],[52,-35],[7,-10],[-2,-16],[5,-2],[15,-11],[0,-3],[-11,-7],[-6,-6],[-4,-8],[7,-3],[6,5],[6,8],[5,6],[8,2],[7,-4],[12,-14],[0,-4],[-5,-3],[-4,-5],[13,0],[3,-2],[4,-4],[3,-5],[-2,-1],[-23,-9],[-4,-4],[6,-3],[14,2],[5,-4],[3,-13],[-3,-7],[-7,-5],[-5,-6],[15,-9],[4,1],[4,6],[1,5],[1,4],[4,1],[4,-4],[-2,-8],[-7,-14],[-5,-7],[-4,0],[-4,4],[-5,1],[2,-6],[3,-7],[4,-5],[3,-2],[9,-2],[2,-2],[-4,-5],[7,-12],[-17,-24],[-5,-4],[-8,0],[-16,11],[-9,1],[0,-4],[6,-1],[6,-4],[5,-7],[2,-8],[-2,-14],[-6,-10],[-7,-7],[-7,-2],[-7,2],[-14,8],[-7,2],[-30,-4],[0,-4],[6,0],[17,-4],[-3,-8],[-3,-7],[-4,-5],[-5,0],[4,-9],[4,-1],[3,3],[9,14],[4,3],[31,-6],[10,-7],[5,-14],[-2,0],[-2,-1],[-1,-1],[-2,-1],[6,-7],[9,-4],[6,-7],[-2,-15],[8,-13],[2,-8],[1,-13],[-3,-6],[-6,-1],[-10,1],[-2,-3],[-4,-4],[-1,-1],[-3,-1],[-15,0],[-5,-2],[-4,-3],[-2,-7],[21,0],[-6,-7],[-8,-3],[-8,-1],[-7,3],[-9,10],[-21,11],[-7,0],[1,-8],[6,-10],[8,-7],[14,-6],[6,-6],[4,-12],[-2,0],[1,-3],[0,-1],[0,-1],[-1,-3],[7,-1],[4,-5],[3,-7],[4,-7],[5,-4],[5,0],[11,4],[25,0],[6,-4],[5,-15],[5,-2],[-1,-5],[-3,-3],[-4,-1],[-3,-3],[2,-1],[4,-2],[2,-1],[-4,-6],[-7,-6],[-3,-4],[-4,9],[-6,2],[-13,-3],[-3,1],[-2,2],[-3,3],[-5,10],[-2,1],[-2,-1],[-4,0],[-24,12],[-14,2],[-7,-10],[19,1],[10,-3],[8,-8],[3,-6],[1,-3],[-15,-11],[-3,-4],[-2,-6],[10,-1],[4,-3],[3,-8],[-4,-4],[-5,1],[-14,10],[-4,1],[-9,0],[-29,-18],[-7,3],[-6,9],[-9,7],[-18,7],[-18,-2],[-4,4],[-3,4],[-4,2],[-9,0],[5,-3],[9,-11],[6,-2],[21,-1],[7,-4],[11,-11],[6,-3],[29,-2],[3,2],[3,6],[7,0],[11,-4],[6,2],[4,0],[1,-4],[1,-4],[3,-4],[3,-4],[3,-2],[25,-5],[23,9],[-1,-3],[-3,-13],[20,2],[8,-3],[-5,-26],[9,-1],[13,1],[9,-4],[0,-7],[-4,-16],[5,-6],[0,-9],[-3,-8],[-5,-4],[-4,1],[-4,4],[-5,5],[-3,4],[-4,3],[-18,-1],[3,-6],[7,-8],[2,-7],[-1,-6],[-4,-1],[-17,7],[-20,14],[-17,5],[-53,37],[-8,1],[3,-9],[6,-8],[14,-11],[25,-4],[9,-9],[6,-2],[3,-3],[3,-10],[2,-3],[33,-10],[0,-4],[-5,-4],[-4,-4],[0,-3],[4,0],[3,2],[3,0],[3,-2],[-1,-2],[-1,-3],[8,1],[2,-1],[2,-2],[0,-5],[2,-1],[4,0],[8,7],[4,1],[1,-2],[-3,-6],[-4,-6],[-4,-2],[-4,-1],[-4,-3],[-4,-5],[-2,-8],[7,2],[12,6],[6,1],[5,-3],[20,-18],[-6,-4],[-7,0],[-12,4],[-7,-3],[-3,-1],[-2,2],[-1,5],[-3,-2],[-3,-4],[-2,-5],[6,-1],[12,-10],[7,-1],[-3,-15],[-1,-9],[1,-8],[5,-12],[-8,-12],[-8,-1],[-9,1],[-8,-5],[3,-5],[8,-11],[-6,-12],[-7,-8],[-15,-8],[-7,-1],[-13,8],[-8,1],[4,-8],[12,-15],[3,-8],[-2,-12],[-4,-9],[-5,-5],[-23,-15],[-5,-1],[-3,-3],[-9,-14],[-10,-4],[-2,-2],[-6,-10],[-7,-7],[-2,-3],[-4,-9],[-5,-8],[-7,-6],[-7,-3],[-22,0],[-3,-2],[-2,-10],[-5,-8],[-6,-6],[-4,-3],[-7,6],[-5,0],[-2,-12],[-1,-5],[-3,-5],[-29,-29],[-7,-3],[-18,0],[-3,-3],[-2,-5],[-1,-17],[-2,-14],[-2,-4],[-9,-3],[-3,-3],[-3,-5],[-2,-3],[0,-4],[-3,-7],[-5,-3],[-4,-3],[2,-8],[-6,-14],[-10,-9],[-10,1],[-8,14],[-8,-16],[4,-8],[0,-8],[-3,-7],[-4,-6],[-6,-1],[-12,1],[-5,-3],[-2,5],[-4,-1],[-4,-3],[-5,-1],[-10,3],[-7,0],[-2,-5],[-5,2],[-10,12],[-6,17],[5,15],[-6,9],[-9,-1],[-21,-9],[-11,-7],[-4,1],[-4,2],[-3,0],[-5,-3],[4,-7],[0,-7],[-3,-5],[-4,-1],[-2,2],[-1,8],[-2,2],[-2,-1],[-1,-2],[-1,-3],[-1,-2],[-28,-12],[1,6],[5,9],[1,5],[-5,-1],[-9,-12],[-12,-6],[-2,0],[-2,3],[-2,6],[0,6],[1,7],[1,5],[-8,-5],[-5,-1],[-5,-4],[-3,-14],[-2,-13],[-1,-6],[-2,-2],[-4,2],[-2,5],[0,7],[1,7],[-5,-4],[-8,-14],[-9,-5],[-14,-18],[-12,-21],[-2,-3],[-18,-10],[-2,4],[-3,-4],[-18,-10],[-3,0],[-3,3],[-2,1],[-3,-3],[-5,-8],[-14,-4],[-5,2],[-3,9],[0,12],[2,8],[-2,3],[-8,1],[5,-5],[-8,-22],[3,-10],[-12,2],[-22,18],[-11,5],[-33,-35],[-5,-4],[-2,11],[-4,5],[-3,0],[-3,-10],[1,-1],[2,-5],[1,-5],[0,-5],[-3,-2],[-4,1],[-3,3],[-2,4],[-1,8],[-2,-1],[-2,-7],[2,-10],[4,-9],[6,-7],[13,-8],[-4,-2],[-2,-5],[-2,-8],[-2,-6],[-4,-3],[-9,-2],[-3,-5],[-6,-12],[-3,-4],[-18,-8],[-3,2],[-2,-7],[-3,-4],[-4,0],[-2,7],[-3,-5],[-2,-6],[-1,-10],[2,0],[2,-1],[1,-2],[1,-5],[-5,-5],[-5,-7],[-6,-13],[-1,-3],[-6,3],[2,8],[6,17],[-3,8],[-5,0],[-6,-3],[-4,-5],[-2,-3],[-3,-6],[-2,-3],[-2,0],[-2,1],[-3,0],[-2,-5],[3,-6],[3,-1],[2,2],[4,1],[2,-3],[0,-6],[-3,-13],[0,-3],[-2,-4],[0,-3],[1,-3],[4,-3],[1,-2],[0,-7],[-1,-6],[-1,-6],[-2,-6],[3,0],[1,-2],[3,-6],[-7,-4],[-1,-10],[3,-11],[2,-7],[-2,-6],[-4,-2],[-3,-4],[-1,-7],[-1,-4],[-4,-3],[-6,-3],[1,-4],[1,-4],[1,-2],[3,-2],[-9,-5],[-8,6],[-6,13],[-2,16],[1,8],[6,15],[2,8],[0,7],[0,7],[-3,4],[-4,-4],[-3,-9],[-3,-27],[-4,-15],[-17,-26],[0,-6],[-5,-9],[-4,5],[-5,9],[-5,3],[-2,-4],[0,-5],[1,-5],[-1,-6],[-2,-5],[-2,-1],[-2,0],[-3,-2],[-6,-7],[-8,-16],[-6,-6],[-3,-1],[-9,2],[-3,-1],[-1,-4],[0,-3],[2,-3],[3,-2],[-3,-7],[-3,-1],[-3,0],[-3,-2],[-2,-6],[-3,-15],[4,-5],[8,0],[4,-7],[-1,-10],[-3,-9],[-8,-4],[-12,3],[-4,5],[-3,-2],[-1,-3],[-2,-4],[-3,-2],[-4,-5],[-2,-6],[-2,-8],[-3,-7],[-3,-3],[-16,-3],[-12,-8],[-9,-2],[-2,-3],[-3,-4],[-3,-4],[-4,4],[-6,-3],[-3,3],[-6,-9],[-11,-23],[-6,-8],[0,-4],[2,-1],[5,-3],[-1,-7],[0,-7],[2,-5],[4,-2],[0,4],[3,8],[2,5],[2,-6],[-3,-11],[-7,-9],[-13,-11],[-7,-4],[-3,-2],[-1,-4],[-2,-10],[-2,2],[-4,5],[-3,-1],[-5,-10],[-6,-6],[-6,-1],[-7,7],[-2,-5],[-2,-1],[-3,0],[-2,-2],[-1,-2],[-2,-5],[-1,-2],[-3,-4],[-3,-3],[-2,1],[2,10],[-11,0],[3,5],[2,6],[1,7],[0,13],[-1,2],[-6,0],[-6,-7],[-7,-14],[-6,-11],[-7,4],[3,3],[3,5],[2,5],[2,7],[-5,-3],[-3,1],[-3,5],[-1,9],[-2,-6],[0,-19],[-3,-4],[-10,4],[-5,0],[-4,-4],[2,-4],[1,-3],[-1,-3],[-2,-2],[-3,2],[-2,8],[-2,2],[-2,2],[-2,2],[-2,1],[-2,-2],[-2,-4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment