Skip to content

Instantly share code, notes, and snippets.

@tomstove
Created May 24, 2013 11:07
Show Gist options
  • Save tomstove/5642750 to your computer and use it in GitHub Desktop.
Save tomstove/5642750 to your computer and use it in GitHub Desktop.
Chicago
<!DOCTYPE html>
<head>
<style>
body {
background: rgb(10, 16, 29);
}
.water {
fill: rgb(66, 73, 85);
fill-opacity: 1;
}
.landuse {
fill: rgb(51, 51, 51);
fill-opacity: 0.5;
}
.roads_residential {
fill: none;
stroke: rgb(63, 71, 85);
stroke-width: 0.3px;
}
.roads_secondary {
fill: none;
stroke: rgb(63, 71, 85);
stroke-width: 0.4px;
}
.roads_primary {
fill: none;
stroke: rgb(63, 71, 85);
stroke-width: 0.5px;
}
.roads_trunk {
fill: none;
stroke: rgb(63, 71, 85);
stroke-width: 0.8px;
}
</style>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js"></script>
<script src="http://d3js.org/topojson.v0.min.js"></script>
</head>
<body>
<script>
var width = 1200,
height = 760;
var projection = d3.geo.mercator()
.translate([width/2, height/2])
.center([-87.685323, 41.8352915])
.scale(70000);
var path = d3.geo.path()
.projection(projection);
var colour = d3.scale.threshold()
.domain([0, 9, 14, 19, 24, 30])
.range(["#7f0000", "#d7301f", "#ef6548", "#fc8d59", "#fdbb84", "#fdd49e", "#fff7ec"]);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var landuse = svg.append("g");
var water = svg.append("g");
var roads_residential = svg.append("g");
var roads_secondary = svg.append("g");
var roads_primary = svg.append("g");
var roads_trunk = svg.append("g");
var rect = svg.append("g");
var pointmax = svg.append("g");
d3.json('output.json', function(err, data) {
rect.selectAll("rect")
.data(data)
.enter().append("rect")
.attr("x", function(d) { return projection([d._west, d._north])[0]; })
.attr("y", function(d) { return projection([d._west, d._north])[1]; })
.attr("width", function(d) { return projection([d._east, d._south])[0] - projection([d._west, d._north])[0]; })
.attr("height", function(d) { return projection([d._east, d._south])[1] - projection([d._west, d._north])[1]; })
.style("fill", function(d) { return colour(d.current_speed); })
.style("fill-opacity", 0.25)
.transition()
.delay(3000)
.duration(1500)
.style("fill", function(d) { return colour(d.current_speed2); })
});
d3.json('roads_residential.topo.json', function(err, data) {
roads_residential.append("path")
.datum(topojson.object(data, data.objects.roads_residential))
.attr("class", "roads_residential")
.attr("d", path);
});
d3.json('roads_secondary.topo.json', function(err, data) {
roads_secondary.append("path")
.datum(topojson.object(data, data.objects.roads_secondary))
.attr("class", "roads_secondary")
.attr("d", path);
});
d3.json('roads_primary.topo.json', function(err, data) {
roads_primary.append("path")
.datum(topojson.object(data, data.objects.roads_primary))
.attr("class", "roads_primary")
.attr("d", path);
});
d3.json('roads_trunk.topo.json', function(err, data) {
roads_trunk.append("path")
.datum(topojson.object(data, data.objects.roads_trunk))
.attr("class", "roads_trunk")
.attr("d", path);
});
d3.json('waterway.topo.json', function(err, data) {
water.append("path")
.datum(topojson.object(data, data.objects.waterway))
.attr("class", "water")
.attr("d", path);
});
d3.json('landuse.topo.json', function(err, data) {
landuse.append("path")
.datum(topojson.object(data, data.objects.landuse))
.attr("class", "landuse")
.attr("d", path);
})
</script>
</body>
</html>
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.
[ {
"region" : "Rogers Park - West Ridge",
"_region_id" : "1",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.709645",
"_description" : "North of Devon. Kedzie to Lake Shore",
"_north" : "42.026444",
"current_speed" : "5",
"current_speed2" : "10",
"_east" : "-87.654561",
"_south" : "41.997946"
}
, {
"region" : "Far North West",
"_region_id" : "2",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.84621",
"_description" : "North of Montrose. East River to Cicero",
"_north" : "42.0190998",
"current_speed" : "8.4",
"current_speed2" : "25.2",
"_east" : "-87.747456",
"_south" : "41.960669"
}
, {
"region" : "North Park-Albany-Linconl Sq",
"_region_id" : "3",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.747456",
"_description" : "Montrose to Devon. Cicero to Ravenswood",
"_north" : "41.997946",
"current_speed" : "25.91",
"current_speed2" : "3.7",
"_east" : "-87.67459",
"_south" : "41.960669"
}
, {
"region" : "Edge Water-Uptown",
"_region_id" : "4",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.67459",
"_description" : "Montrose to Devon. Ravenswood to Lake Shore",
"_north" : "41.997946",
"current_speed" : "2.8",
"current_speed2" : "19.2",
"_east" : "-87.646438",
"_south" : "41.960669"
}
, {
"region" : "Dunning-Portage-Belmont Cragn",
"_region_id" : "5",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.84621",
"_description" : "North Ave to Montrose. East River to Cicero",
"_north" : "41.960669",
"current_speed" : "16",
"current_speed2" : "1",
"_east" : "-87.747456",
"_south" : "41.909269"
}
, {
"region" : "Irving Park-Avondale-North Ctr",
"_region_id" : "6",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.747456",
"_description" : "Diversey to Montrose. Cicero to Ravenswood",
"_north" : "41.960669",
"current_speed" : "21.3",
"current_speed2" : "21.5",
"_east" : "-87.67459",
"_south" : "41.931841"
}
, {
"region" : "Hermosa-Logan Square",
"_region_id" : "7",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.747456",
"_description" : "North Ave to Diversy. Cicero to Ravenswood",
"_north" : "41.931841",
"current_speed" : "9.5",
"current_speed2" : "8.9",
"_east" : "-87.67459",
"_south" : "41.909269"
}
, {
"region" : "Lincoln Park-Lake View",
"_region_id" : "8",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.67459",
"_description" : "North Ave to Montrose. Ravenswood to Lake Shore",
"_north" : "41.960669",
"current_speed" : "29.32",
"current_speed2" : "10",
"_east" : "-87.619112",
"_south" : "41.910561"
}
, {
"region" : "Austin",
"_region_id" : "9",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.775947",
"_description" : "Roosevelt to North Ave. Austin to Cicero",
"_north" : "41.909269",
"current_speed" : "19",
"current_speed2" : "17.43",
"_east" : "-87.747456",
"_south" : "41.866129"
}
, {
"region" : "Humboldt-Garfield Prk E/W",
"_region_id" : "10",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.747456",
"_description" : "Roosevelt to North Ave. Cicero to Rockwell",
"_north" : "41.909269",
"current_speed" : "27.27",
"current_speed2" : "12",
"_east" : "-87.691617",
"_south" : "41.866129"
}
, {
"region" : "West Town-Near West",
"_region_id" : "11",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.691617",
"_description" : "Roosevelt to North. Rockwell to Halsted",
"_north" : "41.910561",
"current_speed" : "25.91",
"current_speed2" : "27.86",
"_east" : "-87.647208",
"_south" : "41.866129"
}
, {
"region" : "Near North",
"_region_id" : "12",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.647208",
"_description" : "Wacker to North. Halsted to Michigan",
"_north" : "41.911401",
"current_speed" : "14",
"current_speed2" : "16.78",
"_east" : "-87.62308",
"_south" : "41.88886"
}
, {
"region" : "Chicago Loop",
"_region_id" : "13",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.647208",
"_description" : "Roosevelt to Wacker: Halsted to Michigan",
"_north" : "41.88886",
"current_speed" : "23.83",
"current_speed2" : "5.45",
"_east" : "-87.62308",
"_south" : "41.866129"
}
, {
"region" : "Lawndale N/S",
"_region_id" : "14",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.747456",
"_description" : "Pershing to Roosevel. Cicero to Western",
"_north" : "41.866129",
"current_speed" : "6",
"current_speed2" : "12",
"_east" : "-87.685372",
"_south" : "41.822792"
}
, {
"region" : "Bridgeport-McKinley-Lower West",
"_region_id" : "15",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.685372",
"_description" : "Pershing to Roosevel. Western to Stewart",
"_north" : "41.866129",
"current_speed" : "10",
"_east" : "-87.636322",
"_south" : "41.822792"
}
, {
"region" : "Near South-Douglas",
"_region_id" : "16",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.636322",
"_description" : "Pershing to Roosevelt. Stewart to Lake Shore",
"_north" : "41.866129",
"current_speed" : "23.86",
"current_speed2" : "15",
"_east" : "-87.597952",
"_south" : "41.822792"
}
, {
"region" : "Midway-Garfield Rdg-Clearing",
"_region_id" : "17",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.802188",
"_description" : "71st to Pershing. Halem to Cicero",
"_north" : "41.822792",
"current_speed" : "12",
"current_speed2" : "23.34",
"_east" : "-87.747456",
"_south" : "41.764066"
}
, {
"region" : "South West Side",
"_region_id" : "18",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.747456",
"_description" : "71st to Pershing. Cicero to Western",
"_north" : "41.822792",
"current_speed" : "27.55",
"current_speed2" : "2.3",
"_east" : "-87.68373",
"_south" : "41.764066"
}
, {
"region" : "New City-Englewood-W Englewood",
"_region_id" : "19",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.68373",
"_description" : "71st to Pershing. Western to Steward",
"_north" : "41.822792",
"current_speed" : "25.3",
"current_speed2" : "19",
"_east" : "-87.636322",
"_south" : "41.764066"
}
, {
"region" : "Fuller-Grand Blvd-Washington Park",
"_region_id" : "20",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.636322",
"_description" : "71st to Pershing. Steward to Cottage Grove",
"_north" : "41.822792",
"current_speed" : "30.68",
"current_speed2" : "13.4",
"_east" : "-87.606334",
"_south" : "41.764066"
}
, {
"region" : "Hyde Park-Kenwood-Woodlawn",
"_region_id" : "21",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.606334",
"_description" : "71st to Pershing. Cottage Grove to Lake Shore",
"_north" : "41.822792",
"current_speed" : "18",
"current_speed2" : "16.98",
"_east" : "-87.56626",
"_south" : "41.764066"
}
, {
"region" : "Ashburn",
"_region_id" : "22",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.747456",
"_description" : "91st to 71st. Cicero to Damen",
"_north" : "41.764066",
"current_speed" : "29.76",
"current_speed2" : "25.76",
"_east" : "-87.67298",
"_south" : "41.728472"
}
, {
"region" : "Auburn Gresham-Chatham",
"_region_id" : "23",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.67298",
"_description" : "91st to 71st. Damen to Cottage Grove",
"_north" : "41.764066",
"current_speed" : "25.23",
"current_speed2" : "14.23",
"_east" : "-87.606334",
"_south" : "41.728472"
}
, {
"region" : "South Shore-S Chicago-Avlon",
"_region_id" : "24",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.606334",
"_description" : "91st to 71st. Cottage Grove to Lake Shore",
"_north" : "41.764066",
"current_speed" : "24.6",
"current_speed2" : "10",
"_east" : "-87.526388",
"_south" : "41.728472"
}
, {
"region" : "Beverly-Mt Greenwood-Morgan Park",
"_region_id" : "25",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.747456",
"_description" : "119th to 91st. Cicero to Ashland",
"_north" : "41.728472",
"current_speed" : "14",
"current_speed2" : "16.87",
"_east" : "-87.662508",
"_south" : "41.677477"
}
, {
"region" : "Washington Hts-Roseland-Pullman",
"_region_id" : "26",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.662508",
"_description" : "119th to 91st. Ashland to Stony Island ",
"_north" : "41.728472",
"current_speed" : "25.91",
"current_speed2" : "19",
"_east" : "-87.584845",
"_south" : "41.677477"
}
, {
"region" : "South Deering-East Side",
"_region_id" : "27",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.584845",
"_description" : "119th to 91st. Stony Island to State Line ",
"_north" : "41.728472",
"current_speed" : "16",
"current_speed2" : "8.96",
"_east" : "-87.524436",
"_south" : "41.677477"
}
, {
"region" : "Riverdale-Hegewisch",
"_region_id" : "28",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.662508",
"_description" : "138th to 119th. Ashland to State Line",
"_north" : "41.677477",
"current_speed" : "23.5",
"current_speed2" : "5.7",
"_east" : "-87.524436",
"_south" : "41.644139"
}
, {
"region" : "Downtown Lakefront",
"_region_id" : "29",
"_last_updt" : "2013-05-23 03:40:04.0",
"_west" : "-87.62308",
"_description" : "Roosevelt to Oak. Michigan to Lake Shore",
"_north" : "41.911401",
"current_speed" : "12.8",
"current_speed2" : "21.3",
"_east" : "-87.595378",
"_south" : "41.866129"
}
]
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.000036479892814553375,0.000053474819158278986],"translate":[-87.85521780873033,41.586354954364225]},"objects":{"roads_primary":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0]},{"type":"LineString","arcs":[1]},{"type":"LineString","arcs":[2]},{"type":"LineString","arcs":[3]},{"type":"LineString","arcs":[4]},{"type":"LineString","arcs":[5],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[6,7,8]},{"type":"LineString","arcs":[9,10,11,12],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[13]},{"type":"LineString","arcs":[14]},{"type":"LineString","arcs":[15]},{"type":"LineString","arcs":[16]},{"type":"LineString","arcs":[17]},{"type":"LineString","arcs":[18]},{"type":"LineString","arcs":[19]},{"type":"LineString","arcs":[20]},{"type":"LineString","arcs":[21]},{"type":"LineString","arcs":[22]},{"type":"LineString","arcs":[23,24,25]},{"type":"LineString","arcs":[26,27,28]},{"type":"LineString","arcs":[29],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[30],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[31],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[32],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[33],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[34,35,36],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[37]},{"type":"LineString","arcs":[38]},{"type":"LineString","arcs":[39,40]},{"type":"LineString","arcs":[41]},{"type":"LineString","arcs":[42]},{"type":"LineString","arcs":[43,44]},{"type":"LineString","arcs":[45]},{"type":"LineString","arcs":[46]},{"type":"LineString","arcs":[47]},{"type":"LineString","arcs":[48]},{"type":"LineString","arcs":[49]},{"type":"LineString","arcs":[50,51]},{"type":"LineString","arcs":[52],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[53],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[54],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[55],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[56],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[57],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[58],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[59],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[60],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[61,62],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[63,64],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[65],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[66],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[67,68,69,70],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[71]},{"type":"LineString","arcs":[72,73,74,75],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[76]},{"type":"LineString","arcs":[77]},{"type":"LineString","arcs":[78],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[79],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[80],"properties":{"REF":"IL 83"}},{"type":"LineString","arcs":[81],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[82],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[83],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[84,85],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[86],"properties":{"REF":"IL 50; IL 83"}},{"type":"LineString","arcs":[87],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[88],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[89,90],"properties":{"REF":"IL 50;IL 83"}},{"type":"LineString","arcs":[91],"properties":{"REF":"IL 50; IL 83"}},{"type":"LineString","arcs":[92],"properties":{"REF":"IL 50; IL 83"}},{"type":"LineString","arcs":[93],"properties":{"REF":"IL 50; IL 83"}},{"type":"LineString","arcs":[94],"properties":{"REF":"IL 50; IL 83"}},{"type":"LineString","arcs":[95]},{"type":"LineString","arcs":[96],"properties":{"REF":"IL 83"}},{"type":"LineString","arcs":[97],"properties":{"REF":"IL 83"}},{"type":"LineString","arcs":[98],"properties":{"REF":"IL 83"}},{"type":"LineString","arcs":[99],"properties":{"REF":"IL 83"}},{"type":"LineString","arcs":[100,101],"properties":{"REF":"IL 83"}},{"type":"LineString","arcs":[102,103]},{"type":"LineString","arcs":[104]},{"type":"LineString","arcs":[105]},{"type":"LineString","arcs":[106]},{"type":"LineString","arcs":[107]},{"type":"LineString","arcs":[108]},{"type":"LineString","arcs":[109]},{"type":"LineString","arcs":[110]},{"type":"LineString","arcs":[111,112,113],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[114],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[115],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[116]},{"type":"LineString","arcs":[117]},{"type":"LineString","arcs":[118]},{"type":"LineString","arcs":[119]},{"type":"LineString","arcs":[120]},{"type":"LineString","arcs":[121]},{"type":"LineString","arcs":[122]},{"type":"LineString","arcs":[123]},{"type":"LineString","arcs":[124]},{"type":"LineString","arcs":[125]},{"type":"LineString","arcs":[126]},{"type":"LineString","arcs":[127]},{"type":"LineString","arcs":[128]},{"type":"LineString","arcs":[129]},{"type":"LineString","arcs":[130]},{"type":"LineString","arcs":[131]},{"type":"LineString","arcs":[132],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[133],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[134],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[135],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[136],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[137],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[138],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[139],"properties":{"REF":"US 12;US 20;US 41"}},{"type":"LineString","arcs":[140],"properties":{"REF":"US 12;US 20;US 41"}},{"type":"LineString","arcs":[141],"properties":{"REF":"US 12;US 20;US 41"}},{"type":"LineString","arcs":[142],"properties":{"REF":"US 12;US 20;US 41"}},{"type":"LineString","arcs":[143],"properties":{"REF":"US 12;US 20;US 41"}},{"type":"LineString","arcs":[144],"properties":{"REF":"US 12;US 20;US 41"}},{"type":"LineString","arcs":[145],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[146],"properties":{"REF":"US 12;US 20;US 41"}},{"type":"LineString","arcs":[147],"properties":{"REF":"US 12;US 20;US 41"}},{"type":"LineString","arcs":[148],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[149],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[150]},{"type":"LineString","arcs":[151,152],"properties":{"REF":"IL 19"}},{"type":"LineString","arcs":[153]},{"type":"LineString","arcs":[154]},{"type":"LineString","arcs":[155],"properties":{"REF":"IL 72"}},{"type":"LineString","arcs":[156],"properties":{"REF":"IL 72"}},{"type":"LineString","arcs":[157],"properties":{"REF":"IL 72"}},{"type":"LineString","arcs":[158]},{"type":"LineString","arcs":[159,160,161,162],"properties":{"REF":"IL 19"}},{"type":"LineString","arcs":[163],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[164],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[165],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[166,167,168]},{"type":"LineString","arcs":[169]},{"type":"LineString","arcs":[170],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[171,172],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[173]},{"type":"LineString","arcs":[174],"properties":{"REF":"IL 72"}},{"type":"LineString","arcs":[175],"properties":{"REF":"IL 72"}},{"type":"LineString","arcs":[176],"properties":{"REF":"IL 72"}},{"type":"LineString","arcs":[177],"properties":{"REF":"IL 72"}},{"type":"LineString","arcs":[178],"properties":{"REF":"IL 72"}},{"type":"LineString","arcs":[179],"properties":{"REF":"IL 72"}},{"type":"LineString","arcs":[180,181]},{"type":"LineString","arcs":[182],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[183],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[184],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[185,186],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[187],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[188]},{"type":"LineString","arcs":[189],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[190],"properties":{"REF":"IL 72"}},{"type":"LineString","arcs":[191],"properties":{"REF":"IL 72"}},{"type":"LineString","arcs":[192],"properties":{"REF":"IL 72"}},{"type":"LineString","arcs":[193]},{"type":"LineString","arcs":[194]},{"type":"LineString","arcs":[195]},{"type":"LineString","arcs":[196]},{"type":"LineString","arcs":[197]},{"type":"LineString","arcs":[198,199,200],"properties":{"REF":"IL 19"}},{"type":"LineString","arcs":[201],"properties":{"REF":"IL 19"}},{"type":"LineString","arcs":[202],"properties":{"REF":"IL 19"}},{"type":"LineString","arcs":[203],"properties":{"REF":"IL 19"}},{"type":"LineString","arcs":[204]},{"type":"LineString","arcs":[205,206]},{"type":"LineString","arcs":[207]},{"type":"LineString","arcs":[208]},{"type":"LineString","arcs":[209]},{"type":"LineString","arcs":[210]},{"type":"LineString","arcs":[211],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[212]},{"type":"LineString","arcs":[213]},{"type":"LineString","arcs":[214]},{"type":"LineString","arcs":[215],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[216],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[217]},{"type":"LineString","arcs":[218],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[219],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[220],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[221],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[222],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[223],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[224],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[225],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[226],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[227],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[228],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[229],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[230,231,232],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[233,234,235],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[236],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[237],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[238],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[239,240]},{"type":"LineString","arcs":[241,242],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[243]},{"type":"LineString","arcs":[244,245],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[246]},{"type":"LineString","arcs":[247],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[248],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[249,250,251],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[252,253,254],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[255]},{"type":"LineString","arcs":[256,257,258,259]},{"type":"LineString","arcs":[260,261,262]},{"type":"LineString","arcs":[263]},{"type":"LineString","arcs":[264]},{"type":"LineString","arcs":[265,266],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[267,268],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[269]},{"type":"LineString","arcs":[270]},{"type":"LineString","arcs":[271]},{"type":"LineString","arcs":[272]},{"type":"LineString","arcs":[273,274],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[275,276],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[277],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[278],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[279,280,281],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[282]},{"type":"LineString","arcs":[283]},{"type":"LineString","arcs":[284]},{"type":"LineString","arcs":[285]},{"type":"LineString","arcs":[286]},{"type":"LineString","arcs":[287,288]},{"type":"LineString","arcs":[289,290]},{"type":"LineString","arcs":[291]},{"type":"LineString","arcs":[292]},{"type":"LineString","arcs":[293]},{"type":"LineString","arcs":[294]},{"type":"LineString","arcs":[295,296,297,298]},{"type":"LineString","arcs":[299]},{"type":"LineString","arcs":[300],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[301],"properties":{"REF":"IL 58"}},{"type":"LineString","arcs":[302],"properties":{"REF":"IL 58"}},{"type":"LineString","arcs":[303],"properties":{"REF":"IL 58"}},{"type":"LineString","arcs":[304],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[305,306],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[307]},{"type":"LineString","arcs":[308]},{"type":"LineString","arcs":[309],"properties":{"REF":"IL 21"}},{"type":"LineString","arcs":[310],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[311,312,313]},{"type":"LineString","arcs":[314],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[315]},{"type":"LineString","arcs":[316]},{"type":"LineString","arcs":[317]},{"type":"LineString","arcs":[318],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[319],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[320,321,322],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[323,324]},{"type":"LineString","arcs":[325],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[326,327,328,329]},{"type":"LineString","arcs":[330]},{"type":"LineString","arcs":[331]},{"type":"LineString","arcs":[332]},{"type":"LineString","arcs":[333]},{"type":"LineString","arcs":[334]},{"type":"LineString","arcs":[335]},{"type":"LineString","arcs":[336]},{"type":"LineString","arcs":[337,338]},{"type":"LineString","arcs":[339]},{"type":"LineString","arcs":[340]},{"type":"LineString","arcs":[341]},{"type":"LineString","arcs":[342]},{"type":"LineString","arcs":[343]},{"type":"LineString","arcs":[344,345],"properties":{"REF":"IL 19"}},{"type":"LineString","arcs":[346],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[347],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[348,349]},{"type":"LineString","arcs":[350],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[351,352]},{"type":"LineString","arcs":[353]},{"type":"LineString","arcs":[354],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[355]},{"type":"LineString","arcs":[356,357]},{"type":"LineString","arcs":[358]},{"type":"LineString","arcs":[359]},{"type":"LineString","arcs":[360]},{"type":"LineString","arcs":[361]},{"type":"LineString","arcs":[362]},{"type":"LineString","arcs":[363]},{"type":"LineString","arcs":[364]},{"type":"LineString","arcs":[365],"properties":{"REF":"US 14"}},{"type":"LineString","arcs":[366]},{"type":"LineString","arcs":[367],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[368],"properties":{"REF":"US 14/IL 43"}},{"type":"LineString","arcs":[369]},{"type":"LineString","arcs":[370]},{"type":"LineString","arcs":[371]},{"type":"LineString","arcs":[372],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[373]},{"type":"LineString","arcs":[374],"properties":{"REF":"IL 58"}},{"type":"LineString","arcs":[375],"properties":{"REF":"IL 43;IL 58"}},{"type":"LineString","arcs":[376]},{"type":"LineString","arcs":[377]},{"type":"LineString","arcs":[378]},{"type":"LineString","arcs":[379,380]},{"type":"LineString","arcs":[381,382]},{"type":"LineString","arcs":[383],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[384]},{"type":"LineString","arcs":[385]},{"type":"LineString","arcs":[386],"properties":{"REF":"IL 58"}},{"type":"LineString","arcs":[387]},{"type":"LineString","arcs":[388]},{"type":"LineString","arcs":[389]},{"type":"LineString","arcs":[390]},{"type":"LineString","arcs":[391]},{"type":"LineString","arcs":[392,393]},{"type":"LineString","arcs":[394],"properties":{"REF":"IL 1"}},{"type":"LineString","arcs":[395],"properties":{"REF":"IL 1"}},{"type":"LineString","arcs":[396,397],"properties":{"REF":"IL 1"}},{"type":"LineString","arcs":[398]},{"type":"LineString","arcs":[399,400],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[401],"properties":{"REF":"IL 1"}},{"type":"LineString","arcs":[402]},{"type":"LineString","arcs":[403]},{"type":"LineString","arcs":[404],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[405],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[406],"properties":{"REF":"IL 1"}},{"type":"LineString","arcs":[407],"properties":{"REF":"IL 1"}},{"type":"LineString","arcs":[408],"properties":{"REF":"IL 1"}},{"type":"LineString","arcs":[409],"properties":{"REF":"IL 1"}},{"type":"LineString","arcs":[410]},{"type":"LineString","arcs":[411]},{"type":"LineString","arcs":[412]},{"type":"LineString","arcs":[413]},{"type":"LineString","arcs":[414]},{"type":"LineString","arcs":[415],"properties":{"REF":"IL 1"}},{"type":"LineString","arcs":[416],"properties":{"REF":"IL 1"}},{"type":"LineString","arcs":[417],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[418]},{"type":"LineString","arcs":[419,420],"properties":{"REF":"IL 7"}},{"type":"LineString","arcs":[421,422],"properties":{"REF":"IL 83"}},{"type":"LineString","arcs":[423,424,425],"properties":{"REF":"IL 83"}},{"type":"LineString","arcs":[426],"properties":{"REF":"IL 83"}},{"type":"LineString","arcs":[427,428],"properties":{"REF":"IL 7"}},{"type":"LineString","arcs":[429],"properties":{"REF":"IL 7"}},{"type":"LineString","arcs":[430]},{"type":"LineString","arcs":[431]},{"type":"LineString","arcs":[432,433]},{"type":"LineString","arcs":[434,435,436,437,438,439],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[440],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[441,442],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[443,444],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[445],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[446],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[447],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[448]},{"type":"LineString","arcs":[449],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[450,451],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[452],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[453],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[454]},{"type":"LineString","arcs":[455]},{"type":"LineString","arcs":[456]},{"type":"LineString","arcs":[457]},{"type":"LineString","arcs":[458]},{"type":"LineString","arcs":[459]},{"type":"LineString","arcs":[460]},{"type":"LineString","arcs":[461]},{"type":"LineString","arcs":[462]},{"type":"LineString","arcs":[463]},{"type":"LineString","arcs":[464]},{"type":"LineString","arcs":[465]},{"type":"LineString","arcs":[466]},{"type":"LineString","arcs":[467]},{"type":"LineString","arcs":[468],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[469]},{"type":"LineString","arcs":[470,471,472,473,474],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[475]},{"type":"LineString","arcs":[476]},{"type":"LineString","arcs":[477]},{"type":"LineString","arcs":[478]},{"type":"LineString","arcs":[479]},{"type":"LineString","arcs":[480]},{"type":"LineString","arcs":[481,482]},{"type":"LineString","arcs":[483]},{"type":"LineString","arcs":[484]},{"type":"LineString","arcs":[485]},{"type":"LineString","arcs":[486]},{"type":"LineString","arcs":[487]},{"type":"LineString","arcs":[488,489,490]},{"type":"LineString","arcs":[491,492]},{"type":"LineString","arcs":[493]},{"type":"LineString","arcs":[494]},{"type":"LineString","arcs":[495,496,497]},{"type":"LineString","arcs":[498,499,500]},{"type":"LineString","arcs":[501]},{"type":"LineString","arcs":[502]},{"type":"LineString","arcs":[503]},{"type":"LineString","arcs":[504,505]},{"type":"LineString","arcs":[506,507]},{"type":"LineString","arcs":[508]},{"type":"LineString","arcs":[509,510,511]},{"type":"LineString","arcs":[512]},{"type":"LineString","arcs":[513,514,515]},{"type":"LineString","arcs":[516,517]},{"type":"LineString","arcs":[518,519]},{"type":"LineString","arcs":[520,521]},{"type":"LineString","arcs":[522]},{"type":"LineString","arcs":[523]},{"type":"LineString","arcs":[524]},{"type":"LineString","arcs":[525]},{"type":"LineString","arcs":[526]},{"type":"LineString","arcs":[527]},{"type":"LineString","arcs":[528]},{"type":"LineString","arcs":[529]},{"type":"LineString","arcs":[530]},{"type":"LineString","arcs":[531]},{"type":"LineString","arcs":[532]},{"type":"LineString","arcs":[533]},{"type":"LineString","arcs":[534]},{"type":"LineString","arcs":[535,536]},{"type":"LineString","arcs":[537,538]},{"type":"LineString","arcs":[539]},{"type":"LineString","arcs":[540]},{"type":"LineString","arcs":[541]},{"type":"LineString","arcs":[542,543]},{"type":"LineString","arcs":[544,545,546]},{"type":"LineString","arcs":[547,548]},{"type":"LineString","arcs":[549,550,551]},{"type":"LineString","arcs":[552,553,554]},{"type":"LineString","arcs":[555]},{"type":"LineString","arcs":[556]},{"type":"LineString","arcs":[557,558]},{"type":"LineString","arcs":[559]},{"type":"LineString","arcs":[560]},{"type":"LineString","arcs":[561]},{"type":"LineString","arcs":[562]},{"type":"LineString","arcs":[563]},{"type":"LineString","arcs":[564]},{"type":"LineString","arcs":[565]},{"type":"LineString","arcs":[566,567,568,569]},{"type":"LineString","arcs":[570,571,572,573]},{"type":"LineString","arcs":[574]},{"type":"LineString","arcs":[575]},{"type":"LineString","arcs":[576,577]},{"type":"LineString","arcs":[578]},{"type":"LineString","arcs":[579]},{"type":"LineString","arcs":[580]},{"type":"LineString","arcs":[581]},{"type":"LineString","arcs":[582]},{"type":"LineString","arcs":[583]},{"type":"LineString","arcs":[584,585]},{"type":"LineString","arcs":[586,587]},{"type":"LineString","arcs":[588,589]},{"type":"LineString","arcs":[590,591]},{"type":"LineString","arcs":[592]},{"type":"LineString","arcs":[593]},{"type":"LineString","arcs":[594]},{"type":"LineString","arcs":[595]},{"type":"LineString","arcs":[596]},{"type":"LineString","arcs":[597]},{"type":"LineString","arcs":[598,599,600]},{"type":"LineString","arcs":[601]},{"type":"LineString","arcs":[602]},{"type":"LineString","arcs":[603]},{"type":"LineString","arcs":[604,605,606,607,608,609]},{"type":"LineString","arcs":[610]},{"type":"LineString","arcs":[611]},{"type":"LineString","arcs":[612]},{"type":"LineString","arcs":[613]},{"type":"LineString","arcs":[614],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[615],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[616],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[617],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[618],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[619],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[620,621]},{"type":"LineString","arcs":[622,623,624,625]},{"type":"LineString","arcs":[626],"properties":{"REF":"IL 171"}},{"type":"LineString","arcs":[627,628,629],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[630,631,632]},{"type":"LineString","arcs":[633,634,635]},{"type":"LineString","arcs":[636]},{"type":"LineString","arcs":[637]},{"type":"LineString","arcs":[638]},{"type":"LineString","arcs":[639]},{"type":"LineString","arcs":[640]},{"type":"LineString","arcs":[641]},{"type":"LineString","arcs":[642]},{"type":"LineString","arcs":[643]},{"type":"LineString","arcs":[644],"properties":{"REF":"US 34"}},{"type":"LineString","arcs":[645,646,647],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[648],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[649]},{"type":"LineString","arcs":[650]},{"type":"LineString","arcs":[651]},{"type":"LineString","arcs":[652],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[653],"properties":{"REF":"US 34"}},{"type":"LineString","arcs":[654,655]},{"type":"LineString","arcs":[656,657]},{"type":"LineString","arcs":[658]},{"type":"LineString","arcs":[659]},{"type":"LineString","arcs":[660]},{"type":"LineString","arcs":[661]},{"type":"LineString","arcs":[662]},{"type":"LineString","arcs":[663,664]},{"type":"LineString","arcs":[665]},{"type":"LineString","arcs":[666,667]},{"type":"LineString","arcs":[668]},{"type":"LineString","arcs":[669]},{"type":"LineString","arcs":[670]},{"type":"LineString","arcs":[671]},{"type":"LineString","arcs":[672]},{"type":"LineString","arcs":[673]},{"type":"LineString","arcs":[674]},{"type":"LineString","arcs":[675]},{"type":"LineString","arcs":[676]},{"type":"LineString","arcs":[677]},{"type":"LineString","arcs":[678,679]},{"type":"LineString","arcs":[680]},{"type":"LineString","arcs":[681]},{"type":"LineString","arcs":[682]},{"type":"LineString","arcs":[683,684]},{"type":"LineString","arcs":[685]},{"type":"LineString","arcs":[686],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[687],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[688],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[689],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[690]},{"type":"LineString","arcs":[691]},{"type":"LineString","arcs":[692,693]},{"type":"LineString","arcs":[694,695,696,697]},{"type":"LineString","arcs":[698,699,700]},{"type":"LineString","arcs":[701,702]},{"type":"LineString","arcs":[703]},{"type":"LineString","arcs":[704,705,706,707]},{"type":"LineString","arcs":[708]},{"type":"LineString","arcs":[709]},{"type":"LineString","arcs":[710,711]},{"type":"LineString","arcs":[712]},{"type":"LineString","arcs":[713,714],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[715]},{"type":"LineString","arcs":[716]},{"type":"LineString","arcs":[717,718,719,720]},{"type":"LineString","arcs":[721]},{"type":"LineString","arcs":[722,723,724]},{"type":"LineString","arcs":[725]},{"type":"LineString","arcs":[726]},{"type":"LineString","arcs":[727]},{"type":"LineString","arcs":[728,729]},{"type":"LineString","arcs":[730,731]},{"type":"LineString","arcs":[732]},{"type":"LineString","arcs":[733,734]},{"type":"LineString","arcs":[735]},{"type":"LineString","arcs":[736]},{"type":"LineString","arcs":[737]},{"type":"LineString","arcs":[738]},{"type":"LineString","arcs":[739]},{"type":"LineString","arcs":[740]},{"type":"LineString","arcs":[741]},{"type":"LineString","arcs":[742]},{"type":"LineString","arcs":[743]},{"type":"LineString","arcs":[744]},{"type":"LineString","arcs":[745]},{"type":"LineString","arcs":[746]},{"type":"LineString","arcs":[747,748,749]},{"type":"LineString","arcs":[750,751,752]},{"type":"LineString","arcs":[753,754,755]},{"type":"LineString","arcs":[756]},{"type":"LineString","arcs":[757]},{"type":"LineString","arcs":[758]},{"type":"LineString","arcs":[759]},{"type":"LineString","arcs":[760]},{"type":"LineString","arcs":[761]},{"type":"LineString","arcs":[762]},{"type":"LineString","arcs":[763,764]},{"type":"LineString","arcs":[765]},{"type":"LineString","arcs":[766]},{"type":"LineString","arcs":[767,768]},{"type":"LineString","arcs":[769,770]},{"type":"LineString","arcs":[771,772]},{"type":"LineString","arcs":[773]},{"type":"LineString","arcs":[774]},{"type":"LineString","arcs":[775,776]},{"type":"LineString","arcs":[777,778,779]},{"type":"LineString","arcs":[780]},{"type":"LineString","arcs":[781,782,783]},{"type":"LineString","arcs":[784]},{"type":"LineString","arcs":[785]},{"type":"LineString","arcs":[786]},{"type":"LineString","arcs":[787]},{"type":"LineString","arcs":[788,789]},{"type":"LineString","arcs":[790]},{"type":"LineString","arcs":[791,792]},{"type":"LineString","arcs":[793,794,795]},{"type":"LineString","arcs":[796,797,798]},{"type":"LineString","arcs":[799,800,801]},{"type":"LineString","arcs":[802,803,804,805]},{"type":"LineString","arcs":[806]},{"type":"LineString","arcs":[807]},{"type":"LineString","arcs":[808]},{"type":"LineString","arcs":[809]},{"type":"LineString","arcs":[810]},{"type":"LineString","arcs":[811,812,813]},{"type":"LineString","arcs":[814]},{"type":"LineString","arcs":[815,816]},{"type":"LineString","arcs":[817]},{"type":"LineString","arcs":[818]},{"type":"LineString","arcs":[819]},{"type":"LineString","arcs":[820]},{"type":"LineString","arcs":[821,822,823]},{"type":"LineString","arcs":[824]},{"type":"LineString","arcs":[825]},{"type":"LineString","arcs":[826],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[827],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[828]},{"type":"LineString","arcs":[829]},{"type":"LineString","arcs":[830]},{"type":"LineString","arcs":[831,832]},{"type":"LineString","arcs":[833,834]},{"type":"LineString","arcs":[835,836]},{"type":"LineString","arcs":[837]},{"type":"LineString","arcs":[838]},{"type":"LineString","arcs":[839]},{"type":"LineString","arcs":[840]},{"type":"LineString","arcs":[841,842]},{"type":"LineString","arcs":[843,844]},{"type":"LineString","arcs":[845,846]},{"type":"LineString","arcs":[847]},{"type":"LineString","arcs":[848]},{"type":"LineString","arcs":[849]},{"type":"LineString","arcs":[850]},{"type":"LineString","arcs":[851]},{"type":"LineString","arcs":[852]},{"type":"LineString","arcs":[853]},{"type":"LineString","arcs":[854]},{"type":"LineString","arcs":[855,856,857]},{"type":"LineString","arcs":[858]},{"type":"LineString","arcs":[859]},{"type":"LineString","arcs":[860,861,862]},{"type":"LineString","arcs":[863]},{"type":"LineString","arcs":[864]},{"type":"LineString","arcs":[865]},{"type":"LineString","arcs":[866]},{"type":"LineString","arcs":[867]},{"type":"LineString","arcs":[868]},{"type":"LineString","arcs":[869,870],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[871,872],"properties":{"REF":"IL 64"}},{"type":"LineString","arcs":[873,874,875]},{"type":"LineString","arcs":[876]},{"type":"LineString","arcs":[877]},{"type":"LineString","arcs":[878,879]},{"type":"LineString","arcs":[880,881]},{"type":"LineString","arcs":[882]},{"type":"LineString","arcs":[883]},{"type":"LineString","arcs":[884]},{"type":"LineString","arcs":[885]},{"type":"LineString","arcs":[886]},{"type":"LineString","arcs":[887,888,889]},{"type":"LineString","arcs":[890]},{"type":"LineString","arcs":[891,892]},{"type":"LineString","arcs":[893,894]},{"type":"LineString","arcs":[895]},{"type":"LineString","arcs":[896,897,898]},{"type":"LineString","arcs":[899]},{"type":"LineString","arcs":[900]},{"type":"LineString","arcs":[901]},{"type":"LineString","arcs":[902]},{"type":"LineString","arcs":[903]},{"type":"LineString","arcs":[904]},{"type":"LineString","arcs":[905]},{"type":"LineString","arcs":[906,907]},{"type":"LineString","arcs":[908,909]},{"type":"LineString","arcs":[910,911]},{"type":"LineString","arcs":[912,913]},{"type":"LineString","arcs":[914]},{"type":"LineString","arcs":[915,916]},{"type":"LineString","arcs":[917,918,919,920]},{"type":"LineString","arcs":[921]},{"type":"LineString","arcs":[922]},{"type":"LineString","arcs":[923]},{"type":"LineString","arcs":[924,925,926]},{"type":"LineString","arcs":[927,928]},{"type":"LineString","arcs":[929,930]},{"type":"LineString","arcs":[931]},{"type":"LineString","arcs":[932,933,934]},{"type":"LineString","arcs":[935,936,937]},{"type":"LineString","arcs":[938]},{"type":"LineString","arcs":[939]},{"type":"LineString","arcs":[940]},{"type":"LineString","arcs":[941,942]},{"type":"LineString","arcs":[943,944]},{"type":"LineString","arcs":[945,946]},{"type":"LineString","arcs":[947,948]},{"type":"LineString","arcs":[949,950,951]},{"type":"LineString","arcs":[952,953,954]},{"type":"LineString","arcs":[955,956]},{"type":"LineString","arcs":[957]},{"type":"LineString","arcs":[958]},{"type":"LineString","arcs":[959,960,961]},{"type":"LineString","arcs":[962]},{"type":"LineString","arcs":[963]},{"type":"LineString","arcs":[964]},{"type":"LineString","arcs":[965]},{"type":"LineString","arcs":[966]},{"type":"LineString","arcs":[967]},{"type":"LineString","arcs":[968]},{"type":"LineString","arcs":[969]},{"type":"LineString","arcs":[970,971,972]},{"type":"LineString","arcs":[973,974,975]},{"type":"LineString","arcs":[976]},{"type":"LineString","arcs":[977]},{"type":"LineString","arcs":[978,979,980]},{"type":"LineString","arcs":[981]},{"type":"LineString","arcs":[982]},{"type":"LineString","arcs":[983]},{"type":"LineString","arcs":[984]},{"type":"LineString","arcs":[985]},{"type":"LineString","arcs":[986]},{"type":"LineString","arcs":[987]},{"type":"LineString","arcs":[988]},{"type":"LineString","arcs":[989]},{"type":"LineString","arcs":[990]},{"type":"LineString","arcs":[991]},{"type":"LineString","arcs":[992]},{"type":"LineString","arcs":[993]},{"type":"LineString","arcs":[994]},{"type":"LineString","arcs":[995]},{"type":"LineString","arcs":[996]},{"type":"LineString","arcs":[997]},{"type":"LineString","arcs":[998]},{"type":"LineString","arcs":[999]},{"type":"LineString","arcs":[1000]},{"type":"LineString","arcs":[1001,1002]},{"type":"LineString","arcs":[1003,1004]},{"type":"LineString","arcs":[1005,1006]},{"type":"LineString","arcs":[1007,1008]},{"type":"LineString","arcs":[1009]},{"type":"LineString","arcs":[1010],"properties":{"REF":"US 34"}},{"type":"LineString","arcs":[1011],"properties":{"REF":"IL 171"}},{"type":"LineString","arcs":[1012]},{"type":"LineString","arcs":[1013],"properties":{"REF":"IL 171"}},{"type":"LineString","arcs":[1014],"properties":{"REF":"IL 171"}},{"type":"LineString","arcs":[1015]},{"type":"LineString","arcs":[1016],"properties":{"REF":"IL 171"}},{"type":"LineString","arcs":[1017]},{"type":"LineString","arcs":[1018],"properties":{"REF":"IL 171"}},{"type":"LineString","arcs":[1019]},{"type":"LineString","arcs":[1020]},{"type":"LineString","arcs":[1021]},{"type":"LineString","arcs":[1022]},{"type":"LineString","arcs":[1023,1024]},{"type":"LineString","arcs":[1025,1026]},{"type":"LineString","arcs":[1027],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1028],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[1029],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[1030],"properties":{"REF":"IL 171"}},{"type":"LineString","arcs":[1031],"properties":{"REF":"IL 171"}},{"type":"LineString","arcs":[1032],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1033],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1034],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1035],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1036]},{"type":"LineString","arcs":[1037]},{"type":"LineString","arcs":[1038,1039]},{"type":"LineString","arcs":[1040],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1041,1042],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1043],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1044]},{"type":"LineString","arcs":[1045]},{"type":"LineString","arcs":[1046]},{"type":"LineString","arcs":[1047]},{"type":"LineString","arcs":[1048]},{"type":"LineString","arcs":[1049],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[1050]},{"type":"LineString","arcs":[1051]},{"type":"LineString","arcs":[1052]},{"type":"LineString","arcs":[1053],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1054],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1055],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1056],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1057],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1058],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1059],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1060],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1061],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1062],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1063],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1064],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1065],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1066],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1067]},{"type":"LineString","arcs":[1068]},{"type":"LineString","arcs":[1069],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1070],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1071,1072],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1073],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[1074],"properties":{"REF":"US 34"}},{"type":"LineString","arcs":[1075],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1076]},{"type":"LineString","arcs":[1077]},{"type":"LineString","arcs":[1078],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1079],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[1080],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[1081],"properties":{"REF":"IL 171"}},{"type":"LineString","arcs":[1082],"properties":{"REF":"IL 171"}},{"type":"LineString","arcs":[1083,1084]},{"type":"LineString","arcs":[1085,1086],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[1087]},{"type":"LineString","arcs":[1088],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[1089],"properties":{"REF":"IL 50"}},{"type":"LineString","arcs":[1090]},{"type":"LineString","arcs":[1091]},{"type":"LineString","arcs":[1092]},{"type":"LineString","arcs":[1093,1094]},{"type":"LineString","arcs":[1095,1096]},{"type":"LineString","arcs":[1097,1098,1099]},{"type":"LineString","arcs":[1100]},{"type":"LineString","arcs":[1101]},{"type":"LineString","arcs":[1102]},{"type":"LineString","arcs":[1103]},{"type":"LineString","arcs":[1104]},{"type":"LineString","arcs":[1105]},{"type":"LineString","arcs":[1106]},{"type":"LineString","arcs":[1107,1108]},{"type":"LineString","arcs":[1109]},{"type":"LineString","arcs":[1110]},{"type":"LineString","arcs":[1111]},{"type":"LineString","arcs":[1112]},{"type":"LineString","arcs":[1113]},{"type":"LineString","arcs":[1114],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[1115],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[1116],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[1117],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[1118]},{"type":"LineString","arcs":[1119]},{"type":"LineString","arcs":[1120]},{"type":"LineString","arcs":[1121]},{"type":"LineString","arcs":[1122]},{"type":"LineString","arcs":[1123]},{"type":"LineString","arcs":[1124]},{"type":"LineString","arcs":[1125]},{"type":"LineString","arcs":[1126]},{"type":"LineString","arcs":[1127]},{"type":"LineString","arcs":[1128],"properties":{"REF":"IL 58"}},{"type":"LineString","arcs":[1129]},{"type":"LineString","arcs":[1130]},{"type":"LineString","arcs":[1131,1132,1133],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1134]},{"type":"LineString","arcs":[1135,1136],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[1137]},{"type":"LineString","arcs":[1138]},{"type":"LineString","arcs":[1139],"properties":{"REF":"IL 58"}},{"type":"LineString","arcs":[1140],"properties":{"REF":"IL 58"}},{"type":"LineString","arcs":[1141],"properties":{"REF":"IL 58"}},{"type":"LineString","arcs":[1142],"properties":{"REF":"IL 58"}},{"type":"LineString","arcs":[1143,1144,1145],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[1146]},{"type":"LineString","arcs":[1147]},{"type":"LineString","arcs":[1148]},{"type":"LineString","arcs":[1149]},{"type":"LineString","arcs":[1150]},{"type":"LineString","arcs":[1151],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1152],"properties":{"REF":"US 12;US 20;US 41"}},{"type":"LineString","arcs":[1153],"properties":{"REF":"US 12;US 20"}},{"type":"LineString","arcs":[1154],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[1155],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[1156],"properties":{"REF":"US 12;US 20;US 41"}},{"type":"LineString","arcs":[1157],"properties":{"REF":"US 12;US 20;US 41"}},{"type":"LineString","arcs":[1158],"properties":{"REF":"US 12;US 20;US 41"}},{"type":"LineString","arcs":[1159]},{"type":"LineString","arcs":[1160,1161,1162],"properties":{"REF":"US 41"}},{"type":"LineString","arcs":[1163],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1164,1165],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1166],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1167,1168],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1169],"properties":{"REF":"IL 43"}},{"type":"LineString","arcs":[1170]},{"type":"LineString","arcs":[1171]},{"type":"LineString","arcs":[1172]},{"type":"LineString","arcs":[1173]},{"type":"LineString","arcs":[1174]},{"type":"LineString","arcs":[1175]},{"type":"LineString","arcs":[1176]},{"type":"LineString","arcs":[1177]},{"type":"LineString","arcs":[1178],"properties":{"REF":"IL 83"}}]}},"arcs":[[[2496,9224],[15,-1],[4,0],[55,-1],[12,0],[49,-1]],[[2631,9223],[-9,0],[-35,1],[-17,0],[-59,0],[-7,0],[-8,0]],[[2665,9223],[-34,0]],[[2631,9221],[32,0]],[[2483,9224],[-43,0],[-21,0],[-117,2],[-26,1],[-81,0],[-27,0],[-26,1],[-16,0]],[[2718,9286],[-13,13],[-7,7],[-8,10],[-8,8]],[[4783,1700],[0,31],[-1,4],[-1,33],[-1,12],[-1,22],[-1,34],[-1,11],[-1,18],[0,5],[-1,9],[0,5],[0,1],[-1,19],[0,8],[-1,23],[-1,18],[0,19],[-1,10],[0,11],[-1,13],[0,7],[-2,27],[0,22],[-1,12],[0,10],[-2,24],[-1,34],[-2,34],[-2,34],[-1,26],[0,8],[-2,35],[-1,34],[-2,34],[-2,34],[-1,33],[0,2],[-1,22],[0,11],[-1,6],[0,3],[0,4],[0,3],[0,3],[-1,15],[-2,34]],[[4746,2517],[0,16],[-1,18],[0,16],[-1,17],[-1,14],[-3,55],[-1,34],[-2,36],[-3,67],[-1,12],[-3,90],[-1,34],[0,34],[-1,9],[0,25],[-1,18],[-1,16],[0,17],[-1,17],[-1,34],[-2,35],[-2,30],[0,3],[0,5],[-1,39],[-1,22]],[[4718,3230],[0,3],[-1,34],[-2,34],[-1,34],[-1,34],[-1,34],[-2,34],[-1,34],[-2,34],[-1,34],[-2,34],[-1,26],[0,8],[-1,34],[-2,34],[-1,35],[0,7],[-2,26],[0,9],[-1,26],[-1,34],[-2,34],[0,5],[-1,21],[0,5],[0,3]],[[4746,2517],[-5,1],[-27,0],[-36,0],[-67,-1],[-136,-1],[-68,0],[-33,-1],[-34,0],[-34,0],[-34,0],[-24,0],[-8,0],[-36,-1],[-33,0],[-33,-1],[-34,0],[-33,0],[-34,-1],[-33,0],[-33,0],[-34,0],[-33,-1],[-34,0],[-33,0],[-34,-1],[-34,0],[-33,0],[-33,0],[-33,-1],[-73,-1],[-61,-1],[-133,-2],[-67,-1],[-33,0],[-33,-1],[-100,-1],[-34,0]],[[3136,2502],[-157,-2],[-24,0],[-18,0],[-34,-1],[-33,0],[-38,-1],[-22,0],[-42,-1],[-34,0],[-35,-1],[-31,0],[-34,0],[-33,-1],[-34,0],[-33,0],[-33,0],[-34,0],[-33,0],[-50,0]],[[2384,2495],[-3,-1]],[[2381,2494],[-49,1],[-32,-1],[-34,0],[-68,0],[-67,-1],[-68,0],[-132,-2]],[[7386,3064],[0,-4],[0,-4],[-1,-7],[-1,-11],[-1,-6],[1,-12],[1,-34],[0,-34],[1,-17],[0,-17],[1,-17],[1,-17],[0,-17],[1,-17],[0,-17],[1,-17],[1,-35],[1,-34],[1,-34],[1,-34],[1,-34],[1,-15],[1,-19],[0,-16],[0,-4],[1,-5],[2,-9],[2,-6],[1,-6]],[[7403,2565],[1,5],[2,7],[1,8],[1,8],[0,4],[1,14],[-1,17],[0,17],[-1,17],[0,17],[-2,34],[0,36],[-2,32],[-1,35],[-1,17],[0,17],[-1,17],[0,17],[-1,17],[-1,17],[0,17],[-1,17],[0,34],[-2,34],[-1,7],[0,4],[-1,6],[-1,8],[-1,6],[-1,7],[-1,5]],[[5966,2914],[-13,-10],[-5,-3],[-29,-24],[-6,-6],[-9,-7],[-4,-2],[-4,-3],[-7,-2],[-20,-8],[-13,-5],[-10,-4],[-23,-8],[-23,-9]],[[5987,2931],[-21,-17]],[[4718,3230],[-32,-10],[-33,-10],[-30,-9],[-3,-1],[-2,0],[-26,-8],[-47,-14],[-81,-25],[-89,-27],[-20,-6],[-67,-20],[-33,-10],[-33,-10],[-33,-10],[-8,-4],[-7,-3],[-16,-7],[-18,-10],[-39,-21],[-43,-23],[-33,-17],[-29,-16],[-3,-1],[-59,-33],[-7,-4],[-26,-14],[-32,-18],[-7,-3],[-26,-14],[-33,-18],[-6,-3],[-26,-14],[-39,-21],[-27,-14],[-37,-20],[-18,-10],[-10,-5]],[[5253,3203],[0,-10],[0,-24],[2,-34],[1,-34],[1,-34],[1,-34],[1,-35],[2,-33],[1,-34],[2,-34],[1,-34],[1,-35],[2,-34],[0,-9],[1,-24],[1,-34],[1,-1],[0,-1],[0,-2],[1,-31],[1,-34],[1,-35],[1,-33],[1,-18],[1,-16],[1,-34]],[[5998,2940],[-11,-9]],[[6001,2943],[-3,-3]],[[6112,3178],[-10,-14],[-14,-21],[-6,-9],[-2,-2],[-1,-3],[-3,-8],[-4,-9],[-9,-24],[-4,-13],[-8,-19],[-2,-5],[-3,-10],[-14,-34],[-7,-21],[-6,-13],[-1,-3],[-6,-17],[-1,-2],[-3,-3],[-7,-5]],[[5252,3208],[1,-5]],[[2498,2560],[-34,-6],[-14,-5],[-13,-7],[-56,-48]],[[2381,2494],[-3,-2]],[[2378,2492],[-45,-28],[-30,-19],[-34,-21],[-65,-38],[-22,-11],[-29,-19],[-14,-9],[-15,-8],[-26,-17],[-8,-5],[-9,-5],[-7,-5],[-17,-8]],[[2058,2298],[16,7],[29,17],[27,17],[8,5],[20,12],[46,28],[65,39],[34,20],[30,19],[48,30]],[[2381,2492],[3,3]],[[2384,2495],[58,46],[12,7],[10,3],[34,9]],[[6608,2535],[34,0],[33,1],[33,0],[33,0],[33,1],[33,0],[49,1],[18,0],[11,-1]],[[6885,2537],[21,1],[3,0]],[[6318,2531],[19,0]],[[6346,2531],[-6,0],[-3,0]],[[6346,2531],[41,1],[45,1],[43,0],[34,1],[33,0],[33,0],[33,1]],[[5444,2523],[34,1],[33,0],[34,0],[33,1],[30,0],[9,0],[2,0],[25,0],[35,0],[16,0],[17,1],[16,0],[17,0],[17,0],[16,0],[17,0],[16,0]],[[5811,2526],[34,1],[17,0],[16,0],[16,0],[18,0],[33,1],[33,0],[16,0],[17,0],[17,1],[15,0],[22,0],[11,0],[1,0],[33,0],[5,0],[29,1],[33,0],[15,0],[18,0],[34,1],[33,0],[33,0]],[[6310,2531],[5,0],[3,0]],[[6324,3079],[-1,11],[-1,22],[-1,34],[-2,27],[0,8],[-1,32],[-1,15],[-2,20],[0,34],[0,35],[0,9],[-1,22],[0,3],[0,4],[0,29],[-2,28],[-1,7]],[[6268,3406],[-14,-20],[0,-3]],[[6267,3419],[0,-8],[1,-5]],[[6268,3406],[0,-12],[-1,-2]],[[6273,3419],[-6,0]],[[6302,3419],[-29,0]],[[6302,3419],[5,0]],[[6307,3419],[4,0]],[[6305,3485],[1,-32],[1,-34]],[[6311,3419],[0,34],[-1,32]],[[6308,2568],[1,-3],[0,-14],[1,-11],[0,-9]],[[6254,3383],[5,2],[8,7]],[[6254,3383],[-1,-1],[-22,-33],[-7,-10],[-17,-24],[-24,-34],[-24,-35],[-23,-34],[-5,-7],[-19,-27]],[[5800,2823],[1,-20],[0,-3],[0,-4],[1,-29],[1,-33],[1,-33],[1,-17],[1,-21],[2,-35],[1,-33],[0,-3],[1,-31],[0,-5],[1,-30]],[[5811,2526],[1,-33],[0,-6],[2,-28],[0,-4],[2,-31],[0,-16]],[[1255,2475],[8,-1],[31,1],[30,0],[39,0],[35,1],[18,0],[40,1],[24,2],[36,4],[16,1],[14,0],[21,0],[105,1]],[[1644,2487],[-31,0],[-49,0],[-16,-1],[-14,0],[-16,-1],[-30,-3],[-19,-2],[-15,-1],[-15,-1],[-19,0],[-23,0],[-33,0],[-50,-1],[-40,0],[-13,-1],[-6,-1]],[[1549,2492],[2,-12]],[[1551,2480],[0,-3],[1,-27]],[[1552,2450],[1,-12]],[[1556,2480],[-1,12]],[[1558,2449],[-1,1],[-1,30]],[[1558,2436],[0,13]],[[1931,2491],[-135,-1],[-30,-1],[-29,0],[-74,-1],[-19,-1]],[[1553,2438],[1,-26],[3,-34],[2,-30],[1,-50],[7,-90],[2,-62],[3,-53]],[[1572,2093],[1,-20],[3,-33],[0,-11],[1,-16],[1,-7],[0,-18],[1,-18],[1,-17],[2,-16],[1,-18],[0,-18],[1,-16],[1,-17],[0,-17],[2,-17],[1,-17],[1,-17],[0,-16],[2,-17],[4,-49]],[[1598,1717],[-5,83],[1,17],[-2,17],[-1,17],[-1,17],[-1,31],[-3,38],[-1,35],[-2,17],[-1,17],[-2,34],[-2,34],[-1,20]],[[1577,2094],[-3,52],[-3,62],[-3,31],[-2,28],[-1,32],[-2,49],[-2,31],[-3,57]],[[1505,3298],[0,-17],[1,-18],[1,-16],[1,-18],[1,-16],[1,-18],[1,-17],[1,-17],[2,-34],[2,-35],[0,-8],[1,-10],[0,-12],[0,-3],[1,-34],[5,-35],[1,-34],[1,-17],[1,-17],[1,-13],[0,-4],[1,-17],[2,-34],[0,-6],[1,-12],[1,-16],[2,-34],[2,-34],[1,-17],[2,-44],[0,-2],[4,-11],[-1,-14],[1,-15],[0,-16],[1,-11],[0,-5],[1,-36],[0,-17],[2,-9],[0,-3],[1,-28],[1,-32]],[[1555,2492],[0,2],[-1,34],[-3,36],[-1,17],[-2,40],[-1,28],[-1,15],[0,14],[-2,11],[-1,16],[-3,47],[-3,34],[-1,34],[-1,16],[-2,18],[-1,34],[-2,17],[-1,17],[-1,17],[-1,17],[-1,34],[-3,35],[-1,34],[-1,16],[-1,17],[-2,35],[-2,34],[-1,17],[-1,17],[-1,18],[-1,17],[-1,17],[-1,17],[-1,17],[-4,17]],[[1672,2485],[65,1],[29,1],[30,0],[35,0],[33,0],[32,1],[17,0],[18,1],[69,0],[45,1],[18,0],[37,1],[31,0],[33,0],[34,0],[34,0],[33,1],[36,0],[31,0],[46,0]],[[2378,2492],[3,0]],[[2381,2492],[19,0],[34,0],[33,0],[35,0],[32,1],[33,0],[34,0],[33,1],[34,-1],[50,1],[16,0],[33,1],[33,1],[10,0],[22,0],[38,1],[33,0],[30,0],[4,0],[9,1],[13,0],[21,0],[45,0],[45,1],[33,0],[33,0]],[[3136,2499],[34,0],[33,1],[35,0],[32,1],[33,0],[33,1],[34,1],[33,0],[33,0],[34,1],[33,0],[33,1],[61,0],[73,2],[33,0],[34,0],[32,1],[34,1],[34,0],[33,0],[34,0],[33,1],[34,0],[33,0],[33,1],[34,0]],[[3640,2777],[-111,-60],[-70,-37],[-73,-39],[-39,-17],[-17,-7],[-17,-6],[-16,-5],[-32,-10],[-33,-8],[-33,-9],[-10,-3],[-12,-3],[-11,-2],[-10,-1],[-10,0],[-12,-1]],[[3107,3327],[2,-44],[2,-33],[1,-11],[2,-42],[3,-56],[1,-5],[0,-11],[1,-15],[1,-31],[2,-34],[0,-16],[1,-4],[0,-16],[1,-18],[1,-13],[3,-69],[0,-2],[3,-51],[0,-8],[1,-9],[1,-17],[0,-17],[0,-9],[-1,-9],[-1,-9],[-2,-7],[-1,-8],[-1,-7],[-1,-2],[0,-3],[0,-10],[0,-4],[0,-1],[0,-15],[0,-1],[2,-40],[1,-9],[2,-34],[0,-17],[1,-17],[2,-34]],[[3134,2569],[1,-8],[0,-26],[1,-33]],[[3136,2502],[0,-3]],[[3136,2499],[2,-32],[3,-34],[1,-8],[0,-9],[1,-13],[0,-4],[1,-17],[0,-17],[1,-17],[3,-47],[1,-30],[1,-17],[1,-25],[2,-34],[2,-34],[1,-18],[1,-17],[1,-16],[1,-18],[1,-35],[2,-33],[2,-34],[1,-35],[9,-136],[2,-24],[5,-16],[5,-14],[3,-14],[1,-14]],[[3134,2569],[-35,0],[-32,0],[-34,-1]],[[3033,2568],[-33,-1],[-33,0],[-33,-1],[-35,0],[-33,0],[-52,-1],[-6,0],[-9,0],[-34,0],[-34,-1],[-32,0],[-34,-1],[-33,0],[-33,0],[-34,-1],[-33,0],[-20,0],[-6,-1],[-8,-1]],[[3191,1724],[2,-20],[-2,-13],[-6,-18],[-2,-13],[1,-15],[2,-47],[1,-7],[0,-10],[2,-35],[1,-19],[1,-15]],[[3190,1737],[1,-13]],[[2802,1405],[-143,57],[-36,12],[-33,10],[-34,9],[-33,8],[-88,21],[-48,12],[-22,5],[-51,12],[-71,19],[-70,17]],[[3191,1512],[-1,-13],[0,-9],[0,-28],[1,-15],[0,-8]],[[3197,1439],[-2,45],[-1,15],[-3,13]],[[3191,1439],[1,-14]],[[3192,1425],[1,-13]],[[3193,1412],[0,-3]],[[3193,1409],[0,-16],[3,-26],[2,-13],[2,-8]],[[3198,1425],[-1,14]],[[3199,1412],[0,9],[-1,4]],[[3200,1346],[2,8],[-1,12],[-2,43]],[[3199,1409],[0,3]],[[3200,1346],[1,-33],[1,-10]],[[3202,1303],[2,-27]],[[3204,1276],[1,-26]],[[3205,1250],[2,-45],[4,-69],[2,-41],[2,-26],[1,-10],[1,-16],[0,-5],[1,-12],[1,-18],[1,-35],[3,-41],[1,-34],[2,-35],[1,-17],[1,-17],[2,-34],[3,-69]],[[2802,1405],[29,-10],[33,-13],[44,-15],[19,-8],[12,-4],[18,-8],[20,-7],[94,-37],[134,-53]],[[2848,1406],[-46,-1]],[[2916,1407],[-68,-1]],[[2916,1407],[32,0],[45,1],[26,0],[19,0]],[[3038,1408],[58,0],[21,0],[76,1]],[[3199,1412],[-6,0]],[[3193,1412],[-79,-1],[-76,-3]],[[3193,1409],[6,0]],[[3199,1409],[38,0]],[[3229,1412],[-30,0]],[[3266,1413],[-37,-1]],[[3237,1409],[39,1]],[[3328,1411],[-7,1],[-55,1]],[[3276,1410],[48,0],[4,1]],[[3334,1412],[-6,-1]],[[8073,2549],[1,-17],[0,-13],[0,-4],[0,-4],[1,-3],[1,-2],[2,-3],[1,-1],[1,-1],[3,-3],[5,-3],[3,-2],[2,-2],[2,-2],[1,-2],[1,-2],[0,-2],[0,-2]],[[7366,2543],[38,0]],[[7404,2543],[28,0],[12,0],[45,1],[3,0],[8,0],[20,0],[22,0],[29,1],[34,0],[33,0],[34,0],[27,1],[73,0],[33,1],[15,0],[111,0],[33,1],[109,1]],[[8073,2549],[75,0],[38,1],[38,0],[37,0],[39,1],[18,0],[19,0],[19,0],[19,0],[19,0],[19,0],[20,0],[36,0],[18,1]],[[6909,2538],[41,0],[7,0],[19,1],[48,0],[16,0],[32,1],[34,0],[33,0],[33,1],[80,1],[99,1]],[[7351,2543],[15,0]],[[7404,2556],[0,-13]],[[7403,2562],[1,-6]],[[7403,2565],[0,-3]],[[7408,2514],[0,4],[0,7],[0,4],[-4,14]],[[8097,2481],[1,-33],[1,-35],[1,-36],[0,-32],[1,-33],[1,-34]],[[8102,2278],[0,-33],[1,-34],[0,-34],[1,-34],[1,-33],[0,-27],[1,-16],[0,-26],[1,-58],[1,-7],[0,-2],[1,-68],[1,-68],[0,-29],[0,-2],[0,-3],[2,-80],[1,-89]],[[8113,906],[1,-55],[0,-2],[0,-33],[1,-33],[0,-2],[0,-32],[0,-2],[1,-32],[0,-2],[0,-34]],[[8111,1105],[0,-9],[0,-15]],[[8111,1081],[1,-27],[0,-2],[0,-33],[0,-33],[0,-1],[1,-49]],[[8112,1362],[0,-26],[0,-1],[0,-103],[0,-5],[-1,-122]],[[8113,1537],[0,-3],[0,-9],[0,-3],[1,-3],[2,-4],[5,-8],[1,-3],[1,-3],[0,-3],[0,-5],[0,-30],[0,-56],[0,-3],[0,-3],[-1,-3],[-2,-3],[-3,-5],[-2,-4],[-1,-3],[-1,-2],[0,-3],[-1,-2],[0,-14]],[[8113,936],[0,-30]],[[8113,1562],[0,-25]],[[8113,1635],[0,-46],[0,-27]],[[8634,2828],[-1,27],[0,10],[-1,14],[-1,18],[-1,46],[0,45],[-1,40],[-2,10],[-5,8],[-7,8],[-11,7],[-10,5],[-16,4],[-34,6],[-19,4],[-64,12],[-35,5],[-13,5]],[[8418,3097],[9,-1],[33,-6],[65,-13],[17,-3],[35,-6],[14,-4],[10,-5],[10,-6],[7,-7],[4,-8],[2,-10],[2,-41],[0,-7],[0,-37],[1,-46],[1,-18],[1,-24],[1,-27]],[[8426,2909],[12,-4],[22,-8],[7,-3],[9,-1],[17,1]],[[8487,2552],[51,1]],[[8493,2894],[1,-35],[0,-4],[2,-29]],[[8496,2826],[3,0],[20,0],[18,0],[20,0]],[[8538,2553],[34,0]],[[8557,2826],[1,-25],[0,-9],[1,-34],[1,-34],[1,-25],[0,-9],[1,-10],[0,-15],[0,-3],[0,-2]],[[8562,2660],[0,-1],[0,-1],[1,-2],[1,-2],[2,-2],[3,-1],[17,-6]],[[8770,2377],[1,-12]],[[8770,2383],[0,-6]],[[8770,2389],[0,-6]],[[8770,2524],[0,-33],[0,-34],[0,-36],[0,-19]],[[8770,2393],[0,-4]],[[8770,2402],[0,-9]],[[8424,2961],[1,-21],[0,-1],[1,-26],[0,-4]],[[9067,2175],[8,-6],[13,-9],[38,-24],[25,-16],[25,-16],[8,-5],[3,-2],[4,-3],[7,-3],[17,-10],[25,-15],[13,-8],[29,-19],[57,-35],[7,-5],[81,-51],[48,-30],[28,-16]],[[9503,1902],[-36,25],[-36,23],[-12,7],[-31,20],[-13,9],[-23,14],[-3,2],[-23,14],[-21,13],[-16,11],[-2,1],[-30,19],[-13,8],[-54,33],[-35,23],[-54,34],[-29,20],[-5,3]],[[2947,8074],[-1,-17]],[[2947,8077],[0,-3]],[[4397,6265],[25,-11],[7,-3],[14,-5],[11,-5],[22,-9],[16,-7],[23,-9],[36,-16],[11,-4]],[[39,6857],[6,0],[18,-1],[48,-2],[116,-4],[20,-1],[18,-1],[31,-1],[61,-3],[27,0],[26,-2],[50,-2],[18,0],[9,-1],[17,0],[6,0],[31,0],[34,1],[33,0],[34,1],[33,0],[34,1],[4,0],[29,1],[32,0],[92,2],[39,0],[6,0],[2,1],[32,0],[33,1],[34,0],[34,1],[33,0],[33,1],[33,0],[33,1],[35,1],[36,0],[33,0],[33,1]],[[1315,6852],[34,0],[34,0],[32,0],[34,0],[34,0],[33,0],[34,0],[32,0],[35,0],[5,0],[11,0],[5,0],[6,0],[5,0],[5,0],[5,0],[23,0],[11,1],[36,0],[8,0],[15,0],[12,0],[5,0],[2,0],[1,0],[10,1],[8,0],[9,0],[4,0],[12,0],[3,0],[14,0],[31,1],[19,0],[30,0],[11,0],[7,0],[4,0],[15,0],[15,1],[26,0],[26,0],[34,0],[33,1],[34,0],[33,0],[34,1],[33,0],[34,0],[33,1],[34,0],[33,0],[34,1],[33,0],[68,0],[64,1],[3,0],[3,0],[65,1],[67,0],[34,0],[34,0],[33,1],[34,0],[33,0],[33,1],[39,0],[12,0],[18,0]],[[4103,6388],[17,-7],[70,-30],[24,-10],[29,-12],[43,-18],[24,-10],[18,-7]],[[2378,7295],[20,-15],[25,-19],[16,-12],[24,-19],[27,-20]],[[926,7441],[-52,4]],[[934,7440],[-8,1]],[[1052,7427],[-3,0],[-31,6],[-84,7]],[[3917,6464],[49,-19],[25,-11],[9,-3],[27,-12],[13,-5],[8,-3],[5,-2],[13,-6],[29,-12],[8,-3]],[[2958,6864],[47,1],[27,0],[15,0],[13,0],[50,0],[22,1],[12,0],[34,0],[33,0],[35,1],[38,0],[19,0],[21,0],[41,0]],[[3365,6867],[7,1],[23,0]],[[3395,6868],[59,0]],[[3454,6868],[44,1],[33,0]],[[2953,7031],[-2,-1],[0,-1],[-1,-1],[1,-7]],[[2958,6864],[0,19],[0,1],[-1,15],[0,4],[-1,13],[0,6],[-1,6],[0,5],[0,7],[-1,10],[-1,17],[-1,17],[0,3],[0,6],[0,8],[-1,9],[0,11]],[[2951,7021],[1,5],[0,2],[1,1],[1,1],[1,0]],[[1333,8068],[16,-11],[39,-30],[22,-17],[41,-31]],[[1451,7979],[25,-20]],[[1476,7959],[50,-36],[34,-24],[47,-36],[38,-28],[78,-57],[33,-24],[43,-33],[4,-3],[6,-4],[3,-2],[34,-26]],[[1823,7960],[-77,-1],[-10,-1],[-55,4],[-34,2],[-3,1],[-5,0]],[[1332,7954],[-1,-16],[0,-13],[0,-11],[0,-1],[0,-9],[0,-9],[0,-8],[-1,-9],[0,-8],[0,-8],[0,-8],[0,-9],[0,-9],[-1,-17],[0,-34],[0,-3],[-1,-31],[0,-16],[0,-9],[0,-6],[0,-10],[0,-16],[-1,-15],[0,-17],[0,-1],[0,-4],[0,-8],[-1,-17],[0,-9],[0,-8],[0,-9],[0,-7],[0,-7],[0,-6],[-1,-37],[0,-25],[-1,-53],[0,-32],[-1,-9],[1,-17]],[[1332,7954],[0,34],[1,34],[0,32],[0,2],[0,12]],[[1333,8068],[0,14],[1,8]],[[1639,7965],[-15,1]],[[1132,7400],[-31,3],[-19,3],[-13,2],[-14,2],[-3,1]],[[1052,7411],[0,1]],[[1052,7412],[0,13]],[[1052,7425],[0,2]],[[1132,7400],[29,-3],[13,-1],[8,-1],[4,0],[5,0],[6,0],[25,0],[5,0],[4,0],[6,0],[5,-1],[3,-1],[13,-1],[11,-2]],[[1178,7398],[-6,-1],[-7,1],[-33,2]],[[1341,7413],[-17,0]],[[1324,7413],[-6,0]],[[1322,7399],[0,-1],[-1,-2],[0,-5],[0,-6],[2,-3]],[[1322,7410],[0,-11]],[[1324,7413],[-2,-2],[0,-1]],[[1323,7382],[2,3],[0,6],[0,6]],[[1325,7397],[1,2]],[[1326,7410],[-1,1],[-1,2]],[[1325,7397],[8,0],[6,0]],[[1326,7399],[0,11]],[[1235,7398],[-3,1],[-3,0],[-2,0],[-3,1],[-4,0],[-4,0],[-4,0],[-7,0],[-6,-1],[-7,-1],[-7,0],[-7,0]],[[1269,7390],[-9,3],[-5,1],[-20,4]],[[1269,7390],[3,0],[3,-1],[4,0],[44,-7]],[[2070,7687],[98,1],[27,-1],[23,0],[37,-2],[23,-1],[19,-1],[9,-1],[13,0],[21,0],[23,1],[26,1],[15,0]],[[4328,6294],[8,-4],[31,-13],[10,-4],[4,-2],[16,-6]],[[2545,7169],[3,-2],[1,-1],[7,-5],[5,-4],[10,-8],[5,-4],[13,-11],[30,-23],[24,-19],[12,-9],[9,-7],[11,-8],[7,-6],[15,-12],[6,-5],[15,-11],[22,-18],[21,-17],[22,-17],[21,-17],[22,-17],[21,-16],[15,-12],[7,-5],[21,-17],[15,-12],[53,-22]],[[2508,7196],[4,-3],[10,-7]],[[2522,7186],[6,-5],[17,-12]],[[4414,6875],[22,0],[4,0],[4,0],[29,0],[32,0],[49,1],[17,0]],[[4571,6876],[33,0],[34,0],[33,0],[33,1],[34,0],[32,1],[34,0],[9,0],[8,0],[17,0],[24,1],[42,0],[58,0],[11,0],[22,1],[10,0],[12,0],[20,0],[1,0],[22,0],[9,0],[13,0],[4,1],[17,0]],[[5103,6881],[24,0],[18,0],[20,0],[27,0],[44,1]],[[3531,6869],[35,-1],[16,0],[16,0],[15,0],[19,1],[34,0],[33,0],[31,1],[3,0],[34,0],[33,0],[33,1],[35,0],[33,1],[34,0],[33,0],[34,0],[33,1],[17,0],[14,0],[3,0],[3,0],[13,0],[14,0],[3,0],[3,0],[28,0],[3,0],[3,0],[27,0],[3,0],[3,0],[14,0],[16,0],[34,0],[17,0],[17,0],[16,1],[18,0],[2,0],[23,0],[9,0],[50,0],[5,1]],[[4393,6875],[-5,1],[-82,0],[-3,0],[-17,0],[-16,0],[-17,0],[-17,0],[-17,0],[-17,0],[-16,-1],[-17,0],[-34,0],[-33,0],[-17,0],[-17,0],[-16,0],[-17,0],[-34,0],[-33,-1],[-33,0],[-34,0],[-34,-1],[-34,0],[-33,0],[-33,-1],[-34,0],[-8,0],[-26,0],[-33,-1],[-34,0],[-34,0],[-33,-1],[-34,-1]],[[4393,6875],[21,0]],[[2958,6864],[34,-14],[42,-18],[50,-20],[47,-20],[25,-10],[6,-3],[39,-16],[28,-12],[51,-21],[22,-10],[71,-29],[26,-11],[20,-8],[21,-8],[9,-4],[33,-14],[26,-11],[12,-4],[47,-20],[32,-14],[29,-11],[28,-12],[20,-8],[14,-6],[5,-3],[12,-5],[9,-3],[24,-10],[8,-4],[34,-13],[28,-13],[13,-5],[3,-1],[10,-5],[23,-9],[8,-3],[16,-7],[23,-10],[11,-5]],[[3365,6867],[-1,12]],[[3364,6879],[-1,23]],[[3395,6868],[-31,11]],[[3499,6847],[-3,1],[-15,6],[-12,4],[-6,3],[-7,4],[-1,1],[-1,2]],[[3175,7955],[-35,0],[-71,0],[-62,0],[-33,0],[-33,0]],[[2846,7956],[-40,0],[-30,1],[-35,0],[-67,0],[-44,0],[-36,0],[-22,0],[-6,0],[-6,0],[-16,0],[-7,0],[-32,1],[-4,0],[-25,0],[-25,0],[-18,0],[-28,0],[-4,0],[-28,1],[-8,0],[-17,0],[-28,0],[-16,0],[-17,0],[-4,0],[-23,0],[-8,0],[-1,0],[-7,0]],[[3050,8022],[-2,1],[-42,22],[-24,13],[-31,18],[-4,1]],[[2851,7956],[-2,0],[-3,0]],[[2881,7956],[-30,0]],[[2941,7955],[-14,0],[-39,1],[-4,0],[-3,0]],[[2946,8057],[-1,-17],[-1,-11],[0,-6],[-1,-17],[-1,-16],[0,-18],[-1,-17]],[[2932,7434],[0,-7]],[[1986,7585],[32,-22],[15,-11],[20,-15],[20,-14],[21,-16],[24,-17],[8,-6],[24,-18],[14,-10],[19,-15],[27,-19],[7,-6],[31,-24],[14,-10],[42,-32],[14,-10],[30,-23],[8,-6],[6,-4],[4,-3],[12,-9]],[[2958,7035],[-5,-4]],[[2962,7053],[-8,8]],[[2954,7061],[4,-8]],[[2955,7030],[5,4]],[[2958,7053],[8,-10]],[[2961,7037],[-3,-2]],[[2960,7034],[2,1]],[[2965,7039],[-4,-2]],[[2969,7042],[0,1],[0,1],[-7,9]],[[2962,7035],[4,3]],[[2966,7043],[0,-2],[0,-1],[-1,-1]],[[2966,7038],[2,1],[1,1],[0,1],[0,1]],[[3050,8022],[14,-10],[50,-25],[61,-32]],[[3175,7955],[23,-12],[8,-4],[30,-16],[67,-36],[32,-18],[21,-12],[6,-4],[15,-8],[12,-7],[31,-16],[5,-3],[16,-8],[25,-11],[32,-13],[11,-5],[32,-13],[24,-10],[16,-7],[16,-7],[2,0],[17,-8],[14,-6],[16,-6],[15,-7],[4,-1],[21,-9],[6,-3],[11,-4],[3,-1],[2,-1],[4,-2],[1,0],[4,-2],[8,-3],[14,-7],[5,-1],[31,-13],[34,-14],[34,-14],[26,-12]],[[3869,7631],[41,-17],[28,-12],[21,-8],[7,-3],[16,-7]],[[3982,7587],[-13,5],[-16,7],[-16,6],[-53,23],[-13,6]],[[3871,7634],[-25,10],[-6,3],[-20,8],[-7,3],[-10,4],[-6,3],[-8,3],[-12,5],[-20,8],[-7,3],[-4,2],[-17,7],[-2,1],[-18,7],[-3,2],[-17,7],[-20,8],[-6,3],[-16,6],[-10,4],[-1,1],[-18,8],[-17,6],[-2,1],[-16,7],[-15,7],[-25,10],[-31,13],[-12,5],[-34,15],[-20,8],[-14,7],[-8,5],[-31,16],[-23,13],[-10,6],[-25,14],[-28,15],[-4,3],[-97,51],[-25,13]],[[3181,7955],[-64,33],[-51,27],[-16,7]],[[3982,7584],[22,-10]],[[4002,7578],[-20,9]],[[4014,7556],[-18,0]],[[2941,7955],[-1,-31],[0,-2],[0,-9],[-2,-25],[-2,-68],[-2,-34],[-2,-34],[-1,-33],[-1,-34],[0,-1],[0,-30],[-1,-49],[1,-30],[0,-20],[0,-9]],[[2930,7546],[0,-21],[1,-59],[1,-32]],[[3996,7556],[-43,-1],[-48,0],[-34,0],[-33,-1],[-33,0],[-34,0],[-33,-1],[-35,0],[-34,0],[-199,-2],[-40,0],[-18,-1],[-22,0],[-25,0],[-16,0],[-63,-1],[-47,0],[-36,0],[-33,0],[-33,-1],[-34,0],[-14,0],[-20,0],[-38,-1],[-35,0],[-32,0],[-34,-1]],[[2930,7546],[-21,0],[-8,0],[-9,1],[-10,1],[-9,2],[-9,2],[-2,0]],[[3772,7956],[-3,0],[-25,-1],[-5,0]],[[2932,7427],[3,-59],[0,-6],[1,-20],[1,-19],[0,-11],[2,-29],[1,-9],[1,-34],[0,-12]],[[2941,7228],[1,-5],[0,-11],[0,-6],[0,-9],[0,-8],[1,-9],[0,-8],[0,-5],[1,-3],[0,-1],[0,-2],[1,-2],[1,-3],[1,-2],[3,-5],[1,-1],[0,-1],[0,-1],[-4,-9],[-1,-3],[0,-3],[3,-62],[1,-2],[1,-2],[3,-4]],[[2947,7226],[-6,2]],[[2461,7674],[9,-3],[2,-1],[23,-7],[20,-6],[28,-9],[28,-9],[29,-10],[28,-8],[28,-9],[30,-10],[27,-9],[2,0],[26,-9],[29,-9],[18,-5],[11,-4],[10,-3],[10,-2],[11,-3],[4,-1],[6,-1]],[[2862,7552],[-22,4]],[[5016,7562],[23,-7],[35,-12]],[[5074,7543],[7,-2]],[[5081,7541],[3,-1]],[[5084,7540],[-1,1],[-3,2]],[[5080,7543],[-6,2]],[[5074,7545],[-33,12],[-17,5],[-6,2]],[[5053,7715],[6,-12],[2,-3]],[[5061,7700],[0,-8],[5,-15],[2,-9],[1,-14],[0,-4],[0,-18],[1,-18],[1,-12],[0,-5],[1,-7],[0,-10],[1,-17],[1,-18]],[[5074,7545],[0,-2]],[[5074,7543],[3,-17],[2,-7],[0,-5],[3,-13]],[[5082,7501],[4,-10],[3,-3]],[[5089,7488],[0,3],[0,4],[-4,17],[-1,9],[0,3],[-3,17]],[[5081,7541],[-1,2]],[[5080,7543],[0,4],[-1,16],[0,9],[-1,8],[0,7],[0,2],[0,8],[-1,9],[0,8],[-1,9],[0,9],[-1,18],[0,4],[-1,14],[-2,9],[-3,7],[-4,9],[-4,7]],[[5082,7501],[-1,-13],[1,-10]],[[5082,7478],[4,7],[3,3]],[[4532,7558],[7,-1]],[[4539,7557],[16,0],[17,0],[32,1],[64,1],[4,0],[30,0],[106,1],[37,0],[38,1],[50,0],[15,1],[21,0],[21,0],[26,0]],[[5018,7564],[-6,0],[-23,0],[-16,0],[-25,0],[-15,-1],[-33,0],[-17,0],[-18,0],[-19,-1],[-18,0],[-20,0],[-19,0],[-87,-1],[-35,-1],[-63,0],[-32,-1],[-17,0],[-17,0]],[[4538,7559],[-6,-1]],[[4668,8146],[1,-3]],[[4669,8143],[0,-4],[1,-6],[2,-15],[1,-2],[2,-9],[1,-7]],[[4890,8137],[2,-4]],[[4892,8133],[9,-25],[3,-10]],[[4060,7553],[-3,3]],[[4057,7556],[-27,11],[-24,9],[-4,2]],[[4004,7574],[2,0],[19,-9],[23,-9]],[[4048,7556],[12,-3]],[[4452,7387],[0,2],[-1,3],[-2,2],[-4,3]],[[4445,7397],[-5,3],[-29,10],[-22,10],[-21,9],[-25,9],[-9,4],[-15,6],[-19,7],[-24,10],[-18,7],[-7,3],[-19,8],[-14,6],[-14,5],[-21,8],[-19,8],[-15,6],[-19,8],[-15,6],[-13,5],[-13,6],[-29,12]],[[4532,7558],[-10,0],[-17,0],[-34,-1],[-33,0],[-34,0],[-33,0],[-33,0],[-34,0],[-33,0],[-33,0],[-34,-1],[-33,0],[-33,0],[-15,0],[-18,0],[-34,0],[-14,0]],[[4057,7556],[-9,0]],[[4048,7556],[-34,0]],[[4878,8692],[-5,-8],[-19,-24],[-22,-32],[-19,-29],[-6,-7],[-10,-15],[-5,-9],[-3,-9],[-1,-26],[0,-27],[0,-20],[0,-4],[4,-12],[1,-2],[1,-6],[3,-12],[4,-12],[10,-35],[9,-33],[0,-1],[6,-21],[4,-12],[3,-8],[6,-21],[3,-12],[1,-3],[2,-7],[4,-18],[4,-22],[2,-10],[13,-35],[11,-34],[3,-9],[8,-20]],[[4569,8661],[-3,-7],[-3,-8],[0,-3],[2,-27],[2,-27],[2,-27],[3,-28],[2,-27],[10,-34],[11,-34],[11,-33],[12,-35],[7,-22],[4,-11],[3,-9],[6,-17],[3,-11],[2,-7],[3,-16],[1,-4],[3,-19],[4,-21],[3,-20],[0,-1],[4,-19],[2,-20],[2,-8],[1,-9],[1,-7],[1,-4]],[[4558,7182],[0,-13],[1,-21]],[[4559,7148],[1,-1],[0,-14],[1,-11],[0,-8]],[[4539,7557],[1,-34],[1,-34],[2,-34],[1,-34],[1,-9],[1,-25],[2,-34],[1,-13],[0,-6],[1,-4],[0,-11],[1,-9],[0,-8],[1,-9],[0,-8],[1,-19],[1,-15],[1,-20],[1,-8],[0,-7],[1,-23],[1,-11]],[[4561,7114],[1,-13],[0,-1],[-1,-5],[1,-17],[1,-32],[2,-34],[1,-17],[1,-17],[0,-17],[1,-17],[1,-17],[1,-17],[1,-17],[0,-17]],[[4571,6876],[0,-10],[1,-8],[0,-17],[1,-17],[1,-16],[1,-35],[2,-25],[0,-9],[1,-8],[0,-26],[1,-21],[0,-4],[1,-9],[1,-35]],[[4539,7557],[-1,2]],[[4538,7559],[-2,32],[-1,34],[-1,34],[-2,26],[0,8],[0,8],[-1,26],[0,1],[-2,33],[0,7],[-1,27],[0,2],[-1,32],[-1,17],[0,6],[0,11],[0,6],[-1,10],[0,1],[0,6],[0,11],[-1,11],[0,6],[0,1],[0,4],[-1,12],[0,9],[-1,8],[0,17],[0,12],[1,19],[0,3],[0,6],[0,23],[1,5],[-1,17],[1,11],[0,6],[-1,10],[1,10],[0,6],[0,8]],[[5389,7122],[0,-3],[3,-3],[7,-8],[6,-4]],[[5389,7122],[5,-2],[8,-9],[0,-3]],[[5748,6908],[4,-6],[1,-3],[1,-3],[1,-4],[2,-5]],[[5355,7292],[1,-16],[0,-5],[0,-10],[1,-18],[1,-8],[0,-11],[1,-22],[1,-23],[0,-16],[0,-7]],[[5360,7152],[9,-8],[10,-11],[10,-11]],[[5389,7122],[13,-14]],[[5402,7108],[3,-4]],[[5405,7104],[16,-16]],[[5360,7156],[0,-4]],[[1537,8499],[-34,0],[-18,0],[-17,0],[-33,0],[-38,0],[-56,0],[-53,-1],[-67,-1],[-14,0],[-18,-1],[-16,0],[-17,0],[-16,-1],[-16,0],[-18,0],[-14,0],[-19,-1],[-13,0],[-32,-1],[-57,-1],[-33,0],[-31,-1],[-2,0],[-30,-1],[-3,0]],[[2426,8500],[-31,1],[-33,0],[-25,0],[-42,0],[-33,0],[-34,0],[-33,0],[-33,0],[-67,0],[-22,-1],[-10,0],[-30,0],[-4,0],[-34,0],[-32,0],[-16,0],[-18,0],[-33,0],[-25,0],[-12,0]],[[2426,8500],[3,0],[15,0],[60,-1],[9,0]],[[2514,8501],[-5,0],[-74,1],[-6,-1],[-3,-1]],[[1336,8226],[40,2],[37,0],[37,1]],[[1823,7960],[11,-9],[34,-27],[26,-20],[10,-9],[30,-24],[40,-32],[10,-7],[11,-7],[7,-4],[8,-3],[16,-6],[36,-11],[37,-12],[76,-24],[28,-9],[28,-9],[29,-9],[28,-9],[29,-9],[28,-9],[28,-9],[22,-8],[6,-1],[6,-2],[18,-6]],[[2425,7685],[11,-3],[25,-8]],[[2050,7959],[-5,1],[-34,0],[-18,0],[-16,0],[-34,0],[-10,0],[-52,0],[-4,0],[-9,0],[-14,0],[-13,0],[-18,0]],[[2404,7684],[21,1]],[[408,8799],[61,-43],[44,-31],[14,-10],[13,-10],[7,-5],[11,-10],[1,-1],[34,-31],[23,-22],[50,-46],[11,-11],[13,-12],[13,-12],[36,-28],[1,0],[20,-16],[26,-20],[4,-4],[40,-31],[24,-19],[24,-19],[10,-8],[26,-21],[21,-17],[20,-16],[26,-20],[5,-4],[16,-14],[20,-16],[16,-13],[8,-6],[21,-15],[6,-4],[11,-8],[45,-34],[15,-11],[14,-10],[11,-9],[26,-19],[7,-5],[6,-5],[9,-7],[29,-22],[15,-11],[44,-33],[28,-22]],[[1715,8217],[15,-7],[7,-3],[6,-4],[5,-4],[5,-5],[4,-5],[2,-5],[2,-4],[1,-4],[-2,-43],[0,-7],[-2,-32],[-1,-44],[0,-2],[1,-7],[1,-7],[1,-1],[2,-9],[1,-1],[1,-3],[2,-4],[1,-3],[2,-3],[4,-5],[5,-7],[5,-6],[4,-3],[15,-12],[9,-8],[12,-9]],[[1624,7966],[-33,3],[-16,1],[-8,0],[-11,0],[-8,-1],[-22,-2],[-16,-2],[-9,-1],[-25,-5]],[[1476,7959],[-7,-2],[-13,-1],[-12,-1],[-19,0],[-93,-1]],[[1332,7954],[-17,0],[-17,0],[-34,-1],[-33,0],[-17,-1],[-16,0],[-1,0],[-19,0],[-13,-1],[-6,0],[-19,0],[-9,0],[-10,0],[-19,-1],[-4,0],[-15,0],[-20,0],[-31,-1],[-33,0],[-33,-1],[-35,0],[-17,0],[-23,-1],[-16,0],[-39,-1],[-39,0]],[[1334,8090],[0,17],[0,17],[1,13],[0,21],[1,34],[0,34]],[[3960,8501],[-6,-1],[-42,0],[-23,0],[-21,0],[-11,0],[-33,0],[-33,-1],[-11,0],[-22,0],[-17,0],[-17,0],[-20,0],[-18,0],[-27,-1],[-34,0],[-32,0],[-33,0],[-33,0],[-34,0],[-33,-1],[-33,0],[-33,0],[-33,0],[-71,1],[-52,-1],[-9,0],[-23,1],[-29,-1],[-48,0],[-31,0],[-34,0],[-33,0],[-61,0]],[[2964,8496],[6,1]],[[2970,8497],[-5,1]],[[2969,8656],[0,10]],[[2969,8666],[1,16],[0,20],[1,16]],[[2947,8077],[0,14],[1,28],[1,3],[1,4],[1,3],[1,3],[3,4],[3,3],[3,3],[19,17],[6,4],[2,2],[3,3],[3,4],[3,5],[2,6],[1,5],[0,5],[-1,3],[-2,5],[-2,2],[-2,4],[-4,3],[-10,8],[-5,5],[-4,3],[-5,11],[-8,17],[-2,4],[0,2],[-1,2],[0,3],[1,20],[1,10],[2,33],[0,17],[0,8],[0,8],[1,2],[0,7],[0,8],[1,18],[1,17],[0,17],[1,17],[1,16],[0,18],[1,8],[0,7]],[[2964,8496],[1,2]],[[2965,8498],[0,16],[0,11],[0,6],[1,12],[0,13],[0,9],[1,34],[1,25],[0,9],[0,9],[1,14]],[[3739,7955],[-35,0],[-16,0],[-50,0],[-34,0],[-52,0],[-16,0],[-65,0],[-33,0],[-33,0],[-33,0],[-33,0],[-33,0],[-33,0],[-33,0],[-33,0],[-26,0]],[[3181,7955],[-6,0]],[[1706,8220],[9,-3]],[[3869,7631],[2,3]],[[3871,7634],[7,5],[4,3],[9,5],[8,5],[8,5],[1,0],[1,1],[6,4],[12,7],[4,4],[2,5],[1,8],[0,3],[0,5],[1,126],[0,2],[2,32],[1,26],[0,3],[2,41],[1,32]],[[3941,7956],[2,66],[0,13],[1,52],[1,6],[10,26],[5,15],[1,6],[0,6],[-1,7],[-2,9],[-5,20],[-2,12],[0,9],[0,26],[2,68],[1,34],[1,33],[0,2],[3,67],[0,10],[1,7],[0,6],[1,11],[0,17],[0,17]],[[3960,8501],[6,136],[3,37],[4,10],[6,10],[1,1],[5,7],[8,7],[9,8]],[[3941,7956],[-76,0],[-4,0],[-58,0],[-27,0],[-4,0]],[[4583,6580],[-2,56]],[[4583,6580],[1,-28],[0,-4]],[[4584,6548],[1,-16]],[[4585,6532],[0,-31],[1,-17],[1,-17],[1,-34],[1,-18]],[[4589,6415],[-1,-4],[0,-4],[0,-7],[1,-4],[0,-5],[1,-13],[0,-3],[0,-4],[2,-6]],[[4592,6365],[1,3],[0,2],[0,4],[-1,17],[0,4],[0,6],[0,3],[-1,5],[-2,6]],[[5482,7465],[-2,34],[-2,51],[-2,42],[-2,43],[-1,33],[-2,25],[0,1],[-1,2],[-2,2],[-3,2],[-4,1],[-4,1],[-1,0],[-5,0],[-1,0],[-18,0],[-19,0],[-25,0],[-14,0],[-11,0],[-5,0],[-21,-1]],[[5337,7701],[-3,13],[-1,6],[-1,23],[0,10],[-1,2],[0,9],[-1,19],[-1,20],[-1,18],[-1,18],[-11,23],[-7,15],[-4,8],[-11,22],[-11,23],[-11,23],[-15,22],[-17,21],[-17,20],[-6,8],[-5,12],[-9,20],[-9,20],[-8,19],[-8,19]],[[5165,8146],[-3,5],[0,1],[1,1],[2,2],[2,0],[2,1],[23,4],[4,1],[3,1],[2,2],[1,1],[1,1],[0,1],[0,2],[-1,0],[-22,30],[-18,22],[-4,4],[-5,4],[-4,2],[-5,3],[-6,2],[-6,2],[-6,3],[-5,1],[-5,1]],[[5165,8146],[0,5],[0,1],[1,1],[2,1],[4,1],[5,1],[16,3],[3,1],[4,1],[2,1],[1,1],[2,1],[1,1],[0,2],[0,1],[0,1],[-1,2],[-21,28],[-9,11],[-9,11],[-3,3],[-5,4],[-6,4],[-6,3],[-5,3],[-7,2],[-6,2],[-7,1],[-5,0]],[[5178,8114],[-7,16],[-6,16]],[[4904,8098],[5,-8],[4,-6],[8,-14],[7,-11],[2,-8],[3,-9],[1,-3],[1,-3],[0,-3],[3,-11],[5,-20],[1,-3],[2,-6],[2,-10],[2,-11],[5,-23],[6,-23],[4,-13],[4,-10],[8,-22],[4,-11],[3,-12],[4,-11],[4,-12],[9,-18],[8,-16],[9,-17],[8,-17],[11,-21],[7,-12],[1,-2],[2,-5],[3,-7],[3,-5]],[[5421,7088],[23,-24],[9,-10],[31,-34]],[[5236,6882],[18,0],[15,0],[21,0],[146,2],[2,0],[19,0],[20,0],[24,0],[19,0],[1,0],[14,1],[1,0],[31,0],[44,0],[22,1],[22,0],[27,0],[35,0],[40,1]],[[5757,6887],[29,1]],[[5313,7445],[-29,12]],[[5349,7429],[-33,15],[-3,1]],[[5337,7701],[2,-33],[1,-20],[0,-6],[0,-8],[1,-8],[0,-2],[0,-8],[0,-6],[1,-11],[0,-8],[0,-8],[1,-18],[1,-3],[0,-14],[1,-17],[1,-34],[0,-6],[2,-23],[0,-4]],[[5348,7464],[1,-20],[0,-15]],[[5349,7429],[2,-27],[0,-7],[1,-34],[1,-20],[1,-14],[1,-35]],[[5284,7457],[16,4],[13,2],[7,0],[5,0],[4,1],[15,0],[4,0]],[[5348,7464],[5,-1],[16,0],[16,1],[19,0],[20,0],[19,0],[19,1],[20,0]],[[5122,6290],[-6,-17]],[[5284,7457],[-23,9],[-9,4],[-39,16],[-23,10],[-40,16],[-44,19],[-22,9]],[[5114,6608],[1,-35],[1,-16],[1,-17],[1,-18],[1,-17],[1,-17],[1,-17],[1,-8],[3,-60],[1,-33],[1,-17],[2,-17],[0,-17],[0,-6],[-7,-23]],[[5082,7478],[-2,-6],[1,-15],[0,-15],[1,-16],[1,-17],[0,-9],[0,-4],[0,-4],[1,-3],[0,-14],[1,-17],[0,-17],[1,-17],[1,-9],[0,-8],[1,-17],[0,-17],[1,-18],[0,-16],[2,-30],[2,-56],[1,-34],[1,-34],[2,-34],[1,-25],[0,-9],[1,-34],[1,-34],[2,-34],[1,-34]],[[5103,6881],[2,-34],[0,-11],[0,-15],[1,-9],[1,-34],[1,-34],[1,-34],[2,-34],[1,-17],[1,-17],[0,-17],[1,-17]],[[1846,7686],[11,-8],[19,-14],[11,-8],[13,-9],[4,-3],[16,-11],[20,-14],[21,-16]],[[1846,7686],[11,0],[18,0],[6,0],[35,0],[26,0],[8,0],[103,1]],[[1961,7603],[17,-12],[8,-6]],[[1983,7595],[-22,8]],[[1986,7585],[-2,4],[-1,3],[0,3]],[[2053,7687],[17,0]],[[2244,7959],[-16,0],[-6,0],[-77,0],[-45,0],[-38,0],[-12,0]],[[1538,8418],[0,-2],[1,-14],[2,-8],[5,-9],[7,-7],[10,-7],[14,-8],[23,-11],[10,-6],[5,-6],[5,-5],[4,-8],[1,-7],[-1,-23],[0,-17],[0,-3],[1,-5],[2,-4],[2,-4],[3,-4],[3,-3],[4,-4],[5,-4],[4,-2],[7,-4],[8,-4],[21,-10],[22,-9]],[[1451,7979],[-4,40],[-3,19],[-3,16],[0,4],[-2,13],[-2,19],[-3,17],[-2,17],[-2,14],[0,1],[0,7],[2,11],[4,18],[5,17],[9,37]],[[1450,8229],[4,18],[1,3],[3,13],[1,3],[3,14],[1,1],[4,15],[4,12],[8,23],[13,32],[9,16],[33,34],[4,5]],[[1538,8418],[0,11],[-1,11],[0,3],[0,16],[0,9],[0,8],[0,10],[0,13]],[[1526,8768],[180,0],[66,0],[134,0],[69,1],[29,0]],[[2013,8769],[165,0],[13,0],[1,0]],[[2192,8769],[8,0]],[[1526,8768],[-2,68],[0,1],[0,1],[-1,33],[-1,20],[-1,39],[-1,18],[0,19],[-1,22],[0,7],[-1,21],[0,12],[0,23],[0,9],[1,7],[3,5],[5,6]],[[2004,8769],[9,0]],[[1843,8500],[-3,0],[-1,0],[-10,0],[-159,-1],[-4,0],[-32,0],[-31,0],[-31,0],[-35,0]],[[1526,8768],[2,-42],[1,-19],[0,-8],[1,-13],[1,-16],[2,-36],[3,-56],[0,-33],[0,-1],[1,-11],[0,-34]],[[2126,9228],[-11,0]],[[1460,9233],[-10,0]],[[1450,9232],[11,0]],[[1593,9232],[-36,1]],[[1557,9233],[-97,0]],[[1461,9232],[25,-1],[42,0],[29,0]],[[1557,9231],[36,1]],[[1527,9079],[7,5]],[[2115,9228],[-80,0],[-90,1],[-42,0],[-2,0],[-16,0],[-18,0],[-33,1],[-35,0],[-16,0],[-16,0],[-30,0],[-85,1],[-4,0],[-55,1]],[[2496,9224],[-7,0],[-6,0]],[[1859,8500],[-16,0]],[[55,9372],[11,-1],[17,-2],[11,-1],[10,-2],[10,-3],[12,-3],[10,-2],[6,-2],[10,-4],[11,-5],[9,-5],[8,-4],[10,-6],[6,-5],[6,-5],[6,-5],[3,-4],[6,-8],[8,-10],[14,-17],[9,-12],[2,-3],[4,-4],[3,-2],[5,-5],[7,-5],[6,-4],[3,-2],[6,-4],[5,-2],[4,-2],[6,-3],[7,-3],[8,-3],[9,-3],[8,-3],[9,-2],[9,-2],[10,-2],[10,-2],[14,-2],[13,-1],[15,-1],[20,-1],[36,0],[48,0],[23,0],[14,-1],[4,0],[14,-1],[10,0],[1,-1],[19,-1],[16,-2],[14,-3],[9,-2],[12,-1],[12,-2],[14,-1],[11,-1],[8,0],[24,0],[95,-1],[70,0],[50,-1]],[[934,9190],[-32,0],[-33,0],[-82,0],[-74,0],[-16,0],[-9,1],[-7,0],[-5,0],[-13,2],[-17,2],[-23,4],[-17,3],[-13,2],[-11,1],[-14,1],[-15,0],[-13,1],[-12,0],[-15,0],[-20,1],[-62,0],[-16,0],[-17,1],[-20,1],[-14,2],[-12,2],[-15,4],[-11,3],[-11,4],[-14,6],[-9,4],[-4,2],[-8,5],[-10,7],[-6,5],[-6,5],[-41,51],[-7,9],[-11,9],[-9,7],[-11,7],[-14,7],[-21,8],[-13,5],[-12,4],[-8,1],[-10,2],[-12,2],[-8,1],[-13,1],[-13,1]],[[4783,1700],[1,-18],[1,-16],[0,-2],[1,-16],[0,-16],[0,-1],[1,-18],[1,-15],[0,-2],[3,-34],[0,-15],[0,-16],[0,-12],[1,-6],[0,-11],[1,-6],[1,-12],[0,-5],[0,-13],[1,-4],[0,-15],[1,-8],[2,-7],[1,-4]],[[4859,1427],[-19,-1],[-11,0],[-9,0],[-6,1],[-15,1]],[[5783,2391],[35,0]],[[5871,2409],[-5,0],[-17,0],[-17,-1],[-16,0]],[[5816,2408],[-17,0],[-2,0]],[[5816,2406],[2,-12]],[[5816,2408],[0,-2]],[[5818,2394],[0,-3]],[[5818,2391],[0,-35]],[[5818,2391],[15,0],[3,0]],[[4746,2517],[34,0],[33,1],[33,0],[34,0],[33,0],[33,1],[10,0],[23,0],[22,0],[12,0],[44,1],[27,0],[17,0],[22,1],[22,0],[1,0],[1,0],[25,0],[7,0],[20,0],[22,0],[12,1],[45,0]],[[5278,2522],[33,0],[22,0],[12,1],[32,0],[36,0]],[[5867,1320],[-1,22]],[[4799,1428],[1,-17],[0,-2],[0,-15],[1,-16],[0,-19],[0,-19],[0,-16],[0,-15],[0,-17],[1,-18],[0,-1],[4,-5],[1,-1],[0,-2],[0,-3],[0,-14]],[[4845,1294],[3,4],[1,2],[2,3],[1,3],[0,3],[0,16],[-2,15],[-1,20],[-1,19],[0,16],[-1,6],[0,2],[1,3],[1,3],[3,6],[2,5],[5,7]],[[5413,2523],[31,0]],[[4071,2511],[34,0],[33,0],[33,1],[33,0],[36,0],[12,0],[8,0],[11,0],[1,0],[34,1],[34,0],[34,0],[33,1],[34,0],[34,0],[46,1],[44,0],[46,0],[4,0],[7,0],[23,0],[33,0],[33,0],[31,1],[4,1]],[[5818,2356],[2,-33],[1,-34],[0,-25],[1,-9],[2,-35],[1,-34],[2,-34],[1,-34],[2,-34],[1,-34],[2,-34],[2,-34],[1,-34],[1,-34],[2,-34],[2,-34],[1,-20],[0,-14],[1,-6],[1,-20],[0,-8],[1,-13],[1,-20],[1,-18],[0,-15],[0,-2],[2,-34],[2,-33],[0,-2],[1,-33],[2,-34],[2,-34],[1,-34],[1,-22],[0,-3],[1,-9],[1,-34],[2,-23],[1,-29],[2,-37],[1,-7]],[[5866,1163],[-4,-35],[-1,-13],[-1,-7],[-1,-20],[-1,-12],[0,-16],[0,-11],[0,-15]],[[5869,1191],[-3,-28]],[[5867,1320],[0,-15],[1,-7],[0,-5],[1,-11],[0,-13],[1,-11],[1,-14],[0,-20],[-1,-19],[0,-6],[-1,-8]],[[4799,1188],[-2,-26],[-5,-14],[-1,-4],[-1,-3],[0,-6],[0,-2],[0,-1],[2,-9]],[[4792,1123],[3,-11],[9,-40],[6,-24],[7,-28],[5,-16],[7,-17],[3,-9],[7,-17],[4,-10],[12,-33],[13,-33],[4,-9],[4,-10],[2,-6],[3,-9],[7,-17]],[[4807,1248],[-8,-60]],[[4807,1248],[3,12],[0,2],[1,2],[1,2],[2,3],[1,1],[2,2],[3,3],[3,3],[4,3],[3,2],[8,5],[3,2]],[[4841,1290],[2,2],[2,2]],[[5857,998],[0,-13],[0,-14],[0,-22],[1,-34],[1,-34],[1,-34],[0,-18],[0,-16],[0,-7]],[[5858,1034],[-1,-36]],[[1255,2475],[-33,0],[-34,0],[-32,-1],[-33,0],[-33,-1],[-33,0],[-33,-1],[-34,0],[-33,-1],[-33,0],[-31,-1],[-36,0],[-32,-1],[-34,0],[-33,-1],[-33,1],[-27,-2],[-37,0],[-26,-1]],[[1255,2475],[0,-8],[6,-7],[6,-4],[3,-2]],[[38,932],[39,27],[22,17],[50,40],[16,10],[24,13],[22,12],[25,14],[28,16],[16,11],[10,9],[86,122],[1,2],[16,13],[99,149],[29,22],[27,17],[20,11],[19,9],[42,23],[66,33],[40,20],[26,10],[8,2],[19,6],[19,4],[26,6],[20,2],[12,1],[19,1],[18,2],[19,4],[13,5],[10,4],[8,5],[19,13],[3,4],[97,67]],[[1071,1658],[32,22],[60,40],[15,14],[15,16]],[[949,1733],[7,-9],[15,-16],[12,-11],[14,-15],[14,-8],[17,-6],[21,-7],[13,-2],[9,-1]],[[1071,1658],[1,0],[14,-1],[13,0],[11,0],[12,0]],[[2008,1624],[-8,1],[-39,8],[-29,5],[-41,6],[-42,6],[-5,1],[-10,1],[-20,2],[-30,2],[-31,3],[-31,2],[-31,1],[-30,1],[-2,1],[-29,0],[-29,0]],[[1601,1664],[-3,0]],[[1598,1664],[-131,-2],[-34,-1],[-33,0],[-67,-1],[-33,-1],[-20,0],[-6,0],[-16,0],[-25,-1],[-30,0],[-30,0],[-18,-1],[-22,1],[-11,-1]],[[0,1809],[22,-1],[6,0],[34,-2],[54,0],[159,1],[118,2],[97,-3],[174,-17],[35,-5],[27,-2],[27,-3],[65,-5],[29,-2],[20,-3],[24,-5],[23,-9],[18,-9],[6,-5],[11,-8]],[[1207,1765],[33,37],[4,4],[5,10],[5,9],[2,8],[0,7],[0,10],[-1,32],[-2,49],[0,23],[2,6],[3,8],[6,8],[6,6],[9,8],[9,6],[12,6],[14,7],[11,3],[44,14],[75,24],[40,14],[25,8],[63,21]],[[1572,2093],[5,1]],[[1207,1765],[-14,-15]],[[4364,5239],[-30,0],[-34,0],[-33,-1],[-30,0],[-4,0],[-3,0],[-30,0],[-30,0],[-3,0],[-34,-1],[-33,0],[-34,0],[-33,0],[-34,-1],[-33,0],[-67,-1],[-67,0],[-33,0],[-33,-1],[-46,0],[-17,0],[-18,0],[-20,0],[-33,-1],[-33,0],[-34,0],[-34,-1],[-33,0],[-34,0],[-33,-1],[-34,0],[-33,0],[-34,-1],[-34,0],[-67,0],[-46,-1],[-17,0]],[[4493,5240],[-24,0],[-34,0],[-34,-1],[-34,0],[-3,0]],[[4627,5513],[-57,0],[-10,0],[-60,-1],[-30,0],[-21,0],[-28,0],[-64,0],[-39,-1],[-28,0],[-68,-1],[-24,0],[-12,0],[-13,0],[-18,0],[-68,0],[-65,-1],[-44,0],[-25,-1],[-71,0],[-38,-1],[-21,0],[-4,0],[-4,0],[-26,0],[-4,0],[-3,0],[-33,0],[-14,0],[-21,-1],[-22,0],[-6,0],[-67,-1],[-67,0],[-68,-1],[-67,0],[-67,-1],[-67,0],[-67,-1],[-60,0],[-14,0],[-61,-1],[-67,0]],[[3014,5501],[-67,-1],[-46,0],[-21,-1],[-67,0],[-26,0],[-41,-1],[-34,0],[-33,0],[-5,0],[-29,-1],[-38,0],[-39,0],[-8,0],[-37,-1],[-46,0],[-45,-1],[-44,0],[-45,-1],[-45,0],[-11,0],[-34,-1],[-5,0],[-40,0],[-33,0],[-11,-1],[-23,0],[-22,0],[-11,0],[-34,-1],[-34,0],[-11,0],[-22,0],[-22,-1],[-11,0],[-34,0],[-34,-1],[-34,0],[-22,0],[-11,0],[-33,-1],[-34,0],[-11,0],[-22,-1],[-23,0],[-11,0],[-33,0],[-33,0],[-4,0],[-19,-1],[-18,0],[-40,0],[-12,-1],[-28,0],[-34,0],[-33,-1],[-31,0],[-7,0],[-5,0],[-11,1],[-13,0]],[[5428,6067],[-38,-1],[-17,0],[-32,0],[-22,0],[-26,-1],[-19,0],[-6,0],[-38,0],[-34,0]],[[5196,6065],[-23,-1],[-16,0],[-14,0]],[[5143,6064],[-4,0]],[[5139,6064],[-13,0],[-19,0],[-19,0],[-15,-1],[-14,0],[-19,0],[-20,0],[-13,0],[-17,-1],[-17,0],[-17,0],[-16,0],[-17,0],[-17,0],[-3,0],[-14,0],[-16,-1],[-5,0]],[[4868,6061],[-43,0],[-21,0],[-18,0],[-28,-1],[-19,0],[-34,0],[-33,0],[-33,-1],[-33,0]],[[4606,6059],[-34,-1],[-34,0],[-34,0],[-33,0],[-17,0],[-16,-1],[-17,0],[-17,0],[-33,0],[-17,0],[-17,-1]],[[4337,6056],[-5,0],[-23,0],[-29,0],[-32,0],[-35,-1],[-9,0],[-10,0],[-32,0],[-31,0],[-31,0],[-34,-1],[-21,0],[-22,0],[-27,0],[-16,-1],[-41,0],[-10,0],[-38,0],[-30,-1],[-16,0],[-47,0],[-30,0],[-7,0],[-26,0],[-7,0],[-34,0],[-27,-1],[-5,0],[-28,0],[-6,0],[-28,0],[-5,0],[-29,-1],[-5,0],[-28,0],[-33,0],[-6,0],[-28,0],[-5,-1],[-28,0],[-6,0],[-28,0],[-5,0],[-32,0],[-33,-1],[-27,0],[-3,0],[-18,0],[-17,0],[-4,0]],[[3260,6048],[-3,0],[-59,-1],[-33,0],[-22,-1],[-82,0],[-31,-1],[-40,0]],[[2990,6045],[-84,0],[-51,-1],[-33,0],[-11,0],[-22,0],[-34,-1],[-29,0],[-30,0],[-9,0],[-25,0],[-9,0],[-25,-1],[-9,0],[-24,0],[-11,0],[-23,0],[-11,0],[-22,-1],[-12,0],[-22,0],[-11,0],[-29,0],[-29,0],[-10,0],[-22,-1],[-11,0],[-21,0],[-12,0],[-20,0],[-13,0],[-20,-1],[-14,0],[-20,0],[-13,0],[-21,0],[-12,0],[-22,0],[-10,-1],[-24,0],[-13,0],[-20,0],[-16,0],[-18,0],[-18,0],[-16,-1],[-19,0],[-25,0],[-11,0],[-34,0],[-45,-1],[-29,0],[-16,0],[-19,0],[-25,-1],[-13,0],[-32,0],[-8,0],[-26,0],[-8,0],[-25,0],[-8,0],[-26,-1],[-7,0],[-29,0],[-30,0],[-16,0],[-18,0],[-21,-1],[-7,0],[-5,0],[-32,0],[-19,0],[-25,0],[-25,-1],[-16,0],[-34,0],[-7,0],[-9,0],[-8,0],[-9,0],[-17,-1]],[[1382,5517],[2,-32]],[[1384,5485],[2,-28],[0,-7],[2,-34],[2,-35]],[[1377,5619],[0,-3],[0,-2],[2,-22],[1,-21],[1,-19],[1,-35]],[[1377,5623],[0,-4]],[[1390,5381],[0,-8],[0,-2],[1,-11]],[[1375,5652],[-58,-2],[-36,0],[-37,-1],[-45,0],[-45,-1],[-45,-1],[-38,0],[-45,-1],[-50,-1],[-57,0],[-48,-1],[-56,-1],[-50,-1],[-47,0],[-33,-1],[-31,-1],[-5,1],[-6,0],[-5,1],[-3,0],[-3,1],[-4,1]],[[1375,5652],[1,-13],[1,-14],[0,-2]],[[3023,5340],[0,3]],[[3023,5343],[0,4],[0,3],[-1,5],[0,3],[-1,5],[0,18],[-1,17],[-1,17],[-1,17],[-1,16],[-1,6],[0,11],[-1,12],[0,5],[-1,19]],[[3046,4862],[-1,-5],[0,-5],[1,-8],[0,-5],[1,-11]],[[3050,4828],[-1,12],[0,5],[-1,6],[-2,11]],[[3170,4956],[-62,0],[-33,0]],[[3140,4842],[-8,-8]],[[3313,4887],[-31,-7],[-94,-23],[-17,-4],[-14,-4],[-4,-1],[-4,-1],[-3,-1],[-3,-2],[-1,-1],[-2,-1]],[[3180,4956],[-10,0]],[[3170,4955],[10,0]],[[3180,4955],[14,0],[10,0],[18,-1],[8,0],[13,0],[36,1],[29,0],[32,0],[29,0],[29,1],[45,0],[44,1],[22,0],[67,1],[25,0],[10,2]],[[3611,4960],[-4,1],[-31,0],[-67,0],[-66,-1],[-45,0],[-23,0],[-36,-1],[-31,0],[-29,0],[-37,-1],[-18,0],[-7,0],[-16,-1],[-21,-1]],[[3611,4960],[-34,-9],[-88,-22],[-44,-10],[-45,-11],[-29,-7],[-29,-7],[-29,-7]],[[3611,4960],[15,2],[14,3],[4,1],[35,8],[31,8],[32,7],[17,4],[12,3],[4,1],[52,13],[6,1],[8,2],[37,9],[9,2],[25,6],[10,3],[22,5],[30,7],[33,8],[33,8],[24,6],[9,2],[33,8],[20,5],[14,3],[35,8],[2,1],[29,7],[4,1],[3,1],[18,4],[4,2]],[[4235,5109],[-5,0],[-18,-5],[-4,-1],[-3,0],[-28,-7],[-2,0],[-17,-4],[-21,-5],[-31,-7],[-14,-4],[-19,-4],[-33,-9],[-34,-8],[-32,-8],[-32,-7],[-7,-2],[-25,-6],[-34,-8],[-35,-8],[-17,-5],[-16,-4],[-33,-8],[-4,0],[-29,-8],[-32,-7],[-32,-8],[-34,-8],[-23,-6],[-10,-2]],[[5757,5672],[24,-12]],[[5781,5660],[0,-2]],[[2991,5326],[27,0],[5,1]],[[3023,5343],[-30,0]],[[3023,5340],[0,-11]],[[4235,5109],[46,11],[23,6],[36,8],[28,7],[3,1],[36,9],[32,7],[35,8],[31,8],[24,6],[4,1]],[[3023,5329],[0,-2]],[[3023,5327],[1,-14],[0,-4],[1,-13],[0,-4],[1,-16],[2,-49]],[[3028,5227],[1,-8],[1,-8],[0,-7],[0,-11],[2,-34],[1,-25],[0,-9],[1,-17],[1,-15],[0,-2],[2,-34],[1,-34],[1,-18],[0,-16],[2,-21],[0,-1],[0,-1],[0,-11]],[[3041,4955],[0,-2]],[[3041,4953],[1,-9],[0,-7],[1,-20],[1,-12],[0,-19],[2,-17],[0,-7]],[[3166,5229],[-7,0]],[[5691,5701],[47,-21],[5,-2]],[[5743,5678],[14,-6]],[[5725,5574],[-4,0]],[[5753,5574],[-1,0],[-4,0],[-23,0]],[[5726,5550],[28,0]],[[5825,5574],[-20,0],[-21,0]],[[5784,5574],[-28,0],[-3,0]],[[5754,5550],[3,0],[2,0],[27,0]],[[5781,5658],[0,-7],[0,-6],[1,-16]],[[5782,5629],[0,-11]],[[5782,5618],[1,-10],[0,-10]],[[5823,5619],[-41,-1]],[[5783,5598],[1,-11],[0,-13]],[[5784,5574],[1,-12],[0,-3],[0,-4],[1,-5]],[[5786,5550],[0,-12],[1,-13]],[[5786,5550],[12,0],[8,0],[20,0]],[[5826,5550],[40,0],[4,0]],[[5621,5732],[22,-10]],[[5643,5722],[5,-2],[10,-5],[33,-14]],[[6229,5621],[-2,0]],[[6227,5621],[-3,0],[-37,0],[-2,0],[-38,0],[-41,0]],[[6106,5621],[-41,0],[-33,0],[-4,0],[-3,-1],[-3,0],[-3,-1],[-4,-2],[-16,-7]],[[6005,5610],[13,6],[4,1],[3,1],[2,1],[2,0],[36,0],[41,0]],[[6106,5619],[41,0],[38,0],[2,0],[40,-1]],[[6227,5618],[2,1]],[[6103,5693],[-1,-5],[-1,-3],[0,-7],[1,-8],[0,-1],[-1,-6],[1,-10],[0,-4],[3,-10]],[[6105,5639],[2,10],[1,2],[0,2],[0,10],[-1,15],[-1,7],[0,3],[-3,5]],[[6105,5639],[1,-16]],[[6106,5619],[0,-2],[0,-8],[1,-10],[0,-12],[0,-12]],[[6107,5575],[0,-12],[1,-12]],[[6106,5623],[0,-2]],[[6106,5621],[0,-2]],[[6226,5640],[0,-2],[0,-15]],[[6226,5623],[1,-2]],[[6227,5621],[0,-3]],[[6227,5618],[0,-1],[1,-15],[0,-1],[3,-2]],[[6232,5623],[-1,15],[-1,2]],[[6231,5599],[1,3],[1,1],[0,2],[0,4],[-1,10]],[[6232,5619],[0,2]],[[6232,5621],[0,2]],[[6226,5740],[-44,-1],[-40,0],[-40,-1]],[[6102,5738],[-41,0],[-41,0],[-40,-1]],[[5981,5723],[13,-1],[27,1],[41,0],[40,0]],[[6102,5723],[40,1],[41,0],[43,1]],[[6226,5709],[-2,0],[-41,0],[-40,0],[-23,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-12,0]],[[6103,5708],[-40,0]],[[5254,4724],[14,5],[25,8],[25,8],[49,16],[23,7],[26,8],[15,5],[22,8],[23,7],[12,4]],[[5488,4800],[25,8]],[[4672,4684],[-4,11]],[[4674,4679],[-2,5]],[[4675,4630],[2,4],[1,5],[0,4],[-1,17],[0,8],[-1,5],[-1,3],[-1,3]],[[4669,4480],[-2,47],[-2,34],[0,17],[-1,17],[0,12],[1,4],[1,5],[2,3],[7,11]],[[5202,4467],[1,-15],[0,-5],[0,-5],[-1,-5],[0,-4],[0,-9],[1,-5],[1,-6],[1,-5]],[[5974,4962],[-33,-11],[-35,-12],[-10,-7],[-5,-2]],[[5988,4966],[-1,0],[-13,-4]],[[6040,4984],[-52,-18]],[[6040,4984],[3,0],[9,0]],[[6052,4984],[26,-3],[40,1],[7,0],[14,0],[6,0],[15,0],[12,0],[24,1],[35,0],[22,0]],[[6253,4985],[-19,1],[-8,0],[-24,0],[-6,0],[-24,-1],[-27,0],[-7,0],[-13,0],[-7,0],[-50,-1],[-16,0]],[[6256,4906],[-1,-6],[2,-15]],[[6257,4885],[0,-2],[0,-1]],[[6261,4883],[0,4]],[[6261,4887],[-1,4],[-4,15]],[[6257,4882],[0,-9]],[[6262,4874],[-1,9]],[[4692,3880],[-1,24],[0,2],[0,7],[-2,36],[-1,34],[0,6],[-1,11],[0,17],[-2,34],[-1,25],[0,10],[-1,33],[-1,17],[-1,17],[0,17],[-1,16],[0,18],[-1,17],[-1,34],[-2,34],[-1,34],[-2,67],[-1,13],[-1,13],[0,9],[0,12],[-1,9],[0,3],[-1,31]],[[5205,4408],[1,-5],[1,-19]],[[5207,4384],[2,-33],[0,-25],[1,-11],[0,-23],[1,-34],[2,-34],[1,-34],[1,-31],[0,-3],[1,-34],[2,-34],[0,-4],[1,-30],[1,-34],[2,-35],[1,-33],[1,-35],[1,-33],[1,-8],[1,-26],[1,-34],[1,-35],[1,-15],[0,-18],[2,-35],[1,-33],[1,-35],[1,-34],[1,-6],[0,-7],[0,-3],[1,-18],[1,-34],[1,-34],[1,-25],[1,-9],[2,-34],[1,-25],[0,-9],[-1,-8],[1,-26],[3,-34],[1,-17],[1,-17],[1,-17],[0,-17],[1,-17],[1,-17],[0,-29]],[[5965,5551],[16,0]],[[5981,5551],[6,0]],[[5987,5551],[3,0]],[[5987,5575],[-4,0],[-3,0]],[[5980,5575],[-10,0]],[[5999,5610],[-7,-3],[-3,-1],[-2,-2],[-2,-2],[-1,-1],[-1,-2],[-1,-4],[-2,-13],[0,-4],[0,-3]],[[5980,5575],[1,-24]],[[5981,5551],[0,-4],[0,-15],[0,-5]],[[5988,5527],[0,5],[0,7],[0,8],[-1,4]],[[5987,5551],[0,12],[0,12]],[[5987,5575],[-1,3],[0,3],[1,6],[0,5],[1,4],[0,2],[2,3],[2,2],[3,2],[2,1],[8,4]],[[5991,5575],[-4,0]],[[5825,5574],[-1,24],[-1,21]],[[5827,5525],[-1,25]],[[5826,5550],[0,8],[-1,3],[0,4],[0,9]],[[5867,5574],[-2,0],[-40,0]],[[5903,5574],[-36,0]],[[5870,5550],[33,0]],[[5903,5550],[4,0],[29,1]],[[5941,5575],[-2,0],[-34,-1],[-2,0]],[[5936,5551],[29,0]],[[5970,5575],[-29,0]],[[5784,5251],[3,0]],[[5787,5251],[13,0]],[[5800,5251],[40,0]],[[5840,5251],[40,1],[20,0],[21,0]],[[5880,5253],[-40,0]],[[5840,5253],[-41,0]],[[5799,5253],[-12,0]],[[5787,5253],[-3,0]],[[5835,5342],[0,15],[-1,14],[-1,12],[0,3],[0,7],[-1,10],[0,10],[-1,17],[-1,24],[0,12],[-1,12],[-1,23],[-1,18],[0,6]],[[5837,5299],[0,15],[-1,14],[-1,14]],[[5840,5251],[0,2]],[[5840,5253],[-1,8],[0,1],[0,8],[0,2],[-1,13],[-1,14]],[[5948,5254],[-27,0],[-8,0],[-17,0],[-16,-1]],[[5921,5252],[28,0]],[[6031,5255],[-3,0],[-76,-1],[-4,0]],[[5949,5252],[80,1],[2,0]],[[5784,5253],[-23,0]],[[5762,5251],[22,0]],[[5787,5525],[0,-12],[1,-12],[0,-7],[0,-5],[1,-12],[0,-7],[0,-5],[1,-12],[1,-23],[1,-15],[0,-12],[1,-3],[0,-14],[1,-15],[1,-30],[1,-13],[1,-29],[2,-27],[0,-9],[0,-1],[0,-9]],[[5799,5253],[1,-2]],[[5789,5231],[-1,11],[-1,9]],[[5787,5251],[0,2]],[[5990,5551],[38,0],[40,0],[40,0]],[[6108,5551],[41,1],[38,-1],[2,0],[44,0]],[[6231,5575],[-42,0],[-3,0],[-38,0],[-41,0]],[[6107,5575],[-40,0],[-40,0],[-36,0]],[[6074,5407],[16,0],[14,0]],[[6103,5410],[-2,0],[-11,0],[-16,0]],[[6104,5407],[21,1]],[[6125,5410],[-22,0]],[[6125,5408],[2,0],[28,0],[15,0],[12,0],[11,0],[2,0],[14,0],[14,0],[16,0]],[[6239,5411],[-30,0],[-14,0],[-2,0],[-11,0],[-28,0],[-15,0],[-2,-1],[-10,0],[-2,0]],[[6231,5599],[0,-12],[0,-12]],[[6231,5575],[2,-24]],[[6233,5551],[0,-11],[1,-11]],[[6234,5529],[0,-2],[1,-2],[1,-20],[0,-12],[1,-12],[0,-12],[0,-11],[1,-24],[1,-23]],[[6058,5253],[46,1],[22,0],[12,0],[20,0],[4,0],[42,0],[41,1]],[[6245,5257],[-79,-1],[-4,0],[-4,0],[-54,-1],[-46,0]],[[6239,5411],[0,-3]],[[6239,5408],[1,-19],[0,-3],[0,-6],[0,-18],[1,-15],[0,-9],[1,-23],[1,-25],[2,-33]],[[6245,5257],[0,-2]],[[6245,5255],[0,-12],[0,-19],[1,-31],[0,-4],[1,-27],[1,-7],[0,-1],[0,-1],[1,-32],[0,-22],[1,-22],[1,-25],[1,-20],[0,-22],[1,-25]],[[6253,4985],[0,-2]],[[6253,4983],[1,-33],[2,-34],[0,-10]],[[5981,5527],[1,-24],[1,-20],[0,-4],[1,-24],[0,-2],[0,-2],[1,-6],[0,-5],[1,-8]],[[5992,5432],[0,1],[-1,4],[0,8],[0,1],[0,5],[0,4],[-1,24],[0,4],[-1,20],[0,12],[-1,12]],[[6031,5253],[27,0]],[[6058,5255],[-27,0]],[[6088,6074],[-44,0]],[[6096,6111],[-6,-2],[-2,-2],[-1,-4],[1,-29]],[[6096,6111],[7,0],[7,1],[7,1],[10,1],[9,0],[6,-1]],[[6142,6116],[-7,1],[-8,0],[-6,0],[-8,-1],[-6,-1],[-6,-2],[-5,-2]],[[6142,6113],[9,-1]],[[6150,6115],[-8,1]],[[6243,6135],[3,-9],[3,-8],[2,-9],[2,-6],[2,-4]],[[6255,6099],[1,-2]],[[6088,6074],[1,-37],[1,-28],[2,-36],[1,-35],[1,-15],[1,-24],[1,-24],[1,-24],[2,-24],[0,-25],[1,-19],[0,-15],[1,-15],[1,-15]],[[6102,5738],[0,-15]],[[6102,5723],[1,-15]],[[6103,5708],[0,-6],[0,-9]],[[1091,3527],[-10,-9],[-5,-5],[-9,-10],[-15,-15],[-15,-16],[-16,-16],[-52,-55],[-4,-3],[-19,-19],[-6,-6],[-13,-11],[-16,-13],[-14,-10],[-70,-46],[-5,-3],[-64,-42],[-84,-56],[-56,-37],[-34,-22],[-83,-54],[-7,-5],[-20,-13],[-15,-7]],[[8015,3365],[1,-1],[1,0],[12,-9],[14,-9],[33,-23],[24,-15],[23,-17],[47,-33],[47,-32],[53,-33],[54,-34],[52,-34],[37,-23]],[[8413,3102],[5,-5]],[[8418,3097],[1,-3],[1,-5],[1,-26],[1,-34],[1,-34],[1,-34]],[[7373,3462],[0,-8],[1,-19],[0,-6],[0,-5],[0,-3],[-2,-6],[-2,-4],[0,-4],[0,-13],[1,-32],[0,-1],[0,-1],[0,-1],[1,-16],[1,-17],[0,-17],[1,-17],[0,-17],[1,-17],[1,-17],[1,-17],[0,-17],[1,-17],[1,-17]],[[7379,3173],[1,-5],[2,-4],[1,-18],[1,-24],[1,-30],[0,-4],[0,-10]],[[7385,3078],[1,-3]],[[7389,3073],[0,1]],[[7389,3074],[1,3],[0,2],[0,9],[0,1],[-2,34],[-1,9],[-1,25],[1,4],[0,7],[2,5]],[[7389,3173],[0,17],[-1,17],[-1,17],[-1,17],[0,17],[-1,17],[0,17],[-1,17],[-1,17],[0,17],[-1,16],[0,1],[0,1],[0,1],[-1,32],[-1,18],[0,2],[1,2],[0,4],[1,3],[0,6],[-2,34]],[[7379,3173],[-3,-6],[1,-11],[3,-62],[0,-6],[0,-2],[1,-1],[3,-5],[1,-2]],[[7386,3075],[0,-5]],[[7386,3070],[0,-2]],[[7386,3068],[0,-4]],[[7389,3063],[0,4]],[[7389,3067],[0,1]],[[7389,3068],[0,5]],[[7389,3074],[1,2],[3,6],[1,3],[0,3],[-1,26],[0,8],[-1,34],[-2,9],[-1,8]],[[586,4296],[64,-2],[15,-1],[67,-1],[5,-1],[9,1],[8,0],[8,1],[6,1],[8,2],[6,1],[5,2],[4,2],[5,2],[10,6],[26,14],[19,10],[39,21],[3,1],[3,1],[42,6]],[[1323,7382],[-1,-9],[-1,-28],[0,-9],[0,-6],[0,-8],[-1,-6],[0,-7],[0,-2],[0,-5],[0,-8],[0,-2],[0,-15],[0,-18],[0,-8],[0,-8],[-1,-18],[0,-15],[-1,-18],[0,-16],[-1,-18],[0,-16],[0,-18],[0,-17],[0,-6],[0,-3],[0,-8],[0,-7],[0,-11],[-1,-16],[0,-16],[0,-17],[0,-12],[0,-5],[0,-18],[0,-16],[0,-18],[0,-16],[0,-1],[-1,-10],[0,-23],[0,-32],[0,-2],[0,-18]],[[1315,6852],[2,-38],[1,-34],[2,-34],[0,-6],[2,-28],[0,-9],[1,-25],[2,-34],[0,-2],[2,-32],[2,-26],[0,-8],[1,-30],[0,-1],[2,-35],[0,-2],[2,-33],[2,-33],[1,-28],[0,-8],[2,-22],[1,-11],[0,-17],[1,-17],[1,-15],[0,-10],[1,-11],[0,-1],[0,-1],[0,-4],[2,-26],[1,-12],[0,-23],[1,-34],[2,-34],[2,-34],[2,-34],[1,-34],[2,-35]],[[1356,6031],[1,-34],[2,-34],[2,-35],[2,-34],[1,-34],[2,-34],[1,-16],[1,-14],[0,-4],[1,-14],[1,-21],[1,-22],[1,-16],[1,-7],[1,-19],[0,-5],[1,-36]],[[1356,6031],[-34,0],[-11,0],[-23,0],[-22,-1],[-11,0],[-33,0],[-34,-1],[-11,0],[-22,0],[-22,0],[-12,0],[-33,0],[-33,-1],[-11,0],[-23,0],[-21,-1],[-13,0],[-32,0],[-35,-1],[-4,0],[-29,0],[-33,0]],[[2490,7210],[18,-14]],[[1204,4252],[-22,-3],[-12,-2],[-2,0],[-5,0],[-9,-1],[-15,0],[-3,0],[-11,0],[-15,0],[-9,0],[-4,0],[-16,0],[-15,-1],[-26,0]],[[1239,4261],[-24,-7],[-7,-1],[-4,-1]],[[1441,4439],[-2,22],[-1,20],[0,12],[-1,13],[-1,22],[0,1],[-1,15],[-1,18],[0,6],[-1,6],[0,4],[0,1],[0,4],[0,6],[-2,21],[-1,20],[-1,21],[-1,14],[-2,34],[-2,34],[0,16],[-1,13],[-1,15],[0,4],[-1,4],[0,1],[0,13],[0,2],[-4,55],[-1,19],[0,8],[-1,5],[-1,23],[0,2],[0,7],[-1,5],[0,1],[0,1],[0,4],[0,6]],[[1181,4379],[20,3],[17,3],[8,2],[4,1],[13,3]],[[6335,5740],[-5,0]],[[6330,5740],[-31,0],[-36,0],[-37,0]],[[6226,5725],[37,0],[37,0],[27,1],[4,0]],[[6331,5726],[4,0]],[[6341,5711],[-2,0],[-3,0],[-1,0],[-2,0],[-2,0],[-2,-1],[-14,0]],[[6332,5701],[0,-2],[0,-2],[0,-1],[0,-2],[1,-8],[0,-8],[0,-1],[0,-1],[-1,-2],[-2,-6],[-1,-3]],[[6333,5665],[1,2],[2,6],[1,2],[0,3],[0,8],[0,6],[0,2],[0,2],[-1,5]],[[6336,5701],[0,7]],[[6336,5708],[0,1],[0,3],[0,2]],[[6617,5714],[-7,0],[-6,0],[-11,0],[-11,-1],[-2,0],[-51,0],[-18,0],[-27,-1],[-37,0],[-5,0]],[[6442,5712],[-5,0],[-59,-1],[-3,0],[-3,0],[-27,0],[-4,0]],[[6437,5670],[1,2],[3,13],[1,6]],[[6442,5697],[0,2],[0,11],[0,2]],[[6442,5712],[0,2],[-1,13],[0,15]],[[6442,5691],[0,4],[0,2]],[[6646,5714],[-2,0],[-9,0],[-15,0],[-3,0]],[[6678,5715],[-24,-1],[-8,0]],[[6679,5700],[-1,15]],[[6315,5710],[-12,0],[-3,0],[-2,0],[-31,0],[-3,0],[-3,0],[-31,-1],[-4,0]],[[6331,5714],[0,-2],[0,-3],[0,-1]],[[6331,5708],[1,-7]],[[1399,5211],[-33,-1],[-19,0],[-15,0],[-34,-1],[-33,0],[-33,0],[-20,-1],[-14,0],[-33,0],[-32,-1],[-1,0],[-1,0],[-44,0],[-35,-1],[-9,0],[-45,0],[-144,-2],[-35,0],[-31,-1],[-15,0]],[[6325,5911],[2,-6],[4,-9],[1,-3],[1,-4],[-1,-3],[-1,-5]],[[6335,5881],[1,6],[2,5],[0,3],[0,2],[-1,2],[-1,2],[-2,1],[-5,4],[-4,5]],[[6334,5804],[0,2],[1,8],[1,3],[1,3],[0,2],[1,3],[0,1],[0,9],[-1,16],[-1,15],[0,3]],[[6336,5869],[2,12]],[[6336,5869],[-1,12]],[[5325,5862],[2,-1],[8,-4]],[[5379,5838],[-44,19]],[[5145,5947],[0,-6]],[[5145,5941],[1,-13],[0,-9],[1,-8],[0,-3],[0,-14],[1,-9],[0,-8],[1,-17],[0,-17],[1,-5],[0,-12],[1,-7],[0,-4],[0,-7],[0,-8],[1,-8]],[[3053,4818],[-12,-1]],[[3047,4828],[0,-5]],[[3047,4823],[0,-9],[0,-13],[1,-12],[0,-6],[0,-6],[1,-7],[3,-14]],[[3050,4823],[0,5]],[[3052,4756],[0,6],[1,5],[1,5],[0,6],[-1,12],[-1,11],[0,8],[-1,4],[-1,8],[0,2]],[[3132,4834],[-3,-3],[-3,-2],[-4,-2],[-4,-2],[-5,-2],[-8,-2],[-5,-1],[-4,0],[-7,-1],[-9,0],[-27,-1]],[[986,4223],[-1,-3],[-1,-3],[0,-3],[0,-4],[2,-34],[2,-23],[0,-22],[1,-10],[-1,-7],[-3,-6]],[[4606,6177],[62,-27],[49,-22],[20,-8],[38,-18],[18,-8],[13,-6],[19,-7],[43,-20]],[[4868,6061],[5,-2],[60,-26],[12,-5],[31,-14],[14,-6],[15,-6],[35,-16],[21,-9],[16,-7],[16,-6],[21,-10],[22,-9],[3,-2]],[[4885,5398],[13,0],[3,0],[8,0],[57,1],[5,0],[6,0]],[[4977,5399],[26,0],[31,0],[1,0],[44,1],[8,0],[15,1],[66,0]],[[5168,5401],[4,0]],[[5172,5401],[7,0]],[[5190,5423],[-21,0]],[[5169,5423],[-24,0],[-11,0],[-33,-1],[-16,0],[-28,0],[-22,-1],[-19,0]],[[5016,5421],[-99,-1],[-18,0],[-10,0]],[[5256,5569],[-4,-2],[-4,-2],[-14,-9],[-6,-4],[-2,-2],[-2,-1],[-3,-1],[-3,0],[-3,0],[-3,0],[-3,0],[-10,2],[-7,2],[-3,0],[-5,1],[-3,0],[-3,0],[-7,0],[-3,0],[-5,0]],[[5163,5553],[-68,-1],[-34,0],[-33,0],[-19,-1],[-29,0],[-19,0],[-67,-1]],[[5169,5419],[0,-14]],[[5177,5229],[1,2],[1,7],[0,6]],[[5179,5244],[0,3]],[[5179,5247],[-1,14],[-1,29],[-1,20],[-1,25],[-1,23],[0,3],[-1,12],[0,7],[0,2],[0,2],[-1,17]],[[5172,5401],[0,2],[-3,2]],[[5177,5229],[0,-17],[1,-8],[0,-9],[1,-17],[0,-16],[1,-17],[0,-9]],[[4894,5550],[-67,-1],[-67,0],[-67,-1],[-68,-1]],[[4626,5531],[68,0],[66,1],[68,1],[67,0],[13,0],[14,1],[24,0],[16,0],[17,0],[37,0],[7,1],[6,0],[34,0],[33,0],[68,1]],[[5164,5536],[14,0]],[[4660,4726],[-1,19],[0,5],[-1,16],[0,8],[0,4],[-1,11],[0,2],[-1,16],[-2,19],[0,8],[-1,33],[-1,17],[-1,16],[-1,17],[0,17],[-1,9],[0,8],[-1,17],[0,17],[-1,18],[-1,17],[0,17],[-1,17],[0,12],[0,2]],[[3014,5501],[-1,12],[0,6],[-1,6],[0,7],[0,6],[-1,12],[-1,24],[0,9],[-1,9],[-1,7],[0,4],[0,12],[-1,8],[0,9],[0,7],[-2,15],[-1,16],[-1,17],[-1,17],[0,17],[-1,16],[-1,17],[-1,18],[0,17],[-1,18],[-1,16],[0,18],[-1,17],[0,17],[0,17],[-1,17],[0,17],[-1,17],[0,17],[-1,17],[0,21],[-1,13],[-1,25],[-1,9]],[[2990,6045],[0,8],[1,4],[4,5],[2,6],[0,11],[-2,18],[0,16],[0,3],[-1,10],[-1,22],[-2,34],[-1,17],[0,17],[-1,17],[-1,17],[-1,35],[-1,17],[0,17],[-1,17],[-1,18],[0,2],[-1,15],[0,3],[-1,13],[0,6],[0,6],[-1,5],[-1,13],[0,4],[-1,15],[0,2],[-1,17],[-1,17],[-1,17],[-1,17],[-1,17],[-2,17],[-1,17],[-1,17],[0,18],[-1,17],[0,16],[-1,18],[-1,17],[0,17],[-1,17],[0,7],[-1,11],[0,16],[-1,17],[-2,17],[0,17],[-1,17],[-1,6],[0,11],[-1,17],[-1,16],[0,18]],[[4983,5403],[26,14]],[[5190,4843],[1,-15]],[[5191,4828],[0,-21],[1,-37],[0,-46],[1,-6],[1,-18]],[[5194,4700],[0,-13],[1,-9],[0,-8],[1,-10],[0,-1],[0,-3],[0,-7],[0,-3],[0,-1],[0,-5],[1,-6],[0,-17],[1,-17],[1,-26],[0,-9],[1,-34],[1,-34],[0,-1]],[[5201,4496],[0,-4]],[[5201,4492],[1,-25]],[[4520,5240],[-5,0]],[[4702,5242],[-63,-1]],[[4639,5241],[-4,0]],[[4635,5241],[-13,0],[-51,0],[-19,-1],[-32,0]],[[4702,5242],[9,-2],[61,1],[24,0],[108,1],[4,0],[65,1],[67,1],[42,0],[10,0],[15,0]],[[5107,5247],[-34,-1],[-33,0],[-62,-1],[-70,-1],[-5,0],[-48,0],[-59,0],[-85,-1],[-9,-1]],[[4780,5287],[-19,-11],[-59,-34]],[[4983,5403],[-6,-4]],[[4977,5399],[-11,-6],[-22,-13],[-25,-14],[-4,-2],[-10,-6],[-5,-3],[-13,-7],[-28,-16],[0,-1],[-79,-44]],[[4562,6196],[7,-2],[31,-15]],[[4600,6179],[6,-2]],[[4606,6177],[-44,19]],[[4592,6365],[0,-6],[1,-14],[0,-4],[0,-10],[1,-15],[0,-1],[1,-13],[0,-1],[0,-13],[1,-3],[0,-11],[0,-4],[1,-12],[0,-7],[1,-12],[0,-3],[0,-11],[0,-3],[1,-4],[0,-5],[0,-5],[0,-3],[1,-11],[0,-15]],[[4600,6179],[0,-2],[1,-8],[0,-9],[1,-8],[0,-10],[1,-15],[0,-10],[1,-17],[0,-8],[1,-24],[1,-9]],[[4622,5652],[0,1],[-1,17],[-1,14],[0,6],[0,5],[-1,16],[0,7],[-1,17],[-1,17],[-1,17],[0,8],[0,9],[0,9],[-1,8],[0,17],[-1,17],[-1,17],[-1,17],[0,17],[-1,16],[0,18],[-2,34],[-1,34],[-1,34],[-1,25],[0,1],[0,9]],[[4508,5240],[-15,0]],[[4515,5240],[-7,0]],[[4546,5185],[-10,-2],[-3,-2]],[[4533,5181],[5,0],[9,2]],[[4555,5187],[-9,-2]],[[4547,5183],[10,3]],[[4556,5188],[-1,-1]],[[4570,5191],[-14,-3]],[[4557,5186],[1,0]],[[4558,5186],[15,4]],[[4579,5191],[3,1],[11,3],[2,1]],[[4595,5196],[20,5],[23,5]],[[4638,5206],[3,1]],[[4641,5207],[3,2],[18,10],[40,23]],[[4602,5398],[23,0],[4,0]],[[4629,5398],[5,0]],[[4634,5398],[3,-1],[11,0],[17,0],[17,0],[17,0],[10,0]],[[4714,5419],[-16,0],[-28,0],[-32,-1],[-4,0]],[[4634,5418],[-6,0]],[[4628,5418],[-13,0],[-9,0]],[[4571,5192],[-1,-1]],[[4576,5193],[-5,-1]],[[4573,5190],[1,0]],[[4574,5190],[5,1]],[[4595,5196],[-4,0],[-11,-2],[-4,-1]],[[4625,5547],[-1,16],[0,7],[0,8],[-1,20],[0,17],[-1,30]],[[4622,5645],[0,7]],[[4625,5547],[0,-8],[1,-8]],[[4626,5531],[0,-9],[1,-9]],[[4627,5513],[0,-8],[0,-9],[1,-18],[0,-13],[1,-20],[1,-12]],[[4628,5414],[1,-12]],[[4630,5433],[-2,-4],[0,-11]],[[4628,5418],[0,-4]],[[4629,5402],[0,-4]],[[4629,5398],[1,-11],[0,-10]],[[4634,5414],[0,4]],[[4634,5418],[-1,5],[-1,6],[-2,4]],[[4630,5377],[1,-8],[0,-9],[1,-17],[0,-14],[1,-3],[0,-17],[1,-17],[0,-6]],[[4638,5286],[-1,6],[0,11],[-1,23],[0,3],[-1,14],[0,5],[0,13],[-1,5],[0,3],[0,8]],[[4634,5377],[0,19],[0,2]],[[4634,5398],[1,4]],[[4634,5286],[0,-11],[1,-17],[0,-17]],[[4635,5241],[2,-16],[0,-6],[0,-10],[1,-3]],[[4638,5206],[0,-3],[0,-6],[1,-7],[1,-3]],[[4635,5402],[-1,12]],[[4640,5187],[1,1],[0,2],[0,12],[0,2],[0,3]],[[4641,5207],[0,4],[-1,8],[0,10],[-1,12]],[[4639,5241],[0,9],[0,8],[-1,21],[0,6],[0,1]],[[4640,5180],[0,7]],[[4644,5075],[0,14],[-1,17],[-1,17],[0,16],[-2,34],[0,7]],[[4645,5068],[-1,7]],[[5099,5470],[-18,-11],[-22,-13]],[[5059,5446],[-17,-10],[-9,-5],[-17,-10]],[[5016,5421],[-7,-4]],[[5143,5494],[-44,-24]],[[5185,5519],[-19,-12]],[[5166,5507],[-23,-13]],[[5165,5518],[1,-11]],[[5166,5507],[0,-13],[1,-24],[1,-23],[0,-9],[1,-15]],[[5169,5423],[0,-4]],[[5710,5252],[-28,0],[-6,0],[-11,-1],[-24,0],[-26,0],[-18,0],[-60,-1],[-1,0],[-52,0],[-9,0],[-3,0],[-25,-1],[-4,0],[-5,0],[-29,0],[-33,0],[-67,-1],[-67,-1],[-63,0]],[[5179,5247],[-6,0]],[[5173,5247],[-4,-1],[-23,0],[-9,0],[-30,1]],[[5107,5244],[21,0],[5,0],[40,0]],[[5173,5244],[6,0]],[[5179,5244],[63,1],[67,0],[67,1],[41,1],[6,0],[15,0],[5,0],[90,1],[8,0],[34,1],[22,0],[85,1],[28,0]],[[5169,5405],[-1,-2],[0,-2]],[[5168,5401],[1,-17],[0,-2],[0,-2],[0,-19],[0,-3],[1,-23],[1,-28],[1,-17],[0,-7],[1,-27],[0,-9]],[[5173,5247],[0,-3]],[[5173,5244],[1,-6],[0,-7],[3,-2]],[[6331,5881],[1,-15],[1,-15],[0,-7],[0,-9],[0,-8],[0,-3],[0,-4],[-1,-3],[0,-4],[-1,-4],[-1,-5]],[[5463,5769],[-7,-6],[-5,-4]],[[5455,5758],[3,2],[9,7]],[[5489,5790],[-10,-8],[-7,-6],[-5,-4],[-4,-3]],[[5467,5767],[1,1],[15,12],[10,9]],[[5477,5795],[5,-2],[7,-3]],[[5489,5790],[4,-1]],[[5493,5789],[9,-4]],[[5379,5838],[12,-5],[28,-12],[27,-12],[31,-14]],[[5421,5769],[0,-8],[1,-17],[0,-8]],[[5422,5736],[0,-4]],[[5502,5785],[1,-1],[9,-4],[15,-7],[16,-7],[13,-5],[13,-7],[16,-6],[16,-7],[20,-9]],[[5345,5666],[4,5]],[[5342,5669],[-5,-4]],[[5337,5665],[-7,-7],[0,-1]],[[3866,4145],[49,20],[35,15],[26,10],[10,5],[19,8],[11,4],[17,7],[17,7],[15,7],[17,7],[26,11],[6,3],[25,10],[24,10],[34,15],[25,10],[9,4],[16,6],[24,10],[25,11],[17,7],[14,6],[11,4],[66,28],[32,13],[25,10],[29,13],[40,17],[7,3],[64,26],[15,7],[4,1],[49,20]],[[4669,4480],[15,7],[17,7],[18,8],[9,4],[25,10],[7,3],[40,16],[33,14],[33,14],[65,27],[39,17],[40,16],[23,10],[31,13],[66,27],[1,0],[30,13],[33,14]],[[5194,4700],[24,10],[8,3]],[[5201,4496],[-3,-11],[0,-5],[1,-17],[1,-17],[-1,-12],[-1,-6],[1,-7],[0,-4],[2,-7],[1,-5],[1,-5],[0,-7],[4,-9]],[[5207,4384],[3,9],[-1,12],[-1,5],[-1,6],[-1,6],[0,6],[0,8],[0,10],[0,17],[-2,18],[-3,11]],[[5452,6067],[-24,0]],[[6044,6074],[-26,0],[-13,-1],[-14,0],[-26,0],[-12,0],[-15,0],[-33,0],[-33,-1],[-34,0],[-33,-1],[-25,0],[-41,-1],[-27,0],[-20,0],[-19,-1],[-29,0],[-4,0],[-36,0],[-10,-1],[-14,0],[-40,0],[-13,0],[-14,0],[-39,0],[-22,-1]],[[5196,6065],[5,-4],[4,-4]],[[5187,5922],[11,-4],[51,-23],[33,-14],[31,-14],[12,-5]],[[5116,6273],[-1,-5],[4,-18],[6,-24],[1,-5],[3,-9],[4,-12],[6,-11],[0,-4],[-3,-18],[2,-40]],[[5138,6127],[-1,-5],[1,-16],[0,-8],[-1,-8],[1,-18],[1,-8]],[[5139,6064],[0,-14],[1,-14],[0,-6],[1,-8],[0,-14],[0,-12],[1,-14],[1,-19],[0,-13],[2,-3]],[[5145,5947],[2,3],[-2,46],[0,12],[0,14],[-1,8],[0,6],[-1,14],[0,14]],[[5143,6064],[-1,9],[-1,17],[0,8],[0,8],[0,16],[-3,5]],[[5139,5943],[6,-2]],[[5145,5941],[29,-13],[13,-6]],[[6274,5625],[2,1],[2,1],[11,8],[6,5],[2,2]],[[5328,5650],[8,7]],[[5330,5657],[-8,-8]],[[5336,5657],[1,1],[8,8]],[[5349,5671],[7,7],[18,15],[7,5],[9,8],[8,6],[17,14],[7,6]],[[5422,5732],[10,8],[14,11],[4,3],[5,4]],[[5451,5759],[-13,-10],[-16,-13]],[[5422,5736],[-12,-10],[-9,-8],[-8,-6],[-17,-14],[-13,-10],[-13,-10],[-8,-9]],[[5275,5592],[-9,-11],[-5,-7],[-5,-5]],[[5256,5569],[-3,-4],[-4,-4]],[[5249,5561],[5,3],[4,3],[3,2],[1,1],[2,3],[4,5],[12,15]],[[5322,5649],[-5,-5],[-12,-13],[-13,-17],[-8,-10],[-9,-12]],[[5280,5593],[5,6],[13,16],[13,16],[14,15],[3,4]],[[5225,5545],[4,0],[4,0],[16,0],[38,0],[13,1],[34,0],[26,0],[25,0],[31,1],[26,0],[31,0],[32,1],[32,0],[32,1],[31,0],[33,0],[32,1],[16,0],[16,0],[15,0],[12,0],[2,0]],[[5155,5697],[0,7],[0,2],[0,10],[-1,8],[0,6],[0,2],[0,9],[-1,8],[0,9],[0,8],[-1,9],[0,8],[0,9]],[[5156,5676],[-1,13],[0,8]],[[5158,5656],[0,1],[-2,19]],[[5158,5649],[0,7]],[[5165,5518],[-1,18]],[[5164,5536],[0,2],[-1,15]],[[5163,5553],[0,2],[-1,15],[-1,21],[-1,15],[-1,7],[0,8],[-1,8],[0,9],[0,7],[0,4]],[[5178,5536],[33,0]],[[5178,5536],[5,0],[5,1],[19,5],[5,1],[5,1],[4,0],[4,1]],[[5185,5519],[26,17]],[[5211,5536],[14,9]],[[5225,5545],[3,2],[21,14]],[[5513,4808],[26,9],[22,8],[12,4],[35,12],[39,12],[23,8],[31,10],[21,7],[28,9],[19,7],[9,2],[9,2],[23,4],[12,3],[16,5],[25,8],[18,7],[10,5]],[[5180,5136],[1,-7]],[[5181,5129],[0,-8]],[[5181,5121],[0,-9]],[[5181,5112],[0,-2],[1,-17],[1,-17],[1,-17],[1,-17],[0,-17],[1,-17],[0,-18],[0,-16],[0,-4],[2,-54],[2,-73]],[[6256,6097],[2,-2],[2,-1],[7,-10],[3,-4],[4,-5],[1,0],[2,-3],[0,-4],[0,-5],[0,-5],[1,-4],[0,-7],[1,-3],[2,-8],[8,-24],[7,-20],[7,-17],[4,-13],[1,-5],[1,-11],[0,-1],[1,-2],[0,-1],[0,-2],[7,-14],[8,-15]],[[6283,6117],[-5,-5],[-5,-3],[-8,-5],[-6,-3],[-4,-2]],[[6255,6099],[-7,-1],[-6,-1],[-9,-1],[-8,0],[-10,1],[-8,2],[-8,2],[-14,4],[-8,3],[-11,3],[-8,2],[-8,2]],[[6151,6112],[7,-1],[8,-2],[22,-8],[9,-3],[6,-1],[8,-2],[8,-1],[10,0],[9,0],[12,2],[6,1]],[[6256,6097],[6,2],[8,4],[8,6],[6,7]],[[6344,4983],[-1,2]],[[6343,4985],[0,25],[-1,23],[-2,45],[-2,44],[-2,72],[0,31],[-1,30]],[[6335,5255],[-1,3]],[[6400,5259],[-23,-1],[-11,0],[-32,0]],[[6335,5255],[40,1],[6,0],[20,0]],[[6239,5408],[4,0],[5,1],[5,0],[6,0],[3,1],[3,0],[18,0],[23,0],[23,0]],[[6329,5410],[4,0]],[[6333,5412],[-4,0]],[[6329,5412],[-23,0],[-23,-1],[-24,0],[-20,0]],[[6327,5459],[6,0]],[[6333,5459],[3,0],[12,0],[14,1]],[[6362,5460],[21,0]],[[6323,5647],[-10,0],[-5,0],[-6,-1],[-4,-1],[-3,-2]],[[6297,5642],[4,2],[6,1],[7,0],[8,-1]],[[6324,5649],[-1,-2]],[[6323,5647],[-1,-3]],[[6322,5644],[-1,-3],[0,-3],[0,-4],[0,-16],[1,-12]],[[6322,5606],[0,-7],[1,-21],[0,-3]],[[6322,5644],[4,0]],[[6326,5644],[5,0],[5,0],[20,0],[4,0],[6,0]],[[6366,5646],[-5,0],[-4,1],[-4,0],[-22,-1],[-4,1]],[[6327,5647],[-4,0]],[[6329,5665],[-5,-16]],[[6326,5606],[0,13],[0,18],[0,3],[0,4]],[[6326,5644],[1,3]],[[6327,5647],[0,1],[1,1]],[[6329,5575],[-1,2],[0,4],[-1,5],[0,6],[0,7],[-1,7]],[[6328,5649],[5,16]],[[6432,5659],[-4,-16]],[[6437,5670],[-1,-1],[-1,-2],[-3,-8]],[[6434,5642],[4,17]],[[6438,5659],[0,4],[0,4],[-1,2],[0,1]],[[6323,5575],[-19,0],[-3,0],[-24,0],[-46,0]],[[6233,5551],[23,0],[22,0],[23,0],[23,0]],[[6324,5551],[4,1],[3,0],[1,0]],[[6323,5575],[0,-2]],[[6323,5573],[0,-2],[1,-20]],[[6352,5575],[-11,0],[-12,0]],[[6329,5575],[-6,0]],[[6323,5573],[6,0]],[[6329,5573],[14,0]],[[6324,5551],[0,-1],[1,-20]],[[6332,5552],[0,5],[0,2],[0,2],[-1,3],[-2,9]],[[6329,5573],[0,2]],[[6325,5530],[0,-11],[1,-12],[1,-24],[0,-22],[0,-2]],[[6327,5459],[0,-2],[1,-20],[0,-2],[1,-23]],[[6329,5412],[0,-2]],[[6329,5410],[1,-23],[1,-24],[1,-24],[1,-24],[0,-24],[0,-26],[1,-7]],[[6331,5483],[0,11],[0,2],[0,1],[1,5],[0,3],[0,2],[1,5],[0,5],[1,3],[0,3],[-1,8]],[[6333,5459],[0,2],[-1,7],[0,3],[-1,4],[0,2],[0,6]],[[6333,5531],[-1,19],[0,2]],[[6334,5258],[3,7],[1,25],[0,1],[0,2],[0,21],[-1,1],[0,7],[-1,16],[0,1],[0,2],[-1,21],[0,1],[0,2],[-1,22],[0,2],[0,9],[-1,12]],[[6333,5410],[0,2]],[[6333,5412],[1,13],[0,3],[0,6],[0,3],[0,15],[-1,6],[0,1]],[[6272,5626],[-2,-1],[-1,0],[-2,-1],[-3,-1],[-4,-1],[-5,-1],[-4,0],[-3,0],[-14,0],[-2,0]],[[6232,5621],[-3,0]],[[6229,5619],[3,0]],[[6232,5619],[14,0],[4,0],[3,0],[5,1],[4,1],[5,1],[5,2],[2,1]],[[6295,5643],[-3,-1],[-2,-2],[-5,-4],[-8,-6],[-2,-2],[-3,-2]],[[6330,5804],[-1,-3],[-1,-2],[0,-3],[1,-11],[0,-14],[1,-15],[0,-16]],[[6330,5740],[1,-14]],[[6331,5726],[0,-11],[0,-1]],[[6336,5714],[0,1],[-1,11]],[[6335,5726],[0,14]],[[6335,5740],[-1,16],[0,15],[-1,15],[0,8],[0,3],[0,4],[1,3]],[[6462,5212],[-2,2],[-1,3],[-9,18],[-3,6]],[[6454,5217],[5,-6],[1,0],[1,-1],[2,0]],[[6464,5210],[-2,2]],[[6383,5460],[41,0],[5,0]],[[6429,5460],[7,0],[78,1],[5,0],[7,0]],[[6432,5412],[-1,2],[0,1],[0,6],[-1,37],[-1,2]],[[6429,5460],[0,2],[-1,6],[0,19],[-1,16],[0,2],[0,3]],[[6439,5256],[-1,3]],[[6438,5259],[-1,2],[-1,6],[-2,18],[-2,77],[0,2],[1,3],[-1,37],[0,5],[0,3]],[[6427,5641],[0,-4]],[[6427,5637],[-1,-16],[0,-2],[0,-1],[1,-18],[0,-2],[1,-22],[0,-5]],[[6428,5643],[0,-3],[0,-2],[0,-13],[0,-4],[0,-1],[0,-2],[0,-18],[1,-20],[0,-6]],[[6429,5574],[0,-1]],[[6429,5573],[-1,-3]],[[6433,5570],[-2,3]],[[6431,5573],[0,1]],[[6431,5574],[0,6],[0,20],[0,2],[0,5],[0,11],[0,2],[-1,1],[0,5],[0,12],[1,2],[3,2]],[[6433,5572],[0,4],[-1,23],[0,1],[0,1],[0,15],[0,2],[0,1],[0,2],[0,16]],[[6432,5637],[1,3]],[[6596,5573],[5,0],[5,0],[5,0],[12,0],[2,0]],[[6628,5576],[-2,0],[-5,0],[-7,0],[-15,0],[-2,0]],[[6402,5572],[23,1],[4,0]],[[6429,5573],[2,0]],[[6431,5573],[6,0],[81,0],[6,0]],[[6597,5576],[-79,-1]],[[6524,5573],[61,0],[11,0]],[[6426,5259],[-26,0]],[[6401,5256],[26,0]],[[6438,5259],[-9,0],[-3,0]],[[6427,5256],[3,0],[9,0]],[[6439,5256],[-1,-5],[3,-7],[3,-8],[10,-19]],[[6447,5241],[-5,10],[-3,5]],[[6366,5644],[5,0],[8,-1],[5,-1],[5,0],[14,-2],[10,-1],[6,-1],[8,-1]],[[6427,5637],[5,0]],[[6432,5637],[1,0],[4,-1]],[[6446,5639],[-12,1],[-1,0]],[[6433,5640],[-6,1]],[[6427,5641],[-3,0],[-13,1],[-7,1],[-6,1],[-8,1],[-6,0],[-2,0],[-10,1],[-6,0]],[[6343,5573],[17,0],[13,0],[16,0],[13,-1]],[[6402,5574],[-33,0],[-4,0],[-5,1],[-8,0]],[[6518,5575],[-87,-1]],[[6431,5574],[-2,0]],[[6429,5574],[-27,0]],[[6426,5532],[-1,-6],[-1,-4],[0,-4],[0,-3],[0,-5],[3,-2]],[[6428,5570],[0,-2],[0,-17],[0,-5],[0,-3],[0,-4],[-1,-2],[-1,-3],[0,-2]],[[6427,5508],[2,2],[0,5],[0,2],[2,9],[1,6]],[[6432,5532],[1,5],[0,2],[0,4],[0,3],[0,6],[0,16],[0,2]],[[6478,5259],[-40,0]],[[6439,5256],[25,1],[11,0]],[[6245,5255],[43,0]],[[6288,5257],[-43,0]],[[6288,5255],[14,0],[9,0],[24,0]],[[6334,5258],[-23,-1],[-23,0]],[[6346,4917],[0,9],[-1,25],[-1,32]],[[6347,4898],[0,3],[-1,16]],[[6347,4883],[0,-11],[0,-15]],[[6347,4886],[0,12]],[[6347,4883],[0,3]],[[6347,4857],[1,-8]],[[6355,4849],[-1,7],[-1,7],[-3,10],[-3,10]],[[6359,4723],[0,3],[0,11],[-2,43],[-1,13],[0,13],[-1,43]],[[6343,4985],[-45,0],[-28,-1],[-17,1]],[[6253,4983],[9,-1],[36,0],[46,1]],[[6271,4889],[-1,0],[-9,-2]],[[6261,4887],[-2,-1],[-2,-1]],[[6257,4873],[0,-1]],[[6257,4872],[0,-24],[1,-24],[1,-44],[3,-45],[1,-24],[0,-11],[1,-19],[0,-5],[0,-7],[1,-19],[0,-6],[1,-23],[0,-10],[1,-36],[0,-19],[1,-15],[2,-9]],[[6257,4872],[1,-1],[2,-1],[2,0]],[[6262,4870],[5,1],[5,1],[4,1]],[[6262,4874],[0,-4]],[[6262,4870],[0,-22],[1,-24],[1,-18],[1,-26],[1,-45],[2,-24],[0,-11],[1,-23],[1,-26],[0,-7],[1,-35],[0,-34],[0,-13],[0,-21],[-1,-9]],[[986,4223],[1,2],[2,2],[2,2],[3,2],[3,2],[3,2],[4,2],[5,2],[5,2],[5,1],[10,2],[11,1]],[[938,4362],[38,3],[36,2],[49,3],[29,2],[23,2],[22,1],[17,2],[20,1],[9,1]],[[1191,3690],[7,13],[8,17],[8,17],[8,17],[8,17],[8,17],[8,17]],[[1235,3834],[3,-3]],[[1241,3836],[-6,-2]],[[1238,3831],[5,-6],[2,-3],[2,-3],[0,-3],[0,-4],[0,-3],[-1,-4]],[[1238,3831],[6,1]],[[1244,3832],[-3,4]],[[1305,3841],[-12,0],[-11,0],[-9,-1],[-6,0],[-6,-1],[-7,-1],[-5,-1],[-8,-1]],[[1246,3805],[4,8],[1,3],[1,3],[-1,3],[0,2],[-4,5],[-3,3]],[[1244,3832],[10,3],[10,2],[9,1],[8,1],[10,1],[14,1]],[[1305,3841],[33,0],[33,1],[33,1],[35,0],[33,1]],[[446,3873],[51,27],[115,59],[23,12],[10,5],[13,7],[6,3],[7,2],[19,7],[34,11],[34,11],[9,3],[5,2],[50,16],[112,37],[13,5],[11,4],[9,6],[7,6],[7,6],[4,6]],[[1763,4942],[6,-1],[8,-1],[20,1],[33,0],[34,0],[34,1],[33,0],[33,0],[35,1],[33,0],[34,1],[33,0]],[[3075,4956],[-34,-1]],[[3041,4955],[-67,0],[-67,-1],[-68,-1],[-67,0],[-67,-1],[-67,-1],[-68,0],[-67,-1],[-33,0],[-34,-1],[-34,0],[-33,0],[-35,0],[-33,-1],[-33,0],[-35,0],[-33,-1],[-34,0],[-33,0],[-34,-1],[-33,0],[-34,0],[-34,-1],[-34,0],[-33,0],[-34,-1],[-33,0],[-34,0],[-33,-1],[-27,0],[-7,-1]],[[2099,4944],[34,0],[33,1],[34,0],[33,0],[35,1],[33,0],[33,0],[35,1],[33,0],[34,0],[34,1],[33,0],[67,1],[68,0],[67,1],[68,1],[67,0],[67,1],[68,1],[66,0]],[[3041,4953],[68,1],[61,1]],[[1393,3414],[4,-5],[4,-4],[3,-3],[4,-4],[5,-4],[6,-4],[5,-3],[6,-4],[5,-3],[10,-4],[10,-5],[7,-3],[5,-3],[5,-3],[6,-3],[5,-4],[4,-4],[3,-3],[4,-4],[3,-4],[2,-3],[2,-4],[2,-5],[1,-3],[1,-5],[0,-5],[0,-17]],[[3102,3378],[0,-10],[1,-11],[1,-12],[3,-18]],[[3107,3327],[0,6],[1,8],[1,11],[1,7],[0,6],[0,5],[0,7]],[[1095,3531],[-4,-4]],[[1097,3533],[-2,-2]],[[1440,3515],[-20,-15],[-11,-9],[-5,-4],[-4,-4],[-2,-2],[-3,-4],[-4,-6],[-3,-6],[-2,-5],[-2,-4],[-1,-4],[0,-4],[0,-4],[0,-4],[0,-4],[1,-2],[2,-6]],[[1386,3428],[1,-4],[3,-5],[3,-5]],[[1489,3569],[0,-7],[0,-2],[0,-3],[-1,-1],[-1,-3],[-2,-3],[-3,-2],[-3,-3],[-39,-30]],[[1489,3572],[0,-3]],[[1413,4937],[-13,0],[-8,0],[-12,0],[-23,0],[-1,0],[-8,-1],[-17,0],[-3,0],[-1,0],[-16,0],[-1,0],[-18,0],[-10,0],[-43,-1],[-44,0],[-3,0],[-47,-1],[-16,0],[-17,0],[-17,0],[-16,-1],[-4,0],[-3,0],[-10,0],[-17,0],[-16,0],[-16,0],[-18,-1],[-17,0],[-16,0],[-17,0],[-33,-1],[-31,0],[-20,-1],[-81,-1]],[[3041,4817],[-8,0],[-7,-1],[-5,0],[-7,-1],[-7,-2],[-8,-1],[-39,-10],[-45,-11],[-46,-11],[-44,-10],[-38,-9],[-9,-3],[-11,-2],[-53,-13],[-41,-10],[-26,-6],[-67,-16],[-67,-17],[-84,-19],[-115,-28],[-7,-2]],[[3159,5229],[-64,-1],[-67,-1]],[[3028,5227],[-34,0],[-33,0],[-34,-1],[-33,0],[-33,-1],[-34,0],[-33,0],[-34,0],[-133,-2],[-135,-1],[-33,0],[-34,-1],[-33,0],[-34,0],[-34,-1],[-33,0],[-35,0],[-33,-1],[-34,0],[-34,0],[-33,-1],[-34,0],[-34,0],[-33,0],[-34,-1],[-33,0],[-34,0],[-34,-1],[-33,0],[-34,-1],[-33,-1],[-34,0],[-33,0],[-34,-1],[-36,0],[-18,0],[-18,0],[-35,-1],[-36,0],[-36,-1],[-35,0],[-6,0],[-31,0],[-12,0],[-23,0]],[[1393,5313],[-1,35],[-1,12]],[[1406,5050],[0,16],[0,9],[-1,8],[-1,26],[-2,34],[-2,34],[-1,25],[0,9]],[[1399,5211],[-1,9],[-1,26],[-2,34],[-2,33]],[[1413,4937],[-1,10],[0,1],[0,4],[0,1],[-1,19],[-1,13],[-1,18],[0,1],[0,3],[-1,20],[0,2],[-1,11],[0,1],[0,5],[-1,4]],[[1763,4942],[-33,-1],[-34,0],[-33,-1],[-34,0],[-37,-1],[-37,0],[-31,0],[-5,0],[-7,-1],[-5,0],[-23,0],[-21,0],[-5,0],[-9,0],[-13,-1],[-23,0]],[[2189,4617],[9,1],[15,4],[34,8]],[[2247,4632],[-24,-6],[-26,-6],[-8,-3]],[[2247,4630],[41,10],[19,5]],[[2307,4645],[-19,-3],[-41,-10]],[[3052,4756],[0,-7],[2,-34],[2,-34],[2,-34],[3,-175],[1,-35],[0,-30],[1,-24],[0,-5],[0,-10]],[[2189,4617],[-9,-2],[-33,-8],[-32,-8],[-34,-8],[-33,-8],[-34,-8],[-33,-8],[-33,-8],[-33,-8],[-33,-7],[-33,-8],[-34,-8],[-32,-8],[-33,-8],[-34,-8],[-33,-8],[-33,-7],[-32,-8],[-34,-8],[-36,-9],[-35,-8],[-36,-8],[-36,-9]],[[5226,4713],[28,11]],[[4663,4711],[-2,6],[-1,9]],[[1455,4047],[-1,-7],[0,-2],[-1,-4],[1,-10],[0,-23]],[[1461,4089],[0,-5],[-1,-6],[-1,-5],[-1,-11],[-3,-15]],[[1464,4048],[-1,11],[0,5],[0,8],[-1,6],[-1,11]],[[1464,4027],[0,7],[0,6]],[[1464,4040],[0,8]],[[1454,4001],[1,-5],[0,-9]],[[1455,3987],[1,-14]],[[1456,3961],[1,-16],[1,-4],[0,-5],[2,-4],[2,-7]],[[1456,3973],[0,-10],[0,-2]],[[1465,4003],[-1,14],[0,10]],[[1465,3988],[0,10],[0,5]],[[1465,3975],[0,13]],[[1466,3964],[0,1],[-1,10]],[[1467,3953],[-1,11]],[[2012,3852],[-33,0],[-33,-1],[-34,0],[-34,-1],[-33,0],[-33,-1],[-34,0],[-33,0],[-34,-1],[-33,0],[-33,-1],[-34,0],[-35,-1],[-35,-1],[-34,0],[-35,-1]],[[2112,3869],[-15,-2],[-18,-3],[-31,-6],[-36,-6]],[[1462,3925],[2,-6],[1,-8],[3,-10],[2,-12]],[[1470,3889],[1,6],[1,7],[0,3],[-2,12],[-2,9],[-1,7],[0,20]],[[1470,3889],[0,-7],[0,-9],[2,-29]],[[1472,3844],[2,-32],[0,-2],[2,-33],[0,-2],[1,-17],[1,-15],[0,-2],[1,-17],[1,-15],[0,-2],[1,-16],[2,-18],[1,-17],[1,-17],[1,-17],[0,-7],[1,-10],[2,-33]],[[3063,4368],[1,-16]],[[1243,4391],[12,2],[7,2],[13,3],[41,10],[57,14],[2,0],[66,17]],[[1441,4439],[0,-14],[0,-16],[1,-8],[0,-10],[3,-33],[0,-6],[0,-11],[2,-17]],[[1276,4271],[-37,-10]],[[1447,4324],[-5,-2],[-5,-2],[-3,-2],[-4,-2],[-6,-3],[-6,-2],[-6,-2],[-38,-11],[-62,-17],[-36,-10]],[[1447,4324],[2,-34],[3,-34],[2,-34],[0,-5],[2,-28],[2,-35],[1,-25],[2,-34],[0,-6]],[[3101,3411],[1,-33]],[[3110,3377],[-1,34]],[[1188,3684],[-7,-15],[-8,-17],[-7,-18],[-9,-17],[-8,-17],[-5,-10],[-4,-7],[-4,-6],[-2,-3],[-6,-8],[-6,-9],[-2,-2],[-6,-6],[-17,-16]],[[1188,3684],[3,6]],[[3580,4025],[-3,-1],[-4,-1],[-4,-1],[-23,-2],[-33,-4],[-33,-3],[-34,-4],[-33,-3],[-34,-4],[-33,-3],[-33,-4],[-34,-3],[-33,-4],[-33,-3],[-2,0],[-32,-4],[-34,-3],[-33,-4],[-34,-3]],[[3078,3971],[-33,-4],[-34,-3],[-33,-4],[-33,-3],[-33,-4],[-33,-3],[-34,-4],[-33,-3],[-34,-4],[-33,-3],[-33,-3],[-34,-4],[-33,-4],[-33,-3],[-34,-4],[-33,-3],[-30,-3],[-21,-3],[-12,-1],[-33,-3],[-15,-2],[-21,-2],[-32,-3],[-33,-4],[-34,-4],[-36,-3],[-32,-4],[-34,-3],[-33,-4],[-33,-3],[-34,-4]],[[3064,4352],[0,-14],[0,-9],[2,-21],[0,-34],[2,-34],[2,-34],[1,-34],[1,-35],[1,-33],[2,-34],[1,-35],[1,-34],[0,-22],[1,-8]],[[3078,3971],[1,-38],[2,-29],[0,-3],[0,-4],[1,-2],[2,-2],[2,-3],[7,-10],[11,-14],[5,-6],[4,-6],[2,-4],[0,-4],[0,-6],[1,-8],[3,-44],[2,-48],[1,-24],[0,-10],[-3,-5],[-9,-10],[-13,-11],[-3,-4],[-2,-5],[1,-11],[0,-15],[1,-18],[0,-1],[1,-25],[1,-9],[0,-9],[1,-12],[0,-7],[0,-6],[2,-34],[1,-13],[1,-15],[0,-6],[0,-7],[1,-9],[0,-19]],[[3580,4025],[33,14],[86,35],[24,10],[23,10],[23,9],[18,8],[25,10],[54,24]],[[3102,3455],[-1,-7],[0,-15],[-1,-5],[0,-8],[1,-9]],[[3109,3411],[-1,8],[0,4],[-1,5],[-1,7],[-1,6],[-1,7],[-2,7]],[[4668,4695],[-5,16]],[[6305,3550],[0,-3],[-1,-16],[0,-8],[1,-3],[0,-10],[0,-25]],[[6310,3485],[-1,25],[0,10],[-1,3],[0,8],[-1,16],[-2,3]],[[5710,5250],[49,1]],[[5759,5251],[3,0]],[[5761,5253],[-2,0]],[[5759,5253],[-49,-1]],[[5753,5299],[0,-2],[0,-4],[0,-2],[-1,-2],[0,-3],[0,-2],[1,-3],[0,-2],[1,-4],[1,-3],[1,-2],[0,-2],[1,-3],[0,-2],[1,-3],[0,-3],[0,-2],[1,-2]],[[5759,5253],[0,-2]],[[5759,5251],[1,-2],[0,-2],[0,-2]],[[6301,3619],[1,-27]],[[6302,3592],[1,-15],[2,-23],[0,-4]],[[6270,4532],[1,-25],[0,-17],[1,-17],[0,-34],[1,-34],[0,-2],[1,-32],[0,-17],[1,-11],[0,-5],[0,-15],[1,-17],[0,-2],[1,-34],[1,-30],[2,-38],[1,-34],[1,-11],[1,-23],[1,-35],[2,-67],[3,-72],[1,-31],[1,-34],[1,-6],[1,-27],[1,-35],[1,-19],[1,-15],[1,-34],[1,-34]],[[6387,3726],[-23,0],[-22,-1],[-22,0],[-22,0]],[[6299,3691],[17,0],[27,0],[45,1],[44,0]],[[6348,4849],[2,-43],[0,-13],[0,-13],[2,-45],[2,-23],[1,-30],[0,-5],[0,-7],[2,-26],[0,-34],[1,-11],[1,-23],[1,-27],[0,-16],[1,-25],[0,-17],[2,-44],[0,-3],[-1,-4],[-2,-3],[0,-2],[1,-28],[1,-35],[2,-34],[1,-33],[1,-34],[1,-31],[2,-37],[1,-34],[2,-34],[1,-34],[1,-34],[1,-34],[2,-46],[1,-26],[2,-65],[0,-6],[1,-27],[2,-35],[1,-34],[1,-34],[2,-34]],[[6432,3692],[-1,34],[-1,35],[-1,34],[-2,34],[-1,34],[-1,17],[0,10],[0,7],[-2,34],[-1,31],[0,3],[-1,22],[-1,46],[-1,34],[-2,34],[-1,34],[-2,34],[-1,34],[-1,34],[0,4],[-1,30],[-2,34],[-1,34],[-1,33],[-2,35],[-1,33],[-1,34],[-1,17],[0,17],[-2,41],[0,27],[-2,34],[-1,34],[0,34],[-2,35],[-3,2],[-3,1],[-3,0],[-5,0],[-7,0],[-4,1],[-4,1],[-3,1],[-2,2],[-2,2]],[[6298,3725],[1,-34]],[[6299,3691],[0,-10],[2,-59],[0,-3]],[[7540,3852],[-5,0],[-13,1],[-15,4],[-6,0],[-5,1],[-8,0],[-50,0]],[[7370,3548],[1,-8],[0,-7],[0,-2],[0,-17],[1,-17],[0,-17],[1,-18]],[[7401,3585],[-5,-8],[-7,-11],[-4,-6],[-5,-5],[-5,-5],[-5,-2]],[[7380,3463],[2,7],[5,27],[0,2],[1,1],[3,5],[5,5],[7,6],[4,5],[3,5],[0,5],[0,1],[0,3],[-1,1],[-1,4],[-7,19],[-2,6],[0,4],[0,3],[1,5],[1,8]],[[7438,3858],[-7,-1],[-8,0],[-7,-2],[-5,-1],[-4,-1],[-4,-2],[-3,-2],[-2,-2],[-1,-1],[0,-2],[-1,-5],[0,-14],[1,-11],[0,-6],[0,-5],[3,-5],[3,-5],[2,-3],[3,-4],[0,-4],[-3,-5],[-1,-3],[0,-3],[0,-2],[1,-3],[2,-5],[1,-4],[0,-4],[-1,-6],[-3,-11],[1,-3],[3,-5],[6,-12],[4,-9],[2,-12],[0,-12],[2,-17],[0,-25],[-1,-8],[-2,-9],[-8,-18],[-10,-21]],[[7915,3366],[12,-1],[29,0]],[[7956,3365],[8,0],[45,1],[2,0],[3,-1],[1,0]],[[7677,3535],[9,-1],[11,0],[16,-1],[14,1],[19,1],[16,2],[14,2],[6,0],[8,0],[8,-1],[10,-1],[8,-1],[9,-3],[8,-2],[7,-2],[6,-3],[15,-8],[6,-3],[6,-2],[13,-4],[10,-3],[4,-2],[1,0],[5,-3]],[[7906,3501],[3,-3],[1,-2],[1,-2],[0,-1],[1,-26],[1,-24],[0,-6],[0,-4],[2,-35],[0,-17],[0,-11],[0,-4]],[[4548,8722],[-10,8],[-10,8],[-9,8],[-5,4],[-4,4],[-5,6],[-5,6],[-3,3],[-12,9],[-30,25],[-21,16],[-7,6],[-13,11],[-3,2]],[[4569,8661],[7,12],[2,4],[6,10],[1,3],[1,4]],[[4588,8710],[-4,-11],[-2,-7],[-1,-4],[-2,-4],[-3,-5],[-3,-5],[-2,-4]],[[4586,8694],[2,16]],[[4878,8692],[0,17],[1,1],[0,7],[0,10],[1,14],[0,1],[0,11],[0,11],[1,12],[0,11],[0,16],[1,4],[0,10],[0,10],[0,3],[0,4],[0,12],[0,7],[1,14],[0,3],[0,18],[1,22],[1,17],[-1,6],[-6,10],[-8,12],[-1,3],[-12,19],[-9,13],[-15,24],[-2,3],[-2,2],[-3,0],[-3,0],[-16,0],[-11,1],[-24,0],[-25,0],[-23,0]],[[4724,9020],[0,-7],[-2,-19],[0,-3],[-1,-9],[0,-1],[-2,-7],[-3,-9],[-3,-8],[-6,-22],[-5,-8],[-4,-7],[-10,-16],[-7,-12],[-7,-10],[-7,-13],[-14,-22],[-3,-6],[-8,-13],[-11,-19],[-17,-31],[-5,-11],[-2,-5],[-4,-11],[-2,-7],[-3,-7],[-3,-8],[-3,-8],[-3,-7],[-1,-4]],[[4657,9150],[17,-6]],[[4674,9144],[5,-2],[3,0],[4,-1],[5,-1],[4,0],[3,-1],[4,-1],[3,0],[3,-2],[3,-1],[2,-1],[2,-2],[2,-2],[2,-1],[1,-2],[1,-2],[1,-1],[1,-3],[1,-6],[0,-2],[1,-10],[0,-1],[1,-11],[1,-7],[1,-6],[-1,-12],[-1,-16],[-1,-4],[-1,-26]],[[3918,9497],[30,-12],[48,-18],[56,-22],[59,-23],[31,-12],[36,-14],[10,-5],[43,-18],[5,-3],[9,-4],[5,-3],[6,-4],[4,-3],[6,-5],[2,-2],[9,-5],[2,-1],[15,-9],[7,-4],[4,-3],[21,-11],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-6],[-1,-15],[1,-1],[0,-1],[1,-2],[2,-1],[4,-2],[44,-24],[17,-8],[33,-16],[52,-22],[52,-23],[10,-4],[10,-5],[29,-12],[9,-3],[3,-1],[2,0],[2,0],[10,-1],[5,0],[3,0],[2,-1],[3,0],[4,-2],[5,-1],[8,-3],[17,-7]],[[4406,8842],[-2,2],[-11,8],[-56,47],[-40,33],[-8,7],[-45,35],[-33,27],[-17,14],[-12,9],[-65,53],[-7,5],[-38,31],[-25,20],[-13,11],[-26,21],[-30,25],[-26,21],[-17,13],[-15,12],[-15,13],[-14,11],[-12,10],[-15,12],[-8,6],[-36,30],[-5,4],[-2,1],[-4,3],[-4,2],[-3,1],[-9,6],[-4,3],[-4,3],[-3,3],[-2,2],[0,1],[0,2],[-1,2],[-7,6],[-16,13],[-21,17],[-12,10],[-26,21],[-13,10],[-55,45],[-3,2],[-3,2],[-5,2],[-4,2],[-8,2],[-4,2],[-1,1],[-30,22],[-9,8],[-8,10],[-11,14],[-9,10],[-10,9],[-15,12],[-24,19],[-12,10],[-28,23],[-28,23],[-27,22],[-20,16],[-6,5],[-2,1],[-2,0],[-2,1],[-3,0],[-3,0],[-19,0]],[[811,8761],[163,3],[91,1],[30,1],[94,1],[26,0],[33,1],[33,0],[34,0],[33,0],[36,0],[89,-1],[53,1]],[[1450,9233],[-92,1],[-15,0],[-18,0],[-90,1],[-69,0],[-33,-2],[-13,-1],[-11,-1],[-11,-3],[-9,-2],[-7,-4],[-6,-4],[-6,-4],[-3,-2],[-1,-1],[-11,-8],[-18,-6],[-25,-5],[-36,-2],[-6,0],[-7,0],[-29,0]],[[935,9187],[44,1],[18,0],[20,2],[8,2],[7,1],[11,3],[9,3],[10,5],[8,5],[2,2],[3,2],[1,1],[6,5],[7,3],[7,3],[7,2],[11,2],[20,2],[14,1],[13,1],[16,0],[52,0],[113,-1],[108,0]],[[1534,9084],[7,5],[3,4],[1,3],[1,16],[3,29],[1,23],[2,10],[2,20],[1,6],[2,31]],[[1557,9231],[0,2]],[[1557,9233],[2,51],[-1,9],[1,4],[1,20],[1,7],[1,10],[0,14],[3,19],[2,20],[1,12],[1,20],[3,19],[1,7],[1,12],[-2,13],[-5,33],[-5,26],[-3,24],[-1,10],[-1,8],[-5,41],[0,3],[-3,32],[-3,21],[-5,37],[0,2],[-2,22],[-2,5],[-4,6],[-7,8],[-23,20],[-2,2],[-22,18],[-44,38],[-2,2],[-19,16],[-22,18],[-12,10],[-13,9],[-10,7],[-12,8],[-39,23],[-4,3],[-50,30],[-3,2],[-46,28],[-12,9],[-7,8]],[[2200,8769],[229,2],[8,0],[6,0],[86,0],[111,-1],[33,0],[10,0],[25,0],[15,0],[17,0],[33,-1],[33,0],[32,1],[3,0],[69,-1],[61,0]],[[2971,8718],[0,5],[0,12],[0,7],[0,17],[0,10]],[[2971,8769],[2,30],[1,38],[0,32],[1,13],[1,22],[2,66]],[[4021,8715],[19,-3]],[[2971,8769],[41,0],[26,0],[33,0],[33,-1],[54,0],[19,0],[26,0],[33,1],[34,0],[16,0],[17,-1],[33,1],[33,0],[33,0],[33,0],[8,0],[26,0],[33,0],[33,0],[33,0],[33,0],[10,0],[23,0],[33,1],[33,0],[33,0],[14,0],[20,1],[37,0],[9,0],[8,-1],[4,0],[8,-2],[7,-1],[9,-2],[26,-9],[21,-6],[7,-3],[46,-14],[33,-10],[10,-4],[10,-2]],[[2513,8499],[27,0]],[[2542,8501],[-28,0]],[[2540,8499],[10,0],[66,0],[13,0],[64,-1],[11,0],[59,0],[53,-1],[8,0],[30,0],[12,0],[71,0],[27,-1]],[[2965,8498],[-26,1],[-73,0],[-43,0],[-59,1],[-44,0],[-13,0],[-77,1],[-12,0],[-11,0],[-63,0],[-2,0]],[[2718,9286],[11,-12],[7,-9],[6,-9],[12,-19],[10,-15]],[[2764,9222],[1,-2]],[[2765,9220],[5,-5],[6,-7],[6,-6],[14,-12],[28,-20],[10,-9],[9,-8],[8,-8],[10,-9],[16,-18],[31,-33],[19,-21],[7,-7],[16,-18],[3,-3],[12,-14],[6,-10],[3,-10],[4,-10],[0,-22]],[[2663,9221],[31,0],[9,0],[20,0],[9,0],[33,-1]],[[2764,9222],[-41,1],[-26,0],[-28,0],[-4,0]],[[4411,8838],[-5,4]],[[4579,8711],[-7,0],[-4,0],[-6,1],[-6,0],[-5,0],[-3,0],[-21,1],[-20,-1],[-9,0],[-10,0],[-12,0],[-23,0],[-4,-1],[-17,0],[-26,0],[-36,-1],[-22,0],[-21,0],[-43,-1],[-32,0],[-10,0],[-22,0],[-21,-1],[-10,0],[-33,0],[-33,-1],[-33,0],[-6,0],[-4,0],[-5,0],[-8,1],[-5,1],[-2,0],[-20,3]],[[4002,8717],[6,-1],[13,-1]],[[1613,1391],[1,-11],[1,-20],[1,-19],[0,-3],[1,-13],[1,-16],[1,-15],[1,-17],[1,-21],[1,-2],[0,-10],[1,-16],[1,-21],[2,-25],[1,-24],[1,-22],[1,-17],[1,-8],[2,-34],[2,-38],[2,-41],[3,-66],[2,-44],[2,-30],[1,-10],[0,-2],[1,-14],[-1,-13],[0,-8],[-1,-5],[-2,-8],[-7,-17],[-5,-15],[-8,-21],[-1,-4],[-1,-3],[0,-3],[0,-5],[0,-4],[1,-5],[1,-6],[2,-4],[1,-4],[3,-4],[3,-6],[12,-16],[1,-2],[3,-4],[3,-6],[2,-5],[2,-6],[1,-7],[1,-8],[1,-13],[2,-56],[2,-19],[0,-17],[2,-32],[0,-8],[1,-29],[3,-41],[0,-23],[1,-15],[0,-1],[1,-23],[1,-31],[1,-22],[0,-14],[0,-3],[1,-14],[3,-54],[1,-21],[1,-12],[2,-14],[1,-18],[1,-13],[2,-34],[1,-23],[0,-13],[1,-23],[1,-12],[0,-19],[3,-17],[0,-9]],[[8737,2554],[32,-27],[0,-1],[1,-1],[0,-1]],[[8572,2553],[68,0],[1,1],[3,0],[27,0],[33,0],[16,0],[17,0]],[[8586,2645],[28,-10]],[[8614,2635],[40,-15],[3,-1],[3,-2],[3,-1],[7,-7],[21,-17],[16,-13],[30,-25]],[[8958,2246],[-4,2],[-48,31],[-3,2],[-33,21],[-18,11],[-49,31],[-7,5],[-2,1],[-23,15]],[[8958,2246],[10,-7],[8,-6],[8,-5],[10,-7],[19,-11],[9,-6],[10,-6],[19,-12],[16,-11]],[[9067,2181],[-27,17],[-11,7],[-15,9],[-3,2],[-15,9],[-5,3],[-10,6],[-23,12]],[[9502,1394],[50,4],[25,0],[39,1],[108,1],[192,2],[17,0],[16,0],[26,0],[24,-1]],[[9494,646],[1,37],[0,34],[1,34],[-1,43],[2,23],[0,2],[0,1],[0,12],[0,1],[0,20],[0,34],[0,34],[1,32],[0,36]],[[9498,989],[1,76],[-1,21],[0,35],[1,113],[2,46],[0,10],[0,7],[0,41],[0,8],[0,1],[0,7],[1,40]],[[9502,1394],[0,138],[0,41],[0,61],[0,34],[0,34],[0,33],[1,35],[0,34],[0,35],[0,30],[0,6],[1,25],[-1,2]],[[1595,1718],[1,-24]],[[1596,1694],[2,-30]],[[1598,1664],[0,-17],[1,-17],[2,-34],[2,-34]],[[1599,1694],[-1,23]],[[1685,122],[-2,41],[-1,17],[0,20],[-2,28],[-3,68],[0,4],[-2,35],[-1,31],[-1,24],[-3,38],[-2,41],[-2,37],[-1,16],[0,9],[-1,7],[-1,36],[-1,22],[-3,46],[-1,11],[-1,7],[-3,9],[-4,7],[-4,7],[-6,6],[-8,11],[-5,9],[-3,11],[-1,6],[0,7],[0,7],[3,6],[7,21],[8,21],[5,14],[2,9],[1,11],[-1,24],[0,2],[-4,57],[-4,93],[-2,41],[-3,38],[-2,42],[-3,63],[-5,72],[0,2],[-2,38],[-3,47],[-3,50],[-2,33],[-1,35],[-2,34],[-2,34],[-2,33],[0,2],[-3,33],[-1,34],[-2,18],[-1,17]],[[1601,1664],[-2,30]],[[1603,1562],[2,-35],[0,-33],[4,-34],[2,-34],[2,-35]],[[9498,989],[54,1]],[[9552,990],[32,0]],[[9584,990],[6,0],[42,0]],[[1577,2094],[39,13],[40,14],[24,10],[6,2],[17,8],[27,11],[39,18],[33,14],[23,11]],[[1960,2256],[-49,-22],[-39,-18],[-25,-10],[-20,-9],[-2,-2]],[[1825,2195],[4,0],[21,10],[26,11],[40,18],[46,21]],[[2057,2299],[-45,-20],[-52,-23]],[[1962,2255],[53,23],[43,20]],[[2173,1587],[-58,12],[-34,8],[-17,4],[-2,0],[-20,5],[-7,2],[-27,6]]]}
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.
View raw

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

View raw

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

View raw

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

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