Skip to content

Instantly share code, notes, and snippets.

@lucguillemot
Last active November 24, 2015 00:41
Show Gist options
  • Save lucguillemot/787e620d68366d9a0587 to your computer and use it in GitHub Desktop.
Save lucguillemot/787e620d68366d9a0587 to your computer and use it in GitHub Desktop.
Choropleth map with diverging color scale.
<!DOCTYPE html>
<meta charset="utf-8">
<style type="text/css">
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 9px;
dominant-baseline:central;
text-anchor:middle;
}
.hoods {
fill:none;
stroke-width:.3px;
stroke:#fff;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/queue.v1.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(function(){
var width = 660,
height = 450,
legend_width = 200,
divisions = 100;
var svg = d3.select("body").append("svg").attr("width", width).attr("height", height),
legend = svg.append("g").attr("class", "legend").attr("transform", "translate(430,405)"),
prop = svg.append("g").attr("class", "propSelection").attr("transform", "translate(430,30)");
var projection = d3.geo.mercator()
.center([-122.3871, 37.7729])
.scale(140000)
.translate([width/2, height/2]);
var EqualColor = "#f7f7f7",
YesColorMax = "#2d004b",
NoColorMin = "#673006";
var path = d3.geo.path().projection(projection);
queue()
.defer(d3.json, "SFprecincts.json")
.defer(d3.json, "SFhoods.json")
.defer(d3.csv, "propJ.csv")
.await(ready);
function ready(error, map, hoods, data) {
var PercById = {},
WinnerById = {};
data.forEach(function(d) {
PercById[d.PrecinctID] = +d.Perc;
WinnerById[d.PrecinctID]=d.Win
});
// I use the same maximum value for 'Yes' and 'No' to have an equal color scale on both sides
var YesNoMax = d3.max(data, function(d){return d.Perc;});
var YesColor = d3.scale.linear()
.range([EqualColor, YesColorMax])
.domain([0.5,YesNoMax])
.interpolate(d3.interpolateLab);
var NoColor = d3.scale.linear()
.range([EqualColor, NoColorMin])
.domain([0.5,YesNoMax])
.interpolate(d3.interpolateLab);
svg.append("g")
.attr("class", "precinct")
.selectAll("path")
.data(topojson.feature(map, map.objects.precincts).features)
.enter().append("path")
.attr("id", function(d){return PercById[d.properties.Pid];})
.attr("d", path)
.style("fill", function(d) {
if (WinnerById[d.properties.Pid]=="Yes"){
return YesColor(PercById[d.properties.Pid]);
}
else {
return NoColor(PercById[d.properties.Pid]);
}
});
svg.append("g")
.attr("class", "hoods")
.selectAll("path")
.data(topojson.feature(hoods, hoods.objects.hoods).features)
.enter().append("path")
.attr("d", path);
// LEGEND //////////////////////////////////////////////
var fakeData = [];
var rectWidth = Math.floor(legend_width / divisions);
for (var i=0; i < legend_width/2; i+= rectWidth ) {
fakeData.push(i);
}
var YesColorScaleLegend = d3.scale.linear()
.domain([0, fakeData.length-1])
.interpolate(d3.interpolateLab)
.range([EqualColor, YesColorMax]);
var NoColorScaleLegend = d3.scale.linear()
.domain([fakeData.length-1,0])
.interpolate(d3.interpolateLab)
.range([EqualColor, NoColorMin]);
var YesLegend = legend.append("g").attr("class", "YesLegend").attr("transform", "translate("+(legend_width/2)+",0)"),
NoLegend = legend.append("g").attr("class", "NoLegend");
YesLegend.selectAll("rect")
.data(fakeData)
.enter()
.append("rect")
.attr("x", function(d) { return d; })
.attr("y", 10)
.attr("height", 10)
.attr("width", rectWidth)
.attr("fill", function(d, i) { return YesColorScaleLegend(i)});
NoLegend.selectAll("rect")
.data(fakeData)
.enter()
.append("rect")
.attr("x", function(d) { return d; })
.attr("y", 10)
.attr("height", 10)
.attr("width", rectWidth)
.attr("fill", function(d, i) { return NoColorScaleLegend(i)});
legend.append("text").text("YES").attr("transform", "translate("+(legend_width/2+25)+",0)");
legend.append("text").text("NO").attr("transform", "translate("+(legend_width/2-25)+",0)");
legend.append("text").text(function(){return (0.5*100).toFixed(0) + "%";}).attr("transform","translate("+(legend_width/2)+",30)");
legend.append("text").text(function(){return (YesNoMax*100).toFixed(0);}).attr("transform","translate(0,30)");
legend.append("text").text(function(){return (YesNoMax*100).toFixed(0);}).attr("transform","translate("+(legend_width)+",30)");
};
});
</script>
</body>
</html>
PrecinctID Yes No Ballots Turnout prop PYes PNo Perc Win
1 1101 119 80 210 42.68 J 0.597989949748744 0.402010050251256 0.597989949748744 Yes
2 1102 427 349 817 46.74 J 0.550257731958763 0.449742268041237 0.550257731958763 Yes
3 1104 223 132 376 43.57 J 0.628169014084507 0.371830985915493 0.628169014084507 Yes
4 1106 294 247 571 40.41 J 0.543438077634011 0.456561922365989 0.543438077634011 Yes
5 1109 395 260 699 42.97 J 0.603053435114504 0.396946564885496 0.603053435114504 Yes
6 1111 168 144 328 37.88 J 0.538461538461538 0.461538461538462 0.538461538461538 Yes
7 1112 136 104 258 38.62 J 0.566666666666667 0.433333333333333 0.566666666666667 Yes
8 1114 309 238 586 39.38 J 0.564899451553931 0.435100548446069 0.564899451553931 Yes
9 1115 270 222 558 35.05 J 0.548780487804878 0.451219512195122 0.548780487804878 Yes
10 1117 171 109 297 38.67 J 0.610714285714286 0.389285714285714 0.610714285714286 Yes
11 1118 327 239 606 37.24 J 0.57773851590106 0.42226148409894 0.57773851590106 Yes
12 1119 151 94 266 38.49 J 0.616326530612245 0.383673469387755 0.616326530612245 Yes
13 1122 109 103 230 39.25 J 0.514150943396226 0.485849056603774 0.514150943396226 Yes
14 1123 269 220 534 31.01 J 0.550102249488753 0.449897750511247 0.550102249488753 Yes
15 1126 336 213 586 40.52 J 0.612021857923497 0.387978142076503 0.612021857923497 Yes
16 1128 272 302 623 40.04 J 0.473867595818815 0.526132404181185 0.526132404181185 No
17 1129 289 252 583 37.79 J 0.534195933456562 0.465804066543438 0.534195933456562 Yes
18 1132 193 148 379 44.27 J 0.565982404692082 0.434017595307918 0.565982404692082 Yes
19 1134 143 128 298 43 J 0.527675276752767 0.472324723247232 0.527675276752767 Yes
20 1135 272 230 529 42.22 J 0.541832669322709 0.458167330677291 0.541832669322709 Yes
21 1136 140 138 299 40.57 J 0.503597122302158 0.496402877697842 0.503597122302158 Yes
22 1141 391 267 701 41.31 J 0.594224924012158 0.405775075987842 0.594224924012158 Yes
23 1144 455 242 741 43.01 J 0.652797704447633 0.347202295552367 0.652797704447633 Yes
24 1146 428 274 744 44.26 J 0.60968660968661 0.39031339031339 0.60968660968661 Yes
25 1148 178 144 337 40.75 J 0.552795031055901 0.447204968944099 0.552795031055901 Yes
26 1149 452 259 765 46.14 J 0.635724331926864 0.364275668073136 0.635724331926864 Yes
27 1153 374 291 696 43.42 J 0.562406015037594 0.437593984962406 0.562406015037594 Yes
28 7001 163 106 284 45.23 J 0.605947955390335 0.394052044609665 0.605947955390335 Yes
29 7002 210 145 373 43.37 J 0.591549295774648 0.408450704225352 0.591549295774648 Yes
30 7003 456 318 811 51.13 J 0.589147286821705 0.410852713178295 0.589147286821705 Yes
31 7005 247 149 412 53.86 J 0.623737373737374 0.376262626262626 0.623737373737374 Yes
32 7006 298 118 437 50.35 J 0.716346153846154 0.283653846153846 0.716346153846154 Yes
33 7007 531 349 929 55.79 J 0.603409090909091 0.396590909090909 0.603409090909091 Yes
34 7011 389 261 672 37.03 J 0.598461538461538 0.401538461538462 0.598461538461538 Yes
35 7012 244 191 458 51.63 J 0.560919540229885 0.439080459770115 0.560919540229885 Yes
36 7013 361 296 677 42.74 J 0.549467275494673 0.450532724505327 0.549467275494673 Yes
37 7015 23 7 32 41.03 J 0.766666666666667 0.233333333333333 0.766666666666667 Yes
38 7016 348 220 607 35.39 J 0.612676056338028 0.387323943661972 0.612676056338028 Yes
39 7018 320 304 680 39.26 J 0.512820512820513 0.487179487179487 0.512820512820513 Yes
40 7021 349 177 551 32.84 J 0.663498098859316 0.336501901140684 0.663498098859316 Yes
41 7022 211 88 309 33.52 J 0.705685618729097 0.294314381270903 0.705685618729097 Yes
42 7023 282 139 436 28.31 J 0.669833729216152 0.330166270783848 0.669833729216152 Yes
43 7024 28 10 39 13.98 J 0.736842105263158 0.263157894736842 0.736842105263158 Yes
44 7025 60 25 92 20.86 J 0.705882352941177 0.294117647058824 0.705882352941177 Yes
45 7028 301 120 435 28.12 J 0.714964370546318 0.285035629453682 0.714964370546318 Yes
46 7029 117 48 173 20.66 J 0.709090909090909 0.290909090909091 0.709090909090909 Yes
47 7030 206 188 427 39.72 J 0.522842639593909 0.477157360406091 0.522842639593909 Yes
48 7032 157 96 274 32.09 J 0.620553359683794 0.379446640316206 0.620553359683794 Yes
49 7034 107 48 166 19.73 J 0.690322580645161 0.309677419354839 0.690322580645161 Yes
50 7035 66 39 110 33.64 J 0.628571428571429 0.371428571428571 0.628571428571429 Yes
51 7037 54 31 102 13.62 J 0.635294117647059 0.364705882352941 0.635294117647059 Yes
52 7038 120 127 268 31.67 J 0.48582995951417 0.51417004048583 0.51417004048583 No
53 7039 149 106 277 37.95 J 0.584313725490196 0.415686274509804 0.584313725490196 Yes
54 7041 7 12 19 35.85 J 0.368421052631579 0.631578947368421 0.631578947368421 No
55 7043 154 94 261 30.82 J 0.620967741935484 0.379032258064516 0.620967741935484 Yes
56 7045 140 109 277 39.12 J 0.562248995983936 0.437751004016064 0.562248995983936 Yes
57 7046 186 168 365 36.07 J 0.525423728813559 0.474576271186441 0.525423728813559 Yes
58 7047 158 148 330 43.53 J 0.516339869281046 0.483660130718954 0.516339869281046 Yes
59 7048 266 172 476 29.63 J 0.607305936073059 0.392694063926941 0.607305936073059 Yes
60 7049 276 247 570 37.4 J 0.527724665391969 0.472275334608031 0.527724665391969 Yes
61 7052 233 205 477 40.32 J 0.531963470319635 0.468036529680365 0.531963470319635 Yes
62 7054 252 127 408 24.89 J 0.66490765171504 0.33509234828496 0.66490765171504 Yes
63 7101 38 17 58 48.33 J 0.690909090909091 0.309090909090909 0.690909090909091 Yes
64 7201 178 165 359 43.62 J 0.518950437317784 0.481049562682216 0.518950437317784 Yes
65 7202 165 185 371 50.14 J 0.471428571428571 0.528571428571429 0.528571428571429 No
66 7203 158 136 304 41.31 J 0.537414965986395 0.462585034013605 0.537414965986395 Yes
67 7205 376 368 784 49.5 J 0.505376344086022 0.494623655913978 0.505376344086022 Yes
68 7206 71 55 128 40.64 J 0.563492063492063 0.436507936507937 0.563492063492063 Yes
69 7207 135 81 229 42.81 J 0.625 0.375 0.625 Yes
70 7208 200 298 533 52.41 J 0.401606425702811 0.598393574297189 0.598393574297189 No
71 7301 481 342 885 50.11 J 0.584447144592953 0.415552855407047 0.584447144592953 Yes
72 7302 197 216 455 61.73 J 0.476997578692494 0.523002421307506 0.523002421307506 No
73 7303 492 337 915 52.68 J 0.593486127864898 0.406513872135103 0.593486127864898 Yes
74 7305 411 365 841 58 J 0.529639175257732 0.470360824742268 0.529639175257732 Yes
75 7308 186 138 349 63.91 J 0.574074074074074 0.425925925925926 0.574074074074074 Yes
76 7309 189 120 329 45.37 J 0.611650485436893 0.388349514563107 0.611650485436893 Yes
77 7312 189 253 462 56.96 J 0.427601809954751 0.572398190045249 0.572398190045249 No
78 7313 462 230 787 52.12 J 0.667630057803468 0.332369942196532 0.667630057803468 Yes
79 7315 427 225 732 52.51 J 0.654907975460123 0.345092024539877 0.654907975460123 Yes
80 7317 247 188 468 55.84 J 0.567816091954023 0.432183908045977 0.567816091954023 Yes
81 7318 389 306 751 50.54 J 0.559712230215827 0.440287769784173 0.559712230215827 Yes
82 7319 381 261 696 45.14 J 0.593457943925234 0.406542056074766 0.593457943925234 Yes
83 7321 154 111 296 49.42 J 0.581132075471698 0.418867924528302 0.581132075471698 Yes
84 7322 265 108 446 54.66 J 0.710455764075067 0.289544235924933 0.710455764075067 Yes
85 7323 195 143 370 51.68 J 0.576923076923077 0.423076923076923 0.576923076923077 Yes
86 7325 217 132 382 47.57 J 0.621776504297994 0.378223495702006 0.621776504297994 Yes
87 7326 220 135 387 51.13 J 0.619718309859155 0.380281690140845 0.619718309859155 Yes
88 7329 414 252 771 54.99 J 0.621621621621622 0.378378378378378 0.621621621621622 Yes
89 7331 225 189 448 57.22 J 0.543478260869565 0.456521739130435 0.543478260869565 Yes
90 7332 459 218 733 48.96 J 0.677991137370753 0.322008862629247 0.677991137370753 Yes
91 7333 219 158 407 47.83 J 0.580901856763926 0.419098143236074 0.580901856763926 Yes
92 7336 479 328 848 49.05 J 0.593556381660471 0.406443618339529 0.593556381660471 Yes
93 7337 181 195 412 52.62 J 0.481382978723404 0.518617021276596 0.518617021276596 No
94 7338 476 262 855 56.59 J 0.644986449864499 0.355013550135501 0.644986449864499 Yes
95 7339 379 186 611 44.44 J 0.670796460176991 0.329203539823009 0.670796460176991 Yes
96 7342 463 317 832 50.39 J 0.593589743589744 0.406410256410256 0.593589743589744 Yes
97 7343 443 218 689 44.97 J 0.670196671709531 0.329803328290469 0.670196671709531 Yes
98 7346 464 217 731 44.54 J 0.681350954478708 0.318649045521292 0.681350954478708 Yes
99 7348 183 114 311 41.42 J 0.616161616161616 0.383838383838384 0.616161616161616 Yes
100 7349 222 104 355 43.29 J 0.680981595092024 0.319018404907975 0.680981595092024 Yes
101 7501 172 156 347 37.72 J 0.524390243902439 0.475609756097561 0.524390243902439 Yes
102 7503 304 232 556 40.35 J 0.567164179104478 0.432835820895522 0.567164179104478 Yes
103 7505 189 257 477 58.74 J 0.423766816143498 0.576233183856502 0.576233183856502 No
104 7507 372 191 615 36.39 J 0.660746003552398 0.339253996447602 0.660746003552398 Yes
105 7508 194 134 359 55.4 J 0.591463414634146 0.408536585365854 0.591463414634146 Yes
106 7509 239 146 407 47.77 J 0.620779220779221 0.379220779220779 0.620779220779221 Yes
107 7513 292 174 505 40.27 J 0.626609442060086 0.373390557939914 0.626609442060086 Yes
108 7515 314 150 513 33.03 J 0.676724137931034 0.323275862068966 0.676724137931034 Yes
109 7516 226 140 395 52.12 J 0.617486338797814 0.382513661202186 0.617486338797814 Yes
110 7518 527 241 814 49.54 J 0.686197916666667 0.313802083333333 0.686197916666667 Yes
111 7521 419 213 648 46.12 J 0.662974683544304 0.337025316455696 0.662974683544304 Yes
112 7523 448 219 687 46.51 J 0.671664167916042 0.328335832083958 0.671664167916042 Yes
113 7524 154 66 227 38.22 J 0.7 0.3 0.7 Yes
114 7525 429 172 648 41.09 J 0.713810316139767 0.286189683860233 0.713810316139767 Yes
115 7527 195 100 317 45.74 J 0.661016949152542 0.338983050847458 0.661016949152542 Yes
116 7529 522 216 763 46.1 J 0.707317073170732 0.292682926829268 0.707317073170732 Yes
117 7532 411 217 663 44.35 J 0.654458598726115 0.345541401273885 0.654458598726115 Yes
118 7533 534 271 844 50.66 J 0.663354037267081 0.336645962732919 0.663354037267081 Yes
119 7536 467 257 758 51.89 J 0.645027624309392 0.354972375690608 0.645027624309392 Yes
120 7539 529 270 829 51.72 J 0.662077596996245 0.337922403003755 0.662077596996245 Yes
121 7542 496 208 739 48.62 J 0.704545454545455 0.295454545454545 0.704545454545455 Yes
122 7543 512 259 792 47.88 J 0.664072632944228 0.335927367055772 0.664072632944228 Yes
123 7546 550 275 856 49.19 J 0.666666666666667 0.333333333333333 0.666666666666667 Yes
124 7548 525 271 832 49.46 J 0.659547738693467 0.340452261306533 0.659547738693467 Yes
125 7552 195 135 346 50.43 J 0.590909090909091 0.409090909090909 0.590909090909091 Yes
126 7553 37 39 79 46.2 J 0.486842105263158 0.513157894736842 0.513157894736842 No
127 7554 439 282 762 50.4 J 0.608876560332871 0.391123439667129 0.608876560332871 Yes
128 7555 450 277 769 52.81 J 0.61898211829436 0.38101788170564 0.61898211829436 Yes
129 7556 247 225 487 53.64 J 0.523305084745763 0.476694915254237 0.523305084745763 Yes
130 7601 159 85 257 31.73 J 0.651639344262295 0.348360655737705 0.651639344262295 Yes
131 7604 416 149 589 40.35 J 0.736283185840708 0.263716814159292 0.736283185840708 Yes
132 7605 278 124 462 31.15 J 0.691542288557214 0.308457711442786 0.691542288557214 Yes
133 7607 430 149 624 37.07 J 0.7426597582038 0.2573402417962 0.7426597582038 Yes
134 7608 273 123 471 36.77 J 0.689393939393939 0.310606060606061 0.689393939393939 Yes
135 7612 302 137 490 35.45 J 0.687927107061503 0.312072892938497 0.687927107061503 Yes
136 7613 407 166 626 33.98 J 0.710296684118674 0.289703315881326 0.710296684118674 Yes
137 7615 331 137 515 29.51 J 0.707264957264957 0.292735042735043 0.707264957264957 Yes
138 7616 139 87 247 42.44 J 0.615044247787611 0.384955752212389 0.615044247787611 Yes
139 7618 202 122 341 42.62 J 0.623456790123457 0.376543209876543 0.623456790123457 Yes
140 7619 282 174 487 36.67 J 0.618421052631579 0.381578947368421 0.618421052631579 Yes
141 7621 176 121 303 36.03 J 0.592592592592593 0.407407407407407 0.592592592592593 Yes
142 7622 312 129 480 26.71 J 0.707482993197279 0.292517006802721 0.707482993197279 Yes
143 7623 302 150 482 33.13 J 0.668141592920354 0.331858407079646 0.668141592920354 Yes
144 7625 222 132 445 52.66 J 0.627118644067797 0.372881355932203 0.627118644067797 Yes
145 7626 170 181 361 42.47 J 0.484330484330484 0.515669515669516 0.515669515669516 No
146 7627 142 192 356 36.43 J 0.425149700598802 0.574850299401198 0.574850299401198 No
147 7628 213 114 339 37.71 J 0.651376146788991 0.348623853211009 0.651376146788991 Yes
148 7632 148 103 256 40.57 J 0.589641434262948 0.410358565737052 0.589641434262948 Yes
149 7633 329 260 623 42.5 J 0.558573853989813 0.441426146010187 0.558573853989813 Yes
150 7634 187 128 344 40.56 J 0.593650793650794 0.406349206349206 0.593650793650794 Yes
151 7636 241 257 517 35.83 J 0.483935742971888 0.516064257028112 0.516064257028112 No
152 7637 170 194 384 40.08 J 0.467032967032967 0.532967032967033 0.532967032967033 No
153 7638 133 238 389 44.05 J 0.358490566037736 0.641509433962264 0.641509433962264 No
154 7641 285 363 685 42.05 J 0.439814814814815 0.560185185185185 0.560185185185185 No
155 7642 257 136 433 52.23 J 0.653944020356234 0.346055979643766 0.653944020356234 Yes
156 7643 172 166 352 43.35 J 0.50887573964497 0.49112426035503 0.50887573964497 Yes
157 7644 145 142 311 37.92 J 0.505226480836237 0.494773519163763 0.505226480836237 Yes
158 7645 127 143 271 47.38 J 0.47037037037037 0.52962962962963 0.52962962962963 No
159 7646 207 198 433 36.94 J 0.511111111111111 0.488888888888889 0.511111111111111 Yes
160 7647 138 46 192 24.52 J 0.75 0.25 0.75 Yes
161 7701 244 188 450 50.79 J 0.564814814814815 0.435185185185185 0.564814814814815 Yes
162 7703 26 13 48 35.56 J 0.666666666666667 0.333333333333333 0.666666666666667 Yes
163 7704 388 430 853 53.92 J 0.474327628361858 0.525672371638142 0.525672371638142 No
164 7705 131 159 301 57.88 J 0.451724137931034 0.548275862068966 0.548275862068966 No
165 7706 213 223 456 57.36 J 0.488532110091743 0.511467889908257 0.511467889908257 No
166 7707 204 239 461 59.11 J 0.460496613995485 0.539503386004515 0.539503386004515 No
167 7708 230 216 472 57.63 J 0.515695067264574 0.484304932735426 0.515695067264574 Yes
168 7709 321 234 575 53.49 J 0.578378378378378 0.421621621621622 0.578378378378378 Yes
169 7712 132 127 274 55.24 J 0.50965250965251 0.49034749034749 0.50965250965251 Yes
170 7801 276 226 527 59.02 J 0.549800796812749 0.450199203187251 0.549800796812749 Yes
171 7802 212 170 393 56.15 J 0.554973821989529 0.445026178010471 0.554973821989529 Yes
172 7804 260 222 495 58.37 J 0.539419087136929 0.460580912863071 0.539419087136929 Yes
173 7806 512 251 804 54.14 J 0.671035386631717 0.328964613368283 0.671035386631717 Yes
174 7808 447 230 714 52.54 J 0.6602658788774 0.3397341211226 0.6602658788774 Yes
175 7809 289 152 463 50.82 J 0.655328798185941 0.344671201814059 0.655328798185941 Yes
176 7812 501 249 790 52.25 J 0.668 0.332 0.668 Yes
177 7814 508 250 801 46.41 J 0.670184696569921 0.329815303430079 0.670184696569921 Yes
178 7815 268 195 498 57.57 J 0.578833693304536 0.421166306695464 0.578833693304536 Yes
179 7816 517 389 942 59.88 J 0.570640176600442 0.429359823399558 0.570640176600442 Yes
180 7818 557 288 886 56.51 J 0.659171597633136 0.340828402366864 0.659171597633136 Yes
181 7819 238 132 391 51.79 J 0.643243243243243 0.356756756756757 0.643243243243243 Yes
182 7822 561 387 986 56.47 J 0.591772151898734 0.408227848101266 0.591772151898734 Yes
183 7823 292 149 469 57.27 J 0.662131519274376 0.337868480725624 0.662131519274376 Yes
184 7824 410 223 661 50.92 J 0.647709320695103 0.352290679304897 0.647709320695103 Yes
185 7827 505 239 767 51.69 J 0.678763440860215 0.321236559139785 0.678763440860215 Yes
186 7828 274 181 476 53.42 J 0.602197802197802 0.397802197802198 0.602197802197802 Yes
187 7831 282 184 492 57.89 J 0.605150214592275 0.394849785407725 0.605150214592275 Yes
188 7832 275 150 438 58.01 J 0.647058823529412 0.352941176470588 0.647058823529412 Yes
189 7833 239 151 404 54.09 J 0.612820512820513 0.387179487179487 0.612820512820513 Yes
190 7834 515 294 846 53.78 J 0.636588380716934 0.363411619283066 0.636588380716934 Yes
191 7835 217 160 393 51.24 J 0.575596816976127 0.424403183023873 0.575596816976127 Yes
192 7836 275 182 485 53.53 J 0.601750547045952 0.398249452954048 0.601750547045952 Yes
193 7837 516 425 977 58.4 J 0.548352816153029 0.451647183846971 0.548352816153029 Yes
194 7838 285 224 521 59.48 J 0.55992141453831 0.44007858546169 0.55992141453831 Yes
195 7839 241 193 459 55.24 J 0.555299539170507 0.444700460829493 0.555299539170507 Yes
196 7841 522 392 969 55.79 J 0.571115973741794 0.428884026258206 0.571115973741794 Yes
197 7842 552 351 936 53.73 J 0.611295681063123 0.388704318936877 0.611295681063123 Yes
198 7844 448 215 681 49.82 J 0.675716440422323 0.324283559577677 0.675716440422323 Yes
199 7845 231 153 417 51.36 J 0.6015625 0.3984375 0.6015625 Yes
200 7847 514 362 926 53.52 J 0.58675799086758 0.41324200913242 0.58675799086758 Yes
201 7852 298 289 608 55.28 J 0.507666098807496 0.492333901192504 0.507666098807496 Yes
202 7855 478 415 917 53.43 J 0.535274356103024 0.464725643896976 0.535274356103024 Yes
203 7856 477 365 875 53.13 J 0.566508313539192 0.433491686460808 0.566508313539192 Yes
204 7859 446 344 822 50.8 J 0.564556962025316 0.435443037974684 0.564556962025316 Yes
205 7861 495 338 877 52.45 J 0.594237695078031 0.405762304921969 0.594237695078031 Yes
206 7863 274 158 446 51.68 J 0.634259259259259 0.365740740740741 0.634259259259259 Yes
207 7864 465 340 840 53.61 J 0.577639751552795 0.422360248447205 0.577639751552795 Yes
208 7865 525 317 889 55.22 J 0.623515439429929 0.376484560570071 0.623515439429929 Yes
209 7866 197 228 448 58.56 J 0.463529411764706 0.536470588235294 0.536470588235294 No
210 7867 453 388 889 53.17 J 0.538644470868014 0.461355529131986 0.538644470868014 Yes
211 7871 260 187 475 56.89 J 0.58165548098434 0.41834451901566 0.58165548098434 Yes
212 7872 255 196 469 55.7 J 0.565410199556541 0.434589800443459 0.565410199556541 Yes
213 7874 134 86 226 51.48 J 0.609090909090909 0.390909090909091 0.609090909090909 Yes
214 7875 160 97 267 48.03 J 0.622568093385214 0.377431906614786 0.622568093385214 Yes
215 7902 535 264 825 42.25 J 0.669586983729662 0.330413016270338 0.669586983729662 Yes
216 7903 243 92 363 43.16 J 0.725373134328358 0.274626865671642 0.725373134328358 Yes
217 7904 253 114 380 44.87 J 0.689373297002725 0.310626702997275 0.689373297002725 Yes
218 7905 254 122 395 48.95 J 0.675531914893617 0.324468085106383 0.675531914893617 Yes
219 7906 242 107 364 48.66 J 0.693409742120344 0.306590257879656 0.693409742120344 Yes
220 7907 587 280 903 49.67 J 0.677047289504037 0.322952710495963 0.677047289504037 Yes
221 7909 489 228 752 48.24 J 0.682008368200837 0.317991631799163 0.682008368200837 Yes
222 7912 280 158 468 51.14 J 0.639269406392694 0.360730593607306 0.639269406392694 Yes
223 7913 247 151 407 48.28 J 0.620603015075377 0.379396984924623 0.620603015075377 Yes
224 7915 538 205 788 50.51 J 0.724091520861373 0.275908479138627 0.724091520861373 Yes
225 7916 279 126 423 50.78 J 0.688888888888889 0.311111111111111 0.688888888888889 Yes
226 7917 574 220 827 48.11 J 0.722921914357683 0.277078085642317 0.722921914357683 Yes
227 7919 278 116 406 48.45 J 0.705583756345178 0.294416243654822 0.705583756345178 Yes
228 7922 491 206 729 44.59 J 0.704447632711621 0.295552367288379 0.704447632711621 Yes
229 7924 535 237 805 50.79 J 0.69300518134715 0.30699481865285 0.69300518134715 Yes
230 7925 169 71 245 46.94 J 0.704166666666667 0.295833333333333 0.704166666666667 Yes
231 7926 281 134 429 55.93 J 0.67710843373494 0.32289156626506 0.67710843373494 Yes
232 7927 538 312 869 55.07 J 0.632941176470588 0.367058823529412 0.632941176470588 Yes
233 7931 266 156 426 58.92 J 0.630331753554502 0.369668246445498 0.630331753554502 Yes
234 7932 160 106 281 55.31 J 0.601503759398496 0.398496240601504 0.601503759398496 Yes
235 7934 262 118 408 51.38 J 0.689473684210526 0.310526315789474 0.689473684210526 Yes
236 7935 618 366 1011 60.15 J 0.628048780487805 0.371951219512195 0.628048780487805 Yes
237 7936 290 152 477 59.4 J 0.656108597285068 0.343891402714932 0.656108597285068 Yes
238 7937 272 148 431 51.8 J 0.647619047619048 0.352380952380952 0.647619047619048 Yes
239 7939 440 239 710 51.68 J 0.648011782032401 0.351988217967599 0.648011782032401 Yes
240 7942 237 126 379 45.5 J 0.652892561983471 0.347107438016529 0.652892561983471 Yes
241 7943 242 155 415 50.79 J 0.609571788413098 0.390428211586902 0.609571788413098 Yes
242 7944 432 250 708 48.32 J 0.633431085043988 0.366568914956012 0.633431085043988 Yes
243 7945 203 124 342 41.6 J 0.620795107033639 0.379204892966361 0.620795107033639 Yes
244 7946 368 313 741 43.56 J 0.540381791483113 0.459618208516887 0.540381791483113 Yes
245 7947 157 158 343 40.64 J 0.498412698412698 0.501587301587302 0.501587301587302 No
246 7952 292 295 628 44.11 J 0.497444633730835 0.502555366269165 0.502555366269165 No
247 7953 261 259 551 42.68 J 0.501923076923077 0.498076923076923 0.501923076923077 Yes
248 7955 170 147 344 43.33 J 0.536277602523659 0.463722397476341 0.536277602523659 Yes
249 7956 127 108 256 38.85 J 0.540425531914894 0.459574468085106 0.540425531914894 Yes
250 7957 148 81 250 42.81 J 0.646288209606987 0.353711790393013 0.646288209606987 Yes
251 7958 58 39 105 41.34 J 0.597938144329897 0.402061855670103 0.597938144329897 Yes
252 9001 56 36 94 40.52 J 0.608695652173913 0.391304347826087 0.608695652173913 Yes
253 9101 194 158 377 45.1 J 0.551136363636364 0.448863636363636 0.551136363636364 Yes
254 9102 190 187 402 47.51 J 0.503978779840849 0.496021220159151 0.503978779840849 Yes
255 9103 383 307 741 42.61 J 0.555072463768116 0.444927536231884 0.555072463768116 Yes
256 9107 364 321 723 44.33 J 0.531386861313869 0.468613138686131 0.531386861313869 Yes
257 9108 313 237 605 42.13 J 0.569090909090909 0.430909090909091 0.569090909090909 Yes
258 9109 376 357 783 47.83 J 0.512960436562074 0.487039563437926 0.512960436562074 Yes
259 9113 221 211 456 48.56 J 0.511574074074074 0.488425925925926 0.511574074074074 Yes
260 9114 436 284 762 45.33 J 0.605555555555556 0.394444444444444 0.605555555555556 Yes
261 9116 451 252 737 43.36 J 0.64153627311522 0.35846372688478 0.64153627311522 Yes
262 9117 340 337 719 45.65 J 0.502215657311669 0.497784342688331 0.502215657311669 Yes
263 9121 381 307 739 45.59 J 0.553779069767442 0.446220930232558 0.553779069767442 Yes
264 9122 381 356 784 45.09 J 0.516960651289009 0.483039348710991 0.516960651289009 Yes
265 9123 366 270 679 41.89 J 0.575471698113208 0.424528301886792 0.575471698113208 Yes
266 9125 198 142 372 45.82 J 0.582352941176471 0.417647058823529 0.582352941176471 Yes
267 9126 406 408 856 47.55 J 0.498771498771499 0.501228501228501 0.501228501228501 No
268 9127 202 194 431 48.05 J 0.51010101010101 0.48989898989899 0.51010101010101 Yes
269 9128 349 282 668 45.78 J 0.553090332805071 0.446909667194929 0.553090332805071 Yes
270 9131 349 258 648 42.78 J 0.57495881383855 0.42504118616145 0.57495881383855 Yes
271 9133 247 183 465 49.26 J 0.574418604651163 0.425581395348837 0.574418604651163 Yes
272 9134 163 158 341 46.08 J 0.507788161993769 0.492211838006231 0.507788161993769 Yes
273 9135 156 152 324 42.58 J 0.506493506493506 0.493506493506494 0.506493506493506 Yes
274 9136 217 166 404 48.67 J 0.566579634464752 0.433420365535248 0.566579634464752 Yes
275 9137 388 330 785 46.12 J 0.540389972144847 0.459610027855153 0.540389972144847 Yes
276 9141 201 182 409 46.32 J 0.524804177545692 0.475195822454308 0.524804177545692 Yes
277 9142 409 302 766 44.3 J 0.575246132208158 0.424753867791842 0.575246132208158 Yes
278 9146 428 283 758 45.94 J 0.60196905766526 0.39803094233474 0.60196905766526 Yes
279 9148 429 325 795 43.76 J 0.568965517241379 0.431034482758621 0.568965517241379 Yes
280 9151 182 156 357 47.41 J 0.538461538461538 0.461538461538462 0.538461538461538 Yes
281 9152 329 220 584 35.57 J 0.599271402550091 0.400728597449909 0.599271402550091 Yes
282 9201 195 94 298 36.34 J 0.674740484429066 0.325259515570934 0.674740484429066 Yes
283 9202 125 118 259 31.17 J 0.51440329218107 0.48559670781893 0.51440329218107 Yes
284 9205 276 278 586 40.42 J 0.498194945848375 0.501805054151625 0.501805054151625 No
285 9206 233 391 666 39.84 J 0.373397435897436 0.626602564102564 0.626602564102564 No
286 9208 126 137 275 33.7 J 0.479087452471483 0.520912547528517 0.520912547528517 No
287 9209 217 304 550 41.04 J 0.416506717850288 0.583493282149712 0.583493282149712 No
288 9211 224 309 559 35.91 J 0.420262664165103 0.579737335834897 0.579737335834897 No
289 9212 118 134 265 38.4 J 0.468253968253968 0.531746031746032 0.531746031746032 No
290 9214 96 139 260 48.33 J 0.408510638297872 0.591489361702128 0.591489361702128 No
291 9215 89 138 243 42.19 J 0.392070484581498 0.607929515418502 0.607929515418502 No
292 9219 227 228 492 35.94 J 0.498901098901099 0.501098901098901 0.501098901098901 No
293 9221 100 210 321 55.06 J 0.32258064516129 0.67741935483871 0.67741935483871 No
294 9222 247 324 601 41.79 J 0.432574430823117 0.567425569176883 0.567425569176883 No
295 9223 221 236 485 41.7 J 0.483588621444201 0.516411378555799 0.516411378555799 No
296 9224 153 217 384 44.8 J 0.413513513513514 0.586486486486486 0.586486486486486 No
297 9225 285 324 650 39.75 J 0.467980295566502 0.532019704433498 0.532019704433498 No
298 9227 257 433 729 53.25 J 0.372463768115942 0.627536231884058 0.627536231884058 No
299 9229 103 158 279 49.12 J 0.39463601532567 0.60536398467433 0.60536398467433 No
300 9231 218 210 452 48.65 J 0.509345794392523 0.490654205607477 0.509345794392523 Yes
301 9232 253 359 643 45.73 J 0.413398692810457 0.586601307189543 0.586601307189543 No
302 9234 279 360 665 44.75 J 0.436619718309859 0.563380281690141 0.563380281690141 No
303 9238 278 338 642 41.02 J 0.451298701298701 0.548701298701299 0.548701298701299 No
304 9239 153 180 346 46.13 J 0.459459459459459 0.540540540540541 0.540540540540541 No
305 9241 170 187 375 42.86 J 0.476190476190476 0.523809523809524 0.523809523809524 No
306 9242 311 305 636 40.05 J 0.50487012987013 0.49512987012987 0.50487012987013 Yes
307 9243 229 214 473 40.23 J 0.516930022573363 0.483069977426637 0.516930022573363 Yes
308 9244 286 294 615 39.52 J 0.493103448275862 0.506896551724138 0.506896551724138 No
309 9245 285 275 611 42.76 J 0.508928571428571 0.491071428571429 0.508928571428571 Yes
310 9251 374 352 753 46.17 J 0.515151515151515 0.484848484848485 0.515151515151515 Yes
311 9252 180 198 394 48.23 J 0.476190476190476 0.523809523809524 0.523809523809524 No
312 9253 164 127 310 43.48 J 0.563573883161512 0.436426116838488 0.563573883161512 Yes
313 9255 114 81 199 42.53 J 0.584615384615385 0.415384615384615 0.584615384615385 Yes
314 9256 255 222 494 42.41 J 0.534591194968553 0.465408805031447 0.534591194968553 Yes
315 9257 79 31 115 45.81 J 0.718181818181818 0.281818181818182 0.718181818181818 Yes
316 9258 154 141 308 49.36 J 0.522033898305085 0.477966101694915 0.522033898305085 Yes
317 9401 462 248 750 42.3 J 0.650704225352113 0.349295774647887 0.650704225352113 Yes
318 9402 383 301 727 41.92 J 0.559941520467836 0.440058479532164 0.559941520467836 Yes
319 9404 176 160 375 44.43 J 0.523809523809524 0.476190476190476 0.523809523809524 Yes
320 9405 158 156 339 46.83 J 0.503184713375796 0.496815286624204 0.503184713375796 Yes
321 9406 179 164 376 44.71 J 0.521865889212828 0.478134110787172 0.521865889212828 Yes
322 9407 165 141 329 39.4 J 0.53921568627451 0.46078431372549 0.53921568627451 Yes
323 9408 172 111 305 39.67 J 0.607773851590106 0.392226148409894 0.607773851590106 Yes
324 9409 160 80 258 44.18 J 0.666666666666667 0.333333333333333 0.666666666666667 Yes
325 9413 192 167 404 47.98 J 0.534818941504178 0.465181058495822 0.534818941504178 Yes
326 9416 406 325 795 45.66 J 0.555403556771546 0.444596443228454 0.555403556771546 Yes
327 9418 277 333 654 45.23 J 0.454098360655738 0.545901639344262 0.545901639344262 No
328 9419 363 347 768 46.77 J 0.511267605633803 0.488732394366197 0.511267605633803 Yes
329 9421 317 357 719 45.83 J 0.470326409495549 0.529673590504451 0.529673590504451 No
330 9422 356 368 796 42.89 J 0.49171270718232 0.50828729281768 0.50828729281768 No
331 9423 336 359 755 43.92 J 0.483453237410072 0.516546762589928 0.516546762589928 No
332 9424 330 332 731 42.85 J 0.498489425981873 0.501510574018127 0.501510574018127 No
333 9426 131 168 314 42.66 J 0.438127090301003 0.561872909698997 0.561872909698997 No
334 9427 151 194 373 44.09 J 0.43768115942029 0.56231884057971 0.56231884057971 No
335 9429 327 424 830 48.76 J 0.435419440745672 0.564580559254328 0.564580559254328 No
336 9432 140 162 341 40.64 J 0.463576158940397 0.536423841059603 0.536423841059603 No
337 9433 127 187 343 39.56 J 0.404458598726115 0.595541401273885 0.595541401273885 No
338 9436 174 174 397 43.11 J 0.5 0.5 0.5 No
339 9437 335 413 789 46.28 J 0.447860962566845 0.552139037433155 0.552139037433155 No
340 9439 303 399 756 44.47 J 0.431623931623932 0.568376068376068 0.568376068376068 No
341 9442 378 330 759 42.28 J 0.533898305084746 0.466101694915254 0.533898305084746 Yes
342 9443 347 356 760 44.29 J 0.493598862019915 0.506401137980085 0.506401137980085 No
343 9447 327 370 734 42.38 J 0.469153515064562 0.530846484935438 0.530846484935438 No
344 9449 260 355 673 42.64 J 0.422764227642276 0.577235772357724 0.577235772357724 No
345 9451 78 107 192 49.36 J 0.421621621621622 0.578378378378378 0.578378378378378 No
346 9452 323 432 825 48.41 J 0.427814569536424 0.572185430463576 0.572185430463576 No
347 9453 96 111 222 51.15 J 0.463768115942029 0.536231884057971 0.536231884057971 No
348 9501 23 19 50 35.71 J 0.547619047619048 0.452380952380952 0.547619047619048 Yes
349 9502 44 44 90 49.18 J 0.5 0.5 0.5 No
350 9503 137 81 232 38.09 J 0.628440366972477 0.371559633027523 0.628440366972477 Yes
351 9505 349 177 563 39.29 J 0.663498098859316 0.336501901140684 0.663498098859316 Yes
352 9507 391 190 615 47.02 J 0.672977624784854 0.327022375215146 0.672977624784854 Yes
353 9511 156 92 271 47.63 J 0.629032258064516 0.370967741935484 0.629032258064516 Yes
354 9512 203 109 321 44.52 J 0.650641025641026 0.349358974358974 0.650641025641026 Yes
355 9513 453 207 677 42.49 J 0.686363636363636 0.313636363636364 0.686363636363636 Yes
356 9516 395 281 702 46.64 J 0.584319526627219 0.415680473372781 0.584319526627219 Yes
357 9518 403 225 673 45.41 J 0.64171974522293 0.35828025477707 0.64171974522293 Yes
358 9521 473 305 814 47.3 J 0.607969151670951 0.392030848329049 0.607969151670951 Yes
359 9522 227 155 405 46.87 J 0.594240837696335 0.405759162303665 0.594240837696335 Yes
360 9702 369 248 649 49.02 J 0.59805510534846 0.40194489465154 0.59805510534846 Yes
361 9703 213 214 458 50.33 J 0.498829039812646 0.501170960187354 0.501170960187354 No
362 9704 426 386 847 48.1 J 0.524630541871921 0.475369458128079 0.524630541871921 Yes
363 9706 18 11 30 56.6 J 0.620689655172414 0.379310344827586 0.620689655172414 Yes
364 9708 341 376 769 48.82 J 0.475592747559275 0.524407252440725 0.524407252440725 No
365 9711 122 176 317 53.46 J 0.409395973154362 0.590604026845638 0.590604026845638 No
366 9712 135 199 355 58.68 J 0.404191616766467 0.595808383233533 0.595808383233533 No
367 9713 324 403 798 44.48 J 0.445667125171939 0.55433287482806 0.55433287482806 No
368 9714 172 274 472 53.75 J 0.385650224215247 0.614349775784753 0.614349775784753 No
369 9715 99 164 269 50 J 0.376425855513308 0.623574144486692 0.623574144486692 No
370 9716 342 460 860 47.78 J 0.42643391521197 0.57356608478803 0.57356608478803 No
371 9718 177 271 471 59.54 J 0.395089285714286 0.604910714285714 0.604910714285714 No
372 9721 311 456 815 56.48 J 0.405475880052151 0.594524119947849 0.594524119947849 No
373 9722 123 154 289 50.35 J 0.444043321299639 0.555956678700361 0.555956678700361 No
374 9723 84 141 241 57.52 J 0.373333333333333 0.626666666666667 0.626666666666667 No
375 9725 291 531 866 49.31 J 0.354014598540146 0.645985401459854 0.645985401459854 No
376 9726 113 83 213 31.04 J 0.576530612244898 0.423469387755102 0.576530612244898 Yes
377 9727 168 275 467 46.46 J 0.379232505643341 0.620767494356659 0.620767494356659 No
378 9728 379 455 886 49.55 J 0.454436450839329 0.545563549160672 0.545563549160672 No
379 9729 225 456 713 55.66 J 0.330396475770925 0.669603524229075 0.669603524229075 No
380 9731 256 389 679 55.79 J 0.396899224806202 0.603100775193798 0.603100775193798 No
381 9732 12 26 40 58.82 J 0.315789473684211 0.684210526315789 0.684210526315789 No
382 9733 65 54 123 59.71 J 0.546218487394958 0.453781512605042 0.546218487394958 Yes
383 9737 337 404 777 55.54 J 0.454790823211876 0.545209176788124 0.545209176788124 No
384 9738 176 113 305 43.76 J 0.608996539792388 0.391003460207612 0.608996539792388 Yes
385 9741 72 32 131 14.28 J 0.692307692307692 0.307692307692308 0.692307692307692 Yes
386 9744 324 176 532 32.12 J 0.648 0.352 0.648 Yes
387 9745 377 189 588 32.41 J 0.666077738515901 0.333922261484099 0.666077738515901 Yes
388 9746 171 239 435 51.85 J 0.417073170731707 0.582926829268293 0.582926829268293 No
389 9747 191 174 388 43.65 J 0.523287671232877 0.476712328767123 0.523287671232877 Yes
390 9749 169 131 325 40.52 J 0.563333333333333 0.436666666666667 0.563333333333333 Yes
391 9751 184 232 448 50.8 J 0.442307692307692 0.557692307692308 0.557692307692308 No
392 9752 367 309 708 52.33 J 0.542899408284024 0.457100591715976 0.542899408284024 Yes
393 9755 332 267 641 53.38 J 0.554257095158598 0.445742904841402 0.554257095158598 Yes
394 9756 158 137 306 37.78 J 0.535593220338983 0.464406779661017 0.535593220338983 Yes
395 9801 82 81 173 43.36 J 0.503067484662577 0.496932515337423 0.503067484662577 Yes
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"precincts":{"type":"GeometryCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"geometries":[{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1141},"arcs":[[0,1,2,3,4,5]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1146},"arcs":[[6,7,8,9]]},{"type":"Polygon","properties":{"neighrep":"N EMBRCDRO","Pid":7302},"arcs":[[10,11,12,13,14]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7303},"arcs":[[15,16,17,18,19,20,21]]},{"type":"Polygon","properties":{"neighrep":"N EMBRCDRO","Pid":7301},"arcs":[[22,-17,23,24,-14]]},{"type":"Polygon","properties":{"neighrep":"N EMBRCDRO","Pid":7305},"arcs":[[25,26,-18,-23,-13]]},{"type":"Polygon","properties":{"neighrep":"N EMBRCDRO","Pid":7308},"arcs":[[27,28,-26,-12]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7309},"arcs":[[29,30,31]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7516},"arcs":[[32,33,34,35,36]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7515},"arcs":[[37,38,39,40,-33,41]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7513},"arcs":[[42,43,-39,44]]},{"type":"Polygon","properties":{"neighrep":"HAIGHT ASH","Pid":7518},"arcs":[[45,46,47,48,49]]},{"type":"Polygon","properties":{"neighrep":"VISITA VLY","Pid":7045},"arcs":[[50,51,52,53]]},{"type":"Polygon","properties":{"neighrep":"VISITA VLY","Pid":7047},"arcs":[[54,55,56,57,58]]},{"type":"Polygon","properties":{"neighrep":"VISITA VLY","Pid":7046},"arcs":[[59,60,61,62,63,-55]]},{"type":"Polygon","properties":{"neighrep":"PORTOLA","Pid":7041},"arcs":[[-61,64,65]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7043},"arcs":[[66,-56,-64,67,68,69,70,71,72]]},{"type":"Polygon","properties":{"neighrep":"VISITA VLY","Pid":7049},"arcs":[[73,74,75,-51,-58]]},{"type":"Polygon","properties":{"neighrep":"VISITA VLY","Pid":7048},"arcs":[[76,77,78,79,80,81,82,83,84,85,-52,-76]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1128},"arcs":[[86,87,88,89,90]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1129},"arcs":[[91,92,-91,93,94]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1122},"arcs":[[-88,95,96,97]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1123},"arcs":[[98,99,100,101,102,103]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1126},"arcs":[[104,-99,105,106,107,-96,-87,-93]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7638},"arcs":[[108,109,110,111]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7632},"arcs":[[112,113,114,115,116,117]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7633},"arcs":[[118,119,120,121,-113,122]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7636},"arcs":[[123,124,125,-114,-122,126,127,128]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7637},"arcs":[[-128,129,130,131,-110,132,133]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7634},"arcs":[[-127,-121,134,135,-130]]},{"type":"Polygon","properties":{"neighrep":"LRL HTS/ANZA","Pid":9151},"arcs":[[136,137,138,139,140]]},{"type":"Polygon","properties":{"neighrep":"LRL HTS/ANZA","Pid":9258},"arcs":[[141,-137,142,143,144]]},{"type":"Polygon","properties":{"neighrep":"LRL HTS/ANZA","Pid":9152},"arcs":[[145,146,147,148,-139,149,150,-50,151]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":9256},"arcs":[[152,153,154,155,156,157,158,159]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":9257},"arcs":[[160,-145,161,162,163]]},{"type":"Polygon","properties":{"neighrep":"LRL HTS/ANZA","Pid":9255},"arcs":[[164,165,166,-160,167,-162,-144,168]]},{"type":"Polygon","properties":{"neighrep":"LRL HTS/ANZA","Pid":9252},"arcs":[[169,-165,170,-141,171,172,173]]},{"type":"Polygon","properties":{"neighrep":"INNER SUNSET","Pid":9521},"arcs":[[174,175,176,177,178]]},{"type":"Polygon","properties":{"neighrep":"NA","Pid":9522},"arcs":[[179,180,181,182,-175,183,184,185,186,187]]},{"type":"Polygon","properties":{"neighrep":"LRL HTS/ANZA","Pid":9251},"arcs":[[188,189,190,191,192,193,-173]]},{"type":"Polygon","properties":{"neighrep":"DIAMD HTS","Pid":7867},"arcs":[[194,195,196,197,198,199,200]]},{"type":"Polygon","properties":{"neighrep":"DIAMD HTS","Pid":7866},"arcs":[[201,202,-196,203,204,205,206]]},{"type":"Polygon","properties":{"neighrep":"NOE VALLEY","Pid":7865},"arcs":[[207,208,209,210,211,-200,212]]},{"type":"Polygon","properties":{"neighrep":"S BERNAL HTS","Pid":7864},"arcs":[[-199,213,214,-213]]},{"type":"Polygon","properties":{"neighrep":"NOE VALLEY","Pid":7863},"arcs":[[-208,-215,215,216,217]]},{"type":"Polygon","properties":{"neighrep":"DIAMD HTS","Pid":7861},"arcs":[[-198,218,219,220,-216,-214]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7902},"arcs":[[221,222,223,224,225,226,227,228]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7903},"arcs":[[229,230,231,-225]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7904},"arcs":[[232,233,-230,-224,234]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7905},"arcs":[[235,236,237,-235,-223,238]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7906},"arcs":[[239,-233,-238,240]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7907},"arcs":[[241,242,243,-241,-237,244,245]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":7706},"arcs":[[246,247,248,249,250,251]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":7707},"arcs":[[-207,252,-247,253,254]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":7704},"arcs":[[255,256,257,258,259,-183,260,261,262]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":7705},"arcs":[[-263,263,264,265,266]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":7703},"arcs":[[267,268,269,270,271,-258]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":7701},"arcs":[[-272,272,273,274,275,276,-259]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":7708},"arcs":[[-206,277,278,-248,-253]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":7709},"arcs":[[279,280,-278,-205,281,282,283]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9413},"arcs":[[284,285,286,287]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9416},"arcs":[[288,-287,289,290,291,292]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9418},"arcs":[[-290,-286,293,294,295]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9419},"arcs":[[-294,-285,296,297,298,299,300]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9731},"arcs":[[301,302,303,304,305,-250]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9733},"arcs":[[-254,-252,306,307,308]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9732},"arcs":[[-306,309,-307,-251]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9737},"arcs":[[-279,-281,310,311,-302,-249]]},{"type":"Polygon","properties":{"neighrep":"LAKE MERCED","Pid":9738},"arcs":[[312,313,314,315,316,317,318,319]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7346},"arcs":[[320,321,322,323,324,325,326]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7342},"arcs":[[327,328,329,330,331,332]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7343},"arcs":[[333,-333,334,335,-327]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7348},"arcs":[[336,337,-321,-336,338,339,340]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7349},"arcs":[[341,-341,342,343,344]]},{"type":"Polygon","properties":{"neighrep":"INNER SUNSET","Pid":7553},"arcs":[[-176,-260,-277]]},{"type":"Polygon","properties":{"neighrep":"HAIGHT ASH","Pid":7552},"arcs":[[345,346,347,348,349]]},{"type":"Polygon","properties":{"neighrep":"HAIGHT ASH","Pid":7556},"arcs":[[-264,-262,350,351,-348,352,353]]},{"type":"Polygon","properties":{"neighrep":"HAIGHT ASH","Pid":7555},"arcs":[[354,355,-349,-352]]},{"type":"Polygon","properties":{"neighrep":"INNER SUNSET","Pid":7554},"arcs":[[-182,-355,-351,-261]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9103},"arcs":[[356,357,358,359,360]]},{"type":"Polygon","properties":{"neighrep":"LAKE MERCED","Pid":9744},"arcs":[[361,-315,362]]},{"type":"Polygon","properties":{"neighrep":"LAKE MERCED","Pid":9745},"arcs":[[363,364,365,-316,-362]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9746},"arcs":[[366,367,368,369]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9747},"arcs":[[370,371,372,373,-367,374]]},{"type":"Polygon","properties":{"neighrep":"LAKE MERCED","Pid":9741},"arcs":[[375,-364,-363,-314,376,377]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7001},"arcs":[[378,379,380,-239,-222,-116]]},{"type":"Polygon","properties":{"neighrep":"POTRERO HILL","Pid":7003},"arcs":[[381,382,383,384]]},{"type":"Polygon","properties":{"neighrep":"POTRERO HILL","Pid":7002},"arcs":[[385,386,-383,387,-379,-115,-126,388]]},{"type":"Polygon","properties":{"neighrep":"POTRERO HILL","Pid":7005},"arcs":[[-384,-387,389,390,391,392]]},{"type":"Polygon","properties":{"neighrep":"INGLESIDE","Pid":9749},"arcs":[[393,394,395,-372,396]]},{"type":"Polygon","properties":{"neighrep":"POTRERO HILL","Pid":7007},"arcs":[[397,-385,-393,398,399]]},{"type":"Polygon","properties":{"neighrep":"POTRERO HILL","Pid":7006},"arcs":[[400,401,402,403,404,-380,-388,-382,-398]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9449},"arcs":[[405,406,407,408,409,410]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9447},"arcs":[[411,412,413,414]]},{"type":"Polygon","properties":{"neighrep":"SECLF/PREHTS","Pid":9113},"arcs":[[415,416,417]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9443},"arcs":[[418,-319,419,420,421,422,-411]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9442},"arcs":[[-406,-423,423,424,425]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9117},"arcs":[[426,427,428,429]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9116},"arcs":[[430,431,432,-416,433,434,-191]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7828},"arcs":[[435,436,437,-266,438]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7823},"arcs":[[439,440,441,442,443,444]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7822},"arcs":[[445,446,447,448,-444]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7827},"arcs":[[449,450,451,452,453,-231,-234,454]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7824},"arcs":[[455,-440,456,457,-452]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9205},"arcs":[[458,459,460,461,462]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9206},"arcs":[[463,464,465,466,467]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9201},"arcs":[[468,469,470,471]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9202},"arcs":[[472,473,474,475,-472,476,-465,477,478]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9209},"arcs":[[479,480,-467,481,-461]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9208},"arcs":[[482,483,484,-481]]},{"type":"Polygon","properties":{"neighrep":"PORTOLA","Pid":7957},"arcs":[[-66,485,486,487,488,-62]]},{"type":"Polygon","properties":{"neighrep":"PORTOLA","Pid":7956},"arcs":[[489,490,491,492]]},{"type":"Polygon","properties":{"neighrep":"PORTOLA","Pid":7955},"arcs":[[-492,-488,493,494,495]]},{"type":"Polygon","properties":{"neighrep":"PORTOLA","Pid":7953},"arcs":[[-495,496,497,498]]},{"type":"Polygon","properties":{"neighrep":"PORTOLA","Pid":7952},"arcs":[[-493,-496,-499,499,500,501]]},{"type":"Polygon","properties":{"neighrep":"PORTOLA","Pid":7958},"arcs":[[-489,-491,502,-68,-63]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9128},"arcs":[[503,504,505,506]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9708},"arcs":[[-274,507,508,509,510,511]]},{"type":"Polygon","properties":{"neighrep":"INNER SUNSET","Pid":9702},"arcs":[[512,513,514,515,516,517]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9703},"arcs":[[518,519,520,-513,521,-511]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9704},"arcs":[[-522,-518,522,-178,523,-275,-512]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9706},"arcs":[[-524,-177,-276]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7319},"arcs":[[524,525,526,527,528,529]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7318},"arcs":[[530,531,-527,532,-32]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7315},"arcs":[[533,-19,-27,-29,534,535]]},{"type":"Polygon","properties":{"neighrep":"N EMBRCDRO","Pid":7317},"arcs":[[536,537,538,-535,-28,-11]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7313},"arcs":[[-534,539,540,541,-20]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7312},"arcs":[[-532,-21,-542,542]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7523},"arcs":[[543,544,545,546,547,548,549]]},{"type":"Polygon","properties":{"neighrep":"HAIGHT ASH","Pid":7521},"arcs":[[-46,-151,550,551,-547,552]]},{"type":"Polygon","properties":{"neighrep":"NA","Pid":7527},"arcs":[[553,554,-188,555,-47,-553,-546,556,557]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7524},"arcs":[[558,-544,-45,-38,559]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7525},"arcs":[[560,-560,-42,-37,561,562]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7529},"arcs":[[563,564,-557,-545,-559,-561,565,566]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7030},"arcs":[[567,568,569,-71,570,-69,-503,-490,571,572]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7032},"arcs":[[573,574,-72,-570,575,576]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7034},"arcs":[[577,578,579,580]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7035},"arcs":[[581,-574,582,-578,583,584]]},{"type":"Polygon","properties":{"neighrep":"VISITA VLY","Pid":7037},"arcs":[[-85,585]]},{"type":"Polygon","properties":{"neighrep":"VISITA VLY","Pid":7038},"arcs":[[586,-53,-86,-586,-84,587]]},{"type":"Polygon","properties":{"neighrep":"VISITA VLY","Pid":7039},"arcs":[[-65,-60,-59,-54,-587,588,-486]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1132},"arcs":[[589,590,-94,-90,591]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1136},"arcs":[[592,593,594,595,596,-79]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1135},"arcs":[[597,-95,-591,598,-595]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9114},"arcs":[[-433,599,-507,600,601,-417]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7625},"arcs":[[602,-135,-120,603,-337,-342,604]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7627},"arcs":[[605,-111,-132,606,-605,607,608]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7626},"arcs":[[-131,-136,-603,-607]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7621},"arcs":[[609,610,611,612]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7623},"arcs":[[-118,613,614,-613,615,-123]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7622},"arcs":[[-612,616,-604,-119,-616]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7628},"arcs":[[-229,617,618,-614,-117]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9121},"arcs":[[619,620,621,622,-427,623]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9122},"arcs":[[624,-620,625,-357,626,627,628]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9123},"arcs":[[629,630,631,-627,-361,632,633]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9125},"arcs":[[634,635,-630,636]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9126},"arcs":[[637,-635,638,639,640,641]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9127},"arcs":[[-506,-640,642]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9241},"arcs":[[643,644,-526,645]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9243},"arcs":[[-154,646,647,648,649]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9242},"arcs":[[650,651,-646,652,653,654]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9245},"arcs":[[655,656,657,658,-651,659,660]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9244},"arcs":[[-650,661,662,663,-657,-155]]},{"type":"Polygon","properties":{"neighrep":"DIAMD HTS","Pid":7852},"arcs":[[664,665,666,-202,-255,-309,-268,-257,667,668]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7919},"arcs":[[669,670,671,672,673]]},{"type":"Polygon","properties":{"neighrep":"NOE VALLEY","Pid":7856},"arcs":[[-217,-221,674,675,676,677,678]]},{"type":"Polygon","properties":{"neighrep":"NOE VALLEY","Pid":7855},"arcs":[[679,680,681,682,683,-675,-220]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7913},"arcs":[[684,685,686,687]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7912},"arcs":[[688,689,-246,690,-685]]},{"type":"Polygon","properties":{"neighrep":"DIAMD HTS","Pid":7859},"arcs":[[-203,-667,691,-680,-219,-197]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7917},"arcs":[[-670,692,-689,-688,693,694,695]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7916},"arcs":[[-690,-693,-674,696,-678,697,-242]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7915},"arcs":[[-687,698,-404,699,-694]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":7712},"arcs":[[700,701,-283,702]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9402},"arcs":[[703,-288,-289,704,705]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9401},"arcs":[[706,-421,707,-705,-293]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9407},"arcs":[[708,709,710,711]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9406},"arcs":[[-711,712,713,714]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9405},"arcs":[[-714,-298,715,716]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9404},"arcs":[[-716,-297,-704,717]]},{"type":"Polygon","properties":{"neighrep":"INNER SUNSET","Pid":9409},"arcs":[[718,-515,719,-186]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9408},"arcs":[[720,-709,721,-720,-514,722]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":7208},"arcs":[[723,724,725,726,727]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9238},"arcs":[[-658,-664,728,729,730]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9239},"arcs":[[-652,-659,-731,731,-644]]},{"type":"Polygon","properties":{"neighrep":"SECLF/PREHTS","Pid":9234},"arcs":[[732,-193,733,-474,734,-648]]},{"type":"Polygon","properties":{"neighrep":"SECLF/PREHTS","Pid":9231},"arcs":[[-434,-418,-602,735,-476,736]]},{"type":"Polygon","properties":{"neighrep":"SECLF/PREHTS","Pid":9232},"arcs":[[-192,-435,-737,-475,-734]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":9756},"arcs":[[-101,737,-317,738]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9755},"arcs":[[739,740,741,-284,-702]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9752},"arcs":[[-742,742,743,744,745,746,747,-311,-280]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9751},"arcs":[[748,-397,-371,749,-746]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7325},"arcs":[[-529,750,751,-331,752]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7326},"arcs":[[753,754,755,756,-752,757]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7321},"arcs":[[-758,-751,-528,-543,-541,758]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7322},"arcs":[[-754,-759,-540,759,760]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7323},"arcs":[[-653,-525,761,762]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7329},"arcs":[[-608,-345,763,-760,-536,-539,764]]},{"type":"Polygon","properties":{"neighrep":"HAIGHT ASH","Pid":7101},"arcs":[[765,-152,-49]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7816},"arcs":[[766,-449,767,768,769,770]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7814},"arcs":[[771,772,-226,-232,-454,773,774]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7815},"arcs":[[-448,775,-439,-265,-354,776,-768]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7812},"arcs":[[777,778,-227,-773,779]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1144},"arcs":[[-9,780,781,-3,782,783]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1148},"arcs":[[784,-10,-784,785]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1149},"arcs":[[786,-82,787,-786,-783,-2,788]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7818},"arcs":[[-445,789,790,-775,791,-457]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7819},"arcs":[[-458,-792,-774,-453]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7618},"arcs":[[-228,-779,792,793,794,-618]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7619},"arcs":[[-795,795,796,-610,-615,-619]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7615},"arcs":[[797,798,-611,-797,799,800]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7616},"arcs":[[801,-800,-796,802,-562,-36,803]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7612},"arcs":[[-35,804,805,806,807,-804]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7613},"arcs":[[-802,-808,808,-801]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9718},"arcs":[[-304,809,810,811,812]]},{"type":"MultiPolygon","properties":{"neighrep":"W TWIN PKS","Pid":9713},"arcs":[[[813,814,-414,815,816,-519,-510,817]],[[818,-520]]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9712},"arcs":[[819,820,821,-508,-273,-271]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9711},"arcs":[[-822,822,-818,-509]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9716},"arcs":[[-415,-815,823,-811,824]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9715},"arcs":[[-270,825,826,-820]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9714},"arcs":[[-827,-812,-824,-814,-823,-821]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7539},"arcs":[[827,828,-564,829]]},{"type":"Polygon","properties":{"neighrep":"HAIGHT ASH","Pid":7536},"arcs":[[830,831,-558,-565,-829,832]]},{"type":"Polygon","properties":{"neighrep":"HAIGHT ASH","Pid":7533},"arcs":[[-180,-555,833,834]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7532},"arcs":[[835,836,-566,-563,-803,-794]]},{"type":"Polygon","properties":{"neighrep":"LRL HTS/ANZA","Pid":9253},"arcs":[[-647,-153,-167,837,-174,-194,-733]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7023},"arcs":[[838,839,840,841,842,843,844,845]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7022},"arcs":[[846,847,848,-844,849]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7021},"arcs":[[-848,850,-576,-569,851,-573,852,853]]},{"type":"Polygon","properties":{"neighrep":"VISITA VLY","Pid":9001},"arcs":[[-78,854,-593]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7024},"arcs":[[855,-841]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1134},"arcs":[[-596,-599,-590,856,857]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7029},"arcs":[[858,-580,859,-850,-843]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7028},"arcs":[[-851,-847,-860,-579,-583,-577]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7909},"arcs":[[-691,-245,-236,-381,-405,-699,-686]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7025},"arcs":[[-856,-840,860,-584,-581,-859,-842]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9108},"arcs":[[861,-639,-637,-634,862]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9109},"arcs":[[-643,-862,863,864,-601]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9133},"arcs":[[865,-148,866,867,-431,-190]]},{"type":"Polygon","properties":{"neighrep":"N BERNAL HTS","Pid":7927},"arcs":[[868,869,870,871,872,873,874]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7924},"arcs":[[-403,875,-872,876,-695,-700]]},{"type":"Polygon","properties":{"neighrep":"N BERNAL HTS","Pid":7925},"arcs":[[877,878,879,880,881,-209,-218,-679,-697,-673]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7922},"arcs":[[-871,882,-671,-696,-877]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9136},"arcs":[[883,-622,884,885]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9135},"arcs":[[886,887,-428,-623,-884,888]]},{"type":"Polygon","properties":{"neighrep":"LRL HTS/ANZA","Pid":9134},"arcs":[[-140,-149,-866,-189,-172]]},{"type":"Polygon","properties":{"neighrep":"LRL HTS/ANZA","Pid":9502},"arcs":[[889,-168]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":9503},"arcs":[[890,891,-163,-890,-159]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":9501},"arcs":[[892,-157]]},{"type":"Polygon","properties":{"neighrep":"LRL HTS/ANZA","Pid":9507},"arcs":[[-150,-138,-142,-161,893,894,-551]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9451},"arcs":[[895,896,-409,897,898,899]]},{"type":"Polygon","properties":{"neighrep":"NOE VALLEY","Pid":7845},"arcs":[[-681,-692,-666,900,901]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7844},"arcs":[[902,903,-243,-698,-677]]},{"type":"Polygon","properties":{"neighrep":"NOE VALLEY","Pid":7847},"arcs":[[-682,-902,904,905,906]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9101},"arcs":[[907,-429,-888]]},{"type":"Polygon","properties":{"neighrep":"NOE VALLEY","Pid":7841},"arcs":[[-683,-907,908,909,910,911]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7842},"arcs":[[-684,-912,912,913,-903,-676]]},{"type":"Polygon","properties":{"neighrep":"INGLESIDE","Pid":1106},"arcs":[[914,-368,-374,915,916]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1104},"arcs":[[917,918,-4,-782,919]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1102},"arcs":[[920,921,922,-918]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9439},"arcs":[[923,924,925,926,-816,-413,927]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9436},"arcs":[[928,-407,-426,929]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9437},"arcs":[[-408,-929,930,-924,931,-898]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9432},"arcs":[[-926,932,933,934,935,936]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9433},"arcs":[[-817,-927,-937,937]]},{"type":"Polygon","properties":{"neighrep":"INGLESIDE","Pid":1109},"arcs":[[938,-916,-373,-396,939,940,941]]},{"type":"Polygon","properties":{"neighrep":"SECLF/PREHTS","Pid":9229},"arcs":[[-736,-865,942,943,-469]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7831},"arcs":[[944,945,-446,-443,946]]},{"type":"Polygon","properties":{"neighrep":"SECLF/PREHTS","Pid":9227},"arcs":[[-944,947,-359,948,949,-470]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9225},"arcs":[[-533,-645,950,951,952,-30]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9224},"arcs":[[953,954,-951,-732]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9223},"arcs":[[955,956,957,-954,-730]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9222},"arcs":[[-956,-729,-663,958,959,960,-484]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9221},"arcs":[[961,-959,-662,-649,962,-479,963]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":7203},"arcs":[[-953,964,965,-31]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":7202},"arcs":[[-24,-16,966,967,968]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":7201},"arcs":[[-968,969,-463,970]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":7207},"arcs":[[971,-660,-655,972,-726]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":7206},"arcs":[[-156,-656,973,974]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":7205},"arcs":[[-966,975,-970,-967,-22,-531]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7337},"arcs":[[-343,-340,976,-756,977]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7336},"arcs":[[-335,-332,-757,-977,-339]]},{"type":"Polygon","properties":{"neighrep":"CHINA","Pid":7333},"arcs":[[978,-762,-530,-753,-330]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7332},"arcs":[[979,-973,-654,-763,-979,-329]]},{"type":"Polygon","properties":{"neighrep":"N EMBRCDRO","Pid":7331},"arcs":[[-609,-765,-538,980]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7339},"arcs":[[981,982,-727,-980,-328,-334,-326]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7338},"arcs":[[-755,-761,-764,-344,-978]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7505},"arcs":[[983,984,985,-724]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7507},"arcs":[[986,987,988,-40,-44]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7501},"arcs":[[-988,-891,-158,-893,-975,989,-985]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":7503},"arcs":[[-972,-725,-986,-990,-974,-661]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7508},"arcs":[[-41,-989,-984,990]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7509},"arcs":[[-991,-728,-983,991,-805,-34]]},{"type":"Polygon","properties":{"neighrep":"INGLESIDE","Pid":1111},"arcs":[[992,993,994,-940,-395]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7052},"arcs":[[-74,-57,-67,995,996]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7054},"arcs":[[-582,997,-996,-73,-575]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7801},"arcs":[[-769,-777,-353,-347,998]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7802},"arcs":[[-770,-999,-346,999,-831,1000]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7804},"arcs":[[-771,-1001,-833,1001]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7806},"arcs":[[-790,-767,-1002,-828,1002,1003,1004]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7809},"arcs":[[-780,1005,-1004,1006,1007]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7808},"arcs":[[-1006,-772,-791,-1005]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1153},"arcs":[[-785,-788,-81,1008,-857,-592,1009,-7]]},{"type":"Polygon","properties":{"neighrep":"INGLESIDE","Pid":1119},"arcs":[[1010,-107,1011,-994]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1101},"arcs":[[1012,-743,-741,1013,1014,-922]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7608},"arcs":[[-798,1015,1016,1017]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7607},"arcs":[[-807,1018,-324,1019,-1016,-809]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7605},"arcs":[[1020,-322,-338,-617,-799,-1018]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7604},"arcs":[[-323,-1021,-1017,-1020]]},{"type":"Polygon","properties":{"neighrep":"CVC CTR/DWTN","Pid":7601},"arcs":[[-992,-982,-325,-1019,-806]]},{"type":"Polygon","properties":{"neighrep":"S BERNAL HTS","Pid":7874},"arcs":[[1021,1022,1023,1024,1025,-211,1026]]},{"type":"Polygon","properties":{"neighrep":"S BERNAL HTS","Pid":7875},"arcs":[[-1027,-210,-882,1027,1028]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9148},"arcs":[[-147,1029,1030,1031,-867]]},{"type":"Polygon","properties":{"neighrep":"DIAMD HTS","Pid":7871},"arcs":[[1032,-1025,1033,-703,-282,-204,-195]]},{"type":"Polygon","properties":{"neighrep":"S BERNAL HTS","Pid":7872},"arcs":[[-212,-1026,-1033,-201]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9142},"arcs":[[1034,-631,-636,-638,1035]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9141},"arcs":[[-628,-632,-1035,1036]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9146},"arcs":[[1037,-641,-505,1038,-1031]]},{"type":"Polygon","properties":{"neighrep":"LAKE MERCED","Pid":9726},"arcs":[[-378,1039,1040]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9727},"arcs":[[-915,-365,-376,-1041,1041,1042,1043,-369]]},{"type":"Polygon","properties":{"neighrep":"LAKE MERCED","Pid":9725},"arcs":[[1044,-896,1045,-1042,-1040,-377,-313]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9722},"arcs":[[-1043,1046,1047,-825,-810,1048]]},{"type":"Polygon","properties":{"neighrep":"LAKE MERCED","Pid":9723},"arcs":[[-410,-897,-1045,-320,-419]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9721},"arcs":[[-308,-310,-305,-813,-826,-269]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9728},"arcs":[[-750,-375,-370,-1044,1049,-747]]},{"type":"Polygon","properties":{"neighrep":"W TWIN PKS","Pid":9729},"arcs":[[-1049,-303,-312,-748,-1050]]},{"type":"Polygon","properties":{"neighrep":"HAIGHT ASH","Pid":7548},"arcs":[[-1000,1050,-834,-554,-832]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9219},"arcs":[[-965,-952,-955,-958,1051,-459,-976]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7542},"arcs":[[-1007,-1003,-830,-567,-837,1052]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":7543},"arcs":[[-1053,-836,-793,-778,-1008]]},{"type":"Polygon","properties":{"neighrep":"HAIGHT ASH","Pid":7546},"arcs":[[-181,-835,-1051,-350,-356]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7018},"arcs":[[-853,-572,-502,1053,1054,1055,1056]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7016},"arcs":[[-1057,1057,1058,-845,-849,-854]]},{"type":"Polygon","properties":{"neighrep":"BAYVW/HTRSPT","Pid":7015},"arcs":[[-1058,-1056,1059,1060,1061,1062]]},{"type":"Polygon","properties":{"neighrep":"POTRERO HILL","Pid":7012},"arcs":[[-1062,1063,-399,-392,1064]]},{"type":"Polygon","properties":{"neighrep":"POTRERO HILL","Pid":7013},"arcs":[[-846,-1059,-1063,-1065,-391,1065,1066]]},{"type":"Polygon","properties":{"neighrep":"POTRERO HILL","Pid":7011},"arcs":[[-1064,-1061,1067,-401,-400]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9211},"arcs":[[-961,1068,1069,-468,-485]]},{"type":"Polygon","properties":{"neighrep":"POTRERO HILL","Pid":7643},"arcs":[[-389,-125,1070,1071,1072]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7642},"arcs":[[1073,1074,-133,-109,1075]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7641},"arcs":[[-129,-134,-1075,1076,1077]]},{"type":"Polygon","properties":{"neighrep":"SOMA","Pid":7647},"arcs":[[1078]]},{"type":"Polygon","properties":{"neighrep":"POTRERO HILL","Pid":7646},"arcs":[[1079,1080,-1066,-390,-386,-1073]]},{"type":"Polygon","properties":{"neighrep":"POTRERO HILL","Pid":7645},"arcs":[[1081,-1080,-1072,1082,-1077,-1074]]},{"type":"Polygon","properties":{"neighrep":"POTRERO HILL","Pid":7644},"arcs":[[-124,-1078,-1083,-1071]]},{"type":"Polygon","properties":{"neighrep":"N BERNAL HTS","Pid":7931},"arcs":[[1083,1084,1085,1086,-875]]},{"type":"Polygon","properties":{"neighrep":"N BERNAL HTS","Pid":7926},"arcs":[[-870,1087,-878,-672,-883]]},{"type":"Polygon","properties":{"neighrep":"N BERNAL HTS","Pid":7932},"arcs":[[1088,1089,-1084,-874,1090]]},{"type":"Polygon","properties":{"neighrep":"N BERNAL HTS","Pid":7935},"arcs":[[-869,-1087,1091,1092,1093,1094,-879,-1088]]},{"type":"Polygon","properties":{"neighrep":"N BERNAL HTS","Pid":7934},"arcs":[[1095,-880,-1095]]},{"type":"Polygon","properties":{"neighrep":"N BERNAL HTS","Pid":7937},"arcs":[[-1090,1096,1097,1098,-1085]]},{"type":"Polygon","properties":{"neighrep":"N BERNAL HTS","Pid":7936},"arcs":[[-1099,1099,-1092,-1086]]},{"type":"Polygon","properties":{"neighrep":"S BERNAL HTS","Pid":7939},"arcs":[[-1098,1100,1101,1102,-1093,-1100]]},{"type":"Polygon","properties":{"neighrep":"SECLF/PREHTS","Pid":9107},"arcs":[[-948,-943,-864,-863,-633,-360]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9102},"arcs":[[-949,-358,-626,-624,-430,-908,-887,1103]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9131},"arcs":[[-868,-1032,-1039,-504,-600,-432]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9452},"arcs":[[1104,-899,-932,-928,-412,-1048]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9453},"arcs":[[-1047,-1046,-900,-1105]]},{"type":"Polygon","properties":{"neighrep":"NOE VALLEY","Pid":7838},"arcs":[[1105,-905,1106,-945]]},{"type":"Polygon","properties":{"neighrep":"NOE VALLEY","Pid":7839},"arcs":[[-909,-906,-1106,-947,-442,1107]]},{"type":"Polygon","properties":{"neighrep":"RICHMOND","Pid":9137},"arcs":[[-885,-621,-625,1108]]},{"type":"Polygon","properties":{"neighrep":"UPRMKT/EURKA","Pid":7832},"arcs":[[-441,-456,-451,1109,-910,-1108]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7833},"arcs":[[-1110,-450,1110,-913,-911]]},{"type":"Polygon","properties":{"neighrep":"MISSION","Pid":7834},"arcs":[[-904,-914,-1111,-455,-240,-244]]},{"type":"Polygon","properties":{"neighrep":"NOE VALLEY","Pid":7835},"arcs":[[1111,-668,-256,-267,-438]]},{"type":"Polygon","properties":{"neighrep":"NOE VALLEY","Pid":7836},"arcs":[[-669,-1112,-437,1112]]},{"type":"Polygon","properties":{"neighrep":"NOE VALLEY","Pid":7837},"arcs":[[-901,-665,-1113,-436,-776,-447,-946,-1107]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9429},"arcs":[[-933,-925,-931,1113,1114]]},{"type":"Polygon","properties":{"neighrep":"INGLESIDE","Pid":1112},"arcs":[[-745,1115,-97,-108,-1011,-993,-394,-749]]},{"type":"Polygon","properties":{"neighrep":"INGLESIDE","Pid":1115},"arcs":[[-366,-917,-939,1116,-102,-739]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":1114},"arcs":[[-781,-8,-1010,-89,-98,-1116,-744,-1013,-921,-920]]},{"type":"Polygon","properties":{"neighrep":"INGLESIDE","Pid":1117},"arcs":[[-103,-1117,-942,1117]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9421},"arcs":[[-713,-710,-721,1118,1119,-299]]},{"type":"Polygon","properties":{"neighrep":"INGLESIDE","Pid":1118},"arcs":[[-1118,-941,-995,-1012,-106,-104]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9423},"arcs":[[1120,-424,-422,-707,-292]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9422},"arcs":[[-723,-521,-819,-938,-936,1121,-1119]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9424},"arcs":[[-296,1122,-1114,-930,-425,-1121,-291]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9427},"arcs":[[-1120,-1122,-935,1123,-300]]},{"type":"Polygon","properties":{"neighrep":"SUNSET","Pid":9426},"arcs":[[-934,-1115,-1123,-295,-301,-1124]]},{"type":"Polygon","properties":{"neighrep":"S BERNAL HTS","Pid":7944},"arcs":[[-881,-1096,-1094,-1103,1124,1125,-1028]]},{"type":"Polygon","properties":{"neighrep":"S BERNAL HTS","Pid":7945},"arcs":[[1126,1127,1128,-1125,-1102]]},{"type":"Polygon","properties":{"neighrep":"PORTOLA","Pid":7946},"arcs":[[1129,-789,-1,1130,-1128,1131,-500,-498]]},{"type":"Polygon","properties":{"neighrep":"PORTOLA","Pid":7947},"arcs":[[-501,-1132,1132,1133,-1054]]},{"type":"Polygon","properties":{"neighrep":"S BERNAL HTS","Pid":7942},"arcs":[[-1133,-1127,-1101,-1097,-1089,1134]]},{"type":"Polygon","properties":{"neighrep":"S BERNAL HTS","Pid":7943},"arcs":[[-1129,-1131,-6,-1022,-1029,-1126]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9212},"arcs":[[-1052,-957,-483,-480,-460]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":9505},"arcs":[[-987,1135,-164,-892]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9214},"arcs":[[1136,-964,-478,-464,-1070]]},{"type":"Polygon","properties":{"neighrep":"MAR/PAC HTS","Pid":9215},"arcs":[[-960,-962,-1137,-1069]]},{"type":"Polygon","properties":{"neighrep":"EXCELSIOR","Pid":9801},"arcs":[[-923,-1015,1137,-1023,-5,-919]]},{"type":"Polygon","properties":{"neighrep":"INNER SUNSET","Pid":9516},"arcs":[[-719,-185,1138,-516]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":9511},"arcs":[[-552,-895,1139,-548]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":9513},"arcs":[[-894,-1136,-43,-550,1140]]},{"type":"Polygon","properties":{"neighrep":"WST ADDITION","Pid":9512},"arcs":[[-549,-1140,-1141]]},{"type":"Polygon","properties":{"neighrep":"INNER SUNSET","Pid":9518},"arcs":[[-1139,-184,-179,-523,-517]]}]}},"arcs":[[[5902,1905],[-1,-16],[-1,-14],[0,-7],[-1,-21],[51,18],[-2,-51],[-3,-36],[-4,-21],[-6,-18],[-17,-35],[46,2],[10,4],[-1,-7],[10,-2],[-9,-21],[2,-7],[-32,-2],[-36,-2],[-17,-1],[-50,-4],[-68,-4],[14,-45]],[[5787,1615],[-89,-152],[-51,31],[-49,30],[-51,31]],[[5547,1555],[-51,31],[-74,-126],[-50,31],[-6,-10],[-51,31],[-50,31],[-43,26]],[[5222,1569],[5,7],[36,42],[32,39],[1,6],[25,33],[4,1],[1,5],[34,44],[5,2],[5,6],[0,4],[46,59],[5,2],[27,35],[12,15]],[[5460,1869],[30,39],[11,13]],[[5501,1921],[44,-11],[14,-4],[46,-11],[18,-3],[34,-6],[37,-1],[22,-1],[5,0],[36,0],[4,0],[70,7],[71,14]],[[5276,868],[-74,-126],[-50,31],[-75,-125],[-51,31],[75,125],[-51,31],[-51,31],[-74,-125],[-49,-82],[-54,25],[-56,26],[-49,23]],[[4717,733],[0,5],[15,26],[5,3],[0,4],[35,59],[3,1],[0,5],[37,61],[4,2],[0,5],[30,50],[3,2],[1,6],[50,83],[4,3],[1,5],[15,26],[4,3],[43,71],[27,47],[4,7]],[[4998,1207],[49,-30],[51,-31],[50,-30],[51,-31]],[[5199,1085],[51,-31],[50,-30],[-74,-126],[50,-30]],[[7238,7875],[-76,-57],[-30,-15],[-56,-1],[63,-58],[11,-26],[-87,-3],[-103,-16]],[[6960,7699],[-21,-8],[-7,-2],[-9,-1],[-4,1],[-3,3]],[[6916,7692],[-3,3],[-4,7],[-11,64],[-19,-5],[-23,-6],[-5,-3],[-3,-3],[-35,0],[-2,10],[-1,6],[-12,-2],[-4,24],[-5,38],[-53,-8],[-49,-8],[-15,-2],[-37,-6]],[[6635,7801],[-9,55],[-3,19],[-12,76],[-12,74],[92,15],[12,3],[-10,8],[-82,10],[-13,3],[-108,20],[-7,0],[-2,11],[-15,7],[-150,6],[-12,4],[-14,0],[-17,0],[-2,-26],[4,-35],[-104,-16],[-14,-2],[-14,65],[-6,3],[-20,9],[-13,2],[-82,4],[-9,0]],[[6013,8116],[0,9],[55,-3],[0,5],[12,-6],[33,-1],[3,6],[-41,20],[2,5],[66,-34],[-3,-7],[-1,-6],[-2,0],[0,-2],[4,-1],[5,0],[2,-15],[5,0],[0,-4],[7,0],[1,-1],[3,0],[4,0],[1,-13],[-3,-1],[-4,0],[1,-2],[-6,-1],[1,-7],[9,2],[9,1],[2,-15],[63,10],[-1,5],[3,1],[-2,11],[-53,2],[0,3],[54,-2],[3,-2],[8,1],[1,3],[-4,1],[1,25],[-79,6],[1,19],[-48,40],[-71,59],[-1,-1],[-33,28],[2,2],[-50,41],[15,19],[22,-18],[10,3],[-6,20],[2,0],[12,-35],[9,-5],[23,-14],[2,2],[6,-1],[7,-6],[3,4],[-12,11],[5,6],[-27,23],[8,8],[32,-1],[127,-107],[94,-79],[10,0],[-1,3],[3,3],[-1,1],[-1,-1],[-14,11],[3,3],[14,-11],[7,-6],[8,3],[-5,5],[1,1],[-2,1],[-1,-2],[-13,11],[3,5],[14,-11],[-2,-2],[9,-6],[4,2],[0,7],[-36,31],[4,7],[46,-22],[34,-8],[38,-19],[3,7],[-7,7],[-9,7],[-42,37],[6,6],[11,9],[15,-19],[-5,-5],[79,-61],[7,-1],[7,4],[0,3],[-3,4],[-1,-1],[-12,15],[4,4],[12,-15],[-1,-1],[3,-4],[2,0],[2,-1],[13,9],[0,3],[-3,5],[-1,-2],[-11,16],[5,3],[10,-15],[-1,-1],[3,-4],[2,0],[2,-1],[6,5],[-61,91],[9,6],[1,-1],[76,52],[1,-1],[-76,-53],[78,-117],[2,1],[11,-16],[6,-1],[5,0],[-13,18],[2,1],[14,-20],[1,2],[4,-1],[0,-2],[14,-3],[0,2],[5,-1],[0,-2],[7,-1],[6,41],[2,-3],[-5,-39],[1,0],[6,38],[-15,35],[-5,-3],[4,-10],[-1,-1],[-5,10],[-1,0],[3,-8],[-2,-1],[-4,8],[-2,-1],[4,-8],[-3,-1],[-3,8],[-2,-1],[4,-8],[-2,-1],[-4,8],[-2,-1],[4,-8],[-2,-1],[-4,8],[-2,-1],[3,-8],[-2,-1],[-4,8],[-2,-1],[4,-8],[-1,-1],[-9,20],[2,1],[4,-10],[3,1],[-5,10],[2,1],[5,-10],[2,1],[-4,10],[2,1],[4,-10],[3,1],[-5,10],[2,1],[5,-10],[2,1],[-4,10],[2,1],[4,-10],[3,1],[-5,10],[2,1],[5,-10],[6,3],[-16,36],[-5,-2],[4,-10],[-1,0],[-5,10],[-2,-2],[4,-10],[-2,-1],[-5,10],[-2,-1],[4,-10],[-2,-1],[-4,10],[-3,-1],[5,-10],[-2,-1],[-5,10],[-2,-1],[4,-10],[-2,-1],[-4,10],[-3,-1],[4,-10],[-2,-1],[-4,10],[-2,-1],[4,-10],[-2,-1],[-4,10],[-3,-1],[5,-10],[-2,-1],[-5,10],[-3,-1],[5,-10],[-2,-1],[-5,10],[-2,-1],[4,-10],[-2,-1],[-4,9],[-3,-1],[5,-10],[-2,-1],[-5,10],[-2,-1],[5,-10],[-2,0],[-11,23],[2,1],[5,-12],[3,1],[-5,12],[2,1],[5,-12],[3,1],[-5,12],[2,1],[5,-12],[3,2],[-5,12],[2,1],[5,-12],[3,1],[-5,12],[2,1],[5,-12],[3,1],[-5,12],[1,1],[6,-12],[3,2],[-5,12],[2,0],[5,-11],[3,1],[-5,12],[2,1],[5,-12],[3,1],[-6,12],[2,1],[6,-12],[2,1],[-5,12],[2,1],[6,-12],[3,1],[-6,12],[2,1],[6,-11],[5,2],[-19,44],[-6,-3],[6,-12],[-2,-1],[-5,12],[-3,-1],[5,-12],[-2,-1],[-5,12],[-8,-3],[6,-13],[-3,-1],[-5,12],[-8,-3],[6,-12],[-3,-1],[-5,12],[-2,-1],[4,-12],[-1,-1],[-4,12],[-4,-1],[4,-13],[-1,0],[-4,12],[-5,-2],[6,-12],[-2,-1],[-5,12],[1,-14],[-2,0],[-1,14],[-7,-3],[6,-12],[-2,-1],[-7,14],[3,0],[54,25],[-6,14],[5,15],[18,8],[2,5],[15,7],[5,-1],[28,12],[105,-18],[59,-200],[-1,0],[-60,199],[-102,17],[-16,-7],[0,-1],[4,-1],[9,-3],[10,5],[1,2],[92,-16],[-2,-12],[-2,0],[2,11],[-3,0],[-1,-11],[-3,1],[2,11],[-3,0],[-2,-11],[-2,1],[2,10],[-3,1],[-2,-11],[-2,1],[2,10],[-3,1],[-2,-11],[-2,0],[2,11],[-3,1],[-2,-11],[-2,0],[1,11],[-2,1],[-2,-11],[-2,0],[1,11],[-2,1],[-2,-11],[-3,0],[2,11],[-3,1],[-2,-11],[-2,0],[2,11],[-2,0],[-2,-10],[-3,0],[2,11],[-2,0],[-2,-11],[-3,1],[2,11],[-2,0],[-2,-11],[-3,1],[2,11],[-3,0],[-2,-11],[-2,1],[2,11],[-3,0],[-2,-11],[-2,1],[2,10],[-3,1],[-2,-11],[-2,1],[2,10],[-3,1],[-2,-11],[-2,1],[2,10],[-3,1],[-2,-11],[-2,0],[1,11],[-2,1],[-2,-11],[-3,0],[-3,8],[-2,-1],[3,-8],[-1,-1],[-3,8],[-5,-2],[11,-25],[-1,-5],[-1,-1],[0,-4],[5,-1],[2,11],[2,-1],[-2,-10],[3,0],[1,10],[2,-1],[-1,-10],[3,-1],[2,11],[2,-1],[-2,-10],[3,-1],[2,11],[2,0],[-2,-11],[3,-1],[2,11],[2,0],[-2,-11],[3,-1],[2,11],[2,0],[-2,-11],[3,-1],[2,11],[2,0],[-1,-11],[2,0],[2,10],[2,0],[-1,-11],[3,0],[1,10],[3,0],[-2,-11],[3,0],[2,10],[2,0],[-2,-11],[3,0],[2,11],[2,-1],[-2,-11],[3,0],[2,11],[2,-1],[-2,-10],[3,-1],[2,11],[2,-1],[-2,-10],[3,-1],[2,11],[2,0],[-1,-11],[3,-1],[2,11],[2,0],[-2,-11],[3,-1],[2,11],[2,0],[-2,-11],[3,-1],[2,11],[2,0],[-2,-11],[5,-1],[-2,-12],[-2,0],[2,11],[-3,0],[-2,-10],[-2,0],[2,11],[-3,0],[-2,-10],[-2,0],[2,11],[-3,0],[-2,-10],[-2,0],[1,10],[-3,1],[-1,-10],[-3,0],[2,10],[-3,1],[-2,-10],[-2,0],[2,10],[-3,1],[-2,-11],[-2,1],[2,10],[-3,1],[-2,-11],[-2,1],[2,10],[-3,1],[-2,-11],[-2,1],[2,10],[-3,0],[-2,-10],[-2,0],[1,11],[-3,0],[-2,-10],[-2,0],[2,11],[-3,0],[-1,-10],[-3,0],[2,11],[-3,0],[-2,-10],[-2,0],[2,11],[-3,0],[-2,-10],[-2,0],[2,11],[-3,0],[-2,-10],[-2,0],[1,10],[-2,1],[-2,-10],[-2,0],[1,10],[-2,1],[-2,-11],[-2,1],[1,10],[-3,0],[-1,-10],[-2,1],[2,10],[-6,1],[0,-2],[1,-2],[-1,-5],[-2,-1],[-1,-8],[1,-2],[0,-4],[-2,-2],[-1,-8],[1,-2],[-1,-2],[3,-1],[1,9],[2,0],[-1,-8],[1,-1],[2,8],[1,0],[-1,-9],[2,0],[2,9],[2,-1],[-2,-10],[3,0],[1,10],[2,0],[-1,-10],[2,-1],[2,10],[2,0],[-2,-10],[3,-1],[2,10],[1,0],[-1,-10],[2,0],[2,10],[2,-1],[-2,-10],[3,0],[1,10],[2,-1],[-1,-9],[2,-1],[2,10],[2,0],[-1,-10],[2,-1],[2,10],[2,0],[-2,-10],[3,0],[1,9],[2,0],[-1,-10],[3,0],[0,10],[2,-1],[0,-10],[2,0],[1,10],[3,-1],[-2,-9],[3,-1],[1,10],[2,0],[-1,-10],[2,-1],[2,10],[2,0],[-2,-10],[3,0],[2,9],[2,0],[-2,-10],[2,0],[2,10],[2,-1],[-2,-9],[3,-1],[2,10],[2,-1],[-2,-9],[2,-1],[2,10],[2,0],[-1,-10],[2,0],[2,9],[2,0],[-2,-10],[3,0],[2,9],[2,0],[-2,-10],[2,0],[2,10],[2,-1],[-2,-9],[3,-1],[2,10],[2,0],[-2,-10],[3,-1],[1,10],[2,0],[-1,-10],[3,-1],[-1,-10],[-1,1],[1,8],[-2,0],[-1,-8],[-2,0],[1,9],[-2,0],[-1,-8],[-2,0],[1,8],[-2,1],[-1,-9],[-2,1],[2,8],[-2,0],[-2,-8],[-2,0],[2,9],[-2,0],[-2,-8],[-2,0],[2,8],[-2,1],[-1,-9],[-2,1],[1,8],[-2,0],[-1,-8],[-2,0],[1,9],[-2,0],[-1,-8],[-2,0],[2,8],[-2,1],[-2,-9],[-2,1],[2,8],[-2,0],[-1,-8],[-2,0],[1,9],[-2,0],[-1,-8],[-2,0],[1,8],[-2,1],[-1,-9],[-2,1],[1,8],[-1,0],[-2,-8],[-2,0],[2,9],[-2,0],[-2,-8],[-2,0],[2,8],[-2,1],[-1,-9],[-2,0],[1,9],[-2,0],[-1,-8],[-2,0],[1,9],[-1,0],[-2,-9],[-2,1],[1,8],[-1,1],[-2,-9],[-2,0],[2,9],[-2,0],[-1,-8],[-2,0],[1,9],[-2,0],[-1,-9],[-2,1],[1,8],[-2,1],[-1,-9],[-2,0],[1,9],[-1,0],[-2,-8],[-2,0],[2,9],[-2,0],[-2,-9],[-2,1],[2,8],[-2,0],[-1,-8],[-2,0],[1,9],[-2,0],[-1,-8],[-2,0],[1,8],[-1,1],[-2,-9],[-2,1],[2,8],[-2,0],[-2,-8],[-1,0],[1,7],[-2,0],[-1,-7],[-2,1],[2,7],[-2,0],[-1,-7],[-2,0],[2,10],[-3,0],[-1,-2],[-2,-7],[1,-2],[-1,-9],[7,-15],[1,0],[1,9],[2,0],[-1,-9],[2,0],[1,8],[2,0],[-1,-9],[2,0],[1,9],[2,0],[-1,-9],[2,-1],[1,9],[2,0],[-1,-9],[2,0],[1,8],[2,0],[-1,-9],[1,0],[2,9],[2,-1],[-2,-8],[2,-1],[2,9],[2,0],[-1,-9],[1,0],[2,8],[2,0],[-2,-9],[2,0],[1,9],[3,-1],[-2,-8],[2,-1],[1,9],[3,0],[-2,-9],[2,0],[1,9],[3,-1],[-2,-9],[2,0],[1,9],[2,0],[-1,-9],[2,0],[1,8],[2,0],[-1,-9],[2,0],[1,9],[2,-1],[-1,-8],[2,-1],[1,9],[2,0],[-1,-9],[1,-1],[2,9],[2,0],[-2,-9],[2,0],[2,9],[2,-1],[-2,-8],[2,-1],[1,9],[2,0],[-1,-9],[2,0],[1,8],[2,0],[-1,-9],[2,0],[1,9],[2,-1],[-1,-8],[2,-1],[1,9],[2,0],[-1,-9],[2,-1],[1,9],[2,0],[-1,-9],[2,0],[1,9],[2,-1],[-1,-9],[2,0],[1,9],[2,0],[-1,-9],[1,0],[2,8],[2,0],[-2,-9],[2,0],[2,9],[2,-1],[-1,-8],[1,-1],[2,9],[2,0],[-2,-9],[2,0],[1,8],[2,0],[-1,-9],[2,0],[2,9],[1,-1],[-1,-8],[2,-1],[1,9],[3,0],[-3,-18],[-1,0],[0,7],[-1,0],[-1,-7],[-2,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-2,1],[1,7],[-2,0],[0,-7],[-2,0],[1,7],[-2,1],[-1,-7],[-1,0],[1,7],[-2,0],[-1,-7],[-2,0],[1,8],[-2,0],[-1,-7],[-2,0],[1,7],[-1,0],[-1,-7],[-2,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-2,1],[1,7],[-2,0],[-1,-7],[-2,0],[1,8],[-1,0],[-1,-7],[-2,0],[1,7],[-2,0],[-1,-7],[-1,1],[0,7],[-1,0],[-1,-7],[-2,0],[1,7],[-2,1],[0,-8],[-2,1],[1,7],[-2,0],[-1,-7],[-2,0],[1,7],[-1,1],[-1,-8],[-2,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,8],[-2,0],[-1,-7],[-2,0],[1,7],[-2,0],[-1,-7],[-1,1],[0,7],[-1,0],[-1,-7],[-2,0],[1,7],[-2,0],[-1,-7],[-1,1],[1,7],[-2,0],[-1,-7],[-2,0],[1,7],[-2,1],[-1,-7],[-1,0],[1,7],[-2,0],[-1,-7],[-2,0],[1,8],[-1,0],[-2,-7],[-1,0],[1,7],[-2,0],[-1,-7],[-2,1],[1,7],[-2,0],[0,-7],[-2,0],[1,7],[-2,1],[-1,-8],[-2,1],[2,7],[-3,0],[0,-7],[-2,0],[1,5],[-2,2],[-8,2],[17,-39],[6,4],[-4,2],[-3,0],[2,9],[1,0],[-1,-7],[2,-1],[1,7],[2,0],[-1,-7],[2,0],[1,7],[1,-1],[-1,-6],[2,-1],[1,7],[2,0],[-1,-7],[2,0],[0,7],[2,-1],[-1,-7],[2,0],[1,7],[2,0],[-2,-7],[2,-1],[1,7],[2,0],[-1,-7],[2,0],[0,7],[2,0],[-1,-7],[2,-1],[1,7],[2,0],[-1,-7],[1,0],[1,7],[2,-1],[-1,-7],[2,0],[1,7],[1,0],[-1,-7],[3,-1],[0,7],[2,0],[-1,-7],[2,0],[1,7],[2,-1],[-1,-7],[2,0],[1,7],[2,0],[-1,-7],[1,0],[1,7],[2,-1],[-1,-7],[1,0],[1,7],[2,0],[-1,-7],[2,-1],[1,7],[1,0],[-1,-7],[2,0],[1,7],[2,0],[-1,-7],[2,-1],[1,7],[1,0],[-1,-7],[2,0],[1,7],[2,-1],[-1,-7],[2,0],[1,7],[1,0],[-1,-7],[2,-1],[1,7],[2,0],[-1,-7],[2,0],[0,7],[2,0],[-1,-7],[2,-1],[1,7],[2,0],[-1,-7],[1,0],[1,7],[2,-1],[-1,-7],[2,0],[1,7],[2,0],[-1,-7],[1,0],[1,7],[2,-1],[-1,-7],[2,0],[1,7],[2,0],[-1,-7],[1,-1],[1,7],[2,0],[-1,-7],[2,0],[1,7],[1,-1],[0,-6],[1,-1],[1,7],[2,0],[-1,-7],[2,0],[1,7],[1,-1],[-1,-7],[3,-1],[-1,-9],[-2,0],[1,8],[-1,0],[-1,-7],[-2,0],[1,7],[-2,1],[-1,-8],[-1,0],[1,8],[-2,0],[-1,-7],[-2,0],[1,7],[-2,1],[-1,-8],[-2,1],[1,7],[-1,0],[-1,-7],[-2,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-2,0],[-1,-7],[-2,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-2,1],[1,7],[-1,0],[-1,-7],[-2,0],[1,8],[-2,0],[-1,-7],[-2,0],[1,7],[-2,0],[0,-7],[-2,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-2,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-7],[-2,0],[1,7],[-2,0],[-1,-7],[-1,0],[1,8],[-2,0],[-1,-7],[-2,0],[1,7],[-2,1],[-1,-8],[-1,1],[1,7],[-2,0],[-1,-7],[-2,0],[1,7],[-2,1],[-1,-7],[-1,0],[1,7],[-2,0],[-1,-7],[-2,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-2,1],[1,7],[-2,0],[0,-7],[-2,0],[1,8],[-2,0],[-1,-8],[-2,1],[1,7],[-1,0],[-1,-7],[-2,0],[1,8],[-2,0],[-1,-7],[-2,0],[1,7],[-1,1],[-1,-8],[-2,1],[1,5],[-8,-3],[1,-3],[7,-21],[4,-2],[4,-1],[1,9],[2,0],[-1,-7],[1,-1],[1,7],[2,0],[-1,-7],[2,0],[1,7],[2,0],[-2,-7],[2,-1],[1,7],[2,0],[-1,-7],[2,0],[1,7],[2,-1],[-2,-7],[2,0],[1,7],[2,0],[-1,-7],[1,-1],[2,7],[1,0],[-1,-7],[2,0],[1,7],[2,0],[-1,-7],[1,-1],[2,7],[1,0],[-1,-7],[2,0],[1,7],[2,-1],[-1,-7],[1,0],[2,7],[1,0],[-1,-7],[2,-1],[1,7],[2,0],[-1,-7],[1,0],[1,7],[2,0],[-1,-7],[2,-1],[1,7],[2,0],[-1,-7],[1,0],[1,7],[2,-1],[-1,-7],[2,0],[1,7],[1,0],[-1,-7],[2,0],[1,7],[2,-1],[-2,-7],[2,0],[1,7],[2,0],[-1,-7],[2,-1],[1,7],[2,0],[-1,-7],[1,0],[2,7],[1,-1],[-1,-7],[2,0],[1,7],[2,0],[-2,-7],[2,0],[1,7],[2,-1],[-1,-7],[2,0],[1,7],[2,0],[-2,-7],[2,-1],[1,7],[2,0],[-1,-7],[2,0],[1,7],[2,-1],[-2,-7],[2,0],[1,7],[2,0],[-1,-7],[2,0],[1,6],[2,0],[-2,-7],[2,0],[1,7],[2,0],[-1,-7],[2,-1],[1,7],[1,0],[-1,-7],[2,0],[1,7],[2,0],[-2,-8],[4,-1],[-1,-9],[-2,1],[1,7],[-2,0],[-1,-7],[-2,0],[1,7],[-1,1],[-1,-8],[-2,1],[1,7],[-2,0],[-1,-7],[-2,0],[1,8],[-1,0],[-1,-7],[-2,0],[1,7],[-1,0],[-1,-7],[-2,0],[1,8],[-2,0],[-1,-7],[-2,0],[1,7],[-2,1],[-1,-8],[-1,1],[1,7],[-2,0],[-1,-7],[-2,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-2,0],[-1,-7],[-2,0],[1,8],[-1,0],[-2,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-2,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,8],[-2,0],[-1,-8],[-2,1],[1,7],[-1,1],[-1,-8],[-2,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-2,1],[1,7],[-1,0],[-2,-7],[-1,0],[1,8],[-2,0],[-1,-7],[-2,0],[1,7],[-1,0],[-1,-7],[-2,0],[1,8],[-2,0],[-1,-7],[-2,0],[2,7],[-2,1],[-1,-8],[-2,1],[1,7],[-2,0],[-1,-7],[-2,0],[1,7],[-1,1],[-2,-7],[-1,0],[1,7],[-2,0],[-1,-7],[-2,0],[2,8],[-2,0],[-1,-7],[-2,0],[1,7],[-2,1],[-1,-8],[-1,1],[1,7],[-2,0],[-1,-7],[-2,0],[1,5],[-3,2],[-6,1],[1,-1],[0,-3],[10,-22],[5,-2],[2,6],[2,-1],[-2,-6],[2,-1],[2,6],[2,-1],[-2,-6],[1,0],[3,6],[1,0],[-2,-7],[1,-1],[3,7],[2,0],[-3,-7],[2,-1],[2,7],[2,0],[-3,-7],[2,-1],[2,7],[2,-1],[-3,-7],[2,0],[3,8],[2,-1],[-3,-8],[2,0],[3,7],[1,0],[-3,-8],[2,-1],[3,8],[2,-1],[-3,-8],[2,0],[3,8],[2,0],[-3,-9],[2,-1],[3,9],[2,-1],[-3,-9],[3,-1],[3,9],[2,-1],[-3,-8],[2,-1],[3,8],[2,0],[-3,-9],[2,-1],[4,9],[2,0],[-4,-9],[3,-2],[3,10],[3,-1],[-4,-9],[3,-1],[3,9],[2,-1],[-4,-9],[3,-1],[3,9],[2,0],[-5,-12],[2,-4],[4,-3],[3,1],[5,15],[3,-1],[-5,-12],[-1,-5],[7,-4],[1,1],[7,17],[3,-1],[-7,-19],[4,-2],[7,20],[1,0],[-5,-16],[14,4],[-3,10],[5,2],[7,-23],[-2,0],[0,-3],[5,-3],[1,-2],[-3,-7],[4,-2],[5,12],[45,-19],[-11,175],[2,2],[38,4],[2,-1],[2,-1],[0,-2],[14,-230],[36,-23],[59,160],[1,1],[2,0],[2,-4],[25,-5],[1,-1],[0,-3],[-51,-140],[48,-31],[76,115],[2,1],[1,-1],[22,-14],[1,-2],[0,-3],[-68,-105],[39,-36],[118,130],[2,0],[32,-30],[-12,-100]],[[6138,7567],[104,17],[-12,76],[-6,38],[-5,36],[-8,50]],[[6211,7784],[48,-43],[39,-34],[36,-32],[73,-64]],[[6407,7611],[51,-45],[24,-20],[73,-65]],[[6555,7481],[27,-24]],[[6582,7457],[8,-47],[12,-76],[-51,-8],[-31,-5],[-22,-3],[-8,50],[-1,4],[-3,21],[-104,-17]],[[6382,7376],[-104,-16]],[[6278,7360],[-7,42],[-5,32],[-6,38],[-6,38],[-33,-6],[-72,-12],[-5,36],[-6,39]],[[6635,7801],[6,-38],[5,-37],[6,-36],[6,-39],[-38,-6],[-65,-11],[-59,-9],[-46,-7],[-37,-6],[-6,-1]],[[6211,7784],[-26,22],[-73,65],[-25,21],[-8,51],[-12,75],[-8,47],[0,5]],[[6059,8070],[7,2],[-1,6],[9,1],[1,-6],[68,10],[-2,16],[-8,3],[-1,0],[-53,-1],[0,-6],[-2,0],[0,10],[-64,2],[0,9]],[[6916,7692],[-57,-9],[8,0],[7,-2],[4,-3],[1,-5],[0,-5],[-3,-4],[-7,-7],[-6,-3],[-3,-2],[-4,-3],[-3,-5],[-2,-6],[-1,-6],[1,-7],[2,-7],[9,-12],[6,-9],[7,-19],[8,-21],[5,-8],[6,-6],[7,-6],[2,-1],[-21,-3],[-5,-1]],[[6877,7532],[-15,-2],[-29,-5],[-30,-5],[-19,-3],[-23,-4],[-27,-4],[-24,-4],[-28,-4],[-104,-16],[-23,-4]],[[6960,7699],[12,-75],[80,12],[23,4],[12,-75],[6,-38],[6,-37],[12,-75],[-30,-5],[-41,-6],[-7,-1],[-26,-4],[-15,-3],[-36,-6],[-21,-3],[-14,-2],[-15,-3]],[[6906,7382],[-12,76],[-11,71],[-1,2],[-2,1],[-3,0]],[[5782,7124],[5,8],[-5,31],[-5,29],[-8,7],[6,8],[-10,60],[-8,7]],[[5757,7274],[105,17],[104,17]],[[5966,7308],[3,-23],[9,-53],[11,-74],[-104,-17],[-103,-17]],[[5809,5606],[-12,75],[-6,37],[-6,37],[-12,76],[-6,37],[-5,37]],[[5762,5905],[96,16],[7,1],[104,17]],[[5969,5939],[-3,-9],[4,-28],[5,-30],[7,-8],[-4,-9],[5,-27],[5,-31],[6,-9]],[[5994,5788],[-4,-13],[22,-129],[5,-5]],[[6017,5641],[-12,-4],[-92,-15],[-104,-16]],[[5396,5538],[-5,8],[-9,58],[4,10],[-6,8],[-10,57],[4,10]],[[5374,5689],[-7,9],[-9,56],[4,10],[-6,8],[-9,57],[3,10]],[[5350,5839],[111,18],[85,14],[8,0]],[[5554,5871],[208,34]],[[5809,5606],[-104,-17],[-104,-18],[-6,39],[-6,37],[-91,-15],[6,-41],[-7,-37],[-43,-6],[-58,-10]],[[5173,5580],[-12,75],[-12,75],[-12,75],[-12,75]],[[5125,5880],[46,7],[58,9],[40,7],[69,11],[-4,-9],[5,-30],[4,-28],[7,-8]],[[5374,5689],[-38,-6],[-71,-12],[4,-27],[8,-48],[-104,-16]],[[4233,5427],[12,-75],[101,17],[12,-75],[12,-76]],[[4370,5218],[-101,-16],[-104,-17],[-104,-17],[-92,-15],[-13,0],[-96,-15],[-8,-6]],[[3852,5132],[-12,78]],[[3840,5210],[105,17],[-12,75],[104,17],[-12,74]],[[4025,5393],[104,18],[55,8],[49,8]],[[6865,518],[-18,-54],[-18,-54],[-136,46],[-18,-54]],[[6675,402],[-42,14],[-59,20]],[[6574,436],[-33,12],[-26,9],[-60,20],[-59,20],[-59,21],[-41,14],[-3,45],[8,14]],[[6301,591],[114,-39],[144,-50],[19,55],[18,55],[1,7],[13,40],[5,7],[4,23],[36,-8],[54,-11],[28,-13],[21,-11],[-9,-26],[-18,-55],[134,-47]],[[7143,638],[62,21],[63,20],[9,-27],[3,-2],[3,-2],[9,0],[8,7],[3,14]],[[7303,669],[10,15],[15,-66],[5,-24],[1,-3],[5,-11]],[[7339,580],[3,-12],[-16,-53],[-10,-21],[-25,-33],[-17,-22],[-29,-38],[-11,-5],[0,-10],[-11,-14],[-11,-10],[-9,-9],[-27,-14],[-22,-8],[-23,-7],[-11,2]],[[7120,326],[-1,20],[13,10],[10,13],[0,6],[1,16],[-8,-2],[-79,39],[-63,31],[-89,45],[-39,14]],[[6865,518],[19,54],[18,55],[18,54],[50,-16],[116,-58],[27,-10],[8,9],[8,15],[14,17]],[[7143,638],[-2,6],[-149,74],[-53,18],[18,53],[-20,9],[35,101]],[[6972,899],[9,6],[6,2],[-29,89]],[[6958,996],[6,-8],[57,19],[0,10],[6,-8],[56,18],[0,10]],[[7083,1037],[0,10],[56,18],[6,-7],[1,10],[53,17],[8,-7],[5,13],[17,1]],[[7229,1092],[13,-4],[4,-14],[16,-54],[4,-21],[-2,-2],[-9,-8],[11,-8],[2,-21],[6,-53],[1,-4],[0,-5],[2,-35],[3,-30],[4,-17],[5,-4],[15,-11],[-11,-16],[-2,-2],[6,-26],[7,-32],[5,-3],[4,-3],[-1,-6],[-3,-13],[-6,-31]],[[6972,899],[-33,22],[-16,6],[-15,7],[-19,8],[-21,-7],[-15,-43],[-21,62]],[[6832,954],[1,10],[57,19],[62,21],[6,-8]],[[7844,456],[-18,6],[-18,12],[-45,14],[-55,12],[-26,11],[-43,-3],[-15,2],[-40,14],[-21,4],[-37,8],[-26,11],[-24,11],[-50,28],[-20,5],[-5,1],[-12,0],[-1,0],[-13,-2],[-3,-1],[-5,-1],[-28,-8]],[[7229,1092],[6,21],[9,28],[7,26],[-25,79]],[[7226,1246],[45,-14],[54,-16],[55,-17],[43,-13]],[[7423,1186],[29,-9]],[[7452,1177],[37,-11],[51,-15],[12,-1]],[[7552,1150],[-7,-8],[-15,-41],[2,-8],[-7,-7],[-15,-44],[1,-8],[-7,-6],[-5,-14],[-11,-30],[1,-11],[76,-54]],[[7565,919],[-36,-50],[69,-50],[10,-5],[16,-4],[42,-24],[9,-8],[8,-24],[4,-6],[24,-60],[6,-14],[6,-9],[7,-6],[32,-20],[14,-10],[4,-9],[-6,-8],[-11,-8],[-4,-12],[16,2],[21,4],[12,-10],[27,-48],[11,-21],[8,-20],[-1,-35],[-9,-8]],[[7120,326],[-13,1],[-10,-5],[-18,-13],[-11,-12],[-26,-44],[2,-7],[-8,-2],[-30,-52],[2,-9],[-10,-3],[-19,-35],[-24,-57],[-6,-21],[3,-9],[-9,-4],[-12,-36],[-9,-10]],[[6922,8],[-57,7],[-44,-7],[-6,0],[-6,0],[-95,2],[-95,2],[-68,1],[-59,1]],[[6492,14],[1,2],[8,23],[17,48],[39,112],[58,-20],[45,128],[57,-20],[31,90],[-73,25]],[[6492,14],[-9,0],[-24,0],[-24,1],[-7,-1],[-6,-1],[-16,-1],[-17,-2],[-11,-2],[-9,0],[-10,0],[-45,0],[-5,1],[-60,7],[-55,0],[-8,0],[-60,0],[-3,0],[-31,-4],[-27,-4],[-4,0],[-39,0],[-18,0]],[[6004,8],[0,6],[-8,-2],[-10,4],[-31,11],[-4,7],[-7,-3],[-33,12],[-4,6],[-6,-2],[-32,11],[-3,6],[-6,-2],[-37,13],[-22,10],[-4,5]],[[5797,90],[-5,10],[-34,24],[-28,30],[-8,5],[-1,5],[-30,30],[-30,20],[-59,26],[-19,9]],[[5583,249],[14,47],[61,218],[-111,44],[7,55]],[[5554,613],[22,72]],[[5576,685],[10,32],[1,3],[34,109]],[[5621,829],[19,-13]],[[5640,816],[-35,-94],[-3,-23],[3,-25],[6,-19],[48,-94],[16,-23],[14,-15],[19,-16],[21,-12],[27,-11],[140,-49],[36,-18]],[[5932,417],[-16,-90],[-10,-1],[-21,-13],[-10,-24],[-7,-33],[81,-24],[93,-19],[45,-4]],[[6087,209],[-16,-32],[-18,-23],[-2,-8],[53,-19],[54,-19],[54,-19],[53,-19],[58,-21],[17,-6],[17,48],[-47,16],[-17,9],[-28,10],[56,157],[139,-49],[38,-14],[45,129],[31,87]],[[4154,146],[-9,10],[-43,43],[-40,41],[-49,49],[-26,27],[9,3],[31,32],[28,26],[21,18],[2,1],[27,18],[29,19],[41,23],[2,7],[11,1],[92,53],[4,7],[11,1],[71,41],[8,11],[10,0],[10,7],[25,15],[34,33],[2,7]],[[4455,639],[8,2],[62,62],[1,8],[8,1],[37,38],[23,22],[2,8]],[[4596,780],[11,-5],[33,-34],[1,-7],[7,-1],[12,-18],[16,-33],[3,-12]],[[4679,670],[-34,-57],[-8,-14],[-7,-12],[-6,-10],[-43,-52],[-6,-7],[-43,-52]],[[4532,466],[-23,-27],[-15,-18],[-40,-47],[-11,-13],[-49,-59],[-36,-24],[-18,-12],[-82,-55],[-45,-31],[-35,-24],[-24,-10]],[[4447,14],[-25,-3],[-19,-3],[-31,0],[-32,0],[-54,1],[-3,-1],[-124,-1],[-20,0],[-13,0],[-25,-1],[-4,-1],[-11,1],[-81,-5],[-32,-1],[-52,4],[-51,3],[-11,1]],[[3859,8],[-19,2],[102,44],[49,21],[64,28],[24,11],[26,11],[49,21]],[[4532,466],[14,-42],[62,21],[62,22],[35,-104],[32,-94]],[[4737,269],[-32,-10],[-33,-11],[-33,-11],[-32,-11],[17,-50],[17,-53],[-66,-27],[-16,-7],[-122,-53],[10,-22]],[[4455,639],[-39,40],[-40,41],[-45,46],[-6,3],[22,46],[-97,49],[20,39],[-5,10],[-38,10],[-1,0]],[[4226,923],[7,74],[3,43],[1,10],[1,11]],[[4238,1061],[11,-6],[4,-7],[6,2],[59,-30],[7,-7],[10,-1],[66,-33],[13,-9],[5,-8],[7,-2],[81,-85],[3,-6],[5,-1],[20,-20],[26,-26],[0,-5],[4,0],[26,-26],[5,-11]],[[3705,199],[-26,-30],[-16,-10],[-38,-46],[111,-95],[11,-10]],[[3747,8],[-91,0],[-46,1],[-38,-1],[-34,0],[-53,0],[-88,0],[-7,0],[-42,0],[-15,0],[-20,0],[-9,0],[-2,0],[-51,8],[-29,-7],[-3,-1],[-23,0],[-2,0],[-12,-2],[-14,-2],[-31,-4],[-24,0],[-33,0],[-22,3],[-10,2],[-10,1],[-2,0],[-13,2],[-44,0],[-46,0],[-17,0],[-2,0],[-2,0],[-7,0]],[[2905,8],[-5,7],[13,12],[12,14],[26,30],[33,36],[31,25],[30,17],[39,19],[42,12],[50,9],[25,4],[12,1],[45,1],[58,1],[0,17],[0,2],[1,30]],[[3317,245],[-2,16],[-1,72],[0,20],[-56,0],[-2,143]],[[3256,496],[57,1],[0,46],[225,2]],[[3538,545],[182,2],[6,-2],[1,-67],[1,-71],[-188,-1],[0,-71],[1,-73],[188,2],[14,-15],[-7,-14],[-8,-10],[-23,-26]],[[3859,8],[-23,0],[-1,0],[-88,0]],[[3705,199],[10,2],[49,21],[3,2],[35,18],[34,27],[31,25],[10,8],[59,60],[3,3]],[[3939,365],[40,43],[36,42],[3,4],[2,2],[42,45],[37,41],[10,10],[29,38],[10,13],[20,33],[8,14],[14,37],[10,26],[6,26],[4,20],[5,54],[3,28]],[[4218,841],[7,73],[1,9]],[[8072,6541],[-30,-51],[1,-7],[8,-37],[1,-18],[4,-59],[0,-10],[-8,-7],[-38,1],[-12,-4],[-12,-12],[-55,-55],[-32,33]],[[7899,6315],[-1,1],[-64,65]],[[7834,6381],[-28,28],[-70,71],[55,55],[56,57],[43,43],[18,17],[-1,17],[-9,15],[-14,28],[-11,32],[-5,11],[-7,15],[-9,11],[-13,1],[11,6],[5,15]],[[7855,6803],[129,-138],[-8,-8],[20,-46],[36,16],[2,-6],[-23,-10],[6,-12],[-2,-1],[4,-11],[2,-1],[9,3],[148,75],[2,0],[0,-1],[4,-10],[-43,-48],[-81,-36],[12,-28]],[[6877,5421],[12,-13],[4,-3],[16,-17],[6,-6]],[[6915,5382],[16,-16],[35,-35],[9,-10],[97,-99],[98,-99]],[[7170,5123],[-140,-141],[-13,-7],[-20,-18],[-37,-3],[-14,-1],[-13,-1],[-11,-1],[-17,-1],[-6,0],[-17,-16],[-12,-8],[-20,-5],[-10,0],[-24,-2],[-13,-1],[-34,-2]],[[6769,4916],[-35,1],[-45,-3],[-17,2],[-77,15],[-5,-1],[-7,0]],[[6583,4930],[-1,1],[-2,2],[-95,95],[41,40],[36,36],[-40,40],[-58,59],[38,38],[39,39],[97,99]],[[6638,5379],[37,37],[34,34],[6,6],[30,29],[7,-6],[14,-15],[77,-77],[29,29],[5,5]],[[6822,5761],[34,-35],[141,142]],[[6997,5868],[30,-30],[34,-35],[72,72],[20,20],[49,49]],[[7202,5944],[35,-35],[20,-21],[9,-9],[34,-34],[34,-34],[5,-5],[8,-9],[4,-5],[9,-8]],[[7360,5784],[-1,-2],[-104,-106],[-34,-36],[-8,-8],[-31,-21],[-30,-20],[-14,-9],[-44,-28],[-5,-3],[-36,-25],[-40,-29],[-6,-4],[-51,-55],[-38,-49],[-3,-7]],[[6877,5421],[52,52],[-63,64],[-35,35],[19,19],[-98,99],[37,37],[33,34]],[[7653,5487],[-13,-1],[-128,-128],[0,-13],[-97,-89],[-50,-46],[-6,-6],[-8,-9]],[[7351,5195],[-18,-17],[-77,-77],[-17,-18],[-15,-14]],[[7224,5069],[-54,54]],[[7360,5784],[35,35],[11,12],[93,97]],[[7499,5928],[5,-6],[34,-34]],[[7538,5888],[21,-21],[29,-29],[25,26],[7,-2],[6,1],[6,2],[35,35],[35,34],[2,7],[0,6],[-1,6],[25,26],[15,-15],[34,-34],[-34,-34],[-37,-37],[-26,-26],[-44,-44],[-34,-35],[-29,-29],[-78,-78],[50,-51],[48,-49],[28,-28],[32,-32]],[[7499,5928],[20,20],[51,70],[41,40],[20,20],[-1,1],[-8,8],[-40,41]],[[7582,6128],[-47,47],[-51,52]],[[7484,6227],[57,57],[3,4],[7,7],[24,24],[50,50],[35,-36],[30,-31],[32,-32],[56,56],[56,55]],[[7899,6315],[-56,-66],[-23,-17],[5,-18],[-1,-8],[-3,-10],[-3,-6],[-6,-11],[-23,-32],[-21,-21],[6,-6]],[[7774,6120],[-30,-27],[-15,-14],[-50,-50],[-70,-71],[-71,-70]],[[7202,5944],[50,50],[91,92]],[[7343,6086],[63,-63],[35,-36],[71,71],[35,36],[35,34]],[[4281,5974],[0,-17],[-12,-39],[-3,-15],[5,-28],[-3,-7],[4,-5],[8,-62],[-2,-7],[4,-8],[18,-107],[-2,-8]],[[4298,5671],[12,-77]],[[4310,5594],[-60,-10],[-56,-9],[-56,-9],[-56,-9],[-56,-10],[-57,-9],[-60,-10],[-13,79],[-4,12],[-13,86]],[[3879,5705],[-8,44],[-3,24],[-1,19],[-2,9],[62,10],[65,10],[65,11],[65,10],[22,3],[11,2],[32,5],[-16,105],[-60,-10],[-6,5]],[[4105,5952],[4,7],[60,9],[6,3],[58,10],[44,6],[3,-10],[1,-3]],[[4683,5730],[-10,1],[-59,-10],[-104,-17],[-105,-16],[-43,-7],[-64,-10]],[[4281,5974],[34,5]],[[4315,5979],[58,4],[2,1],[1,0],[6,0],[81,13],[104,17]],[[4567,6014],[6,-20],[55,-27],[10,-6],[10,-11],[11,-69],[12,-76],[12,-75]],[[3814,5360],[-36,-6],[-65,-11],[-132,-19]],[[3581,5324],[-4,75],[124,19],[-7,44],[-5,31],[-5,33],[-8,47]],[[3676,5573],[52,7],[-16,98]],[[3712,5678],[54,9],[55,9],[58,9]],[[4310,5594],[12,-75],[12,-75]],[[4334,5444],[-61,-10],[-40,-7]],[[4025,5393],[-92,-14],[-12,-2],[-107,-17]],[[4530,6245],[-12,75],[-12,77]],[[4506,6397],[104,16]],[[4610,6413],[106,17],[105,17],[104,17],[104,17]],[[5029,6481],[13,-77]],[[5042,6404],[-104,-16],[-105,-17],[12,-75],[105,17],[103,16]],[[5053,6329],[12,-75]],[[5065,6254],[-103,-17],[-105,-16],[-105,-17],[-106,-17],[-104,-17]],[[4542,6170],[-12,75]],[[4719,5736],[-36,-6]],[[4567,6014],[-13,81]],[[4554,6095],[104,17],[6,-38],[6,-38]],[[4670,6036],[2,-11],[11,-63],[11,-75],[12,-75],[13,-76]],[[4282,5974],[8,26],[1,25],[-25,151],[-2,8],[-3,6]],[[4261,6190],[0,0]],[[4261,6190],[76,24],[89,14],[104,17]],[[4542,6170],[-104,-17],[-90,-14],[14,-75],[88,14],[104,17]],[[4315,5979],[-33,-5]],[[4157,6159],[104,31]],[[4282,5974],[-1,0]],[[4105,5952],[-7,5],[-53,-9],[-5,-7],[-7,6],[-53,-9],[-5,-7],[-7,4],[-53,-8],[-5,-7]],[[3910,5920],[-30,188],[57,1],[30,2],[17,1],[8,2],[-8,63],[-3,36],[-1,41],[26,4],[26,4],[54,9],[26,4]],[[4112,6275],[11,1],[14,-6],[7,-11],[7,-39],[7,-52],[-1,-9]],[[3137,4653],[7,-4],[62,3],[60,4],[7,4],[5,-4],[55,4],[8,4],[6,-3],[55,3],[7,4],[4,-76],[4,-76],[7,-132]],[[3424,4384],[-67,-21],[-67,-4],[8,-150]],[[3298,4209],[-68,-4]],[[3230,4205],[-67,-4]],[[3163,4201],[-9,150],[-8,150],[-9,152]],[[3864,5062],[11,-77],[12,-75],[12,-74]],[[3899,4836],[11,-76],[8,-45],[3,-21],[3,-9]],[[3924,4685],[-104,-16],[-147,-24],[-17,1],[-19,4],[-19,6],[0,-15],[2,-38],[2,-43],[1,-21],[11,-80]],[[3634,4459],[-19,-6],[-124,-45],[-67,-24]],[[3137,4653],[-7,-4],[-52,-3],[-8,3],[-7,-4],[-50,-3],[-11,3],[-7,-4],[-51,-3],[-9,4],[-8,-5],[-52,-3],[-8,4]],[[2867,4638],[-8,-4],[-53,-3],[-7,3],[-8,-4],[-54,-3],[-6,3],[-8,-4],[-55,-3],[-8,3],[-8,-4],[-56,-3],[-7,4],[-7,-5],[-55,-4],[-6,5]],[[2521,4619],[-9,2],[-51,-2],[-8,-4],[-7,3],[-52,-3],[-12,-4]],[[2382,4611],[4,7],[-2,33],[-5,9],[35,5],[61,16],[37,12],[109,40],[16,7],[10,5],[16,11],[11,15],[4,8],[3,8],[6,17],[2,17],[2,13],[6,18],[6,13],[11,15],[15,12],[17,10],[17,6],[23,4],[21,2],[30,0],[23,-1],[40,-9],[25,-12],[25,-13],[66,-48],[18,-14],[45,35],[34,28],[36,36],[28,23],[22,11],[104,32],[61,18],[23,3],[20,2],[22,-2],[42,6],[13,4],[9,5],[14,11],[6,9],[8,14],[10,31],[12,-3],[49,-9],[16,-3],[70,-11],[20,-3],[38,-6],[40,4],[25,6],[53,27],[5,7]],[[3859,5092],[5,-30]],[[3910,5920],[-6,5],[-51,-8],[-7,-7],[-6,5],[-59,-10],[-5,-6],[-6,5],[-5,-1],[-4,-6],[-7,4],[-37,-3],[-5,-5]],[[3712,5893],[-6,5],[-15,-1],[-64,-3],[-6,-7],[-5,5],[-58,-2],[-8,-7]],[[3550,5883],[-9,155],[-3,51],[-5,99],[-3,51]],[[3530,6239],[-5,75],[151,25],[12,-75],[52,9],[51,8],[18,3],[86,14],[8,1],[96,15]],[[3999,6314],[97,16],[7,2]],[[4103,6332],[9,-57]],[[5025,2145],[-17,5],[-37,4],[-12,2],[-94,39],[-47,20],[-57,18]],[[4761,2233],[2,105],[2,4],[-3,15],[-7,23],[-3,4],[-3,2],[-1,4],[-8,10],[-4,15],[7,22],[13,14],[13,4],[3,3],[6,-3],[115,-30],[11,-1],[4,2],[6,-1],[24,11],[16,23],[0,4],[8,6],[39,86],[5,12],[1,9],[5,6],[15,35],[5,25],[-1,24],[-5,17],[-5,4]],[[5021,2687],[6,10],[6,3],[3,18],[-5,29],[-3,25],[-2,9],[-1,37],[59,5],[5,-33],[5,-21],[17,-9],[56,4]],[[5167,2764],[3,-47],[23,2],[8,-3],[11,-7],[10,-3],[14,1]],[[5236,2707],[16,-21],[27,-44],[29,-31],[14,-10],[8,-3],[-1,-6],[-64,-44],[29,-42],[8,-10],[2,-8],[10,-12],[8,-15],[5,-21],[61,6],[12,3],[9,1],[48,-21]],[[5457,2429],[-34,-29],[-15,-11],[-36,-31],[-81,-66]],[[5291,2292],[-2,-4],[-67,-56],[-6,-2],[-21,-1],[-15,18],[-38,46],[-19,20],[-13,19],[-10,10],[-15,2],[-6,-1],[9,-38],[10,-47],[-13,-9],[-11,-17],[-13,-16],[-6,-8],[-19,-19],[-1,-3],[-10,-41]],[[4366,2660],[299,90],[9,15],[18,16],[51,21],[57,1],[56,16],[-2,6],[18,6],[18,23],[0,1]],[[4890,2855],[0,-1],[11,-1],[18,-14],[48,-43],[24,-30],[18,-33],[14,-40],[-2,-6]],[[4761,2233],[-1,-24],[1,-5],[-5,-25],[-8,-29]],[[4748,2150],[-6,4],[-42,13],[-21,40],[-8,12],[-15,12],[-20,7],[-11,2],[-3,-1],[-7,2],[-8,-1],[-17,-7],[-46,-16],[-9,-1],[-10,1],[-7,3],[-6,5],[-5,5],[-3,6],[-2,7],[-1,10],[2,8],[4,9],[5,6],[4,6]],[[4516,2282],[4,8],[55,42],[11,14],[4,12],[1,16]],[[4591,2374],[-2,13],[-9,30],[-2,11],[-1,20],[8,54],[-1,17],[-4,6],[-1,2],[-7,11],[-9,7],[-10,4],[-26,7],[-17,5],[-12,8],[-3,2],[-11,12],[-2,3],[-15,24],[-9,9],[-11,9],[-14,6],[-18,4],[-21,4],[-14,4],[-10,8],[-4,6]],[[5727,2937],[128,10],[-17,-58],[3,-8]],[[5841,2881],[-6,-7],[-18,-60],[-16,-55],[1,-11],[-8,-7],[-14,-43],[-20,-63],[-6,-18],[12,-1],[-12,-57],[-7,-6]],[[5747,2553],[5,-7],[-14,-67],[-15,-47],[-11,-21],[-5,-10],[-8,-17],[-13,-17],[-21,-28],[-30,-33],[-37,-40],[-3,-2],[-46,-42],[-29,-27],[-45,-37]],[[5475,2158],[-8,10],[-2,-2],[-15,-10],[-35,-24]],[[5415,2132],[-2,10],[-17,22],[44,36],[36,30],[-35,43],[-34,43],[-80,-67],[-36,43]],[[5457,2429],[0,7],[0,7],[34,13],[6,1],[42,15],[-19,56],[-11,8],[16,1],[66,5],[-15,189],[21,1],[-5,65],[145,11],[-6,8],[-4,47],[5,9],[-6,9],[-3,46],[4,10]],[[5236,2707],[13,1],[57,3],[14,0],[60,5],[65,5],[12,1],[-5,64],[-5,64],[-5,65],[-4,64],[140,11]],[[5578,2990],[144,11],[-4,-9],[3,-46],[6,-9]],[[5578,2990],[-5,64],[145,12],[-7,9],[-3,45],[5,9]],[[5713,3129],[146,12]],[[5859,3141],[62,4],[-19,-65],[85,6],[-103,-202],[-43,-3]],[[5167,2764],[-4,55],[3,10],[141,11],[-5,65],[-5,64],[-4,64],[-6,64]],[[5287,3097],[-4,65],[-4,56],[-1,8],[140,10]],[[5418,3236],[141,11],[5,-64],[4,-64],[145,10]],[[6583,4930],[4,-7],[3,-8],[1,-14],[5,-71],[8,-102],[8,-104]],[[6612,4624],[-62,-5],[-60,-5],[-44,-3],[-102,-8],[-38,-3]],[[6306,4600],[-68,-5],[-69,-5],[9,-130],[-73,-6]],[[6105,4454],[-4,6],[-9,124],[-62,-5],[-51,-4],[-10,131],[-26,-3],[-30,-2],[-33,-2]],[[5880,4699],[-5,64],[-1,15],[-4,49]],[[5870,4827],[-3,50],[-4,42],[-3,47],[-5,69]],[[5855,5035],[11,-13],[34,-18],[7,-3],[25,-8],[20,-3],[27,-3],[8,-1],[11,2],[11,-2],[119,-25],[14,-2],[10,3]],[[6152,4962],[1,-1],[3,-4],[56,-8],[68,-6],[9,1],[5,-1],[11,-1],[53,-2],[65,-3],[5,0],[12,-1],[134,-7],[9,1]],[[6105,4454],[-65,-6],[-140,-10]],[[5900,4438],[-10,130]],[[5890,4568],[-5,65],[-5,66]],[[6326,4341],[-68,-5],[-70,-5],[-69,-5],[-69,-6],[-49,-3],[-43,-4],[-48,-4]],[[5910,4309],[-6,71],[-2,27],[-2,31]],[[6306,4600],[2,-25],[2,-24],[6,-81],[10,-129]],[[6657,4108],[-63,-5],[-52,-4],[-58,-5]],[[6484,4094],[-7,84],[-2,21],[-2,24]],[[6473,4223],[-7,78],[-4,51],[-75,-6],[-61,-5]],[[6612,4624],[7,-105],[8,-103],[8,-102],[8,-102],[4,-74],[10,-30]],[[5919,4181],[-9,128]],[[6473,4223],[-68,-5],[-69,-5],[-69,-6],[-69,-5],[-69,-5],[-69,-5],[-49,-4],[-43,-3],[-49,-4]],[[6018,3800],[-70,-6]],[[5948,3794],[-4,65]],[[5944,3859],[-5,64],[-5,65],[-5,64],[-5,70],[-5,59]],[[6484,4094],[-69,-5],[-69,-5],[-69,-6],[-70,-5],[10,-128]],[[6217,3945],[-69,-6],[-69,-5],[-50,-4],[-20,-1],[9,-129]],[[4048,2802],[13,-19],[5,-21],[4,-19],[3,-30],[11,-10],[22,-13],[25,-22],[16,-17],[14,-21],[14,-23],[25,-22],[23,-18],[24,-15],[0,-15],[1,-23],[-1,-22],[-2,-18],[-6,-24],[-11,-41]],[[4228,2409],[-21,-1],[-14,-3],[-14,-2],[-26,2],[-8,-1]],[[4145,2404],[-19,-4],[-13,-7],[-4,-3],[-48,30],[-6,-8],[-36,-30],[-10,1],[-6,3],[-14,-1],[-13,-4],[-13,-6],[-14,-13],[-41,-51],[-8,-9],[-6,-4],[-14,-3],[-10,1]],[[3870,2296],[-25,32],[-10,5],[-38,1],[-21,3],[-35,16],[-26,20],[-20,25],[-23,24],[-22,15],[-18,5],[-10,-2],[-58,-7],[-6,0],[-44,14],[-10,-1],[16,38],[5,6],[6,5],[11,3],[9,-2],[20,-10],[15,1],[13,4],[13,13],[5,14],[0,15],[-4,9],[2,18],[7,9],[46,28],[25,16],[42,25],[19,12],[4,3],[13,11],[14,19],[10,16],[4,8]],[[3799,2707],[8,19],[10,25],[11,19],[14,22],[19,21],[11,10]],[[3872,2823],[8,7],[13,8],[32,-31],[4,-2],[16,-9],[20,-6],[20,-1],[25,3],[29,12],[9,-2]],[[4591,2374],[-148,0],[-79,-164],[-26,0],[2,13],[8,18],[9,10],[10,8],[8,11],[5,12],[1,19],[-7,20],[-24,26],[-23,23],[-50,28],[-11,3],[-22,6],[-16,2]],[[4048,2802],[40,5],[19,-2],[8,-2],[5,23]],[[4120,2826],[4,0],[13,-16],[14,-11],[14,-8],[20,-6],[21,-4],[70,-7],[18,-3],[17,-5],[11,-6],[9,-7],[7,-6],[2,-3],[3,-5],[5,-9],[1,-4],[3,-12],[2,-27],[4,-14],[2,-7],[6,-6]],[[4255,3384],[42,-16],[8,-3],[71,-53],[10,-13],[1,-13],[-4,-10],[-13,-8],[-15,-2],[-11,4],[-13,7],[-40,38],[-12,9],[-14,5],[-8,-2],[-7,-6],[-30,-67],[-24,-48],[-5,-14],[-20,-59],[-6,-17],[-11,-12],[-8,-5],[-22,-17],[-24,-14],[-22,-5],[-13,-2],[-9,-8],[1,-21]],[[4057,3032],[-8,4],[-2,-1]],[[4047,3035],[0,26],[-2,74],[0,9],[-9,12],[-37,50],[-17,23],[-4,13],[-1,13],[-11,0],[-147,1],[-2,170],[-157,-3],[-72,74],[-50,17],[-1,10],[-9,-1],[-92,-9],[-32,-10],[-23,-15]],[[3381,3489],[87,180],[34,34],[27,28],[7,5],[11,3],[19,-1],[20,2],[-10,36],[-17,2],[-41,30],[-7,12],[-6,26],[-2,23],[-2,28],[-5,34],[-4,12],[-8,14],[-18,16],[-18,26],[-16,16],[-7,11],[2,11],[6,5],[20,7],[27,7],[-25,58],[23,6],[-37,97]],[[3441,4217],[-17,167]],[[3634,4459],[55,21],[15,5],[24,9],[-6,-57],[-8,-43],[-11,-31],[-23,-27],[-12,-12],[-15,-12],[-14,-5],[-29,0],[-29,4],[-48,17],[-5,0],[-7,-14],[1,-6],[4,-3],[95,-40],[9,-3],[34,2],[12,-6],[33,-18],[13,-9],[3,-10],[0,-10],[-2,-9],[-4,-6],[-47,-41],[-4,-12],[2,-11],[4,-8],[6,-9],[13,-4],[53,-18],[31,1],[21,-22],[31,4],[23,0],[5,-1],[29,21],[13,9],[2,2],[39,9],[56,13],[16,1]],[[4012,4130],[3,-13],[9,-59]],[[4024,4058],[-43,-19],[-4,-1],[-12,-4],[-16,-7],[-18,-7],[-4,-3],[-26,-20],[-18,-16],[-4,-5],[-7,-7],[-6,-7],[-10,-16],[-3,-13],[-6,-41],[-5,-13],[-36,-65],[-15,-34],[-3,-12],[-2,-8],[-3,-43],[-4,-11],[-19,-34],[121,-33],[23,-3],[18,4],[26,13],[62,29],[15,5],[15,-3],[11,-4],[9,-9],[6,-12],[44,26],[19,11],[9,5],[15,-30],[5,-18],[3,-16],[1,-16],[-1,-12],[-1,-14],[-2,-14],[-4,-20],[-7,-38],[-7,-42],[-8,-11],[-10,-8],[-13,-3],[-1,-27],[-5,-34],[-10,-45],[-5,-36],[-1,-17],[0,-25],[79,-29],[62,112],[10,10],[17,16]],[[4024,4058],[28,12],[151,26]],[[4203,4096],[4,-8],[0,-27],[12,-47],[7,-14],[17,-21]],[[4243,3979],[6,-8],[7,-12],[10,-12],[15,-12],[9,-10],[3,-4],[6,-9],[5,-17]],[[4304,3895],[11,-20],[27,-31],[14,-9],[12,2],[30,13],[12,-6],[3,-14],[-8,-10],[-27,-9],[-24,-3],[-26,-10],[-15,0],[-13,8],[-33,30],[-10,4],[-10,-4],[-7,-11],[1,-12],[15,-56],[17,-41],[4,-9],[10,-14],[22,-22],[8,-15],[2,-15],[-4,-11],[-29,-33],[-8,-10],[-11,-19],[8,-18],[20,-27],[4,-12],[-1,-9],[-3,-13],[-34,-48],[-9,-6],[-10,-3],[-51,9],[-7,-6],[-22,-16],[-7,-7],[-8,-11],[-5,-12],[-11,-35],[-2,-23],[5,-18],[6,-11],[9,-6],[10,0],[12,6],[10,13],[40,67],[8,6],[11,2],[15,-6]],[[4047,3035],[-36,-16],[-3,-10]],[[4008,3009],[-4,6],[-8,5],[-26,2],[-73,-1],[-17,1],[-12,2],[-5,-2],[-3,5],[-20,12],[-19,16],[-5,0],[-4,6],[-6,3],[-35,10],[-6,-1],[-5,5],[-19,6],[-24,7],[-6,-2],[-4,5],[-19,5],[-25,6],[-6,-2],[-5,4],[-42,9],[-35,0],[-12,-3],[-5,-6],[3,8],[-22,33],[-9,2]],[[3530,3150],[10,1],[19,24],[5,14],[-2,21],[-12,18],[-40,53],[-9,2]],[[3501,3283],[0,6],[-49,60],[-9,14],[-31,82],[-24,39],[-7,5]],[[3381,3489],[0,0]],[[3381,3489],[-4,5],[-14,8],[-20,19],[-18,26],[-20,21],[-24,24],[-15,18],[-1,3]],[[3265,3613],[-14,23],[-8,23],[-3,11],[-1,5],[0,26],[7,36],[3,12],[-1,4],[3,19],[2,22],[-5,89],[-2,29]],[[3246,3912],[-8,143]],[[3238,4055],[36,2],[-3,12],[-8,24],[0,17],[9,21],[29,20],[-3,58]],[[3298,4209],[68,4],[75,4]],[[4516,2282],[-5,3],[-11,4],[-12,-1],[-9,-4],[-8,-9],[-6,-15],[4,-13],[1,-18],[2,-8],[4,-8],[1,-8],[4,-4],[11,-9],[28,-18],[21,-13],[14,-6],[1,-29],[-87,0],[1,-60],[0,-24],[0,-34],[-144,-1],[-144,-1]],[[4182,2006],[0,60],[-1,37],[0,9],[0,5],[0,42],[-1,67],[2,9],[22,37],[1,1],[-52,24],[-2,53],[-6,54]],[[4182,1883],[-6,4],[-131,-1],[-7,-3],[-6,3],[-132,-1],[-5,-3]],[[3895,1882],[-1,63],[0,59],[6,1],[137,0],[145,1]],[[4748,2150],[-24,-4],[-48,13],[-44,37],[-16,-2],[0,-81],[1,-47],[0,-58],[-2,-5],[0,-54]],[[4615,1949],[-144,-1],[0,-6],[0,-54]],[[4471,1888],[-137,0],[-7,-4],[-7,4],[-32,0],[-6,-4],[-6,3],[-87,0],[-7,-4]],[[1215,4243],[-4,-9],[8,-136],[5,-6]],[[1224,4092],[-34,-1],[-68,-4],[-68,-4],[-68,-4],[-67,-3],[-68,-4],[-68,-4]],[[783,4068],[-9,150]],[[774,4218],[68,4],[68,4],[-8,149],[68,4],[68,4],[8,-150],[68,4],[67,4],[34,2]],[[571,4207],[68,4],[68,3],[67,4]],[[783,4068],[8,-150],[8,-151]],[[799,3767],[-68,-3],[-67,-3],[-68,-4],[8,-150]],[[604,3607],[-68,-4],[-68,-4],[-56,-3]],[[412,3596],[-15,150],[-14,149],[69,4],[-8,150],[67,4],[68,4],[-8,150]],[[1224,4092],[-5,-5],[8,-139],[5,-5],[-5,-10],[8,-132],[5,-8]],[[1240,3793],[-5,-5],[8,-135],[5,-10]],[[1248,3643],[-34,-2],[-68,-4],[-67,-4],[-68,-4],[-68,-3],[-68,-4],[-68,-4],[-8,149]],[[1215,4243],[34,2],[33,2],[35,2],[68,3],[68,4],[68,4]],[[1521,4260],[67,4],[68,4],[68,3],[68,4]],[[1792,4275],[8,-150],[-68,-4],[8,-150]],[[1740,3971],[-67,-4],[-68,-4],[-68,-3],[-68,-4],[8,-150]],[[1477,3806],[-67,-4],[-68,-3],[-68,-4],[-34,-2]],[[3870,2296],[3,-8],[1,-38],[-3,-6],[42,-34],[3,1],[12,2],[2,0],[18,0],[19,0],[10,5],[14,17],[20,12],[6,-16],[-1,-15],[-12,-17],[-3,-14],[2,-12],[-9,-2],[-62,4],[-17,-5],[-14,-7],[-13,-13],[-15,-9],[-16,-3],[-15,4],[-11,8],[-9,5],[-13,3],[-14,-2],[-22,-10],[-19,-4],[-28,19],[-21,5],[-20,-1],[-15,-6],[-13,-8],[-12,-14],[-5,-8],[-8,-9],[9,0],[24,7],[16,-3],[10,-7],[7,-14],[-16,-8],[-10,-7],[-23,-23],[-12,-2],[-17,-1],[-30,10],[-15,-1],[-19,-5],[-19,-14]],[[3537,2052],[-28,52],[-32,41],[-20,22],[-9,9],[-49,48],[-50,46],[-70,54],[-102,70],[-69,49],[-20,59]],[[3088,2502],[9,1],[14,10],[5,4],[25,15],[5,7]],[[3146,2539],[6,-2],[40,14],[21,4],[8,2],[31,4],[30,5],[17,1],[53,8],[49,6],[9,6],[8,-3],[38,6],[82,10],[9,7],[2,-1],[8,-2],[36,11],[14,7],[31,20],[81,55],[15,16],[13,18]],[[3747,2731],[52,-24]],[[3872,2823],[-44,40]],[[3828,2863],[13,13],[4,8],[9,4],[8,9],[13,12],[17,15],[6,9],[9,2],[60,45],[7,6],[26,15],[8,8]],[[4008,3009],[2,-9],[64,-97],[-1,-10],[43,-66],[4,-1]],[[3747,2731],[10,24],[9,20],[13,25],[-2,9],[10,4],[5,8],[14,18],[22,24]],[[3895,1882],[-5,-3],[-7,0],[-68,-2],[-8,-2],[-7,2],[-6,-4],[-30,-4],[-12,-3],[-6,2],[-5,-5],[-24,-5],[-19,-5],[-5,2],[-3,-5],[-43,-12],[-9,1],[-7,-6],[-41,-11],[-15,-2],[-14,0]],[[3561,1820],[-1,7],[3,13],[8,23],[2,27],[-2,32],[-5,42],[-9,34],[-9,28],[-11,26]],[[1359,1727],[2,-9],[8,-10],[49,-33],[18,-9],[21,-4],[14,3],[17,3],[27,17],[2,3],[27,35],[0,8],[8,3],[18,25],[15,14],[21,9],[23,3],[20,-5],[137,-54],[11,0],[5,-7],[48,-17],[20,-22],[85,-129],[7,-26],[5,-5]],[[1967,1520],[3,-8],[-4,-20],[-32,-99],[-15,-45],[-21,-64],[-7,-7]],[[1891,1277],[-4,-5],[1,-63],[-2,-21],[1,-344],[4,-4],[-4,-3],[0,-14],[4,-3]],[[1891,820],[-4,-4],[0,-18],[-5,-148],[-4,-114],[3,-8],[11,-6],[202,-8],[93,-3],[6,5],[6,-5],[88,-2],[113,2],[23,-2],[21,-5],[19,-7],[27,-13],[8,1],[3,-8],[79,-52],[36,-19],[48,-21],[8,1],[5,-10],[6,-2],[16,-5],[21,-3],[14,0],[26,1],[-1,9],[12,0]],[[2771,376],[2,-9],[2,-22],[3,-39],[1,-103],[1,-68],[1,-58],[0,-45],[1,-22]],[[2782,10],[-5,1],[-16,3],[-10,2],[-3,0],[-15,0],[-4,0],[-586,-8],[-170,8],[-70,0],[-15,-4],[-17,-4],[-13,0],[-2,0],[-5,0],[-21,0],[-41,0],[-437,0],[-266,-8],[-24,0],[-4,0],[-269,0],[-19,0],[-3,0],[-1,17],[-5,14],[-3,20],[-2,16],[-1,12],[-13,43],[-3,32],[-4,22],[-6,24],[-5,23],[5,10],[-6,20],[-4,9],[-4,34],[-20,13],[-4,13],[-4,35],[-2,20],[-5,15],[0,22],[-6,16],[-3,19],[-2,15],[-18,77],[-7,24],[-7,20],[-9,27],[-2,17],[-3,14],[-13,47],[-7,17],[-4,15],[-5,16],[-1,19],[-5,22],[-7,22],[-4,19],[3,16],[-6,15],[-6,10],[-6,21],[0,21],[-2,21],[-2,11],[1,12],[1,6],[1,13],[-1,12],[-3,30],[-6,19],[-5,10],[-7,29],[-7,22],[-72,548],[-2,6],[-3,7],[-1,9],[-1,10],[-1,15],[-1,9],[-3,10],[-3,12],[-2,8],[-4,9],[-2,1],[0,3],[-1,5],[0,4],[0,8],[-1,11],[-1,4],[0,6],[0,6],[-1,7],[0,6],[-1,9],[-3,9],[0,10],[1,5],[-1,5],[-1,6],[1,4],[6,5],[0,3],[4,7],[-1,4],[-1,6],[0,3],[2,7],[-1,3],[-1,5],[1,4],[0,4],[-1,7],[-1,5],[-1,6],[-1,9],[-2,3],[-3,4],[-1,11],[-2,5],[-2,6],[0,7],[-1,5],[-2,6],[-2,6],[-2,4],[-3,11],[-1,6],[5,6],[2,4],[1,4],[0,4],[-1,6],[1,3],[0,3],[1,4],[1,2],[0,4],[0,5],[0,8],[0,3],[-1,6],[1,4],[-2,3],[0,5],[3,6],[1,37],[-2,6],[1,2],[-1,5],[0,1],[0,3],[-1,3],[1,3],[0,11],[-1,4],[-2,7],[-2,9],[-4,3],[-3,4],[0,1],[-1,3],[0,2],[-2,6],[-2,6],[0,6]],[[406,2194],[115,5]],[[521,2199],[4,-12],[-1,-18],[-4,-30],[-16,-96],[-3,-34],[2,-27],[5,-33],[-2,-21],[0,-47],[11,-68],[14,-124],[5,-49],[4,-33],[1,-15],[11,-38],[22,-42],[21,-26],[18,-18],[18,-13],[50,-25],[43,-27],[30,-25],[34,111],[46,141],[18,39],[37,65],[99,122],[18,30],[52,-16],[15,-8],[-4,-9],[12,-35],[32,-84],[1,-1],[7,-15],[14,-15],[20,-14],[22,-7],[20,-2],[22,4],[89,27],[51,16]],[[6535,6415],[1,-8],[2,-17],[5,-28],[3,-22]],[[6546,6340],[-52,-9],[-52,-8]],[[6442,6323],[-26,-4],[-78,-13],[-12,75],[-104,-17]],[[6222,6364],[-22,-3],[-81,-13]],[[6119,6348],[-105,-17]],[[6014,6331],[-6,36],[-6,39],[105,16],[28,5],[75,12]],[[6210,6439],[19,3],[85,14],[104,17],[8,-51],[4,-24],[39,6],[13,2],[12,2],[41,7]],[[6198,6514],[-12,76]],[[6186,6590],[82,13],[23,3],[-8,45],[-5,32],[-4,27],[-4,27],[-3,21],[-23,-4],[-81,-13]],[[6163,6741],[-6,33],[-6,38],[84,13],[21,3],[36,6],[18,3],[12,2],[0,2],[-1,10],[-9,59]],[[6312,6910],[36,7]],[[6348,6917],[1,-6],[3,-15],[8,-51],[5,-35],[6,-36],[11,-74],[13,-77]],[[6395,6623],[11,-75],[-48,-8],[-56,-9],[-24,-4],[-80,-13]],[[6210,6439],[-12,75]],[[6395,6623],[104,17],[7,-44],[5,-31],[12,-75]],[[6523,6490],[4,-26],[4,-25],[4,-24]],[[7058,6396],[-6,-1],[-65,-65],[-2,-7],[-6,-2],[-69,-68],[-2,-3],[-1,-4],[-1,-2],[-9,-5],[-1,-1],[-84,-84],[-1,-6],[-6,0],[-39,-39],[-1,-6]],[[6765,6103],[-29,29],[2,8],[-52,-9],[-12,76],[46,7],[7,1],[-7,24],[-4,12],[-7,37],[-24,-4],[-23,-3],[-104,-17],[-12,76]],[[6523,6490],[58,9],[46,8],[-12,75],[104,17],[-8,52],[-4,23]],[[6707,6674],[38,6],[14,2]],[[6759,6682],[6,1],[4,-22],[8,-53],[24,4],[22,3],[6,-37],[6,-38],[6,-36],[6,-39],[98,16],[6,-37],[98,15],[5,-37],[4,-26]],[[7145,6483],[-2,-7],[-47,-47],[-31,-31],[-7,-2]],[[6759,6682],[-2,7],[-11,69]],[[6746,6758],[17,3],[35,6],[2,0],[50,8],[50,8]],[[6900,6783],[17,3],[79,12],[37,7],[67,10],[13,-76],[12,-75],[12,-75],[12,-75],[2,-15],[-6,-16]],[[4341,4753],[25,-161]],[[4366,4592],[8,-51],[-15,-31],[-2,-4],[-25,-35],[-6,-8],[-9,-21],[-16,-50]],[[4301,4392],[-20,123],[-16,44],[-5,27]],[[4260,4586],[-12,75],[-135,-22],[-12,75]],[[4101,4714],[68,11],[67,11],[52,9],[53,8]],[[4012,4130],[-25,162]],[[3987,4292],[87,6],[92,7],[-11,70],[-8,55],[83,13],[-10,67],[-11,68],[51,8]],[[4301,4392],[10,-71],[3,-5]],[[4314,4316],[16,-31],[8,-24],[-2,-7],[-9,-9],[-18,-38],[-5,-21],[-13,-41],[-5,-7],[-10,-16],[-19,-15],[-25,-8],[-29,-3]],[[3987,4292],[-9,55],[-9,54],[-10,67],[-11,67],[-12,75],[-12,75]],[[3924,4685],[105,18],[72,11]],[[1573,5769],[-7,-5],[-54,-4],[-7,5],[-6,-6],[-53,-3],[-8,5]],[[1438,5761],[-9,155],[-6,100],[-3,51]],[[1420,6067],[68,3],[68,4],[38,3],[30,1],[34,2],[34,2],[67,4],[68,4]],[[1827,6090],[68,4],[8,-150],[-67,-4],[8,-155]],[[1844,5785],[-7,-6],[-53,-3],[-7,5],[-8,-6],[-52,-3],[-8,5],[-7,-6],[-52,-3],[-9,5],[-7,-6],[-52,-3],[-9,5]],[[2276,1026],[-3,-59],[64,-3],[-5,-115],[-23,-6],[-6,-6],[-5,-5],[-8,-15],[1,-18],[5,-13],[14,-16],[21,-18],[-67,-89],[-28,21],[-23,25],[-86,-80],[-17,19],[-105,5],[1,24],[3,84],[2,29],[1,26],[-103,4],[-18,0]],[[1891,1277],[11,-7],[72,-80],[5,-14],[16,-5],[54,-59],[5,-8],[12,-6],[17,7],[11,5],[78,-4],[-2,-73],[102,-5],[4,-2]],[[2276,1026],[7,2],[83,-3],[88,-4],[7,-3],[3,3],[17,3],[19,7],[14,9]],[[2514,1040],[10,-10],[0,-30],[-10,-10],[10,-11],[6,-31],[19,-27],[123,-170],[10,-24]],[[2682,727],[3,-6],[7,-15],[7,-33],[6,-24],[32,-106],[8,-33],[9,-38],[11,-55],[4,-26],[2,-15]],[[3211,1438],[-6,-11],[-2,-17],[2,-17],[6,-21],[-14,3],[-50,8],[-67,10],[2,-65],[-11,-56],[-17,-45],[-63,10],[-66,10],[-34,-65],[-25,11],[-33,17],[-24,-71],[-8,-47],[-5,-6]],[[2796,1086],[-57,0],[-6,3],[-14,-1],[-21,-3]],[[2698,1085],[6,13],[6,159],[10,236],[-5,11],[6,10],[2,55],[5,102],[3,72],[2,39],[2,28],[5,21],[-9,11]],[[2731,1842],[8,-6],[93,-52],[6,0],[3,-5],[40,-22],[6,0],[3,-5],[22,-11],[15,-13],[6,-1],[1,-6],[3,-2],[14,-19],[7,-3],[5,-3],[4,-11],[0,-6],[-1,-6],[17,-41],[5,-5],[-1,-6],[11,-20],[11,-16],[5,-3],[0,-6],[34,-35],[7,-2],[2,-6],[23,-22],[8,-8],[5,0],[2,-6],[22,-15],[18,-9],[7,-1],[3,-4],[38,-18],[5,0],[3,-5],[14,-7],[6,2]],[[3401,1353],[4,-3],[54,-14],[4,1],[3,1],[12,-3],[3,-3],[4,1],[40,-10],[3,-4]],[[3528,1319],[0,-70],[-65,-1],[1,-146]],[[3464,1102],[-65,0],[-62,0],[-3,0],[0,-11],[-26,0],[-57,-1],[-57,0],[-57,-1],[-11,0],[-46,0]],[[3080,1089],[-19,0],[-38,0],[-27,-1],[-29,0],[-37,0],[-20,0],[-49,-1],[-8,0],[-57,-1]],[[3211,1438],[3,-6],[14,-7],[7,1],[3,-4],[35,-18],[20,-8],[7,0],[3,-4],[29,-14],[6,0],[4,-5],[53,-22],[6,2]],[[2536,1300],[-4,-97],[-7,-151],[-11,-12]],[[1967,1520],[123,7],[28,18],[7,7]],[[2125,1552],[3,-9],[92,-157],[11,-8],[58,12],[110,-5],[16,-42],[96,-36],[15,-7],[10,0]],[[6769,4916],[8,-20],[1,-3],[1,-6],[0,-9],[2,-33],[8,-103],[9,-104],[8,-104],[7,-105],[5,-7],[7,-86],[-5,-8],[5,-7],[7,-87],[-4,-8]],[[6828,4226],[5,-8],[6,-89],[-3,-7]],[[6836,4122],[-63,-5],[-61,-5],[-55,-4]],[[7056,3934],[-8,15],[-13,16],[-13,17],[-18,18],[-33,30],[-36,33],[-22,31],[-12,20],[-7,13],[-2,6],[-8,27],[-6,34],[0,32],[1,6]],[[6879,4232],[10,41],[1,8],[16,36],[5,9],[4,10],[13,27],[13,33],[15,41],[0,4],[24,2],[19,2],[60,5],[-7,103],[61,4],[61,5],[61,5],[62,4],[60,5],[62,5],[61,4]],[[7480,4585],[8,-103],[-62,-4],[8,-103]],[[7434,4375],[-61,-4],[8,-103],[-62,-5],[-61,-4],[-59,-5],[-11,0],[-44,-4],[-8,-1],[8,-103],[7,-102],[8,-103],[-61,-4],[-17,-2],[-25,-1]],[[7496,4809],[47,-49],[59,-60],[15,-15],[26,-30],[20,-31]],[[7663,4624],[1,-12],[1,-12],[-62,-5],[-62,-5],[-61,-5]],[[6879,4232],[-14,-1],[-14,-1],[-11,0],[-12,-4]],[[7224,5069],[50,-51],[54,-55],[8,-7],[55,-56],[48,-49],[48,-49],[9,7]],[[7663,4624],[33,-51],[23,-73]],[[7719,4500],[3,-12],[11,-90]],[[7733,4398],[-12,-1],[-2,0],[-39,-3],[8,-103],[-63,-4],[-61,-5]],[[7564,4282],[-61,-5],[-61,-4],[-8,102]],[[3914,1216],[0,-91],[0,-21]],[[3914,1104],[-63,0],[-65,0],[-64,-1],[-65,0],[-64,0]],[[3593,1103],[-65,0],[-64,-1]],[[3528,1319],[4,2],[57,-16],[3,-3],[5,1],[47,-13],[2,-2],[3,1],[7,-2],[1,-2],[4,1],[35,-9],[2,-3],[3,1],[19,-5],[1,-3],[4,2],[58,-16],[3,-3],[4,1],[57,-15],[3,-3],[6,1],[56,-15],[2,-3]],[[7175,3736],[-62,-5],[-22,-2],[-8,104],[-4,33],[-6,26],[-10,28],[-7,14]],[[7564,4282],[8,-103],[-61,-4]],[[7511,4175],[-62,-5],[16,-205],[-61,-5],[-38,-3],[-24,-2],[9,-117],[7,-88],[-56,-4],[-10,-1],[-56,-4],[-61,-5]],[[7175,3736],[7,-103],[7,-103],[-60,-4],[-25,-2],[-9,-1],[-1,-6],[-6,-33],[-7,-34],[-6,-25],[-18,-68],[-8,-31],[-2,-11],[-11,-43],[-7,-30]],[[7029,3242],[-10,13],[-7,8],[-23,21],[-14,13],[-4,4],[-4,3],[-1,1],[-9,-3],[-4,-2]],[[6953,3300],[-7,7],[-27,49],[-34,84],[-2,14],[-2,14],[3,10],[-2,29],[-8,103]],[[6874,3610],[-7,102],[3,6],[-1,13],[-4,4],[3,8],[-8,114],[-5,7]],[[6855,3864],[3,8],[-2,39],[-5,7],[3,7],[-4,61],[-5,7],[4,7],[-8,115],[-5,7]],[[925,2721],[68,4]],[[993,2725],[68,4],[68,4],[67,4],[68,4],[34,2]],[[1298,2743],[-4,-9],[7,-135],[5,-7],[-4,-5],[7,-136],[5,-8]],[[1314,2443],[-4,-8],[7,-136],[5,-6],[-4,-6],[7,-124],[5,-83]],[[1330,2080],[-30,-2],[-129,-7],[-12,-8],[-14,7],[-40,5],[-34,8],[-37,13],[-27,14],[-10,-4]],[[997,2106],[10,20],[11,23],[4,18],[1,17],[-5,91],[-9,151],[-67,-4],[-9,149],[-8,150]],[[2503,2509],[-69,-3],[-69,-4],[-67,-4],[-68,-4],[-68,-4],[-8,150],[-68,-4],[-68,-4],[-68,-4],[-8,151]],[[1942,2779],[68,4],[-8,150],[67,3],[68,4],[136,8],[68,4],[-8,149],[67,4],[71,4]],[[2471,3109],[-3,-9],[7,-132],[4,-9]],[[2479,2959],[-3,-9],[7,-131],[5,-10],[-5,-8],[6,-135],[5,-7],[-4,-7],[8,-134],[5,-9]],[[3323,6205],[2,-29],[-68,-4],[-32,-2],[-35,-3],[-69,5]],[[3121,6172],[-67,-11],[-68,-4],[9,-150],[-68,-4],[-9,150],[-67,-4],[-9,150]],[[2842,6299],[68,4],[68,4],[60,4],[8,-1],[57,3],[10,2],[68,3],[7,-135],[68,11],[67,11]],[[997,2106],[-3,12],[-52,36],[-27,16],[-26,12],[-12,-4],[-6,11],[-26,8],[-27,6],[-34,3],[-27,0],[-7,-7],[-8,7],[-61,0],[-61,1],[-7,-7],[-7,7],[-48,0],[-25,0],[-12,-8]],[[406,2194],[2,13],[-1,2],[-1,1],[1,3],[1,2],[0,7],[-1,3],[0,1],[3,0],[0,2],[0,4],[1,5],[-1,11],[1,4],[0,15],[-2,13],[-2,15],[-5,13],[-4,11],[-1,8],[-3,8],[-1,13],[-2,10],[-1,9],[1,7],[-1,5],[2,7],[-1,7],[2,7],[-1,34],[-3,18],[0,8],[-4,17],[-2,7],[0,9],[0,10],[5,14],[2,12],[1,15],[1,3],[1,2],[-2,3],[-1,4],[1,2],[0,3],[0,4],[1,3],[0,2],[1,3],[0,4],[0,2],[1,3],[-1,6],[-6,11],[1,4],[-3,4],[1,4],[-1,6],[0,6],[-1,2],[-2,1],[-1,3],[0,6],[0,2],[-4,4],[-1,3],[-1,3],[0,4],[-1,4],[-2,5],[-2,2],[-2,3],[-3,0],[-1,3],[-3,4],[0,4],[1,5],[0,3],[1,2],[1,2],[1,5],[-2,4],[2,4],[0,7],[2,4],[0,2],[0,4],[2,4],[1,5],[0,2],[1,4],[1,2],[1,3],[0,4],[-1,3],[0,4],[1,4],[0,4],[0,4],[-1,6],[-1,2],[-1,3],[0,4],[-1,2],[-1,3],[-1,3],[-1,2],[-2,4],[1,2],[1,2],[-1,10],[0,2],[-1,4],[-1,2],[-1,2],[-1,2],[0,2],[0,3],[-2,3],[-2,8],[0,8],[-2,7],[-1,2],[-1,4],[-1,2],[-1,3],[-1,4],[0,2],[0,3],[-2,2],[-1,2],[0,2],[-1,1],[-1,4],[0,3],[-4,6],[0,5],[-1,2],[-3,6],[-1,4],[1,4],[-1,2],[-1,2],[0,3],[0,3],[-2,3],[0,4],[2,4],[0,5],[1,2],[0,3],[1,2],[1,4],[-1,4],[2,2],[5,5],[3,2],[1,2],[-1,2],[0,6],[2,3],[0,8],[2,10],[3,33],[1,19],[-5,35],[-5,14],[-3,14],[-2,14],[-1,14],[0,7],[-11,28],[-3,10],[-1,10],[0,10],[0,8],[8,66],[0,4]],[[332,3275],[52,-1],[26,7],[8,3],[25,13]],[[443,3297],[16,-150],[16,-150],[16,-149]],[[491,2848],[15,-143],[6,-7],[-5,-6],[17,-143],[70,3],[68,4],[68,4],[68,4],[-9,149],[68,4],[68,4]],[[491,2848],[19,1],[67,4],[68,4],[68,4],[-8,149],[-8,150],[67,4]],[[764,3164],[68,4],[68,4],[68,3]],[[968,3175],[8,-150],[9,-149],[8,-151]],[[1166,5745],[9,-154],[-68,-4],[-67,-4],[-68,-4],[-68,-4],[-68,-4],[-68,-4],[-68,-4],[-67,-4],[-68,-4],[-68,-3],[4,-76],[-67,-4],[-68,-4]],[[366,5468],[-4,76],[-9,154],[-4,72]],[[349,5770],[68,5],[33,3],[34,2],[68,-7],[69,-8],[68,-7],[69,-8],[69,-8],[60,-6],[8,-7],[7,-3],[54,3],[7,4]],[[963,5733],[7,-3],[54,3],[7,5],[8,-4],[52,3],[8,5],[8,-4],[52,3],[7,4]],[[3550,5883],[-11,-6],[-53,-3],[-8,5],[-7,-6],[-53,-3],[-7,5],[-8,-6],[-53,-3],[-8,5]],[[3342,5871],[-9,-6],[-50,-2],[-8,5],[-8,-7],[-51,-3],[-9,5]],[[3207,5863],[-9,155],[-68,-4],[-9,158]],[[3323,6205],[68,11]],[[3391,6216],[67,11],[72,12]],[[4504,4027],[7,0],[20,-16],[9,-9],[0,-6],[7,-3],[3,-3],[10,-15],[11,-22],[13,-23],[6,-7],[12,-11],[1,-10],[16,-8],[10,-1],[9,-1],[5,0],[19,-10],[6,-10],[5,-7],[1,-6],[-1,-17],[-11,-21],[-27,-52],[-8,-25],[-5,-12],[-35,-65],[-4,-9],[-8,-45],[-6,-32],[2,-7]],[[4571,3574],[-6,2],[-3,2],[-2,4],[0,7],[1,3],[-54,3],[1,4],[29,51],[9,28],[7,13],[-6,2],[-61,11],[4,7],[3,16],[-3,12],[-11,33],[-2,11],[0,34]],[[4477,3817],[-2,27],[-2,9],[-4,12],[-9,14],[-1,2],[-3,4],[-14,11],[-16,4],[-17,-3],[-23,-10],[-13,-2],[-6,-1],[-63,11]],[[4243,3979],[9,6],[18,11],[11,7],[17,23],[17,22],[24,33],[8,-9],[16,-2],[10,1],[60,-33],[22,0],[20,-5],[16,-9],[13,3]],[[5331,4394],[4,-54],[0,-10],[-140,-11],[5,-64],[5,-64]],[[5205,4191],[5,-65],[4,-64],[5,-65]],[[5219,3997],[-70,-5]],[[5149,3992],[-9,129],[-71,-6]],[[5069,4115],[-9,129],[-9,123],[-3,20]],[[5048,4387],[16,-13],[55,4],[71,5],[52,4],[37,3],[52,4]],[[5069,4115],[-69,-5],[-69,-5],[-68,-5],[-67,-6],[4,-45],[2,-49]],[[4802,4000],[-34,9],[-27,12],[-9,9],[-22,21],[-2,27],[-15,16],[-15,-1],[-72,-6],[-6,-2],[-46,-1],[-24,-1],[-5,2],[-22,18],[-34,-44],[-8,6],[-9,12],[-6,1]],[[4446,4078],[-7,13],[-2,10],[1,24],[1,3],[2,7],[4,8],[6,6],[3,4],[65,54],[2,7],[7,0],[37,30],[12,8],[12,3],[87,1],[5,3],[6,-3],[32,0],[9,1],[12,2],[4,1],[13,8],[19,12],[5,7]],[[4781,4287],[6,0],[19,8],[35,10],[6,5],[8,-1],[53,12],[7,4],[6,-2],[44,11],[12,5],[4,6],[5,0],[53,32],[2,2],[7,8]],[[5702,4164],[-67,-5]],[[5635,4159],[-6,9],[-9,110],[5,9]],[[5625,4287],[-6,9],[-4,45],[5,5],[-5,5],[-4,55],[4,10]],[[5615,4416],[90,7],[54,4],[-4,10],[-7,108],[2,12]],[[5750,4557],[63,5],[16,1],[14,2],[47,3]],[[5910,4309],[-53,-4],[-23,-1],[-12,-1],[-53,-4],[-78,-6],[11,-129]],[[5625,4287],[-144,-11],[5,-64],[-141,-11],[-140,-10]],[[5331,4394],[140,11],[-4,55],[84,18],[46,10],[13,4]],[[5610,4492],[-5,-5],[4,-62],[6,-9]],[[5722,7495],[-14,3],[-10,-2],[-73,-11],[-7,-6],[-8,3],[-89,-14],[-7,-6],[-8,4],[-89,-15],[-7,-6]],[[5410,7445],[-12,78],[-12,75],[-104,-16],[-12,71]],[[5270,7653],[-7,44],[-5,35],[-5,30],[-6,41],[-3,6],[-16,62]],[[5228,7871],[2,1],[3,2],[3,1],[2,1],[1,2],[1,3],[-1,4],[-2,0],[-1,5],[1,2],[0,4],[-1,4],[-5,38],[-5,24],[-12,111],[-3,0],[1,2],[1,0],[15,0],[17,-104],[5,-3],[35,6],[4,5],[-22,137],[25,3],[22,-136],[5,-4],[35,6],[3,5],[-20,138],[33,4],[17,-112],[36,6],[0,6],[65,35],[78,-24],[1,2],[-35,41],[-30,-6],[-2,11],[33,6],[0,-4],[14,3],[1,-5],[-13,-2],[37,-43],[5,-3],[7,5],[-6,36],[0,6],[-1,8],[0,2],[0,12],[-1,4],[2,4],[1,11],[2,15],[4,14],[2,6],[3,8],[6,13],[8,13],[8,12],[4,5],[3,3],[1,2],[9,8],[9,7],[8,5],[11,6],[12,5],[10,3],[10,2],[10,1],[2,0],[10,-1],[8,-1],[8,-3],[2,-1],[2,0],[0,-2],[3,-2],[2,-4],[1,-2],[0,-4],[0,-3],[-2,-4],[-2,-3],[-4,-2],[-3,-1],[-4,1],[-3,1],[-3,3],[-2,3],[-1,4],[0,2],[-1,2],[-1,2],[-2,1],[-6,0],[-4,0],[-11,-1],[-11,-3],[-11,-3],[-11,-6],[-10,-6],[-7,-6],[-7,-6],[-3,-2],[-1,-3],[-8,-10],[-8,-12],[-6,-12],[-5,-12],[-1,-3],[-3,-10],[-3,-13],[-2,-14],[-1,-16],[-1,-9],[2,2],[1,-16],[4,-27],[1,-11],[2,1],[1,-7]],[[5600,8040],[-9,6],[1,-7],[7,-33],[14,-38],[31,-37],[9,-21],[9,-36],[12,-75],[-5,-9],[9,-60],[8,-6],[-5,-10],[9,-59],[8,-7],[-5,-8],[9,-60],[8,-6],[-5,-9],[9,-60],[8,-10]],[[4292,7421],[0,6],[-35,30]],[[4257,7457],[-9,7],[-83,73],[-15,16],[-56,79],[-11,16],[-43,24],[-20,9],[-26,8],[-29,0],[63,12],[141,29],[24,13],[23,20],[4,7],[-3,22],[-11,88],[7,11],[13,9],[2,1],[-2,33],[3,11]],[[4229,7945],[19,13],[41,34],[10,1],[25,3],[10,-1],[78,9],[29,-2],[69,10],[62,20],[5,2],[7,2],[62,8],[37,6],[19,7],[7,5],[5,5],[5,6],[11,15],[12,13],[6,-4],[-22,-45],[-3,-3],[-5,-3],[-4,0],[-10,-3],[-10,-1],[-64,-9],[1,-6],[18,2],[1,-2],[5,-6],[-1,-2],[-7,9],[-6,-1],[5,-8],[-1,-1],[-6,9],[-8,-1],[5,-8],[-1,-1],[-7,8],[-7,-1],[6,-7],[-2,-1],[-6,8],[-1,2],[11,1],[-1,6],[-31,-4],[-4,-2],[-3,-3],[-2,-5],[1,-2],[6,2],[0,2],[20,3],[1,-11],[-1,-1],[-1,9],[-1,1],[-9,-1],[2,-13],[-3,0],[-2,12],[-4,-1],[0,-1],[2,-11],[-2,-1],[-2,11],[-2,-5],[0,-5],[-1,-2],[-1,7],[2,5],[-5,-1],[2,-11],[-16,-4],[-2,16],[-3,2],[-1,-3],[3,-21],[-10,-1],[0,2],[7,1],[0,2],[-7,-1],[0,2],[7,1],[-1,2],[-7,-1],[0,2],[7,0],[0,3],[-7,-1],[0,2],[7,0],[0,2],[-7,0],[-1,1],[8,1],[-1,2],[-7,-1],[0,2],[7,1],[0,2],[-6,-1],[-6,-1],[-4,-2],[-4,-1],[-9,-3],[-2,0],[1,-2],[8,1],[0,-2],[-7,-1],[0,-2],[8,1],[0,-2],[-7,-1],[0,-2],[7,1],[0,-1],[-6,-1],[0,-3],[7,2],[0,-2],[-7,-1],[0,-2],[7,1],[0,-2],[-6,-1],[0,-2],[7,1],[0,-2],[-16,-2],[0,2],[6,1],[0,1],[-7,-1],[0,2],[6,1],[0,2],[-6,-1],[0,2],[6,1],[-1,2],[-6,-1],[0,2],[6,1],[0,2],[-6,-1],[-1,2],[6,0],[0,3],[-6,-1],[0,1],[6,1],[-1,2],[-7,-1],[-15,-6],[0,-3],[1,-6],[-2,-2],[-11,-2],[1,-6],[9,3],[3,2],[2,-1],[-2,-1],[4,1],[6,-6],[-2,-2],[-5,6],[-2,-1],[5,-5],[-2,-1],[-5,6],[-2,0],[4,-5],[-1,-2],[-5,6],[-2,0],[5,-5],[-1,-2],[-6,6],[-2,0],[5,-5],[-1,-1],[-6,5],[-5,-1],[7,-8],[-1,-1],[-8,9],[-3,-1],[8,-9],[-1,-1],[-9,9],[-3,0],[6,-7],[-1,-1],[-7,7],[-4,-1],[9,-9],[-1,-1],[-9,10],[-3,-1],[9,-10],[-2,-1],[-9,10],[-2,-1],[8,-9],[-2,-1],[-8,9],[-3,-1],[8,-9],[-1,-1],[-9,10],[-7,-3],[8,-9],[-1,-1],[-9,9],[-4,-1],[-1,1],[13,5],[-3,6],[-19,-8],[-29,-11],[2,-4],[8,1],[2,1],[1,-2],[-7,-1],[-1,-2],[4,-2],[17,3],[1,-2],[-13,-2],[-1,-2],[3,-2],[11,2],[0,-2],[-4,-1],[1,-3],[16,3],[0,-2],[-19,-3],[-5,4],[2,-6],[-2,0],[-3,8],[-5,3],[5,-12],[-2,-1],[-5,15],[-4,3],[-8,-3],[6,-19],[-1,0],[-7,18],[-6,-2],[8,-18],[-2,-1],[-7,19],[-4,-2],[7,-18],[-2,-1],[-7,18],[-7,-2],[3,-9],[0,-1],[-16,7],[11,4],[-2,2],[-39,-14],[7,0],[5,1],[1,0],[12,4],[25,-12],[-1,-2],[-25,12],[-8,-3],[27,-13],[-1,-2],[-29,14],[-6,-2],[17,-14],[-1,-2],[-18,15],[-7,-3],[17,-13],[-2,-1],[-17,13],[-7,-2],[10,-8],[-1,-2],[-8,6],[-5,-2],[-2,5],[-4,-1],[-15,-6],[0,1],[14,6],[-1,3],[-16,-7],[0,-7],[9,1],[0,-2],[-8,-1],[0,-4],[13,2],[0,-2],[-13,-1],[0,-3],[13,2],[0,-2],[-12,-2],[1,-6],[9,1],[0,-2],[-8,-2],[1,-6],[8,2],[1,-2],[-8,-1],[0,-3],[13,1],[0,-2],[-12,-1],[0,-3],[13,2],[0,-2],[-14,-1],[1,-6],[13,1],[1,-2],[-13,-2],[0,-6],[13,2],[0,-2],[-12,-2],[1,-2],[12,2],[0,-2],[-12,-2],[1,-2],[11,2],[1,-2],[-12,-2],[0,-2],[12,2],[0,-2],[-11,-2],[0,-1],[4,0],[0,-1],[-5,-1],[1,-4],[5,1],[0,-2],[-4,-1],[0,-2],[6,1],[0,-2],[-6,-1],[1,-5],[49,8],[-1,6],[-34,-5],[0,1],[2,1],[0,5],[1,0],[1,-4],[1,-1],[1,1],[0,5],[1,0],[1,-5],[2,1],[-2,10],[2,0],[2,-10],[2,0],[-1,10],[1,1],[2,-10],[2,0],[-1,10],[1,0],[2,-11],[5,1],[-1,11],[1,1],[2,-10],[3,0],[-1,10],[2,1],[1,-11],[2,1],[-1,10],[1,0],[2,-10],[3,0],[-2,11],[2,0],[2,-10],[2,0],[-2,10],[2,1],[2,-11],[2,1],[-1,10],[1,0],[2,-10],[2,1],[-1,10],[2,0],[1,-10],[3,0],[-2,11],[2,0],[2,-10],[2,0],[-1,10],[2,0],[1,-10],[3,1],[-1,10],[2,0],[1,-10],[3,1],[-2,7],[2,1],[2,-8],[2,0],[-1,10],[2,0],[1,-10],[3,1],[-1,9],[1,0],[2,-9],[2,1],[-1,9],[2,0],[1,-9],[3,0],[-2,9],[2,1],[2,-10],[2,1],[-1,9],[1,0],[2,-9],[2,0],[-1,10],[2,0],[1,-10],[6,1],[-2,10],[2,0],[1,-9],[3,0],[-1,10],[2,0],[1,-9],[2,0],[-1,10],[2,0],[1,-9],[3,0],[-1,10],[1,0],[2,-10],[2,0],[-2,10],[2,1],[1,-10],[3,0],[-1,10],[1,0],[2,-9],[2,0],[-1,8],[2,0],[1,-8],[2,1],[-1,8],[2,0],[1,-8],[2,0],[-1,8],[2,1],[1,-8],[2,0],[-1,8],[2,0],[1,-8],[2,0],[-1,9],[2,0],[1,-8],[2,0],[-1,8],[2,0],[1,-7],[2,0],[-1,8],[1,0],[2,-9],[3,1],[3,1],[-2,8],[2,0],[1,-8],[3,1],[-1,8],[1,0],[1,-8],[2,0],[-1,8],[2,1],[1,-9],[3,0],[3,2],[-1,8],[2,0],[1,-8],[2,0],[-1,8],[2,1],[1,-8],[2,0],[-1,8],[2,0],[1,-8],[2,0],[-1,9],[2,0],[1,-8],[2,0],[-2,8],[2,0],[1,-8],[2,0],[-1,9],[2,0],[1,-8],[2,0],[-1,8],[2,1],[1,-8],[2,-1],[-1,9],[2,0],[1,-8],[2,0],[-1,9],[1,0],[2,-8],[2,0],[-1,8],[1,1],[1,-9],[2,1],[-1,8],[2,0],[1,-9],[5,1],[-1,9],[1,0],[1,-8],[3,1],[-1,7],[2,1],[1,-8],[2,0],[-2,8],[2,0],[2,-9],[4,1],[-1,9],[2,0],[1,-8],[5,0],[-1,9],[2,0],[1,-8],[4,0],[-1,9],[2,0],[2,-8],[2,0],[0,-1],[-30,-5],[1,-6],[31,5],[6,8],[-6,37],[-4,6],[-35,-6],[1,-5],[32,4],[0,-2],[-2,0],[1,-9],[-2,0],[-1,7],[-1,0],[0,-7],[-2,0],[0,7],[-3,0],[1,-8],[-2,0],[-1,9],[-4,-1],[1,-9],[-2,0],[-1,8],[-1,-1],[1,-7],[-2,0],[-1,7],[-2,0],[1,-8],[-2,0],[0,8],[-2,-1],[1,-7],[-2,0],[-1,7],[-2,0],[1,-8],[-2,0],[-1,8],[-2,0],[1,-8],[-2,0],[-1,7],[-2,0],[1,-8],[-2,0],[-1,9],[-5,-1],[1,-9],[-3,0],[0,9],[-5,-1],[1,-8],[-2,-1],[-1,8],[-2,0],[1,-8],[-2,0],[-1,7],[-2,0],[0,-8],[-1,0],[-1,9],[-5,0],[1,-10],[-2,0],[-1,9],[-6,0],[1,-10],[-1,0],[-1,8],[-2,0],[1,-8],[-2,0],[-1,7],[-2,0],[1,-7],[-2,0],[-1,7],[-2,0],[1,-8],[-2,0],[-1,7],[-2,1],[1,-8],[-2,-1],[-1,8],[-2,0],[1,-8],[-2,0],[-1,8],[-2,-1],[2,-8],[-2,0],[-1,8],[-2,-1],[1,-7],[-2,0],[-1,7],[-2,0],[1,-8],[-3,0],[-1,9],[-6,-1],[2,-9],[-2,0],[-2,8],[-6,-1],[2,-9],[-2,0],[-2,9],[-5,-1],[1,-8],[-2,0],[-1,7],[-2,-1],[1,-7],[-2,0],[-1,7],[-3,0],[1,-6],[-2,0],[-1,6],[-4,0],[1,-7],[-2,0],[-1,6],[-4,0],[1,-7],[-2,0],[-1,6],[-5,0],[1,-7],[-2,0],[-1,6],[-5,-1],[1,-6],[-1,0],[-1,5],[-2,0],[1,-6],[-2,0],[0,6],[-2,-1],[1,-5],[-2,0],[-1,5],[-2,0],[1,-6],[-2,0],[0,6],[-2,0],[0,-6],[-1,0],[-1,5],[-2,0],[1,-6],[-2,0],[-1,5],[-2,0],[1,-5],[-2,0],[-2,14],[2,0],[1,-6],[2,1],[-1,5],[1,0],[1,-5],[2,0],[-1,6],[2,0],[1,-6],[5,0],[-1,7],[2,0],[1,-6],[5,1],[-1,6],[1,1],[1,-6],[3,0],[-1,6],[2,0],[1,-5],[1,0],[-1,6],[2,0],[1,-7],[4,1],[-1,7],[2,0],[1,-6],[2,1],[-1,5],[2,1],[1,-6],[1,0],[0,6],[1,0],[1,-7],[4,1],[0,6],[2,1],[1,-7],[4,1],[-1,7],[2,0],[1,-7],[4,1],[-1,7],[3,0],[1,-7],[4,1],[-2,10],[3,0],[1,-9],[6,1],[-1,9],[1,0],[2,-8],[3,1],[-1,9],[1,0],[2,-9],[2,0],[-1,9],[1,0],[2,-10],[5,1],[-1,10],[2,0],[2,-9],[8,1],[-1,6],[-2,0],[0,2],[1,0],[0,2],[0,2],[-8,-1],[-1,2],[8,1],[0,3],[-8,-1],[0,2],[7,1],[0,2],[-8,-1],[0,2],[8,0],[0,3],[-8,-2],[0,2],[7,1],[0,3],[-8,-1],[0,1],[8,2],[-1,2],[-7,-1],[-1,2],[18,3],[0,-2],[-7,-1],[1,-2],[6,1],[0,-2],[-6,-1],[0,-1],[7,1],[0,-2],[-6,-1],[0,-1],[6,0],[0,-1],[-6,-1],[0,-2],[7,1],[0,-2],[-7,-1],[1,-1],[6,1],[0,-2],[-6,-1],[1,-2],[6,0],[0,-1],[-7,-1],[0,-3],[0,-2],[7,1],[-1,2],[18,5],[-4,25],[1,5],[2,0],[-1,-4],[5,1],[1,6],[2,0],[-1,-5],[5,2],[1,5],[1,0],[0,-5],[5,2],[1,6],[1,-1],[-1,-4],[5,1],[1,6],[2,0],[-1,-5],[5,2],[1,5],[2,0],[-1,-5],[5,2],[1,6],[1,-1],[0,-4],[4,1],[1,6],[2,0],[-1,-5],[2,-7],[-1,-1],[-2,6],[-4,-1],[2,-6],[-2,-1],[-3,6],[-3,-2],[2,-5],[-2,-1],[-2,6],[-4,-2],[1,-4],[-2,-1],[-1,5],[-4,-2],[1,-4],[-1,-1],[-2,5],[-4,-2],[2,-4],[-2,-1],[-2,5],[-4,-2],[2,-4],[-2,0],[-2,4],[-3,-2],[1,-4],[-2,-1],[-2,4],[-4,-1],[3,-17],[4,1],[-1,4],[2,0],[1,-4],[1,0],[0,5],[2,0],[0,-5],[2,1],[0,4],[1,0],[1,-4],[3,1],[0,4],[2,1],[0,-5],[4,1],[0,5],[2,0],[0,-5],[4,1],[0,5],[2,0],[0,-4],[4,0],[0,6],[2,0],[1,-5],[4,0],[-1,6],[2,0],[1,-5],[4,0],[-1,6],[2,0],[1,-5],[4,0],[-1,6],[2,0],[0,-5],[3,1],[-1,4],[2,0],[0,-4],[2,1],[0,4],[4,0],[1,-6],[-23,-4],[1,-6],[1,1],[12,2],[4,1],[5,2],[2,1],[2,5],[-2,1],[0,2],[2,0],[-2,5],[-1,4]],[[4584,7949],[25,-32],[1,-18],[-6,-43],[13,-18],[75,-51],[20,-14],[79,-54]],[[4791,7719],[-60,-10],[-53,-8],[-55,-9],[10,-61],[6,-39],[6,-37],[-105,-17],[-106,-17],[12,-75],[-104,-16],[-50,-9]],[[2696,6363],[-8,0],[-53,-3],[0,10],[24,13],[6,6],[8,15],[12,31],[1,10],[7,33],[5,27],[3,23],[2,7],[-3,2],[-27,-5],[-35,-5],[-7,-4],[-5,-7],[-2,-10],[2,-18],[3,-20],[5,-7],[-14,-1],[-17,2],[-9,4],[-6,3],[-2,5],[-1,5],[1,9],[4,7],[1,5],[-2,10],[2,5],[-5,8],[-2,2],[-52,-3],[-3,-1],[-17,-22],[-12,-17],[-7,-7],[4,-8],[29,-49],[6,-5],[11,-1],[12,0],[1,-16],[8,-29],[0,-20],[1,-4],[-71,-16],[-68,1],[-68,0],[-69,9],[-67,-9],[-74,22],[-54,12],[-122,42]],[[1972,6404],[-47,119],[35,44],[-21,25],[-1,-10],[-5,-25],[-40,-9],[-24,24],[-33,81]],[[1836,6653],[3,5],[10,10],[20,36],[8,20],[19,19],[15,21],[13,25],[12,17],[11,26],[7,19],[14,28],[17,32],[18,51],[-14,4],[28,71],[5,24],[10,22],[11,51],[10,27],[10,28],[11,27],[1,13],[2,11],[3,8],[-2,5],[-1,3],[3,11],[3,3],[5,3],[6,0],[2,3],[-5,12],[-1,4],[2,0],[7,-7],[2,8],[1,1],[1,4],[1,0],[10,-8],[0,3],[-8,8],[-1,3],[3,1],[1,1],[4,7],[1,4],[1,4],[2,6],[2,4],[3,6],[3,2],[-1,3],[0,4],[5,6],[7,3],[6,4],[2,8],[1,9],[1,4],[3,5],[1,7],[0,25],[8,4],[6,5],[5,11],[1,6],[4,6],[4,7],[4,11],[6,12],[5,15],[6,10],[1,12],[7,23],[3,17],[-1,14],[3,13],[2,17],[3,12],[1,12],[19,42],[7,12],[9,23],[11,38],[2,12],[5,17],[7,15],[9,33],[5,16],[1,15],[1,13],[1,10],[4,4],[-2,6],[2,3],[-2,4],[2,14],[0,10],[3,13],[2,26],[1,9],[0,9],[1,6],[2,5],[0,8],[-1,11],[1,23],[5,20],[14,10],[8,5],[10,14],[1,7],[-3,11],[-2,47],[2,42],[-2,27],[2,17],[-3,18],[18,6],[-3,26],[4,1],[6,1],[7,2]],[[2372,8275],[9,-91],[1,-9],[45,75],[9,-39],[8,-24],[14,-35],[10,-10],[31,-12],[39,-11],[50,-7],[41,0],[22,-1],[15,-3],[41,-8],[30,-14],[14,-11],[8,-8],[5,1],[3,2],[4,-2],[5,-2],[6,-3],[3,-3],[2,-4],[2,-6],[1,-4],[0,-4],[1,-4],[1,-4],[2,-7],[3,-7],[3,-7],[3,-5],[3,-3],[4,-5],[3,-6],[1,-5],[0,-4],[-1,-5],[8,-10],[5,-5],[5,-5],[6,-3],[6,-5],[6,-5],[5,-3],[4,-4],[3,-2],[5,-5],[4,-6],[2,-5],[3,-5],[2,-5],[2,-5],[3,-4],[3,-3],[4,-2],[3,-2],[6,-3],[8,3],[3,2],[4,0],[4,-2],[2,-3],[2,-6],[2,-13],[2,-7],[1,-7],[1,-7],[2,-8],[2,-8],[3,-8],[2,-8],[2,-7],[2,-8],[2,-7],[3,-7],[2,-8],[3,-7],[4,-7],[3,-7],[3,-7],[3,-7],[3,-6],[3,-7],[3,-6],[4,-7],[3,-6],[4,-6],[4,-5],[4,-4],[3,-4],[2,-3],[3,-3],[1,-4],[5,-3],[-11,-9],[23,-50],[9,-12],[-62,17],[-36,9],[-16,5],[-31,9],[2,-4],[0,-3],[2,-21],[-1,-59],[0,-33],[-1,-66],[0,-60],[0,-35],[-2,-44],[-2,-112],[0,-25],[0,-90],[0,-23],[-1,-75],[-2,-189],[-1,-26],[-1,-28],[-3,-23],[-8,-39],[-11,-33],[-9,-21],[-6,-12],[-11,-19],[-16,-29],[-16,-28],[-38,-66],[-18,-28],[-14,-24],[-3,-8],[-6,-12],[-7,-19],[-5,-16],[-4,-9],[-3,-12]],[[4336,6812],[6,-52]],[[4342,6760],[-193,-45],[2,-9],[-103,-23],[-103,-26]],[[3945,6657],[-8,7],[-94,-24],[-102,-25],[-104,-27],[-98,-25],[-28,0],[-28,-14],[-232,-59]],[[3251,6490],[-76,-20],[-67,-17],[-68,-17],[-68,-23],[-132,-36],[-53,-15],[-16,1],[-68,0],[-7,0]],[[2372,8275],[10,2],[23,-3],[21,-9],[4,2],[6,-5],[4,-6],[10,-27],[3,-15],[2,-30],[7,-18],[5,-5],[11,-8],[16,-7],[38,-11],[9,-6],[21,-3],[26,-3],[51,-1],[37,-5],[27,-5],[28,-8],[11,-1],[3,0],[21,-5],[20,-6],[17,-9],[4,-1],[36,67],[3,2],[4,-2],[33,-18],[1,-3],[-4,-8],[-4,-1],[-34,19],[-31,-57],[7,-11],[12,-8],[9,-7],[5,-5],[13,-8],[14,-12],[18,-18],[4,-13],[8,-16],[15,-24],[5,-5],[10,-7],[21,-8],[10,13],[7,-5],[-11,-14],[4,-4],[14,-11],[10,-8],[26,-26],[10,-10],[13,-8],[21,-9],[12,15],[26,35],[11,-9],[-4,-6],[-7,5],[-1,-1],[-3,3],[-33,-43],[36,-17],[12,0],[4,-2],[11,-5],[12,-8],[58,-22],[20,-9],[15,-5],[26,-5],[20,1],[20,2],[33,8],[14,0],[12,-5],[8,-2],[18,2],[21,5],[17,6],[78,13],[13,3],[14,6],[13,3],[15,2],[14,1],[17,3],[13,3],[14,5],[14,6],[14,5],[14,4],[9,3],[20,2],[21,4],[20,5],[20,6],[21,8],[69,29],[8,1],[3,-2],[1,-7],[13,-1],[17,-5],[33,-3],[33,1],[21,0],[50,6],[47,15],[29,9],[34,6],[6,0],[6,0],[6,1],[10,5],[5,2],[6,1],[8,0],[4,0],[4,-1],[2,-3],[8,-5],[10,-1],[10,4],[17,5],[6,2],[5,4]],[[4257,7457],[2,-12],[3,-29],[9,-75],[8,-67],[2,-8],[10,-75],[9,-76]],[[4300,7115],[9,-75],[6,-48],[-26,-3],[8,-68],[26,2],[4,-34],[4,-35],[5,-42]],[[5270,7653],[-104,-17],[-104,-16]],[[5062,7620],[-109,-18],[-8,12],[-9,58],[4,8],[-6,7],[-8,46],[5,8],[-61,-10],[-79,-12]],[[4584,7949],[-1,8],[-1,2],[1,2],[1,2],[2,1],[3,0],[2,-1],[3,-2],[1,-3],[0,-3],[2,-15],[1,-3],[2,-2],[0,4],[-4,30],[-15,-3],[-1,2],[17,3],[1,-8],[3,1],[3,10],[2,-1],[-3,-8],[3,0],[3,10],[1,-1],[-2,-8],[2,0],[3,10],[1,-1],[-2,-8],[8,2],[3,10],[1,-1],[-2,-8],[6,1],[2,7],[1,0],[-1,-6],[5,1],[2,7],[2,0],[-2,-6],[6,1],[2,7],[1,0],[-1,-6],[2,1],[2,6],[1,-1],[-1,-5],[2,1],[2,6],[2,0],[-2,-6],[5,2],[2,5],[2,0],[-2,-5],[5,2],[2,5],[1,0],[-1,-5],[5,2],[2,5],[2,0],[-2,-5],[5,1],[1,6],[2,0],[-1,-4],[2,-8],[-2,-1],[-1,6],[-5,-1],[1,-7],[-1,0],[-2,6],[-5,-1],[1,-7],[-1,0],[-3,6],[-4,-1],[2,-6],[-2,-1],[-2,6],[-4,-1],[1,-6],[-2,-1],[-1,7],[-5,-2],[2,-6],[-2,-1],[-2,7],[-4,-1],[1,-6],[-2,0],[-1,5],[-5,-1],[1,-5],[-2,-1],[-1,5],[-4,-1],[1,-5],[-2,-1],[-1,5],[-4,-1],[1,-5],[-2,0],[-1,5],[-4,-1],[1,-6],[-2,0],[-1,5],[-4,-1],[1,-5],[-2,0],[-1,4],[-4,-1],[1,-4],[-2,-1],[-1,5],[-4,-1],[3,-22],[4,1],[0,5],[2,0],[0,-5],[5,1],[-1,5],[2,1],[1,-6],[4,1],[-1,5],[2,0],[1,-5],[4,1],[-1,5],[2,0],[1,-5],[4,1],[-1,5],[2,0],[1,-5],[4,1],[0,5],[2,0],[0,-5],[5,1],[0,5],[2,0],[0,-5],[5,0],[-1,7],[2,0],[1,-6],[4,1],[-1,7],[2,0],[1,-6],[2,0],[-1,6],[2,0],[1,-5],[1,0],[0,6],[1,0],[1,-7],[5,1],[-1,7],[2,0],[1,-6],[5,1],[-1,6],[2,0],[1,-6],[5,1],[-1,6],[2,0],[1,-7],[-33,-7],[0,-2],[7,0],[2,1],[2,0],[3,2],[10,1],[7,1],[16,1],[8,1],[5,2],[21,2],[15,3],[14,3],[9,2],[8,1],[19,2],[22,4],[51,7],[37,8],[7,1],[7,1],[7,1],[10,3],[11,2],[6,3],[3,0],[4,-1],[13,2],[4,1],[16,0],[9,1],[-2,11],[123,20],[7,-3],[10,23],[47,-20],[1,2],[1,-1],[-2,-6],[-2,1],[1,2],[-45,20],[-10,-21],[3,-2],[-1,-1],[-10,4],[-121,-20],[0,-1],[122,19],[1,-9],[-2,0],[-1,7],[-6,-1],[1,-7],[-2,0],[-1,6],[-6,0],[1,-7],[-2,0],[-1,6],[-6,-1],[1,-6],[-2,-1],[-1,7],[-6,-1],[1,-7],[-1,0],[-1,7],[-6,-1],[1,-7],[-1,0],[-2,7],[-5,-1],[1,-7],[-2,0],[-1,6],[-5,0],[1,-7],[-2,-1],[-1,7],[-6,-1],[1,-6],[-2,-1],[-1,7],[-5,-1],[1,-6],[-1,-1],[-1,7],[-5,-1],[0,-7],[-1,0],[-1,7],[-5,-1],[1,-7],[-2,0],[-1,7],[-5,-1],[1,-7],[-2,0],[-1,7],[-4,-1],[0,-7],[-1,0],[-1,7],[-5,-1],[1,-7],[-2,0],[-1,7],[-5,-1],[1,-7],[-2,0],[-1,7],[-4,-1],[2,-7],[-2,0],[-1,7],[-6,-1],[1,-5],[3,-1],[1,-1],[2,-3],[2,-8],[1,-13],[2,1],[-1,8],[1,0],[2,-8],[4,1],[-1,7],[2,1],[1,-8],[4,1],[-1,8],[2,0],[2,-8],[3,1],[-1,8],[3,0],[1,-8],[4,1],[-1,8],[2,0],[2,-8],[4,1],[-1,8],[2,0],[1,-8],[5,1],[-1,8],[2,0],[1,-7],[5,0],[-1,8],[2,0],[1,-7],[5,0],[-1,8],[2,0],[1,-7],[5,0],[-1,8],[2,0],[1,-7],[5,1],[-1,7],[2,1],[1,-8],[5,1],[-1,8],[2,0],[2,-8],[4,1],[-1,8],[2,0],[2,-8],[5,1],[-1,8],[2,0],[1,-7],[5,0],[0,8],[1,0],[2,-7],[5,1],[-1,7],[2,0],[1,-7],[6,1],[-1,7],[2,1],[1,-8],[6,1],[-1,8],[1,0],[2,-8],[6,1],[-1,8],[2,0],[2,-15],[-1,0],[-2,6],[-4,-1],[0,-6],[-1,0],[-2,5],[-4,0],[0,-6],[-2,0],[-1,5],[-5,-1],[1,-5],[-2,-1],[-1,6],[-5,-1],[0,-6],[-1,0],[-2,6],[-4,-1],[1,-6],[-2,0],[-1,6],[-5,-1],[0,-6],[-1,0],[-1,6],[-5,-1],[1,-6],[-2,0],[-1,6],[-5,-1],[1,-6],[-2,0],[-1,6],[-5,-1],[1,-6],[-2,0],[-1,5],[-5,0],[1,-6],[-2,-1],[-1,6],[-4,0],[1,-6],[-2,-1],[-2,6],[-3,0],[0,-6],[-2,-1],[-1,6],[-4,0],[1,-6],[-2,-1],[-1,6],[-5,0],[1,-6],[-2,-1],[-1,6],[-4,0],[1,-6],[-2,-1],[-1,6],[-5,0],[1,-6],[-2,-1],[-1,6],[-4,0],[1,-7],[-2,0],[-1,6],[-1,-1],[1,-5],[-2,0],[-1,5],[-2,0],[1,-6],[-2,0],[-1,6],[-4,0],[1,-6],[-2,-1],[-1,6],[-1,0],[4,-27],[2,1],[-1,6],[2,0],[1,-6],[3,0],[0,7],[1,0],[2,-6],[4,0],[-1,7],[2,0],[2,-6],[3,0],[0,7],[2,0],[1,-6],[4,0],[-1,7],[2,1],[2,-7],[3,1],[0,6],[2,1],[1,-7],[4,1],[-1,6],[2,0],[2,-6],[3,1],[0,6],[1,1],[2,-7],[4,1],[-1,6],[2,1],[2,-7],[3,1],[0,6],[1,1],[2,-7],[4,1],[-1,7],[2,0],[2,-7],[3,1],[0,6],[2,1],[2,-7],[3,1],[0,7],[2,0],[1,-7],[4,1],[0,7],[2,0],[1,-6],[5,0],[-1,7],[2,0],[2,-6],[3,0],[-1,7],[2,0],[2,-6],[4,0],[0,7],[1,0],[2,-6],[4,1],[0,6],[2,0],[1,-6],[4,1],[0,6],[2,1],[2,-7],[4,1],[-1,6],[2,1],[2,-7],[4,1],[-1,7],[2,0],[2,-7],[4,1],[0,7],[1,0],[2,-6],[4,0],[0,7],[1,0],[2,-6],[5,1],[-1,6],[2,0],[2,-14],[-2,0],[-1,6],[-5,-1],[1,-6],[-2,0],[-1,6],[-5,-1],[1,-6],[-2,-1],[-2,6],[-3,0],[0,-6],[-2,-1],[-1,6],[-4,0],[1,-6],[-3,-1],[-1,6],[-3,0],[0,-6],[-2,-1],[-1,6],[-4,0],[1,-6],[-2,-1],[-2,6],[-4,0],[1,-6],[-2,-1],[0,6],[-3,-1],[1,-5],[-1,0],[-1,5],[-2,0],[1,-6],[-2,0],[-1,6],[-4,0],[0,-7],[-2,0],[-1,6],[-23,-4],[0,-3],[10,1],[3,-1],[3,-2],[3,-3],[0,-2],[2,-6],[2,-5],[0,-2],[4,0],[0,6],[2,0],[1,-5],[5,0],[0,6],[1,0],[2,-5],[4,0],[-1,6],[2,0],[2,-5],[3,0],[0,6],[2,1],[1,-6],[4,1],[-1,5],[2,1],[2,-6],[3,1],[0,5],[2,1],[1,-6],[3,1],[0,5],[2,0],[1,-5],[3,0],[0,6],[2,0],[1,-5],[4,0],[-1,6],[2,0],[2,-5],[3,1],[0,5],[2,1],[1,-6],[4,1],[0,5],[1,1],[2,-13],[-1,0],[-1,5],[-5,-1],[1,-5],[-2,0],[-1,5],[-5,-1],[1,-5],[-2,0],[-1,5],[-4,-1],[1,-5],[-2,0],[-1,5],[-4,-1],[0,-5],[-2,0],[-1,5],[-4,-1],[1,-5],[-2,0],[-1,5],[-4,-1],[1,-5],[-3,0],[0,5],[-4,-1],[0,-5],[-1,0],[-1,5],[-4,-1],[0,-5],[-2,0],[0,5],[-4,-1],[1,-5],[-2,0],[-1,5],[-4,-1],[1,-5],[-3,0],[0,5],[-4,-1],[1,-5],[-2,0],[-1,5],[-2,0],[0,-4],[2,-14],[2,-5],[2,0],[-1,5],[2,1],[1,-6],[3,1],[-1,5],[2,1],[2,-6],[3,1],[-1,5],[2,1],[2,-6],[3,1],[0,5],[1,1],[2,-6],[3,1],[0,5],[1,1],[2,-6],[3,1],[0,5],[1,1],[2,-6],[3,1],[0,6],[2,0],[1,-6],[3,1],[0,5],[2,1],[1,-6],[4,1],[-1,6],[2,0],[2,-6],[3,1],[0,6],[2,0],[1,-6],[4,1],[0,6],[2,0],[1,-5],[4,0],[0,6],[1,0],[2,-12],[-2,-1],[-1,5],[-4,0],[0,-5],[-1,-1],[-1,5],[-5,0],[1,-5],[-2,-1],[-1,5],[-4,0],[0,-6],[-2,0],[-1,5],[-4,-1],[1,-5],[-2,0],[-1,5],[-4,0],[1,-6],[-2,0],[-1,5],[-4,-1],[0,-5],[-1,0],[-1,5],[-4,-1],[0,-5],[-2,0],[-1,5],[-3,-1],[0,-5],[-2,0],[-1,5],[-3,-1],[0,-5],[-2,0],[-1,5],[-4,-1],[1,-5],[-2,0],[-1,5],[-3,-1],[0,-5],[-1,0],[-1,6],[-2,-1],[0,-4],[1,-2],[2,-9],[0,-3],[0,-5],[3,1],[-1,5],[2,0],[1,-5],[3,0],[0,6],[1,0],[2,-5],[3,0],[-1,6],[2,0],[2,-5],[3,0],[0,6],[1,0],[1,-5],[4,0],[0,6],[1,0],[2,-5],[3,0],[0,6],[2,0],[1,-5],[3,0],[0,6],[2,0],[1,-5],[3,0],[0,6],[2,0],[1,-5],[4,0],[0,6],[1,0],[1,-5],[4,0],[0,6],[2,0],[1,-5],[4,0],[0,6],[2,0],[1,-5],[4,0],[0,6],[1,0],[2,-12],[-2,0],[0,5],[-4,-1],[0,-5],[-2,0],[-1,5],[-4,-1],[0,-5],[-2,-1],[-1,6],[-4,-1],[0,-5],[-2,0],[-1,5],[-3,-1],[-1,-5],[-1,-1],[-1,5],[-4,0],[0,-5],[-1,-1],[-1,5],[-4,0],[0,-5],[-2,-1],[-1,5],[-3,0],[0,-5],[-2,-1],[-1,5],[-3,0],[0,-5],[-2,0],[-1,4],[-3,0],[0,-5],[-2,-1],[-1,5],[-3,0],[0,-5],[-2,-1],[-1,5],[-3,0],[0,-5],[-1,0],[-1,5],[-2,0],[3,-23],[5,0],[-1,6],[2,0],[0,-4],[2,0],[0,5],[1,0],[1,-5],[2,0],[-1,5],[2,0],[0,-5],[4,0],[-1,6],[2,0],[1,-5],[4,0],[0,6],[1,0],[1,-5],[4,0],[-1,6],[2,0],[1,-5],[4,0],[0,6],[1,0],[1,-5],[4,0],[0,6],[2,0],[1,-5],[4,0],[-1,6],[2,0],[1,-5],[4,0],[0,6],[2,0],[1,-5],[4,1],[0,5],[2,0],[1,-5],[4,1],[-1,5],[2,0],[2,-11],[-2,0],[-1,4],[-4,-1],[0,-4],[-2,0],[-1,4],[-4,-1],[0,-4],[-1,0],[-1,4],[-4,-1],[0,-4],[-2,0],[0,4],[-4,-1],[0,-4],[-2,0],[-1,4],[-3,-1],[0,-4],[-2,0],[-1,4],[-3,-1],[0,-4],[-2,0],[-1,4],[-4,-1],[1,-4],[-2,0],[-1,4],[-3,-1],[0,-4],[-2,0],[-1,4],[-4,-1],[0,-4],[-1,0],[-1,4],[-8,-1],[0,-3],[-1,0],[-1,2],[-1,0],[1,-7],[2,-4],[4,-3],[4,-2],[4,-1],[5,0],[53,11],[3,2],[2,3],[2,6],[6,6],[7,2],[0,1],[-8,-1],[-7,-7],[-1,1],[7,8],[8,1],[1,6],[-1,2],[-7,-1],[0,2],[7,2],[-5,18],[3,1],[-5,17],[1,0],[5,-17],[2,0],[6,-23],[-4,-1],[-1,-6],[2,1],[0,-3]],[[5062,7620],[23,-147],[-106,-17],[4,-8],[11,-70]],[[4994,7378],[-8,4],[-90,-15],[-6,-6],[-9,4],[-89,-15],[-6,-6]],[[4786,7344],[-12,71],[1,8],[1,8],[-7,41],[-7,42],[59,37],[46,41],[3,4],[-39,27],[-10,6],[-21,16],[-7,13],[-4,16],[-6,40],[8,5]],[[6832,954],[-6,8],[-54,-18],[-2,-10],[-7,7],[-59,-19],[-62,-21],[-62,-21]],[[6580,880],[-31,95],[-31,97]],[[6518,1072],[53,18],[9,3],[62,21],[62,20],[63,21],[6,4],[56,19],[124,41],[7,1],[51,17],[7,1]],[[7018,1238],[31,-96],[34,-105]],[[7087,1582],[32,-96],[28,-98],[3,-9],[26,-81],[9,-28],[4,-13]],[[7189,1257],[-5,1],[-39,12],[-3,9],[-63,-21],[-61,-20]],[[7018,1238],[-4,6],[-29,90],[-62,-20],[-32,96],[-62,-21],[-32,97]],[[6797,1486],[-31,96],[62,21],[62,21],[63,21],[45,15],[18,6],[32,-97],[31,10],[8,3]],[[6518,1072],[-32,97],[-31,96]],[[6455,1265],[-32,96]],[[6423,1361],[2,8],[103,34],[30,7],[45,15],[7,-2],[62,21],[63,21],[62,21]],[[6455,1265],[-63,-21],[-62,-20],[-62,-21],[23,-69],[-68,-6],[-18,54],[-55,-18],[-8,2],[-31,92]],[[6111,1258],[-31,96],[-32,97],[-31,97],[62,20],[63,21],[-30,93],[74,-16],[22,-4],[14,1],[30,9],[62,25],[40,16],[21,9]],[[6375,1722],[16,-50],[31,-97],[-62,-20],[25,-76],[38,-118]],[[6375,1722],[19,9],[41,19],[41,20]],[[6476,1770],[18,9],[60,29],[52,25],[4,2],[65,25],[36,14],[26,10],[61,24],[49,19],[12,4],[61,24],[19,13]],[[6939,1968],[10,-23],[33,-65],[29,-82],[11,-30],[31,-84],[1,-3],[33,-99]],[[7189,1257],[20,-6],[10,-3],[7,-2]],[[3139,5859],[9,-154],[-68,-4],[-68,-4],[-68,-4],[9,-150]],[[2953,5543],[-68,-4],[9,-150],[-68,-4],[-68,-3],[-34,-2]],[[2724,5380],[4,7],[-7,135],[-5,8],[4,8],[-7,133],[-6,8],[5,10],[-8,134],[-5,11]],[[2699,5834],[9,-5],[19,2],[6,5],[6,-5],[54,3],[6,6],[9,-5],[53,3],[7,5],[8,-4],[52,3],[8,6],[8,-5],[53,3],[7,6],[8,-5],[52,3],[7,6],[8,-5],[52,2],[8,6]],[[3265,3613],[-4,-1],[-48,-10],[-18,-1],[-67,-3],[-68,-4]],[[3060,3594],[-66,-4],[-10,-3],[-7,1],[-8,4],[-9,14],[-10,23],[-22,-10],[-6,-5],[-20,-11],[-25,54],[-4,7],[-8,9],[-8,7],[-10,4],[-8,2],[-6,0],[-7,-5],[-8,-25],[-1,-13],[3,-12],[11,-15],[21,-24],[-50,-33],[-11,17],[-4,3]],[[2787,3579],[-69,-4],[-35,-2],[-36,-2],[-9,150]],[[2638,3721],[-5,94],[-21,55]],[[2612,3870],[61,4],[5,3],[1,7],[3,9],[15,23],[12,24],[7,18],[1,11],[8,-8],[31,-16],[15,-11],[9,-14],[6,-19],[0,-22],[54,3],[68,4],[68,4],[-8,150],[67,4],[8,-150],[68,4],[38,2],[30,2],[5,7],[57,3],[5,0]],[[2614,4171],[-68,-4],[-68,-4],[-64,-4]],[[2414,4159],[4,10],[-11,131],[-6,9]],[[2401,4309],[9,-3],[56,4],[4,3],[4,-3],[57,3],[7,4]],[[2538,4317],[5,-3],[57,3],[5,4],[6,-3],[59,3],[7,4],[5,-3],[61,3],[5,4],[4,-3],[59,3],[4,3],[5,-3],[58,4],[5,3]],[[2883,4336],[6,-3],[58,3],[4,4],[4,-3],[60,3],[4,4],[4,-3],[59,3],[5,4],[8,-150]],[[3095,4198],[-68,-4],[-68,-4],[-67,-4],[-68,-3],[-68,-4],[-66,-4],[-76,-4]],[[2638,3721],[-7,3],[-53,-3],[-7,-4],[-68,-4],[8,-150],[-64,-3]],[[2447,3560],[3,8],[-7,133],[-5,8]],[[2438,3709],[-4,9],[-8,137],[4,5],[-5,5],[-7,139],[4,5],[-5,9],[-8,132],[5,9]],[[2614,4171],[2,-31],[8,-21],[-4,-1],[-6,-2],[-6,-5],[-1,-7],[0,-5],[4,-79],[2,-41],[14,-60],[-8,-25],[-7,-24]],[[3095,4198],[68,3]],[[3230,4205],[8,-150]],[[6036,6865],[-11,71],[-104,-17],[-104,-16]],[[5817,6903],[-8,6],[-9,56],[5,8],[-7,7],[-10,58],[5,9]],[[5793,7047],[105,17],[8,5],[41,6],[49,4],[7,-3],[86,14],[10,1],[8,1],[12,3],[70,10],[22,4]],[[6211,7109],[5,-32]],[[6216,7077],[2,-14],[3,-21],[12,-72],[11,-71]],[[6244,6899],[-104,-17],[-104,-17]],[[5966,7308],[7,3],[15,2],[16,3],[8,1],[58,9],[52,9],[47,7],[6,1],[57,9],[46,8]],[[6278,7360],[6,-38],[-104,-17],[6,-38],[11,-74],[6,-38],[1,-2],[6,-36],[1,-8]],[[5793,7047],[6,10],[-10,60],[-7,7]],[[6853,7219],[-26,23],[-50,44],[-72,63],[-76,67],[-47,41]],[[6906,7382],[2,-14],[10,-61],[4,-22],[4,-26],[3,-19],[0,-9]],[[6929,7231],[-48,-8],[-28,-4]],[[7238,7875],[-24,-198],[8,-11],[23,3],[123,92],[2,-1],[-3,-5],[21,-21],[0,-1],[-1,-1],[-110,-82],[24,-34],[113,81],[1,0],[18,-26],[0,-2],[-133,-95],[-7,-9],[20,-28],[6,1],[7,3],[3,1],[129,92],[2,-1],[59,-85],[0,-3],[-141,-100],[25,-36],[141,100],[1,0],[19,-25],[0,-2],[-133,-95],[-4,-5],[-2,-4],[16,-24],[1,1],[4,-5]],[[7446,7350],[-23,-21]],[[7423,7329],[-24,-17],[-4,-3],[-7,-3],[-5,-1],[-25,-5],[-75,-12],[-74,-12],[-39,-6],[-36,-6],[-45,-7],[-8,-1],[-28,-5],[-22,-4],[-52,-8],[-50,-8]],[[6853,7219],[-22,-4],[-46,-7],[-55,-8],[-24,-4],[-44,-7],[-36,-6]],[[6626,7183],[-8,-5],[-28,-8],[-19,-4],[-10,-3],[-36,-5],[-2,0],[-29,-5],[-39,-6],[-36,-6]],[[6419,7141],[-2,11],[-8,50],[-4,24],[-11,75],[-7,38],[-5,37]],[[6419,7141],[-104,-16],[-104,-16]],[[5173,5580],[12,-76],[104,17],[12,-75]],[[5301,5446],[-104,-16],[-104,-17],[-104,-17],[12,-75],[-106,-17]],[[4895,5304],[-4,6],[-10,62],[2,7],[-106,-18],[-104,-17]],[[4673,5344],[-12,76],[-12,75]],[[4649,5495],[73,11],[32,6]],[[4754,5512],[105,17],[106,17],[104,17]],[[5069,5563],[104,17]],[[4334,5444],[107,17],[104,17]],[[4545,5478],[104,17]],[[4673,5344],[-104,-16],[12,-75],[-104,-18],[-107,-17]],[[4593,5178],[-104,-16],[-107,-18],[-101,-16]],[[4281,5128],[-104,-17],[-104,-16],[-81,-13],[-23,-6],[-98,-17],[-7,3]],[[3859,5092],[-3,15],[-4,25]],[[4895,5304],[-2,-7],[10,-61],[4,-7]],[[4907,5229],[-106,-17],[-104,-17],[-104,-17]],[[5405,5463],[-104,-17]],[[5396,5538],[-3,-7],[3,-26],[4,-4],[0,-15],[5,-23]],[[5417,5388],[-6,38],[-6,37]],[[6017,5641],[-3,-11],[5,-31],[4,-28],[6,-7],[-4,-8],[10,-60],[6,-7]],[[6041,5489],[-104,-16],[-104,-17],[-104,-17],[-104,-17],[-104,-17],[-104,-17]],[[5220,5279],[-103,-16],[-104,-17]],[[5013,5246],[-106,-17]],[[5417,5388],[6,-37],[6,-38]],[[5429,5313],[-105,-16],[-96,-16],[-8,-2]],[[7528,1739],[5,-1],[35,-7]],[[7568,1731],[31,-5],[26,-5],[57,-10],[60,-10]],[[7742,1701],[-7,-9],[-12,-45],[2,-9],[-6,-3],[-16,-47],[1,-11],[-7,-6],[-15,-43],[0,-12],[-7,-6],[-14,-42],[0,-11],[-7,-7],[-8,-24],[-7,-19],[1,-12],[-7,-5],[-22,-60],[-16,-46],[1,-10],[-8,-8],[-15,-41],[2,-11],[-9,-8],[-16,-44],[2,-12]],[[7452,1177],[-4,1],[-25,8]],[[7087,1582],[6,2],[14,4],[12,4],[11,4],[5,9],[1,2],[-35,101],[86,-63],[36,51],[35,50],[26,37],[57,-10],[18,106],[6,6]],[[7365,1885],[56,-10],[53,-10],[-20,-113],[13,-2],[36,-7],[25,-4]],[[8403,1135],[-40,-30]],[[8363,1105],[-53,-117],[-27,-60],[-9,11],[-104,76],[-119,86],[-9,4],[-110,79],[-118,86],[-32,-46],[-5,-4],[-34,-51],[-35,-50],[-36,-51],[-36,-50],[-35,-49],[-5,-5],[-31,-45]],[[7742,1701],[-2,8],[13,48],[7,8]],[[7760,1765],[31,-23],[118,-85],[36,50],[118,-85],[-35,-51],[118,-85],[-35,-50],[-36,-50],[-36,-51],[36,-27],[6,-9],[30,-23],[42,-33],[58,-40],[44,-18],[-5,6],[-2,1],[-3,4],[-2,3],[-8,5],[-8,5],[-4,3],[-5,1],[-6,3],[-5,3],[-4,2],[-4,3],[-2,1],[-4,1],[-5,2],[-7,6],[-2,1],[-1,2],[-1,1],[-7,3],[-1,2],[-2,3],[-9,3],[-31,23],[-4,3],[-9,7],[-10,6],[-1,2],[-1,6],[1,2],[2,2],[6,1],[1,1],[2,3],[3,3],[4,3],[10,3],[6,1],[9,0],[4,-1],[3,-2],[3,-3],[4,-2],[4,-2],[3,-3],[4,-3],[6,-3],[5,-3],[4,-5],[2,-1],[2,1],[6,1],[4,0],[4,-1],[4,-2],[4,-1],[4,0],[3,1],[3,0],[1,-2],[1,-2],[2,-3],[3,-6],[3,-4],[2,0],[1,-1],[3,-1],[2,-3],[2,-3],[5,-3],[3,-3],[3,-4],[3,-3],[6,-4],[3,-4],[5,-3],[6,-2],[16,-2],[1,-1],[2,-2],[1,-6],[1,-6],[1,-1],[1,-5],[1,-1],[3,1],[2,-1],[0,-2],[1,0],[2,-2],[2,-6],[3,-3],[16,-9],[6,-4],[5,-5],[4,-3],[5,-2],[3,-3],[3,-2],[1,-3],[4,-1],[6,-4],[8,-6],[3,-2],[1,-4],[1,-2],[2,-2],[3,0],[2,0],[2,-3],[3,-2],[3,-2],[4,0],[5,-4]],[[8907,1773],[-21,-4],[-9,-4],[-11,-15],[-4,-18],[-10,7],[-86,-84],[-15,-14],[-63,8],[-38,27],[-17,-2],[-40,-57],[-26,-40],[1,0],[89,-14],[26,-6],[-5,-74],[-35,-51]],[[8643,1432],[-118,85],[-91,66],[-27,19],[-119,86],[36,50]],[[8324,1738],[34,49],[7,6],[10,7],[23,9],[11,1],[19,-1],[22,-3],[51,-6],[21,2],[20,10],[5,5],[8,7],[8,12],[7,12],[4,10],[8,25],[1,11]],[[8583,1894],[15,2],[10,-3],[9,-8],[12,-5],[22,-10],[8,-5],[14,-14],[20,-9],[38,-1],[48,-3],[23,-5],[19,-11],[86,-49]],[[8785,642],[-1,3],[-4,5],[-13,8],[-3,3],[-4,4],[-2,2],[-4,3],[-9,9],[-6,5],[-19,13],[-1,4],[-6,1],[-10,8],[-28,19],[-21,11],[-21,15],[-7,5],[-12,7],[-6,4],[-4,2],[-2,3],[-2,0],[-10,9],[-11,12],[-2,6],[-3,3],[-3,3],[-4,5],[-4,3],[-3,5],[-5,1],[-6,2],[-4,5],[-5,2],[-6,1],[-6,3],[-3,6],[-5,6],[-6,4],[-9,3],[-9,2],[-7,-1],[-8,-1],[-10,0],[-12,2],[-7,7],[-6,10],[-4,9],[-3,6],[-5,7],[-4,7],[-16,11],[-8,5],[-24,17],[-7,6],[-6,4],[-8,3],[-22,13],[-4,5],[0,11],[-3,2],[-1,4],[-3,-2],[-2,1],[-1,7],[1,6],[2,8],[3,7],[10,18],[3,4],[4,2],[3,3],[4,4],[2,5],[7,17],[4,16],[0,7],[1,4],[0,2],[-3,5],[-3,7]],[[8403,1135],[48,48],[40,44],[41,46],[40,58],[36,50],[35,51]],[[8907,1773],[60,-43],[44,-31],[22,30],[14,20],[36,50],[29,41],[78,110],[8,11],[28,39],[35,50],[36,51],[65,92],[-23,-2],[15,21]],[[9354,2212],[28,-19],[-15,-36],[-35,-43],[-31,-52],[-97,-110],[0,-2],[0,-9],[1,-5],[3,-3],[10,-8],[6,-5],[4,0],[4,-1],[5,-3],[5,-1],[5,0],[5,0],[5,2],[2,3],[2,4],[0,5],[-1,5],[0,4],[2,2],[3,2],[3,1],[8,1],[8,-1],[8,-2],[10,-9],[10,-6],[3,-4],[5,-3],[6,-2],[5,-1],[6,0],[5,2],[4,2],[5,5],[6,6],[1,1],[4,1],[3,1],[4,5],[2,3],[2,2],[2,1],[3,-1],[2,-1],[4,-6],[54,75],[-2,4],[34,49],[2,0],[3,0],[2,-1],[1,-3],[0,-2],[-36,-52],[-49,-72],[5,-3],[9,11],[6,-4],[39,57],[3,4],[7,5],[8,-4],[-1,-9],[-6,-8],[-47,-65],[2,-1],[-3,-5],[12,-7],[47,66],[7,10],[9,5],[5,-6],[-2,-7],[-9,-13],[-43,-59],[-2,-5],[10,-7],[44,62],[8,12],[6,-5],[-9,-13],[-14,-21],[23,-16],[60,-42],[6,-4],[1,1],[44,62],[7,6],[16,-11],[-49,-72],[34,-25],[51,70],[9,-6],[9,-5],[-44,-63],[-6,-9],[25,-17],[12,-8],[-7,-10],[11,-10],[8,-1],[8,-1],[10,1],[7,1],[7,0],[8,-1],[6,-3],[4,-2],[7,-8],[9,4],[-3,3],[-2,3],[-1,4],[1,4],[1,4],[3,3],[1,1],[12,4],[15,3],[13,1],[12,0],[43,-26],[29,-18],[-11,-6],[7,-4],[-8,-12],[-155,-45],[-37,-12],[-6,-4],[-7,-6],[-4,-4],[-1,-3],[0,-4],[1,-2],[6,-3],[7,-2],[8,-1],[6,0],[25,7],[139,42],[25,10],[72,21],[16,-15],[-25,-24],[-140,-41],[-6,-3],[-6,-4],[-8,-8],[-1,-3],[0,-3],[2,-2],[7,-1],[9,-1],[10,2],[91,27],[87,27],[2,-13],[10,3],[-16,-65],[-30,-130],[-20,-19],[-230,-66],[25,-85],[208,63],[8,-26],[-222,-65],[-11,-4],[-31,23],[-5,-5],[-130,101],[-49,37],[-5,1],[-4,0],[-5,-1],[-4,-2],[-4,-3],[-2,-4],[-2,-4],[0,-5],[1,-5],[1,-3],[15,-13],[170,-124],[-24,-34],[176,-131],[-17,-22],[-175,130],[-51,-70],[290,-217],[3,-1],[2,-2],[1,-3],[0,-4],[-1,-4],[-43,-58],[-3,-2],[-4,-1],[-3,0],[-3,2],[-170,127],[-21,-30],[-3,-2],[-2,0],[-2,0],[-1,-3],[1,-2],[0,-3],[-1,-2],[-4,-5],[-26,-35],[71,-52],[3,-3],[1,-5],[1,-4],[-2,-5],[-2,-4],[249,-182],[-4,-6],[-110,-602],[-996,626],[-2,0]],[[5932,417],[20,37],[37,15],[297,-99],[-23,-66],[-41,-116],[-55,18],[-21,3],[-46,-1],[-13,1]],[[6537,855],[11,-39],[2,-19],[-1,-26],[-6,-20],[-13,-23],[-14,-17],[-17,-13],[-13,-6],[-6,-3],[-105,-39],[-45,-24],[-31,-19],[-15,-15],[17,-1]],[[5640,816],[15,-11],[12,-21],[15,-31],[15,-19],[18,-10],[8,-5],[17,-4],[15,1],[16,5],[15,9],[66,49],[1,6],[3,6],[67,50],[21,13],[28,13],[23,5],[26,3],[15,-1],[28,-4],[29,-8],[11,-6],[9,1],[161,-40],[48,-11],[26,-1],[25,5],[5,-6],[2,9],[13,3],[138,46],[6,-7]],[[6537,855],[-1,9],[44,16]],[[4986,489],[-30,-53],[-53,-95],[-21,-36]],[[4882,305],[-16,8],[-31,-11],[-33,-11],[-32,-11],[-33,-11]],[[4679,670],[8,-7],[35,-19],[6,-8],[10,-2],[37,-21],[4,-6],[8,-1],[38,-21],[6,-8],[10,-1],[36,-21],[6,-7],[4,-7],[37,-21],[10,-2],[6,-7],[34,-20],[12,-2]],[[5797,90],[-23,1],[-84,30],[-30,17],[-31,-16],[-45,0],[-16,-21],[-18,-38],[-21,-12],[-20,-28]],[[5509,23],[-11,1],[-13,-2],[-57,-6],[-10,-1],[-43,-3],[-54,-4],[-29,0]],[[5292,8],[40,6],[20,3],[13,6],[11,9],[6,13],[1,14],[-11,31],[-10,21],[-28,53],[-11,11],[-24,19],[-9,9],[-29,45],[-3,15],[-19,50],[-9,17]],[[5230,330],[25,43]],[[5255,373],[7,2],[136,-36],[19,-5],[35,-13],[35,-19],[71,-40],[11,-7],[14,-6]],[[5292,8],[-54,0],[-6,0],[-4,0],[-65,0],[-38,-8],[-21,0],[-36,0],[-14,0],[-18,0],[-32,8],[-18,0],[-2,0],[-24,0],[-101,0],[-24,0],[-8,0],[-13,1],[-9,1],[-6,1],[-5,1],[-30,4],[-49,1],[-3,-5],[-2,-4],[-6,2],[-5,2],[-5,2],[-4,2],[-24,0],[-2,-1],[0,-1],[-18,-2],[-17,-2],[-17,-2],[-67,2],[-5,2],[-80,4],[-13,-2]],[[4882,305],[-7,-12],[-28,-51],[49,-22],[38,-10],[1,-8],[13,-39],[5,-11],[13,-1],[46,5],[49,14],[42,16],[46,30],[39,40],[21,36],[21,38]],[[3207,5863],[-8,-6],[-52,-3],[-8,5]],[[2699,5834],[-6,14],[-7,134],[4,7],[-5,7],[-8,137],[4,6],[-5,9],[-4,76],[0,49],[0,8],[7,9]],[[2679,6290],[28,1],[67,4],[68,4]],[[7224,6401],[-48,-49],[-13,14],[-3,1],[-48,-48],[35,-35],[34,-34],[21,-20],[10,-11],[34,-33],[36,-38],[28,-27],[33,-35]],[[6997,5868],[-34,34],[-34,34],[-29,30],[-35,35],[-34,35],[-10,10],[-19,19],[-37,38]],[[7145,6483],[35,-36],[29,-31],[15,-15]],[[7783,6897],[25,-27],[-9,-8],[56,-59]],[[7484,6227],[-34,34],[-29,30],[-35,36],[-34,34],[-6,-7],[-39,-39],[-30,31],[-33,35],[-20,20]],[[7145,6483],[8,13],[12,12],[14,14],[3,3],[6,2],[2,7],[76,75],[16,17],[25,25],[15,15],[7,2],[2,7],[48,47],[6,2],[2,7],[47,47],[7,2]],[[7441,6780],[1,6],[48,48],[7,1],[1,7],[5,4],[6,2],[2,7],[36,36],[54,54],[7,1],[59,-59],[40,-41],[43,43],[20,13],[13,-5]],[[6506,5513],[-29,29],[-34,35],[-63,63],[-38,38]],[[6342,5678],[2,6],[85,86],[48,48],[6,2],[2,6],[32,32],[18,18],[15,16],[68,67],[6,2]],[[6624,5961],[14,-14],[24,-24],[-8,-6],[-134,-135],[28,-29],[35,-35],[34,-34]],[[6617,5684],[29,-30],[-140,-141]],[[6638,5379],[-34,35],[-29,29],[-34,35]],[[6541,5478],[-35,35]],[[6617,5684],[71,70],[15,-15],[15,-14],[71,70],[33,-34]],[[6624,5961],[1,6],[14,14],[55,55],[8,8],[7,2],[1,6],[15,16],[34,33],[6,2]],[[6152,4962],[-1,4],[-1,4],[0,5],[1,14],[4,17],[6,4]],[[6161,5010],[15,39],[25,60],[5,7],[33,54],[4,5],[47,52],[76,75],[27,27],[11,11],[11,12],[27,27],[99,99]],[[1302,5753],[9,-155],[8,-149]],[[1319,5449],[-68,-4],[-68,-4],[-67,-4],[-68,-4],[-67,-4],[-67,-4],[-69,-4],[-68,-4],[9,-150],[-68,-4]],[[718,5263],[-9,150],[-68,-4],[-67,-4],[-68,-4],[-68,-4]],[[438,5397],[-67,-3],[-2,35],[-1,4],[-2,35]],[[1166,5745],[9,-4],[52,3],[8,5],[7,-3],[53,2],[7,5]],[[1336,5148],[-8,151],[-9,150]],[[1302,5753],[7,-4],[53,3],[8,4],[10,-4],[50,3],[8,6]],[[1573,5769],[9,-155],[68,4],[9,-150]],[[1659,5468],[8,-150],[9,-150]],[[1676,5168],[-68,-4],[-68,-4],[-68,-4],[-68,-4],[-68,-4]],[[2116,5800],[9,-154],[8,-150]],[[2133,5496],[-68,-4],[-68,-4],[-67,-4],[-9,150],[-68,-4]],[[1853,5630],[-68,-4],[-67,-4],[9,-150],[-68,-4]],[[1844,5785],[9,-5],[51,3],[8,6],[10,-5],[50,2],[8,7],[8,-5],[53,3],[7,6]],[[2048,5797],[7,-5],[53,2],[8,6]],[[2387,5817],[8,-156],[-67,-4],[-68,-4],[9,-149]],[[2269,5504],[-68,-4],[-68,-4]],[[2116,5800],[8,-4],[52,2],[7,6],[9,-5],[52,3],[7,6],[9,-4],[52,2],[7,6],[8,-5],[53,4],[7,6]],[[2286,5204],[-9,150],[68,4],[-9,150],[-67,-4]],[[2387,5817],[8,-6],[52,3],[7,6]],[[2454,5820],[10,-155],[8,-150],[68,4],[71,5],[8,-151],[72,5],[33,2]],[[2724,5380],[5,-8],[8,-134],[-4,-8]],[[2733,5230],[-34,-2],[-71,-5],[-71,-4],[-67,-4],[-69,-4],[-68,-4],[-67,-3]],[[2454,5820],[9,-5],[53,3],[7,6],[8,-5],[55,4],[7,5],[9,-5],[57,3],[6,6],[7,-5],[17,1],[10,6]],[[5609,6869],[-105,-17],[-11,71],[-12,74]],[[5481,6997],[19,3],[10,1],[75,13],[104,17],[104,16]],[[5817,6903],[-105,-17],[-103,-17]],[[4506,6397],[-104,-17],[-12,74]],[[4390,6454],[-11,71],[-11,71],[-12,70],[-11,71]],[[4345,6737],[104,17],[104,17],[23,3],[83,14]],[[4659,6788],[12,-71],[-106,-17],[11,-71],[11,-70],[11,-71],[12,-75]],[[5654,6582],[-12,74],[-11,71],[-11,71]],[[5620,6798],[-11,71]],[[5817,6903],[-6,-9],[9,-56],[8,-7],[-6,-8],[9,-56],[8,-6],[-5,-9],[9,-56],[7,-6]],[[5850,6690],[-5,-9],[9,-57],[8,-8]],[[5862,6616],[-104,-17],[-104,-17]],[[5342,6532],[-104,-17],[-53,-9],[-51,-8],[-105,-17]],[[5029,6481],[-6,38],[-5,37],[-12,70],[-11,71],[-11,71]],[[4984,6768],[104,17],[11,-71],[12,-71],[27,5],[76,12],[12,-70],[104,16],[-11,71],[104,17],[-11,70]],[[5412,6764],[104,17],[104,17]],[[5654,6582],[-104,-17]],[[5550,6565],[-104,-17],[-104,-16]],[[4659,6788],[-7,44],[-5,30]],[[4647,6862],[54,9],[52,8],[104,17]],[[4857,6896],[12,-75],[11,-70],[104,17]],[[4441,3122],[14,-20],[29,2],[9,4],[51,59],[36,47],[4,8]],[[4584,3222],[38,23],[23,8],[10,3],[45,3],[61,0],[55,1],[39,1]],[[4855,3261],[5,-67],[5,-63],[5,-66],[-6,2],[-64,-4],[-7,-2],[-9,-1],[-46,14],[-4,-42],[2,-19],[2,-14],[0,-9],[8,-6],[13,-20],[14,-14],[114,-86],[3,-9]],[[4057,3032],[7,-5],[16,5],[50,10],[53,13],[63,19],[5,8],[10,-2],[16,5],[29,10],[47,11],[72,13],[12,3]],[[4437,3122],[2,2],[2,-2]],[[6118,3420],[35,2],[34,3],[33,2],[36,3],[36,3],[33,2]],[[6325,3435],[10,-128],[2,-31],[-9,-6],[3,-44]],[[6331,3226],[-7,3],[-44,-1],[-9,-4],[-9,3],[-129,-3],[-11,-3]],[[6122,3221],[-9,2],[-51,-1]],[[6062,3222],[-5,64],[34,2],[-9,129],[36,3]],[[5418,3236],[-5,64],[141,12],[-5,64]],[[5549,3376],[144,11],[-6,8],[-3,47],[4,9],[-5,9],[-4,46],[4,10],[40,3],[34,3],[70,5]],[[5827,3527],[4,-9],[8,-109],[-2,-11],[81,6],[3,-39],[7,-89],[29,2],[30,2]],[[5987,3280],[5,-63]],[[5992,3217],[-12,3],[-53,-1],[-6,-2],[-57,-4],[-12,-5],[6,-9],[4,-46],[-3,-12]],[[5287,3097],[-39,-3],[-3,3],[-64,-4],[-32,-4],[-6,-3],[3,15],[-3,50],[-44,-4],[-41,-2],[-56,-4],[-5,63],[-4,65]],[[4993,3269],[-5,64]],[[4988,3333],[140,11],[-5,64],[140,11],[-5,65],[-5,63]],[[5253,3547],[141,11]],[[5394,3558],[4,-63],[70,5],[6,-65],[70,5],[5,-64]],[[6237,3687],[-10,129],[69,5],[-10,129]],[[6286,3950],[69,5],[69,5],[70,6]],[[6494,3966],[9,-129],[10,-129]],[[6513,3708],[-69,-5],[-70,-5],[-68,-5],[-69,-6]],[[6237,3687],[-70,-5],[-69,-5]],[[6098,3677],[-70,-6],[-10,129]],[[6217,3945],[69,5]],[[4855,3261],[6,-2],[132,10]],[[6118,3420],[-10,128],[-10,129]],[[6513,3708],[59,5],[56,4],[62,5]],[[6690,3722],[1,-11],[-2,-3],[8,-115]],[[6697,3593],[-59,-5],[-57,-4],[-59,-4],[-36,-3],[-33,-2],[-33,-3],[-36,-2],[-69,-6],[10,-129]],[[6062,3222],[-61,-2],[-9,-3]],[[5987,3280],[-10,129],[-10,128],[-9,129],[-10,128]],[[6494,3966],[58,4],[57,5],[59,4],[60,5],[57,4],[9,-128],[61,4]],[[6874,3610],[-11,-4],[-49,-4],[-10,129],[-57,-5],[-57,-4]],[[5004,1886],[-16,-8],[-20,-12],[-35,-17],[-75,-34],[-22,-10],[-64,-30]],[[4772,1775],[-8,10],[-4,5],[0,28],[0,69],[-6,3],[-132,0],[-6,-4],[-6,3],[-139,-1]],[[4615,1949],[145,1],[144,0],[78,1],[52,0],[16,-3],[5,-2],[6,-2],[-30,-16],[-77,-45],[40,2],[10,1]],[[1194,4549],[0,-9],[8,-139],[5,-8],[-4,-9],[7,-133],[5,-8]],[[571,4207],[-8,149],[67,4],[-8,152]],[[622,4512],[9,3],[52,3],[7,-3],[8,4],[53,3],[7,-3],[7,4],[54,3],[7,-3],[6,4],[55,3],[7,-3],[6,4],[56,3],[5,-3],[8,4],[55,3],[5,-4],[6,4],[54,4],[8,-4],[10,5],[52,4],[6,-5],[7,5],[22,2]],[[412,3596],[16,-150],[15,-149]],[[332,3275],[0,9],[-1,10],[-1,3],[0,4],[-2,11],[-4,12],[-5,10],[-6,11],[-9,14],[-9,16],[-6,13],[-3,8],[-4,13],[-2,15],[-2,15],[0,16],[1,12],[1,9],[1,9],[-1,10],[-2,8],[-4,9],[-3,5],[-2,3],[-1,3],[0,2],[-2,9],[-9,22],[-3,5],[-2,1],[-3,6],[-1,5],[0,6],[0,31],[1,15],[-4,30],[-2,13],[-8,21],[-4,11],[2,3],[1,4],[0,3],[-3,6],[0,3],[1,3],[2,2],[1,1],[2,5],[2,0],[-2,10],[2,4],[-1,6],[2,6],[-1,12],[-1,1],[0,5],[3,6],[1,6],[-2,10],[-2,7],[-2,3],[0,5],[-2,3],[0,2],[-1,3],[0,5],[-2,10],[0,2],[0,3],[-3,5],[-1,8],[-1,3],[-1,10],[-1,5],[-2,7],[-1,6],[1,3],[-2,5],[0,8],[-1,7],[-1,7],[0,4],[0,5],[-2,7],[2,2],[-2,3],[-1,5],[0,3],[1,5],[-1,11],[-1,3],[1,7],[-1,9],[-4,10],[0,9],[-1,4],[-3,30],[-3,17],[-7,46],[-1,30],[0,7],[-4,16],[-1,10],[-1,8],[4,44],[2,11],[1,10],[0,11],[-1,11],[-3,10],[-3,10],[-2,5],[-2,3],[-3,3],[-3,14],[-2,3],[-3,3],[0,1],[-6,23],[-2,16],[-5,14],[-1,10],[-3,9],[3,13],[2,9],[4,17],[0,5],[3,11],[-4,20],[-2,11],[129,33],[11,7],[18,1],[19,0],[11,-5],[7,4],[53,2],[8,-2],[8,3],[53,3],[6,-3],[8,4],[52,3],[8,-3],[7,3],[54,3],[7,-2]],[[2318,4607],[8,-152],[-68,-3],[9,-150]],[[2267,4302],[-68,-4],[-68,-4],[-68,-4]],[[2063,4290],[-8,150],[-9,152]],[[2046,4592],[9,3],[52,3],[7,-2],[9,3],[51,3],[8,-3],[8,4],[52,2],[8,-2],[8,4],[59,3],[1,-3]],[[2063,4290],[-68,-3],[-68,-4],[-67,-4],[-68,-4]],[[1792,4275],[-9,150],[-8,151]],[[1775,4576],[9,5],[51,3],[8,-4],[7,4],[55,4],[6,-4],[7,4],[53,3],[8,-3],[10,4],[50,2],[7,-2]],[[1521,4260],[-9,150],[-8,151]],[[1504,4561],[9,4],[51,2],[8,-2],[12,4],[48,2],[8,-2],[7,3],[53,3],[8,-2],[8,3],[52,4],[7,-4]],[[1194,4549],[9,0],[22,1],[7,-4],[9,5],[52,2],[7,-3],[6,4],[57,3],[5,-4],[7,4],[53,3],[8,-3],[8,4],[52,3],[8,-3]],[[2521,4619],[8,-152],[9,-150]],[[2401,4309],[3,9],[-9,133],[-4,8],[3,9],[-7,133],[-5,10]],[[2275,4151],[-8,151]],[[2318,4607],[8,4],[45,3],[11,-3]],[[2414,4159],[-71,-4],[-42,-2],[-26,-2]],[[5713,6211],[-11,69],[-12,75]],[[5690,6355],[-6,38],[-6,38],[-6,37]],[[5672,6468],[104,17],[-6,37],[104,17]],[[5874,6539],[8,-7],[5,-29],[4,-30],[-5,-9],[8,-6],[5,-31],[5,-30],[-6,-8],[8,-7],[5,-30],[5,-30],[-6,-8]],[[5910,6314],[-104,-17],[12,-74],[-33,-6],[-17,-3],[-40,2],[-7,0],[-8,-5]],[[4857,6896],[104,16]],[[4961,6912],[104,17],[104,17],[45,7],[59,10]],[[5273,6963],[12,-74],[4,-26],[8,-45],[103,17],[12,-71]],[[5273,6963],[104,17],[104,17]],[[4390,6454],[-88,-14],[-106,-17],[12,-74],[-105,-17]],[[3999,6314],[-11,75],[-12,71],[-11,70],[-104,-17],[-11,71],[-8,47],[103,26]],[[4342,6760],[3,-23]],[[2679,6290],[5,7],[3,30],[7,29],[2,7]],[[3251,6490],[-11,-10],[9,-158],[68,4],[68,4],[6,-114]],[[2905,8],[-12,0],[-104,0],[-7,2]],[[2771,376],[17,0],[36,1],[21,-3],[44,-11],[40,-10],[14,-2],[27,-3],[53,2],[7,-5],[8,5],[49,2],[30,1],[27,-3],[16,-2],[40,-14],[1,0],[37,-26],[40,-34],[8,-9],[26,-12],[5,-8]],[[4772,1775],[4,-7],[1,-1],[10,-13]],[[4787,1754],[-39,-19],[-3,-1],[-10,-5],[-7,-4],[-44,-23],[-41,-19],[-16,-9],[-37,-21],[-32,-18],[-18,-13],[-7,1],[-21,0]],[[4512,1623],[-3,0],[-36,-4],[-8,2],[-136,-1],[-71,0],[-25,6],[-49,2],[0,57],[-1,65],[0,65],[-1,68]],[[4512,1623],[-8,-6],[-40,-35],[-17,-17],[-22,-23],[-36,-45],[-8,-10],[-14,-20],[-23,-31],[-5,-10],[-30,-52],[-21,-46],[-2,-6],[-19,-45],[-3,-10],[-1,-4],[-18,-66]],[[4245,1197],[-2,-8],[-5,-19],[-8,-55],[-5,-47]],[[4225,1068],[-8,4],[-6,-5],[-7,8],[-41,21],[-8,0],[-3,5],[-41,21],[-8,0],[-8,0],[-104,54],[-28,27]],[[3963,1203],[0,37],[-1,57],[-1,200],[-1,91],[3,35],[-7,16],[-98,1],[0,23],[-14,-1],[-22,-1],[-14,3],[-29,3],[-23,-1],[-17,-2],[-22,-6],[-13,-3],[0,24],[1,17],[-6,41],[-20,-12],[-10,10],[-15,13],[-16,9],[-23,8],[-13,2],[-11,0],[-14,-1],[-17,-2],[-17,-8],[-20,-12],[-15,-12],[-5,-7],[-13,-21],[-7,-16],[-5,-30]],[[3478,1658],[-2,37],[3,26],[3,15],[4,14],[5,18],[14,21],[14,12],[10,7],[-3,14]],[[3526,1822],[22,-2],[13,0]],[[3963,1203],[-3,-2],[-43,12],[-3,3]],[[3401,1353],[19,64],[38,-2],[10,1],[15,4],[6,3],[-7,27],[-3,21],[1,19],[2,20],[2,8],[1,30],[1,17],[-1,26],[-7,67]],[[6216,7077],[104,17],[5,1],[99,16],[5,-36]],[[6429,7075],[12,-71],[-52,-8],[-38,-7],[-14,-2],[11,-70]],[[6312,6910],[-29,-5],[-39,-6]],[[6643,7073],[1,-3],[5,-32]],[[6649,7038],[11,-71]],[[6660,6967],[-22,-4],[-30,-4],[-52,-9],[-19,-3],[-85,-13]],[[6452,6934],[-93,-16],[-11,-1]],[[6429,7075],[36,6],[17,3],[2,0],[21,3],[29,5],[5,-35],[104,16]],[[6626,7183],[6,-40],[6,-35],[5,-35]],[[6853,7219],[28,-25],[45,-40],[-64,-9],[-19,-4],[11,-70]],[[6854,7071],[-27,-5],[-15,-2],[-7,-1],[-8,-2],[-15,-2],[-29,-5],[-29,-4],[-2,-1],[-21,-3],[-17,-3],[-13,-2],[-22,-3]],[[6036,6865],[4,-26],[7,-44]],[[6047,6795],[-104,-17],[11,-72],[-104,-16]],[[6900,6783],[-13,75],[-5,36],[-6,35],[-11,71],[-5,36],[-6,35]],[[7423,7329],[-2,-13],[48,-68],[-23,-5],[-77,-12],[-74,-17],[-74,-12],[11,-71],[13,-72],[4,-35],[6,-35],[5,-35],[6,-35],[6,-36],[6,-39],[74,12],[75,12],[14,-88]],[[3840,5210],[-11,66],[-12,75],[-3,9]],[[5040,4503],[4,-52],[4,-64]],[[4781,4287],[-6,2],[-21,-12],[-15,-10],[-4,53],[-2,29]],[[4733,4349],[-3,47],[-42,-3],[-3,3],[-5,-3],[-73,-5],[-4,2],[41,20],[3,3],[2,8],[-3,9],[-7,3],[-21,1],[-115,4],[7,1],[7,6],[23,2],[8,3],[8,5],[3,7],[0,4],[-2,2],[0,35],[-16,29],[-1,7],[-4,14],[1,39],[-5,10]],[[4532,4602],[8,0],[72,-1],[9,-2],[44,-2],[110,105],[19,47],[-6,81],[30,18],[31,49]],[[4849,4897],[49,3],[10,-56],[7,-90],[0,-25],[-3,-12],[-4,-5],[-5,-5],[-13,-4],[-12,1],[-22,8],[-4,2],[-6,-5],[-11,-30],[94,-35],[32,-74],[-3,-4],[-22,-11],[27,-62],[13,9],[55,3],[9,-2]],[[5324,4656],[5,14],[99,99],[15,7],[9,1],[8,8],[2,10]],[[5462,4795],[50,5],[57,4],[17,2],[73,5],[12,1],[59,5],[140,10]],[[5750,4557],[-4,10],[-8,109],[2,12],[-60,-5],[-84,-6]],[[5596,4677],[-17,-2],[-60,-4],[-68,-5],[-70,-6],[-57,-4]],[[4446,4078],[3,-7],[14,-14],[2,-1],[9,-5],[12,-7],[13,-9],[5,-8]],[[4314,4316],[26,3],[68,5],[70,5],[53,4],[29,2],[173,14]],[[5780,5115],[2,7],[21,21]],[[5803,5143],[1,-10],[1,-10],[7,-20],[10,-26],[17,-25],[16,-17]],[[5462,4795],[1,9],[74,74],[33,33],[25,25],[15,9],[2,7],[84,83],[6,2],[2,7],[52,52],[18,17],[6,2]],[[4998,1207],[38,62]],[[5036,1269],[4,8],[28,47],[5,8],[23,39],[29,47],[22,38],[17,29],[28,47],[7,11],[23,26]],[[5547,1555],[-74,-125],[50,-31],[49,-30],[-74,-125],[-74,-126]],[[5424,1118],[-49,30],[-51,31],[-51,31],[-74,-125]],[[5480,744],[-51,31],[-51,31],[-51,31],[-51,31]],[[5424,1118],[52,-32],[50,-30],[-74,-124],[52,-31],[50,-31],[-74,-126]],[[5830,1272],[-61,-20],[-63,-125],[32,-18],[-75,-135],[-23,-75],[-9,-16],[-26,-44],[16,-10]],[[5576,685],[-46,28],[-50,31]],[[5787,1615],[11,-33],[14,-42],[-45,-75],[-19,-32],[37,-23],[14,-42],[31,-96]],[[5048,4387],[2,6],[38,32],[73,75],[21,10]],[[5182,4510],[10,22],[107,106],[13,7],[7,0],[4,4],[1,7]],[[5596,4677],[-5,-8],[2,-28],[6,-4],[-5,-6],[5,-74],[7,-11],[-5,-12],[3,-35],[6,-7]],[[5803,5143],[34,34],[7,1],[1,7],[26,26]],[[5871,5211],[9,9],[7,1],[1,7],[53,53],[17,18],[7,0],[2,7],[18,18],[8,4],[2,6],[55,56],[7,1]],[[6057,5391],[-2,-16],[17,-68],[18,-74],[7,-10],[1,-26],[8,-33],[8,-8],[-3,-10],[23,-98],[2,-9],[5,-12],[8,-15],[12,-2]],[[6057,5391],[5,11],[30,29],[68,68],[8,4],[2,6],[37,38],[31,31],[6,2]],[[6244,5580],[2,6],[16,16],[74,75],[6,1]],[[6374,6081],[68,11],[36,6],[12,-75],[104,17]],[[6594,6040],[4,-26],[7,-41],[5,-6],[14,-6]],[[6244,5580],[-7,18],[-11,76],[-12,74],[-11,71]],[[6203,5819],[9,5],[42,7],[52,8],[53,9],[51,8],[-12,75],[-12,75],[-12,75]],[[6091,5844],[7,-42],[105,17]],[[6057,5391],[-7,7],[-2,15],[-6,38],[-5,30],[4,8]],[[5994,5788],[5,11],[-6,29],[98,16]],[[5969,5939],[-6,8],[-5,29],[-4,29],[4,9],[-6,7],[-4,30],[-5,29],[3,9],[3,9],[-4,30],[-5,28],[-6,8]],[[5934,6164],[104,17],[-6,38],[104,16]],[[6136,6235],[6,-38],[6,-37],[7,-38],[103,17],[12,-75]],[[6270,6064],[-104,-16],[-34,-6],[-25,-4],[-46,-7],[4,-25],[8,-50],[6,-37],[6,-38],[6,-37]],[[6270,6064],[82,14],[22,3]],[[3088,2502],[-43,34],[-10,5],[-10,6],[-45,16],[-8,1],[-17,1],[-5,1],[-30,-6],[-24,-8],[-30,-18],[-20,-5]],[[2846,2529],[-8,149],[-8,150]],[[2830,2828],[68,4],[69,4],[20,2],[57,7],[51,5],[15,1],[68,7],[67,7]],[[3245,2865],[52,-29],[5,-6],[24,-14],[23,-11],[6,1],[-28,-53],[-27,-48],[-26,-48],[-68,37],[-21,-28],[-10,-16],[-10,-19],[-6,-15],[-10,-35],[-4,-18],[1,-24]],[[2873,3280],[8,-143],[-5,-5],[-64,-4]],[[2812,3128],[-51,-2],[1,-11],[2,-54],[-2,-32],[-6,-41],[-5,-13],[-44,-3],[-47,-3],[-48,-2],[-68,-4],[-65,-4]],[[2471,3109],[4,9],[-7,133],[-5,8]],[[2463,3259],[-4,9],[-8,132],[4,9],[-4,9],[-8,132],[4,10]],[[2787,3579],[18,-30],[3,-10],[2,-8],[-1,-15],[-3,-14],[-14,-46],[-1,-10],[0,-4],[-6,-8],[-3,-6],[-2,-10],[-1,-18],[1,-50],[23,-65],[4,-8],[66,3]],[[2447,3560],[-5,8],[-7,132],[3,9]],[[3501,3283],[-26,-20],[-5,1],[-5,5],[-8,7],[-13,6],[-17,5],[-24,-1],[-42,0],[-6,1],[-4,6],[-3,13],[3,11],[3,13],[0,12],[-4,18],[-2,12],[-1,18],[-22,-7],[-17,-4],[-14,1],[-26,2],[9,-9],[11,-21],[6,-20],[1,-20],[0,-11],[2,-18],[5,-15],[7,-12],[-1,-7],[-2,-11],[-27,-22],[-39,40],[-10,-13],[-16,-26],[-13,-27]],[[3201,3190],[-51,18],[4,10],[8,16],[12,21],[6,19],[-32,11],[-21,4],[-11,-1],[-1,-5],[-2,-6],[7,-13],[-5,-23],[-7,-19],[-11,-8],[-17,3],[-3,77]],[[3077,3294],[-9,150],[-8,150]],[[3077,3294],[-66,-4],[-41,-2],[-29,-5],[-5,0],[-63,-3]],[[2812,3128],[2,-9],[8,-140],[8,-151]],[[2846,2529],[2,-51],[6,-20],[12,-15],[-59,-67],[-23,-1],[-71,-5],[-68,-3],[-8,-3],[-60,-3],[-8,152],[-66,-4]],[[3530,3150],[-11,-11],[-129,-127],[-128,-129],[-17,-18]],[[3245,2865],[-31,56],[-28,53],[66,65],[-39,40],[-32,33],[12,13],[3,13],[-1,14],[2,19],[4,19]],[[5256,5055],[-51,-9],[-53,-8],[-54,-9],[-50,-8],[-105,-16]],[[4943,5005],[-4,5],[-10,62],[2,7],[-4,5],[-10,64],[2,6],[105,18],[-11,74]],[[5220,5279],[12,-74],[12,-75],[6,-38],[6,-37]],[[4791,4979],[-13,31],[-14,11],[-37,14],[-6,10],[-104,-17]],[[4617,5028],[-12,75],[-12,75]],[[4943,5005],[-60,-11],[-45,-7],[-47,-8]],[[4281,5128],[12,-76],[100,17],[12,-75]],[[4405,4994],[-100,-16],[-104,-17],[-68,-11],[-36,-6],[-31,-5],[12,-75],[-73,-12],[-97,-16],[-9,0]],[[5871,5211],[-3,20],[-80,-13],[-23,-4],[-6,37],[-6,38],[-6,37],[-4,26],[-2,12],[-6,-1],[-98,-16],[-105,-17]],[[5532,5330],[-103,-17]],[[4261,6190],[-104,-31]],[[8767,3165],[19,-26],[75,-103],[0,-3],[0,-3],[1,-3],[50,-62],[2,-1],[1,-1],[4,-1],[4,0],[4,2],[3,3],[1,3],[-1,3],[27,20],[5,3],[5,2],[6,1],[7,0],[5,-1],[2,-1],[12,10],[233,-311],[92,-122],[-15,-11],[-26,-1],[0,-12],[-186,-13],[-1,0],[-1,0],[-37,-8],[-135,-12],[4,-5],[6,-10],[4,-11],[3,-11],[4,-8],[6,-10],[7,-9],[8,-7],[7,-6],[8,-5],[9,-4],[10,-3],[10,-2],[11,-1],[6,0],[58,-6],[14,-2],[14,0],[14,0],[11,2],[3,-4],[9,4],[15,0],[20,2],[16,2],[7,1],[9,1],[8,-1],[4,0],[5,0],[5,-1],[16,0],[21,0],[21,3],[35,4],[1,0],[3,-1],[2,-2],[2,-3],[0,-3],[-1,-3],[-4,-4],[-5,-3],[-6,-2],[-17,-4],[-15,-3],[-15,-2],[-4,-1],[-3,1],[-8,-2],[-8,-3],[-6,-3],[-7,-4],[-1,-2],[-3,-2],[-3,0],[-3,0],[-10,-1],[-13,-2],[-11,-4],[-10,-4],[-4,-2],[-4,-3],[-4,-1],[-11,-2],[-8,-3],[-8,-4],[-6,-4],[-2,-2],[-2,0],[-3,0],[-4,1],[-4,-1],[-4,-2],[-4,-3],[-5,-7],[-5,-5],[-5,-3],[-6,-3],[-5,-2],[-3,0],[-2,2],[0,-2],[-7,2],[-8,0],[-8,-1],[-7,-3],[-5,0],[-4,1],[-4,2],[-3,4],[-2,3],[-6,-1],[-4,-1],[0,-2],[0,-1],[-14,-3],[-14,-1],[-12,0],[-9,0],[-8,2],[-9,2],[-8,4],[-5,3],[-26,26],[-23,23],[-1,0]],[[8900,2386],[-3,2],[-4,1],[-5,-1],[-17,10],[-13,9],[-9,8],[-10,7],[-9,5],[-11,6],[-11,5],[-12,3],[-7,0],[-6,-1],[-6,-3],[-5,-4],[-4,-5],[-3,-5],[28,-21],[10,1],[10,0],[9,-1],[7,-2],[7,-3],[7,-5],[6,-5],[5,-6],[4,-7],[3,-6],[2,-9],[1,-4],[1,-9],[0,-8],[-1,-8],[-3,-8],[-3,-7],[-4,-5],[2,-4],[0,-4],[-2,-4],[-4,-5],[-2,-5],[-1,-6],[0,-7],[-3,-9],[-1,-6],[-17,-14],[-4,-4],[-6,-9],[-5,-5],[-6,-1],[-33,24],[-66,48]],[[8706,2299],[-1,0],[-107,78],[-15,-23],[-4,-21],[0,-23],[-7,5],[-46,35],[-6,-4],[-16,12],[-12,9],[-6,-3],[-2,2],[-27,5],[-7,-5],[4,-20],[-3,-13],[-5,-10],[-8,-11],[-1,-5],[0,-3],[1,-13],[-5,-10],[14,-11],[-24,-32],[39,-28],[-5,-21],[-2,-2],[115,-83],[7,-16]],[[8577,2088],[-7,-4],[-18,-24],[-6,-12],[-1,-17],[1,-14],[21,-59]],[[8567,1958],[-11,-3],[-17,-2],[-10,1],[-9,0],[-18,7],[-23,11],[-21,13],[-34,31],[-11,15],[-16,20],[-14,-13],[-58,-18],[-27,-2],[-37,13],[-8,8],[-1,-9],[-19,-21],[-8,-3],[-8,6],[-19,23],[-20,40],[-1,5]],[[8177,2080],[-10,38],[-11,26],[-21,25],[-14,14],[-29,23],[-5,9],[-10,0],[-80,58],[-3,8],[35,50],[36,50],[-113,82]],[[7952,2463],[-2,10],[13,47],[7,6],[-2,10],[6,23],[7,24],[6,6],[-2,10],[13,48],[7,6],[-2,10],[13,47],[6,6],[-2,7],[14,53],[6,5],[18,67],[6,6],[12,41],[-1,11],[6,9],[10,35],[1,8],[-2,14],[6,11],[-4,59],[-5,17],[3,14],[-4,54]],[[8086,3127],[12,-15],[48,3],[246,21],[373,31],[2,-2]],[[7934,1943],[-104,76]],[[7830,2019],[-2,11],[7,26],[6,20],[6,6],[-1,12],[12,45],[6,6],[-1,12],[13,46],[6,6],[-1,12],[12,44],[6,8]],[[7899,2273],[-1,10],[12,47],[7,6],[-2,10],[13,47],[6,6],[-1,10],[13,47],[6,7]],[[8177,2080],[-4,-1],[-7,-3],[-2,-1],[-2,-3],[0,-4],[6,-15],[6,-12],[7,-12],[10,-14],[2,-5],[1,-11],[-13,2],[-13,6],[-9,2],[-37,-51],[-34,-49],[-119,85],[-35,-51]],[[7830,2019],[-7,-7],[-12,-45],[1,-12],[-8,-11],[-11,-41],[2,-11],[-7,-8],[-13,-48],[2,-8],[-5,-3],[-2,-10],[2,-4],[-6,-5],[-8,-30],[2,-11]],[[7568,1731],[-40,8]],[[7365,1885],[-46,8],[-7,3],[2,9],[45,58],[50,36],[13,24]],[[7422,2023],[5,-3],[33,-39],[14,-11],[23,-16],[18,-9],[21,-23],[10,-9],[13,5],[53,76],[26,37],[23,33],[36,50],[36,51],[-120,86],[36,50],[36,50],[36,49],[118,-85],[60,-42]],[[6004,8],[-145,0],[-89,0],[-7,0],[-88,6],[-21,1],[-24,1],[-6,1],[-6,0],[-5,0],[-6,1],[-36,2],[-11,0],[-4,1],[-47,2]],[[8706,2299],[37,-85],[4,-26],[-60,45],[-9,-83],[-46,-64],[-38,28],[-17,-26]],[[4986,489],[8,-9],[33,-19],[10,-1],[5,-7],[38,-22],[9,-1],[6,-8],[25,-14],[12,-5],[10,0]],[[5142,403],[9,-6],[45,-12],[4,6],[44,-11],[11,-7]],[[8567,1958],[1,-6],[6,-16],[9,-29],[0,-13]],[[8324,1738],[-117,85],[-36,-50],[-119,85],[-118,85]],[[8900,2386],[-8,-28],[14,-14],[17,-23],[4,-29],[0,-31],[0,-35],[40,-25],[54,-10],[69,2],[69,16],[39,35],[40,15],[34,-19],[43,-12],[39,-16]],[[2234,6113],[68,4],[68,4],[67,4],[6,-108],[3,-42],[8,-155]],[[2048,5797],[-9,155],[8,-1],[52,3],[8,1],[-8,151],[67,3],[68,4]],[[2234,6113],[-9,150]],[[2225,6263],[68,4],[68,4],[68,3],[68,5],[70,4],[72,4],[40,3]],[[3712,5893],[14,-90],[6,-14],[9,-12],[-41,-20],[12,-79]],[[3676,5573],[-93,-16],[-15,4],[-5,7],[-22,10],[-46,-3]],[[3495,5575],[-8,149],[-68,-4],[-68,-4],[-9,155]],[[6337,2890],[-1,18],[-5,62]],[[6331,2970],[47,4],[-10,134],[43,3],[8,-3],[-3,33],[-6,87]],[[6410,3228],[9,4],[60,1],[60,2],[9,-4]],[[6548,3231],[9,4],[44,1],[7,-3],[6,4],[44,1],[7,-4],[6,4],[44,1],[9,-3],[7,4],[34,-1],[11,1],[7,5],[40,17],[16,7],[9,0],[2,4],[14,5],[12,5],[40,8],[11,3],[17,4]],[[6944,3298],[3,-6],[5,-12],[2,-3],[7,-9],[12,-13],[16,-13],[7,-13],[3,-16],[-4,-31],[-1,-11]],[[6994,3171],[-35,4],[0,-6],[-2,-14],[-9,-66],[-3,-4],[-55,43],[-26,-34],[-35,27],[-68,-37],[19,-35]],[[6780,3049],[-63,-35],[-10,5],[-96,-7],[1,-22],[3,-31],[3,-47],[-62,-5],[-58,-5],[-63,-4],[1,-22],[8,-7],[31,-4],[22,-12],[-4,-6],[-12,-9],[-15,-3],[-12,2],[-28,16],[-36,19],[-53,18]],[[6953,3300],[-9,-2]],[[6548,3231],[-3,51],[-3,41],[59,4],[-10,129],[57,4],[59,5],[-10,128]],[[6122,3221],[-57,-112]],[[6065,3109],[-24,-48],[-24,-47]],[[6017,3014],[-9,-17],[-55,-108],[-37,-74],[-13,-24],[-18,-36],[-7,-14],[-18,-36],[-30,-59]],[[5830,2646],[-16,-31],[-31,-61]],[[5783,2554],[-36,-1]],[[6410,3228],[-9,3],[-64,-2],[-6,-3]],[[456,5097],[-9,150],[-9,150]],[[718,5263],[8,-150]],[[726,5113],[-68,-4],[-67,-4],[-68,-4],[-67,-4]],[[322,6167],[2,-30],[3,-31]],[[327,6106],[-24,-33],[-63,-11],[-8,-13],[-4,-12],[3,-18],[10,-33],[2,-8],[6,-41],[10,-40],[19,-55],[27,-42],[29,-21],[15,-9]],[[456,5097],[-68,-4],[-68,-4],[-74,-4],[-132,-47],[1,37],[-1,9],[3,8],[-1,9],[0,13],[1,3],[-1,5],[1,8],[-4,27],[1,2],[0,3],[-2,6],[0,3],[3,6],[0,3],[-1,3],[1,24],[-1,5],[1,3],[-1,7],[2,4],[0,6],[0,5],[-1,4],[0,9],[0,10],[0,11],[0,8],[2,13],[-1,51],[-3,28],[0,17],[1,8],[-1,7],[2,7],[-2,3],[3,6],[0,40],[-7,52],[-2,10],[-1,7],[-4,28],[-1,11],[-4,9],[-4,8],[-2,5],[-6,2],[-12,6],[-11,3],[-10,13],[-9,18],[-9,11],[-14,19],[-2,11],[2,9],[4,8],[-1,10],[5,14],[1,8],[-5,14],[-6,2],[-12,6],[-6,16],[3,10],[10,2],[6,-4],[5,6],[2,15],[2,15],[2,13],[0,14],[-11,21],[-5,22],[4,5],[5,8],[7,0],[11,-2],[0,6],[1,6],[3,3],[23,-3],[7,4],[-8,11],[5,10],[7,13],[2,7],[9,8],[4,9],[-5,7],[-3,9],[5,3],[3,7],[-2,5],[0,4],[0,6],[3,6],[8,3],[9,-5],[5,2],[1,9],[6,12],[-2,8],[0,5],[9,3],[2,9],[3,10],[6,6],[12,6],[3,10],[-11,10],[-5,5],[4,7],[-2,8],[8,3],[17,-17],[12,-12],[12,12],[-1,13],[-5,4],[0,6],[2,5],[4,3],[8,-2],[9,2],[10,-3],[12,-1],[-2,11],[2,11],[4,3],[13,-9],[4,1],[8,7],[6,7],[16,2],[8,1],[8,2],[4,-2],[12,2],[8,5]],[[4542,6170],[12,-75]],[[5065,6254],[12,-75],[11,-63]],[[5088,6116],[-6,3],[-99,-16],[-97,-16],[-6,-6],[-11,4],[-16,-5],[-18,-9],[-24,-12],[-26,-4],[-8,-7],[-10,4],[-97,-16]],[[5042,6404],[6,-37],[5,-38]],[[4719,5736],[11,-74]],[[4730,5662],[-104,-17],[11,-75],[-104,-17],[12,-75]],[[1494,2082],[-10,6],[-48,-2],[-69,-4],[-27,-2]],[[1340,2080],[-10,0]],[[1314,2443],[33,2],[69,4],[67,3],[69,4]],[[1552,2456],[4,-59]],[[1556,2397],[-7,-8],[-14,-8],[-13,-9],[-19,-25],[-8,-1],[-8,-10],[8,-148],[3,-51],[2,-45],[-4,-8],[-2,-2]],[[4584,3222],[0,2],[-5,77],[67,5],[-9,129],[68,6],[-5,64],[-5,64],[135,11]],[[4830,3580],[5,-65],[5,-64],[5,-65],[138,11],[1,-6],[4,-58]],[[5827,3527],[3,7],[-5,58],[-4,55],[-3,8],[2,9],[-4,56],[-4,56],[-4,8],[2,8],[-4,56]],[[5806,3848],[138,11]],[[4830,3580],[72,5],[66,5],[-5,63],[-4,66],[43,2],[2,-2],[27,1],[13,5],[54,5],[-4,64]],[[5094,3794],[140,10]],[[5234,3804],[5,-64],[5,-64],[4,-64],[5,-65]],[[327,6106],[145,-149],[0,11],[-3,11],[-6,9],[-1,7],[1,12],[4,9],[5,7],[44,27],[7,3],[4,2],[9,2],[24,3],[10,-2],[11,-4],[11,-8],[2,-2],[7,-7],[7,-5],[13,-4],[49,-3],[7,1],[7,4],[11,10],[8,3],[9,-1],[7,-7],[3,-6],[0,-6],[-5,-21],[-7,-84],[0,-13],[10,-4],[14,-4],[10,-3],[4,-6],[3,-12],[68,4],[67,4],[68,4],[9,-155]],[[5234,3804],[140,11],[141,11],[-5,65],[-5,64],[-5,64]],[[5500,4019],[144,11]],[[5644,4030],[-4,-7],[4,-51],[5,-6],[-4,-7],[4,-51],[5,-6],[40,3],[34,2]],[[5728,3907],[10,-128],[-34,-3],[-40,-3],[-4,-7],[4,-59],[4,-56],[6,-7],[-15,-1],[-26,-2],[-34,-3],[-34,-2],[-35,-3],[-37,-3],[-34,-2],[5,-68],[-34,-3],[-29,-2],[-7,3]],[[5728,3907],[34,3],[37,3]],[[5799,3913],[3,-8],[4,-57]],[[2682,727],[7,11],[2,46],[6,142],[6,150],[-5,9]],[[3080,1089],[2,-160],[1,-142]],[[3083,787],[-57,-1],[-57,0],[1,-145],[-57,0],[-57,0],[-56,-1],[-47,0],[-8,3],[-60,80],[-3,4]],[[4906,1254],[6,6],[3,22],[4,18],[7,20],[8,15],[-1,9],[6,4],[19,43],[22,51],[18,44],[-1,9],[0,11],[16,38],[13,23],[4,7],[25,36],[7,2],[0,8],[24,34],[7,3],[0,8],[25,36],[7,2]],[[5125,1703],[1,9],[13,15],[13,12],[10,2],[10,14],[22,13],[28,13],[71,26],[8,-2],[6,7],[10,3],[76,29],[11,-1],[5,7],[51,19]],[[5036,1269],[-68,-9],[-36,-6],[-26,0]],[[4906,1254],[-8,-4],[-45,-5],[-5,3],[-5,2],[-17,-2],[-7,-4],[-6,-3],[-54,-8],[-6,2],[-6,-3],[-65,-10],[-5,2],[-7,-4],[-80,-11],[-8,1],[-6,-3],[-34,-5],[-6,1]],[[4536,1203],[40,80],[20,41],[19,38],[26,26],[-48,33],[51,78],[9,14],[21,41],[21,41],[10,18],[11,21],[18,33],[6,6],[32,25],[36,28],[8,7],[25,19],[6,-1],[16,10],[19,9],[16,4],[5,6],[9,-3],[44,12],[7,6],[8,-2],[18,5],[20,10],[11,7]],[[5020,1815],[61,-65],[3,-6],[41,-41]],[[1671,2764],[-8,150],[-8,149]],[[1655,3063],[67,4],[68,4],[68,4],[-9,150]],[[1849,3225],[68,4],[68,4],[68,3],[68,4]],[[2121,3240],[68,4],[68,4],[67,4],[68,3],[71,4]],[[1942,2779],[-68,-4],[-68,-4],[-67,-4],[-68,-3]],[[1281,3043],[-4,-6],[7,-136],[6,-8],[-5,-9],[8,-133],[5,-8]],[[968,3175],[68,4],[68,4],[8,-150],[68,4],[67,4],[34,2]],[[1281,3043],[34,1],[68,4],[68,4],[68,4],[68,4],[68,3]],[[1671,2764],[8,-151],[8,-149],[-67,-4],[-68,-4]],[[1849,3225],[-8,150],[-67,-4],[-68,-4],[-68,-3],[-8,150]],[[1630,3514],[-8,150]],[[1622,3664],[67,3],[68,4],[68,4],[68,4],[67,4],[68,3]],[[2028,3686],[68,4]],[[2096,3690],[8,-150],[9,-150],[8,-150]],[[2096,3690],[68,4],[8,-150],[68,4],[68,4],[68,4],[71,4]],[[3254,788],[-57,0],[-57,-1],[-57,0]],[[3593,1103],[0,-146],[1,-144]],[[3594,813],[-65,-1]],[[3529,812],[-64,1],[-65,0],[-64,-1],[-25,-1],[0,-22],[-57,-1]],[[2225,6263],[-67,-4],[-68,-4],[-68,-4],[-68,-3]],[[1954,6248],[-2,45],[0,13],[-1,27],[-2,10],[-1,27],[2,28],[22,6]],[[5089,3858],[-8,2],[-62,-6],[-10,127],[-68,-5],[-68,-5],[-68,-6]],[[4805,3965],[-3,35]],[[5149,3992],[-70,-5],[5,-65],[5,-64]],[[1954,6248],[-68,-4],[-68,-4],[9,-150]],[[1420,6067],[-62,-4],[-12,240],[-4,91]],[[1342,6394],[4,-1],[12,2],[2,0],[3,2],[2,-1],[3,1],[3,2],[3,1],[3,0],[1,2],[3,2],[2,-1],[3,1],[2,0],[3,0],[1,2],[3,2],[3,0],[0,5],[2,3],[4,0],[0,-5],[2,3],[3,-9],[4,1],[11,1],[4,1],[5,2],[8,3],[4,2],[2,2],[2,2],[15,8],[3,3],[3,4],[4,1],[3,3],[7,5],[3,0],[3,1],[8,4],[4,3],[2,3],[8,5],[13,11],[1,3],[1,3],[8,8],[11,12],[7,6],[0,2],[7,4],[3,4],[13,11],[8,11],[6,10],[8,0],[7,-2],[18,-3],[7,-6],[13,-5],[32,13],[24,-1],[5,8],[10,5],[8,-1],[10,-6],[1,-2],[0,-3],[7,3],[1,-4],[5,0],[15,15],[5,8],[7,10],[13,16],[11,9],[8,7],[6,10],[6,4],[0,7],[6,9],[2,6],[5,6],[5,5],[1,1]],[[5481,6997],[-12,77],[-12,74],[-12,75]],[[5445,7223],[-12,76],[105,16],[52,9],[52,8],[104,17]],[[5746,7349],[-6,-9],[10,-60],[7,-6]],[[5273,6963],[-6,38],[-6,39],[-12,75],[-12,75]],[[5237,7190],[49,8],[55,9],[104,16]],[[4961,6912],[-4,28],[-8,49],[104,17],[-12,75],[-12,75],[-104,-17],[-12,75],[-6,38],[104,17],[-6,37],[-6,38],[-5,34]],[[4994,7378],[6,6],[90,14],[8,-3],[6,6],[90,14],[8,-4]],[[5202,7411],[5,-34],[6,-37],[6,-38],[6,-37],[12,-75]],[[4647,6862],[-3,23],[-9,54],[-12,75],[-12,75]],[[4611,7089],[106,17],[-12,75],[-12,75],[-11,71]],[[4682,7327],[6,7],[89,14],[9,-4]],[[4389,7130],[12,-75],[105,17],[105,17]],[[4345,6737],[-9,75]],[[4300,7115],[89,15]],[[5746,7349],[-8,6],[-10,61],[6,8]],[[5734,7424],[92,15],[12,2],[104,17],[12,-75],[12,-75]],[[6138,7567],[-11,76],[-57,-10],[-48,-7],[-106,-19]],[[5916,7607],[2,9],[-4,37],[-4,11],[-6,8],[-7,3],[-3,1],[7,37],[-6,45],[-7,40],[-6,35],[-11,75],[-105,-17],[-7,23],[-2,9]],[[5757,7923],[6,1],[9,2],[3,1],[19,10],[16,10],[22,16],[25,21],[3,3],[13,12],[15,15],[24,24],[1,2],[-17,24],[2,2],[17,-23],[11,13],[-3,4],[-3,2],[-9,9],[2,2],[-4,5],[2,1],[4,-5],[1,1],[7,-10],[2,-3],[2,-4],[15,21],[0,5],[-2,15],[-25,26],[3,3],[-91,84],[2,3],[94,-88],[10,3],[11,-19],[6,1],[2,-14],[3,0],[9,8],[-3,15],[5,0],[1,-5],[16,0],[4,-1],[-2,-6],[-18,2],[2,-16],[6,1],[2,-16],[3,-22],[79,12]],[[5916,7607],[-17,-3],[-1,0],[-25,-3],[-2,-1],[-7,-1],[-14,-3],[-36,-5],[12,-75],[-91,-15],[-13,-6]],[[5600,8040],[0,-5],[3,-15],[4,-14],[2,-6],[2,-3],[11,8],[7,-10],[4,2],[-8,11],[2,1],[16,-23],[-1,-1],[-2,3],[-2,-1],[-3,4],[1,1],[-2,4],[-3,-3],[2,-3],[-9,-7],[-3,-1],[12,-12],[13,-11],[13,-9],[15,-9],[15,-7],[17,-6],[10,-3],[13,-3],[11,0],[11,0],[6,1]],[[5672,6468],[-6,37],[-103,-17],[-13,77]],[[5862,6616],[8,-9],[10,-60],[-6,-8]],[[5342,6532],[12,-77],[-104,-17]],[[5250,6438],[-52,-9],[-52,-8],[-104,-17]],[[5734,7424],[-8,6],[-9,57],[5,8]],[[6707,6674],[-104,-17],[-8,52],[-4,25],[-18,-3],[-39,-7],[-47,-7],[-12,74],[-6,36],[-6,35],[-11,72]],[[6660,6967],[11,-71],[1,-6],[3,-18],[8,-47],[6,-40],[6,-35],[19,3],[32,5]],[[6163,6741],[-104,-18],[-6,38],[-6,34]],[[6186,6590],[-11,74],[-104,-15],[12,-77],[-105,-17],[-104,-16]],[[7446,7350],[3,-4],[18,13],[5,2],[-3,-4],[-20,-15],[33,-45],[2,1],[2,-2],[3,2],[2,0],[1,-1],[55,40],[2,5],[6,5],[6,0],[64,47],[-1,1],[2,4],[-2,3],[3,3],[7,-2],[5,-7],[1,-6],[-4,-3],[-2,2],[-5,0],[-1,1],[-64,-47],[-1,-5],[-7,-5],[-5,0],[-31,-22],[-25,-19],[1,-2],[0,-1],[-3,-2],[2,-3],[-3,-2],[5,-7],[2,2],[7,-10],[-2,-1],[33,-47],[8,2],[6,2],[7,3],[108,79],[1,0],[16,-23],[0,-1],[-120,-88],[-2,-6],[4,-6],[8,0],[10,8],[9,-12],[-11,-9],[-2,-7],[2,-2],[10,0],[11,8],[-2,3],[105,80],[2,-1],[16,-22],[0,-1],[0,-2],[-6,-3],[-25,-19],[-13,-13],[-15,-16],[-43,-33],[1,-1],[-17,-13],[7,-11],[74,55],[-2,3],[24,17],[5,-7],[-24,-17],[-2,2],[-40,-30],[12,-17],[6,3],[6,-9],[-8,-6],[18,-24],[4,3],[8,-11],[-5,-4],[14,-18],[4,3],[12,-17],[-3,-2],[4,-6],[89,52],[25,-34],[-77,-77],[9,-13],[20,15],[19,-24],[-11,-8],[1,-3],[-9,-6],[10,-14],[4,3],[4,-6],[-4,-2],[3,-4],[-19,-15]],[[6014,6331],[6,-38],[-97,-15]],[[5923,6278],[-5,29],[-8,7]],[[5713,6211],[-14,8],[-100,-16],[-89,-14],[-6,-9]],[[5504,6180],[-10,67],[-6,37],[-6,38]],[[5482,6322],[106,17],[102,16]],[[5125,5880],[-12,75],[-12,75],[-13,86]],[[5088,6116],[6,5],[46,8],[49,7],[3,-4],[2,5],[94,15],[12,-3],[10,8],[97,15],[29,4],[61,10],[7,-6]],[[5504,6180],[13,-83],[12,-75],[6,-38],[6,-37],[6,-33],[7,-43]],[[5250,6438],[6,-37],[6,-38],[-1,-8],[10,-62],[7,-4],[100,16],[104,17]],[[5713,6211],[13,-80],[12,-76],[6,-37],[5,-37],[13,-76]],[[5923,6278],[4,-30],[-6,-9],[6,-8],[6,-29],[5,-28],[-4,-10]],[[3914,1104],[1,-146]],[[3915,958],[-64,0],[1,-150]],[[3852,808],[-6,5],[-59,0],[-63,0],[-66,0],[-64,0]],[[7844,456],[35,-18],[56,-14],[59,-15],[44,-36],[3,-18],[4,-11],[6,-12],[6,-10],[13,-15],[25,-28],[15,-12],[23,-23],[-128,-49],[-33,-7],[-120,-8],[-28,-18],[-86,-84],[-20,-29],[-27,-27],[-22,-14]],[[7669,8],[-33,4],[-21,2],[-13,1],[-8,1],[-9,1],[-43,-1],[-25,0],[-260,0],[-44,0],[-20,0],[-2,0],[-9,0],[-7,-2],[-11,-2],[-14,-4],[-25,8],[-19,0],[-19,0],[-19,0],[-89,0],[-34,-5],[-4,0],[-5,-1],[-6,-1],[-2,0],[-6,-1]],[[8785,642],[1,-2],[1,-6],[-2,-6],[-3,-7],[-4,-5],[-5,-6],[-4,-6],[-3,-7],[-6,-6],[-6,-9],[-3,-7],[1,-3],[1,-1],[0,-2],[-4,-3],[-10,-15],[-8,-10],[-5,-5],[-2,-4],[-4,-10],[-4,-10],[-3,-4],[-1,-4],[-3,-4],[-8,-8],[-5,-4],[-13,-13],[-8,-6],[-10,-10],[-19,-18],[-3,-4],[-2,-5],[-2,-5],[-3,-3],[-10,-13],[-6,-4],[-7,-5],[-2,-3],[-4,-9],[-4,-11],[-2,-3],[-7,-13],[-8,-12],[-3,-8],[-4,-10],[-5,-10],[-4,-10],[-2,-2],[-3,-4],[-2,-5],[-1,-4],[-3,-5],[-4,-6],[-3,-2],[-2,-2],[-4,-1],[-3,-3],[-3,-4],[-2,-5],[-2,-6],[-2,-18],[0,-13],[0,-13],[0,-3],[1,-7],[2,-9],[2,-2],[3,-4],[5,-4],[3,-1],[2,0],[2,1],[3,0],[2,-2],[4,-5],[4,-3],[6,-2],[5,-3],[5,-4],[8,-10],[5,-4],[6,-5],[4,-4],[3,-6],[1,-4],[1,-5],[1,-2],[1,-1],[2,0],[1,-1],[4,-10],[3,-6],[2,-5],[3,-2],[3,-5],[2,-2],[2,-2],[2,-3],[2,-3],[1,-4],[0,-8],[1,-9],[2,-7],[2,-5],[4,-6],[2,-2],[12,-7],[2,-1],[1,-1],[5,-4],[5,-1],[5,-1],[3,0],[4,2],[5,3],[6,3],[9,3],[9,3],[6,3],[10,6],[6,3],[3,2],[7,8],[1,5],[2,1],[1,1],[2,7],[8,13],[7,16],[-1,4],[0,2],[3,2],[11,2],[10,0],[7,0],[8,-2],[8,-3],[5,-3],[4,-3],[7,-9],[4,-4],[10,-5],[9,-7],[14,-8],[7,-3],[6,-4],[4,-4],[5,-6],[2,-2],[4,-11],[0,-4],[-1,-4],[-2,-3],[-9,-7],[-10,-3],[-8,0],[-13,-2],[-16,-2],[-20,-4],[-16,-1],[-12,-1],[-27,2],[-16,0],[-5,0],[-11,1],[-7,0],[-11,1],[-23,-1],[-22,2],[-20,0],[-9,-1],[-8,1],[-11,2],[-8,0],[-13,-3],[-7,-1],[-13,0],[-5,2],[-7,4],[-9,3],[-3,0],[1,1],[-9,5],[-5,1],[-6,3],[-6,4],[-9,4],[-8,3],[-9,1],[-10,0],[-15,2],[-17,3],[-10,0],[-6,2],[-5,-2],[-8,0],[-5,0],[-5,1],[-4,3],[-6,6],[-6,3],[-5,2],[-7,2],[-10,-1],[-7,2],[-9,2],[-9,2],[-19,2],[-14,2],[-10,1],[-9,-1],[-7,1],[-16,5],[-12,2],[-18,1],[-2,0],[-13,7],[-20,9],[-9,7],[-13,7],[-15,11],[-4,3],[-1,1],[-7,7],[-4,3],[-5,1],[-7,0],[-11,-2],[-9,-3],[-9,-4],[-7,-4],[-4,-2],[-5,-4],[-1,-2],[1,-3],[0,-2],[-2,-1],[-8,-4],[-7,-4],[-13,-10],[-9,-9],[-9,-12],[-4,-6],[-4,-4],[-4,-4],[-4,-4],[-5,-10],[-2,-3],[-2,-1],[-2,-3],[-1,-2],[-1,-2],[-2,-1],[-3,0],[-5,3],[-8,7],[-5,2],[-6,1],[-4,0],[-3,1],[-8,5],[-7,6],[-9,10],[-7,6],[-9,6],[-16,13],[-2,3],[-4,4],[-6,7],[-3,2],[-3,0],[-3,-1],[-7,-3],[-7,-4],[-14,-13],[-10,-11],[-3,-2],[-6,1],[-4,-1],[-3,4],[-5,3],[-1,0],[-12,9],[-10,8],[-10,8],[-13,8],[-2,0],[-8,-4],[-5,-3],[-11,-13],[-14,-16],[-4,-6],[-7,-14],[-5,-4],[-7,-3],[-3,-3],[-5,-7],[-7,-7],[-13,-9],[-2,-1],[-11,-11],[-3,-3],[-4,-10],[-6,-1],[-29,-3]],[[4366,4592],[48,8],[18,14],[14,-19],[3,-9],[-3,-10],[-6,-10],[-9,-7],[-10,-4],[1,-6],[12,3],[10,0],[15,-1],[29,-9],[3,8],[0,9],[-3,12],[2,6],[30,24],[12,1]],[[4341,4753],[52,9],[51,8],[55,9],[32,113],[12,8],[48,36],[2,9],[-8,7],[-9,0],[-7,-2],[-16,13],[-9,12],[-7,17],[-3,23],[83,13]],[[4791,4979],[6,-7],[21,-20],[30,-41],[1,-14]],[[4943,5005],[2,-7],[5,-8],[5,-3],[6,-5],[7,-5],[6,-8],[6,-10],[4,-2],[0,-6],[13,-27],[8,-19],[5,-4],[11,-139],[4,-64],[5,-65],[5,-64],[5,-66]],[[5256,5055],[6,-38],[6,-37]],[[5268,4980],[9,-59]],[[5277,4921],[-56,-4],[10,-139],[-70,-5],[5,-64],[5,-65],[4,-64],[5,-56],[2,-14]],[[5462,4795],[-20,-1],[-6,76],[-4,63],[-49,-4],[-22,-1],[-70,-6],[-14,-1]],[[5268,4980],[104,17]],[[5372,4997],[54,8],[50,8],[104,17],[-12,75],[-6,38],[-6,37],[105,17],[12,-76],[104,17],[3,-23]],[[5554,613],[-72,21],[-58,16],[-60,15],[-30,4],[-25,8],[-5,4],[-74,-125],[-29,-49],[-4,-4],[-50,-89],[-5,-11]],[[4679,670],[38,63]],[[3915,958],[33,0],[4,-1],[11,-5],[44,-22],[52,-27],[52,-27],[53,-27],[22,-14],[13,-9],[1,1],[18,14]],[[3939,365],[-11,13],[39,41],[32,38],[8,10],[27,29],[16,16],[38,42],[-2,1],[-36,37],[37,55],[-49,33],[-47,32],[-47,32],[-47,31],[-43,29],[-2,4]],[[4536,1203],[-7,-3],[-70,-11],[-9,1],[-7,3],[-4,-4],[-152,0],[-4,4],[-4,-4],[-9,0],[-12,0],[2,8],[-15,0]],[[4787,1754],[9,4],[106,46],[37,14],[2,0],[5,3],[51,19]],[[4997,1840],[9,-11],[7,-7],[7,-7]],[[6374,6081],[-7,42],[-5,33]],[[6362,6156],[8,1],[23,3],[12,2],[24,4],[30,5],[7,2]],[[6466,6173],[36,6],[24,4],[44,7],[12,-75],[6,-36],[6,-39]],[[6136,6235],[-5,37],[-6,38],[-6,38]],[[6222,6364],[12,-75],[8,-47],[4,-28],[37,6],[42,7],[25,4],[3,-20],[3,-19],[6,-36]],[[6466,6173],[-5,36],[-1,3],[-6,35],[-12,76]],[[5605,2055],[-60,-77],[-44,-57]],[[5501,1921],[-11,3],[-20,6],[-41,8],[-25,6],[-37,3],[-12,2],[-38,-2]],[[5317,1947],[-23,0],[-26,-4],[-5,-2],[-3,0],[-51,-12],[-14,-4],[-37,-11],[-15,-6],[-47,-17],[-5,8],[-32,-16],[-8,-3],[-7,1],[6,11]],[[5050,1892],[2,1],[9,12],[4,4],[13,11],[34,22],[-8,3],[-2,1],[-4,0],[-13,0],[10,17],[57,28],[52,25],[10,4]],[[5214,2020],[104,50],[34,21],[37,23],[13,9],[13,9]],[[5475,2158],[6,-3],[32,-18],[28,-15],[-24,-30],[5,-47],[83,10]],[[5783,2554],[-13,-26],[-9,-26],[-1,-31],[-4,-75],[-2,-41],[-2,-13],[-11,-41],[-14,-54]],[[5727,2247],[-15,-56],[-11,-10],[-56,-71],[-2,-7],[-4,-1],[-16,-21],[-1,-4],[-3,-1],[-13,-16],[-1,-5]],[[3581,5324],[-71,-12],[-67,-11],[-68,-11],[-67,-10],[-67,-11]],[[3241,5269],[-9,140],[-67,-4],[-8,144],[0,6]],[[3157,5555],[67,4],[68,4],[68,4],[67,4],[68,4]],[[5025,2145],[-18,-74],[6,2],[43,-9],[4,-6],[7,3],[41,-10],[6,-6],[8,3],[52,-12],[14,-10],[11,2],[15,-8]],[[5050,1892],[-15,-2],[-13,-2],[-18,-2]],[[1879,5180],[-9,150],[-8,150],[-9,150]],[[2286,5204],[-68,-4],[-68,-4],[-68,-4],[-67,-4],[-68,-4],[-68,-4]],[[1879,5180],[-68,-4],[-67,-4],[-68,-4]],[[3241,5269],[-68,-11],[-33,-6],[-35,-2],[-67,-3],[-68,-4],[-68,-4],[-67,-4],[-69,-4],[-33,-1]],[[2953,5543],[68,4],[67,4],[69,4]],[[2125,1552],[-33,54],[80,63],[78,41],[59,2],[-1,28],[0,10],[3,6],[6,6],[7,2],[62,0],[75,1],[8,4],[1,79],[-58,1],[-25,0],[0,12],[-6,17],[-32,57],[-6,17],[5,17],[57,4],[58,3],[24,1],[44,-20]],[[2531,1957],[6,-14],[4,-89],[-4,-9],[5,-6],[3,-51],[7,-110],[0,-4],[-7,-153],[-10,-4],[10,-9],[-5,-103],[-2,-56],[-2,-49]],[[2531,1957],[4,8],[-8,155],[-5,11]],[[2522,2131],[11,-6],[51,2],[57,1],[56,2],[37,1],[12,7]],[[2746,2138],[7,-9],[-2,-57],[-1,-49],[-1,-4],[-4,-85],[-1,-18],[-3,-68],[-10,-6]],[[1359,1727],[-1,14],[-9,163],[-5,9],[4,8],[-1,30],[-4,59],[-3,56],[0,14]],[[1494,2082],[13,7],[37,2],[7,-6],[7,7],[79,5],[8,-7],[13,8],[37,2],[58,4],[55,3],[18,1],[10,-7],[10,8],[17,1],[34,1],[17,1],[40,2],[12,1],[7,-6],[6,7],[29,2],[22,1],[33,2],[15,1],[6,-7],[8,8],[26,1],[22,1],[56,4],[35,1],[15,-6],[6,8],[85,3],[53,3],[7,-7],[7,7],[36,2],[19,-1],[50,0],[13,-8]],[[2522,2131],[-5,11],[-7,130],[-4,80],[4,7]],[[2510,2359],[4,8],[-7,134],[-4,8]],[[3088,2502],[-6,-10],[-21,-22],[-5,-9],[-54,-62],[-39,-40],[-11,-3],[-8,-11],[-21,-18],[-31,-33],[-40,-43],[-67,-72],[-21,-24],[-18,-17]],[[2746,2138],[26,-5],[-7,-8],[-4,-106],[9,-4],[43,-2],[4,4],[6,-3],[44,-2],[6,3],[5,-4],[45,-2],[6,3],[5,-4],[40,-1],[7,3],[6,-4],[41,-2],[7,4],[5,-4],[34,-2],[6,1],[22,3],[13,4],[5,3],[2,-5],[70,-63],[6,-2],[2,-5],[13,-12],[5,-2],[2,-5],[17,-29],[3,-8],[16,-54],[12,-15],[57,-43],[21,-9],[16,-2],[6,2],[7,-2],[19,1],[28,11],[18,17],[2,6],[8,0],[8,5],[15,9],[20,8],[17,4],[16,2]],[[4341,4753],[-24,150],[52,8],[51,8],[-4,5],[-11,70]],[[5202,7411],[7,7],[89,14],[8,-4],[7,6],[89,15],[8,-4]],[[5532,5330],[6,-37],[6,-38],[-104,-17],[7,-39],[5,-36],[6,-37],[6,-38],[-104,-16],[6,-38],[6,-37]],[[6939,1968],[-14,34],[-10,24],[-19,38],[-18,36],[-1,3],[-10,19],[-12,24],[-5,13],[-6,14]],[[6844,2173],[11,4],[8,4],[14,5]],[[6877,2186],[43,17],[15,6],[39,22],[4,3],[28,18],[24,12],[7,6],[15,12],[29,24],[16,13],[25,21],[21,22],[34,36],[8,9]],[[7185,2407],[3,-2],[119,-86],[60,-42],[14,-31],[20,-43],[-12,-17],[-74,-45],[9,-7],[56,-28],[-3,-18],[-6,-22],[-6,-14],[57,-29]],[[7185,2407],[21,22],[19,25],[7,9],[30,41],[36,50],[35,50],[35,50],[72,101],[28,40],[16,23],[6,8],[14,20],[7,9],[71,102],[24,33],[11,19],[0,1],[18,31],[3,5],[8,18]],[[7646,3064],[6,-5],[4,-3],[19,-13],[9,-7],[3,-2],[13,-9],[70,-51],[36,51],[35,51],[22,31],[5,7],[9,-4],[123,11],[22,2],[5,0],[33,2],[16,2],[10,0]],[[6877,2186],[-6,9],[-4,8],[-11,31],[-5,33],[3,10],[-11,113],[-5,10],[3,14],[-3,26],[-2,19],[0,31],[1,10],[0,2],[1,16],[-4,11],[7,10],[4,47],[7,43],[20,45],[26,47],[24,40],[22,37],[0,11],[12,11],[36,62],[31,103],[3,12],[3,19],[4,32],[6,40],[9,55],[1,30],[2,13],[-1,2]],[[7050,3188],[1,29],[1,27],[7,31],[8,34],[3,10],[17,1],[7,6],[9,2],[34,-6],[8,-2],[302,23],[64,5],[61,4]],[[7572,3352],[125,9],[10,2],[50,7],[2,0]],[[7759,3370],[8,2],[-25,-67],[-15,-36],[-5,-15],[-2,-4],[-5,-13],[-9,-26],[-2,-4],[-20,-52],[-18,-45],[-10,-25],[-10,-21]],[[7572,3352],[-2,35],[-13,172],[61,4],[-13,188],[-1,18],[-8,87],[-4,27],[-12,19],[-21,23],[-10,10],[-9,16],[-6,12],[-6,7],[-5,65],[-10,133],[-2,7]],[[7733,4398],[9,-79],[2,-23],[3,-50],[3,-54],[3,-46],[2,-125],[-1,-34],[-1,-24],[0,-51],[0,-26],[13,-95],[3,-10],[18,-66],[9,-36],[7,-101],[3,0],[0,-31],[-5,-51],[-6,-31],[-14,-40],[-1,-4],[-21,-51]],[[7719,4500],[16,1],[1,0],[7,1],[8,0],[45,4],[61,5],[61,4],[63,5],[59,5],[20,8],[63,96],[43,109],[7,18],[60,-1]],[[8233,4755],[1,-18],[118,9],[8,1],[4,-29],[-194,-15],[-2,-6],[-2,-13],[1,-6],[-5,-9],[-19,-39],[-5,-7],[-9,-15],[-2,-10],[5,-1],[2,-17],[-1,-11],[-2,-2],[-1,-7],[0,-16],[3,0],[0,-17],[-2,-1],[0,-2],[-8,-4],[0,-5],[2,0],[1,-2],[0,-2],[-10,-9],[-1,-6],[1,-2],[2,-1],[3,-1],[2,-1],[0,-2],[0,-3],[-1,-1],[-7,-6],[-7,-7],[-4,-3],[-4,-3],[-5,-1],[-14,-2],[2,-8],[21,3],[1,-6],[7,-5],[4,5],[6,-2],[2,-3],[6,-2],[-6,-16],[18,-7],[6,17],[44,1],[1,-7],[14,0],[0,11],[6,0],[5,-85],[27,-17],[25,2],[-11,154],[10,1],[11,-145],[44,4],[-1,13],[-12,-1],[-2,8],[-5,-1],[-10,129],[5,0],[1,7],[14,2],[3,-7],[5,0],[0,-3],[10,1],[12,-147],[52,4],[-14,180],[11,1],[14,-180],[24,2],[3,188],[4,0],[0,5],[9,0],[2,11],[18,-1],[3,-10],[9,0],[-3,-207],[-144,-12],[71,-97],[3,1],[2,0],[3,-2],[3,-5],[2,-4],[0,-5],[-1,-4],[19,1],[-9,118],[32,2],[12,-160],[34,3],[-20,253],[14,0],[19,-252],[27,2],[29,2],[-19,258],[2,2],[14,1],[2,-3],[21,-283],[-130,-22],[0,-7],[-14,-1],[2,-21],[3,0],[6,0],[6,-85],[0,-7],[-2,-7],[-5,-9],[-2,-2],[-3,-10],[-3,-10],[-2,-10],[-1,-5],[4,1],[1,-14],[-4,-4],[1,-12],[1,-2],[7,0],[0,-3],[-2,0],[2,-44],[0,-2],[-2,-3],[-3,-1],[1,-5],[3,0],[2,-2],[2,-3],[2,-3],[1,-34],[1,-2],[2,-1],[10,-1],[2,-2],[4,0],[0,-4],[-6,-1],[9,-7],[8,-8],[2,-6],[1,-6],[-1,-6],[-1,-6],[-2,-3],[-4,-3],[-4,-2],[-7,0],[-8,-2],[-5,-3],[-6,-2],[-6,0],[-4,1],[-8,5],[-5,1],[-2,0],[-71,-10],[-53,-5],[-5,-2],[-5,-1],[-16,1],[-1,-3],[1,-20],[5,-3],[19,6],[10,3],[6,0],[8,0],[6,-2],[5,-3],[5,-3],[3,-3],[7,-11],[1,-2],[25,5],[62,11],[37,0],[35,-1],[17,-7],[4,-15],[0,-24],[2,-56],[-5,-6],[-6,-14],[-6,-16],[18,1],[4,-1],[4,-2],[1,-2],[1,-3],[-1,-2],[-2,-1],[-7,-3],[-1,-2],[0,-2],[1,-19],[3,-35],[245,18],[20,-285],[-579,-45],[0,3],[17,2],[-1,8],[-5,0],[-5,-2],[-4,-2],[-3,-2],[-4,-2],[-3,-1],[-1,-2],[-1,-3],[-1,-1],[-2,-1],[-3,0],[-4,4],[-3,1],[-1,0],[-7,-4],[-4,-1],[-4,0],[-18,3],[-3,-1],[-2,-1],[-1,-3],[-1,-1],[-2,0],[-2,1],[-4,1],[-3,-1],[-3,-1],[-2,-3],[-1,-2],[-1,-4],[-2,-3],[0,-4],[-1,-6],[-2,-1],[-2,-2],[-3,0],[-3,2],[-8,-1],[-17,-2],[-6,-2],[-6,0],[-3,-3],[-4,-5],[-3,-2],[-6,0],[3,-34],[20,0],[42,3],[610,43],[4,-8],[6,-14]],[[7050,3188],[-4,29],[-7,21],[-10,4]],[[4682,7327],[-7,3],[-95,-15],[-4,-5],[-5,4],[-97,-16],[-4,-5]],[[4470,7293],[-5,4],[-6,0],[-14,2],[-7,-2],[-2,7],[-5,3],[-6,4],[-23,19],[-29,25],[-7,2],[0,6],[-16,13],[-50,44],[-8,1]],[[7351,5195],[10,-10],[22,-45],[2,-9],[12,12],[9,8],[2,2],[7,7],[140,141],[141,142],[141,142]],[[7837,5585],[44,-44],[2,-4]],[[7883,5537],[-145,-134],[-6,-6],[-137,-136],[-142,-140],[-21,-20],[-14,-5],[-5,-21],[-9,-8],[-9,-9],[1,-22],[1,-19],[0,-5],[1,-13],[9,-39],[13,-32],[17,-47],[5,-7],[9,-11],[25,-35],[20,-19]],[[8058,6009],[-28,-30],[-19,-17],[-6,12],[-5,13],[-23,25],[-59,60]],[[7918,6072],[-46,46],[-18,18],[-47,-47],[-27,28],[-6,3]],[[8072,6541],[4,-10],[127,38],[2,0],[2,-2],[11,-36],[-1,-2],[-1,-1],[-1,-5],[-129,-36],[9,-44],[113,24],[2,-1],[1,-1],[6,-29],[-1,-1],[-2,-1],[-130,-28],[-10,-3],[-2,-39],[25,0],[157,13],[1,-1],[1,-2],[10,-131],[-1,-2],[-2,-1],[-186,-15],[-8,-1],[-7,-3],[-1,-2],[-3,-46],[138,10],[2,-31],[-114,-8],[-16,-3],[-7,-2],[-6,-4],[-2,-42],[90,7],[3,-44],[-82,-7],[-10,-4],[-3,-2],[-2,-31],[9,-3]],[[7918,6072],[-37,-37],[-56,-56],[76,-76],[23,-23],[23,23],[14,11],[11,5],[15,7],[26,0],[2,0],[13,-8],[-2,-24],[-6,-25],[-7,-19],[-3,-7],[24,-63],[-54,-55]],[[7980,5725],[-46,45],[-11,1],[-57,-57],[-30,-27],[-41,-47],[-3,-9],[-11,-2],[-129,-130],[1,-12]],[[9106,8680],[-59,-32],[-4,7],[-463,894],[12,43],[25,95],[19,74],[20,77],[310,161],[285,-97],[83,-88],[2,-53],[14,6],[-1,16],[0,11],[7,1],[10,-27],[10,7],[-3,26],[9,0],[6,-21],[23,9],[-26,71],[12,10],[63,-145],[-26,-8],[-22,45],[-14,-7],[6,-25],[-13,-4],[-6,26],[-15,-9],[4,-22],[-7,-6],[-5,26],[-8,-2],[5,-46],[63,-112],[139,-266],[57,-112],[-7,-44],[71,-34],[8,-4],[-2,-7],[-6,-20],[-75,29],[-12,0],[-9,-35],[13,0],[74,-25],[-5,-19],[-88,27],[-12,-40],[89,-25],[-6,-19],[-99,19],[-6,-29],[-4,0],[8,-60],[-60,-40],[11,-17],[52,36],[1,-8],[-46,-29],[13,-15],[-10,-11],[-38,48],[-242,-133],[-125,-68]],[[7883,5537],[12,-19],[9,3],[13,-21],[3,0],[0,7],[135,10],[3,3],[5,0],[4,-2],[4,-2],[4,-3],[2,-4],[2,-5],[0,-5],[-1,-14],[14,1],[1,-18],[116,17]],[[8209,5485],[14,2],[2,-1],[1,-1],[-3,-3],[13,-71],[-4,0],[1,-5],[-135,-20],[5,-61],[323,23],[23,-217],[-206,116],[-4,1],[-5,1],[-121,-9],[12,-35],[0,-1],[-2,-2],[-7,-2],[2,-5],[0,-6],[0,-4],[2,-9],[-1,-1],[-3,-2],[2,-6],[3,1],[3,-12],[2,-11],[1,-11],[7,-1],[-2,-21],[3,0],[0,-3],[3,-1],[0,-3],[2,0],[-1,-2],[-1,0],[-1,-9],[7,0],[-1,-4],[3,-1],[2,0],[3,-4],[2,-1],[2,-1],[1,-2],[-4,-2],[4,-7],[3,2],[2,-1],[-2,-1],[9,-15],[-2,-14],[6,-11],[1,-1],[1,1],[1,1],[-1,45],[11,73],[5,-1],[-8,-57],[10,-1],[3,8],[8,10],[4,-1],[-26,-70],[-2,-11],[0,-3],[10,3],[153,-74],[-14,-31],[-139,69],[5,-16],[1,-12],[29,-79],[7,2],[7,-18],[-14,-6],[0,-4],[-2,-3],[2,-5],[-4,-2],[2,-5],[-8,-4],[2,-12],[28,2],[5,-8],[46,4],[3,-30],[88,7],[1,-12],[-156,-12],[2,-24]],[[8058,6009],[7,-2],[6,-1],[170,12],[1,-1],[1,-12],[2,-19],[-1,-1],[-1,0],[-181,-15],[-14,-5],[2,-39],[140,11],[1,-1],[1,-11],[38,2],[1,1],[3,-2],[-2,-3],[-2,1],[-37,-2],[1,-12],[-1,-1],[-2,-1],[-133,-10],[3,-39],[7,1],[-1,10],[2,0],[1,-10],[6,0],[-1,11],[3,0],[1,-11],[6,1],[-1,10],[2,1],[1,-11],[6,0],[-1,11],[3,0],[1,-10],[5,0],[0,11],[2,0],[1,-11],[5,1],[0,10],[2,0],[1,-10],[6,0],[-1,11],[2,0],[1,-11],[6,1],[0,11],[2,0],[1,-11],[6,0],[-1,11],[2,0],[1,-10],[6,0],[0,11],[1,0],[1,-11],[6,1],[0,10],[2,0],[1,-10],[6,0],[-1,11],[2,0],[1,-11],[6,1],[0,11],[2,0],[1,-11],[5,1],[0,10],[2,0],[1,-10],[6,0],[-1,11],[2,0],[1,-11],[6,1],[-1,10],[3,0],[1,-10],[6,0],[-1,11],[2,0],[1,-10],[6,0],[0,11],[2,0],[1,-11],[6,1],[-1,10],[2,0],[1,-10],[6,0],[-1,11],[3,0],[0,-11],[6,1],[-1,10],[2,0],[2,-22],[-2,0],[-1,10],[-6,0],[1,-10],[-2,0],[-1,10],[-6,-1],[1,-10],[-2,0],[-1,10],[-6,0],[0,-11],[-2,0],[-1,10],[-6,0],[1,-10],[-2,0],[-1,10],[-6,-1],[0,-10],[-2,0],[-1,10],[-6,0],[1,-10],[-2,0],[-1,10],[-6,-1],[0,-10],[-1,0],[-2,10],[-5,0],[1,-11],[-2,0],[-1,10],[-7,0],[1,-10],[-2,0],[-1,10],[-6,-1],[1,-10],[-2,0],[-1,10],[-6,0],[0,-10],[-2,-1],[-1,10],[-6,0],[1,-10],[-2,0],[-1,10],[-6,0],[1,-11],[-2,0],[-1,10],[-6,0],[0,-10],[-2,0],[-1,10],[-6,-1],[1,-10],[-2,0],[-1,10],[-6,0],[1,-10],[-2,-1],[-1,11],[-6,-1],[0,-10],[-2,0],[-1,10],[-6,-1],[1,-10],[-2,0],[-1,10],[-6,0],[0,-10],[-2,0],[-1,10],[-6,-1],[1,-10],[-2,0],[-1,10],[-7,0],[3,-35],[1,-2],[5,0],[0,9],[2,0],[0,-9],[5,1],[0,9],[2,0],[0,-9],[6,0],[0,9],[1,0],[1,-9],[6,1],[-1,9],[2,0],[1,-9],[5,0],[0,9],[2,0],[1,-9],[4,1],[0,9],[2,0],[1,-9],[5,0],[-1,9],[2,0],[1,-8],[5,0],[0,9],[2,0],[0,-9],[6,1],[-1,9],[2,0],[1,-9],[5,0],[0,9],[1,0],[1,-9],[6,1],[-1,9],[2,0],[1,-9],[5,0],[0,9],[2,0],[1,-9],[5,1],[0,9],[1,0],[1,-9],[6,0],[-1,9],[2,1],[1,-10],[5,1],[0,9],[1,0],[1,-9],[5,0],[0,10],[2,0],[1,-9],[5,0],[-1,9],[2,0],[1,-9],[5,1],[0,9],[2,0],[0,-9],[6,0],[0,9],[1,0],[1,-9],[6,1],[-1,9],[2,0],[1,-9],[5,0],[-1,9],[2,0],[1,-9],[5,1],[0,9],[2,0],[0,-9],[5,0],[0,9],[2,1],[1,-19],[-2,0],[0,8],[-5,-1],[0,-8],[-2,0],[-1,8],[-5,0],[1,-8],[-3,0],[0,8],[-5,-1],[0,-8],[-2,0],[0,8],[-6,0],[1,-8],[-2,-1],[-1,8],[-5,0],[0,-8],[-2,0],[-1,8],[-5,-1],[0,-8],[-2,0],[0,8],[-5,0],[0,-8],[-2,0],[0,8],[-6,-1],[1,-8],[-2,0],[-1,8],[-5,0],[0,-8],[-1,0],[-1,8],[-6,-1],[1,-8],[-2,0],[-1,8],[-5,0],[0,-8],[-2,0],[0,8],[-6,-1],[0,-8],[-1,0],[-1,8],[-6,0],[1,-9],[-2,0],[-1,8],[-5,0],[1,-8],[-2,0],[-1,8],[-5,0],[0,-9],[-2,0],[-1,8],[-5,0],[1,-8],[-2,0],[-1,8],[-5,-1],[0,-8],[-2,0],[0,8],[-5,0],[0,-8],[-2,0],[-1,8],[-5,-1],[1,-8],[-2,0],[-1,8],[-6,0],[1,-9],[-2,0],[-1,9],[-6,-1],[1,-8],[-2,0],[-1,8],[-5,0],[1,-9],[-2,0],[-1,8],[-5,0],[-1,-2],[2,-28],[1,-4],[6,1],[-1,9],[2,0],[1,-9],[5,0],[-1,9],[2,0],[1,-9],[6,1],[-1,9],[2,0],[1,-9],[5,0],[0,10],[2,0],[1,-9],[5,0],[0,9],[1,0],[1,-9],[5,1],[-1,9],[3,0],[0,-9],[5,0],[0,9],[2,0],[1,-9],[5,1],[-1,9],[2,0],[1,-9],[5,0],[0,9],[2,0],[1,-9],[5,1],[-1,9],[2,0],[1,-9],[5,0],[0,9],[2,0],[0,-9],[6,1],[0,9],[1,0],[1,-9],[6,0],[-1,9],[2,0],[1,-9],[5,1],[0,9],[2,0],[1,-9],[5,0],[-1,9],[2,1],[1,-10],[5,1],[-1,9],[2,0],[1,-9],[5,0],[0,9],[2,1],[0,-9],[6,0],[-1,9],[2,0],[1,-9],[6,1],[-1,9],[2,0],[1,-9],[5,0],[0,9],[2,0],[0,-9],[5,1],[0,9],[2,0],[0,-9],[6,0],[-1,9],[2,0],[1,-9],[5,1],[0,9],[2,0],[1,-19],[-2,0],[-1,8],[-5,0],[1,-9],[-2,0],[-1,8],[-5,0],[0,-8],[-2,0],[-1,8],[-4,-1],[0,-8],[-2,0],[-1,8],[-5,0],[0,-8],[-2,0],[0,8],[-6,-1],[1,-8],[-3,0],[0,8],[-6,0],[1,-8],[-2,0],[-1,8],[-5,-1],[1,-8],[-2,0],[-1,8],[-5,0],[0,-8],[-2,0],[0,8],[-5,-1],[0,-8],[-2,0],[-1,8],[-5,0],[0,-8],[-2,0],[0,8],[-6,-1],[1,-8],[-2,0],[-1,8],[-6,0],[1,-8],[-2,0],[-1,8],[-5,-1],[0,-8],[-2,0],[0,8],[-5,0],[0,-9],[-2,0],[0,9],[-6,-1],[1,-8],[-3,0],[0,8],[-5,0],[0,-9],[-2,0],[0,8],[-6,0],[1,-8],[-2,0],[-1,8],[-5,0],[1,-9],[-2,0],[-1,8],[-5,0],[0,-8],[-2,0],[0,8],[-6,0],[0,-9],[-2,0],[0,8],[-6,0],[1,-8],[-3,0],[0,8],[-5,-1],[1,-8],[-3,0],[0,8],[-6,0],[0,-3],[2,-24],[1,-3],[4,0],[0,7],[2,0],[0,-7],[5,1],[-1,7],[2,0],[1,-7],[4,0],[0,7],[2,0],[0,-7],[5,1],[0,7],[1,0],[1,-7],[4,0],[0,7],[1,0],[1,-7],[4,1],[0,7],[2,0],[1,-7],[4,0],[0,7],[1,0],[1,-7],[5,1],[-1,7],[2,0],[1,-7],[4,0],[0,7],[2,0],[0,-7],[5,1],[-1,7],[2,0],[1,-7],[4,0],[0,7],[1,0],[1,-7],[5,0],[-1,8],[2,0],[1,-7],[4,0],[-1,7],[2,0],[1,-7],[4,0],[0,8],[2,0],[1,-7],[4,0],[0,7],[1,0],[1,-7],[4,0],[0,8],[2,0],[1,-8],[4,1],[-1,7],[2,0],[1,-7],[5,0],[-1,7],[2,1],[1,-8],[4,1],[0,7],[2,0],[1,-7],[4,0],[0,7],[1,1],[1,-8],[4,1],[0,7],[2,0],[1,-7],[3,0],[0,7],[2,1],[1,-8],[4,1],[0,7],[1,0],[1,-7],[4,0],[0,7],[2,0],[1,-7],[4,1],[0,7],[1,0],[1,-7],[5,0],[-1,7],[2,0],[2,-16],[-2,0],[-1,7],[-5,0],[1,-8],[-2,0],[-1,8],[-4,-1],[0,-7],[-2,0],[0,7],[-5,0],[1,-8],[-2,0],[-1,8],[-4,0],[0,-8],[-2,0],[0,7],[-4,0],[0,-7],[-2,-1],[0,8],[-5,0],[1,-8],[-2,0],[-1,7],[-4,0],[0,-7],[-2,-1],[-1,8],[-4,0],[0,-8],[-2,0],[0,8],[-5,-1],[1,-8],[-2,0],[-1,8],[-4,0],[0,-8],[-2,0],[-1,8],[-4,-1],[1,-7],[-2,0],[-1,7],[-4,0],[0,-8],[-2,0],[-1,8],[-4,-1],[1,-7],[-2,0],[-1,7],[-4,0],[1,-8],[-2,0],[-1,8],[-5,-1],[1,-7],[-2,0],[-1,7],[-4,0],[1,-8],[-2,0],[-1,8],[-4,-1],[0,-7],[-2,0],[-1,7],[-4,0],[0,-8],[-1,0],[-1,8],[-5,-1],[1,-7],[-2,0],[-1,7],[-4,0],[0,-8],[-2,0],[0,8],[-5,-1],[1,-7],[-2,0],[-1,7],[-4,0],[1,-8],[-2,0],[0,8],[-6,0],[1,-7],[-2,-1],[-1,7],[-4,0],[0,-7],[-2,0],[0,7],[-5,0],[1,-7],[-2,-1],[-1,7],[-4,0],[-1,-3],[2,-22],[1,-3],[5,1],[-1,6],[2,0],[1,-6],[4,0],[0,7],[2,0],[0,-7],[5,1],[0,7],[1,0],[1,-7],[4,0],[0,8],[2,0],[1,-8],[3,0],[0,8],[2,0],[1,-7],[4,0],[0,8],[1,0],[1,-8],[4,0],[0,8],[2,0],[1,-7],[4,0],[0,7],[2,1],[0,-8],[4,0],[0,8],[2,0],[1,-7],[4,0],[0,8],[2,0],[0,-8],[4,0],[0,8],[2,0],[0,-8],[5,1],[0,8],[2,0],[0,-8],[4,0],[0,8],[2,0],[0,-8],[5,1],[0,7],[1,0],[1,-7],[4,0],[0,8],[2,0],[0,-8],[5,1],[0,7],[2,1],[0,-8],[4,0],[0,8],[2,0],[1,-8],[4,1],[0,7],[1,0],[1,-7],[4,0],[0,8],[2,0],[1,-8],[4,1],[0,7],[2,0],[0,-7],[5,0],[-1,8],[2,0],[1,-8],[4,1],[-1,7],[2,0],[1,-7],[4,0],[0,8],[2,0],[0,-8],[5,0],[-1,8],[2,0],[1,-7],[4,0],[0,8],[2,0],[0,-8],[5,1],[0,7],[2,0],[1,-16],[-2,-1],[-1,8],[-4,0],[0,-8],[-2,0],[-1,7],[-4,0],[0,-7],[-2,-1],[0,8],[-5,0],[1,-8],[-2,0],[-1,7],[-4,0],[0,-7],[-2,0],[0,7],[-4,0],[0,-8],[-2,0],[0,8],[-5,-1],[1,-7],[-2,0],[-1,7],[-4,0],[0,-8],[-2,0],[0,8],[-5,-1],[0,-7],[-1,0],[-1,7],[-4,0],[0,-8],[-2,0],[0,8],[-5,-1],[1,-7],[-2,0],[-1,7],[-5,0],[1,-8],[-2,0],[-1,8],[-4,-1],[0,-7],[-2,0],[0,7],[-4,0],[0,-8],[-2,0],[-1,8],[-4,-1],[1,-7],[-2,0],[-1,7],[-5,0],[1,-8],[-2,0],[-1,8],[-4,0],[1,-8],[-2,0],[-1,7],[-4,0],[0,-8],[-2,0],[0,8],[-5,0],[0,-8],[-1,0],[-1,7],[-4,0],[0,-8],[-2,0],[-1,8],[-4,0],[0,-8],[-1,0],[-1,7],[-4,0],[0,-8],[-2,0],[0,8],[-4,0],[0,-8],[-2,0],[-1,7],[-4,0],[0,-7],[-1,0],[-1,7],[-5,0],[1,-7],[-2,0],[-1,7],[-4,-1],[0,-6],[-2,0],[0,6],[-5,0],[-1,-3],[2,-22],[1,-2],[4,0],[0,6],[2,0],[0,-6],[4,0],[0,6],[2,0],[0,-5],[4,0],[0,6],[2,0],[1,-6],[3,0],[0,7],[2,0],[1,-7],[4,1],[-1,6],[2,0],[1,-6],[4,0],[-1,7],[2,0],[1,-7],[4,1],[0,6],[1,0],[1,-6],[4,0],[0,6],[2,0],[0,-6],[4,0],[-1,7],[2,0],[1,-6],[4,0],[0,6],[1,0],[1,-6],[4,0],[0,7],[2,0],[0,-6],[4,0],[0,6],[2,0],[0,-6],[4,0],[0,7],[1,0],[1,-7],[4,1],[0,6],[2,0],[0,-6],[5,0],[0,7],[1,0],[1,-7],[4,1],[0,6],[1,0],[1,-6],[4,0],[0,6],[2,1],[0,-7],[4,0],[0,7],[2,0],[0,-6],[4,0],[0,6],[2,0],[0,-6],[4,0],[0,7],[2,0],[1,-6],[3,0],[0,6],[2,0],[1,-6],[4,0],[0,7],[1,0],[1,-7],[3,1],[0,6],[2,0],[1,-6],[4,0],[0,7],[1,0],[1,-7],[4,1],[-1,6],[2,0],[1,-6],[4,0],[-1,6],[2,0],[1,-6],[4,1],[0,6],[2,0],[1,-15],[-2,0],[-1,7],[-4,0],[0,-7],[-2,0],[0,6],[-4,0],[0,-7],[-2,0],[0,7],[-4,0],[0,-7],[-1,0],[-1,7],[-4,-1],[0,-6],[-2,0],[0,6],[-4,0],[0,-7],[-2,0],[0,7],[-4,-1],[0,-6],[-2,0],[-1,6],[-3,0],[0,-7],[-2,0],[-1,7],[-4,0],[1,-7],[-2,0],[-1,6],[-4,0],[1,-7],[-2,0],[-1,7],[-4,0],[1,-7],[-2,0],[-1,7],[-4,-1],[0,-7],[-1,0],[-1,7],[-4,0],[0,-7],[-1,0],[-1,7],[-5,-1],[1,-6],[-2,0],[-1,6],[-4,0],[1,-7],[-2,0],[-1,7],[-3,-1],[0,-6],[-2,0],[-1,6],[-4,0],[0,-7],[-1,0],[-1,7],[-4,0],[0,-7],[-1,0],[-1,6],[-4,0],[0,-7],[-2,0],[0,7],[-4,0],[1,-7],[-3,0],[0,7],[-4,-1],[0,-7],[-1,0],[-1,7],[-4,0],[0,-7],[-2,0],[0,7],[-4,-1],[0,-6],[-2,-1],[0,7],[-4,0],[0,-7],[-2,0],[0,7],[-4,-1],[0,-6],[-2,0],[-1,6],[-3,0],[0,-6],[-2,0],[-1,6],[-4,0],[1,-6],[-2,-1],[-1,6],[-4,0],[-1,-3],[2,-20],[1,-2],[4,1],[0,5],[2,0],[0,-5],[4,0],[0,6],[2,0],[1,-6],[3,0],[0,7],[2,0],[0,-6],[4,0],[0,7],[2,0],[1,-7],[3,0],[0,7],[2,0],[1,-6],[4,0],[0,6],[1,1],[1,-7],[4,0],[-1,7],[2,0],[1,-7],[4,1],[-1,6],[2,0],[1,-6],[4,0],[0,7],[2,0],[0,-7],[4,1],[0,6],[2,0],[0,-6],[4,0],[0,7],[2,0],[1,-7],[3,1],[0,6],[2,0],[1,-6],[3,0],[0,7],[2,0],[1,-7],[4,0],[-1,7],[2,0],[1,-6],[4,0],[0,6],[1,1],[1,-7],[4,0],[0,7],[1,0],[1,-6],[4,0],[0,6],[1,0],[1,-6],[4,0],[0,7],[2,0],[0,-7],[4,1],[0,6],[1,0],[1,-6],[4,0],[0,7],[2,0],[0,-7],[4,1],[0,6],[2,0],[0,-6],[4,0],[0,7],[2,0],[1,-7],[4,1],[-1,6],[3,0],[1,-14],[-2,0],[-1,6],[-4,0],[0,-7],[-2,0],[-1,6],[-3,0],[0,-6],[-2,0],[-1,6],[-4,0],[1,-7],[-2,0],[-1,7],[-4,-1],[0,-6],[-1,0],[-1,6],[-4,0],[0,-7],[-1,0],[-1,7],[-4,-1],[0,-6],[-1,0],[-1,6],[-4,0],[0,-7],[-1,0],[-1,7],[-4,0],[0,-7],[-2,0],[0,6],[-4,0],[0,-6],[-2,0],[0,6],[-4,0],[0,-7],[-2,0],[0,6],[-4,0],[0,-6],[-2,0],[-1,6],[-3,0],[0,-7],[-2,0],[-1,7],[-4,-1],[0,-6],[-1,0],[-1,6],[-4,0],[1,-7],[-2,0],[-1,7],[-4,-1],[0,-6],[-2,0],[0,6],[-4,0],[0,-7],[-1,0],[-1,7],[-4,-1],[0,-6],[-1,0],[-1,6],[-4,0],[0,-6],[-2,-1],[0,7],[-4,0],[0,-7],[-2,0],[0,6],[-4,0],[0,-6],[-2,0],[-1,6],[-3,0],[0,-6],[-2,0],[-1,6],[-4,-1],[0,-5],[-1,0],[-1,5],[-4,0],[-1,-2],[2,-16],[126,9],[3,-2],[-2,-3],[-3,2],[-4,0],[12,-171]],[[7837,5585],[143,140]],[[6780,3049],[19,-35],[3,-6],[7,-4],[-15,-47],[-12,-39],[-7,-27],[-6,-12],[-11,-22],[-9,-13],[-15,-9],[-2,-2],[-14,-5],[-18,-2],[-17,0],[8,-1],[32,-7],[1,-2],[-4,-61],[-5,-84],[7,-5]],[[6722,2666],[-48,4],[-38,2],[-17,1],[-23,2],[-29,1],[-11,0],[-38,1],[-39,3]],[[6479,2680],[-40,2],[-33,2],[-5,2],[-40,3],[-40,2],[-39,2]],[[6282,2693],[2,27],[1,15],[-14,0],[-25,-8],[-2,-1],[-7,-1],[-23,4],[-4,4],[-8,10],[-6,16],[2,15],[16,14],[6,11],[3,7],[0,24],[8,13],[20,14],[3,2],[14,14],[9,21],[11,9],[14,-1],[35,-12]],[[6331,2970],[-3,40],[-3,40],[-166,-13],[-12,6],[-29,59],[-53,7]],[[6760,2534],[-8,1],[-39,3]],[[6713,2538],[5,75],[4,53]],[[6994,3171],[-3,-27],[-15,-57],[-11,-55],[-9,-36],[-9,-32],[-16,-39],[-2,-5],[-17,-32],[-2,-3],[-24,-37],[-46,-70],[-18,-30],[-3,-4],[-15,-31],[-11,-26],[-9,-22],[-5,-19],[-8,-29],[-5,-26],[-6,-57]],[[6282,2693],[-39,2],[-39,3],[-6,-97],[-7,-108]],[[6191,2493],[-41,5],[-43,5],[-8,4],[-37,19],[-25,13]],[[6037,2539],[-10,5],[-35,19],[-37,18],[-56,29]],[[5899,2610],[30,59],[56,-28],[21,41],[15,29],[21,39],[6,5],[53,105],[-23,11],[-36,19],[44,88],[-32,17],[-37,19]],[[5899,2610],[-69,36]],[[6713,2538],[-4,-58],[-1,-9],[-38,3],[-5,-62],[-35,2],[-4,-1],[-39,2],[-5,2],[-35,3],[-39,2],[-39,3]],[[6469,2425],[-39,3],[3,54]],[[6433,2482],[-6,6],[6,99],[40,-3],[6,96]],[[6433,2482],[-40,-4],[-39,-4],[-7,0],[-33,4],[-45,5],[-39,5],[-39,5]],[[6469,2425],[-7,-100],[-7,-95],[-39,3],[-7,-93]],[[6409,2140],[-40,2],[-39,3],[-39,2],[7,95],[-39,3],[-42,3]],[[6217,2248],[2,19],[-165,11],[14,16],[13,27],[4,13],[2,23],[-3,23],[-7,15],[-10,12],[-13,10],[-22,6],[-21,-1],[-24,-12],[-20,-13],[7,18],[47,93],[16,31]],[[322,6167],[3,2],[6,7],[3,8],[6,10],[6,8],[8,7],[5,2],[3,9],[7,11],[20,13],[9,0],[6,4],[5,5],[2,6],[12,11],[3,4],[5,3],[2,-1],[5,-1],[4,3],[3,5],[7,10],[1,2],[0,3],[2,-1],[2,2],[3,6],[-2,6],[5,12],[6,9],[8,3],[5,5],[5,8],[4,9],[5,10],[4,0],[5,14],[5,3],[10,0],[1,-4],[4,2],[8,1],[6,9],[6,5],[3,5],[2,5],[1,2],[1,0],[3,3],[3,1],[-2,5],[3,5],[0,6],[2,10],[2,2],[19,4],[6,1],[3,-1],[6,0],[6,-1],[6,1],[8,1],[6,-4],[5,-5],[11,-1],[4,0],[2,-1],[2,-2],[2,-1],[6,-1],[6,-1],[3,0],[19,3],[6,2],[1,-1],[3,0],[10,-2],[14,-4],[6,0],[3,1],[1,-2],[6,0],[2,0],[5,2],[1,1],[-1,2],[3,0],[4,-1],[4,2],[5,4],[3,0],[2,1],[1,-1],[5,-8],[3,-1],[5,0],[12,4],[6,1],[3,2],[4,-1],[3,2],[6,-3],[4,1],[2,3],[0,3],[8,0],[2,-4],[0,-2],[2,0],[0,2],[3,7],[2,2],[2,-2],[3,-6],[2,2],[1,-1],[4,1],[3,2],[-2,2],[4,2],[1,-3],[4,0],[1,2],[7,-1],[11,6],[4,1],[5,-2],[3,1],[-2,3],[3,1],[4,-2],[2,-1],[2,0],[1,1],[3,0],[1,-2],[2,2],[5,1],[3,0],[2,-2],[1,2],[3,3],[2,0],[1,1],[7,4],[4,0],[1,4],[0,7],[4,2],[1,-2],[0,-4],[3,1],[2,-2],[0,-3],[2,0],[0,2],[3,-2],[3,-3],[6,4],[4,0],[3,5],[-2,2],[0,3],[2,4],[2,-1],[0,-3],[3,4],[3,3],[4,1],[1,-2],[3,-5],[2,-7],[3,-6],[6,-3],[4,-1],[5,0],[4,-1],[2,-2],[4,-3],[5,1],[2,4],[2,1],[3,0],[1,-4],[-2,-7],[3,-3],[2,0],[4,4],[2,3],[5,1],[1,-6],[-2,-4],[2,-4],[4,-2],[2,1],[1,3],[6,-2],[2,-3],[-1,-6],[7,-1],[4,-8],[4,-4],[7,-1],[4,3],[2,-6],[4,-2],[2,5],[-1,5],[1,2],[4,2],[3,-4],[3,-1],[4,2],[5,-5],[2,-3],[-3,-3],[2,-3],[1,-2],[-1,-4],[2,-7],[2,-2],[3,-1],[3,0],[3,2],[3,-1],[3,0],[3,-3],[4,-6],[4,-1],[3,-1],[5,-1],[2,-3],[2,-3],[3,-1],[4,1],[1,-2],[3,1],[3,-3],[6,-2],[2,1],[3,0],[8,2],[4,0],[2,1],[10,6],[1,2],[3,1],[3,1],[4,3],[2,0],[3,0],[4,3],[9,1],[1,2],[4,2],[2,1],[2,1],[3,2],[3,1],[1,1],[2,3],[4,2],[5,1],[3,0],[3,0],[1,1],[2,1],[7,1],[1,3],[3,1],[2,-1],[3,1],[3,5],[1,4],[3,11],[-1,4],[4,0],[8,-10],[-1,-4],[1,-4],[0,-6],[2,-3],[4,2],[1,1],[0,3],[1,2],[3,-1],[0,-5],[1,0],[1,-1],[3,0],[7,-1],[2,-4],[1,-1],[2,-5],[5,-8],[1,1],[3,1],[2,2],[3,1],[5,-1],[2,-1]],[[2510,2359],[-68,-4],[-68,-4],[-67,-3],[-70,-4],[-67,-4],[-67,-4],[-19,15],[-23,9],[-28,0],[-26,0],[-46,-6],[-21,-16],[-41,-6],[-7,-3],[-22,-16],[-23,-10],[-30,0],[-40,11],[-38,5],[-26,1],[-24,1],[-16,2],[-26,12],[-16,19],[-8,12],[-16,15],[-15,7],[-11,11],[-25,-2]],[[5089,3858],[5,-64]],[[4830,3580],[-4,64],[-5,64],[-7,90],[2,7],[1,8],[-9,120],[-1,6],[-2,26]],[[5219,3997],[-1,-19],[1,-15],[4,-9],[3,10],[-1,10],[2,7],[5,5],[19,14],[109,8],[140,11]],[[1336,5148],[-67,-4],[-68,-3],[-68,-4],[-68,-4],[-67,-4],[-68,-4],[-68,-4],[-68,-4],[-68,-4]],[[5635,4159],[-5,-11],[3,-44],[7,-10],[-5,-10],[3,-45],[6,-9]],[[5702,4164],[77,6],[4,-8],[4,-58],[4,-52],[-2,-11],[3,-7],[4,-57],[5,-55],[-2,-9]],[[4477,3817],[-13,-9],[-12,-9],[-8,-12],[-1,-13],[7,-21],[1,-12],[-1,-20],[-8,-24],[-7,-13],[-11,-15],[-8,-15],[-4,-13],[0,-15],[-1,-6],[-13,-35],[0,-10],[21,-47],[4,-15],[2,-17],[-3,-21],[-11,-31],[-33,-35],[7,-15],[5,-9],[40,-44],[6,-13],[3,-10],[0,-10],[-3,-11],[-7,-17],[-5,-10],[0,-4],[-1,-6],[3,-23],[2,-29],[9,-86]],[[4571,3574],[-6,-5],[-2,-10],[10,0],[-26,-129],[-9,-49],[-6,-6],[3,-7],[-9,-46],[-8,-22],[-10,-12],[-14,-25],[-11,-27],[3,-26],[4,-20],[-1,-21],[-9,-22],[-10,-13],[-15,-9],[-10,-5],[-4,2]],[[1281,3043],[-5,8],[-7,132],[4,10],[-6,8],[-7,133],[5,9],[-6,8],[-7,132],[4,9]],[[1256,3492],[34,2],[68,4],[68,4],[68,4],[68,4],[68,4]],[[4225,1068],[13,-7]],[[3254,788],[1,-144],[1,-148]],[[3529,812],[7,-17],[1,-45],[0,-68],[1,-68],[0,-69]],[[2275,4151],[-68,-3],[-68,-4],[-68,-4],[9,-150],[8,-149],[-68,-4]],[[2020,3837],[-68,-4],[-68,-4],[-68,-4],[-67,-4],[-9,150]],[[604,3607],[8,-151],[68,4],[8,-150],[68,4],[8,-150]],[[2028,3686],[-8,151]],[[1248,3643],[-4,-11],[7,-131],[5,-9]],[[1622,3664],[-68,-4],[-9,150],[-68,-4]],[[6217,2248],[-2,-38],[-4,-58],[-42,3],[-39,3],[-40,2],[-6,-78],[40,-2],[-5,-66],[-1,-11],[-120,0]],[[5998,2003],[-106,130],[0,40],[-17,1],[-9,0],[-21,2],[-6,2],[-29,58],[-7,3],[-76,8]],[[6409,2140],[-7,-93],[-1,-12],[-1,-12],[41,26],[8,5],[35,22],[100,64],[6,0],[0,-7],[-52,-37],[-51,-46],[-88,-48],[-22,-23],[-12,-25]],[[6365,1954],[-46,-15],[-22,-6]],[[6297,1933],[-14,4],[-41,-4],[-54,1],[-113,3],[-37,1],[-40,65]],[[6111,1258],[-62,-22],[-32,98],[-62,-21],[-62,-20],[-63,-21]],[[5902,1905],[27,5],[9,1],[49,10],[56,4],[64,0],[68,-1],[46,-3],[46,5],[30,7]],[[6365,1954],[-9,-18],[-2,-3],[2,1],[0,-5],[74,23],[6,-23],[13,-53],[13,-53],[14,-53]],[[6365,1954],[38,20],[22,13],[85,50],[39,27],[52,35],[57,30],[8,3],[22,8],[28,12],[17,4],[26,7],[36,10],[19,5],[21,6],[4,1]],[[6839,2185],[5,-12]],[[6760,2534],[-1,-11],[-2,-35],[8,-78],[1,-7],[1,-9],[3,-15],[1,-9],[8,-36],[12,-38],[6,-16],[12,-29],[1,-3],[2,-3],[4,-12],[12,-22],[5,-10],[6,-16]],[[5125,5880],[-104,-17],[12,-75],[-104,-17],[-52,-8],[-54,-9],[-104,-18]],[[4470,7293],[12,-72],[12,-74],[-105,-17]],[[4997,1840],[18,6],[16,6],[7,2],[5,2],[8,3],[16,5],[36,12],[15,5],[33,12],[51,18],[9,3],[37,11],[15,2],[3,0],[29,4],[23,1],[0,8],[-1,7]],[[2867,4638],[8,-152],[8,-150]],[[4730,5662],[12,-75],[12,-75]],[[5069,5563],[-12,75],[-104,-17],[-98,-16],[-8,-1],[-4,7],[-10,61],[2,7],[-105,-17]]],"transform":{"scale":[0.000015799680014869544,0.000012430843125841072],"translate":[-122.51494800050521,37.708131000028125]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment