Skip to content

Instantly share code, notes, and snippets.

@laurenschroeder
Last active June 15, 2017 18:03
Show Gist options
  • Save laurenschroeder/41e78da1ab63c8faf6e43f79a8fca4ca to your computer and use it in GitHub Desktop.
Save laurenschroeder/41e78da1ab63c8faf6e43f79a8fca4ca to your computer and use it in GitHub Desktop.
Ski Resorts
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|PT+Sans|Raleway|Source+Sans+Pro|Ubuntu" rel="stylesheet">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Ski Resorts - North America</title>
<script type="text/javascript" src="https://d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="https://d3js.org/d3-queue.v2.min.js"></script>
<link href="style.css" rel="stylesheet">
<script type="text/javascript">
function draw(error,geo_data,data) {
//if (error) throw error;
"use strict";
var margin = 75,
width = 1920- margin,
height=1080-margin,
minimum=4.2,
maximum=51.4
d3.select("body")
.append("h2")
.text("Major Ski Resorts in the US and Canada")
.style("color","#283041");
d3.select("body")
.append("h3")
.text("Curious which ski resorts have the longest runs or the most snow? This map with give a general overview. Some of North America's largest ski resorts are mapped below, with the area of the mountains proportionate to the max vertical drop at the resort. A snowier mountain means more snowfall is seen each year.")
.style("color","#283041");
//create new zoom behavior
var zoom = d3.behavior.zoom()
.translate([0, 0])
.scale(1)
.scaleExtent([1, 20])
.on("zoom", zoomed);
var svg = d3.select("body")
.append("svg")
.attr("width",width+margin)
.attr("height", height+margin)
//call the zoom before the g group is made to avoid wiggle while panning
.call(zoom)
.append('g')
.attr('class','map');
//specify projection parameters, otherwise path defaults to a plain albers
var projection = d3.geo.albers()
.center([0, 35.83])
.scale(1000)
.translate([width / 5, height /2.8]);
//create path with our data, using our custom projection
var path = d3.geo.path().projection(projection);
//turn path into svg (map) which can have fills and strokes
var map = svg.selectAll('path')
.data(geo_data.features)
.enter()
.append('path')
.attr('d',path)
.style('fill','#385e2a')
.style('stroke','#b4b9c1')
.style('stroke-width',0.8)
//Adding legend for our Choropleth
var color_scale = d3.scale.ordinal()
.domain([0,200,400])
.range(["mountainb24.png", "mountain2b24.png", "mountain3b24.png"]);
var legend = svg.selectAll("g.legend")
.data([100,300,700])
.enter().append("g")
.attr("class", "legend");
var ls_w = 20, ls_h = 20;
var legend_labels=['<200 inches','200-400 inches','>400 inches']
legend.append("image")
.attr("xlink:href", function (d){
return color_scale(d)})
.attr("x", 20)
.attr("y", function(d, i){ return height/2+ 70 - (i*ls_h) - 2*ls_h;})
.attr("width", ls_w)
.attr("height", ls_h);
legend.append("text")
.attr("x", 50)
.attr("y", function(d, i){ return height/2 + 70- (i*ls_h) - ls_h - 4;})
.text(function(d, i){ return legend_labels[i]; });
legend.append("text")
.attr("x", 10)
.attr("y",height/2-86 +70 )
.text("Annual Snowfall (in) ");
//scales
var drop_extent= d3.extent(data, function(d) {
return +d["Vertical drop (ft)"]
})
var height=d3.scale.linear()
.domain(drop_extent)
.range([20,80]);
//for looking at acreage instead of vertical drop
var acre_extent= d3.extent(data, function(d) {
return +d["Skiable acreage"]
})
var width=d3.scale.linear()
.domain(acre_extent)
.range([20,80]);
//function to zoom in on map (svg)
function zoomed() {
svg.attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
//keep mountain height the same
mounties.attr("height", function (d){
var self = d3.select(this);
var r = self.attr('id') / Math.pow(d3.event.scale,1); // set radius according to scale
return r;
})
.attr("x", function (d) { //change x position since image is anchored in top left corner
var self = d3.select(this);
var xmov = self.attr("height")/2;
return -xmov})
.attr("y", function (d) {
var self = d3.select(this);
var ymov = self.attr("height");
return -ymov});
map.style("stroke-width", .8 / d3.event.scale + "px");
}
var tooltip = d3.select("body")
.append("div")
.attr('class', 'tooltip_name')
.style("position", "absolute")
.style("z-index", "10")
.style("visibility", "hidden")
.text('tooltip');
var mounties= svg.append('g')
.selectAll('.myPoint')
.data(data)
.enter()
.append("image")
.attr("xlink:href", function (d) {return color_scale(+d["Avg annual snowfall (in)"])})
.attr("x", function (d) {
return -height(+d["Vertical drop (ft)"]/2)})
.attr("y", function (d) {
return -height(+d["Vertical drop (ft)"]/2)})
.attr("transform", function (d) {
return "translate(" + projection([d.lon, d.lat]) + ")"; })
.attr("height", function (d) {
return height(+d["Vertical drop (ft)"])
})
//create datum to remember initial size when scaling with scroll
.attr('id',function (d) {
return height(+d["Vertical drop (ft)"])
})
.on("mouseover", function(d) {
return tooltip.style("visibility", "visible"),
tooltip.text(d["Resort name and website"]+' - '+d["State/province"]);
})
.on("mousemove", function() {
return tooltip.style("top", (d3.event.pageY - 10) + "px")
.style("left", (d3.event.pageX + 10) + "px");
})
.on("mouseout", function() {
return tooltip
.style("visibility", "hidden");
});
};
</script>
</head>
<body>
<div id="chart">
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>
Unnamed: 0 Resort name and website Nearest city State/province Peak elevation (ft) Base elevation (ft) Vertical drop (ft) Skiable acreage Total trails Total lifts Avg annual snowfall (in) Adult single day Unnamed: 11 geocode lat lon
0 0 Cooper Leadville Colorado 11,700 10,500 1200 400 39 4 260 52 February 07, 2017 <[OK] Google - Geocode [The Pike and San Isabel National Forests & Cimarron and Comanche National Grasslands, 232 County Road 29, Leadville, CO 80461, USA]> 39.3607867 -106.3028081
1 1 Grand Targhee Resort Alta Wyoming 10,121 7,851 2270 2602 99 5 500 80 February 07, 2017 <[OK] Google - Geocode [Caribou-Targhee National Forest, 3300 Ski Hill Rd, Alta, WY 83414, USA]> 43.787113 -110.959296
2 2 Stratton Mountain Resort Winhall Vermont 3,875 1,872 2003 670 97 11 180 92 March 27, 2017 <[OK] Google - Geocode [Green Mountain and Finger Lakes National Forests, 5 Village Lodge Rd, South Londonderry, VT 05155, USA]> 43.1134411 -72.90813
3 3 Soldier Mountain Fairfield Idaho 7,177 5,756 1400 1180 36 2 40 February 07, 2017 <[OK] Google - Geocode [Sawtooth National Forest, 1043 Soldier Creek Rd, Fairfield, ID 83327, USA]> 43.485512 -114.82938
4 4 Pomerelle Mountain Resort Albion Idaho 9,000 8,000 1000 500 24 2 500 45 February 07, 2017 <[OK] Google - Geocode [Sawtooth National Forest, 961 Howell Canyon Rd, Malta, ID 83342, USA]> 42.3179871 -113.6077523
5 5 Schweitzer Sandpoint Idaho 6,400 2,400 4000 2900 92 7 300 77 February 07, 2017 <[OK] Google - Geocode [10,000 Schweitzer Mountain Road, Selkirk Lodge, Sandpoint, ID 83864, United States]> 48.367287 -116.623398
6 6 Brundage Mountain McCall Idaho 7,803 5,882 1921 1920 46 5 320 64 February 07, 2017 <[OK] Google - Geocode [3890 Goose Lake Road, McCall, ID 83638, United States]> 45.0054 -116.154412
7 7 Bogus Basin Boise Idaho 7,582 5,800 1800 2600 78 7 200 59 February 07, 2017 <[OK] Google - Geocode [Bogus Basin, Idaho 83629, USA]> 43.7640569 -116.1026168
8 8 Sun Valley Sun Valley Idaho 9,150 5,750 3400 2154 121 18 220 125 February 07, 2017 <[OK] Google - Geocode [Sun Valley Rd, Sun Valley, ID 83353, USA]> 43.6964895 -114.3561968
9 9 Panorama Mountain Resort Invermere British Columbia 7,792 3,773 4019 2847 120 10 196 92 October, 2016 <[OK] Google - Geocode [2000 Panorama Dr, Panorama, BC V0A 1T0, Canada]> 50.460374 -116.238147
10 10 Whitefish Mountain Resort Kalispell Montana 6,817 4,464 2353 3000 105 14 300 76 October, 2016 <[OK] Google - Geocode [1015 Glades Dr, Whitefish, MT 59937, USA]> 48.4805905 -114.3503232
11 11 Arizona Snowbowl Flagstaff Arizona 11,500 9,200 2300 777 40 7 260 69 October, 2016 <[OK] Google - Geocode [Coconino National Forest, 9300 N Snowbowl Rd, Flagstaff, AZ 86001, USA]> 35.330886 -111.7103
12 12 Telluride Ski Resort Telluride Colorado 13,150 8,725 4425 2000 147 18 309 86 October, 2016 <[OK] Google - Geocode [Uncompahgre National Forest, 565 Mountain Village Blvd, Telluride, CO 81435, USA]> 37.9365202 -107.846386
13 13 Arapahoe Basin Keystone Colorado 13,050 10,780 2270 960 109 8 350 109 October, 2016 <[OK] Google - Geocode [28194 US-6, Keystone, CO 80435, USA]> 39.642312 -105.871685
14 14 Pajarito Mountain Ski Area Los Alamos New Mexico 10,440 9,000 1440 300 40 6 163 49 October, 2016 <[OK] Google - Geocode [Santa Fe National Forest, 397 Camp May Rd, Los Alamos, NM 87544, USA]> 35.8950144 -106.3909148
15 15 Taos Ski Valley Taos New Mexico 12,481 9,200 3281 1294 110 15 305 98 October, 2016 <[OK] Google - Geocode [Taos Ski Valley, NM 87525, USA]> 36.5959999 -105.4545
16 16 Ski Santa Fe Santa Fe New Mexico 12,075 10,350 1725 660 79 7 225 75 October, 2016 <[OK] Google - Geocode [Santa Fe National Forest, NM-475, Santa Fe, NM 87501, USA]> 35.796254 -105.802369
17 17 Big Sky Resort Bozeman Montana 11,166 6,800 4350 5800 250 34 400 119 October, 2016 <[OK] Google - Geocode [50 Big Sky Resort Rd, Big Sky, MT 59716, USA]> 45.2834361 -111.4003675
18 18 Jackson Hole Mountain Resort Teton Village Wyoming 10,450 6,311 4139 2500 133 14 459 130 October, 2016 <[OK] Google - Geocode [Bridger-Teton National Forest, 3395 Cody Ln, Teton Village, WY 83025, USA]> 43.5875205 -110.8278682
19 19 Loveland Ski Area Georgetown Colorado 13,010 10,800 2210 1800 94 11 422 71 October, 2016 <[OK] Google - Geocode [Arapaho National Forest, Dillon, CO 80435, USA]> 39.6800375 -105.8979465
20 20 Revelstoke Mountain Resort Revelstoke British Columbia 7,300 1,680 5620 3121 69 5 430 95 October, 2016 <[OK] Google - Geocode [2950 Camozzi Rd, Revelstoke, BC V0E 2S1, Canada]> 50.9583028 -118.1637752
21 21 Mount Ashland Ski Area Ashland Oregon 7,533 6,383 1150 220 23 5 265 39 October, 2016 <[OK] Google - Geocode [Rogue River-Siskiyou National Forest, 11 Mt Ashland Ski Rd, Ashland, OR 97520, USA]> 42.081685 -122.704754
22 22 Keystone Resort Keystone Colorado 12,408 9,280 3128 3148 131 20 235 112 October, 2016 <[OK] Google - Geocode [21996 US-6, Dillon, CO 80435, USA]> 39.6053315 -105.9765127
23 23 Breckenridge Ski Resort Breckenridge Colorado 12,998 9,600 3398 2908 187 34 300 147 October, 2016 <[OK] Google - Geocode [1599 Ski Hill Rd, Breckenridge, CO 80424, USA]> 39.4802271 -106.0666975
24 24 Squaw Valley Truckee California 9,050 6,200 2850 3600 170 29 450 93 October, 2016 <[OK] Google - Geocode [1960 Squaw Valley Rd, Olympic Valley, CA 96146, USA]> 39.197607 -120.2354422
25 25 Mammoth Mountain Mammoth Lakes California 11,053 7,953 3100 3500 150 28 420 96 April 20, 2012 <[OK] Google - Geocode [Mammoth Mountain, Mammoth Lakes, CA 93546, USA]> 37.6307692 -119.0326342
26 26 Heavenly Mountain Resort South Lake Tahoe California 10,067 7,200 3500 4800 94 30 360 82 November 19, 2010 <[OK] Google - Geocode [Humboldt-Toiyabe National Forest, Heavenly Village, 4080 Lake Tahoe Blvd, South Lake Tahoe, CA 96150, USA]> 38.9568128 -119.9426539
27 27 Mount Shasta Ski Park Mount Shasta California 9,200 7,800 1435 425 32 4 275 44 April 20, 2012 <[OK] Google - Geocode [4500 Ski Park Hyway, McCloud, CA 96057, United States]> 41.321106 -122.203502
28 28 Alpine Meadows Truckee California 8,637 6,835 1802 2400 14 365 92 April 20, 2012 <[OK] Google - Geocode [Alpine Meadow Camp, Truckee, CA 96161, USA]> 39.3205045 -120.1205206
29 29 Boreal Soda Springs California 7,700 7,200 500 380 41 8 400 49 April 20, 2012 <[OK] Google - Geocode [19749 Boreal Ridge Rd, Soda Springs, CA 95728, USA]> 39.3364539 -120.3498347
30 30 Donner Ski Ranch Norden California 7,781 7,031 750 435 52 8 400 45 April 20, 2012 <[OK] Google - Geocode [19320 Donner Pass Rd, Norden, CA 95724, USA]> 39.3182549 -120.3300825
31 31 Homewood Homewood California 7,881 6,223 1658 1260 60 7 400 57 April 20, 2012 <[OK] Google - Geocode [Homewood Mountain Resort, 5145 W Lake Blvd, Homewood, CA 96141, USA]> 39.0855833 -120.1605391
32 32 Kirkwood Kirkwood California 9,800 7,800 2000 2300 65 15 500 79 April 20, 2012 <[OK] Google - Geocode [Eldorado National Forest, 1501 Kirkwood Meadows Dr, Kirkwood, CA 95646, USA]> 38.6847514 -120.0651665
33 33 Northstar California Truckee California 8,610 6,330 2280 2904 93 19 350 99 April 20, 2012 <[OK] Google - Geocode [5001 Northstar Dr, Truckee, CA 96161, USA]> 39.2748395 -120.1206045
34 34 Sierra-at-Tahoe Twin Bridges California 8,852 6,640 2212 2000 46 12 480 77 April 20, 2012 <[OK] Google - Geocode [Eldorado National Forest, 1111 Sierra-At-Tahoe Rd, Twin Bridges, CA 95735, USA]> 38.7993502 -120.0809057
35 35 Sugar Bowl Norden California 8,383 6,883 1500 1500 94 13 500 77 April 20, 2012 <[OK] Google - Geocode [629 Sugar Bowl Rd, Norden, CA 95724, USA]> 39.3004435 -120.3334022
36 36 Soda Springs Soda Springs California 7,325 6,673 652 200 15 2 400 36 April 20, 2012 <[OK] Google - Geocode [10244 Soda Springs Rd, Norden, CA 95724, USA]> 39.3190022 -120.383946
37 37 Tahoe Donner Truckee California 7,350 6,750 600 120 10 3 400 41 April 20, 2012 <[OK] Google - Geocode [11509 Northwoods Blvd, Truckee, CA 96161, USA]> 39.3436502 -120.2148804
38 38 Badger Pass Yosemite National Park California 8,000 7,200 800 90 10 5 300 42 April 20, 2012 <[OK] Google - Geocode [Yosemite National Park, 7082 Glacier Point Rd, Yosemite National Park, CA 95389, USA]> 37.6622677 -119.6633655
39 39 Bear Valley Angels Camp California 8,500 6,600 1900 1280 67 10 359 April 20, 2012 <[OK] Google - Geocode [Stanislaus National Forest, 2280 state Rte 207, Bear Valley, CA 95223, USA]> 38.4925588 -120.04422
40 40 Dodge Ridge Sonora California 8,200 6,600 1600 832 62 12 300 April 20, 2012 <[OK] Google - Geocode [Stanislaus National Forest, 1 Dodge Ridge Rd, Pinecrest, CA 95364, USA]> 38.190033 -119.9572372
41 41 June Mountain June Lake California 10,090 7,545 2590 500 35 7 250 April 20, 2012 <[OK] Google - Geocode [White Mountain Ranger Station, 3819 CA-158, June Lake, CA 93529, USA]> 37.7679169 -119.0906293
42 42 China Peak Lakeshore California 8,709 7,030 1673 1200 45 11 300 April 20, 2012 <[OK] Google - Geocode [Sierra National Forest, 59265 CA-168, Lakeshore, CA 93634, USA]> 37.2365255 -119.1572742
43 43 Alta Sierra Wofford Heights California 7,091 6,491 600 6 2 80 40 February 14, 2014 <[OK] Google - Geocode [Sequoia National Forest, 56700 Rancheria Rd, Wofford Heights, CA 93285, USA]> 35.7111811 -118.5602081
44 44 Buckhorn Ski and Snowboard Club Three Points California 7,903 7,203 680 40 5 2 180 April 20, 2012 <[OK] Google - Geocode [58.33 mile marker, Angeles Crest Highway, Angeles National Forest, Pearblossom, CA 93553, United States]> 34.341899 -117.919709
45 45 Bear Mountain Big Bear Lake California 8,805 7,104 1665 198 24 12 100 April 20, 2012 <[OK] Google - Geocode [San Bernardino National Forest, 43101 Goldmine Dr, Big Bear Lake, CA 92315, USA]> 34.229059 -116.860943
46 46 Mount Baldy Ski Lifts Mount Baldy California 8,600 6,500 2100 800 26 4 170 April 20, 2012 <[OK] Google - Geocode [Angeles National Forest - San Gabriel Mountains National Monument, 8401 Mt Baldy Rd, Mt Baldy, CA 91759, USA]> 34.2700828 -117.6219104
47 47 Mount Waterman Three Points California 8,030 7,000 1030 150 27 3 180 April 20, 2012 <[OK] Google - Geocode [Angeles National Forest - San Gabriel Mountains National Monument, California 2, La Cañada Flintridge, CA 93553, USA]> 34.3493069 -117.9287896
48 48 Mountain High Wrightwood California 8,200 6,600 1600 290 59 13 132 59 February 14, 2014 <[OK] Google - Geocode [Angeles National Forest - San Gabriel Mountains National Monument, 24510 CA-2, Wrightwood, CA 92397, USA]> 34.3769418 -117.6915242
49 49 Snow Summit Big Bear Lake California 8,174 6,965 1209 240 30 14 100 April 20, 2012 <[OK] Google - Geocode [San Bernardino National Forest, 880 Summit Blvd, Big Bear Lake, CA 92315, USA]> 34.2366501 -116.888426
50 50 Snow Valley Mountain Resort Running Springs California 7,841 6,800 1041 240 29 12 150 April 20, 2012 <[OK] Google - Geocode [San Bernardino National Forest, 35100 California 18, Running Springs, CA 92382, USA]> 34.2248821 -117.036177
51 51 Wolf Creek Ski Area Pagosa Springs Colorado 11,904 10,300 1604 1600 77 7 465 April 20, 2012 <[OK] Google - Geocode [Top of Wolf Creek Pass, U.S. Hwy. 160 E., Pagosa Springs, CO 81147, United States]> 37.474759 -106.793583
52 52 Kicking Horse Resort Golden British Columbia 8,033 3,900 4133 2750 106 3 275 73 February 20, 2011 <[OK] Google - Geocode [Golden, BC V0A 1H2, Canada]> 51.2961188 -116.9631367
53 53 Eldora Mountain Resort Nederland Colorado 10,800 9,200 1600 680 53 12 300 69 February 18, 2011 <[OK] Google - Geocode [Eldora Mountain Resort, Eldora Mountain Resort, 2861 Eldora Ski Rd #140,, Nederland, CO 80466, United States]> 39.9372203 -105.5826786
54 54 Alyeska Resort Girdwood Alaska 3,939 250 2500 1400 73 9 643 60 November 18, 2010 <[OK] Google - Geocode [Chugach National Forest, 1000 Arlberg Ave, Girdwood, AK 99587, USA]> 60.9704446 -149.0987185
55 55 Marmot Basin Jasper Alberta 8,570 5,570 3000 1675 86 8 160 73.00 November 18, 2010 <[OK] Google - Geocode [Jasper National Park, 1 Marmot Rd, Jasper, AB T0E 1E0, Canada]> 52.8011121 -118.0831592
56 56 Lake Louise Mountain Resort Lake Louise Alberta 8,650 5,400 3250 4200 139 9 180 84.95 February 14, 2014 <[OK] Google - Geocode [Banff National Park, 111 Lake Louise Dr, Lake Louise, AB T0L 1E0, Canada]> 51.4177102 -116.2168765
57 57 Big White Ski Resort Kelowna British Columbia 7,606 4,950 2656 2800 118 16 294 76 November 19, 2010 <[OK] Google - Geocode [5315 Big White Rd, Kelowna, BC V1P 1P3, Canada]> 49.7216277 -118.9265789
58 58 Silver Star Mountain Resort Vernon British Columbia 6,282 3,789 2500 3269 128 12 275 81 April, 2015 <[OK] Google - Geocode [123 Shortt St, Silver Star Mountain, BC V1B 3M1, Canada]> 50.3597927 -119.0588592
59 59 Whistler Blackcomb Whistler British Columbia 7,494 2,140 5280 8171 200 37 404 93 November 19, 2010 <[OK] Google - Geocode [4545 Blackcomb Way, Whistler, BC V0N 1B4, Canada]> 50.1149639 -122.9486474
60 60 Steamboat Springs Steamboat Springs Colorado 10,568 6,900 3668 2956 165 16 349 125 January 30, 2015 <[OK] Google - Geocode [Steamboat Springs, CO 80487, USA]> 40.4849769 -106.8317158
61 61 Copper Mountain (Colorado) Frisco Colorado 12,313 9,712 2601 2450 126 22 282 74 November 19, 2010 <[OK] Google - Geocode [184 Copper Cir, Frisco, CO 80443, USA]> 39.4999737 -106.1565266
62 62 Vail Ski Resort Vail Colorado 11,570 8,120 3450 5289 195 31 346 97 <[OK] Google - Geocode [Vail, CO 81657, USA]> 39.6061444 -106.3549717
63 63 Beaver Creek Avon Colorado 11,440 7,400 4040 1832 150 24 195 110 <[OK] Google - Geocode [Beaver Creek, Avon, CO 81620, USA]> 39.5855882 -106.5072225
64 64 Winter Park Resort Winter Park Colorado 12,060 9,000 3060 3000 143 25 365 92 <[OK] Google - Geocode [Arapaho National Forest, 85 Parsenn Rd, Winter Park, CO 80482, USA]> 39.8868485 -105.762548
65 66 Boyne Mountain Boyne City Michigan 1,120 620 500 41 60 10 140 59 <[OK] Google - Geocode [1 Boyne Mountain Rd, Boyne Falls, MI 49713, USA]> 45.163521 -84.930979
66 67 Mountain Creek Vernon Township New Jersey 1,480 440 1040 200 41 8 65 62 <[OK] Google - Geocode [200 NJ-94, Vernon Township, NJ 07462, USA]> 41.1907552 -74.5051199
67 68 Blue Mountain Collingwood Ontario 1,483 741 742 250 34 15 109 67 <[OK] Google - Geocode [156 Jozo Weider Blvd, The Blue Mountains, ON L9Y 3Z2, Canada]> 44.5033715 -80.3121795
68 69 Mt Bachelor Bend Oregon 9,065 5,700 3365 4318 101 11 462 92 January 31, 2017 <[OK] Google - Geocode [19717 Mt Bachelor Dr, Bend, OR 97701, USA]> 44.034642 -121.334432
69 70 Mount Hood Meadows Portland Oregon 7,300 4,523 2777 2150 85 11 430 57 <[OK] Google - Geocode [Mt Hood Dr, Portland, OR 97236, USA]> 45.4635794 -122.5325669
70 71 Mont-Sainte-Anne Beaupré Quebec 2,625 575 2050 450 65 13 187 65 <[OK] Google - Geocode [2000 Boulevard du Beau Pré, Beaupré, QC G0A 1E0, Canada]> 47.075353 -70.904903
71 72 Mont Tremblant Resort Mont Tremblant Quebec 2,870 750 2120 627 95 14 156 70.35 <[OK] Google - Geocode [3035 Chemin de la Chapelle, Mont-Tremblant, QC J8E 1E1, Canada]> 46.2138967 -74.5858377
72 73 Le Massif Petite-Rivière-Saint-François Quebec 2,645 118 2527 410 48 4 248 61 <[OK] Google - Geocode [1350 Rue Principale, Petite-Rivière-Saint-François, QC G0A 2L0, Canada]> 47.2848129 -70.5696845
73 74 Brian Head Brian Head Utah 11,307 9,600 1548 650 14 8 370 40 <[OK] Google - Geocode [Dixie National Forest, 329 S Hwy 143, Brian Head, UT 84719, USA]> 37.7021487 -112.8498974
74 75 Park City Mountain Resort Park City Utah 10,000 6,900 3100 7300 336 41 360 134 February 7,2017 <[OK] Google - Geocode [1345 Lowell Ave, Park City, UT 84060, USA]> 40.651465 -111.5078067
75 76 The Canyons Park City Utah 9,990 6,800 3190 4000 183 19 300 107 <[OK] Google - Geocode [4000 Canyons Resort Dr, Park City, UT 84098, USA]> 40.6860185 -111.5560689
76 77 Deer Valley Park City Utah 9,570 6,570 3000 2026 100 21 280 86 <[OK] Google - Geocode [Deer Valley, Park City, UT 84060, USA]> 40.6229421 -111.4908168
77 78 Brighton Ski Resort Salt Lake City Utah 10,500 8,755 1745 1500 66 6 500 58 <[OK] Google - Geocode [Uinta-Wasatch-Cache National Forest, 8302 S Brighton Loop Rd, Brighton, UT 84121, USA]> 40.5925296 -111.5776277
78 79 Alta Ski Area Salt Lake City Utah 10,550 8,530 2020 2200 116 10 560 66 <[OK] Google - Geocode [Uinta-Wasatch-Cache National Forest, UT-210, Alta, UT 84092, USA]> 40.5908092 -111.6287627
79 80 Snowbird Salt Lake City Utah 10,992 7,760 3240 2500 85 13 500 72 <[OK] Google - Geocode [3165 Millrock Dr #190, Holladay, UT 84121, USA]> 40.6329874 -111.8039425
80 81 Smuggler's Notch Jeffersonville Vermont 3,640 1,030 2610 1000 78 16 288 66 <[OK] Google - Geocode [4323 VT-108, Jeffersonsville, VT 05464, USA]> 44.588465 -72.790045
81 82 Windham Mountain Windham New York 3,100 1,500 1600 279 52 12 100 75 February 14, 2014 <[OK] Google - Geocode [19 Resort Dr, Windham, NY 12496, USA]> 42.2937298 -74.2567116
82 83 Hunter Mountain Hunter New York 3,200 1,600 1600 240 58 10 120 72 February 14, 2014 <[OK] Google - Geocode [Main St, Hunter, NY 12442, USA]> 42.2044144 -74.2105038
83 84 Killington Ski Resort Killington Vermont 4,241 1,165 3050 1509 191 30 250 77 <[OK] Google - Geocode [4763 Killington Rd, Killington, VT 05751, USA]> 43.619801 -72.8027099
84 85 Okemo Mountain Ludlow Vermont 3,344 1,144 2200 632 119 19 200 79 <[OK] Google - Geocode [77 Okemo Ridge Rd, Ludlow, VT 05149, USA]> 43.4015593 -72.7170006
85 86 Stowe Mountain Resort Stowe Vermont 3,719 1,559 2160 485 116 13 333 89 <[OK] Google - Geocode [Mount Mansfield State Forest, 7416 Mountain Rd, Stowe, VT 05672, USA]> 44.5297321 -72.7792739
86 87 Sugarbush Resort Warren Vermont 4,083 1,483 2600 508 111 16 269 82 <[OK] Google - Geocode [1840 Sugarbush Access Rd, Warren, VT 05674, USA]> 44.1361071 -72.894423
87 88 Sugarloaf Carrabassett Valley Maine 4,237 1,417 2820 1153 154 14 200 79 <[OK] Google - Geocode [5092 Access Rd, Carrabassett Valley, ME 04947, USA]> 45.0541811 -70.3085109
88 89 Snowshoe Mountain Marlinton West Virginia 4,848 3,348 1500 244 60 14 180 77 <[OK] Google - Geocode [Monongahela National Forest, 10 Snowshoe Dr, Snowshoe, WV 26209, USA]> 38.4107965 -79.9936029
89 90 Sunshine Village Banff Alberta 8,954 5,440 3514 3358 107 12 360 82 January 19, 2013 <[OK] Google - Geocode [1 Sunshine access Rd, Banff, AB T1L 1J5, Canada]> 51.1151858 -115.7632758
90 91 Mt. Norquay Banff Alberta 8,040 5,500 1650 190 28 5 120 59 January 19, 2013 <[OK] Google - Geocode [Banff National Park, Mt Norquay Rd, Banff, AB T1L 1B4, Canada]> 51.2037551 -115.5982857
91 92 Grouse Mountain North Vancouver British Columbia 4,039 899 1198 212 26 5 120 58 April 2, 2013 <[OK] Google - Geocode [Grouse Mountain, 6400 Nancy Greene Way, North Vancouver, BC V7R 4K9, Canada]> 49.3722894 -123.0994869
92 93 Mount Seymour North Vancouver British Columbia 4,150 935 1083 200 23 5 394 51 April 2, 2013 <[OK] Google - Geocode [Mount Seymour, North Vancouver, BC V7H, Canada]> 49.3933333 -122.9444444
93 94 Cypress Mountain West Vancouver British Columbia 4,724 2,985 2001 600 53 6 245 60 April 2, 2013 <[OK] Google - Geocode [Cypress Provincial Park, 6000 Cypress Bowl Rd, Vancouver, BC V0N 1G0, Canada]> 49.396018 -123.204545
94 95 Stevens Pass Stevens Pass Washington 5,845 4,061 1800 1125 37 10 450 65 July 8, 2013 <[OK] Google - Geocode [Stevens Pass, Washington 98826, USA]> 47.7462223 -121.0859328
95 96 Sun Peaks Resort Kamloops British Columbia 7,060 4,116 2891 4270 125 11 220 79 December 18, 2013 <[OK] Google - Geocode [1280 Alpine Road, Sun Peaks, BC V0E 5N0, Canada]> 50.8844485 -119.8859113
96 97 Crystal Mountain Enumclaw Washington 7,012 3,912 3100 2600 57 12 350 66 January 26, 2014 <[OK] Google - Geocode [Mt. Baker-Snoqualmie National Forest, Enumclaw, WA 98022, USA]> 46.9281666 -121.5045349
97 98 Red Mountain Resort Rossland British Columbia 6807 3887 2919 2887 110 7 300 79 October 31, 2014 <[OK] Google - Geocode [4300 Red Mountain Rd, Rossland, BC V0G 1Y0, Canada]> 49.1024147 -117.8194705
98 99 Mt Baker Glacier Washington 5089 3500 1589 1000 31 10 641 58 December 5, 2015 <[OK] Google - Geocode [Mt Baker Hwy, Deming, WA 98244, USA]> 48.8884996 -121.9384047
99 100 Whiteface Mountain Lake Placid New York 4,650 1,220 3430 314 87 11 168 92 February 16, 2016 <[OK] Google - Geocode [Whiteface Mountain, Wilmington, NY 12997, USA]> 44.3658804 -73.9026456
d3_queue.queue()
.defer(d3.json, "usa_5m.json")
.defer(d3.csv, "resorts_df2.csv")
.await(draw);
h2{font-size:32px;
color: #283041;
font-family: 'Raleway', sans-serif;
padding: 2px;
margin:0px;}
h3{
font-size: 12px;
color:navy;
width:700px;
font-family: 'Open Sans', sans-serif;
padding: 2px;
}
div.tooltip_name {
position: absolute;
text-align: center;
width: 120px;
padding: 2px;
font-size: 15px;
font-family: 'Raleway', sans-serif;
background: #b4b9c1;
border: 1px;
border-radius: 8px;
pointer-events: none;
}
labelfont{font-family: Palatino;
font-size:10px;}
text{
font-family: 'Source Sans Pro', sans-serif;
}
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [{"type":"Feature","properties":{"NAME":"Alberta","CODE":"CA01"},"geometry":{"type":"Polygon","coordinates":[[[-114.1110618013469,48.9949658600373],[-114.09609985351562,49.010601043701165],[-114.0849380493164,49.01562499999999],[-114.0838394165039,49.02921295166015],[-114.09021759033202,49.040977478027344],[-114.11004638671875,49.05439758300781],[-114.14611816406249,49.074378967285156],[-114.18238067626953,49.12821578979492],[-114.18131256103516,49.141807556152344],[-114.18798828125,49.152687072753906],[-114.21058654785155,49.166419982910156],[-114.25885772705078,49.183258056640625],[-114.29641723632811,49.17865753173828],[-114.30882263183594,49.179237365722656],[-114.34913635253906,49.199642181396484],[-114.40033721923828,49.20120620727539],[-114.4148178100586,49.2093391418457],[-114.41911315917969,49.22905731201172],[-114.40950775146483,49.243457794189446],[-114.4107437133789,49.24909210205078],[-114.43419647216797,49.26012420654297],[-114.46605682373045,49.2712287902832],[-114.46839904785155,49.28797149658203],[-114.49758911132812,49.308807373046875],[-114.5053482055664,49.31612777709961],[-114.51265716552734,49.34534454345703],[-114.52229309082031,49.35105514526367],[-114.54324340820312,49.356266021728516],[-114.55126953125,49.362701416015625],[-114.5542526245117,49.372196197509766],[-114.58434295654297,49.37481689453125],[-114.59929656982422,49.386627197265625],[-114.6149368286133,49.41132354736328],[-114.61707305908203,49.418888092041016],[-114.61894226074219,49.45295333862305],[-114.6122589111328,49.48236083984375],[-114.58811950683592,49.54450988769531],[-114.59322357177734,49.551513671875],[-114.60090637207031,49.55424118041992],[-114.64890289306639,49.54335403442383],[-114.68344879150389,49.54553222656249],[-114.70068359374999,49.549354553222656],[-114.73433685302734,49.56513214111328],[-114.75567626953125,49.58496856689453],[-114.75373840332031,49.60761642456055],[-114.72978973388672,49.62316513061523],[-114.68274688720703,49.64061737060547],[-114.68228912353514,49.66802215576172],[-114.68419647216797,49.67647933959961],[-114.67254638671874,49.703514099121094],[-114.6533966064453,49.726932525634766],[-114.66651916503905,49.76141357421875],[-114.65836334228514,49.77054214477539],[-114.65693664550781,49.811588287353516],[-114.66105651855467,49.83770751953125],[-114.68142700195312,49.866615295410156],[-114.69979858398438,49.89254379272461],[-114.69920349121094,49.915374755859375],[-114.7049102783203,49.930686950683594],[-114.66470336914062,49.983795166015625],[-114.67762756347655,50.034767150878906],[-114.67247009277344,50.05342483520508],[-114.70960235595703,50.07875442504882],[-114.7349166870117,50.1109733581543],[-114.74130249023438,50.14469909667969],[-114.73899841308592,50.17377471923828],[-114.73532104492188,50.18710708618164],[-114.77147674560547,50.25814056396484],[-114.76477813720703,50.272056579589844],[-114.7711410522461,50.29570388793945],[-114.78379821777344,50.301719665527344],[-114.79924774169922,50.32363510131836],[-114.79654693603514,50.33342361450195],[-114.77178955078124,50.34530258178711],[-114.7698287963867,50.35241699218749],[-114.77996826171875,50.35723114013672],[-114.81259918212889,50.36366271972656],[-114.82047271728514,50.38197326660156],[-114.84822845458983,50.39059066772461],[-114.86100006103516,50.39110565185547],[-114.86625671386719,50.39811325073242],[-114.87425994873045,50.426521301269524],[-114.88067626953125,50.43457794189453],[-114.91696166992188,50.4542121887207],[-114.95680999755858,50.49256896972656],[-114.97010803222656,50.512386322021484],[-115.00205993652342,50.55902099609375],[-115.02124786376953,50.578559875488274],[-115.0483627319336,50.574195861816406],[-115.07653045654295,50.581863403320305],[-115.11181640625,50.57379150390625],[-115.15126800537111,50.571659088134766],[-115.17794036865234,50.55804443359375],[-115.17984008789062,50.5509147644043],[-115.19976043701172,50.53014755249023],[-115.21141052246092,50.52957534790038],[-115.23325347900389,50.550262451171875],[-115.23948669433594,50.5646858215332],[-115.23312377929688,50.583255767822266],[-115.27369689941406,50.598613739013665],[-115.30399322509767,50.62569046020508],[-115.31168365478516,50.63476181030273],[-115.28594207763672,50.65034866333008],[-115.28382110595702,50.65837478637695],[-115.3001480102539,50.67845916748047],[-115.29779052734374,50.6873779296875],[-115.30618286132811,50.70477676391601],[-115.31903839111328,50.716236114501946],[-115.34665679931639,50.726505279541016],[-115.37336730957031,50.712833404541016],[-115.38530731201172,50.71134567260742],[-115.41105651855467,50.723236083984375],[-115.41458892822266,50.73735809326172],[-115.44554138183594,50.751617431640625],[-115.45773315429689,50.75473022460937],[-115.48565673828125,50.76957702636719],[-115.49224853515624,50.7775993347168],[-115.52440643310547,50.78737258911133],[-115.55779266357422,50.80367660522461],[-115.5578384399414,50.81468200683594],[-115.57154846191406,50.834442138671875],[-115.58495330810547,50.83857727050781],[-115.6359176635742,50.83741760253906],[-115.6677017211914,50.848934173583984],[-115.67505645751953,50.859771728515625],[-115.67159271240233,50.86766815185547],[-115.59483337402344,50.884521484375],[-115.5699462890625,50.896621704101555],[-115.57730102539062,50.907470703125],[-115.59264373779297,50.91547393798828],[-115.6123733520508,50.95143508911133],[-115.62950897216795,50.980709075927734],[-115.6515426635742,50.99672317504883],[-115.65850067138672,50.9998893737793],[-115.69171905517578,51.01715850830078],[-115.72722625732422,51.020503997802734],[-115.7602767944336,51.04018020629883],[-115.76316833496094,51.04556655883789],[-115.8077926635742,51.080230712890625],[-115.89164733886717,51.08628463745117],[-115.89988708496094,51.08069610595703],[-115.9089584350586,51.07983779907226],[-115.98005676269531,51.121341705322266],[-115.99823760986328,51.121246337890625],[-116.00187683105469,51.14067840576171],[-116.02411651611328,51.17030715942382],[-116.02371978759766,51.17913818359375],[-116.00170135498048,51.19487762451172],[-116.00170135498048,51.19510269165039],[-116.02514648437499,51.223995208740234],[-116.03732299804686,51.22793960571288],[-116.0667724609375,51.24457550048828],[-116.08464050292969,51.24906921386718],[-116.1159133911133,51.258525848388665],[-116.12326049804686,51.258323669433594],[-116.14739990234374,51.26708221435547],[-116.15486145019531,51.27238845825195],[-116.1514434814453,51.2922248840332],[-116.17056274414062,51.29774093627929],[-116.20955657958983,51.29966354370117],[-116.2236328125,51.30192947387695],[-116.25453186035156,51.313140869140625],[-116.26686096191405,51.322566986083984],[-116.2825164794922,51.3423957824707],[-116.2774887084961,51.351081848144524],[-116.2977066040039,51.38233947753906],[-116.29424285888672,51.39667892456055],[-116.28484344482422,51.42329025268555],[-116.2857437133789,51.431629180908196],[-116.29585266113281,51.456428527832024],[-116.3074493408203,51.46303176879883],[-116.35041046142577,51.4735107421875],[-116.36856079101562,51.483474731445305],[-116.38175964355467,51.4957160949707],[-116.3905792236328,51.51396560668945],[-116.38755035400389,51.52651977539062],[-116.39343261718749,51.55091094970703],[-116.40630340576173,51.55853652954101],[-116.44199371337889,51.56920623779297],[-116.44673156738281,51.567813873291016],[-116.45861053466797,51.57350540161133],[-116.46598052978516,51.598030090332024],[-116.49373626708984,51.623531341552734],[-116.53704071044923,51.64586639404297],[-116.57520294189453,51.671382904052734],[-116.58432006835936,51.69514083862305],[-116.58155822753908,51.70680999755859],[-116.5846176147461,51.71259307861328],[-116.6183624267578,51.732181549072266],[-116.62406921386719,51.745540618896484],[-116.64444732666016,51.759315490722656],[-116.64523315429688,51.7685546875],[-116.64018249511717,51.783687591552734],[-116.66034698486327,51.804779052734375],[-116.67108917236328,51.809417724609375],[-116.68311309814452,51.808670043945305],[-116.71771240234375,51.79986572265625],[-116.7412796020508,51.80656814575195],[-116.75832366943358,51.78425598144531],[-116.81070709228514,51.749515533447266],[-116.8115463256836,51.739505767822266],[-116.80371856689453,51.72230911254883],[-116.82396697998047,51.70486831665039],[-116.84422302246094,51.70666885375976],[-116.87806701660155,51.70692443847656],[-116.8906707763672,51.70987319946289],[-116.92704772949217,51.72499465942383],[-116.93327331542969,51.73653793334961],[-116.96743011474608,51.761531829833984],[-116.96476745605469,51.77321243286133],[-116.9706268310547,51.799385070800774],[-116.9752197265625,51.811702728271484],[-116.99581146240234,51.838245391845696],[-117.00493621826172,51.84362411499023],[-117.03764343261717,51.876277923583984],[-117.03958129882811,51.90129089355469],[-117.09127044677734,51.922035217285156],[-117.1278610229492,51.95202636718749],[-117.13446807861328,51.96327972412109],[-117.16909790039062,51.97902297973633],[-117.17801666259766,51.97800064086914],[-117.2212677001953,52.00242233276367],[-117.22801971435547,52.01215744018555],[-117.21692657470703,52.02863693237304],[-117.22196197509766,52.03273010253906],[-117.25784301757811,52.03850555419922],[-117.27355194091797,52.04807662963867],[-117.3228073120117,52.074195861816406],[-117.32829284667967,52.09665298461913],[-117.32611083984375,52.1065559387207],[-117.32335662841798,52.13932800292969],[-117.35529327392577,52.2043228149414],[-117.36076354980469,52.20661163330078],[-117.37259674072264,52.20025634765624],[-117.36961364746094,52.179840087890625],[-117.37206268310547,52.175457000732415],[-117.40693664550781,52.159088134765625],[-117.42675781249999,52.15705490112305],[-117.48063659667967,52.15597152709961],[-117.5551071166992,52.16294860839844],[-117.59857177734375,52.14080429077148],[-117.6079330444336,52.13880920410156],[-117.61905670166014,52.142452239990234],[-117.64956665039062,52.17422103881835],[-117.68100738525392,52.20879745483398],[-117.70408630371094,52.21246719360351],[-117.72321319580078,52.2066535949707],[-117.80937957763673,52.21528244018555],[-117.81340789794922,52.21742630004882],[-117.83843994140625,52.24778366088867],[-117.8495635986328,52.27338409423828],[-117.8441390991211,52.29953384399414],[-117.82937622070311,52.31304168701172],[-117.80615234375,52.32405471801757],[-117.76525878906249,52.333675384521484],[-117.75509643554686,52.33929443359375],[-117.74297332763672,52.36858367919921],[-117.74516296386717,52.37242126464844],[-117.77023315429688,52.40280532836913],[-117.77998352050781,52.40632247924804],[-117.78958129882812,52.4034080505371],[-117.85352325439453,52.412971496582024],[-117.89351654052733,52.4224853515625],[-117.90290832519531,52.427791595458984],[-117.9419937133789,52.45645523071289],[-117.98039245605469,52.481388092041016],[-117.9833526611328,52.49627685546875],[-118.00274658203125,52.50416946411133],[-118.0173568725586,52.498863220214844],[-118.03397369384767,52.48362731933594],[-118.0577621459961,52.4698486328125],[-118.05422973632811,52.457672119140625],[-118.05898284912108,52.434207916259766],[-118.06651306152344,52.41920089721679],[-118.09673309326172,52.4104881286621],[-118.10373687744139,52.412845611572266],[-118.13601684570312,52.41618728637695],[-118.15003204345703,52.413570404052734],[-118.17487335205077,52.40168380737305],[-118.185546875,52.4006462097168],[-118.22667694091798,52.40461349487304],[-118.23943328857422,52.4083023071289],[-118.24844360351561,52.430946350097656],[-118.24865722656249,52.437374114990234],[-118.23310089111327,52.45545959472656],[-118.2022018432617,52.47515869140625],[-118.20242309570312,52.48158645629883],[-118.23938751220702,52.484321594238274],[-118.25198364257812,52.48891067504883],[-118.2683563232422,52.5047721862793],[-118.29551696777342,52.526912689208984],[-118.29635620117188,52.537967681884766],[-118.27876281738281,52.55866622924805],[-118.28160095214844,52.567119598388665],[-118.29144287109375,52.570587158203125],[-118.32962799072264,52.57520294189453],[-118.34007263183594,52.58329010009765],[-118.33688354492188,52.59954833984375],[-118.35536193847656,52.612796783447266],[-118.35751342773438,52.62486267089844],[-118.35059356689453,52.63718795776367],[-118.29994201660158,52.65733337402344],[-118.3012466430664,52.681255340576165],[-118.30726623535155,52.689022064208984],[-118.34208679199217,52.71904373168945],[-118.33811950683592,52.73158645629883],[-118.34020233154298,52.73632049560547],[-118.37477111816406,52.752559661865234],[-118.41725158691408,52.77485275268555],[-118.4218063354492,52.79809188842773],[-118.4155731201172,52.80681228637695],[-118.39692687988281,52.8403091430664],[-118.39515686035156,52.84934997558594],[-118.4095687866211,52.85313034057617],[-118.44611358642577,52.85206604003906],[-118.46272277832031,52.86791229248047],[-118.45613861083983,52.87844467163086],[-118.49362182617188,52.904014587402344],[-118.5022430419922,52.906455993652344],[-118.52809143066406,52.898193359375],[-118.55465698242188,52.90188980102538],[-118.56755065917969,52.889957427978516],[-118.5792236328125,52.88435745239258],[-118.60182189941406,52.88501739501953],[-118.60975646972655,52.891067504882805],[-118.60453033447264,52.902618408203125],[-118.61858367919922,52.916423797607415],[-118.62741851806639,52.94178009033203],[-118.6498336791992,52.95158004760742],[-118.6703872680664,52.97132492065429],[-118.66700744628906,52.98117446899414],[-118.65142059326173,52.99935150146484],[-118.65502166748047,53.012432098388665],[-118.65048217773438,53.02037048339844],[-118.65991973876953,53.0347671508789],[-118.66857910156249,53.03719711303711],[-118.68929290771483,53.03219985961914],[-118.71041870117188,53.04922866821289],[-118.72625732421875,53.05397415161133],[-118.7422866821289,53.04956817626953],[-118.76569366455078,53.03832244873047],[-118.78069305419922,53.047584533691406],[-118.78736114501953,53.044368743896484],[-118.76711273193358,53.071414947509766],[-118.76344299316406,53.07483291625976],[-118.73779296875,53.10609436035156],[-118.74227905273438,53.11465072631836],[-118.75463104248045,53.12190628051758],[-118.77619171142577,53.12886428833008],[-118.78688049316405,53.13692092895508],[-118.7876968383789,53.14889144897461],[-118.8204803466797,53.169429779052734],[-118.83754730224608,53.17607498168945],[-118.88464355468751,53.20212936401367],[-118.92304229736328,53.21750259399414],[-118.94654083251953,53.23096847534179],[-118.98227691650389,53.236061096191406],[-119.00272369384766,53.232810974121094],[-119.00385284423828,53.21821975708007],[-119.00404357910156,53.18340301513672],[-119.023193359375,53.16173553466797],[-119.01545715332031,53.153900146484375],[-119.01820373535156,53.130252838134766],[-119.04155731201172,53.11894607543945],[-119.0554428100586,53.118011474609375],[-119.05336761474608,53.1380386352539],[-119.08261871337892,53.16192245483398],[-119.12767791748048,53.16573715209961],[-119.13829040527342,53.1746597290039],[-119.16803741455078,53.187557220458984],[-119.1832809448242,53.1876106262207],[-119.2291030883789,53.196006774902344],[-119.2339401245117,53.19447708129882],[-119.2367935180664,53.178165435791016],[-119.25401306152342,53.17558670043945],[-119.27001953124999,53.215068817138665],[-119.32874298095702,53.272789001464844],[-119.35249328613281,53.303577423095696],[-119.35928344726562,53.30857849121094],[-119.35375213623047,53.322898864746094],[-119.36473083496092,53.33915328979492],[-119.39176940917967,53.36005783081055],[-119.40646362304688,53.36370849609375],[-119.44241333007811,53.35948181152344],[-119.49092102050781,53.362422943115234],[-119.51199340820311,53.36460876464844],[-119.56430816650389,53.37232208251953],[-119.59709167480469,53.38709640502929],[-119.60785675048827,53.386817932128906],[-119.61164855957031,53.38246154785156],[-119.60661315917969,53.3665885925293],[-119.61509704589844,53.361595153808594],[-119.64634704589842,53.367103576660156],[-119.66513824462889,53.36454391479492],[-119.67563629150389,53.3752326965332],[-119.70480346679688,53.384265899658196],[-119.72133636474608,53.38614273071289],[-119.75277709960936,53.41910934448242],[-119.78186035156249,53.457427978515625],[-119.77951812744139,53.47195053100586],[-119.79073333740234,53.48816680908203],[-119.81759643554688,53.50252914428711],[-119.84826660156249,53.51251983642578],[-119.86618041992188,53.50620651245117],[-119.89766693115234,53.52080535888672],[-119.89694976806642,53.52534484863281],[-119.86627197265625,53.55384826660156],[-119.87230682373045,53.56426620483398],[-119.90145874023436,53.584232330322266],[-119.91870880126953,53.60169219970703],[-119.9079132080078,53.621246337890625],[-119.89263916015624,53.62038803100586],[-119.85212707519531,53.613521575927734],[-119.80059051513672,53.598682403564446],[-119.7733917236328,53.59553146362304],[-119.75372314453124,53.59324645996094],[-119.72054290771484,53.60783004760742],[-119.71954345703124,53.623355865478516],[-119.72474670410156,53.629154205322266],[-119.73844146728516,53.64919281005859],[-119.7397232055664,53.6602668762207],[-119.78497314453125,53.68577575683594],[-119.80497741699217,53.70524978637695],[-119.81262969970703,53.705684661865234],[-119.82743072509766,53.70010757446289],[-119.84149932861328,53.69906997680663],[-119.85016632080078,53.7123908996582],[-119.90352630615234,53.7071418762207],[-119.90959167480467,53.71756362915038],[-119.8937301635742,53.73958969116211],[-119.89103698730467,53.746772766113274],[-119.89421081542969,53.77536392211914],[-119.93154907226562,53.78386306762695],[-119.9579086303711,53.78349304199219],[-119.97100067138672,53.78879928588867],[-119.97609710693358,53.805580139160156],[-119.99999999999999,53.806861877441406],[-119.99999999999999,54],[-119.99999999999999,54.0941276550293],[-119.99999999999999,54.3429946899414],[-119.99999999999999,54.74125671386719],[-119.99999999999999,55],[-119.99999999999999,55.34872055053711],[-119.99999999999999,55.66475677490234],[-119.99999999999999,55.8916130065918],[-119.99999999999999,56],[-119.99999999999999,56.149105072021484],[-119.99999999999999,56.940528869628906],[-119.99999999999999,56.99999999999999],[-119.99999999999999,57.31628417968749],[-119.99999999999999,57.936641693115234],[-119.99999999999999,58.00000000000001],[-119.99999999999999,58.388057708740234],[-119.99999999999999,58.73392105102539],[-119.99999999999999,58.99999999999999],[-119.99999999999999,59.093879699707024],[-119.99999999999999,59.52528381347656],[-119.99999999999999,59.58183670043945],[-119.99999999999999,59.90776824951172],[-119.99999999999999,59.99999999999999],[-119,59.99999999999999],[-117.99999999999999,59.99999999999999],[-117,59.99999999999999],[-116.00000000000001,59.99999999999999],[-115,59.99999999999999],[-113.99999999999999,59.99999999999999],[-112.99999999999999,59.99999999999999],[-112,59.99999999999999],[-111,59.99999999999999],[-110,59.99999999999999],[-110,58.99999999999999],[-110,58.00000000000001],[-110,56.99999999999999],[-110,56],[-110,55],[-110,54],[-110,53],[-110,52],[-110,50.99999999999999],[-110,50],[-109.9832428858814,49.00001192839231],[-110.74623107910156,48.99839782714844],[-111.28182220458984,48.998584747314446],[-111.2818603515625,48.99485778808594],[-112.19189453125,48.99425506591797],[-113.1481704711914,48.99347686767578],[-113.61591339111328,48.99309539794922],[-114.06719970703125,48.99489212036133],[-114.1110618013469,48.9949658600373]]]}},{"type":"Feature","properties":{"NAME":"Saskatchewan","CODE":"CA11"},"geometry":{"type":"Polygon","coordinates":[[[-110,50],[-110,50.99999999999999],[-110,52],[-110,53],[-110,54],[-110,55],[-110,56],[-110,56.99999999999999],[-110,58.00000000000001],[-110,58.99999999999999],[-110,59.99999999999999],[-109,59.99999999999999],[-108,59.99999999999999],[-107,59.99999999999999],[-106,59.99999999999999],[-105,59.99999999999999],[-104,59.99999999999999],[-102.99999999999999,59.99999999999999],[-101.99999999999999,59.99999999999999],[-101.99999999999999,57.3531608581543],[-101.99999999999999,57.197574615478516],[-101.99999999999999,57.107608795166016],[-101.99999999999999,56.85122299194336],[-101.99999999999999,55.80464935302734],[-101.96058654785156,55.80459976196289],[-101.96266174316406,55.46031951904297],[-101.92733764648436,55.460514068603516],[-101.92729949951172,55.45546340942383],[-101.93002319335938,55.38948440551758],[-101.93016815185547,55.280330657958984],[-101.93318939208983,55.115352630615234],[-101.88951110839842,55.114063262939446],[-101.88963317871094,54.91358947753906],[-101.88966369628905,54.87417221069335],[-101.88971710205078,54.76357650756835],[-101.8493881225586,54.763614654541016],[-101.8493881225586,54.75431823730469],[-101.84937286376953,54.41109085083008],[-101.81513977050781,54.41111373901367],[-101.80314636230469,54.063934326171875],[-101.77478790283203,54.06424331665038],[-101.7696533203125,53.71659851074219],[-101.74944305419922,53.716732025146484],[-101.74938201904297,53.713748931884766],[-101.74933624267578,53.713748931884766],[-101.7439193725586,53.36949157714844],[-101.70446777343749,53.36883926391601],[-101.70455169677733,53.36701202392578],[-101.70452880859374,53.36701202392578],[-101.70091247558594,53.01853942871094],[-101.66483306884764,53.01850509643555],[-101.66674804687499,52.6656494140625],[-101.63707733154297,52.66511535644531],[-101.63848114013672,52.565250396728516],[-101.63896179199219,52.53083419799805],[-101.64192199707031,52.318244934082024],[-101.64076232910156,52.31820297241211],[-101.60482025146483,52.31771469116211],[-101.60487365722656,52.31624221801757],[-101.5979232788086,51.97649383544922],[-101.57164001464844,51.97651672363281],[-101.57160949707031,51.81069183349609],[-101.57086944580077,51.755428314208984],[-101.56968688964844,51.62452697753906],[-101.56765747070312,51.519081115722656],[-101.56625366210938,51.39099502563476],[-101.56433868408203,51.30367660522461],[-101.53852081298828,51.30381774902344],[-101.53840637207031,51.29328155517578],[-101.53782653808594,51.23759460449219],[-101.53765869140625,51.22089767456055],[-101.53746032714844,51.20148849487305],[-101.53486633300781,50.95116806030273],[-101.50514221191406,50.951148986816406],[-101.49788665771484,50.59359359741211],[-101.47116088867188,50.59385681152344],[-101.47078704833984,50.56512451171875],[-101.46942901611328,50.50259780883789],[-101.4663314819336,50.30427932739258],[-101.46437072753906,50.24350357055664],[-101.44204711914061,50.243587493896484],[-101.44219970703125,49.887351989746094],[-101.41957092285156,49.88749313354492],[-101.41383361816406,49.53834533691406],[-101.39169311523438,49.53838348388672],[-101.38329315185547,49.184326171875],[-101.35521697998047,49.1844253540039],[-101.34937286376952,49.00117492675781],[-101.99999999999999,49],[-102.99999999999999,49],[-104,49],[-105,49],[-106,49],[-107,49],[-108,49],[-109,49],[-109.98324268599357,49],[-110,50]]]}},{"type":"Feature","properties":{"NAME":"Manitoba","CODE":"CA03"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-94.7217074559168,59.0803086966695],[-94.739623408521,59.05995106207179],[-94.75743708092209,59.0516395974583],[-94.784077506136,59.049828338252],[-94.8089103089708,59.0535701067249],[-94.8443652902845,59.06566148641361],[-94.8407346719606,59.0832674729816],[-94.8051113996196,59.098981473132],[-94.7695466048707,59.1007829245959],[-94.7217074559168,59.0803086966695]]],[[[-97.22967529296875,48.99624252319336],[-97.94334411621094,49.0024299621582],[-98.40220642089844,49.00289535522461],[-98.994873046875,49.00298309326172],[-99.53314971923828,49.00257110595703],[-99.78238677978516,49.001461029052734],[-100.18527221679688,49.00091552734375],[-100.73970031738281,49.00049591064453],[-101.00197117483367,49.00000662898094],[-101.34937286376952,49.00117492675781],[-101.35521697998047,49.1844253540039],[-101.38329315185547,49.184326171875],[-101.39169311523438,49.53838348388672],[-101.41383361816406,49.53834533691406],[-101.41957092285156,49.88749313354492],[-101.44219970703125,49.887351989746094],[-101.44204711914061,50.243587493896484],[-101.46437072753906,50.24350357055664],[-101.4663314819336,50.30427932739258],[-101.46942901611328,50.50259780883789],[-101.47078704833984,50.56512451171875],[-101.47116088867188,50.59385681152344],[-101.49788665771484,50.59359359741211],[-101.50514221191406,50.951148986816406],[-101.53486633300781,50.95116806030273],[-101.53746032714844,51.20148849487305],[-101.53765869140625,51.22089767456055],[-101.53782653808594,51.23759460449219],[-101.53840637207031,51.29328155517578],[-101.53852081298828,51.30381774902344],[-101.56433868408203,51.30367660522461],[-101.56625366210938,51.39099502563476],[-101.56765747070312,51.519081115722656],[-101.56968688964844,51.62452697753906],[-101.57086944580077,51.755428314208984],[-101.57160949707031,51.81069183349609],[-101.57164001464844,51.97651672363281],[-101.5979232788086,51.97649383544922],[-101.60487365722656,52.31624221801757],[-101.60482025146483,52.31771469116211],[-101.64076232910156,52.31820297241211],[-101.64192199707031,52.318244934082024],[-101.63896179199219,52.53083419799805],[-101.63848114013672,52.565250396728516],[-101.63707733154297,52.66511535644531],[-101.66674804687499,52.6656494140625],[-101.66483306884764,53.01850509643555],[-101.70091247558594,53.01853942871094],[-101.70452880859374,53.36701202392578],[-101.70455169677733,53.36701202392578],[-101.70446777343749,53.36883926391601],[-101.7439193725586,53.36949157714844],[-101.74933624267578,53.713748931884766],[-101.74938201904297,53.713748931884766],[-101.74944305419922,53.716732025146484],[-101.7696533203125,53.71659851074219],[-101.77478790283203,54.06424331665038],[-101.80314636230469,54.063934326171875],[-101.81513977050781,54.41111373901367],[-101.84937286376953,54.41109085083008],[-101.8493881225586,54.75431823730469],[-101.8493881225586,54.763614654541016],[-101.88971710205078,54.76357650756835],[-101.88966369628905,54.87417221069335],[-101.88963317871094,54.91358947753906],[-101.88951110839842,55.114063262939446],[-101.93318939208983,55.115352630615234],[-101.93016815185547,55.280330657958984],[-101.93002319335938,55.38948440551758],[-101.92729949951172,55.45546340942383],[-101.92733764648436,55.460514068603516],[-101.96266174316406,55.46031951904297],[-101.96058654785156,55.80459976196289],[-101.99999999999999,55.80464935302734],[-101.99999999999999,56.85122299194336],[-101.99999999999999,57.107608795166016],[-101.99999999999999,57.197574615478516],[-101.99999999999999,57.3531608581543],[-101.99999999999999,59.99999999999999],[-101,59.99999999999999],[-100,59.99999999999999],[-99,59.99999999999999],[-98.16876976665662,59.99999999999999],[-98,59.99999999999999],[-97,59.99999999999999],[-96,59.99999999999999],[-95.00632125678548,60.0086971120066],[-94.688237867353,60.0053400076359],[-94.7095871952556,59.889681745147],[-94.704754865371,59.7928433451459],[-94.7222710871401,59.78337990204479],[-94.7185705369819,59.70960602388221],[-94.6965505587555,59.6552396762507],[-94.66589216982808,59.5488426737159],[-94.63604424720998,59.4846565623659],[-94.6321186925427,59.4016863692872],[-94.6756754503825,59.382664412100205],[-94.6878256674163,59.2672082097405],[-94.72774868075759,59.1790514045386],[-94.7874565003698,59.1367180035312],[-94.8573047225835,59.12187752973319],[-94.92785727258699,59.1208259942486],[-94.97440708814479,59.085528968418906],[-94.8968947275597,59.038294211151],[-94.6391130741406,58.9866033028956],[-94.6163996809899,58.970767378106096],[-94.5855546079595,58.968861855513595],[-94.5220650884736,58.923569554858794],[-94.4854092507637,58.887145724482195],[-94.4550870565266,58.7907247264698],[-94.4104595511105,58.768211326158806],[-94.3842568557465,58.768515924571],[-94.34129248940678,58.7874395394258],[-94.2915877774181,58.8617275054424],[-94.2565584989371,58.8621043295348],[-94.2387152077324,58.85307573539439],[-94.2634746903643,58.8113356210402],[-94.2430217888522,58.7286037657789],[-94.3516329045632,58.60299888027339],[-94.34950438279739,58.5477336508033],[-94.330918127866,58.515692540806405],[-94.2686996082901,58.474915887543396],[-94.2261843521532,58.4984058359852],[-94.2481174926946,58.62717747052199],[-94.1559221384229,58.7341077131772],[-94.1677412182665,58.8261535137317],[-94.133799502621,58.8587494999195],[-93.9674102452753,58.860284813152],[-93.9057408517225,58.8469800543756],[-93.7744175242596,58.848001219240096],[-93.6435258352615,58.8719415419544],[-93.57343488665799,58.8723747721892],[-93.5025738560387,58.822091943079094],[-93.44107979790658,58.8039845246013],[-93.40621432803869,58.8133716696323],[-93.3802967710371,58.841139288591],[-93.3454287169062,58.8551192556268],[-93.29288243196929,58.85533917523419],[-93.2139303928651,58.8372039237058],[-93.17880294002998,58.8188922060045],[-93.1342798474975,58.66239103770061],[-93.099304471978,58.630244503445994],[-93.0381375711938,58.5290623266624],[-93.0291433289984,58.3863092526778],[-92.822218861857,58.216250961402494],[-92.7799153032536,58.050537830643904],[-92.7628463659271,58.0367349733252],[-92.74640530885789,57.9032488829797],[-92.7124645640477,57.87103652313599],[-92.7042224429946,57.825009976175394],[-92.6621784067299,57.7513679991358],[-92.57822893282028,57.6408759023604],[-92.4777539644383,57.5395244585783],[-92.42844012686498,57.4336171236565],[-92.4296380061223,57.3416089475879],[-92.4555921812238,57.28185293054],[-92.5492201382987,57.1485859911028],[-92.5666222341592,57.0750132543519],[-92.6337826125144,57.024466011287],[-92.7006627558151,56.99228477829169],[-92.7495996377444,56.973583520277],[-92.79100277480039,56.963005965647],[-92.793103532742,56.9483747781765],[-92.7782054763359,56.9323005346292],[-92.746214647815,56.9317875903652],[-92.7122477973757,56.9400648597973],[-92.6867060007472,56.9532899100429],[-92.6641542382345,56.9649561442723],[-92.62300983738719,56.98843991251469],[-92.3326490082213,57.088405621266],[-92.2240777865922,57.088085489967895],[-92.1955803243137,57.0488946677498],[-92.15817227495369,57.0418586621755],[-92.1163691194631,57.046292126594],[-91.8221624872498,57.122961045336595],[-91.1305669644174,57.25036271773569],[-90.809880029876,57.2832340215652],[-90.71756029779328,57.2819662591703],[-90.5103786641631,57.2374913636072],[-90.1669767711641,57.1121023201934],[-90.1008218657521,57.1016914767658],[-90.0742920330207,57.08912712240999],[-90.0020041495497,57.0814237665621],[-89.6986009462273,57.0108429873294],[-89.5502672696218,56.989180996766],[-89.2973869363211,56.9280434301369],[-88.9751773224263,56.901420466627],[-88.96088023050524,56.897995019238444],[-93.6637496948242,53.73680877685547],[-95.15772247314453,52.833377838134766],[-95.1570053100586,52.05824279785156],[-95.1566390991211,51.65218734741211],[-95.15617370605469,51.13162612915039],[-95.15613555908203,51.08600616455078],[-95.15544128417969,50.267215728759766],[-95.15494537353516,49.66909408569335],[-95.15471649169922,49.38821029663086],[-95.15165861178029,49.36925882991866],[-95.15751647949219,49.00239944458008],[-95.2764205932617,49.00312805175781],[-95.97484588623047,49.00143432617187],[-96.40661621093749,49.000389099121094],[-97.22909545898438,49.00025939941406],[-97.22967529296875,48.99624252319336]]]]}},{"type":"Feature","properties":{"NAME":"Newfoundland & Labrador","CODE":"CA05"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-53.0711444959373,49.7014129726377],[-53.0921965121842,49.7110647309077],[-53.0966058052615,49.7277716827945],[-53.0866521403827,49.7367675747951],[-53.0696904455913,49.74892140818719],[-53.03655163444629,49.7503576120849],[-53.0178582395344,49.7433226612116],[-53.028866091605394,49.7225626004976],[-53.0461162450576,49.7082092107258],[-53.0711444959373,49.7014129726377]]],[[[-54.2550904824596,49.5440579733298],[-54.2741780080439,49.5505455187773],[-54.282896223346,49.56867165349],[-54.2013977943995,49.6876483114698],[-54.0952094114299,49.7223653973823],[-54.0534664776142,49.713192519892594],[-54.03271088044729,49.6807839036996],[-54.034557135090196,49.6510303562766],[-54.065933735596,49.6161844629],[-54.2083022739952,49.5685932488812],[-54.2550904824596,49.5440579733298]]],[[[-55.606906783599996,49.5386173588873],[-55.67895062984049,49.5532014727322],[-55.7169658883475,49.5650433116323],[-55.70998642430099,49.5739724501172],[-55.6869036741083,49.5865189868261],[-55.6501070230673,49.5885939850433],[-55.6121913781791,49.5753440003165],[-55.5940519908221,49.551942849842895],[-55.606906783599996,49.5386173588873]]],[[[-55.584087174964395,49.4526983094141],[-55.6143941051864,49.4546259031025],[-55.6330551044565,49.4647100713359],[-55.636353178191094,49.4750987177884],[-55.620168036145,49.4864813426987],[-55.5885407970365,49.4867725344459],[-55.5604869250003,49.4755174868767],[-55.584087174964395,49.4526983094141]]],[[[-53.57332394760889,48.7977198009639],[-53.5979836361887,48.7734980496316],[-53.612874983555294,48.7664729052049],[-53.6294561282345,48.7533569852387],[-53.6464458037706,48.7412361388488],[-53.6703746342465,48.7375946581581],[-53.6907584631727,48.7477434999236],[-53.6768747375027,48.7652319591005],[-53.6480916615869,48.7897510317407],[-53.6105502798367,48.807629385971694],[-53.57332394760889,48.7977198009639]]],[[[-55.1808253652623,49.2887570369741],[-55.2026904676198,49.2944528082508],[-55.215212702572,49.3010365260467],[-55.2235738623028,49.3146799767721],[-55.2178118464063,49.3247326328486],[-55.2047056062861,49.3364492422845],[-55.1820282659482,49.3383589845237],[-55.1657288355324,49.328293578665196],[-55.1553669820047,49.3117937472826],[-55.1808253652623,49.2887570369741]]],[[[-55.7998460861715,49.50627203276199],[-55.8288976519543,49.5032210785544],[-55.8430016116287,49.5081248021771],[-55.8474252853722,49.522433227792895],[-55.82872670048789,49.5379307431409],[-55.8030549834729,49.5495847782485],[-55.7643423789439,49.5474689453705],[-55.7600380175471,49.5381613390354],[-55.7880671079977,49.5124314508873],[-55.7998460861715,49.50627203276199]]],[[[-53.59665920368229,48.7158464777489],[-53.6031609281674,48.7006380031503],[-53.6152776124534,48.6850174476546],[-53.6650016325836,48.6843401443736],[-53.681343177550396,48.69298141286699],[-53.676629214588495,48.7080148164192],[-53.6621115449057,48.7118185367704],[-53.6479114789258,48.7224608623845],[-53.6239881035637,48.7260978932838],[-53.59665920368229,48.7158464777489]]],[[[-53.529465592906895,48.5393138904328],[-53.5289871627182,48.52905037714739],[-53.5367115090666,48.51515714480169],[-53.55268870440099,48.506896837871],[-53.5773381209336,48.5052613425601],[-53.5979728299443,48.512187242172],[-53.6071538524453,48.5240402231912],[-53.5946831865111,48.5386661890175],[-53.5556191371418,48.5483250483299],[-53.529465592906895,48.5393138904328]]],[[[-52.7260448923941,48.0602021017003],[-52.7550147021958,48.0559673352241],[-52.766498188054,48.063988662470194],[-52.77186608939369,48.0743964406345],[-52.7700175300334,48.0903392258337],[-52.7475282380353,48.1078054143735],[-52.716795552957,48.1018413563308],[-52.7060835445932,48.081020799057995],[-52.7260448923941,48.0602021017003]]],[[[-53.6704848537936,48.0583106780485],[-53.80951292885819,48.1122903369736],[-53.8304701649208,48.13478106217179],[-53.8137475866191,48.1541433950845],[-53.6663634076626,48.1376452554679],[-53.5275036710852,48.1391144890191],[-53.4841960139109,48.1237732467118],[-53.4824844142916,48.0978934298462],[-53.5256633202422,48.0576111487801],[-53.6047823318516,48.0502547650692],[-53.6704848537936,48.0583106780485]]],[[[-52.84638598908299,47.596121534857],[-52.8872144063335,47.58081785694489],[-52.8967644593529,47.572659147583096],[-52.9139772469638,47.56035628496329],[-52.9281647407217,47.5492530162515],[-52.9610531748854,47.5525225637107],[-52.9645886244567,47.5669429593059],[-52.9504058953579,47.578052304213],[-52.9456910451881,47.5952081616947],[-52.943506255374096,47.61572066955079],[-52.9373920557885,47.6323377406358],[-52.9203942731913,47.6423619608712],[-52.8825544422797,47.6241142853371],[-52.856905763533,47.6070266235486],[-52.84638598908299,47.596121534857]]],[[[-54.0043606166353,47.6868074938246],[-53.9947550657072,47.5374885765548],[-54.0172283355823,47.5202329770265],[-54.0471846643315,47.550877735352294],[-54.0552259188685,47.6643838711688],[-54.0351617039955,47.6976096706769],[-54.0043606166353,47.6868074938246]]],[[[-54.09590375258259,47.386693158347],[-54.1133810168696,47.3751799662049],[-54.1375144179802,47.3680484656837],[-54.1543262921025,47.3668870662386],[-54.1640791311476,47.378026936912896],[-54.1677372269016,47.3893697230137],[-54.1464123778607,47.4087818887931],[-54.1232886763884,47.41256100263839],[-54.1055745096042,47.405903002548],[-54.09590375258259,47.386693158347]]],[[[-54.0949380240554,47.6457278261417],[-54.1162880971453,47.60945759125819],[-54.131101763083294,47.5688607779491],[-54.15701689034,47.5224623235954],[-54.1909035694619,47.480312422087394],[-54.2518923736228,47.44084571084359],[-54.3194225395514,47.39386372563819],[-54.3570178310173,47.3892314982002],[-54.3535119060639,47.4153099330734],[-54.3283555982908,47.4457625140681],[-54.2818806266274,47.4757298742592],[-54.2368211551077,47.5062270914811],[-54.2130590807922,47.54594325883809],[-54.1787291735126,47.5929382500788],[-54.1650200246401,47.6389370171158],[-54.1401777881748,47.66206913368319],[-54.1092820388742,47.6567339824531],[-54.0949380240554,47.6457278261417]]],[[[-55.8691335410254,47.27836453532619],[-55.898320835809,47.275518489942],[-55.9276970443227,47.2930352197345],[-55.924476046089296,47.3073457027281],[-55.9084620607605,47.3184975738931],[-55.8707606274782,47.31346690648649],[-55.84908943508199,47.2972822881116],[-55.8691335410254,47.27836453532619]]],[[[-55.3567858534193,49.1602393501245],[-55.3228922652518,49.166606315843794],[-55.279267106477796,49.227494246551],[-55.2465001851973,49.2467856363354],[-55.129260685814,49.288313731475995],[-55.1091089593329,49.311784858217],[-55.1080380222763,49.3415996433443],[-55.0848375284141,49.35903784892],[-55.0559863526077,49.3544780593136],[-55.0320003742531,49.3062534433624],[-54.936213794835,49.2843639161124],[-54.9096040126378,49.3056690165666],[-54.9042335705644,49.3592472874525],[-54.8707731211698,49.3883463696712],[-54.8487011272142,49.3759271247345],[-54.8265662782584,49.28793930815439],[-54.8011516175366,49.279415664199796],[-54.7672791817975,49.3184159831229],[-54.7053886499112,49.3328918869008],[-54.6906099450943,49.3438712042427],[-54.5796774953886,49.4670573712372],[-54.469418254414,49.5358508887522],[-54.4444587281091,49.5173158070434],[-54.4954770883521,49.4689270137706],[-54.4622475839451,49.4223569129685],[-54.4896477656237,49.391250004406096],[-54.4945318345727,49.357578580054],[-54.461327627017,49.3110120562974],[-54.4320425013836,49.3162224478863],[-54.3933773221489,49.3788272550603],[-54.3434329775904,49.4073213944587],[-54.2783488720705,49.4155036935296],[-54.150346218067696,49.392066174808],[-54.1307607745384,49.3954836301626],[-54.0800441931511,49.4337685050744],[-54.0009782095791,49.45727728773869],[-53.951455045533,49.42002587782089],[-53.796321123662,49.4172240548664],[-53.704236033581495,49.3904404032068],[-53.6281828465257,49.3184247454611],[-53.5356536980925,49.3014316631694],[-53.45366531111729,49.272808617004],[-53.4480521778367,49.260697330263],[-53.5393564840749,49.150586956191],[-53.54522961129419,49.06139565882399],[-53.604348250576,49.0415106458145],[-53.715927974792,49.055069043641],[-53.7469542665656,49.0202959808254],[-53.8150560709862,49.0085265278643],[-53.8287986974217,48.9930567277543],[-53.8042391993776,48.9744133107679],[-53.7956873485789,48.956265353989096],[-53.805983490042394,48.9446651450982],[-53.91277187912169,48.9260788206937],[-53.9235810687714,48.9045464553889],[-53.8830431363605,48.8854406266248],[-53.87732163449649,48.8733444311848],[-53.8943997382422,48.8539936417995],[-54.0555925437254,48.828943065183],[-54.1010752551776,48.8143441184777],[-54.1214163315224,48.7910707778135],[-54.1156409823303,48.7789844136492],[-54.0581629525227,48.77933636992449],[-53.92904430244779,48.80536075432],[-53.8521610852136,48.8089965365686],[-53.80829109213549,48.7937384178237],[-53.7997392658953,48.7755929609584],[-53.8298767318362,48.7506948126358],[-53.9463825060087,48.7204338363408],[-53.9633495749641,48.7010658858472],[-53.9484851001102,48.680756621509],[-53.821764999157594,48.66699695725449],[-53.7541781662958,48.6788071224981],[-53.6950929202737,48.6530987998179],[-53.64055974791269,48.6592941496759],[-53.5968514774077,48.6439653577136],[-53.5911991969314,48.6318615079538],[-53.6179151699831,48.6108815125145],[-53.827704751479,48.557902776862],[-53.8412518714606,48.5424212752864],[-53.83554137444669,48.5303262027052],[-53.7941926196637,48.5310445439797],[-53.7318359891575,48.5092333594617],[-53.7261509695316,48.4971346514887],[-53.7430898259793,48.4777998089999],[-53.7594733158016,48.4683767344265],[-53.9064506216649,48.449012930958595],[-54.0431734026479,48.3755005938928],[-54.0474604924194,48.3517759017162],[-53.9966985865576,48.3542941393752],[-53.8508862803543,48.41952738650189],[-53.82597718801189,48.410821753365],[-53.8117098343966,48.3805842521187],[-53.7704821869899,48.3813004811506],[-53.6927102730697,48.4702506634806],[-53.670081798613,48.477476956094],[-53.6451761195294,48.46873277859179],[-53.6366765409489,48.4505788499541],[-53.6677265697173,48.4058835428058],[-53.6530014233176,48.3855462339943],[-53.6083741452272,48.390067776121],[-53.586333018141,48.4429860669104],[-53.5557485582673,48.4777384689006],[-53.5364951273093,48.48107394011209],[-53.5116036407504,48.4722999240395],[-53.506319658496,48.4274307680766],[-53.4664372433196,48.4310576957384],[-53.43055274175269,48.4993587148017],[-53.3661852478018,48.562685140248796],[-53.3372264243601,48.5676331941322],[-53.3123273691871,48.5588137176581],[-53.2809815424311,48.5020963826826],[-53.256117385069196,48.4932670422512],[-53.2113278525797,48.4976171734466],[-53.156326630032495,48.55916387110349],[-53.161876982501894,48.5712819832476],[-53.123270378162,48.62347816440679],[-53.0575830462762,48.6508149399714],[-53.0188361694714,48.65729349470149],[-53.0001662267858,48.6506253174379],[-52.992607459206,48.62253873917789],[-53.008563203502,48.577477733395],[-52.9893025465723,48.44370807108649],[-53.0229777896386,48.3695316655787],[-53.1019366549389,48.3268096472387],[-53.2448282063989,48.322071392582394],[-53.343859659857,48.2560461214456],[-53.5061734165909,48.1821094354148],[-53.5793096615686,48.1725948938637],[-53.7774063800154,48.1868089961956],[-53.8538130187466,48.1732365204396],[-53.8843630424796,48.128448365614],[-53.882922923554595,48.0926399436927],[-53.85909321625,48.0641117843747],[-53.7971945495964,48.0423746797658],[-53.7124506580578,48.0377749263581],[-53.6691700386865,48.0225086961212],[-53.67301953800279,48.00872415087229],[-53.7677187127893,48.0017360447226],[-53.8243319012808,48.0014725718862],[-53.8657039474431,47.9907908907462],[-53.875674926022,47.9791651881061],[-53.8609121976707,47.9588567970642],[-53.8110026288004,47.951396535749],[-53.6845410382724,47.9673672061721],[-53.5888488635285,47.994117774166796],[-53.5613232694648,47.9793191855344],[-53.578572730423694,47.9500817154449],[-53.6870136010452,47.9177763340913],[-53.73026931691099,47.8674678504753],[-53.74259208735959,47.8062567217719],[-53.7710239748971,47.8011674108895],[-53.8108606629982,47.8202560739218],[-53.8269593433136,47.8108054334764],[-53.747682905989194,47.69713773610479],[-53.6923346439067,47.67754917575189],[-53.70032740996329,47.6400483641393],[-53.654490220189494,47.61875073589629],[-53.6294316323929,47.5543881858276],[-53.589806047172395,47.5352504210392],[-53.5615125683515,47.540303748964995],[-53.54168412560419,47.5635025789993],[-53.529319103617,47.6246822186202],[-53.48618202871959,47.6749174879896],[-53.4680226369327,47.72397703923569],[-53.2793830124698,47.9598547846655],[-53.2108705375549,48.0011202092283],[-53.1631479433189,48.0093328633969],[-53.0531823687976,48.005297329104295],[-52.9892541021923,48.0684269938284],[-52.9045407875588,48.1088723814977],[-52.87988884932479,48.0999755999719],[-52.8757358602332,48.0680465707527],[-52.96764657661569,47.9643583919844],[-53.0040585073564,47.8863071702344],[-53.1098024047698,47.7472497154854],[-53.121045788692,47.7158860702063],[-53.1279601751777,47.5413817032845],[-53.1063041882742,47.4274029113055],[-53.094652206006295,47.413079867416],[-53.0696914742708,47.41415539238469],[-52.975210355702295,47.4861117708261],[-52.82482041506769,47.5478709354617],[-52.7764049288389,47.6214171162987],[-52.7530384886547,47.7396120537475],[-52.7184530370891,47.787863126868],[-52.6871577409063,47.7866029410763],[-52.6816637229023,47.728810798238],[-52.6673749970998,47.7083817563036],[-52.5817957545814,47.6770912049587],[-52.5560164314282,47.6422796378616],[-52.5478875502757,47.5784206535214],[-52.5695416742521,47.535647127154],[-52.5444593050394,47.4909387047082],[-52.54374615218809,47.455178240463695],[-52.6968044552945,47.2529658865632],[-52.7265206583156,47.1727493490158],[-52.7306698025507,47.1034269748187],[-52.7562365814049,47.0369293591656],[-52.8235233654949,46.9402708676303],[-52.8531519022867,46.850071950216],[-52.8606926103544,46.7669632984535],[-52.8846729769073,46.7202163949102],[-52.9316821381962,46.7021235669459],[-52.9643292202075,46.663621057212595],[-53.0372719486292,46.6146588944302],[-53.0919751432475,46.6245720801442],[-53.1504200666682,46.6862288303209],[-53.1926724053389,46.701613669405795],[-53.2854835260804,46.6849476756175],[-53.3435128102704,46.6908773385129],[-53.3806095554542,46.6841665389986],[-53.4229633936243,46.6239768045843],[-53.4599945094434,46.6172331892237],[-53.5022721642931,46.6324986027698],[-53.5349238097508,46.6593645599233],[-53.5749357022346,46.7341369101973],[-53.5576422265058,46.78326330738339],[-53.5188728340919,46.8297125788226],[-53.490572388390795,46.8446981255148],[-53.471132121184,46.867909155102794],[-53.4767727491842,46.8800112873277],[-53.52329482258989,46.8715752452568],[-53.5588773936595,46.8289979148059],[-53.5960412173283,46.82221822920759],[-53.6255747552785,46.8529392421689],[-53.62155985742459,46.8766568948782],[-53.5924554862778,46.911511572906],[-53.5167127250379,46.9548040977649],[-53.5223626502441,46.966904882713],[-53.562055924575,46.9761163975862],[-53.573376362324,47.0003152389087],[-53.56477574168479,47.0576576434053],[-53.5387258320191,47.0886140506818],[-53.4569647836163,47.11973762692409],[-53.4438875117616,47.1352000870189],[-53.4495192967485,47.1473038858809],[-53.5287003539061,47.175704563788],[-53.5869995046445,47.1159764769839],[-53.6593212974957,47.0864461227791],[-53.7694142716161,46.9546699513805],[-53.9459023178782,46.8365560719984],[-54.0606543383853,46.8019432436944],[-54.0913309384257,46.802764187622],[-54.1367671114136,46.8238430616845],[-54.1512443891182,46.8540404308487],[-54.1344072928486,46.9032937415423],[-54.1467559028698,47.0030076090343],[-53.9955545421413,47.1857460014458],[-53.9624683425035,47.244439614162],[-53.960988589975095,47.2841436730114],[-53.9126297990661,47.3324458414472],[-53.90821091186859,47.3661015533062],[-53.8951775229556,47.3816230143255],[-53.80372462396349,47.41470100863789],[-53.8122913100594,47.4328386805386],[-53.86173437548389,47.4402625280285],[-53.889123871585,47.4549723507087],[-53.879721680649695,47.5321961480921],[-53.8932132132329,47.5822689092204],[-53.942787836634295,47.6651776605814],[-53.9907901938272,47.7877733657703],[-54.01505243515339,47.806346565309],[-54.0409678206278,47.8607339951507],[-54.1089500366592,47.8844837216638],[-54.1748733876759,47.8822993796782],[-54.2007724020964,47.8611286270516],[-54.2205598730464,47.7523324930228],[-54.2539567215738,47.693574478933],[-54.2514069400572,47.6776064419584],[-54.3806981147853,47.5417287443044],[-54.4309712205146,47.42366866988629],[-54.522500836031796,47.3701630311843],[-54.5564357231665,47.3769102231124],[-54.562319456601394,47.3889762505991],[-54.5194442958785,47.4794508601574],[-54.4419835143995,47.57304615381489],[-54.4601667555604,47.5893889435243],[-54.495126965227,47.5663641819752],[-54.5692518577596,47.47662570842],[-54.6356122705451,47.4343757321017],[-54.698404693265495,47.40592371489059],[-54.8542988493233,47.3694043463951],[-54.9055067303776,47.2868802179479],[-54.9958320647653,47.2528054918238],[-55.0180918455339,47.2154214235153],[-55.0398400246895,47.2078636736096],[-55.0587345574534,47.1843328910687],[-55.04405470601,47.13432781663839],[-55.07517839986849,47.11499331657419],[-55.103404841826894,47.079679251969],[-55.1067983611776,47.05586243064519],[-55.1535760486064,47.0069256266595],[-55.2894107969928,46.9534295919355],[-55.3540333474216,46.9404938278868],[-55.4707117259111,46.9501563074317],[-55.6335780203578,46.91051131246519],[-55.83612179684489,46.9188288863009],[-55.9344389362351,46.9516967937344],[-55.9591192799361,46.9798206525207],[-55.848691419903595,47.09221757515],[-55.7840192933018,47.1253550228373],[-55.56497639948219,47.1763931703609],[-55.40093522663819,47.23576533853489],[-55.301210237712894,47.3118342181822],[-55.21274512105829,47.4417092492318],[-55.0842821542742,47.513065217941296],[-54.9902949677683,47.5510977857965],[-54.84626774700249,47.592007189380695],[-54.7921933679608,47.6386190524764],[-54.7070815944937,47.6745816225614],[-54.6936356301318,47.7100820396779],[-54.72779088296719,47.7167940606428],[-54.8164296087421,47.6669696340751],[-54.8856354538644,47.6405426670097],[-54.9856771732575,47.6246106861632],[-55.0042336533713,47.63093366146129],[-55.0162014974867,47.6550333968255],[-54.939282378907,47.7490214476457],[-54.9482335556342,47.76709999491389],[-54.97923047385889,47.777652194973],[-55.0200850255094,47.7665043721878],[-55.1130245032393,47.6429016606597],[-55.14116072374269,47.6374387694492],[-55.2836721276529,47.6856520991217],[-55.3396466584773,47.6945265802678],[-55.354938969900395,47.7146704172055],[-55.3983924603873,47.729285987664],[-55.4300960861364,47.689973453179995],[-55.3570000288842,47.5654534866306],[-55.3918493036182,47.5122653665269],[-55.5382086085551,47.4666504405391],[-55.57854946141719,47.46521774160979],[-55.6094950051211,47.4755883650421],[-55.6278557362619,47.5116650435814],[-55.6650275696358,47.5240949629048],[-55.7614824246005,47.4814979848185],[-55.8080485200496,47.4720909310591],[-55.8886703190979,47.47896703868779],[-55.9289531772824,47.5072745605468],[-55.9165150265463,47.523074142814295],[-55.8636914498965,47.5404206084743],[-55.8512192520811,47.5562105563366],[-55.8791356834445,47.5704604510462],[-55.9474998346191,47.5632264462194],[-56.0561888767727,47.5244696289734],[-56.1089696728375,47.53690019795749],[-56.115199899444995,47.5489062937088],[-56.0935029561362,47.5765967062312],[-55.9691399241217,47.6351400542953],[-55.7761046199022,47.66085946649179],[-55.7666332977419,47.6826452192098],[-55.847525552652996,47.69952936012],[-55.8723211331039,47.7276860579846],[-55.7845108662834,47.8082884305294],[-55.802854353944795,47.86425536296229],[-55.7617981107234,47.915512877791194],[-55.783598112456,47.9277277102057],[-55.8118066967914,47.9220993432021],[-55.9000475632897,47.80166813085809],[-55.9625967700472,47.76251896687139],[-56.03121060072,47.7552505501613],[-56.0686106264321,47.7675625887818],[-56.0904207430752,47.7896761542128],[-56.13409208548519,47.80401783273479],[-56.1528106176575,47.8002003466258],[-56.1900703913634,47.68300180633],[-56.2273416867438,47.6554181855592],[-56.2677738457248,47.653740099794],[-56.2833679049857,47.66381788497039],[-56.2896387055936,47.6758174909473],[-56.2649765596646,47.7473461171745],[-56.2775171484444,47.7713475100144],[-56.2962418008101,47.77746515989109],[-56.33048359515949,47.763770181378796],[-56.3458869924756,47.7240338235498],[-56.395338510482595,47.66061108991149],[-56.4604759394923,47.6370997196415],[-56.5973989152467,47.65175986897379],[-56.6812460920446,47.6441387415471],[-56.7150061314592,47.610377566903],[-56.71156224796639,47.5844527672957],[-56.7330533144143,47.5665862363135],[-56.7826499658739,47.562748869798895],[-56.8760621881475,47.582904969917],[-56.9879077274577,47.5890491917918],[-57.0316285463761,47.60304015636379],[-57.0749692091031,47.5970729633357],[-57.1217345579989,47.60704196504259],[-57.1441395692564,47.638944653827494],[-57.1447638150624,47.668859383196],[-57.1697976235673,47.6768250953066],[-57.200664270465,47.666830380096],[-57.233851965690995,47.6229148820192],[-57.2831935250219,47.6088788874333],[-57.44569935023029,47.6503791525247],[-57.61350177204189,47.6537167274146],[-57.7277987489291,47.6351613130848],[-57.86151150050009,47.64230082723459],[-57.9120889896962,47.6678935917845],[-58.0030114368046,47.6911502452424],[-58.36545762252009,47.6696232417257],[-58.39063715033589,47.6773238541974],[-58.3973803228984,47.6892327440009],[-58.341271563841694,47.7558004683715],[-58.3450710599752,47.7717402091367],[-58.36398439298271,47.7775210906131],[-58.4097339084621,47.7570174902164],[-58.474501968077895,47.678310817167],[-58.52930055388029,47.6556342182541],[-58.5792063984301,47.6609715514345],[-58.7074896505093,47.6211967172086],[-58.888813719075095,47.5923990943221],[-59.07105703661839,47.5832712510169],[-59.217187696281,47.592547481561],[-59.280308166626,47.6113182181857],[-59.33272678214681,47.6562868654548],[-59.336780612441096,47.770256918620994],[-59.42834289729049,47.890446185665596],[-59.399736633279495,47.9310554495701],[-59.170172277568206,48.0595077625941],[-59.0681492822147,48.1372989074831],[-58.94663703766609,48.2092814746057],[-58.8197921842929,48.3091638633893],[-58.6939535939711,48.3748748131073],[-58.5962390699818,48.4440678826061],[-58.52171974213069,48.4709355474237],[-58.4451310552306,48.4478303349319],[-58.402415553302106,48.484244658896294],[-58.3618812222877,48.496649442318095],[-58.35286883103339,48.5087244313347],[-58.4009503387933,48.5282034029446],[-58.4670557072216,48.523495717017795],[-58.62008498272291,48.5596576805653],[-58.7053953366884,48.5605664543226],[-58.92138440229811,48.521534753777],[-59.226120465032594,48.4985034283339],[-59.2581699578577,48.5079246925374],[-59.2651345379838,48.5197984573048],[-59.2504795074817,48.54006434814],[-59.1561307367948,48.6057179168196],[-58.9547498553839,48.688941811828],[-58.8625946745285,48.7502626277019],[-58.84467243444839,48.7745000737251],[-58.816417110629,48.7808896404714],[-58.8001266713637,48.771121181005796],[-58.8330054574342,48.7266985772235],[-58.96269752571669,48.6568374152611],[-58.9864200448789,48.62448649201669],[-58.973099368568,48.6106990041601],[-58.934624816724394,48.5992943898208],[-58.8971129209264,48.6078513907561],[-58.860514477263294,48.6363685440595],[-58.7767249226803,48.6015738188638],[-58.7297865705902,48.6121995804908],[-58.676407272002194,48.6948194087905],[-58.665675245794,48.7409108537244],[-58.5504189503602,48.95803895458779],[-58.44696500571111,49.0949606213197],[-58.4187781730055,49.1112168744131],[-58.39975223039129,49.1153948272463],[-58.361042343900394,49.1037783455871],[-58.30849295967679,49.0583272125061],[-58.2063466107978,49.0571911919702],[-58.028986984976896,48.9886047181734],[-57.990950724322104,48.9968279787452],[-58.004332191366,49.0206971236263],[-58.1011095408388,49.0599773161102],[-58.1111842087576,49.0778713214982],[-58.092686568648304,49.10195557983629],[-58.04839049406149,49.1182208933521],[-58.03602521047709,49.1342686632313],[-58.071869104994,49.1599849277117],[-58.0502037828966,49.188070224543],[-58.05691118688091,49.2000030245383],[-58.1020863850191,49.213676167743],[-58.214400858236594,49.2228365985184],[-58.272556126704295,49.2403372194446],[-58.29961547084209,49.2880300769672],[-58.1631972195597,49.4647730358511],[-58.08370881057251,49.5052218979893],[-58.03562547840049,49.5154922481717],[-57.977254451159,49.4978547307705],[-57.9312558225924,49.45418841345389],[-57.8988753965002,49.4443680357569],[-57.817148142724996,49.4616834381936],[-57.8125228438331,49.4726753593616],[-57.8778787177494,49.52228581452509],[-57.96261187353059,49.5677792757899],[-58.002413054385094,49.6194585722805],[-57.9689528879952,49.7234048823698],[-57.845259254173,49.8795764953946],[-57.8391906630841,49.9075309145227],[-57.8008793276041,49.9555429592075],[-57.749397044619904,49.999582143016795],[-57.53302299550819,50.267190034623],[-57.4384863245447,50.4326962072051],[-57.4188498005623,50.516428837153],[-57.3661066208909,50.590141820776],[-57.319901408528594,50.6060161244454],[-57.2242018436187,50.61177981097],[-57.21424605778629,50.6237134856803],[-57.22401558194089,50.6516493271219],[-57.31636257483209,50.6897438455339],[-57.29640406578011,50.723595072304995],[-57.1937837557724,50.7372780080011],[-56.9940214453887,50.8460980787715],[-56.9263151584131,50.945380930091],[-56.9387070879385,51.0092193104772],[-56.9848510455168,51.043348184442],[-56.9578791491103,51.0651243967659],[-56.8908950373391,51.0846633766502],[-56.789536077795894,51.1537365433972],[-56.7484792807309,51.2012559721922],[-56.68922535236139,51.3083793474856],[-56.6207105077052,51.3675696867305],[-56.5050370245477,51.4222742585085],[-56.0866174331472,51.5488474470937],[-56.0002949270649,51.5974251546872],[-55.9648596540356,51.6367306182389],[-55.920423429366195,51.6480193482592],[-55.853730400675,51.6270942939468],[-55.8159938097957,51.5647959752736],[-55.7800667477741,51.538347003235096],[-55.74016171309519,51.5257578100498],[-55.6962487781138,51.5270194002801],[-55.6784435642009,51.5466222592968],[-55.69340729275489,51.5866810551062],[-55.6857938342075,51.6044646617251],[-55.6607934349468,51.63190256144319],[-55.6403214869657,51.6355291419814],[-55.53741884563039,51.5978792317092],[-55.4458197546742,51.6041359270533],[-55.3962440757815,51.5832872804744],[-55.39373362953349,51.5673206195668],[-55.4572069112653,51.51679741541069],[-55.475608413771,51.487292919937],[-55.4654141402229,51.42342781805599],[-55.4868050336611,51.3999458151283],[-55.520922578046,51.390620254124],[-55.5533980319268,51.34543514699579],[-55.6342691610351,51.3408781781398],[-55.7305709103222,51.3663717059517],[-55.858711782601,51.356452034331],[-55.94186022024489,51.37759560719],[-55.9992743978113,51.370452472446196],[-56.0441337086823,51.339219170456],[-56.0249769109045,51.3130754589867],[-55.9200796074734,51.2498737455856],[-55.8858318442747,51.1836791720934],[-55.8259375001139,51.1748142856501],[-55.770585354329,51.2177404436375],[-55.6860016797957,51.2362702423716],[-55.6031698361145,51.2149670981572],[-55.5745983377711,51.180639268360295],[-55.582109714313695,51.16286078343529],[-55.613816412079494,51.1275869962936],[-55.6511881942765,51.1142892508998],[-55.7099942288236,51.0674952706509],[-55.731821284396595,51.02406132466359],[-55.72765939110779,50.9622968088054],[-55.7629132143984,50.9130968153571],[-55.8305549131536,50.8842774887606],[-55.9719548308211,50.7330287360091],[-56.01508347971,50.7316177834313],[-56.03383230782389,50.7677002566006],[-56.0194227377753,50.803344549272],[-56.0288016470758,50.8213875320453],[-56.05196880143469,50.8236817597687],[-56.100132379802496,50.7685530796575],[-56.056289190123294,50.6843764923521],[-56.0603156565709,50.660537705821895],[-56.2372456580578,50.4655341353728],[-56.3276371904447,50.39879043697379],[-56.36072315563399,50.3891647212669],[-56.3876575664854,50.3575639447232],[-56.3720253581133,50.3175809210248],[-56.4156563292888,50.2662151328583],[-56.58831281125539,50.110318981738],[-56.667875329859,50.00530970007679],[-56.7365415840182,49.9818481196496],[-56.77271831819159,49.9382305456683],[-56.7863196073027,49.8526295016369],[-56.8386231748839,49.78914457953889],[-56.8970979601632,49.76750445836289],[-56.9166206319602,49.743676190435394],[-56.8552309354752,49.6895911109521],[-56.90076443738949,49.5841775513776],[-56.8911272829995,49.546270748668],[-56.8459839415009,49.52215570741609],[-56.8039090394783,49.5637973381537],[-56.7875288821494,49.623490797664296],[-56.75167784469589,49.6770914310536],[-56.6929748822924,49.73850588145039],[-56.5296545143165,49.84692139643389],[-56.3978669448155,49.9653118238154],[-56.2693806459015,50.0397393230753],[-56.1936520043561,50.0707915422581],[-56.1236128308275,50.1337110043632],[-56.0377265508582,50.1665182325923],[-55.9987573674143,50.1540793809907],[-55.9894065089886,50.1360433130114],[-56.0199942666785,50.0906436885462],[-56.1332044041179,49.99643964615],[-56.1766529355929,49.9451603119603],[-56.1641025837882,49.9211269759288],[-56.1085808208359,49.9284602954493],[-56.0219362033599,50.0110349440994],[-55.9724972420717,50.030315282884],[-55.92068943549689,50.0137098954276],[-55.90205608996259,49.9776290508177],[-55.7983257331559,49.9542900683343],[-55.7598384228459,49.9318372140468],[-55.7306318984162,49.9274240878793],[-55.6912974725973,49.9347905522465],[-55.5725479146866,49.9766925703553],[-55.5304145200208,49.9680350905933],[-55.5120673756301,49.9319112529257],[-55.5496772055662,49.8788124697738],[-55.6788542764092,49.8052424256739],[-55.845944310667,49.7539258320553],[-56.1176052617955,49.63588016259379],[-56.1506618008585,49.596422870694],[-56.1348373508921,49.5763389087979],[-56.1025058711628,49.5759773141362],[-56.0538195159315,49.58537254600649],[-56.0015966612424,49.60863807862139],[-55.9293585465087,49.6555081813236],[-55.8903059448077,49.6629608626666],[-55.851717844009194,49.6505000060824],[-55.8424279283546,49.6324579857788],[-55.8759458261565,49.5831464621718],[-56.03273712704719,49.5034960929611],[-56.0624314370011,49.4680053654676],[-56.0530712290967,49.4499793241247],[-56.04353692788269,49.4419039610568],[-56.011294458703,49.4415231519972],[-55.9364899968118,49.4724566371058],[-55.8328237405298,49.4890118877996],[-55.7333808171167,49.461745793256995],[-55.7208142036308,49.4476319184516],[-55.66960669665859,49.430954910769],[-55.6276298770132,49.4323098068003],[-55.5764577284674,49.4155933923186],[-55.5280955921166,49.4148207790815],[-55.46792562799579,49.4854608772912],[-55.44843062964969,49.48911159878429],[-55.4164452801683,49.478616376075195],[-55.4103598146505,49.4665737762947],[-55.434406997628194,49.4192345831431],[-55.428314589342,49.4071919007262],[-55.3933385272542,49.3906726979025],[-55.3513748748822,49.3919253689378],[-55.3181746727301,49.421174435391194],[-55.3350657340893,49.4970772638154],[-55.3078124324919,49.53836243736949],[-55.2785078491943,49.5437916665107],[-55.2337302105566,49.5290279411433],[-55.2031820225345,49.47871539272269],[-55.3620315614276,49.2548357338943],[-55.3795586450121,49.2054008514063],[-55.3567858534193,49.1602393501245]]],[[[-57.015827594390295,53.6882134178764],[-57.024868326008,53.6742498005844],[-57.043067804987,53.6696995224446],[-57.0608088335635,53.6701438711913],[-57.0776401774259,53.6805770075121],[-57.0667492896578,53.695998751769395],[-57.04462257309069,53.704459698207],[-57.0201038033897,53.700169622569],[-57.015827594390295,53.6882134178764]]],[[[-58.4209559604086,54.1042838087869],[-58.46390188035699,54.0957018881288],[-58.5083501229713,54.0981369949527],[-58.516146486888495,54.11285304483409],[-58.49791954521529,54.125999706333495],[-58.45170061095799,54.13388559142819],[-58.41576164728029,54.1339857999061],[-58.4068331675797,54.12046563211139],[-58.4209559604086,54.1042838087869]]],[[[-55.683053450466595,53.0576397558782],[-55.70506111086739,53.0543249395319],[-55.7252537372592,53.053613771119],[-55.7378944498258,53.0602640797773],[-55.74810964106499,53.0735075796405],[-55.7478168173726,53.0906753530841],[-55.72974054060279,53.1019621306351],[-55.688801159605,53.0933437328772],[-55.6730856821815,53.077034074767],[-55.683053450466595,53.0576397558782]]],[[[-55.6743286399083,52.9737273927716],[-55.6975495497309,52.966745389960394],[-55.712053382193794,52.9715569499192],[-55.7279010978037,52.9792769236997],[-55.7359523136061,52.9967388243818],[-55.72047650405799,53.00763899455129],[-55.698693641635295,53.0078172990579],[-55.67855350506169,52.9937359993391],[-55.6743286399083,52.9737273927716]]],[[[-61.55221001263659,57.94029712730121],[-61.5339738930688,57.9460650365065],[-61.5118110131693,57.9482549843848],[-61.4798937335883,57.9402182930093],[-61.4709577493448,57.9216928336611],[-61.4988559289897,57.9087525386463],[-61.5326766327271,57.91985647364109],[-61.5464306551024,57.9310795535267],[-61.55221001263659,57.94029712730121]]],[[[-61.6463076859503,57.8674795108895],[-61.611318829815,57.8743011514936],[-61.5246459976699,57.8541588383409],[-61.4995529166121,57.798506623639994],[-61.514075632517894,57.762055304995094],[-61.5917112513297,57.750276371275795],[-61.63510885889669,57.7653435787933],[-61.67922956417,57.8004596337034],[-61.676491917184194,57.8346568696635],[-61.6463076859503,57.8674795108895]]],[[[-61.6570483966185,57.7015756007292],[-61.6331754986,57.6981503751272],[-61.6165116821056,57.6849042541875],[-61.614927051047495,57.66641127445699],[-61.62176746392019,57.6558927273924],[-61.65893256763239,57.65940949127639],[-61.6827306806631,57.6653999962904],[-61.692545443112,57.6730368090598],[-61.6701931609602,57.693254152145194],[-61.6570483966185,57.7015756007292]]],[[[-61.826543636309204,57.5760397761863],[-61.7497697685869,57.59799758421519],[-61.667716854317895,57.5838940717515],[-61.655434552703504,57.5661140201469],[-61.7187475830599,57.4963465604102],[-61.79571737480649,57.48443032254189],[-61.8426213362731,57.495313280181094],[-61.8949570871683,57.54219336905081],[-61.903215398073804,57.55403386247699],[-61.884689908860594,57.5745858767919],[-61.826543636309204,57.5760397761863]]],[[[-61.509971232694,57.5072333707354],[-61.53306574146,57.502697227514794],[-61.567010122982296,57.47582830020529],[-61.554791882011195,57.45804460730119],[-61.4768208207289,57.439738761334496],[-61.4761728357988,57.4196835647719],[-61.5456227898118,57.4161036369581],[-61.6703822684602,57.4453063950954],[-61.67856105417099,57.457156679603],[-61.64880915792449,57.4899835532912],[-61.6257397808626,57.4945403367233],[-61.5615801352438,57.544199844907894],[-61.52315452597459,57.55510841730359],[-61.4881404202208,57.5518784679934],[-61.4800112860754,57.540017422180405],[-61.509971232694,57.5072333707354]]],[[[-61.58473141700009,57.35259173713139],[-61.55783808285669,57.362546749112795],[-61.52811506828181,57.3653207047915],[-61.50569037346029,57.35056784132669],[-61.532130261981294,57.3246997981661],[-61.56557230246559,57.3218938150951],[-61.591178788988096,57.325820937003094],[-61.5967820609318,57.342739509214894],[-61.58473141700009,57.35259173713139]]],[[[-61.375887786608,57.2825157481816],[-61.35696751991039,57.2893010970049],[-61.33918479942779,57.2899135105786],[-61.3117276519325,57.282867244142],[-61.3003023176145,57.2670008539318],[-61.31327229877899,57.2537812520191],[-61.35583615153659,57.25539918849469],[-61.3724049840686,57.2635256312383],[-61.3849946316935,57.2732147524845],[-61.375887786608,57.2825157481816]]],[[[-61.72936944573149,57.2666613352482],[-61.71429948225579,57.28477630133299],[-61.696570946443394,57.282865828302995],[-61.66910456412911,57.2733207058174],[-61.6630344795241,57.2460663300088],[-61.69140422022549,57.235109470298795],[-61.7227412647473,57.2482135209806],[-61.72936944573149,57.2666613352482]]],[[[-60.894795937427695,56.9284365954735],[-60.8708905030992,56.9355896301054],[-60.8484512717219,56.932682713145795],[-60.823988840862995,56.9232711944067],[-60.8446715327501,56.90227913388559],[-60.8900498728997,56.9018364374561],[-60.896355618018696,56.9154219732547],[-60.894795937427695,56.9284365954735]]],[[[-61.004064649080696,56.8541911530141],[-61.002642518605796,56.8642499360787],[-60.9900546098034,56.8713892352701],[-60.96085821571929,56.8697073380381],[-60.93533281243769,56.855427682037],[-60.9583763526632,56.8407367413375],[-60.9833568712198,56.832378333783296],[-60.99772297036089,56.840610113641496],[-61.004064649080696,56.8541911530141]]],[[[-61.1026987055107,56.7384848103598],[-61.09018205611069,56.7456344570969],[-61.06553118749,56.7451434806957],[-61.0477200845849,56.740481650198596],[-61.0342285901419,56.7317358253429],[-61.055116724842,56.715613257508195],[-61.0887281961361,56.7154770243573],[-61.1053053114355,56.7242787215094],[-61.1026987055107,56.7384848103598]]],[[[-60.94786671802691,56.618230249097394],[-60.9741288247976,56.604121580134596],[-61.00714266569119,56.5959913621449],[-61.03340220360611,56.6045723783544],[-61.047915998879496,56.6285548692992],[-61.0173114616772,56.6631450991502],[-60.9619681158267,56.684814359094],[-60.9309742868432,56.69692647046969],[-60.8851854173884,56.68577659692],[-60.8810162539427,56.6698193867792],[-60.90327691421599,56.65399747361279],[-60.9176284511856,56.6380208188957],[-60.94786671802691,56.618230249097394]]],[[[-61.2852685837769,56.9764390661654],[-61.2199984563366,56.96580036245789],[-61.21141065338699,56.9338887065379],[-61.27375302089789,56.8543232584399],[-61.2148004858392,56.7954186468997],[-61.2551680328254,56.7504202813664],[-61.253517662256,56.7003107078548],[-61.27909828932069,56.6716679429698],[-61.33226219558429,56.6744966336926],[-61.371224676061594,56.7037079770968],[-61.45544127143789,56.7238386776985],[-61.4751713981602,56.7434420507787],[-61.43473164243469,56.8828276699195],[-61.3418727237114,56.9551398151512],[-61.2852685837769,56.9764390661654]]],[[[-61.0046503841666,56.4809466538447],[-60.996767595214,56.469077004235],[-61.0077269245821,56.4568254338165],[-61.067885777444594,56.4515790734066],[-61.1475063385313,56.4659423169783],[-61.196419037553696,56.4628832032478],[-61.287691337991,56.484935014829894],[-61.3630621802666,56.4832232783599],[-61.4163663000906,56.4960290498527],[-61.4400147508235,56.52155635109809],[-61.38933866152569,56.5789106720484],[-61.214334940329394,56.5467258336003],[-61.1977652335457,56.5029632889484],[-61.0654533292081,56.495741922285895],[-61.0046503841666,56.4809466538447]]],[[[-61.133069025867,56.34938656157429],[-61.148490753835,56.3609945034371],[-61.12349042659271,56.3871611571495],[-61.09561267387589,56.39997935041179],[-61.0641289955916,56.4051276486809],[-61.0201225122756,56.4086494384955],[-60.98605719985029,56.40018650665579],[-61.00320449889149,56.3823421683322],[-61.0228229127025,56.3749200783801],[-61.0720769005044,56.3593540137563],[-61.1067251038114,56.3508487166903],[-61.133069025867,56.34938656157429]]],[[[-61.707099229758796,56.4769356706983],[-61.68255306784129,56.483172376186694],[-61.6492644845132,56.48213020930649],[-61.6160102224959,56.477738609725996],[-61.589095256739306,56.4682761854112],[-61.57985046627489,56.451648776115796],[-61.5896894322315,56.442277660062096],[-61.61200308974879,56.4373486403188],[-61.6333495946319,56.4361643290569],[-61.669077422016,56.4411963385651],[-61.70602881666209,56.4515529997096],[-61.718491023523704,56.46480212421],[-61.707099229758796,56.4769356706983]]],[[[-60.6042828909232,56.1600592841811],[-60.615252350388396,56.1680544824727],[-60.62052528733549,56.1787258238987],[-60.5933823190595,56.2067827251749],[-60.575177242604894,56.2094675151078],[-60.5613873008795,56.2028994551255],[-60.5588138195609,56.17644867018839],[-60.5641547123835,56.1661014514292],[-60.583630072318805,56.1620806326742],[-60.6042828909232,56.1600592841811]]],[[[-61.0141434249918,56.2651259652438],[-61.005172198039894,56.274508535295],[-60.985046927875594,56.27926197432959],[-60.959385747847,56.28002663881699],[-60.94639950978609,56.2740646929486],[-60.940868870249396,56.2606050799743],[-60.9670934116737,56.2459497477571],[-60.9859206486411,56.2425393962168],[-61.0100851603084,56.2514552742663],[-61.0141434249918,56.2651259652438]]],[[[-61.539510684701,56.3767098456978],[-61.559171276758605,56.3962922331909],[-61.541244205907894,56.4167982299634],[-61.48884191814639,56.4240894154989],[-61.4436173243081,56.4231628352365],[-61.31442326067669,56.3920632951437],[-61.3064539470826,56.3802094283055],[-61.3280916270747,56.3556457420749],[-61.3768378329384,56.352512155245],[-61.4939194080755,56.365781163742795],[-61.539510684701,56.3767098456978]]],[[[-61.40468757818379,56.2729548283842],[-61.4051457351661,56.28564257164269],[-61.3868832513921,56.2951222738846],[-61.35431467669509,56.2983495979807],[-61.30803331605749,56.2979822817502],[-61.2555552489356,56.2942963302994],[-61.1962454997038,56.2797784246462],[-61.2078829000138,56.2675239506373],[-61.2342191643465,56.2627003264624],[-61.27116692407619,56.2581392777634],[-61.32364962493231,56.2584774069803],[-61.3735494176022,56.2648231204351],[-61.40468757818379,56.2729548283842]]],[[[-60.15376953768119,55.9007133809145],[-60.11646588722719,55.8912401485705],[-60.108891512098,55.8793357003617],[-60.1161148501705,55.86121444044089],[-60.1420206822298,55.8528339425898],[-60.164385192301495,55.8585145190534],[-60.1795630126699,55.8823165489206],[-60.15376953768119,55.9007133809145]]],[[[-60.95492837544969,56.1952730255231],[-60.8870467452262,56.1785943588106],[-60.8593991694208,56.12702652775619],[-60.798914200583994,56.1021486561793],[-60.78723102574891,56.0843362882087],[-60.8420848699603,56.04318827718319],[-60.886587782838404,56.0342883624546],[-60.920256265753096,56.0376190249963],[-61.0258792881391,56.073524609111],[-61.082175150800694,56.0823528362741],[-61.0975841466922,56.096055832868494],[-61.079603860645,56.1164925296538],[-61.0461919320882,56.123217068837],[-60.99204316286999,56.1844912687856],[-60.95492837544969,56.1952730255231]]],[[[-60.5753799499691,55.9620103377652],[-60.55247314370309,55.9363710335436],[-60.5855823712373,55.9197578408531],[-60.67516828382039,55.932153444669595],[-60.71649611923169,55.9474100480263],[-60.7281314658734,55.9652248286877],[-60.7172784190979,55.97745229937439],[-60.68392190752719,55.98408606697449],[-60.642813524336205,55.97883016358179],[-60.5753799499691,55.9620103377652]]],[[[-58.688531860409,55.16001155296069],[-58.7011159369277,55.1520890883767],[-58.73709043769539,55.1548871836444],[-58.74745463114251,55.1647228504875],[-58.74914667298789,55.184825114399196],[-58.7340224164574,55.1906604546378],[-58.7041459920377,55.1879377775324],[-58.6860292881064,55.1749866973238],[-58.688531860409,55.16001155296069]]],[[[-59.786987869300695,55.41001458301],[-59.8174598522174,55.3903323065246],[-59.84062196606299,55.3805294277982],[-59.87370363535919,55.3722454361303],[-59.912291390877705,55.3842660472276],[-59.9042703103448,55.402057173283],[-59.876349426674494,55.41680414225189],[-59.8323291517411,55.4245482169841],[-59.786987869300695,55.41001458301]]],[[[-57.221666310034195,54.5413609684423],[-57.2673069952595,54.5695951332519],[-57.2806684262481,54.5936173907321],[-57.2692871386594,54.6055091072631],[-57.2331552923533,54.6052628633912],[-57.1832326257717,54.590943645734],[-57.1699268094005,54.566913711557795],[-57.188916763140995,54.547110224658],[-57.221666310034195,54.5413609684423]]],[[[-60.0317042432286,55.3524509453569],[-60.05147848835139,55.357945167687994],[-60.0564051784681,55.3718191003776],[-60.0231710377877,55.4024152012601],[-60.0103614903149,55.4103155540836],[-59.9811758977432,55.4122111559781],[-59.958763326351296,55.4053629933846],[-59.976024741915595,55.38199904816409],[-59.9947877532219,55.3672023575355],[-60.0141978442928,55.3588417539366],[-60.0317042432286,55.3524509453569]]],[[[-57.063088249930296,54.4769009842879],[-57.0873777855238,54.484437335152],[-57.0998834581048,54.49144340213909],[-57.1169687285631,54.507686859459696],[-57.10964203416409,54.5257531797773],[-57.0913183212359,54.5325939965829],[-57.0644566392223,54.5258318578123],[-57.04890009521039,54.51631107241279],[-57.041600838997,54.5015248001295],[-57.063088249930296,54.4769009842879]]],[[[-59.83021355179199,55.3375489405535],[-59.8347323023511,55.327545211868696],[-59.8634398677434,55.3142944093365],[-59.880000954943796,55.3089123098972],[-59.9027889771211,55.3065197122574],[-59.9224286027276,55.31450650602459],[-59.918332365489896,55.3258770368386],[-59.9060010259219,55.3387041364306],[-59.88214502098429,55.3445585990727],[-59.853103243032,55.3439524575438],[-59.83021355179199,55.3375489405535]]],[[[-58.78913918892249,54.96807343191389],[-58.814354339456,54.9899233939834],[-58.81054298369239,55.0039295422705],[-58.7846852657746,55.0320336038059],[-58.7627584829498,55.0361349306965],[-58.7375512490854,55.0142743254913],[-58.78913918892249,54.96807343191389]]],[[[-60.1806720819099,55.452669660348896],[-60.1766244258564,55.4413663414108],[-60.238815949665195,55.3785587832542],[-60.254409355072504,55.3741157737992],[-60.28220314908759,55.3855254695661],[-60.2809428682604,55.39641914789159],[-60.226940497497495,55.4602483240826],[-60.2059835928338,55.4607182773183],[-60.1806720819099,55.452669660348896]]],[[[-58.6796498722977,54.9885534827967],[-58.6433935222009,54.978709870905],[-58.6039497147259,54.942898939629295],[-58.6189168650362,54.9168744534351],[-58.6625116836696,54.9187022638891],[-58.691192532501596,54.94655143546609],[-58.70540414454549,54.9704647043774],[-58.6796498722977,54.9885534827967]]],[[[-57.2684266864575,54.2670210751081],[-57.29999519270889,54.28459256034],[-57.3177452341476,54.3056898754676],[-57.290486267627394,54.3160034649971],[-57.2546295325326,54.31272317223339],[-57.234205724994396,54.2970297543364],[-57.2684266864575,54.2670210751081]]],[[[-56.2243718866015,53.8171826647132],[-56.2437058811606,53.8009107443476],[-56.2695187682458,53.7937152012266],[-56.2865801964955,53.8009252741076],[-56.29952301044829,53.8076701418974],[-56.2967057623478,53.8222671038823],[-56.27540200758159,53.83695226829159],[-56.2447447204899,53.833983293474],[-56.2243718866015,53.8171826647132]]],[[[-58.166377339974,54.297962532139294],[-58.188565504569,54.304773064062594],[-58.1952060880115,54.314361280563],[-58.1525504901999,54.34232245652499],[-58.1344313701994,54.33799780716549],[-58.120363408435196,54.332488073373696],[-58.119908750090794,54.31041853211],[-58.1477040301261,54.2960011414669],[-58.166377339974,54.297962532139294]]],[[[-55.6490572088947,53.5144716393528],[-55.66616109846609,53.5019368291783],[-55.6895393970729,53.5046910907326],[-55.7107128862924,53.5116559515342],[-55.714446574306,53.52276632714099],[-55.704853896502,53.5319667108884],[-55.6880667039194,53.53756636675719],[-55.6665954619494,53.5329728968589],[-55.6490572088947,53.5144716393528]]],[[[-56.07256469670109,53.6056945133198],[-56.0473365212948,53.6132681086164],[-55.9987752419547,53.598555329010495],[-55.9527332551038,53.5997990739792],[-55.9180727513939,53.58926712121039],[-55.912457831697594,53.56726668441869],[-55.9238296755554,53.5555075191347],[-55.9559699749143,53.5500634076487],[-56.0391320411315,53.575296940138],[-56.07256469670109,53.6056945133198]]],[[[-55.8465476964441,53.49644775452259],[-55.7999312978838,53.50758320981159],[-55.7377249987825,53.488550962809],[-55.6969778999999,53.46590384334419],[-55.6876626931122,53.4478121864894],[-55.699052931361194,53.4360758263647],[-55.7273431531362,53.4346016256052],[-55.792594624066496,53.4596637755204],[-55.830260543899,53.4762526836086],[-55.8465476964441,53.49644775452259]]],[[[-60.876982755661295,55.962326849306194],[-60.8394800617017,55.9530525652913],[-60.84084127608849,55.935990743944],[-60.887165461386694,55.9300531143988],[-60.90996979907559,55.94562606802379],[-60.8991830607726,55.9578710951259],[-60.876982755661295,55.962326849306194]]],[[[-56.2005926429709,46.8063045117173],[-56.1970849661646,46.8241528811741],[-56.1772656214731,46.8413893912166],[-56.1515792197797,46.8487785592755],[-56.1388926664068,46.8438100367868],[-56.12622490280279,46.8082417969144],[-56.1421846154752,46.7990460751068],[-56.1801981713352,46.8003762997727],[-56.2005926429709,46.8063045117173]]],[[[-56.328919946441,46.8292981307192],[-56.3658130529386,46.8414692041252],[-56.3876727026157,46.8734769844392],[-56.315112984342,46.9587375759509],[-56.31857334137,46.99462648979199],[-56.40011904579929,47.1405809238767],[-56.3790603117119,47.1882820231403],[-56.3606066758997,47.1921556798028],[-56.3358690738155,47.1840301082222],[-56.3045946652001,47.1340147581889],[-56.2427570828289,47.1037039563111],[-56.23946305465179,47.0777802380167],[-56.2819975354813,47.0222854802506],[-56.2693751682809,46.9883286221153],[-56.2103494832978,46.9141970611981],[-56.21933685074189,46.8923441564094],[-56.2800937070133,46.8429432428092],[-56.328919946441,46.8292981307192]]],[[[-55.74656297430789,52.7525557848208],[-55.7684276404321,52.7316253498148],[-55.796047739207,52.7299997162789],[-55.820962695731595,52.7372411601257],[-55.8366939750884,52.7491434393267],[-55.8245147144745,52.762074949664296],[-55.791918742957,52.7677173473965],[-55.74656297430789,52.7525557848208]]],[[[-55.644803728184996,52.5674613136888],[-55.6193630146744,52.5429986362263],[-55.6224550848671,52.527569558367],[-55.6474859145458,52.5169165938774],[-55.6635440699476,52.5186880676867],[-55.68213210545879,52.5321046716978],[-55.6913241920273,52.539804958907],[-55.703744183621296,52.5496105087085],[-55.7113464275558,52.5624335744203],[-55.696812475497296,52.5750679407865],[-55.67913411680009,52.57842216375149],[-55.644803728184996,52.5674613136888]]],[[[-55.3345341605429,51.892471604129],[-55.34730828757979,51.9066571789474],[-55.2890248092027,51.9691433284873],[-55.212351704132594,51.9953925792982],[-55.18560066131389,51.9868615401046],[-55.2586538242655,51.90882376764439],[-55.2902240293009,51.89355985112639],[-55.3345341605429,51.892471604129]]],[[[-55.35933673915509,51.62063686123919],[-55.3750929851545,51.6161031431378],[-55.397795110562,51.6165562421886],[-55.4064511263936,51.6294361069119],[-55.4066983379425,51.6436196546173],[-55.3943569302275,51.656114255880496],[-55.3731025401204,51.6613849690526],[-55.3564426302454,51.66561333964069],[-55.3397917272075,51.6599166872916],[-55.331709788727,51.6482691205386],[-55.35933673915509,51.62063686123919]]],[[[-55.4998507171117,50.9146581117341],[-55.54231934855989,50.9333197327387],[-55.547572067746,50.9652499714778],[-55.5159811259084,51.0005098569013],[-55.4922830283712,51.0080436071614],[-55.4659801277902,50.9996065937271],[-55.451626111792,50.94960030729549],[-55.4998507171117,50.9146581117341]]],[[[-55.3793549916151,50.7851055516992],[-55.373263995641494,50.7730525643441],[-55.42524148550739,50.7242791697933],[-55.4788648554324,50.711324460521396],[-55.50851248843049,50.7158298653746],[-55.5238180757078,50.7459462574645],[-55.49592343441789,50.7772909864812],[-55.4055386141916,50.793553058035094],[-55.3793549916151,50.7851055516992]]],[[[-57.21052846040029,50.831379082568795],[-57.17502067966289,50.8356729666687],[-57.1540045973812,50.829543604748196],[-57.147150372629994,50.8189543743372],[-57.1680649810147,50.794726078927994],[-57.2119949352457,50.7863802800259],[-57.2354816682086,50.7925526582362],[-57.2358929396781,50.8032974748702],[-57.21052846040029,50.831379082568795]]],[[[-55.5398998284281,50.22943611594769],[-55.5426585557914,50.2134169357948],[-55.55527064026659,50.2056710049626],[-55.570475464263495,50.198017388686],[-55.586732248125,50.196384673969995],[-55.611004112981,50.2048025238422],[-55.6209144184825,50.2171256614464],[-55.6182968742622,50.2299565503805],[-55.6036619516697,50.2370075402794],[-55.5797817210157,50.2424691539926],[-55.5398998284281,50.22943611594769]]],[[[-55.705023358338,50.173340930404],[-55.7008076462806,50.1615844882744],[-55.70787603825859,50.1511088227894],[-55.7194304821091,50.1429949948508],[-55.7395086872548,50.13863367741939],[-55.7587198108928,50.14527188393549],[-55.7650590549453,50.1571480717221],[-55.754028481722,50.1719057613708],[-55.73931136658939,50.1805477732712],[-55.705023358338,50.173340930404]]],[[[-54.4008918059011,49.5446497230547],[-54.4072711054843,49.5547441408688],[-54.387187446385596,49.5907688509352],[-54.3527848445076,49.635088614083],[-54.32874812128839,49.6254048252155],[-54.3246884404167,49.61141274862639],[-54.3305756426786,49.5837030429919],[-54.3390148817575,49.5367103335208],[-54.36284639455679,49.529966348321494],[-54.4008918059011,49.5446497230547]]],[[[-54.6798461532734,49.606671961465594],[-54.6994703176231,49.60316178806169],[-54.737788203577395,49.6159936389744],[-54.7898097665998,49.613221489346],[-54.8085291278853,49.6295561374082],[-54.7914136016709,49.64905003554569],[-54.6872808495205,49.654567132358],[-54.6587714017063,49.6399662308312],[-54.6798461532734,49.606671961465594]]],[[[-54.652834726452,49.5950876053306],[-54.571839768293,49.6259093364858],[-54.5335539395857,49.6130245246149],[-54.54144237761199,49.5853896517254],[-54.59932009732729,49.52917179349009],[-54.7921903996994,49.4880028278983],[-54.83088235912769,49.490865649933795],[-54.8763751902136,49.5614783022463],[-54.8627396788458,49.5770850095468],[-54.83675435939849,49.578492901620095],[-54.8112101372418,49.5699618806561],[-54.7959197430277,49.5497299584034],[-54.7576335875591,49.53692017209009],[-54.7316645500108,49.5383040796667],[-54.6856271082682,49.55312544598699],[-54.652834726452,49.5950876053306]]],[[[-54.749712973931,49.3651567843983],[-54.7688057307881,49.3720237053004],[-54.7572133150216,49.3928045912772],[-54.6996775327853,49.4440989264266],[-54.6665444758101,49.4475316971089],[-54.646580113963296,49.4336130362528],[-54.6723227224998,49.4246459535465],[-54.718776463813,49.3751353543862],[-54.749712973931,49.3651567843983]]],[[[-64.82979231126819,60.222976990852786],[-64.8298564176781,60.2229965606116],[-64.82984552960816,60.223011327513],[-64.8052999828411,60.24035095220339],[-64.8148688377575,60.2520801666139],[-64.86344497131518,60.26154882851355],[-64.900223866903,60.268717923743196],[-64.9098277670746,60.2804418105628],[-64.8948621682631,60.29724496924149],[-64.7899850320334,60.3359791825265],[-64.7220673462141,60.4115187914119],[-64.6840233506919,60.4090180063977],[-64.6563753588766,60.3838628369229],[-64.51355759423517,60.359441515405784],[-64.46451475824169,60.3510553677237],[-64.3697181237385,60.3224046943802],[-64.333824738909,60.2955073775092],[-64.3661128543975,60.2821550167638],[-64.5080863883063,60.31885891763637],[-64.5290744256003,60.32428487851189],[-64.57080642731789,60.3226310577029],[-64.5821701394829,60.310057461840096],[-64.5641383459211,60.2966335873324],[-64.54675361458199,60.29224771072753],[-64.4741317060723,60.2739264192839],[-64.42783456284,60.2252420416718],[-64.3862119463956,60.22685621101321],[-64.3304812932818,60.2108266004866],[-64.3646559192215,60.1731660519268],[-64.4289124532103,60.14643692720419],[-64.455344119035,60.1171263673657],[-64.4459217002285,60.105379765125996],[-64.4035243927303,60.09694243326519],[-64.3667539343411,60.1044309404842],[-64.3355640961212,60.12784593652821],[-64.2931632755668,60.11937695400759],[-64.2837955321094,60.10762130396629],[-64.3254421512066,60.0616057120744],[-64.3612534230873,60.0440674189994],[-64.41864913179958,60.0357692477611],[-64.42993668216789,60.0232090639101],[-64.3810875608413,59.98877752998361],[-64.3970768855088,59.9376715078563],[-64.3783327193893,59.9141762739313],[-64.34927931524838,59.9132938848593],[-64.2890680690287,59.9802307416634],[-64.2570728669322,59.99356933011559],[-64.1790274145427,60.00258301457541],[-64.176968056491,60.026881234188195],[-64.2379111222067,60.05889681209549],[-64.2189435040461,60.07980041313339],[-64.1360214124016,60.08290784662311],[-64.0767990289511,60.0709695969245],[-64.0535900415202,60.0415512566513],[-64.051934251021,60.0214322668676],[-64.1051411120571,59.9629634565246],[-64.1682914173826,59.9262902138273],[-64.1543509803008,59.90865079627899],[-64.1029717707767,59.8883761751952],[-64.0966305808839,59.86237924080079],[-64.0659278586278,59.8413248894293],[-64.00037334277249,59.84777947213419],[-64.0016738743989,59.8134328924027],[-63.92506626072961,59.733518872789396],[-63.94772932405579,59.708486682951694],[-63.9925167544118,59.702807622885494],[-64.08258731113719,59.7458668685865],[-64.1328994870356,59.7560829749024],[-64.1563050022576,59.7410699296329],[-64.1100394876515,59.68228198341069],[-64.0150995010324,59.67776286684509],[-63.9519698887299,59.659917422071594],[-63.97078612503749,59.639053132884996],[-64.0500749638881,59.60584562076069],[-64.0837398140875,59.5682630585126],[-64.0811205182075,59.5380966181289],[-64.0469163673,59.521228367090096],[-64.01071671591158,59.52863722515429],[-63.9657725790604,59.578720561146696],[-63.8622424798733,59.6167904121999],[-63.8121884370363,59.606488290410304],[-63.7521621714957,59.51990167674871],[-63.6871223955734,59.471792889633704],[-63.6976597783953,59.4492453086283],[-63.77001920597179,59.4345783326553],[-63.9012586372656,59.4419201565884],[-63.966044741034196,59.43549287675899],[-63.980102856189895,59.4087463525224],[-63.9543494412922,59.393569089175394],[-63.8879822379382,59.379887009471695],[-63.75697652865329,59.3725397946267],[-63.69899308947739,59.360492586532104],[-63.677137192153396,59.341105729552],[-63.7047646868294,59.2776318089567],[-63.6866790485245,59.2540829906612],[-63.65068880532739,59.26140432323489],[-63.6297315836569,59.3064868882994],[-63.5838815034439,59.3463811131257],[-63.50119083144699,59.32906541475699],[-63.4697628046137,59.2878145181267],[-63.529932061710596,59.2212717807395],[-63.50822670374739,59.20186624227001],[-63.4602533678962,59.211566000355994],[-63.384164069580294,59.28464581654139],[-63.3308906556846,59.27835141044219],[-63.3219670898134,59.2665573640284],[-63.339508704733,59.2256872556055],[-63.2963180110016,59.1868213263841],[-63.357280995195694,59.130412008964896],[-63.439618419149994,59.0933867916082],[-63.53893200139439,59.069817946825594],[-63.6553057072907,59.05967192770219],[-63.7120130254177,59.0616699057943],[-63.8435584851208,59.08912321478369],[-63.912229620687,59.0885840719815],[-63.92328428224519,59.0760698752748],[-63.893206607006796,59.0550144561693],[-63.8552350313097,58.9878732669887],[-63.8031650750949,58.9918183873248],[-63.7334203493291,59.026625607163794],[-63.61191841138099,59.02090373793789],[-63.1924555823998,59.085466175288],[-63.1350790566206,59.07320934408699],[-63.121835770010996,59.055508850238],[-63.1451207713447,59.04066974375999],[-63.2257005500358,59.03806751994111],[-63.2369808601702,59.025615011182595],[-63.174608540414106,58.9974326626754],[-63.15563938346699,58.9537421722839],[-63.12296837831429,58.94673739872459],[-63.114157339289505,58.9349377485426],[-63.1448568408435,58.9118035688121],[-63.19623959878669,58.89805453955259],[-63.20679512567969,58.875557650900795],[-63.1779228046153,58.8644180043781],[-63.1058868456215,58.86875766211351],[-62.9830243063575,58.8967935980393],[-62.9504290899814,58.8897509656762],[-62.919837354321494,58.8484231650258],[-62.8373534341279,58.8106825703596],[-62.85998316848949,58.7858474280228],[-62.922565543449295,58.75977853540649],[-62.9525891870961,58.7266438656354],[-62.935753665219195,58.71307882806611],[-62.85646418605249,58.7255802991925],[-62.81969538987679,58.7126090744332],[-63.0060256267784,58.5599090688204],[-63.08790002485599,58.5331194112303],[-63.1982603105052,58.5174073015523],[-63.2739627527275,58.5188905684026],[-63.379096169883894,58.541472860530696],[-63.41437707195869,58.534204515986794],[-63.4473270672757,58.49679079715369],[-63.4384722592453,58.485016056748],[-63.3540178721551,58.4718444920678],[-63.3451961009254,58.4600651497583],[-63.36715792953039,58.4351360246794],[-63.462203559112105,58.3814425749351],[-63.4876475728388,58.352333777816995],[-63.46632342627719,58.33295069613129],[-63.40424459309169,58.3492469654384],[-63.268165810541994,58.43853657281329],[-63.1433512332822,58.47090695173489],[-63.0912651326247,58.4645640212441],[-63.082528210618,58.452770838737806],[-63.1194116289846,58.411300151300196],[-63.0982528463715,58.391864318985],[-63.0439296032411,58.4097398498461],[-62.9648932543651,58.4766807420674],[-62.9140730193977,58.4903560028612],[-62.735448483666495,58.4958281983184],[-62.597528505067395,58.5200055781385],[-62.52934476011149,58.509894037847694],[-62.5122249860375,58.486246475444],[-62.5964472909128,58.4255037222863],[-62.56538018428219,58.3640573276188],[-62.59154818880099,58.335139002840606],[-62.6491514397885,58.30327382142679],[-62.6202709275118,58.282003111305606],[-62.4970402656943,58.26949490332779],[-62.4911942594068,58.233467037265996],[-62.64031538766,58.217048102381796],[-63.0213597657002,58.132715388903996],[-63.086169945844695,58.1023993461839],[-63.1189188947252,58.06507303642779],[-63.2342625724372,58.03095231702069],[-63.2487199361506,58.01434534929669],[-63.23998944195131,58.0025675237882],[-63.2044741847661,57.999764528021196],[-63.0536732830037,58.031018337967694],[-63.0049385451097,58.06482534269999],[-62.913185920489,58.104015594858296],[-62.7733015560651,58.132554530886196],[-62.589558753184605,58.1562041303898],[-62.4379730533597,58.1967782479299],[-62.3900926985293,58.186062523481],[-62.39230669990639,58.1518229955308],[-62.3482282979607,58.1369694529142],[-62.3392696297358,58.11510504189629],[-62.283073898389,58.09252985253049],[-62.29378821622,58.07012718660209],[-62.468286448172506,58.0250120548001],[-62.5350397847695,58.0250830617614],[-62.593260749727996,58.0133094367479],[-62.61963995008469,57.99442155639859],[-62.5988990773164,57.9749312997341],[-62.5671281529089,57.967833048943696],[-62.45394169039769,57.9771726502925],[-62.3825205584681,57.96111637197279],[-62.39099264732601,57.898558650483295],[-62.370406259253095,57.8790412401457],[-62.34296518446249,57.8778054364724],[-62.3059329059074,57.9190420186284],[-62.3047312503865,57.973343969190495],[-62.28613866053529,57.9939575882422],[-62.175577455308506,57.978867176235305],[-62.0635098238412,58.01798043172959],[-62.0159392127904,58.00714563566909],[-61.99842771552049,57.96339332863829],[-61.915137743889396,57.9393723645282],[-61.85603224006379,57.93078643945089],[-61.8018126506528,57.9481662839152],[-61.762293527488396,57.939067140315395],[-61.789499823318394,57.825958169297095],[-61.84016367236259,57.8227188274405],[-61.962636715373094,57.8558231070538],[-61.9854767686042,57.8411806414441],[-61.9530772910087,57.8138810810274],[-61.8779956304495,57.7916607696785],[-61.8358651167112,57.7123675091375],[-61.7643886631413,57.67595517579291],[-61.7673620003914,57.6517872757769],[-61.91446054422179,57.6360944842051],[-61.97551723137669,57.61042907338689],[-62.0723987298535,57.5235151897197],[-62.1032576693045,57.5206784786437],[-62.17012932551619,57.54096252847219],[-62.2731425728367,57.509965056816995],[-62.3081593141363,57.512990617239495],[-62.34737578853391,57.521917503364094],[-62.38128889430631,57.5048583250887],[-62.35301170874979,57.4835675725279],[-62.3059951659506,57.472859177943896],[-62.208896880793,57.4655474416842],[-62.116477802145,57.4741139445771],[-61.9034651504677,57.4696761194789],[-61.8018999105145,57.4461257240552],[-61.7624652400559,57.42701917268419],[-61.7497640422059,57.3992204868562],[-61.7793216307448,57.366368241406995],[-61.85100641260169,57.3284279370032],[-61.9028430109844,57.2809143125213],[-61.87405252707569,57.2394843308284],[-61.6534040377957,57.20281011478839],[-61.596568644441696,57.2242376813917],[-61.5707037053737,57.2529451241923],[-61.5403746306034,57.2656930074251],[-61.50897734627869,57.2483524924924],[-61.5496700422231,57.203259718564595],[-61.53749901120321,57.1854791170328],[-61.43413466039839,57.1958650143055],[-61.380249328404005,57.19304898461749],[-61.2951146990611,57.1728288177342],[-61.213224217161496,57.1284199792689],[-61.18122771137309,57.0809429434205],[-61.1958099849421,57.05456499752229],[-61.222361352552,57.0459858993274],[-61.36763972831031,57.0408401933727],[-61.420621442232,57.0236032579529],[-61.4871353369378,56.9598766944205],[-61.4966319705584,56.9074811531153],[-61.52222166568689,56.878786720923],[-61.57082500253419,56.8555553841137],[-61.6197786890387,56.842328781936],[-61.775926773222494,56.8444497218244],[-61.78678063038199,56.832126020549],[-61.76640984456489,56.8025355544945],[-61.7803992993308,56.7760779824101],[-61.7681860969535,56.75832506299879],[-61.7266387583845,56.76339899065729],[-61.6520416876007,56.7953734839907],[-61.59061703170259,56.7808215269545],[-61.57444869313811,56.7571311432844],[-61.6179390933031,56.7079041988413],[-61.578377395606,56.6687347561452],[-61.62345342166989,56.6596014381791],[-61.71084453137699,56.665441957202596],[-61.987506070718496,56.7404634392973],[-62.1828000756248,56.7711334362523],[-62.2242737157237,56.7659149886493],[-62.24688892283639,56.7457672741028],[-62.23050509227979,56.741532373273],[-62.21426096060309,56.7240176792627],[-62.03095710132509,56.7011087148268],[-61.9388619475752,56.6795365069777],[-61.9378358514394,56.6594839532703],[-61.96032016133369,56.6548562103185],[-62.055394621512,56.6622686358706],[-62.1156731701996,56.6565497330415],[-62.1405475950309,56.627716604625],[-62.0419861878052,56.624485067146],[-61.87401443274481,56.5949429031658],[-61.750413631535594,56.6202699431343],[-61.6168087418891,56.5935367775334],[-61.555267061493,56.56896043749689],[-61.5431856647679,56.5511939887353],[-61.5612020007376,56.5306877371333],[-61.6438143723985,56.520614029514],[-61.840423179713994,56.5275776363114],[-61.910693590095406,56.4995879350032],[-61.9778391366157,56.4856976225398],[-61.99202897413781,56.4692391318334],[-61.9838526619971,56.45741848751479],[-61.9075593299368,56.4394388720192],[-61.85114646826559,56.44096366820679],[-61.7485178220352,56.4215950966696],[-61.7268253385629,56.3619439408438],[-61.605675909312495,56.3429619289478],[-61.525724488140895,56.3188583247811],[-61.5364505157962,56.3065557745069],[-61.60695915237379,56.2887476877339],[-61.671236889661095,56.2991543341925],[-61.7649373251191,56.29671540095969],[-61.87080603884729,56.31194598282699],[-61.9153542294852,56.3026964077038],[-61.9330020908703,56.2821312471306],[-61.8974722286176,56.2489798708994],[-61.7765905262208,56.23016696355949],[-61.6648218282946,56.24312544325849],[-61.60016807228819,56.2226974525032],[-61.5213257353304,56.21864502171099],[-61.35730938408751,56.2386286783609],[-61.3122957594713,56.237665292863],[-61.2442176418026,56.2211632022809],[-61.2470630949465,56.1970329067958],[-61.2114018370423,56.14368675507669],[-61.2845527443617,56.1019174598173],[-61.2492662899026,56.0586036344409],[-61.26354924019189,56.04223351634259],[-61.322589880916595,56.026825696093894],[-61.343936017439695,56.002254870676595],[-61.3245012380283,55.98265562397669],[-61.2235834854075,55.9729552426049],[-61.0683027526339,56.004458826235194],[-61.0307277555445,55.9952368166453],[-60.99217779595039,55.955955776361094],[-61.0501504776022,55.9106223876133],[-61.0423015633088,55.8987609917892],[-60.9044966468187,55.88961551151029],[-60.7675778535629,55.91036809630759],[-60.681630811793795,55.893963273784095],[-60.64036208116279,55.8786972171221],[-60.6174408938833,55.85307153715449],[-60.6576519955562,55.82829060041],[-60.7500902380064,55.8165228965433],[-60.756990964843304,55.7983555889241],[-60.72324903990659,55.7849784905178],[-60.5784023006224,55.7736445758272],[-60.5562702498383,55.77804774396499],[-60.50926035306511,55.8309575208741],[-60.475782374443995,55.82752912754669],[-60.4487293499703,55.7759141146842],[-60.50317375220669,55.7249004594345],[-60.47993504526149,55.6792373179506],[-60.504911335502,55.6407431414605],[-60.47832204065659,55.6091629333805],[-60.419371829838,55.6141851881737],[-60.39051745465301,55.646714661118],[-60.34826423035269,55.755553771671],[-60.34209541304539,55.8237427611306],[-60.32388899483449,55.8440594939471],[-60.2793035538301,55.8427599534487],[-60.2455201087169,55.819253333736],[-60.171029830715206,55.8003549959428],[-60.1596585125902,55.78250401174079],[-60.18520572379149,55.7540952011864],[-60.2736693381139,55.7267085749368],[-60.2954543486773,55.70233568005],[-60.2802342639709,55.6785474993523],[-60.2541472591673,55.666944092716],[-60.2462071146481,55.6350318495572],[-60.3906676183102,55.4824962269145],[-60.37183720826279,55.4627891148769],[-60.3388752685997,55.4693479410886],[-60.274056797819306,55.542487182772],[-60.1901628812152,55.5958535044883],[-60.1346632771,55.5866784468624],[-60.1271082634865,55.5747781616047],[-60.1524859960439,55.5463730345356],[-60.276705696642196,55.488384042922],[-60.287110678701396,55.45617972001389],[-60.31606171417949,55.4336804026116],[-60.34073432508819,55.3852145072421],[-60.3322499496582,55.33329384119559],[-60.3465480503085,55.3170353496457],[-60.4371138454559,55.2754212397508],[-60.4584420610848,55.2510102692302],[-60.436090298496,55.2353866916515],[-60.3905183126074,55.2411903378332],[-60.34873114901689,55.2529211994547],[-60.3266463989435,55.2472863201563],[-60.3335428666465,55.2291496187369],[-60.377209530726695,55.2203945644806],[-60.4563222524968,55.17094015756639],[-60.5841990136418,55.054407275295],[-60.5618812316839,55.0388083938694],[-60.51847390085209,55.04763608244049],[-60.36507974518349,55.17254500388199],[-60.2457260468445,55.226598667990295],[-60.23899388110631,55.254736325779795],[-60.19961264052121,55.2994084560964],[-60.177710681345104,55.3037545000332],[-60.12994888453179,55.296481639799694],[-60.1186492798503,55.278637125432],[-60.1519002427112,55.241790966783],[-60.15908407552139,55.2152088570266],[-60.1398613948635,55.2060209571865],[-60.11568402491119,55.2057261601296],[-60.0705276412806,55.2262498756705],[-60.03186071190749,55.2615172340464],[-60.0196133310432,55.2680883679771],[-59.990356667663896,55.270506719355794],[-59.9681689642305,55.254807548781194],[-60.145263411101496,55.13610550529369],[-60.2238093443298,55.0567829829661],[-60.2217016107882,55.0438055600595],[-60.1943009990502,55.0392434961591],[-60.1401176997979,55.0601206957387],[-59.9130185926241,55.2355554067849],[-59.8769013152595,55.2760605609677],[-59.82206902891599,55.2867781432822],[-59.74880214194499,55.2876940597981],[-59.7120907656728,55.2781341263528],[-59.70452841939019,55.2462144370468],[-59.7299156809873,55.2179004437439],[-59.835457077016706,55.170554115127494],[-59.85335727965909,55.1403056666371],[-59.8313857505299,55.13459087763],[-59.7621059588829,55.14148003115899],[-59.71819224126989,55.1300174312207],[-59.66714469022529,55.1366305213561],[-59.638088788292094,55.1589726204603],[-59.6052514918062,55.1653470728793],[-59.554086083832,55.1619115519714],[-59.48106867594299,55.1826803755732],[-59.448142548746794,55.1690134488009],[-59.49184069090399,55.1205721837007],[-59.7056495632881,54.962129021517],[-59.81758720501409,54.9066819322258],[-59.8780702768628,54.8278297181673],[-59.924601409154896,54.7951601922366],[-59.90954937310439,54.7613572729508],[-59.7544862206332,54.7954728160446],[-59.69752105198889,54.8802124935661],[-59.5168872574691,55.0123089159685],[-59.3275961700999,55.0721847454123],[-59.214158776958,55.1871292321869],[-59.1921492767698,55.2013001328966],[-59.12990164298999,55.2097746319406],[-59.0934480022276,55.1900506046575],[-59.1302638875399,55.1498008346389],[-59.2181118921824,55.1031291455996],[-59.2546881312478,55.0628365439865],[-59.24378785712539,55.0449364549987],[-59.17814641303999,55.057473458549495],[-59.0170286737346,55.144603560383395],[-58.995068898819,55.1487446933236],[-58.96590814580749,55.1409343186991],[-58.951531897094,55.1170408145193],[-58.98497310732759,55.050876708352895],[-58.9633234486158,55.0250343517719],[-58.912543755536795,55.00136457275289],[-58.89492098823929,54.9415194983406],[-58.8482407940841,54.8838378408195],[-58.5118285057713,54.80737459886],[-58.41785574578719,54.7916461029818],[-58.3381419103585,54.7898062357794],[-58.2798142100326,54.8038661058451],[-58.1838644110313,54.867832742941],[-57.931662136937604,54.9135724432209],[-57.8956177216901,54.903525586231396],[-57.9113545541896,54.8676279586716],[-57.8691564817208,54.82562847081879],[-57.9861741003227,54.7978777140498],[-58.0049039289115,54.7779373198342],[-57.9980047006764,54.7659527109957],[-57.969251261031296,54.7579361511694],[-57.8564377665432,54.7717143881259],[-57.8058148847059,54.767603044266],[-57.69170423850299,54.7153760035771],[-57.62003456029899,54.6951558789973],[-57.45334161550299,54.6983724683005],[-57.3708540568274,54.67995362552569],[-57.3596144702195,54.60608098566],[-57.3798076521586,54.556332289602295],[-57.4494168649023,54.5307808363493],[-57.5496962448099,54.453453384234194],[-57.64070451699519,54.4238823679203],[-57.76718224190619,54.4043099506266],[-57.939452579238996,54.4126026522084],[-58.1303984030217,54.3907093183507],[-58.2026294789714,54.3706926440628],[-58.2469785638437,54.30275721198869],[-58.31167630755169,54.290664166495596],[-58.43352971740621,54.2843671135639],[-58.6450702430866,54.24759717928729],[-59.0025860876587,54.1554575099973],[-59.3410905526784,54.1223797697853],[-59.390793300471096,54.10585278042629],[-59.4048595154978,54.08970304098769],[-59.38683976202089,54.0699084150166],[-59.3085414717862,54.068744198854],[-59.03819167517649,54.1252005963608],[-59.00254908764019,54.1254834868181],[-58.45196240864199,54.2443724153326],[-58.41995782344289,54.23049229921299],[-58.4417239534417,54.2064637615626],[-58.62112693632471,54.1158853523602],[-58.770969876153195,54.0871185649975],[-58.9276958401992,54.080088526522395],[-58.9454890920026,54.05997796044419],[-58.9205595272089,54.01820125989],[-58.9454164291293,53.99004551031399],[-58.9880083234366,53.9717342425009],[-59.15472236948299,53.9423266581969],[-59.21840229097529,53.91973356370019],[-59.4130044804865,53.8876803774125],[-59.543423364307394,53.84812593322809],[-59.6141881965645,53.8472178238036],[-59.6959248443124,53.8641180685761],[-59.7276468986546,53.857676574176594],[-59.7899099558236,53.7947757816274],[-59.961997167445496,53.7561230194989],[-60.059522797690995,53.7124926304667],[-60.09011832697259,53.6759482097566],[-60.09224786525429,53.6318839929674],[-60.119672914134796,53.6093925083748],[-60.2007988703863,53.6159442208435],[-60.3125620462702,53.6899264449266],[-60.44072436236179,53.72346188953289],[-60.60345748782209,53.7361176256515],[-60.75289896162949,53.76489185506409],[-60.7761870177664,53.8104425634355],[-60.8081322000856,53.8137231562122],[-60.8263043719476,53.7900180488695],[-60.8628771109482,53.7714044219184],[-60.9148132335889,53.7674113298838],[-60.95050832731519,53.7542965993192],[-60.964293289751595,53.7431603071205],[-60.949695836280696,53.7276091244703],[-60.9026979009524,53.7099598156567],[-60.83545440513449,53.70621662108469],[-60.77062489061189,53.7088668787885],[-60.7106487892697,53.71053959482849],[-60.666130879164996,53.701536176539],[-60.5852272984731,53.685756677831],[-60.5286673761914,53.6698503684201],[-60.47464899723429,53.646554289728],[-60.39979469332339,53.6104070966616],[-60.3411239392711,53.5810907976513],[-60.2976752037614,53.5664456723692],[-60.2542181951742,53.554085830915795],[-60.2067783054262,53.5394159896996],[-60.14800173320789,53.5284108743424],[-60.119034409167405,53.522438766611394],[-60.0747974277308,53.5132390599033],[-60.0547435513745,53.506335942908],[-60.0283609507902,53.4929879443331],[-60.026976041713795,53.481035051389696],[-60.0369066964844,53.46770940978429],[-60.0757847973398,53.4580695001561],[-60.1306145524471,53.4576087011973],[-60.179053482453206,53.4529903735356],[-60.217030103773794,53.4465234014766],[-60.2566873955007,53.4336044752519],[-60.2841809167616,53.4252879729839],[-60.3093243837413,53.410532958621],[-60.324003902480804,53.3939514714797],[-60.3096947353849,53.3783408998541],[-60.28007253113489,53.3664348133463],[-60.23586408182109,53.36419624328909],[-60.193800475136904,53.3688859728409],[-60.1395153592809,53.36687970133299],[-60.0978425459299,53.3756321663814],[-60.0292036117212,53.4168520457362],[-59.817642384141294,53.4943072850852],[-59.80062526518319,53.5145688674607],[-59.8082175968431,53.5364579113638],[-59.7806842959291,53.5588760466364],[-59.699689202684404,53.5520543109677],[-59.5595528562811,53.5739665008097],[-59.37067958530219,53.6422602611521],[-59.321853955158694,53.6787905780882],[-59.2341542106921,53.7196985316786],[-59.16715133523919,53.72635937032399],[-59.1035455309041,53.7189641110986],[-58.99774762428311,53.7398674241697],[-58.94135667362329,53.7742879774662],[-58.9556183066137,53.8081432021401],[-58.81044134536659,53.9530285988248],[-58.6965003895061,54.0216246147532],[-58.618047812222606,54.0499898814453],[-58.4451604431964,54.076509893451394],[-58.3504688924097,54.0909127333935],[-58.14635877594889,54.139177135575],[-58.06421680302049,54.1412172854883],[-57.9539192186959,54.1252248939786],[-57.8610132255512,54.1291174611854],[-57.8499892749694,54.141074322852],[-57.86390993639359,54.1550636772347],[-57.93143050729379,54.1691118141903],[-58.00288639873029,54.1691562709107],[-58.09543370428241,54.1851203131602],[-58.2423555535502,54.161017364744],[-58.3101371532447,54.1648818879744],[-58.3278406005723,54.1748254724773],[-58.334801440181195,54.1867898081672],[-58.30934753757769,54.2147989184855],[-58.2122914730929,54.2429129677504],[-58.08853723089099,54.2659267052323],[-58.0074101333658,54.2809272223309],[-57.60652222990699,54.2681421081407],[-57.492301930378794,54.255705212074],[-57.414329973946394,54.2333861602982],[-57.2514445246059,54.1008192103562],[-57.204495262356794,54.0267317803366],[-57.1419364132493,53.9884161813807],[-57.12207511706019,53.9523832961519],[-57.1340651455734,53.9205671591466],[-57.1208332146915,53.89654679578919],[-57.0415820865523,53.8381352679956],[-57.03212103416709,53.8101499848502],[-57.0984381078623,53.7488449662022],[-57.1596976596125,53.72135772639889],[-57.2525418236023,53.698015375177896],[-57.2926065988087,53.6643446791652],[-57.3532546494318,53.6467183273049],[-57.3715537700542,53.626867300844],[-57.363211818972,53.6118693536311],[-57.3159427820713,53.6006597374993],[-57.2823483885979,53.5506263135536],[-57.3012741382835,53.5108489122989],[-57.3071560455661,53.4370992706918],[-57.29354591970159,53.4230708491019],[-57.2517801666004,53.4108786398644],[-57.2060557060172,53.412607747299],[-57.1841603290059,53.4364001677854],[-57.2176117200781,53.4864494678704],[-57.1956672420983,53.5102426084608],[-57.1314946986139,53.53175983361909],[-57.0567591099546,53.6408813118669],[-57.003138189708494,53.6527358475556],[-56.9783110816008,53.6582121067242],[-56.9078521809528,53.7333671448412],[-56.8612895642863,53.744911138666794],[-56.7564862927644,53.7140121511811],[-56.6819693059476,53.7172308734793],[-56.5779779310316,53.7419921969767],[-56.5017627180564,53.7749694731577],[-56.4125783258518,53.7838199149407],[-56.385235947456,53.7655334176862],[-56.407851042989,53.7419170831739],[-56.505527707080596,53.7052743141314],[-56.52052817316739,53.68951259867869],[-56.51086917256299,53.67146426619],[-56.454073300399,53.6747582110783],[-56.3914131411357,53.6560337804659],[-56.2853549295397,53.6546190241531],[-56.2019370456465,53.6295382657534],[-56.1646346317879,53.603099942065],[-56.1386836365246,53.5648695260031],[-56.0403421387787,53.4996322227716],[-55.964857807853,53.46656413301229],[-55.7783522261719,53.4096314952533],[-55.7347845120402,53.3252265286901],[-55.6741919568172,53.2862926636595],[-55.654923459703795,53.26005472382239],[-55.7065856149261,53.1694205270947],[-55.8027879963279,53.14324985802299],[-55.8414585665861,53.0841797531619],[-56.0033861819358,53.0629152033247],[-56.0219681385375,53.043288871533],[-55.995111556396694,53.0249506436224],[-55.8694044737971,53.026906016576795],[-55.7971933006937,53.0097542521123],[-55.7840854095759,52.9398447889618],[-55.8218768533591,52.890717258679295],[-55.7969586263349,52.84250980302149],[-55.8223217078661,52.8250231028741],[-55.9326690308148,52.8387795985715],[-56.0446889279185,52.8225931113215],[-56.055737180484,52.8108101992886],[-56.04261516775549,52.7966744775057],[-55.9471036669577,52.7673278244787],[-55.9053119232627,52.7089197118874],[-55.805192754533394,52.7032875215726],[-55.7575755069321,52.6885375419229],[-55.7321554064623,52.6502720856575],[-55.75739687062029,52.6327935039137],[-55.840081570120894,52.6381712829818],[-55.8768446625389,52.5989556110024],[-55.91135972781169,52.5995103718558],[-55.97933433911739,52.6204841529181],[-56.0666785608147,52.6018835367857],[-56.10799597021799,52.604471776683994],[-56.229732252866896,52.5862336792152],[-56.2442729746033,52.5704924372677],[-56.2379343014504,52.5584598465709],[-56.2002969795674,52.5519845927098],[-55.9929413630018,52.558967682448],[-55.80072923029739,52.5399639068358],[-55.7600421743528,52.5273292769056],[-55.7278743887386,52.4869610782906],[-55.652235462316895,52.48363379298339],[-55.6048646936377,52.46883885207469],[-55.5543801327933,52.392267790105],[-55.5831777906759,52.3709099265781],[-55.65747961593169,52.394155403922696],[-55.7205672832293,52.3733688034748],[-55.7580189983066,52.379984277768],[-55.99858239544999,52.449540606193295],[-56.0303377243868,52.4340857299367],[-56.02455421584809,52.4120973195626],[-55.9812852683985,52.383573148313694],[-55.7815694762774,52.3266335133261],[-55.71881363082629,52.2817730693374],[-55.6342546535556,52.2603788413048],[-55.707687234508,52.17210091308299],[-55.726461766862,52.076878212484395],[-55.8349194094484,52.0249258143556],[-55.8857945148033,51.9600363245887],[-55.94493180311589,51.9330697254785],[-56.0958602738687,51.8237406419346],[-56.4667413323236,51.6868024810065],[-56.586774343928,51.6282244690924],[-56.64866429249759,51.5869479720053],[-56.7953243239466,51.5164065244221],[-56.8126030899078,51.4966076940682],[-56.88395954468909,51.4632266433548],[-56.948139909361,51.4476899166073],[-57.10869188254123,51.44635342641005],[-57.11494445800781,51.58650588989258],[-57.12671279907226,52.00053787231445],[-58.00000000000001,52],[-58.99999999999999,52],[-59.99999999999999,52],[-60.1993293762207,52.00077438354492],[-60.23994064331055,52.000885009765625],[-60.24026870727538,52.000885009765625],[-60.99999999999999,52],[-61.63945388793945,52.00111770629882],[-61.663379669189446,52.00108337402344],[-61.99999999999999,52],[-62.91313934326172,52.00038528442382],[-63.00418472290039,52.00001907348632],[-63.79125976562499,52.00080108642578],[-63.79635620117187,52.00078582763672],[-63.80019760131835,52.00520706176758],[-63.804180145263665,52.009803771972656],[-63.805702209472656,52.01487731933593],[-63.80797576904296,52.02087020874023],[-63.80950927734375,52.026863098144524],[-63.81327056884765,52.031009674072266],[-63.820770263671875,52.034221649169915],[-63.82677459716797,52.036975860595696],[-63.82978439331054,52.039737701416016],[-63.83280181884766,52.04341888427734],[-63.83583450317383,52.04987335205078],[-63.837345123291016,52.05263900756835],[-63.838871002197266,52.056785583496094],[-63.84191131591796,52.06370162963867],[-63.844924926757805,52.06692123413086],[-63.846450805664055,52.07107162475586],[-63.84423065185546,52.07522964477539],[-63.84051513671875,52.07939147949219],[-63.83537292480469,52.08555221557617],[-63.83048629760742,52.08427047729492],[-63.82449722290039,52.084285736083984],[-63.81550979614258,52.08476257324219],[-63.8102684020996,52.08477401733398],[-63.802776336669915,52.08432388305663],[-63.78778839111329,52.08250427246093],[-63.77654647827149,52.08021545410156],[-63.763797760009766,52.076541900634766],[-63.75554656982422,52.072402954101555],[-63.744293212890625,52.0664176940918],[-63.73679733276367,52.06319808959961],[-63.72629928588867,52.05813217163086],[-63.71805572509765,52.05445098876953],[-63.713558197021484,52.05122756958008],[-63.70831298828124,52.04938507080078],[-63.70307159423828,52.048004150390625],[-63.69783401489258,52.04800796508789],[-63.693347930908196,52.04939651489258],[-63.687366485595696,52.050785064697266],[-63.68137741088868,52.050788879394524],[-63.67464065551758,52.049407958984375],[-63.6693992614746,52.04710388183594],[-63.66415786743164,52.0447998046875],[-63.6581687927246,52.043880462646484],[-63.653682708740234,52.043880462646484],[-63.6484489440918,52.04711151123047],[-63.64920425415039,52.05126190185546],[-63.6529541015625,52.05818176269531],[-63.65669631958008,52.06140899658203],[-63.66344451904296,52.06694412231445],[-63.667190551757805,52.07017135620117],[-63.67094421386719,52.07386016845703],[-63.673942565917976,52.077091217041016],[-63.67769241333008,52.079856872558594],[-63.68444061279297,52.082618713378906],[-63.692684173583984,52.08676528930663],[-63.700469970703125,52.08979415893555],[-63.70197677612304,52.093482971191406],[-63.7027359008789,52.09625244140625],[-63.70424652099609,52.10086441040039],[-63.70726013183594,52.10593795776367],[-63.70877456665038,52.11101150512695],[-63.70955276489258,52.1202392578125],[-63.70731735229492,52.12485885620117],[-63.70507812500001,52.12947463989258],[-63.702091217041016,52.13317108154297],[-63.69985580444336,52.13825225830078],[-63.699867248535156,52.14332580566406],[-63.70095443725586,52.154266357421875],[-63.69735336303711,52.157825469970696],[-63.69736099243164,52.16151809692383],[-63.697368621826165,52.16474914550781],[-63.69812774658204,52.16797637939453],[-63.7018928527832,52.17304992675781],[-63.70415496826171,52.17674255371094],[-63.7071647644043,52.1804313659668],[-63.71018600463867,52.18642807006836],[-63.707939147949226,52.18965911865234],[-63.704944610595696,52.19243240356445],[-63.7042007446289,52.1952018737793],[-63.70947265624999,52.19981384277344],[-63.71173095703124,52.20257949829101],[-63.713993072509766,52.20534896850586],[-63.71625900268554,52.20903778076172],[-63.72003173828126,52.21503448486328],[-63.72455978393555,52.22103118896484],[-63.72908401489257,52.225181579589844],[-63.73285675048829,52.229331970214844],[-63.7381362915039,52.23440170288086],[-63.744163513183594,52.238548278808594],[-63.74793624877929,52.24223709106445],[-63.74570846557617,52.24916458129882],[-63.74422073364258,52.2537841796875],[-63.74348068237304,52.257476806640625],[-63.74500274658203,52.26209259033203],[-63.75028610229492,52.266239166259766],[-63.755561828613274,52.26853942871093],[-63.76083374023437,52.269920349121094],[-63.76610565185546,52.271297454833984],[-63.77138137817383,52.273136138916016],[-63.77590560913085,52.274513244628906],[-63.78042984008789,52.27635192871094],[-63.78495025634765,52.277732849121094],[-63.78947448730468,52.279571533203125],[-63.79325485229492,52.28233337402343],[-63.79402160644531,52.28556442260742],[-63.79253005981445,52.28833770751953],[-63.78725814819336,52.288345336914055],[-63.7812271118164,52.286048889160156],[-63.77594375610352,52.28374481201172],[-63.76916885375976,52.283756256103516],[-63.766929626464844,52.28791427612305],[-63.77373504638672,52.294368743896484],[-63.779762268066406,52.295745849609375],[-63.7842903137207,52.297584533691406],[-63.79107666015625,52.29941940307617],[-63.80163955688476,52.30309677124023],[-63.81069564819335,52.3067741394043],[-63.81597900390624,52.30860900878906],[-63.82201385498047,52.31044387817382],[-63.82353973388672,52.31367492675781],[-63.816780090332024,52.317378997802734],[-63.80698013305664,52.31601333618164],[-63.8031997680664,52.31417465209961],[-63.798667907714844,52.31140899658203],[-63.79188919067382,52.31142425537109],[-63.78661727905273,52.311893463134766],[-63.7821044921875,52.31328582763672],[-63.776832580566406,52.31421661376953],[-63.77156066894531,52.31422424316406],[-63.76477813720703,52.31330871582031],[-63.757991790771484,52.31193542480469],[-63.75196075439453,52.31101989746094],[-63.746685028076165,52.310562133789055],[-63.742164611816406,52.31010818481445],[-63.73765563964843,52.3133430480957],[-63.739173889160156,52.31611251831055],[-63.74219512939454,52.31887817382812],[-63.754268646240234,52.32348251342773],[-63.76408004760742,52.32670211791992],[-63.7754020690918,52.330841064453125],[-63.78068923950195,52.3331413269043],[-63.78823471069335,52.33497619628906],[-63.79653167724609,52.33634567260742],[-63.804080963134766,52.33818054199218],[-63.81086730957031,52.33909225463867],[-63.81840896606445,52.33907699584961],[-63.825942993164055,52.3386001586914],[-63.831207275390625,52.336280822753906],[-63.832672119140625,52.32935333251953],[-63.83415985107421,52.326118469238274],[-63.837158203125,52.323341369628906],[-63.84317779541015,52.32194519042968],[-63.848453521728516,52.32193374633788],[-63.85449218749999,52.32376480102539],[-63.862041473388665,52.32559585571289],[-63.86657333374024,52.327430725097656],[-63.870357513427734,52.32926940917969],[-63.87943267822265,52.33386611938476],[-63.88547515869141,52.335697174072266],[-63.89227294921875,52.3375244140625],[-63.897560119628906,52.338897705078125],[-63.90662002563476,52.340721130371094],[-63.91417694091797,52.34254455566406],[-63.92021942138672,52.344375610351555],[-63.92779159545898,52.34804916381836],[-63.93536758422851,52.35218048095703],[-63.9436912536621,52.35538864135742],[-63.95503234863281,52.358585357666016],[-63.96409606933594,52.35993957519531],[-63.970882415771484,52.35991668701172],[-63.97767257690429,52.359893798828125],[-63.98294830322265,52.359413146972656],[-63.98897933959961,52.35939407348633],[-63.994270324707024,52.360298156738274],[-63.99956130981445,52.361663818359375],[-64.00788879394531,52.364402770996094],[-64.01394653320312,52.366226196289055],[-64.01998901367188,52.36712646484375],[-64.02023315429688,52.36708450317383],[-64.02129364013672,52.37516784667968],[-64.02283477783203,52.377933502197266],[-64.02892303466797,52.38206481933594],[-64.03273010253906,52.38528060913085],[-64.0342788696289,52.38850784301757],[-64.03280639648438,52.39174652099609],[-64.02983856201172,52.39637756347656],[-64.02609252929688,52.39916229248047],[-64.02157592773438,52.400569915771484],[-64.01432800292969,52.4027099609375],[-64.01740264892578,52.407718658447266],[-64.02014923095703,52.40842819213867],[-64.02548217773438,52.4125633239746],[-64.03234100341797,52.417152404785156],[-64.04069519042969,52.42127227783203],[-64.04981994628906,52.425849914550774],[-64.05741882324217,52.42951202392578],[-64.0680694580078,52.43500900268555],[-64.0757064819336,52.44097900390625],[-64.08000183105469,52.445343017578125],[-64.08566284179688,52.45109176635742],[-64.08872985839844,52.45431137084961],[-64.08955383300781,52.4598503112793],[-64.08963012695311,52.465858459472656],[-64.08749389648438,52.47603225708008],[-64.0846176147461,52.48805618286132],[-64.0802230834961,52.49962615966797],[-64.07508850097656,52.51258850097656],[-64.06991577148438,52.52323913574219],[-64.06693267822266,52.52741241455078],[-64.06320190429688,52.53158950805664],[-64.05944061279295,52.53437805175781],[-64.05416870117188,52.537174224853516],[-64.04814910888672,52.540897369384766],[-64.04215240478516,52.54646682739258],[-64.03617858886719,52.55434799194336],[-64.03395080566406,52.55851745605469],[-64.02872467041016,52.56593322753906],[-64.02495574951172,52.56779861450195],[-64.02043151855467,52.570125579833984],[-64.014404296875,52.573848724365234],[-64.00987243652344,52.57571792602539],[-64.00265502929688,52.579124450683594],[-63.996273040771484,52.58131408691406],[-63.99172973632812,52.582256317138665],[-63.98264694213867,52.584602355957024],[-63.97658538818359,52.58555221557617],[-63.96977233886719,52.58696365356445],[-63.95996475219726,52.5930061340332],[-63.95239257812501,52.594879150390625],[-63.94785690307617,52.597206115722656],[-63.945613861083984,52.60091018676758],[-63.942623138427734,52.60600662231445],[-63.934280395507805,52.60696029663086],[-63.92971801757812,52.606048583984375],[-63.924385070800774,52.604217529296875],[-63.91755676269532,52.60470199584961],[-63.91228485107422,52.60980224609375],[-63.91003417968749,52.61304473876953],[-63.90777969360351,52.61582565307617],[-63.89794921875,52.62139892578125],[-63.894168853759766,52.623260498046875],[-63.88506317138672,52.624671936035156],[-63.8729133605957,52.62516784667969],[-63.86684036254883,52.6261100769043],[-63.85697555541992,52.62752151489258],[-63.84407424926757,52.62940216064453],[-63.82964324951171,52.63036346435547],[-63.81521224975587,52.630859375],[-63.803062438964844,52.63180923461913],[-63.788631439208984,52.63276290893555],[-63.777996063232415,52.632781982421875],[-63.76584243774414,52.63372802734375],[-63.755210876464844,52.63467025756836],[-63.73545837402344,52.636085510253906],[-63.724063873291016,52.63702774047851],[-63.70203399658203,52.63890075683593],[-63.687599182128906,52.63983917236328],[-63.670124053955085,52.64170455932617],[-63.65264892578124,52.64402770996094],[-63.63973236083984,52.6458854675293],[-63.61921310424805,52.64820480346679],[-63.614654541015625,52.64866638183594],[-63.59869384765625,52.65005874633789],[-63.58500671386719,52.650981903076165],[-63.571327209472656,52.65190505981445],[-63.55004119873047,52.65143966674805],[-63.53179931640625,52.65004348754883],[-63.51280212402344,52.64772033691406],[-63.50140380859374,52.64678955078125],[-63.48240661621093,52.6453857421875],[-63.467205047607415,52.64490509033203],[-63.45732879638672,52.64397048950195],[-63.44440841674805,52.64441680908203],[-63.433006286621094,52.64532470703125],[-63.42082595825195,52.64992904663086],[-63.41245651245117,52.65129852294922],[-63.40790176391601,52.6503677368164],[-63.40106201171875,52.64989471435546],[-63.39345550537109,52.65080261230469],[-63.38431167602539,52.654945373535156],[-63.378971099853516,52.658634185791016],[-63.37666320800781,52.66324996948242],[-63.378170013427734,52.6660270690918],[-63.38119888305663,52.66834640502929],[-63.38650512695312,52.671592712402344],[-63.39105987548829,52.6734504699707],[-63.39712905883789,52.67623519897461],[-63.403961181640625,52.679019927978516],[-63.41154861450195,52.6831932067871],[-63.417617797851555,52.68736267089844],[-63.42520523071288,52.69245910644531],[-63.432018280029304,52.7003288269043],[-63.44112014770507,52.70866394042969],[-63.44947433471679,52.7142219543457],[-63.4593620300293,52.717933654785156],[-63.47077560424804,52.71979522705078],[-63.482192993164055,52.72072982788086],[-63.49818420410156,52.72259521484375],[-63.51340866088867,52.7258415222168],[-63.52482604980469,52.72908782958984],[-63.540813446044915,52.73649215698242],[-63.54994583129883,52.74296951293945],[-63.55451583862304,52.746665954589844],[-63.563655853271484,52.753604888916016],[-63.57661056518555,52.76007843017578],[-63.586517333984375,52.76424026489258],[-63.59414291381836,52.76701736450195],[-63.601768493652344,52.770713806152344],[-63.60786819458008,52.77487564086913],[-63.61168670654297,52.77949905395508],[-63.61321258544922,52.78273391723633],[-63.61016464233398,52.78828430175781],[-63.6025390625,52.79475784301757],[-63.59719848632812,52.799381256103516],[-63.59033203124999,52.808170318603516],[-63.591094970703125,52.811866760253906],[-63.60025405883789,52.82250213623047],[-63.597965240478516,52.826663970947266],[-63.59338378906251,52.82805252075195],[-63.585750579833984,52.82944107055664],[-63.58269500732421,52.83175277709961],[-63.58192825317382,52.834991455078125],[-63.58269119262695,52.84192657470703],[-63.587272644042976,52.847015380859375],[-63.591094970703125,52.849327087402344],[-63.596443176269524,52.85117721557617],[-63.604087829589844,52.853950500488274],[-63.607906341552734,52.85626220703125],[-63.61172866821288,52.85903549194336],[-63.612495422363274,52.862274169921875],[-63.611732482910156,52.865047454833984],[-63.610969543457024,52.8682861328125],[-63.610973358154304,52.87065505981445],[-63.61238861083984,52.871334075927734],[-63.61842727661132,52.872074127197266],[-63.62504577636719,52.868202209472656],[-63.62948989868164,52.863304138183594],[-63.63650512695312,52.856201171875],[-63.648223876953125,52.85441589355469],[-63.66012954711914,52.857276916503906],[-63.67015075683594,52.85680389404297],[-63.676929473876946,52.85154724121094],[-63.6742820739746,52.84817886352539],[-63.66940307617188,52.844245910644524],[-63.6574821472168,52.83535385131836],[-63.64967727661133,52.830360412597656],[-63.64937591552734,52.82663345336914],[-63.65457534790038,52.82176971435547],[-63.660362243652344,52.818321228027344],[-63.66795349121094,52.812637329101555],[-63.67912292480469,52.80896759033203],[-63.68831253051757,52.808921813964844],[-63.69815063476562,52.809829711914055],[-63.7036476135254,52.808685302734375],[-63.709426879882805,52.80523681640624],[-63.71870040893555,52.798233032226555],[-63.73025512695312,52.79132843017578],[-63.7425651550293,52.78446197509765],[-63.751548767089844,52.779762268066406],[-63.766189575195305,52.772529602050774],[-63.77733612060546,52.76885223388672],[-63.79141235351562,52.766231536865234],[-63.80841827392578,52.76466369628906],[-63.82150650024414,52.763851165771484],[-63.83612060546874,52.763099670410156],[-63.8476333618164,52.762676239013665],[-63.85610580444336,52.762123107910156],[-63.86153793334962,52.76142883300781],[-63.86870956420898,52.75896072387695],[-63.87978744506835,52.76222610473633],[-63.88592529296875,52.762027740478516],[-63.897003173828125,52.75879669189453],[-63.90628814697265,52.757808685302734],[-63.91595458984375,52.75358963012695],[-63.92767333984374,52.74482345581055],[-63.938796997070305,52.74112701416015],[-63.948345184326165,52.73782730102539],[-63.95951843261718,52.73366928100586],[-63.973411560058594,52.73240661621094],[-63.985408782958984,52.734310150146484],[-63.999847412109375,52.734920501708984],[-64.01374053955077,52.7336540222168],[-64.02610778808594,52.732322692871094],[-64.04090881347656,52.729698181152344],[-64.05230712890625,52.73017501831054],[-64.06501770019531,52.73255920410156],[-64.08255004882811,52.732826232910156],[-64.09866333007812,52.73210144042969],[-64.11766052246094,52.732887268066406],[-64.13159942626953,52.731143951416016],[-64.13352966308594,52.7275161743164],[-64.1331787109375,52.723793029785156],[-64.13319396972656,52.71683883666992],[-64.13285064697266,52.7061653137207],[-64.13195037841797,52.70056915283203],[-64.13277435302734,52.69318389892578],[-64.1500473022461,52.674896240234375],[-64.16588592529295,52.66951751708984],[-64.1785888671875,52.66493606567382],[-64.1813735961914,52.660415649414055],[-64.17889404296875,52.655220031738274],[-64.17545318603516,52.65183639526367],[-64.17050170898438,52.64838790893554],[-64.163330078125,52.64439010620117],[-64.15711212158203,52.63857650756835],[-64.1529312133789,52.62820816040039],[-64.15621948242188,52.619075775146484],[-64.16875457763672,52.60893249511719],[-64.18077850341797,52.60340118408203],[-64.19097900390625,52.60057067871094],[-64.2016830444336,52.59313201904297],[-64.21192932128906,52.582889556884766],[-64.21267700195312,52.57596969604492],[-64.20823669433594,52.56791687011719],[-64.20227813720703,52.55979919433594],[-64.19486236572266,52.5511589050293],[-64.1875991821289,52.54113769531249],[-64.17802429199219,52.5314826965332],[-64.16991424560547,52.5223503112793],[-64.16437530517578,52.51054382324219],[-64.16040802001953,52.49833679199219],[-64.15754699707031,52.48293685913086],[-64.15328979492188,52.46654891967773],[-64.1491241455078,52.45619201660156],[-64.14867401123047,52.45339202880859],[-64.14510345458984,52.451393127441406],[-64.13902282714844,52.44466018676758],[-64.1341552734375,52.44075393676758],[-64.1298828125,52.43825912475586],[-64.12302398681639,52.41806411743164],[-64.12078094482422,52.4110221862793],[-64.1185302734375,52.40398406982422],[-64.11799621582031,52.395164489746094],[-64.1209716796875,52.3888053894043],[-64.12926483154295,52.38220214843749],[-64.1381607055664,52.37701416015625],[-64.15338134765625,52.36930847167969],[-64.16347503662108,52.36000061035156],[-64.17216491699219,52.349708557128906],[-64.17633056640625,52.33923339843749],[-64.177490234375,52.32863235473633],[-64.18421173095703,52.31548309326172],[-64.19223022460938,52.311180114746094],[-64.20350646972656,52.311641693115234],[-64.21949768066406,52.31044006347656],[-64.23126983642578,52.30628967285156],[-64.23957824707031,52.299217224121094],[-64.24578094482422,52.29067611694336],[-64.24601745605469,52.28142929077148],[-64.2457046508789,52.27030563354492],[-64.24604034423828,52.26013946533203],[-64.24427032470703,52.24849700927734],[-64.23920440673828,52.239498138427734],[-64.23234558105469,52.23320388793945],[-64.22502899169922,52.22411346435547],[-64.22032928466797,52.218833923339844],[-64.2185287475586,52.214595794677734],[-64.21817016601562,52.21087646484375],[-64.21731567382812,52.20482635498047],[-64.21656036376953,52.197856903076165],[-64.21630859375,52.19321823120117],[-64.21260833740234,52.18566131591797],[-64.20410919189453,52.173748016357415],[-64.1927261352539,52.160789489746094],[-64.18708038330077,52.15037536621094],[-64.1837387084961,52.13959884643555],[-64.18169403076172,52.123783111572266],[-64.18643951416016,52.114723205566406],[-64.18982696533203,52.11116409301758],[-64.20075225830078,52.11438751220703],[-64.21302032470703,52.11905288696289],[-64.22200012207031,52.12635803222656],[-64.22864532470703,52.13449478149414],[-64.23603820800781,52.142662048339844],[-64.2421875,52.148460388183594],[-64.25276947021484,52.14796447753906],[-64.25760650634766,52.144920349121094],[-64.2610855102539,52.14043426513672],[-64.26202392578124,52.131683349609375],[-64.26005554199219,52.12189102172851],[-64.25889587402344,52.111663818359375],[-64.25787353515625,52.100059509277344],[-64.26409149169922,52.09105682373047],[-64.27619934082031,52.09016036987305],[-64.28980255126953,52.089317321777344],[-64.29696655273436,52.08544158935546],[-64.29774475097656,52.078071594238274],[-64.29652404785156,52.06830978393555],[-64.29306030273438,52.058460235595696],[-64.29085540771483,52.050968170166016],[-64.28047943115234,52.04269027709961],[-64.27603149414061,52.03511047363281],[-64.27153778076172,52.02799224853515],[-64.267333984375,52.01811218261719],[-64.26224517822266,52.009578704833984],[-64.26014709472656,52.00093460083007],[-64.26141357421875,51.98919677734374],[-64.26443481445312,51.9819221496582],[-64.26799774169922,51.97651672363281],[-64.2752456665039,51.97172546386718],[-64.28440093994139,51.977180480957024],[-64.290771484375,51.980674743652344],[-64.3045196533203,51.99232482910156],[-64.31734466552734,52.00578308105469],[-64.32562255859375,52.01258850097656],[-64.3350830078125,52.01527786254883],[-64.34642028808594,52.01433944702148],[-64.35486602783203,52.01236343383789],[-64.35953521728516,52.01069641113281],[-64.36478424072266,52.00112533569336],[-64.36731719970703,51.99343490600585],[-64.36808013916014,51.98606491088867],[-64.36758422851561,51.97633743286133],[-64.36774444580078,51.96755599975586],[-64.36762237548828,51.96154022216797],[-64.36717987060547,51.951351165771484],[-64.36538696289062,51.93972396850586],[-64.36482238769531,51.92352294921875],[-64.36601257324219,51.912010192871094],[-64.3667221069336,51.90510559082031],[-64.36683654785156,51.89678955078125],[-64.3681640625,51.8838996887207],[-64.36856079101562,51.87282180786132],[-64.36881256103514,51.86312484741211],[-64.36605072021484,51.8537712097168],[-64.35947418212889,51.845191955566406],[-64.35107421875,51.83977127075195],[-64.34259033203125,51.83527374267578],[-64.33731842041016,51.828594207763665],[-64.33080291748047,51.81955337524414],[-64.32215118408203,51.80950164794922],[-64.31727600097656,51.79913711547851],[-64.31744384765625,51.790367126464844],[-64.31409454345702,51.77960205078125],[-64.31170654296874,51.77396011352539],[-64.30426788330078,51.76673126220703],[-64.29633331298828,51.75716781616211],[-64.29373168945312,51.74643325805663],[-64.29608154296875,51.73821258544921],[-64.30233001708984,51.72829818725586],[-64.30916595458983,51.719795227050774],[-64.31507110595703,51.713104248046875],[-64.32176208496094,51.70598220825195],[-64.3243637084961,51.702388763427734],[-64.32882690429688,51.69517517089844],[-64.33806610107422,51.68492126464844],[-64.35071563720702,51.677574157714844],[-64.37213897705078,51.6714973449707],[-64.39064025878906,51.6722297668457],[-64.40229034423828,51.674537658691406],[-64.41606903076172,51.67784881591797],[-64.42707061767578,51.67920684814453],[-64.43396759033203,51.67716598510742],[-64.4401626586914,51.67463684082031],[-64.44538879394531,51.666988372802734],[-64.44987487792969,51.65930938720703],[-64.45805358886719,51.644386291503906],[-64.4636001586914,51.63351821899414],[-64.47172546386719,51.62644577026367],[-64.48091888427734,51.62356948852539],[-64.4968032836914,51.620487213134766],[-64.50907897949219,51.616340637207024],[-64.52283477783203,51.61225128173828],[-64.52938079833984,51.60603713989258],[-64.53784942626953,51.59527587890624],[-64.54300689697266,51.58808517456055],[-64.54788208007812,51.58365249633789],[-64.55397033691406,51.58203887939453],[-64.55795288085938,51.58680725097656],[-64.56217956542969,51.59666442871093],[-64.5744857788086,51.6072883605957],[-64.58550262451172,51.61601638793945],[-64.59730529785156,51.62430953979492],[-64.60208129882812,51.62864303588867],[-64.61351013183594,51.63322830200195],[-64.616455078125,51.64118576049805],[-64.61482238769531,51.65036010742187],[-64.612548828125,51.65858840942383],[-64.61195373535156,51.672420501708984],[-64.61785125732422,51.6883430480957],[-64.63294219970703,51.70137405395508],[-64.65167236328124,51.707611083984375],[-64.66918182373047,51.71102523803711],[-64.6800308227539,51.714195251464844],[-64.6855697631836,51.71855545043945],[-64.69175720214844,51.72386169433593],[-64.69751739501953,51.74162292480468],[-64.69573211669922,51.75264358520508],[-64.6986083984375,51.76152801513672],[-64.71187591552734,51.76293182373047],[-64.72081756591797,51.762794494628906],[-64.73426055908203,51.76235580444335],[-64.74861145019531,51.760101318359375],[-64.76493072509766,51.760684967041016],[-64.77728271484375,51.76390075683594],[-64.7939224243164,51.769111633300774],[-64.80479431152344,51.77226638793945],[-64.81707000732422,51.77639389038085],[-64.82494354248047,51.7799072265625],[-64.83734893798828,51.782649993896484],[-64.84864807128906,51.78120040893555],[-64.8578872680664,51.77782440185547],[-64.86712646484375,51.774452209472656],[-64.87928771972656,51.77164077758789],[-64.89627838134766,51.77315139770508],[-64.91619110107422,51.775222778320305],[-64.9258804321289,51.775093078613274],[-64.92620849609375,51.77140808105469],[-64.92483520507812,51.76166534423828],[-64.923095703125,51.74774932861328],[-64.92292785644531,51.741279602050774],[-64.92847442626953,51.729000091552734],[-64.938720703125,51.7224235534668],[-64.94481658935547,51.72078323364258],[-64.95503234863281,51.72297668457031],[-64.97175598144531,51.727237701416016],[-64.97842407226562,51.72746658325195],[-64.9833755493164,51.73040008544922],[-64.98866271972656,51.73796844482422],[-64.99317169189453,51.745967864990234],[-64.99858856201172,51.75215148925781],[-65.00829315185545,51.76032638549805],[-65.02023315429688,51.768577575683594],[-65.02893829345703,51.771175384521484],[-65.04159545898438,51.771133422851555],[-65.05159759521484,51.76730728149414],[-65.06612396240234,51.7627067565918],[-65.0812759399414,51.75950622558594],[-65.08803558349608,51.758804321289055],[-65.10346221923827,51.76115417480469],[-65.1228256225586,51.76085662841797],[-65.13414764404297,51.7589111328125],[-65.1480941772461,51.761207580566406],[-65.15676879882812,51.76425552368164],[-65.16622924804688,51.76686477661133],[-65.17886352539062,51.77603912353515],[-65.18067932128906,51.78117752075195],[-65.17068481445312,51.78501510620117],[-65.161865234375,51.79258346557617],[-65.1559066772461,51.80162811279297],[-65.15596008300781,51.80994415283203],[-65.16363525390625,51.816192626953125],[-65.17588806152342,51.82120132446289],[-65.18918609619139,51.82254409790039],[-65.20096588134766,51.82429885864258],[-65.20906829833983,51.82548141479492],[-65.21943664550781,51.82626724243164],[-65.23107147216797,51.82062530517578],[-65.23780059814453,51.82037353515625],[-65.24344635009766,51.82424545288086],[-65.24823760986328,51.829471588134766],[-65.2557144165039,51.838478088378906],[-65.2586898803711,51.84780502319336],[-65.25761413574219,51.8519287109375],[-65.25601959228516,51.86250305175781],[-65.25516510009766,51.87309646606445],[-65.25691223144531,51.879154205322266],[-65.26707458496094,51.8827018737793],[-65.27593231201172,51.8838996887207],[-65.28710174560547,51.884239196777344],[-65.2981948852539,51.885501861572266],[-65.30953979492188,51.88353729248046],[-65.31511688232422,51.87908935546875],[-65.31916809082031,51.875057220458984],[-65.32492065429688,51.86830139160156],[-65.3268814086914,51.86235809326172],[-65.32831573486327,51.8536262512207],[-65.32925415039062,51.84164810180664],[-65.33489227294922,51.83627700805663],[-65.34013366699219,51.83597564697265],[-65.3451919555664,51.83797073364258],[-65.35160064697266,51.84185791015625],[-65.35439300537108,51.8442497253418],[-65.35969543457031,51.85272216796875],[-65.36358642578125,51.860225677490234],[-65.3693618774414,51.86270904541015],[-65.37056732177734,51.86643981933594],[-65.37381744384766,51.87253952026367],[-65.38665008544922,51.88031005859374],[-65.3974609375,51.88524627685547],[-65.40441131591797,51.89191818237304],[-65.39940643310545,51.898696899414055],[-65.3883056640625,51.90714263916015],[-65.37397003173828,51.91872787475586],[-65.36353302001953,51.92811584472656],[-65.35457611083984,51.93754959106445],[-65.34696197509766,51.94886779785156],[-65.3470230102539,51.95764923095703],[-65.34770202636717,51.960323333740234],[-65.34851837158202,51.96342849731445],[-65.3508529663086,51.96756362915039],[-65.35224151611327,51.972076416015625],[-65.35281372070312,51.97482681274414],[-65.3533706665039,51.97980880737305],[-65.35515594482422,51.9857292175293],[-65.35560607910156,51.989837646484375],[-65.35626983642578,51.99102783203125],[-65.35884857177734,51.99618911743163],[-65.36448669433594,52.000518798828125],[-65.37113952636719,52.00164413452148],[-65.3765869140625,51.99903869628906],[-65.38060760498047,51.99546432495117],[-65.38613128662108,51.99193572998047],[-65.39250183105469,51.9870491027832],[-65.4040298461914,51.983238220214844],[-65.41141510009766,51.9843864440918],[-65.41485595703124,51.988182067871094],[-65.4176254272461,51.99103927612305],[-65.42103576660156,51.99529647827148],[-65.42376708984375,51.99861526489258],[-65.42721557617188,52.002410888671875],[-65.43073272705078,52.005290985107415],[-65.43577575683594,52.00775146484375],[-65.44082641601561,52.01021194458008],[-65.4459457397461,52.011749267578125],[-65.45166778564453,52.01515197753906],[-65.45668029785156,52.01807403564453],[-65.45942687988281,52.02138900756836],[-65.4640121459961,52.02983856201172],[-65.4679946899414,52.03642272949219],[-65.47113037109375,52.044368743896484],[-65.474365234375,52.050933837890625],[-65.47689056396484,52.05701446533203],[-65.47856903076172,52.06445312499999],[-65.4801025390625,52.0737419128418],[-65.48117065429686,52.07931900024414],[-65.48074340820312,52.08485031127929],[-65.48017883300781,52.092227935791016],[-65.48114013671875,52.099185943603516],[-65.48360443115234,52.1061897277832],[-65.48477935791016,52.110382080078125],[-65.48995208740234,52.11145782470703],[-65.4938735961914,52.109260559082024],[-65.50089263916016,52.105770111083984],[-65.50794982910156,52.10181427001953],[-65.51197814941406,52.098236083984375],[-65.5176010131836,52.09331512451172],[-65.52169036865234,52.08881378173828],[-65.52421569824219,52.08518981933594],[-65.52681732177734,52.08064651489258],[-65.53015899658203,52.07612228393555],[-65.53214263916016,52.06970977783203],[-65.53402709960938,52.06468200683594],[-65.53590393066406,52.05965423583984],[-65.53768157958984,52.05601119995117],[-65.54322814941406,52.0520133972168],[-65.54339599609375,52.051902770996094],[-65.54873657226562,52.0484733581543],[-65.55496215820312,52.04541778564453],[-65.56033325195312,52.043724060058594],[-65.56805419921875,52.04071044921875],[-65.57733154296875,52.03681564331055],[-65.58868408203125,52.0352897644043],[-65.59469604492188,52.03499984741211],[-65.6028823852539,52.03569030761719],[-65.60950469970703,52.037261962890625],[-65.61620330810547,52.03791427612305],[-65.62075042724608,52.03711700439453],[-65.6261520385742,52.03495788574219],[-65.62710571289062,52.0322151184082],[-65.62890624999999,52.028106689453125],[-65.63145446777344,52.02402114868163],[-65.6324996948242,52.019893646240234],[-65.63524627685547,52.0130386352539],[-65.63724517822266,52.006168365478516],[-65.63910675048828,52.001136779785156],[-65.64083862304688,51.99795150756836],[-65.64257049560547,51.99476623535156],[-65.64656829833984,51.99118423461914],[-65.6520004272461,51.988563537597656],[-65.66020965576172,51.988792419433594],[-65.66822052001953,51.991783142089844],[-65.67182159423828,51.99372863769531],[-65.6782455444336,51.998062133789055],[-65.6795425415039,52.000869750976555],[-65.67913818359375,52.00640106201172],[-65.67877960205078,52.011470794677734],[-65.6751251220703,52.020610809326165],[-65.67156982421875,52.02836608886719],[-65.66658782958984,52.03515624999999],[-65.66234588623047,52.041969299316406],[-65.65807342529297,52.04924011230468],[-65.65373229980469,52.05743789672851],[-65.65020751953124,52.06473159790038],[-65.64830780029297,52.070220947265625],[-65.64800262451172,52.07437133789062],[-65.64746856689453,52.081748962402344],[-65.6470947265625,52.08681869506835],[-65.64805603027342,52.09423828125],[-65.64993286132812,52.09937286376953],[-65.6533432006836,52.104087829589844],[-65.6583480834961,52.107460021972656],[-65.66632080078125,52.11137390136719],[-65.67292785644531,52.113407135009766],[-65.67967224121094,52.113590240478516],[-65.68576049804688,52.11236953735351],[-65.69042205810545,52.11018753051758],[-65.69429779052734,52.10844421386718],[-65.69752502441406,52.10530090332031],[-65.70296478271484,52.1026725769043],[-65.70911407470703,52.10053253173828],[-65.71268463134766,52.09785842895508],[-65.71870422363281,52.0960578918457],[-65.72906494140625,52.09817886352539],[-65.74462890625,52.100894927978516],[-65.76103973388672,52.10224151611328],[-65.7729263305664,52.10393524169921],[-65.784912109375,52.104244232177734],[-65.80057525634766,52.10556411743164],[-65.81465148925781,52.10823440551758],[-65.82263946533203,52.11213302612304],[-65.8330078125,52.11424255371093],[-65.84696197509766,52.11874771118164],[-65.85676574707031,52.11806869506836],[-65.86734771728516,52.11694335937499],[-65.87360382080078,52.11294174194336],[-65.87846374511719,52.10751724243164],[-65.88484191894531,52.10166931152344],[-65.88969421386719,52.09624481201172],[-65.90062713623047,52.08958435058593],[-65.90885925292969,52.089786529541016],[-65.91921997070312,52.091888427734375],[-65.93416595458983,52.09271240234375],[-65.94763946533203,52.09303665161132],[-65.96051788330078,52.091033935546875],[-65.96668243408203,52.088409423828125],[-65.9708023071289,52.08250427246093],[-65.97111511230469,52.077430725097656],[-65.97154998779297,52.07051086425781],[-65.97503662109375,52.062744140625],[-65.98374938964844,52.05509948730469],[-65.99053955078124,52.0543327331543],[-66.0007553100586,52.05873107910156],[-66.0073471069336,52.061195373535156],[-66.01282501220703,52.06963729858398],[-66.01386260986328,52.07705307006836],[-66.01842498779297,52.0882453918457],[-66.02252197265625,52.09480667114258],[-66.02862548828124,52.09310150146484],[-66.04126739501953,52.09477996826171],[-66.05308532714844,52.09782409667968],[-66.06494903564453,52.09994506835937],[-66.0711898803711,52.09593200683593],[-66.08378601074219,52.09852600097656],[-66.08966827392577,52.10050964355469],[-66.09782409667967,52.10207748413086],[-66.09979248046875,52.10674285888671],[-66.09805297851562,52.11085891723633],[-66.09217071533203,52.1213493347168],[-66.0902328491211,52.12869644165039],[-66.091796875,52.140281677246094],[-66.09294128417969,52.14631271362304],[-66.09427642822266,52.14911651611328],[-66.09297180175781,52.1583251953125],[-66.09356689453125,52.173583984375],[-66.1004638671875,52.18390655517578],[-66.11034393310547,52.19475173950195],[-66.12017822265625,52.20652389526367],[-66.12786865234375,52.216400146484375],[-66.13065338134766,52.220157623291016],[-66.1326904296875,52.223899841308594],[-66.13993835449219,52.228679656982415],[-66.15037536621094,52.23029708862305],[-66.15789031982422,52.23046112060547],[-66.1646499633789,52.23060989379883],[-66.17608642578125,52.228084564208984],[-66.18424224853516,52.230110168457024],[-66.19304656982422,52.2339973449707],[-66.19737243652344,52.237327575683594],[-66.20390319824219,52.24162673950195],[-66.21056365966797,52.24361801147461],[-66.21421813964844,52.24554443359375],[-66.22510528564453,52.25270462036132],[-66.2313003540039,52.263004302978516],[-66.23900604248047,52.27333068847656],[-66.24230194091797,52.281719207763665],[-66.24648284912108,52.28781509399414],[-66.25354766845703,52.29627990722656],[-66.25515747070312,52.30786895751953],[-66.26295471191406,52.31681442260742],[-66.26898193359375,52.31694030761719],[-66.2765655517578,52.3161735534668],[-66.28193664550781,52.31443405151367],[-66.29667663574219,52.306880950927734],[-66.30380249023438,52.300559997558594],[-66.3093490600586,52.295589447021484],[-66.31198120117186,52.288711547851555],[-66.31449127197266,52.284141540527344],[-66.31283569335938,52.27301788330078],[-66.3104476928711,52.26141738891601],[-66.30510711669922,52.24883270263672],[-66.30135345458984,52.234893798828125],[-66.29759979248047,52.220954895019524],[-66.29224395751953,52.208831787109375],[-66.28878784179688,52.203216552734375],[-66.28421783447266,52.19064712524414],[-66.28094482421875,52.181804656982415],[-66.2791748046875,52.17298889160156],[-66.2825241088867,52.16659164428711],[-66.2904052734375,52.15982437133789],[-66.29901123046875,52.153533935546875],[-66.3089828491211,52.14958190917969],[-66.319580078125,52.147953033447266],[-66.3309555053711,52.1458740234375],[-66.3384780883789,52.145565032958984],[-66.34868621826172,52.15131378173828],[-66.35381317138672,52.153724670410156],[-66.36109161376953,52.15802764892578],[-66.37283325195312,52.16334533691406],[-66.38246154785156,52.16584396362305],[-66.38899993896484,52.1701316833496],[-66.38629150390625,52.178855895996094],[-66.38215637207031,52.18616485595703],[-66.3796615600586,52.19073486328124],[-66.3792724609375,52.19811630249023],[-66.38656616210938,52.20241928100585],[-66.39461517333984,52.20673751831055],[-66.40026092529297,52.213775634765625],[-66.4102783203125,52.22367477416992],[-66.4182357788086,52.229835510253906],[-66.42692565917967,52.23646926879882],[-66.43138885498047,52.23748016357421],[-66.43657684326172,52.23896789550781],[-66.44552612304688,52.24052429199218],[-66.45295715332031,52.24251556396484],[-66.47060394287108,52.25070190429687],[-66.47344970703125,52.253990173339844],[-66.48040008544922,52.26567459106445],[-66.48513793945312,52.276390075683594],[-66.48346710205078,52.27959060668945],[-66.47138214111328,52.280288696289055],[-66.45560455322266,52.2795295715332],[-66.4413070678711,52.27925491333007],[-66.44107055664062,52.28387069702148],[-66.44678497314452,52.28998947143555],[-66.45695495605469,52.29757690429687],[-66.4678726196289,52.30517578125],[-66.48334503173828,52.31239700317383],[-66.49365997314453,52.31721115112304],[-66.50028228759766,52.32057189941406],[-66.50440979003906,52.3285026550293],[-66.50614929199217,52.33916473388672],[-66.50196838378906,52.34740447998047],[-66.4972152709961,52.35193634033203],[-66.48422241210938,52.35539245605468],[-66.47128295898438,52.357460021972656],[-66.45917510986328,52.358154296875],[-66.45069122314453,52.3616943359375],[-66.44817352294922,52.366729736328125],[-66.44775390624999,52.37504196166992],[-66.4366683959961,52.38499450683594],[-66.42754364013672,52.386207580566406],[-66.4117431640625,52.38497924804687],[-66.39910888671875,52.38103485107422],[-66.3880386352539,52.376197814941406],[-66.37484741210938,52.3685417175293],[-66.36367797851562,52.36554718017578],[-66.3530502319336,52.36672210693359],[-66.3512954711914,52.371307373046875],[-66.35148620605467,52.38194274902344],[-66.355712890625,52.3875732421875],[-66.3653335571289,52.39146423339844],[-66.3731689453125,52.4004020690918],[-66.37862396240234,52.41160202026367],[-66.3750228881836,52.42262649536133],[-66.36768341064453,52.43265151977539],[-66.36651611328125,52.440486907958984],[-66.371337890625,52.44936752319335],[-66.37645721435547,52.452701568603516],[-66.38218688964844,52.45882797241211],[-66.38951110839844,52.463592529296875],[-66.39216613769531,52.4705810546875],[-66.38739013671875,52.4751091003418],[-66.38046264648438,52.47728729248046],[-66.37492370605469,52.4818000793457],[-66.3685302734375,52.4881477355957],[-66.3673324584961,52.4964485168457],[-66.36850738525389,52.502944946289055],[-66.3749771118164,52.509544372558594],[-66.37995910644531,52.515655517578125],[-66.38916778564453,52.52785873413086],[-66.39330291748047,52.535797119140625],[-66.38968658447266,52.54682540893555],[-66.38837432861328,52.557437896728516],[-66.39625549316406,52.566375732421875],[-66.40946197509766,52.57495880126953],[-66.42251586914062,52.58677291870117],[-66.43782806396484,52.599090576171875],[-66.44942474365234,52.609947204589844],[-66.45801544189453,52.62028503417969],[-66.45793151855467,52.63693618774414],[-66.44525909423828,52.64686965942383],[-66.43424224853516,52.6540641784668],[-66.42623901367188,52.661773681640625],[-66.4125518798828,52.67631530761719],[-66.39845275878906,52.68390655517578],[-66.39330291748047,52.68056869506836],[-66.38395690917969,52.67020797729492],[-66.37681579589844,52.66127777099609],[-66.3687515258789,52.65557098388672],[-66.36520385742188,52.650875091552734],[-66.35800170898438,52.64332962036133],[-66.35528564453125,52.63726425170898],[-66.34965515136719,52.62882614135742],[-66.3418960571289,52.61756896972656],[-66.33399963378906,52.60908508300781],[-66.32367706298828,52.603328704833984],[-66.31102752685547,52.598445892333984],[-66.30419921875,52.598308563232415],[-66.30096435546874,52.6019401550293],[-66.29600524902344,52.6092414855957],[-66.29251098632812,52.617496490478516],[-66.29574584960938,52.62773895263672],[-66.30237579345703,52.63157653808594],[-66.31053161621094,52.635440826416016],[-66.31082916259766,52.64377212524414],[-66.3096694946289,52.65114974975586],[-66.31139373779297,52.66136169433594],[-66.32081604003906,52.66987991333008],[-66.33118438720703,52.67517852783203],[-66.33860778808594,52.6785659790039],[-66.3482437133789,52.68338394165039],[-66.34868621826172,52.68940734863281],[-66.34668731689452,52.69815826416015],[-66.3456039428711,52.70414733886719],[-66.34346771240234,52.715675354003906],[-66.3445358276367,52.724021911621094],[-66.34513854980467,52.741153717041016],[-66.34117126464844,52.75819778442383],[-66.33805847167969,52.773406982421875],[-66.339111328125,52.78221893310547],[-66.3438949584961,52.7924919128418],[-66.34986877441406,52.794925689697266],[-66.35747528076172,52.79553985595703],[-66.3634262084961,52.79843521118164],[-66.3769760131836,52.80194091796875],[-66.39376068115234,52.80226516723633],[-66.39956665039062,52.80792999267578],[-66.39662170410156,52.820369720458984],[-66.40052032470703,52.833404541015625],[-66.41222381591797,52.84334945678711],[-66.41472625732422,52.854042053222656],[-66.41094207763672,52.867855072021484],[-66.4066390991211,52.87702941894531],[-66.3988037109375,52.88058090209961],[-66.39189910888672,52.88090896606445],[-66.38290405273438,52.87749481201172],[-66.37104797363281,52.870323181152344],[-66.35985565185545,52.86500930786132],[-66.34722137451172,52.858280181884766],[-66.33377075195312,52.85245895385742],[-66.31781005859375,52.85074996948242],[-66.30651092529297,52.84774398803711],[-66.29218292236328,52.844215393066406],[-66.28541564941406,52.842227935791016],[-66.28136444091797,52.846309661865234],[-66.2804183959961,52.849529266357415],[-66.28089904785156,52.85463333129883],[-66.27801513671875,52.86521911621094],[-66.2796401977539,52.877288818359375],[-66.28539276123047,52.88388442993164],[-66.29346466064453,52.89006805419922],[-66.3027114868164,52.90275192260742],[-66.30821990966797,52.91397476196289],[-66.31148529052734,52.92422485351562],[-66.31404113769531,52.933536529541016],[-66.31903839111327,52.94011688232422],[-66.3285140991211,52.94910430908203],[-66.33357238769531,52.95476150512695],[-66.33413696289062,52.95847702026367],[-66.33595275878906,52.967308044433594],[-66.33917999267578,52.978485107421875],[-66.34477996826172,52.988319396972656],[-66.35130310058594,52.99539566040039],[-66.36257934570312,52.99978256225586],[-66.36713409423828,53.00080108642578],[-66.37239837646484,53.00275421142578],[-66.3791275024414,53.006126403808594],[-66.38899230957031,53.00817108154297],[-66.4032974243164,53.0135383605957],[-66.41532897949219,53.01839828491211],[-66.42414093017578,53.0259780883789],[-66.43598175048828,53.0345344543457],[-66.44648742675781,53.039363861083984],[-66.4593734741211,53.04284667968749],[-66.47004699707031,53.04443359375],[-66.48402404785156,53.04145431518555],[-66.48423767089844,53.037288665771484],[-66.48379516601562,53.03079605102539],[-66.48472595214844,53.02757263183594],[-66.48738098144531,53.02067565917969],[-66.4898910522461,53.01655578613281],[-66.49240112304686,53.012432098388665],[-66.49340057373047,53.0078239440918],[-66.4952163696289,53.00230026245117],[-66.49781799316406,52.9963264465332],[-66.49962615966797,52.99080276489258],[-66.50157928466797,52.982505798339844],[-66.50436401367186,52.972835540771484],[-66.5079345703125,52.96271514892578],[-66.51241302490234,52.949832916259766],[-66.5177230834961,52.95085525512695],[-66.52265167236328,52.959739685058594],[-66.52777862548828,52.96446228027343],[-66.53616333007812,52.96554183959961],[-66.54163360595703,52.96332168579101],[-66.54486083984375,52.960140228271484],[-66.54729461669922,52.9574089050293],[-66.5499038696289,52.95097351074219],[-66.55553436279297,52.945518493652344],[-66.55952453613281,52.94234848022461],[-66.56566619873045,52.941993713378906],[-66.57897186279297,52.93621063232422],[-66.58892059326172,52.936382293701165],[-66.5986328125,52.941646575927734],[-66.60690307617188,52.945030212402344],[-66.6235885620117,52.94855499267578],[-66.63361358642578,52.94733810424805],[-66.64069366455078,52.943294525146484],[-66.64546203613281,52.93967056274414],[-66.64718627929688,52.9355354309082],[-66.64756774902344,52.927207946777344],[-66.6463394165039,52.92070770263672],[-66.64593505859375,52.91283416748047],[-66.64852905273438,52.906394958496094],[-66.65254974365234,52.902297973632805],[-66.65579986572264,52.89818954467773],[-66.65758514404295,52.892662048339844],[-66.65705108642578,52.88756561279297],[-66.65431213378906,52.88057327270508],[-66.65176391601562,52.869422912597656],[-66.65216827392578,52.86063766479492],[-66.65246582031249,52.854164123535156],[-66.65351104736328,52.84816360473633],[-66.65535736083984,52.841255187988274],[-66.65959930419922,52.832069396972656],[-66.66303253173828,52.82379913330078],[-66.6648941040039,52.81642532348632],[-66.659912109375,52.80847549438476],[-66.65425872802734,52.79866409301758],[-66.65398406982422,52.78801727294922],[-66.66622161865234,52.787296295166016],[-66.67996978759766,52.78706359863281],[-66.68836212158203,52.78720474243163],[-66.69615173339844,52.78363037109375],[-66.70169067382812,52.77909469604492],[-66.70964813232422,52.77182388305664],[-66.71905517578125,52.76596450805664],[-66.72661590576172,52.76747512817383],[-66.73539733886719,52.775943756103516],[-66.74630737304688,52.78815078735351],[-66.76048278808594,52.79578018188476],[-66.77555847167969,52.8001823425293],[-66.78705596923828,52.798973083496094],[-66.78721618652344,52.79527282714843],[-66.78433990478516,52.79106521606445],[-66.77996063232422,52.78636932373047],[-66.77345275878906,52.77793884277344],[-66.76905822753906,52.773704528808594],[-66.76183319091797,52.764339447021484],[-66.75708007812499,52.75084686279297],[-66.75740051269531,52.743450164794915],[-66.75765991210936,52.7374382019043],[-66.75641632080078,52.73094177246094],[-66.7568588256836,52.720771789550774],[-66.75651550292969,52.71105194091797],[-66.75695037841795,52.70088195800781],[-66.75869750976562,52.69582366943359],[-66.77290344238281,52.68402099609374],[-66.7845458984375,52.678653717041016],[-66.7928695678711,52.679710388183594],[-66.79479980468749,52.68806457519531],[-66.797607421875,52.69366073608398],[-66.801025390625,52.702964782714844],[-66.8051986694336,52.7122802734375],[-66.81307220458984,52.72443008422851],[-66.81946563720703,52.73563003540038],[-66.82221984863281,52.74261093139648],[-66.82574462890625,52.74960327148437],[-66.83155059814452,52.75663375854492],[-66.8367691040039,52.75948715209961],[-66.83484649658203,52.750667572021484],[-66.83531951904297,52.739112854003906],[-66.8370132446289,52.7349739074707],[-66.83943176269531,52.731773376464844],[-66.84854888916014,52.73237228393555],[-66.85694885253906,52.732036590576165],[-66.86378479003906,52.732601165771484],[-66.87366485595703,52.733211517333984],[-66.87531280517578,52.72999572753906],[-66.87393951416016,52.72627639770508],[-66.87028503417969,52.7225227355957],[-66.86673736572266,52.71599197387695],[-66.86176300048828,52.7071304321289],[-66.85981750488281,52.69877243041992],[-66.85952758789062,52.68720626831054],[-66.8644027709961,52.67941665649413],[-66.86981964111328,52.67718505859375],[-66.87737274169922,52.67868423461913],[-66.88566589355467,52.68065643310547],[-66.8938980102539,52.684017181396484],[-66.9013442993164,52.68828582763672],[-66.9065170288086,52.69206237792969],[-66.91168212890625,52.6963005065918],[-66.91604614257811,52.70145034790038],[-66.9179916381836,52.710269927978516],[-66.92085266113281,52.714935302734375],[-66.9266357421875,52.72288131713867],[-66.93180847167969,52.727119445800774],[-66.93702697753905,52.729969024658196],[-66.94230651855469,52.73143005371094],[-66.94524383544922,52.734249114990234],[-66.94728088378906,52.740753173828125],[-66.94788360595703,52.74492645263672],[-66.94845581054688,52.75001907348633],[-66.94908905029297,52.75326919555664],[-66.95045471191406,52.757450103759766],[-66.95561218261719,52.762149810791016],[-66.9616928100586,52.762699127197266],[-66.9693832397461,52.760955810546875],[-66.97704315185547,52.76013565063476],[-66.98701477050781,52.7584228515625],[-66.99624633789062,52.7562370300293],[-67.00617218017578,52.755908966064446],[-67.01764678955078,52.754676818847656],[-67.02772521972656,52.750186920166016],[-67.03302001953125,52.75117874145508],[-67.03823852539062,52.754486083984375],[-67.04106903076172,52.76054000854492],[-67.04761505126953,52.76941680908203],[-67.05267333984375,52.777347564697266],[-67.05699920654297,52.784343719482415],[-67.06208038330078,52.79180908203124],[-67.06493377685547,52.79739761352539],[-67.0646743774414,52.8047981262207],[-67.06210327148436,52.81262969970703],[-67.05879211425781,52.81998825073242],[-67.05391693115234,52.82825469970703],[-67.05052947998047,52.83746337890625],[-67.04866027832031,52.8471565246582],[-67.04915618896484,52.85456466674804],[-67.05503845214844,52.861122131347656],[-67.05949401855469,52.8648796081543],[-67.06231689453125,52.871395111083984],[-67.06523132324219,52.8755989074707],[-67.06971740722656,52.87843322753906],[-67.08273315429688,52.87813568115234],[-67.0911865234375,52.87685775756836],[-67.10354614257811,52.87331008911133],[-67.11746215820312,52.868858337402344],[-67.12599182128906,52.865264892578125],[-67.13381958007811,52.859806060791016],[-67.13854217529297,52.8557014465332],[-67.14021301269531,52.85155487060547],[-67.14114379882812,52.84647750854492],[-67.14131164550781,52.841392517089844],[-67.1469497680664,52.83266830444336],[-67.15623474121094,52.829078674316406],[-67.16385650634764,52.82963562011718],[-67.17070770263672,52.83018112182617],[-67.17753601074219,52.83164978027344],[-67.18587493896484,52.83359909057617],[-67.19346618652344,52.83507537841797],[-67.20179748535156,52.837486267089844],[-67.21391296386719,52.84086608886719],[-67.22834777832031,52.843345642089844],[-67.23275756835938,52.84894943237305],[-67.23933410644531,52.858741760253906],[-67.24592590332031,52.86806869506836],[-67.25874328613281,52.87422561645508],[-67.27084350585938,52.87852478027344],[-67.28452301025389,52.88145065307617],[-67.29666137695312,52.884822845458984],[-67.3111343383789,52.88682556152344],[-67.32252502441406,52.88972473144531],[-67.32931518554688,52.89303588867187],[-67.32992553710936,52.89859390258789],[-67.32905578613281,52.902286529541016],[-67.32815551757812,52.90690231323242],[-67.32722473144531,52.91291046142578],[-67.33014678955078,52.91756820678711],[-67.33504486083983,52.933815002441406],[-67.33248901367188,52.94304656982422],[-67.32854461669922,52.94717025756836],[-67.32070922851562,52.953102111816406],[-67.31134796142578,52.959022521972656],[-67.29979705810547,52.96075057983398],[-67.28680419921874,52.95968246459961],[-67.27454376220703,52.95954895019531],[-67.25767517089844,52.9598274230957],[-67.24385833740234,52.96059799194335],[-67.23612213134766,52.96282577514648],[-67.2291030883789,52.96691131591797],[-67.22432708740234,52.97241210937499],[-67.22332763671875,52.97980499267578],[-67.23089599609375,52.983131408691406],[-67.2437973022461,52.987442016601555],[-67.25674438476561,52.99036407470703],[-67.27664184570312,52.991973876953125],[-67.28971862792969,52.990726470947266],[-67.30433654785156,52.98902893066406],[-67.3166732788086,52.986846923828125],[-67.32740783691405,52.986961364746094],[-67.33271789550781,52.988868713378906],[-67.33876037597656,52.99216842651367],[-67.34251403808594,52.994983673095696],[-67.34624481201172,52.998725891113274],[-67.35074615478516,53.00247573852539],[-67.35523223876953,53.00668716430663],[-67.38343048095703,53.12687301635742],[-67.37638854980469,53.130970001220696],[-67.37098693847656,53.13137817382812],[-67.362548828125,53.13036727905273],[-67.35646057128906,53.12799072265624],[-67.34585571289062,53.121864318847656],[-67.33525085449219,53.11573791503906],[-67.3298568725586,53.11614227294922],[-67.32443237304688,53.11747741699219],[-67.31819915771484,53.12018966674804],[-67.3080062866211,53.126564025878906],[-67.29928588867188,53.13526916503906],[-67.297607421875,53.1398811340332],[-67.2917709350586,53.15510177612304],[-67.28538513183592,53.16244125366211],[-67.27911376953125,53.16607666015625],[-67.2713851928711,53.16691970825195],[-67.26061248779297,53.16633605957031],[-67.2491455078125,53.16343307495117],[-67.24080657958984,53.15917205810547],[-67.23319244384766,53.156307220458984],[-67.22633361816406,53.15391540527344],[-67.21491241455078,53.14961624145508],[-67.20650482177734,53.14766693115234],[-67.2010726928711,53.14899444580078],[-67.18638610839842,53.150672912597656],[-67.17560577392577,53.15054702758789],[-67.16647338867188,53.14719772338867],[-67.16275024414062,53.14344787597656],[-67.15823364257812,53.14015197753906],[-67.14852142333984,53.1312370300293],[-67.14176940917969,53.126060485839844],[-67.13642883300781,53.12460708618164],[-67.12873840332031,53.12451171875],[-67.11872100830078,53.12485122680664],[-67.10791778564453,53.12564468383788],[-67.09866333007812,53.12599182128906],[-67.08707427978516,53.127235412597656],[-67.0816879272461,53.127166748046875],[-67.07098388671875,53.125179290771484],[-67.06352233886719,53.11859893798828],[-67.06231689453125,53.10932159423828],[-67.06642150878906,53.101966857910156],[-67.0680923461914,53.09828186035156],[-67.07215881347656,53.091854095458984],[-67.07456207275389,53.08910369873047],[-67.0770492553711,53.08404541015625],[-67.0724868774414,53.08259582519531],[-67.06487274169922,53.08064651489258],[-67.0572509765625,53.078697204589844],[-67.05039978027344,53.07675552368164],[-67.04357147216797,53.0743522644043],[-67.03746032714844,53.07334518432617],[-67.0267333984375,53.0722770690918],[-67.01824951171875,53.07308959960937],[-67.01360321044922,53.07395553588867],[-66.98552703857422,53.08468627929687],[-66.9799575805664,53.08970260620117],[-66.97705841064453,53.10540771484374],[-66.9776840209961,53.109119415283196],[-66.97745513916014,53.11513900756836],[-66.97801971435547,53.12070083618164],[-66.9755859375,53.12390899658203],[-66.97006225585938,53.12753677368163],[-66.96453094482422,53.131168365478516],[-66.958984375,53.135257720947266],[-66.95496368408203,53.13983154296875],[-66.95626831054688,53.14587020874023],[-66.96082305908202,53.147789001464844],[-66.96851348876953,53.14789199829101],[-66.99396514892578,53.167694091796875],[-66.9907455444336,53.17135238647461],[-66.98517608642578,53.17591094970703],[-66.97967529296875,53.178611755371094],[-66.97111511230469,53.180809020996094],[-66.96265411376953,53.20061111450195],[-66.96790313720702,53.20438766479492],[-66.97007751464844,53.20812225341797],[-66.9691162109375,53.21320724487304],[-66.96814727783203,53.21828842163086],[-66.96800231933594,53.22199249267578],[-66.96710968017578,53.2252197265625],[-66.96614074707031,53.23030471801758],[-66.96601867675781,53.233543395996094],[-66.96734619140625,53.23912048339844],[-66.97026062011719,53.24379348754882],[-66.9708023071289,53.24982452392578],[-66.97145080566406,53.253074645996094],[-66.96826171875,53.25580978393554],[-66.96420288085936,53.26084899902344],[-66.96084594726561,53.26775360107421],[-66.95914459228514,53.27190017700195],[-66.95501708984375,53.27878952026367],[-66.94930267333984,53.28658676147461],[-66.94509887695312,53.29533004760742],[-66.94799041748047,53.30046844482421],[-66.9516372680664,53.30607604980469],[-66.95752716064453,53.31403350830078],[-66.96737670898438,53.31926727294922],[-66.97428131103516,53.32075119018555],[-66.98579406738281,53.32322692871094],[-66.99954223632812,53.32804489135742],[-67.00798034667969,53.330013275146484],[-67.00631713867188,53.33323287963867],[-67.00457763671875,53.338306427001946],[-66.99972534179686,53.34379959106445],[-66.99561309814453,53.3502311706543],[-66.99380493164062,53.35715866088867],[-66.9896774291992,53.36405563354492],[-66.98094940185547,53.369495391845696],[-66.97394561767578,53.37032699584961],[-66.96385955810547,53.37065124511719],[-66.94909667968749,53.3718376159668],[-66.94515228271484,53.373638153076165],[-66.94180297851561,53.38007736206055],[-66.93846893310547,53.38605499267578],[-66.92821502685547,53.39054489135742],[-66.9101791381836,53.395851135253906],[-66.89757537841797,53.4007682800293],[-66.89272308349608,53.40579605102539],[-66.8886947631836,53.409446716308594],[-66.88444519042969,53.41865539550781],[-66.88968658447266,53.42336273193359],[-66.90123748779297,53.42538452148437],[-66.91569519042969,53.43254089355468],[-66.91786193847656,53.436744689941406],[-66.91752624511719,53.445083618164055],[-66.91793823242188,53.45435714721679],[-66.92076873779297,53.46134948730469],[-66.92816162109374,53.470726013183594],[-66.93659210205078,53.47362518310547],[-66.94197082519531,53.47509002685546],[-66.94815063476561,53.476104736328125],[-66.95515441894531,53.475738525390625],[-66.96367645263672,53.476318359375],[-66.9706802368164,53.4759521484375],[-66.97615814208984,53.47509765625],[-66.9831771850586,53.474266052246094],[-66.98860931396484,53.474342346191406],[-66.99147033691406,53.48086929321289],[-66.99137115478516,53.483646392822266],[-66.99126434326172,53.486427307128906],[-66.9918441772461,53.49153518676758],[-66.99787139892578,53.49671173095703],[-67.00477600097656,53.499122619628906],[-67.0101089477539,53.50197601318359],[-67.01000213623047,53.504756927490234],[-67.01214599609375,53.509883880615234],[-67.0174331665039,53.51412582397461],[-67.02117919921874,53.51788330078125],[-67.0302734375,53.52449417114258],[-67.0393829345703,53.5306396484375],[-67.04766082763672,53.53816223144531],[-67.0615463256836,53.54158782958984],[-67.0700912475586,53.54216003417969],[-67.07789611816405,53.54133224487305],[-67.089599609375,53.540550231933594],[-67.10054016113281,53.539295196533196],[-67.11228179931639,53.53712463378906],[-67.12394714355469,53.537269592285156],[-67.13397979736328,53.53970718383789],[-67.1401596069336,53.54117202758789],[-67.14787292480469,53.543121337890625],[-67.15796661376953,53.543704986572266],[-67.16732025146483,53.54335021972656],[-67.17665863037108,53.543460845947266],[-67.18672180175781,53.54497146606445],[-67.19599914550781,53.546932220458984],[-67.20213317871094,53.549785614013665],[-67.20681762695312,53.549373626708984],[-67.21532440185545,53.55086135864257],[-67.22545623779297,53.55051040649414],[-67.23721313476562,53.5478630065918],[-67.24402618408203,53.55396270751953],[-67.25479125976562,53.55825424194336],[-67.26021575927734,53.55924224853515],[-67.2679672241211,53.56025314331054],[-67.27726745605469,53.561744689941406],[-67.28578186035156,53.563228607177734],[-67.29431915283203,53.56424331665039],[-67.30367279052733,53.563880920410156],[-67.31376647949217,53.56491088867187],[-67.31832122802734,53.568668365478516],[-67.3197021484375,53.574710845947266],[-67.32417297363281,53.58171081542969],[-67.32714080810547,53.58684158325195],[-67.33312988281249,53.595245361328125],[-67.33920288085938,53.60087203979492],[-67.34991455078124,53.60793685913086],[-67.35832977294922,53.61358261108398],[-67.36756134033203,53.61784744262695],[-67.37603759765625,53.621639251708984],[-67.38136291503906,53.62632751464844],[-67.38341522216795,53.63701248168945],[-67.38317108154297,53.64582061767578],[-67.3860626220703,53.65419387817383],[-67.39061737060547,53.65887451171875],[-67.3951187133789,53.66541290283203],[-67.39730834960938,53.670997619628906],[-67.39794921875,53.67610549926758],[-67.40320587158203,53.68403625488281],[-67.40676116943358,53.69705581665039],[-67.40740203857422,53.70216369628906],[-67.40800476074219,53.70866012573242],[-67.40785980224608,53.71422576904297],[-67.40928649902344,53.71934127807617],[-67.41702270507812,53.72219467163086],[-67.424072265625,53.721797943115234],[-67.43035888671875,53.720462799072266],[-67.43663787841797,53.71959686279296],[-67.44844818115234,53.71645736694336],[-67.45392608642577,53.71604537963867],[-67.46095275878906,53.71657180786133],[-67.47032928466797,53.71665573120117],[-67.47729492187499,53.71950149536133],[-67.4857940673828,53.72328567504883],[-67.48957061767578,53.72888183593749],[-67.49334716796875,53.73401641845703],[-67.5040512084961,53.74431228637695],[-67.51254272460938,53.7490234375],[-67.52111053466797,53.75048828125],[-67.5312271118164,53.752891540527344],[-67.53748321533203,53.75294494628906],[-67.54608917236328,53.75301361083984],[-67.55937957763672,53.75358581542969],[-67.57186126708983,53.75507736206054],[-67.58594512939453,53.75518798828125],[-67.5921630859375,53.75709533691406],[-67.59130859375,53.76033401489258],[-67.58654022216797,53.76354217529297],[-67.58099365234375,53.766746520996094],[-67.57540130615234,53.77180480957031],[-67.57447814941406,53.77782440185547],[-67.57439422607422,53.78153610229492],[-67.57182312011719,53.791255950927734],[-67.56466674804688,53.79629898071289],[-67.55683135986328,53.79623794555664],[-67.5474624633789,53.794769287109375],[-67.53968048095703,53.79285049438476],[-67.53343963623047,53.791404724121094],[-67.52088165283203,53.792694091796875],[-67.51769256591797,53.79498291015625],[-67.51368713378906,53.798660278320305],[-67.50886535644531,53.8037223815918],[-67.5000991821289,53.80967712402343],[-67.48968505859375,53.81886291503906],[-67.4863052368164,53.828575134277344],[-67.48304748535156,53.833648681640625],[-67.48372650146483,53.83782958984375],[-67.49146270751953,53.84207534790039],[-67.50238037109375,53.844486236572266],[-67.50940704345703,53.84593963623047],[-67.51807403564453,53.844158172607415],[-67.52664947509766,53.84654998779297],[-67.53205871582031,53.8498420715332],[-67.53511810302734,53.85311508178711],[-67.53820800781249,53.85546112060547],[-67.54679107666016,53.857383728027344],[-67.55531311035155,53.86209487915039],[-67.56301879882812,53.868186950683594],[-67.57074737548828,53.87335205078125],[-67.5800552368164,53.8785285949707],[-67.58934783935547,53.88417053222656],[-67.59156799316406,53.89021682739258],[-67.58902740478516,53.8985481262207],[-67.58807373046875,53.90596389770508],[-67.591796875,53.915271759033196],[-67.60331726074217,53.927425384521484],[-67.61185455322266,53.932594299316406],[-67.62435150146484,53.93640136718749],[-67.64083099365234,53.93791198730469],[-67.65023803710938,53.93937301635742],[-67.65251159667969,53.94356536865234],[-67.64838409423828,53.952816009521484],[-67.64824676513672,53.95977783203125],[-67.65593719482422,53.96818542480469],[-67.66606140136717,53.97336196899414],[-67.67699432373047,53.97761535644531],[-67.68719482421875,53.979541778564446],[-67.69583892822266,53.980064392089844],[-67.70367431640625,53.981971740722656],[-67.70757293701172,53.98385620117187],[-67.71228027343749,53.98481369018554],[-67.71936798095703,53.984859466552734],[-67.73641204833984,53.999820709228516],[-67.7426528930664,54.003108978271484],[-67.75593566894531,54.00876235961913],[-67.76849365234375,54.01162338256835],[-67.77950286865234,54.01261901855469],[-67.79205322265625,54.01594161987305],[-67.80145263671875,54.01924514770508],[-67.80452728271484,54.023902893066406],[-67.79893493652344,54.02851104736328],[-67.79177856445312,54.03218078613281],[-67.78541564941405,54.03539276123047],[-67.78065490722656,54.03768539428711],[-67.77586364746094,54.0409049987793],[-67.77262878417969,54.045528411865234],[-67.77248382568358,54.05387878417969],[-67.77079010009766,54.060832977294915],[-67.76994323730469,54.0640754699707],[-67.76431274414062,54.070075988769524],[-67.75785827636719,54.07792663574219],[-67.75460815429688,54.083011627197266],[-67.75210571289062,54.090885162353516],[-67.75357055664061,54.09693145751953],[-67.75826263427733,54.0997428894043],[-67.76692962646484,54.10072708129883],[-67.78028869628906,54.10451889038086],[-67.79046630859375,54.109683990478516],[-67.79356384277344,54.11341857910156],[-67.79581451416016,54.12085723876953],[-67.79484558105469,54.13106536865234],[-67.79391479492186,54.1394157409668],[-67.7898483276367,54.14635467529297],[-67.78263854980469,54.15188217163085],[-67.7739028930664,54.1536865234375],[-67.75963592529297,54.155921936035156],[-67.74774932861328,54.15677642822265],[-67.73667907714842,54.156707763671875],[-67.72325897216797,54.15568923950195],[-67.70902252197266,54.15559768676758],[-67.6971435546875,54.15644836425781],[-67.68446350097656,54.157752990722656],[-67.67101287841797,54.158123016357415],[-67.66229248046875,54.15899276733398],[-67.65196228027344,54.16123962402344],[-67.64078521728516,54.166263580322266],[-67.6343765258789,54.1699333190918],[-67.63114166259766,54.173160552978516],[-67.62548065185545,54.17915344238281],[-67.6197509765625,54.187931060791016],[-67.61720275878906,54.195804595947266],[-67.615478515625,54.202293395996094],[-67.61135864257812,54.20969009399414],[-67.61124420166016,54.214981079101555],[-67.6143341064453,54.22021484375],[-67.61600494384766,54.222774505615234],[-67.61778259277344,54.225311279296875],[-67.61965942382812,54.227821350097656],[-67.62164306640625,54.23030471801758],[-67.62371826171875,54.23276138305664],[-67.62589263916016,54.235191345214844],[-67.62816619873047,54.237586975097656],[-67.63053894042969,54.239952087402344],[-67.63300323486328,54.24228286743164],[-67.63555908203125,54.24457550048828],[-67.63821411132812,54.2468376159668],[-67.64095306396484,54.24905776977539],[-67.64385223388672,54.251216888427734],[-67.6468734741211,54.2533073425293],[-67.65003204345702,54.255332946777344],[-67.65331268310547,54.257286071777344],[-67.6567153930664,54.25917053222656],[-67.66024017333984,54.26097869873047],[-67.66387176513672,54.26271057128906],[-67.66761016845702,54.26436233520507],[-67.67144775390625,54.26593017578125],[-67.67538452148438,54.26741790771484],[-67.67941284179688,54.26881408691406],[-67.68352508544922,54.27012634277344],[-67.6877212524414,54.2713508605957],[-67.69198608398438,54.27248001098633],[-67.69631958007812,54.27351760864257],[-67.70072174072266,54.27445983886719],[-67.7051773071289,54.27531051635742],[-67.70968627929688,54.27606201171875],[-67.7142333984375,54.27671432495117],[-67.71881866455078,54.27726745605469],[-67.72344207763672,54.27772521972656],[-67.73259735107422,54.27796173095703],[-67.73722839355469,54.27837371826172],[-67.7417984008789,54.27898025512695],[-67.74627685546874,54.27977752685547],[-67.75064849853516,54.280765533447266],[-67.75489044189453,54.28193283081055],[-67.75897216796874,54.28327941894531],[-67.76287841796875,54.284793853759766],[-67.76609802246094,54.28678131103515],[-67.76866912841797,54.289066314697266],[-67.77051544189453,54.29158401489258],[-67.7715835571289,54.29425048828125],[-67.7718276977539,54.2969856262207],[-67.77125549316406,54.29970169067383],[-67.7698745727539,54.30231857299804],[-67.7677230834961,54.30475616455078],[-67.76628875732422,54.30773925781249],[-67.76446533203125,54.310264587402344],[-67.76213073730469,54.31264114379883],[-67.75933837890624,54.314842224121094],[-67.75611877441406,54.31683349609375],[-67.75251770019531,54.31858825683594],[-67.74858856201172,54.32007980346679],[-67.74235534667969,54.3199577331543],[-67.73767089843749,54.32011032104492],[-67.73302459716797,54.32047653198242],[-67.72843933105467,54.32104873657226],[-67.72393798828125,54.32183074951172],[-67.71955871582031,54.32280731201172],[-67.71399688720703,54.32440567016601],[-67.71012115478516,54.325942993164055],[-67.70658874511719,54.32774353027344],[-67.70344543457031,54.32978057861328],[-67.70074462890625,54.33202362060547],[-67.69852447509766,54.33443832397461],[-67.69682312011719,54.33699035644531],[-67.69564819335936,54.33964157104492],[-67.69503021240234,54.342361450195305],[-67.69497680664062,54.34510040283203],[-67.69548797607422,54.34782791137695],[-67.69591522216797,54.352195739746094],[-67.69633483886717,54.354927062988274],[-67.6968765258789,54.35765075683594],[-67.69754028320311,54.36036682128906],[-67.69831848144531,54.36307144165038],[-67.69921874999999,54.36576080322265],[-67.70024108886719,54.36843872070312],[-67.70137786865234,54.37110137939453],[-67.70263671875,54.373741149902344],[-67.70401000976562,54.376365661621094],[-67.70549774169922,54.37896728515625],[-67.70709991455078,54.38154602050781],[-67.7088165283203,54.384098052978516],[-67.71064758300781,54.38662338256836],[-67.71258544921875,54.389122009277344],[-67.71463775634766,54.3915901184082],[-67.716796875,54.39402770996094],[-67.71906280517578,54.39643096923828],[-67.721435546875,54.39879608154297],[-67.72390747070312,54.40113067626953],[-67.72648620605469,54.40342330932617],[-67.72916412353516,54.405677795410156],[-67.73194122314453,54.40789031982421],[-67.73643493652344,54.4107666015625],[-67.73926544189453,54.41295623779297],[-67.74180603027344,54.41526794433594],[-67.74402618408203,54.41768264770508],[-67.74593353271484,54.420188903808594],[-67.74749755859375,54.42277526855469],[-67.74872589111328,54.42542266845703],[-67.74960327148438,54.428115844726555],[-67.7501220703125,54.430843353271484],[-67.75028228759766,54.433582305908196],[-67.75008392333983,54.43632507324218],[-67.74952697753906,54.43904495239258],[-67.74861145019531,54.44173812866211],[-67.74735260009764,54.44437789916992],[-67.74574279785156,54.446956634521484],[-67.74380493164062,54.44945526123047],[-67.74156951904297,54.45164108276367],[-67.73595428466797,54.45346450805664],[-67.73036193847656,54.45435714721679],[-67.72399139404297,54.45384979248046],[-67.7176513671875,54.45195388793945],[-67.7113265991211,54.44912338256836],[-67.70584106445312,54.44444274902344],[-67.69790649414061,54.44253158569335],[-67.6891860961914,54.440147399902344],[-67.68122100830078,54.440093994140625],[-67.67642974853516,54.44052505493164],[-67.6699981689453,54.443267822265625],[-67.66514587402344,54.44648742675781],[-67.6650619506836,54.45066833496094],[-67.6680908203125,54.458587646484375],[-67.67113494873047,54.46557617187499],[-67.67100524902344,54.47208023071289],[-67.66847229003905,54.479034423828125],[-67.65139770507812,54.49424362182617],[-67.64652252197266,54.49839401245117],[-67.64094543457031,54.497886657714844],[-67.63780212402344,54.495540618896484],[-67.63309478759766,54.491790771484375],[-67.6236801147461,54.48428726196289],[-67.6166000366211,54.47958755493164],[-67.61265563964842,54.47770309448242],[-67.60549926757812,54.47671890258789],[-67.60072326660156,54.476219177246094],[-67.5911178588867,54.4775390625],[-67.58150482177734,54.47932052612305],[-67.57267761230467,54.4815788269043],[-67.56385040283203,54.483829498291016],[-67.55103302001952,54.486053466796875],[-67.5390396118164,54.48688507080078],[-67.52789306640625,54.485862731933594],[-67.51358032226562,54.48388671875],[-67.50083923339844,54.48284912109375],[-67.48652648925781,54.48086929321289],[-67.47933959960938,54.48126983642578],[-67.46336364746094,54.48205947875976],[-67.45213317871094,54.484283447265625],[-67.44165802001953,54.48790740966797],[-67.43681335449219,54.49018478393555],[-67.43030548095703,54.494773864746094],[-67.42124938964844,54.504913330078125],[-67.42101287841797,54.51374053955078],[-67.42308044433594,54.525840759277344],[-67.42124176025389,54.53465270996094],[-67.4140396118164,54.53505325317383],[-67.4004898071289,54.53399658203125],[-67.38859558105469,54.53063201904297],[-67.37911987304688,54.52682113647461],[-67.3680648803711,54.52206802368164],[-67.35625457763672,54.51637649536133],[-67.34760284423828,54.51164627075195],[-67.33577728271483,54.506416320800774],[-67.32474517822266,54.50165939331055],[-67.31046295166016,54.49872589111328],[-67.29618072509766,54.495792388916016],[-67.28267669677734,54.49378967285156],[-67.26837158203125,54.491783142089844],[-67.25799560546875,54.49167251586914],[-67.24917602539062,54.49296951293945],[-67.2435073852539,54.495697021484375],[-67.2370147705078,54.498878479003906],[-67.23212432861328,54.502079010009766],[-67.22957611083984,54.50669860839844],[-67.22615814208984,54.51362991333008],[-67.22587585449219,54.52245712280273],[-67.2289810180664,54.5252799987793],[-67.23915100097656,54.531898498535156],[-67.2493438720703,54.538047790527344],[-67.25794219970703,54.54418182373047],[-67.26184844970703,54.54701232910156],[-67.26799011230469,54.55497741699219],[-67.27188873291016,54.55827331542969],[-67.27490997314453,54.563880920410156],[-67.27633666992188,54.56947326660156],[-67.27700805664062,54.573665618896484],[-67.2743453979492,54.58200454711913],[-67.26406097412108,54.58319091796875],[-67.25418853759766,54.58179473876953],[-67.24684143066406,54.5820426940918],[-67.23777770996094,54.583740234375],[-67.23259735107422,54.586666107177734],[-67.2269058227539,54.589393615722656],[-67.22119903564452,54.592586517333984],[-67.21788024902344,54.59626770019531],[-67.21356964111328,54.60551452636719],[-67.20697021484375,54.61148452758789],[-67.20133972167967,54.61235046386719],[-67.18856048583984,54.61127853393554],[-67.1742172241211,54.60925674438476],[-67.15975952148438,54.61048126220703],[-67.15164947509766,54.613643646240234],[-67.14672851562499,54.61684036254882],[-67.14088439941406,54.62374496459961],[-67.1350326538086,54.63064956665039],[-67.12993621826172,54.638954162597656],[-67.1248550415039,54.64679718017578],[-67.11826324462889,54.651832580566406],[-67.11337280273438,54.65409851074218],[-67.10772705078125,54.65496063232422],[-67.09233856201172,54.65942382812499],[-67.08744812011719,54.661685943603516],[-67.08171844482422,54.66487121582031],[-67.0759811401367,54.66805648803711],[-67.07176971435547,54.673583984375],[-67.06830596923828,54.680511474609375],[-67.06315612792969,54.68974685668945],[-67.06050872802734,54.696224212646484],[-67.06178283691406,54.705074310302734],[-67.06477355957031,54.71115493774414],[-67.06859588623047,54.71631622314453],[-67.07879638671875,54.72295379638672],[-67.08979797363281,54.72959518432617],[-67.0984115600586,54.73574447631835],[-67.10552215576172,54.73908615112305],[-67.11422729492188,54.74291229248047],[-67.12609100341797,54.748165130615234],[-67.13800048828125,54.75249099731445],[-67.15228271484375,54.757774353027344],[-67.16417694091797,54.7625617980957],[-67.1784439086914,54.768768310546875],[-67.19023132324219,54.77680587768555],[-67.2019271850586,54.7880973815918],[-67.21117401123047,54.800289154052734],[-67.2204360961914,54.81248474121094],[-67.22968292236328,54.82514190673828],[-67.24853515625,54.84022521972656],[-67.27212524414062,54.85861587524413],[-67.28945159912108,54.87181854248047],[-67.30598449707031,54.885009765625],[-67.3240280151367,54.90193557739258],[-67.3420639038086,54.91979217529297],[-67.35935974121092,54.93577194213867],[-67.37989807128906,54.95225143432617],[-67.38934326171875,54.961177825927734],[-67.3956069946289,54.96821594238281],[-67.40266418457031,54.97618865966797],[-67.4057388305664,54.981800079345696],[-67.40806579589844,54.98554229736328],[-67.40887451171875,54.98554992675781],[-67.41364288330078,54.98838806152344],[-67.4176254272461,54.99074935913086],[-67.4223861694336,54.994049072265625],[-67.42793273925781,54.998287200927734],[-67.42985534667969,55.00110626220703],[-67.43494415283203,55.008583068847656],[-67.43879699707031,55.015594482421875],[-67.44098663330078,55.024456024169915],[-67.44153594970703,55.03422927856445],[-67.44056701660156,55.040271759033196],[-67.44036102294922,55.04771423339844],[-67.43936920166016,55.054683685302734],[-67.43431854248047,55.06161880493164],[-67.42770385742188,55.066211700439446],[-67.42110443115234,55.07033920288086],[-67.41292572021484,55.073055267333984],[-67.4072265625,55.07393264770508],[-67.3925552368164,55.07659149169921],[-67.38035583496094,55.0778694152832],[-67.37062072753906,55.07777786254883],[-67.3601303100586,55.0762825012207],[-67.35202026367188,55.076202392578125],[-67.34071350097656,55.0746955871582],[-67.33103942871094,55.0727424621582],[-67.32218170166016,55.07079315185546],[-67.31085968017577,55.06974792480469],[-67.30195617675781,55.0691909790039],[-67.2850570678711,55.065296173095696],[-67.2778091430664,55.06382751464844],[-67.27056884765625,55.0618896484375],[-67.26420593261719,55.058101654052734],[-67.2603759765625,55.05107879638672],[-67.2620849609375,55.04830551147461],[-67.26544189453125,55.044620513916016],[-67.27124786376952,55.04049301147461],[-67.2754135131836,55.03681564331055],[-67.2820816040039,55.03083419799805],[-67.28461456298828,55.02760314941406],[-67.28472900390625,55.02388381958008],[-67.27835083007812,55.02056121826172],[-67.27190399169922,55.01956176757812],[-67.26385498046875,55.01808166503906],[-67.25746154785156,55.01568984985351],[-67.25188446044922,55.012840270996094],[-67.24713134765625,55.0095329284668],[-67.2440414428711,55.00484466552734],[-67.24175262451172,55.000633239746094],[-67.23711395263672,54.99407196044922],[-67.22764587402344,54.98652267456054],[-67.21883392333984,54.984100341796875],[-67.21164703369139,54.981231689453125],[-67.20526885986328,54.978370666503906],[-67.198974609375,54.97318267822265],[-67.19112396240234,54.96611785888672],[-67.18800354003906,54.962825775146484],[-67.18087005615234,54.95855712890625],[-67.16896057128906,54.95237731933594],[-67.15940856933594,54.94807815551758],[-67.14911651611328,54.94191360473633],[-67.14360809326172,54.93766403198242],[-67.1318130493164,54.928688049316406],[-67.11997985839844,54.92063903808593],[-67.10489654541016,54.91348266601562],[-67.08663940429688,54.904888153076165],[-67.0676040649414,54.895816802978516],[-67.05499267578125,54.887752532958984],[-67.04633331298828,54.88206481933594],[-67.0370101928711,54.87264633178711],[-67.02928161621094,54.86370849609375],[-67.02394104003906,54.85573196411132],[-67.01535034179688,54.84864807128906],[-67.00753021240234,54.84249877929687],[-67.0003890991211,54.83961868286133],[-66.99011993408203,54.834365844726555],[-66.98149871826172,54.828208923339844],[-66.97761535644531,54.82443618774413],[-66.96905517578125,54.816883087158196],[-66.95728302001953,54.80928421020508],[-66.94861602783203,54.80451583862305],[-66.94382476806639,54.803524017333984],[-66.93181610107422,54.801963806152344],[-66.92147064208984,54.799034118652344],[-66.90469360351562,54.79601287841796],[-66.89506530761719,54.795413970947266],[-66.88054656982422,54.796138763427734],[-66.86846160888672,54.79643630981445],[-66.86290740966797,54.79449462890624],[-66.85980987548828,54.79166030883789],[-66.8534927368164,54.788780212402344],[-66.83455657958984,54.78013610839844],[-66.81880187988281,54.772464752197266],[-66.80377197265624,54.766666412353516],[-66.78640747070311,54.759429931640625],[-66.77377319335938,54.754127502441406],[-66.75161743164062,54.7463493347168],[-66.73900604248045,54.74104309082031],[-66.72469329833984,54.73756408691406],[-66.70806884765625,54.7321891784668],[-66.68834686279297,54.72444152832031],[-66.67411804199219,54.71956253051757],[-66.66930389404297,54.71948623657226],[-66.66352844238281,54.72264862060547],[-66.66337585449219,54.72590255737305],[-66.66632080078124,54.731529235839844],[-66.67013549804688,54.73577499389648],[-66.6762924194336,54.74145507812499],[-66.6817398071289,54.745262145996094],[-66.69126892089844,54.74773788452148],[-66.6983642578125,54.750640869140625],[-66.70787811279297,54.75358200073242],[-66.71810913085938,54.758392333984375],[-66.72673034667969,54.76317596435547],[-66.73607635498047,54.76982879638672],[-66.74275207519531,54.78202438354492],[-66.74633026123047,54.791847229003906],[-66.74821472167967,54.80350112915038],[-66.74535369873045,54.81322479248046],[-66.73893737792969,54.81266403198242],[-66.73347473144531,54.80885696411132],[-66.72816467285156,54.801799774169915],[-66.7203369140625,54.797027587890625],[-66.70933532714844,54.79127502441406],[-66.70140075683594,54.788825988769524],[-66.69355773925781,54.784515380859375],[-66.68186950683594,54.776424407958984],[-66.6715087890625,54.77439880371093],[-66.6657485961914,54.77709960937499],[-66.662353515625,54.780765533447266],[-66.65739440917969,54.78347396850586],[-66.64850616455077,54.78425979614258],[-66.64129638671875,54.7836799621582],[-66.63652038574217,54.78267288208008],[-66.62928009033203,54.782554626464844],[-66.62036895751953,54.783802032470696],[-66.61216735839844,54.786922454833984],[-66.60552978515625,54.79100036621094],[-66.60295104980469,54.794212341308594],[-66.60028839111328,54.799285888671875],[-66.59925079345703,54.8039207458496],[-66.59651184082031,54.810386657714844],[-66.5970458984375,54.815975189208984],[-66.6048812866211,54.820293426513665],[-66.61038208007812,54.82317352294922],[-66.61891174316406,54.829830169677734],[-66.62586212158203,54.83598709106445],[-66.63053131103516,54.83932113647461],[-66.63759613037108,54.84315872192383],[-66.64538574218749,54.8488655090332],[-66.6490478515625,54.85636901855469],[-66.65484619140625,54.86995315551758],[-66.66004180908203,54.87934112548828],[-66.6652603149414,54.88826370239258],[-66.67195892333983,54.900001525878906],[-66.67635345458984,54.90937423706054],[-66.68075561523438,54.91875076293945],[-66.68513488769531,54.92858886718749],[-66.68892669677734,54.93376541137695],[-66.69509887695312,54.939910888671875],[-66.7021713256836,54.94421005249023],[-66.71308135986328,54.952754974365234],[-66.72153472900389,54.96219253540039],[-66.72769927978516,54.96879959106445],[-66.73386383056639,54.975410461425774],[-66.7378158569336,54.977333068847656],[-66.74330139160156,54.981136322021484],[-66.75202941894531,54.98499298095703],[-66.76071166992188,54.989776611328125],[-66.76375579833984,54.99401092529296],[-66.75701141357422,54.99995803833008],[-66.74968719482422,55.00077819824218],[-66.73995971679688,55.001094818115234],[-66.73104095458984,55.00142288208007],[-66.724609375,55.00039291381836],[-66.71578216552734,54.99886322021484],[-66.70777893066406,54.99687576293945],[-66.6989517211914,54.99534225463867],[-66.68292999267578,54.9918327331543],[-66.67008209228516,54.989768981933594],[-66.65404510498047,54.98672103881836],[-66.63965606689453,54.983230590820305],[-66.62667083740234,54.98395156860351],[-66.62002563476562,54.98756408691406],[-66.62149810791016,54.99038314819336],[-66.62542724609375,54.992774963378906],[-66.63162994384766,54.99845886230469],[-66.63866424560547,55.001041412353516],[-66.63957977294922,55.00138092041015],[-66.6483154296875,55.00477981567382],[-66.65548706054688,55.00721740722656],[-66.661865234375,55.00918197631836],[-66.67139434814453,55.013057708740234],[-66.67935180664062,55.01597595214844],[-66.6911392211914,55.02360534667969],[-66.69894409179688,55.02977752685547],[-66.70366668701172,55.03264617919922],[-66.71649169921875,55.03563690185547],[-66.72126007080078,55.03757095336913],[-66.72588348388672,55.042762756347656],[-66.73214721679688,55.04751205444335],[-66.73748779296875,55.05457305908203],[-66.73407745361327,55.05824279785156],[-66.72823333740234,55.0618782043457],[-66.72162628173828,55.06456756591797],[-66.71586608886719,55.066341400146484],[-66.70903778076172,55.07368469238281],[-66.7120361328125,55.07884979248047],[-66.71759796142578,55.08126068115234],[-66.72704315185545,55.08745574951172],[-66.73090362548828,55.091705322265625],[-66.73715209960938,55.096920013427734],[-66.74185180664062,55.10071563720703],[-66.74977111816406,55.10502624511718],[-66.75833129882812,55.113067626953125],[-66.76213073730469,55.118709564208984],[-66.76663970947266,55.12668991088867],[-66.7695083618164,55.135108947753906],[-66.76600646972656,55.14064407348633],[-66.75917053222656,55.147987365722656],[-66.75228881835938,55.1562614440918],[-66.7520980834961,55.16044998168945],[-66.75348663330077,55.165592193603516],[-66.75735473632812,55.169837951660156],[-66.75851440429688,55.18009567260742],[-66.75475311279297,55.19121170043945],[-66.74787902832031,55.199024200439446],[-66.74447631835938,55.202232360839844],[-66.73540496826172,55.20488739013671],[-66.73065185546875,55.202022552490234],[-66.72669219970703,55.19963455200195],[-66.71794891357422,55.195308685302734],[-66.71002960205078,55.19053268432617],[-66.70524597167967,55.188594818115234],[-66.69961547851562,55.187110900878906],[-66.68917846679688,55.18415451049804],[-66.6795654296875,55.181209564208984],[-66.67069244384766,55.1796760559082],[-66.66571807861328,55.18145751953125],[-66.66307830810547,55.18560791015624],[-66.66450500488281,55.1898193359375],[-66.6690444946289,55.19687271118163],[-66.67523956298828,55.2034912109375],[-66.6814956665039,55.208709716796875],[-66.68936920166016,55.214420318603516],[-66.69486236572266,55.21869659423828],[-66.70506286621094,55.226768493652344],[-66.71459197998047,55.23203659057617],[-66.72581481933594,55.23593521118163],[-66.74104309082031,55.24128723144531],[-66.75379180908203,55.24753189086914],[-66.7633056640625,55.25326156616211],[-66.76537322998047,55.254505157470696],[-66.76727294921875,55.25564956665039],[-66.77684020996094,55.26044845581055],[-66.78799438476562,55.26620101928711],[-66.79670715332031,55.271915435791016],[-66.80301666259766,55.27666473388672],[-66.810791015625,55.28515624999999],[-66.81453704833984,55.292659759521484],[-66.81314849853516,55.29715347290039],[-66.80957794189453,55.303619384765625],[-66.80367279052734,55.30772018432617],[-66.7969512939453,55.31180572509765],[-66.79106903076172,55.31544113159179],[-66.78507232666016,55.32140350341797],[-66.78153991699219,55.326934814453125],[-66.77721405029297,55.33198928833008],[-66.77136993408203,55.334693908691406],[-66.76325225830078,55.33363723754883],[-66.75679016113281,55.33213806152343],[-66.74882507324219,55.32782363891601],[-66.7392349243164,55.32347869873047],[-66.73133087158203,55.31822967529297],[-66.72418975830078,55.313926696777344],[-66.71299743652344,55.30909347534179],[-66.70187377929688,55.302860260009766],[-66.69561004638672,55.29763412475586],[-66.6894760131836,55.28961944580078],[-66.68498229980469,55.28163146972656],[-66.68121337890625,55.27551651000976],[-66.67981719970703,55.27083969116211],[-66.67515563964844,55.26610565185547],[-66.6639633178711,55.2617301940918],[-66.65509796142578,55.25971984863281],[-66.6485824584961,55.259613037109375],[-66.63382720947266,55.261226654052734],[-66.62560272216797,55.26248550415039],[-66.61659240722656,55.26326370239258],[-66.60755920410155,55.26450729370117],[-66.60104370117188,55.26439666748047],[-66.59143829345703,55.26097106933593],[-66.58602905273438,55.25529479980469],[-66.5798873901367,55.24820327758789],[-66.57445526123047,55.242984771728516],[-66.5634536743164,55.235347747802734],[-66.5556640625,55.22869110107422],[-66.54861450195312,55.22344589233398],[-66.53767395019531,55.21487045288085],[-66.53063201904297,55.209625244140625],[-66.52216339111328,55.20063018798828],[-66.51372528076172,55.191165924072266],[-66.50999450683594,55.1850471496582],[-66.50697326660156,55.18080520629883],[-66.50316619873047,55.176082611083984],[-66.49783325195312,55.16946792602539],[-66.48849487304688,55.16184616088867],[-66.48301696777344,55.15802383422851],[-66.47350311279297,55.15365982055664],[-66.46477508544922,55.149776458740234],[-66.45613098144531,55.14449691772461],[-66.4482421875,55.14016342163085],[-66.44358825683594,55.1363525390625],[-66.43887329101562,55.133472442626946],[-66.42788696289062,55.12761688232422],[-66.42081451416014,55.12329864501953],[-66.41528320312499,55.12040710449219],[-66.40902709960938,55.11610412597656],[-66.40279388427734,55.11133575439453],[-66.39818572998047,55.10659408569336],[-66.39119720458984,55.10088348388672],[-66.38347625732422,55.09375762939453],[-66.37647247314453,55.088504791259766],[-66.37097930908203,55.08514404296875],[-66.36075592041016,55.07937240600586],[-66.35372924804688,55.0745849609375],[-66.34534454345703,55.06511688232422],[-66.3406753540039,55.061771392822266],[-66.33448028564453,55.05653381347656],[-66.32430267333984,55.05028915405273],[-66.31488037109375,55.04499053955078],[-66.30635070800781,55.03831100463867],[-66.2970962524414,55.03022003173828],[-66.28776550292969,55.02352142333984],[-66.28008270263672,55.01639175415039],[-66.27566528320312,55.00886154174805],[-66.2713394165039,55.000892639160156],[-66.27055358886719,54.99945068359375],[-66.26600646972656,54.99424362182617],[-66.26156616210938,54.98717498779297],[-66.25788116455078,54.98105239868164],[-66.2516098022461,54.9776725769043],[-66.24678802490234,54.97711181640625],[-66.24029541015625,54.977447509765625],[-66.23140716552734,54.977272033691406],[-66.22251892089844,54.97709274291992],[-66.21034240722656,54.977783203125],[-66.20150756835938,54.9766731262207],[-66.1861572265625,54.97636413574219],[-66.17732238769531,54.97525405883789],[-66.16606903076172,54.974090576171875],[-66.15083312988281,54.97191619873047],[-66.14220428466797,54.967552185058594],[-66.13525390625,54.96228790283203],[-66.13053131103516,54.9603271484375],[-66.12348937988281,54.956459045410156],[-66.11705780029297,54.955860137939446],[-66.10829162597656,54.95381164550781],[-66.1012954711914,54.94947814941406],[-66.0943832397461,54.94374465942383],[-66.0881576538086,54.93989181518555],[-66.08020782470703,54.93785858154297],[-66.0715103149414,54.934883117675774],[-66.05722045898436,54.93085479736328],[-66.04849243164062,54.92833709716797],[-66.03890228271484,54.926734924316406],[-66.03067779541016,54.92888259887695],[-66.0256576538086,54.931568145751946],[-66.01830291748047,54.932804107666016],[-66.00933074951172,54.93400192260742],[-65.99974060058594,54.93239593505859],[-65.99495697021484,54.93136215209961],[-65.98462677001953,54.92880630493164],[-65.97664642333984,54.92723083496094],[-65.96861267089844,54.92658615112305],[-65.96054077148438,54.92640686035156],[-65.9507064819336,54.92851638793945],[-65.94331359863281,54.93021011352539],[-65.93437194824219,54.930938720703125],[-65.92059326171875,54.931556701660156],[-65.91094207763672,54.93087387084961],[-65.90613555908203,54.9302978515625],[-65.90132141113281,54.92972183227539],[-65.89573669433592,54.92866516113281],[-65.88699340820312,54.92660140991211],[-65.8798599243164,54.924575805664055],[-65.87437438964844,54.922119140625],[-65.86669921875,54.916358947753906],[-65.8628921508789,54.91301345825195],[-65.8591537475586,54.90873336791992],[-65.85857391357422,54.90546417236328],[-65.8558349609375,54.89841842651367],[-65.8556137084961,54.89003372192383],[-65.85762023925781,54.88449478149414],[-65.85842895507812,54.87287902832031],[-65.8592758178711,54.86079788208008],[-65.86227416992188,54.852493286132805],[-65.86363220214844,54.84461212158203],[-65.86244964599608,54.83853530883789],[-65.8603515625,54.83383560180664],[-65.85646057128906,54.831878662109375],[-65.84947967529297,54.82799530029297],[-65.83860778808594,54.82215499877929],[-65.82770538330078,54.81678009033203],[-65.81996154785156,54.81240844726562],[-65.81153869628906,54.80615997314453],[-65.8006820678711,54.80031585693359],[-65.79072570800781,54.79309844970703],[-65.77686309814453,54.78438949584961],[-65.75989532470703,54.774208068847656],[-65.74918365478516,54.76650238037109],[-65.74620819091797,54.7631721496582],[-65.74327087402344,54.759376525878906],[-65.73882293701172,54.75415039062499],[-65.73444366455078,54.74799346923828],[-65.72877502441406,54.73761749267578],[-65.72610473632812,54.73010635375976],[-65.7248764038086,54.72496032714844],[-65.72183990478516,54.722557067871094],[-65.7172622680664,54.71918869018555],[-65.7111587524414,54.714847564697266],[-65.70030212402344,54.709461212158196],[-65.69406127929688,54.70698165893555],[-65.6859359741211,54.70817184448242],[-65.67935180664062,54.71033477783203],[-65.67272186279297,54.71296310424805],[-65.66522979736328,54.71649551391601],[-65.65853118896484,54.720046997070305],[-65.65238952636719,54.726871490478516],[-65.64764404296875,54.73652267456055],[-65.64059448242188,54.744720458984375],[-65.63563537597656,54.746456146240234],[-65.6302261352539,54.743526458740234],[-65.62718963623047,54.74112319946288],[-65.62416076660156,54.73871994018555],[-65.6187515258789,54.73579025268555],[-65.6141128540039,54.733345031738274],[-65.60940551757812,54.731826782226555],[-65.60309600830078,54.73027038574219],[-65.59598541259764,54.72869110107422],[-65.58558654785156,54.72795867919922],[-65.57194519042969,54.727603912353516],[-65.55831146240234,54.72724914550781],[-65.54948425292969,54.72701644897461],[-65.53497314453125,54.72756576538086],[-65.52450561523436,54.72775650024414],[-65.51411437988281,54.72701644897461],[-65.50528717041016,54.72677993774414],[-65.4948959350586,54.726036071777344],[-65.48370361328125,54.72527313232422],[-65.47327423095702,54.72499084472656],[-65.46743774414062,54.72762680053711],[-65.46075439453125,54.73070526123047],[-65.45560455322266,54.73475265502929],[-65.44862365722656,54.741546630859375],[-65.44415283203125,54.74700927734375],[-65.43877410888672,54.75384521484375],[-65.43653106689453,54.761695861816406],[-65.43902587890625,54.770606994628906],[-65.44568634033203,54.777767181396484],[-65.45568084716797,54.78362274169922],[-65.46640014648438,54.79042816162109],[-65.4754867553711,54.79765319824219],[-65.4797134399414,54.805213928222656],[-65.47889709472656,54.815433502197266],[-65.47317504882812,54.82645034790039],[-65.4637680053711,54.83317947387695],[-65.45530700683592,54.83807373046875],[-65.44857025146484,54.84161376953125],[-65.43634796142578,54.84314727783203],[-65.4299087524414,54.842971801757805],[-65.4278335571289,54.83872604370117],[-65.42522430419922,54.831207275390625],[-65.41778564453125,54.82355499267578],[-65.41326904296875,54.819705963134766],[-65.40870666503906,54.816322326660156],[-65.40074157714842,54.815174102783196],[-65.3927001953125,54.8149528503418],[-65.3813705444336,54.81557083129882],[-65.3709945678711,54.81435012817383],[-65.3643341064453,54.813301086425774],[-65.35340118408203,54.818294525146484],[-65.34838104248047,54.82048034667969],[-65.34073638916016,54.824913024902344],[-65.33644104003906,54.82804870605469],[-65.33290100097656,54.83167266845703],[-65.31722259521484,54.83884811401367],[-65.3084487915039,54.83890533447265],[-65.30138397216797,54.83459091186523],[-65.29393005371092,54.83485412597656],[-65.28631591796875,54.83869934082031],[-65.28132629394531,54.840415954589844],[-65.26913452148438,54.841453552246094],[-65.25614166259766,54.84246826171874],[-65.23988342285156,54.843849182128906],[-65.22930145263672,54.844932556152344],[-65.2227783203125,54.84566879272461],[-65.21295928955078,54.84724044799805],[-65.20381164550781,54.85022354125976],[-65.19962310791014,54.851959228515625],[-65.19857025146484,54.85472106933593],[-65.19899749755858,54.858924865722656],[-65.20175170898436,54.86412811279297],[-65.20439147949219,54.8707275390625],[-65.20562744140625,54.87495422363281],[-65.2061767578125,54.87776565551757],[-65.20503997802734,54.88145446777344],[-65.20055389404297,54.886444091796875],[-65.1950912475586,54.89326477050781],[-65.1912841796875,54.89966964721679],[-65.18670654296875,54.905586242675774],[-65.1856460571289,54.908348083496094],[-65.18011474609375,54.90673065185547],[-65.17216491699219,54.91155242919922],[-65.16046905517578,54.915863037109375],[-65.15287780761719,54.91936111450195],[-65.14661407470703,54.9261589050293],[-65.13606262207031,54.93562698364258],[-65.12562561035155,54.94369888305664],[-65.11544036865234,54.94898223876953],[-65.10631561279297,54.9515037536621],[-65.0973129272461,54.95262908935547],[-65.08915710449219,54.95331192016601],[-65.0811767578125,54.95214080810547],[-65.07641601562499,54.95106506347656],[-65.068603515625,54.94803237915039],[-65.05931091308592,54.94355773925781],[-65.05230712890625,54.940547943115234],[-65.04207611083983,54.93743896484375],[-65.03494262695312,54.93582534790039],[-65.0246353149414,54.93364334106445],[-65.0119857788086,54.930458068847656],[-65.00401306152342,54.92927932739258],[-64.99195861816406,54.92844009399414],[-64.97932434082031,54.92525100708008],[-64.97161102294922,54.92128372192382],[-64.96381378173828,54.918243408203125],[-64.95601654052734,54.91520309448242],[-64.94745635986328,54.91167449951172],[-64.94280242919922,54.90966415405273],[-64.93402099609375,54.90845489501953],[-64.91898345947266,54.90518569946289],[-64.91432189941406,54.90317153930664],[-64.90818786621094,54.899715423583984],[-64.90200805664062,54.896724700927734],[-64.89435577392578,54.89228820800781],[-64.88536834716795,54.885009765625],[-64.87950897216797,54.87876892089844],[-64.8711929321289,54.872913360595696],[-64.86368560791016,54.86708068847656],[-64.85725402832031,54.858489990234375],[-64.85462188720703,54.85234832763672],[-64.85382843017578,54.843936920166016],[-64.85039520263672,54.837772369384766],[-64.84498596191406,54.83526992797851],[-64.83850860595703,54.83552169799805],[-64.82957458496092,54.836162567138665],[-64.82148742675781,54.83636474609375],[-64.8094253540039,54.83596801757812],[-64.79428100585938,54.83407211303711],[-64.7856216430664,54.831924438476555],[-64.77464294433594,54.828765869140625],[-64.76531982421875,54.8251953125],[-64.7616195678711,54.82181167602538],[-64.75730895996094,54.81654357910156],[-64.75634765625,54.80998992919922],[-64.75582885742188,54.807178497314446],[-64.7581787109375,54.799808502197266],[-64.76038360595703,54.793827056884766],[-64.76415252685547,54.78836441040039],[-64.76801300048828,54.78197479248047],[-64.77338409423828,54.77656173706054],[-64.77790832519531,54.77159118652343],[-64.78426361083984,54.764350891113274],[-64.79047393798828,54.75850296020508],[-64.79592895507812,54.75216293334961],[-64.79893493652342,54.74620819091797],[-64.79783630371092,54.741050720214844],[-64.79254150390625,54.73761749267578],[-64.78630828857422,54.73554611206055],[-64.77847290039061,54.73342514038086],[-64.76983642578125,54.73127365112305],[-64.7603530883789,54.72956085205078],[-64.75251770019531,54.72743606567383],[-64.74384307861328,54.72574996948242],[-64.73355865478516,54.724006652832024],[-64.7208251953125,54.7226448059082],[-64.71035766601562,54.72275924682617],[-64.69498443603516,54.7236328125],[-64.68281555175781,54.72461700439453],[-64.67150115966797,54.72515869140625],[-64.65933227539061,54.726139068603516],[-64.64720916748047,54.726654052734375],[-64.632080078125,54.725200653076165],[-64.62100219726562,54.723419189453125],[-64.61227416992188,54.72218704223632],[-64.60039520263672,54.720375061035156],[-64.58677673339842,54.71989822387695],[-64.57805633544922,54.71866226196289],[-64.5732421875,54.7184944152832],[-64.56748962402344,54.719688415527344],[-64.56253814697266,54.72091293334961],[-64.5505599975586,54.72002410888671],[-64.54409790039062,54.72026062011719],[-64.53900146484375,54.72287368774414],[-64.53695678710938,54.726993560791016],[-64.54042053222656,54.73223876953125],[-64.54710388183594,54.73759841918945],[-64.5469741821289,54.74644470214844],[-64.54582977294922,54.74966430664062],[-64.53685760498045,54.7507438659668],[-64.5289840698242,54.74906539916992],[-64.52021026611328,54.74828720092773],[-64.51043701171875,54.74934005737305],[-64.50477600097655,54.7495994567871],[-64.49820709228516,54.75076293945312],[-64.49004364013672,54.75186920166015],[-64.48497772216797,54.7540168762207],[-64.47991180419922,54.75616455078125],[-64.47370147705078,54.76152801513672],[-64.47335052490234,54.76477813720703],[-64.47466278076172,54.77507400512695],[-64.47732543945312,54.78029251098633],[-64.47562408447266,54.78861618041992],[-64.46729278564453,54.79111099243164],[-64.45590209960938,54.79209899902344],[-64.4461669921875,54.79267883300781],[-64.4380874633789,54.792850494384766],[-64.42533874511719,54.79145431518555],[-64.41746520996094,54.7897720336914],[-64.40552520751953,54.78840255737305],[-64.39047241210938,54.785987854003906],[-64.38179779052734,54.784271240234375],[-64.36991119384766,54.78243637084961],[-64.35641479492188,54.78054046630859],[-64.34619140625,54.77829360961913],[-64.33521270751953,54.77555847167969],[-64.3282470703125,54.77296829223632],[-64.32064056396484,54.76895523071288],[-64.31639862060547,54.76367187499999],[-64.3155746459961,54.75665664672851],[-64.31373596191406,54.75146102905273],[-64.31105041503906,54.7467041015625],[-64.30546569824217,54.73904037475586],[-64.30101776123047,54.73561096191406],[-64.29481506347655,54.73351287841797],[-64.28930664062499,54.732376098632805],[-64.28059387207031,54.73111343383789],[-64.2711410522461,54.7293586730957],[-64.26488494873045,54.727725982666016],[-64.2539291381836,54.724979400634766],[-64.24302673339844,54.7217674255371],[-64.23827362060547,54.72112274169921],[-64.23346710205078,54.72093963623046],[-64.2190933227539,54.71992111206055],[-64.21343231201172,54.72016906738281],[-64.20376586914062,54.72026443481445],[-64.19495391845702,54.71992492675781],[-64.19046783447266,54.71695327758789],[-64.19020080566406,54.712284088134766],[-64.18929290771484,54.70619583129883],[-64.18758392333984,54.7000732421875],[-64.18331909179688,54.69524765014648],[-64.17658996582031,54.6907958984375],[-64.17061614990234,54.686836242675774],[-64.16314697265625,54.681888580322266],[-64.1548843383789,54.67690658569336],[-64.14736938476562,54.672420501708984],[-64.13825225830078,54.66787338256836],[-64.13010406494139,54.661964416503906],[-64.12493133544922,54.65803146362305],[-64.1194076538086,54.65036392211913],[-64.11600494384766,54.64510345458984],[-64.11494445800781,54.640403747558594],[-64.11581420898438,54.63298416137695],[-64.11630249023438,54.62881088256836],[-64.11717224121092,54.62139129638671],[-64.11600494384766,54.617618560791016],[-64.11324310302734,54.613784790039055],[-64.10787200927734,54.611709594726555],[-64.09764862060547,54.60990524291992],[-64.09222412109375,54.60829544067383],[-64.08024597167969,54.607818603515625],[-64.0699691772461,54.60647964477538],[-64.06523132324219,54.605823516845696],[-64.05587005615233,54.60358810424805],[-64.04724884033203,54.60184478759765],[-64.04103088378906,54.6001968383789],[-64.03087615966797,54.59792709350585],[-64.02454376220703,54.59720611572265],[-64.0156478881836,54.5977783203125],[-64.00835418701172,54.59841537475586],[-63.99741744995118,54.60263442993164],[-63.98584747314453,54.60542297363281],[-63.97438812255859,54.607288360595696],[-63.96463775634765,54.60828781127929],[-63.952491760253906,54.609188079833984],[-63.94307708740234,54.60740661621093],[-63.93606185913086,54.60572052001953],[-63.92596435546875,54.60297775268555],[-63.91735076904296,54.60122299194336],[-63.90782928466797,54.600364685058594],[-63.90303802490234,54.600166320800774],[-63.89710998535156,54.602718353271484],[-63.89345932006836,54.606292724609375],[-63.88724517822265,54.611160278320305],[-63.88290786743163,54.61377716064453],[-63.87509155273437,54.61857604980469],[-63.86750030517578,54.62152099609374],[-63.86156463623047,54.62406921386719],[-63.85483169555663,54.626583099365234],[-63.84895324707031,54.62866973876953],[-63.83650970458984,54.631874084472656],[-63.831539154052734,54.633064270019524],[-63.82246398925781,54.635013580322266],[-63.81264114379883,54.6364631652832],[-63.80202102661133,54.63787841796875],[-63.79403305053711,54.63753890991211],[-63.78598403930664,54.637664794921875],[-63.779651641845696,54.636932373046875],[-63.77337646484374,54.6357307434082],[-63.762481689453125,54.632938385009766],[-63.750972747802734,54.62871932983398],[-63.738426208496094,54.6263198852539],[-63.73321914672851,54.629356384277344],[-63.729671478271484,54.631999969482415],[-63.72502517700195,54.63692855834961],[-63.72307205200195,54.63964080810547],[-63.72014236450195,54.643707275390625],[-63.71892929077148,54.64691925048828],[-63.721771240234375,54.64983749389648],[-63.726890563964844,54.6537857055664],[-63.732192993164055,54.656341552734375],[-63.7388572692871,54.660823822021484],[-63.746883392333984,54.6672248840332],[-63.75429153442383,54.67220306396484],[-63.761409759521484,54.67949676513672],[-63.76716232299805,54.68486785888672],[-63.77286148071289,54.690704345703125],[-63.776958465576165,54.696468353271484],[-63.78043365478515,54.70081329345703],[-63.78625106811524,54.705718994140625],[-63.79452896118164,54.710262298583984],[-63.804237365722656,54.71626663208008],[-63.813209533691406,54.721771240234375],[-63.82646560668946,54.731651306152344],[-63.838470458984375,54.738677978515625],[-63.84991455078124,54.74381637573242],[-63.86381912231446,54.748592376708984],[-63.87086105346679,54.750282287597656],[-63.881107330322266,54.752105712890625],[-63.892105102539055,54.754425048828125],[-63.90166473388671,54.75528335571289],[-63.91271972656249,54.757137298583984],[-63.92257308959961,54.762203216552734],[-63.92515563964843,54.767436981201165],[-63.92613220214844,54.77260208129882],[-63.92298889160156,54.778533935546875],[-63.91898345947265,54.78489303588867],[-63.909988403320305,54.792449951171875],[-63.90213775634765,54.7972526550293],[-63.88740539550781,54.80550003051757],[-63.874099731445305,54.80868148803711],[-63.86349105834961,54.80963897705078],[-63.8546028137207,54.80973815917969],[-63.84009552001953,54.80959701538086],[-63.83423995971679,54.81121826171875],[-63.82987976074218,54.8138313293457],[-63.82596969604492,54.81926345825195],[-63.82578659057617,54.82717895507812],[-63.82565689086914,54.83463668823242],[-63.82805633544922,54.841262817382805],[-63.83453369140625,54.84759521484375],[-63.84032440185547,54.852962493896484],[-63.84341430664062,54.86055374145508],[-63.84196472167969,54.87214660644531],[-63.84183883666992,54.879600524902344],[-63.83987045288087,54.88884353637695],[-63.83600616455078,54.90034103393555],[-63.82875061035156,54.90656661987304],[-63.81856918334962,54.910335540771484],[-63.81309509277343,54.915237426757805],[-63.812625885009766,54.91894912719726],[-63.81698989868164,54.9228630065918],[-63.82577896118163,54.93022155761719],[-63.82818603515625,54.93685150146484],[-63.82270812988281,54.94175338745117],[-63.81746673583984,54.94479751586914],[-63.80479431152343,54.94892883300781],[-63.79500579833984,54.9494514465332],[-63.780384063720696,54.94976806640625],[-63.76996612548828,54.9488639831543],[-63.75668334960937,54.94503784179687],[-63.74823379516601,54.94141387939453],[-63.74146270751954,54.93739700317383],[-63.73313522338867,54.93284606933594],[-63.72171020507813,54.92722702026367],[-63.70948410034179,54.92157745361328],[-63.69496917724609,54.91489028930664],[-63.682064056396484,54.90827178955078],[-63.67202377319335,54.90457534790038],[-63.65697860717773,54.902061462402344],[-63.644966125488274,54.90107345581055],[-63.63438415527344,54.901546478271484],[-63.619415283203125,54.904624938964844],[-63.60760116577148,54.90830612182617],[-63.602222442626946,54.91226577758789],[-63.59672164916992,54.91715621948242],[-63.593814849853516,54.92076110839844],[-63.59078598022461,54.92529296875],[-63.58906173706055,54.932212829589844],[-63.589935302734375,54.93785095214843],[-63.593849182128906,54.94501495361328],[-63.59881591796875,54.95036697387695],[-63.59956741333008,54.95692825317383],[-63.595046997070305,54.96046447753906],[-63.58903884887695,54.96299743652344],[-63.581356048583984,54.96592712402344],[-63.57323837280273,54.972103118896484],[-63.57274627685547,54.97581100463867],[-63.57306289672851,54.98562240600586],[-63.57499313354492,54.989437103271484],[-63.5778465270996,54.99236297607422],[-63.578723907470696,54.99799728393555],[-63.58021163940429,54.99899673461914],[-63.580425262451165,55.000850677490234],[-63.58045196533204,55.0010986328125],[-63.58058547973633,55.002281188964844],[-63.58102798461913,55.00510025024414],[-63.583015441894524,55.008453369140625],[-63.58736419677734,55.01237487792968],[-63.59202575683594,55.01397705078125],[-63.59556579589844,55.01786422729492],[-63.59352493286132,55.02104187011719],[-63.59135437011719,55.02514648437499],[-63.58819580078125,55.03060531616211],[-63.58559799194336,55.03795623779297],[-63.58206558227539,55.04619979858398],[-63.58219528198242,55.05133819580078],[-63.58493423461914,55.05519104003906],[-63.59258270263672,55.05879211425781],[-63.598308563232415,55.06464004516601],[-63.60291290283203,55.066707611083984],[-63.613052368164055,55.069950103759766],[-63.61660385131836,55.07383728027343],[-63.6167984008789,55.07851028442383],[-63.612831115722656,55.08393478393555],[-63.610233306884766,55.091289520263665],[-63.60763168334961,55.09864044189453],[-63.60478591918945,55.10784912109375],[-63.60032272338868,55.11698532104492],[-63.59522628784179,55.124698638916016],[-63.58913803100585,55.133766174316406],[-63.58546829223633,55.13687133789062],[-63.57924270629882,55.14080047607422],[-63.575508117675774,55.14436721801758],[-63.567596435546875,55.14868927001953],[-63.56037139892578,55.15397262573242],[-63.55233383178711,55.15921783447265],[-63.542613983154304,55.164859771728516],[-63.53432083129883,55.17196273803711],[-63.53500747680664,55.178993225097656],[-63.54336166381836,55.18355941772461],[-63.55608367919922,55.18598556518554],[-63.56407165527344,55.18727111816406],[-63.56269836425781,55.191410064697266],[-63.55602645874023,55.19252014160156],[-63.546855926513665,55.19398498535156],[-63.53675079345704,55.19633865356445],[-63.52907562255859,55.19879913330078],[-63.52239990234376,55.199905395507805],[-63.51247787475585,55.20086669921875],[-63.50018310546875,55.201255798339844],[-63.48876571655273,55.20121383666992],[-63.474849700927734,55.2015266418457],[-63.463115692138665,55.20380401611328],[-63.45293807983398,55.20661544799805],[-63.443374633789055,55.210857391357415],[-63.43524551391602,55.216560363769524],[-63.427478790283196,55.225547790527344],[-63.42233276367187,55.23324966430664],[-63.41992187499999,55.244815826416016],[-63.422142028808594,55.252384185791016],[-63.42569351196288,55.25627899169922],[-63.43212890625,55.257034301757805],[-63.43943786621093,55.257362365722656],[-63.44937896728515,55.25640869140624],[-63.45762634277344,55.25584411621094],[-63.466880798339844,55.25392150878906],[-63.47775650024414,55.2520751953125],[-63.48632049560546,55.24918746948242],[-63.49325942993163,55.2462272644043],[-63.50176239013672,55.243804931640625],[-63.51425552368165,55.24202346801758],[-63.523937225341804,55.242919921875],[-63.53349304199219,55.2447395324707],[-63.53999328613281,55.245025634765625],[-63.54829788208007,55.24399185180664],[-63.5566062927246,55.24295425415039],[-63.566104888916016,55.2452392578125],[-63.57223129272461,55.24830627441406],[-63.57941818237305,55.24955368041992],[-63.59397506713868,55.25065612792969],[-63.60678863525391,55.25261306762695],[-63.61529541015624,55.25624847412109],[-63.624168395996094,55.25709915161133],[-63.637351989746094,55.25626754760742],[-63.6537857055664,55.25557327270508],[-63.6578369140625,55.2564811706543],[-63.664104461669915,55.25788497924805],[-63.6669921875,55.260807037353516],[-63.668758392333984,55.26601791381836],[-63.67004013061523,55.274940490722656],[-63.66930770874023,55.28050994873047],[-63.663578033447266,55.286800384521484],[-63.65664291381836,55.2897720336914],[-63.64727020263671,55.29263687133789],[-63.63445663452148,55.29675292968749],[-63.62445068359375,55.298187255859375],[-63.61619186401367,55.298763275146484],[-63.607810974121094,55.300270080566406],[-63.59686660766601,55.30259704589844],[-63.58285140991212,55.30338668823242],[-63.56652069091797,55.30314254760742],[-63.553314208984375,55.3039665222168],[-63.54418182373046,55.30496597290039],[-63.536296844482415,55.30881881713867],[-63.53472900390626,55.31435394287109],[-63.53848648071288,55.31685256958008],[-63.54793930053711,55.319602966308594],[-63.55720520019531,55.3237419128418],[-63.56797409057617,55.32888412475586],[-63.580631256103516,55.33223342895508],[-63.589027404785156,55.3368034362793],[-63.57585525512695,55.343154907226555],[-63.56000137329101,55.34525299072265],[-63.54101562499999,55.34627914428711],[-63.52603912353515,55.347942352294915],[-63.51275253295898,55.34921646118164],[-63.496337890625,55.34941101074219],[-63.4808006286621,55.34918212890625],[-63.45949935913085,55.349151611328125],[-63.444644927978516,55.34988021850586],[-63.43079757690429,55.349246978759766],[-63.42259216308594,55.349342346191406],[-63.41337203979492,55.35078811645508],[-63.398807525634766,55.35525894165038],[-63.388511657714844,55.358524322509766],[-63.374820709228516,55.3625602722168],[-63.35793685913085,55.365989685058594],[-63.34939193725586,55.36839294433593],[-63.34091567993165,55.370338439941406],[-63.33488082885742,55.37239456176758],[-63.327632904052734,55.37719345092773],[-63.32621765136719,55.38133239746094],[-63.3246726989746,55.38639831542969],[-63.325706481933594,55.39065170288086],[-63.33136367797851,55.3969841003418],[-63.33334732055663,55.40034484863281],[-63.33934020996093,55.404361724853516],[-63.34601593017578,55.40933990478515],[-63.35295867919921,55.4124641418457],[-63.358402252197266,55.41458511352539],[-63.367996215820305,55.41642761230469],[-63.3843765258789,55.41671371459961],[-63.39455795288085,55.41437911987305],[-63.40209960937499,55.41332244873046],[-63.411201477050774,55.412803649902344],[-63.42099380493164,55.41324996948242],[-63.432281494140625,55.41469955444335],[-63.43949508666992,55.41596221923828],[-63.452354431152344,55.41794204711914],[-63.46439743041992,55.419891357421875],[-63.4755630493164,55.42226028442383],[-63.48842620849609,55.42424392700195],[-63.50380325317382,55.42586517333984],[-63.51918411254882,55.427486419677734],[-63.5350112915039,55.42586135864258],[-63.54682159423829,55.42358398437499],[-63.56000518798828,55.42323303222656],[-63.57356262207031,55.42616653442382],[-63.58398437499999,55.42803192138672],[-63.59609985351562,55.42949676513672],[-63.60646057128906,55.431819915771484],[-63.61782836914062,55.43278503417969],[-63.63422012329101,55.43303298950195],[-63.64916229248046,55.431819915771484],[-63.65751647949219,55.43077850341797],[-63.665802001953125,55.430206298828125],[-63.67233276367187,55.43048858642578],[-63.682823181152344,55.43187713623047],[-63.69237518310547,55.43415451049805],[-63.69947814941406,55.43632888793945],[-63.70739364624023,55.43853759765625],[-63.714622497558594,55.439781188964844],[-63.719398498535156,55.440921783447266],[-63.726852416992195,55.44214248657226],[-63.73571777343751,55.443450927734375],[-63.74358367919922,55.446113586425774],[-63.755233764648445,55.451271057128906],[-63.765377044677734,55.45542907714843],[-63.77545928955079,55.460052490234375],[-63.78018569946288,55.46165084838867],[-63.78875732421876,55.46527481079101],[-63.79376220703125,55.471084594726555],[-63.79322433471679,55.47526550292969],[-63.78544998168945,55.47821044921875],[-63.78030395507812,55.47986602783203],[-63.77246475219726,55.48327255249023],[-63.76386642456055,55.486183166503906],[-63.75790405273437,55.48780059814453],[-63.75357437133788,55.48948669433594],[-63.74685287475587,55.49060821533203],[-63.734859466552734,55.49430847167969],[-63.72888946533203,55.49592590332031],[-63.717586517333984,55.500587463378906],[-63.7111930847168,55.505455017089844],[-63.702857971191406,55.5125732421875],[-63.69451904296874,55.519691467285156],[-63.688873291015625,55.52505874633788],[-63.6822280883789,55.53178024291992],[-63.67590332031249,55.54225540161133],[-63.67555999755859,55.55111312866211],[-63.681221008300774,55.564434051513665],[-63.68239212036132,55.57429122924805],[-63.68456649780273,55.58279037475586],[-63.683223724365234,55.5930061340332],[-63.68017196655274,55.60362243652344],[-63.680625915527344,55.60644531249999],[-63.68007278442382,55.61062240600586],[-63.68288803100585,55.62055206298828],[-63.68305969238281,55.63177108764648],[-63.68098831176758,55.634952545166016],[-63.67499160766601,55.636566162109375],[-63.665901184082024,55.63665008544922],[-63.65610885620117,55.635765075683594],[-63.6467056274414,55.63816833496094],[-63.64204406738281,55.642173767089844],[-63.640541076660156,55.647247314453125],[-63.642574310302734,55.650604248046875],[-63.64700698852539,55.6545295715332],[-63.65143966674805,55.6584587097168],[-63.65871047973633,55.65970230102539],[-63.6727409362793,55.659828186035156],[-63.68664932250977,55.66088485717773],[-63.69808959960937,55.661834716796875],[-63.70782852172851,55.663177490234375],[-63.7176284790039,55.66405487060547],[-63.72319793701171,55.66569137573242],[-63.73160171508788,55.664642333984375],[-63.75128936767578,55.6593894958496],[-63.765804290771484,55.65578842163086],[-63.769546508789055,55.658748626708984],[-63.76225280761718,55.6640510559082],[-63.75589370727538,55.66845703124999],[-63.74971389770508,55.67147064208984],[-63.742595672607415,55.675376892089844],[-63.735530853271484,55.67881774902343],[-63.73263931274414,55.681968688964844],[-63.72880554199219,55.686012268066406],[-63.72560882568359,55.69148635864258],[-63.722408294677734,55.69695663452148],[-63.720977783203125,55.701568603515625],[-63.7197265625,55.70478439331055],[-63.719940185546875,55.70946502685547],[-63.71875381469726,55.71221923828125],[-63.71664810180663,55.72194290161133],[-63.717437744140625,55.728515625],[-63.71893310546875,55.73605346679687],[-63.717315673828125,55.742061614990234],[-63.709869384765625,55.748291015625],[-63.705448150634766,55.75044250488281],[-63.68936538696288,55.75303649902344],[-63.681522369384766,55.75597381591797],[-63.67525863647461,55.75944900512695],[-63.66963958740235,55.76435089111328],[-63.66541671752929,55.771183013916016],[-63.66183090209961,55.77944183349609],[-63.66053009033203,55.789199829101555],[-63.664161682128906,55.7930908203125],[-63.672344207763665,55.79390335083008],[-63.68236541748047,55.793392181396484],[-63.69320678710937,55.79291534423828],[-63.70640563964844,55.7934684753418],[-63.72125244140625,55.794090270996094],[-63.735454559326165,55.79327774047851],[-63.745716094970696,55.79090118408203],[-63.75490951538086,55.790348052978516],[-63.75961685180663,55.79241180419922],[-63.763896942138665,55.7977294921875],[-63.76765823364258,55.80068969726562],[-63.77353286743164,55.80653762817383],[-63.77758026123047,55.81371307373047],[-63.77927017211914,55.81985855102539],[-63.77790069580078,55.82400894165039],[-63.77415466308593,55.83366394042968],[-63.772884368896484,55.84342575073242],[-63.777759552001946,55.85063552856445],[-63.789649963378906,55.86140441894531],[-63.796302795410156,55.86775207519531],[-63.804916381835945,55.87184524536133],[-63.819557189941406,55.87431335449219],[-63.83407974243164,55.877708435058594],[-63.835960388183594,55.8824577331543],[-63.8347053527832,55.89221954345703],[-63.8327407836914,55.90101623535156],[-63.8342056274414,55.909019470214844],[-63.84472656249999,55.91131973266601],[-63.85890960693359,55.91749954223633],[-63.86056137084961,55.92411041259765],[-63.85452651977538,55.925735473632805],[-63.84358215332032,55.92669296264648],[-63.835186004638665,55.92728805541992],[-63.821754455566406,55.92814254760742],[-63.81400680541993,55.9301643371582],[-63.80796813964844,55.931785583496094],[-63.79524612426757,55.9336051940918],[-63.78169250488281,55.93538284301758],[-63.76998138427734,55.93583679199218],[-63.75501632690429,55.93568801879882],[-63.74069213867187,55.93696212768555],[-63.72612380981445,55.94009780883788],[-63.716278076171875,55.94529724121094],[-63.709033966064446,55.949668884277344],[-63.701732635498054,55.954505920410156],[-63.69194030761719,55.9592399597168],[-63.68321990966796,55.9621467590332],[-63.67189025878906,55.965877532958984],[-63.66227722167969,55.96921157836913],[-63.646034240722656,55.972267150878906],[-63.63067626953124,55.97489166259765],[-63.61786651611328,55.97715377807617],[-63.60391235351562,55.98170089721679],[-63.596900939941406,55.984207153320305],[-63.5870246887207,55.98939514160156],[-63.57402038574218,55.993045806884766],[-63.56183624267578,55.99673080444335],[-63.549781799316406,55.999488830566406],[-63.53491592407226,56.00445556640624],[-63.52291870117187,56.006744384765625],[-63.51194381713867,56.007671356201165],[-63.50154495239257,56.00441360473633],[-63.49230194091796,55.99886703491211],[-63.48305892944335,55.99332046508788],[-63.47732162475586,55.99260330200195],[-63.472087860107415,55.99424362182617],[-63.46812438964844,55.99874496459961],[-63.464599609375,56.006072998046875],[-63.46004867553711,56.0147590637207],[-63.45907592773437,56.02173233032226],[-63.458232879638665,56.02777099609375],[-63.46262741088867,56.03217697143555],[-63.470733642578125,56.033931732177734],[-63.484519958496094,56.03687286376953],[-63.4925651550293,56.039093017578125],[-63.49997329711913,56.0398826599121],[-63.51415252685547,56.04003143310547],[-63.52079391479492,56.04031753540039],[-63.52743530273437,56.040603637695305],[-63.537654876708984,56.03917694091797],[-63.549659729003906,56.036888122558594],[-63.56434631347656,56.03330993652343],[-63.57705307006836,56.03198623657226],[-63.59237670898437,56.029834747314446],[-63.604248046875,56.02846908569335],[-63.61261367797851,56.028358459472656],[-63.61983108520508,56.030532836914055],[-63.630374908447266,56.0328483581543],[-63.64033889770508,56.03327178955078],[-63.65432739257812,56.03479766845703],[-63.66250228881836,56.036075592041016],[-63.67362976074219,56.040283203125],[-63.68623733520508,56.04595184326172],[-63.692848205566406,56.05277633666992],[-63.69505310058593,56.061283111572266],[-63.694683074951165,56.06407165527344],[-63.69994354248046,56.06850051879882],[-63.70942306518555,56.07263183593749],[-63.71754837036132,56.07437515258788],[-63.730266571044915,56.07303237915039],[-63.740608215332024,56.07065200805663],[-63.75654602050782,56.063831329345696],[-63.768856048583984,56.0591926574707],[-63.782878875732415,56.05415725708008],[-63.80034255981445,56.048328399658196],[-63.81488800048828,56.04564666748047],[-63.825687408447266,56.046085357666016],[-63.83387374877929,56.0473518371582],[-63.83250427246093,56.05150604248047],[-63.82851791381835,56.05648422241211],[-63.82447052001953,56.06193161010742],[-63.82320785522461,56.07169723510742],[-63.82627868652344,56.08023452758789],[-63.8329200744629,56.08704757690429],[-63.84015655517578,56.09575653076172],[-63.84662628173828,56.103965759277344],[-63.852031707763665,56.10745620727538],[-63.861366271972656,56.10642623901367],[-63.8659439086914,56.10334014892578],[-63.8704605102539,56.10071563720703],[-63.882049560546875,56.0951042175293],[-63.88163757324219,56.098358154296875],[-63.88098144531249,56.10347366333008],[-63.87878036499023,56.10759353637695],[-63.87538909912109,56.11447143554687],[-63.87116241455078,56.12131118774414],[-63.86830520629883,56.12400436401367],[-63.866226196289055,56.127193450927734],[-63.86491394042968,56.130882263183594],[-63.87335968017578,56.13028335571289],[-63.8810920715332,56.12872314453125],[-63.88805389404297,56.12666320800781],[-63.8924560546875,56.124969482421875],[-63.897624969482415,56.123775482177734],[-63.90285873413085,56.12211227416992],[-63.9115982055664,56.11918640136719],[-63.918495178222656,56.11759185791015],[-63.92622375488281,56.11602783203125],[-63.93240356445313,56.113468170166016],[-63.93620300292969,56.10987854003906],[-63.93822479248047,56.1071548461914],[-63.941307067871094,56.10260009765625],[-63.94902038574218,56.09449005126953],[-63.95477294921875,56.08864212036133],[-63.96207046508788,56.08378601074219],[-63.97079467773437,56.08085632324219],[-63.9830207824707,56.076663970947266],[-63.99673080444335,56.07392501831055],[-64.00920867919922,56.07441329956055],[-64.01717376708984,56.07752609252929],[-64.02503204345703,56.08156967163086],[-64.0313949584961,56.08415603637695],[-64.03498077392578,56.088966369628906],[-64.03351593017578,56.09405136108398],[-64.03038787841797,56.09907150268555],[-64.0283203125,56.102264404296875],[-64.02371978759766,56.112369537353516],[-64.02279663085938,56.11981201171875],[-64.02187347412108,56.127254486083984],[-64.02178192138672,56.13473129272461],[-64.02186584472656,56.14080810546874],[-64.02013397216797,56.15476608276367],[-64.02104187011719,56.1608772277832],[-64.02124786376953,56.1660270690918],[-64.02045440673828,56.16709518432617],[-64.0191879272461,56.16881561279297],[-64.01361083984374,56.17277908325195],[-64.00390624999999,56.1766014099121],[-63.99009323120117,56.17979431152344],[-63.98056411743164,56.182220458984375],[-63.971923828125,56.1842155456543],[-63.96584701538086,56.18584442138672],[-63.955482482910156,56.188236236572266],[-63.946720123291016,56.19115829467773],[-63.938018798828125,56.1936149597168],[-63.92335510253906,56.1967658996582],[-63.910362243652344,56.199981689453125],[-63.905174255371094,56.201175689697266],[-63.898258209228516,56.202766418457024],[-63.89306640625,56.203960418701165],[-63.883342742919915,56.20777130126953],[-63.87874603271484,56.21085739135742],[-63.87581634521484,56.214012145996094],[-63.873538970947266,56.218597412109375],[-63.87305068969726,56.22231674194336],[-63.875129699707024,56.22567367553711],[-63.879714965820305,56.229133605957024],[-63.888984680175774,56.23141479492187],[-63.89884567260742,56.23229217529297],[-63.90636444091797,56.23258972167969],[-63.916030883789055,56.23577880859375],[-63.9162712097168,56.24046325683593],[-63.91693115234375,56.24843978881836],[-63.919387817382805,56.255550384521484],[-63.92386627197265,56.25993347167969],[-63.93294143676758,56.26122665405273],[-63.94052505493164,56.26105880737305],[-63.949836730957024,56.26049041748047],[-63.959869384765625,56.26088333129882],[-63.96816635131836,56.26167678833008],[-63.97724533081055,56.26296615600586],[-63.98788070678711,56.26525115966796],[-63.99690246582031,56.26700210571289],[-64.00920867919922,56.26934814453125],[-64.02215576171875,56.266578674316406],[-64.03504180908202,56.264270782470696],[-64.04620361328125,56.262359619140625],[-64.05551147460938,56.261783599853516],[-64.06381225585938,56.262569427490234],[-64.07635498046875,56.26304626464843],[-64.08699798583984,56.265323638916016],[-64.09423828125,56.26793670654297],[-64.10214233398438,56.271976470947266],[-64.10708618164062,56.27964401245117],[-64.10992431640625,56.283958435058594],[-64.11347961425781,56.28923416137695],[-64.11865234375,56.29504013061523],[-64.12394714355469,56.299915313720696],[-64.12940979003906,56.30339431762695],[-64.13330841064452,56.305877685546875],[-64.13497161865234,56.3129539489746],[-64.13123321533203,56.31608581542969],[-64.12474060058594,56.32098388671875],[-64.1209945678711,56.32411575317383],[-64.11540222167969,56.328582763671875],[-64.11243438720703,56.33221054077148],[-64.11030578613281,56.335872650146484],[-64.10811614990234,56.339996337890625],[-64.10546875,56.34784698486328],[-64.10528564453125,56.35625457763672],[-64.10443115234375,56.36323547363281],[-64.106201171875,56.369384765625],[-64.11032104492188,56.37702178955078],[-64.11360931396484,56.38462448120117],[-64.11873626708984,56.39089965820312],[-64.12957763671875,56.39878845214844],[-64.14383697509766,56.4063377380371],[-64.15843963623047,56.41109085083008],[-64.16902160644531,56.414287567138665],[-64.18284606933594,56.41854476928711],[-64.19062805175781,56.42397689819336],[-64.1938247680664,56.43251037597656],[-64.18614959716797,56.433162689208984],[-64.17847442626953,56.43381118774414],[-64.16828155517578,56.43437194824219],[-64.16071319580078,56.43408966064453],[-64.14895629882812,56.433650970458984],[-64.14397430419922,56.43299865722656],[-64.13887023925781,56.43327331542969],[-64.13130950927734,56.43299102783203],[-64.12543487548827,56.43276977539062],[-64.11955261230469,56.43254852294922],[-64.11199188232422,56.43226623535156],[-64.10196685791016,56.431419372558594],[-64.09110260009766,56.4305419921875],[-64.08041381835938,56.42826461791992],[-64.07056427001953,56.426021575927734],[-64.06143951416016,56.424739837646484],[-64.05226135253906,56.423919677734375],[-64.045654296875,56.42273330688476],[-64.03905487060547,56.42154312133789],[-64.0299301147461,56.42025756835937],[-64.020751953125,56.419437408447266],[-64.01229858398436,56.419578552246094],[-64.00726318359374,56.419387817382805],[-63.999588012695305,56.42002487182617],[-63.990177154541016,56.42106246948242],[-63.982440948486335,56.42216873168945],[-63.97560501098632,56.422840118408196],[-63.9678726196289,56.423938751220696],[-63.96091842651367,56.42554092407226],[-63.95210647583007,56.428470611572266],[-63.945152282714844,56.43006896972656],[-63.9380760192871,56.432598114013665],[-63.929378509521484,56.43459701538086],[-63.919960021972656,56.435630798339844],[-63.9080810546875,56.436100006103516],[-63.897762298583984,56.43756103515625],[-63.891582489013665,56.43965530395507],[-63.88690185546874,56.443214416503906],[-63.88216018676758,56.447235107421875],[-63.880840301513665,56.450927734375],[-63.88029861450195,56.45511627197265],[-63.882339477539055,56.45893859863281],[-63.8868408203125,56.463325500488274],[-63.892005920410156,56.46914291381836],[-63.89674758911132,56.47167205810546],[-63.90413665771484,56.473365783691406],[-63.91158676147462,56.47459411621094],[-63.92239761352539,56.47595596313476],[-63.9330940246582,56.47824478149414],[-63.942886352539055,56.48096847534179],[-63.94667816162109,56.484390258789055],[-63.95035171508789,56.48874282836914],[-63.95306396484374,56.493995666503906],[-63.955718994140625,56.49971389770508],[-63.954952239990234,56.50576400756836],[-63.95345687866211,56.5108528137207],[-63.951358795166016,56.51404571533203],[-63.949138641357415,56.51816940307617],[-63.94542694091796,56.527381896972656],[-63.946575164794915,56.53163528442383],[-63.95062255859375,56.53974914550781],[-63.955451965332024,56.54835891723632],[-63.96105575561523,56.5509147644043],[-63.96467590332031,56.55573272705078],[-63.9731216430664,56.5626106262207],[-63.981979370117195,56.56623077392578],[-63.987586975097656,56.568782806396484],[-63.99037551879883,56.573570251464844],[-63.99460983276367,56.580284118652344],[-63.997100830078125,56.587398529052734],[-64.0001220703125,56.5903205871582],[-64.00611114501953,56.59663391113281],[-64.01341247558594,56.5992546081543],[-64.02167510986328,56.600975036621094],[-64.02842712402344,56.60123062133789],[-64.03687286376953,56.60155487060547],[-64.0503158569336,56.602535247802734],[-64.05509185791016,56.60505294799805],[-64.05462646484375,56.608779907226555],[-64.0509033203125,56.61144638061523],[-64.04568481445312,56.61920166015625],[-64.04018402099608,56.62928390502929],[-64.0376205444336,56.63620376586914],[-64.03397369384766,56.644954681396484],[-64.03551483154295,56.65296936035156],[-64.03921508789061,56.65732192993163],[-64.04513549804688,56.657546997070305],[-64.05189514160156,56.65780258178711],[-64.05957031249999,56.65762710571289],[-64.06758117675781,56.65465545654297],[-64.07762908935547,56.64895248413086],[-64.0904312133789,56.64849853515624],[-64.09503936767578,56.65241622924804],[-64.09801483154297,56.655799865722656],[-64.10166931152344,56.66061782836914],[-64.10537719726562,56.66496658325195],[-64.1097640991211,56.670745849609375],[-64.11268615722656,56.67459869384765],[-64.11487579345703,56.677490234375],[-64.12287902832031,56.6815299987793],[-64.13353729248047,56.684734344482415],[-64.1416015625,56.68830871582031],[-64.14762878417969,56.69461441040039],[-64.14723205566406,56.6978759765625],[-64.14508056640625,56.70153808593749],[-64.14010620117188,56.707435607910156],[-64.13224792480469,56.716033935546875],[-64.12641906738281,56.721900939941406],[-64.11804962158203,56.7276725769043],[-64.10803985595703,56.732913970947266],[-64.1008529663086,56.73591995239258],[-64.09180450439453,56.74026107788086],[-64.087890625,56.74432373046874],[-64.08374786376953,56.750251770019524],[-64.0814743041992,56.75484848022461],[-64.07913970947266,56.75990676879883],[-64.07402801513672,56.76673507690429],[-64.06841278076172,56.77073669433593],[-64.06236267089844,56.77144241333008],[-64.05642700195312,56.771217346191406],[-64.0495834350586,56.771427154541016],[-64.04273986816406,56.771636962890625],[-64.03045654296875,56.774444580078125],[-64.02149963378906,56.77785110473633],[-64.01497650146484,56.78227996826171],[-64.01189422607422,56.786376953125],[-64.0120391845703,56.79199600219726],[-64.01176452636719,56.800880432128906],[-64.01222229003906,56.81072616577148],[-64.0137710571289,56.81874465942383],[-64.01774597167969,56.82778549194336],[-64.01844024658203,56.83576965332031],[-64.0175552368164,56.84275817871094],[-64.01588439941406,56.849246978759766],[-64.01371002197266,56.85290908813476],[-64.01080322265625,56.85560989379882],[-64.00505065917969,56.86053848266601],[-63.9951057434082,56.864837646484375],[-63.98387145996094,56.865814208984375],[-63.97785949707031,56.866050720214844],[-63.971908569335945,56.865821838378906],[-63.96504592895508,56.86602783203125],[-63.95727157592773,56.86666488647461],[-63.94603729248047,56.86763381958008],[-63.93826293945312,56.86827087402344],[-63.93218994140624,56.86896896362305],[-63.923381805419915,56.870967864990234],[-63.91269302368164,56.87429809570312],[-63.905769348144524,56.87496566772461],[-63.90054321289062,56.87569808959961],[-63.89458847045899,56.875465393066406],[-63.88189315795899,56.8745002746582],[-63.87016677856446,56.87263488769531],[-63.85971450805663,56.87409591674805],[-63.855037689208984,56.87718963623047],[-63.85290527343749,56.8803825378418],[-63.852169036865234,56.88597106933593],[-63.85635757446288,56.89316177368164],[-63.86577606201172,56.89961624145508],[-63.87422561645508,56.90041732788086],[-63.882007598876946,56.89978790283203],[-63.890579223632805,56.89965438842773],[-63.897327423095696,56.90038681030273],[-63.9040184020996,56.90158462524414],[-63.9079704284668,56.90407943725586],[-63.909858703613274,56.9093017578125],[-63.91186904907226,56.91359329223633],[-63.91370010375976,56.91928482055664],[-63.913581848144524,56.9267692565918],[-63.91291427612305,56.9318962097168],[-63.911460876464844,56.936519622802734],[-63.91115951538085,56.945404052734375],[-63.91347885131836,56.953922271728516],[-63.91714096069335,56.965301513671875],[-63.91769409179687,56.974220275878906],[-63.917701721191406,56.980777740478516],[-63.91471862792968,56.98394012451172],[-63.91014862060547,56.98610305786133],[-63.9039306640625,56.98773193359375],[-63.89229202270507,56.991493225097656],[-63.882537841796875,56.99392318725586],[-63.87723159790038,56.995121002197266],[-63.86833190917968,56.997581481933594],[-63.872169494628906,57.00101089477538],[-63.87686538696288,57.00447082519531],[-63.87973022460938,57.00880050659179],[-63.885765075683594,57.01512145996094],[-63.88845062255859,57.02084732055664],[-63.890098571777344,57.02793502807617],[-63.89113616943359,57.03312683105469],[-63.89223480224609,57.0378532409668],[-63.893943786621094,57.044475555419915],[-63.894248962402344,57.04870223999023],[-63.89754867553711,57.05632400512695],[-63.89981079101562,57.065311431884766],[-63.896270751953125,57.07922363281249],[-63.895477294921875,57.085281372070305],[-63.89162826538086,57.088409423828125],[-63.885757446289055,57.08724594116211],[-63.87823867797851,57.085548400878906],[-63.857952117919915,57.08287811279297],[-63.83852005004882,57.08024597167968],[-63.832466125488274,57.080474853515625],[-63.82268524169922,57.0828971862793],[-63.81558990478515,57.08449172973633],[-63.81008529663086,57.08708572387695],[-63.80622482299804,57.09020996093749],[-63.80493545532226,57.09343719482421],[-63.80443572998047,57.097164154052734],[-63.80479431152343,57.10092544555664],[-63.80496597290039,57.10608673095703],[-63.80231857299805,57.11300659179687],[-63.7939224243164,57.117828369140625],[-63.782958984375,57.12254333496094],[-63.77284622192382,57.12729263305663],[-63.76787185668945,57.13224792480469],[-63.769878387451165,57.13654327392578],[-63.771881103515625,57.14084243774414],[-63.77407455444335,57.14373779296875],[-63.78030776977539,57.14867401123047],[-63.7841567993164,57.152103424072266],[-63.78756332397462,57.15879821777344],[-63.7891960144043,57.165889739990234],[-63.78924179077149,57.17198181152344],[-63.782588958740234,57.182960510253906],[-63.77932357788085,57.187984466552734],[-63.77341842651367,57.19337463378906],[-63.768497467041016,57.19786071777344],[-63.76456069946289,57.201454162597656],[-63.76055908203125,57.205509185791016],[-63.752933502197266,57.2108268737793],[-63.75045776367187,57.216350555419915],[-63.7477912902832,57.22327423095703],[-63.74604415893555,57.22976303100586],[-63.74404525756836,57.23811721801758],[-63.74978256225585,57.24678039550781],[-63.76086807250976,57.254253387451165],[-63.77701568603515,57.25629806518554],[-63.78807067871093,57.25767517089843],[-63.804893493652344,57.261150360107415],[-63.817607879638665,57.263057708740234],[-63.821357727050774,57.26086044311523],[-63.82573318481445,57.2540054321289],[-63.83380126953125,57.238861083984375],[-63.84413528442382,57.22614669799805],[-63.85567855834961,57.21723175048828],[-63.86893844604492,57.208377838134766],[-63.879554748535156,57.19989013671874],[-63.889732360839844,57.20122146606445],[-63.89188003540038,57.204586029052734],[-63.89218902587891,57.20881271362305],[-63.889732360839844,57.21434020996093],[-63.88531494140625,57.22166442871094],[-63.88255310058593,57.229522705078125],[-63.88451385498046,57.240840911865234],[-63.88869094848633,57.24849700927734],[-63.89096450805664,57.25748825073242],[-63.889366149902344,57.26960754394531],[-63.88444900512695,57.28065872192383],[-63.88039016723632,57.29174804687499],[-63.875900268554695,57.299537658691406],[-63.87238693237304,57.30643081665039],[-63.87324523925781,57.31302261352538],[-63.869918823242195,57.32507705688476],[-63.86468124389648,57.331901550292976],[-63.85445404052734,57.337127685546875],[-63.84244918823242,57.336189270019524],[-63.82995986938476,57.33242034912109],[-63.80891799926758,57.3278465270996],[-63.80471420288085,57.33330535888671],[-63.80562591552735,57.33943176269532],[-63.800498962402344,57.34532165527344],[-63.787799835205085,57.349510192871094],[-63.77781295776367,57.35286331176758],[-63.77145767211914,57.35495376586914],[-63.765968322753906,57.35707855224609],[-63.75807952880859,57.35770416259765],[-63.74451065063476,57.36185073852539],[-63.73531341552734,57.365699768066406],[-63.72975158691406,57.368289947509766],[-63.722755432128906,57.37504196166992],[-63.71789932250976,57.38515853881836],[-63.71994400024413,57.39554977416992],[-63.72224807739258,57.40407943725587],[-63.725479125976555,57.41217803955078],[-63.73088455200195,57.4170799255371],[-63.74029541015625,57.42448425292969],[-63.74903488159179,57.430458068847656],[-63.75291061401367,57.433891296386726],[-63.75832748413085,57.43879699707032],[-63.76602172851562,57.44613265991211],[-63.76939010620117,57.453296661376946],[-63.77126693725586,57.465087890625],[-63.77073669433594,57.47537994384765],[-63.77219009399414,57.48387145996094],[-63.77370834350585,57.49190139770508],[-63.7719955444336,57.50448989868164],[-63.76838302612305,57.511848449707024],[-63.76110839843751,57.52046585083007],[-63.75617599487304,57.531055450439446],[-63.7530403137207,57.54124450683593],[-63.75375366210937,57.548770904541016],[-63.757617950439446,57.55876922607422],[-63.7669448852539,57.56710815429687],[-63.77801513671875,57.57551574707032],[-63.78275680541992,57.5855484008789],[-63.7885627746582,57.59421157836914],[-63.787799835205085,57.59980773925782],[-63.77252578735351,57.60295867919922],[-63.76184844970703,57.60441589355468],[-63.75043106079101,57.604900360107415],[-63.726173400878906,57.603469848632805],[-63.7096061706543,57.603279113769524],[-63.701789855957024,57.60296630859375],[-63.68502807617187,57.60417175292969],[-63.67736816406249,57.609024047851555],[-63.675791337117275,57.60999182101885],[-63.668766021728516,57.61430358886719],[-63.65201950073242,57.62160110473632],[-63.636199951171875,57.62846374511719],[-63.62465286254883,57.63596725463868],[-63.61590576171875,57.64217758178711],[-63.608436584472656,57.651721954345696],[-63.606513977050774,57.6591453552246],[-63.61114883422851,57.6696548461914],[-63.61384963989258,57.68148803710937],[-63.61320495605468,57.6922492980957],[-63.61168670654297,57.702972412109375],[-63.60942840576172,57.71273040771484],[-63.60736846923828,57.721088409423835],[-63.60523986816407,57.72991561889648],[-63.60411071777344,57.73784255981445],[-63.60405731201171,57.74440765380859],[-63.60895919799804,57.74695205688476],[-63.6188850402832,57.7450065612793],[-63.62377166748046,57.74145507812499],[-63.62845993041992,57.73929977416992],[-63.635025024414055,57.736278533935554],[-63.643131256103516,57.73472976684571],[-63.64910507202148,57.735908508300774],[-63.654205322265625,57.73705291748047],[-63.66299057006836,57.73693847656249],[-63.6686782836914,57.733882904052734],[-63.67362594604492,57.72985839843749],[-63.674015045166016,57.7270622253418],[-63.67386245727539,57.72189712524414],[-63.672901153564446,57.716228485107415],[-63.6720085144043,57.71009826660156],[-63.6725959777832,57.705902099609375],[-63.676509857177734,57.69667816162109],[-63.68329620361328,57.68569564819335],[-63.69129943847656,57.67851257324219],[-63.697105407714844,57.67452239990234],[-63.70452117919921,57.67153549194335],[-63.70925903320312,57.6689109802246],[-63.7214126586914,57.663299560546875],[-63.73210906982421,57.66184616088867],[-63.73794174194336,57.663955688476555],[-63.74500274658203,57.66986083984375],[-63.751876831054695,57.67716598510742],[-63.75656509399413,57.68766784667968],[-63.75857162475586,57.69853210449218],[-63.7652587890625,57.70723342895507],[-63.77246475219726,57.712207794189446],[-63.77769470214844,57.7124137878418],[-63.78187942504883,57.70741653442383],[-63.78738021850586,57.69919204711913],[-63.795555114746094,57.690601348876946],[-63.80172612650814,57.68615932918075],[-63.802349090576165,57.68571090698242],[-63.809505462646484,57.68458175659179],[-63.81254577636719,57.687984466552734],[-63.81471633911133,57.691349029541016],[-63.81672617311518,57.695231613161184],[-63.81818389892578,57.698047637939446],[-63.821224212646484,57.70145034790038],[-63.83185577392579,57.707019805908196],[-63.83950971114731,57.709011485485675],[-63.84455108642579,57.710323333740234],[-63.85139846801758,57.7115249633789],[-63.860111236572266,57.71186065673828],[-63.86708450317383,57.71213150024414],[-63.876670837402344,57.71249771118164],[-63.88675308227539,57.71569824218751],[-63.89248275756835,57.71873092651367],[-63.89796447753906,57.72362899780273],[-63.90388107299805,57.73182678222656],[-63.90955352783204,57.741886138916016],[-63.91142654418945,57.74694824218749],[-63.91342544555664,57.752349853515625],[-63.91366904869257,57.75386431745594],[-63.91486740112305,57.76131439208984],[-63.91443634033203,57.77114486694336],[-63.913692474365234,57.77674102783204],[-63.9158821105957,57.78667068481446],[-63.91463851928711,57.79600524902343],[-63.917701721191406,57.79940032958984],[-63.92382049560546,57.79963302612305],[-63.9343032836914,57.80002975463867],[-63.94329071044922,57.798492431640625],[-63.95345687866211,57.794658660888665],[-63.96144104003906,57.79401779174805],[-63.97704696655273,57.79554367065429],[-63.982547760009766,57.80043792724609],[-63.99211883544921,57.8078269958496],[-63.9996223449707,57.81092071533203],[-64.00702344325943,57.81032664724196],[-64.00760650634764,57.810279846191406],[-64.01403045654297,57.80817413330078],[-64.01527404785156,57.80540466308593],[-64.01780700683592,57.79940414428711],[-64.02251434326172,57.790203094482415],[-64.027099609375,57.78193283081055],[-64.03399658203125,57.776092529296875],[-64.05577850341797,57.7620849609375],[-64.0624542236328,57.76426315307617],[-64.06724548339844,57.76729583740235],[-64.07196044921875,57.770790100097656],[-64.07907104492188,57.77580261230468],[-64.08619689941406,57.78081130981445],[-64.0933837890625,57.785354614257805],[-64.09955596923828,57.79079437255859],[-64.10478973388672,57.79665756225585],[-64.1084976196289,57.801044464111335],[-64.11402130126953,57.810676574707024],[-64.11780548095703,57.814598083496094],[-64.12530517578124,57.822906494140625],[-64.12872314453125,57.829158782958984],[-64.13134765625,57.834907531738274],[-64.13484191894531,57.84069061279296],[-64.13885498046875,57.84884643554687],[-64.14351654052734,57.858436584472656],[-64.14753723144531,57.86659240722656],[-64.15060424804688,57.87517547607422],[-64.1517105102539,57.88507843017579],[-64.15367889404297,57.88938903808593],[-64.15646362304688,57.89983367919922],[-64.15682704579537,57.900930420623624],[-64.15946197509766,57.908882141113274],[-64.16370391845703,57.91564178466797],[-64.17079162597655,57.921112060546875],[-64.177001953125,57.92654800415039],[-64.18556213378906,57.9339599609375],[-64.19134521484375,57.94218826293945],[-64.19332122802734,57.94649887084962],[-64.1980209350586,57.95608901977539],[-64.20491027832031,57.96295928955078],[-64.21025848388672,57.96835708618164],[-64.21955871582031,57.97673797607422],[-64.22565460205078,57.98310089111328],[-64.2286605834961,57.986515045166016],[-64.23284912109375,57.99374008178711],[-64.2331771850586,58.003135681152344],[-64.23077392578125,58.007259368896484],[-64.22730255126953,58.01837158203125],[-64.23054504394531,58.02602005004883],[-64.23643493652344,58.03378677368164],[-64.24201202392577,58.03778076171875],[-64.25353240966797,58.043437957763665],[-64.26343536376953,58.04808807373047],[-64.2718734741211,58.05079650878906],[-64.29086303710938,58.053951263427734],[-64.300537109375,58.05436325073243],[-64.31182861328125,58.05578231811524],[-64.32392883300781,58.057701110839844],[-64.3377914428711,58.059696197509766],[-64.3448257446289,58.059993743896484],[-64.3596420288086,58.061553955078125],[-64.36843872070312,58.06192398071288],[-64.37642669677734,58.061790466308594],[-64.39077758789062,58.06051254272461],[-64.4074935913086,58.06121063232422],[-64.42034149169922,58.06409072875976],[-64.42594909667969,58.068077087402344],[-64.43032836914061,58.07435989379882],[-64.43538665771484,58.08207702636719],[-64.43829345703125,58.086421966552734],[-64.44029998779297,58.09682846069336],[-64.43879699707031,58.100990295410156],[-64.4375,58.10375213623047],[-64.43301391601562,58.11013412475587],[-64.43144226074219,58.11476516723632],[-64.4283676147461,58.12355422973633],[-64.43180847167969,58.13026428222657],[-64.43308258056639,58.133602142333984],[-64.435302734375,58.14261245727539],[-64.4363021850586,58.147815704345696],[-64.43540954589844,58.15388107299804],[-64.4332275390625,58.1566047668457],[-64.43098449707031,58.15979766845703],[-64.42566680908203,58.16567993164063],[-64.4173583984375,58.17378616333007],[-64.40898132324219,58.182353973388665],[-64.40189361572266,58.18816375732422],[-64.39604187011719,58.1916732788086],[-64.3873291015625,58.196475982666016],[-64.37934875488281,58.20224380493164],[-64.37267303466797,58.20525360107421],[-64.3671646118164,58.20642852783203],[-64.3598861694336,58.207534790039055],[-64.34479522705078,58.20737075805663],[-64.33472442626953,58.209293365478516],[-64.31942749023438,58.210525512695305],[-64.30235290527344,58.211685180664055],[-64.28440093994139,58.212799072265625],[-64.2725601196289,58.21464538574219],[-64.26307678222655,58.21846771240234],[-64.2562484741211,58.22239685058594],[-64.25221252441406,58.225513458251946],[-64.2450180053711,58.2317771911621],[-64.23973846435547,58.237186431884766],[-64.23371124267578,58.24162292480469],[-64.23196411132811,58.247180938720696],[-64.23035430908203,58.251808166503906],[-64.22757720947266,58.258262634277344],[-64.22259521484375,58.26744079589843],[-64.21619415283203,58.274208068847656],[-64.21310424804688,58.276893615722656],[-64.2077407836914,58.28276443481446],[-64.20413970947266,58.28871154785156],[-64.19994354248047,58.29275894165039],[-64.19442749023438,58.299564361572266],[-64.18934631347656,58.30356979370117],[-64.1866226196289,58.309558868408196],[-64.18294525146484,58.315975189208984],[-64.17941284179688,58.32145690917969],[-64.17957305908203,58.32615661621093],[-64.18135070800781,58.331871032714844],[-64.18498229980469,58.33719253540039],[-64.18861389160156,58.34251403808593],[-64.1888427734375,58.34675216674805],[-64.18929290771484,58.34959030151367],[-64.181396484375,58.35441207885742],[-64.17285919189453,58.35564804077148],[-64.16455841064453,58.35770416259765],[-64.14714050292969,58.361309051513665],[-64.14080047607422,58.36202239990235],[-64.13084411621094,58.36307907104492],[-64.11164093017577,58.366615295410156],[-64.10624694824219,58.36689376831055],[-64.09552001953125,58.36697769165039],[-64.09024810791016,58.36631774902344],[-64.0788803100586,58.36450195312499],[-64.06686401367186,58.36078643798828],[-64.05987548828125,58.35959243774414],[-64.0466079711914,58.358646392822266],[-64.0351791381836,58.35729217529296],[-64.02642059326172,58.35603332519531],[-64.01392364501953,58.35604858398437],[-64.01266479492186,58.35881805419921],[-64.0146484375,58.36405181884765],[-64.01822662353516,58.370750427246094],[-64.02169036865234,58.378387451171875],[-64.02686309814453,58.38655090332032],[-64.02854919433594,58.39412307739257],[-64.02826690673828,58.40303039550781],[-64.02804565429688,58.41146850585938],[-64.02457427978516,58.417442321777344],[-64.0172348022461,58.42562484741211],[-64.01050567626953,58.429134368896484],[-63.99634552001953,58.43471908569335],[-63.98694229125976,58.43812561035156],[-63.9814109802246,58.4393310546875],[-63.96691131591797,58.44067382812499],[-63.95431900024415,58.44115066528321],[-63.941787719726555,58.44115447998047],[-63.93389892578125,58.43992614746094],[-63.922698974609375,58.43669128417968],[-63.91429901123047,58.432624816894524],[-63.906665802001946,58.42952346801758],[-63.89655685424805,58.42491912841796],[-63.89236068725586,58.42288589477538],[-63.88714599609375,58.42175292968751],[-63.88059997558593,58.42385482788085],[-63.875892639160156,58.42555236816406],[-63.86431884765625,58.431690216064446],[-63.8583984375,58.435691833496094],[-63.857059478759766,58.43892669677734],[-63.857051849365234,58.44549942016601],[-63.85501098632812,58.45386886596679],[-63.85354232788085,58.45803833007812],[-63.84577178955078,58.462440490722656],[-63.83074188232421,58.46750259399414],[-63.8200340270996,58.473670959472656],[-63.81773376464844,58.47733688354492],[-63.81822204589843,58.48674774169922],[-63.826946258544915,58.48848342895508],[-63.84089279174805,58.49135971069336],[-63.8494873046875,58.494033813476555],[-63.852672576904304,58.496971130371094],[-63.855659484863274,58.50130844116211],[-63.857246398925774,58.50934982299805],[-63.85717391967773,58.51638793945312],[-63.85825729370117,58.521591186523445],[-63.8606071472168,58.530601501464844],[-63.860343933105476,58.539039611816406],[-63.86174774169921,58.54191207885742],[-63.865055084228516,58.55048370361328],[-63.86945724487304,58.55769348144531],[-63.87309265136719,58.563934326171875],[-63.878582000732415,58.569770812988274],[-63.88700866699218,58.57384490966797],[-63.89575958251953,58.57558059692383],[-63.90840530395507,58.57511138916015],[-63.918365478515625,58.57454299926758],[-63.92852020263672,58.57257080078124],[-63.93988037109375,58.56829452514649],[-63.94683456420898,58.5633888244629],[-63.95001983642578,58.559749603271484],[-63.95052337646484,58.55601501464844],[-63.95153045654297,58.548538208007805],[-63.9513282775879,58.54336929321289],[-63.95285034179687,58.5387306213379],[-63.95724105834961,58.53278732299805],[-63.96673583984375,58.52891540527343],[-63.97903442382812,58.52420043945312],[-63.98954010009765,58.519424438476555],[-63.99591445922851,58.51871871948243],[-64.00222778320311,58.51847839355468],[-64.0119857788086,58.51930236816406],[-64.01899719238281,58.5204963684082],[-64.02882385253905,58.520851135253906],[-64.04196929931639,58.5232048034668],[-64.05142211914062,58.52636337280273],[-64.06050872802734,58.53232192993163],[-64.06941223144531,58.53968429565429],[-64.08112335205078,58.54620361328125],[-64.09302520751953,58.55132293701172],[-64.10653686523438,58.55790710449219],[-64.11135864257812,58.562301635742195],[-64.11259460449219,58.56657028198242],[-64.11138153076172,58.575916290283196],[-64.11034393310547,58.58385848999023],[-64.11009216308592,58.59276580810547],[-64.11424255371094,58.602302551269524],[-64.11762237548827,58.61087036132812],[-64.11903381347656,58.620777130126946],[-64.11238861083984,58.63039779663085],[-64.10478973388672,58.633415222167976],[-64.09497833251953,58.63964080810546],[-64.08905029296875,58.643653869628906],[-64.08155059814453,58.65277481079101],[-64.07621002197266,58.6591567993164],[-64.07111358642578,58.66366958618164],[-64.06684875488281,58.668678283691406],[-64.05862426757811,58.67636489868164],[-64.05423736572266,58.68231201171875],[-64.04780578613281,58.6900634765625],[-64.04204559326172,58.692672729492195],[-64.03288269042969,58.69375228881836],[-64.02570343017577,58.6934928894043],[-64.01589202880858,58.692668914794915],[-64.00704193115234,58.691410064697266],[-63.996402740478516,58.69008255004882],[-63.990119934082024,58.68985366821289],[-63.98480224609374,58.68918991088867],[-63.97935485839843,58.6894645690918],[-63.96923065185547,58.69097137451172],[-63.958919525146484,58.69387817382813],[-63.94853973388672,58.6972541809082],[-63.93912124633789,58.7001953125],[-63.93360900878907,58.70093154907226],[-63.91969680786133,58.703704833984375],[-63.9039306640625,58.70687866210937],[-63.89290237426758,58.70834732055665],[-63.88296127319336,58.70844650268555],[-63.8732795715332,58.70667648315429],[-63.863662719726555,58.70444107055664],[-63.85763931274414,58.702335357666016],[-63.84962463378906,58.701568603515625],[-63.84064865112304,58.70122909545898],[-63.828086853027344,58.70075607299804],[-63.812828063964844,58.70018005371094],[-63.802955627441406,58.699806213378906],[-63.79006576538085,58.70166397094726],[-63.78063201904296,58.704593658447266],[-63.77132797241211,58.706584930419915],[-63.756771087646484,58.70743942260742],[-63.74689483642578,58.707061767578125],[-63.736324310302734,58.70524597167968],[-63.72382736206055,58.70429611206055],[-63.718441009521484,58.70408630371094],[-63.713687896728516,58.70578384399414],[-63.705207824707024,58.70827484130859],[-63.68914794921875,58.71328735351562],[-63.67451477050781,58.71459579467773],[-63.659122467041016,58.714935302734375],[-63.64435195922851,58.71717453002929],[-63.62861633300781,58.71984481811523],[-63.60625457763671,58.72460174560547],[-63.58505630493164,58.72751998901368],[-63.56399154663086,58.72949981689453],[-63.54824447631836,58.73215866088867],[-63.53152465820312,58.73524856567382],[-63.5175666809082,58.73797607421875],[-63.507339477539055,58.73991394042969],[-63.491233825683594,58.744903564453125],[-63.48016357421874,58.75244140625],[-63.476837158203125,58.756534576416016],[-63.47454833984374,58.7597312927246],[-63.47302246093749,58.76389694213867],[-63.47432327270507,58.76723861694336],[-63.47909164428711,58.77165985107422],[-63.48302459716796,58.775577545166016],[-63.488899230957024,58.77863693237305],[-63.4989242553711,58.78420639038086],[-63.51019668579101,58.787479400634766],[-63.51711654663087,58.78963851928712],[-63.52313232421874,58.7917594909668],[-63.531436920166016,58.796791076660156],[-63.535158754655185,58.79971251663552],[-63.53711318969726,58.80124664306641],[-63.540779113769524,58.807029724121094],[-63.54361724853515,58.812313079833984],[-63.546875,58.8208999633789],[-63.55172729492188,58.83095932006835],[-63.55741119384765,58.83541488647461],[-63.56163787841797,58.837459564208984],[-63.56947326660156,58.839649200439446],[-63.58257293701172,58.842987060546875],[-63.59214401245117,58.84571838378906],[-63.60344696044922,58.84897994995117],[-63.615028381347656,58.85037612915039],[-63.628684997558594,58.84997177124024],[-63.64323806762695,58.84960174560546],[-63.65621948242187,58.85386657714844],[-63.65761566162109,58.85673904418945],[-63.6618766784668,58.864891052246094],[-63.663970947265625,58.86920166015624],[-63.672382354736335,58.873756408691406],[-63.6898193359375,58.87865829467773],[-63.698638916015625,58.88040924072265],[-63.714813232421875,58.881500244140625],[-63.726543426513665,58.88195419311523],[-63.739173889160156,58.8824348449707],[-63.74452590942383,58.88311004638672],[-63.7596664428711,58.88509750366211],[-63.775005340576165,58.88568115234374],[-63.78088378906249,58.88261413574219],[-63.78134536743163,58.87934494018554],[-63.78277587890626,58.875640869140625],[-63.78316879272461,58.87283706665039],[-63.787635803222656,58.866897583007805],[-63.79403305053711,58.8600959777832],[-63.80106735229492,58.85519409179687],[-63.809837341308594,58.850826263427734],[-63.82201766967773,58.847999572753906],[-63.8304557800293,58.84596633911133],[-63.83999252319336,58.84256744384765],[-63.84856033325195,58.839599609375],[-63.85873031616211,58.8381004333496],[-63.870899200439446,58.83526611328124],[-63.88126373291015,58.83236312866211],[-63.89336776733398,58.82999420166016],[-63.907135009765625,58.8286247253418],[-63.917304992675774,58.82712173461915],[-63.929466247558594,58.82427978515625],[-63.94335937499999,58.82197189331055],[-63.95886611938476,58.82113265991211],[-63.96504592895508,58.82229614257812],[-63.974639892578125,58.824993133544915],[-63.9809455871582,58.82522201538086],[-63.99014663696288,58.82414627075195],[-63.996891021728516,58.82110595703125],[-64.00350952148438,58.81899642944336],[-64.01494598388672,58.81471252441406],[-64.02317810058594,58.814071655273445],[-64.02960968017578,58.813362121582024],[-64.03616333007812,58.81171798706054],[-64.04007720947264,58.809513092041016],[-64.04405212402344,58.80683898925781],[-64.04815673828125,58.803226470947266],[-64.0515365600586,58.7981834411621],[-64.05593872070312,58.79223632812499],[-64.06010437011719,58.78815841674804],[-64.06348419189453,58.78311538696289],[-64.06781768798828,58.77763366699219],[-64.07228088378906,58.771221160888665],[-64.07752227783203,58.76577377319336],[-64.08557891845703,58.75948715209961],[-64.09062194824219,58.755439758300774],[-64.0981216430664,58.75336074829102],[-64.1075439453125,58.75040817260742],[-64.11600494384766,58.74789047241211],[-64.12529754638672,58.74586868286133],[-64.13614654541016,58.74578094482421],[-64.14418029785156,58.74653244018555],[-64.15472412109375,58.748779296875],[-64.16425323486328,58.75193023681641],[-64.1746826171875,58.755107879638665],[-64.18055725097656,58.75859832763672],[-64.18733215332031,58.76211929321288],[-64.19824981689453,58.76860046386719],[-64.20580291748047,58.773086547851555],[-64.21247100830078,58.777542114257805],[-64.21672821044922,58.77956771850586],[-64.22242736816406,58.78445816040038],[-64.2312545776367,58.78617095947265],[-64.24788665771483,58.79049301147461],[-64.25119018554688,58.79295349121094],[-64.25251770019531,58.796756744384766],[-64.25186920166016,58.801895141601555],[-64.24947357177734,58.80651092529297],[-64.2467269897461,58.81392669677734],[-64.24427032470703,58.819007873535156],[-64.24373626708984,58.82321548461914],[-64.24410247802734,58.82745361328125],[-64.24249267578125,58.83303070068359],[-64.2416000366211,58.84004211425782],[-64.23962402343749,58.848426818847656],[-64.24144744873047,58.85552978515625],[-64.24512481689453,58.86222839355468],[-64.2489242553711,58.86799240112305],[-64.25633239746094,58.873878479003906],[-64.2629623413086,58.878799438476555],[-64.27218627929688,58.884746551513665],[-64.2817611694336,58.88788604736328],[-64.29038238525389,58.89146423339844],[-64.30177307128906,58.89466476440429],[-64.31153106689453,58.89640045166015],[-64.31858825683594,58.89804458618163],[-64.32848901054209,58.900580669258325],[-64.32913208007812,58.9007453918457],[-64.3462142944336,58.90929412841797],[-64.35332489013672,58.910469055175774],[-64.36405944824219,58.91176605224609],[-64.37580871582031,58.91215515136719],[-64.38851928710938,58.912101745605476],[-64.40134429931639,58.91111373901367],[-64.41710662841797,58.90834426879883],[-64.42930603027344,58.90498733520508],[-64.44308471679688,58.90355682373047],[-64.4541015625,58.90250778198242],[-64.46849822998047,58.9034423828125],[-64.47364044189453,58.905952453613274],[-64.48234558105469,58.90904998779296],[-64.49742889404297,58.91188049316406],[-64.5064697265625,58.91217041015624],[-64.51392364501953,58.91053009033203],[-64.5187759399414,58.90786743164062],[-64.52452850341795,58.905235290527344],[-64.53034210205078,58.90213394165038],[-64.53620910644531,58.89856338500976],[-64.5427474975586,58.89689636230468],[-64.549072265625,58.8970947265625],[-64.56246185302734,58.89892578125],[-64.57308197021484,58.90113830566406],[-64.5853500366211,58.9048080444336],[-64.60050201416016,58.90715789794921],[-64.61469268798828,58.90994644165038],[-64.6207504272461,58.91247940063476],[-64.63037109374999,58.915592193603516],[-64.6373291015625,58.918155670166016],[-64.64769744873047,58.922698974609375],[-64.65705108642577,58.928150177001946],[-64.66290283203125,58.932552337646484],[-64.67301177978516,58.93943405151367],[-64.67897033691406,58.942901611328125],[-64.6849365234375,58.94636917114257],[-64.69088788742476,58.94939444783611],[-64.69180297851562,58.949859619140625],[-64.7041015625,58.95352172851563],[-64.71571350097656,58.95528030395507],[-64.72476196289062,58.95555114746093],[-64.73663330078125,58.954971313476555],[-64.74669647216797,58.954334259033196],[-64.75611877441406,58.95133209228515],[-64.76553344726562,58.948326110839844],[-64.7759552001953,58.94441223144531],[-64.786376953125,58.94049835205078],[-64.79674530029297,58.937049865722656],[-64.80706024169922,58.9340705871582],[-64.814453125,58.93288040161132],[-64.82466125488281,58.93083190917969],[-64.83486938476562,58.92878341674805],[-64.84336853027344,58.92574691772461],[-64.8489990234375,58.924034118652344],[-64.85879516601561,58.925727844238274],[-64.85939788818358,58.92856216430664],[-64.86170196533203,58.93238067626953],[-64.86375427246094,58.93854141235351],[-64.86762237548828,58.94475555419922],[-64.8695297241211,58.952316284179695],[-64.86882019042969,58.958866119384766],[-64.8682632446289,58.964012145996094],[-64.8675537109375,58.97056198120117],[-64.86790466308594,58.97573471069336],[-64.87177276611328,58.9819450378418],[-64.87815856933592,58.990108489990234],[-64.88475799560547,58.99639892578125],[-64.89140319824219,59.00222396850586],[-64.8978500366211,59.00991821289063],[-64.89881134033203,59.01792144775391],[-64.89820861816406,59.023536682128906],[-64.89488220214844,59.02907180786133],[-64.89059448242188,59.03504943847657],[-64.88534545898436,59.04146957397461],[-64.88030242919922,59.04601669311523],[-64.87429809570312,59.051006317138665],[-64.8712158203125,59.054203033447266],[-64.8652572631836,59.0587272644043],[-64.85844421386719,59.06275177001953],[-64.8489990234375,59.065765380859375],[-64.84056854248045,59.067867279052734],[-64.83390045166014,59.070487976074226],[-64.82445526123047,59.07349777221679],[-64.8151626586914,59.075103759765625],[-64.80779266357422,59.07582855224609],[-64.79850006103516,59.077430725097656],[-64.78823852539062,59.07947540283203],[-64.77809143066406,59.08058547973633],[-64.77071380615234,59.08130645751953],[-64.76425170898438,59.082054138183594],[-64.75692749023438,59.08230209350586],[-64.7505645751953,59.08211517333984],[-64.74329376220703,59.0818977355957],[-64.7353286743164,59.07978057861328],[-64.7274169921875,59.077198028564446],[-64.720458984375,59.074172973632805],[-64.71629333496094,59.070762634277344],[-64.71479034423828,59.067901611328125],[-64.71420288085938,59.065067291259766],[-64.71211242675781,59.05937194824218],[-64.70671081542969,59.0507583618164],[-64.70110321044922,59.04401779174804],[-64.69143676757811,59.040908813476555],[-64.69088788742476,59.04084437634398],[-64.68604278564453,59.04027557373047],[-64.67793273925781,59.03955841064453],[-64.66986846923828,59.03837585449219],[-64.661865234375,59.036724090576165],[-64.64846801757812,59.0344352722168],[-64.64228057861328,59.03283691406249],[-64.63427734375,59.031185150146484],[-64.62451171875,59.02900314331055],[-64.61741638183594,59.02737426757812],[-64.60765838623047,59.02519607543945],[-64.5987548828125,59.02350997924804],[-64.59165954589844,59.02188491821289],[-64.58099365234375,59.01967239379883],[-64.5721435546875,59.01751708984374],[-64.56148529052734,59.01530838012696],[-64.54912567138672,59.01210021972656],[-64.5420913696289,59.01000213623047],[-64.52973175048828,59.00679397583007],[-64.51828002929688,59.003616333007805],[-64.51034545898438,59.00148391723633],[-64.50496673583984,59.0008430480957],[-64.4905776977539,58.999446868896484],[-64.4787368774414,58.999534606933594],[-64.46690368652344,58.99962615966797],[-64.45597076416016,58.9997444152832],[-64.44588470458983,59.000354766845696],[-64.43772888183594,59.00009155273437],[-64.42492675781249,59.00061416625976],[-64.41767883300781,59.00038146972656],[-64.40770721435547,59.00005340576172],[-64.3884506225586,59.001300811767585],[-64.38814248294162,59.0013073895719],[-64.3711166381836,59.001670837402344],[-64.35837554931639,59.0017204284668],[-64.34069061279297,59.004890441894524],[-64.32939910888672,59.007801055908196],[-64.31873321533203,59.01308059692383],[-64.31270599365234,59.01757431030273],[-64.30854797363281,59.02166366577148],[-64.3052978515625,59.02577972412109],[-64.30754852294922,59.029609680175774],[-64.30860137939453,59.03575134277344],[-64.31182098388672,59.03914642333984],[-64.3166732788086,59.044002532958984],[-64.3241958618164,59.049419403076165],[-64.33171844482422,59.05483627319335],[-64.33766174316406,59.058319091796875],[-64.34288024902344,59.06037139892578],[-64.35149383544922,59.06441116333007],[-64.35743713378906,59.067893981933594],[-64.36351013183594,59.07044219970703],[-64.3712158203125,59.0744514465332],[-64.38045501708984,59.08086013793945],[-64.38538360595703,59.08524703979492],[-64.39383697509766,59.09069061279297],[-64.39950561523438,59.09650802612305],[-64.40370178222656,59.099464416503906],[-64.41608428955077,59.10268402099609],[-64.42710876464844,59.10210418701171],[-64.43824768066406,59.1005859375],[-64.44642427162128,59.09971797979524],[-64.44841766357422,59.09950637817382],[-64.46119689941406,59.09944534301757],[-64.47193908691406,59.101200103759766],[-64.48177337646484,59.102924346923835],[-64.49262237548828,59.10374069213867],[-64.50267791748047,59.10358810424805],[-64.51069641113281,59.10525131225585],[-64.51917266845702,59.11068725585937],[-64.520263671875,59.11682510375977],[-64.51970672607422,59.121501922607415],[-64.51914978027342,59.12617874145508],[-64.5174560546875,59.132698059082024],[-64.51570129394531,59.13968658447266],[-64.51303863525389,59.14664459228515],[-64.5099868774414,59.15687942504883],[-64.50875091552734,59.167171478271484],[-64.50898742675781,59.172813415527344],[-64.5073471069336,59.178863525390625],[-64.50946807861327,59.18409729003907],[-64.5167007446289,59.18479537963867],[-64.52244567871094,59.18262863159179],[-64.52739715576172,59.17949676513671],[-64.53250885009766,59.17496109008789],[-64.53665924072266,59.17086791992187],[-64.54364776611328,59.16592025756836],[-64.55184936523438,59.16617965698242],[-64.5540771484375,59.170475006103516],[-64.55534362792969,59.175209045410156],[-64.55548095703125,59.18178939819335],[-64.55368041992188,59.18924331665039],[-64.55091094970703,59.197139739990234],[-64.54637145996094,59.204509735107415],[-64.54177856445312,59.21234893798829],[-64.53837585449219,59.217876434326165],[-64.53280639648438,59.22615432739257],[-64.52883911132812,59.23636245727539],[-64.52837127497257,59.23808801183324],[-64.5271987915039,59.24241256713867],[-64.5267105102539,59.2541389465332],[-64.52564239501953,59.26302719116211],[-64.52593994140625,59.26820373535156],[-64.52880859375,59.2748680114746],[-64.53585815429688,59.28495025634765],[-64.53992462158203,59.289306640625],[-64.54943084716797,59.29429626464844],[-64.562255859375,59.30221176147461],[-64.56982421875,59.3080825805664],[-64.57068634033203,59.30857849121093],[-64.57109832763672,59.31281661987305],[-64.5698471069336,59.31559753417969],[-64.56872777681525,59.3177698238805],[-64.56746673583984,59.32021713256836],[-64.5641632080078,59.32481384277344],[-64.56085968017578,59.32940673828124],[-64.55447387695312,59.33671951293945],[-64.55127716064453,59.34037780761718],[-64.54700469970703,59.345413208007805],[-64.54467010498045,59.349563598632805],[-64.54210662841797,59.35559082031249],[-64.54057312011719,59.36071014404296],[-64.54339599609375,59.36784362792969],[-64.55050659179688,59.369941711425774],[-64.5574493408203,59.37344741821289],[-64.5620252174883,59.376988028666396],[-64.56756591796875,59.381275177001946],[-64.5685043334961,59.38881683349609],[-64.5675048828125,59.397239685058594],[-64.56505584716797,59.40233230590821],[-64.55862841419122,59.40699933978678],[-64.55699157714844,59.40818786621094],[-64.54627990722656,59.413021087646484],[-64.53595733642578,59.41457748413085],[-64.51800537109375,59.41824340820313],[-64.50642395019531,59.42257690429687],[-64.50218963623047,59.42713928222656],[-64.50265502929688,59.43091201782226],[-64.50679016113281,59.43479919433593],[-64.51231384277344,59.44248962402344],[-64.51514434814453,59.44962310791015],[-64.51543426513672,59.45479965209961],[-64.51314544677734,59.4584846496582],[-64.50890350341797,59.46305084228515],[-64.49903106689452,59.46837615966797],[-64.49127197265625,59.47142028808593],[-64.48265838623045,59.4739646911621],[-64.4684066772461,59.4772720336914],[-64.45616149902344,59.47923278808594],[-64.4486312866211,59.48040390014648],[-64.43449401855469,59.482769012451165],[-64.41453552246092,59.48729705810546],[-64.40309143066406,59.49021911621093],[-64.39232635498047,59.49503707885742],[-64.3862838745117,59.49906921386718],[-64.38379669189453,59.50415802001953],[-64.38436889648436,59.506996154785156],[-64.38740539550781,59.51226043701172],[-64.39131164550781,59.51802444458008],[-64.39434814453125,59.5232925415039],[-64.40044403076172,59.52630615234374],[-64.40775299072266,59.52701187133789],[-64.41580963134766,59.52914810180664],[-64.43192291259766,59.53342437744141],[-64.43802642822266,59.53643798828124],[-64.4451675415039,59.538543701171875],[-64.4566879272461,59.54266738891601],[-64.47108459472656,59.54594421386719],[-64.4834747314453,59.55056381225585],[-64.48657989501953,59.54784393310546],[-64.49401092529297,59.54760742187499],[-64.49965667724608,59.546844482421875],[-64.50529479980469,59.54608154296874],[-64.51191711425781,59.54487991333008],[-64.51957702636719,59.54277038574218],[-64.5236587524414,59.53961181640625],[-64.527099609375,59.534080505371094],[-64.52870178222656,59.528491973876946],[-64.53029632568358,59.52290725708008],[-64.5339126586914,59.51597213745117],[-64.5414810180664,59.5068130493164],[-64.54743625824665,59.5058838629053],[-64.54901123046875,59.505638122558594],[-64.55459594726562,59.505340576171875],[-64.56575012207031,59.5047492980957],[-64.57598876953125,59.50412368774414],[-64.5892105102539,59.501712799072266],[-64.59880065917969,59.49871826171874],[-64.60671997070312,59.49426269531251],[-64.61273956298828,59.49021911621093],[-64.61967468261719,59.4862060546875],[-64.6266098022461,59.48218917846679],[-64.63533020019531,59.478694915771484],[-64.64783477783203,59.47438049316406],[-64.65827178955078,59.47187805175781],[-64.67050170898438,59.469898223876946],[-64.67986297607422,59.46876907348633],[-64.69019317626953,59.46720123291015],[-64.69088788742476,59.467083319773536],[-64.70430755615234,59.464805603027344],[-64.72026062011719,59.462459564208984],[-64.72767639160156,59.46221160888671],[-64.73583984375,59.463394165039055],[-64.74481964111327,59.46553802490235],[-64.75018310546875,59.46710205078125],[-64.76242065429686,59.473098754882805],[-64.76930236816406,59.4775276184082],[-64.77954864501952,59.48487091064453],[-64.7870864868164,59.49166488647461],[-64.79273986816406,59.49887466430664],[-64.79487609863281,59.504573822021484],[-64.7965316772461,59.51448440551757],[-64.80279541015625,59.52452850341797],[-64.80861663818358,59.530330657958984],[-64.82223510742188,59.53260421752929],[-64.82965850830078,59.53234481811523],[-64.8351821899414,59.53250503540039],[-64.84783172607422,59.53521728515624],[-64.85575866699219,59.53873062133788],[-64.85897827148438,59.54304885864258],[-64.86143493652344,59.545936584472656],[-64.86563110351562,59.54981231689453],[-64.8697280883789,59.55462646484374],[-64.87403106689453,59.55756378173828],[-64.87812042236328,59.5623779296875],[-64.87821960449219,59.56989669799805],[-64.8742218017578,59.5725975036621],[-64.86730194091797,59.57662963867188],[-64.85924530029295,59.582504272460945],[-64.85610961914062,59.58570480346679],[-64.85200500488281,59.589344024658196],[-64.84835052490234,59.597225189208984],[-64.84803771972656,59.60003280639648],[-64.84844207763672,59.604740142822266],[-64.84637451171875,59.615013122558594],[-64.84626007080078,59.624404907226555],[-64.84666442871094,59.62911224365234],[-64.84823608398438,59.639961242675774],[-64.84761810302734,59.645576477050774],[-64.84673309326172,59.65353775024414],[-64.84410095214844,59.66050720214843],[-64.83863830566406,59.66786575317383],[-64.83441162109375,59.67244338989258],[-64.83013153076172,59.677486419677734],[-64.82595825195312,59.681594848632805],[-64.82064819335938,59.68754959106445],[-64.8143539428711,59.69394302368164],[-64.80784606933594,59.70221328735352],[-64.80432891845703,59.708686828613274],[-64.80338287353516,59.71711349487305],[-64.80587005615234,59.7279930114746],[-64.8141098022461,59.72916793823242],[-64.81957244873047,59.73026275634765],[-64.8249740600586,59.73182678222656],[-64.83130645751953,59.73341751098632],[-64.83748626708984,59.736412048339844],[-64.84086608886719,59.74778366088867],[-64.83621215820312,59.75610351562499],[-64.83492279052734,59.75935745239258],[-64.83341217041016,59.764480590820305],[-64.83206939697264,59.7681999206543],[-64.83138275146483,59.774288177490234],[-64.83292388916016,59.77714920043945],[-64.83343505859375,59.780921936035156],[-64.84410858154297,59.78545379638671],[-64.85633087158203,59.7928466796875],[-64.85477447509766,59.798442840576165],[-64.85053253173827,59.80301666259765],[-64.8465576171875,59.80525588989258],[-64.84432983398438,59.808479309082024],[-64.84085845947266,59.81448745727539],[-64.83765411376953,59.818153381347656],[-64.83795166015625,59.823799133300774],[-64.84135437011719,59.82671737670898],[-64.84951782226562,59.828826904296875],[-64.85948181152344,59.83145904541015],[-64.87100219726562,59.83694839477539],[-64.86759185791016,59.842491149902344],[-64.85957336425781,59.847431182861335],[-64.84788513183592,59.85179901123047],[-64.84115600585938,59.85348892211914],[-64.8316879272461,59.854629516601555],[-64.8203659057617,59.85571289062499],[-64.80728149414062,59.85580825805663],[-64.79325866699219,59.85587692260742],[-64.78565979003906,59.8570671081543],[-64.77877044677734,59.86015701293945],[-64.77834320068358,59.8639030456543],[-64.78267669677734,59.86684799194336],[-64.7879409790039,59.86981964111329],[-64.79129028320312,59.87320327758789],[-64.79743957519531,59.876670837402344],[-64.80167388916016,59.88055038452148],[-64.80496978759766,59.88440322875976],[-64.80542755126953,59.88864517211914],[-64.80039978027344,59.891788482666016],[-64.79064941406249,59.89526748657226],[-64.78106689453125,59.89733886718751],[-64.77438354492186,59.89855575561524],[-64.76375579833984,59.90153884887695],[-64.758056640625,59.90231323242187],[-64.75141906738281,59.90306091308594],[-64.7437973022461,59.90424728393555],[-64.73348999023438,59.90441894531251],[-64.7249984741211,59.90510940551758],[-64.71753692626952,59.904891967773445],[-64.71106719970703,59.904232025146484],[-64.70442962646484,59.90497589111328],[-64.69856262207031,59.90715026855469],[-64.6875991821289,59.91293716430664],[-64.6824951171875,59.916545867919915],[-64.67723083496094,59.921558380126946],[-64.67305755615234,59.925193786621094],[-64.6698760986328,59.92838668823242],[-64.66850280761719,59.932106018066406],[-64.66619110107422,59.935798645019524],[-64.66553497314453,59.94141769409179],[-64.66596984863281,59.945659637451165],[-64.66645812988281,59.94943237304688],[-64.66777038574219,59.954170227050774],[-64.67293548583984,59.958084106445305],[-64.67831420898438,59.960121154785156],[-64.68930053710938,59.96232604980468],[-64.70045471191406,59.9631233215332],[-64.71347045898438,59.9639778137207],[-64.7236328125,59.96521377563477],[-64.7374267578125,59.96749496459962],[-64.7483139038086,59.97063064575195],[-64.75799560546875,59.97608184814453],[-64.76410675048828,59.980018615722656],[-64.7681884765625,59.98530197143555],[-64.77693939208984,59.990726470947266],[-64.78503417968749,59.993778228759766],[-64.80030822753906,59.991397857666016],[-64.81272888183594,59.989398956298835],[-64.82410430908203,59.98831558227539],[-64.83542633056639,59.98769760131836],[-64.84861755371092,59.98712921142579],[-64.85807037353516,59.98645782470703],[-64.87115478515625,59.98682403564453],[-64.8814926147461,59.986644744873054],[-64.89250183105469,59.98883056640624],[-64.89768981933594,59.992733001708984],[-64.89813995361328,60.000362396240234],[-64.89657592773438,60.00036621093749],[-64.8958740234375,60.00912857055664],[-64.89613342285156,60.01524353027344],[-64.8955078125,60.020862579345696],[-64.89592742919922,60.02557373046875],[-64.89535522460938,60.03072738647461],[-64.89649963378906,60.03733444213867],[-64.89696502685545,60.04157638549805],[-64.89925384521484,60.04634094238281],[-64.90227508544922,60.053001403808594],[-64.90706634521484,60.06065368652343],[-64.90925598144531,60.06635284423828],[-64.90592956542969,60.07095718383788],[-64.90029907226562,60.07080078125],[-64.8938980102539,60.0692138671875],[-64.88374328613281,60.06752395629883],[-64.87354278564453,60.06629943847656],[-64.86339569091797,60.064605712890625],[-64.85600280761719,60.06345748901367],[-64.8458023071289,60.06222915649414],[-64.8336181640625,60.061885833740234],[-64.82154846191405,60.06060409545898],[-64.8141098022461,60.0599250793457],[-64.80474090576172,60.0596580505371],[-64.79074096679688,60.05878829956055],[-64.78413391113281,60.05906677246093],[-64.77079772949219,60.06056594848633],[-64.76210021972656,60.06266403198243],[-64.7522964477539,60.06613922119141],[-64.74717712402344,60.069751739501946],[-64.7399673461914,60.07518005371093],[-64.73760223388672,60.07934188842773],[-64.73430633544922,60.083477020263665],[-64.7316665649414,60.089981079101555],[-64.73189544677734,60.09609603881836],[-64.73416137695312,60.100860595703125],[-64.73664855957031,60.10375213623046],[-64.74283599853516,60.10722351074218],[-64.74985504150389,60.11165237426758],[-64.7548828125,60.11697006225586],[-64.75434112548828,60.12165451049805],[-64.7486572265625,60.1219596862793],[-64.73828125,60.122127532958984],[-64.72889709472655,60.121856689453125],[-64.71685791015625,60.120098114013665],[-64.7038803100586,60.118309020996094],[-64.68997192382811,60.11648941040039],[-64.67970275878906,60.115718841552734],[-64.66761779785155,60.11442184448242],[-64.65547943115234,60.113590240478516],[-64.64797210693358,60.11336898803711],[-64.630859375,60.11473846435547],[-64.6211929321289,60.116802215576165],[-64.6144027709961,60.118476867675774],[-64.60931396484375,60.12161636352539],[-64.60517120361328,60.12478256225586],[-64.60189819335938,60.12844467163085],[-64.6015625,60.13125228881836],[-64.6010513305664,60.13546752929688],[-64.60231018066406,60.14067840576171],[-64.60285186767577,60.143985748291016],[-64.60516357421875,60.148284912109375],[-64.60835266113281,60.15307998657226],[-64.61149597167969,60.15834426879883],[-64.61756134033203,60.16275405883789],[-64.62799835205078,60.17012023925781],[-64.64347076416016,60.174808502197266],[-64.65242767333984,60.1788330078125],[-64.6642608642578,60.182476043701165],[-64.67156219482422,60.18457031249999],[-64.68256378173828,60.1872444152832],[-64.69551086425781,60.18950271606445],[-64.70115661621094,60.189666748046875],[-64.71631622314453,60.189170837402344],[-64.72892761230469,60.18624496459961],[-64.74451446533203,60.18199920654297],[-64.75231170654297,60.17987060546875],[-64.75867462158203,60.181934356689446],[-64.76200103759766,60.185791015625],[-64.76168060302734,60.18860244750977],[-64.76301574707031,60.193340301513665],[-64.76441192626953,60.1976089477539],[-64.76658630371094,60.203311920166016],[-64.77074432373047,60.20812988281251],[-64.776123046875,60.21063613891602],[-64.78432464599608,60.213218688964844],[-64.79545593261719,60.214946746826165],[-64.81119537353516,60.217742919921875],[-64.82128143310547,60.22037887573242],[-64.82977164229258,60.22297068123619],[-64.82979231126819,60.222976990852786]]]]}},{"type":"Feature","properties":{"NAME":"Prince Edward Island","CODE":"CA09"},"geometry":{"type":"Polygon","coordinates":[[[-62.85124034773709,45.9759149459698],[-62.920943711253095,45.9806933406866],[-62.980337319342695,46.0398504671988],[-63.07547561114429,46.0747400550854],[-63.075919839424394,46.0989233465903],[-62.9964742316045,46.1115450060187],[-62.9631824362584,46.1315871625723],[-62.97084264712671,46.1432545244558],[-63.014637901883795,46.154885539262295],[-63.0627108655612,46.1965138105474],[-63.117660030064,46.20141801283929],[-63.2029868897233,46.2287333115539],[-63.2237185425745,46.20531886095599],[-63.223226683688296,46.1811326373931],[-63.2627153650365,46.1626556453835],[-63.615720273844595,46.2259701899005],[-63.7413570483576,46.25845891666099],[-63.8844010080691,46.3240517209399],[-63.9024895956655,46.3430886329535],[-63.896156037053,46.3798736875712],[-64.0033220557995,46.4072531317986],[-64.06162256949169,46.3933071368148],[-64.1957422409162,46.4369261099957],[-64.2069131519341,46.4685292811156],[-64.1685018752241,46.5499616253189],[-64.1646364993027,46.5825696179776],[-64.1765404241873,46.59997170487479],[-64.21689116253769,46.6053604905453],[-64.2516490015721,46.59493430377259],[-64.3316416723736,46.6198497158942],[-64.3656786588087,46.6235951030778],[-64.4067509752238,46.61470833937399],[-64.4384433225271,46.62263795929609],[-64.4634082064987,46.68160524395089],[-64.454023558073,46.698437847583],[-64.38064950741618,46.7520208404255],[-64.34051385654709,46.8235113528859],[-64.2676453552821,46.901207963843],[-64.191323273644,46.9588382529302],[-64.1674199891277,47.000837501466094],[-64.0740646610525,47.0493631944356],[-64.0493997341604,47.0287294347014],[-64.0646501907215,46.9893507646613],[-64.03217531457479,46.9187043124499],[-64.134797962023,46.7381906107307],[-64.12686120668289,46.7265859764507],[-64.095148950116,46.71856633230169],[-64.0563044386036,46.7231316488103],[-64.0166898356921,46.7034817720005],[-63.9637475154902,46.6179974180766],[-63.9495881981139,46.5663732341859],[-63.9638454274172,46.5411990548021],[-63.9417519153745,46.5163597042292],[-63.8912294963598,46.503454631968296],[-63.8628669888169,46.4769879904159],[-63.8123892318392,46.4640494399117],[-63.78870009778059,46.46757551759859],[-63.77439134976769,46.4927232137307],[-63.7709820289408,46.5494999948947],[-63.7163245817136,46.5690918661743],[-63.5774259222381,46.5332691785449],[-63.46833262340879,46.5338484656093],[-63.41788288328951,46.5207338084058],[-63.3567670768916,46.4759418100246],[-63.0600413421817,46.41249051008759],[-63.0363074810716,46.4158537244435],[-63.00664062891181,46.4417288584317],[-62.9542329246846,46.4567633719769],[-62.8829330350678,46.4667641459979],[-62.7550338147721,46.46163845644699],[-62.673776677788,46.4881544779329],[-62.434200837897194,46.4865078768126],[-62.1820043238364,46.505083270281],[-62.11799206839521,46.5021315750999],[-62.0740953002071,46.4901389145917],[-62.0666034120114,46.4784202603434],[-62.0905166723867,46.45111753711279],[-62.1833362467189,46.4184586615228],[-62.2910102233458,46.3608068502293],[-62.4534458686072,46.3082722672225],[-62.473113250964694,46.2508530423402],[-62.5538938281834,46.200297647539],[-62.5711177027794,46.1711800117651],[-62.55974970866539,46.1536453191213],[-62.5060013949816,46.1343045316018],[-62.5441881676191,46.0819240897227],[-62.5290525286078,46.0585418795368],[-62.49654954207179,46.0401008013566],[-62.496352356795,46.0159320668554],[-62.52239850818691,46.0085162657253],[-62.57091871869909,46.0119917635944],[-62.7158954886791,45.9739417770045],[-62.78838985805499,45.9843020116854],[-62.836147631606394,45.97990037153419],[-62.85124034773709,45.9759149459698]]]}},{"type":"Feature","properties":{"NAME":"Nova Scotia","CODE":"CA07"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-63.933251450294335,45.995787194216106],[-63.93202278672219,45.99553334602939],[-63.8576636658212,45.96200470164129],[-63.7388375003814,45.9313032159968],[-63.6380445910626,45.9195499993588],[-63.5301916664385,45.9202671186097],[-63.4802403482368,45.9072134599659],[-63.4531202662872,45.8664810822052],[-63.384519373177994,45.8484832719804],[-63.3088325540174,45.8429896339346],[-63.273821565048195,45.8289509392372],[-63.262264790011194,45.811478060564596],[-63.269392018102195,45.7989371218193],[-63.2501398605275,45.7698149936673],[-63.2314682765584,45.7648782682255],[-63.182243602329,45.7758897099045],[-63.15073418131309,45.806011854340696],[-63.0904427491713,45.8236813853154],[-62.9463593032441,45.7997306710297],[-62.77444301341999,45.8114352732558],[-62.7222980872588,45.8022209596002],[-62.60776329077359,45.7520248467716],[-62.59263472818479,45.7286538324036],[-62.60232233440179,45.7120026450439],[-62.6588805812696,45.6887631300659],[-62.673360763554,45.663775252507],[-62.6533931339019,45.6487415416469],[-62.5227872207371,45.67596919366989],[-62.4174750904799,45.6472929785933],[-62.40022592195939,45.6522278324696],[-62.3486565044501,45.69118420415659],[-62.1720438101712,45.7344269519352],[-62.0013359129064,45.8273908451887],[-61.921916144926,45.8875522611827],[-61.885915500042,45.8872407401902],[-61.8698485288592,45.8537836552445],[-61.8773151071072,45.8413570789521],[-61.8637800152715,45.7796050698299],[-61.893571244799,45.7057397210199],[-61.8836872683116,45.67400411714619],[-61.78597539868999,45.6806144190424],[-61.6549548045424,45.6584717874569],[-61.5223464320595,45.6986022457925],[-61.4654198597542,45.6970741183379],[-61.3876904055898,45.6702706447295],[-61.217030514638495,45.5588543626957],[-61.2061221270414,45.5412154898048],[-61.2226065596752,45.5023347515626],[-61.3895374251204,45.4530125933963],[-61.4279312098893,45.4251952117315],[-61.42194818594759,45.3993110254197],[-61.2436651467841,45.3727844106338],[-61.140212606932394,45.3770932047048],[-61.08832691358219,45.3912763798785],[-61.00573227968879,45.3966109043499],[-60.94188019238909,45.3830621225788],[-60.92746298159939,45.3595159876094],[-60.94873198036059,45.3365769176858],[-61.0351713708258,45.3130326869551],[-61.1284995051142,45.3253107382324],[-61.1457729201608,45.3205783875391],[-61.1805525086116,45.286968610490895],[-61.2826778929732,45.2726034109674],[-61.3310419708311,45.2248177693477],[-61.4022284421737,45.2050745076153],[-61.591157496262106,45.2006191562344],[-61.6181717896221,45.1792552201357],[-61.5998267289108,45.1499128399769],[-61.620682938054394,45.126815609830494],[-61.652530915837005,45.1213141076191],[-61.71009555541709,45.1327103641858],[-61.8483156009183,45.0798077986133],[-61.927826656998,45.077938685928],[-61.97911902735619,45.0633177990151],[-62.0765897001677,45.0181345355305],[-62.100669178272206,44.9766158101234],[-62.120120031883296,44.9675617201992],[-62.39338032669579,44.87456681936379],[-62.4833811972092,44.865630250727],[-62.523013391991505,44.833193328032195],[-62.61339318364389,44.7857866235978],[-62.7393509684228,44.7624712227079],[-62.75859538712059,44.75328924473369],[-62.7551892268339,44.7090897830739],[-62.7790727767671,44.6915590322446],[-62.80816605936539,44.689864693478896],[-62.8669257900486,44.7106384640488],[-62.987928651027595,44.6953637166584],[-63.0199755662273,44.7136257843284],[-63.0589775744879,44.7193412391975],[-63.10111095598689,44.706676434413],[-63.1340973451987,44.6723367757829],[-63.17235860152469,44.6538149599969],[-63.2992178267602,44.6398172516998],[-63.36485888645019,44.6093752034245],[-63.4442028002885,44.5921478022575],[-63.5680783918846,44.6346120591588],[-63.60955976192249,44.6743415067978],[-63.6447111346881,44.6740361082229],[-63.6537662055831,44.6572555746143],[-63.6383337101066,44.6340137801217],[-63.547939703622795,44.5813428646391],[-63.527132151100304,44.542269680146],[-63.535963951260996,44.4870958092033],[-63.6414124517299,44.4335824153919],[-63.670313182289696,44.4316446561841],[-63.798502145490495,44.4654402182502],[-63.9357353227536,44.4822805292339],[-63.966810938012,44.5286913866885],[-63.95953885828091,44.555510628902496],[-63.987907813162494,44.5676993100661],[-64.030218960322,44.4878057984127],[-64.0591210100638,44.4857646834838],[-64.0869365150288,44.5121376657888],[-64.1236458026799,44.5216737724308],[-64.1486553296367,44.51381293374279],[-64.2351628025054,44.4549229578446],[-64.2571895667512,44.4128099109274],[-64.2237160686358,44.370680723636],[-64.2239626428615,44.3038150959146],[-64.2415121306074,44.27012241934],[-64.3077990520291,44.2490476032284],[-64.3792627900304,44.1910600850741],[-64.4371230016228,44.17253868862559],[-64.4870872080422,44.1424149387861],[-64.5144076770503,44.1160127493808],[-64.5277499622099,44.0764713717268],[-64.6287422622383,44.0403213988446],[-64.6733989730489,43.9658585859379],[-64.7582772443591,43.9064475083242],[-64.79469847313679,43.8203599663699],[-64.9195067137716,43.7758448193064],[-64.9911620789252,43.7415977409897],[-65.04453902464968,43.7027003884244],[-65.1036853170224,43.6795369902706],[-65.2065411963869,43.7197256900322],[-65.2356618094558,43.6603851468647],[-65.25990390620018,43.6664703560152],[-65.2878120974749,43.7067890093744],[-65.3141488836578,43.7086229762429],[-65.3307297928861,43.674694680127196],[-65.3109264062165,43.631662052025696],[-65.3217007920567,43.5677332325891],[-65.3320199363075,43.5465249127117],[-65.3867362751023,43.5316698579619],[-65.42975065797148,43.4567905245948],[-65.4620227399344,43.460090621446],[-65.4860216251589,43.494610558301694],[-65.5344211790134,43.5066567842698],[-65.5950152411095,43.5074399684957],[-65.6192890420698,43.499195173441],[-65.6395966637878,43.4709495495919],[-65.7061599080724,43.4874143042978],[-65.8009376131586,43.5582943579927],[-65.8069754385787,43.5740341265877],[-65.7907300007792,43.6080570637441],[-65.8432328108793,43.668466950158894],[-65.8633371981707,43.7541738749098],[-65.9038736650759,43.7688370285882],[-65.974857172292,43.762398912296],[-65.9829650582076,43.7453725649092],[-65.96269273092798,43.6881785618541],[-65.974831388106,43.662638896876],[-65.9910223583281,43.65708717328219],[-66.0153197299035,43.6630064355926],[-66.0396426267057,43.6831728620884],[-66.0945263737552,43.781979447152],[-66.1229450527204,43.7936119590632],[-66.1392316995542,43.8165466073985],[-66.1331725741991,43.8293265497828],[-66.1700050846181,43.9521897403895],[-66.1619923672027,44.0262412462591],[-66.2008487040481,44.11633234180219],[-66.10066850626458,44.3535129624752],[-66.0472565095016,44.4071804962819],[-65.9340757053253,44.4844327357643],[-65.896900095428,44.5182320356736],[-65.8802333174881,44.55224374749259],[-65.8945355737441,44.56522123995679],[-65.9543014756691,44.5416318517979],[-66.0388007856826,44.4811964374351],[-66.1026169914408,44.4062557970896],[-66.1292863701434,44.393660625928],[-66.17437483817609,44.399736334687795],[-66.1866619077992,44.416936602511],[-66.1784437334433,44.4339712165649],[-66.1230089990963,44.4634337160122],[-66.0591290682224,44.5383825817244],[-65.8962278603038,44.6179522671046],[-65.7992283184087,44.6467696334518],[-65.7642054895644,44.647775480263],[-65.702574244165,44.63276811042869],[-65.6508516847935,44.653465827710896],[-65.632019903308,44.6774291138698],[-65.666905694384,44.690708975982496],[-65.6831337565548,44.7137087419655],[-65.6664024300182,44.73343206210179],[-65.5771413749955,44.7735296883011],[-65.4290728741701,44.8610776028652],[-65.1657563781891,44.9819967179594],[-65.0792937957205,45.0416295996551],[-64.9911778029875,45.0769546730149],[-64.9277067261303,45.1183961082065],[-64.7800624446548,45.1864792656735],[-64.6200901297957,45.2369886077936],[-64.4715221858047,45.2519598477819],[-64.4062263274165,45.2688429094412],[-64.3555392009176,45.33727518300069],[-64.29351141727619,45.32144775659219],[-64.2715513502847,45.2966878460029],[-64.2727108467967,45.2682653330919],[-64.3065270549423,45.2051271678353],[-64.2952771662232,45.1735369172433],[-64.2041804932898,45.1597522824263],[-64.0885726614537,45.0868921848188],[-64.0525702220047,45.1015326865145],[-64.0904772298721,45.1879416153313],[-64.0655160964776,45.2341840799093],[-63.966216454319195,45.26121719150089],[-63.850062266222295,45.3317399347174],[-63.62200669369499,45.3345846458594],[-63.5114074379187,45.3679358969369],[-63.5059706716338,45.3905063837326],[-63.54312176477399,45.400268910261],[-63.6189843646775,45.3913687717215],[-63.754465316059694,45.4027690199659],[-63.8449732037113,45.3927419116599],[-63.9781774860115,45.4080656921411],[-64.1515912377138,45.4143839869212],[-64.4368271182611,45.3962319530979],[-64.5847835113914,45.409767291679096],[-64.6355245141682,45.3938714832693],[-64.6703118936664,45.3548231273775],[-64.712529016063,45.3415419495289],[-64.743124850526,45.3635655622139],[-64.79907333659999,45.3775918654424],[-64.8745794384944,45.3678050821565],[-64.8883675748635,45.395133222676],[-64.8461277486319,45.47537091828319],[-64.77350374636208,45.5193492386895],[-64.55473553805038,45.5982985353053],[-64.4731500339303,45.64469279689139],[-64.418647191957,45.6931294203516],[-64.3912948635039,45.7436533924966],[-64.2978259504355,45.8109388362506],[-64.29014340422289,45.82501635270725],[-64.12423134241735,45.951633452506215],[-64.11371872146066,45.951633452506215],[-64.05064299572052,45.94112083154952],[-64.05064299572052,45.935864521071174],[-63.98756726998039,45.93060821059283],[-63.933251450294335,45.995787194216106]]],[[[-60.8860456691771,46.0872677013972],[-61.0638246205969,46.0192027983604],[-61.087970742969,45.9921362247561],[-61.0770726955215,45.974483035814],[-61.0358564487647,45.9821251811721],[-60.9678566853627,46.0209085491919],[-60.883735836844494,46.0502009893801],[-60.8715964958128,46.0637088237736],[-60.79331339846199,46.0776412309411],[-60.78610769111971,46.0658569825059],[-60.800636372917594,46.0311921377506],[-60.7485226376101,46.021044321929],[-60.6404876758543,46.053004992923796],[-60.5772832732884,46.0833067639704],[-60.3679446618342,46.2267436970616],[-60.38747371979749,46.2421600669908],[-60.4545948218978,46.2178910201966],[-60.541652967045096,46.150756609773694],[-60.5821356855311,46.1333148658849],[-60.610510078709,46.1463830457726],[-60.584795986323996,46.1816758092837],[-60.53500168056439,46.20717085714439],[-60.41164946457399,46.3075755972018],[-60.35149953123509,46.3436160587794],[-60.31604981363569,46.3527650292806],[-60.2690234969009,46.3341840435238],[-60.2405701156357,46.2528422161349],[-60.203377419147195,46.2419581615564],[-60.1768244919928,46.248787220704],[-60.1201189204269,46.2906024445364],[-60.0784598288773,46.2978542950766],[-59.99788880318879,46.2741384198616],[-59.9590287247883,46.2431772569807],[-59.897133388769895,46.2248788511821],[-59.858165317644996,46.2279643909887],[-59.80867707241019,46.2132844160014],[-59.807033908596296,46.1932894870796],[-59.8346344824321,46.16247376432],[-59.8206192070674,46.1388087744793],[-59.8473330881968,46.097987900574196],[-59.8650180704244,46.0934884446386],[-59.904001503299895,46.0563131572981],[-59.89698190445001,46.0444847447292],[-59.8599699660401,46.0334984424175],[-59.81230646233269,46.0388274798989],[-59.76297793935219,46.0241386552917],[-59.7524950712189,46.0063857468855],[-59.76583266316369,45.9859837206822],[-59.9193385655902,45.91956001962859],[-60.04959057346541,45.8997009719502],[-60.06276734790019,45.87925265082119],[-60.048675988737195,45.8556124910393],[-60.087282779869305,45.8183476631352],[-60.4442431872378,45.6704091552034],[-60.60902907156709,45.6164831374579],[-60.7012522961844,45.6432706411323],[-60.7766121278525,45.6505338324372],[-60.803303192287395,45.6776548137078],[-60.7530404536462,45.7116531832894],[-60.73763348106589,45.736317448516],[-60.70666406224979,45.8438672397247],[-60.6891588833245,45.8485140199014],[-60.6736567163371,45.8731628078798],[-60.62048366824519,45.9111880925389],[-60.469919305690894,45.9986654819137],[-60.45519074761789,46.033272843264],[-60.488725542397695,46.0381659483831],[-60.5421624429897,46.00022180913339],[-60.69920260056921,45.948538321268],[-60.960987527827,45.926765324250894],[-60.98361910606659,45.91384086282369],[-60.9763800445012,45.9020677622088],[-60.9331065766765,45.8896677136842],[-60.93975432938801,45.8673190722116],[-61.0507793013853,45.8409066916573],[-61.07844322112311,45.8197202789504],[-61.11154121672139,45.7661554786601],[-61.0981087251039,45.7526266067178],[-61.05491766243289,45.7402810947382],[-60.86556390761141,45.7877881011103],[-60.834720113737305,45.77890602549729],[-60.820316418033094,45.75534500152789],[-60.838256379171,45.7265545776174],[-60.896135486879295,45.6801678655791],[-60.9560306392593,45.6537510348217],[-61.1371882227444,45.6184145442396],[-61.1730410260986,45.6189610932243],[-61.2346553439002,45.636519627068694],[-61.3058545081492,45.6858107499393],[-61.40827078134459,45.7196562362268],[-61.46732261467021,45.76536555693429],[-61.501500092243,45.8282287111192],[-61.520384514888995,45.9400188362682],[-61.565693265339796,46.0204895676209],[-61.569159275035595,46.0505023990598],[-61.536481086669,46.080079817721],[-61.483976172738096,46.0944115326168],[-61.4661887437266,46.1233194554402],[-61.486835634608894,46.1726992947333],[-61.474103487272394,46.1933471451839],[-61.2874335846948,46.305638677649995],[-61.2212739573079,46.3645656654581],[-61.0967038528711,46.6205332722522],[-61.032836835532095,46.709306005526],[-60.8761962633899,46.8495592731179],[-60.81200262992329,46.8799359385368],[-60.70581328779349,46.9518380699548],[-60.639696818813206,47.0303037758472],[-60.5651945441339,47.0528171842971],[-60.4106914473542,47.037683253917194],[-60.4062323635405,47.0217805162838],[-60.4538580955836,46.97215346230299],[-60.4718005041537,46.93347689663799],[-60.4511849734882,46.9080601987779],[-60.332080496229395,46.8736816682966],[-60.30710105263189,46.832339897997],[-60.3867508192341,46.6995143927304],[-60.39194291001179,46.5549416058102],[-60.466300556305896,46.44020240349769],[-60.52461461596051,46.384099686882],[-60.5732110709705,46.3543705081082],[-60.5942527314284,46.32154579693529],[-60.568438760419596,46.3043657602161],[-60.5419074606753,46.31128361020859],[-60.48636403405819,46.3633028208988],[-60.44828638389221,46.3765952003298],[-60.4224921877171,46.3593819238973],[-60.6225458916358,46.20818332541],[-60.8860456691771,46.0872677013972]]],[[[-60.9240983826501,45.4942657394531],[-61.0198738349224,45.5266669234284],[-61.0292796533271,45.5584450002657],[-61.0115370036477,45.5872793733053],[-60.840589216422,45.6059519021133],[-60.82979361560891,45.5882833493226],[-60.837442751704394,45.5759415629228],[-60.8809142890546,45.5642399748901],[-60.88854579350039,45.55189343759],[-60.866935986969594,45.5165633285328],[-60.8770987949209,45.50010131846519],[-60.9240983826501,45.4942657394531]]]]}},{"type":"Feature","properties":{"NAME":"Northwest Territories","CODE":"CA06"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-130.804959645563,69.5687885065009],[-130.852739354404,69.5696042209692],[-130.890600189023,69.58901005129479],[-130.883980272895,69.6014120219218],[-130.840385557779,69.6106897400407],[-130.803423670015,69.60755618968989],[-130.776500899601,69.58581820071198],[-130.804959645563,69.5687885065009]]],[[[-130.968342197062,69.4789494091316],[-130.961775438541,69.4913509358799],[-130.903319018448,69.4928827551718],[-130.8581154328,69.4695973191772],[-130.871355519304,69.4448006880782],[-130.92216141771698,69.43940343154],[-130.967363544662,69.4626720979705],[-130.968342197062,69.4789494091316]]],[[[-125.04794522150499,70.1461027760961],[-125.04642403444,70.1256196441243],[-125.065398843735,70.1158733051241],[-125.112091229397,70.1084991582139],[-125.182611487449,70.104092623504],[-125.21451896939199,70.10917211067479],[-125.23588374236,70.1294513409344],[-125.21933931055798,70.1439128095964],[-125.14169644105799,70.159579344577],[-125.04794522150499,70.1461027760961]]],[[[-125.313087290102,69.7367498174299],[-125.310677517826,69.7270818278896],[-125.319564547963,69.71719762063368],[-125.35392196122099,69.71163563827359],[-125.42371250617599,69.713834682161],[-125.43890198630599,69.7333437228989],[-125.42829252493298,69.7452082716434],[-125.39008070310598,69.7514031940772],[-125.313087290102,69.7367498174299]]],[[[-123.96356694295602,69.7062169644387],[-123.921864242587,69.6869761515417],[-123.93715218492301,69.6779332434865],[-123.969649382747,69.6612223877058],[-124.00624386973898,69.6606075464699],[-124.031576626897,69.6751203246778],[-124.04547494878499,69.69474804930408],[-123.96356694295602,69.7062169644387]]],[[[-116.973839035589,70.5890128890474],[-117.01152607635099,70.5844397636364],[-117.19882464846899,70.5966139428413],[-117.25226793400098,70.6050816638361],[-117.27862554652299,70.626878155859],[-117.221037849744,70.6389383476317],[-117.11929052814999,70.6263391102986],[-117.02075527506501,70.6283136820651],[-116.967349823707,70.6197850595113],[-116.946531291673,70.60231500051569],[-116.973839035589,70.5890128890474]]],[[[-116.438712620999,70.5732626725734],[-116.48906514608099,70.56729397182279],[-116.645567468746,70.578582619241],[-116.698722948335,70.58719405307998],[-116.714164976222,70.6003176275428],[-116.63113360252399,70.6152278187123],[-116.535002686275,70.6067114008789],[-116.446466631795,70.5922784411914],[-116.438712620999,70.5732626725734]]],[[[-116.23145566540802,70.5782990344863],[-116.284832303469,70.5860716064421],[-116.32946627283899,70.5939238757737],[-116.35038740816299,70.6068012217312],[-116.34574840571898,70.6207120104011],[-116.30888602321099,70.6271308071305],[-116.254283478734,70.62367229040538],[-116.20026375523598,70.60002530138699],[-116.23145566540802,70.5782990344863]]],[[[-116.657756798467,70.5569539634712],[-116.609177568149,70.5432578851253],[-116.596373448849,70.526378812031],[-116.62506564676002,70.5114187615517],[-116.65596704920799,70.5108192505039],[-116.704481120019,70.5192677022991],[-116.72915487701299,70.5348619215473],[-116.728224948996,70.5486646620342],[-116.657756798467,70.5569539634712]]],[[[-115.89450343557898,70.5902114216795],[-115.93244805658799,70.5844851138744],[-115.97920569722099,70.582968591734],[-116.04654615564999,70.582640018981],[-116.091834524999,70.6005174892272],[-116.056693544329,70.6108934221948],[-115.97092235373698,70.6215068566672],[-115.917463940075,70.6119896526397],[-115.89450343557898,70.5902114216795]]],[[[-112.948491322518,70.2941624543098],[-113.0024163171,70.2925777899821],[-113.04529738305098,70.2957817837323],[-113.10869060110798,70.2994808146766],[-113.158756695194,70.30319158380449],[-113.202920782053,70.3191904172125],[-113.180751695813,70.3282555009923],[-113.133010846355,70.3349198204008],[-113.06399975152,70.3364268828128],[-112.995500540179,70.3308112126213],[-112.93312113106299,70.3128784766384],[-112.948491322518,70.2941624543098]]],[[[-112.651320141945,70.27470013703409],[-112.744025705998,70.2703563041605],[-112.78623598517298,70.2857083788394],[-112.760999671271,70.3029096707509],[-112.685039150938,70.3104745421267],[-112.63440039499899,70.3008276414769],[-112.621779638419,70.2874092759187],[-112.651320141945,70.27470013703409]]],[[[-111.74848559735199,70.2987387351568],[-111.854143953283,70.2935991715469],[-112.026816911964,70.3014884576152],[-112.190717405168,70.32961654427478],[-112.22406606676398,70.3507981137821],[-112.206902948674,70.362224513972],[-112.156010044182,70.36713470372588],[-111.975059775762,70.3357062943395],[-111.806171435978,70.3322660459647],[-111.73915181436898,70.3191092217012],[-111.74848559735199,70.2987387351568]]],[[[-111.7694224188,75.89872073299289],[-111.761169828012,75.8835863225675],[-111.791490927204,75.8757264205982],[-111.86700539646,75.8729083410391],[-111.94877726383,75.8819563242254],[-111.967111388004,75.8950518857929],[-111.94343046359899,75.9072688767983],[-111.856437614503,75.9108257842143],[-111.7694224188,75.89872073299289]]],[[[-124.561698059007,69.7597329383174],[-124.52298501618,69.7349721650534],[-124.480598734948,69.7265110958736],[-124.22546724428,69.712284517971],[-124.18325296377698,69.7037569984893],[-124.138743142067,69.6747786229213],[-124.194029477888,69.6446314265419],[-124.34110257045698,69.5988863645443],[-124.390943017785,69.5278286405894],[-124.486206297466,69.4958842079869],[-124.525369257241,69.4369824034271],[-124.591020873699,69.4047887834133],[-124.51133249946699,69.3715819870823],[-124.405353387353,69.3585411163355],[-124.27167898706799,69.3554119640289],[-124.04909306598698,69.388095916402],[-123.82630276971,69.3633615861679],[-123.71647194478598,69.3662275006593],[-123.579313311109,69.3891298350001],[-123.495500160897,69.4289552607248],[-123.46061152633402,69.5020650583223],[-123.25934609538498,69.5403061047001],[-123.22144917992898,69.5827102864244],[-123.23961862883299,69.6728938605362],[-123.16116113600698,69.7270160192746],[-123.22928720090898,69.7729244512937],[-123.207460148513,69.7971640376712],[-122.696571460065,69.8530124040143],[-122.20457080799,69.8219726579599],[-122.06281982316001,69.8233787208927],[-121.737829425228,69.80658339966888],[-121.37246021696,69.7596185862482],[-121.150452152395,69.6805890442744],[-120.88847479126,69.6227946704093],[-120.820220635462,69.5718070297874],[-120.67908906443918,69.51846972995556],[-120.6781613274032,69.49708444772227],[-120.66418457031249,68.00469970703125],[-113.9756622314453,66.0017318725586],[-112.5052261352539,65.49946594238281],[-112.02126312255858,65.49752044677734],[-110.64787292480469,65.49838256835938],[-109.32880401611328,64.85412597656249],[-107.02738189697264,64.70330047607422],[-106.17440032958984,64.63580322265625],[-105.54420471191406,64.56139373779297],[-104.39289855957031,64.44603729248047],[-103.00697326660156,64.30279541015625],[-102.6537139954795,64.27517609300197],[-101.99999999999999,64.24056042488104],[-101.99999999999999,64],[-101.99999999999999,63],[-101.99999999999999,61.99999999999999],[-101.99999999999999,60.99999999999999],[-101.99999999999999,59.99999999999999],[-102.18582322503215,59.99999999999999],[-102.99999999999999,59.99999999999999],[-104,59.99999999999999],[-105,59.99999999999999],[-106,59.99999999999999],[-107,59.99999999999999],[-107.62743482897945,59.99999999999999],[-107.62714668542121,59.98810386711136],[-107.78175388833378,59.99999999999999],[-108,59.99999999999999],[-109,59.99999999999999],[-110,59.99999999999999],[-111,59.99999999999999],[-112,59.99999999999999],[-112.24049377441406,60.000720977783196],[-112.99999999999999,59.99999999999999],[-113.99999999999999,59.99999999999999],[-115,59.99999999999999],[-116.00000000000001,59.99999999999999],[-116.00187683105469,60.00000762939453],[-117,59.99999999999999],[-117.99999999999999,59.99999999999999],[-119,59.99999999999999],[-119.99999999999999,59.99999999999999],[-121,59.99999999999999],[-121.99999999999999,59.99999999999999],[-122.23148345947266,60.000701904296875],[-122.35317993164061,60.000900268554695],[-122.51114654541016,60.00098419189453],[-122.57760620117186,60.00096130371094],[-122.58808898925783,60.000953674316406],[-122.71504974365234,60.000801086425774],[-122.75565338134764,60.000728607177734],[-122.83927154541014,60.000530242919915],[-122.98056030273436,60.00007629394531],[-123,59.99999999999999],[-123.797119140625,60.00063705444335],[-123.83146667480467,60.00054931640625],[-123.8548278316163,60.00047317320613],[-123.8654327392578,60.000457763671875],[-123.87478637695312,60.010398864746094],[-123.88014221191405,60.01490402221679],[-123.88243103027342,60.017982482910156],[-123.88745880126953,60.02204895019531],[-123.89808654785155,60.02557373046875],[-123.91089630126952,60.03068923950195],[-123.91703033447266,60.03355026245117],[-123.9214096069336,60.03673934936523],[-123.927978515625,60.04151916503906],[-123.93345642089842,60.043498992919915],[-123.94113159179686,60.04707336425781],[-123.94912719726561,60.051082611083984],[-123.95790100097655,60.057456970214844],[-123.96678161621094,60.06531143188477],[-123.97576904296874,60.07464599609374],[-123.97763061523438,60.0798110961914],[-123.98036193847658,60.08881378173828],[-123.98716735839842,60.10056686401367],[-123.98827362060545,60.10336685180664],[-123.99122619628906,60.111324310302734],[-123.99484252929688,60.12016677856445],[-123.99758911132811,60.12516403198242],[-124.00540161132812,60.134223937988274],[-124.01573944091797,60.145313262939446],[-124.02345275878905,60.15288925170898],[-124.0350112915039,60.160247802734375],[-124.0504379272461,60.16738128662109],[-124.0695114135742,60.175334930419915],[-124.08495330810547,60.18246841430664],[-124.0966567993164,60.19129943847656],[-124.10669708251952,60.19793701171874],[-124.10408782958984,60.2104606628418],[-124.10608673095702,60.21710205078126],[-124.10798645019531,60.22626876831055],[-124.10888671875,60.23011398315429],[-124.11000061035156,60.23291397094726],[-124.11586761474608,60.23933029174805],[-124.12317657470702,60.24497985839844],[-124.13658142089842,60.25600814819336],[-124.1430435180664,60.269840240478516],[-124.14051818847656,60.275825500488274],[-124.14518737792967,60.281970977783196],[-124.16404724121092,60.297492980957024],[-124.1752700805664,60.306922912597656],[-124.18482208251953,60.31415939331054],[-124.19039154052733,60.32014083862304],[-124.1954116821289,60.32672119140625],[-124.20288848876953,60.33785629272461],[-124.20858764648438,60.345317840576165],[-124.21250915527344,60.35311126708984],[-124.21511840820311,60.36315536499023],[-124.21404266357422,60.36837387084961],[-124.21222686767578,60.379249572753906],[-124.21337890625,60.38605880737305],[-124.2133026123047,60.39259338378907],[-124.21047973632811,60.40215301513671],[-124.20575714111327,60.41056442260742],[-124.19867706298828,60.415901184082024],[-124.1901626586914,60.4220085144043],[-124.18190002441405,60.43508911132813],[-124.18295288085938,60.4444236755371],[-124.18765258789062,60.450569152832024],[-124.19288635253906,60.452098846435554],[-124.20144653320312,60.45401000976562],[-124.22604370117186,60.456939697265625],[-124.25240325927733,60.45952987670898],[-124.26598358154297,60.459999084472656],[-124.27430725097656,60.458938598632805],[-124.2950973510742,60.45955657958984],[-124.32904815673827,60.46271896362305],[-124.34629821777344,60.46399688720703],[-124.3561019897461,60.46616744995117],[-124.37436676025389,60.46875381469726],[-124.39167785644533,60.47403335571288],[-124.40898132324217,60.47930908203124],[-124.41571807861327,60.484066009521484],[-124.42237854003905,60.49135208129882],[-124.42323303222655,60.497718811035156],[-124.42430877685547,60.50304412841796],[-124.42720794677733,60.51204299926758],[-124.42819976806639,60.519893646240234],[-124.43453216552733,60.526737213134766],[-124.44140625,60.53297805786133],[-124.44965362548828,60.54096984863281],[-124.4532470703125,60.55084228515625],[-124.4558868408203,60.55687713623046],[-124.46456909179688,60.56277847290039],[-124.46975708007811,60.56682586669922],[-124.47904205322266,60.57612991333007],[-124.48560333251952,60.581932067871094],[-124.50228881835936,60.59285354614258],[-124.51734924316405,60.59906005859375],[-124.53304290771484,60.608665466308594],[-124.54208374023436,60.6150016784668],[-124.55372619628906,60.62335968017578],[-124.55825042724608,60.62652587890626],[-124.56730651855467,60.63285827636718],[-124.58075714111327,60.64087677001954],[-124.58809661865234,60.64501953125],[-124.59262847900389,60.64818572998047],[-124.59806060791014,60.65118408203126],[-124.613037109375,60.66242980957031],[-124.62169647216797,60.67084884643555],[-124.62232971191406,60.67425537109374],[-124.62275695800781,60.68523788452148],[-124.62223052978516,60.6923828125],[-124.6175765991211,60.700809478759766],[-124.61785888671875,60.70377349853515],[-124.60700988769531,60.71085357666015],[-124.59642791748045,60.714363098144524],[-124.58370971679686,60.71776962280273],[-124.57257080078125,60.72188186645507],[-124.56356048583984,60.726097106933594],[-124.5502166748047,60.732635498046875],[-124.53900146484375,60.73927307128906],[-124.52467346191406,60.7485008239746],[-124.51847076416016,60.75369262695312],[-124.5035934448242,60.7635269165039],[-124.49269104003905,60.770599365234375],[-124.4811019897461,60.77679061889648],[-124.48094940185547,60.781848907470696],[-124.48348999023438,60.78639984130859],[-124.49423217773436,60.79092025756836],[-124.50621795654295,60.79570770263672],[-124.51814270019531,60.80302810668945],[-124.52924346923827,60.80798339843749],[-124.53661346435547,60.81866455078125],[-124.53964233398436,60.82513809204102],[-124.5422592163086,60.83369827270508],[-124.54308319091797,60.84259414672851],[-124.54474639892578,60.84731292724609],[-124.54701995849608,60.8554344177246],[-124.54853820800783,60.86520767211913],[-124.55274963378906,60.8744773864746],[-124.55481719970703,60.877105712890625],[-124.56098175048828,60.88751983642578],[-124.56408691406249,60.897998809814446],[-124.56775665283202,60.907875061035156],[-124.5705337524414,60.91791915893554],[-124.57247924804686,60.92560195922851],[-124.57463073730467,60.9322395324707],[-124.57705688476562,60.941844940185554],[-124.5835723876953,60.946159362792976],[-124.59599304199219,60.9513816833496],[-124.601318359375,60.952896118164055],[-124.61054229736327,60.95669937133788],[-124.62793731689453,60.9564552307129],[-124.64040374755858,60.952606201171875],[-124.64497375488281,60.94923400878906],[-124.64557647705078,60.94609832763671],[-124.65899658203125,60.93954849243163],[-124.66605377197264,60.93671035766601],[-124.68441772460938,60.94029998779297],[-124.69683837890624,60.94551086425781],[-124.71376800537108,60.94987487792969],[-124.7265625,60.946453094482415],[-124.73436737060547,60.94195938110351],[-124.74320983886719,60.93878173828124],[-124.7552490234375,60.93700790405273],[-124.76428985595702,60.94184875488281],[-124.77227783203124,60.94537353515625],[-124.7922134399414,60.95218276977539],[-124.81165313720703,60.95706558227538],[-124.81980133056642,60.953006744384766],[-124.82404327392578,60.946659088134766],[-124.83326721191406,60.9413833618164],[-124.83627319335936,60.93476867675781],[-124.84439849853516,60.930709838867195],[-124.84893798828125,60.92732620239257],[-124.86135864257811,60.923458099365234],[-124.86673736572266,60.922431945800774],[-124.87457275390624,60.9154052734375],[-124.88184356689453,60.90898132324218],[-124.88371276855469,60.90358352661133],[-124.8827896118164,60.89469146728516],[-124.8816680908203,60.88684082031249],[-124.87684631347655,60.87566375732422],[-124.87094116210938,60.865699768066406],[-124.87212371826172,60.85942840576171],[-124.8719024658203,60.851409912109375],[-124.88868713378905,60.85173797607422],[-124.89851379394531,60.852386474609375],[-124.91668701171875,60.85446166992187],[-124.9350814819336,60.85548782348633],[-124.94761657714844,60.85309219360351],[-124.96604156494139,60.851585388183594],[-124.99050903320311,60.852447509765625],[-125.01230621337889,60.8512954711914],[-125.0205612182617,60.84870529174804],[-125.03437042236327,60.844036102294915],[-125.05494689941406,60.840084075927734],[-125.06514739990233,60.83863067626953],[-125.0869369506836,60.83746337890624],[-125.10890197753906,60.83777618408203],[-125.13511657714844,60.8407974243164],[-125.14691925048828,60.84003448486328],[-125.16351318359375,60.841373443603516],[-125.17671966552734,60.84235763549804],[-125.18476867675781,60.84080123901368],[-125.19139862060548,60.8375015258789],[-125.20001220703125,60.830280303955085],[-125.2077407836914,60.823230743408196],[-125.22296905517578,60.812705993652344],[-125.23281860351564,60.80574798583984],[-125.25140380859375,60.798099517822266],[-125.26534271240233,60.792362213134766],[-125.28765106201172,60.7854995727539],[-125.31173706054688,60.778282165527344],[-125.3306427001953,60.77358627319335],[-125.36022186279295,60.771858215332024],[-125.38535308837889,60.773521423339844],[-125.39729309082033,60.77421951293945],[-125.42651367187501,60.77962112426758],[-125.44326782226561,60.78493118286133],[-125.45879364013672,60.78998184204101],[-125.46930694580078,60.791458129882805],[-125.48625183105467,60.795719146728516],[-125.50536346435547,60.802593231201165],[-125.5248336791992,60.80989456176758],[-125.53465270996094,60.813026428222656],[-125.5696563720703,60.820308685302734],[-125.58178710937499,60.819942474365234],[-125.58999633789062,60.81984329223633],[-125.60016632080078,60.8183479309082],[-125.61959075927733,60.81552505493163],[-125.63510131835936,60.81296920776367],[-125.64990234375001,60.81207275390624],[-125.67771911621094,60.81062316894531],[-125.68753051757812,60.81121063232421],[-125.70591735839844,60.812129974365234],[-125.72930908203124,60.8140754699707],[-125.74987030029297,60.81759643554688],[-125.75704956054688,60.82123947143555],[-125.76785278320312,60.82922744750976],[-125.76985931396483,60.832881927490234],[-125.77278137207031,60.838890075683594],[-125.78072357177734,60.845928192138665],[-125.78884124755858,60.8519172668457],[-125.7967529296875,60.856426239013665],[-125.80555725097655,60.86075973510742],[-125.8216094970703,60.871253967285156],[-125.82666778564452,60.874813079833984],[-125.83730316162108,60.881317138671875],[-125.85260772705078,60.88841247558593],[-125.87570190429686,60.889900207519524],[-125.88623809814452,60.88881301879882],[-125.8913803100586,60.886268615722656],[-125.90042114257812,60.88091659545898],[-125.90393829345703,60.87767791748046],[-125.91082763671874,60.87224578857422],[-125.9175033569336,60.865333557128906],[-125.92188262939453,60.859390258789055],[-125.92487335205077,60.85676193237305],[-125.92550659179686,60.852577209472656],[-125.93723297119139,60.838058471679695],[-125.94384765625,60.828617095947266],[-125.9519271850586,60.8209114074707],[-125.95863342285155,60.816524505615234],[-125.97640228271484,60.81296157836913],[-125.98654937744139,60.81143569946288],[-125.99688720703124,60.81138610839843],[-126.01293945312499,60.81070327758788],[-126.03775787353514,60.811805725097656],[-126.06462097167967,60.816551208496094],[-126.08035278320312,60.817951202392585],[-126.09615325927733,60.82188034057617],[-126.10801696777344,60.826087951660156],[-126.10901641845702,60.83096313476562],[-126.10809326171874,60.83724594116211],[-126.10178375244139,60.84207534790038],[-126.0963363647461,60.846721649169915],[-126.0957794189453,60.853435516357415],[-126.09536743164062,60.85910415649414],[-126.10453796386719,60.861324310302734],[-126.11060333251952,60.861114501953125],[-126.11949920654297,60.85932540893555],[-126.13105773925781,60.85699462890624],[-126.15068054199219,60.85557556152343],[-126.17176818847656,60.85588836669922],[-126.18495178222655,60.85424041748046],[-126.19635009765624,60.85295104980468],[-126.2103500366211,60.848594665527344],[-126.21961975097656,60.84112548828125],[-126.22635650634766,60.839252471923835],[-126.22763061523439,60.833404541015625],[-126.2271270751953,60.82791519165038],[-126.22817993164062,60.82058715820313],[-126.2300567626953,60.81055068969726],[-126.22926330566406,60.80715560913085],[-126.2283935546875,60.8012351989746],[-126.22972106933594,60.79791259765624],[-126.24739837646484,60.785682678222656],[-126.25560760498047,60.779441833496094],[-126.26248168945312,60.77651977539063],[-126.27680969238281,60.772586822509766],[-126.29762268066406,60.77140045166015],[-126.3257369995117,60.77024459838867],[-126.33518981933594,60.77035140991211],[-126.36389923095702,60.77110290527343],[-126.38198852539062,60.774017333984375],[-126.41264343261717,60.77944946289062],[-126.43739318847655,60.78404998779297],[-126.4480972290039,60.7844009399414],[-126.4549789428711,60.787567138671875],[-126.47318267822266,60.792999267578125],[-126.47754669189453,60.79566574096679],[-126.49270629882812,60.80120849609374],[-126.4996566772461,60.80080032348633],[-126.50906372070312,60.80447006225586],[-126.52178192138672,60.80592727661132],[-126.53338623046876,60.80609130859374],[-126.53883361816406,60.80395126342773],[-126.54647827148436,60.79830551147462],[-126.57433319091795,60.789512634277344],[-126.5879135131836,60.78110885620117],[-126.60108184814453,60.7758445739746],[-126.6249771118164,60.76734161376953],[-126.63028717041014,60.766242980957024],[-126.64270019531249,60.76011276245118],[-126.65849304199217,60.75429153442383],[-126.67337036132812,60.75223159790039],[-126.6797866821289,60.7524299621582],[-126.69522094726562,60.75942611694335],[-126.69944000244139,60.766708374023445],[-126.70255279541016,60.772689819335945],[-126.70880889892578,60.77751159667968],[-126.72251129150389,60.78129577636719],[-126.73625183105467,60.78150177001953],[-126.75327301025389,60.779495239257805],[-126.75969696044922,60.77968978881836],[-126.78138732910156,60.77824401855468],[-126.78845214843749,60.776771545410156],[-126.79451751708984,60.77296066284179],[-126.80262756347656,60.76310729980469],[-126.8098373413086,60.75701522827149],[-126.81941223144531,60.756038665771484],[-126.83186340332031,60.75956344604492],[-126.84266662597656,60.76598358154296],[-126.8470687866211,60.768638610839844],[-126.85209655761717,60.77320098876953],[-126.85975646972655,60.78078842163086],[-126.85923004150389,60.78855514526367],[-126.85428619384766,60.79724121093751],[-126.85311889648438,60.80666732788086],[-126.86293029785156,60.817893981933594],[-126.87451934814453,60.8251724243164],[-126.88497161865234,60.83473205566406],[-126.8895034790039,60.84348678588867],[-126.8921432495117,60.84650802612304],[-126.8927536010742,60.859146118164055],[-126.89296722412108,60.87492370605468],[-126.89169311523436,60.88540267944336],[-126.89115905761719,60.89674377441406],[-126.89100646972655,60.90494155883789],[-126.89022827148436,60.918376922607415],[-126.88945007324217,60.928237915039055],[-126.88918304443358,60.93748474121094],[-126.89180755615233,60.95123291015625],[-126.89231109619139,60.95418930053711],[-126.89494323730469,60.96793746948242],[-126.89658355712889,60.97576904296874],[-126.90051269531249,60.979034423828125],[-126.90721130371094,60.98785400390625],[-126.91760253906249,61.00203323364257],[-126.92469787597655,61.01128387451172],[-126.92569732666016,61.02435302734374],[-126.9283676147461,61.027374267578125],[-126.93203735351562,61.03631210327148],[-126.94640350341795,61.0466079711914],[-126.9681396484375,61.053325653076165],[-126.97501373291016,61.0539436340332],[-126.98670959472655,61.05406188964844],[-126.99369812011719,61.053630828857415],[-127.01683807373047,61.05238723754883],[-127.03385925292969,61.0478172302246],[-127.04641723632812,61.04059600830078],[-127.05377197265625,61.03343963623046],[-127.06556701660156,61.0289306640625],[-127.07510375976561,61.02898406982421],[-127.07968902587889,61.034156799316406],[-127.0822525024414,61.03822326660156],[-127.08737182617186,61.046356201171875],[-127.09085083007811,61.057388305664055],[-127.09176635742188,61.06435012817383],[-127.09255218505858,61.068790435791016],[-127.0853271484375,61.074897766113274],[-127.08204650878906,61.08069610595703],[-127.07913208007812,61.08335113525391],[-127.07775115966795,61.087730407714844],[-127.06948852539062,61.09149551391602],[-127.05499267578125,61.096565246582024],[-127.04279327392578,61.10064315795898],[-127.0280303955078,61.10780334472656],[-127.02268981933592,61.112491607666016],[-127.0225830078125,61.11711502075195],[-127.0188980102539,61.12605667114257],[-127.0197982788086,61.12944412231445],[-127.01586151123045,61.136905670166016],[-127.01510620117189,61.143196105957024],[-127.0116729736328,61.14646530151367],[-127.00697326660158,61.15663909912109],[-127.00099182128905,61.16299057006836],[-126.99385833740234,61.175201416015625],[-126.99017333984375,61.184139251708984],[-126.98979187011719,61.19086074829102],[-126.9884033203125,61.19881439208984],[-126.98764038085938,61.20510101318359],[-126.9868927001953,61.21854400634765],[-126.98471832275389,61.2220573425293],[-126.99456787109375,61.23074722290039],[-127.00007629394531,61.2321662902832],[-127.0129928588867,61.23357772827148],[-127.01952362060545,61.233760833740234],[-127.03243255615233,61.235172271728516],[-127.03845977783202,61.23954391479492],[-127.04308319091797,61.244720458984375],[-127.04386138916016,61.24916076660157],[-127.04618072509766,61.25532150268555],[-127.04798889160155,61.26210403442382],[-127.0490264892578,61.26802062988281],[-127.05098724365233,61.2773323059082],[-127.05151367187499,61.283866882324226],[-127.05371856689453,61.29107666015624],[-127.05618286132812,61.29977035522461],[-127.0587692260742,61.30741119384765],[-127.06291198730469,61.31678009033203],[-127.0653610229492,61.321895599365234],[-127.0677032470703,61.32806015014648],[-127.0702896118164,61.3357048034668],[-127.07261657714844,61.34186935424804],[-127.07496643066408,61.35160827636718],[-127.07705688476562,61.359867095947266],[-127.07991027832031,61.36541366577148],[-127.08495330810547,61.37102127075196],[-127.09396362304688,61.37631607055663],[-127.10310363769531,61.38055801391601],[-127.1107177734375,61.386653900146484],[-127.11794281005858,61.39231872558593],[-127.12299346923828,61.39792251586913],[-127.12635803222655,61.40285110473632],[-127.1272964477539,61.409820556640625],[-127.12695312499999,61.41654205322265],[-127.12738037109376,61.42412567138672],[-127.13089752197264,61.43157958984375],[-127.12925720214844,61.43805694580079],[-127.12970733642578,61.44921875],[-127.12422943115233,61.458534240722656],[-127.12296295166016,61.46186828613281],[-127.12964630126952,61.460994720458984],[-127.1436996459961,61.461162567138665],[-127.16885375976562,61.4641456604004],[-127.18433380126953,61.467079162597656],[-127.20113372802733,61.47383117675781],[-127.21291351318358,61.47855758666992],[-127.22557830810545,61.48309326171874],[-127.23078155517577,61.487648010253906],[-127.24091339111328,61.49527359008789],[-127.25026702880858,61.502037048339844],[-127.26331329345702,61.50342559814454],[-127.27200317382812,61.50827407836914],[-127.29602813720703,61.509944915771484],[-127.31201171874999,61.5086669921875],[-127.3305892944336,61.50787734985351],[-127.34876251220703,61.50665283203126],[-127.3634567260742,61.50512695312499],[-127.38162994384766,61.503898620605476],[-127.4104995727539,61.50146102905273],[-127.43074798583986,61.50132751464844],[-127.45279693603514,61.500816345214844],[-127.46878051757811,61.49951934814453],[-127.48245239257814,61.49922180175781],[-127.50180053710938,61.49926376342773],[-127.52053833007814,61.50097656249999],[-127.53388214111328,61.50381469726562],[-127.5436325073242,61.50741195678711],[-127.55683135986328,61.51592254638672],[-127.56906890869139,61.52104949951171],[-127.58281707763672,61.524314880371094],[-127.59607696533203,61.52819824218749],[-127.60922241210938,61.533130645751946],[-127.62389373779295,61.536201477050774],[-127.64032745361327,61.54351806640624],[-127.65010070800781,61.5471076965332],[-127.66075134277342,61.55513000488282],[-127.66152954101561,61.56061553955078],[-127.65869903564452,61.566856384277344],[-127.65895080566405,61.57758712768554],[-127.66632080078125,61.583221435546875],[-127.6787109375,61.58728790283203],[-127.69621276855467,61.588733673095696],[-127.71631622314453,61.59065628051758],[-127.73562622070311,61.59171295166015],[-127.74122619628905,61.593101501464844],[-127.76503753662108,61.59783172607422],[-127.78144836425781,61.60155487060547],[-127.78914642333983,61.604034423828125],[-127.80357360839842,61.61023330688476],[-127.81919860839842,61.617717742919915],[-127.83112335205078,61.62239074707031],[-127.8411407470703,61.62849044799805],[-127.84535217285156,61.630683898925774],[-127.8642120361328,61.64159774780273],[-127.87183380126953,61.64512252807617],[-127.88919830322264,61.65326690673828],[-127.90496063232422,61.65969467163085],[-127.92273712158203,61.668262481689446],[-127.93631744384764,61.67464065551758],[-127.95340728759764,61.68130111694335],[-127.96317291259764,61.68591308593749],[-127.98097991943358,61.69447708129883],[-127.9980010986328,61.70217514038086],[-128.0128173828125,61.70983123779297],[-128.02430725097656,61.71510696411133],[-128.02854919433594,61.71729278564453],[-128.0379180908203,61.721473693847656],[-128.04617309570312,61.72332000732422],[-128.05352783203125,61.725357055664055],[-128.06895446777344,61.7313346862793],[-128.08087158203125,61.73703384399414],[-128.08804321289062,61.74116897583008],[-128.0906219482422,61.747314453125],[-128.0911712646484,61.751319885253906],[-128.08416748046875,61.75539016723633],[-128.07675170898435,61.759029388427734],[-128.0587158203125,61.76750564575195],[-128.05210876464844,61.77199935913086],[-128.0460968017578,61.77482604980468],[-128.0445098876953,61.777740478515625],[-128.03991699218747,61.78437423706055],[-128.0343475341797,61.79225540161133],[-128.03057861328122,61.79974746704101],[-128.03273010253903,61.80546951293946],[-128.035400390625,61.81056594848633],[-128.03968811035156,61.817378997802734],[-128.0468292236328,61.82719039916992],[-128.0587615966797,61.832893371582024],[-128.0699005126953,61.83773422241211],[-128.07901000976562,61.840435028076165],[-128.10963439941406,61.84628295898437],[-128.12115478515625,61.84692382812499],[-128.12821960449216,61.84748077392579],[-128.1365966796875,61.84827041625976],[-128.15750122070312,61.848453521728516],[-128.17648315429688,61.85007095336914],[-128.18609619140625,61.85214614868163],[-128.2032928466797,61.85414505004882],[-128.2135772705078,61.853492736816406],[-128.2191619873047,61.85590744018554],[-128.23468017578125,61.86186981201172],[-128.2416534423828,61.86914443969726],[-128.24459838867188,61.876766204833984],[-128.24505615234372,61.88749694824219],[-128.2469482421875,61.89173507690429],[-128.2492218017578,61.9020767211914],[-128.25241088867188,61.912227630615234],[-128.25576782226562,61.9202766418457],[-128.25814819335938,61.923892974853516],[-128.2613525390625,61.92836380004883],[-128.2724609375,61.93991470336913],[-128.28713989257812,61.946067810058594],[-128.30322265625,61.95139694213868],[-128.31065368652344,61.95342254638672],[-128.33079528808594,61.95840072631836],[-128.33738708496094,61.95956420898437],[-128.34384155273438,61.96282958984375],[-128.35284423828125,61.96761322021484],[-128.36093139648438,61.97258758544921],[-128.3680419921875,61.97880554199218],[-128.37094116210938,61.98180007934571],[-128.37458801269528,61.9866943359375],[-128.37606811523438,61.99050521850586],[-128.3771514892578,61.99388885498046],[-128.37913513183594,61.99707794189453],[-128.37881469726562,62.00127410888672],[-128.3817138671875,62.00426864624023],[-128.3862762451172,62.008968353271484],[-128.3934783935547,62.0141372680664],[-128.39596557617188,62.016704559326165],[-128.4001007080078,62.02097702026367],[-128.40342712402344,62.02439498901367],[-128.4113006591797,62.032520294189446],[-128.42018127441406,62.03939437866211],[-128.42864990234375,62.04584503173829],[-128.4381866455078,62.04999542236328],[-128.45957946777344,62.057289123535156],[-128.4819183349609,62.0700569152832],[-128.49313354492188,62.075916290283196],[-128.50428771972656,62.08282470703125],[-128.51361083984375,62.09012222290038],[-128.5290985107422,62.09919738769531],[-128.53941345214844,62.105247497558594],[-128.5533905029297,62.110515594482415],[-128.555908203125,62.113075256347656],[-128.5775909423828,62.1171989440918],[-128.59719848632812,62.11918640136719],[-128.6070098876953,62.12017822265625],[-128.6212921142578,62.12123489379882],[-128.63299560546875,62.12078475952148],[-128.647705078125,62.12226867675781],[-128.6652069091797,62.12210845947265],[-128.6776885986328,62.123558044433594],[-128.6938018798828,62.124214172363274],[-128.70016479492188,62.12283706665039],[-128.7097625732422,62.12024307250976],[-128.7169189453125,62.114044189453125],[-128.7197723388672,62.11135101318359],[-128.72412109375,62.106792449951165],[-128.73062133789062,62.103313446044915],[-128.73489379882812,62.09980010986328],[-128.74069213867188,62.09336853027344],[-128.74887084960938,62.08486557006837],[-128.74957275390625,62.08109283447265],[-128.75486755371094,62.07528305053711],[-128.75836181640625,62.06986999511719],[-128.76211547851562,62.06025314331054],[-128.76637268066406,62.0567398071289],[-128.775390625,62.055816650390625],[-128.7939910888672,62.05902099609374],[-128.80419921875,62.06042861938476],[-128.82359313964844,62.065528869628906],[-128.8340301513672,62.07050704956055],[-128.84300231933594,62.07735443115234],[-128.84722900390622,62.08161544799805],[-128.852294921875,62.08673095703124],[-128.8606719970703,62.0963020324707],[-128.86663818359372,62.10121536254883],[-128.87506103515625,62.103008270263665],[-128.8873291015625,62.10758972167969],[-128.90403747558594,62.11327362060547],[-128.91015625,62.116085052490234],[-128.92184448242188,62.115608215332024],[-128.93983459472656,62.11479187011718],[-128.95510864257812,62.11456680297851],[-128.98158264160153,62.12226104736328],[-128.99720764160156,62.12350463867187],[-129.02944946289062,62.124744415283196],[-129.0487823486328,62.12414169311523],[-129.0569610595703,62.1223487854004],[-129.07041931152344,62.12250900268555],[-129.0871887207031,62.11934280395507],[-129.09765625,62.11652755737305],[-129.11132812499997,62.112483978271484],[-129.12083435058594,62.11091232299805],[-129.13288879394528,62.11189270019531],[-129.13912963867185,62.11259460449218],[-129.1498565673828,62.113346099853516],[-129.16319274902344,62.1156005859375],[-129.17552185058594,62.12015151977539],[-129.18968200683594,62.12430191040039],[-129.1970977783203,62.12837600708007],[-129.20741271972656,62.13752365112304],[-129.22415161132812,62.144222259521484],[-129.24156188964844,62.14609146118164],[-129.26214599609375,62.14777755737305],[-129.27406311035156,62.151897430419915],[-129.27755737304688,62.15424346923828],[-129.27691650390625,62.15802001953124],[-129.26416015625,62.16188049316406],[-129.25636291503906,62.16516113281249],[-129.2431640625,62.16859436035156],[-129.23173522949216,62.17267608642578],[-129.22259521484375,62.175727844238274],[-129.21511840820312,62.1815299987793],[-129.21249389648438,62.18885803222656],[-129.2068328857422,62.194263458251946],[-129.20529174804688,62.19823837280274],[-129.20668029785156,62.206241607666016],[-129.2130126953125,62.21471405029296],[-129.2218017578125,62.21901321411133],[-129.23005676269528,62.22498703002929],[-129.23944091796872,62.22655868530273],[-129.2469024658203,62.23063278198242],[-129.26004028320312,62.23812484741211],[-129.27142333984375,62.24496841430664],[-129.27932739257812,62.249465942382805],[-129.28842163085938,62.2573356628418],[-129.29214477539062,62.26430892944336],[-129.29420471191406,62.2685317993164],[-129.29336547851562,62.27651214599609],[-129.29403686523438,62.28156280517579],[-129.29306030273435,62.29269027709961],[-129.29507446289062,62.29796600341796],[-129.2967529296875,62.300712585449226],[-129.296875,62.30744171142578],[-129.29734802246094,62.316692352294915],[-129.29339599609375,62.32379913330078],[-129.292724609375,62.3286247253418],[-129.2811737060547,62.33375930786132],[-129.27198791503906,62.33681869506836],[-129.26669311523438,62.34370040893554],[-129.26095581054685,62.35015487670898],[-129.25704956054688,62.356208801269524],[-129.25587463378906,62.36166000366212],[-129.24781799316406,62.36914062499999],[-129.2498321533203,62.37441635131836],[-129.25511169433594,62.37741470336913],[-129.26226806640625,62.37895965576172],[-129.2810821533203,62.38315200805664],[-129.28916931152344,62.38449478149413],[-129.30331420898438,62.39178466796875],[-129.30311584472656,62.395984649658196],[-129.3059539794922,62.40316009521484],[-129.30560302734375,62.410511016845696],[-129.30067443847656,62.41886901855468],[-129.3000030517578,62.42369842529297],[-129.29290771484375,62.429931640625],[-129.28489685058594,62.43636322021484],[-129.26905822753906,62.44502639770508],[-129.2598876953125,62.4470329284668],[-129.24844360351562,62.44901657104492],[-129.23150634765625,62.45219802856445],[-129.2145538330078,62.45538330078124],[-129.19798278808594,62.46003723144531],[-129.19200134277344,62.46186447143554],[-129.1876220703125,62.46749114990234],[-129.18087768554688,62.47519302368164],[-129.18309020996094,62.4850959777832],[-129.18785095214844,62.48977279663085],[-129.1962890625,62.49364852905273],[-129.20249938964844,62.496448516845696],[-129.2091522216797,62.499671936035156],[-129.22154235839844,62.50632095336913],[-129.23167419433594,62.512943267822266],[-129.2401123046875,62.51681900024413],[-129.25360107421875,62.520111083984375],[-129.26486206054688,62.52233123779297],[-129.27980041503906,62.52374649047852],[-129.29469299316406,62.52621078491211],[-129.30189514160156,62.52775573730469],[-129.31678771972656,62.530216217041016],[-129.32534790039062,62.53198242187499],[-129.33164978027344,62.53372573852539],[-129.35050964355466,62.538955688476555],[-129.36038208007812,62.54199600219726],[-129.3708953857422,62.5511360168457],[-129.37753295898438,62.555400848388665],[-129.38461303710938,62.56009292602538],[-129.390869140625,62.562885284423835],[-129.40467834472656,62.56974029541015],[-129.41407775878906,62.57340240478515],[-129.42529296875,62.577705383300774],[-129.43618774414062,62.578437805175774],[-129.4490203857422,62.57666397094726],[-129.45730590820312,62.574844360351555],[-129.4660186767578,62.5734519958496],[-129.4903106689453,62.569671630859375],[-129.5012969970703,62.56829452514648],[-129.51687622070312,62.565906524658196],[-129.5297393798828,62.56307601928711],[-129.54571533203125,62.562156677246094],[-129.55514526367188,62.5658073425293],[-129.54991149902344,62.57165145874023],[-129.54287719726562,62.576847076416016],[-129.5395050048828,62.58123016357421],[-129.530029296875,62.59061050415039],[-129.5205841064453,62.59893798828124],[-129.5152435302734,62.606876373291016],[-129.50718688964844,62.61437606811524],[-129.50399780273438,62.62548828125001],[-129.50479125976562,62.62843704223633],[-129.50967407226562,62.632049560546875],[-129.51959228515622,62.63507843017578],[-129.5299530029297,62.63853073120117],[-129.53707885742188,62.643211364746094],[-129.5446014404297,62.64937210083008],[-129.55027770996094,62.65593338012695],[-129.55143737792966,62.66140747070312],[-129.548583984375,62.66411590576171],[-129.54385375976562,62.66828155517578],[-129.53952026367188,62.673919677734375],[-129.53750610351562,62.67852783203126],[-129.5414276123047,62.68339157104492],[-129.54864501953125,62.68597412109374],[-129.55731201171875,62.686676025390625],[-129.5668487548828,62.68822479248047],[-129.58193969726562,62.68855667114258],[-129.59600830078125,62.691192626953125],[-129.61053466796875,62.69424819946288],[-129.62217712402344,62.70106506347656],[-129.62648010253906,62.70845413208007],[-129.63385009765625,62.7198600769043],[-129.63510131835938,62.7232322692871],[-129.63720703125,62.728504180908196],[-129.63877868652344,62.735450744628906],[-129.64048767089844,62.739246368408196],[-129.64117431640625,62.74534606933593],[-129.64227294921875,62.75292205810547],[-129.6425323486328,62.75859832763671],[-129.64463806152344,62.763870239257805],[-129.6431121826172,62.76785278320312],[-129.6451416015625,62.77522277832031],[-129.64669799804688,62.78322219848632],[-129.65594482421875,62.794219970703125],[-129.66171264648438,62.79972839355469],[-129.6760711669922,62.80908203125],[-129.6810302734375,62.81163787841796],[-129.69137573242188,62.81822967529297],[-129.7035675048828,62.82441329956055],[-129.7093963623047,62.8288688659668],[-129.72615051269528,62.83613204956054],[-129.7324981689453,62.838909149169915],[-129.7460784912109,62.84530639648437],[-129.7587432861328,62.851905822753906],[-129.7713165283203,62.861656188964844],[-129.77395629882812,62.86524963378906],[-129.77247619628906,62.86818313598633],[-129.77606201171875,62.87156677246094],[-129.77061462402344,62.88372421264649],[-129.76632690429688,62.8883171081543],[-129.75694274902344,62.893508911132805],[-129.7509002685547,62.895362854003906],[-129.74066162109375,62.89865493774414],[-129.73133850097656,62.9017448425293],[-129.71923828125,62.90544128417969],[-129.7134552001953,62.91296768188476],[-129.71041870117188,62.920936584472656],[-129.7102508544922,62.92618942260742],[-129.7057342529297,62.93708419799805],[-129.70135498046875,62.94377899169922],[-129.70169067382812,62.947357177734375],[-129.6964111328125,62.95320510864257],[-129.68983459472656,62.956729888916016],[-129.68727111816406,62.96406936645507],[-129.67733764648438,62.97093200683594],[-129.67201232910156,62.97782897949218],[-129.66717529296875,62.984100341796875],[-129.66519165039062,62.9876594543457],[-129.66358947753906,62.993743896484375],[-129.6625061035156,62.99814987182617],[-129.65782165527344,63.00021743774413],[-129.6572570800781,63.002944946289055],[-129.65438842773438,63.00565338134765],[-129.6510009765625,63.01004409790039],[-129.64666748046872,63.014636993408196],[-129.63812255859375,63.02066802978516],[-129.63143920898438,63.02629089355468],[-129.62620544433594,63.030036926269524],[-129.62139892578125,63.035255432128906],[-129.61962890625,63.04553985595703],[-129.6189727783203,63.050369262695305],[-129.6207275390625,63.05311584472657],[-129.6270294189453,63.05799865722656],[-129.63658142089844,63.06269454956055],[-129.6451416015625,63.06969451904297],[-129.6551513671875,63.07481384277344],[-129.6652374267578,63.07783126831054],[-129.67173767089844,63.077457427978516],[-129.6857147216797,63.07545852661133],[-129.69879150390625,63.072608947753906],[-129.71040344238278,63.07164001464844],[-129.72616577148438,63.07132720947265],[-129.74888610839844,63.07106399536133],[-129.76281738281247,63.070106506347656],[-129.77896118164062,63.07231140136718],[-129.79971313476562,63.075599670410156],[-129.8056640625,63.077949523925774],[-129.81712341308594,63.08222579956054],[-129.830322265625,63.090293884277344],[-129.83529663085938,63.0949478149414],[-129.8374481201172,63.100215911865234],[-129.84048461914062,63.10737991333008],[-129.84352111816406,63.114543914794915],[-129.8457489013672,63.11771011352539],[-129.84837341308594,63.123401641845696],[-129.85421752929688,63.12995147705078],[-129.86012268066406,63.13440322875976],[-129.87237548828125,63.14477157592773],[-129.87547302246094,63.149833679199226],[-129.8794708251953,63.15679550170899],[-129.88113403320312,63.16374206542968],[-129.88511657714844,63.17070007324219],[-129.89007568359375,63.17640304565429],[-129.9014892578125,63.183826446533196],[-129.90927124023438,63.188911437988274],[-129.92080688476562,63.192127227783196],[-129.9337158203125,63.19661331176758],[-129.94110107421875,63.19917678833008],[-129.95176696777344,63.20049285888671],[-129.97084045410156,63.201011657714844],[-129.98622131347656,63.200248718261726],[-129.9927520751953,63.199859619140625],[-130.00341796874997,63.201175689697266],[-130.01406860351562,63.20353698730469],[-130.01629638671875,63.207752227783196],[-130.01756286621094,63.21322250366211],[-130.02066040039062,63.22038269042969],[-130.02291870117188,63.223548889160156],[-130.0255584716797,63.23028564453126],[-130.03085327148438,63.242713928222656],[-130.03489685058594,63.24966812133788],[-130.03900146484375,63.25347137451172],[-130.04263305664062,63.25790023803711],[-130.0463104248047,63.26022720336915],[-130.0574951171875,63.26091003417968],[-130.06356811523438,63.26009750366212],[-130.0696563720703,63.25928115844726],[-130.07760620117188,63.258056640625],[-130.08743286132812,63.25641632080078],[-130.09445190429688,63.25539779663086],[-130.10845947265625,63.2544059753418],[-130.1248016357422,63.253421783447266],[-130.14157104492188,63.25390625],[-130.1494903564453,63.25477981567383],[-130.15602111816406,63.2543830871582],[-130.16900634765625,63.258846282958984],[-130.16893005371094,63.263050079345696],[-130.16880798339844,63.26935195922851],[-130.1673126220703,63.274391174316406],[-130.16583251953125,63.279434204101555],[-130.1666717529297,63.28447723388672],[-130.16517639160156,63.2895164489746],[-130.16505432128903,63.29582214355469],[-130.16632080078125,63.303394317626946],[-130.165283203125,63.30885314941406],[-130.16429138183594,63.31221389770507],[-130.1585998535156,63.31660842895507],[-130.1515655517578,63.317630767822266],[-130.134765625,63.31714630126953],[-130.12681579589844,63.317325592041016],[-130.11700439453125,63.316864013671875],[-130.10813903808594,63.31619644165038],[-130.09877014160156,63.31721115112304],[-130.0875244140625,63.31863403320313],[-130.08555603027344,63.323246002197266],[-130.0845489501953,63.32660675048828],[-130.08494567871094,63.330181121826165],[-130.0834503173828,63.33416748046875],[-130.08245849609375,63.337528228759766],[-130.07675170898438,63.34191894531249],[-130.0710906982422,63.34420394897461],[-130.06076049804688,63.345420837402344],[-130.0532684326172,63.34601593017578],[-130.0415496826172,63.34701538085938],[-130.02935791015625,63.34864044189453],[-130.01434326171875,63.349830627441406],[-130.00685119628906,63.35042190551758],[-129.99327087402344,63.35077667236328],[-129.97731018066406,63.35322189331055],[-129.96652221679688,63.354007720947266],[-129.9509735107422,63.35792160034179],[-129.94200134277344,63.36144638061523],[-129.93063354492188,63.366008758544915],[-129.92538452148438,63.3697624206543],[-129.91436767578125,63.37895202636718],[-129.90896606445312,63.3879623413086],[-129.9139404296875,63.39471435546875],[-129.91659545898438,63.400405883789055],[-129.91790771484375,63.4037742614746],[-129.9214630126953,63.41136169433594],[-129.92454528808594,63.41852569580078],[-129.92633056640625,63.42231750488281],[-129.92515563964844,63.4309310913086],[-129.92498779296875,63.437232971191406],[-129.92347717285156,63.441219329833984],[-129.91665649414062,63.45001220703125],[-129.91233825683594,63.45355987548828],[-129.90609741210938,63.45856857299805],[-129.90179443359375,63.46107101440429],[-129.8922882080078,63.46522140502929],[-129.88478088378906,63.46475601196289],[-129.87631225585938,63.46554946899413],[-129.86273193359375,63.46379089355468],[-129.85060119628906,63.46119689941406],[-129.8407440185547,63.46071624755859],[-129.82803344726562,63.4619026184082],[-129.82232666015625,63.464179992675774],[-129.82774353027344,63.47135925292969],[-129.832763671875,63.47601318359374],[-129.83825683593747,63.4810905456543],[-129.8447265625,63.484912872314446],[-129.85162353515625,63.49020767211913],[-129.85665893554688,63.49486541748046],[-129.85940551757812,63.49740219116211],[-129.86306762695312,63.50078582763672],[-129.86993408203125,63.50713348388672],[-129.8810272216797,63.51413345336913],[-129.88833618164062,63.5219497680664],[-129.89797973632812,63.53083419799805],[-129.90713500976562,63.54034423828126],[-129.9140625,63.545635223388665],[-129.9186553955078,63.54986572265625],[-129.92604064941406,63.55558013916015],[-129.93914794921875,63.55901336669922],[-129.94761657714844,63.55926895141602],[-129.9612884521484,63.55891799926758],[-129.97071838378906,63.558963775634766],[-129.9881439208984,63.55989456176757],[-129.99513244628906,63.563079833984375],[-129.99453735351562,63.56791305541992],[-129.98072814941406,63.57352066040038],[-129.97119140625,63.577674865722656],[-129.96495056152344,63.58163833618164],[-129.9558563232422,63.58726501464844],[-129.95387268066406,63.5908317565918],[-129.9504852294922,63.59417343139648],[-129.9525604248047,63.60469436645507],[-129.9581298828125,63.60871887207031],[-129.97215270996094,63.61404418945312],[-129.99237060546875,63.617507934570305],[-130.01077270507812,63.61822509765625],[-130.01788330078125,63.61721038818359],[-130.0377960205078,63.61393737792968],[-130.04776000976562,63.61230468749999],[-130.0690155029297,63.61134719848632],[-130.07705688476562,63.6111717224121],[-130.0892333984375,63.615848541259766],[-130.0967254638672,63.61840057373047],[-130.10421752929688,63.622005462646484],[-130.1112060546875,63.62623596191406],[-130.12100219726562,63.633003234863274],[-130.123779296875,63.63553619384765],[-130.12464904785156,63.63953399658203],[-130.12545776367188,63.646682739257805],[-130.12344360351562,63.65235137939453],[-130.12094116210938,63.65969467163085],[-130.11793518066406,63.66767120361328],[-130.11311340332028,63.67185592651367],[-130.10639953613278,63.67645263671875],[-130.10063171386716,63.68084335327148],[-130.1000518798828,63.685676574707024],[-130.09762573242188,63.6888198852539],[-130.09991455078125,63.69198226928711],[-130.1050567626953,63.69557571411133],[-130.11404418945312,63.69624328613281],[-130.12924194335938,63.69398880004882],[-130.13543701171875,63.69212341308594],[-130.14401245117185,63.68921279907226],[-130.1658935546875,63.68341064453126],[-130.1754608154297,63.678192138671875],[-130.1859588623047,63.67381286621094],[-130.19834899902344,63.669021606445305],[-130.203125,63.66588592529297],[-130.2301788330078,63.660511016845696],[-130.23683166503906,63.659061431884766],[-130.24771118164062,63.658256530761726],[-130.25909423828125,63.65681838989258],[-130.27090454101562,63.65790557861328],[-130.28460693359375,63.65857696533203],[-130.296875,63.66007995605469],[-130.30630493164062,63.662208557128906],[-130.31101989746094,63.66432189941406],[-130.31898498535153,63.669387817382805],[-130.3241424560547,63.67402648925781],[-130.33018493652344,63.68160629272461],[-130.338623046875,63.68919372558594],[-130.34422302246094,63.69530487060547],[-130.34840393066406,63.702251434326165],[-130.35206604003906,63.71297836303711],[-130.35153198242188,63.717811584472656],[-130.3429718017578,63.71968460083007],[-130.3353729248047,63.721343994140625],[-130.3253936767578,63.72300338745117],[-130.31683349609372,63.72487258911133],[-130.30496215820312,63.7269401550293],[-130.29116821289062,63.72942733764648],[-130.28024291992188,63.73128509521485],[-130.26788330078125,63.732933044433594],[-130.25457763671875,63.734783172607415],[-130.22747802734375,63.739112854003906],[-130.21560668945312,63.74012374877929],[-130.197998046875,63.74342727661133],[-130.18893432617188,63.745918273925774],[-130.17369079589844,63.749229431152344],[-130.15316772460938,63.7552490234375],[-130.1436004638672,63.759414672851555],[-130.1344451904297,63.76610565185546],[-130.13197326660156,63.7713508605957],[-130.1260986328125,63.779945373535156],[-130.13121032714844,63.785640716552734],[-130.13922119140625,63.78966522216796],[-130.14674377441406,63.79327011108398],[-130.15658569335938,63.80108261108398],[-130.16023254394528,63.808662414550774],[-130.1568145751953,63.81411361694336],[-130.15284729003906,63.822296142578125],[-130.1450958251953,63.829204559326165],[-130.1425323486328,63.838653564453125],[-130.1410369873047,63.8426399230957],[-130.1371307373047,63.847671508789055],[-130.13169860839844,63.85668945312499],[-130.12820434570312,63.865291595458984],[-130.13148498535156,63.86824798583984],[-130.1376190185547,63.870582580566406],[-130.144287109375,63.87123870849609],[-130.1519012451172,63.87168884277343],[-130.15951538085938,63.872135162353516],[-130.17572021484375,63.87177658081055],[-130.19432067871094,63.871421813964844],[-130.21861267089844,63.8719253540039],[-130.23721313476562,63.87156295776367],[-130.2524871826172,63.86929702758789],[-130.26490783691406,63.867652893066406],[-130.2720947265625,63.86452102661133],[-130.2779083251953,63.8580207824707],[-130.2794189453125,63.85298538208008],[-130.28236389160153,63.84710693359375],[-130.28915405273438,63.83829879760742],[-130.29684448242188,63.83243179321288],[-130.3059539794922,63.827835083007805],[-130.31455993652344,63.82491302490234],[-130.3236083984375,63.82346725463867],[-130.3364562988281,63.82328796386719],[-130.3521728515625,63.822486877441406],[-130.36500549316406,63.823356628417976],[-130.37257385253906,63.826946258544915],[-130.37396240234375,63.83031463623046],[-130.3743896484375,63.8349380493164],[-130.3757781982422,63.83830261230469],[-130.38047790527344,63.844619750976555],[-130.38519287109375,63.84883117675781],[-130.3965301513672,63.85684204101562],[-130.41690063476562,63.868656158447266],[-130.42919921875,63.87750625610351],[-130.44436645507812,63.88783264160156],[-130.45384216308594,63.8941535949707],[-130.46240234375,63.89857864379883],[-130.47238159179688,63.903221130371094],[-130.4861602783203,63.91017532348633],[-130.49996948242188,63.916080474853516],[-130.50711059570312,63.9181900024414],[-130.5228271484375,63.92472839355468],[-130.53330993652344,63.92873001098633],[-130.55239868164062,63.93085479736329],[-130.56576538085938,63.93107604980468],[-130.57579040527344,63.93045425415039],[-130.59585571289062,63.93025970458984],[-130.6106414794922,63.93384170532226],[-130.63070678710938,63.93679428100586],[-130.64407348632812,63.94121170043945],[-130.6579132080078,63.943946838378906],[-130.6688995361328,63.94731521606445],[-130.6875457763672,63.95320129394531],[-130.69805908203125,63.9550895690918],[-130.7100067138672,63.95719146728516],[-130.7315216064453,63.96139144897461],[-130.74539184570312,63.965171813964844],[-130.7568817138672,63.968948364257805],[-130.76550292968747,63.97230911254882],[-130.77459716796875,63.975032806396484],[-130.78273010253906,63.97902297973632],[-130.7928009033203,63.98469161987305],[-130.80143737792966,63.99119949340821],[-130.79811096191406,63.99561691284179],[-130.79476928710935,63.99898529052734],[-130.7919158935547,64.00171661376953],[-130.7823486328125,64.00592803955077],[-130.77565002441406,64.00845336914062],[-130.76991271972656,64.01077270507812],[-130.76034545898438,64.01708221435547],[-130.74502563476562,64.02044677734375],[-130.727783203125,64.0252914428711],[-130.71484375,64.02970123291016],[-130.71485900878906,64.0328598022461],[-130.72396850585938,64.03453826904297],[-130.73162841796875,64.03495788574219],[-130.73883056640625,64.03495025634766],[-130.76710510253906,64.03662109375],[-130.77334594726562,64.03578186035156],[-130.79299926757812,64.03723907470703],[-130.80593872070312,64.03701782226562],[-130.82366943359375,64.03679656982422],[-130.84286499023438,64.03887939453125],[-130.85340881347656,64.03970336914062],[-130.86349487304685,64.04116821289062],[-130.8798065185547,64.04387664794922],[-130.891357421875,64.04974365234375],[-130.89666748046875,64.05436706542969],[-130.90296936035156,64.06192016601562],[-130.90299987792966,64.06717681884766],[-130.9001922607422,64.07621765136719],[-130.89450073242188,64.08589172363281],[-130.9065399169922,64.09008026123047],[-130.93350219726562,64.09781646728516],[-130.94700622558594,64.10325622558594],[-130.9528045654297,64.10723876953125],[-130.96633911132812,64.11477661132812],[-130.9750213623047,64.11812591552734],[-130.97796630859375,64.12274932861328],[-130.98043823242188,64.12904357910156],[-130.97323608398438,64.13116455078125],[-130.965087890625,64.13349151611328],[-130.9444580078125,64.13961791992188],[-130.9262237548828,64.14469909667969],[-130.91421508789062,64.14891815185547],[-130.89837646484375,64.15398406982422],[-130.879638671875,64.15863800048828],[-130.8676300048828,64.16285705566406],[-130.86717224121094,64.16768646240234],[-130.8715362548828,64.17251586914062],[-130.87782287597653,64.17587280273438],[-130.89376831054688,64.18236541748047],[-130.91163635253906,64.18738555908203],[-130.9290008544922,64.18882751464844],[-130.9429779052734,64.18838500976562],[-130.9613494873047,64.19486999511719],[-130.96481323242188,64.20305633544922],[-130.96051025390625,64.2066421508789],[-130.95474243164062,64.20896148681639],[-130.94708251953125,64.21591186523436],[-130.94760131835938,64.219482421875],[-130.95199584960938,64.22431182861328],[-130.95736694335938,64.23102569580078],[-130.96514892578125,64.23668670654297],[-130.97291564941406,64.24129486083984],[-130.98118591308594,64.24737548828125],[-130.99575805664062,64.25365447998047],[-131.00347900390625,64.25405883789062],[-131.02088928222656,64.25444030761719],[-131.0305480957031,64.2544174194336],[-131.04750061035156,64.25753021240234],[-131.06787109375,64.26357269287108],[-131.07273864746094,64.26566314697266],[-131.076171875,64.26964569091797],[-131.08010864257812,64.2740478515625],[-131.08212280273438,64.2799301147461],[-131.08660888671875,64.28895568847656],[-131.0833282470703,64.2965316772461],[-131.0833740234375,64.2996826171875],[-131.07760620117188,64.30306243896484],[-131.06944274902344,64.3074951171875],[-131.0550079345703,64.31383514404295],[-131.04586791992188,64.3184814453125],[-131.04835510253906,64.32373046875],[-131.05130004882812,64.32624816894531],[-131.06057739257812,64.33210754394531],[-131.0698699951172,64.33797454833984],[-131.0811004638672,64.3444595336914],[-131.0879669189453,64.35032653808594],[-131.0933837890625,64.3559799194336],[-131.09539794921875,64.36080932617188],[-131.10276794433594,64.36709594726562],[-131.1116180419922,64.37464141845703],[-131.11363220214844,64.37946319580077],[-131.1205291748047,64.38638305664062],[-131.13084411621094,64.39308166503905],[-131.14259338378906,64.39892578125],[-131.14939880371094,64.3995361328125],[-131.1596527099609,64.403076171875],[-131.17039489746094,64.4059829711914],[-131.17918395996094,64.40827178955078],[-131.1962890625,64.41346740722656],[-131.2173156738281,64.42095947265625],[-131.2300262451172,64.42448425292969],[-131.2446746826172,64.42758178710938],[-131.2602996826172,64.43046569824219],[-131.2827606201172,64.43500518798828],[-131.30813598632812,64.43888854980469],[-131.33106994628906,64.44173431396484],[-131.34576416015625,64.44587707519531],[-131.36277770996094,64.44580078125],[-131.38427734375,64.4494857788086],[-131.40280151367188,64.45065307617188],[-131.4247283935547,64.45159912109375],[-131.4339599609375,64.45113372802734],[-131.4441375732422,64.44940185546875],[-131.4479522705078,64.44644165039062],[-131.4501953125,64.44011688232422],[-131.44419860839844,64.43405151367186],[-131.437255859375,64.42926025390625],[-131.43077087402344,64.42277526855467],[-131.4301605224609,64.41815185546875],[-131.43634033203125,64.41307830810547],[-131.4381561279297,64.408447265625],[-131.4380340576172,64.40424346923828],[-131.44325256347656,64.39938354492188],[-131.44992065429688,64.39472198486328],[-131.45225524902344,64.3915557861328],[-131.45942687988278,64.38731384277344],[-131.47445678710938,64.38660430908203],[-131.49679565429688,64.38690948486328],[-131.51235961914062,64.38765716552734],[-131.52449035644528,64.38758850097656],[-131.5361328125,64.3871078491211],[-131.55734252929688,64.38235473632812],[-131.5679168701172,64.3789291381836],[-131.5813446044922,64.37380981445312],[-131.5889434814453,64.36892700195312],[-131.5937347412109,64.3667984008789],[-131.60328674316403,64.36253356933594],[-131.61334228515625,64.35868835449219],[-131.6253662109375,64.35545349121094],[-131.64332580566406,64.3561782836914],[-131.64828491210938,64.35930633544922],[-131.65582275390625,64.36660766601562],[-131.6594696044922,64.37373352050781],[-131.66690063476562,64.37789154052733],[-131.67724609375,64.3824462890625],[-131.6908416748047,64.38256072998045],[-131.70001220703125,64.38102722167969],[-131.71014404296875,64.3792724609375],[-131.7284698486328,64.37620544433594],[-131.74725341796875,64.37249755859375],[-131.7690887451172,64.3723373413086],[-131.79087829589844,64.37112426757812],[-131.814208984375,64.3722152709961],[-131.84144592285156,64.37347412109375],[-131.86575317382812,64.37432861328125],[-131.88523864746094,64.37627410888672],[-131.90191650390625,64.37992095947266],[-131.90896606445312,64.38574981689453],[-131.9072265625,64.39038848876953],[-131.90594482421872,64.39439392089844],[-131.9006805419922,64.3961181640625],[-131.89523315429688,64.40478515625],[-131.88533020019528,64.41180419921875],[-131.87254333496094,64.41947174072266],[-131.86927795410153,64.42285919189453],[-131.85354614257812,64.43013763427734],[-131.8406524658203,64.43569946289062],[-131.82472229003906,64.43876647949219],[-131.8049774169922,64.4437484741211],[-131.791015625,64.44742584228516],[-131.77755737304688,64.45152282714842],[-131.7611541748047,64.45521545410156],[-131.74722290039062,64.4599380493164],[-131.73861694335938,64.46399688720703],[-131.72328186035156,64.47061920166016],[-131.7157440185547,64.47760772705078],[-131.70431518554688,64.48441314697266],[-131.69862365722656,64.4888687133789],[-131.6983489990234,64.49475860595703],[-131.6951446533203,64.500244140625],[-131.69285583496094,64.50446319580078],[-131.69166564941406,64.51161956787108],[-131.69534301757812,64.51873779296875],[-131.69847106933594,64.5243911743164],[-131.7093505859375,64.52831268310547],[-131.7191925048828,64.53034210205078],[-131.7318878173828,64.53067779541016],[-131.74855041503906,64.53224182128906],[-131.75784301757812,64.53280639648438],[-131.78135681152344,64.53494262695311],[-131.7916717529297,64.53633880615234],[-131.80833435058594,64.53789520263672],[-131.8274383544922,64.5394287109375],[-131.85293579101562,64.54217529296875],[-131.87278747558594,64.54937744140625],[-131.87872314453125,64.55122375488281],[-131.88719177246094,64.55514526367188],[-131.89720153808594,64.56031799316406],[-131.91268920898438,64.5679702758789],[-131.92254638671875,64.56999206542969],[-131.93109130859375,64.57496643066406],[-131.94212341308594,64.58097076416016],[-131.9536590576172,64.58738708496094],[-131.96327209472656,64.59423828125],[-131.9784393310547,64.60462188720703],[-131.98756408691406,64.61105346679688],[-131.99468994140625,64.61688232421875],[-132.0014190673828,64.62438964843749],[-132.00457763671872,64.62898254394531],[-132.00534057617188,64.63465118408203],[-132.00926208496094,64.6449203491211],[-132.0125274658203,64.65161895751953],[-132.0159454345703,64.66146850585938],[-132.01988220214844,64.6717300415039],[-132.02525329589844,64.68113708496094],[-132.02980041503906,64.68383026123047],[-132.03726196289062,64.68586730957031],[-132.0457000732422,64.68768310546875],[-132.0586395263672,64.6911392211914],[-132.08201599121094,64.69701385498047],[-132.10079956054685,64.69915008544922],[-132.12704467773438,64.70331573486328],[-132.14080810546875,64.7033920288086],[-132.14588928222656,64.7064971923828],[-132.16192626953125,64.71243286132812],[-132.1829376220703,64.71937561035156],[-132.19848632812497,64.72489166259766],[-132.2090606689453,64.72940826416016],[-132.21363830566406,64.73209381103516],[-132.23074340820312,64.73885345458984],[-132.2413330078125,64.74337005615234],[-132.258056640625,64.75181579589844],[-132.27621459960938,64.7593994140625],[-132.2868194580078,64.763916015625],[-132.30545043945312,64.77085876464844],[-132.3215637207031,64.77677917480469],[-132.3346405029297,64.78126525878906],[-132.35958862304688,64.78623962402342],[-132.3861541748047,64.7855224609375],[-132.4082489013672,64.78421783447264],[-132.4298858642578,64.7835464477539],[-132.44970703125,64.78541564941406],[-132.46461486816406,64.78733825683594],[-132.48109436035156,64.79051208496094],[-132.50035095214844,64.79090881347655],[-132.5198974609375,64.78856658935547],[-132.53341674804688,64.78440856933594],[-132.55007934570312,64.77578735351562],[-132.56283569335938,64.7750015258789],[-132.57057189941406,64.78015899658203],[-132.572509765625,64.78665161132812],[-132.57391357421872,64.79273223876953],[-132.5834503173828,64.80227661132812],[-132.59561157226562,64.8069610595703],[-132.61122131347656,64.81138610839844],[-132.6178741455078,64.81466674804688],[-132.62443542480466,64.82382965087889],[-132.6210784912109,64.83207702636719],[-132.60897827148438,64.83538055419922],[-132.6007537841797,64.83779907226562],[-132.5809326171875,64.84394073486328],[-132.5718078613281,64.8476333618164],[-132.5583343505859,64.85284423828125],[-132.54763793945312,64.85529327392578],[-132.5260009765625,64.86396789550781],[-132.51887512207028,64.8682632446289],[-132.5049285888672,64.87409973144531],[-132.48638916015625,64.88526153564453],[-132.47503662109375,64.89317321777344],[-132.46900939941406,64.89934539794922],[-132.4661865234375,64.90904235839844],[-132.47213745117185,64.91675567626953],[-132.47691345214844,64.9215316772461],[-132.48953247070312,64.93252563476562],[-132.4952850341797,64.93708038330078],[-132.50711059570312,64.94345092773438],[-132.5134735107422,64.94947052001953],[-132.5163116455078,64.95469665527344],[-132.5055389404297,64.96407318115234],[-132.49244689941406,64.96864318847656],[-132.4871063232422,64.97039031982422],[-132.48092651367188,64.9744644165039],[-132.47337341308594,64.98043823242188],[-132.4686279296875,64.98365020751953],[-132.45474243164062,64.99158477783203],[-132.44549560546875,64.99421691894531],[-132.43374633789062,64.99687957763672],[-132.42681884765625,64.99737548828125],[-132.41761779785153,65.00106048583984],[-132.4059295654297,65.00476837158203],[-132.38693237304685,65.01065826416016],[-132.37281799316403,65.01544189453125],[-132.35675048828125,65.02066040039062],[-132.34425354003906,65.02774047851562],[-132.34222412109375,65.03511810302734],[-132.34005737304688,65.04039764404295],[-132.33763122558594,65.0494613647461],[-132.33848571777344,65.05513000488281],[-132.3372344970703,65.05913543701172],[-132.33741760253906,65.06228637695312],[-132.34075927734372,65.06792449951172],[-132.34396362304688,65.07146453857422],[-132.3543701171875,65.07870483398438],[-132.36799621582028,65.08149719238281],[-132.3773651123047,65.07992553710938],[-132.38528442382812,65.0792007446289],[-132.3946533203125,65.07762908935547],[-132.42137145996094,65.07479858398438],[-132.4461212158203,65.0724105834961],[-132.4619598388672,65.07096099853516],[-132.47401428222656,65.07250213623047],[-132.49143981933594,65.07229614257812],[-132.51043701171875,65.07333374023438],[-132.52662658691406,65.07712554931639],[-132.53378295898438,65.07977294921874],[-132.54824829101562,65.08716583251953],[-132.55963134765625,65.09312438964844],[-132.57070922851562,65.10181427001953],[-132.57191467285156,65.10474395751953],[-132.57476806640625,65.1099624633789],[-132.5717315673828,65.12345123291014],[-132.56590270996094,65.12583923339844],[-132.56097412109375,65.13388824462889],[-132.54501342773438,65.14122772216797],[-132.53736877441406,65.14615631103516],[-132.53305053710938,65.1487350463867],[-132.52684020996094,65.15280151367186],[-132.52265930175778,65.15747833251953],[-132.5182342529297,65.16593933105469],[-132.52056884765625,65.17074584960936],[-132.52493286132812,65.17616271972656],[-132.53028869628906,65.18135070800781],[-132.53550720214844,65.18444061279297],[-132.545654296875,65.18641662597656],[-132.5576934814453,65.18690490722655],[-132.5771484375,65.18624114990234],[-132.59805297851562,65.1847152709961],[-132.6217498779297,65.180419921875],[-132.63348388671875,65.17669677734375],[-132.6461944580078,65.1727523803711],[-132.6573944091797,65.16860961914062],[-132.67295837402344,65.1629409790039],[-132.68475341796875,65.16026306152344],[-132.7017059326172,65.15961456298828],[-132.7211456298828,65.158935546875],[-132.74278259277344,65.16095733642577],[-132.75453186035156,65.16416168212889],[-132.76385498046875,65.16844940185547],[-132.767578125,65.17134094238281],[-132.773681640625,65.17903900146484],[-132.77825927734375,65.1865463256836],[-132.77749633789062,65.19580078125],[-132.77621459960935,65.19876861572266],[-132.76797485351562,65.20223999023438],[-132.7578582763672,65.20721435546875],[-132.7466583251953,65.21136474609375],[-132.7309112548828,65.21494293212889],[-132.72007751464844,65.21739959716797],[-132.7107696533203,65.22004699707031],[-132.69873046875,65.22650909423828],[-132.71034240722656,65.2276153564453],[-132.71731567382812,65.22710418701172],[-132.72793579101562,65.22843170166016],[-132.7349090576172,65.22792053222656],[-132.74688720703125,65.22733306884766],[-132.76100158691406,65.22840881347656],[-132.7688446044922,65.23250579833984],[-132.7456512451172,65.23723602294922],[-132.73382568359375,65.23992156982422],[-132.7190399169922,65.24327087402344],[-132.7046356201172,65.24493408203125],[-132.6868896484375,65.24894714355469],[-132.65722656249997,65.26152801513672],[-132.6392364501953,65.26933288574219],[-132.6294403076172,65.2726058959961],[-132.62306213378906,65.27458190917969],[-132.60923767089844,65.27770233154297],[-132.59539794921875,65.28081512451172],[-132.57296752929685,65.2901382446289],[-132.56117248535156,65.30078887939453],[-132.55735778808594,65.30377960205078],[-132.55581665039062,65.3105239868164],[-132.55572509765625,65.31641387939453],[-132.55715942382812,65.3224868774414],[-132.5522003173828,65.33053588867188],[-132.54905700683594,65.33604431152344],[-132.5411224365234,65.34475708007812],[-132.5358428955078,65.34860229492188],[-132.5253143310547,65.3563003540039],[-132.51943969726562,65.35868072509766],[-132.5026397705078,65.3635025024414],[-132.49630737304688,65.36652374267578],[-132.48010253906247,65.37281036376953],[-132.46795654296875,65.37925720214844],[-132.4519500732422,65.38868713378906],[-132.434814453125,65.39624786376953],[-132.4222412109375,65.40437316894531],[-132.40997314453125,65.4097671508789],[-132.39678955078122,65.41643524169922],[-132.379150390625,65.42461395263672],[-132.35711669921875,65.43536376953125],[-132.34190368652344,65.44245910644531],[-132.33518981933594,65.44821166992188],[-132.32980346679688,65.4510040283203],[-132.32655334472656,65.45545196533203],[-132.32707214355466,65.46385192871094],[-132.32652282714844,65.47142028808594],[-132.3269805908203,65.47877502441406],[-132.32431030273438,65.48468780517578],[-132.316650390625,65.49169921875],[-132.31051635742188,65.49890899658203],[-132.29486083984375,65.5076904296875],[-132.2877197265625,65.51512145996094],[-132.27943420410153,65.52067565917967],[-132.2633514404297,65.53113555908203],[-132.25753784179688,65.53560638427734],[-132.24108886718747,65.5488052368164],[-132.2383270263672,65.55366516113281],[-132.21820068359375,65.56500244140625],[-132.19898986816406,65.5750732421875],[-132.1915588378906,65.57830047607422],[-132.18441772460935,65.58677673339842],[-132.1815948486328,65.59058380126952],[-132.18414306640625,65.59959411621094],[-132.1916961669922,65.60750579833984],[-132.19920349121094,65.61436462402344],[-132.21670532226562,65.62701416015625],[-132.2317657470703,65.64073181152344],[-132.24267578125,65.65322875976562],[-132.2535400390625,65.66468048095703],[-132.26119995117188,65.67363739013672],[-132.27528381347656,65.68756866455078],[-132.29100036621094,65.70275115966795],[-132.3007049560547,65.71126556396484],[-132.31356811523438,65.72121429443358],[-132.3263702392578,65.73011779785156],[-132.3416595458984,65.7379379272461],[-132.3639678955078,65.75114440917967],[-132.3829803466797,65.76081848144531],[-132.39199829101562,65.76576232910156],[-132.403564453125,65.77067565917969],[-132.42819213867188,65.77964782714844],[-132.4481964111328,65.78804016113281],[-132.46450805664062,65.7945785522461],[-132.49026489257812,65.80436706542969],[-132.517578125,65.81434631347656],[-132.5345458984375,65.8223419189453],[-132.5467071533203,65.8276596069336],[-132.54995727539062,65.83013916015625],[-132.5647430419922,65.84341430664062],[-132.57420349121094,65.85359191894531],[-132.5763702392578,65.8621826171875],[-132.57339477539062,65.87083435058594],[-132.55868530273438,65.8804702758789],[-132.54731750488278,65.8866958618164],[-132.5276336669922,65.89155578613281],[-132.51548767089844,65.89421844482422],[-132.4921417236328,65.89827728271484],[-132.4749298095703,65.90204620361328],[-132.46096801757812,65.90830230712889],[-132.4521942138672,65.91554260253906],[-132.44274902343747,65.92027282714844],[-132.4324951171875,65.9283676147461],[-132.42311096191406,65.93415069580078],[-132.41546630859375,65.9352798461914],[-132.38819885253906,65.93537139892577],[-132.36830139160156,65.9381103515625],[-132.35360717773438,65.94184112548828],[-132.34413146972656,65.94656372070312],[-132.33682250976562,65.95294189453125],[-132.33451843261716,65.95716857910155],[-132.33424377441406,65.96095275878906],[-132.32955932617188,65.96835327148438],[-132.33157348632812,65.97589874267578],[-132.3343505859375,65.97901916503906],[-132.34071350097653,65.98189544677734],[-132.3618621826172,65.99007415771484],[-132.36770629882812,65.9925308227539],[-132.38424682617188,65.99319458007812],[-132.39822387695312,65.99388122558594],[-132.40696716308594,65.99357604980469],[-132.41307067871094,65.99224853515625],[-132.4351043701172,65.9901123046875],[-132.45095825195312,65.9882583618164],[-132.47320556640625,65.98926544189453],[-132.50074768066406,65.9923095703125],[-132.5113525390625,65.99639129638672],[-132.5269317626953,66.00524139404297],[-132.5371551513672,66.01100158691406],[-132.54307556152344,66.0145034790039],[-132.5542449951172,66.01899719238281],[-132.56892395019528,66.02217864990234],[-132.58612060546875,66.02428436279297],[-132.59996032714844,66.02285766601562],[-132.61270141601562,66.02059936523436],[-132.62286376953125,66.01837158203125],[-132.63403320312497,66.01592254638672],[-132.65621948242188,66.00891876220703],[-132.66738891601562,66.0064697265625],[-132.67736816406247,66.00213623046875],[-132.70803833007812,65.99166107177734],[-132.72012329101562,65.98793029785156],[-132.74014282226562,65.98031616210938],[-132.7481689453125,65.97747802734375],[-132.7560272216797,65.97254180908203],[-132.77586364746094,65.96282196044922],[-132.7890625,65.95402526855467],[-132.800048828125,65.9435806274414],[-132.81187438964844,65.93081665039062],[-132.8158721923828,65.92298126220703],[-132.82444763183594,65.91466522216797],[-132.833740234375,65.90886688232422],[-132.8473358154297,65.90531921386719],[-132.8646697998047,65.90360260009766],[-132.88768005371094,65.90222930908203],[-132.901611328125,65.90287780761719],[-132.92425537109375,65.90318298339844],[-132.95286560058594,65.90697479248047],[-132.97111511230466,65.90985870361328],[-132.98707580566406,65.91592407226562],[-132.99029541015625,65.9232406616211],[-132.98800659179688,65.92642211914062],[-132.98397827148438,65.93321228027344],[-132.97535705566406,65.94048309326172],[-132.97067260742188,65.94580078125],[-132.96607971191403,65.95217895507812],[-132.9574432373047,65.9594497680664],[-132.95065307617188,65.96417236328125],[-132.94384765625,65.96889495849608],[-132.9336395263672,65.9759750366211],[-132.9293975830078,65.98065948486328],[-132.92074584960938,65.98793029785156],[-132.91595458984375,65.99220275878906],[-132.90904235839844,65.9958724975586],[-132.90415954589844,65.99909210205078],[-132.9047088623047,65.99950408935547],[-132.913818359375,66.00336456298827],[-132.92291259765625,66.00723266601562],[-132.93295288085938,66.0098190307617],[-132.9585418701172,66.01322937011719],[-132.97364807128906,66.01469421386719],[-132.99850463867188,66.01558685302733],[-133.0067138671875,66.01483917236328],[-133.02963256835938,66.01722717285156],[-133.05587768554688,66.01620483398438],[-133.08554077148438,66.01869201660156],[-133.105712890625,66.01901245117188],[-133.13140869140625,66.01756286621094],[-133.15798950195312,66.01483154296875],[-133.19357299804688,66.00901794433594],[-133.21121215820312,66.00453186035156],[-133.23231506347656,65.99871826171875],[-133.24342346191406,65.99623107910156],[-133.25442504882812,65.99268341064453],[-133.2767791748047,65.9839096069336],[-133.29371643066406,65.97795104980469],[-133.29954528808594,65.9744873046875],[-133.31254577636716,65.97048950195312],[-133.3389892578125,65.96184539794922],[-133.35791015625,65.9554214477539],[-133.3723602294922,65.95055389404297],[-133.38723754882812,65.94503784179688],[-133.4031219482422,65.93930053710938],[-133.41954040527344,65.93396759033203],[-133.4326171875,65.93099975585938],[-133.44378662109375,65.93437957763672],[-133.45127868652344,65.93698120117188],[-133.46099853515625,65.94122314453124],[-133.47048950195312,65.94336700439453],[-133.51052856445312,65.95147705078125],[-133.52964782714844,65.95197296142578],[-133.5379180908203,65.95223999023436],[-133.56149291992188,65.95117950439453],[-133.5763702392578,65.95048522949219],[-133.585205078125,65.95116424560545],[-133.59941101074216,65.95384216308594],[-133.6094970703125,65.95638275146484],[-133.62619018554688,65.96279907226562],[-133.63832092285156,65.96971893310547],[-133.63916015625,65.97706604003906],[-133.63552856445312,65.9859619140625],[-133.63331604003906,65.9891586303711],[-133.622314453125,66.00135040283203],[-133.61618041992188,66.00650787353516],[-133.60768127441406,66.00897979736327],[-133.5991973876953,66.01628875732422],[-133.59262084960938,66.02208709716797],[-133.58941650390625,66.03034210205078],[-133.59213256835938,66.03617858886717],[-133.5970916748047,66.03882598876953],[-133.6063995361328,66.03885650634766],[-133.61740112304688,66.04012298583984],[-133.63368225097656,66.04234313964844],[-133.643798828125,66.04488372802734],[-133.65516662597656,66.0492935180664],[-133.66213989257812,66.05147552490233],[-133.66665649414062,66.05475616455078],[-133.67242431640625,66.05989837646484],[-133.67823791503906,66.06988525390625],[-133.67782592773438,66.07535552978516],[-133.67666625976562,66.08316040039062],[-133.67153930664062,66.08808898925781],[-133.66572570800778,66.09156799316406],[-133.65126037597656,66.09646606445312],[-133.6474609375,66.09947967529295],[-133.63816833496094,66.10427856445311],[-133.63233947753906,66.10775756835938],[-133.61192321777344,66.11507415771484],[-133.60597229003906,66.11750030517578],[-133.59867858886716,66.12183380126953],[-133.59442138671875,66.12548828125],[-133.58995056152344,66.13187408447266],[-133.5816650390625,66.14128112792969],[-133.57090759277344,66.15177917480469],[-133.57081604003906,66.15556335449219],[-133.56590270996094,66.16742706298828],[-133.56581115722656,66.17121124267578],[-133.56877136230466,66.17914581298828],[-133.5749053955078,66.18744659423828],[-133.5786590576172,66.19305419921875],[-133.58229064941406,66.1976089477539],[-133.58583068847656,66.20594787597656],[-133.58880615234375,66.21388244628906],[-133.5905303955078,66.2199478149414],[-133.5947723388672,66.22975158691406],[-133.59402465820312,66.2369155883789],[-133.59475708007812,66.24803924560547],[-133.59466552734375,66.25182342529297],[-133.5935821533203,66.26067352294922],[-133.59429931640625,66.26696777343749],[-133.5991973876953,66.27339172363281],[-133.60227966308594,66.27754211425781],[-133.60694885253906,66.28186798095703],[-133.6242218017578,66.29142761230469],[-133.63284301757812,66.29379272460938],[-133.64883422851562,66.29664611816406],[-133.6709442138672,66.2981185913086],[-133.67831420898438,66.29861450195312],[-133.68931579589844,66.298828125],[-133.7022247314453,66.29753112792969],[-133.7209014892578,66.29653930664062],[-133.73348999023438,66.29692840576172],[-133.7541961669922,66.29547882080077],[-133.78025817871094,66.29497528076172],[-133.79385375976562,66.29512786865234],[-133.8127899169922,66.29622650146484],[-133.82186889648438,66.29793548583984],[-133.82835388183594,66.29969787597656],[-133.839111328125,66.30642700195312],[-133.8423614501953,66.31161499023436],[-133.84414672851562,66.31767272949219],[-133.84422302246094,66.322509765625],[-133.8430938720703,66.33031463623045],[-133.83433532714844,66.33553314208984],[-133.82949829101562,66.33878326416016],[-133.8246612548828,66.34202575683594],[-133.81765747070312,66.34468841552734],[-133.8076171875,66.3480453491211],[-133.79837036132812,66.35389709472655],[-133.7955780029297,66.356689453125],[-133.79296875,66.3653564453125],[-133.7948760986328,66.37246704101562],[-133.7967987060547,66.37957763671875],[-133.79354858398438,66.38300323486328],[-133.79417419433594,66.38824462890625],[-133.78697204589844,66.40226745605467],[-133.78480529785156,66.41029357910156],[-133.77828979492188,66.41714477539062],[-133.77560424804688,66.42098236083984],[-133.7614288330078,66.42525482177734],[-133.75656127929688,66.42849731445312],[-133.73829650878906,66.43368530273438],[-133.71829223632812,66.4376449584961],[-133.7003936767578,66.43734741210938],[-133.68487548828122,66.4349136352539],[-133.65921020507812,66.43097686767578],[-133.6531524658203,66.4285659790039],[-133.63925170898438,66.42630767822266],[-133.630615234375,66.42877960205078],[-133.6256103515625,66.43096923828124],[-133.62826538085938,66.43576049804688],[-133.63186645507812,66.44409942626953],[-133.63967895507812,66.45256805419922],[-133.64576721191406,66.4598159790039],[-133.6493377685547,66.46332550048828],[-133.6543731689453,66.46595764160156],[-133.6670684814453,66.47118377685547],[-133.67440795898438,66.4754638671875],[-133.68002319335938,66.47850799560547],[-133.68634033203122,66.48301696777344],[-133.69155883789062,66.49153900146483],[-133.6914825439453,66.49532318115234],[-133.69371032714844,66.50074005126953],[-133.69810485839844,66.50675201416014],[-133.6999969482422,66.51387023925781],[-133.69618225097656,66.52171325683594],[-133.67758178710938,66.52479553222656],[-133.65646362304688,66.52897644042969],[-133.6431121826172,66.53195190429688],[-133.62884521484372,66.5362091064453],[-133.62030029296875,66.53973388671875],[-133.61358642578125,66.54552459716797],[-133.6073303222656,66.55068969726561],[-133.60414123535156,66.55516052246094],[-133.6034698486328,66.55853271484375],[-133.6082000732422,66.56285858154297],[-133.6195526123047,66.56517028808592],[-133.63604736328125,66.56633758544922],[-133.6466064453125,66.57098388671875],[-133.65821838378906,66.57538604736328],[-133.66653442382812,66.58322143554688],[-133.6741485595703,66.58959197998045],[-133.69232177734372,66.59576416015625],[-133.70220947265625,66.59894561767578],[-133.71774291992188,66.60516357421875],[-133.73651123046875,66.61174774169922],[-133.7489776611328,66.61865234375],[-133.76571655273438,66.62568664550781],[-133.78244018554688,66.63272094726562],[-133.79571533203125,66.63729858398438],[-133.79983520507812,66.6449966430664],[-133.7962188720703,66.65010833740234],[-133.79249572753906,66.6541748046875],[-133.7770233154297,66.65763092041016],[-133.7647705078125,66.66143798828124],[-133.75457763671875,66.66478729248047],[-133.7490997314453,66.66761779785156],[-133.75225830078125,66.67176055908203],[-133.76023864746094,66.67644500732422],[-133.7657928466797,66.67843627929686],[-133.77732849121094,66.68179321289061],[-133.79547119140622,66.68690490722656],[-133.8083038330078,66.69212341308594],[-133.8199920654297,66.69651794433594],[-133.83329772949216,66.70108795166016],[-133.84002685546875,66.70390319824219],[-133.85049438476562,66.71125793457031],[-133.85336303710938,66.71709442138672],[-133.85374450683594,66.72023010253906],[-133.84239196777344,66.72277069091797],[-133.83160400390625,66.72571563720703],[-133.81480407714844,66.72730255126953],[-133.8009033203125,66.7309341430664],[-133.78558349609375,66.74026489257812],[-133.78823852539062,66.74883270263672],[-133.78526306152344,66.75918579101562],[-133.78201293945312,66.76744079589844],[-133.78033447265625,66.77104949951172],[-133.7716522216797,66.77835845947266],[-133.76672363281247,66.79022216796875],[-133.76548767089844,66.7931900024414],[-133.77099609375,66.79896545410156],[-133.7818145751953,66.80464172363281],[-133.79159545898438,66.810546875],[-133.79887390136716,66.81755065917969],[-133.80599975585938,66.8235092163086],[-133.80918884277344,66.82765197753906],[-133.816650390625,66.83192443847656],[-133.8254241943359,66.83805084228516],[-133.8395233154297,66.84408569335938],[-133.85186767578125,66.84888458251953],[-133.86923217773435,66.85527038574219],[-133.8806915283203,66.86135101318358],[-133.89007568359375,66.86788940429688],[-133.90225219726562,66.87541961669922],[-133.90826416015622,66.88055419921875],[-133.9113311767578,66.8836441040039],[-133.91616821289062,66.8879623413086],[-133.91983032226562,66.89146423339844],[-133.92539978027344,66.8972396850586],[-133.93408203124997,66.90231323242188],[-133.9456024169922,66.90460205078125],[-133.9552459716797,66.90461730957031],[-133.97836303710938,66.90541839599608],[-134.0005645751953,66.90748596191406],[-134.02040100097656,66.91170501708984],[-134.04556274414062,66.91580200195312],[-134.0603790283203,66.91844177246094],[-134.07308959960938,66.92532348632812],[-134.08212280273438,66.92870330810547],[-134.09559631347656,66.93325805664062],[-134.109375,66.93990325927734],[-134.11572265625,66.9471206665039],[-134.1158447265625,66.9519577026367],[-134.11715698242188,66.95760345458984],[-134.11328125,66.96062469482422],[-134.11163330078125,66.9642333984375],[-134.1061248779297,66.96707916259766],[-134.09898376464844,66.9697494506836],[-134.0939178466797,66.97196197509766],[-134.08499145507812,66.97341156005858],[-134.0727996826172,66.97450256347656],[-134.05081176757812,66.97454071044922],[-134.04188537597653,66.97598266601562],[-134.0128936767578,66.9759521484375],[-133.99966430664062,66.9772720336914],[-133.98196411132812,66.97742462158203],[-133.96055603027344,66.97785186767578],[-133.9349822998047,66.97920989990234],[-133.90254211425778,66.98153686523438],[-133.89451599121094,66.981689453125],[-133.86697387695312,66.98454284667969],[-133.8423614501953,66.98943328857422],[-133.83518981933594,66.99209594726562],[-133.82949829101562,66.99388885498047],[-133.82290649414062,66.99695587158203],[-133.822265625,67.00032806396483],[-134.0144805908203,66.9998779296875],[-135.0118865966797,66.99995422363281],[-135.054893081844,66.99994851576707],[-136.1615753173828,66.99980163574219],[-136.166015625,67.00534057617188],[-136.16773986816406,67.00823211669922],[-136.1695098876953,67.01385498046875],[-136.17225646972656,67.0165023803711],[-136.17318725585938,67.0206832885742],[-136.17543029785156,67.02839660644531],[-136.17778015136716,67.03169250488281],[-136.17962646484375,67.04005432128906],[-136.18392944335938,67.04727935791014],[-136.18617248535153,67.05500030517578],[-136.18670654296875,67.05982208251952],[-136.1905517578125,67.06495666503906],[-136.1925048828125,67.06889343261719],[-136.19406127929688,67.07347869873047],[-136.19773864746094,67.0802993774414],[-136.1998291015625,67.08970642089844],[-136.2002716064453,67.09896087646484],[-136.199951171875,67.10234069824217],[-136.20111083984375,67.1075668334961],[-136.1999053955078,67.11666870117188],[-136.19845581054688,67.12471771240233],[-136.19613647460938,67.1313247680664],[-136.1942138671875,67.1372833251953],[-136.19618225097656,67.14122009277344],[-136.20501708984375,67.14682006835938],[-136.20777893066406,67.14946746826172],[-136.21385192871094,67.15242004394531],[-136.2279052734375,67.1595230102539],[-136.2332000732422,67.16377258300781],[-136.23855590820312,67.17074584960938],[-136.24037170410156,67.1763687133789],[-136.23568725585938,67.17969512939453],[-136.22792053222656,67.18374633789062],[-136.2164306640625,67.1881332397461],[-136.20327758789062,67.19236755371092],[-136.19796752929688,67.1952896118164],[-136.1821746826172,67.20234680175781],[-136.16859436035156,67.20722198486328],[-136.1612091064453,67.21063232421875],[-136.15692138671875,67.21330261230467],[-136.1524658203125,67.21765899658203],[-136.14466857910156,67.22171020507812],[-136.1415252685547,67.22960662841797],[-136.14181518554688,67.23338317871094],[-136.1427459716797,67.23756408691406],[-136.13914489746094,67.24337005615234],[-136.1259002685547,67.2547607421875],[-136.1230926513672,67.25927734375],[-136.1176300048828,67.26661682128906],[-136.10931396484372,67.2757339477539],[-136.11029052734375,67.28264617919922],[-136.11070251464844,67.29190063476562],[-136.11289978027344,67.29688262939453],[-136.1158905029297,67.30057525634764],[-136.1216583251953,67.3069076538086],[-136.12846374511716,67.31300354003906],[-136.13504028320312,67.3180465698242],[-136.14434814453125,67.33290100097656],[-136.14862060546875,67.33738708496094],[-136.1588439941406,67.34652709960938],[-136.1608123779297,67.35045623779297],[-136.16358947753906,67.35310363769531],[-136.1608428955078,67.3603515625],[-136.1617889404297,67.36453247070312],[-136.15742492675778,67.3743667602539],[-136.16050720214844,67.3807907104492],[-136.17604064941406,67.38426971435547],[-136.1951141357422,67.3863754272461],[-136.2071533203125,67.3912353515625],[-136.22157287597656,67.39938354492188],[-136.22468566894528,67.40580749511719],[-136.21617126464844,67.41661834716797],[-136.2085723876953,67.42171478271483],[-136.2049560546875,67.42752075195312],[-136.20069885253906,67.43292999267578],[-136.1989288330078,67.43719482421875],[-136.19697570800778,67.44316101074219],[-136.19375610351562,67.44831848144531],[-136.18788146972656,67.45630645751953],[-136.19027709960938,67.4595947265625],[-136.18325805664062,67.47224426269531],[-136.18228149414062,67.47522735595702],[-136.17953491210938,67.48247528076172],[-136.1803741455078,67.49108123779297],[-136.1807403564453,67.49758911132812],[-136.18447875976562,67.5044174194336],[-136.18589782714844,67.51068115234375],[-136.19517517089844,67.52005767822266],[-136.1938018798828,67.52368927001953],[-136.19464111328125,67.53228759765625],[-136.19140625,67.5374526977539],[-136.19178771972656,67.54396057128906],[-136.19047546386716,67.55032348632812],[-136.1913299560547,67.55892181396484],[-136.1939697265625,67.5632553100586],[-136.20021057128906,67.56893920898438],[-136.20968627929688,67.57662963867188],[-136.218505859375,67.58391571044922],[-136.22622680664062,67.58870697021484],[-136.2341766357422,67.59455108642578],[-136.24366760253906,67.60223388671875],[-136.25227355957028,67.60846710205078],[-136.2587127685547,67.61246490478516],[-136.27473449707028,67.61972045898438],[-136.28964233398438,67.62448120117188],[-136.30343627929688,67.62675476074219],[-136.31149291992188,67.62816619873047],[-136.3220672607422,67.6284408569336],[-136.34542846679688,67.6268081665039],[-136.36566162109375,67.62590789794922],[-136.37791442871094,67.62632751464844],[-136.3970947265625,67.62567138671875],[-136.41651916503906,67.62606048583983],[-136.43161010742188,67.62911987304688],[-136.4455108642578,67.63411712646484],[-136.45120239257812,67.63939666748047],[-136.44854736328122,67.64222717285156],[-136.44656372070312,67.64544677734375],[-136.4435119628906,67.64892578125],[-136.43678283691406,67.65547180175781],[-136.43212890625,67.66152954101562],[-136.42813110351562,67.66798400878906],[-136.42678833007812,67.6716079711914],[-136.42578125,67.67900848388672],[-136.42637634277344,67.683837890625],[-136.435302734375,67.69110870361328],[-136.44139099121094,67.69573974609375],[-136.4427947998047,67.69927215576172],[-136.44549560546872,67.70359802246094],[-136.44618225097653,67.7111587524414],[-136.44248962402344,67.7142333984375],[-136.43992432537806,67.94393612476543],[-136.43086561909962,68.86170511547427],[-136.4307284766541,68.8755994928748],[-136.357465151259,68.8625296564375],[-136.224387827978,68.8105466244827],[-136.2238065260141,68.81069736981256],[-136.194333568686,68.8183404038124],[-136.11337528495696,68.8104917096586],[-136.048165317902,68.7812991958698],[-135.735176155428,68.6896160315908],[-135.549604462984,68.6655573352179],[-135.5439351306275,68.66605255523658],[-135.464365651818,68.6730030030679],[-135.392225326888,68.6685043503307],[-135.388096972924,68.6809739641901],[-135.476136567843,68.7214504866553],[-135.49007827438052,68.73549855488405],[-135.573620384636,68.8196780103678],[-135.615040253665,68.8349188455616],[-135.619137872664,68.8510659435488],[-135.518077274961,68.8767113704546],[-135.180529772753,68.8589234267936],[-134.951730993106,68.876198108698],[-134.897230024358,68.8726820943624],[-134.849368711943,68.8504503655401],[-134.827486716748,68.80757552437828],[-134.555525464991,68.6906531416918],[-134.454548436757,68.66466865146958],[-134.384237213126,68.6311306404597],[-134.392409408499,68.6093369500869],[-134.35465198836397,68.5875801028362],[-134.380396488785,68.5190884132695],[-134.308367303071,68.49174488826289],[-134.278097248638,68.4992243379742],[-134.291197040857,68.5129135604184],[-134.245575461128,68.6087928272561],[-134.277357727219,68.646140515278],[-134.355379897402,68.6834516829596],[-134.482176776186,68.7144320128366],[-134.663483303736,68.7999740870955],[-134.823712454703,68.89660888313],[-134.762496572327,68.9117532195365],[-134.482692892401,68.7878946776881],[-134.428501644611,68.7842361128463],[-134.424766553446,68.8191078179262],[-134.676257882603,68.94438202932399],[-134.64796183577,68.9967621320914],[-134.552151842285,69.054280552526],[-134.436534541654,69.0881241104418],[-134.33990550599597,69.1455561966923],[-134.210823399968,69.18801443290349],[-133.959973025169,69.2988777204945],[-133.876289657394,69.3187337696333],[-133.737972725539,69.3796000980599],[-133.622239729266,69.40677055761859],[-133.355293244638,69.4071494566259],[-133.16752465266,69.4449871196667],[-133.090466678842,69.4907595888849],[-133.108709971053,69.5594838425131],[-133.089888850811,69.6030646700634],[-132.958918126231,69.63853877118879],[-132.70702090017096,69.6843502543352],[-132.606815091585,69.7348102172986],[-132.531283391883,69.7517085650681],[-132.325265970239,69.7362233206145],[-132.201255213841,69.7525540906911],[-131.850458099305,69.8350944579619],[-131.777499423055,69.8842565081053],[-131.635144288809,69.9150501167975],[-131.545795419679,69.9564455680469],[-131.468788115975,69.9729556474311],[-131.415410423119,69.96223682288439],[-131.321633639345,69.9159143296127],[-131.22903161165496,69.9246037979956],[-131.226581754384,69.9858774379063],[-131.200696606106,70.0355554484868],[-131.157733393894,70.0612090015621],[-130.854352789117,70.13039526491688],[-130.756282826112,70.1287898714297],[-130.731612777106,70.1559299998826],[-130.66454700886396,70.1698270626655],[-130.607658347101,70.16509256673399],[-130.549912120967,70.1440392047697],[-130.417449492101,70.1328827871694],[-130.34039896523,70.0938624531571],[-130.076528763143,70.0711691270042],[-130.002143844792,70.0972323822978],[-129.958986613137,70.171571193228],[-129.877292022529,70.2263018590923],[-129.798201070061,70.2421871320114],[-129.760296137608,70.23886613590189],[-129.528711302879,70.12707776453269],[-129.50958132113797,70.06013666367718],[-129.550647832525,70.0247007497066],[-130.019329141373,69.8970212765899],[-130.675730035213,69.7718153535202],[-130.737391784618,69.74785164593389],[-130.747466967287,69.7292502276491],[-130.716169439722,69.69741278810709],[-130.733840632611,69.6827000055557],[-130.949060316292,69.64252708974898],[-130.98505832761,69.6293488746371],[-131.015622154153,69.5898055453568],[-131.059113556657,69.5804921130042],[-131.096067610816,69.583574574475],[-131.183244710396,69.6199396419049],[-131.342359381406,69.6297830615036],[-131.565429464709,69.5703340744591],[-131.708938414938,69.5721735853593],[-131.89694557466697,69.5419312156883],[-132.086306320288,69.5277746078006],[-132.215060526908,69.4991082167322],[-132.24527376103896,69.4756757514506],[-132.261905189209,69.3996599677397],[-132.374257558071,69.3632640215086],[-132.407947113688,69.3111362889737],[-132.563359424119,69.303744623519],[-132.569026298703,69.2913098923658],[-132.50990592134798,69.2546155314882],[-132.524135060072,69.2235331129514],[-132.5558258366,69.2163138843944],[-132.554024932301,69.2020817728041],[-132.564673535772,69.1877721075583],[-132.517071817904,69.1836302501691],[-132.475385815703,69.198821361745],[-132.458114943789,69.2199062168637],[-132.449274921607,69.2407896380235],[-132.403006703275,69.2489866638844],[-132.365907741292,69.2457372155317],[-132.281134315841,69.2465332775457],[-132.189030708334,69.2715624945527],[-132.172528001301,69.2863767413393],[-132.111686100017,69.2944794259867],[-131.918500254992,69.3597759902779],[-131.898757571957,69.380781965425],[-131.986367171274,69.4167622634527],[-131.982087722671,69.4454466848507],[-131.807303013504,69.4896469151682],[-131.751943742513,69.485224485151],[-131.713513089775,69.4660005312982],[-131.65823732340598,69.461549857117],[-131.61229282108596,69.4384573088774],[-131.575504235336,69.4354722970858],[-131.53247722882,69.4448927779295],[-131.52310074931,69.4635162334915],[-131.551995472637,69.5014048472014],[-131.519630135048,69.5084692769806],[-131.435053962691,69.5048071808028],[-131.297943317594,69.4353221963298],[-131.278787372818,69.472549684643],[-131.400808684531,69.5343326739072],[-131.394478645606,69.5467462320464],[-131.35118062774998,69.5561318766062],[-131.310474384616,69.5500969305275],[-131.266976068347,69.5242986020541],[-131.22637549117,69.521476206533],[-131.207539168858,69.5330692115881],[-131.265050751906,69.5780862928591],[-131.240178477906,69.5909347867023],[-131.200735402427,69.5768612302705],[-131.156022457036,69.5557838366492],[-131.081913105473,69.5370704102598],[-131.03913171070496,69.50646564917328],[-131.048002845219,69.4725718461365],[-131.026455367251,69.4310058680336],[-131.012213482624,69.3595903265535],[-131.121129438609,69.2425515184444],[-131.103178273507,69.1859987728337],[-131.051057978892,69.1588905409201],[-131.014831991755,69.15579032566],[-130.983667236145,69.1790274539552],[-130.953671695602,69.2898279182109],[-130.888485745537,69.3587713675596],[-130.618858728018,69.5351294146845],[-130.550153782366,69.6415209118893],[-130.496889929638,69.6753522357167],[-130.409697411438,69.6954496873394],[-130.218834097784,69.7198298771514],[-130.045083777944,69.733383692859],[-129.724249136873,69.81542753667519],[-129.32323637568,69.8637258229332],[-129.274928762985,69.86254028928819],[-129.18547586913598,69.8803930285273],[-129.098871025208,69.940965979675],[-129.019895631909,69.9728415186646],[-128.964358320802,69.9513075324514],[-128.987573925886,69.9142422204691],[-129.227458419794,69.796101522134],[-129.257710240944,69.746663770481],[-129.250585802442,69.7264088905871],[-129.192001531006,69.6948119646633],[-129.081586409905,69.6844431426785],[-129.018743397937,69.6915834897223],[-129.013333973588,69.76299744863779],[-128.763594483789,69.81782561088188],[-128.706974154163,69.8451587554304],[-128.652921634337,69.8989351094347],[-128.51377707254,69.931455529077],[-128.445301165378,69.9609163371311],[-128.417110364899,70.0041023792587],[-128.438238348217,70.0323686916603],[-128.420588638828,70.0896928177102],[-128.362153647029,70.1332759919651],[-128.19103120932098,70.1659911313983],[-127.98299455107998,70.1785741384969],[-127.745794659661,70.17490925373218],[-127.707119960533,70.1875195944391],[-127.69861074499399,70.1998383268591],[-127.73480615037299,70.2198866023265],[-128.089596296465,70.2875207283277],[-128.14106701858,70.3154799665956],[-128.161385294623,70.360122031981],[-128.286440061186,70.3688006460343],[-128.342504000512,70.39053471275308],[-128.332833069364,70.4355427809251],[-128.268611479213,70.501644801352],[-128.237171361262,70.5183579113198],[-128.132684761365,70.5379774698685],[-128.094541183713,70.5343387873482],[-128.035072828665,70.5023655582719],[-127.82508247025498,70.4393189767083],[-127.667524711002,70.4041338155873],[-127.55392787315,70.3500807852685],[-127.292407926951,70.2644853299315],[-127.18673679608598,70.1877303175844],[-126.93462145873299,70.0526535968759],[-126.86645632463198,69.9959167863973],[-126.87036438731299,69.9632671582697],[-126.66608357036,69.7562440701117],[-126.13068640884,69.4254007196563],[-126.006266575883,69.3847449052029],[-125.769921773263,69.3643412726358],[-125.704556319793,69.3235148538738],[-125.669042927926,69.3193955819588],[-125.574334699685,69.3416793715672],[-125.521062553774,69.33546224384628],[-125.453176226989,69.3108469530721],[-125.388766955013,69.306606011204],[-125.353487749524,69.3391286596232],[-125.37141732312999,69.377921569834],[-125.32624118738201,69.3859494629976],[-125.22612534615499,69.3774663067917],[-125.18248495858299,69.3956613434722],[-125.234177797089,69.4284796624225],[-125.352350273023,69.4390445216172],[-125.509369095874,69.4373846538554],[-125.545044843409,69.4415320269975],[-125.577754369801,69.4619782818853],[-125.516381810461,69.4781819346409],[-125.388269633655,69.4799297292902],[-125.32020832916099,69.4919771224564],[-125.26674015855299,69.5224077320825],[-125.28795359402102,69.5449107840534],[-125.42819609295,69.577924845096],[-125.461037790504,69.5983939599018],[-125.45187361648699,69.6473280305645],[-125.18884291418398,69.6935088652584],[-125.16265922763299,69.71382175398378],[-125.32401288038301,69.7959486862735],[-125.315995107917,69.8183719049707],[-125.23537735200499,69.8324196817662],[-125.129886660997,69.8034897503528],[-125.07721940265499,69.8073703565799],[-125.040909871995,69.8398777752759],[-125.040815428758,69.8766169210827],[-124.885320897692,69.90858280296699],[-124.858664547068,69.9288682201002],[-124.898181242879,69.9535585287356],[-125.01412702149099,69.9704091634217],[-125.20631551478598,69.9425385603814],[-125.242785565422,69.94673307397288],[-125.24659573794901,70.0038976738787],[-125.08723686256602,70.0523593791586],[-124.932590705758,70.0210956034565],[-124.839366116053,70.0369871666894],[-124.626904790124,70.0153891448128],[-124.56854218569302,70.02523878843179],[-124.541476642139,70.0454888445446],[-124.57430884753799,70.0661233330709],[-124.737384197057,70.0752537529983],[-124.763844315654,70.0917352838208],[-124.750145663646,70.1202533169232],[-124.814981205158,70.1512275214093],[-124.75125579476,70.1672378754905],[-124.619048134765,70.1685318885128],[-124.587460114456,70.1581258748786],[-124.60798283491398,70.1337388337549],[-124.58818101824998,70.1213612858138],[-124.48488899458998,70.1125242036914],[-124.46475001937598,70.05314756607409],[-124.432048396282,70.0324913728855],[-124.435834187584,70.0161786392401],[-124.532962178516,69.9841599772182],[-124.553441576276,69.9597867354884],[-124.485528586064,69.8980651745704],[-124.474947582985,69.8632762044392],[-124.561698059007,69.7597329383174]]],[[[-109.99836686215822,77.97599954421617],[-110.33109065281398,77.9194115597948],[-110.76673139505098,77.8889613459318],[-110.88045622005099,77.8772240160182],[-110.92096096570899,77.85990663516378],[-110.869065253397,77.8233119078981],[-110.671810614072,77.7904464549091],[-110.248052219106,77.7954976715925],[-110.163390798818,77.7806005496606],[-110.126336803721,77.7530611732044],[-110.20983989477898,77.70371149339569],[-110.11931308353299,77.6199705919178],[-110.229089057365,77.5591652048403],[-110.59283176798299,77.4533408252584],[-110.859149899638,77.4023791996748],[-110.974944687345,77.3952034368419],[-111.160796191423,77.4083896520576],[-111.449782080302,77.3900706756055],[-111.877202761786,77.3225541407576],[-112.093758176535,77.3131931904534],[-112.324402888424,77.3276415566562],[-112.505103239612,77.3503384759259],[-112.63327776241898,77.4215390603664],[-112.751331156743,77.4434688165336],[-112.97282795673598,77.46324908498],[-113.020094536348,77.4800064103259],[-113.29753200661499,77.5208126397939],[-113.333332070153,77.5433841868877],[-113.27201434542799,77.6128892929132],[-113.468188629265,77.69459199722638],[-113.40715643516899,77.72395818198568],[-113.387425794205,77.7655064171891],[-113.391981452536,77.8757075417769],[-113.429074059329,77.89828355603218],[-113.399306983431,77.9606379436026],[-113.299716140726,77.9674218210636],[-113.1158912895,77.9497295398637],[-112.93645030519498,77.9617549662565],[-112.49928065095898,78.0205547409557],[-112.17727818583,78.0412342791732],[-111.914144010453,78.04286695556969],[-111.489621417334,78.0840776799036],[-111.164443593937,78.1037194111194],[-110.818957886508,78.0943584905433],[-110.47209467793,78.11447782825708],[-110.249544841001,78.0974303899129],[-109.99808382369352,78.09816792194458],[-109.99836686215822,77.97599954421617]]],[[[-109.99871565098134,78.28563335252669],[-110.263147757237,78.2651363268583],[-110.64107212914298,78.2635659982985],[-110.839827372332,78.2769495213972],[-111.017798996228,78.3212945089601],[-111.224818546235,78.3539518530265],[-111.307834750924,78.3490484943633],[-111.36294235936698,78.3258509946691],[-111.480091525728,78.3138710478599],[-111.554976731032,78.2744678358077],[-111.63733690697099,78.2694835098928],[-111.79611444925999,78.284758880358],[-111.977690819748,78.32855297369548],[-112.256749343822,78.3612611624539],[-112.895549171181,78.32064411359178],[-112.99931536663199,78.27372814294769],[-113.086405141099,78.2579727810159],[-113.190785418013,78.2661655688248],[-113.221206692928,78.2842629563987],[-113.190288104513,78.30641082153188],[-113.276989818466,78.37109970747909],[-113.11617401852199,78.4520195909432],[-112.878756932638,78.5024750355786],[-112.45652503400099,78.5541630675126],[-111.59926859265,78.59611540874499],[-111.211079255546,78.6885561311962],[-110.904792155014,78.7009791042517],[-110.754367275923,78.7243317714082],[-110.561098638265,78.7350306809931],[-110.375341738114,78.73525680790878],[-110.056461892191,78.7077893746259],[-109.99871565098134,78.69249195702875],[-109.99871565098134,78.28563335252669]]],[[[-110.00035827293044,72.58454299517393],[-110.34566994066,72.6373985346856],[-110.38145788511,72.6589629709264],[-110.374201192357,72.6839147328638],[-110.277781329034,72.6963432962559],[-110.075300406671,72.6779537010388],[-110.00037679692294,72.679694569937],[-110.00035827293044,72.58454299517393]]],[[[-110.00038454929077,72.71951589940896],[-110.27583825857198,72.7598702798575],[-110.44487517918898,72.8393460635575],[-110.850288348119,72.93427575297989],[-110.866118750894,72.98191006000208],[-110.81115635314299,73.0058420725708],[-110.703206660509,73.0241577264281],[-110.479193064161,73.0368070556313],[-110.09582858512299,72.99798886989599],[-110.00043505359996,72.97893970088207],[-110.00038454929077,72.71951589940896]]],[[[-116.44406127929688,69.5389175415039],[-116.48995484780636,69.5394885984853],[-116.60055053041833,69.53976570107511],[-116.60056960327299,69.5431755348124],[-116.629607437696,69.56940245961859],[-116.82522947228799,69.6096894511444],[-116.889056865282,69.666437050842],[-117.21020698216898,69.79056204631719],[-117.33230847935299,69.8599901821532],[-117.403454505304,69.9209287338077],[-117.438463745248,69.9864826764982],[-117.42358190049198,70.0333776124058],[-117.373883086015,70.0746549059752],[-117.27180630184898,70.10747672536469],[-116.937674576912,70.1589597909683],[-116.42353364570499,70.2015457047794],[-116.16830436273099,70.2121105860422],[-115.96212919734299,70.2414055598242],[-115.83828314348101,70.2310778441774],[-115.493343918583,70.2362974653943],[-114.907704162283,70.2778042679724],[-114.676126273576,70.28370794070058],[-114.575799264875,70.2947293739817],[-114.48917720675699,70.3189918075656],[-114.303957606249,70.3292227395267],[-114.091421158349,70.31265274303628],[-113.85244868205498,70.2691928757655],[-113.69189583460198,70.2615368707887],[-113.329930954377,70.27462062057],[-113.038362074764,70.2309221260558],[-112.920658470522,70.2379432006808],[-112.832262192527,70.23216139341588],[-112.59268469118199,70.1974131707654],[-112.54225706242,70.202414478514],[-112.51678863897499,70.2342536429827],[-112.187958042451,70.2664333670258],[-111.977976454762,70.247652443988],[-111.745758956657,70.2648958569286],[-111.481503433186,70.2459023350199],[-111.405337017042,70.2529903079055],[-111.40839980352699,70.2721658994202],[-111.47901474217,70.28992859997818],[-111.49181150474676,70.32635486728951],[-111.497227087691,70.34177044375188],[-111.56416689411,70.355007575901],[-111.85998947933899,70.3612870363451],[-112.028239206205,70.3940377222575],[-112.149069671924,70.4800805515897],[-112.271720348776,70.52201476333758],[-112.39082995931298,70.5447129162372],[-112.595690108352,70.5541016560477],[-112.779536092421,70.5849697643151],[-112.993443552086,70.5882209638937],[-113.55524008771799,70.7130501891255],[-113.709378243529,70.6972125405661],[-113.80002909807098,70.7025990915124],[-114.074356229016,70.7478652856825],[-114.20272045566298,70.7343537084065],[-114.357786383399,70.73270772258178],[-114.473086036475,70.7203976792135],[-114.57407612217,70.6947330765123],[-115.06344139317498,70.6462477404917],[-115.25110111204701,70.6353007699854],[-115.420048829453,70.6461031843239],[-115.521598272386,70.6346475907211],[-115.72596738404799,70.65113702810609],[-115.82496860493849,70.65039625043428],[-116.09537505328198,70.6483729313535],[-116.148476394061,70.6571302954959],[-116.206679134728,70.695156618191],[-116.27771880730299,70.7067886621243],[-116.61996179099098,70.6913978513833],[-116.940861499218,70.6579725523158],[-117.23076126281899,70.6828026132651],[-117.331525436448,70.67046421720468],[-117.532399243048,70.6807812681357],[-117.67598624811698,70.7030885373092],[-117.816835511026,70.8161059854642],[-118.02000344216398,70.8610791803592],[-118.37548852820402,70.9773982184988],[-118.460093672001,71.0423339487694],[-118.438870258541,71.0601678304935],[-118.321163018043,71.0952218945337],[-118.23171298515999,71.1064637414176],[-117.92488159822,71.1798891264861],[-117.73920200293898,71.1976620208258],[-117.575342070314,71.1975180639682],[-117.459263728049,71.2115651064062],[-117.370461706492,71.24735552307048],[-117.21511320258199,71.26592790744249],[-117.13940619817599,71.2649009211075],[-116.855385255057,71.3058835129078],[-116.779759198789,71.3472414186782],[-116.52395428672999,71.3818156761746],[-116.240829710408,71.3941333823637],[-116.091239507249,71.3810935231028],[-115.988972656309,71.3826074894176],[-115.74461959282999,71.41478759905],[-115.71551484364402,71.4279599463639],[-115.73626878201,71.4455832025061],[-115.809781973276,71.457373881844],[-116.104560738968,71.45441037099559],[-116.14415110720698,71.4749097868616],[-116.10204722266799,71.4896125001212],[-115.737583183376,71.535066525808],[-115.506242555011,71.4907205106861],[-115.44306706815199,71.4876501998796],[-115.297529818885,71.5034050531738],[-115.238465443592,71.52963470043008],[-115.267069530065,71.5414642168384],[-115.317120144787,71.5460160045367],[-115.42319728337898,71.5345542446185],[-115.49168879766302,71.5420426570888],[-115.543499571853,71.5861595569728],[-115.580454980131,71.5920925084237],[-115.63071114084102,71.5965677358498],[-115.84020282135499,71.5835493251773],[-116.208092451287,71.5525734577328],[-116.76895657593401,71.4836451489846],[-116.99088865008298,71.4929279129888],[-117.07505661185301,71.4880942685172],[-117.346295671157,71.4410176232115],[-117.42076704858098,71.4522415018009],[-117.48219149527502,71.5001919598922],[-117.581309666199,71.5185136342024],[-117.641099129534,71.5063125248557],[-117.534501480847,71.4235631946285],[-117.620086768476,71.4082426123793],[-117.83820937032199,71.4371971976579],[-118.02436829439499,71.4295881938804],[-118.18863603195798,71.43964383819],[-118.28234958670201,71.4532951159157],[-118.32273495540302,71.4836401639649],[-118.23714354629,71.5447051281621],[-118.16299360829699,71.5689570479994],[-117.73204176909299,71.611155824913],[-117.753085855928,71.63884323222558],[-117.879507089303,71.653863131422],[-117.92797892988898,71.71356001261648],[-117.98488686589799,71.7218222694833],[-118.09616151741199,71.7133907046331],[-118.197428214615,71.6404619360353],[-118.27759869275698,71.6205302482245],[-118.34748644540599,71.62708479841798],[-118.506871600273,71.68830410977199],[-118.71519550718799,71.72824166303289],[-118.826218807132,71.71943514480888],[-118.88215813671901,71.6819930303044],[-118.947617667766,71.6737461099102],[-118.98576659736898,71.6790727305784],[-119.04585624695,71.72222526013408],[-119.09899348303199,71.9034273870315],[-118.947471475569,72.0391966713901],[-118.76223441162,72.1635813668],[-118.33754214480298,72.2201356661225],[-118.267141128937,72.2488148302704],[-118.235719057184,72.2829324047166],[-118.231349354761,72.3138242492516],[-118.267744436267,72.3398724348888],[-118.60409921608299,72.3756350026557],[-118.684527464074,72.431925915403],[-118.640101014054,72.5235915724414],[-118.55161889887799,72.5849335752325],[-118.37225556097,72.661987216617],[-118.15427943741099,72.712843714671],[-117.85325738872599,72.7627795627827],[-117.658970767696,72.8203005068684],[-117.466457146983,72.9379417585426],[-116.80194269823198,73.0109123185527],[-116.417503262869,73.1122958510103],[-115.90701362369002,73.170493825113],[-115.346477064015,73.2672521848575],[-114.84983448678899,73.3659353683413],[-114.67421388615,73.3828481898944],[-114.552890617764,73.3645667875803],[-114.26917473492,73.26713535379],[-114.048179290891,73.0843834539102],[-114.09658375742,72.9904919561096],[-114.09638529675499,72.8962510669743],[-114.373282190099,72.8348760659886],[-114.423117527536,72.8101675805241],[-114.396601538649,72.748191977303],[-114.426745362165,72.7204231871332],[-114.677233641043,72.66593391403859],[-114.734986807437,72.6353331616519],[-114.68891365305,72.6100967431795],[-114.583367990465,72.6007043072732],[-114.367142789771,72.617046873941],[-114.236720583912,72.6396983234524],[-114.181830584313,72.659902278853],[-113.989112225416,72.6834271747438],[-113.910659592742,72.7107406619098],[-113.74158192699998,72.7416294129927],[-113.687513139627,72.7219826981415],[-113.816626681058,72.67017574979378],[-113.852659623824,72.64694216561729],[-113.837263919279,72.6335610505162],[-113.756388853193,72.631355880667],[-113.617177651437,72.6741909517902],[-113.539261066958,72.716111056497],[-113.532213453301,72.7513824830508],[-113.583272697161,72.7960711735733],[-113.65688262811,72.8188766499843],[-113.67866267285298,72.8514806920863],[-113.551271465631,72.9474634914521],[-113.358639977223,73.02946656948609],[-113.194347357265,73.0394475548108],[-113.003918512141,73.0121447885038],[-112.761669444201,73.0090563610824],[-112.455513626087,72.93251940227128],[-111.75951385751,72.8105426887588],[-111.409547043417,72.7124880456598],[-111.358118595778,72.6922879712558],[-111.317327594814,72.6516220687125],[-111.473062849782,72.5602577670582],[-111.527723805396,72.49197973622069],[-111.661660700595,72.42668977700059],[-111.803444933238,72.3850796941415],[-112.09872585608899,72.3445805394722],[-112.178400220415,72.3031872393635],[-112.122571510219,72.2934089558693],[-112.05262296058,72.2995850404942],[-111.91685941360798,72.3311061202911],[-111.832674240595,72.3384369624685],[-111.795499916651,72.3318612359237],[-111.768685744601,72.2900928800729],[-111.703627136432,72.28593031836299],[-111.54320915662498,72.3388893087367],[-111.58314019245098,72.3942267681053],[-111.535178653488,72.42279865831638],[-111.364230234019,72.46662787079579],[-111.32249485750299,72.4554552609547],[-111.41391401575399,72.4086111074298],[-111.42422553196099,72.3881662830622],[-111.388516077351,72.3520503139366],[-111.17546311101599,72.3210983778141],[-111.13675018001,72.3438837993863],[-111.179047711194,72.4185565326951],[-111.129518714324,72.46178389636799],[-111.09583625770598,72.4743522319829],[-110.944143295833,72.4917396276851],[-110.834701184009,72.5690488971923],[-110.749073175246,72.5759816613096],[-110.674578980904,72.5624610597777],[-110.652910054795,72.5398040235685],[-110.675260469015,72.4989646700991],[-110.640754730891,72.46271646501938],[-110.589567723384,72.4570833819472],[-110.494424925292,72.4695910029767],[-110.541539991045,72.5194649973053],[-110.47885524579499,72.5342223281108],[-110.390479268131,72.5217426688262],[-110.295311993235,72.4854097296304],[-110.18467504904699,72.4648953839672],[-110.119403905041,72.4602709334155],[-110.080890576013,72.4681463901345],[-110.08334266592398,72.4874283885143],[-110.266342183731,72.536414398222],[-110.269006777684,72.5556959118285],[-110.16473319858699,72.5589888736698],[-110.00220045135721,72.51761094178462],[-110.00034515072802,72.5171386154112],[-110.00030951473062,72.33408837538467],[-110.00014635891701,71.49601134621064],[-110.00001576536116,70.82519578096752],[-109.99985504150389,69.9996109008789],[-112,69.99999999999999],[-112.13993835449219,69.90542602539062],[-112.14766693115234,69.90266418457031],[-112.15667724609375,69.90040588378906],[-112.16668701171875,69.89871978759764],[-112.1773910522461,69.89765167236328],[-112.1884765625,69.89724731445312],[-112.19771575927734,69.89741516113281],[-112.27468872070311,69.89789581298828],[-112.28072357177734,69.89804077148438],[-112.28675079345703,69.89783477783203],[-112.29257202148438,69.89726257324219],[-112.29801940917969,69.89635467529297],[-112.30292510986328,69.89513397216797],[-112.30713653564452,69.89364624023438],[-112.31053924560547,69.89192199707031],[-112.3130111694336,69.89002227783203],[-112.31449127197264,69.88800048828125],[-112.31491088867188,69.88652038574217],[-112.32986450195312,69.8474655151367],[-112.33428192138672,69.84512329101562],[-112.33980560302734,69.84307861328125],[-112.34628295898438,69.84139251708984],[-112.35350036621094,69.84012603759766],[-112.36125183105467,69.83930969238281],[-112.36929321289062,69.83896636962889],[-112.37738800048827,69.839111328125],[-112.37825775146484,69.83915710449219],[-112.82373046875,69.84767150878906],[-112.83273315429688,69.84812927246094],[-112.84137725830077,69.84911346435547],[-112.8493881225586,69.85060119628906],[-112.85652923583984,69.85254669189453],[-112.86258697509766,69.85488891601561],[-112.86737823486328,69.85755920410155],[-112.87074279785156,69.8604736328125],[-112.87259674072264,69.86354064941405],[-112.87266540527342,69.86376190185547],[-112.87507629394531,70.00029754638672],[-113.00000762939453,70.00000762939453],[-116.00000000000001,70.00000762939453],[-116.7560806274414,70.00050354003906],[-116.75389099121094,69.71833801269531],[-116.37799072265625,69.62849426269531],[-116.3565902709961,69.62568664550781],[-116.33691406250001,69.62162780761719],[-116.31956481933594,69.61643981933592],[-116.3050765991211,69.61028289794922],[-116.29388427734374,69.60333251953125],[-116.28632354736328,69.59581756591797],[-116.28262329101562,69.58795166015624],[-116.2828903198242,69.57998657226562],[-116.28711700439452,69.57215881347655],[-116.295166015625,69.564697265625],[-116.30679321289061,69.55784606933594],[-116.32164001464842,69.55180358886717],[-116.33885192871092,69.54684448242188],[-116.44406127929688,69.5389175415039]]],[[[-114.02790145737798,77.7304187414787],[-114.183696318371,77.7191920047978],[-114.323249387758,77.7241926685496],[-114.633596078656,77.7772166870425],[-115.010888013554,77.8910043724002],[-115.099162952715,77.9402007703554],[-115.060601085833,77.96843102916668],[-114.96618482430699,77.9906327730207],[-114.716559805456,78.0139948908074],[-114.53348786651898,78.0626597679828],[-114.43369827445699,78.0698104866523],[-114.377964782993,78.0636777277312],[-114.17397862027,77.9721322420713],[-113.830307385399,77.900606163613],[-113.682634671786,77.8253794342334],[-113.784479118822,77.7678959873573],[-114.02790145737798,77.7304187414787]]],[[[-113.834180136176,77.1257595086234],[-113.890108428058,77.1216099858892],[-113.967398442216,77.130933617607],[-114.003163358293,77.1534049026915],[-113.980136043327,77.1651753939482],[-113.886648970314,77.1721134391055],[-113.809173590863,77.16276815298248],[-113.780790743718,77.1447716211624],[-113.834180136176,77.1257595086234]]],[[[-113.451192490722,77.0844972811586],[-113.507063883165,77.08042195065148],[-113.583841231854,77.0898478955263],[-113.61884297947599,77.1123662295953],[-113.595546628632,77.1241059504869],[-113.50215354273399,77.13091986291639],[-113.425194957159,77.1214720737247],[-113.397423132772,77.103438302056],[-113.451192490722,77.0844972811586]]],[[[-122.845768312464,76.05796621932389],[-122.955147102572,76.0609406555874],[-122.98725612232,76.0942720920253],[-122.82337990971399,76.1135990335449],[-122.730053859256,76.1086507808514],[-122.733245253096,76.0817981691815],[-122.845768312464,76.05796621932389]]],[[[-113.752738473955,76.7153432137057],[-114.104545121888,76.73362713525],[-114.30646255865199,76.7330657389124],[-114.543859821226,76.7547444213449],[-114.72801210331001,76.755304648102],[-114.85436419617199,76.7704586853215],[-114.93406908250599,76.8195965516797],[-114.94145910872,76.8492901887181],[-114.91968665416,76.8611223821563],[-114.737597970484,76.8755415641981],[-114.515344396827,76.8778404381344],[-113.995845106958,76.91272447901419],[-113.804653658803,76.8819625420792],[-113.73789083327098,76.8518581664834],[-113.543527055868,76.8312889458417],[-113.495854613376,76.799770275813],[-113.55761783086399,76.7601008210747],[-113.752738473955,76.7153432137057]]],[[[-122.373937610387,75.8860341894236],[-122.447756461908,75.8826585948298],[-122.507124807717,75.89152629183438],[-122.581092728886,75.9356634332007],[-122.50704169688498,75.9390774686905],[-122.37901065788,75.9171038921513],[-122.34315297313202,75.9001858409662],[-122.373937610387,75.8860341894236]]],[[[-121.18899845085602,75.7385082557509],[-121.295595799808,75.7421669145342],[-121.346968002635,75.7677537982253],[-121.31636233553098,75.7921485318433],[-121.05817638639,75.8524617226619],[-121.02995708679299,75.9183026888365],[-120.964269913792,75.9255665185588],[-120.91428534515602,75.92063327551908],[-120.853307557328,75.8699352844377],[-120.90049779807,75.833409311673],[-121.044448035979,75.77562718467809],[-121.18899845085602,75.7385082557509]]],[[[-119.81376280551402,77.0844884604478],[-119.48223545896498,77.1724807626999],[-119.445246717817,77.23838437252509],[-119.24307142550501,77.3302497643232],[-119.12330810719898,77.3570367551221],[-118.85661766684399,77.3765835144541],[-118.14309424847399,77.35868802731099],[-117.91607545699799,77.342842133877],[-117.669610879101,77.3388548344883],[-117.58853853228199,77.3305411700577],[-117.51082665450599,77.3013859736698],[-117.31246654183101,77.2878524219075],[-117.209720012053,77.3018501580748],[-117.19577418286902,77.328668143575],[-117.12145984858599,77.3350382924161],[-116.96845193333698,77.3224968253839],[-116.862960877948,77.3467847024759],[-116.840029320041,77.3691758073453],[-116.88967965286601,77.3956767025598],[-117.187281329406,77.42676063685228],[-117.229429608629,77.4487955898545],[-117.208836623388,77.46080491853019],[-117.02950933946799,77.4811324214975],[-116.91244874409398,77.5114499837969],[-116.859970896996,77.5414249725297],[-116.68964785976,77.5555620484537],[-116.553388778902,77.54124109488879],[-116.449523639432,77.5089184343885],[-116.17342471222099,77.46515138253679],[-116.09017588776699,77.3955169581252],[-115.84147327513,77.364757076979],[-115.756580307577,77.34108795769768],[-115.736003442076,77.3173424823809],[-115.790219647565,77.28758139915278],[-116.062611908321,77.1891351931305],[-116.176242636222,77.1695794209466],[-116.50798506186001,77.1418590066539],[-116.58059422506601,77.10002578936198],[-116.527213281969,77.0586620853926],[-116.45104830475101,77.039632368046],[-115.94333327524498,76.96520525040968],[-115.886747057189,76.9445148579421],[-116.01404999177899,76.9339210036739],[-116.30451558715501,76.98072451679],[-116.41366044696699,76.9714884097327],[-116.434306240083,76.9595491070639],[-116.38200994878602,76.9181683020394],[-116.29653997631499,76.9050682507925],[-116.159912744151,76.8505243599676],[-116.17589884651899,76.78818035711389],[-116.14305799059699,76.7452422039088],[-116.171622629372,76.7021639041961],[-116.26103790834799,76.658931066489],[-116.43610066337799,76.6183746349868],[-116.944471201469,76.5940018499804],[-117.169543901587,76.5482845262608],[-117.21035537602198,76.51394449623439],[-117.15964827221899,76.4164210162101],[-117.209810062853,76.3761073864641],[-117.278869464832,76.3238153264712],[-117.427027952695,76.3101273428033],[-117.503270031861,76.3030433008754],[-117.66292127742402,76.3137110394125],[-117.911250412418,76.3620691870686],[-118.113156611372,76.383974104828],[-118.17741165648698,76.4189421694561],[-117.96168415118599,76.7011659372034],[-117.88408295404102,76.759683103541],[-117.925065174654,76.7815880021449],[-118.00305445714298,76.7898117248686],[-118.218294077375,76.7492582939816],[-118.32334944821399,76.74971488018548],[-118.43579173096398,76.7648920225374],[-118.506528566412,76.7582165432732],[-118.519469755322,76.7106002934631],[-118.57404632415398,76.684790870251],[-118.435850703932,76.5794612564309],[-118.473668909802,76.5449544194359],[-118.597255536163,76.5124755461181],[-118.793399777401,76.5399061261375],[-118.93228517141999,76.526376902103],[-118.95921990918498,76.5082485951764],[-118.824836135698,76.4594508451691],[-118.685700925944,76.3750707875063],[-118.715970495043,76.3154267171182],[-118.78749976483398,76.2671588145039],[-118.95983304890599,76.219115158564],[-118.969949729894,76.19231254059429],[-118.915108840562,76.130751575114],[-118.958991956325,76.1005713739235],[-119.010154743841,76.0851075557948],[-119.135421805467,76.0879300257992],[-119.30167247517998,76.1123620677717],[-119.375310914402,76.16173139732878],[-119.38108724813799,76.2387376274421],[-119.55686571063299,76.3192591576403],[-119.59018826119699,76.3573325589727],[-119.66690556600399,76.3547126299633],[-119.718622306685,76.2871874835909],[-119.60976082550198,76.21023085795909],[-119.70284081076,76.1851074334525],[-119.66989117525799,76.1366822821188],[-119.770771382791,76.11586221073098],[-119.712509606384,76.0856310906444],[-119.60410625863601,76.0709655697614],[-119.521733836205,76.0277211975633],[-119.55592555040599,75.993134539866],[-119.714452890187,75.9507286048111],[-119.856103504251,75.83737308462479],[-119.963020317685,75.8311945475141],[-120.086428190675,75.84395692785299],[-120.144256543973,75.8637207789232],[-120.25936533936901,75.8513544119635],[-120.316492234863,75.8295981025354],[-120.439875745696,75.8318231394889],[-120.532114084865,75.8790485009738],[-120.46852399149799,75.9484167558129],[-120.706349025247,76.05818127457938],[-120.70975290069002,76.120425581201],[-120.822327434278,76.1761389346661],[-120.924805800149,76.1963989967433],[-120.982948327894,76.184856702879],[-121.01235887352999,76.1293509306077],[-120.99261412272499,76.0896798494584],[-120.89669314106399,76.0322371776748],[-120.910474394898,75.98894326324029],[-120.967850343289,75.9774116204883],[-121.11938697686799,76.002517950035],[-121.257135188992,75.9610616566378],[-121.364369676223,75.9543164318059],[-121.43976554796399,75.9615826510648],[-121.492256001382,75.9871478325523],[-121.67131624640899,76.0247158172164],[-121.749826991963,76.0526258096104],[-121.860256878992,76.0664104289591],[-121.959036466513,76.0551749547838],[-122.216908871714,75.993967477428],[-122.396562748153,75.9731168399223],[-122.555919295377,75.9809079986962],[-122.66129937097402,76.0108480625567],[-122.529039579338,76.1109283463982],[-122.62280646174298,76.16351811193269],[-122.60291655532299,76.1922916375187],[-122.632612492093,76.21531714748289],[-122.77412060034699,76.204163263813],[-122.86885957152799,76.171876458156],[-122.991132641285,76.15218736452489],[-123.063593688213,76.1754883731667],[-123.042305491279,76.1939345841454],[-122.50672611911,76.4044956517101],[-121.92787547003398,76.48542444532849],[-121.45263005273,76.6163843994142],[-121.22079836061899,76.72526132498798],[-120.883721847317,76.7764776250081],[-120.482047098903,76.8180035152119],[-120.204689368398,76.9401212302772],[-120.010729009627,77.0012032463804],[-119.91361696267,77.0577024127901],[-119.81376280551402,77.0844884604478]]],[[[-118.51393063875,75.5284167223965],[-118.691863403953,75.5204643575047],[-118.795294824593,75.5355011564853],[-118.92065112145399,75.5842576688968],[-119.29144283605301,75.6074368828784],[-119.34584090458098,75.6584810669377],[-119.14611949955999,75.7411851699769],[-119.000520572889,75.843782303205],[-118.890182020738,75.8910783175252],[-118.61211692162199,75.95509012631669],[-118.52548075777999,75.9945621065228],[-118.35752521643,76.011163510297],[-118.23736559219799,76.0434801512582],[-118.10234688907302,76.0566302520816],[-117.88448618675199,76.1237563629732],[-117.782476556448,76.1334977867974],[-117.64334934571,76.1109042978967],[-117.617461717753,76.0622296933193],[-117.766674376289,75.9559202461832],[-117.82752430798499,75.8784342419147],[-118.057991057442,75.7535388962118],[-118.21927437760698,75.63508377289538],[-118.51393063875,75.5284167223965]]],[[[-110.587120325337,72.6353852854019],[-110.502762626527,72.6387459752512],[-110.46020646827,72.6286135007441],[-110.445936431315,72.6117735532621],[-110.460383343536,72.597702913425],[-110.49352467529998,72.5835199839162],[-110.56319326599899,72.5858056696604],[-110.598878907728,72.6011506695294],[-110.593850576841,72.62171611248779],[-110.587120325337,72.6353852854019]]],[[[-124.398893552887,73.8620866780198],[-124.50846424592099,73.8625159811112],[-124.54987710327099,73.8832224058632],[-124.57387952563398,73.9223675206348],[-124.533822039298,73.938678095762],[-124.46633515607098,73.9322629960039],[-124.369381925872,73.8928047917945],[-124.398893552887,73.8620866780198]]],[[[-124.579915782905,73.67161900692389],[-124.63576775033,73.66358776803278],[-124.702249196569,73.6699618187799],[-124.73513341189398,73.6864948634096],[-124.723655931497,73.6987914430165],[-124.667733822183,73.7068447612928],[-124.601124203448,73.7004635954303],[-124.579915782905,73.67161900692389]]],[[[-124.34604698470501,73.6254658296701],[-124.185327330037,73.5794632787036],[-124.21105600298698,73.5652108065574],[-124.358249680113,73.5494854521182],[-124.40219359625502,73.5537913890781],[-124.436816479446,73.5806504599521],[-124.387911184694,73.61948608998858],[-124.34604698470501,73.6254658296701]]],[[[-119.63100740244998,74.00506209880568],[-119.586238068832,74.0205336485376],[-119.685798773501,74.0912002993295],[-119.51829553032,74.1927354684885],[-119.413824274923,74.2046760985613],[-119.17828221097498,74.18011599234768],[-119.072390034658,74.1152260611331],[-119.190493127495,74.0147489454067],[-119.133710779499,73.9904910286189],[-119.06063491952901,73.9885646735387],[-119.00843598252601,73.9996028228807],[-118.953442317894,74.0416332776085],[-118.823770003183,74.0919956686907],[-118.81385109319399,74.1186682185383],[-118.86779421687301,74.1740198068055],[-118.744960463964,74.218356841653],[-118.496329990299,74.2508286823667],[-118.17116678317299,74.2351533918798],[-117.88728452058798,74.24522856573319],[-117.71744730506899,74.2378387476035],[-117.54284751486901,74.2156175491811],[-117.379085253523,74.176980416283],[-116.92042230327898,73.9968839564727],[-116.753980302733,73.9534349284787],[-116.477113953201,73.8557119677819],[-116.04819232195598,73.7431891409176],[-115.862511424099,73.6814706701555],[-115.63079493610202,73.58422979742],[-115.56594391238399,73.53557477340229],[-115.683115544483,73.4487492516579],[-115.968205725778,73.364756784663],[-116.61990989803398,73.29707978405],[-116.78072844470499,73.2699539954572],[-117.225427484583,73.1513782601481],[-117.391681743785,73.0826133977533],[-117.71936686779001,73.0359848476532],[-118.01871923758199,72.93621769942949],[-118.412175753582,72.8806053603075],[-118.66151750390799,72.8055672299156],[-119.038562731258,72.7299518875205],[-119.10943096086498,72.7009984696962],[-119.212053358751,72.6171481374137],[-119.236599415938,72.5682660715104],[-119.404519508111,72.40985847650458],[-119.51580088237698,72.35514995782438],[-119.66546060167198,72.3158955639772],[-119.89779045161399,72.2147993055186],[-119.93788246497,72.20965656177059],[-120.06995553629301,72.2233418446829],[-120.161736300615,72.2524370350032],[-120.30080429997899,72.2702666271086],[-120.380983677743,72.2598213994414],[-120.402021441521,72.221174564914],[-120.29812051458198,72.1527478994574],[-120.359702917082,72.08831479441818],[-120.41972162294,72.0650400279277],[-120.521244409754,71.9541904792971],[-120.53697610662199,71.8495639643699],[-120.48160707793198,71.7391363482797],[-120.49768584357598,71.6345537155644],[-120.537373375351,71.59847151442558],[-120.641328887169,71.553634079304],[-120.847630826031,71.4843922960846],[-121.154540676272,71.41102168498459],[-121.46602481877,71.36202534349728],[-121.56141642088699,71.36392003203],[-121.66354420329299,71.3802727033024],[-121.74168355518398,71.4412995991567],[-121.78013535697002,71.4461212055051],[-121.89445379150199,71.429723509351],[-121.97015167638098,71.4084886634071],[-122.08785537788,71.3345929704961],[-122.255556596036,71.2635454636626],[-122.65493549396899,71.18361389772339],[-122.72900695704,71.1621329196653],[-122.837823125618,71.1042228269755],[-123.1580745514,71.1022563775117],[-123.298359798982,71.1223674032375],[-123.56698540296502,71.2686718830605],[-123.65169262417099,71.3391538603895],[-123.66929197617999,71.3782433508913],[-123.94063395184601,71.5404169478921],[-124.24438310035399,71.6716897731862],[-124.519835360234,71.7286096984428],[-124.76293259687898,71.8116478724198],[-125.087499697982,71.8659379310903],[-125.157365668694,71.8865756102661],[-125.264011208443,71.9543460647577],[-125.58524682498899,71.9771313724008],[-125.9121160963,71.9666682528584],[-125.97298776339998,71.97271357079329],[-125.995946489244,71.98495493252469],[-125.965923138366,72.0218577633165],[-125.88979847232399,72.0342591143656],[-125.82382082734898,72.0609572218654],[-125.823951153867,72.087576105799],[-125.87266466885299,72.1223268147693],[-125.844715572907,72.1428391168597],[-125.76806015862299,72.1552085594112],[-125.69642753106699,72.1880272997098],[-125.701631922465,72.2617611696801],[-125.534246631873,72.2884347888744],[-125.49804405302399,72.3048152514336],[-125.29942590257198,72.4583655161156],[-125.24197316672898,72.4726421719794],[-125.157694271287,72.5176073562997],[-125.042160902645,72.5460815312674],[-125.01282748069798,72.5665182060466],[-125.09728901715,72.6384608054359],[-125.043163106783,72.6998696481355],[-125.06763769425399,72.7758021859675],[-125.209247953967,72.8498696794558],[-125.203447195596,72.8826799938395],[-125.16345667277199,72.8887798037084],[-124.99366021841098,72.8720560453626],[-124.890029904049,72.8718008148885],[-124.61684364789201,72.9180975490353],[-124.521529405644,72.9587556920679],[-124.56274203001,72.9897132522645],[-124.69058517223398,73.0025104901953],[-124.786118200157,73.0253981659053],[-124.851751064767,73.0686859245455],[-124.62991248281999,73.2342646122025],[-124.57760210495901,73.2525501531721],[-124.460489212702,73.4287119812865],[-124.33473722260099,73.4733510168339],[-124.16248801018298,73.5033013135532],[-124.04350534298099,73.5519541023095],[-124.104075499651,73.6386317663659],[-124.06833947073999,73.6754331169893],[-123.883670917506,73.7277706655851],[-123.861461233907,73.7625852114308],[-123.88363678590099,73.80180230749309],[-123.97073985772398,73.8373018636747],[-124.13729050397698,73.8670265375649],[-124.32664670778098,73.96253391530398],[-124.51551600992,74.2286039528044],[-124.55798432774499,74.2493164402585],[-124.63535674133199,74.2598387982763],[-124.68662633717199,74.2846676340476],[-124.703236867257,74.31968455283489],[-124.833078304031,74.3282122498452],[-124.87624657493498,74.3488695598644],[-124.51319235517599,74.3993736222661],[-124.21522505092499,74.3817411028879],[-123.734184281589,74.4202652499746],[-123.342199610549,74.4194691793271],[-122.95524026948098,74.4490022371512],[-122.33881958861,74.4649599148873],[-122.16023224185501,74.4874756509368],[-121.942289886056,74.4990205193592],[-121.700306100793,74.497639476821],[-121.293378332214,74.5160886007707],[-121.125947082569,74.4946999521749],[-121.019007368514,74.4659920150451],[-120.93475448689799,74.4293747743804],[-120.50491920876799,74.299312639598],[-120.296200469377,74.26198079437299],[-120.073366185929,74.2365471787776],[-119.835649862857,74.2333111966743],[-119.739631942187,74.2186842877212],[-119.711503979421,74.1807806618107],[-119.786666687804,74.151494476473],[-119.833032024488,74.0946433098819],[-119.790198555049,74.05848280125109],[-119.67474906244999,74.0102474649164],[-119.63100740244998,74.00506209880568]]],[[[-135.651477308468,69.54929687559948],[-135.711750070771,69.5400714998862],[-135.745439002755,69.5547285995583],[-135.735719469801,69.5859542431135],[-135.669449674287,69.6139247321143],[-135.61490664941599,69.6044076022942],[-135.651477308468,69.54929687559948]]],[[[-134.928573014118,69.67475750282749],[-134.960093674842,69.6671342166596],[-135.035489938315,69.6717530765476],[-135.060574621919,69.68284085141079],[-135.054173038889,69.7015692478938],[-135.022636915641,69.7092062203937],[-134.957628718019,69.7020428434449],[-134.924229909589,69.6872403528186],[-134.928573014118,69.67475750282749]]],[[[-135.78836805356198,69.4765197468214],[-135.765319516154,69.4551578938856],[-135.785386174864,69.4431712418382],[-135.816055015082,69.4424772147321],[-135.88330917945,69.4469891927595],[-135.932850621513,69.4613303224434],[-135.938985458019,69.4736933260445],[-135.896603185005,69.48282728280908],[-135.78836805356198,69.4765197468214]]],[[[-135.468275237584,69.4941329350763],[-135.420570240419,69.4891192510894],[-135.40089690569496,69.4766972400261],[-135.421149808292,69.4615177092807],[-135.49051461026,69.4511208275325],[-135.510551544856,69.4594103980231],[-135.505450401409,69.4848501203774],[-135.468275237584,69.4941329350763]]],[[[-135.641677496265,69.4354116836475],[-135.605871803837,69.4429360841812],[-135.568626789486,69.4394617635435],[-135.555821162051,69.4270703206948],[-135.54646242593,69.4130726316316],[-135.55204752239,69.3996432025869],[-135.587984571703,69.3961307910957],[-135.638721910465,69.4102002923014],[-135.648140332114,69.4241917513849],[-135.641677496265,69.4354116836475]]],[[[-135.182710577699,69.4641202526612],[-135.176397608553,69.4828421432744],[-135.10353389823197,69.50068579420929],[-135.02871723577599,69.4960859700356],[-135.003900570279,69.4849929136255],[-134.900059932929,69.48172357062379],[-134.856663117992,69.4694417155855],[-134.66418316737997,69.44768402381729],[-134.564217543443,69.4604185686204],[-134.552825075336,69.4916040063158],[-134.664072952445,69.5274426849331],[-134.644587594291,69.5549196096405],[-134.55377350232,69.5938053978321],[-134.567131849639,69.636151711355],[-134.649872845203,69.67331578741369],[-134.592613708184,69.69841253608288],[-134.536081218008,69.6948211637592],[-134.358242537825,69.6290977031651],[-134.349969367282,69.5742561818344],[-134.276363746745,69.5406879333742],[-134.145611049178,69.5320453857462],[-134.086311122175,69.5121057551039],[-134.030375414994,69.5083568983732],[-133.903806743418,69.53819996307648],[-133.866497477993,69.535667347672],[-133.836637480347,69.5144298659632],[-133.957815015748,69.4010975827546],[-134.211997301459,69.2839685587494],[-134.32114359406597,69.1954130915197],[-134.396016031235,69.1716531146541],[-134.49259341194,69.11419009595929],[-134.711075246731,69.0551208863353],[-134.775765481246,69.00510240412379],[-134.823650811396,69.0018265097615],[-134.943946141888,69.0318677955466],[-134.998850538687,69.0353637506436],[-135.049996674727,69.0226755725429],[-134.978083533059,68.9607469747818],[-135.021656545841,68.91573361977],[-135.082721251366,68.9005065920766],[-135.248699241605,68.9046005981746],[-135.33171991857998,68.9065910831397],[-135.445093738501,68.9295010236667],[-135.528233399222,68.9314020771918],[-135.640167688734,68.9890507194883],[-135.89285126620996,69.0167461605828],[-136.072424061022,69.1033585832582],[-136.149966560032,69.1744941444837],[-136.169400891809,69.1889294210821],[-136.17704826931,69.2024494710097],[-136.139854855229,69.2096257691892],[-136.095139884841,69.20665160904029],[-136.006611456008,69.1662622954218],[-135.940997843029,69.165660505856],[-135.941690878069,69.1942850005366],[-136.010885135036,69.2458941648857],[-136.003371183031,69.2708690633515],[-135.950332373558,69.290067547313],[-135.849125658891,69.2810612507987],[-135.813126713719,69.2541226836746],[-135.694764371329,69.29113095892569],[-135.620514730345,69.286753489065],[-135.488476404478,69.25662697593019],[-135.356803260892,69.2550435867138],[-135.32179588790297,69.2751935067073],[-135.348561551299,69.3086489655643],[-135.420885965522,69.3480162584426],[-135.441841341425,69.4001809110342],[-135.238766554124,69.4675275813613],[-135.182710577699,69.4641202526612]]],[[[-136.39299889983496,69.1506258104925],[-136.350866793352,69.15991675192],[-136.324896373972,69.1567731537188],[-136.277995553696,69.1262340953595],[-136.340805489933,69.1188000245814],[-136.39299889983496,69.1506258104925]]],[[[-135.50113741263098,69.305101420596],[-135.5548423302,69.3146628368595],[-135.612925141596,69.3403619143329],[-135.56973463371497,69.3568891047017],[-135.4662009749,69.3252804347429],[-135.47228044481798,69.3065553074075],[-135.50113741263098,69.305101420596]]],[[[-136.358407713154,69.0633419700006],[-136.399751766605,69.0687192500105],[-136.422286124257,69.07693265437078],[-136.444639527292,69.0894631595385],[-136.449099030209,69.1003453340818],[-136.41928019844,69.1075533803389],[-136.383370947654,69.111952327003],[-136.327224614825,69.08708030619519],[-136.319915693445,69.0726306411716],[-136.358407713154,69.0633419700006]]],[[[-133.94833032071696,69.5955972302192],[-134.032903434117,69.5756859558956],[-134.10772514378397,69.5806771659335],[-134.132197631369,69.5918935663741],[-134.12740104132496,69.6043631801756],[-134.085121295644,69.6143461623912],[-133.980880501138,69.6105814437357],[-133.94833032071696,69.5955972302192]]],[[[-136.244626764243,69.0472688704366],[-136.205845752403,69.02508481605598],[-136.21177813417998,69.0134326492515],[-136.240705421392,69.004758628255],[-136.286238856504,69.0082640763145],[-136.30914513761,69.0189317552942],[-136.310276729906,69.0382767790404],[-136.244626764243,69.0472688704366]]],[[[-128.515470744016,70.5576123585233],[-128.545647320084,70.5735242299662],[-128.498662748174,70.5986567167933],[-128.485318685735,70.649863157617],[-128.450377526527,70.6564556991767],[-128.39274015394096,70.6510916789707],[-128.33993248813,70.6231968725071],[-128.36046831835696,70.59231810216049],[-128.461546676545,70.5624203249443],[-128.515470744016,70.5576123585233]]],[[[-136.159351965425,68.96747871098],[-136.169183836705,68.9513042488315],[-136.212594793064,68.9416852550267],[-136.239376102702,68.9420291309951],[-136.278162565838,68.9590687200333],[-136.272984212609,68.9799223207078],[-136.243256110562,68.9870992111179],[-136.205823617809,68.98845807746089],[-136.159351965425,68.96747871098]]],[[[-136.006937693861,68.9851821981581],[-136.041775518691,68.9750272636692],[-136.0914779515,68.9759588920003],[-136.135017290373,68.9952813625768],[-136.138188244245,69.0089917709171],[-136.127779934272,69.0174511456794],[-136.08401547084,69.0202935818318],[-136.035558088068,69.0097878205],[-136.006937693861,68.9851821981581]]],[[[-133.583677652788,69.4777557801929],[-133.676624688768,69.4842189363882],[-133.666514731496,69.5091388612007],[-133.624203478994,69.5190168610495],[-133.568351893191,69.5151306479154],[-133.544278518375,69.5038375036115],[-133.583677652788,69.4777557801929]]],[[[-136.202736999603,68.9159654874208],[-136.14208115703,68.926345139169],[-136.114124941431,68.9254232029806],[-136.081764329137,68.9213047844818],[-136.044929174166,68.9106060326458],[-136.02421508980697,68.89858761874218],[-136.020632716499,68.8790535310848],[-136.049930338486,68.8728544692457],[-136.111945588966,68.8732109180489],[-136.202736999603,68.9159654874208]]],[[[-135.842285439467,68.9089338025783],[-135.857132703551,68.9511110176338],[-135.79837948746,68.9603480045457],[-135.706931352481,68.954904141901],[-135.67432705373997,68.9402347307662],[-135.712582266528,68.9075640071088],[-135.74289444213,68.8998430482593],[-135.842285439467,68.9089338025783]]],[[[-136.062768451961,68.9380489970446],[-136.011588215194,68.9483630074319],[-135.963105757448,68.9455390731895],[-135.915068333797,68.9239150401012],[-135.868377588024,68.9062258293051],[-135.831155104078,68.8862777754597],[-135.85135007161,68.8712691173686],[-135.88078264714898,68.87185836510409],[-135.914655805853,68.8790205542924],[-135.962508279112,68.89726314228268],[-136.00575394805497,68.9166187618074],[-136.038256908143,68.9275129539404],[-136.062768451961,68.9380489970446]]],[[[-109.99978160181787,74.88227364471255],[-110.088838748091,74.8804126785179],[-110.211013437791,74.84743731637649],[-110.30867752991098,74.8406190238168],[-110.426187844713,74.8519869953359],[-110.616278135156,74.83359553855739],[-110.714742321844,74.81180780491539],[-110.770444188393,74.7832296644666],[-110.76133644344698,74.7593182707327],[-110.86516266246099,74.72721519555138],[-111.20442132760098,74.6727111687181],[-111.589908227369,74.5845024202982],[-112.019018737994,74.5216108688016],[-112.239979760274,74.4744681062079],[-113.052864137468,74.4179301586439],[-113.53324005529,74.4418064633312],[-113.784302494799,74.4748941975671],[-114.087342984195,74.5331670739991],[-114.242878557343,74.5843420278742],[-114.51211873647098,74.6403972743386],[-114.544838910492,74.6774789020902],[-114.466853694989,74.7243923027656],[-114.171616147414,74.7952224184687],[-113.884266445495,74.81996858417378],[-113.65263282624,74.8197129700271],[-113.412258576609,74.8398711132141],[-113.345013197094,74.8703264735149],[-113.34335535016999,74.9102498899302],[-113.302172766889,74.9335412230242],[-113.157989912726,74.9602787773177],[-112.563097832468,75.01298216339049],[-112.275621917976,75.055264681717],[-112.1882839737,75.05706401288148],[-111.904120985253,75.0293611323931],[-111.822347083637,75.03555949569629],[-111.69648980570399,75.0944193715937],[-111.477301386129,75.1057826907099],[-111.438666503844,75.118499348128],[-111.454493754328,75.1469343019976],[-111.20394095092,75.2391718029844],[-111.247404771582,75.260683212411],[-111.37424199795899,75.2761495667635],[-111.50730694377698,75.2664322019076],[-111.673715039254,75.2097108939492],[-112.213311295745,75.1788868104081],[-112.39385624150098,75.150109946436],[-112.471592256718,75.1688531740286],[-112.440541307402,75.2158749372558],[-112.48631539837899,75.2519907762895],[-112.54165525268398,75.2526560677931],[-112.578952684055,75.2249516173337],[-112.67212337458,75.2127056968627],[-112.71664428732798,75.2191346366329],[-112.757255945386,75.250692566677],[-112.74747867800798,75.27131953036118],[-112.821430352597,75.3002718216418],[-112.865228283312,75.2918545390085],[-112.854238537145,75.21324497581288],[-112.975534046152,75.1390099465226],[-113.051546477473,75.1279419466216],[-113.156819257345,75.1393395014153],[-113.23860982083,75.1327147792645],[-113.301173222548,75.0977717279632],[-113.724351465837,75.0628120800855],[-113.93725125329799,75.0598801203838],[-114.004166723343,75.0691895016457],[-114.040798247633,75.0960427622209],[-113.806217001887,75.1906386340534],[-113.830611821658,75.2085658929399],[-113.914499094059,75.2165327156203],[-113.961680951092,75.2775043594439],[-113.83377519794098,75.3580523674256],[-113.60554434318,75.4067254981027],[-113.482041976969,75.4516492187771],[-113.53988871525898,75.4669201344229],[-113.623236297903,75.4601614689634],[-113.785778258362,75.4169284756771],[-113.935084855026,75.4046066009416],[-114.082379287799,75.41735231782648],[-114.151635486037,75.4665886107659],[-114.197535513342,75.4727584701161],[-114.24740472361098,75.4685827996212],[-114.27818641141,75.4509798235158],[-114.214957048274,75.30119603223228],[-114.27205837119,75.2763484493933],[-114.337692183594,75.270763441491],[-114.451224841062,75.2860939127484],[-114.522082258854,75.3100733176283],[-114.711035036119,75.3389045340928],[-114.803191555223,75.3258988116997],[-114.77103467329398,75.30360819144208],[-114.566020045595,75.2762323455551],[-114.470020252372,75.23440732432849],[-114.392219989511,75.1660139852386],[-114.459844734914,75.1101356209868],[-114.554582905174,75.08689490968],[-114.877965833813,75.0584923776729],[-115.01713301167798,75.0160047550907],[-115.19391756675499,75.0001220098562],[-115.254900036175,75.0046540204751],[-115.31283015928899,75.0446360800883],[-115.241985523224,75.1213929896976],[-115.326430351228,75.1791582070174],[-115.371935665542,75.1851195028132],[-115.453030520906,75.1777970211442],[-115.491593780981,75.1541703986958],[-115.56590334869898,75.142375464313],[-115.660569686141,75.168986943849],[-115.75762057549,75.1600893783614],[-115.60906298073601,75.0477988779162],[-115.66970630249,75.0271125516061],[-115.81769052421599,75.0285307475467],[-115.944153147928,75.0520519845561],[-116.20345149127598,75.0782065522954],[-116.291175237667,75.1356267228433],[-116.366617071392,75.1487218918758],[-116.414331205982,75.1796136768597],[-116.362780459937,75.2300161855574],[-116.4088455387,75.2357935875444],[-116.522056712364,75.2250789887454],[-116.72257331055499,75.17553414997849],[-117.48296023908901,75.2435991706833],[-117.551058902993,75.26231405951458],[-117.63772556776098,75.3148700312898],[-117.620540106522,75.372663242178],[-117.62119867935598,75.4184939374542],[-117.46600017409598,75.4847104966177],[-117.347879738957,75.5165795365969],[-117.183883529276,75.5324098577358],[-116.379013164117,75.527154131791],[-116.074793987642,75.5500665934045],[-115.9229985847,75.5739658100767],[-115.78844132351298,75.6214394918628],[-115.511851404112,75.6510945472404],[-115.44555579230199,75.6821415563039],[-115.247925195107,75.7145220021957],[-115.258197311821,75.7337773797728],[-115.30539626347398,75.7397499950046],[-115.459746181606,75.7161859682647],[-115.64410063532199,75.69993169374959],[-115.86556215951799,75.6953506316714],[-116.01587878135999,75.6818328500587],[-116.161572756198,75.65344781863219],[-116.60031643246099,75.6181118208392],[-117.21932290437401,75.64609175452499],[-117.270585582007,75.6768381378723],[-117.266821682471,75.6975768958491],[-117.14227991965099,75.7959979312408],[-117.019137098103,75.8381304831551],[-116.925843698079,75.85193603274308],[-116.553267381998,75.8609597783934],[-116.250361528704,75.8530143703148],[-116.07458296420299,75.8637618825046],[-115.82514076810601,75.90112204252259],[-115.37227569566,75.895248312334],[-115.09331219766898,75.914148004909],[-115.086525712452,75.93486948226209],[-115.15821710107,75.9438721949065],[-115.31850195473199,75.9351827376271],[-115.52343266840198,75.9426957929624],[-115.973507364691,75.9335105348379],[-116.227660803373,75.9107992611091],[-116.543756659887,75.90243816878889],[-116.83833414649798,75.9160115622461],[-116.921527208567,75.95409514819418],[-116.883441066708,75.9779711839339],[-116.69701198344198,75.99510523041438],[-116.573440033557,76.02668815480159],[-116.71352249533,76.1105351125319],[-116.645593620105,76.1522861640549],[-116.58436713739901,76.1628928495888],[-116.10494172454102,76.1953973599701],[-116.033151056524,76.211830605213],[-115.86016213477099,76.2268980584016],[-115.13236615203199,76.1778774144136],[-114.94506575240598,76.1834556954575],[-114.93802049777901,76.20418536685],[-115.15355231580499,76.21643384898398],[-115.35592897378498,76.24479824084538],[-115.88338809724398,76.2653912841609],[-116.13736340966199,76.29903509925418],[-116.174172785532,76.3211775830594],[-116.03399260131499,76.36888617773869],[-115.982360008944,76.4341869025918],[-115.83605558598398,76.466998222939],[-115.46240472433098,76.5086801301204],[-115.29910408545601,76.5071161617252],[-115.17507231061899,76.5173696875684],[-115.06168818566398,76.5468644100011],[-114.91934620535,76.558461503672],[-114.46164905817399,76.5096472505342],[-114.35297162390499,76.478064152932],[-114.305998221248,76.4215028456642],[-114.336764856201,76.3637988646956],[-114.11912837647799,76.2456255966614],[-114.011582679313,76.2391178123361],[-113.867145284118,76.2605185660421],[-113.355218451722,76.28511304311378],[-113.03165530302,76.2497107801407],[-112.79762676779998,76.2073977039281],[-112.691021909133,76.2003722151634],[-112.631030963426,76.1848970086686],[-112.525306189431,76.0932079656525],[-112.27062046899898,76.0175170165757],[-111.99019090492,75.9634827048698],[-111.954870450525,75.9362893672852],[-112.006488314055,75.9176799535682],[-112.381144716743,75.90012195692698],[-112.356533785059,75.8671877127246],[-112.200954648221,75.8637929954767],[-112.010309494813,75.8331279286799],[-111.84393341292298,75.8501565121303],[-111.746166543954,75.8472924525885],[-111.642732516238,75.8250078689496],[-111.574455587757,75.7408479824221],[-111.55814541354398,75.6530159884797],[-111.513214611111,75.6167026182606],[-111.367025596713,75.572835719787],[-111.248678767473,75.56645368360378],[-111.073447354977,75.5738956559657],[-110.90808116241799,75.60516802409128],[-110.720568061488,75.6181161691751],[-110.27269848621,75.5648600184659],[-109.99914051233884,75.54871637955517],[-109.99978160181787,74.88227364471255]]],[[[-109.9988008147465,75.9018480403571],[-110.00988039023399,75.901629379726],[-110.04921286954199,75.91137179339229],[-110.018773681834,75.9256287238464],[-109.9987766991416,75.9269173484871],[-109.9988008147465,75.9018480403571]]],[[[-109.99844308671709,76.27372319046441],[-110.10283285551,76.2891505906082],[-110.19485016218599,76.31776105402],[-110.376934101445,76.3405873472143],[-110.484413571673,76.4125503392775],[-110.504745386843,76.460567300417],[-110.478768420336,76.48690286605088],[-110.374478457364,76.5132962533692],[-110.138327598963,76.5282109521584],[-110.027577506159,76.5499016449814],[-109.99816469732487,76.56312208713538],[-109.99844308671709,76.27372319046441]]]]}},{"type":"Feature","properties":{"NAME":"Nunavut","CODE":"CA13"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-92.1315632724091,62.31957632159919],[-92.14773417325148,62.284458110621394],[-92.1898458863952,62.2914677693946],[-92.2047287423714,62.308935955588595],[-92.18690006939738,62.324261691273996],[-92.1315632724091,62.31957632159919]]],[[[-92.3417613144814,62.16742529371269],[-92.3926295279243,62.146383523099196],[-92.4152526155287,62.149883178337895],[-92.4346110426628,62.1533264422034],[-92.4527108167951,62.17238341614381],[-92.4518259673362,62.1833146161147],[-92.4213521762023,62.1953283424907],[-92.4015822475131,62.1965671522963],[-92.375784712184,62.1914499485185],[-92.3417613144814,62.16742529371269]]],[[[-92.5327377674187,62.05418515897029],[-92.5518362674811,62.0348106735619],[-92.5654649389536,62.0272059044811],[-92.5913972573387,62.0291681162431],[-92.61407567950208,62.031077783205994],[-92.6331498283382,62.03761877207639],[-92.641526428166,62.0565037711506],[-92.6464187183988,62.078461887459994],[-92.6231172576959,62.0843657489412],[-92.5901374807996,62.08855344951979],[-92.568020067574,62.078833533014496],[-92.5327377674187,62.05418515897029]]],[[[-93.00491447016499,61.8515579872434],[-93.0431891640531,61.856111156214695],[-93.0719368757154,61.883795893716005],[-93.158211357521,61.9020833780308],[-93.1487339917072,61.9298540965983],[-93.0432403529165,61.957840822041994],[-92.9856400523123,61.9579417613182],[-92.9473216617548,61.9256281355691],[-92.94742598534629,61.884011654891296],[-93.00491447016499,61.8515579872434]]],[[[-81.4542641005535,64.2208861211133],[-81.5017126553312,64.2335012745391],[-81.49056374197619,64.2608866439117],[-81.4504977001283,64.2816104780788],[-81.4094929403708,64.2788090393499],[-81.3946238777226,64.2637154594704],[-81.4058659366581,64.2363373350064],[-81.4542641005535,64.2208861211133]]],[[[-107.91208106561,66.9585010830426],[-107.937544117998,66.9420419006904],[-107.98223829615,66.9382496778027],[-108.023876899494,66.9490169326404],[-108.067669269718,67.00252665751589],[-108.050716845861,67.0135121241125],[-107.98655673364499,67.0046521661347],[-107.91208106561,66.9585010830426]]],[[[-107.807705386783,66.8778098332976],[-107.862680836138,66.8738746004254],[-107.907639859972,66.8772807764414],[-107.922945822739,66.8866053037911],[-107.91553551215098,66.89946318551159],[-107.902429964212,66.9103606712464],[-107.869808357837,66.9174432480577],[-107.852350958036,66.9267506772386],[-107.877616948593,66.9827735978703],[-107.83659204351,66.99423732841198],[-107.80197263545799,66.9839047327166],[-107.812616866652,66.9703494898823],[-107.806416196107,66.9513591576124],[-107.788739638249,66.93508364363788],[-107.770120475051,66.9146081573957],[-107.776302556506,66.8900007627721],[-107.807705386783,66.8778098332976]]],[[[-74.4256397287641,68.4947199833338],[-74.456337391885,68.4829497388057],[-74.48180919070388,68.4767354153169],[-74.5156660189226,68.4721952429971],[-74.5516922522996,68.4784131971088],[-74.56470659601119,68.4903667996965],[-74.544932188345,68.51225575770658],[-74.50735414700948,68.5186555273624],[-74.4470650196507,68.5150227767883],[-74.4256397287641,68.4947199833338]]],[[[-74.39924938451549,68.414228935154],[-74.3628041606472,68.4484516758771],[-74.3040126504077,68.4426417924631],[-74.2124675907823,68.3997178100306],[-74.0909479856049,68.3778882590389],[-74.0749681724002,68.36661058191308],[-74.147653247375,68.2791031733261],[-74.1588648974561,68.2601176513052],[-74.2062613809987,68.23612077169258],[-74.236254676002,68.2312269011354],[-74.28146501561429,68.2355619623618],[-74.3002113853294,68.2474442462973],[-74.2857327562468,68.2721486431992],[-74.2776584726852,68.2877942347242],[-74.2751678761984,68.3238202789894],[-74.3621736389777,68.3566112921416],[-74.4186189669701,68.3959925360354],[-74.39924938451549,68.414228935154]]],[[[-74.067052062871,68.139805334023],[-74.1070203195541,68.1443576625926],[-74.1251601513286,68.1524407682946],[-74.1624782066304,68.1739828154719],[-74.1666551502026,68.1910093006743],[-74.1572050455708,68.2057426478264],[-74.1242866496983,68.2095394390977],[-74.0989035125813,68.2028943986713],[-74.0696991657651,68.1875296199874],[-74.0390200386261,68.1652125598256],[-74.067052062871,68.139805334023]]],[[[-62.7658958874459,65.5992594488185],[-62.7159092259609,65.6002012765608],[-62.636277190629194,65.5855011966468],[-62.6466609806544,65.5671212576696],[-62.7016625375781,65.5620614833712],[-62.776363685149704,65.57075961784639],[-62.786155730144095,65.5827006708925],[-62.7658958874459,65.5992594488185]]],[[[-62.99263235007229,65.5716746171301],[-63.0381633890861,65.5495844778469],[-63.063209473436,65.5484149903188],[-63.094547978067695,65.558273956571],[-63.10427283393461,65.5712045595117],[-63.10570688588209,65.5837251711922],[-63.09016662545199,65.6002465611318],[-63.0605732165087,65.59808246933449],[-63.021604766495194,65.59406013020279],[-62.99263235007229,65.5716746171301]]],[[[-62.90801426444429,67.1036210468229],[-62.94699512314979,67.0937149048476],[-62.98102102199,67.100145314595],[-62.9789150837968,67.1200841735403],[-62.9619986469388,67.1321427219439],[-62.93824534824999,67.1429144441526],[-62.9102631531184,67.1444080823535],[-62.882642877397195,67.14257603047768],[-62.8716362195545,67.13201340056469],[-62.90801426444429,67.1036210468229]]],[[[-62.8085352040634,67.0813915643094],[-62.7785195811171,67.0353393491597],[-62.831716391043805,67.0243009370861],[-62.87369599781109,67.0316658715265],[-62.9045443918679,67.0574430988997],[-62.85603697076451,67.0846191793787],[-62.8085352040634,67.0813915643094]]],[[[-74.6068175262826,72.1963224789557],[-74.6803809382362,72.1891857277348],[-74.7186186040644,72.1887353167247],[-74.7385101897949,72.1973313635197],[-74.74946329942118,72.2064386177187],[-74.7409405525231,72.22180160696928],[-74.7106504168937,72.23782622905038],[-74.6669041485569,72.2431586823801],[-74.6249997610974,72.239223907757],[-74.59615446755,72.23111683791288],[-74.58009850096778,72.222866409786],[-74.6068175262826,72.1963224789557]]],[[[-74.7578791157408,72.2621818119786],[-74.76377894439038,72.2468301611171],[-74.7846295149133,72.2393496065537],[-74.823604790342,72.226821282419],[-74.8636594449911,72.2170856888304],[-74.9268975152622,72.2014205167078],[-74.9883483174134,72.1949987107866],[-75.0376742931616,72.2035863786005],[-75.0307119301427,72.2177401928024],[-74.9995244490955,72.2310069569422],[-74.9310949969698,72.2475618894878],[-74.8679028451042,72.25921039070519],[-74.8136147905109,72.2703257346936],[-74.7578791157408,72.2621818119786]]],[[[-72.94860713401998,71.5614660062726],[-73.0159421874774,71.5678136614763],[-73.0644991530027,71.5919707811809],[-73.0118526575081,71.6556406554766],[-72.97529971480229,71.6620146148849],[-72.8806161782056,71.6530997604498],[-72.7755648024512,71.6676825287597],[-72.721480589395,71.6625445102422],[-72.7001855153186,71.6408851376285],[-72.7568318002911,71.6021217150517],[-72.8306415453329,71.5748077999381],[-72.94860713401998,71.5614660062726]]],[[[-73.3810737165255,71.5724470421173],[-73.4300762167098,71.5965269987279],[-73.3976225162282,71.6277882284188],[-73.2734041035667,71.6897635297516],[-73.2008777628282,71.6879536732155],[-73.1837413300891,71.6618773016351],[-73.26286294662648,71.6006682124356],[-73.31781129095259,71.5763899047227],[-73.3810737165255,71.5724470421173]]],[[[-74.5702555644928,71.7128269824428],[-74.5523160372133,71.7218611532349],[-74.5181977485147,71.7306787697943],[-74.4392545651112,71.72033371648088],[-74.41622681757438,71.7113604245531],[-74.4496714184022,71.6834547886038],[-74.5113398810815,71.67482433340759],[-74.5758385908988,71.6810685311114],[-74.5947415105829,71.6976956987376],[-74.5702555644928,71.7128269824428]]],[[[-73.137452653614,71.339315291651],[-73.2395269665721,71.3538135335626],[-73.3050004297414,71.40396346401978],[-73.315393055302,71.50766127271478],[-73.2829322182687,71.5389017551154],[-73.205764186269,71.5561990187004],[-73.1518789706609,71.55116978349828],[-73.1343081497152,71.5397341804364],[-73.149459562702,71.4970826227087],[-73.1231727747137,71.4799296220378],[-72.9964352155664,71.5022809831238],[-72.9441561237395,71.4679347867492],[-72.9636275929965,71.4354847567138],[-73.0405194812184,71.4182789963818],[-73.07312257782688,71.3870840742213],[-73.0702472665866,71.3476450994851],[-73.137452653614,71.339315291651]]],[[[-71.05637722073008,71.1065577436245],[-71.1085113613976,71.0865246268892],[-71.1655969676607,71.073699728285],[-71.207918537918,71.0661115842497],[-71.23888608923198,71.0711235386723],[-71.2630289813645,71.0850839886486],[-71.2378656854922,71.0988708782675],[-71.2150497500799,71.1073555838857],[-71.1645157784405,71.1181798283347],[-71.0605840364183,71.135287147794],[-71.029564323545,71.1302476921461],[-71.05637722073008,71.1065577436245]]],[[[-72.0588031775734,70.8216410737334],[-72.1388751718922,70.8543390076567],[-72.0869808691701,70.9030704656874],[-72.0052856237196,70.9389611081764],[-71.9288598626212,71.009796428353],[-71.8835490458688,71.0248353067707],[-71.7907662765586,71.030089818152],[-71.5381739550997,71.00891953853288],[-71.3574246798704,71.01466617395148],[-71.3429916913604,70.9885101992441],[-71.3969295361402,70.93997820469718],[-71.4424052820901,70.9250470974417],[-71.7046215541613,70.88348576302688],[-71.9846663364234,70.8238810066097],[-72.0588031775734,70.8216410737334]]],[[[-74.137210753818,78.6779987568386],[-74.2712340962281,78.6958304148203],[-74.42443747883318,78.74460166159079],[-74.3420238295602,78.7797345326607],[-74.06280440957778,78.7634741503699],[-73.9730423003405,78.7332120190683],[-74.0289647674618,78.6865819307476],[-74.137210753818,78.6779987568386]]],[[[-77.6711771823909,77.7888218248658],[-77.8585038176502,77.8276035238127],[-77.812521587728,77.8645128296126],[-77.7604401167752,77.8717205745156],[-77.5723038311941,77.867179588172],[-77.5291854911861,77.8502801012313],[-77.5674235051654,77.8031791276004],[-77.6711771823909,77.7888218248658]]],[[[-81.4030357299631,77.4072542141814],[-81.45573713436198,77.4075960562819],[-81.4987906306395,77.4078672525745],[-81.5490688525059,77.422087381944],[-81.5839536212997,77.4372951389773],[-81.5929173161165,77.4496230683777],[-81.5639025731775,77.4636314126594],[-81.4792566554814,77.4682925416885],[-81.4357972423979,77.4543784255194],[-81.408041537636,77.4462894365283],[-81.3905590974898,77.4284440501026],[-81.4030357299631,77.4072542141814]]],[[[-78.63768113568419,76.9466675403599],[-78.6999042520048,76.947189678754],[-78.75539634661358,76.95380606304799],[-78.753003577179,76.9674113226848],[-78.7462405080402,76.9962278865841],[-78.733274924656,77.0126681816351],[-78.6996303796264,77.022776382905],[-78.6492626907177,77.02332960021148],[-78.5901835498466,77.0079019821672],[-78.5814966075313,76.9919280724963],[-78.6057445642203,76.9606675262246],[-78.63768113568419,76.9466675403599]]],[[[-80.1023911010969,72.55888729448928],[-80.0495262621074,72.5271310806432],[-80.0402793286657,72.4978552289289],[-80.1113152040034,72.4827453368361],[-80.177202408468,72.4960650427313],[-80.2189380996446,72.5223684030462],[-80.1961431325194,72.5546110495214],[-80.1605353062653,72.5621817017652],[-80.1023911010969,72.55888729448928]]],[[[-78.9278570804688,72.3543678731862],[-79.0502026921476,72.3908292134874],[-79.0326387632786,72.41375726120138],[-78.95745983084738,72.4331023291651],[-78.7705040502311,72.4213531759179],[-78.7381609694962,72.4048792607855],[-78.75607373339939,72.3819744993045],[-78.8491336058719,72.359023277663],[-78.9278570804688,72.3543678731862]]],[[[-79.44794931899419,72.3815559960048],[-79.5595817767637,72.3930483529964],[-79.6036348266759,72.4148579021831],[-79.5867205556644,72.43783552700759],[-79.4968149863705,72.4372677295761],[-79.4315983023188,72.4237546710988],[-79.4055327228202,72.3981886374685],[-79.44794931899419,72.3815559960048]]],[[[-64.7984127765151,81.75750664115888],[-64.8638835836176,81.7504535042114],[-64.9378810801681,81.74939686400398],[-65.0377585773536,81.7524644471085],[-65.1089720113913,81.76658559034878],[-65.1170591661214,81.7826018301662],[-64.9854100786714,81.7948466819848],[-64.8482653078979,81.7868001913988],[-64.8015034441064,81.7700407565442],[-64.7984127765151,81.75750664115888]]],[[[-66.3182600453969,81.63113680773328],[-66.3605036818197,81.6194272920714],[-66.46579166671019,81.6052200132869],[-66.579955799233,81.5959902821942],[-66.70165547778859,81.5959734246035],[-66.7927276373179,81.6046024013031],[-66.7930423524827,81.6198158574242],[-66.68811102640798,81.6341075746084],[-66.5967968786861,81.6406685758062],[-66.390817521365,81.64120333076929],[-66.3182600453969,81.63113680773328]]],[[[-66.9475804467768,80.8967412462333],[-66.9280857229601,80.8799308645767],[-66.991020759188,80.8612051264093],[-67.0800938181633,80.8544556113145],[-67.1331448148489,80.8592488205102],[-67.1538187569017,80.8736422765349],[-67.0876001110363,80.89577655098789],[-67.0190522901946,80.9017223827739],[-66.9475804467768,80.8967412462333]]],[[[-74.5221374919763,83.0808531859436],[-74.5918065248207,83.0873306999527],[-74.6265756870932,83.0995337421341],[-74.6821506808233,83.1137817758553],[-74.6325830921354,83.1273010841232],[-74.5447277487988,83.1296696845491],[-74.4316310964897,83.12259874352009],[-74.36030671391428,83.11363778412698],[-74.3118548214028,83.09723182751898],[-74.3734868996638,83.0804837383861],[-74.5221374919763,83.0808531859436]]],[[[-77.6149577591412,82.9575321164413],[-77.6780051346796,82.9470541537541],[-77.7651025650039,82.9430672259473],[-77.8890002111078,82.9485841875575],[-77.9286250857267,82.9570177864669],[-77.9922029404923,82.9698001878451],[-78.0189151538871,82.983649360009],[-78.000641647961,83.0018242733612],[-77.96358991589169,83.0170051129483],[-77.8756978686763,83.0210264624869],[-77.7372945393976,83.0138619658981],[-77.6818585053271,82.9977980431536],[-77.6149577591412,82.9575321164413]]],[[[-64.647202106074,60.67892889745439],[-64.6241091006533,60.6968542506423],[-64.5890833080584,60.7050728720517],[-64.5559739270112,60.7045598282578],[-64.5359036651446,60.6976816684481],[-64.54690923442118,60.6856578789074],[-64.5698082167808,60.671624576864],[-64.59436643914668,60.6644531139133],[-64.6189575519109,60.6585916859355],[-64.6566014492078,60.6639711160859],[-64.647202106074,60.67892889745439]]],[[[-64.5525474434179,60.6144655819938],[-64.5946104380535,60.62211746058409],[-64.5905703088076,60.632995821783695],[-64.5732202809699,60.641043327491],[-64.5541776183566,60.64807752088479],[-64.5242832527925,60.6606275202339],[-64.4652621333784,60.6556865562615],[-64.4741567261833,60.64210396255519],[-64.492520025287,60.6303647934648],[-64.5110313568447,60.6238777017725],[-64.530683621172,60.61893731544319],[-64.5525474434179,60.6144655819938]]],[[[-64.7538018244573,60.47692235744659],[-64.7406307527459,60.5138379728716],[-64.7034567169426,60.5214036483083],[-64.4765170168578,60.4818837484649],[-64.3273854466188,60.412872409671195],[-64.2717693717765,60.3523754395801],[-64.28561104423028,60.3427672284282],[-64.5271427424895,60.393044724884895],[-64.5594569709809,60.42409479335829],[-64.5984747512038,60.4366919545141],[-64.7222707441033,60.45597193888969],[-64.7538018244573,60.47692235744659]]],[[[-73.8762716319177,64.3439674007277],[-73.9243159440036,64.2954209113883],[-73.9574999100103,64.2984205159084],[-73.9870776587011,64.3061583698385],[-73.9897103220572,64.3182348086492],[-73.960836489953,64.3405807904875],[-73.92572940877858,64.34777503592],[-73.8762716319177,64.3439674007277]]],[[[-73.7706641119721,64.34776686571078],[-73.7527590604248,64.3069875433989],[-73.7522543432138,64.2769053322375],[-73.7837194057091,64.2705834080449],[-73.8186404502423,64.27514587908908],[-73.8471366937112,64.2958217635944],[-73.8343171955325,64.3105221425748],[-73.8402680753413,64.3414599061371],[-73.8108993589686,64.3524367151586],[-73.7714461520012,64.3622382007295],[-73.7706641119721,64.34776686571078]]],[[[-73.4745883524758,64.2457817454995],[-73.4967708967041,64.228848836434],[-73.52196349151859,64.2230505764701],[-73.5434720799305,64.2219842031078],[-73.5675836626748,64.2251777001729],[-73.587043246591,64.2381983311936],[-73.6118822051893,64.2519250344894],[-73.60178880158,64.26495655789418],[-73.5765745980374,64.2707670820214],[-73.5495847404258,64.2750355463073],[-73.5084997053035,64.2669799799521],[-73.4745883524758,64.2457817454995]]],[[[-67.9090198106659,63.3337830257314],[-67.9410485114526,63.3380169810043],[-67.9776312717693,63.35474239039009],[-67.9855523180637,63.372672579490796],[-67.9515062286599,63.3936441733567],[-67.89992869895728,63.38050838569739],[-67.8686288480813,63.351232870738],[-67.8732832640487,63.341696099556195],[-67.9090198106659,63.3337830257314]]],[[[-73.3026758391835,64.1342491532282],[-73.3624978314059,64.1414101492972],[-73.3867792560243,64.1683000462327],[-73.3773954486268,64.1815759612489],[-73.3117760007848,64.1977344759065],[-73.2718232479391,64.1929482925843],[-73.2513161582949,64.1760868010255],[-73.2633549710114,64.1439299896162],[-73.3026758391835,64.1342491532282]]],[[[-67.7641079051346,63.19296028753579],[-67.80442884869768,63.2023056258442],[-67.8359174243496,63.22647469826371],[-67.82578392582678,63.246427341981494],[-67.7998744628663,63.254290230943],[-67.7633549053444,63.2447547506183],[-67.7418130974784,63.2150707295828],[-67.7409977348886,63.1993992354944],[-67.7641079051346,63.19296028753579]]],[[[-64.2168639173467,62.509786199570094],[-64.24411776059418,62.51494322903859],[-64.2587759785991,62.532647952233894],[-64.2377490813741,62.5535623453645],[-64.1936102778936,62.5651288241596],[-64.1656695486938,62.54987640465849],[-64.1692289214287,62.5356116919702],[-64.190287194279,62.5147078892832],[-64.2168639173467,62.509786199570094]]],[[[-67.0900614288813,63.0916295837015],[-67.1146950799311,63.117759843327796],[-67.0802924096964,63.131713831763896],[-66.99184163186848,63.1219331878976],[-66.9151277739821,63.11150688850649],[-66.8644128104613,63.095732268920194],[-66.8332861303123,63.070835309843304],[-66.8342102343059,63.0463938328799],[-66.8577550965927,63.0208336401231],[-66.8842968837151,63.0154514939393],[-66.9084472693241,63.0244171110894],[-66.96700229056,63.040736074949905],[-67.0358728696814,63.0649258270286],[-67.0900614288813,63.0916295837015]]],[[[-68.0935623840952,63.2737626248285],[-68.0888790331862,63.3097221746704],[-68.0395145127766,63.31659870969949],[-67.9675046569992,63.2513214362724],[-67.9221003187467,63.229399677871506],[-67.9107779957697,63.2178013755735],[-67.9259741825481,63.20064113845599],[-67.9675906723793,63.20238184572969],[-68.0935623840952,63.2737626248285]]],[[[-68.1623368350702,63.23268220250439],[-68.2262103338396,63.2552378777747],[-68.2406990922751,63.278398087552496],[-68.2058122749896,63.30542762808389],[-68.1553879889133,63.29360219891859],[-68.1453659304812,63.282565633914096],[-68.1256054113465,63.26260450994959],[-68.1330554747542,63.2380626607931],[-68.1623368350702,63.23268220250439]]],[[[-75.66077646359338,64.3028236395658],[-75.7012055252359,64.30703406017489],[-75.7158625824107,64.3180799731449],[-75.7047265896223,64.3359729493405],[-75.63003852216,64.3520127329969],[-75.5592025088926,64.3446077008559],[-75.5631298998814,64.3211977339814],[-75.66077646359338,64.3028236395658]]],[[[-66.5410999421616,62.9081761390289],[-66.5865542592475,62.94054272562911],[-66.5747125497222,62.9532998915113],[-66.548168115715,62.9586290793491],[-66.5015736351949,62.9506813847218],[-66.4536209345704,62.93263108006221],[-66.4372010744233,62.9162029825978],[-66.4493087687253,62.89730419052889],[-66.4879568231068,62.88655120479661],[-66.5163142533622,62.8929155075696],[-66.5410999421616,62.9081761390289]]],[[[-65.0157884220128,62.51961232595199],[-65.0532389389889,62.536389474831594],[-65.01225634684218,62.5784580109488],[-64.9857619672307,62.5835191036655],[-64.926302813367,62.622207858637495],[-64.8723091039819,62.6222073031603],[-64.8572779829605,62.6045509043164],[-64.9232052650758,62.5373114926645],[-65.0157884220128,62.51961232595199]]],[[[-71.7264687099742,63.6430255290039],[-71.7535867615274,63.64995816301259],[-71.77110089601939,63.66655031058911],[-71.7616893096954,63.679931034679],[-71.7476558125821,63.68894613974769],[-71.7227615102478,63.69120020867899],[-71.6684768177103,63.67731565541559],[-71.6900102213407,63.6524300829302],[-71.7264687099742,63.6430255290039]]],[[[-71.5965339410597,63.591011137235895],[-71.629694656827,63.587423180493396],[-71.6636788991177,63.5939179640029],[-71.6883619419871,63.5997737363399],[-71.6860506260133,63.6105062268352],[-71.6713160826919,63.6223604863827],[-71.6490520346459,63.6294146952083],[-71.6143079253906,63.6257615561427],[-71.5971093784538,63.6187875958142],[-71.5861038632388,63.60239013168529],[-71.5965339410597,63.591011137235895]]],[[[-64.3623023946381,62.537239860854896],[-64.347584397166,62.51954349977979],[-64.4075547528804,62.4810959349861],[-64.3913498939922,62.443238671371],[-64.4337093494761,62.4114431219643],[-64.5088565739084,62.4007197378006],[-64.74969491066888,62.3960682893015],[-64.821457831691,62.39947073658869],[-64.9173177632877,62.4221664364621],[-64.9323278582124,62.4398123983965],[-64.911856633537,62.4608287021639],[-64.8284986178408,62.48015124112009],[-64.7848938301425,62.5465217385435],[-64.7318704019374,62.55656002921359],[-64.5884399342546,62.5597021241306],[-64.4624309912606,62.5560379150144],[-64.3623023946381,62.537239860854896]]],[[[-72.7550241194226,63.7508541326587],[-72.7948408415756,63.74804301140771],[-72.8109022200362,63.7546894620824],[-72.824883769423,63.76398257730689],[-72.8244424242899,63.7749445547262],[-72.8121710329676,63.78426236347939],[-72.7760530665053,63.794669905079],[-72.7448177479399,63.7947282606901],[-72.72979992723089,63.786751418523],[-72.7550241194226,63.7508541326587]]],[[[-72.3611027072116,63.72031023573769],[-72.3902674448712,63.7146437914784],[-72.4206555014059,63.701295708059206],[-72.4422513758381,63.6947950273362],[-72.4696134617324,63.69131433140571],[-72.5077936358059,63.68862766842041],[-72.5333579982748,63.6812071039909],[-72.5563847975064,63.6748988609477],[-72.5860229204655,63.6746671256249],[-72.6173500197379,63.680550648655306],[-72.6306170734406,63.6927126520066],[-72.6260115046212,63.7067709290721],[-72.6032899069796,63.7168118699126],[-72.5596069883625,63.72022173433329],[-72.52381125538298,63.7239974440141],[-72.4867164888976,63.733471954803306],[-72.420714293518,63.74620145749059],[-72.3683637769821,63.7439207907842],[-72.3611027072116,63.72031023573769]]],[[[-71.5445940467146,63.5120939919317],[-71.5834000949881,63.5172763590701],[-71.5961997572526,63.52862836594029],[-71.5959892258727,63.543073068852806],[-71.5633182106691,63.558013819509995],[-71.51475377989078,63.5515278306375],[-71.5019771408216,63.5401693718386],[-71.5185680725524,63.51826244460359],[-71.5445940467146,63.5120939919317]]],[[[-72.7568386042321,63.68041061016469],[-72.78150409789978,63.6756365729673],[-72.8037736042081,63.67433614218119],[-72.8321946630864,63.6797677003672],[-72.84182131070828,63.698740776209],[-72.826212035736,63.7061198776597],[-72.7988854119996,63.70965940268869],[-72.76445704790369,63.705589385072905],[-72.7450524252168,63.69699770400509],[-72.7568386042321,63.68041061016469]]],[[[-72.2278606470215,63.6158437581598],[-72.2548397178392,63.6040079685368],[-72.2805472111976,63.6025404802909],[-72.3105236268256,63.60389040133279],[-72.3297512223537,63.6125301127686],[-72.3280796545554,63.6248053726677],[-72.3131944346179,63.6351924042835],[-72.2812134534752,63.64239705172519],[-72.2325205211493,63.63983387338071],[-72.2138371028417,63.6305227016625],[-72.2278606470215,63.6158437581598]]],[[[-65.8582957202415,62.14824342381629],[-65.8296546920636,62.1677709589165],[-65.79218954259558,62.15119075986989],[-65.8298914380806,62.133293897428395],[-65.8582957202415,62.14824342381629]]],[[[-77.9487716687954,63.9139723455665],[-78.0090253938826,63.9194339860726],[-78.0172447400194,63.94380798513319],[-77.9804659618467,63.97357059572249],[-77.90332593473909,63.999670174215],[-77.8103182290442,63.9959180303965],[-77.7478842480857,64.0138437740805],[-77.6170357003763,64.0017712606587],[-77.5485962062933,63.95281568949059],[-77.5681718654298,63.9167803915302],[-77.63050184304359,63.898924250794],[-77.8512344306105,63.919267165787296],[-77.9487716687954,63.9139723455665]]],[[[-65.8278647517313,62.044180793831394],[-65.8639943756966,62.0506676523157],[-65.87427569410009,62.0623678285435],[-65.8457405830195,62.08189873466579],[-65.8005397850519,62.073784820468],[-65.7902850975765,62.062078031560596],[-65.8278647517313,62.044180793831394]]],[[[-71.3801096015574,63.0073756418796],[-71.4067654210263,63.011421300490895],[-71.4492923948181,63.01688526517249],[-71.4863827885675,63.0264088120702],[-71.5071183346459,63.0403016058222],[-71.4957669840106,63.05424329314899],[-71.4672407319693,63.0577645051592],[-71.373527265719,63.04161469048599],[-71.3559399637514,63.0291547814425],[-71.3801096015574,63.0073756418796]]],[[[-71.0090022938528,62.9517965890906],[-71.03926455031518,62.94928975217239],[-71.0693730869578,62.94903741699509],[-71.1165269171376,62.9514043530674],[-71.1531899880032,62.9638997711209],[-71.152882933361,62.97462981871599],[-71.1371464276808,62.98593001889179],[-71.0975225868157,62.984735745367296],[-71.0408417114677,62.9808998532088],[-71.01529910301949,62.9730351237599],[-71.0090022938528,62.9517965890906]]],[[[-65.0057090208153,61.809593042063995],[-65.1597123332275,61.85803759693211],[-65.2176180180141,61.908305608523804],[-65.1710368574631,61.96891481500569],[-65.1201987643014,61.9891875898818],[-65.0752929753579,61.9808651277177],[-64.9418363629419,61.9213810898614],[-64.8057407212961,61.87607279796709],[-64.751618136281,61.8113936746991],[-64.7756366587582,61.7862060061949],[-64.801457848687,61.78116995521],[-64.9263324673181,61.8046364666193],[-65.0057090208153,61.809593042063995]]],[[[-71.0210956570123,62.773866917859195],[-71.06144238604159,62.7675218233704],[-71.1012438144797,62.77074891473399],[-71.1372449507251,62.7812123397982],[-71.1541264564682,62.79948759711469],[-71.1319186456746,62.8058527190857],[-71.10124158315,62.80698993004659],[-71.0432603939373,62.799970698901895],[-71.0122805615411,62.783405787379095],[-71.0210956570123,62.773866917859195]]],[[[-65.5996743142711,61.79083280676589],[-65.64444513744809,61.7989949861613],[-65.6545928418671,61.81070523526441],[-65.5938583351694,61.853894211788],[-65.5673632418717,61.814530387092795],[-65.5996743142711,61.79083280676589]]],[[[-65.2690079232138,61.73004561753339],[-65.3075323788345,61.722358237784896],[-65.3610731537163,61.73224940357839],[-65.3861681941665,61.7615606863649],[-65.3604693649712,61.7666993614369],[-65.2800857137342,61.7518536638383],[-65.2690079232138,61.73004561753339]]],[[[-69.9855455330518,62.5483267625699],[-70.0221162867168,62.5682591744785],[-70.0119333832271,62.58128635278],[-69.9736588132192,62.59016649420819],[-69.9336891897607,62.57456325669101],[-69.94730630281589,62.55720073852769],[-69.9855455330518,62.5483267625699]]],[[[-65.8277243188577,61.792820313068994],[-65.88151673465,61.8025335998075],[-65.9071157596347,61.83177182627299],[-65.8955515193353,61.8444656680146],[-65.8698742936291,61.849691868749],[-65.8327131695927,61.8331352465825],[-65.81228375531478,61.80973644535519],[-65.8277243188577,61.792820313068994]]],[[[-70.5666390075606,62.55083602800129],[-70.6692331792254,62.580044810328395],[-70.75785967654959,62.6554681254353],[-70.7785207474766,62.6970379068566],[-70.7449266660741,62.7550667690142],[-70.7850018784357,62.7848966922563],[-70.9074410571738,62.8166471674823],[-71.172663059397,62.85365148465689],[-71.19131284716,62.87070630832639],[-71.1716842413934,62.8969338797502],[-71.0796807174698,62.8938208268943],[-70.5371747014724,62.80763464939339],[-70.3781004751473,62.7557520821711],[-70.2544951242739,62.699127949206904],[-70.1815993138383,62.644938557099294],[-70.2033556767832,62.59003686864659],[-70.4503049394054,62.5533920160301],[-70.5666390075606,62.55083602800129]]],[[[-76.64308018178119,63.3393402957416],[-76.7314347761206,63.3482116710721],[-76.8196858191435,63.37596629859439],[-76.8588837497332,63.3988049947833],[-77.147112836341,63.4980993403053],[-77.22871156475509,63.5201911187716],[-77.3177436981799,63.5287494927447],[-77.3401253575758,63.5450889801113],[-77.3181621487561,63.58557345836509],[-77.3928030049803,63.6210880343562],[-77.3757235570135,63.652585232647894],[-77.3062953618358,63.6648965185907],[-77.1870636343668,63.65345540465219],[-77.0976646574483,63.6827050310449],[-77.045476944544,63.6823790041356],[-76.8795918140102,63.6045655866645],[-76.6990729671769,63.5724626705199],[-76.6011319614018,63.50576967842671],[-76.59412623346898,63.481358092295096],[-76.61921956756,63.4554361103175],[-76.5706115684669,63.41261438134169],[-76.64308018178119,63.3393402957416]]],[[[-64.8287804087005,61.37560492282209],[-64.9267216704509,61.4040715080251],[-65.1658682696757,61.5379834270978],[-65.37336677717599,61.6061822512592],[-65.4084376187548,61.6472071911374],[-65.3928651670189,61.664074075592794],[-65.2981788921798,61.6761833752874],[-65.07700584279009,61.7338824700195],[-65.0334478699418,61.7356369651833],[-64.7425405191061,61.7106168014064],[-64.714062822537,61.685413827537296],[-64.7113513978552,61.6551850133526],[-64.6758527536171,61.6484439625369],[-64.6115116631247,61.66097624944399],[-64.553427593493,61.6449433835798],[-64.5388514175522,61.6272905086062],[-64.5708447931947,61.5937587887284],[-64.6005273841554,61.5845623966317],[-64.69863837240449,61.5141259759559],[-64.7905727627043,61.383172556814394],[-64.8287804087005,61.37560492282209]]],[[[-78.4530344116251,63.4398645568126],[-78.5155801802918,63.459553739470394],[-78.50433235257448,63.4821402272414],[-78.4502635153947,63.48678743014351],[-78.3732615626082,63.4752190347308],[-78.3747071216025,63.4517600711247],[-78.4530344116251,63.4398645568126]]],[[[-77.8640526634019,63.079484781029294],[-77.9669150540684,63.098500335440804],[-78.1879839201362,63.20847206554339],[-78.4195692406254,63.3001145968988],[-78.472859773691,63.33787272682059],[-78.4504028311262,63.3830347202483],[-78.4018687725559,63.3975766767547],[-78.2765066428617,63.40049334431289],[-78.1402909752039,63.444813974249094],[-78.076338055217,63.4484359481835],[-77.8490344422884,63.42753866562289],[-77.74899769195468,63.36153534170419],[-77.6997430165353,63.3569212947022],[-77.6213204752745,63.36844862721491],[-77.54252893673309,63.3609980334689],[-77.52015716393208,63.344690912401596],[-77.5338504773113,63.2798144486984],[-77.5088581140814,63.24907573634411],[-77.5538951133046,63.163570918849494],[-77.7789937332738,63.085676313847294],[-77.8640526634019,63.079484781029294]]],[[[-81.88890765949019,63.9969485010324],[-81.60697595408249,64.0765153011503],[-81.3403044823367,64.1145408076951],[-81.2486045457973,64.1081671729383],[-81.0837743859616,64.02618176654448],[-81.0127029077912,64.0211210056439],[-80.9644115343942,64.0364396535775],[-80.9509302619443,64.068330994994],[-80.9907838935568,64.1228208841722],[-80.9830687716908,64.1410494367888],[-80.9447498894437,64.1570898344266],[-80.8835747150519,64.152698708552],[-80.7934133715619,64.1180059770723],[-80.6520673521555,64.0325223304005],[-80.5768520868195,64.0128719899975],[-80.46734891993229,64.00001566827959],[-80.42871498375139,63.9689261581853],[-80.5458140212966,63.9401028292148],[-80.5537295577302,63.921902252551895],[-80.5374752950102,63.91129746087179],[-80.40617151328739,63.9014459420808],[-80.2890822870036,63.906669007692194],[-80.23053982207,63.89749764085559],[-80.151956681998,63.863256600343],[-80.0957196877055,63.8259994321532],[-80.1059103831759,63.8032848983752],[-80.2105846567379,63.7784675483259],[-80.40760551558029,63.7794044403792],[-80.5359532413068,63.7468021632174],[-80.6652726899987,63.6625553413207],[-80.864301832523,63.60684206966789],[-80.9075833133812,63.57716741803079],[-80.927782459815,63.503596874172196],[-80.9770559415047,63.4837375894002],[-81.0368772889336,63.4880764248228],[-81.1843468964089,63.55492467600559],[-81.3233922234742,63.59289138898179],[-81.4782283384358,63.6177629832488],[-81.6085765162709,63.6267419642683],[-81.8685817746233,63.7005224753429],[-82.0497209127321,63.7125038056361],[-82.2546251292298,63.6883725648293],[-82.3720595180921,63.7052416844613],[-82.4594870972597,63.7481989681779],[-82.461346435545,63.799773165336],[-82.4024735711449,63.8475297819694],[-82.29272634732479,63.8920437288452],[-82.2672344508477,63.9325442437623],[-82.3263637438448,63.9690708368701],[-82.5212805702167,64.0047069708601],[-82.6637850549524,64.0134994048234],[-82.9463506500509,63.979123194767695],[-83.03634887584398,63.9891343823403],[-83.1019711764889,64.0397373933094],[-83.06245874906278,64.0935251241124],[-82.9732319610036,64.1397053968197],[-82.9602998303765,64.1763544872739],[-82.9775548322337,64.1867291747652],[-83.0185502242348,64.1891452798683],[-83.21339020962628,64.1397049061129],[-83.3449312630193,64.1519124984807],[-83.4330503112262,64.1382046820745],[-83.50366815720808,64.11413353478558],[-83.5597856589968,64.0705465865502],[-83.5764263670931,64.0200900755847],[-83.510888123052,63.90432738945789],[-83.5026706905255,63.866500498125],[-83.5248680183768,63.8303895149292],[-83.6077405483034,63.7976770177951],[-83.7684212646428,63.77855329849259],[-83.95036255783108,63.6904378404445],[-84.0525053742816,63.65858524441579],[-84.2322661783407,63.640074631855896],[-84.2835684317031,63.605439449377],[-84.3826506460699,63.44274178497751],[-84.4614013784043,63.381537808807096],[-84.82597222612799,63.2367571615516],[-85.0622146862376,63.182995519645594],[-85.2046802331222,63.13852679310959],[-85.29877505530779,63.124289668475996],[-85.3980187379637,63.1288448935319],[-85.51138020232429,63.15722846815989],[-85.5870936392524,63.21642194418289],[-85.6121793969326,63.39896258131579],[-85.590206174564,63.48640600618601],[-85.5460545827807,63.5403059640914],[-85.5243993782255,63.6650251763099],[-85.585777488456,63.704962075847696],[-85.6846812736479,63.71856744547019],[-85.7026225913917,63.7286500245552],[-86.11755714058908,63.6622173637442],[-86.5496528027453,63.6466009925935],[-86.87443325719498,63.556330641502996],[-86.99735836936979,63.551412144081695],[-87.0944902546507,63.573389752102294],[-87.1302339514886,63.59785364512369],[-87.1402549978743,63.649309584337],[-87.0930614579835,63.73133592577139],[-87.0280927297957,63.7988034213474],[-86.9453304424767,63.85168796360569],[-86.7746519228193,63.9292825977607],[-86.5190667209601,64.0128622481647],[-86.3278789407615,64.0799983560651],[-86.2678920711392,64.1148949672578],[-86.2580833143455,64.1564017601928],[-86.3366670082432,64.3084106153253],[-86.3771956009084,64.4915438039717],[-86.3509016903537,64.6023087802669],[-86.1549835306322,64.8416786728294],[-86.1331248742259,64.9293810125831],[-86.1933556566695,64.9876536097765],[-86.1841559364083,65.0245890637592],[-86.1195137029698,65.0687013291381],[-86.1148503003696,65.0871676556615],[-86.1409168353736,65.1114938364169],[-86.10225076422549,65.2638791021235],[-86.1023977865184,65.3478403303388],[-86.0027074017162,65.6472554108104],[-85.778885991336,65.8251637205675],[-85.5839537703975,65.9293681374598],[-85.54014878610408,65.9275633406297],[-85.482410984257,65.8971343782387],[-85.40405696609778,65.8237598018592],[-85.248680482252,65.8264755264597],[-85.2118961598188,65.80151716197878],[-85.1779164033913,65.7673255621433],[-85.1684876257634,65.72485437892638],[-85.0510946050898,65.6028474300549],[-85.070162019446,65.5756589897745],[-85.18903186007559,65.54353039954779],[-85.206565320603,65.520941331634],[-85.1513690639208,65.48581764086919],[-85.0787358376328,65.473252004087],[-84.9662245635779,65.4121352061696],[-84.89881780577569,65.3109554931762],[-84.90610101572699,65.25056323154529],[-84.859677483321,65.2250706112022],[-84.8198166329886,65.213881874457],[-84.76093112962899,65.2298248808969],[-84.5640332927324,65.4448599124493],[-84.4756509778087,65.4827105383667],[-84.4218757357205,65.4801159026947],[-84.3707273777636,65.4355439848131],[-84.269145737072,65.3791174160068],[-84.1864798635797,65.3656547183172],[-84.12984282967328,65.3394299701373],[-84.1174141074451,65.2452662898623],[-84.0078930621707,65.1835698272325],[-83.85000339701658,65.1707240444438],[-83.7818864248472,65.1484383754453],[-83.49060611416648,65.1468878935959],[-83.39676344844298,65.1370758562647],[-83.3193354895435,65.08130314827979],[-83.30066733006,65.04281612322528],[-83.2042231377128,64.981234996448],[-82.5494936235942,64.7790232769495],[-82.2829610051702,64.77670767666059],[-81.9320549622007,64.6372354770831],[-81.7613105369046,64.5322982447831],[-81.7401987176022,64.4793116653298],[-81.7551025279761,64.3630558523491],[-81.7377297373394,64.3009480692164],[-81.6124971339076,64.245685157032],[-81.5965019866454,64.2070915909061],[-81.60568571944388,64.1842660105232],[-81.6473214313304,64.1589367922605],[-81.9251074877642,64.0649230508227],[-81.9410497431321,64.0238066202386],[-81.88890765949019,63.9969485010324]]],[[[-91.4895989341362,63.68815174291499],[-91.52874162863088,63.69951142017509],[-91.54856908680499,63.711333048782194],[-91.5453112371165,63.7226701076967],[-91.53434746389799,63.7338440670853],[-91.476681362351,63.73174216666789],[-91.44787851143009,63.71445254410929],[-91.4525544606768,63.69256971365859],[-91.4895989341362,63.68815174291499]]],[[[-91.2855972506136,63.5915453856172],[-91.3408753203831,63.5971754243445],[-91.3726020949817,63.6048992203152],[-91.4163811553776,63.608493135534594],[-91.4614607932332,63.61736751670709],[-91.4884680512449,63.632860374249894],[-91.4788114780475,63.649321357294895],[-91.4524837387636,63.660158411123],[-91.3453558276902,63.6543002257788],[-91.28019112090759,63.6212517971906],[-91.2855972506136,63.5915453856172]]],[[[-90.5906630897322,63.573392877741],[-90.6315932274334,63.5701427274835],[-90.67765675393179,63.570487976],[-90.7466909992739,63.571418630025896],[-90.7905947613946,63.573430645989596],[-90.8164697030652,63.5670728462377],[-90.8570318109421,63.5654724510579],[-90.89242874422439,63.573383836056294],[-90.9040175418007,63.586836902672],[-90.9176532584272,63.59946288401589],[-90.9103341994907,63.6106877869917],[-90.8844408396019,63.61706074076379],[-90.8420152682715,63.6177449438633],[-90.81962605801148,63.61278747317311],[-90.7931620341415,63.6094782113501],[-90.7492049864263,63.6074654669195],[-90.71215894341978,63.61088878859209],[-90.673059165345,63.61512838538409],[-90.6058418498528,63.6142176929818],[-90.5840160780799,63.6057309271517],[-90.5906630897322,63.573392877741]]],[[[-91.1347692682264,63.5637785065936],[-91.1614342316925,63.55797642547],[-91.1839513626691,63.5620123828369],[-91.20760578124428,63.5722122309912],[-91.2179790101339,63.581225296977905],[-91.18992886267189,63.60514164424401],[-91.16557516581449,63.6001868325927],[-91.1309890283123,63.5853359604436],[-91.1347692682264,63.5637785065936]]],[[[-90.4594488435953,63.5272749040617],[-90.4812010497081,63.523049556280895],[-90.5059078453275,63.52460926166069],[-90.5258734273922,63.5321778637649],[-90.5399822054357,63.540462891271],[-90.5422299648239,63.55105633767949],[-90.53425426374349,63.565761103842],[-90.519406197961,63.5750105087545],[-90.4961722672634,63.5761281037467],[-90.4748054149469,63.5650057864444],[-90.455233125253,63.55480789760549],[-90.4594488435953,63.5272749040617]]],[[[-90.92584501124439,63.51437085771269],[-90.9625097867818,63.510197724520694],[-90.9906967788901,63.5144012434972],[-91.00469032202219,63.524394734519],[-91.0238441764586,63.5388994181498],[-91.01849431364738,63.55017480327939],[-90.9983010558859,63.5575792894787],[-90.9712728771774,63.55867068505799],[-90.9257146809219,63.540872076941895],[-90.92584501124439,63.51437085771269]]],[[[-90.6607101074956,63.4901254810147],[-90.68094940800599,63.4819377741623],[-90.7058847905273,63.4817180516895],[-90.7369497059022,63.49218430846871],[-90.75009826136018,63.5074442392486],[-90.7260698735979,63.5278791620171],[-90.6900091229151,63.5251779092076],[-90.6591819459904,63.5129530837491],[-90.6607101074956,63.4901254810147]]],[[[-82.6108208794213,63.0939399157324],[-82.5942643875083,63.08355081112],[-82.6038169415027,63.0561262824169],[-82.6381541073353,63.04428113225699],[-82.7071625996147,63.04861623219669],[-82.7190193089504,63.0727096907846],[-82.6503145803584,63.09642804156],[-82.6108208794213,63.0939399157324]]],[[[-91.86681413323339,62.8138064387838],[-91.89301223352219,62.79604791879749],[-91.9193904529884,62.799687455190394],[-91.9451520007092,62.8095719711046],[-91.9592061807986,62.8364510088328],[-91.9511233279048,62.8503865195901],[-91.91435673641388,62.8496842425928],[-91.8882540482689,62.8429188450815],[-91.8699625180205,62.825343178229595],[-91.86681413323339,62.8138064387838]]],[[[-83.6562718273585,62.16382245124429],[-83.693300111884,62.17061840321739],[-83.74273873222678,62.201399058258694],[-83.7167472880269,62.288386321903296],[-83.723674789584,62.330697724252296],[-83.7499404120125,62.3741147690464],[-83.9036667278145,62.45265102779041],[-83.8887307848422,62.50304397275949],[-83.6862179963473,62.617382645110695],[-83.60946923840979,62.6735702030495],[-83.4965640753772,62.844198301707394],[-83.2940605879402,62.97694034803781],[-83.238878696934,62.9923374038533],[-83.1797811481614,62.98882075072619],[-83.13341882122388,62.9160516424131],[-83.0805103068057,62.89419787092329],[-83.02313438235599,62.8860502592378],[-82.9075544021924,62.9023101903139],[-82.7799031799739,62.983109659935494],[-82.7358519375453,62.994370688055994],[-82.6276056208873,62.9875671256867],[-82.524192497786,62.96698286361789],[-82.4341275344826,62.9658746235218],[-82.3899698411411,62.977039227357],[-82.3605803488714,63.003170715144],[-82.2376015065152,63.0372116730321],[-81.8833382345103,63.0135731014339],[-81.8298421404737,62.967835763195],[-81.8400344163631,62.94046894859479],[-81.92247204045069,62.8806122041131],[-81.9342162439345,62.8486789598733],[-81.9182911455409,62.81019478229219],[-81.9316727189762,62.7737047690398],[-81.9759180924667,62.7346375796977],[-82.08830941846979,62.672118274698995],[-82.3923929551701,62.5428104874853],[-82.683242171386,62.3562573367218],[-82.8155691873443,62.3133459170701],[-83.0243852962657,62.214489708532696],[-83.0878552781996,62.19976085964879],[-83.12626029673419,62.2021188156556],[-83.1603233614456,62.218184118057295],[-83.1679476854017,62.25593543699839],[-83.2073727216658,62.2862963366321],[-83.252639350114,62.2983548904619],[-83.3889566618318,62.3018556932006],[-83.5200399439434,62.258346910049],[-83.6027582470982,62.1793423442222],[-83.6562718273585,62.16382245124429]]],[[[-79.6086031147434,57.8489327361145],[-79.6298098434017,57.8280198594678],[-79.6538480664695,57.830650946533495],[-79.6715714857498,57.841297202485],[-79.6858403421267,57.85314756731789],[-79.6566744723962,57.86975742863089],[-79.6290016430867,57.865148255641394],[-79.6086031147434,57.8489327361145]]],[[[-79.71710593448348,57.548252082368904],[-79.7081791534158,57.536726700766394],[-79.7106391063146,57.52458186279679],[-79.7198874416393,57.51456183919571],[-79.7234375322659,57.48736556859039],[-79.7134031463978,57.474541440341895],[-79.7182961553536,57.4626651221016],[-79.731457068202,57.4523861561399],[-79.7532913076808,57.4520211884867],[-79.7725571626125,57.4610246452735],[-79.7891181785248,57.4704181769128],[-79.8103028808156,57.481004370807],[-79.8278584602805,57.5035994825633],[-79.81429283840029,57.5117757845588],[-79.7985530332875,57.525229698754],[-79.794223424307,57.5419962911548],[-79.7773723884255,57.551881163349194],[-79.71710593448348,57.548252082368904]]],[[[-79.840366581176,57.42252008683529],[-79.817759847215,57.4128747924714],[-79.8083892879232,57.401510907924],[-79.80904388530469,57.390552859616896],[-79.819303510143,57.377885968216],[-79.833495200886,57.3711630920907],[-79.8529887987499,57.3732884262376],[-79.86385522295329,57.3841213868811],[-79.8768957807659,57.3958792350245],[-79.8714053027216,57.412514476264],[-79.840366581176,57.42252008683529]]],[[[-79.5781879623682,56.85165422197],[-79.60649894345019,56.8276261084164],[-79.6285186901576,56.8346399222355],[-79.6495202759104,56.8476018277608],[-79.6699593643735,56.8756608320594],[-79.6645367115409,56.8993184680249],[-79.6563045906098,56.9128074873718],[-79.6362959794822,56.9143672422146],[-79.615556576856,56.9075014519747],[-79.5781879623682,56.85165422197]]],[[[-78.2832917423906,56.6596402834267],[-78.2964366471217,56.64642147637059],[-78.3152373532939,56.6350302272946],[-78.3383672805251,56.6294884312741],[-78.363480624376,56.625707054317495],[-78.3789402283677,56.63139221461319],[-78.3765213299548,56.64326425804129],[-78.3535822976008,56.6610036522014],[-78.3232913909923,56.6702377267718],[-78.2960673184542,56.6661520499887],[-78.2832917423906,56.6596402834267]]],[[[-79.8677120421358,56.9122566365369],[-79.86645416875848,56.9277930346812],[-79.8469190557521,56.9352871105606],[-79.8058282076977,56.9314618811808],[-79.7346119939249,56.89221416049319],[-79.7197761364272,56.8721059899721],[-79.6969277198622,56.82938676801909],[-79.6980348703056,56.7923638646808],[-79.7100389879014,56.7830886575169],[-79.7292376674455,56.77991934190229],[-79.748612250511,56.7866210891677],[-79.76434662031309,56.79897854800439],[-79.7625282044886,56.8099426859669],[-79.7666030963747,56.8486645317261],[-79.78654228904,56.8644951519095],[-79.8557424420168,56.8849104483967],[-79.86906932608,56.89545656418209],[-79.8677120421358,56.9122566365369]]],[[[-77.9962739948227,56.5480802522836],[-78.023934446594,56.5385935118085],[-78.0497408483319,56.542567948780594],[-78.0589664993406,56.5528474218686],[-78.0646233357371,56.5649656735336],[-78.0497338463939,56.57985592876779],[-78.0285639521139,56.58711615471379],[-78.0069522621042,56.5798576714818],[-77.988242116359,56.56610610177379],[-77.9962739948227,56.5480802522836]]],[[[-78.6829825015558,56.6273062108159],[-78.7009415039615,56.6169963633741],[-78.7281625829493,56.6080867929179],[-78.7537531805215,56.5997393606435],[-78.79369260522719,56.6029647817041],[-78.8257234950639,56.6151170993379],[-78.810970560605,56.6369159045098],[-78.7466271566453,56.652068518421494],[-78.6817117579729,56.6458528956975],[-78.6829825015558,56.6273062108159]]],[[[-79.8799701538214,56.7149880382065],[-79.9162506478958,56.7323183964246],[-79.9198369470359,56.7466087996614],[-79.890166222849,56.808996714139795],[-79.8573961318387,56.805949735254295],[-79.8287972579952,56.76605519418689],[-79.8411253380119,56.7299782956376],[-79.8799701538214,56.7149880382065]]],[[[-79.1061318370549,56.6499505097916],[-79.096801850515,56.6252914394983],[-79.1105076458165,56.6155012024649],[-79.1272415273105,56.6083380771382],[-79.1625630487112,56.6094002668895],[-79.19346378919339,56.6144944290463],[-79.21219097040968,56.6257638498885],[-79.2208365489117,56.6381426472151],[-79.20952442954889,56.6588430472158],[-79.1732566469018,56.6599648176447],[-79.1061318370549,56.6499505097916]]],[[[-79.542298613914,56.5946613664489],[-79.57174672358408,56.6067906430104],[-79.5400888260301,56.6735927832647],[-79.56865828755299,56.73684771145949],[-79.5444413129919,56.7578162968077],[-79.5199124017998,56.7554709160157],[-79.4819378207201,56.7192346195688],[-79.4714020929393,56.65303268432499],[-79.4824348989509,56.62150204411079],[-79.542298613914,56.5946613664489]]],[[[-77.9816236416284,56.25050809859629],[-78.00939656765088,56.2348956430958],[-78.0295091291206,56.23827561603159],[-78.0459852776023,56.2429144942585],[-78.0584697733703,56.249623837566894],[-78.0542212050396,56.2628185003278],[-78.0240137884311,56.2753380627794],[-78.00095618956668,56.2715883476572],[-77.9816236416284,56.25050809859629]]],[[[-79.57025138033399,56.2273961424756],[-79.58597318634389,56.221686789474596],[-79.6127584020962,56.2233361331538],[-79.6169250125589,56.2474370322551],[-79.6137985905934,56.2741868742896],[-79.60111828680309,56.312368649496],[-79.5789578584235,56.34600204223519],[-79.5512950858928,56.3588539722305],[-79.5250847501136,56.3586564825277],[-79.5117884559143,56.34810583140419],[-79.51964964695898,56.3253631940237],[-79.5373314163752,56.3092995311035],[-79.57025138033399,56.2273961424756]]],[[[-78.8299501337079,56.1003606021667],[-78.8813419122317,56.1195737518668],[-78.8684226136994,56.155531733252495],[-78.7941607260421,56.222515732779],[-78.7547934870517,56.3536571484891],[-78.7139206828187,56.4194030827486],[-78.6813679168806,56.4393785763748],[-78.6489821020878,56.436052902650594],[-78.6184820228023,56.4049350687667],[-78.6664523436237,56.2746695183412],[-78.6526749713564,56.1753560639643],[-78.6657999000874,56.13942316054139],[-78.7816814054869,56.118720423846995],[-78.8299501337079,56.1003606021667]]],[[[-80.0328143628524,56.2048066838739],[-80.0032789950036,56.24741638759979],[-79.9477026203505,56.2729128695738],[-79.9284114829919,56.27400719338729],[-79.896597678338,56.2788107155374],[-79.869717860408,56.2869346979129],[-79.85290879587139,56.2984476045301],[-79.7907121254282,56.334444193063],[-79.7406254218843,56.3343553281673],[-79.694032312195,56.3485377327702],[-79.5781935361202,56.4910404540279],[-79.5588340454837,56.4984940047468],[-79.5294639034223,56.48636555754219],[-79.54037906938339,56.4548316762193],[-79.559719177809,56.447380667984596],[-79.60883871688009,56.3776287818071],[-79.6094300420677,56.367336295167],[-79.6233990050221,56.3506330308767],[-79.6387324595679,56.3120564745604],[-79.70846038115,56.2568686566344],[-79.9157017515065,56.160195971325194],[-79.9488448532704,56.1354080343727],[-80.0177579336597,56.1278978541041],[-80.0404454340954,56.134657006745],[-80.06676339460448,56.155693537236296],[-80.0328143628524,56.2048066838739]]],[[[-79.04647635439248,55.8680096361446],[-79.0135297980627,55.9314061091535],[-79.0022606354652,55.9654619107252],[-78.9817571340041,55.9855435090413],[-78.960690796099,56.028700467703196],[-78.9295383157904,56.0337549407257],[-78.91289056368579,56.0198879007871],[-78.9636267043248,55.9208483008055],[-78.9846325931891,55.8858254580868],[-78.99892106352078,55.8562582223684],[-79.0034841278557,55.8286642663232],[-79.0132169580812,55.7910561008624],[-79.0331372816076,55.7802950281844],[-79.050389770693,55.77609140660519],[-79.069411955675,55.7839735537294],[-79.0783660136403,55.7975360277256],[-79.0741166686319,55.8100863879044],[-79.0685697639152,55.8253606731808],[-79.04647635439248,55.8680096361446]]],[[[-79.0475192794001,56.11763626298709],[-79.1011859114132,56.0393021493363],[-79.1219765205039,56.0274149695891],[-79.1440505087554,55.9644445209899],[-79.186900497236,55.912864956581494],[-79.2362656380112,55.88985605962049],[-79.2651419015275,55.9020328479758],[-79.2495590648321,55.9470271560291],[-79.1701125595858,56.0322229244855],[-79.13682318313928,56.1033954575295],[-79.1264206784521,56.13145555019689],[-79.1266167916504,56.1468774126836],[-79.1521775594019,56.1598348458014],[-79.1800025541978,56.1513127657481],[-79.2058093488629,56.1117608564303],[-79.228424635186,56.051918797645],[-79.2627629497655,55.9988817284998],[-79.29194705699,55.9624490218659],[-79.3165730920886,55.937252936497394],[-79.3413500016087,55.9075491511853],[-79.3592579830096,55.870713207697996],[-79.3926084939124,55.8483926240513],[-79.4382897890333,55.8344464641081],[-79.4801546805269,55.8300816174884],[-79.5425781946021,55.8383004508035],[-79.5932261670149,55.8365017238838],[-79.6800248423016,55.7944287916071],[-79.721149602176,55.7744425124661],[-79.7560640435124,55.7684919677685],[-79.7690440675386,55.7790312134443],[-79.7491055169875,55.8143135495549],[-79.6264910490422,55.909476186308],[-79.5257834653597,56.0113632650571],[-79.5135064694952,56.0473890019367],[-79.54256928852429,56.0595116450198],[-79.6221053594276,56.02067508287949],[-79.77365360513949,55.9142915297984],[-79.8529957901638,55.8242173672414],[-79.8879331046202,55.8182329128151],[-79.92407682400528,55.85883003028519],[-79.9822038151084,55.8828894974974],[-79.9718778962187,55.9144520651211],[-79.8899509630506,55.9625159778219],[-79.7601067003323,56.1036461995317],[-79.7203393481037,56.1231113729728],[-79.6935952488992,56.1531169610694],[-79.5447274535324,56.1992977226749],[-79.4730981987476,56.2621683376189],[-79.4456134535978,56.3898282232538],[-79.45768130460048,56.45151278019419],[-79.4291475375939,56.50927280258139],[-79.39665557210068,56.506122316562],[-79.36868694078069,56.466153876142],[-79.4251465353726,56.2348546122372],[-79.4360224970195,56.2191698659431],[-79.4623055911494,56.1971539757957],[-79.4933212281585,56.1819352677294],[-79.5220594933675,56.1629762013375],[-79.5450832030574,56.1489229084858],[-79.5520740182768,56.12817519281569],[-79.5338119545176,56.1177514980173],[-79.49731340558408,56.1219188961579],[-79.4666098601159,56.1427298119528],[-79.4497636266239,56.169299649441],[-79.434388766367,56.1765725381025],[-79.3970029473628,56.1889611677455],[-79.37346334782168,56.2133690876494],[-79.3472887624546,56.265887854091496],[-79.3340021439194,56.2889619029004],[-79.31386806224,56.3118074415864],[-79.2956724553988,56.3637184648119],[-79.2536822247367,56.4828488596923],[-79.25093524506599,56.5617574085612],[-79.2282712146867,56.5781641515801],[-79.1859959923705,56.5786641062176],[-79.1711434819621,56.525957178363],[-79.08176199958599,56.4938059832565],[-79.0362612128084,56.43336233529449],[-78.8969965781519,56.4007312655531],[-78.8630646510307,56.3786562888418],[-78.8485968876122,56.3492261618146],[-78.89087855153518,56.2090637390256],[-78.9094823529404,56.187064607368],[-78.9169377655464,56.173381046365],[-78.9406153374316,56.14520143249939],[-78.95380184857,56.1132677569628],[-78.9806560109504,56.0553239467965],[-79.0016483358654,56.0151099798308],[-79.0267810440972,55.9829249225187],[-79.0464952600444,55.94926255386109],[-79.0666956042391,55.9106367485325],[-79.0950672821978,55.85540495459139],[-79.1204572235162,55.8441770734406],[-79.1375116992986,55.8461878267836],[-79.1542647819365,55.86740594383949],[-79.1317227977943,55.9157980774043],[-79.09589298338048,55.9709982037815],[-79.0742990808511,56.0203489388119],[-79.01960100398729,56.08086522441099],[-78.9934374237581,56.1372224563135],[-78.9658075540832,56.1898904495123],[-78.9262364532303,56.3198063358339],[-78.9456139615055,56.3357397364259],[-78.97955350427,56.3344972773943],[-79.0324850186643,56.1395140676144],[-79.0475192794001,56.11763626298709]]],[[[-79.1365994743059,55.7240907728121],[-79.1017257926723,55.7121678562264],[-79.11300762044749,55.6841286386138],[-79.1384075198077,55.6677606492038],[-79.1580882713653,55.6600885333362],[-79.1775914189547,55.6611406642939],[-79.1859826215652,55.6733768655278],[-79.1728793652286,55.7005768083012],[-79.1626661222778,55.7149948207087],[-79.1365994743059,55.7240907728121]]],[[[-79.28015124236019,55.7913917823645],[-79.2673491057185,55.7998731220896],[-79.2243344106016,55.7919040447489],[-79.2127143772042,55.7727524434466],[-79.2295248597717,55.7584792704802],[-79.2478574292437,55.7431341853807],[-79.2521962199246,55.72114994381119],[-79.2446254603919,55.7040165843856],[-79.2333307570983,55.679573270981],[-79.2464658170495,55.660498765596],[-79.2641147948577,55.6550740717099],[-79.2924030899026,55.6646352095968],[-79.2976203554129,55.6877345784868],[-79.3090652388721,55.7146852158511],[-79.31957310109028,55.7440239313495],[-79.3100821210423,55.7715437183276],[-79.28015124236019,55.7913917823645]]],[[[-67.51710219398709,66.3090313915889],[-67.52483528927358,66.2902737803107],[-67.5362064153773,66.280154049045],[-67.5510368806864,66.2716854779938],[-67.582363787214,66.2746074632332],[-67.6078948221868,66.2874593613942],[-67.6028437617166,66.306225588593],[-67.5814300482388,66.3158068273316],[-67.5379354414086,66.3141782075584],[-67.51710219398709,66.3090313915889]]],[[[-63.77589677036989,67.5265190110593],[-63.8189426531135,67.5336804390216],[-63.8457602902284,67.5939496146153],[-63.8132102262059,67.6393060929661],[-63.759064035856,67.6506371955694],[-63.6457096485231,67.6266943704774],[-63.6249179341993,67.5520867731325],[-63.6466273988339,67.5354020315356],[-63.77589677036989,67.5265190110593]]],[[[-63.681605272409,67.4901286215706],[-63.67396672829889,67.48065343234859],[-63.6702983409325,67.4614051100605],[-63.68686618143389,67.4525981040984],[-63.7258111899601,67.4495472620226],[-63.751944030650996,67.4526054614112],[-63.771956949425,67.4663636353127],[-63.7775722823165,67.4842599826867],[-63.755672005903506,67.4937955621859],[-63.7254756561388,67.4967637182868],[-63.681605272409,67.4901286215706]]],[[[-63.68197115019299,67.3385306873573],[-63.72159915268689,67.3272506761398],[-63.752393742119395,67.3362410565206],[-63.7707373135291,67.3480159614773],[-63.7712983838513,67.363303179958],[-63.7418113367707,67.3815614738649],[-63.732236099009995,67.3916352632715],[-63.7114636305925,67.4097986758672],[-63.68164702513399,67.4094310096268],[-63.6604022711599,67.3903615266991],[-63.6686878435282,67.3749883559323],[-63.6572871265149,67.3644630704516],[-63.68197115019299,67.3385306873573]]],[[[-63.5845164265321,67.2913577410282],[-63.6323487807801,67.3146629981176],[-63.5732998220181,67.3503922836522],[-63.5197159749301,67.3616533869984],[-63.4451880033757,67.3388634639117],[-63.3378929384952,67.3612923212891],[-63.2578632630217,67.3527230739825],[-63.2367968894582,67.3389452107804],[-63.26397668776999,67.31815315981999],[-63.344275008040796,67.3064414225899],[-63.5845164265321,67.2913577410282]]],[[[-75.1592068013898,83.0823559236822],[-74.8165416931026,83.0699895879363],[-74.3724636548909,83.0130247760725],[-74.0246071278073,82.9236418893927],[-73.9644214062243,82.8654709154987],[-73.8218026442998,82.8242900743856],[-72.925309237029,82.7416556462261],[-72.3775755158393,82.6311555543414],[-72.2318403731416,82.619573457514],[-72.0935803557079,82.654358388811],[-72.149172584243,82.6722011671136],[-73.23190036870909,82.8258120482854],[-73.5308073982787,82.8888709746636],[-73.6955047024321,82.9615339544704],[-73.6041996913755,82.99352690563998],[-73.34335897035328,83.0188036953915],[-73.0529827957124,83.1040680799378],[-72.8616837230093,83.1167904315413],[-72.657445956114,83.10847554463],[-72.1792630627118,83.1142718519296],[-71.9420357659962,83.10425067103289],[-71.94551002275969,83.0427696111004],[-71.830305519229,83.0069883753596],[-71.3375678621829,82.95957579640499],[-71.0952177841649,82.9177136344616],[-70.964055521357,82.9117251088589],[-70.8217923746649,82.9206800249236],[-70.795669859379,82.94014727635168],[-71.3686765261899,83.0794603943138],[-71.2354812520117,83.1200094468892],[-70.7282094397137,83.1439402993697],[-70.362859071449,83.1480859363606],[-70.0106284108099,83.1370065420044],[-69.807418369447,83.1170731751239],[-69.6446330636794,83.0312130166925],[-69.512634336607,83.0248406032589],[-69.2185233440167,83.0313700632857],[-68.98833279785879,83.0200002125024],[-68.8069067670574,82.9847559603036],[-68.6115112338679,82.9853552419437],[-68.31703557717178,83.033332843715],[-67.9594159142516,82.9937925802472],[-67.84533168722949,82.9930831856993],[-67.5651755056144,83.0152337651524],[-67.2734048505984,82.9996406718133],[-67.1461166103208,82.982170718775],[-66.7204745052322,82.99070523047808],[-66.4956077499797,82.9782158103554],[-66.4086181806597,82.9413886397905],[-66.5503973092845,82.8961466091074],[-66.8506769699014,82.84924795882849],[-67.48311635471379,82.7837105393397],[-67.6765883527403,82.7520875267611],[-68.3555538716643,82.6993217736682],[-68.3714052141208,82.6739444144621],[-68.19980447692,82.6699845126395],[-67.20749129388639,82.7261689455181],[-66.4156219043705,82.803354919492],[-65.7463478080579,82.8927512744344],[-65.5439248876141,82.8755274199785],[-65.3735925012542,82.8225169873307],[-65.213509960148,82.8236548188695],[-65.3151786430826,82.9210423167421],[-65.1882048383603,82.95113944114898],[-64.8884904631149,82.9655948397547],[-64.6416965994022,82.9399265403938],[-64.5742015199373,82.8547926670372],[-64.44894663195589,82.8200281938002],[-64.2025562843153,82.8317197138708],[-63.90399804722819,82.8997798306575],[-63.75408130074529,82.9066416148783],[-63.5869617149037,82.8905943789887],[-63.546351047276694,82.8553133785628],[-63.76653604230909,82.78780565726218],[-63.6342416353503,82.7466543440888],[-63.232291187484805,82.6876107427804],[-63.078237910843505,82.6172585578567],[-63.15869943888729,82.5462562418526],[-63.286426292688695,82.5167267897963],[-63.2528250769298,82.4980970185216],[-63.0516655718869,82.5007699653955],[-62.7038342819871,82.5973107165746],[-62.5588924590796,82.6038123462834],[-61.97100845983869,82.5627916573125],[-61.56369943817949,82.5502979303211],[-61.148541289403596,82.5145620352346],[-61.062601145686,82.4915631900413],[-61.02131156151349,82.4333034247954],[-61.1892168152649,82.3233196093273],[-61.376363908037895,82.2819376777968],[-61.64549715247381,82.24673872791219],[-62.170478962439404,82.2028937377864],[-62.2758701135683,82.1612077111322],[-62.213700285406,82.1072403912076],[-62.390214821559795,82.0654486500265],[-63.35051593816849,81.91744020606218],[-64.0944211178556,81.8245801197668],[-64.2870126764201,81.7735546646025],[-64.4160352179781,81.76651471356749],[-64.5788572576463,81.77793096584088],[-64.70478696437519,81.8457294276395],[-64.7870899994037,81.851392749681],[-65.03860287569428,81.82038650575488],[-65.565656286062,81.797237615537],[-65.5873994189771,81.77204934760078],[-65.3841722613045,81.7530232576943],[-65.3603691833742,81.7407349643802],[-65.4215817109417,81.7235497544012],[-66.0504121919135,81.7071628832686],[-66.87138739640528,81.6812613757664],[-67.8115524906709,81.6352820432042],[-68.0860344985938,81.6312024036708],[-68.5120888846459,81.651717310566],[-68.9554435127739,81.68830396609118],[-69.0376943978936,81.6826956465853],[-69.0776444388408,81.66942813182519],[-69.02007333643358,81.6452892225087],[-68.95263436533719,81.63878247991951],[-68.7434553014171,81.6186001683889],[-68.6871118025984,81.5944225527408],[-68.793610948657,81.5591317283298],[-68.7655064920283,81.5470479894779],[-68.5069765621274,81.5367147337495],[-67.240957667587,81.5784723004638],[-66.8880929663251,81.5663189719896],[-66.8245153225306,81.5358217987488],[-67.0627938822865,81.4723096971713],[-67.97965409454629,81.3945642638784],[-68.38345182916288,81.34493580689247],[-68.8249519253563,81.29067356950269],[-69.9484866352487,81.1768935978408],[-70.073429820808,81.1532977796298],[-69.8523237051986,81.0887084524007],[-69.7136588596441,81.1062323796351],[-69.2240822585349,81.2163927794567],[-68.311148962025,81.31615503373429],[-66.7848683763698,81.4383073278572],[-65.0947377247149,81.58894534026298],[-64.6901799437888,81.6086831623356],[-64.5458014031657,81.5930567009353],[-64.5013579486401,81.5684090211632],[-64.7765959200831,81.4915963804226],[-66.2463845813449,81.2488606368965],[-66.46504498561629,81.2004874097583],[-66.9268309461173,81.05295817977158],[-67.6248049498522,80.95327610667368],[-67.8797271558813,80.8553723706501],[-68.5743963230826,80.713954157485],[-69.0068318950405,80.5970743839435],[-69.2460066144837,80.47307773249449],[-69.2513262697465,80.42696572068358],[-69.3421206425687,80.39160823843828],[-69.4356869360303,80.3770750560299],[-69.6631767653734,80.3763293964977],[-69.8596166872229,80.399179406396],[-69.8816379379936,80.4468486906527],[-70.1239671143882,80.5545101736351],[-70.217022533085,80.58592321144849],[-70.4022458331228,80.5921145439112],[-70.4574991534526,80.5698346391057],[-70.1106663087588,80.4458363807967],[-70.12647650598349,80.3595609725582],[-70.0512845999645,80.3445454830411],[-69.6996130809305,80.31692645311739],[-69.6604885476471,80.2989597112165],[-69.6565429143841,80.2781244981272],[-69.7334778412325,80.2471091443982],[-69.903333783639,80.21184746918928],[-70.122130539257,80.1899806774063],[-70.5953157110314,80.1994139956272],[-70.8394321443517,80.1890301299337],[-71.3114068158103,80.1261501215911],[-71.5306823537409,80.1495518856198],[-71.79996938273189,80.2366730237612],[-71.9454452547566,80.245167362452],[-72.0138717164482,80.2389899050333],[-72.0392065365764,80.2150898965592],[-71.8346558639767,80.1472948622091],[-72.0105573447947,80.0916858729434],[-71.9106755836286,80.0756526529394],[-71.56902729932088,80.09591738796989],[-71.3782894222159,80.0843969465611],[-71.2289806168964,80.0905718616269],[-70.4271664036426,80.1427904103728],[-70.2024634202381,80.133601785961],[-70.1499797930052,80.1097270247455],[-70.2134634295301,80.0830646795483],[-70.37106632643149,80.0624449278185],[-70.5119366784159,80.0253962570529],[-70.9139195141963,80.01502052989359],[-71.0420678487182,79.98222865965138],[-71.33650887248,79.9342848845563],[-71.3957640393057,79.9074210914592],[-71.3218765084862,79.89268436281048],[-71.0684773855441,79.8870673824176],[-70.82794812300318,79.9228856115366],[-70.7314145543589,79.9065491609171],[-70.7819655126041,79.88425262185],[-71.2670067020573,79.8333166779583],[-71.5252443059259,79.7629769587187],[-71.8301011830407,79.7056738562983],[-72.135542411344,79.6837656726392],[-72.402993179972,79.6796108306315],[-72.6891827366043,79.6915008193456],[-72.809908705997,79.7086512945456],[-72.9323984887667,79.7510365802398],[-72.9247100196536,79.7808345911957],[-73.0106096050935,79.8159982451202],[-73.15126292036699,79.82399732311569],[-73.56573571837748,79.8120061221505],[-73.8243774441451,79.8262302465429],[-73.9782477287395,79.85464557916909],[-74.143753233607,79.8635314629988],[-74.3114836757779,79.85742315004569],[-74.5637282367384,79.8756738459146],[-74.6295543201346,79.8540966840656],[-74.51279306393019,79.832996702721],[-74.0411286190329,79.8078997924502],[-73.9260189102573,79.7866163319512],[-73.2477563706044,79.7489269097484],[-73.1329563512403,79.70212335891279],[-73.1077948212816,79.6100780107251],[-73.1606283772164,79.5829414254644],[-73.3939675407968,79.5410622855089],[-73.5742559543508,79.5262303091251],[-73.7463460208077,79.55600920135049],[-73.9385980536188,79.56171605117419],[-74.022584245807,79.5162781204515],[-73.9355978067479,79.48138684571069],[-73.9690134861929,79.46321577997368],[-74.0312277682671,79.4566683129273],[-74.2693320532982,79.4498200500558],[-74.4061822125893,79.4573070147833],[-74.7777440854118,79.502262019374],[-74.9385615154494,79.5107609622956],[-75.0004489120302,79.5040389683483],[-75.0479673256367,79.47662498971368],[-74.8607306014779,79.41190409627409],[-74.89237405718609,79.3936448935613],[-75.0602594250217,79.3826094152715],[-75.6150426550243,79.4362155025032],[-75.9530683183968,79.50283355599478],[-76.1378481537377,79.51192157770748],[-76.3682116442851,79.5082297700884],[-76.8085236622008,79.5291338488907],[-76.8604380312623,79.5117778859438],[-76.789296515266,79.49360906211439],[-76.1201149961083,79.4614558873682],[-76.0567058709837,79.4087286787785],[-75.888673876663,79.39042979365298],[-75.8045683263838,79.3663420530804],[-75.8796042017734,79.3353828280116],[-76.4708265359519,79.3497541725461],[-76.7606670754243,79.3686234329809],[-76.942265050435,79.4266184891873],[-77.0573982317264,79.43197890272478],[-77.14328057980148,79.39151299947969],[-77.0953350825889,79.37447445952029],[-77.1370019518307,79.34678669778188],[-77.1965516115744,79.3396771690973],[-77.3406258412918,79.3413828238558],[-77.6478602657641,79.3651767515131],[-77.7760223892787,79.3610456022368],[-77.8322027840237,79.3389209798775],[-77.7605489534834,79.3209593077852],[-77.3723242280529,79.3033818215912],[-77.3403459288849,79.2920495845823],[-77.3810574591712,79.2643363027846],[-77.3332627459132,79.2473369666971],[-77.1677294966079,79.2445728256171],[-76.8786914838754,79.2753826365293],[-76.4958856898524,79.2866320231502],[-75.9075072319541,79.2574101465347],[-75.4641050449625,79.2743856977763],[-75.2837519629572,79.2649595309269],[-75.0972277193371,79.23020690932209],[-74.9626850362072,79.2230033934232],[-74.639120057076,79.2403445669172],[-74.5271275601663,79.23419454233489],[-74.49821967237209,79.22261885917338],[-74.6997175938785,79.1339607718114],[-74.5430368626403,79.0554701769896],[-74.7282610796749,79.0458218993582],[-75.4802935758827,79.0864299574004],[-75.9276077087324,79.1840374718339],[-76.399573485602,79.2076792584836],[-77.2268457625758,79.1881375375008],[-77.72121004089098,79.1961009713581],[-77.8313217585669,79.1862971952779],[-77.87996294331099,79.1688004804612],[-77.8478394891568,79.1575172804854],[-77.5775167971968,79.1452409899392],[-76.7075885073307,79.1485677295279],[-76.2374486450311,79.1253629818562],[-76.14013936911239,79.11056140338688],[-76.1019711099761,79.0888166602912],[-76.1305983737247,79.0704579985581],[-76.2408467867144,79.061175516714],[-76.6246818899654,79.060501169624],[-77.3871707326857,79.028044987174],[-77.9256163174335,79.0675672322181],[-78.5110740179626,79.0737562005634],[-78.5907068134527,79.0673760742879],[-78.615231779466,79.0488123752408],[-78.5217434259067,79.0300621619101],[-78.14564182966059,79.0282720746185],[-77.7444532022528,79.01015049894349],[-77.6434344077293,78.980897574193],[-77.6286906930342,78.9408467764849],[-77.8700003785776,78.7651968138558],[-77.8389197145778,78.7539292848925],[-77.71116535668048,78.7627134139923],[-77.62319271472438,78.7930052164406],[-77.44037997468709,78.9074195711284],[-77.3086956629089,78.9504448651303],[-77.0343267285263,78.9767605574839],[-76.6685826749633,78.9836058475653],[-76.1787333731658,79.0085309898235],[-75.6860378142596,78.9880493758627],[-75.5905593249415,78.9730999019295],[-75.685336221202,78.9433691411787],[-76.1209696260627,78.8917266089439],[-76.1769777938685,78.8550154832593],[-76.0390908486535,78.85284297030088],[-75.6699518976487,78.8929619615467],[-75.211060954171,78.9130428674289],[-74.9928882804454,78.9011122394097],[-74.8345721253476,78.8674614457178],[-74.7119059687216,78.8556200487143],[-74.6273876023351,78.8209695359424],[-74.680566298291,78.6746126024187],[-74.59941282681459,78.6102244456121],[-74.6512277900841,78.5783703658304],[-74.8361537987037,78.564100540311],[-75.0765080166447,78.5727389718327],[-75.2961013874671,78.5651484292419],[-75.45875247327999,78.5344640764258],[-75.5856802408072,78.5265641392046],[-76.1869217277129,78.553871665957],[-76.3694992736703,78.5387231535834],[-76.4029039816913,78.51576930340718],[-76.29570025331428,78.4953536868508],[-75.6691212594573,78.4716843992704],[-75.4443880270314,78.4543557543197],[-75.1785827585489,78.4196365167554],[-75.0537547981401,78.3827685688035],[-75.0686957574499,78.34391345760639],[-75.3259495461504,78.2940694703429],[-75.4569664350245,78.23705250935949],[-75.59436652946479,78.2200117960362],[-75.7044347291681,78.2211996027473],[-76.0845276868555,78.25193566788779],[-76.4027146083401,78.2640483446255],[-76.59349567529,78.23959197374919],[-76.6972705823892,78.1809716596263],[-76.5781315745905,78.1549946004658],[-76.3308042726405,78.1418133064908],[-76.0643222257106,78.14217611858318],[-75.7505451390632,78.1594629794751],[-75.5450452140424,78.1479500696243],[-75.5175273762432,78.1364959712267],[-75.5647381602268,78.1045235896157],[-75.7475340467571,78.07029373042359],[-75.8405846320602,78.0211355404825],[-75.8944048078571,78.0142594387539],[-76.0434057051818,78.0175899873534],[-76.0915484636279,78.03011419377738],[-76.2955958676597,78.0412634387236],[-76.3900869183782,78.0365136611815],[-76.5569440297021,78.0109797357092],[-76.6384970504037,77.9513136650742],[-76.8319285849453,77.9369821768345],[-77.4169884081909,77.9378137424194],[-78.09015987997059,77.97120444306],[-78.29339964732759,77.9467170108427],[-78.3495007647634,77.9004760768427],[-78.2758137711155,77.8724857800952],[-78.0639672553749,77.85242236271618],[-77.9854789390711,77.8289872718963],[-77.93828711266589,77.76300137152738],[-77.9884190102466,77.6871674360556],[-77.7825519244618,77.61318783433869],[-78.0091195607423,77.4778298716417],[-78.2764207446234,77.4276504964647],[-78.4860878850319,77.3354714367624],[-78.6591595842218,77.30979001443],[-78.8499892319509,77.304386362682],[-78.90751516745819,77.3266330154582],[-78.88701705796879,77.3451490731291],[-78.95500799469109,77.3581298058991],[-79.0587024346997,77.3386780663177],[-79.1381337781595,77.3034577326688],[-79.2361363711475,77.2885757273664],[-79.32401866549459,77.2829324456938],[-79.5970524737121,77.29546348400969],[-79.7968132250007,77.28016381761519],[-79.91391915487559,77.2853782918073],[-79.9630398779233,77.2972630854024],[-80.48115549157428,77.3099277405181],[-81.032870995911,77.3520526083962],[-81.1952317766871,77.3972514928926],[-81.23967890757248,77.437721636827],[-81.21793129598089,77.4610676518695],[-81.2713464481019,77.4921990752015],[-81.389212013196,77.52096804989279],[-81.5404284263118,77.5364268735209],[-81.6665995518748,77.5798756188563],[-81.6538561801851,77.5939077394923],[-81.7640176279841,77.6560367017611],[-81.8851829311765,77.6604822257801],[-81.9061132324896,77.6370730159638],[-81.7288571369809,77.5338493673279],[-81.7674838922351,77.4676145262874],[-81.737975707893,77.4085123946993],[-81.5736514325735,77.3636070927404],[-81.3018726213872,77.3482265300551],[-81.2206647674658,77.3256705693947],[-81.2678309892168,77.2743233987127],[-81.3673744596883,77.2540684018334],[-81.5364576060959,77.2461630030061],[-82.0613622739293,77.2708290236882],[-82.11253233620619,77.2582307010578],[-82.1283805005293,77.23951049121129],[-81.941241220786,77.1987885683951],[-81.8987978827488,77.1778851664474],[-81.923379088142,77.1257115010941],[-82.01326671979739,77.09048485125498],[-82.0254312523662,77.0523422725098],[-81.990759660088,77.04621460580948],[-81.8590794133982,77.0605313188813],[-81.4971550404758,77.1769722110351],[-81.22376927706598,77.2338749109957],[-81.0655227721859,77.2517179110974],[-80.7486845493693,77.2435914862132],[-80.33708416744179,77.1874097739792],[-80.2777895781322,77.1654468358516],[-80.4321234632518,77.0897046221684],[-80.364065023263,77.0770717657363],[-80.2019676781735,77.0990968999774],[-80.0214682935731,77.1590607870248],[-79.964682078971,77.1953753362692],[-79.8876212178142,77.2113657821998],[-79.712971012934,77.2035168209493],[-79.5288219047636,77.22428555842978],[-79.3542044086089,77.21622315832498],[-79.25274314856189,77.19689131596698],[-79.0334984175259,77.098886162689],[-79.0731777099094,77.0618520959923],[-79.2374242948697,77.0015951198492],[-79.26654398041069,76.9738049305692],[-79.20497037834419,76.9562815009223],[-78.9389842109192,76.9434231631358],[-78.8837598649982,76.90177990660548],[-78.9035009601726,76.8832819759988],[-78.8477090079147,76.8610641644624],[-78.75838507439389,76.8517653173682],[-78.6152954223305,76.8738272850645],[-78.4089938239411,76.97063860819999],[-78.2033597079226,77.0284569467532],[-78.1304645375771,77.0393591619649],[-77.9019224771698,77.0274999126489],[-77.7902353072964,77.002081693617],[-77.71226473230548,76.7926968451645],[-77.8536632777771,76.6684502520872],[-78.0482117257805,76.6349307750431],[-78.1110648741925,76.5602526379268],[-78.2566991796258,76.5338421051136],[-78.3382352671413,76.4942884531895],[-78.4313549393493,76.4796867242164],[-78.5500009339421,76.4955862694083],[-78.5844482896056,76.5362978325665],[-78.5599449126596,76.5593719742658],[-78.6006014230114,76.57606378030418],[-78.6929876017786,76.5807816627936],[-78.7775281666331,76.5558879676415],[-78.8647879684376,76.4533346383638],[-79.1367777223811,76.3941288335976],[-79.2016593369877,76.3293937917111],[-79.25642698006008,76.3127043766883],[-79.442750478349,76.2976346364194],[-79.6152844660556,76.2963346946301],[-79.8048270213831,76.2569893086488],[-79.9724897186935,76.2600976005447],[-80.13389970660899,76.22894208764],[-80.1978840362344,76.24159091166878],[-80.3472831400119,76.243630639176],[-80.5201242094025,76.1983193570294],[-80.6533836045932,76.1753290566757],[-80.7659683296023,76.175518034202],[-81.0347973099817,76.1245814710057],[-81.0849848690178,76.1315831420745],[-81.0193880968314,76.1866375559819],[-81.1446587511757,76.2161619735828],[-80.9150438334328,76.3510691533394],[-80.8660458465871,76.4069037359287],[-80.8782309242192,76.4364152026843],[-81.0670406366628,76.4831418347525],[-81.2038209646436,76.5468393674139],[-81.31934169433059,76.54681075463],[-81.3895912073263,76.4869791362346],[-81.4872016749601,76.4620442413498],[-81.9090740650393,76.4837961915188],[-81.9385964013418,76.4945899241937],[-81.8854423823482,76.559965624439],[-81.9745372205002,76.5923577732466],[-82.274027282146,76.6519745117293],[-82.5316130346286,76.7433645255812],[-82.5941339251631,76.8130294266837],[-82.6746424769975,76.8351768817007],[-82.7190336741731,76.8030679734449],[-82.6820354999479,76.724746333148],[-82.44255996884179,76.6341899033558],[-82.1763401624463,76.5808530881089],[-82.2096531780638,76.51470815051259],[-82.1611855660008,76.4310022172758],[-82.1759071860677,76.41231234831318],[-82.2201398872212,76.4043864140574],[-82.4303367874665,76.4027497541457],[-82.64663012750988,76.3675275323278],[-82.7721318849096,76.3769345114158],[-82.9175736341792,76.4110220836498],[-83.061256980538,76.5794909316491],[-83.2849521735903,76.6688776568835],[-83.3421464001018,76.7236593023209],[-83.3218267728987,76.7518064763451],[-83.3942794848128,76.7590358568497],[-83.4389259759833,76.7509123780892],[-83.4889669434544,76.6805231623956],[-83.2724508116774,76.6059974898626],[-83.2294144569648,76.5324700714873],[-83.114203620177,76.4804373573234],[-83.1109024246873,76.4322871583851],[-83.20172416334658,76.4114440965129],[-83.2823560896614,76.4046329066124],[-83.4118451686068,76.4090684075803],[-83.6058598551739,76.4299900542734],[-83.7038561785771,76.4812069061168],[-83.88041715403808,76.5301059484281],[-83.9487528555407,76.5994368589586],[-84.08990180820598,76.6470323171131],[-84.1652829078425,76.6493654283683],[-84.2452239696083,76.5559377505837],[-84.1414159417379,76.480824657494],[-84.1535906467317,76.4620311168118],[-84.24606077653668,76.4361503392061],[-84.4153072950664,76.4077996728921],[-84.5950227643778,76.4227736040274],[-84.7208443556594,76.4647776075337],[-84.7137670888961,76.50766331142688],[-84.7872970412411,76.5433072137037],[-84.8837865619697,76.5412785472467],[-84.9341591879185,76.4565556015352],[-84.890407932975,76.4026665310784],[-84.7959990562625,76.3712291783191],[-84.41550664421628,76.3168105419943],[-84.369035347694,76.3010217391916],[-84.3807357965572,76.2822256054865],[-84.481315662639,76.27093503136669],[-85.3697297601766,76.2868968943046],[-85.6285243164339,76.3272336739906],[-86.1207674073478,76.3539548926457],[-86.3525421058411,76.3785726327259],[-86.40139892297,76.3940318653676],[-86.38766708524818,76.4223541478139],[-86.23623929880279,76.4617742634654],[-86.2197402145868,76.494810519126],[-86.34638429142939,76.5837402017675],[-86.4124611107396,76.60436177447528],[-86.5256607442956,76.6069257650733],[-86.5890610281431,76.5940170505876],[-86.5980842814888,76.5751222642045],[-86.4164530529205,76.5185000123815],[-86.4371075571361,76.4760050751974],[-86.65731758237449,76.40939019663709],[-86.66624326710568,76.3093987223416],[-86.74450399535289,76.3015966187559],[-87.0463920766183,76.379618229425],[-87.05464514420149,76.4036357638344],[-87.2227139076257,76.4499971467197],[-87.2592188127565,76.5413374305196],[-87.3669621679767,76.6006889917694],[-87.463357882066,76.5977792563722],[-87.4712142575339,76.57885632705968],[-87.37998961259149,76.524641957082],[-87.42826043413619,76.4540634020613],[-87.3840064898104,76.4245974355426],[-87.25088587361599,76.3838138978795],[-87.258883535051,76.3649047720052],[-87.497151719372,76.3314736510616],[-87.586064310459,76.3427064815537],[-87.617541710274,76.3575962472937],[-87.7104028499732,76.3593317902113],[-87.83270557787418,76.3329873276093],[-88.0077022227238,76.36467521868869],[-88.1902378567711,76.3773225684545],[-88.2224115547105,76.3921457071623],[-88.1748894051856,76.4723194918867],[-88.1884603085599,76.5392364530931],[-88.377966993857,76.6471226254815],[-88.3392885465768,76.756109001107],[-88.41575317118088,76.7573119708782],[-88.5037118404636,76.7253143916457],[-88.5503143729431,76.6450347890399],[-88.3373760515492,76.5464337293776],[-88.3164442424924,76.4984639376997],[-88.3462520200645,76.4132257788138],[-88.3917176055049,76.3901501703963],[-88.4896532980378,76.3774188370313],[-88.6153101756071,76.3936425532375],[-88.5855846536714,76.4836473339069],[-88.6121258786731,76.5173795429524],[-88.68423262495519,76.5279837706505],[-88.72493203392709,76.5190627769262],[-88.7386888106447,76.4764161827535],[-88.7286609307582,76.3905848395619],[-88.7890558922896,76.3771964843329],[-88.8635366137523,76.3782736832369],[-89.0585682382323,76.414311434071],[-89.1783175867441,76.4539823336076],[-89.2075761630776,76.4829192603524],[-89.4022723968522,76.52821188982999],[-89.368923743782,76.5801487100699],[-89.2567276707053,76.6406193472616],[-89.24960135383358,76.7309870888884],[-89.3439053184084,76.8035932372603],[-89.287572421551,76.8648093510159],[-89.1425591895565,76.8963157510765],[-88.7388585933943,76.943240094388],[-88.249389288185,77.0550676728871],[-87.8985401126235,77.0970101316479],[-87.3855164546499,77.0973728481334],[-87.2225580882686,77.1085951137896],[-87.06794433905418,77.1437858086591],[-86.9305518385747,77.1410301053264],[-86.7632045922319,77.1184682342488],[-86.6410191743751,77.1254486383097],[-86.6292666685852,77.1491015268904],[-86.681139504443,77.16454636021768],[-86.81872352401649,77.1674192298792],[-86.927678496035,77.1887641165251],[-86.9140971956369,77.21716743390408],[-86.7864580937812,77.2336787532668],[-86.7794987008421,77.2478782876987],[-86.8342232756732,77.2585665589983],[-86.9530025749484,77.2609712444198],[-87.025493978402,77.27675683981049],[-87.0142669605194,77.3004345002358],[-86.7772071939667,77.33390242041038],[-86.8100274088611,77.3489211959231],[-86.9894132530145,77.3525295066034],[-87.32788680066048,77.3160305852786],[-87.5227070903412,77.3291669777868],[-87.59212723268388,77.3542973593559],[-87.5276662005252,77.5012824792819],[-87.74756775385,77.5576838693665],[-87.7394129706964,77.5766602663521],[-87.9226827990912,77.627508895514],[-87.896750064989,77.689217428185],[-88.0607068605923,77.7922271907271],[-88.0409948197906,77.839721684098],[-87.9955568596159,77.84856609000589],[-87.7882382757244,77.8452074850878],[-87.6367873359943,77.85701420399438],[-87.2547576751993,77.9124919451681],[-86.7529050420059,77.9077344810817],[-86.5759175270874,77.8850078967446],[-85.9524546383706,77.76613889881828],[-85.8104537368853,77.72452588875728],[-85.8304643511905,77.6195307016771],[-85.73934697090588,77.4592341627068],[-85.6874494468519,77.4436153869679],[-85.521594911694,77.4491608431661],[-85.3842558439706,77.40739346184098],[-85.0051170372937,77.3976046347711],[-84.6284498142919,77.3537896924969],[-84.56887493054289,77.3521264817687],[-84.4998502220543,77.364585332706],[-84.4179276893368,77.39587515821],[-84.10610675993678,77.3772200125897],[-83.93371397201729,77.3913006499918],[-83.53629966341039,77.3790516575633],[-83.4044746316193,77.3652426819573],[-83.3144458185017,77.3767877326829],[-83.303682015852,77.3908816914199],[-83.586727274321,77.4479933386468],[-83.5656255030727,77.476206786896],[-83.2786059645436,77.5297111182138],[-83.065147965617,77.6432661254061],[-82.6892878594221,77.77072341078228],[-82.4007876719084,77.9589809243095],[-82.33867126827148,78.029361121079],[-82.1842502813379,78.0579167067352],[-82.1754286711558,78.091469167061],[-82.3427895418752,78.0971831083207],[-82.4808256145708,78.0873263607693],[-82.5461672848351,77.9880416756415],[-82.7134121064112,77.8921988461581],[-82.8635333473653,77.8392280223519],[-83.0935745997821,77.7116723323784],[-83.6506935449999,77.5269649247958],[-83.785066464221,77.5118310821484],[-84.1398427533895,77.5320088073634],[-84.5318366499255,77.5287582778211],[-84.5858579552418,77.5398627308944],[-84.6198110832273,77.5504048203659],[-84.57098020706239,77.5922868351526],[-84.3667404424707,77.6490624672396],[-84.3266221462812,77.6767724754162],[-84.2803684555184,77.7716265773576],[-84.3146652057687,77.7822074516361],[-84.4205393109054,77.7803519787029],[-84.4224866724949,77.717914845532],[-84.578334029863,77.7029895513192],[-84.651116921137,77.6569305130592],[-84.7215825768387,77.6444275638264],[-84.8465712738947,77.6429701202481],[-85.0640141973668,77.6582649332496],[-85.1914952322365,77.6855215923619],[-85.1523295782634,77.7469273166857],[-84.8215991560818,77.805609587038],[-84.81208752646118,77.81977187109369],[-84.846946436271,77.8302951086369],[-84.9706216955485,77.8335115534374],[-85.0860383944226,77.8172585804686],[-85.2096426477108,77.82037869234328],[-85.2654517208452,77.8313720229006],[-85.2443261359805,77.8644514209141],[-85.1700813279627,77.881807149549],[-84.44386521987049,77.8963942161587],[-84.3750603292841,77.9041196661224],[-84.3649628007043,77.9182702679707],[-84.4793943352035,77.9358351590797],[-84.8742284437309,77.9463238947652],[-85.1216811230312,77.9238128509086],[-85.3086793429031,77.9284551393245],[-85.3976829201199,77.9546282862053],[-85.3826807365523,77.9782729738298],[-85.2748406526281,78.0140637721524],[-85.0551900353894,78.0566590189526],[-84.8631505312147,78.0565811587594],[-84.7438408262369,78.0438709912993],[-84.62917013628369,78.0552774675035],[-84.4161892533288,78.0543714161586],[-84.2557215265454,78.0692176240279],[-84.213901379445,78.0969370698117],[-84.2490041960802,78.1075379177821],[-84.73340309629918,78.1205363335615],[-84.8112153001792,78.1321698970441],[-84.7882807305785,78.1652396524001],[-84.64130356973449,78.1902797841262],[-84.52855803761769,78.1969296798081],[-84.0625468956781,78.1842003256593],[-84.0130534982649,78.1924407832635],[-83.9986652529924,78.21130522826329],[-84.0940113259186,78.2284306651756],[-84.4519042377808,78.2430156275886],[-84.6748535269282,78.2344570438878],[-84.7107312501231,78.2450087130203],[-84.6939924064048,78.2686334901833],[-84.5780808927863,78.30892619085279],[-84.5369321194703,78.3656136851627],[-84.595533330547,78.4056561667333],[-84.5540885841931,78.4623573168119],[-84.439851672967,78.5268098131551],[-84.36849037106079,78.6213085894312],[-84.4052233381429,78.6319090868873],[-84.4931237118508,78.634188792045],[-84.605615303053,78.6033525974816],[-84.7150812602463,78.514638075315],[-84.9432698261896,78.2220871115609],[-85.2604463738807,78.1674381509444],[-85.3577555961326,78.1169409171071],[-85.4963987086252,78.1010321563804],[-85.848193320603,78.0851414750563],[-85.97461011214669,78.0879606059387],[-86.11388560692079,78.1053968461269],[-86.0777649844705,78.1669834674098],[-85.7075598849805,78.2787989432125],[-85.5888711628363,78.3289312666557],[-85.55848023834848,78.3762824270138],[-85.6386789634197,78.3877216949029],[-85.71241349864209,78.3749717861457],[-85.8456850748587,78.3010999948664],[-86.11917815005069,78.2062622418637],[-86.7840077514312,78.0903993466698],[-87.1688271271193,78.088077645006],[-87.2463001547204,78.1038473150868],[-87.2228845750119,78.15132112350369],[-87.12367398051168,78.1782627281326],[-86.922456995247,78.1936906201721],[-86.9125367504647,78.2126715812832],[-87.0166948731978,78.2194164400663],[-87.1708277691154,78.2126557166336],[-87.2490716690567,78.2284331770674],[-87.2802761814149,78.29605780005],[-87.2470219016349,78.36255644811469],[-87.0969848311074,78.4845220520773],[-86.815826377773,78.5561074485442],[-86.75620087048898,78.5837764255126],[-86.5929371685932,78.753483959247],[-86.5623759492397,78.76730525584539],[-86.3135890033947,78.80567176162229],[-85.7622695751404,78.8519436833479],[-85.1378500901272,78.92941005224068],[-84.8897324599894,78.9235428425938],[-84.4012515768014,78.8728525395976],[-83.376159734254,78.8401182412642],[-83.0476876388371,78.7724428909139],[-82.5204818774069,78.70292650424008],[-82.3580915604182,78.634763734526],[-82.1836893225941,78.604829487104],[-82.074686346237,78.60120047061689],[-82.0303006232565,78.6239443939543],[-82.1731978076924,78.6868432440344],[-82.14614166867979,78.71502386601868],[-81.9343656822959,78.7225211376051],[-81.88921838855069,78.7452491798026],[-81.9240716028266,78.7561207660416],[-82.1007303086546,78.76199506895969],[-82.2999701121305,78.7442775550707],[-82.7474539515364,78.8020097445039],[-82.8730653900658,78.83973052387078],[-82.8473022623037,78.8679830938099],[-82.7225900316503,78.8786904926228],[-82.472439172531,78.8757423033608],[-82.2219100415694,78.8968292197934],[-81.6415794780254,78.8775795492252],[-81.56508221232889,78.8846744747372],[-81.4864504540916,78.9159679668998],[-81.61216769580528,78.9736967416619],[-81.48942773542159,79.0909936226283],[-81.5851404329829,79.08937115043578],[-81.839067018286,79.0250028777782],[-81.96836159274208,78.9661742038847],[-82.24792271139418,78.9412957505438],[-82.3601727770687,78.9448753472113],[-82.52201824361408,78.9693456991648],[-82.92769350213779,78.9817234977246],[-83.3920636408056,78.9275783630818],[-83.688502344884,78.9310846448655],[-84.108446844524,78.9810470691275],[-84.4526526766648,79.0429773143375],[-84.39654006886019,79.1139453971685],[-84.2629679234618,79.1346971507025],[-84.0186881984549,79.1187146295087],[-83.5214199573985,79.0182498738575],[-83.2043575789299,79.00921908528728],[-83.1378731406485,79.0314774593473],[-83.6527510734557,79.1088957776171],[-83.802298354118,79.18061443733168],[-83.9213421190728,79.1789500151574],[-84.077984300146,79.2168678886207],[-84.18875867304769,79.31149277228249],[-84.5057563115122,79.4497561788288],[-84.60475131340509,79.4762743696453],[-84.8066177109237,79.49550434873949],[-84.9469245320759,79.5325109539793],[-85.184694436821,79.6343277674515],[-85.4310474903997,79.6975047353393],[-85.9825077745805,79.7520384303343],[-86.2034464356798,79.7899785817569],[-86.30761655482658,79.8931073161433],[-86.2472262702853,79.9450267100006],[-86.1347980008731,79.96223788155689],[-85.7803954581874,79.9651217653335],[-85.4155869028137,79.9481406885784],[-85.34864423498308,79.9370969714262],[-85.12609811144989,79.9323945600306],[-85.0576648258364,79.9550760983991],[-85.1664790875845,79.976732826975],[-85.7703161383793,80.0131790952195],[-86.1462457977687,80.0540789487787],[-86.3106998951037,80.1101132756702],[-86.4561273690097,80.2718299881376],[-86.416463172773,80.3290386324486],[-86.2278579003662,80.374004331141],[-85.9177397376917,80.3683965312275],[-85.2678337503299,80.2977824924642],[-84.7978782273225,80.2685485167442],[-84.46635443569039,80.2612042367853],[-84.00696446875028,80.27960273270209],[-83.8030283559733,80.2746844223263],[-83.3003089776726,80.1261787152205],[-82.9929521820324,80.0743203091025],[-82.6439103716118,79.9918108532674],[-82.2310023819934,79.9264051928112],[-82.0952683625277,79.8883121201615],[-82.0399169497947,79.8234096253127],[-82.0716341558279,79.770881495026],[-81.7185681244884,79.7064132739575],[-81.7770881889967,79.63042248993129],[-81.6734314042644,79.6125259215871],[-81.5098503993947,79.6267193168702],[-81.4306262875642,79.6533520787164],[-81.3192040330642,79.6643138447592],[-81.0805689605961,79.6563757213973],[-80.8334431236776,79.61382780285],[-80.6074943367984,79.5962017313244],[-80.4721396008326,79.6060582143455],[-80.2544914281328,79.6422241961698],[-79.9697809684901,79.65139098964629],[-79.7672706075586,79.6928056910951],[-79.8267533485442,79.7048116157462],[-80.0714570764647,79.7089173252861],[-80.7500446427866,79.6841304527667],[-80.9835589901613,79.6969833116052],[-81.12937459449718,79.7213783471501],[-81.4391504150725,79.799743692713],[-81.5447464918963,79.8615727668249],[-81.5129280424529,79.9336415623417],[-81.3876286882096,79.95403153255009],[-81.3656928297119,79.9728297470934],[-81.4230543344117,79.989280412642],[-81.8069662879238,80.0109746599805],[-81.8899831067284,80.0281063707286],[-82.3282823107304,80.1432438666055],[-82.4728757578043,80.20086707837578],[-82.6545330106016,80.2253913534112],[-82.94489788842999,80.2964620556032],[-82.9150948470764,80.324824594443],[-82.4903758511472,80.3764930034576],[-81.8093690685915,80.4154797765643],[-80.88259779109138,80.49454600393439],[-80.44540161517,80.51957723763678],[-79.7664172169866,80.5407992407802],[-78.8614038276807,80.527996173213],[-77.9568514272199,80.5821633600389],[-77.8157359808408,80.601294939357],[-77.7852704700025,80.6198630108524],[-77.9331532316823,80.6306531375074],[-78.4741014723797,80.6021667959723],[-79.3418808254654,80.5897547845993],[-79.5101659405809,80.60553500688009],[-79.4761212687568,80.6289113590428],[-77.9645463558271,80.8148069896782],[-77.09027817032039,80.87929690189888],[-76.4315931468845,80.8967174701432],[-76.2646659869988,80.909539006329],[-76.1949926526328,80.93894794735],[-77.19433804960877,80.94252453116431],[-77.4696854619897,80.9391157120471],[-77.953131442572,80.9231896924929],[-78.49929469228348,80.88436500429589],[-78.7738148396826,80.889443723395],[-78.8587292002343,80.9072883782882],[-78.6376578761497,81.0276212131294],[-77.8390002720014,81.27540604701679],[-77.2378938362714,81.376819030823],[-76.6949661467861,81.4403314060431],[-76.5388796112221,81.4889954598503],[-76.568107495388,81.5051076620758],[-76.6815086621,81.5095629438842],[-77.8857815549682,81.3663407647445],[-78.28017252948209,81.27667426863898],[-78.5718111678438,81.1734115892976],[-78.7952218137846,81.1615552395458],[-78.9177743958679,81.1757010452107],[-79.0231631768209,81.21880218583298],[-79.1767698690242,81.214177132757],[-79.2140156918878,81.19079437278458],[-79.0679505426818,81.1365052269372],[-79.06235753919138,81.1011645902931],[-79.0601053025323,81.0869333319822],[-79.1044491555447,81.05889737824708],[-79.23004781586918,81.0336687812576],[-79.3543659408481,80.9345431587482],[-79.675410167309,80.8520478489933],[-81.3104463185308,80.6690904858515],[-82.0036604428847,80.591754425062],[-82.7275422291946,80.5483758868218],[-82.8894539511323,80.54778892297759],[-83.1046781076312,80.5728115308264],[-83.0591814487683,80.615405537559],[-82.9809617709535,80.6377138467712],[-82.1625224636906,80.7571149110933],[-81.9455924964436,80.7998584613809],[-81.7569223286442,80.8628802387334],[-81.8857264779062,80.8713920720576],[-82.35928923478528,80.7771129575495],[-82.6856490255669,80.7322260528526],[-83.0148614693957,80.7066811739008],[-83.2339189550922,80.7316459191068],[-83.188154234079,80.7742735032096],[-83.0292399704609,80.81894397404818],[-82.982080598367,80.8615560599291],[-83.02034626445669,80.8771181416175],[-83.1285588390483,80.8798150006639],[-83.1930290401073,80.8716767494929],[-83.482805233391,80.7814871754302],[-83.5371250359908,80.7293433402481],[-83.4631612858638,80.6692471098595],[-83.53143241231578,80.6029052328686],[-83.82950146723978,80.54696205897649],[-84.1141859246744,80.5293561148816],[-85.1647374532009,80.51815742193959],[-85.5878441637821,80.5216448531637],[-85.70771811867958,80.5384187059627],[-85.6736826511289,80.6151321306555],[-85.8590415013291,80.618557319508],[-86.1632433920784,80.5708438643117],[-86.4535000345141,80.5758160200309],[-86.7244047370488,80.609213397633],[-86.647990077088,80.7190250220162],[-86.2644808400946,80.8334953472231],[-86.02369317393979,80.9309228383673],[-85.74222728691709,81.0033928980398],[-85.5842739567307,81.0247468736276],[-85.1957151697312,81.0513950251188],[-84.7074837037783,81.0611487188554],[-83.9675019596457,81.0939770736542],[-83.4809396749493,81.0974968829553],[-82.87811459161918,81.1268006890217],[-82.4596714477989,81.18937245511489],[-82.4366290942343,81.20829812420229],[-82.5371539178278,81.2206252562744],[-82.822931101757,81.1741653898835],[-83.1677831439702,81.1484847370433],[-85.392428030561,81.08417702933518],[-85.9282603748685,81.0502209873073],[-86.0543936604637,81.03303272110489],[-86.26842936739878,80.97375454390898],[-86.6984332201838,80.8019176866359],[-86.9729680793389,80.7192663905044],[-87.2305757970079,80.655557395606],[-87.52042412890059,80.62111208855109],[-87.6798482082955,80.6232962560216],[-87.83110741543379,80.6397649948597],[-88.26756358115298,80.727119279064],[-88.8613816091372,80.7866720002869],[-89.2824182316973,80.8822421365643],[-89.202118784282,80.9392929230124],[-88.9017144610659,80.9893938939344],[-88.527277117844,81.0144071707022],[-88.0175057738716,81.027830557758],[-87.0477563108694,81.0148878368221],[-86.6639548719305,81.0429408893908],[-86.1123633209369,81.1017435695556],[-85.6732343917427,81.2200569341978],[-85.0866113144984,81.2965724220026],[-85.0884397350694,81.3257109111509],[-85.2640222099245,81.3241381239536],[-85.8712715284624,81.2573977267539],[-86.1597360609868,81.1847909819368],[-86.35461587716289,81.1540988228396],[-86.5057904589049,81.1419940493589],[-86.7931260251761,81.1367418015021],[-87.5065734931626,81.08405803848139],[-87.6799299130402,81.0766795474925],[-88.0369392847795,81.0907778340754],[-88.3469580635282,81.0895586130912],[-88.7926673643676,81.0413012681855],[-89.3637859473778,81.0129966452337],[-89.5857417235299,81.01488750204179],[-89.9637156856267,81.04671254329409],[-90.19950890837399,81.0916879319181],[-90.1640711721562,81.1925717975038],[-90.0330969457897,81.2398423612285],[-89.4117817252215,81.2254008584571],[-89.0927539518814,81.2370273001294],[-88.9103731987511,81.2594082334844],[-88.90319546048998,81.2738053087139],[-88.98171951707,81.2890236153359],[-89.2653683485944,81.29643626038249],[-89.51251443571209,81.3226359020288],[-89.5203984629324,81.3709039480612],[-88.95813313995988,81.4527955459681],[-88.5510881938714,81.5269812295054],[-88.31905457918178,81.5452731392762],[-88.1438188263889,81.5494865496174],[-87.76720142247439,81.5432395997282],[-87.42060589496108,81.5336798901835],[-87.1891646100066,81.5400051707784],[-87.1254720898498,81.557322570118],[-87.1708036168734,81.57827147618319],[-87.4755560037244,81.5881486045887],[-87.7884876326646,81.5953061178307],[-87.9997775753064,81.60145096660379],[-88.1813492069024,81.604386495823],[-88.4091120596231,81.6035803998076],[-88.63124282248138,81.5955690145128],[-88.9581799319689,81.5686047057923],[-89.6280173643409,81.4585431913532],[-89.8708411961995,81.43625800552898],[-90.10707187313858,81.4282592747499],[-90.2814190407887,81.4293858290427],[-90.4493869770402,81.4496753911132],[-90.4348293165455,81.4929615841369],[-90.1518102613023,81.5442380069049],[-89.7530892719194,81.5800483801681],[-89.4675497076947,81.6212616426295],[-89.4499340130344,81.6597190441094],[-89.50521248706059,81.6698083456366],[-89.9252864075814,81.6680985721558],[-90.0951954331479,81.6933564786407],[-90.14594088434869,81.71779882346918],[-90.3261916634464,81.7189113594271],[-90.394772629058,81.6952025126519],[-90.4019221972434,81.5891695743341],[-90.55939050167528,81.5611442721675],[-90.79546879015548,81.5623806090868],[-90.9994289047812,81.572980797809],[-91.1409385151203,81.5976852398114],[-91.1879049976586,81.6460696299977],[-91.3656123587181,81.65156548916418],[-91.455381320558,81.663062168596],[-91.4697660997321,81.7193995602514],[-90.93084381207768,81.813708624854],[-90.1244918055222,81.9299602774402],[-89.9007778846295,81.9478089754707],[-89.52375984914399,81.9595821225234],[-89.3786645930351,81.9391363330445],[-89.27696436261408,81.8948499411856],[-89.1237282278254,81.8935624196318],[-89.0574300264783,81.9026498562437],[-88.9781466379242,81.9937496400498],[-88.8177581338882,82.0019757346057],[-88.6819462393367,81.9668778286273],[-88.5189385356211,81.9798020445537],[-88.5835987546924,82.0819625536795],[-88.4662370293416,82.1195128590954],[-88.1866141165941,82.1602300809045],[-87.4105933032682,82.1757266926754],[-87.1612335167825,82.1678042249137],[-87.0575981039211,82.137404792148],[-87.0750949265614,82.0746389344121],[-86.7669439777723,81.9881486424918],[-86.6354723485261,81.996012045408],[-86.6235929911313,82.0103845473876],[-86.7979398919845,82.0661163826698],[-86.7547967642731,82.1188514627153],[-86.7114785257659,82.1328058767286],[-86.54203662864,82.1450053885716],[-86.29448948363088,82.1366099610715],[-86.00226040465348,82.1079785112533],[-85.5940995176349,82.0044089565074],[-85.4059257920103,81.9721358823242],[-85.2166391310206,81.97375775249398],[-85.1879614819024,82.0024168783472],[-85.3355001880303,82.04382134606209],[-85.3069685229548,82.0724939729301],[-85.20390964655158,82.0804604606999],[-84.9286183223867,82.0707955495104],[-84.5357286272511,81.96629718908949],[-84.3770959088547,81.968140978745],[-84.3905807502797,82.041426150294],[-84.7010494741777,82.1056206070139],[-85.239560805218,82.1394054045243],[-85.5382355425087,82.1929556364011],[-86.3997359253504,82.235171485782],[-86.72186046705919,82.27358295899198],[-86.7015278170772,82.2975632811865],[-86.5886517631791,82.3154425404539],[-85.6564256678059,82.3357780164393],[-85.4018188369807,82.3609014767713],[-85.2898814615847,82.4369191292639],[-85.5412123051529,82.54794418818],[-85.4781797948834,82.57615780124729],[-85.291745314497,82.5926877691936],[-84.8266276005917,82.5850416113864],[-84.4577423046352,82.5250108373748],[-84.48078828567388,82.4766715024805],[-84.2704855115453,82.4289691236081],[-83.6555478383606,82.3634886185978],[-83.2946309095593,82.3365972736602],[-83.21719899942299,82.3203192892161],[-83.226581168678,82.2374519115758],[-83.0791982434689,82.1512308248469],[-83.0719176644387,82.1071018638395],[-82.9348098235396,82.06498715408],[-82.7183603762923,82.06010690519749],[-82.5138671469071,82.070071016247],[-82.0814653670354,82.05980337571],[-81.9379426103188,82.0709990983233],[-81.8905840417699,82.1041383400046],[-81.9390547355604,82.1151283040655],[-82.43648305045619,82.1269875486523],[-82.6097449294679,82.16522783794238],[-82.8534754045621,82.273396330656],[-82.8150620906164,82.3019006713097],[-82.7384283500619,82.3099969903387],[-82.515427571108,82.30501155975769],[-82.050628960034,82.24034137315059],[-81.45994419411569,82.1129718357288],[-80.7084616456828,82.0586978060633],[-79.772294254992,81.9481373705317],[-79.500640092014,81.939912484783],[-79.4221912249124,81.9671287368293],[-79.5253353304618,81.9999032993828],[-80.0949004092473,82.0611444211036],[-80.8190599504337,82.110884566409],[-81.4237055839929,82.24459330549598],[-81.809381625869,82.2933854734936],[-82.3493594758688,82.39919919079499],[-82.3918008713213,82.43935608065189],[-82.2420687759231,82.5192966626914],[-82.0175494047559,82.5337830713988],[-81.7158629741185,82.5316332966836],[-81.55546762116,82.54745035043489],[-81.5106975969522,82.5758570004821],[-81.645469669483,82.5987267582999],[-81.8618806874152,82.6136197511471],[-81.9911050958865,82.641137758144],[-82.0358124461017,82.6568791259383],[-81.9775185133445,82.6948280663192],[-81.7806548439116,82.7099664235685],[-81.5464589579801,82.7045022698617],[-81.3358036505195,82.6847278595312],[-80.9809405614583,82.6071093572956],[-80.7664421275064,82.5918239986897],[-80.6437664716928,82.603449315478],[-80.58855395840638,82.6956885830766],[-81.1993373217723,82.8093872921411],[-81.3159860320457,82.8663107713254],[-81.2601381056625,82.8994536422411],[-81.13300762444248,82.9112108898347],[-80.9957289337846,82.9079204848507],[-80.797382990035,82.8784402272709],[-80.3882152353638,82.8681794984166],[-80.3118611738512,82.8514113902312],[-80.1629134137455,82.73888596398469],[-79.8550584609207,82.7158164986904],[-79.6749265537489,82.6812107379778],[-79.467437076725,82.6803720371306],[-79.4317953548507,82.6991684970857],[-79.4957603820775,82.7207612926264],[-79.41762441680649,82.7433322945279],[-79.1692361984486,82.7263948183843],[-78.9589340129906,82.6905757774892],[-78.6709483234017,82.67711407031949],[-78.2411784285376,82.6988833709728],[-78.2120814669545,82.7129098782008],[-78.282333053267,82.7299785421946],[-78.92876432619799,82.759138035989],[-79.2598981568594,82.7884349416435],[-79.5147125635804,82.8401020622994],[-79.586854798838,82.876730444332],[-79.7389781034688,82.8907353337072],[-79.890186535842,82.9244406216185],[-79.85434128959218,82.9432809408087],[-79.5935544713684,82.9660410739622],[-78.8544484218938,82.9902945286629],[-78.5891237306939,82.9777372999974],[-78.4384710334857,82.9285960679204],[-78.098037177766,82.9184584485759],[-77.9925757251893,82.9003216072947],[-77.7893605214615,82.8940857645386],[-77.5352706853563,82.9090119778135],[-77.4562181202576,82.913617483547],[-77.2869195795708,82.9082441026495],[-76.95709454401779,82.8625717579951],[-76.7666452926318,82.851273648496],[-76.63129602126,82.81669321299988],[-76.5400963558745,82.7484757807621],[-76.3855799935426,82.7080747841152],[-76.0910409180173,82.6826878691406],[-75.9616524610202,82.64794894913618],[-75.96384260342829,82.5877880752211],[-75.92128688360948,82.5762036365764],[-75.7284110498696,82.5691474827359],[-75.5443199267028,82.58747483092958],[-75.3847497749421,82.6670900836061],[-75.4481209464071,82.6845403269377],[-75.8491443906523,82.7242746964308],[-75.9568706191188,82.7683038382234],[-75.88854285172529,82.8111042645166],[-75.976250937746,82.83429166954818],[-76.2429247952165,82.8586152616679],[-76.4112913876631,82.9245524834099],[-76.8558787394154,82.9994021419195],[-76.9846071255188,83.0385946721324],[-76.88497763365028,83.0804623389898],[-76.3560088596294,83.1133937856625],[-76.0672935159695,83.1087923675882],[-75.5511872048779,83.0760124849684],[-75.1592068013898,83.0823559236822]]],[[[-73.1492650647917,62.34875089644449],[-73.1567276987767,62.3617058959763],[-73.1445536897957,62.3745129837261],[-73.1214433357848,62.3771741634853],[-73.0872873469426,62.3723104945776],[-73.0813307079332,62.3529549517938],[-73.09600056507628,62.344472234322595],[-73.12120651907719,62.3427761814024],[-73.1492650647917,62.34875089644449]]],[[[-73.0497650047076,62.3094499459065],[-73.027051522033,62.3154532150178],[-73.0006274994581,62.3149741412807],[-72.9790846074261,62.305934433480395],[-72.975042275442,62.29609772973719],[-72.9659712767146,62.2865941871026],[-73.00863131283218,62.27910163638829],[-73.0434253165563,62.285408470369596],[-73.0576859490069,62.29670232519149],[-73.0497650047076,62.3094499459065]]],[[[-78.5515925289496,57.4442472873545],[-78.5490396650161,57.46206949812219],[-78.546075881718,57.4747687168233],[-78.5020732262615,57.471001992346],[-78.4800780950194,57.44391025484239],[-78.50523961798208,57.4307738453689],[-78.5371098519563,57.4345562605551],[-78.5515925289496,57.4442472873545]]],[[[-78.5225827871899,57.292193174315294],[-78.5275621121674,57.3051089778647],[-78.5214103754591,57.31597520811041],[-78.5146436028327,57.3282184817092],[-78.4967324363943,57.3384108583077],[-78.4557284634156,57.3335208661308],[-78.4492053953826,57.32186564107269],[-78.4547655487827,57.31237980016069],[-78.4688644742244,57.3017381614922],[-78.4921490460337,57.2914673335726],[-78.5225827871899,57.292193174315294]]],[[[-78.4450194626171,57.256113970593596],[-78.41763155937389,57.2666082731035],[-78.3879548134513,57.2731999772981],[-78.3630375329007,57.2810823552685],[-78.32091871051078,57.2825384177235],[-78.30311660541929,57.2774897945915],[-78.3090174982976,57.252403632464095],[-78.3375182936123,57.242476702527696],[-78.3962158906417,57.23068692872939],[-78.4334621032429,57.2250048162917],[-78.4509513518456,57.2307253471489],[-78.46057698188399,57.23912602623269],[-78.4450194626171,57.256113970593596]]],[[[-78.3880516025368,57.1470532575727],[-78.3531403338649,57.156621124478],[-78.3250760919418,57.159758870544],[-78.2918754757401,57.156468947856794],[-78.2760140481799,57.1501958607644],[-78.2804814174188,57.131349304157],[-78.3874567881758,57.106382736113694],[-78.412382661944,57.1072093588189],[-78.41508920111819,57.1191330524907],[-78.4077245196078,57.1327457010401],[-78.3880516025368,57.1470532575727]]],[[[-78.8011893166276,57.0065283180809],[-78.7622368540495,57.0065010775748],[-78.7458095742509,56.9962011790172],[-78.7579153843665,56.9677549994947],[-78.7954136779155,56.974689652786],[-78.810683468774,56.9909256202692],[-78.8011893166276,57.0065283180809]]],[[[-77.4533422605124,56.415115681477],[-77.4345257037691,56.39898438943159],[-77.4488866197572,56.3631914817341],[-77.4882805717205,56.3488998164636],[-77.51694358854668,56.3614478557305],[-77.4856242344324,56.4187223422215],[-77.4533422605124,56.415115681477]]],[[[-77.7697873062394,56.3325187786578],[-77.7573720246029,56.346396880716895],[-77.7445804290317,56.3610850560832],[-77.7031906621752,56.36697757708],[-77.6914606822151,56.3517395123797],[-77.697562562129,56.3378370600106],[-77.7163329296103,56.3239950905174],[-77.7444990147651,56.3164219976659],[-77.7635385423603,56.3222795543501],[-77.7697873062394,56.3325187786578]]],[[[-77.8645577879378,56.2552560493248],[-77.89891381871638,56.2578828817551],[-77.9325768366325,56.265562928714196],[-77.9414286146535,56.2769762299831],[-77.9268889821846,56.28887695560079],[-77.8958741760831,56.299556181648],[-77.8784593534366,56.3044142743668],[-77.8435500015266,56.3025899904467],[-77.8181436702922,56.301256878826294],[-77.7978305809062,56.2905765623323],[-77.8017972044742,56.2747677806383],[-77.8083320600921,56.2635783593847],[-77.8305852684326,56.2552436917148],[-77.8645577879378,56.2552560493248]]],[[[-109.99808382369352,78.09816792194458],[-109.876656613657,78.0985240664392],[-109.796558403177,78.0881179852449],[-109.737035215054,78.0765676878357],[-109.699944793523,78.0489565709995],[-109.764761818267,78.01572991203389],[-109.99836686215822,77.97599954421617],[-109.99808382369352,78.09816792194458]]],[[[-109.99871565098134,78.69249195702875],[-109.869520381342,78.6582671494941],[-109.74169727300499,78.6006539709353],[-109.494028411033,78.5542998023061],[-109.400743064101,78.5196162209546],[-109.294015814952,78.4411814957826],[-109.309736310616,78.3860367951662],[-109.37333656221999,78.3333085044259],[-109.511265214781,78.2864698558276],[-109.636033510324,78.2797812067531],[-109.81945423668698,78.2995285101994],[-109.99871565098134,78.28563335252669],[-109.99871565098134,78.69249195702875]]],[[[-110.00014635891701,71.49601134621064],[-110.00030951473062,72.33408837538467],[-110.00034515072802,72.5171386154112],[-109.944935368014,72.50303227527979],[-109.881847730517,72.5176245270954],[-109.91499375351499,72.5539979013068],[-109.987091251471,72.5825122628168],[-110.00035827293044,72.58454299517393],[-110.00037679692294,72.679694569937],[-109.984716884377,72.6800584319398],[-109.949903139215,72.6924647147362],[-109.970915756791,72.71519867722668],[-110.00038454929077,72.71951589940896],[-110.00043505359996,72.97893970088207],[-109.88349676169798,72.9555882508301],[-109.73920505692199,72.9517972076646],[-109.703222296969,72.8620143841576],[-109.537036920079,72.8160238977296],[-109.446413646306,72.74982337424208],[-109.351362236292,72.7471195032967],[-109.31601113143799,72.7594324580307],[-109.229003157584,72.7657967541207],[-109.17340406129298,72.7552803426368],[-109.127775512087,72.6857873772422],[-109.06308631200199,72.6468170096106],[-109.134626158541,72.5882357610603],[-109.11480272578699,72.5654246545283],[-109.03905116508699,72.5660989973581],[-108.939776477304,72.5926921513362],[-108.82072637125098,72.59640474005768],[-108.794673171808,72.5880522053602],[-108.68874005647,72.4670982565534],[-108.721901413486,72.4436080145547],[-108.697704860044,72.324294690509],[-108.581731437238,72.2019718032484],[-108.484345289468,72.1557507968754],[-108.458430960239,72.12376112909989],[-108.454891097151,72.0273363875787],[-108.407303947678,71.9679319165332],[-108.266202348173,71.9200594513091],[-108.23742533632,71.88348384327638],[-108.29718169030299,71.7729997547733],[-108.225947168672,71.6815920755329],[-108.056709277339,71.6502733747989],[-108.01525914127,71.6339335590138],[-107.983967667576,71.59276742716628],[-107.904952927825,71.5646259413655],[-107.812477806691,71.5566856258559],[-107.781632647493,71.5732978667383],[-107.84337220988,71.6171447560247],[-107.846888545657,71.660265631593],[-107.664428012391,71.6681511565434],[-107.57790411377198,71.70781980239359],[-107.415456539832,71.7237141486425],[-107.349212847032,71.7522552374769],[-107.434275774345,71.8283388564311],[-107.381253748435,71.8752383666097],[-107.565120551395,71.9254272248313],[-107.64158671449698,71.96841100487559],[-107.85301019757799,72.2626549319178],[-107.835831627102,72.3555281789683],[-107.893638486308,72.4288559470856],[-107.951148833019,72.4442650314606],[-107.969401112053,72.4671734732353],[-107.964071393585,72.59315101070818],[-108.06423493277698,72.7168821814403],[-108.190167389256,72.7953963214467],[-108.304697773417,72.9328072637449],[-108.30998428750199,72.9760276764507],[-108.245375684999,73.028831838884],[-108.231915394648,73.0684794953406],[-108.272805165352,73.17228867163209],[-108.23662431985298,73.2037804684627],[-108.117302931089,73.2117306354137],[-108.046045558654,73.2019236043812],[-107.95651415308998,73.20781837282948],[-107.934303920131,73.2189538124005],[-107.945790458739,73.2327206713777],[-108.148940788384,73.26775043173589],[-108.168432033332,73.2906776557499],[-108.12596397149498,73.31000426049978],[-108.03110058800799,73.353009063553],[-107.880587520362,73.3628145747999],[-107.737189635526,73.3430290084592],[-107.335859442983,73.23798966818988],[-107.150628522133,73.1626545082227],[-107.06519244497,73.1534727416705],[-106.997685136479,73.1672828966828],[-107.08619683296999,73.2004262369357],[-107.106806343356,73.2667222922006],[-107.015437760351,73.3109404525069],[-106.92505721739398,73.3164458119141],[-106.86198220567698,73.2961456881309],[-106.807844362906,73.2463680506516],[-106.533823007556,73.1952919433041],[-106.35379064127,73.0999842525952],[-106.10154923021099,73.0521410895618],[-106.002478013038,73.00015561452828],[-105.859546607726,72.9506677466531],[-105.485336429674,72.8537196858558],[-105.44869067770699,72.8441367668233],[-105.436266389422,72.825637724265],[-105.529997936951,72.8060272767089],[-105.520637442689,72.792156444247],[-105.416931451045,72.7739467236082],[-105.407675925012,72.7600718482891],[-105.490981222396,72.70266843069258],[-105.501681287169,72.6732922324278],[-105.393895821888,72.4875679616203],[-105.31926921144398,72.3959235861303],[-105.275551580331,72.37441887514679],[-105.245859128608,72.328185122846],[-105.208286774088,72.3159173283228],[-105.074222103917,72.1032290640415],[-105.028616831064,72.0770642324537],[-104.985826173362,72.0077037345938],[-104.889840078171,71.9460863205396],[-104.833968853177,71.85359233135969],[-104.493420303838,71.66687265826769],[-104.413977616276,71.52805122554498],[-104.415322875078,71.4802869269099],[-104.320225000323,71.3614712073732],[-104.353558857642,71.3453691763647],[-104.50407840847599,71.3371638003118],[-104.526185114617,71.3264123090405],[-104.540395730573,71.3017877391304],[-104.501208015013,71.2324329400839],[-104.507593359975,71.19394523600769],[-104.547374005257,71.1154740579108],[-104.604817359785,71.0812864901138],[-104.549589569114,71.0200346466541],[-104.299499379296,70.9433734475371],[-104.141458726682,70.8805877811442],[-104.026891500002,70.8201631381948],[-103.983815999849,70.777291700027],[-103.792176375782,70.7375750595781],[-103.57663088802698,70.6348309341198],[-103.40165467757299,70.61061851379408],[-103.339664562709,70.59479463808889],[-103.266596330319,70.5557888250671],[-103.176256600137,70.5366204614255],[-103.068434994482,70.5372651575434],[-103.022138210489,70.55379025846248],[-103.06826406418,70.59419900223949],[-103.147718626851,70.6187139630154],[-103.16997330056299,70.6935347220218],[-103.090159689386,70.6975024722342],[-103.041551740339,70.6524542430604],[-102.944488040374,70.6192736937277],[-102.885638725693,70.5510120174044],[-102.585717484158,70.4848640018659],[-102.258597287924,70.3817545692556],[-102.18829538173,70.3423819497379],[-102.056694713201,70.3152400396073],[-101.80964265220399,70.3309739501912],[-101.751568890868,70.3193286755358],[-101.708586513979,70.2786484335926],[-101.729158943537,70.2635701133634],[-101.721823585263,70.1787964642722],[-101.640201877902,70.1398181731169],[-101.586378700777,70.13742072810318],[-101.470266489442,70.2132700484792],[-101.34925753469399,70.2089206366104],[-101.27447385202099,70.2214846423428],[-101.242308922856,70.2417083200936],[-101.163873153471,70.24492944248],[-101.10122672458,70.21914884353889],[-101.063548066637,70.1168086166445],[-100.984562640754,70.0444847309809],[-100.923879219083,69.80160651381979],[-101.01141962956899,69.7555957304689],[-101.025356549882,69.7220085673336],[-101.071414829603,69.7059601072479],[-101.185298945532,69.7342467357595],[-101.223609489562,69.7326388321537],[-101.289918795185,69.7015278549597],[-101.358845390804,69.7127493632572],[-101.46514506490499,69.7884211696849],[-101.49516249889,69.8673909137922],[-101.441006788223,69.9311030000955],[-101.466296383455,69.9630766667109],[-101.517885167404,69.96085952465],[-101.540092852343,69.9504519554823],[-101.638845561524,69.7666793573137],[-101.675553228798,69.7272808964142],[-101.732088594159,69.7058759028257],[-101.80125504089499,69.71694234560458],[-101.814036357604,69.7494318166866],[-101.8469079696,69.766846003844],[-102.044865328843,69.8381562279696],[-102.065669055511,69.8891945459028],[-102.179890313757,69.91227629009109],[-102.189515270204,69.9354711443054],[-102.235853534577,69.9522262325119],[-102.285390522805,69.9451746983193],[-102.284619663962,69.9121018678112],[-102.34102599677699,69.8905189326727],[-102.328490107325,69.8296309285948],[-102.350186022198,69.8191418538844],[-102.496796849967,69.82630224648759],[-102.548802057891,69.7953975174452],[-102.599890094332,69.7929076211592],[-102.659011907651,69.8089359003271],[-102.735668003584,69.8051529395579],[-102.767879588681,69.7893537937746],[-102.759749695788,69.770825802808],[-102.595467140501,69.722157767209],[-102.57362634323,69.6711952233836],[-102.544273751015,69.663170930091],[-102.52654836671199,69.62147313778189],[-102.594664249384,69.5992171558354],[-102.699915205221,69.6034653919999],[-102.915019396981,69.5926379696152],[-102.997071464578,69.6026453280005],[-103.372051672906,69.7275498653924],[-103.479338882393,69.7479095142107],[-103.542930041954,69.7444986219059],[-103.514514816077,69.6844058644906],[-103.461286599561,69.6540872593958],[-103.281572572416,69.6020507716172],[-103.230953055975,69.519475206184],[-103.17637774225,69.5128720553012],[-103.127951363936,69.5485422550584],[-103.090097365338,69.5505082570641],[-103.060720627179,69.5425640761129],[-103.052455145456,69.5240572143162],[-103.084417073122,69.4514028033409],[-103.026745005144,69.3502970786903],[-103.199946359466,69.2229082902571],[-103.224845085522,69.1931913641921],[-103.206309372202,69.1515955202386],[-103.165027045329,69.1443289791562],[-103.080079023107,69.1819317696364],[-102.977706748963,69.2676908673404],[-102.950022192241,69.32115335860719],[-102.793828424234,69.43319788910868],[-102.680754292943,69.4388855593011],[-102.573494131134,69.4584001146216],[-102.44761032357799,69.52603017015],[-102.308729942173,69.5327356326328],[-102.18938191247099,69.5242426116303],[-102.108000757108,69.5139036203259],[-102.044525659047,69.4838089783439],[-102.034953187991,69.4275815734743],[-102.08446488788,69.3591468947817],[-102.062362786523,69.303524194828],[-102.096194654501,69.2924846010029],[-102.210537436012,69.2917680261728],[-102.20067073061,69.235569983705],[-102.107869599647,69.2258301397738],[-102.01907023425599,69.2583475283826],[-101.93167097077398,69.2624298290241],[-101.88342883474299,69.236350306741],[-101.860178117754,69.1760793526722],[-101.884915684224,69.1088768716376],[-101.84237245834298,69.03065428852048],[-101.87414377576299,69.0150259721895],[-101.994069580418,68.9999594332384],[-102.100059118929,69.0137952285952],[-102.16179353467,69.0108321493099],[-102.247618205345,68.9736406037082],[-102.436159207799,68.9738162841894],[-102.47976134142098,68.957479008479],[-102.464683222039,68.920456507535],[-102.494002319166,68.900104735762],[-102.576131669779,68.8865297639996],[-102.763968758369,68.8863908039585],[-102.836137565001,68.8495847152753],[-102.94038945372199,68.8299604253112],[-103.10132170164998,68.8261609625937],[-103.211217948033,68.84862786785199],[-103.274408692797,68.849936519174],[-103.30497262512999,68.8340864393156],[-103.29681502036398,68.8156160599025],[-103.33748030396798,68.7944801681484],[-103.386277283779,68.791802221227],[-103.46980079887199,68.8108433611938],[-103.50668637997998,68.8371832317181],[-103.576154673617,68.85224297032919],[-103.77166047461,68.8412187516752],[-103.94556217167,68.8643916307707],[-104.15321135252,68.8522762121313],[-104.32984052864398,68.8797116805737],[-104.435800747469,68.9160263956065],[-104.484729315164,68.9130705906193],[-104.576346830604,68.8695544185823],[-104.718101515512,68.8513499466927],[-104.82264654001499,68.8590876880742],[-104.975733776124,68.8874498513985],[-105.100125032094,68.8842990173345],[-105.18055840972,68.8933992765752],[-105.239088321419,68.9086358215108],[-105.25617445353498,68.9407984138826],[-105.229264389619,68.9615407453399],[-105.074803694254,69.0046679589555],[-105.027709096451,69.0599023300997],[-105.064399604393,69.081343162266],[-105.125901259793,69.0774459191382],[-105.182553783707,69.0405731934854],[-105.24147537446699,69.0320457213864],[-105.337337401382,69.06865122672458],[-105.519329158179,69.0758248471092],[-105.67523850697998,69.1273996997303],[-105.804026147673,69.1521474426287],[-106.237243881571,69.1274217358472],[-106.366653843357,69.1517955868936],[-106.41142845616,69.2058980764326],[-106.315866746097,69.3270230079523],[-106.366378974694,69.39031702795148],[-106.442233140922,69.40891280958],[-106.476724340486,69.4446970865071],[-106.527939706076,69.4649920449399],[-106.60548696947399,69.4643344714945],[-106.738841039591,69.4381946635348],[-107.027490447498,69.3290229936291],[-107.025564551537,69.243134854629],[-107.05775222619299,69.2121047597635],[-107.230959794793,69.0989158624122],[-107.291475116523,69.0322416362276],[-107.42110980597698,68.9746371524668],[-107.54905659748299,68.9553038831942],[-107.843349534423,68.9372733465008],[-108.234076774192,68.9301977461405],[-108.39774978098599,68.9457283299837],[-108.527831744465,68.9303060809151],[-108.51236761390498,68.9075840605039],[-108.55421870869,68.8753577276945],[-108.668641473699,68.8562962243474],[-108.764117419467,68.8099349562032],[-108.889505351962,68.7705806101696],[-109.31038884408999,68.7008401154169],[-109.630350927674,68.63418833352098],[-109.891965977271,68.610700803896],[-109.993632926147,68.6111045139687],[-110.14435222575099,68.6262346514156],[-110.456217518055,68.6021216328605],[-110.534172405944,68.60445592629259],[-110.65312557264,68.6270320083615],[-110.807201774648,68.60052552778379],[-110.838195678273,68.5933962454406],[-110.930801183038,68.5736847439901],[-111.015293981244,68.5650501565793],[-111.04077307736199,68.57333358243298],[-111.04420060830398,68.5894598948901],[-111.011942015859,68.5996576989248],[-110.947904812477,68.6095427497892],[-110.926252165975,68.6329070753429],[-110.955873863495,68.65612291992248],[-111.026992999955,68.6492613919789],[-111.087429370371,68.6288913831919],[-111.370170825431,68.6157292593912],[-111.37581295172699,68.5909544446277],[-111.244528370441,68.5699940801088],[-111.23028136638999,68.552032627701],[-111.29387453783899,68.5360934304021],[-111.557295511711,68.5632239616556],[-111.728650909427,68.570254722214],[-112.257040907798,68.53067778634],[-112.45564505110299,68.5390805496156],[-112.572872683204,68.5267184335191],[-112.686359097383,68.4951960229068],[-112.822773646326,68.47572894869998],[-112.98611848746698,68.487341216512],[-113.16114295809598,68.46828868149369],[-113.30113394915598,68.467553720559],[-113.332327775835,68.47387606803518],[-113.336465666769,68.4929426726602],[-113.11466002493698,68.5172566686767],[-113.079634530191,68.5356962717448],[-113.091376704697,68.54905022347609],[-113.263290965524,68.5693209447672],[-113.416349600942,68.6110871055847],[-113.49249646993299,68.6955158370251],[-113.635505027686,68.7530284151122],[-113.692568836298,68.8151833583058],[-113.634821576667,68.8656129129592],[-113.643441251206,68.8891239037056],[-113.600563315968,68.9134217994649],[-113.666253462454,68.9844850298487],[-113.67276774329198,69.0620903015493],[-113.77203694911,69.1540227436522],[-113.616302981221,69.1710892679684],[-113.62092434607898,69.1901688895367],[-113.661574253352,69.2053205978079],[-113.81150834150999,69.2378867025288],[-114.08977892316,69.2512295691366],[-114.203764117497,69.2728627393436],[-114.34968835802998,69.2859416818462],[-114.83458064983299,69.2502653749571],[-115.02552581466298,69.2675097410647],[-115.44086643852799,69.2679383518254],[-115.86015684856498,69.2967061876528],[-116.427842349535,69.4105756701108],[-116.55699262181498,69.4541503854618],[-116.600291716765,69.4934951484193],[-116.60055053041833,69.53976570107511],[-116.48995484780636,69.5394885984853],[-116.44406127929688,69.5389175415039],[-116.33885192871092,69.54684448242188],[-116.32164001464842,69.55180358886717],[-116.30679321289061,69.55784606933594],[-116.295166015625,69.564697265625],[-116.28711700439452,69.57215881347655],[-116.2828903198242,69.57998657226562],[-116.28262329101562,69.58795166015624],[-116.28632354736328,69.59581756591797],[-116.29388427734374,69.60333251953125],[-116.3050765991211,69.61028289794922],[-116.31956481933594,69.61643981933592],[-116.33691406250001,69.62162780761719],[-116.3565902709961,69.62568664550781],[-116.37799072265625,69.62849426269531],[-116.75389099121094,69.71833801269531],[-116.7560806274414,70.00050354003906],[-116.00000000000001,70.00000762939453],[-113.00000762939453,70.00000762939453],[-112.87507629394531,70.00029754638672],[-112.87266540527342,69.86376190185547],[-112.87259674072264,69.86354064941405],[-112.87074279785156,69.8604736328125],[-112.86737823486328,69.85755920410155],[-112.86258697509766,69.85488891601561],[-112.85652923583984,69.85254669189453],[-112.8493881225586,69.85060119628906],[-112.84137725830077,69.84911346435547],[-112.83273315429688,69.84812927246094],[-112.82373046875,69.84767150878906],[-112.37825775146484,69.83915710449219],[-112.37738800048827,69.839111328125],[-112.36929321289062,69.83896636962889],[-112.36125183105467,69.83930969238281],[-112.35350036621094,69.84012603759766],[-112.34628295898438,69.84139251708984],[-112.33980560302734,69.84307861328125],[-112.33428192138672,69.84512329101562],[-112.32986450195312,69.8474655151367],[-112.31491088867188,69.88652038574217],[-112.31449127197264,69.88800048828125],[-112.3130111694336,69.89002227783203],[-112.31053924560547,69.89192199707031],[-112.30713653564452,69.89364624023438],[-112.30292510986328,69.89513397216797],[-112.29801940917969,69.89635467529297],[-112.29257202148438,69.89726257324219],[-112.28675079345703,69.89783477783203],[-112.28072357177734,69.89804077148438],[-112.27468872070311,69.89789581298828],[-112.19771575927734,69.89741516113281],[-112.1884765625,69.89724731445312],[-112.1773910522461,69.89765167236328],[-112.16668701171875,69.89871978759764],[-112.15667724609375,69.90040588378906],[-112.14766693115234,69.90266418457031],[-112.13993835449219,69.90542602539062],[-112,69.99999999999999],[-109.99985504150389,69.9996109008789],[-110.00001576536116,70.82519578096752],[-110.00014635891701,71.49601134621064]]],[[[-94.1245117616331,72.8035341931559],[-94.1103824540107,72.7891141684145],[-93.9895023228359,72.76147903585658],[-93.74997369430329,72.74842280091738],[-93.61517083867,72.7300740323802],[-93.52507232322169,72.6926739849252],[-93.50924275343638,72.62677403374678],[-93.3753887597308,72.584741445671],[-93.3456478473602,72.5612613036717],[-93.3453124750122,72.5000445977777],[-93.5067123546908,72.4478270226368],[-93.7101339938088,72.35296753252558],[-93.7383903646996,72.3151954248688],[-93.8819430582096,72.243962387054],[-93.9935932809171,72.1257529600111],[-93.9910022623688,72.0598908055549],[-94.0909683239418,72.0405242389272],[-94.2343324794857,72.0302522965584],[-94.3070015076868,72.0438969206102],[-94.4547308606762,72.1040420983714],[-94.64232510385769,72.1025912310821],[-94.7991240429957,72.0777237551626],[-95.0994061636298,72.0513233861986],[-95.25470475023458,72.0214344576149],[-95.31216009465889,72.0207990665044],[-95.3419115205008,72.0298773440522],[-95.3563719629918,72.1615459187327],[-95.2875498971084,72.1952774600553],[-95.3211493052521,72.2372892168294],[-95.3747340513157,72.3261799577402],[-95.2989112572848,72.43537669061],[-95.3040594309492,72.48243895097009],[-95.4349465210335,72.5940799862644],[-95.4432628110406,72.6646930292872],[-95.6299932419184,72.7284942554604],[-95.6354602810013,72.7708685285592],[-95.6684292507447,72.794042935805],[-95.6742054388536,72.8659802184544],[-95.6921842876342,73.0862517265642],[-95.683308455863,73.13355425740238],[-95.62667936240229,73.1672753471857],[-95.6492408913428,73.3369572089926],[-95.6030976160083,73.4555581177856],[-95.66233649356398,73.6627216492166],[-95.60967950802909,73.738942188695],[-95.5174940163038,73.7588845026859],[-95.3911588922972,73.76025306261879],[-95.27840723502729,73.7425194477939],[-94.9706877357462,73.6651290467436],[-94.7169272646662,73.638909377199],[-94.638851107142,73.6442295592623],[-94.6403390860448,73.66310910755098],[-94.72086347297919,73.6861067723199],[-95.12263361687789,73.76294159649719],[-95.0965225165385,73.8151613661766],[-95.2921903211009,73.8605183356439],[-95.30975600980099,73.8745190170224],[-95.3181977505317,73.9453355055193],[-95.2587281640787,73.9837509664995],[-95.1813636405588,74.0081395311587],[-94.97585798948079,74.0383829455441],[-94.80392316719939,74.0918164989725],[-94.708480244001,74.1067432528181],[-94.4686353145986,74.1368070218436],[-94.2753600195966,74.1474572744027],[-94.0667785296959,74.181667258722],[-93.969593271274,74.1821279490683],[-93.8879120560104,74.1635796620432],[-93.8218050683808,74.1213140250609],[-93.7404476846045,74.09799346338758],[-93.6758599004811,74.09349460958158],[-93.61196953391348,74.1220551687082],[-93.6129194674813,74.1693143972026],[-93.5324904488453,74.2026362276623],[-93.2080674032009,74.2080475925191],[-92.78715004097738,74.1752168714194],[-92.7231436716249,74.1515626463795],[-92.7240644937788,74.12320951565468],[-92.6601701758198,74.10426776668278],[-92.4021490563231,74.103933892035],[-92.32310679582179,74.0754254858397],[-92.2631972937314,73.9996960695427],[-92.1999771485312,73.9853650526548],[-92.0715382524768,73.9897126704364],[-91.6322990312589,74.0587942203335],[-91.2619097440214,74.0613971136872],[-91.0071366866021,74.0407096157639],[-90.69453477793598,73.9814377993981],[-90.3027287860965,73.93039286024128],[-90.1759681680618,73.92430704352438],[-90.0687579817672,73.8994706952212],[-90.0731495547148,73.8758867946135],[-90.2721931131459,73.8308277039678],[-90.5650998381013,73.583432812951],[-90.684284288187,73.5184391856576],[-90.7817649311657,73.490979771371],[-90.924297483583,73.4732937818626],[-90.99011124810929,73.4454959678828],[-91.1527845207732,73.2532561135626],[-91.2486089406561,73.2209051196972],[-91.4038295481839,73.2030420039384],[-91.4057699968508,73.1841871455655],[-91.3623607234151,73.16033468594888],[-91.36581756528399,73.1273458364238],[-91.8160047607901,72.8374962924019],[-91.9697000666103,72.7862951970538],[-92.0906258051241,72.7678730583366],[-92.2548605549097,72.7730597646269],[-92.4326911780212,72.8111348834571],[-92.55224502167928,72.82073926575939],[-92.8371808120509,72.8209148876331],[-93.0917597580675,72.8631830796503],[-93.2721448939194,72.8770522454518],[-93.5127402978727,72.8717598435358],[-93.7521587621291,72.8285195394941],[-94.0667341486368,72.8176291164013],[-94.1245117616331,72.8035341931559]]],[[[-91.3682996857104,81.6051144470795],[-91.4011025167407,81.5946408978899],[-91.4593138604949,81.5837909938267],[-91.5302967117316,81.5808862186513],[-91.619588882357,81.5859599835082],[-91.6654491355136,81.59242139998048],[-91.6708279230933,81.6064122281367],[-91.6113657862655,81.62076960908739],[-91.46230311621748,81.6291580816703],[-91.42249725205698,81.6209815328875],[-91.3682996857104,81.6051144470795]]],[[[-91.5096740050272,81.5427025284243],[-91.5257873912021,81.5250541020919],[-91.5830390568158,81.5150591410277],[-91.6736742801159,81.5149061528188],[-91.7914011889002,81.528013740447],[-91.7959880507785,81.5446082332583],[-91.7554426324393,81.5530170233811],[-91.6727608296032,81.5593535369975],[-91.5723550313265,81.5559431929728],[-91.5096740050272,81.5427025284243]]],[[[-95.3492740727065,80.6603983199355],[-95.6434255052081,80.658441296287],[-95.8354043691225,80.6762856803209],[-95.91951694526209,80.6900758070336],[-95.9283687908021,80.723684751138],[-95.8770310219113,80.7336991387336],[-95.389927255043,80.7274645354446],[-94.9358168537365,80.7541176715794],[-94.7986144031811,80.7403769131889],[-94.7399231210111,80.7070049328015],[-94.7908942184484,80.6875324218208],[-95.3492740727065,80.6603983199355]]],[[[-99.23258704619158,80.1995951699182],[-99.235352737115,80.1864103828841],[-99.2370949010589,80.1764383674734],[-99.28252415759,80.1654148603554],[-99.3479792701776,80.1602313846993],[-99.44697319598758,80.1579525288086],[-99.50618974500419,80.165533158409],[-99.52863892368609,80.1763195562507],[-99.5095842688467,80.1865063122232],[-99.4432230915695,80.2033408701803],[-99.29993105295969,80.2066783123445],[-99.23258704619158,80.1995951699182]]],[[[-99.1733926549057,79.696450925202],[-99.2702915091746,79.6947271104223],[-99.3240422245395,79.70339537461899],[-99.367024537822,79.73634198972269],[-99.6625062415955,79.7790692303143],[-99.69094676135,79.8267452519138],[-99.6532960415835,79.8467426865914],[-99.69791497417378,79.8796587547164],[-99.86039250123709,79.9006849251431],[-100.082339197413,79.896348565745],[-100.221153349629,79.9177001488654],[-100.215198500895,79.9467882003481],[-100.109866269225,79.9778598046427],[-100.22247791929898,80.072196560526],[-100.119042814987,80.1080479099612],[-100.131630227279,80.12711842670069],[-100.04325597736398,80.1481571825156],[-99.84111698764168,80.1520008014099],[-99.5175018982958,80.1241506562108],[-99.2378029716401,80.0808324464057],[-99.1713860377313,80.0530444697362],[-99.147323486364,80.0100716114993],[-99.1961693216237,79.9176607767451],[-99.0381074746077,79.7180718526573],[-99.1733926549057,79.696450925202]]],[[[-94.3169986845158,79.2185849984146],[-94.3636912512387,79.2126335827279],[-94.42979600217149,79.2093718116636],[-94.51872360853758,79.2108585556348],[-94.57418378562988,79.2261312212727],[-94.5589194700618,79.2365831267446],[-94.5155040962926,79.2473325815089],[-94.46239947846638,79.251307302361],[-94.3647745447691,79.2518183775376],[-94.31535883050289,79.2483449860624],[-94.3169986845158,79.2185849984146]]],[[[-84.4773915271316,78.9650183194686],[-84.56509174907879,78.9497998407638],[-84.630415208574,78.95039290225549],[-84.6996812152131,78.9619729407009],[-84.7644380518777,78.97484683006329],[-84.7642113383752,78.99441677714559],[-84.7267376265545,79.0012423280829],[-84.65096376432989,79.0003528022782],[-84.5642550303484,78.996201716636],[-84.4773915271316,78.9650183194686]]],[[[-84.0565001146454,78.933026831025],[-84.0549568744909,78.9173975584975],[-84.0858476178053,78.9067951814191],[-84.1475184170367,78.9001105602455],[-84.2360575502739,78.9051791969537],[-84.3153976457021,78.9164597145272],[-84.3191033606386,78.9347235438948],[-84.2560677524768,78.94648271600859],[-84.1874463882599,78.9493379594546],[-84.1039741432782,78.9458847611143],[-84.0565001146454,78.933026831025]]],[[[-86.2672746240872,78.8816382346831],[-86.3966922926214,78.8938017267944],[-86.3852110270518,78.9127981811628],[-86.2802963653116,78.9347669550969],[-86.24796373055149,78.9870056338537],[-86.1965688123945,78.9955991989964],[-85.9311111879575,79.0142459461943],[-85.5932841695601,79.06964935181618],[-85.1820645342222,79.0604914596202],[-85.10457339107809,79.0394329233989],[-85.1286075267612,79.006266405323],[-85.3144503575326,78.9719932949137],[-86.2672746240872,78.8816382346831]]],[[[-88.2290881342672,78.2012900774109],[-88.3726871868569,78.2177217896264],[-88.3630529335904,78.241506844953],[-88.3163450233042,78.2504063476099],[-88.2517697639953,78.3021086722166],[-88.211727248914,78.3972531922376],[-88.13645771867,78.4200858675714],[-88.0496041283082,78.4187888133784],[-88.0103875687282,78.4086204135513],[-88.1082841757109,78.2329827069011],[-88.16109206857558,78.2098488750186],[-88.2290881342672,78.2012900774109]]],[[[-93.3995328805727,81.35103875983039],[-93.3373924803623,81.3459148782233],[-93.25087114778108,81.35080724752139],[-93.0475398784738,81.389436734806],[-92.8162142262708,81.384632402888],[-92.6170265023552,81.3460276807104],[-92.5621026042961,81.31710437810129],[-92.2225050252744,81.2781738712512],[-91.97200097040619,81.23436565686119],[-91.8138747400012,81.1617899475152],[-91.7413770514771,81.0942305852139],[-91.1106782709155,80.9235486706406],[-90.9667344490232,80.841114157274],[-90.6076369827053,80.7622460125243],[-90.6215321785252,80.7142421719002],[-90.6820939945699,80.6905522728786],[-90.6755131490214,80.6184082986725],[-90.5479468141692,80.5984274518171],[-90.3323208045975,80.6066685253003],[-90.200906177658,80.6009664387749],[-90.0810409839932,80.56164753854658],[-89.691317811049,80.5393607140407],[-89.5986771187922,80.5049145800306],[-89.4747621138416,80.48459149305869],[-89.3658475266999,80.4932193463067],[-89.359968012295,80.5075935620532],[-89.4762891460895,80.54712590199229],[-89.43826567082499,80.57564359835368],[-89.1468717687387,80.5729179612796],[-89.0009171090021,80.5425971908799],[-88.9106658730216,80.5079882896936],[-88.9280465495572,80.46967924182519],[-89.043400228362,80.4468096863709],[-89.0622316219029,80.4037115767646],[-88.9470545618991,80.3688613490993],[-89.0364702756722,80.2832324803002],[-88.8736107586731,80.24305112890168],[-88.5635438030456,80.19149053185079],[-88.486977328502,80.1376903472346],[-88.3167393084939,80.1211962687363],[-88.1527992775737,80.1431787127098],[-88.107707875952,80.1810866507269],[-88.1874850657723,80.2254088185023],[-88.4172471526158,80.2811545655242],[-88.388312216259,80.3914814112991],[-88.2858454671838,80.4383826010149],[-88.2610582403584,80.4862257951949],[-87.97004074071099,80.4873978209724],[-87.5938200050823,80.453447017392],[-87.5239869121702,80.4380128605872],[-87.4512385442596,80.3839728213463],[-87.4759562515419,80.2542654744641],[-87.5520068499002,80.2120231102259],[-87.8663762249371,80.1538348352833],[-87.8818321437215,80.12517151625998],[-87.7206914315654,80.0940730650529],[-87.2197179571699,80.0818770906151],[-87.0641623251205,80.0457281683889],[-87.006628073149,79.9340456397018],[-87.1068465104657,79.8923321851756],[-87.3320748797064,79.8477445564668],[-87.3430127772317,79.8286691312817],[-87.1220034991627,79.8251909086522],[-87.0369002744662,79.8430677707464],[-86.98916139128178,79.88080082588088],[-86.8904830232924,79.87917328611648],[-86.837302009042,79.8445789898287],[-86.8579686028079,79.8112252205287],[-87.04505249822499,79.7469448190777],[-87.1282161001314,79.64726677890728],[-87.2894530355211,79.5777244225129],[-87.32144068356848,79.520540418217],[-87.2525192714342,79.5146303211023],[-87.17553706723598,79.5229985510858],[-86.9423666340897,79.5912706498161],[-86.66026318425659,79.5767670147032],[-86.57938477966489,79.58976349772819],[-86.5160580333766,79.651209505009],[-86.4616650718773,79.6598557621864],[-86.3409515045831,79.6576427466923],[-86.07411167236,79.6188788372267],[-85.93218697819,79.5775593501504],[-85.9344431790151,79.5390583057476],[-86.088905423376,79.489113513145],[-86.1047597008849,79.4653451793469],[-85.9926770434466,79.45351074267609],[-85.8408363409752,79.4649183967394],[-85.756504955664,79.48247336205479],[-85.5937049260418,79.60926233721919],[-85.4702450670402,79.6115060086758],[-85.4123222221902,79.590988889512],[-85.440293052276,79.5530033663435],[-85.3429234725852,79.4882273325204],[-84.949556625918,79.3733362570645],[-84.8761891039191,79.313745724801],[-84.9320460480629,79.2716369421087],[-85.2399225886138,79.20635589161029],[-85.9114713968336,79.1148789038523],[-86.30589629388149,79.0794988158083],[-86.5749149169243,79.0173506623818],[-86.6433093507444,79.01863036694259],[-86.81583105535658,79.0794441360158],[-86.9561167955647,79.0771332849764],[-86.97485295947729,79.0438373267347],[-86.8875901830106,78.9942599356572],[-86.90369232295289,78.9657306674061],[-87.31708279092508,78.8336933108477],[-87.4814556429284,78.6877363713063],[-87.5795493325228,78.6701624562317],[-87.6681938921585,78.67158911243538],[-87.812194749074,78.6978181121244],[-87.8945852433165,78.7613934174993],[-87.8429813170481,78.87088347942209],[-87.6551984589438,79.0214993958137],[-87.68192871994889,79.0603012230462],[-87.750687759229,79.0613541984426],[-87.82640882496618,79.0481062231879],[-87.9974467861054,78.9786857348942],[-88.1254544931488,78.8990185256104],[-88.2588386613592,78.6996309807656],[-87.9694609072455,78.6475019891485],[-87.9361056061155,78.62303871723509],[-87.9685112782386,78.5516649543221],[-88.0773467537381,78.5054010950382],[-88.2365445801327,78.49336474967228],[-88.41954382390219,78.5294596235131],[-88.5605926561918,78.61755066553],[-88.6009524963648,78.6276581693363],[-88.6893821762508,78.6288082564081],[-88.7373123221398,78.6198462657504],[-88.7667523672398,78.5436308785917],[-88.6194171674391,78.4699316813997],[-88.5953387190316,78.36433290694679],[-88.6664653145264,78.2361209679822],[-88.7289389412798,78.1843425568329],[-88.8229224449297,78.1616608220577],[-88.9634619546054,78.1873422338704],[-88.9679018337586,78.2352061908559],[-89.05666843007259,78.2888851237007],[-89.2805877657921,78.32974765661159],[-89.5575790356501,78.4140257430878],[-89.7099631381357,78.4872847963883],[-89.8530055958538,78.5986400742813],[-89.9661080234508,78.5901081977241],[-89.9975712644784,78.556917933202],[-89.8495214349114,78.45994089892308],[-89.8550510830645,78.4408695760317],[-89.498892725353,78.25565917975358],[-89.4953673998652,78.198272627454],[-89.54101388576818,78.1892015937212],[-89.6064772300707,78.1851073686087],[-89.7661162247156,78.2249471882035],[-90.02301895706609,78.2273691888572],[-90.0669329742333,78.3042041715522],[-90.3797925480355,78.3498129337172],[-90.5084842526252,78.3555711748737],[-90.68269726784439,78.35204175887249],[-90.7506711542018,78.33817125922819],[-90.75472868932088,78.31909149312558],[-90.6499829320919,78.3040471942467],[-90.4775632059639,78.30279212635],[-90.3552687136223,78.2731825652177],[-90.3680037288042,78.2207430702422],[-90.5287551227045,78.174223784634],[-90.6374832762604,78.16546785395738],[-90.9989738895047,78.1726053317742],[-91.3371950322232,78.1935375099509],[-91.6310816829814,78.23302558334498],[-92.0389653841325,78.2296021125916],[-92.1863148506492,78.2586007311925],[-92.1822417395523,78.3015554317155],[-92.2231717208902,78.3255123202317],[-92.71537226976568,78.41687360843848],[-92.9090159940997,78.4789998582329],[-92.9297260141527,78.5124320081982],[-92.88547521840329,78.5219875977645],[-92.6661719548264,78.5171354252583],[-92.13652507752839,78.5450031053263],[-91.9825384589588,78.544610441321],[-91.8707819203056,78.5586113277988],[-91.8666274114709,78.5920431232682],[-91.9527229158173,78.6114128459397],[-92.3075174542986,78.6026814515687],[-92.4619034612637,78.6076959265248],[-92.74770792920458,78.64139055743789],[-92.8586005236504,78.6414179840765],[-93.03691851129079,78.6079420120538],[-93.169613002358,78.6078552083862],[-93.3243503196715,78.6363511171015],[-93.3687346887365,78.6745175254031],[-93.4133567159918,78.7031220441065],[-93.483403803234,78.716489584241],[-93.6373108986548,78.7457041501634],[-93.6604277795307,78.77433075630978],[-93.5486011068775,78.7936931392508],[-93.07714113376159,78.7799566826256],[-93.0763422569661,78.8134161098977],[-93.2786884499339,78.8419238675132],[-93.7754679058434,78.8553169809352],[-93.93496711128789,78.8835453868824],[-94.1207673127778,78.95465150694858],[-94.148453111057,79.0263023572952],[-94.1035487581242,79.04081698132708],[-93.73698615707039,79.0610683944396],[-93.2306076550361,79.1097919211932],[-92.8369486176127,79.1338758695757],[-91.7957276292408,79.13211210360939],[-91.3536977760063,79.1447557057868],[-90.6477348193148,79.1887087800934],[-90.5022361211261,79.2116643920307],[-90.4973596572735,79.2307829801483],[-90.5416048363938,79.2406674360827],[-90.70504191386958,79.2417484600446],[-91.0855232782059,79.2104510377636],[-91.4606410242305,79.1978664537724],[-91.9027702441752,79.1994331034331],[-92.2504691644147,79.2146192771906],[-92.503911885971,79.2532846333034],[-92.5024386429921,79.2724278556888],[-92.4548064758745,79.281942671895],[-91.7046060064912,79.28016988234918],[-91.42168877742249,79.2886521421248],[-91.2313141537601,79.302147681794],[-91.1071220826761,79.3350455164353],[-91.2211854715335,79.3547714908843],[-92.1667799869737,79.3436838996378],[-92.3313715948526,79.3487765060344],[-92.35189606732058,79.3823216747514],[-92.3031974361093,79.3966060205559],[-92.29949524772618,79.4349036937726],[-92.3941609247301,79.4398403938496],[-92.46707726441099,79.4207853148233],[-92.586127139478,79.4161232773398],[-92.82083827136319,79.46892231708519],[-92.91622361948528,79.46893089237689],[-92.9642686723332,79.4593477843404],[-92.9653210853981,79.43061749611469],[-92.7549087792598,79.3683551173326],[-92.75596298578049,79.3492082453171],[-92.85098561429,79.3348710623],[-93.0631420006366,79.33004708661258],[-93.156974749619,79.3491364191613],[-93.1567038539994,79.3634984080689],[-93.251079849163,79.3729896480715],[-93.3928190779625,79.3345154504522],[-93.5339390398628,79.319922731062],[-93.6736269362949,79.2669823392978],[-93.9075154158757,79.2615849695955],[-94.001933502497,79.2756557752029],[-94.0041237233731,79.3139460257202],[-93.8643447538696,79.34309112956448],[-93.8181738193733,79.36715607522069],[-93.8662859553904,79.3861774554583],[-94.0082674235209,79.385752334671],[-94.3563082080203,79.3078467945351],[-94.6572561944784,79.2681362814549],[-94.9347542539201,79.2426592214325],[-95.0748526829283,79.24179857785418],[-95.1939268127552,79.25538773063829],[-95.243083163852,79.2694256739782],[-95.27959766231768,79.345816226746],[-95.4971557996577,79.37299860194858],[-95.72088574445898,79.42397108262],[-95.6835033672716,79.4722045375477],[-95.7028788779546,79.5631399490811],[-95.5856602185415,79.57843847122119],[-95.0809107334897,79.5867133703254],[-94.6275408447527,79.6275609922828],[-94.1725346429047,79.69178941962599],[-94.1021355940914,79.73037423400578],[-94.1044333204079,79.763920237048],[-94.1793866406875,79.782835451258],[-94.3021018667851,79.7823782401213],[-94.6132786294537,79.7139087392692],[-94.90307760613608,79.69322321652429],[-95.23532765135968,79.6432525647451],[-95.7667833930552,79.6345612280214],[-95.86573448747339,79.6433380772941],[-95.941768606097,79.6570864048861],[-96.02865613320249,79.7139030448125],[-96.18740044197338,79.7604652664805],[-96.3010510666093,79.8170077775024],[-96.45974942266179,79.8538857403849],[-96.4667723809254,79.877825149697],[-96.20369775366738,79.9139274166104],[-96.2101770415455,79.9378756198376],[-96.4951959998493,79.9735994290746],[-96.5023858436795,79.9975459829373],[-96.416342202029,80.0464193662501],[-96.6072206918422,80.0925980230413],[-96.6162719170468,80.1213416533865],[-96.3377605376675,80.1240296451416],[-95.89764133877009,80.08942945190338],[-95.3291915025634,80.02640042853899],[-94.9022750489086,80.0289749859887],[-94.5812501771384,80.0785629827996],[-94.4297789453581,80.079223154135],[-94.225423043008,80.0512268715694],[-94.1505969603419,80.06108336299728],[-94.15275557777568,80.0898620673268],[-94.3074295320738,80.1228931764259],[-94.310040886466,80.15167581956338],[-94.10969290281268,80.1955712949949],[-94.1127986448124,80.2387565906886],[-94.21696613116949,80.2576053527876],[-94.3711209510408,80.2570318695919],[-94.5954058231641,80.1984826428474],[-95.0194638423175,80.133908831609],[-95.4253548342884,80.13136853937819],[-95.55520711792899,80.14486622866728],[-95.560317314163,80.1688400542036],[-95.36319371528339,80.2038112079746],[-95.3441334405363,80.237551883483],[-95.5501618746104,80.2409554148139],[-95.8530180976764,80.2194746725149],[-96.05884122481999,80.2225981736971],[-96.2203370622385,80.2500319269132],[-96.645947493215,80.2941015305254],[-96.6647094641495,80.3516208968174],[-96.565703814333,80.3670183584747],[-96.410069618111,80.36849318071448],[-96.2079145951922,80.389539529289],[-95.9726016943157,80.3867075730483],[-95.7340345520698,80.3693402959613],[-95.6042246100748,80.370286787555],[-95.5294199818554,80.3852286070035],[-95.6203441489703,80.44225809187019],[-95.9489987118365,80.4974686501851],[-95.9148984742674,80.5698666112101],[-95.7387002286767,80.6096678836482],[-95.2578969498343,80.6032674184572],[-94.9700284692583,80.6337488488069],[-94.4902367510921,80.6408054699289],[-94.142282956679,80.6324566516204],[-93.7673342233161,80.5998390568597],[-93.6077365421329,80.6001605540336],[-93.528072447677,80.6099047288877],[-93.5284196801947,80.6339242787245],[-93.6088261885403,80.64820219466],[-94.1464097456754,80.6853026224591],[-94.31013876279609,80.7135867482359],[-94.3124435324122,80.737610859076],[-94.2327800716703,80.7523091370896],[-93.9898994880554,80.7578583417255],[-93.8556498634213,80.7774308636098],[-93.8839828357501,80.80139706268119],[-94.07582101368739,80.8249128327026],[-94.5663939748615,80.8279700892553],[-94.8157551613017,80.8557024704841],[-95.0614767078193,80.8544454905347],[-95.2497176210357,80.8389484464931],[-95.4414901392163,80.8425810492754],[-95.5013503857439,80.8662497278027],[-95.3717555686337,80.9007539395962],[-95.3768180856463,80.9247832857329],[-95.54729714208088,80.9477574262267],[-95.5517265381294,80.9669786209125],[-95.344794601712,81.035667800703],[-95.1221488363071,81.03694770749618],[-94.92332252684,81.01392703795489],[-94.7837504542106,81.0097888563714],[-94.5912797403024,81.0250707402694],[-94.4828653374966,81.0495640196658],[-94.3160437091215,81.0549867402289],[-94.231038859836,81.0408412003922],[-94.1985929388687,80.988033100114],[-94.05871283290429,80.9692191430704],[-93.8649372091594,80.9649167989584],[-93.7826305601443,80.97953278484158],[-93.7836338752525,81.0035770308693],[-93.9262236093849,81.0705859347018],[-93.9284428023058,81.1090673206392],[-93.7321373751658,81.1143222492577],[-93.5633602618557,81.1001947077079],[-93.1425622857533,81.10546365821918],[-92.8597109700191,81.14401002167],[-92.82854493213618,81.1921189569305],[-92.8560139850376,81.2065583869499],[-93.0818213981102,81.2402118900276],[-93.7369402331644,81.2442329122661],[-93.9084007421737,81.25348062113179],[-93.9948967359888,81.2677046598172],[-93.9968090832974,81.2965818440314],[-93.7411215405789,81.3549367620988],[-93.5104465825446,81.3601456470352],[-93.3995328805727,81.35103875983039]]],[[[-103.23997056247099,78.0841536769282],[-103.331178109298,78.09077754942699],[-103.34260742067399,78.1049035727566],[-103.26440827236,78.1413696489254],[-103.229601417826,78.2053943689441],[-103.139108233911,78.2277047883548],[-102.969804880256,78.2331760591379],[-102.841913285763,78.20825220178648],[-102.82365968263099,78.1846726941165],[-103.03326759442,78.1489589847455],[-103.23997056247099,78.0841536769282]]],[[[-101.755141937219,78.1057980608637],[-101.839189657886,78.1034012043846],[-101.88772427466,78.1116440733072],[-101.913924163478,78.149450715754],[-101.8783005742,78.16011564022588],[-101.814986554199,78.1619255283278],[-101.693393957296,78.1412706291378],[-101.68061907016498,78.1223592594653],[-101.755141937219,78.1057980608637]]],[[[-94.284200586261,78.1560396717195],[-94.413656559894,78.17453253566678],[-94.4148931889232,78.1888481970159],[-94.5467445085937,78.2263783321069],[-94.5509427280483,78.2693310752385],[-94.5088511419361,78.279098845967],[-94.4219532047065,78.2699794841256],[-94.3543196551631,78.23210346296028],[-94.2016228790291,78.1945806364151],[-94.2209644471656,78.1658605095694],[-94.284200586261,78.1560396717195]]],[[[-104.624533332458,78.2999147854244],[-104.79307231019699,78.3441237686896],[-104.923869996537,78.4801787332475],[-104.88796944568499,78.5350245956299],[-104.81180545149,78.57190011285559],[-104.55167951841898,78.5814272541376],[-104.12689001995,78.5091510253147],[-103.88582415666198,78.4884089389494],[-103.557983966665,78.4946420673858],[-103.448324826006,78.522489823146],[-103.484484573605,78.5649002389315],[-103.617600946696,78.5895759062136],[-103.89120154343999,78.5949191044601],[-103.943163609619,78.6028457378885],[-103.960106189361,78.6216732219018],[-103.84603269358199,78.6449569366384],[-103.627364865248,78.6522668218186],[-103.468489778709,78.6768672173741],[-103.325043163622,78.7202558446836],[-103.341181540039,78.7391213688284],[-103.393414011274,78.7471380767094],[-103.525784647452,78.7428602945729],[-103.66104229605298,78.76752973304959],[-103.771468355318,78.76387676370149],[-103.922324357153,78.7297094319187],[-104.03231748146199,78.7259701194115],[-104.111314008105,78.7378292541184],[-104.12851937017699,78.7809395281704],[-103.807002853193,78.87915595523158],[-103.82846935455798,78.9027141070576],[-104.059837622362,78.9532705100097],[-104.257022997544,78.9417157930732],[-104.716677987832,78.79911998300199],[-104.887227041411,78.7637142039863],[-105.00194485664,78.7643467859193],[-105.02723399307,78.8121012665691],[-104.827386120545,78.8875764722368],[-104.785253638886,78.9377727856261],[-104.893612856731,78.9533403311876],[-105.248375853996,78.9597967441895],[-105.54433973741,78.9974204660361],[-105.614520920632,79.0191478939193],[-105.675854982454,79.0753895936158],[-105.546907001938,79.1730555080421],[-105.62441225457,79.2434005410958],[-105.548334449292,79.2609023926315],[-105.45657511915,79.26430877575649],[-105.061015689177,79.2738189968128],[-104.885251830798,79.2654373606446],[-104.470915636209,79.2797797179185],[-103.99490620160499,79.3296372663978],[-103.665638414808,79.3352846712848],[-103.44521731763,79.3032973875306],[-102.878362962697,79.170045385652],[-102.76196323614,79.1153311076599],[-102.707036352604,79.0491419037139],[-102.74300543941298,78.980301599984],[-102.83219677611199,78.9486029656651],[-102.812671829832,78.9249786066567],[-102.722177611022,78.8986293338436],[-102.709974764875,78.8554349506773],[-102.613120933585,78.8486229723369],[-102.557490851058,78.8647694869701],[-102.52828602259999,78.9430234913833],[-102.347833037307,79.00624026466818],[-102.12066990478898,79.041591732714],[-101.946099088826,79.0560112436271],[-101.760550225196,79.0561253548291],[-101.573748402626,79.0223682717301],[-101.432512900868,78.9535926086488],[-101.322447768176,78.9274406534666],[-101.03299720843098,78.9057118246425],[-101.010933998512,78.8725018060698],[-101.139239841128,78.792188108408],[-101.107666960099,78.7447703674271],[-100.984345459777,78.7285589245752],[-100.85135715648,78.7318139371593],[-100.647290590694,78.7655982194265],[-100.46928245492,78.7697464426009],[-100.343753019602,78.7485459876585],[-100.279628977148,78.716307318122],[-100.13562350435399,78.7002788731156],[-100.075615238263,78.5952863630235],[-100.01068642814,78.55875978853028],[-99.73674755950918,78.5021978592328],[-99.7231651977069,78.4352284252764],[-99.8693608484404,78.3407993503932],[-99.8364150071923,78.279081854307],[-99.74241997132698,78.2235099292296],[-99.5055349665294,78.1805701678464],[-99.4913373278252,78.1520779240827],[-99.3297187632481,78.0834833931072],[-99.2746036438323,77.8784579780671],[-99.486521895481,77.7972863008266],[-99.6577509266342,77.7647777726274],[-99.8425535687294,77.760623277912],[-99.9525259355407,77.772488961645],[-100.404084596076,77.76170191491099],[-100.560986302069,77.7818081655981],[-100.714281766602,77.830763468276],[-101.00312994759099,77.9626794160345],[-101.120826499532,78.1183341415131],[-101.196026226115,78.1355977569025],[-101.416113721434,78.1441261311474],[-101.787317201581,78.21573045119518],[-102.086343070919,78.24089626312879],[-102.29853792257998,78.2346318011595],[-102.408259361173,78.2072008311271],[-102.514015441658,78.2039806033656],[-102.65159748495398,78.2142222589856],[-102.7755210553,78.2345057112737],[-102.793765624591,78.2580933764986],[-102.734292592594,78.29377657564369],[-102.76721621325399,78.3362402136866],[-102.81731590945,78.3443439937852],[-103.261767182122,78.3252789102005],[-103.62907140159699,78.2936552966236],[-103.74437181612998,78.2751791967838],[-103.839046939233,78.2331425032971],[-103.93239071498999,78.2153380166513],[-104.01672336466298,78.2123563483357],[-104.227260584224,78.2290618581407],[-104.502120296598,78.267545818357],[-104.624533332458,78.2999147854244]]],[[[-101.08323854019899,77.7153551559018],[-101.252285142757,77.7203619537424],[-102.002993898646,77.69392425963099],[-102.07041687507699,77.7015213794148],[-102.16803354915999,77.7226362846633],[-102.319576397101,77.79026046046458],[-102.390148650597,77.88932705914118],[-102.35564063924399,77.9000370153407],[-102.128400161564,77.9069513501645],[-101.678259944628,77.8960590872039],[-101.396824576015,77.8510412991826],[-101.053337134376,77.7690328343052],[-101.027683329089,77.72646092299019],[-101.08323854019899,77.7153551559018]]],[[[-95.4272353139298,78.4529812065826],[-95.08840563258019,78.4189403166982],[-94.8871199921222,78.3772563426002],[-94.840236631505,78.3488835906592],[-94.9440287649743,78.3147947522021],[-95.306108056081,78.28358949003929],[-95.491362619048,78.2343531238807],[-95.4872152398558,78.2105024555686],[-95.1318797755468,78.1224893819986],[-95.03718824657219,78.0515407729228],[-94.9057090617781,78.0142328071716],[-94.9009735433829,77.9760807827422],[-94.9830771831877,77.9612214277557],[-95.23607921297219,77.9689565070631],[-95.3588796591446,77.9489096169106],[-95.6075774710914,77.9325070295834],[-95.911493236935,77.8819422048687],[-96.257736322872,77.8449280297293],[-96.38226755775229,77.8435371841526],[-96.55427686271238,77.865419580954],[-96.6581940241837,77.8641641827501],[-96.689717917405,77.82556082145179],[-96.81012435345019,77.8097161420054],[-96.98272087840428,77.7596862808797],[-97.06513667451358,77.7585701630786],[-97.15320073307548,77.77646687003698],[-97.1581313419306,77.8624196936636],[-97.20835845569728,77.8903982479797],[-97.3020130585491,77.92253815390349],[-97.748945624624,78.00194823474838],[-97.76571853632309,78.04953247112658],[-97.6491574686284,78.0800386196125],[-97.332268738537,78.0846992050459],[-97.0109493626896,78.07474840684948],[-97.0009955613549,78.1131316294053],[-97.1397451014924,78.1495444636478],[-97.3416915093237,78.1802411378326],[-97.91616183727038,78.2290572558442],[-97.9250229081542,78.2528579718805],[-98.1203117151002,78.31196803383529],[-98.2503037230322,78.420021172477],[-98.4458850678909,78.4694316927837],[-98.4640971211683,78.51227278036198],[-98.34485886826069,78.5430748660253],[-98.1023481791279,78.5856976278948],[-98.2480494061095,78.6837510227865],[-98.2838880826701,78.7695076312949],[-98.22877533036538,78.79918883648348],[-98.0816215853406,78.8255139334232],[-97.7222461889413,78.8309459082883],[-97.48731982843898,78.8055248822489],[-97.14686952663308,78.7286311647003],[-96.93894050991078,78.7073071297611],[-96.8039951471553,78.7041545729322],[-96.68597949385129,78.6816007492044],[-96.5866776530771,78.6444398923409],[-96.4955618300688,78.6358867872062],[-96.3184874881734,78.6377897945513],[-96.24857650143319,78.624161464922],[-96.2161116117578,78.5814336446505],[-96.24283595968649,78.5094031595465],[-96.1507684719494,78.49121027688268],[-95.7122571751399,78.49055620673978],[-95.5765653248855,78.4678099662944],[-95.4272353139298,78.4529812065826]]],[[[-84.9690971129907,77.454222701289],[-85.0291781088804,77.4558070065688],[-85.0803407146548,77.4715405540834],[-85.0765373679674,77.5098218060699],[-85.1795077863683,77.5412676368986],[-85.3494440340779,77.56475782863],[-85.3377960906576,77.583650693656],[-85.2914598256487,77.5920817602251],[-85.09206524509149,77.5821988352857],[-84.7920137223382,77.507079354913],[-84.8105321108632,77.4787777942221],[-84.9690971129907,77.454222701289]]],[[[-93.7486375971134,77.4236821994999],[-94.9209781423201,77.4656372188832],[-95.7697469804411,77.4682000092362],[-96.07520704620458,77.47941264934809],[-96.1802368990585,77.4973580418598],[-96.2269505630384,77.5254669086896],[-96.3989675627124,77.56645543330569],[-96.4305778869189,77.61381375548548],[-96.3816999796648,77.6668849020502],[-96.2090817662818,77.7213280584534],[-95.7683158025456,77.7878474248797],[-95.3945765696204,77.7815916354759],[-95.27271752892088,77.7968778080373],[-95.1278451784621,77.7979705514218],[-94.916141691467,77.7612835308797],[-94.5858319593749,77.7632979383218],[-94.0676416451603,77.7323643076963],[-93.8621933036841,77.7473955095937],[-93.7391702339772,77.7716042237666],[-93.63583407334289,77.7718749134588],[-93.51143815791508,77.74355055655919],[-93.3052531098892,77.7248376315129],[-93.1410835065282,77.6868899340973],[-93.1417295480864,77.6439948875338],[-93.1829967312419,77.61536213049588],[-93.44787029953399,77.54827028845828],[-93.4674046520468,77.4720041868952],[-93.7486375971134,77.4236821994999]]],[[[-109.268784809996,76.9594752322514],[-109.36053330513498,76.9689131372572],[-109.388123451867,76.99190135187048],[-109.361455210262,77.0032840058812],[-109.250607898578,76.9949324737702],[-109.22324251556898,76.9719304295218],[-109.268784809996,76.9594752322514]]],[[[-89.95880280363778,77.205771858012],[-90.135709187731,77.21223340068019],[-90.5375880954498,77.2823835426401],[-90.9288179290381,77.32331942046049],[-91.1590988625344,77.3819011257546],[-91.2139377210613,77.4155601914458],[-91.1946680349281,77.53457712733709],[-91.2502237116975,77.5682431336423],[-91.2410474754164,77.625391013648],[-91.0897984147798,77.672211395146],[-90.9436392749566,77.6856213396557],[-90.7198361419096,77.6745802943861],[-89.9467486257082,77.5679479177802],[-89.8324618508575,77.538202616005],[-89.7643382283384,77.4898126591904],[-89.7246431559825,77.4131035838714],[-89.56422894109319,77.3398456707473],[-89.5722952857405,77.3113297171256],[-89.795586770435,77.2231746522259],[-89.95880280363778,77.205771858012]]],[[[-104.927778872609,77.081248400679],[-105.057279596975,77.1155424889997],[-105.077806404235,77.13891181112679],[-105.41421359692998,77.1779362172518],[-105.510835671852,77.21743879259088],[-105.746033923646,77.3820659775075],[-105.799476053271,77.43806342084339],[-105.77150848576,77.473314332975],[-105.84711822005698,77.50892082374],[-105.909028166406,77.59378353206628],[-106.12040539253199,77.70136062414369],[-106.127128546444,77.7497758134887],[-105.985715813068,77.755941223077],[-105.886329832395,77.74076251632978],[-105.504649764883,77.6499992039652],[-105.318408041842,77.58490940730378],[-105.111509226861,77.4041976128789],[-105.011661122766,77.3840655398824],[-104.908967657211,77.3834211513622],[-104.837486615165,77.37178585299098],[-104.568133805578,77.2954122564182],[-104.489328878364,77.25013377489138],[-104.426515391796,77.1510063192572],[-104.534770500112,77.112813826631],[-104.74674365913698,77.0800031227718],[-104.927778872609,77.081248400679]]],[[[-95.98148284727968,77.1939637450642],[-96.0084672579558,77.1864328512644],[-96.1071284944886,77.1887069686531],[-96.1555875210656,77.200787149598],[-96.167449690318,77.2112563126869],[-96.1392659559624,77.2236332392365],[-96.0884335710804,77.22820640488358],[-96.0225311443257,77.22756637892908],[-95.9778130873456,77.2163265815493],[-95.98148284727968,77.1939637450642]]],[[[-90.8633264630866,77.1371358883347],[-91.0373186001046,77.1573224187202],[-91.2065846927559,77.2107096054032],[-91.21966364369119,77.2536415708291],[-91.156989146936,77.2723336463151],[-91.0169431360781,77.2762514325684],[-90.7692686551669,77.217435727345],[-90.7603713233675,77.1602229159948],[-90.8633264630866,77.1371358883347]]],[[[-95.47647441767089,77.156330526922],[-95.6357471700842,77.1644064823113],[-95.6793273195137,77.1878198266242],[-95.803070830118,77.2152104846241],[-95.7867629604598,77.2344339918461],[-95.6281987402036,77.2359531268634],[-95.4650524669331,77.2088383066466],[-95.4232572037966,77.1949094557609],[-95.4188225912434,77.1663628636241],[-95.47647441767089,77.156330526922]]],[[[-95.86760539816609,77.1235950142199],[-95.9014313531543,77.1123695301585],[-95.9404480482122,77.1069614039369],[-96.0018418857621,77.10887322725769],[-96.0507823149455,77.11927352024979],[-96.0522599137447,77.1382945503219],[-96.0049759030907,77.15114780717069],[-95.9255484586187,77.1450647572316],[-95.86760539816609,77.1235950142199]]],[[[-97.4050193436322,76.9373158361364],[-97.4853343058271,76.9455872751553],[-97.45947228748798,76.9889296165429],[-97.4234521953956,76.9990364543301],[-97.2872965080281,77.0011356472259],[-97.24566115769369,76.9922251383541],[-97.2388628499799,76.9684825546729],[-97.4050193436322,76.9373158361364]]],[[[-97.1306514542925,76.8001934786958],[-97.156247837527,76.7925667379904],[-97.2522830048206,76.7944560471642],[-97.30034860578189,76.8063346795387],[-97.3127302426394,76.8167456891436],[-97.286369519405,76.8292169309697],[-97.23736823943169,76.8339813325534],[-97.1732980022435,76.8335973711575],[-97.1289295565541,76.822544284112],[-97.1306514542925,76.8001934786958]]],[[[-99.4826018615995,76.7059917901982],[-99.8776675171633,76.7300153501957],[-99.8910560899565,76.75838805698248],[-99.74083159331019,76.7668239529357],[-99.5945392253494,76.7416151069216],[-99.5162920756198,76.7386685843211],[-99.4740448684708,76.7300906357913],[-99.4826018615995,76.7059917901982]]],[[[-99.0441310396791,76.6710228353593],[-99.1408240344305,76.6655526550152],[-99.1946878383689,76.6691471528832],[-99.25016675611658,76.6779678878946],[-99.2497713334878,76.6998956536458],[-99.1821295601079,76.7096646959542],[-99.1115671213651,76.7098124112387],[-99.0630756452221,76.700863968502],[-99.0441310396791,76.6710228353593]]],[[[-101.237976415554,76.5829642176118],[-101.463032628346,76.5761876477065],[-101.527513413629,76.5886002403567],[-101.477098942618,76.6333135294716],[-100.819051732564,76.7627712905763],[-100.459844315679,76.7773395037546],[-100.416898676109,76.7688994504561],[-100.409656842883,76.7547259197821],[-100.54216479378698,76.71287948566558],[-100.61471582906398,76.6678106203168],[-101.237976415554,76.5829642176118]]],[[[-83.80150427061619,76.4250367844438],[-83.82217773085048,76.4065152070584],[-83.8430854055922,76.3975432682571],[-83.9122784203179,76.3975166209592],[-83.9665476804075,76.4059887017757],[-84.00001412037338,76.4199283218353],[-84.0045275302967,76.43552286797949],[-84.0036638442937,76.4509027531392],[-83.97002883574869,76.4762022280457],[-83.9263635152232,76.4786740207054],[-83.8562064506577,76.4688672506494],[-83.8394745963779,76.4583813171709],[-83.8254560441761,76.448005201926],[-83.80150427061619,76.4250367844438]]],[[[-97.8365318555466,76.5635181056872],[-97.9147885673751,76.5537720464689],[-97.9565476647524,76.5533381806412],[-98.0133375214297,76.5579912064508],[-98.0571807788484,76.5671520755911],[-98.0600149961151,76.5802572828589],[-97.9956260192979,76.5897031978884],[-97.9223599500264,76.590468676898],[-97.8398236277226,76.5799256889615],[-97.8365318555466,76.5635181056872]]],[[[-97.0615566449928,76.5973730472776],[-97.07964839010118,76.5646491761893],[-97.1326329480362,76.5458766253354],[-97.1711768254473,76.54733386834809],[-97.2003729395918,76.5558600993373],[-97.2100638429449,76.5732870283964],[-97.2034172189492,76.5978463965078],[-97.1488677726809,76.6070181759002],[-97.092820983482,76.60656292798959],[-97.0615566449928,76.5973730472776]]],[[[-89.896198380116,76.8288900790104],[-89.8600898226829,76.8189943710579],[-89.87072171222859,76.7762638754861],[-89.7630076008843,76.7465542718242],[-89.69637514232778,76.7077424493619],[-89.7086224944633,76.6602863363578],[-89.7977425183139,76.6089194897009],[-89.8177560343078,76.5282567421916],[-89.79187356333689,76.4804057489332],[-89.9090326110693,76.4626386697831],[-90.0997322758664,76.450319084662],[-90.2404093217356,76.494468790226],[-90.2688462500317,76.5375332286757],[-90.47027703784039,76.6629747000824],[-90.4777647237933,76.7201236065749],[-90.4346688246702,76.7435477803912],[-89.99240693807889,76.8298705370901],[-89.896198380116,76.8288900790104]]],[[[-104.43536953995,76.6836641867128],[-104.354876697447,76.6994508170635],[-104.204584455007,76.7055205833917],[-104.092381901789,76.6858597322661],[-104.071263617311,76.6336050121461],[-103.846657828825,76.6424517249194],[-103.802146915081,76.6345382590717],[-103.644670117738,76.57793823208809],[-103.20172720994898,76.49348386044959],[-103.153736437851,76.4519394980436],[-103.326065341723,76.3733104621751],[-103.459885684532,76.348965058244],[-103.603379347752,76.338614106832],[-103.860052717989,76.3285193017696],[-104.258729524114,76.3316434274133],[-104.324464372117,76.3433979213472],[-104.335313999379,76.3574258693201],[-104.155439163835,76.36965208023568],[-104.125830038507,76.3805057974853],[-104.180456827767,76.4024027503753],[-104.294437695885,76.40255176743088],[-104.400999867769,76.41744937177839],[-104.415491304147,76.4844429844092],[-104.57497143861099,76.5405930823489],[-104.635343201869,76.6153858776781],[-104.572259855549,76.6566876586476],[-104.43536953995,76.6836641867128]]],[[[-97.1376030233055,76.4495841141103],[-97.2288719055175,76.448874423026],[-97.2689681229188,76.4616787470812],[-97.2756575423567,76.50362879764488],[-97.20654354290718,76.5059292517198],[-97.1372004419372,76.48371073336679],[-97.1376030233055,76.4495841141103]]],[[[-89.325314914891,76.3987851330432],[-89.4147271907374,76.4141759432267],[-89.3882450322539,76.442393006519],[-89.3133977443986,76.4414527524165],[-89.2453136860806,76.4167906084625],[-89.325314914891,76.3987851330432]]],[[[-81.5595770439967,76.122783296983],[-81.6205359266585,76.13975968204],[-81.5835311707695,76.1623184624431],[-81.43376382260648,76.1850034989538],[-81.3612478322941,76.1819582113474],[-81.3327503240831,76.17111523210808],[-81.3817205065674,76.1346175291454],[-81.5595770439967,76.122783296983]]],[[[-79.47408386675659,75.7564834603466],[-79.5620490460452,75.7802702867654],[-79.5491261517077,75.7941456222922],[-79.65547033478629,75.8381668810041],[-79.6210241357835,75.87518596317989],[-79.2632170414274,75.9783689534324],[-79.16021153146389,76.045882643191],[-79.0387047750005,76.0930555956414],[-78.948733724878,76.1078560516929],[-78.8771268001239,76.1041635522255],[-78.8466451567169,76.0783037988061],[-78.8882042945815,76.0367633266735],[-79.1214109103831,75.95174805033258],[-79.1617847038746,75.9101744382687],[-78.9511709667638,75.8410809968386],[-78.9692008173326,75.8226198040476],[-79.0133170692116,75.81522180677169],[-79.2945751944741,75.8297157763707],[-79.3605176564296,75.81853632377738],[-79.4041594594682,75.7723136221704],[-79.47408386675659,75.7564834603466]]],[[[-103.552165718978,76.0565651567375],[-103.714079294448,76.050143592005],[-103.957054466675,76.07885800660469],[-104.147473671572,76.0854767932193],[-104.381000190795,76.12391280115648],[-104.474713488532,76.1730125601937],[-104.402019906173,76.2243407415183],[-104.340106854204,76.2414150578987],[-103.58950420185198,76.2669148806218],[-103.035447483408,76.3071605093728],[-102.81533948754,76.3151767911008],[-102.68982545354199,76.2956389075653],[-102.555983463856,76.2043031139589],[-102.72262393481898,76.1167051978432],[-102.87319870118499,76.0920045194357],[-103.399837760766,76.0769465703245],[-103.552165718978,76.0565651567375]]],[[[-103.43991139597098,75.9214638489794],[-103.69280832076198,75.916224484008],[-103.795213502637,75.9313392202844],[-103.78737010372998,75.9460989540109],[-103.454309097225,75.9689946578346],[-102.98347759684799,76.0350699062511],[-102.584013383043,76.0736563528123],[-102.47561831246999,76.0775041200019],[-102.394552280367,76.0659524769089],[-102.377063637621,76.037771498364],[-102.473438615896,76.0151832021942],[-102.75511406856499,75.9954554862206],[-103.43991139597098,75.9214638489794]]],[[[-95.0902576096934,76.01326067695699],[-95.2764748287728,76.04493226944528],[-95.2815580554349,76.0828915167191],[-95.0800470736597,76.0798411663752],[-95.0424000863212,76.0706412292123],[-95.0373799813072,76.02793300634409],[-95.0902576096934,76.01326067695699]]],[[[-103.44514336984,75.84912408114198],[-103.53871542241698,75.82617818818748],[-103.627309324601,75.82263271333818],[-103.686988902357,75.82984937851],[-103.703383905008,75.8532430044867],[-103.511290542088,75.86574357018009],[-103.44514336984,75.84912408114198]]],[[[-95.7705399951378,75.9252495427568],[-95.8285286342117,75.9162303289288],[-95.89183243985,75.91987224954029],[-95.940953692409,75.9308536054396],[-95.9244810002765,75.94935756094169],[-95.8994155785618,75.9725024644232],[-95.8548122249399,75.9907100083817],[-95.819941564483,76.0000429156443],[-95.7611840353618,75.97638115035899],[-95.7453613601749,75.9324374428448],[-95.7705399951378,75.9252495427568]]],[[[-102.969154328615,75.7618084031464],[-103.251708322806,75.7509604362101],[-103.331713623639,75.7622487599572],[-103.344316109022,75.7809799674755],[-103.100536588474,75.8240538394642],[-102.939249174818,75.9118091741284],[-102.569937966805,75.93495249986148],[-102.288415527784,75.9832921286687],[-102.12386633748699,75.9841678810743],[-102.115425082304,75.9700710678837],[-102.175914051741,75.9488164019224],[-102.33144553497898,75.93382156394019],[-102.406466127767,75.9071936632074],[-102.49977184424898,75.8223142685374],[-102.57395466099898,75.7956509336852],[-102.969154328615,75.7618084031464]]],[[[-96.6782802361328,75.7912927624634],[-96.7330339942145,75.7952644455426],[-96.7395412806346,75.8236886712124],[-96.5556620902707,75.8880507640401],[-96.5016314667554,75.8887822308838],[-96.4635996056622,75.879783734302],[-96.4595908697864,75.8608286720528],[-96.5919292443446,75.8067597351824],[-96.6782802361328,75.7912927624634]]],[[[-95.50171967646098,75.7632131080048],[-95.5263729312521,75.75575298371109],[-95.6155340606777,75.75818255126569],[-95.6589530957235,75.77030152159149],[-95.6693235067345,75.7807537162679],[-95.6434157859246,75.79303920797739],[-95.5972983361321,75.7975109747916],[-95.5377320990355,75.796764061575],[-95.49766807961669,75.7854908354669],[-95.50171967646098,75.7632131080048]]],[[[-94.6100844872878,75.7271974878333],[-94.8419857411896,75.725587297309],[-94.8964956535476,75.7346722794574],[-94.8990048923774,75.7583823579624],[-94.86423780239419,75.7681351251602],[-94.8716526605447,75.8392782860202],[-94.9296863603308,75.8768203211939],[-94.9343465169155,75.9195148540214],[-94.8831590581904,75.9483869691919],[-94.7233848523877,75.9827624133335],[-94.55964915645528,75.9790802954948],[-94.4670682390804,75.955901889374],[-94.4874290937862,75.7564372085272],[-94.6100844872878,75.7271974878333]]],[[[-100.252911036478,75.62597069020329],[-100.84875556031,75.6039495417292],[-100.908542087428,75.6164785381387],[-100.918011746357,75.6353082162298],[-100.764187892533,75.6494791972699],[-100.272434830938,75.6683899314956],[-100.212972804088,75.6557169596646],[-100.206513652266,75.6415758161286],[-100.252911036478,75.62597069020329]]],[[[-96.7670459851576,75.7092317080396],[-96.7449348582102,75.6905454482096],[-96.8105231625876,75.6658271807254],[-96.9147019485507,75.65476562520189],[-97.00563999013788,75.6628756482673],[-96.9925181871765,75.682087633994],[-96.8382125454883,75.7081844829118],[-96.7670459851576,75.7092317080396]]],[[[-101.330137876749,75.5294940054834],[-101.412584865479,75.5188478872762],[-101.49359570007998,75.5202436102058],[-101.526868452654,75.5275232090998],[-101.530664978015,75.542275787642],[-101.511458068302,75.5562460087277],[-101.467485705693,75.5654210406732],[-101.405106224825,75.5669346859074],[-101.3524072376,75.5614556699918],[-101.330137876749,75.5294940054834]]],[[[-97.1920011977714,75.54773353826229],[-97.2154771026709,75.5401256656971],[-97.3036201547593,75.5419946727861],[-97.3477464388535,75.5538309130876],[-97.3591195582955,75.5642087285225],[-97.3349445990154,75.5766452108155],[-97.2899898846247,75.5814016578037],[-97.2312024369129,75.58102854388748],[-97.1904689597391,75.5700165687659],[-97.1920011977714,75.54773353826229]]],[[[-96.65992143240479,75.3877966939301],[-96.80037458365109,75.3904792205009],[-96.8580991158153,75.4133530410266],[-96.9372390887498,75.5261380716218],[-96.87466508728059,75.5603458748047],[-96.4113235537903,75.6286766994973],[-96.31636947005498,75.6869156740379],[-96.1696728548807,75.66502041067288],[-95.99214567545089,75.6671572219778],[-95.9339401228215,75.63934490561448],[-95.928203034409,75.60617682974478],[-96.027516540405,75.5670367764698],[-96.0216055814227,75.5338765057201],[-96.0533959554588,75.5145092816001],[-96.1570865536889,75.5037449812446],[-96.2309594176848,75.52180493627839],[-96.2734828804217,75.55924565752089],[-96.3644567562345,75.572308648785],[-96.37161095179259,75.5199801010382],[-96.5858794749986,75.4505776901898],[-96.5932446086721,75.40299537949828],[-96.65992143240479,75.3877966939301]]],[[[-97.22203278480099,75.2603326278817],[-97.2762633777702,75.2689196594884],[-97.28959175308088,75.320939472293],[-97.2657918090515,75.3640923812561],[-97.2148219135749,75.3696920817485],[-97.17765835347478,75.3608047554101],[-97.1576184322112,75.2803959568418],[-97.22203278480099,75.2603326278817]]],[[[-104.071528927401,75.1019538152087],[-104.240332686338,75.0945178865288],[-104.31438096536,75.1008385075072],[-104.756999466289,75.1817945612429],[-104.80155918907799,75.2182721514532],[-104.751118627259,75.2687752268268],[-104.539472840441,75.3891774603051],[-104.46686938650899,75.4598464083267],[-104.397555984037,75.4869880427459],[-104.293764833118,75.4915342507012],[-104.062847839902,75.4678152403594],[-103.977309994116,75.4474073613793],[-103.908076960229,75.3734023742459],[-103.677434978025,75.26776052257709],[-103.599680689278,75.2037583879183],[-103.632077826975,75.1735929996245],[-104.071528927401,75.1019538152087]]],[[[-100.173896221919,75.6090653909479],[-99.8434479603328,75.6274905515939],[-99.79662682236169,75.6430224143038],[-99.8148965560005,75.6854771523558],[-99.7384834450744,75.71607711991729],[-99.0034124558054,75.7148851857527],[-98.8843756536094,75.7318808608978],[-98.8896365527325,75.7460552568032],[-98.9661325240721,75.75861882151499],[-99.5037273190155,75.7553846394184],[-100.329693503827,75.7145384640111],[-100.80754159844798,75.7007516663362],[-101.12373324402,75.652898620206],[-101.77465194767198,75.63186559581499],[-102.021770869189,75.5947139776758],[-102.246597356876,75.5820468209023],[-102.343824020839,75.53544855700059],[-102.439959392169,75.5175960001557],[-102.57896492417899,75.5412708458985],[-102.633998897584,75.5728054397613],[-102.759259141785,75.6017210444319],[-102.776889851338,75.62984750838268],[-102.63359532380498,75.6591498003378],[-102.50987793624398,75.72122112033199],[-102.368683393926,75.7262915166539],[-102.134585039312,75.6961913742536],[-102.069537232015,75.7080302326173],[-102.080518793931,75.7268173347974],[-102.16227221844699,75.7431502750007],[-102.17519694430298,75.7954234253304],[-102.236856687704,75.8076545979951],[-102.253778443238,75.8358298083006],[-102.166620916018,75.8724213744385],[-101.999217542268,75.8973228533989],[-101.856200391322,75.9021288094353],[-101.773902318148,75.8856973605117],[-101.763175211754,75.8668903599886],[-101.61248350750299,75.85746221440229],[-101.489884674968,75.8326978868315],[-101.39816614273198,75.7973384377497],[-101.182696807029,75.765837263938],[-101.093953268262,75.76858030682568],[-100.968775081155,75.8058646200389],[-100.99870620081398,75.8288709794076],[-101.18974325627,75.813454246481],[-101.27099000729,75.8300611325416],[-101.281067606748,75.8488840362431],[-101.477761699024,75.9096819220274],[-101.495979896027,75.9426152514564],[-101.36267168735,75.9994944955527],[-101.375582242306,76.02303153779819],[-101.48645930145798,76.0243267864004],[-101.607416910144,76.0108848666994],[-101.806625164735,76.03794577556589],[-101.830718246079,76.1426077866998],[-101.73799994734298,76.1743871169974],[-101.550871058579,76.2043318361907],[-101.4911051023,76.2301690334219],[-101.73161293810098,76.2273253489288],[-101.855213848863,76.2472935856763],[-101.998784377993,76.2377741761624],[-102.041049655217,76.2459650657713],[-102.092613186716,76.3306180982031],[-101.871399026781,76.4002597308457],[-101.717801042074,76.4915289493132],[-101.624658354621,76.4944568951668],[-101.252206314537,76.4052132564408],[-101.13369379707798,76.3608530057683],[-101.10547372202,76.3090091534666],[-101.000783477126,76.2881635345291],[-100.819201586151,76.2264396621267],[-100.72558855435699,76.1525817213959],[-100.501680621701,76.1110879859168],[-100.46500677157799,76.073862371618],[-100.090900488275,75.9407156823661],[-99.9458910458477,75.9015763624259],[-99.869919364302,75.8940078334824],[-99.744309028707,75.8972330321099],[-99.5547621542721,75.9210713435728],[-99.5487061243921,75.9498488283568],[-99.5887470034976,75.9584017241455],[-99.82508168401189,75.95721863452358],[-99.92572239318,75.9784914769843],[-100.16971244504198,76.1105846065726],[-100.180811473032,76.1341802733054],[-100.055395766212,76.1422744365885],[-99.89452024770189,76.1130062240511],[-99.7061907267685,76.1034486950955],[-99.554444961588,76.1358376062546],[-99.562543573705,76.1547364419393],[-99.6031593590856,76.1632909183831],[-99.7837881965512,76.1540293119351],[-99.9836477765586,76.18714067215699],[-100.168784046127,76.1870685836491],[-100.363087260305,76.2057473550939],[-100.41588580636399,76.2377772639353],[-100.353979893637,76.2633696903726],[-100.227546398021,76.2715462081415],[-100.167416109996,76.3018235081993],[-100.075222065308,76.3042356244688],[-99.9720748529655,76.2830035774198],[-99.89839321814709,76.28488328681838],[-99.9200407201813,76.33212002415848],[-100.127200721031,76.3745894357673],[-100.465256657369,76.3751315556707],[-100.681039659841,76.393085954123],[-100.82812270893,76.4224350496522],[-100.94620577302798,76.4669317176177],[-100.958900774431,76.4905127671817],[-100.864557507985,76.5267457496753],[-100.598457476183,76.56291594009518],[-100.382878675536,76.62618026536579],[-99.5668768652501,76.6370963282359],[-99.46204543819158,76.6156600874554],[-99.4099616983709,76.5834211373954],[-99.2335089795269,76.52536120474008],[-99.1884126312863,76.4165530331613],[-99.1081967340187,76.40403336037248],[-99.0303221561613,76.4439499016464],[-98.8624049848746,76.447594930099],[-98.8287400473443,76.4578576836405],[-98.89576580250379,76.5327959086463],[-99.0067364303565,76.5733694030597],[-99.0050835714851,76.616382370247],[-98.9711248212193,76.6266666939601],[-98.6479468597012,76.6286669504412],[-98.5947768080255,76.6392918095369],[-98.60547582812498,76.6677146497657],[-98.8687579806921,76.7052527468995],[-98.8191992414971,76.7253954749697],[-98.547302682697,76.7166151221583],[-98.4244496283849,76.6951720107392],[-98.36933390644249,76.6485230339653],[-98.2490127390257,76.63174649213978],[-98.2440316145315,76.6175294055866],[-98.3129090840444,76.5971317977672],[-98.3062025525636,76.5781781549913],[-98.16285488928578,76.5475157253061],[-97.92778834025769,76.5232220207612],[-97.7468449462246,76.4882847749755],[-97.7365335625216,76.4551028915119],[-97.8307127360693,76.39626493892038],[-97.81434155521,76.3441417539808],[-97.6105247485484,76.2238548493867],[-97.57851083862859,76.1148940892783],[-97.70190985472878,76.0365744610354],[-97.6571994804193,75.8232140832175],[-97.8469994792765,75.7959809753105],[-97.8798605553089,75.78585390863378],[-97.8740966698808,75.76692727646589],[-97.49864752214229,75.7070824716879],[-97.4487969726843,75.6556355517426],[-97.4875740246502,75.60266724698698],[-97.4591344564565,75.498585406069],[-97.355175539573,75.4385961184281],[-97.4050604657594,75.4282373594264],[-97.51626660545219,75.45005810118698],[-97.760269773553,75.5645020796068],[-97.7940868227607,75.5591194040791],[-97.79913933041668,75.5162313268391],[-97.8517852295456,75.5152435081954],[-97.9671491408924,75.5463348434673],[-98.0360002139985,75.5402443945582],[-98.0228484751945,75.4976949777591],[-97.96020943655829,75.4656222065095],[-98.0243431176891,75.4453540629531],[-98.0243867181005,75.3882948906562],[-98.11992414794008,75.35786773058508],[-98.1155121664428,75.34369173944998],[-98.021557852337,75.3217906558778],[-98.0143770329409,75.2981618389947],[-97.8316922750935,75.2684324194084],[-97.7649699573723,75.2174291116598],[-97.61677462665818,75.1821784913205],[-97.610271636059,75.1585463834549],[-97.674931189293,75.1431049047142],[-97.8332219823759,75.1543666713432],[-98.054661288362,75.2023003508962],[-98.0834146558088,75.239748090078],[-98.1710492797367,75.24272909082109],[-98.17205310598568,75.1904193923046],[-98.1089062209005,75.1536829717697],[-97.9762435795961,75.1135713796291],[-97.9706348961071,75.0946768783604],[-98.05032039706758,75.0740823710245],[-98.408295557711,75.0666299021157],[-98.6525847590234,75.0279721619751],[-98.72054476827599,75.0264334504059],[-98.8663827696323,75.051603328861],[-98.9684385998487,75.04920261923658],[-99.0483126187904,75.0330214824345],[-99.1654555240999,75.0254193637053],[-99.2216758200875,75.0383079858378],[-99.22875194281718,75.0571679546675],[-99.1782768236405,75.1059972623147],[-99.190639597688,75.1390070551225],[-99.26260721497928,75.1467560280615],[-99.3165515941746,75.107334523666],[-99.3075476644295,75.0837618322927],[-99.4121448072177,75.0430453773469],[-99.7571603984667,75.0054470205244],[-99.9852484169047,75.0182693079132],[-100.12416954634699,75.0620264542972],[-100.327780201171,75.09433585595468],[-100.333924212408,75.1466047327663],[-100.42146812138098,75.18698038062199],[-100.462322350773,75.2382572042249],[-100.432293403587,75.24867417696619],[-100.329176979265,75.2516555227012],[-100.099450745606,75.2438452213064],[-100.07532586441,75.2683525439463],[-100.260078243906,75.2917839688052],[-100.28553113664499,75.3482964989195],[-100.324405827006,75.3567322380264],[-100.445517687073,75.35324974799049],[-100.55592114907999,75.3643433981288],[-100.653657274916,75.3853173034737],[-100.660404876884,75.3994383339648],[-100.554519192486,75.43597940495249],[-100.617897452679,75.4579881693896],[-100.61622201822,75.491457919486],[-100.478815507354,75.5002367767879],[-100.177558586839,75.4992144554063],[-100.052337757749,75.5360480710178],[-99.8245429306335,75.54213884551959],[-99.7934982177002,75.55249054336359],[-99.7995327196178,75.5666388668599],[-99.9110067627778,75.5780076948636],[-100.172278461896,75.5661607857246],[-100.23565384493,75.5882677564042],[-100.173896221919,75.6090653909479]]],[[[-86.3759313834969,75.4351599024241],[-86.3325344021355,75.4531348715353],[-86.1820609116302,75.4731788966382],[-85.813176836598,75.468339064786],[-85.7561929115842,75.4763423887898],[-85.7469050518159,75.4951608634723],[-85.8099141630402,75.5111510046597],[-86.138170474636,75.5292354433354],[-86.2017191095012,75.5451368045186],[-86.1907305480733,75.5686824156579],[-86.03891517267628,75.5886478267146],[-85.7976087288825,75.6443195269859],[-85.5706233261144,75.633428116523],[-85.4952429547178,75.6408928924783],[-85.2308617492332,75.7002643255415],[-85.0206962892918,75.7228233296263],[-84.8966806686128,75.7191564150728],[-84.5821792730747,75.6713524796643],[-84.4735724493948,75.6727323553152],[-84.44211448543508,75.6956411206171],[-84.5112464167106,75.7312764460153],[-84.4686219711947,75.7729704866971],[-84.15299674700898,75.8155151359612],[-83.844302313334,75.9010784210048],[-83.7191009212881,75.8968600990155],[-83.4968682726888,75.84609881374399],[-83.3073326718362,75.829832579245],[-82.5436928155479,75.9023488289058],[-82.3653703502174,75.8954468931595],[-82.2832474255516,75.8826162340066],[-81.7958184508966,75.872581220013],[-81.6506618084501,75.84729915872389],[-81.43795631504199,75.8383055410681],[-81.3026522561697,75.8469426591264],[-81.1432538221258,75.8400071025038],[-81.105522623079,75.8190724331468],[-81.1852476607462,75.7888428585683],[-81.226932689568,75.7376750393845],[-81.0916009869662,75.7028058780477],[-80.8987566734074,75.6941741387341],[-80.5423519311469,75.7067803171379],[-80.2232427094209,75.696571823425],[-80.129544402376,75.6582621456154],[-80.1355187761163,75.6102473715445],[-80.1905731022034,75.5887576273971],[-80.3615393673198,75.5583270186956],[-80.3814396366534,75.53514621044229],[-80.3241629828926,75.5179343375842],[-79.79097076425839,75.54984449051699],[-79.6222549774761,75.5365379451146],[-79.5784558283609,75.5052974513947],[-79.6589502025512,75.4561891683842],[-79.563826345609,75.42233691982348],[-79.6563176341614,75.35937311404288],[-79.5659107179157,75.3209104466226],[-79.582500742542,75.3024263744683],[-79.81717379729828,75.21777868323609],[-80.3087041091007,75.1168415981436],[-80.3588094951446,75.056637032959],[-80.2850785369497,75.0192737693095],[-80.1846019542761,75.0142897994878],[-79.8901097513517,75.0525211445599],[-79.7225294459109,75.0439353316567],[-79.5411068455227,74.9717113255707],[-79.5648792311554,74.9246682218786],[-79.67199346388,74.9013101599257],[-79.8000989818834,74.89348768694589],[-80.00122634583218,74.8604045783015],[-80.1300127553274,74.8717557599787],[-80.30153232370549,74.9574350142751],[-80.3978880190119,74.9670010055688],[-80.4388752341658,74.9593750460511],[-80.4653255324096,74.926954347002],[-80.2715133863182,74.8258506261686],[-80.3672065727381,74.7294849312734],[-80.3314060167168,74.6891783288801],[-80.4073414286571,74.6159543561274],[-80.57644430889,74.5954848509283],[-80.92688853514738,74.6029040318986],[-81.3834777879295,74.5811280902023],[-81.8584386926504,74.5066591713662],[-82.08965423513959,74.4880449368253],[-82.2595024949662,74.5097202790412],[-82.3947438112877,74.5585335585338],[-82.4766251235618,74.5619576810864],[-82.5278966793667,74.5353708529458],[-82.6055558479645,74.51944118710288],[-82.7036336736655,74.523462848567],[-82.83288563818918,74.55739540061829],[-83.020801466323,74.5792162640669],[-83.0958986911556,74.6204051818504],[-83.1006710886815,74.77360045221029],[-83.3456233170603,74.84509086345199],[-83.4584973711633,74.9114391363518],[-83.55914898130588,74.9151364312775],[-83.5877083294972,74.8683899777391],[-83.3392217937862,74.7731448681166],[-83.3233918978728,74.74386605600948],[-83.3637698532176,74.6784843325735],[-83.55517107654109,74.5853421853192],[-83.6759457761739,74.5516127481338],[-83.7798958324116,74.5458663692446],[-84.15763012530918,74.5593081393793],[-84.3589938997406,74.5280961357656],[-84.53319098523228,74.514900802793],[-84.7202957381482,74.5401296172789],[-84.9833733364388,74.5485541403332],[-85.0703034406244,74.5750827970845],[-85.0253186238201,74.6308258086229],[-85.0796151100425,74.65632480978549],[-85.0629632442675,74.6891499858348],[-85.1103796860271,74.6953745428927],[-85.1926646729927,74.5645748677163],[-85.3262900050924,74.5305538339361],[-85.4414068102629,74.533995299763],[-85.5289925083381,74.5603652262787],[-85.5771879697537,74.5998323702175],[-85.567012413235,74.6566359607421],[-85.6288897767909,74.6679370216025],[-85.6686854108959,74.6548015170248],[-85.6860598166531,74.5458864803476],[-85.7999159287896,74.5158343822111],[-86.14534812815388,74.5253466481373],[-86.2175181634222,74.551034885318],[-86.2053178140985,74.5792282629962],[-86.23428886725618,74.5894990734345],[-86.31692203080569,74.5916662567418],[-86.3863784827499,74.5459499567312],[-86.4041509821081,74.5036493173259],[-86.4573911411031,74.4955173197328],[-86.5540958344263,74.5027241711312],[-86.8187417398623,74.5899819971782],[-86.919821626181,74.5876426006474],[-86.8996163710929,74.5539258491626],[-86.7077830047313,74.492305113127],[-86.7481377451361,74.474302817201],[-87.1718510989939,74.4937992855818],[-87.2610015244128,74.4768298585605],[-87.3431843794387,74.4786556755127],[-87.4039004299203,74.4942223064945],[-87.3608218431985,74.5217487553019],[-87.36201874009889,74.5644817645945],[-87.462852003416,74.5619237066167],[-87.5306214124407,74.5111845475621],[-87.63756753709679,74.4897198822125],[-87.89630290092309,74.5092102786594],[-88.3814761648319,74.494651674646],[-88.4624674761432,74.5008248637702],[-88.5050674233051,74.5252646752816],[-88.5437041664934,74.5638467132157],[-88.4197813765471,74.8129799846689],[-88.443442007429,74.8465916669883],[-88.4205588585739,74.9220907723918],[-88.45152651270769,74.9321142567403],[-88.5022986351614,74.9329812696362],[-88.5403599574316,74.9193940363819],[-88.5571183250499,74.8627615563773],[-88.7390402058998,74.81834190327288],[-88.7642121133183,74.72867328824529],[-88.83884860092168,74.70142677817499],[-88.9056081927895,74.7024786550343],[-88.9519049489425,74.7174140722975],[-88.90714877006499,74.8210055134637],[-88.9343950855461,74.8451290517908],[-88.96553533859,74.8550886247519],[-89.0678848223811,74.85188756139128],[-89.06961871726119,74.7808125619254],[-89.14639957063238,74.744030740675],[-89.15362684155939,74.7157036538153],[-89.11079053811139,74.6866432252905],[-89.1240739148404,74.6347210501653],[-89.2154409235071,74.60289494357019],[-89.3693222927639,74.5861248656324],[-89.6306846412976,74.5327870337366],[-89.6802704348419,74.5334206155274],[-89.9361363115013,74.5791340062021],[-90.2511859096546,74.58258974384398],[-90.4137408111771,74.6031519683754],[-90.7973071745083,74.7059708652609],[-90.946392620724,74.7166033459392],[-90.9597349963591,74.7403728235267],[-90.8163683278492,74.8008072271338],[-90.7775981991338,74.8336400094987],[-90.773169640961,74.8620157994643],[-90.8054639251099,74.8717465166279],[-90.8730151460056,74.8722804579792],[-90.9081932758895,74.86308048992589],[-91.0188094063809,74.797613405362],[-91.1415157083954,74.7605987864654],[-91.1471327142532,74.71803584016068],[-91.0712141030825,74.66071877092179],[-91.0750547623377,74.6323507238927],[-91.12685180994139,74.6185130182772],[-91.20819412005689,74.6332539815473],[-91.2701078549909,74.6715062517546],[-91.4213399368173,74.6629441899254],[-91.57042503226639,74.6732103486228],[-91.6811810641347,74.73526668764988],[-91.78168406270949,74.7357119349593],[-91.8969206466507,74.75983511746388],[-91.9765981835003,74.812185035128],[-92.0834707086154,74.9592818042138],[-92.1487128767477,74.9973494627483],[-92.1466753484263,75.02575559288309],[-91.9912304240097,75.0489587229433],[-91.969814472529,75.1009828561437],[-92.0364884395758,75.12488558909169],[-92.1906386858494,75.130064818665],[-92.3601062633461,75.1683375138156],[-92.4250375891394,75.23951211881338],[-92.3996186642056,75.3816240625544],[-92.1820504176567,75.4949134311131],[-92.0686174442086,75.5941654597596],[-92.0446803836199,75.6699689996775],[-92.1034208315645,75.8266819913812],[-92.3323639539722,75.898399409713],[-92.3657773765521,75.9411710383634],[-92.4714719131611,75.9935493586463],[-92.8130295139002,76.1030060852055],[-92.9566059224338,76.2216989525648],[-93.0481846278012,76.2596471368367],[-93.1220653087539,76.2690884193267],[-93.2886816144841,76.2688855039115],[-93.4550556276885,76.2448363029164],[-93.658344782941,76.2443300668068],[-93.6946770077187,76.22047693334329],[-93.5649441236758,76.1875925016958],[-93.5646953147248,76.17334693533358],[-93.6744433237656,76.14930359152508],[-93.8582134251949,76.1534525954799],[-94.2094386851189,76.1899617481296],[-94.52392557052009,76.2072563541305],[-94.7256929803062,76.19647228726238],[-94.90668383564578,76.1666892819026],[-94.96180295468689,76.1662776091119],[-95.1687112800808,76.2026400786578],[-95.44699904350769,76.214441155281],[-95.4895407095725,76.2520674724609],[-95.4183934142372,76.2717439728817],[-95.1623670965987,76.2977409620835],[-95.1468420940918,76.3216335422701],[-95.3551001231237,76.3483766422764],[-95.86387145594128,76.38142127795889],[-96.07706462001488,76.4218702427784],[-96.1584073791785,76.45423155040189],[-96.1621939112095,76.4732183301139],[-96.0551446387611,76.50300222402069],[-95.796957814598,76.5343485710464],[-95.6509237937127,76.5643696617905],[-95.6579928219079,76.607120513741],[-95.8292524664669,76.6101418097238],[-96.0293336509162,76.5651527024751],[-96.2170924365775,76.55823355772888],[-96.37310764812439,76.58014281472668],[-96.7336867087609,76.661170234232],[-97.0045070609092,76.6764176614756],[-97.0843602082547,76.68954214685408],[-97.0258402494467,76.75711196428638],[-96.94936035566958,76.75821099382388],[-96.82506507659808,76.7218413496055],[-96.7060062189108,76.7044126597361],[-96.6140890995422,76.7199217969913],[-96.6512741859456,76.7956486682725],[-96.95252112925918,76.8439463323817],[-96.9170116783825,76.9302418396167],[-96.8638207513365,76.9500467728522],[-96.5352018230592,76.9591513387615],[-96.46627362867429,76.9981355924606],[-96.3742414107019,77.0230862878562],[-95.5944518828777,77.036172909344],[-95.3327812345936,76.9861152063528],[-95.1173982632504,76.9783346221587],[-94.8978942308114,76.932346122387],[-94.7029898752638,76.9241229854218],[-94.50505390527869,76.8777204481954],[-94.2931848401892,76.88835637842189],[-94.1768669466799,76.8841479230119],[-94.1373615168844,76.87005136621039],[-94.15495399619789,76.8414292626818],[-94.0966053491827,76.8321683371816],[-93.8469356214796,76.8521486772503],[-93.6923666495098,76.8431170831026],[-93.4791187188043,76.7390176486705],[-93.2117833194075,76.6681409603363],[-93.2501347695664,76.6110481612881],[-93.250645422538,76.5017323086901],[-93.4755638811244,76.4253078936774],[-93.47518960427269,76.3920488283407],[-93.419106686617,76.3826643836149],[-93.2697464272445,76.4114222437232],[-92.9862353790044,76.5447364111172],[-92.8531943882637,76.5732760296658],[-92.7208186885914,76.5732367631329],[-92.5519062423234,76.549331892887],[-92.1932194738586,76.54870129514339],[-91.7290179191103,76.6470372491617],[-91.48193546490648,76.6459367952879],[-91.3319158353806,76.6308999886039],[-90.6369301408131,76.4883830303151],[-90.4763636116636,76.4442730214129],[-90.4268911770036,76.4105676437533],[-90.5044240795176,76.39697308489899],[-90.80398279815459,76.3945901769496],[-91.0788464817921,76.4297525954649],[-91.2466083914515,76.4355240288679],[-91.4119737405547,76.4601950857365],[-91.48700473292548,76.4605730481952],[-91.5257119199032,76.4512562660523],[-91.528086867087,76.4322604047147],[-91.4737569555238,76.4177377310552],[-91.0519211999743,76.3630444670777],[-90.477410420178,76.3444552922301],[-90.2407141725327,76.318557388164],[-89.6146831328083,76.2929216874555],[-89.4702971619105,76.2769270792362],[-89.4014237861515,76.2570537917906],[-89.47691011596059,76.1819132058044],[-89.5956559208439,76.15007090026229],[-89.7263854543401,76.14208767629299],[-90.2022086762416,76.1518548154607],[-90.2409038374327,76.142723727509],[-90.2448780502297,76.1237559451471],[-90.19497030161229,76.0995195079213],[-90.2903065573014,76.0814279691726],[-90.5013505045996,76.1260813063751],[-90.79292078312449,76.1379321613496],[-91.0224591628561,76.1965637594333],[-91.2769851808233,76.22189441909819],[-91.4739393426435,76.2704556098548],[-91.56707288783949,76.2661574546952],[-91.5693550364201,76.2471674491477],[-91.4632951858092,76.2086525127131],[-91.46869707878058,76.16593611365388],[-91.3976658729627,76.146571176732],[-91.0145056481886,76.1300147523478],[-90.9427157526499,76.1200229706958],[-90.768588519446,76.0665049135573],[-90.45746186333729,76.0686985026156],[-90.422822550693,76.0588911265604],[-90.4274608558601,76.0351845741713],[-90.46570630367988,76.0260240733653],[-90.68747118331589,76.0088857773494],[-90.9025505112255,76.0295088366865],[-91.0489320328833,76.02577128569648],[-91.0213381171209,75.968613114294],[-91.217358534251,75.86544506907238],[-91.2026845438361,75.8416272065083],[-91.1107070810293,75.855283548449],[-90.9563264500323,75.9206923437453],[-90.80457642111,75.9623127305646],[-90.732089157629,75.9617535833752],[-90.6629861585498,75.9422118168448],[-90.6663554777841,75.9232492960341],[-90.6147088158546,75.9085818348566],[-90.5424889044003,75.9079748720672],[-90.4603087580274,75.9594891377993],[-90.2982402654634,75.95326243475618],[-90.1392285692946,76.0182126240939],[-90.01406030442139,76.0074345535707],[-89.9574039143579,76.0163360472431],[-89.9616143170331,76.0781448093759],[-89.8681166471371,76.08664269717488],[-89.8167018678341,76.0718189883586],[-89.7937991887297,76.0145456129516],[-89.6372979254056,75.9842317812323],[-89.6490047983773,75.9368613284506],[-89.7597589668526,75.8526514343241],[-89.7092424188308,75.8378169523762],[-89.51767214897,75.883014382398],[-89.3915968840228,75.8814295759771],[-89.22190545962319,75.84118836475379],[-89.1758735430296,75.81205759951838],[-89.3186379631895,75.6809787586074],[-89.4313152583996,75.6587061591834],[-89.6488533455635,75.6424201709898],[-89.6733677994534,75.6142310482865],[-89.6237128402141,75.5993900541164],[-89.2185032342299,75.5894077982883],[-89.1267911534392,75.53590513021828],[-89.0453803798901,75.5110055447051],[-88.9102643588828,75.4900300297778],[-88.768543840919,75.4926253685147],[-88.7116753317626,75.505986145859],[-88.7045868877126,75.5296244157009],[-88.8911030714662,75.6179711887858],[-88.8787153084626,75.66053847393779],[-88.8007378172337,75.6831196980934],[-88.7716378152477,75.7206872339664],[-88.6797070757298,75.7287713782039],[-88.63065929219269,75.7137461564995],[-88.5934966563104,75.6608859908561],[-88.52852160031868,75.6408303368033],[-88.3206980191059,75.6231170057976],[-88.2562369921993,75.6030001721926],[-88.2703011701343,75.5604720902285],[-88.308620149164,75.5516283201804],[-88.2987557672799,75.52769912591239],[-88.1885761074978,75.540037627019],[-88.1053789920181,75.57657964759449],[-87.83662650973879,75.6334453383704],[-87.7128224318479,75.6310822449076],[-87.7055896538044,75.6024086256345],[-87.6279181346512,75.5723565748623],[-87.6436914629216,75.5298719647648],[-87.5278811616825,75.5085424840919],[-87.4154039316185,75.5252758044881],[-87.4081269304293,75.5441501116418],[-87.49924463529278,75.5840606256197],[-87.46350941621318,75.6309051775704],[-87.3780493276182,75.6672236680433],[-87.3071817994197,75.6657574571835],[-87.2179863117577,75.6210566323582],[-87.1216396420297,75.5952019794135],[-86.8888338555235,75.5567522903675],[-86.631425315279,75.536543289081],[-86.5036443398079,75.5049338432053],[-86.5182697548104,75.4719564138552],[-86.61592460942148,75.4504830822559],[-86.6107866143212,75.4218000930395],[-86.52577320123969,75.41500618979029],[-86.3759313834969,75.4351599024241]]],[[[-96.4798458102582,74.814673548306],[-96.5157150925158,74.7973743549379],[-96.5581867184997,74.7987028006516],[-96.5951003362977,74.8008526576132],[-96.6082813154916,74.8197928746315],[-96.6178698734265,74.8308313889855],[-96.6079055484433,74.8443701414987],[-96.568910601342,74.8509550308344],[-96.5289799152783,74.8480249305946],[-96.4770908088126,74.8380248740869],[-96.4798458102582,74.814673548306]]],[[[-98.3549558671499,74.7658794732681],[-98.4312850515037,74.76050145304218],[-98.5075431513327,74.7610459395551],[-98.54846823414388,74.7676177424543],[-98.5873156383028,74.7773883506783],[-98.5876634032814,74.7916677467635],[-98.535526164344,74.7987465250631],[-98.4738616904664,74.8011823547824],[-98.4192956433989,74.7971618832178],[-98.3609499514296,74.78841630129259],[-98.3549558671499,74.7658794732681]]],[[[-96.2671145058874,74.7370357140621],[-96.2584278019401,74.7195273435993],[-96.27421884051819,74.7059757815582],[-96.3103091098765,74.7010387444638],[-96.3607940163864,74.7007725547781],[-96.39800318949099,74.70928511567],[-96.3996406996137,74.7282961163418],[-96.3977863023913,74.7394000005479],[-96.3447646093602,74.7444422024785],[-96.2671145058874,74.7370357140621]]],[[[-94.0717883462843,74.6309430200103],[-94.2886961899456,74.6392668876905],[-94.47354628588769,74.6618127914403],[-94.5906147745024,74.6657694461967],[-94.75991382763789,74.6929510152459],[-94.876810610153,74.6920440084332],[-94.9445690077686,74.70096011029729],[-95.0134090484148,74.71932298787259],[-95.0698290583663,74.77565783205358],[-95.2787879340426,74.83532409102529],[-95.3617807597375,74.8250474790689],[-95.3749321769204,74.7964970542562],[-95.4234570519741,74.7818034622157],[-95.4938311613322,74.80476772709649],[-95.5340412964956,74.8517197442738],[-95.8287957926895,74.9005849664906],[-95.9526339356825,74.93229340662229],[-95.9897064399273,74.9508038117318],[-96.0050026361515,75.0406929746243],[-96.0407479595435,75.0497358961105],[-96.12436085769589,75.0392089150637],[-96.1278717595711,74.9633020763535],[-96.193158311058,74.9482400367033],[-96.2609609141428,74.94734809421189],[-96.3323624424067,74.96535660505819],[-96.3593489479085,75.017154296225],[-96.4132044487628,75.0306434292051],[-96.54656853005449,75.0145390883008],[-96.600574344232,75.0279912424964],[-96.6074936528579,75.06109505358698],[-96.55286878410469,75.1282998257325],[-96.2948013988114,75.21723803203248],[-96.04612290646648,75.27732420183828],[-96.0388101046204,75.3343464831196],[-95.8213830712515,75.3890791522228],[-95.7895588115045,75.4084127131311],[-95.7918536009474,75.4226215486742],[-95.8466280658979,75.4362414095782],[-96.0906012217456,75.428621291734],[-96.11240200090408,75.4520856397736],[-96.0799571060819,75.4667225876035],[-95.9238511004948,75.478068747569],[-95.7294105435133,75.4707572784018],[-95.7384320540059,75.5276059019509],[-95.6040639781959,75.5717401594422],[-95.38105329832,75.6214008819161],[-94.9955885423575,75.6627197178579],[-94.4981515623792,75.6662218704061],[-94.26381369885179,75.615373074988],[-93.9755534849421,75.5076631587822],[-93.7450834904143,75.4469006263993],[-93.6564810174477,75.404521824664],[-93.5852547040801,75.3336334400366],[-93.4631356485223,75.3007721223034],[-93.3586715934276,75.2251804071958],[-93.3583701704159,75.1541234018381],[-93.4268265910268,75.1160879542801],[-93.4263771446611,75.06399074201529],[-93.3578618749156,75.0357167530457],[-93.3577386815991,75.0073042304087],[-93.42556012802159,74.9692841822228],[-93.4251111442486,74.9172025277256],[-93.37397682304838,74.8605037688091],[-93.3735871257278,74.7895049857033],[-93.406950314692,74.7563064452026],[-93.4902704368836,74.7135207663026],[-93.6067074700449,74.6800765654269],[-93.8402460828881,74.6745413145641],[-94.0717883462843,74.6309430200103]]],[[[-97.5078902526453,74.6477958919214],[-97.4863999720442,74.6292179082606],[-97.6079227162145,74.5842610206737],[-97.65898452117179,74.5263711669252],[-97.75151483695228,74.50086060985758],[-97.9134885567421,74.4881468639119],[-97.96686349559269,74.5012944211452],[-97.97493829943629,74.5295966560838],[-97.8521869670424,74.5652853242743],[-97.737910359794,74.6339539580129],[-97.6587008673419,74.6497114484045],[-97.5078902526453,74.6477958919214]]],[[[-95.4519256883145,74.49267574052378],[-95.5838456808031,74.4912730320085],[-95.73433862317198,74.5037879612602],[-95.78599189094838,74.51739145306449],[-95.80685736489498,74.5455561674903],[-95.9603314896421,74.5721173541415],[-95.9626503398133,74.5862969012771],[-95.7556495001586,74.6455992171422],[-95.6384605168839,74.6421850978666],[-95.56264767413849,74.576718644589],[-95.35833486142519,74.5362331462113],[-95.3718637909569,74.5124278328903],[-95.4519256883145,74.49267574052378]]],[[[-98.7121003646902,74.299770780147],[-98.8258214437216,74.2970457793885],[-98.9443079706718,74.3083972087059],[-98.97182789720989,74.340958443917],[-98.7112066972813,74.3472598927631],[-98.63994147600549,74.3299484672782],[-98.6353909234518,74.3158155317959],[-98.7121003646902,74.299770780147]]],[[[-89.9764790186835,73.9645761762103],[-90.0688389249762,73.984557176047],[-90.0483826935798,74.0079636208481],[-89.9155641728761,74.0300440507749],[-89.8353565029726,74.0290666930375],[-89.7901314161803,74.0143189515227],[-89.7939835717916,73.99545203211],[-89.9764790186835,73.9645761762103]]],[[[-107.693046322542,73.6429662764712],[-107.634797608915,73.6283256990084],[-107.625516056003,73.6093070382051],[-107.647993716436,73.5955596925674],[-107.702698173129,73.5814689103536],[-107.99658809559,73.5459111439023],[-108.08384523339498,73.550841718571],[-108.127221787458,73.5651718556622],[-108.127949723804,73.6028181786986],[-108.074132534523,73.6239513765578],[-108.01596477570898,73.6271642580474],[-107.924422281099,73.629400156224],[-107.693046322542,73.6429662764712]]],[[[-98.86782171748568,73.8357572695246],[-99.01163143963,73.8368657886943],[-99.1176499020558,73.86734460856978],[-99.4041675627687,73.8644809505262],[-99.4708467186367,73.8721552960105],[-99.523467624155,73.8849482042696],[-99.5355030380773,73.9178492357184],[-99.49474541730278,73.93796505067378],[-99.272246388054,73.9439633351551],[-99.1817311056562,73.9605817576219],[-99.1134284135994,73.9955748777476],[-99.0384546294834,74.01173066499709],[-98.4761720860866,74.0680559789099],[-98.31099072925689,74.1097381895302],[-98.1556585096058,74.1321206236837],[-97.9946357789155,74.1355512423074],[-97.9598058425231,74.1268004260683],[-97.9320040999599,74.0847202137529],[-97.9697186193796,74.0460163873882],[-98.0525671846292,73.9968675371211],[-98.2409308985582,73.9264077049383],[-98.4203961188095,73.8844244811649],[-98.6409214136181,73.8745005893875],[-98.86782171748568,73.8357572695246]]],[[[-99.1467205484715,73.8255933029414],[-99.2262853729224,73.80136625316489],[-99.29168971380409,73.7984247400089],[-99.359318892011,73.8043619867903],[-99.364720522414,73.825714531165],[-99.3438839216969,73.8386033933527],[-99.2723358597435,73.8416656376856],[-99.157030879586,73.8383152924958],[-99.1467205484715,73.8255933029414]]],[[[-79.3813676348747,72.7520108433979],[-79.54689751590689,72.77620723403369],[-79.7984316564357,72.8916022862677],[-79.9919511727901,72.9217843334913],[-80.1348272506264,72.9585546489643],[-80.203848401563,72.9911494752493],[-80.2216697709108,73.0304934648177],[-80.17868270875229,73.1528357613626],[-80.2902225870618,73.1925009666747],[-80.8260903475482,73.2975691033292],[-80.9780525778016,73.37241399425548],[-80.9793300709841,73.4155883593327],[-80.8223565666872,73.6136962021341],[-80.83530050620568,73.6623024548654],[-80.9414172337072,73.7155966015454],[-80.8924680751175,73.76109222540899],[-80.7612349033956,73.76406575861968],[-80.358309818142,73.8056997468474],[-80.2648563530486,73.80078718735209],[-80.1842893782957,73.75808047820989],[-79.8920522106548,73.7182910975975],[-79.6892675619451,73.6686403591584],[-79.4888164844707,73.6574030582551],[-79.1965806991883,73.6599621912194],[-78.4182983846109,73.7005410928001],[-78.1875340194801,73.6863282167964],[-77.9316767069234,73.6460985866714],[-77.8298044132823,73.6154283251022],[-77.5426017217422,73.5581422859715],[-77.2402167132931,73.5187745281093],[-77.1747921765932,73.4853080955276],[-77.1658190470788,73.4604668873391],[-77.0035316355871,73.3767329802474],[-76.8939865010563,73.3401129958345],[-76.65839436923109,73.3188763590944],[-76.6246159322791,73.2873777319566],[-76.66168903562668,73.231746293225],[-76.605028676619,73.1743635900571],[-76.4956164992672,73.1228926344842],[-76.3432372955448,73.1167924972407],[-76.3223926769605,73.1055726868851],[-76.3729386913338,73.0363906793102],[-76.3314030201426,73.0139571769983],[-76.043361600962,72.9539450965742],[-75.9775442886582,72.9247467698913],[-76.0302212020735,72.8703568142806],[-76.1584123380959,72.850734068882],[-76.2691017143319,72.8491878698064],[-77.0230110987745,72.89355094763648],[-77.3700906481525,72.888499870823],[-77.7372535706569,72.9132617015285],[-77.9844380096988,72.9150882183112],[-78.53499053783429,72.8684855270622],[-79.13637425757679,72.7517020906647],[-79.3813676348747,72.7520108433979]]],[[[-109.39065014329799,72.860883773359],[-109.307461602542,72.8566686847475],[-109.27596001483899,72.8408838814778],[-109.27075185743298,72.81989241455578],[-109.317816689111,72.8027039425771],[-109.370120671888,72.8017561663828],[-109.396240253091,72.8107606222948],[-109.41601082462398,72.8450526775294],[-109.39065014329799,72.860883773359]]],[[[-97.1835184400299,73.2191279407653],[-97.2620870167541,73.2271114428994],[-97.266299699584,73.2459387364953],[-97.1795544766283,73.2711955080506],[-97.1181951809331,73.2723201953598],[-97.08549596334,73.2634617716239],[-97.0804627554499,73.2399192618502],[-97.1835184400299,73.2191279407653]]],[[[-105.33440077247,72.8792197490471],[-105.374564604319,72.89189049562918],[-105.6859865172,72.9893022738143],[-105.93919385689098,73.0854983024812],[-106.085158057128,73.1588980580123],[-106.249839954894,73.2985923394803],[-106.398946386762,73.3718180635915],[-106.614671994992,73.4266511746542],[-106.92009253680199,73.4518569764297],[-107.01785452087499,73.4749130676956],[-107.03498819755099,73.5366463018792],[-106.951072934584,73.5766148952394],[-106.778513198165,73.6581815989758],[-106.54094615318799,73.7251295470161],[-106.42450274598998,73.74147171427698],[-105.356746684144,73.7807747581889],[-105.168938262085,73.7425072134214],[-105.046693726229,73.6815721199944],[-104.771061688956,73.6284006377393],[-104.60185371564998,73.5649335583231],[-104.55954840045099,73.4999195131493],[-104.637493836281,73.3282535291759],[-104.873269384155,73.1148498593946],[-105.043288518992,73.0435843252264],[-105.07279893997,73.01804208412868],[-105.291874171328,72.9534906818246],[-105.302373212245,72.9001570571234],[-105.33440077247,72.8792197490471]]],[[[-95.7953871833021,73.1133000610809],[-95.8752331417911,73.104002240431],[-95.92237294747709,73.1081688794557],[-95.9559889412427,73.1225253179724],[-95.97649853521999,73.1543278561912],[-95.95397101258638,73.1732654849278],[-95.90760259555388,73.1879437055048],[-95.85083193774818,73.1838101566552],[-95.8216296377746,73.1636210877448],[-95.82514269067138,73.1375188576929],[-95.7953871833021,73.1133000610809]]],[[[-108.602500705186,72.65825040210899],[-108.582554402227,72.624625119097],[-108.624519104777,72.6055419961798],[-108.663035963861,72.602018790639],[-108.695670098084,72.6106660099986],[-108.712376984763,72.63800752694928],[-108.685630635562,72.6573657881959],[-108.636237705529,72.6615464778915],[-108.602500705186,72.65825040210899]]],[[[-95.90444371399889,72.9372502166173],[-95.9375809947984,72.9487105520666],[-95.9383249499036,72.9631942651943],[-95.9401517644763,72.99865486513849],[-95.9419144559467,73.0327302766781],[-95.88207406908239,73.0518044745929],[-95.8442424593945,73.0432494139261],[-95.8336266447311,73.0157563080765],[-95.81142767062688,72.97767159711799],[-95.82424010653749,72.9404485156143],[-95.8720386898899,72.9402732587964],[-95.90444371399889,72.9372502166173]]],[[[-96.98135420793379,72.9110052053337],[-97.04150965629,72.9099180266264],[-97.1216725675601,72.93205889118978],[-97.2143002157928,73.0106312520143],[-97.2276829100038,73.07180003489398],[-97.2065938169129,73.11472563914029],[-97.12544590381489,73.16348467544519],[-97.05416938601739,73.1884097507928],[-96.9930852722429,73.1895036892077],[-96.7848257390392,73.0655650172931],[-96.7692954297708,72.9855437303391],[-96.8346248334718,72.9324824944315],[-96.98135420793379,72.9110052053337]]],[[[-95.7993142390747,72.8864975379742],[-95.8025544912146,72.840571068057],[-95.8437110420721,72.8302846463073],[-95.8808951184699,72.8344910232624],[-95.913472058934,72.8387098202311],[-95.9189642003758,72.8560692606099],[-95.8875441838585,72.8764725013063],[-95.8695586627559,72.8881293223724],[-95.8279598621158,72.8911806014089],[-95.7993142390747,72.8864975379742]]],[[[-100.52795561922,72.7621150244394],[-100.605606022835,72.7452788162396],[-100.683770051879,72.75942200343029],[-100.667207520746,72.7794762776775],[-100.612913679376,72.78795757406918],[-100.573375128668,72.7889228652325],[-100.53010298993,72.7774717230412],[-100.52795561922,72.7621150244394]]],[[[-96.8536070500862,72.8754915720754],[-96.8349137923193,72.8569311216829],[-96.8556648935683,72.8093603092533],[-96.7903966199661,72.7821723280766],[-96.7840823946578,72.749240077973],[-96.88474521154879,72.7286008154508],[-97.0753981644057,72.7109842052743],[-97.0961391016436,72.7389240870907],[-97.0559267049575,72.8340986248597],[-96.942726006643,72.8691982497715],[-96.8536070500862,72.8754915720754]]],[[[-85.0090895915746,72.3569765951568],[-85.0296815122054,72.3355502045581],[-85.0832415054048,72.3271069131256],[-85.1336994165134,72.33032900010339],[-85.1501311798407,72.3458216757743],[-85.1115202199822,72.36085204697429],[-85.0090895915746,72.3569765951568]]],[[[-85.88526230896,72.232728415933],[-85.91778781691418,72.2242821348109],[-86.0496874691209,72.2236094862695],[-86.1005082466939,72.2440615177398],[-86.0846569799846,72.286136532258],[-86.0103476572924,72.288608739987],[-85.9559201186651,72.2774813227458],[-85.8798325375248,72.2467471663797],[-85.88526230896,72.232728415933]]],[[[-85.7344074718716,72.2213354901941],[-85.6937619504007,72.2019838852944],[-85.7304755045296,72.1828788492699],[-85.7701407496317,72.1825675288656],[-85.8019819103396,72.185855877226],[-85.8488606280528,72.2084313449121],[-85.8428169004566,72.2209579054247],[-85.7344074718716,72.2213354901941]]],[[[-108.116841775843,71.9547798082973],[-108.193806283178,71.9590005163466],[-108.237091708402,72.0138812374808],[-108.223560902249,72.03415543958688],[-108.139090935516,72.0207966883185],[-108.096066739628,71.9658947260016],[-108.116841775843,71.9547798082973]]],[[[-95.5437133474427,71.7921506067926],[-95.5257858374326,71.8817893090205],[-95.4555594730455,71.8920525528206],[-95.4038481811869,71.8126603047161],[-95.4722035185713,71.7883201299389],[-95.5437133474427,71.7921506067926]]],[[[-97.155231284294,71.6720084221948],[-97.1589720155222,71.69077564733358],[-97.02516142582368,71.7310771973023],[-97.0056177414842,71.7031895392595],[-97.0434111221261,71.6789103828953],[-97.1111135040657,71.663459115282],[-97.155231284294,71.6720084221948]]],[[[-99.8334862077988,73.8537532378366],[-99.4494151421127,73.7683201831664],[-99.39958942640529,73.7174885415973],[-99.31621521646149,73.705520350502],[-99.2052514436214,73.75118530341479],[-98.6633199001803,73.7933616219083],[-98.1901605623729,73.8611843897322],[-98.1294404744067,73.8719962973362],[-97.9850844285141,73.9272230660426],[-97.9214399070711,73.9285616177013],[-97.8991539738252,73.9053397534598],[-97.8318213381726,73.8925242836222],[-97.62532427591789,73.8966856295707],[-97.4300516940423,73.8815192444493],[-97.3078077561895,73.8364623173265],[-97.2260390788799,73.7575021288242],[-97.20887211388188,73.6821022515913],[-97.268935746582,73.6005690288407],[-97.37276808492119,73.574963298716],[-97.5732181113504,73.5616066594659],[-97.61179787327819,73.5277134626779],[-97.6561058686185,73.5173563092637],[-97.83073769885719,73.5279521846695],[-97.8581451011917,73.5131755494431],[-97.8446541459276,73.4614010736072],[-97.7778596270559,73.4438743772014],[-97.65870289240938,73.4652548863227],[-97.5656979212687,73.4671260196106],[-97.4825455766516,73.4451157673689],[-97.3730448014956,73.4425053105801],[-97.3399020617476,73.4336793907242],[-97.3269097552153,73.37717589112728],[-97.3677425666813,73.3527515124422],[-97.5018832501859,73.3312209830058],[-97.7597885464501,73.31178135512349],[-97.94710048784879,73.2604772178701],[-98.2016210976008,73.1223137621115],[-98.57564839404839,72.9903601639105],[-98.600274904189,72.9708198202655],[-98.5932827089588,72.8952964733916],[-98.5142202307604,72.8830674917854],[-98.4181595204632,72.9705579004836],[-98.2916621269081,73.006685341551],[-97.8838357181831,73.0159276593312],[-97.5909915128498,72.9984842292616],[-97.4765190208976,72.9630015779097],[-97.4012224980703,72.8983553887757],[-97.3532525024486,72.8190004637829],[-97.2461162935856,72.7408040959801],[-97.2349589879238,72.6890827434066],[-97.3137776614596,72.6403356766841],[-97.3024997428527,72.5886288972776],[-97.2403746111509,72.5756805565991],[-97.1527544035411,72.5820840224589],[-96.67620447241859,72.7321962918657],[-96.60000142799879,72.7240270727952],[-96.59234948543119,72.681685491966],[-96.64403275349049,72.6383624571148],[-96.6363193032564,72.5960301812369],[-96.53595450906438,72.5316490951663],[-96.5178735794658,72.4281924870045],[-96.5438993001445,72.4089047188148],[-96.6834733489947,72.3688368241169],[-96.7066693851535,72.335428581512],[-96.76239188765558,72.3203149070478],[-96.8962590730898,72.3320778370654],[-97.01102714182319,72.3205383616531],[-97.0082270655776,72.3064412679135],[-96.9463140563802,72.2887223275722],[-96.78188935010529,72.2681051719786],[-96.7194541821514,72.24562480230928],[-96.6490007866559,72.0960097163174],[-96.7032328468768,72.0762196920347],[-96.9028691050089,72.0632166574502],[-96.9711116926195,72.0430981357287],[-96.9674774924631,72.0243139015907],[-96.93698000146269,72.0154546887145],[-96.7218079704701,72.0193439128578],[-96.67625352518169,72.0060052964381],[-96.6704113775967,71.9731239680346],[-96.8074715163662,71.9377146962026],[-96.81828940253149,71.9186735540388],[-96.78802640248979,71.90979565072108],[-96.6327200224977,71.9219548953494],[-96.60091004204149,71.9036588108034],[-96.7967709177928,71.8012872945856],[-96.838464964659,71.7958182466866],[-96.8685736667315,71.8046849222912],[-96.8622263562125,71.8472002946718],[-96.9342094746792,71.850578975286],[-97.0369832482983,71.79209376687498],[-97.1607951090652,71.7708306970691],[-97.213619266029,71.7509311190105],[-97.29998017022308,71.6879292557938],[-97.6365871012678,71.610067685143],[-97.7607684787402,71.5978554935931],[-97.8644437709853,71.6190400442901],[-97.8991714581954,71.6465147754377],[-97.9903108311487,71.6726581655462],[-98.2576979418221,71.6661490690807],[-98.390429287807,71.6863817939248],[-98.4425967287198,71.7227824855652],[-98.4613217122193,71.79307460761919],[-98.3961860805622,71.8702414802492],[-98.4024093396084,71.8936789805684],[-98.50327621380728,71.8958185879269],[-98.602859667659,71.8413023441755],[-98.62346300490978,71.81243810575158],[-98.6131121373001,71.7230455741723],[-98.53896775028,71.6589457079895],[-98.29672314115679,71.5425609553114],[-98.281220927109,71.4816607685253],[-98.32857303009618,71.4474539068275],[-98.3957091371777,71.4363005784819],[-98.51092051721228,71.3955678768763],[-98.57290257603458,71.3137634009584],[-98.6482233519361,71.2834394692047],[-98.714642080328,71.2721917285999],[-98.8275181961913,71.2784815376379],[-98.9333073051779,71.3084991505294],[-99.062765318422,71.3708163339549],[-99.1458395773176,71.3683835281923],[-99.210862322135,71.3523016893723],[-99.282840132236,71.35958453307938],[-99.3567787787181,71.4187086102865],[-99.4347574554185,71.5343679003994],[-99.47002207568688,71.5568983105762],[-99.5782821193221,71.58661191850749],[-99.8759123832622,71.7992913608459],[-100.150865873959,71.8895903581282],[-100.403373531648,71.9898849123047],[-100.54398481298298,72.0560359453463],[-100.772425439584,72.1948314881614],[-100.837484666365,72.2114565742955],[-101.046855277711,72.222788478941],[-101.144992401521,72.2476003320671],[-101.234202440511,72.3201578774196],[-101.316596850273,72.3407687812208],[-101.37458238334298,72.3385625064012],[-101.411995953265,72.3228904843876],[-101.426791958828,72.28910011672669],[-101.48482458691,72.2536328573444],[-101.540483994888,72.246716867878],[-101.651754404995,72.2660727751462],[-101.763527502613,72.3186077545088],[-101.996286945156,72.3756978742786],[-101.986798810276,72.4188552961814],[-102.05590433738,72.4397906159942],[-102.06909261867,72.46777069428039],[-102.128324426124,72.4986108462226],[-102.492391284474,72.602243751708],[-102.755003251272,72.7051736944028],[-102.786403544774,72.7657315669191],[-102.64716246534998,72.84798759389008],[-102.630901754155,72.9344394829532],[-102.567674747363,72.9895362547923],[-102.32610933521498,73.0567629977163],[-102.129448345052,73.06475152914739],[-102.070351384697,73.06711820376069],[-101.981495095151,73.04209205022158],[-101.937932588868,73.0152576043212],[-101.856776497531,72.9090283797506],[-101.645226862504,72.8459255842771],[-101.572909702576,72.7869078647775],[-101.424738142337,72.75926980145],[-101.290293706808,72.6930508509572],[-101.040004615634,72.6689905699304],[-100.936660631797,72.672698260175],[-100.87826515259,72.71273391293218],[-100.563583724488,72.7141395288895],[-100.476550279983,72.7218174279661],[-100.40972648121598,72.74301536163378],[-100.416757350216,72.79969118289509],[-100.452029283839,72.8127483757793],[-100.53015996545199,72.895530542347],[-100.569619190528,72.9938620667839],[-100.543313123934,73.004232983784],[-100.48499721933,73.0109155665928],[-100.45116973620898,73.002543180896],[-100.4439176418,72.9458439693966],[-100.356105478945,72.9155210136763],[-100.328828778378,72.8452674504613],[-100.29538107297398,72.8368723899269],[-100.252426416106,72.8430094569174],[-100.177071369087,72.8833644996364],[-100.196672107584,72.9349002582137],[-100.278353418917,72.9891970813704],[-100.320351568313,73.0969639490232],[-100.428088312105,73.0982108647752],[-100.54527721004598,73.08485609350478],[-100.64938021185,73.1146071028454],[-100.667061449576,73.194737581371],[-100.621679270403,73.23424810225688],[-100.595059051878,73.2446309076031],[-100.51882630365898,73.24714644927738],[-100.315386504065,73.2015279097426],[-100.154158305315,73.1829113012987],[-100.110337098943,73.189025624953],[-100.117519816735,73.2077809096393],[-100.364115194492,73.285408474933],[-100.495868550366,73.3428740490192],[-100.55718553252798,73.3408666735938],[-100.58960681087699,73.3065513818102],[-100.63160719071999,73.29565957090308],[-100.830265805955,73.2889692833279],[-100.927081693062,73.2618862895838],[-101.081594318998,73.2612443819356],[-101.396229308717,73.3736107801935],[-101.679299067275,73.444057512014],[-101.71906343237198,73.4616089977982],[-101.737119606483,73.4990227484396],[-101.419026627162,73.5916842804177],[-101.199498607976,73.5947467266265],[-101.011938758019,73.5632135591999],[-100.79220218978399,73.4185640531283],[-100.707336750983,73.4024044377232],[-100.632399728135,73.40964555717709],[-100.609433667793,73.4294067673614],[-100.70424557473699,73.4690353785204],[-100.73264018821298,73.5726575153252],[-100.775786466229,73.59974561564928],[-100.905140713262,73.64295242674018],[-101.179937737782,73.6906006777608],[-101.212753805801,73.7275302929853],[-101.192202544629,73.7520461040639],[-101.119496615895,73.8021621205558],[-101.065116908977,73.8230656075768],[-101.00426285161099,73.8298959090301],[-100.655569325641,73.836702773028],[-100.330788689766,73.7852220071665],[-100.079064648008,73.7929300427213],[-99.9677374434687,73.8342541400689],[-99.9963920370702,73.8666616731658],[-100.031713812795,73.8751162357286],[-100.28273710507298,73.8627589140583],[-100.318191952652,73.8711713481633],[-100.32592602357198,73.8899452855351],[-100.15680250167298,73.94740342599289],[-99.9961143416754,73.94744422761248],[-99.8662775389545,73.8609813730421],[-99.8334862077988,73.8537532378366]]],[[[-99.0346834769166,71.2449213948414],[-99.09582957979119,71.2462587857772],[-99.1204687832931,71.2555498750618],[-99.13800761240759,71.2819320788379],[-99.1257586624679,71.3037531434589],[-99.098434508516,71.3114730581114],[-99.0317523733097,71.31273718156568],[-98.9984930469153,71.298456292515],[-98.9916082228731,71.2713528935078],[-99.0346834769166,71.2449213948414]]],[[[-96.6833514689831,71.23845675365378],[-96.7393383446798,71.242142609534],[-96.7848545820487,71.264827236575],[-96.78179330928138,71.3260548775182],[-96.7109020981044,71.3179400014869],[-96.6751641637459,71.271535070957],[-96.6833514689831,71.23845675365378]]],[[[-103.367446649501,70.70732713372139],[-103.391772592676,70.701341416502],[-103.483038006944,70.7204186233021],[-103.50148170299,70.7574723314381],[-103.412321597101,70.7430359223898],[-103.367446649501,70.70732713372139]]],[[[-91.8760493973955,70.5671476064562],[-91.928696772157,70.5814486243357],[-91.9275565334563,70.6002059881436],[-91.9001817410114,70.6094680792462],[-91.84657436268968,70.6092263341013],[-91.8216257240648,70.5809639620312],[-91.8760493973955,70.5671476064562]]],[[[-100.35369065700098,70.5972374571419],[-100.294125949955,70.5805166639023],[-100.257291228013,70.5110652868868],[-100.28067126376,70.5007860374693],[-100.34692389984498,70.4983802765928],[-100.434413345184,70.5187690429009],[-100.470598780157,70.5457515627549],[-100.658001995256,70.6190067376016],[-100.67298926965,70.6609434575108],[-100.706382435014,70.678571852567],[-100.70477213636,70.7116955144252],[-100.485777643993,70.7057026337066],[-100.364303002964,70.6676513206665],[-100.236216809561,70.6486615556189],[-100.17659828326,70.6319055548117],[-100.170381157615,70.6132506888857],[-100.222112973506,70.6066934159388],[-100.299315288226,70.6157218848729],[-100.374986070445,70.6200613597279],[-100.38350868581,70.60559043172579],[-100.35369065700098,70.5972374571419]]],[[[-76.9925103765344,69.7324064080627],[-77.0307711827273,69.7294596306987],[-77.0603949475606,69.7332410445967],[-77.1157593652355,69.7490374743919],[-77.12126693586688,69.7602874634184],[-77.0965192085488,69.7720136070132],[-77.0556746843372,69.7779685265865],[-77.0101903839504,69.7716650497215],[-76.9782121565599,69.7493776317751],[-76.9925103765344,69.7324064080627]]],[[[-77.9889988690728,69.8183870452378],[-78.0329763471052,69.816185726928],[-78.0632773518897,69.8230712636784],[-78.0728871725773,69.8410358391924],[-78.0785100150389,69.8565168513394],[-78.0645809152063,69.8853282413321],[-78.02939856402358,69.8994640470284],[-78.002187083715,69.9035650904502],[-77.9657849881216,69.9004401346248],[-77.94821539080918,69.89249524547999],[-77.9498776188047,69.8754871550374],[-77.9889988690728,69.8183870452378]]],[[[-91.773830562405,70.4963110691483],[-91.8265395990525,70.5059489622948],[-91.8113480937244,70.5340149558118],[-91.7449047957099,70.52899111122089],[-91.7328620082173,70.5101710155833],[-91.773830562405,70.4963110691483]]],[[[-100.202858280726,70.4281062789274],[-100.242480879132,70.4266807807794],[-100.286785047152,70.4392304790275],[-100.26815490712,70.4634929019348],[-100.198910045856,70.4565478680107],[-100.202858280726,70.4281062789274]]],[[[-79.20490830074638,69.8331024222046],[-79.3049227215744,69.8447247170826],[-79.2945811550066,69.8623230977552],[-79.26509389223709,69.8710391491265],[-79.2196882370085,69.8665145429762],[-79.1886395488821,69.8529905008215],[-79.20490830074638,69.8331024222046]]],[[[-77.2815135341147,69.6631598160428],[-77.3391549869455,69.6553837808684],[-77.3679087655015,69.66012119924439],[-77.3873569932513,69.6726052229298],[-77.3841770841219,69.68735104813888],[-77.3613045344819,69.697108607643],[-77.3253918520626,69.7046175549627],[-77.2913471066731,69.702622227913],[-77.26362959886178,69.6893782988885],[-77.2815135341147,69.6631598160428]]],[[[-76.7634314769559,69.5757916947218],[-76.8250462380924,69.5642051385615],[-76.8552593049515,69.5670180794909],[-76.8766315374987,69.573306793548],[-76.8786367727399,69.5885492272969],[-76.8537397826916,69.59699206768738],[-76.8112502804911,69.6016456877706],[-76.7752767491335,69.5950643983457],[-76.7634314769559,69.5757916947218]]],[[[-100.740314866813,70.2853916604526],[-100.79440578248898,70.2880097106488],[-100.853534211201,70.3045807265764],[-100.866964633636,70.34182096298198],[-100.845715315895,70.35681795681849],[-100.806261494747,70.358356152558],[-100.743709141176,70.3324606413631],[-100.719030261551,70.3003740029811],[-100.740314866813,70.2853916604526]]],[[[-64.6260898869407,67.90805478106448],[-64.6483178212284,67.9216997087921],[-64.6268780813891,67.9385201628289],[-64.5724277750442,67.9500927967723],[-64.5394645445693,67.9448443574586],[-64.52826215968278,67.9329382491058],[-64.5497633157973,67.9161300617522],[-64.6260898869407,67.90805478106448]]],[[[-87.3246590101718,70.1500211473845],[-87.30280737954229,70.141992797437],[-87.2870046901127,70.12525162321128],[-87.2957807148007,70.1148210857595],[-87.3142562532704,70.105357921848],[-87.3552017392209,70.103314690186],[-87.39281509502749,70.1059215244115],[-87.4029156549479,70.1152667947197],[-87.4070172633458,70.1273745786864],[-87.3953789606117,70.1412865403883],[-87.3684112878405,70.1510374376075],[-87.3246590101718,70.1500211473845]]],[[[-82.4443710120484,69.8435263761618],[-82.50671012399658,69.8543960691225],[-82.6073814409033,69.8890690937124],[-82.6247957238557,69.8982825126406],[-82.6314723968571,69.9106205833242],[-82.5735143324074,69.9191148539712],[-82.5215364428549,69.9069218934899],[-82.490110858352,69.8936559698332],[-82.4342775490513,69.8778894368558],[-82.4040693772058,69.8612206479444],[-82.4085517734365,69.8457807501023],[-82.4443710120484,69.8435263761618]]],[[[-82.5278676911254,69.7824235518837],[-82.58525033692169,69.7773971644223],[-82.6694989242976,69.7789380398697],[-82.7017187609834,69.782158765889],[-82.729312276188,69.7875487356912],[-82.76417349328149,69.7921505519892],[-82.8056351063771,69.797149174386],[-82.8253488585801,69.8044987150685],[-82.81341262432008,69.8136045828436],[-82.77381002252038,69.8173313180546],[-82.69338019468978,69.814848185373],[-82.60909895685069,69.8071717643608],[-82.547230673955,69.8020882550077],[-82.5278676911254,69.7824235518837]]],[[[-80.4596100066982,69.819117458986],[-80.5024246946309,69.8360259449201],[-80.4885377617708,69.8708319672992],[-80.4576092554521,69.8784341656955],[-80.3938333145206,69.8744849600528],[-80.3036119269211,69.8926460894547],[-80.1378044109106,69.8822045365091],[-80.0299741233477,69.8420138041783],[-79.9028022350113,69.8338228267752],[-79.7897432038465,69.8455251889205],[-79.67490598541319,69.8808800672012],[-79.5614731377696,69.8924501591437],[-79.4850787343803,69.88736861841828],[-79.38818065527458,69.8522599690102],[-79.3481886746312,69.8114117195253],[-79.362848780542,69.7885580208654],[-79.5571250182854,69.7110501293877],[-79.7188573929767,69.68368688510519],[-79.89564268507608,69.6952798890472],[-79.9391321681739,69.6885864675179],[-79.955859090136,69.6611135930832],[-79.87313521423978,69.6033666198655],[-79.8870769100063,69.5804815522817],[-79.9456794241707,69.57003039958198],[-80.0336540984343,69.5757430715265],[-80.1008710845775,69.59435092126158],[-80.1868858529472,69.6474247330068],[-80.2001520056417,69.6910777361927],[-80.2370705219111,69.7172032110433],[-80.2777726611294,69.7150197979791],[-80.3040277256884,69.692894357847],[-80.3627294877588,69.68232099952169],[-80.4052217374611,69.6992437167669],[-80.3944261306691,69.7175881171794],[-80.43430919473379,69.7390931218435],[-80.7541119881529,69.7539748748261],[-80.7869492401534,69.7654621090835],[-80.7838866380553,69.7937814108972],[-80.7219353074486,69.8328000743865],[-80.691144379468,69.8404383649059],[-80.54869114858188,69.8246118146778],[-80.51356819953999,69.8058099595224],[-80.47080346456138,69.7889029962139],[-80.42727914809429,69.79571308067189],[-80.4596100066982,69.819117458986]]],[[[-83.1060111098215,69.8173488388115],[-83.0736712562218,69.8047371728782],[-83.1206068788119,69.788106238673],[-83.217905305698,69.7948087578022],[-83.2812833986616,69.7924756628573],[-83.3161691430839,69.7908388496567],[-83.3689147188159,69.79391902927298],[-83.3882859433535,69.808550492146],[-83.3746676343329,69.8212608176159],[-83.303611509986,69.8346799454015],[-83.129071030499,69.8263285741559],[-83.1060111098215,69.8173488388115]]],[[[-86.62804271494018,69.9406416070448],[-87.1927736636724,69.9759091914624],[-87.3241227249837,70.0217925953937],[-87.3257302534949,70.0641230556005],[-87.20332483752608,70.0795812458552],[-87.1146004649953,70.1147151409636],[-87.03761775696,70.1078468586053],[-86.9454239936688,70.0629016539552],[-86.8947067481494,70.0567303758482],[-86.7966949191845,70.0773587905049],[-86.7650786958171,70.0952279484753],[-86.686862929681,70.0928894693121],[-86.5564401183069,70.0465904846524],[-86.53618087947929,70.0271534534601],[-86.5317383640484,69.9564793578725],[-86.62804271494018,69.9406416070448]]],[[[-78.20143935442,69.687256948402],[-78.1730053478133,69.7282086464157],[-78.1257127598374,69.7390578881629],[-78.0753394351975,69.735315182819],[-78.00642891542219,69.7014516282264],[-77.95346659506,69.6639663962018],[-77.991755349078,69.6094175271047],[-78.0294894150323,69.5931124139192],[-78.2453823295738,69.5470427365468],[-78.5415915288178,69.5162072218011],[-78.7087544718094,69.4614367106185],[-78.7860378382013,69.4431167109869],[-78.8358642131368,69.44667393356849],[-78.85482795422,69.4575687950469],[-78.80949781378,69.5068348997697],[-78.5086455702417,69.6236958776059],[-78.2800061927865,69.6882667456208],[-78.20143935442,69.687256948402]]],[[[-83.6869854287842,69.776934339358],[-83.7381456175961,69.7792578282113],[-83.8886697605048,69.8237771221329],[-83.8896064276745,69.8521385521443],[-83.8194355187756,69.8631706784633],[-83.6417496471851,69.85041681441069],[-83.5986114276341,69.8295521537489],[-83.6067745978152,69.811036964667],[-83.6869854287842,69.776934339358]]],[[[-80.0933383543838,69.4666417570623],[-80.1378317818033,69.4616724000272],[-80.1754328515489,69.4654396633284],[-80.214287961085,69.4747971700663],[-80.2168412279559,69.4933361764071],[-80.1930221049278,69.502547694305],[-80.1512104354544,69.5048921367096],[-80.10636187052,69.4969043102524],[-80.0933383543838,69.4666417570623]]],[[[-81.62756391741969,69.5106605683146],[-81.6833836594194,69.5132121085933],[-81.726624994559,69.5198267171324],[-81.7519101143859,69.5338497069777],[-81.7826809397359,69.5556292760971],[-81.7798871718643,69.5714594345784],[-81.7333246461015,69.57572691382718],[-81.6971946732703,69.5683643957419],[-81.6657785024913,69.5588497490248],[-81.6488169662244,69.5478428282157],[-81.6152953500574,69.5307783167256],[-81.62756391741969,69.5106605683146]]],[[[-82.3111315734399,69.6026058627691],[-82.326564111552,69.5728292575744],[-82.3798262907249,69.5565580083738],[-82.414411774675,69.5550747436518],[-82.46105761831599,69.5678800558774],[-82.4416288238879,69.5900165296374],[-82.4138905421431,69.6030115713272],[-82.3627591767988,69.60959533824298],[-82.3111315734399,69.6026058627691]]],[[[-97.42105282696208,69.9215911563671],[-97.50243089058,69.9385023944826],[-97.5117044204906,69.985248605684],[-97.433791073679,69.9870383718881],[-97.4060033591756,69.9782771385703],[-97.3728457464787,69.9414638731474],[-97.42105282696208,69.9215911563671]]],[[[-91.2135515662055,69.9315054259059],[-91.1496173842291,69.9128268702391],[-91.1315317272056,69.9039888062934],[-91.1631603834656,69.8805313661878],[-91.2096131755182,69.8842393975649],[-91.25660882245938,69.9077576744727],[-91.2446454151251,69.9315978411101],[-91.2135515662055,69.9315054259059]]],[[[-91.6581361348393,69.8864037505825],[-91.722921302791,69.8867633772733],[-91.7482169576145,69.8962669474275],[-91.720398166557,69.9242228800668],[-91.6292078142221,69.9283963868238],[-91.60392708916099,69.9188773868314],[-91.6052894375314,69.90014955124609],[-91.6581361348393,69.8864037505825]]],[[[-76.6951725175617,69.4207521196897],[-76.6662368574693,69.3895358745219],[-76.703676594035,69.3398118630684],[-76.83264702762038,69.2544659771191],[-76.9462936375793,69.2062380754379],[-76.9661924905903,69.1790916717772],[-76.8793397859216,69.13837089727008],[-76.8892986344906,69.1248029637673],[-76.94807031060938,69.115257012698],[-77.0457698137604,69.12326746218169],[-77.28526855258148,69.1139359999201],[-77.3637327488809,69.148967915724],[-77.2893821570814,69.3250903879639],[-77.320897472059,69.3899082582439],[-77.2880304980737,69.4352301414021],[-77.1971252860134,69.4519603251255],[-77.0484109352431,69.4400134433938],[-76.9965519236674,69.421422614145],[-76.8975886981605,69.4133721698277],[-76.7817316564271,69.42788812571],[-76.6951725175617,69.4207521196897]]],[[[-82.0767839588513,69.4743410597371],[-82.20828607499828,69.4956424218651],[-82.2392048772341,69.51149362760438],[-82.2254596931445,69.5391525265056],[-82.07412070797038,69.5310019831487],[-82.027427778612,69.4953213038353],[-82.0767839588513,69.4743410597371]]],[[[-91.584868648503,69.8250832258226],[-91.5828086106671,69.8531732497433],[-91.50338278386648,69.8760962531145],[-91.4089139598965,69.9223063978614],[-91.357004708769,69.9219415830354],[-91.32008329275179,69.898249076874],[-91.34838042818389,69.8703484505905],[-91.4944277144711,69.8245134915342],[-91.5468096269396,69.8154806214179],[-91.584868648503,69.8250832258226]]],[[[-102.14707704976,69.7058011528211],[-102.22919034514199,69.7161254122778],[-102.246442163501,69.7578582647157],[-102.219654956381,69.78748631822748],[-102.151952714567,69.7812008650102],[-102.113136337374,69.7499219089349],[-102.10180080459199,69.722092106019],[-102.14707704976,69.7058011528211]]],[[[-81.84591712091088,69.3953582971328],[-81.88349625783908,69.397447578643],[-81.9242583570418,69.4186429494445],[-81.876450224864,69.48702288311338],[-81.612496642792,69.4722230864061],[-81.5116336612091,69.4427763939231],[-81.5063829071404,69.4282562784837],[-81.55848876469089,69.40281249332348],[-81.6133857894424,69.3964688667221],[-81.7988929609005,69.411673585433],[-81.84591712091088,69.3953582971328]]],[[[-91.4028557172704,69.79786284181759],[-91.3707972555237,69.7881482030495],[-91.37335970365818,69.7726331124674],[-91.43496354548608,69.7539281341686],[-91.4855358475376,69.7548181863559],[-91.5146475289372,69.7680559538783],[-91.5128572559072,69.7793413317987],[-91.4512480026552,69.79807103867388],[-91.4028557172704,69.79786284181759]]],[[[-75.0242214308824,68.7341982584354],[-75.0719557912973,68.7386795542798],[-75.10891737106908,68.7566026879729],[-75.0597616919457,68.7857615118326],[-75.0036052015694,68.7756693935236],[-74.9739459459686,68.7487618048151],[-75.0242214308824,68.7341982584354]]],[[[-90.9993831500137,69.73303430929859],[-90.9639212777832,69.7266257165309],[-90.9507192700796,69.7136242634491],[-90.9579618677162,69.6953750913195],[-90.9825154240887,69.6887932207784],[-91.017665969885,69.6880788173678],[-91.047674828701,69.6943317343154],[-91.0759435254862,69.7104514673802],[-91.0486122309002,69.7325561284078],[-90.9993831500137,69.73303430929859]]],[[[-90.1357709695211,69.6799431491332],[-90.0989225469848,69.6705503894187],[-90.1036079781412,69.6494239774963],[-90.12511914158948,69.6400362074529],[-90.16764331995219,69.6410678196497],[-90.1955115895904,69.6558980097052],[-90.1867328855775,69.6783431036522],[-90.1357709695211,69.6799431491332]]],[[[-90.9305974520546,69.6537864384699],[-90.8981138872529,69.6403892842976],[-90.8893890341547,69.6246452390472],[-90.9033329480912,69.6121975572591],[-90.9239474469243,69.6055445587744],[-90.9813766435108,69.60953777900978],[-91.0143737749226,69.6201002723582],[-91.0098026048188,69.64547503097488],[-90.9693081913004,69.6545692378297],[-90.9305974520546,69.6537864384699]]],[[[-90.20113462079769,69.5583465874816],[-90.2411575601545,69.5609637841166],[-90.2609641147189,69.5682687941787],[-90.2620573525309,69.5994396444574],[-90.2439009803153,69.61174920223729],[-90.1958730317618,69.603994357214],[-90.1770188294712,69.5802483230945],[-90.1800425208334,69.5663302338977],[-90.20113462079769,69.5583465874816]]],[[[-74.6998067146254,68.5344504185472],[-74.79897547081869,68.5536372720578],[-74.8328424269089,68.5906489810269],[-74.77106779154009,68.6667750246279],[-74.72810209912758,68.6723152688502],[-74.6760102822384,68.6576580625522],[-74.6496371795054,68.611667071422],[-74.565864208777,68.5890748725913],[-74.5250722586811,68.5609629700491],[-74.56705055769409,68.5409020253886],[-74.6998067146254,68.5344504185472]]],[[[-95.41237999262658,69.5917934588539],[-95.4649204773068,69.6051561931385],[-95.4545281078289,69.6287218423765],[-95.4033405637607,69.6293906629272],[-95.3631105357705,69.6111681153179],[-95.41237999262658,69.5917934588539]]],[[[-101.270881096397,69.5089190533513],[-101.275961084853,69.522852324508],[-101.358686222247,69.5381741245439],[-101.405263349212,69.5597539801645],[-101.418518828688,69.6299578292122],[-101.218575491784,69.5771729527428],[-101.139140281028,69.57108343346489],[-101.037183335722,69.5376073845252],[-101.027320994277,69.5097274717313],[-101.165679949552,69.466222557248],[-101.197752353195,69.4129999509166],[-101.24139156944798,69.3922791588355],[-101.295062678747,69.3994111044509],[-101.313670195454,69.4504873889248],[-101.37092345546698,69.4668877297335],[-101.377765902632,69.485458853759],[-101.270881096397,69.5089190533513]]],[[[-79.267955650406,68.8244800597937],[-79.3866296273172,68.8375802122552],[-79.4429875296498,68.870055581468],[-79.3734812160697,68.984179141186],[-79.2795310985541,69.0537879425732],[-79.1992297853471,69.1005398388244],[-79.1235034773243,69.1190235476979],[-79.0317212240845,69.1220475532551],[-78.9861715472856,69.1331021546648],[-78.8322067852083,69.2126592838686],[-78.6605022752774,69.2384012691738],[-78.6366143200377,69.2748394437268],[-78.7488306437502,69.3211450135816],[-78.7339313327199,69.3439290570297],[-78.4874051549952,69.4215035974611],[-78.4004043804194,69.4151181227215],[-78.2761340790704,69.3868065531184],[-78.2481913685467,69.3703867154604],[-78.2666202456655,69.3239741162772],[-78.29750071185708,69.3167202554488],[-78.3342093532295,69.2621291754238],[-78.51822250898968,69.1993525910908],[-78.56609332391379,69.1265132971299],[-78.6541496495087,69.0900369021486],[-78.7793908314019,68.97519427563958],[-78.91744081702008,68.9184861502305],[-79.1042276025346,68.8842641547086],[-79.1838947987685,68.8375650959855],[-79.267955650406,68.8244800597937]]],[[[-96.1826262569682,69.4209350611315],[-96.2067076275584,69.41115278117049],[-96.2833455335838,69.4145099220643],[-96.3233107515077,69.4278658686749],[-96.3673139182593,69.4692603576834],[-96.4475894121861,69.4959309103847],[-96.6269693809105,69.5019456074168],[-96.7376015456368,69.556057238721],[-96.77062223202398,69.60229521673239],[-96.4903301031425,69.6123429007999],[-96.3961415146426,69.5812396168023],[-96.3578573885995,69.5819221744611],[-96.27306835909748,69.6162247098828],[-96.2347204487525,69.6168860759795],[-96.1944671378264,69.6035076608758],[-96.1856193935712,69.53803914674178],[-96.2187376473746,69.4999816345951],[-96.1826262569682,69.4209350611315]]],[[[-74.8828434245933,68.46520591093669],[-74.7784247726477,68.4214169666975],[-74.792803233431,68.40351048114539],[-74.8613143045906,68.3811741398444],[-74.88985711739458,68.3453507936115],[-74.923991715075,68.3341667144376],[-74.9591862663973,68.3375376981556],[-75.0541225575285,68.4092310363511],[-75.3720141280219,68.52094052538],[-75.41024589507069,68.55336421990988],[-75.4051141674677,68.6251070570578],[-75.3273849080396,68.7238854877624],[-75.2653890231281,68.7374224126291],[-75.2056823712986,68.731881658004],[-75.1150784546232,68.6848640823287],[-74.9603313173353,68.6702995994126],[-74.9179103546886,68.6276943199665],[-74.9234876760784,68.5414164974835],[-74.8577021013689,68.49655691691778],[-74.8828434245933,68.46520591093669]]],[[[-95.6793980631363,69.3492277311854],[-95.7436387984942,69.357652641661],[-95.7716105903837,69.3806541359385],[-95.7521907658054,69.4324696589454],[-95.7672999623842,69.5634251179851],[-95.79445835057219,69.5770798168123],[-95.857713791313,69.57143824857789],[-95.8493094209872,69.5012816036382],[-95.9060648516147,69.4441844424085],[-95.9130502635847,69.3972260914128],[-95.97518756069779,69.38687303976859],[-96.04083770459918,69.4045546729212],[-96.0369357598692,69.5733065136922],[-96.0161801686332,69.6111343004965],[-95.9062970933071,69.655046897953],[-95.8166353075401,69.6564125571188],[-95.5912185576398,69.5893842172031],[-95.5371549903344,69.5620180100206],[-95.5180218109948,69.5013802418163],[-95.600496422015,69.4393443298933],[-95.6182427986946,69.368839075598],[-95.6793980631363,69.3492277311854]]],[[[-90.1114760286821,69.4500572219805],[-90.075334146234,69.4355165248646],[-90.1210707578405,69.3799537257931],[-90.1318590625092,69.3005116864265],[-90.1854163451118,69.27782299902209],[-90.2706128928657,69.3023390432083],[-90.266987823167,69.3303795051899],[-90.3133421789939,69.3637377872583],[-90.3085593978528,69.40113008750879],[-90.1743345268094,69.4555838271789],[-90.1114760286821,69.4500572219805]]],[[[-85.2313196302087,69.0655270297164],[-85.2745079965016,69.067689052396],[-85.30567439654399,69.0661401102512],[-85.3382555714769,69.067759401461],[-85.3470871793429,69.07956651392388],[-85.3451810212484,69.0970450480606],[-85.3032166505856,69.1042648762293],[-85.2542716992616,69.10182461406188],[-85.2136583381283,69.08014643591589],[-85.2313196302087,69.0655270297164]]],[[[-90.4316859325401,69.2247725205273],[-90.4939963154699,69.2301944488937],[-90.5541668292134,69.2542902558438],[-90.54763343808828,69.3103766944794],[-90.6191092922726,69.3486242498704],[-90.6153745606483,69.3813499469372],[-90.5757630135298,69.3949526819523],[-90.4744190551017,69.3937873034714],[-90.4502233224543,69.3841376015581],[-90.3829934667614,69.3131088613926],[-90.3676637685859,69.2333522362427],[-90.4316859325401,69.2247725205273]]],[[[-84.9991885564995,69.0212128782721],[-85.0444158350355,69.0105561835026],[-85.0746366916047,69.0110672337804],[-85.1026534532682,69.0166336870172],[-85.1248271777689,69.0229294901565],[-85.1443764180055,69.0352944851241],[-85.1670957555476,69.046784093884],[-85.1681315974864,69.057176092611],[-85.1462061275335,69.07571250822748],[-85.1114173346648,69.0791173856662],[-85.0665923605559,69.0737339323582],[-85.0375815745641,69.0639779465971],[-85.0049198955851,69.04368850389109],[-84.9991885564995,69.0212128782721]]],[[[-90.0990085660063,69.2466903256057],[-90.0663400141073,69.2408426448528],[-90.0361853428525,69.2216912448494],[-90.05280079082529,69.1980552363294],[-90.0776827652226,69.1887771545201],[-90.1076882492459,69.1909413020215],[-90.13528116973468,69.2043582179393],[-90.1353011827767,69.239729205181],[-90.0990085660063,69.2466903256057]]],[[[-101.663520057751,69.0907505924846],[-101.727261654745,69.092561620834],[-101.744917271132,69.1059034678561],[-101.682654842471,69.1417605115113],[-101.733828231022,69.2101902320835],[-101.703453136201,69.23044125013838],[-101.666024247807,69.2321363850269],[-101.637582424636,69.2239838224751],[-101.59392131695,69.1410526030304],[-101.663520057751,69.0907505924846]]],[[[-85.08990604397549,68.951714057602],[-85.1176519334604,68.9439945063642],[-85.180185865815,68.9461381362648],[-85.2050145328584,68.95256286018089],[-85.2047624656608,68.9659876523384],[-85.194564819024,68.9768425685092],[-85.1644674466665,68.9825563916599],[-85.1320179657848,68.9809090288377],[-85.1071795529707,68.9744746117157],[-85.0868193516202,68.9641286925506],[-85.08990604397549,68.951714057602]]],[[[-90.61976338189758,69.2316279518241],[-90.5633571780215,69.1748392711475],[-90.5655077461642,69.1561484334154],[-90.6047024851508,69.1425530064479],[-90.64228711438649,69.1429715428019],[-90.69035725292929,69.1622096143228],[-90.6826522022718,69.2323157788487],[-90.61976338189758,69.2316279518241]]],[[[-89.8927715992029,69.12463207703],[-89.8563036941152,69.1066988160601],[-89.8720651111966,69.0873043225285],[-89.9047514552599,69.0768402648658],[-89.953132995237,69.0809215671576],[-89.9732710137067,69.0927584757059],[-89.9733155740181,69.1097349002092],[-89.93935977805889,69.1258398128563],[-89.8927715992029,69.12463207703]]],[[[-90.0625647308276,69.0702184633314],[-90.12499335515339,69.071082747322],[-90.1962530865224,69.1001202124132],[-90.1769828582651,69.1513390347645],[-90.1268621219326,69.1506614519268],[-90.0337341179796,69.0978914088548],[-90.0625647308276,69.0702184633314]]],[[[-78.7156073276297,68.4368423708042],[-78.7990972431218,68.4430531255574],[-78.8446707178058,68.4702304665546],[-78.8078924770168,68.5294116432893],[-78.6772657432592,68.5578241574747],[-78.6480430813471,68.5842323843193],[-78.823643734902,68.6448734794919],[-78.8093677457343,68.667639933516],[-78.7497191095966,68.6823027846002],[-78.6441999432332,68.669719629915],[-78.5052568791582,68.6307268316737],[-78.4000899387388,68.6180132333957],[-78.3787514461391,68.59254931356288],[-78.3933897248175,68.5698213973878],[-78.4468198402801,68.5452706933912],[-78.5953759893273,68.5088200050336],[-78.6593628687479,68.4469243342061],[-78.7156073276297,68.4368423708042]]],[[[-100.08024869757298,68.97735081940809],[-100.158733371127,68.9885098381062],[-100.268454570315,69.0595985264585],[-100.286554437312,69.1577125001049],[-100.264532202153,69.167962859935],[-100.214639871554,69.169854075178],[-100.167162178078,69.1387104940668],[-100.085319631684,69.1182515845163],[-100.08024869757298,68.97735081940809]]],[[[-84.7661164250167,68.7649514222493],[-84.8211334445316,68.7548985557085],[-84.8697522035568,68.7564298584642],[-84.89474302963438,68.7618808646239],[-84.904580458586,68.7706680917591],[-84.8805053140223,68.7880127476778],[-84.83896534254669,68.7889272285113],[-84.8059207683553,68.7830455578801],[-84.7849546694431,68.7746944765975],[-84.7661164250167,68.7649514222493]]],[[[-89.9934544668458,68.9826739674187],[-89.9901540649831,68.9615721668828],[-90.0411333128046,68.9529452035613],[-90.07650918270488,68.9674772979193],[-90.0746163839939,68.9814865921937],[-90.0484687989463,68.99047681495108],[-89.9934544668458,68.9826739674187]]],[[[-89.9233963660085,68.9933511602718],[-89.89583778028799,69.0116613748202],[-89.8460299222497,69.010913094407],[-89.8107343684314,68.9963383339146],[-89.7665176983019,68.958220677684],[-89.78445450433908,68.9210674835747],[-89.8354217687088,68.9124926329565],[-89.88301339091808,68.9272486849243],[-89.8659042703718,68.9597421128717],[-89.9233963660085,68.9933511602718]]],[[[-78.5760475601384,68.2025212896368],[-78.6204457751272,68.210651010381],[-78.609137906682,68.2288403054992],[-78.5329956531947,68.2516299746241],[-78.4856950860863,68.2480244928685],[-78.473481975758,68.2280374740579],[-78.5760475601384,68.2025212896368]]],[[[-74.2738004588119,67.7395596454708],[-74.3766300420727,67.7499819281939],[-74.4539718327553,67.7770592521215],[-74.6553373287109,67.898356460544],[-74.7564726042374,67.9275993291781],[-74.7885811023628,67.9500188790108],[-74.7941313558103,67.9746504736191],[-74.748377358068,68.0328074998172],[-74.68886582212738,68.0607099504684],[-74.6469990306208,68.0662370898317],[-74.481270285135,68.0546727984255],[-74.4213814758174,68.0824867476975],[-74.3736947068804,68.1259960405004],[-74.32800667606608,68.1359146279833],[-74.2815802136957,68.13126847224558],[-74.2656522764616,68.1200125357253],[-74.2817074436325,68.0540325136728],[-74.24632517128389,68.0359868940973],[-74.1697228057164,68.03790924313],[-74.082139937191,68.0531760913145],[-73.8548782041567,68.0250826671032],[-73.7321458264827,68.0220631552941],[-73.5676582189605,68.0387945317702],[-73.471476365645,68.0190173403223],[-73.2783994717484,67.83386186922428],[-73.2933087981939,67.8015556981799],[-73.3574865227942,67.7696846402577],[-73.4519234486991,67.7458714474744],[-73.5162860560504,67.7430314156019],[-73.607437976298,67.7526694373501],[-73.6990440154367,67.7768078206331],[-73.9576584649086,67.7940528691688],[-74.096037598749,67.7455295521473],[-74.2738004588119,67.7395596454708]]],[[[-81.64747818885229,68.4094244648978],[-81.6361348028955,68.4323923082641],[-81.5932701683494,68.4440473571849],[-81.5452155090778,68.44120488664679],[-81.5492258580336,68.4083447842077],[-81.6040372436373,68.3974087137918],[-81.64747818885229,68.4094244648978]]],[[[-100.24478788542,68.94290838984779],[-100.203453076576,68.9303764902623],[-100.20390730694199,68.8504171013442],[-100.233681736219,68.8257680282953],[-100.29224482325,68.8141041544209],[-100.35723377036,68.7833600443867],[-100.373065280593,68.7545238293625],[-100.44216245474499,68.7376916927496],[-100.469566888778,68.74600862643858],[-100.475435247722,68.7645890640796],[-100.45332260113,68.8125003483339],[-100.494578870909,68.8249766981885],[-100.583859541791,68.7931779071341],[-100.63291195646998,68.79119450124338],[-100.660450334532,68.7994871075531],[-100.661762480206,68.8417815299524],[-100.61206023062,68.9190786362994],[-100.66387957500199,69.0393607702945],[-100.618855766918,69.0552928427935],[-100.493299160438,69.0555746908975],[-100.422382536301,69.0301223264889],[-100.350857947346,68.9623371441652],[-100.24478788542,68.94290838984779]]],[[[-79.0591136286742,68.1387194134222],[-79.1271421057599,68.1484627012373],[-79.1516752172597,68.1692689501275],[-79.1107943766746,68.2375982737771],[-79.1344888186549,68.30113953114649],[-79.1097872769269,68.3421445114735],[-79.0539499327407,68.3523468407568],[-78.9350552888323,68.343628544238],[-78.9042567970486,68.3128044417752],[-78.7821679886436,68.2894590094168],[-78.7516242303445,68.25861515742709],[-78.8741812756949,68.2201723580652],[-78.9719200905935,68.1608213514793],[-79.0591136286742,68.1387194134222]]],[[[-105.189322849875,68.5271520852022],[-105.246917232263,68.5423806864282],[-105.254056736612,68.5799006023676],[-105.20591221428998,68.5830419200456],[-105.155517736159,68.557834034419],[-105.146020001938,68.5394614878938],[-105.189322849875,68.5271520852022]]],[[[-109.131225814668,68.2456695185577],[-109.131909946934,68.26481206656769],[-109.084939680997,68.2689124312261],[-109.04043374505899,68.2583908871154],[-109.063287295428,68.2372059247495],[-109.131225814668,68.2456695185577]]],[[[-101.88081127086,68.5714939929109],[-101.929290977076,68.5691878769827],[-101.984770984885,68.5853877547751],[-102.01958798711,68.61200054910529],[-102.272439467819,68.6892898422472],[-102.29068676628,68.7355685751553],[-102.123841273124,68.7861769347951],[-102.042067685893,68.8325639220145],[-101.968536140345,68.83606667699479],[-101.928232215118,68.8285444866914],[-101.844209445628,68.8042049935649],[-101.80928980897599,68.7775515222511],[-101.832098579427,68.7057700519199],[-101.887788586152,68.6560069012785],[-101.849625962388,68.5871110475501],[-101.88081127086,68.5714939929109]]],[[[-106.887409397476,68.2699392530401],[-106.913335560258,68.25886312128979],[-106.954722427458,68.2554119910203],[-107.016435690773,68.2664307199223],[-107.041248724023,68.30221925783638],[-107.046119152492,68.32433229852128],[-107.005039424983,68.3286119877484],[-106.97364358343098,68.3264528852733],[-106.972944268888,68.3123794283048],[-106.887409397476,68.2699392530401]]],[[[-104.52418305855,68.3844669794656],[-104.657928916327,68.3808724100023],[-104.833384156893,68.436177896452],[-104.95505636617699,68.4568742247651],[-105.071776374479,68.5157920057443],[-105.0882863689,68.5479490616795],[-105.068955561825,68.5586888044136],[-105.013496491718,68.5717449785948],[-104.782336156071,68.5816800619777],[-104.46320458458,68.4877310048463],[-104.39961376560798,68.4584580582789],[-104.386331788727,68.4308486479416],[-104.411207325287,68.40564128207319],[-104.52418305855,68.3844669794656]]],[[[-107.371146544144,68.2045580264444],[-107.459115653324,68.2072309172952],[-107.467452730107,68.220900557346],[-107.44043141145299,68.2373376612016],[-107.38146857708598,68.2419394090086],[-107.352353256333,68.2346565989863],[-107.341320608431,68.2164218775331],[-107.371146544144,68.2045580264444]]],[[[-109.278912105332,68.0454269828454],[-109.36736058182298,68.0663438301068],[-109.43178616941799,68.0701778722845],[-109.43134652243198,68.1230557258249],[-109.37303494248299,68.1282709168555],[-109.34345374031298,68.1213024740025],[-109.277351693197,68.0791689175243],[-109.261846045371,68.05654486350008],[-109.278912105332,68.0454269828454]]],[[[-108.333831605539,68.06946687907458],[-108.386398018238,68.0746365805883],[-108.398147024072,68.0927964712283],[-108.380646755858,68.1038374444948],[-108.333875783164,68.1077507847256],[-108.29879111352699,68.0915346119928],[-108.333831605539,68.06946687907458]]],[[[-100.837659415064,68.4722623283157],[-100.739512622291,68.4340489486407],[-100.742609038075,68.4057059784615],[-100.790845637431,68.4036862845329],[-100.84664787443099,68.424851093286],[-100.882971557931,68.4609428469954],[-100.837659415064,68.4722623283157]]],[[[-95.6127931582876,68.5144387707792],[-95.6261932056929,68.4839001632146],[-95.6776966630273,68.4729869737522],[-95.71252179463238,68.4827722120039],[-95.7065412677143,68.4993176709649],[-95.66191906326378,68.525910362897],[-95.6359216887768,68.5243468963414],[-95.6127931582876,68.5144387707792]]],[[[-97.41826746843378,68.5618167180109],[-97.4809472092993,68.5696660983281],[-97.7702805970123,68.6701548718064],[-98.2025497941386,68.7335337205146],[-98.269031132719,68.7551081530876],[-98.31013752114758,68.8289747900315],[-98.3812088046715,68.8691573636443],[-98.4418499625691,68.862714261766],[-98.4371560071327,68.7878001714938],[-98.4708470164603,68.7727464999155],[-98.5344505891554,68.7802531594254],[-98.6013764478291,68.8017120791094],[-98.659436852513,68.83749875974169],[-98.7737069354541,68.8480897850834],[-98.8533907898308,68.8690855897217],[-98.88885978238159,68.96185738069438],[-98.91596235153588,68.9703963346046],[-99.0138703266674,68.9626052763828],[-99.0697875476681,68.9373359436905],[-99.1147444877635,68.8701479816623],[-99.1862941648765,68.85841747183879],[-99.3466332661365,68.900036509685],[-99.4884196718112,69.0079600675574],[-99.4927587824577,69.0688956770368],[-99.3874715238736,69.1429538062772],[-99.2577168949623,69.1754579645448],[-99.0303378979487,69.1734076821479],[-98.937455607957,69.2045120031138],[-98.7907053853138,69.2231228902871],[-98.6938614774446,69.2917882647569],[-98.6069992918788,69.2990584134039],[-98.5404342009879,69.3385676766088],[-98.4785468221269,69.3450491457282],[-98.4440202171066,69.3601237991719],[-98.4346853215142,69.37447621229678],[-98.4676156027659,69.4064054262791],[-98.5799317690059,69.45013280135949],[-98.5762837018281,69.4878155721099],[-98.4875147391464,69.4903719487636],[-98.4516698733467,69.5007864263405],[-98.4710021171226,69.5284182361441],[-98.5816806235646,69.5628206161015],[-98.58735695682499,69.5861485043291],[-98.54091814520739,69.6062803220819],[-98.4505633451374,69.6041550513383],[-98.3951787018266,69.5869236374901],[-98.16510966582679,69.4758465640127],[-98.1250031380462,69.4675338320248],[-98.0753223752433,69.4735514900532],[-98.06877325258309,69.5018924214815],[-98.1182268068115,69.5522230809195],[-98.3339080608104,69.65438868690599],[-98.3426210204357,69.6917309212664],[-98.2274104143266,69.8076243016811],[-98.1102314208638,69.86242027613699],[-98.0970082190735,69.9191457075765],[-98.0613276906813,69.9341715898074],[-98.0095388288617,69.9355098145382],[-97.8710022154891,69.89674222345269],[-97.7407390628038,69.8952651158448],[-97.6990579696121,69.8821896234906],[-97.6073543755464,69.8139553175199],[-97.4877386404803,69.7979918135785],[-97.41796065363319,69.7714359965389],[-97.4125722173495,69.743397074553],[-97.4823339804312,69.704238051901],[-97.4979303411304,69.6522469359216],[-97.4431744355872,69.6347511128141],[-97.4057236575764,69.6403071406479],[-97.3581096434214,69.6601649344852],[-97.3275980872274,69.70308804550949],[-97.3036998486429,69.7130125592628],[-97.2523895438755,69.7141539369804],[-97.1968253780065,69.691914669233],[-97.1058230683271,69.6141314943314],[-96.8904965424582,69.5529857705516],[-96.6712455415106,69.4588977897251],[-96.3381255112596,69.3526257606296],[-96.2773032853461,69.2787398720949],[-96.2612089025948,69.06825304434359],[-96.2094444676717,69.0551131978889],[-96.1620115010531,69.07466231394879],[-96.1578104286136,69.2339647631471],[-96.1345061214146,69.2484099418724],[-96.0842022722614,69.2492538366009],[-96.0435125107614,69.2265072596757],[-95.99825505646099,69.1663653323252],[-96.008761452567,69.04913605038679],[-95.9136519263483,68.9851328313288],[-95.85627030599738,68.9205105250117],[-95.79161712598258,68.8981157003357],[-95.7296793268083,68.8990562204518],[-95.6518285583388,68.8674548273576],[-95.5666762919315,68.8827233057341],[-95.4727530357688,68.93550397126138],[-95.3863308458002,68.9413458047035],[-95.3482059221346,68.93249099675919],[-95.3446773451207,68.8951079413768],[-95.4144624888317,68.84739822052059],[-95.5247614511775,68.7148987087097],[-95.59607114509879,68.6904918052397],[-95.6329046923591,68.6899566013796],[-95.6584577993341,68.6989342475375],[-95.666977734149,68.7783351962141],[-95.7532413102277,68.7770404903834],[-95.8811359293733,68.7095464729491],[-95.8757040555754,68.6628515835587],[-95.9080993685349,68.624908137996],[-95.9570626889343,68.62411312053858],[-96.00772489640698,68.6373097298017],[-96.0812024659656,68.6360733978097],[-96.1713560825702,68.5736954814126],[-96.2293636220318,68.5492791920644],[-96.3256914259612,68.5381785839025],[-96.4493495615147,68.46100795385979],[-96.5958280891665,68.4628393026592],[-96.76160500216679,68.51095591779298],[-96.9760918096687,68.5532110649602],[-97.1074266182258,68.6064919914874],[-97.166926930813,68.5957876489957],[-97.1459850657828,68.544758725256],[-97.1923305624451,68.5296591734185],[-97.2540348279598,68.5329178037687],[-97.3451031125325,68.5635615569871],[-97.41826746843378,68.5618167180109]]],[[[-98.9729415331739,68.4055071394409],[-99.0213036429105,68.403934311631],[-99.10203702519348,68.434120540086],[-99.1067345637212,68.4527284398508],[-99.0848491708441,68.4628318201431],[-99.0219309933983,68.4555089445208],[-98.96772277154689,68.4338168425846],[-98.9729415331739,68.4055071394409]]],[[[-66.2859431578725,66.1591617231475],[-66.3374269347882,66.1484917475319],[-66.3642179862002,66.1552756879544],[-66.3756162679357,66.16380129841549],[-66.3583265195605,66.1739849072405],[-66.3376416678418,66.1824907804286],[-66.3046426684173,66.1877899718568],[-66.2690069348557,66.1816709198196],[-66.2859431578725,66.1591617231475]]],[[[-107.812696053758,68.0023688503731],[-107.859342767076,67.9985865870429],[-107.88831868044899,68.0057891691499],[-107.922677056733,68.04122282658679],[-107.878103997186,68.0878556075259],[-107.88629650216299,68.1206483680745],[-107.830534562344,68.1299341121203],[-107.77274919289098,68.09636149282579],[-107.81997136240598,68.0734443495263],[-107.797804783518,68.0179028364934],[-107.812696053758,68.0023688503731]]],[[[-108.832655699635,67.9120086627887],[-108.878979094029,67.9079783306897],[-108.922744053047,67.9185367434073],[-108.96705495696999,67.9482184939361],[-109.142812806367,67.99030897521308],[-109.16430004959,68.0219960328636],[-108.957475975822,68.0257705035352],[-108.901862777305,68.0162295221334],[-108.832655699635,67.9120086627887]]],[[[-108.408734020954,67.9213697236613],[-108.441630669411,67.9234842357838],[-108.47669273881098,67.9243125816941],[-108.5098911901,67.93201236186378],[-108.549265438696,67.9403811145636],[-108.575427078722,67.9508336222654],[-108.57561654249598,67.9645223650673],[-108.551381679362,67.969447739959],[-108.498991600916,67.9687640761863],[-108.392005300803,67.9462658070577],[-108.383805656304,67.9284395458582],[-108.408734020954,67.9213697236613]]],[[[-87.0318049918156,68.2534689482721],[-87.04898376194629,68.2322262925909],[-87.0861427643928,68.2217226208007],[-87.1424155322683,68.2259224898432],[-87.1897474802191,68.2427262348977],[-87.195621787609,68.2540995836054],[-87.1812966268813,68.2683541413366],[-87.1328358253249,68.2765551616241],[-87.0657998887542,68.26819183653969],[-87.0318049918156,68.2534689482721]]],[[[-108.107397525987,67.9256762583357],[-108.142241859611,67.9227870776722],[-108.17408436746,67.9344886987857],[-108.21443635511999,67.99808826667308],[-108.19691690926999,68.0091103116676],[-108.16195401515,68.0120086728756],[-108.09810016099499,67.98859857973959],[-108.081111176149,67.9421929388762],[-108.107397525987,67.9256762583357]]],[[[-100.146619606174,68.3732460003671],[-100.075263925491,68.2961448802353],[-100.09657822638599,68.2859338947194],[-100.16864086217,68.283148211011],[-100.222207863667,68.29984761583918],[-100.230526822624,68.3277070679999],[-100.146619606174,68.3732460003671]]],[[[-104.43178023428199,68.1154913073089],[-104.472110273017,68.1745423405258],[-104.43036033470399,68.2150144185658],[-104.385038050683,68.2225451868308],[-104.342855341638,68.2109321535326],[-104.32863917599998,68.1549982031077],[-104.38011947947798,68.1092238100105],[-104.43178023428199,68.1154913073089]]],[[[-109.02164916126799,67.8245095444113],[-109.05789137745998,67.8127544788254],[-109.095357893032,67.81777527538299],[-109.123734196253,67.82686099555829],[-109.132866702818,67.8520473665458],[-109.111241144391,67.85932584647018],[-109.04993675673899,67.8628667216648],[-109.02164916126799,67.8245095444113]]],[[[-65.5616464674682,65.8333116646251],[-65.60336244905989,65.85011885459909],[-65.5752966645073,65.8754958320613],[-65.5015504351403,65.89840068657838],[-65.4606440384252,65.891694689538],[-65.48718866142,65.8460842603001],[-65.5616464674682,65.8333116646251]]],[[[-96.3299583754238,68.2385581692731],[-96.3652411063956,68.23308982338298],[-96.4040259456394,68.2385880688658],[-96.41782546829289,68.2550041890279],[-96.4187101676438,68.26986125135518],[-96.40004071322049,68.2799110692192],[-96.3684148872436,68.28839955356298],[-96.3428648933959,68.2910587575357],[-96.3188095902743,68.2821417993018],[-96.31266207618069,68.2483251430623],[-96.3299583754238,68.2385581692731]]],[[[-87.62362807437259,68.08398900702448],[-87.6449564709915,68.0922379781822],[-87.6313066054277,68.1287773036127],[-87.6069244361846,68.138019906964],[-87.5652429354151,68.1336018117653],[-87.5391092596178,68.1177392221399],[-87.5512251988394,68.0855467096942],[-87.62362807437259,68.08398900702448]]],[[[-63.25187197531359,65.3598464501266],[-63.297885275984996,65.3428747643999],[-63.323499490572296,65.3479210084556],[-63.345244776389194,65.3583050845672],[-63.3539594007137,65.3697850224443],[-63.33796079218799,65.38007183305889],[-63.31044730545731,65.3856489343654],[-63.2636663020586,65.3788781500633],[-63.25187197531359,65.3598464501266]]],[[[-66.911476949551,65.963579499823],[-66.956871580415,65.954301782325],[-66.9987011941944,65.96484761119449],[-67.00519256162889,65.9741210269943],[-67.018982967787,65.9869555347397],[-67.0113552380934,65.9961942322492],[-66.9718114189149,66.00357838082199],[-66.9456257844285,65.9991746872834],[-66.911476949551,65.963579499823]]],[[[-63.1656415047069,65.2574994498603],[-63.1952512129301,65.2629135750795],[-63.2150999737463,65.2968529578949],[-63.200342248247004,65.3194232682865],[-63.17068748520919,65.3241178790717],[-63.12124310814699,65.3150807308377],[-63.111373414214995,65.2930519878168],[-63.136051029325,65.262188752584],[-63.1656415047069,65.2574994498603]]],[[[-108.44867699453499,67.6536620484056],[-108.391739139037,67.6589395622402],[-108.361512979351,67.652831236681],[-108.345413804581,67.6303619639433],[-108.365305198263,67.6225545425187],[-108.422136431907,67.6264097754716],[-108.440274987454,67.6385569942278],[-108.44867699453499,67.6536620484056]]],[[[-65.7274680260507,65.715679395354],[-65.6977497970201,65.6949786469884],[-65.7204062051375,65.677934840865],[-65.7450411861496,65.6739972533833],[-65.7776463366933,65.6750964745502],[-65.7987360283023,65.6811972083561],[-65.8199496694536,65.69201940134899],[-65.8110463868291,65.7092540260393],[-65.7472537583389,65.7226183893752],[-65.7274680260507,65.715679395354]]],[[[-76.7050404490385,67.1894485950947],[-76.9614582743182,67.2169489524675],[-77.0226735962774,67.2509540447904],[-77.0716779922708,67.4127524587912],[-77.1914293824535,67.5233228617657],[-77.2092929683009,67.6060090572436],[-77.1846375165551,67.8618166784233],[-77.1099315047721,68.0084156045485],[-77.0206769075103,68.04865234744739],[-76.9778799814561,68.09283535483108],[-76.8488860695589,68.1535824532015],[-76.5417484996664,68.2707157858701],[-76.3228510592686,68.3138604782085],[-76.0019015646726,68.2900662792126],[-75.9448508975418,68.2993278741981],[-75.8456418274805,68.3479843785627],[-75.7480844276907,68.3439115605885],[-75.5819498117562,68.3142459200484],[-75.3948545250982,68.2631998421764],[-75.1525651768815,68.2355548770987],[-75.0555801448395,68.1829765544436],[-75.0276587309183,68.1225149160762],[-75.0636381451713,68.0441267478112],[-74.9629241839755,67.9814527093456],[-74.9688267690656,67.9098134362301],[-74.91396735299878,67.740816719728],[-75.0254718970174,67.5304641233111],[-75.1302366591747,67.4397757517373],[-75.2726858564494,67.36238280912258],[-75.6558476108673,67.25050187627349],[-75.8615813322062,67.2316463689599],[-76.1219947111291,67.2368089017961],[-76.4358491018064,67.1986342480345],[-76.7050404490385,67.1894485950947]]],[[[-98.9831558173886,68.0019844568146],[-99.0460087377391,68.0139644705823],[-99.0743718553698,68.031768959718],[-99.0835469671026,68.0689625413387],[-99.04499516237969,68.1077469298338],[-98.99609704281958,68.1046726947547],[-98.9831558173886,68.0019844568146]]],[[[-108.305671035031,67.507500453923],[-108.351323240608,67.5036084252778],[-108.394110680295,67.51428974625689],[-108.445629926267,67.5768164750012],[-108.428484956648,67.5878494263099],[-108.33402838311899,67.5911294089669],[-108.279680497484,67.58140248126038],[-108.274167276034,67.5340758602609],[-108.305671035031,67.507500453923]]],[[[-108.069851723994,67.5441321258358],[-108.03372652823698,67.57341932041659],[-108.104196138408,67.6678529873551],[-108.08684157613,67.67885732918438],[-108.04083149306,67.6826896089058],[-107.88953358839399,67.6331264911804],[-107.861814060739,67.5876713098615],[-107.89935731987299,67.5702501175409],[-107.96530688253,67.5600107456343],[-108.005821536835,67.5279895553692],[-108.069851723994,67.5441321258358]]],[[[-67.3031115498817,65.7835328859354],[-67.3611478217524,65.7792218807113],[-67.3897477214356,65.7863164431079],[-67.3954584340476,65.7989211552814],[-67.373498075434,65.8162503690853],[-67.3469100412238,65.8199849627155],[-67.30316195985678,65.81386157713789],[-67.2878413376625,65.7973087627529],[-67.3031115498817,65.7835328859354]]],[[[-86.6276297536348,67.7544955049612],[-86.7665319068841,67.768399838736],[-86.8206272417286,67.7888619803643],[-86.84637625331338,67.8271311512419],[-86.8257828090743,67.9060577662322],[-86.8584108390546,68.0100980572316],[-86.8376464682848,68.0890507162788],[-86.76677792334469,68.1289546739111],[-86.7235187215166,68.2446864701491],[-86.62661743099979,68.2884163682573],[-86.5303170424022,68.2852630382058],[-86.4393083575547,68.2634905872906],[-86.3751412515283,68.2332053077565],[-86.3151787434284,68.1046176205313],[-86.33107657282319,68.0489311112053],[-86.3588543962747,68.0358279088813],[-86.40581141094978,67.8687868624865],[-86.545645627863,67.7939037468603],[-86.5494286312021,67.7799837085952],[-86.6276297536348,67.7544955049612]]],[[[-67.1217675440009,65.7505001073943],[-67.1658244735471,65.7430345446499],[-67.2123321139976,65.7566774780909],[-67.2074054393869,65.7686829448037],[-67.1859194488523,65.7779142580258],[-67.1367938435812,65.776663896242],[-67.1124802951582,65.7632348406633],[-67.1217675440009,65.7505001073943]]],[[[-108.176589503694,67.47044065647918],[-108.221222850702,67.483109171346],[-108.235235848692,67.5152449286301],[-108.224621175234,67.52736592275788],[-108.22823211863998,67.5529910856941],[-108.19020841288699,67.5802533041677],[-108.164127442888,67.5703176829799],[-108.118232992818,67.47989423606138],[-108.176589503694,67.47044065647918]]],[[[-97.9143852031932,67.9264407687173],[-97.87605705796639,67.913444020677],[-97.87061355549298,67.8855136396086],[-97.9407724799507,67.8789195242546],[-97.9800078246703,67.8965575445358],[-97.9837213083985,67.9151765206036],[-97.950907438228,67.9301207954921],[-97.9143852031932,67.9264407687173]]],[[[-67.6087388266705,65.785320399583],[-67.64132404827168,65.7662486220086],[-67.66458289135889,65.7654272868038],[-67.7025088663563,65.7716666206309],[-67.7178517762897,65.7858209226135],[-67.710550843195,65.7950930920858],[-67.6833987239039,65.8045943054177],[-67.6534169108666,65.8089755388119],[-67.6167457779972,65.8041012403311],[-67.6087388266705,65.785320399583]]],[[[-63.256923068015794,64.92588696679898],[-63.34483330480239,64.9420418661762],[-63.3744224132008,64.967631406441],[-63.365021322318995,64.9961633873026],[-63.33576501555109,65.0008930739734],[-63.2966040005589,64.9937150068618],[-63.2084967791952,64.9674229552845],[-63.193737814323995,64.9495626928644],[-63.2131234385494,64.932951024675],[-63.256923068015794,64.92588696679898]]],[[[-67.6557168845492,65.680674552933],[-67.69678621861908,65.6868531227402],[-67.70873607962258,65.6985186734191],[-67.6872261521705,65.7199725727833],[-67.6434552797378,65.7282046248351],[-67.5276994917981,65.725566508937],[-67.4601448363128,65.7103926431791],[-67.492085152489,65.6905278909578],[-67.6557168845492,65.680674552933]]],[[[-96.0531622990738,67.8248947218871],[-96.1250921551715,67.7996819159313],[-96.1969179058637,67.8043540636469],[-96.1942279870638,67.8158890017251],[-96.1332045271,67.8341815991808],[-96.1207025320174,67.8457749516144],[-96.0786107974854,67.8524198417539],[-96.052139010558,67.8436121636819],[-96.0531622990738,67.8248947218871]]],[[[-107.867158530985,67.3390619483225],[-107.920796216913,67.34891096561729],[-108.00116329700498,67.4615310038488],[-107.957970077636,67.4890048318183],[-107.912288666255,67.49279945094608],[-107.867002720833,67.4774594504619],[-107.831320731517,67.4183761667653],[-107.874541919533,67.3909351310678],[-107.84991087165798,67.3500369861342],[-107.867158530985,67.3390619483225]]],[[[-67.2178761190833,65.5299717087678],[-67.2616740559064,65.5564935874947],[-67.23560333233618,65.5821584200815],[-67.1919147220091,65.5902756871199],[-67.1612976740166,65.5855550545746],[-67.1539771975803,65.5695822877695],[-67.1888106782288,65.5353814539739],[-67.2178761190833,65.5299717087678]]],[[[-97.48861593646379,67.6803349430869],[-97.594379121209,67.6776349174811],[-97.61957811880059,67.686336910345],[-97.6112173787438,67.70525908576968],[-97.51959763474999,67.721636469591],[-97.4225916296063,67.7755103750725],[-97.37539253630229,67.7766759098354],[-97.3501868124378,67.7679395821143],[-97.3469824823132,67.7493153107469],[-97.38605218605599,67.7015987400104],[-97.4189061306926,67.6867571663287],[-97.48861593646379,67.6803349430869]]],[[[-107.58096820114599,67.2620028224737],[-107.615642200549,67.2473309177915],[-107.640830362394,67.2478791525919],[-107.670958073384,67.2580515743759],[-107.695010750302,67.28245037698488],[-107.715671856353,67.3001839266456],[-107.709955984957,67.31515821266458],[-107.68251387118099,67.3178405904882],[-107.645647818437,67.3096664323337],[-107.58096820114599,67.2620028224737]]],[[[-66.7306630879621,65.3828701953816],[-66.7564023081337,65.3767106409336],[-66.8012398054503,65.37627300428818],[-66.8123876097451,65.3887056401161],[-66.81764950663609,65.3989555603671],[-66.80101457397339,65.4089360683506],[-66.7620194735883,65.4115580440683],[-66.7257177921743,65.401782800757],[-66.7181624246748,65.3911304916169],[-66.7306630879621,65.3828701953816]]],[[[-107.389372841036,67.1113622091576],[-107.468231465661,67.10495150557149],[-107.509927351815,67.1158372446941],[-107.598106724191,67.1657909305842],[-107.611424616594,67.1885256184518],[-107.594160888171,67.1994738245573],[-107.54629678703,67.1986264233832],[-107.38776913576,67.1495902118277],[-107.372062098405,67.12228823972879],[-107.389372841036,67.1113622091576]]],[[[-66.98719468583079,65.27150377914408],[-67.0174534013261,65.2762456662073],[-67.0520838842627,65.3113442925479],[-67.0217812119648,65.3412402086674],[-66.9712443841797,65.3333309677206],[-66.932355464673,65.30248433481198],[-66.9439556627585,65.2795594356282],[-66.98719468583079,65.27150377914408]]],[[[-107.70645242304198,67.1518321686198],[-107.690252931921,67.1264089848634],[-107.70733129413199,67.1090930686158],[-107.709679564107,67.0975522285673],[-107.704710482701,67.0832101543698],[-107.709360638576,67.07387685432239],[-107.737213969435,67.0662259262822],[-107.77894047013199,67.0604318825318],[-107.791814520453,67.0694746511963],[-107.801617727174,67.0976991766855],[-107.781942548291,67.11900368451529],[-107.777153412134,67.1326152193803],[-107.769575197696,67.14310636464299],[-107.756059198188,67.1535406996848],[-107.729190612553,67.156381786743],[-107.70645242304198,67.1518321686198]]],[[[-95.34988602208409,67.2937364537593],[-95.3460437769828,67.2464478043947],[-95.37452716729518,67.2361655849803],[-95.4222128271092,67.2347835379152],[-95.4510195562508,67.2449414011117],[-95.4608227331996,67.2589772042074],[-95.4514570272149,67.26922726083808],[-95.3977029542067,67.2936392847231],[-95.34988602208409,67.2937364537593]]],[[[-65.1008472648913,64.6132870234117],[-65.1367813706797,64.5939261247765],[-65.174020768495,64.5907713142426],[-65.2084819507072,64.587088185658],[-65.2377041619053,64.6027227345767],[-65.2186464317664,64.62235822329289],[-65.1758654428637,64.6273921838363],[-65.1008472648913,64.6132870234117]]],[[[-65.6320405468682,64.559494223505],[-65.65797237771879,64.578797442711],[-65.6227895560671,64.6126245092216],[-65.4505849546133,64.6779468872042],[-65.369470187839,64.74382095303578],[-65.3265894277383,64.7514596002033],[-65.25788064316178,64.7397202935993],[-65.21002344425038,64.6866533228796],[-65.2360520726718,64.6512453350356],[-65.3117336330138,64.6343278435208],[-65.4077796912702,64.6308261694204],[-65.47793682222479,64.6079359739585],[-65.4956232073629,64.5910428475582],[-65.6320405468682,64.559494223505]]],[[[-64.8299824771374,64.3612337273501],[-64.8641827218891,64.3722357029941],[-64.9103202292807,64.4152508656585],[-64.8685586794564,64.4328814409235],[-64.8298042591959,64.4260820948552],[-64.7979268803842,64.3805454527523],[-64.8299824771374,64.3612337273501]]],[[[-64.5057949429613,64.2653116663818],[-64.5360549478304,64.2421849191086],[-64.5851868686149,64.2371828273021],[-64.6124592641763,64.2395631341518],[-64.6369947072799,64.247225366189],[-64.61511236173578,64.26334489623099],[-64.5946086888744,64.2695525469531],[-64.5713702177848,64.27522645259599],[-64.5057949429613,64.2653116663818]]],[[[-64.7080672146497,64.2529057960898],[-64.7488611448901,64.2426807977445],[-64.7761565545876,64.24794147383689],[-64.7980195009,64.2579599796764],[-64.8035107139855,64.2677315060246],[-64.7598482845714,64.282575358385],[-64.7229672787178,64.2798269537112],[-64.69838389084529,64.2692709322439],[-64.7080672146497,64.2529057960898]]],[[[-65.0474032698079,64.2747031815366],[-65.1094326409616,64.3353530018375],[-65.0517751053083,64.3900939451376],[-65.0130347377122,64.38333853872389],[-64.9965660285412,64.3555328977506],[-64.9236751645829,64.3377817112465],[-64.9132599323295,64.3259806964471],[-64.954047420467,64.2982293427967],[-65.0474032698079,64.2747031815366]]],[[[-64.82013971035128,64.2152436567148],[-64.85226522970409,64.1957872954589],[-64.8904468261955,64.2031254832967],[-64.9110072897872,64.22013534681028],[-64.94534819470368,64.2513862656721],[-64.9373144305704,64.2701680032684],[-64.89634472111848,64.2681280852208],[-64.8512572574326,64.2609314924521],[-64.82013971035128,64.2152436567148]]],[[[-64.52841929388978,64.124378686422],[-64.5720093319381,64.1124795265881],[-64.5937231509611,64.11961363379079],[-64.6072898896661,64.1280692856198],[-64.6194949250672,64.14352276698149],[-64.6140349755076,64.1540914698097],[-64.58681555774868,64.1604316838513],[-64.53653618806759,64.1491891345263],[-64.52841929388978,64.124378686422]]],[[[-65.2652105220407,64.2628250139545],[-65.2239310611808,64.2805519851018],[-65.1659859385663,64.27048230107998],[-65.134517596386,64.2351192778204],[-65.1565034170259,64.2140564050878],[-65.1994423570894,64.216559096537],[-65.2652105220407,64.2628250139545]]],[[[-64.9480667911402,64.1053712669604],[-64.9859227634304,64.092336033445],[-65.01040167323839,64.097031954434],[-65.0430908337594,64.1061953618164],[-65.0595440316674,64.1180416443164],[-65.0488115329723,64.1275843626126],[-65.0353808611432,64.1395147583517],[-64.97418060758109,64.1350415587733],[-64.9480667911402,64.1053712669604]]],[[[-64.0479934200893,63.8657305369133],[-64.0380329800061,63.853890953509996],[-64.0783616985781,63.816283569138996],[-64.1295940967814,63.8106945017478],[-64.2219662467086,63.87261409088251],[-64.19461390248,63.8876137292945],[-64.0479934200893,63.8657305369133]]],[[[-64.2425812351461,63.82139585400719],[-64.2125205853555,63.7859093150626],[-64.2441900280664,63.7667207776649],[-64.2725433098805,63.771906313695304],[-64.3266260756288,63.81674822768989],[-64.2949452431418,63.835953781940496],[-64.2425812351461,63.82139585400719]]],[[[-83.0370828756952,66.1999765995966],[-83.1473033281249,66.2060368752138],[-83.24887648033459,66.2350141895832],[-83.2843574488929,66.2603852080893],[-83.26520898021688,66.3109664270431],[-83.2081068145709,66.3125779878482],[-83.1598132612113,66.2911861273382],[-82.9900721253992,66.2630854820521],[-82.954868159074,66.237657477172],[-82.9620329735309,66.2192813778141],[-83.0370828756952,66.1999765995966]]],[[[-64.0682774344947,63.7093914685462],[-64.1203834210111,63.7239970961513],[-64.1169881410956,63.748372877648904],[-63.9873852130312,63.774489626493896],[-63.930777789163,63.7640126001505],[-63.9343329756003,63.73964594167099],[-63.9993539618621,63.7316701063119],[-64.0682774344947,63.7093914685462]]],[[[-64.400595815569,63.725354566136],[-64.4478318065394,63.7339466470699],[-64.5501403306731,63.7973965483557],[-64.6354505600679,63.8127823637724],[-64.6675788781972,63.8036054044849],[-64.7471039395417,63.80292962605439],[-64.78068582487388,63.813927771971],[-64.8011849471372,63.83752530574551],[-64.76542247108999,63.8610330506272],[-64.6813458679805,63.865911134611196],[-64.6203545849286,63.9347719455042],[-64.5652441792535,63.9548123965212],[-64.4890909547366,63.941093144881094],[-64.4428379577617,63.87781018361099],[-64.46370634861,63.836656177466494],[-64.346375426765,63.7554170780105],[-64.3590260051636,63.7327547909518],[-64.400595815569,63.725354566136]]],[[[-63.8714773456311,63.6439708833505],[-63.8861601264192,63.6261472493718],[-63.9063253437274,63.6200273115787],[-63.93294034706939,63.62541078248099],[-63.94608763559239,63.636809918168694],[-63.9498890862167,63.64777731727649],[-63.942695816888104,63.67401140264649],[-63.919771512797894,63.6824984195349],[-63.8784827284161,63.6726948892086],[-63.8714773456311,63.6439708833505]]],[[[-84.1096157735658,66.1871160312431],[-84.1355170088446,66.1708014952269],[-84.1662751971424,66.1606993385935],[-84.2209002062761,66.1677511532681],[-84.2517371879482,66.1788688924733],[-84.249754677555,66.1944373899584],[-84.2239854896149,66.2085520672646],[-84.1964741962054,66.2160974144473],[-84.1582155183519,66.2174400391231],[-84.1316080575238,66.2121050559092],[-84.1096157735658,66.1871160312431]]],[[[-83.5072059284161,66.1193452070085],[-83.54556767038389,66.08617918381519],[-83.5690194398193,66.0830912746371],[-83.6104373688156,66.08948455712229],[-83.6264691510832,66.1034622373253],[-83.6292132574799,66.1175029993751],[-83.6137587928645,66.12758966749999],[-83.5922245530216,66.1363544014401],[-83.53330532807729,66.13436406801],[-83.5072059284161,66.1193452070085]]],[[[-64.1299482580634,63.6407788701905],[-64.1028032131798,63.6557625971988],[-64.0369705530234,63.643594259819594],[-64.0067659256271,63.5979871529015],[-64.0417228162172,63.5544755730985],[-64.0880719683268,63.5530703986626],[-64.1029477653131,63.57081673777619],[-64.0907434885439,63.603546629113495],[-64.1299482580634,63.6407788701905]]],[[[-84.4842848003169,66.1189664658853],[-84.5302270812857,66.1080319024394],[-84.5568096144508,66.10776868206],[-84.59668993630548,66.1129045872705],[-84.6114384514338,66.1202316279538],[-84.6308816354351,66.1324464260338],[-84.6180048913014,66.1593537454082],[-84.5902964228732,66.1623262600528],[-84.56330005766009,66.16349272239418],[-84.5435042078264,66.15770592376228],[-84.4842848003169,66.1189664658853]]],[[[-83.40906281578428,66.0031066129222],[-83.4330856478138,65.9854301043516],[-83.4533638118784,65.9793779979245],[-83.5006256134213,65.9871172171983],[-83.5241479095551,65.9988297088137],[-83.5365574994117,66.0208985400442],[-83.50844002365469,66.0347645004768],[-83.43068508373679,66.0259381947301],[-83.40906281578428,66.0031066129222]]],[[[-64.1319602758932,63.3414098603562],[-64.1785522909316,63.350065528848994],[-64.2214040179726,63.37298167155569],[-64.3553847842527,63.5224408102492],[-64.366662767511,63.5544503575842],[-64.3472284227167,63.6157738694649],[-64.3622795636492,63.63350148818459],[-64.3270648972803,63.6669990210598],[-64.2949839491872,63.676108773851595],[-64.24787766910428,63.6674727927209],[-64.2278906674437,63.643821455884996],[-64.2476138623216,63.58251668461279],[-64.1486807333062,63.4743598328457],[-64.16071910090179,63.441627473831595],[-64.1359417258828,63.412062400961],[-64.0645809830975,63.373821294419],[-64.0865065716629,63.352927159315],[-64.1319602758932,63.3414098603562]]],[[[-83.2477847609772,65.8503697377336],[-83.2597214035407,65.8182035184517],[-83.35462224520228,65.80922514202749],[-83.4009113507948,65.798464483589],[-83.4372681194956,65.7953457471677],[-83.4679792316408,65.80016241858],[-83.49732358670198,65.8131951051141],[-83.5015495929593,65.8236371807136],[-83.4759386746987,65.8422637424456],[-83.4350386171901,65.8506372556665],[-83.3205696885729,65.8637081855318],[-83.2661389586173,65.8607474179508],[-83.2477847609772,65.8503697377336]]],[[[-83.35222257077139,65.6264008443168],[-83.5242678039891,65.6684687820745],[-83.7346207425213,65.6655105491383],[-83.7638616828812,65.6763985952917],[-83.7385574594304,65.717231464429],[-83.7646362127211,65.7373191565077],[-83.8622566244622,65.7423515171747],[-83.9754852653876,65.7340726056588],[-84.0173120868996,65.7408657404394],[-84.0544762081639,65.7614603833434],[-84.0248115383066,65.8161502803869],[-84.0696999635196,65.9120391668997],[-84.1868755809041,65.9927451015782],[-84.2872122211648,66.0257243576946],[-84.3627566173408,66.0668129695015],[-84.3348557718602,66.1169763576454],[-84.2971857811471,66.1292138158708],[-84.1556126269353,66.1176515645747],[-83.95643589516338,66.0468765109376],[-83.66748069430008,65.9805625671846],[-83.61672602793179,65.93573926902869],[-83.6288803698565,65.8707729228008],[-83.658864950391,65.848916161142],[-83.6751976257833,65.8029228480291],[-83.6323129418095,65.7678836103965],[-83.5395885783458,65.7489265418831],[-83.3285520519829,65.7516434554047],[-83.1442929772787,65.7415273491823],[-83.1095653400151,65.7161549921119],[-83.1255393861139,65.7029787665246],[-83.257458165774,65.6446484336701],[-83.35222257077139,65.6264008443168]]],[[[-67.6432773287481,63.6133329246264],[-67.6506022163077,63.5927561041855],[-67.6786236369177,63.58315348909189],[-67.7097569775116,63.5844585761405],[-67.7357264442608,63.6004024108512],[-67.7535792557744,63.612848758335],[-67.7188026752132,63.631653269508796],[-67.683664474817,63.6296568394322],[-67.6432773287481,63.6133329246264]]],[[[-84.9160784165017,66.0456410005232],[-84.818414911534,65.9663992768548],[-84.7489520614255,65.8696805512739],[-84.5498821234134,65.6966955765732],[-84.5148760624853,65.6342325230573],[-84.526641664744,65.59737752261759],[-84.6362577706233,65.5277548311379],[-84.70235626042749,65.5261783690798],[-84.75054386483839,65.54711856053869],[-84.813618987034,65.6622223948287],[-84.9688052874487,65.7300341304444],[-85.1241016495052,65.9472791766496],[-85.1031748200401,66.0165000750928],[-85.0770029252137,66.0293814584718],[-85.00400811096628,66.04955187008],[-84.9160784165017,66.0456410005232]]],[[[-74.2701914638983,64.5254375588439],[-74.2625342470089,64.5134866830018],[-74.2706361592096,64.5027851030249],[-74.3166990760758,64.4968898985553],[-74.3727756128696,64.5052742167493],[-74.39639865678089,64.5212741134532],[-74.3684789283725,64.538599037289],[-74.2701914638983,64.5254375588439]]],[[[-68.6969095344067,63.619233956865095],[-68.7412567776895,63.63087290059039],[-68.7588891267332,63.64820302314959],[-68.7497608824071,63.6712341321396],[-68.7192163984989,63.6812409178845],[-68.6480075081543,63.6752769054097],[-68.6245731045883,63.6521534730779],[-68.6969095344067,63.619233956865095]]],[[[-67.9606779167212,63.467772211343494],[-67.991914409669,63.465859151355794],[-68.0273856747912,63.47201116405609],[-68.0579854174492,63.485584052644896],[-68.0577285795073,63.507264363515695],[-68.0302672455799,63.511824403425194],[-67.98119488609419,63.50539102428569],[-67.959467037647,63.485061112780606],[-67.9606779167212,63.467772211343494]]],[[[-74.36536408965239,64.4156558024816],[-74.3997698932215,64.429078256312],[-74.3847339415879,64.4513156489914],[-74.3584781974692,64.4579445797984],[-74.3180184476945,64.4534066159391],[-74.303839059769,64.4422409469162],[-74.315917412795,64.4244566547728],[-74.36536408965239,64.4156558024816]]],[[[-68.363950645775,60.2080276129127],[-68.3953251430295,60.21815952197309],[-68.42226415648778,60.2469312156761],[-68.4274198139005,60.29143498662369],[-68.3125629843366,60.46620322567319],[-68.2751306215437,60.489036934183],[-68.2082423141159,60.574898769943395],[-68.1362535104639,60.61620881079381],[-68.0877387203993,60.62745719011329],[-67.9827249628655,60.609670779532195],[-67.8943078407451,60.545991856671],[-67.7823989037353,60.512241258781195],[-67.7664661364218,60.49490991612469],[-67.8627289024254,60.3606800366383],[-67.9002830657952,60.3379579679994],[-68.0706164578403,60.3087670060495],[-68.1725255749246,60.253270412234],[-68.2695420440736,60.21633605119359],[-68.363950645775,60.2080276129127]]],[[[-71.32813680978852,71.43070488850395],[-71.14101044372978,71.3225097464426],[-71.1922637505957,71.2390146871503],[-71.29042686377535,71.18855347656519],[-71.3676987802457,71.1488314840262],[-71.38111926881619,71.13683001856765],[-71.4614798668341,71.0649663948051],[-71.5545225084188,71.0598603775416],[-71.824241879321,71.0925433643648],[-71.9400287421305,71.0797534628222],[-72.0128932632325,71.0527423474726],[-72.1460809905063,70.9287001554443],[-72.2981969670374,70.8802521851118],[-72.5098070885679,70.8426018780083],[-72.5282743144778,70.82484396353348],[-72.5032252444135,70.807646049016],[-72.4338318560129,70.8056075788324],[-72.2800541079437,70.829374409768],[-72.2282383699787,70.8241381725571],[-72.1998527258853,70.7967316301327],[-72.2604491650861,70.7391115089387],[-72.5351115382102,70.6320566681842],[-72.49327182204348,70.6107121906347],[-72.3805235067376,70.62382533143598],[-72.3190016524053,70.64209405751548],[-72.11634569729,70.7538892167746],[-71.8437992891451,70.7946505313911],[-71.4392951811458,70.8754735478412],[-71.24104650264523,70.87177466427406],[-71.2128965585558,70.8712494483362],[-71.1464602316239,70.8789655318659],[-71.1408572008858,70.92275222017489],[-71.1840225045879,70.9618636390643],[-71.17374146914116,70.96789056477868],[-71.0985317517582,71.01197983788889],[-70.6994687539184,71.092705017069],[-70.647384759434,71.0870688684072],[-70.5050676220379,70.9577770485115],[-70.6745280417895,70.8230578615256],[-70.67494807520023,70.81212881539165],[-70.67604092464738,70.7836934535365],[-70.7209476662447,70.7441517517326],[-70.80652874838148,70.72494639380771],[-70.91338247548778,70.7009672149583],[-71.2094792702541,70.6146471602188],[-71.319806794816,70.592005166767],[-71.4362794120383,70.5896635649735],[-71.5239406338063,70.5743755896323],[-71.6817082012164,70.4534395415129],[-71.7558978231812,70.4367051986612],[-71.87608358864829,70.4296859772607],[-71.89000680292419,70.4164204334837],[-71.8739118112849,70.4049210902878],[-71.7598464538507,70.3929293370571],[-71.743838381009,70.3814188858327],[-71.77304525581698,70.340317992309],[-71.7238291086647,70.3203827401153],[-71.6892792164947,70.3265390311484],[-71.6538803589149,70.3866317755303],[-71.4950266191285,70.5221264178223],[-71.3454516565349,70.5553713663359],[-71.2054269853052,70.5403321637837],[-71.161135835633,70.5158505544988],[-71.1890148726799,70.4253070183022],[-71.540089061541,70.0699610741816],[-71.5054967825963,70.0367590958654],[-71.454277469442,70.0459354130555],[-71.3922387005829,70.0784937252236],[-71.3409446831803,70.1269730513988],[-71.2657677218819,70.2368015054046],[-71.0782261084149,70.4231137645802],[-71.0166402503968,70.5050911117921],[-71.0043250483663,70.5678290714972],[-70.9555349979446,70.6118287903468],[-70.8072908725462,70.6548550939586],[-70.76444545050256,70.66462700018128],[-70.2818202951773,70.7747010182115],[-70.051279350608,70.8479182320167],[-69.9792895590144,70.859632181055],[-69.8586422166619,70.8509255465137],[-69.80775325562489,70.820322282526],[-69.8802749835607,70.75913161098408],[-69.9879114641596,70.7168332252401],[-70.1434494456462,70.6700421813285],[-70.4023375995452,70.6199508402983],[-70.4523227039199,70.5760977444768],[-70.40841505352519,70.5266955694155],[-70.3677470862839,70.5122414655588],[-70.3247985609079,70.5123516409086],[-70.3047978710211,70.529880551177],[-70.3508011360459,70.56472898181418],[-70.2979857143188,70.5983637784213],[-69.9653540197256,70.6498373175413],[-69.8068102799894,70.7110575518869],[-69.6356430901608,70.7211535821057],[-69.5893315676508,70.7356697186329],[-69.5422735979878,70.7749346862155],[-69.44695871861879,70.79371046199819],[-69.2908014069695,70.7904324117575],[-69.1305288843436,70.7666326041526],[-69.08483177388074,70.74845631699756],[-68.9861465977523,70.7092037235384],[-68.7562497326671,70.6572330496608],[-68.3096334533275,70.6078049482484],[-68.2937107615088,70.5858496067778],[-68.4271414936055,70.5023811938125],[-68.4184299100571,70.4513805436564],[-68.4649465366118,70.40221423365969],[-68.5361842232742,70.39103264320379],[-68.5932175169017,70.4030249874721],[-68.6146932165503,70.4206163960033],[-68.5916840706309,70.4626862222376],[-68.6489271741898,70.4746688754397],[-68.7290533390255,70.4445475346314],[-68.8491728524629,70.3694711290569],[-69.0326250003826,70.3120438304814],[-69.4001694470056,70.241794541058],[-69.6900353116124,70.2115898570363],[-69.8521444614489,70.1810421419457],[-70.0481433750593,70.0702709078904],[-70.0159356646882,70.0615806100353],[-69.9441930204105,70.0631073823618],[-69.9293458566396,70.0514792185047],[-69.9540410841529,70.02963197176719],[-70.1192116089127,69.9944888047888],[-70.2688508223557,69.9476018768696],[-70.38087917407,69.89635388221909],[-70.4117890737374,69.8555110308853],[-70.3140533795477,69.8689042710329],[-70.1384865786745,69.95225353887498],[-69.842998522637,69.9918711381848],[-69.7531913300611,70.1199279411928],[-69.6286196457994,70.1547952781598],[-69.3467500200399,70.1907534561039],[-68.9398830266663,70.2112675870669],[-68.8342759647663,70.2282513093582],[-68.6765333517827,70.2196159625475],[-68.6852555803572,70.1751130158311],[-68.73228524079738,70.1360879744118],[-68.80051114159268,70.1146131743435],[-68.8749782266137,70.0640542616357],[-69.02483580470029,70.0326725063755],[-69.1522234973792,69.9240252085528],[-69.3602266486249,69.8649258700805],[-69.4807552477888,69.8447689572979],[-69.6106484751407,69.8405440385219],[-69.7357081552322,69.81586817317279],[-69.8968878198256,69.6965547788722],[-69.877406332948,69.6893000516048],[-69.8263301418522,69.6980530100886],[-69.7237818873167,69.7649644712672],[-69.6454848309095,69.7853007187678],[-69.5426242103825,69.8026706867765],[-69.4350921782161,69.7996190587859],[-69.3247853387384,69.8110444860913],[-69.0094724263414,69.9264429919663],[-68.71924990150909,69.9702093055525],[-68.61020154010849,70.0612279273991],[-68.5349078683027,70.0767733139411],[-68.48349698430587,70.07939669292371],[-68.3085120725735,70.08832576988219],[-68.2275803917289,70.1080772310961],[-68.2043133879969,70.1500752849463],[-68.3290328101463,70.2106601962399],[-68.2526429210517,70.2610081001617],[-68.2666947501089,70.272755157958],[-68.21842943259699,70.311666104031],[-68.1116921959007,70.32825986629278],[-68.0249122858305,70.3173291817399],[-67.9351795822486,70.2859656321933],[-67.5366016554077,70.0695204288361],[-67.53442997457736,70.06785458822954],[-67.4500038051362,70.0030934413118],[-67.2080809742977,69.8809028776039],[-67.1616002797992,69.8395957221495],[-67.1622836854543,69.7945415849236],[-67.2297032836207,69.7634367049797],[-67.3168526616004,69.7499972339818],[-67.5029090758122,69.769643342949],[-67.6733004479839,69.8020326643692],[-67.83435054062629,69.8080225865657],[-68.0080973137327,69.7805606554238],[-68.12973408502418,69.7263614281376],[-68.2868944377315,69.6767171283721],[-68.395324356473,69.6556869946113],[-68.7289217403822,69.64314720757288],[-68.9322543306082,69.5990258154284],[-69.272867992316,69.5419753445113],[-69.3309253385098,69.5391957540781],[-69.5601734113872,69.5671417831133],[-69.666591954314,69.5701119294976],[-69.8842206511079,69.5467959769024],[-69.9034590098021,69.5293340484178],[-69.8889188556612,69.5177153784378],[-69.6933679228159,69.53377332210579],[-69.3943094515919,69.5073363450028],[-69.2832895834976,69.5085724020136],[-68.826851579797,69.57095559203918],[-68.76145676416428,69.5745863120173],[-68.6350434476853,69.581604778989],[-68.295391848876,69.5532565119067],[-68.115648531382,69.530064472063],[-67.92510289238834,69.49247204735063],[-67.8921235619312,69.4859656113922],[-67.7176988143534,69.49296900608958],[-67.4413068686623,69.5262556790017],[-67.3300182976842,69.5263763705641],[-67.1936762567139,69.5130345378288],[-67.0107248532945,69.4481102401623],[-66.8502584978542,69.4211200591839],[-66.7653838656356,69.3893470638873],[-66.6894858949146,69.3286300618252],[-66.6672947542184,69.2803557677484],[-66.7305376683661,69.2188943898099],[-66.7635979347622,69.2034278163859],[-66.82643793160379,69.1971106315627],[-67.0546534484486,69.2236007463375],[-67.1409555512684,69.22040598141889],[-67.2991190647378,69.1919399328465],[-67.6021802368999,69.2128871169774],[-67.8262110067011,69.2427737000901],[-67.9913457093403,69.2994873231438],[-68.11600015626199,69.31369524467534],[-68.2930151095157,69.3338711359319],[-68.5930498835262,69.3227493487053],[-68.88677100477946,69.34699968214528],[-68.9295967117318,69.3505354771503],[-69.03779293383379,69.3393141928571],[-69.2326849094891,69.2992059729506],[-69.2451288921066,69.2759913806524],[-69.180721576207,69.2729243538923],[-68.9403669595938,69.317164545512],[-68.90495725240505,69.31397113896608],[-68.668689887472,69.2926634860747],[-68.34360746741238,69.2906580313066],[-68.1590797563134,69.2616844223449],[-68.1607836351504,69.23700882880088],[-68.3549079475864,69.2224773771183],[-68.7164962272188,69.2391701950061],[-68.94700484703442,69.23760734895347],[-68.9765080795654,69.2374073173428],[-68.9961322028187,69.2200481569927],[-68.9822067292393,69.2083785839894],[-68.9639662692075,69.20680324487675],[-68.8587659697037,69.19771761073258],[-68.71068814061309,69.2086414647648],[-68.65645229921,69.196740243435],[-68.6980046371579,69.1722693890428],[-68.841851619492,69.14100371981489],[-68.97270178223,69.1328190563102],[-68.9506353777431,69.0804572248497],[-69.0158820409413,69.03422594212118],[-68.9951192081501,69.0167275716062],[-68.950124076266,69.0209191988085],[-68.7621291047659,69.11595099081299],[-68.7188242454594,69.1302615045161],[-68.61544118110739,69.14090188378161],[-68.6114847003565,69.1413090922157],[-68.5481448901435,69.17289271446498],[-68.4591383518655,69.1912231145399],[-68.2416022145083,69.1679312405271],[-67.9827331811603,69.0990252720718],[-67.8536495689557,69.0818699067832],[-67.83300331270313,69.06935324872853],[-67.82365928053805,69.06130675572537],[-67.8372676286772,69.0497766415323],[-67.9262148287265,69.0317378798933],[-68.125420708537,69.0232898023026],[-68.3866777949682,69.042645282694],[-68.4602749289148,69.0373170564288],[-68.5001574744176,69.0201433632108],[-68.31124193324904,68.98150513745674],[-68.0586289526482,68.9298391002822],[-68.0303642407643,68.8962165517835],[-68.06198633172679,68.8805210202929],[-68.1651021483672,68.8842610581531],[-68.328328514595,68.9057900360469],[-68.3664817688321,68.8958940464363],[-68.3561687459709,68.8696977029892],[-68.231054307862,68.8566723956032],[-68.0943194571819,68.8460362203063],[-67.9636512701314,68.837206619162],[-67.888268954279,68.8374592838448],[-67.824001247896,68.8310728798657],[-67.7971625172719,68.8126630555901],[-67.837016928719,68.8030821951584],[-67.9694684306821,68.8081705168929],[-68.143138661311,68.820203488508],[-68.2901310074236,68.829036376714],[-68.41089590980226,68.8368759779896],[-68.4819537275975,68.8414887831015],[-68.5150365237471,68.83588463285739],[-68.5608577245758,68.807128031813],[-68.6617672813842,68.8004232753212],[-69.1530700006523,68.86336677090159],[-69.2220091499671,68.8721989447733],[-69.3090536667075,68.8535051183489],[-69.3422133745929,68.8230741083335],[-69.3283016734002,68.8114381625637],[-69.24656214626478,68.8011191871782],[-69.18770413129505,68.80046677619364],[-69.0758591819405,68.7992270321492],[-68.8778203610082,68.773850456394],[-68.70629929373439,68.736792637175],[-68.4518874420612,68.7382656661198],[-68.106374623707,68.7024018455805],[-68.089762638954,68.67034876382348],[-68.1045368781535,68.6574120217352],[-68.1538883406987,68.6491002228506],[-68.2542394347215,68.642606997851],[-68.4815517011685,68.6528396529041],[-68.6839429354122,68.64961627918778],[-68.8100366673534,68.63134818818929],[-68.829146023788,68.6140177166484],[-68.8108104020882,68.6066837336192],[-68.666557625254,68.6176082131823],[-68.5001673246176,68.6007233358295],[-68.5079568436542,68.5819094795786],[-68.5760993420781,68.57413972477148],[-68.6397337223762,68.57155075570269],[-68.7133999483932,68.5739467010774],[-68.7363343910288,68.5639113350468],[-68.7276727776608,68.54831439141],[-68.6508329573588,68.537249183879],[-68.585543421818,68.5370497185231],[-68.400852132466,68.5451390524513],[-68.2565500115045,68.5584839774548],[-68.10015484686397,68.53753170102964],[-68.0957243299334,68.53693814421699],[-67.9793979460108,68.54610860598449],[-67.8991089523687,68.5352351148126],[-67.8795112657156,68.5176502651457],[-67.9629762246218,68.444438744469],[-67.9319681862131,68.4253108115524],[-67.8568854862945,68.4449228770575],[-67.7433650608154,68.5438925084676],[-67.6726798329956,68.5591265667971],[-67.5581250263466,68.5433977916326],[-67.5323321208414,68.5199072795217],[-67.6268153959808,68.4382706338876],[-67.6139206922329,68.42653362630129],[-67.5534580100599,68.4331271028237],[-67.3952122968376,68.5009263681389],[-67.3079724235129,68.5187239121073],[-67.2394699688551,68.50916683786438],[-67.2254188678319,68.48723426499329],[-67.2506005456171,68.46579991617469],[-67.22014248453699,68.4465620561004],[-67.1051522196908,68.4653580027979],[-67.0202777950291,68.5033556020902],[-66.8950112591658,68.4856234861858],[-66.7630267388511,68.5068647026731],[-66.7061356033159,68.4987368510562],[-66.7204491770634,68.4757539269638],[-66.7687954829416,68.45764304957659],[-66.95366765487769,68.4139623994526],[-67.1403874163264,68.3904238468991],[-67.3599310244295,68.4062458458981],[-67.7776239672827,68.3296102726193],[-67.7923046619138,68.3167043593577],[-67.7680300765089,68.3034177150291],[-67.6379794201219,68.3252894576261],[-67.56989847715,68.3158597217661],[-67.5570780536368,68.3041218569433],[-67.63232395394138,68.2498407848473],[-67.6145998025747,68.2424041845191],[-67.496060981196,68.2657490055648],[-67.2999191005612,68.333017016545],[-67.2182666872773,68.346489148537],[-67.145262700541,68.3411911208157],[-67.1363665161277,68.3149761284996],[-67.1613978342749,68.2935601185673],[-67.3399666567158,68.2189802154844],[-67.2997928825694,68.2083417765295],[-67.1973637526358,68.2287921525239],[-67.0973070199788,68.2695138232664],[-67.0672319060155,68.2952019558335],[-67.0182502685973,68.30322610125158],[-66.9391617091887,68.2919638028135],[-66.91787283518396,68.2799654425207],[-66.867880712863,68.2517899976722],[-66.8983321425102,68.1812074030667],[-66.9546513264242,68.1443310427057],[-66.9023325763982,68.1218394361696],[-66.8887147424155,68.0999025326664],[-66.9783933443667,68.0678555899743],[-67.0131705430492,68.0379090973841],[-67.0007310518119,68.0261444227732],[-66.9249751542534,68.0352150649575],[-66.8453535594755,68.058688854746],[-66.7779084642752,68.0939090744687],[-66.716930015371,68.0900754890389],[-66.70461752973469,68.0782895760057],[-66.7748014337191,68.0185047926212],[-66.7924398648524,67.9810962173918],[-66.7628420615282,67.9618118970219],[-66.7144645625488,67.9697599375632],[-66.65714564475358,67.9963940884982],[-66.5917854775633,68.0518617066225],[-66.59213075334078,68.1069382684079],[-66.5516194428341,68.14106221750279],[-66.508902281016,68.15485269909439],[-66.3857417368907,68.1368195661733],[-66.3757126679717,68.0902677882525],[-66.2813163127719,68.0813578015219],[-66.263171474411,68.0636424458735],[-66.3577914786115,67.9624317958864],[-66.4193834485998,67.9214769694186],[-66.6620779438257,67.8921513946751],[-66.6919603146437,67.8665437364471],[-66.6736326847759,67.8488728636138],[-66.6404032565561,67.8439993030962],[-66.5750733806096,67.844396945903],[-66.50691661611769,67.83246153905084],[-66.3920861338961,67.8123527716444],[-66.34388806507438,67.8202057762851],[-66.314531284411,67.9109590737753],[-66.2689639340144,67.9492679057773],[-66.1631468797504,67.978019207334],[-66.0784365959585,68.0253420934909],[-66.0474136196727,68.0250747612648],[-66.0576034278018,68.0027689734303],[-66.0444721468138,67.9694639387496],[-65.9876796980749,67.957766330348],[-65.9513778395231,67.940572684015],[-65.9681695465458,67.8842145547251],[-66.08482796280589,67.7213183795581],[-66.0753069398577,67.674788308837],[-66.0296882504268,67.6478449113133],[-65.96826320845,67.6886502284011],[-65.9733596059763,67.7495867674626],[-65.93271439062389,67.783551571749],[-65.9105012346762,67.8454054319744],[-65.80714671967148,67.9201106821329],[-65.8042722728388,67.9548295192383],[-65.700709255133,68.0396338394237],[-65.6680995057771,68.0447426888708],[-65.5734551447213,68.02531836133319],[-65.4912610280293,68.0278619042674],[-65.4515732592311,68.0066873872286],[-65.4549908450666,67.97198008196848],[-65.5764217497508,67.8196093701383],[-65.5743949606447,67.7891409474717],[-65.5394533648153,67.7536061251245],[-65.4672408049624,67.72737714777],[-65.3966333781153,67.63597158099599],[-65.3530147627871,67.6291772631922],[-65.3059961641289,67.6570595273858],[-65.31347840149328,67.6934483536341],[-65.4891226616253,67.8162393757393],[-65.474843044758,67.8492470120777],[-65.3731298996289,67.93178873505519],[-65.32843640673792,67.95427900815532],[-65.2309393275859,67.982771508264],[-65.1113482686949,68.0045504210538],[-65.0099463892535,68.074548192678],[-64.9389415128561,68.0887238531144],[-64.7115084744356,68.0277640408596],[-64.6945409023032,68.00991521545699],[-64.7106488729255,67.9972938952938],[-64.8366186139352,67.9918832954927],[-64.9020560390418,67.9819600476087],[-64.9343659123017,67.966831269175],[-64.9975925789845,67.9060903619526],[-64.9678275360997,67.8459259411004],[-64.9828027415644,67.8129701336333],[-65.0353542347451,67.7708072207745],[-65.1470675010177,67.7228266389944],[-65.1731056407134,67.7017206518112],[-65.15024210811168,67.6779908346889],[-65.1071050638619,67.6812904945709],[-65.0230641313871,67.7386245480508],[-64.8574473425937,67.8083416691127],[-64.77623292655609,67.8207264192789],[-64.7321355054095,67.8036258957654],[-64.832974428197,67.73380469221],[-64.789329880998,67.7268752253694],[-64.7298550234946,67.7325566138431],[-64.6815589264845,67.7501113268353],[-64.559060011915,67.8468043257991],[-64.4556544496633,67.8555461115619],[-64.335389150635,67.83620338694],[-64.2259896474688,67.7982527802059],[-64.2201535965256,67.7618434032285],[-64.2579386748635,67.7426520399371],[-64.425650810088,67.7141116707898],[-64.4469843749105,67.6973193984606],[-64.435898801378,67.685416336016],[-64.1709426092697,67.72850827911958],[-64.1166197708172,67.7196475658815],[-64.1056146932037,67.69757658721498],[-64.1323564632309,67.6563430594994],[-64.1050695920765,67.6265419517116],[-63.9914677042563,67.59266914384028],[-63.9752212917974,67.5747789318475],[-63.9912518707417,67.54194082825698],[-64.0769339447131,67.4851338251022],[-64.0606688771762,67.4672562045745],[-63.9156620708186,67.4483166475834],[-63.872679173798495,67.4006094458786],[-63.9367552463105,67.3605923012324],[-63.948718451464316,67.35905519403897],[-64.0915486222234,67.3407034830978],[-64.4873997721028,67.365241841133],[-64.6163494746683,67.3861763612017],[-64.6749937732908,67.380522353719],[-64.690597079568,67.3679078009528],[-64.6687469532187,67.3542862354464],[-64.3793968174196,67.3172925130126],[-64.2562228917157,67.2920068034793],[-64.2985902055955,67.2787601778335],[-64.495879795907,67.2858265195813],[-64.5595098577932,67.2760081805573],[-64.64897155820019,67.2451513090016],[-64.6902848192046,67.2115184892275],[-64.6365101388334,67.1926920949587],[-64.3874026881099,67.2074662395642],[-64.2444053564466,67.2293868025164],[-63.9843795342437,67.2925319290188],[-63.931075255229196,67.2937796914328],[-63.8776953397904,67.2747289876995],[-63.909535025478895,67.2496531797154],[-64.4232623713162,67.1578101932252],[-64.59072800423588,67.0944470061393],[-64.62667769257838,67.0650350060353],[-64.6102022943009,67.0472138655449],[-64.5053859528714,67.0703691890267],[-64.4483131613844,67.10640229411109],[-64.33267981659219,67.1378404302717],[-63.983362020358996,67.1708401713707],[-63.75796969456112,67.21623107466797],[-63.6541264635288,67.2371436680368],[-63.5103519599696,67.2483216198073],[-63.409237649758396,67.246355447977],[-63.3455467793427,67.2354825818898],[-63.3299073971893,67.2175550730296],[-63.34624243436619,67.194937440669],[-63.4106812437324,67.14499156106768],[-63.58064793173839,67.0927725370166],[-63.67597513143209,67.0278447761575],[-63.676017417577,66.9873006732497],[-63.62336834039029,66.9783322439543],[-63.5969605584831,66.9991789663701],[-63.607454000413796,67.0111119927274],[-63.538537295549396,67.0652987066561],[-63.24597180271329,67.1624753366222],[-63.14809332567379,67.2575571549746],[-63.14703722130079,67.29809923400009],[-63.1088752715978,67.3271762981356],[-63.02901915217749,67.318510310055],[-63.0138915309339,67.29042210773329],[-62.9820637085843,67.2849174354121],[-62.9499064715534,67.2895405985068],[-62.9225023637094,67.3102781590363],[-62.93275654221439,67.3222524538116],[-62.888784644260895,67.3554260829185],[-62.798286684639805,67.3448138789213],[-62.752031886326,67.3010302744377],[-62.84620697511141,67.2103373253466],[-63.017307779640994,67.1789521325228],[-63.0769597179392,67.1332892355518],[-63.0885643251449,67.0945879339869],[-63.0585638584541,67.028310932396],[-63.0964566202698,66.9891169470814],[-63.22880470490839,66.956172224907],[-63.4079303317035,66.9363315083317],[-63.5345174673139,66.8566474275913],[-63.6131527832182,66.8346603083915],[-63.7021356323011,66.8245584794445],[-63.7177964504183,66.8120413413211],[-63.7073004016482,66.8001206341496],[-63.64978533427771,66.79533930015289],[-63.51378444296219,66.8125180080696],[-63.42986215495859,66.8386213132706],[-63.3506723598155,66.8909194816698],[-63.2927096382048,66.9062807081551],[-63.24034586144569,66.8972019495581],[-63.2355388195015,66.8709653407311],[-63.341868756801595,66.74727480601808],[-63.3003285435265,66.7299034931523],[-63.25329164203949,66.7369356982699],[-63.088109587647,66.8961164447782],[-63.02206849512008,66.92123145718813],[-62.9873063803788,66.9344512709392],[-62.8658814610005,66.9487917145247],[-62.849681755389994,66.9612247986035],[-62.786168865452794,66.97042681938899],[-62.6869815444988,66.9478149025802],[-62.636398206219205,66.8980540955147],[-62.6962963125955,66.842412517725],[-62.666233334528,66.8064886051309],[-62.68315687585629,66.77382534266668],[-62.6689013763716,66.7356170114611],[-62.73857528679909,66.68181456698979],[-62.70948712105939,66.6684110209437],[-62.650432694222,66.6711771025246],[-62.58598752082689,66.720807369741],[-62.5348447643624,66.8187549743671],[-62.5194496207604,66.9282648267021],[-62.4862305404789,66.963184939336],[-62.4544037479536,66.9677218534539],[-62.3500210322298,66.94905391465798],[-62.289130155671494,66.9074579931714],[-62.18603087235431,66.7814975183437],[-62.1500871642592,66.76986329739988],[-62.1184475380143,66.77434132321],[-62.096536754639,66.7908145538922],[-62.1679931961758,66.9111878785683],[-62.166175274246804,66.94155168486579],[-62.0604007373135,67.0299346840285],[-62.0953248216764,67.0618422865274],[-62.0730786860602,67.078313443153],[-61.8371379117579,67.1176171737315],[-61.7687644990715,67.1103077018941],[-61.738216027998696,67.0944709428824],[-61.7607086456897,67.0780442017285],[-61.824923504968,67.0692250133758],[-61.8417296746453,67.0568966527858],[-61.7758616098842,67.0192377516905],[-61.837329309540095,66.9740459712711],[-61.822850863917594,66.9560175409593],[-61.7485407981471,66.9629357185792],[-61.6540663484883,67.022599071508],[-61.5955437591844,67.0272548556322],[-61.553910808475,67.0195942039121],[-61.5517445449366,66.9832323712939],[-61.4920792262531,66.9413822344364],[-61.51456177989069,66.9249902417067],[-61.5050670784381,66.912959550815],[-61.4127895927811,66.8855584321895],[-61.474512328298694,66.8405081566228],[-61.4340859558443,66.8227142084969],[-61.22700163224089,66.7942782358505],[-61.1052223547794,66.64782444604758],[-61.14346087421819,66.6293425097732],[-61.2485806357817,66.6183561489966],[-61.292222162365306,66.5957496257828],[-61.360898836080295,66.5829951977854],[-61.4269692689909,66.6005400598404],[-61.46155474710479,66.6224185964276],[-61.503970837158896,66.6765408235716],[-61.5014745574912,66.7068755943829],[-61.5529005130129,66.7164491786675],[-61.6336285245319,66.685278191191],[-61.811472512457705,66.677180398509],[-61.8704841796729,66.65220983347709],[-61.86088331741729,66.6401996634299],[-61.809494871628,66.6307185747645],[-61.6950878364104,66.6300316508787],[-61.531020221992996,66.5994869901269],[-61.44470573047949,66.5114814363955],[-61.47775433534,66.486906743137],[-61.592301805546,66.4776148994766],[-61.71624950065889,66.4802589727008],[-61.7945768571636,66.4692257460308],[-61.8061374069974,66.45089856568408],[-61.7401729386321,66.4335066081658],[-61.6164478880926,66.43088418503069],[-61.4276089934724,66.4672145145727],[-61.335124032302,66.4600315777393],[-61.3101183220613,66.4501683990716],[-61.3025430458049,66.41792735453159],[-61.3503925400886,66.4013203850334],[-61.3998093346758,66.3644865762193],[-61.5341413246749,66.3590614036488],[-61.72197355662,66.322601788329],[-61.799143376743395,66.3216700290588],[-61.915745693235,66.3484846175454],[-61.946878286083106,66.3440368682384],[-61.987593413699194,66.35158181123398],[-62.0529572378558,66.3789905166354],[-62.0861576790925,66.4310856993557],[-62.1270380521491,66.4385992230864],[-62.2464302813316,66.4247471782828],[-62.273206261636105,66.4041293104647],[-62.21291475890139,66.37267759626599],[-62.188677764333406,66.3427097417447],[-62.23672903060379,66.3056158105926],[-62.3461031502637,66.269582001804],[-62.448797241185666,66.2619564041391],[-62.484907234668896,66.2592750397148],[-62.61735515153809,66.2833422524224],[-62.65559537521289,66.3716784854915],[-62.6965373338038,66.3790577892746],[-62.7331159478092,66.3602077366682],[-62.72493050441809,66.2875309121764],[-62.6800733048259,66.2438247195579],[-62.6245405630558,66.21850254843308],[-62.53303470110969,66.2018594856391],[-62.348240916691,66.2190083818194],[-62.256887174537695,66.20222235754558],[-62.190257365253494,66.2052388198821],[-62.088913522304296,66.1864951957946],[-62.0324206703243,66.1913266659493],[-61.95145598734389,66.1762635332912],[-61.941913992958895,66.164269639353],[-61.9739269239769,66.1395939524829],[-61.95961384731869,66.1216048353204],[-61.8177912146567,66.1052772436173],[-61.800701403600605,66.0509577943889],[-61.8166966984368,66.0386357083992],[-61.8829576488455,66.0357584209618],[-62.0143810780858,66.05014214446],[-62.173246714020195,66.0236093708633],[-62.2341553024449,66.0247120341539],[-62.3701404860254,66.0549262221543],[-62.532542041925794,66.06437938980848],[-62.623603215882,66.0810093874002],[-62.6687502999402,66.1044816844739],[-62.7032788736444,66.1463356181976],[-62.7369320960593,66.1489591132294],[-62.775297882626,66.1539783690424],[-62.78550810789249,66.1205781378182],[-62.720997081982006,66.0529905428845],[-62.53416772289349,66.0138095423121],[-62.3821529683467,66.0062232517878],[-62.2967121791765,65.985349256195],[-62.277406068575104,65.9614005149519],[-62.28908696403419,65.922821384192],[-62.2365587387035,65.84685551949778],[-62.27859364978709,65.8037666437149],[-62.334181203067594,65.7988394813246],[-62.44431172809169,65.8192569221853],[-62.578693935229,65.8796160029811],[-62.593349738913595,65.8975529693821],[-62.6789941091558,65.9081609991676],[-62.699611899727,65.8916121427198],[-62.68022774558229,65.85759415195659],[-62.4614016549954,65.7563191229201],[-62.50713905367639,65.739369436558],[-62.637421459756595,65.7532428018942],[-62.677920104296796,65.7403807159655],[-62.6483824789057,65.7146399823008],[-62.54876839325069,65.6860985575583],[-62.53986679133399,65.6438138565235],[-62.565418237777095,65.62315402088059],[-62.7149223573034,65.6507539809033],[-62.7450467434125,65.6461477071437],[-62.7905538576146,65.6190041299474],[-62.86065865595089,65.61158439821399],[-62.94551783845189,65.6220384775559],[-63.0003840535969,65.6371071594847],[-63.010195987492196,65.6591527748293],[-63.17362658191618,65.68377070899032],[-63.1753361026945,65.684028218119],[-63.341042272348794,65.8706271443019],[-63.36634891993119,65.9307840151837],[-63.3865972993269,65.9445042894419],[-63.4220152476137,65.9457393271158],[-63.4369557872286,65.8826541735252],[-63.340757865187896,65.70874593793229],[-63.380774778746094,65.685590469166],[-63.470844916666096,65.6713925466317],[-63.576042627974694,65.6750001960695],[-63.621013577071,65.6678552565785],[-63.640796889359294,65.6511838891926],[-63.555506160923,65.63095828270968],[-63.40055499087279,65.6386021076285],[-63.29049803724689,65.6289291866936],[-63.2604588669296,65.5931774393763],[-63.3301694818528,65.5450986293761],[-63.3998959529625,65.5374478886591],[-63.4298384975328,65.54282942254719],[-63.46510577734569,65.5845079069026],[-63.50511040414769,65.5916682331583],[-63.5495853538905,65.5541907348226],[-63.509163159163904,65.5065793369469],[-63.280114447796,65.4754153423925],[-63.28004509827971,65.4551892892653],[-63.3147232611226,65.43620689020239],[-63.3544188880021,65.43328452708829],[-63.6132553996611,65.479803875095],[-63.6477280891393,65.4607480364229],[-63.612446612955,65.4292283185333],[-63.43829213939289,65.3827951149613],[-63.37295142731659,65.2750774524484],[-63.2690604067559,65.2309335996335],[-63.2935501463271,65.2101560951124],[-63.40185573150589,65.209677268335],[-63.43607916935579,65.1906679634748],[-63.42609293119529,65.1787662779235],[-63.30789515164079,65.1572473737093],[-63.39083809668969,65.1067852911402],[-63.39047221612059,65.0764561211731],[-63.4146884945845,65.05565951918129],[-63.46845408798849,65.0503304992842],[-63.48828500968052,65.03322642858079],[-63.4925829722609,65.029519457367],[-63.4822745859543,64.9974085443646],[-63.5447388621197,64.9432906519405],[-63.61782169953079,64.9414686536287],[-63.64834705036469,64.9973444733496],[-63.7655948883933,64.9983862818622],[-63.775685941242,65.0102663991961],[-63.7517979019804,65.0311203350897],[-63.77198987328939,65.0548806606448],[-63.88531902618419,65.0802413674145],[-63.8957871054675,65.1022282639479],[-63.87667350241859,65.1189268980717],[-63.82793466516849,65.1303303560881],[-63.80902084339159,65.1571340530537],[-63.8583945829498,65.1659630894627],[-63.8877344683484,65.1611414587155],[-63.9310914290951,65.1336734906039],[-64.04378572213778,65.1285939724674],[-64.0869218967099,65.10108024150469],[-64.0952565119995,65.0623788050598],[-64.13901976159649,65.0550771892518],[-64.1985972275433,65.0756638274725],[-64.2299235226347,65.1213499504764],[-64.206261791023,65.1422789735626],[-64.1093297888156,65.1753805212261],[-64.0858848986197,65.206402976137],[-64.1405657027009,65.22108786888589],[-64.223406762426,65.2005268836763],[-64.271225583309,65.1687769713843],[-64.3151130974919,65.1614297637826],[-64.3547300832637,65.16837843091369],[-64.3712464811207,65.2063863718673],[-64.3352056606911,65.2803723638967],[-64.1576807657559,65.4150494718634],[-64.1880059876269,65.4304138576579],[-64.2519391701431,65.4164665852739],[-64.2858500286156,65.3972714594241],[-64.3958316577716,65.3110230439984],[-64.4516441158937,65.2404829948928],[-64.4439338122148,65.1839765016501],[-64.4898886376037,65.12180997157708],[-64.5820169575145,65.10279084585788],[-64.6513229694552,65.1148275769574],[-64.6670642850839,65.1325797073947],[-64.653071513358,65.1451780419406],[-64.6951183031523,65.19251289056339],[-64.7027507993996,65.2389007057797],[-64.8375018836542,65.26707317754759],[-64.8481091385591,65.278900764038],[-64.8294342051063,65.2957203201013],[-64.7321050955845,65.31907723156829],[-64.7086193682156,65.3400846383511],[-64.7297723398063,65.3637553578776],[-64.7109447591685,65.3805629251555],[-64.4561805036575,65.4369209088827],[-64.4375859545723,65.4638138024915],[-64.4776482351961,65.4707423202911],[-64.6696064534512,65.438608780928],[-64.8744977449886,65.3835100205261],[-64.9846733303498,65.4022560401989],[-65.0508984112581,65.4284821288898],[-65.09462457693108,65.4858750623192],[-65.0665567319774,65.5111535188547],[-64.9283483902635,65.5278259284455],[-64.8994336394531,65.54295314887868],[-64.6969305522822,65.5736240853497],[-64.6731276629121,65.5946305136148],[-64.7193077706828,65.617551617436],[-64.7305162173741,65.6395159142362],[-64.692335454165,65.6731333082281],[-64.702984830663,65.6849758577593],[-64.7821454625789,65.6683468234672],[-64.8486681646358,65.6094743779734],[-65.1150803940863,65.5643386567336],[-65.2517385089803,65.5922280838723],[-65.26804660131049,65.6099433364516],[-65.2540213659139,65.6226001456059],[-64.8499514178428,65.7149188275885],[-64.8362475275513,65.7376617223028],[-64.8767864603848,65.7445086997091],[-64.93162431779999,65.7387182579367],[-65.1492740604301,65.695129333391],[-65.2788456584869,65.686723234232],[-65.3397041544331,65.6968304951217],[-65.3615859114485,65.7204465178991],[-65.3444085940103,65.75758594964],[-65.3663223026185,65.7812057793703],[-65.2735591297892,65.8858845702656],[-65.1811911553779,65.9356515564756],[-64.9476694802077,66.0020194453004],[-64.7873310937641,66.0353754238932],[-64.7144086498211,66.0984368816915],[-64.7115477449177,66.1431569685328],[-64.6429678681556,66.2019871232787],[-64.54311082411729,66.2555834122252],[-64.3712976501202,66.3171795055457],[-64.3463550123258,66.3381400565641],[-64.3826734307473,66.3493183351754],[-64.4286237289724,66.3419670399831],[-64.5353112956287,66.3146351923368],[-64.6713184370843,66.26202522441669],[-64.7199386779511,66.209866768293],[-64.7948390630522,66.1771892824978],[-64.8672760023772,66.1039582670885],[-64.9120348236195,66.0863414602014],[-65.0074233482182,66.067117955457],[-65.1991469869403,66.04876808319459],[-65.4135102535489,65.9989459134756],[-65.7061939514558,65.9866649060774],[-65.8257689865036,65.9660654134249],[-65.8874212714974,65.97599408187078],[-65.9089601548794,65.98943028014078],[-65.904504011664,66.0485627400856],[-65.8614704044775,66.0765798576395],[-65.6877593631336,66.1235084132837],[-65.5030943705628,66.233600459962],[-65.3957320527633,66.371339339862],[-65.4380992846119,66.38821218912528],[-65.4822245554067,66.36030767327699],[-65.54777133189108,66.28084226594129],[-65.6977641629711,66.1800705609348],[-65.8117163206646,66.1434589780983],[-65.9385863651818,66.1388163977828],[-65.98282918484897,66.14584999168508],[-66.1249461705644,66.1684433338739],[-66.1498846848058,66.21225755802338],[-66.1229003635496,66.2478718792823],[-66.1457832767282,66.2714226360775],[-66.2649655679328,66.2851790781174],[-66.3101873481045,66.2773219065205],[-66.3241400003468,66.2645648024666],[-66.3011029689591,66.2410353814523],[-66.3196776099158,66.22402658786268],[-66.4132909088248,66.23866809960958],[-66.43063767435538,66.2563044075239],[-66.3807492768493,66.3132451293418],[-66.3981086128842,66.3308869397211],[-66.5177561064531,66.3892811460958],[-66.6447133896667,66.4188057223165],[-66.6672324282971,66.4769776470521],[-66.7151749762139,66.4892898143893],[-66.74926736347498,66.5143880816386],[-66.7576930660888,66.5405378605159],[-66.6832411387415,66.6087779878627],[-66.7407394029277,66.6125615988532],[-66.7910571494195,66.60031567403618],[-66.8968236355362,66.5368210117017],[-67.0226118119371,66.5111274377486],[-67.1326963107124,66.5227240515072],[-67.2426734620539,66.568944702753],[-67.3909118698327,66.5909731866817],[-67.42215216692294,66.5903653052016],[-67.6285391533609,66.586349375826],[-67.8258279261846,66.62007693418168],[-67.8694381846178,66.6016730201371],[-67.8386584894899,66.57247761291049],[-67.8006800260727,66.5620079467346],[-67.6734753723679,66.5434296282149],[-67.4302042857672,66.5422707045327],[-67.25197913137109,66.5256907702338],[-67.2248488421471,66.5166780563329],[-67.1680462861246,66.4436787066722],[-67.09753976500168,66.4181842991896],[-67.07371953729978,66.3947408068553],[-67.09191805628,66.3776398105176],[-67.1370318446157,66.369564363329],[-67.2525661840342,66.3869317249227],[-67.3968340963285,66.4233495501526],[-67.4253660082514,66.4077787615145],[-67.3742176090471,66.375390430148],[-67.1777900212573,66.33106998557338],[-67.1375319841624,66.3002011810454],[-67.1556033268484,66.2830939748326],[-67.27187488310231,66.28454999885776],[-67.2992352341542,66.2848926220216],[-67.4834692282357,66.3173748107105],[-67.476088995699,66.3360818859031],[-67.5002253730678,66.3594724431294],[-67.6560212011497,66.4666321014031],[-67.7177706127252,66.465797849486],[-67.7100248525016,66.44982125429169],[-67.7339273294303,66.4353134296028],[-67.742844329973,66.4299011754247],[-67.7956207386384,66.4376277161205],[-67.8306816802401,66.4625251973935],[-67.8879791318465,66.4659281255775],[-67.88843447542234,66.45480476445462],[-67.8889848577598,66.4413597488226],[-67.7129926405496,66.3414409511578],[-67.6644047817866,66.2947103653072],[-67.6573913847628,66.2194931805058],[-67.3600761453959,66.1107816326911],[-67.2903700187416,66.09371932242202],[-67.2545510500754,66.08495173790348],[-67.1150486560787,66.0687287476021],[-67.0780144798466,66.0581266735038],[-67.0544413020292,66.0346976129892],[-67.1317410141011,65.9721650527239],[-67.1185141051654,65.95032684891788],[-67.1407279892928,65.9289517236498],[-67.2101069521202,65.9197270052345],[-67.3282151406609,65.9327251208213],[-67.4385943714512,65.8950013673266],[-67.5877285322814,65.9124979843901],[-67.67008581059119,65.9841125252827],[-67.7116079286548,65.99029544006159],[-67.7410853546397,65.9847994418674],[-67.77754379590638,65.9605825809414],[-67.7527035361468,65.9025706481835],[-67.77434833304409,65.8811068750866],[-67.8036813165459,65.8755983121432],[-67.8864739954562,65.8878859712661],[-67.9357081189781,65.9099706666787],[-68.012150365803,66.0001578971759],[-67.9708600188386,66.1125258978866],[-67.9935187619202,66.1257136160582],[-68.1233025969759,66.1397158687533],[-68.1490294672797,66.1977088379041],[-68.1893769457814,66.20059187698733],[-68.2162731757349,66.20251375376938],[-68.3179630200012,66.1728238436348],[-68.3703921254882,66.1803677666937],[-68.3971292890949,66.2137673689348],[-68.4601695302965,66.2227894349112],[-68.6121781590429,66.1902954709086],[-68.80781309468509,66.1982941369503],[-68.8730474784808,66.1927202636782],[-68.8856625836391,66.17974671824],[-68.8667372659376,66.1623418024052],[-68.8037128456996,66.1534687568015],[-68.692345787337,66.1573924314626],[-68.5350226421995,66.1350079221062],[-68.4593749421586,66.1389544525539],[-68.34418869286829,66.12240236149209],[-68.3318242162366,66.1107650388646],[-68.1289731721852,66.0862902813605],[-68.094035029239,66.0614694888329],[-68.0990268817029,66.0326093723425],[-68.1438063245092,65.9997039999681],[-68.2773306087798,66.0092746318881],[-68.2901291415096,65.9963514782468],[-68.23060083254879,65.9482892787682],[-68.3146840093225,65.9112612590779],[-68.3024066655626,65.8996273663075],[-68.188303576208,65.8829945414042],[-68.12855466032678,65.8594624823054],[-68.0871447409135,65.8533813200918],[-68.0182934204015,65.8629678857928],[-67.9915295084394,65.85408968511139],[-67.9794080434661,65.8424384717957],[-68.0470787254277,65.7981930198831],[-68.0853791714148,65.7594839397566],[-68.0732507071083,65.7478388204918],[-68.0131945845988,65.7488247431621],[-67.8733936360079,65.7823355043168],[-67.8115326797857,65.7731236875671],[-67.7995148916554,65.7614629116505],[-67.820973807433,65.73999228939579],[-67.8835536941011,65.7246564938254],[-67.9151934678965,65.7047076225341],[-67.8430900557588,65.6347752733455],[-67.8976346667654,65.603479159308],[-67.9491614279571,65.5273849459474],[-68.09635504012938,65.4606592403214],[-68.104058099794,65.434728496586],[-68.06627580208338,65.4315660943161],[-68.0045327466651,65.4469787159044],[-67.8437066232935,65.5510382755605],[-67.6414660345975,65.6242218105423],[-67.4652060678723,65.6469185474924],[-67.3439139351618,65.638321365525],[-67.3073385397204,65.62778326276799],[-67.2955822168087,65.6160917500332],[-67.3562889758417,65.5561767130423],[-67.341433007844,65.5242463013022],[-67.3888668289251,65.4771608791416],[-67.3712540381286,65.459636387501],[-67.2594443360639,65.4424356852506],[-67.1130627448065,65.45935271560329],[-67.0318403872244,65.446726968266],[-67.0246133432217,65.4307518295209],[-67.0622657846134,65.38219060774519],[-67.1215696938658,65.3815269986737],[-67.2515509083523,65.3571891451075],[-67.3392287898698,65.3163852710902],[-67.2828267918123,65.3027307958342],[-67.2439207234771,65.3065882781189],[-67.1385754048189,65.295163945905],[-67.1053269579208,65.2702034290836],[-67.1167564542938,65.2472643534273],[-67.0821008978194,65.2121819625375],[-67.0116513064217,65.20114089866799],[-66.91824183269298,65.2012866173516],[-66.9427223631547,65.1655622578102],[-67.0473205420121,65.1078478827546],[-67.0900699777594,65.0651369874664],[-67.0685607709719,65.0518727481557],[-66.9728185142186,65.0664447386197],[-66.8466545540318,65.1454343813731],[-66.7591155307677,65.1513481473397],[-66.7477347502903,65.1396342296389],[-66.78237365311449,65.1055353218282],[-66.8655568617224,65.06925480146688],[-66.8913491208503,65.0436616709767],[-66.8742418726774,65.0261083578178],[-66.8186040998928,65.0123152034083],[-66.7448556550224,64.9362160157425],[-66.723806475037,64.8883074171945],[-66.7318385320463,64.8183286901754],[-66.731811735964,64.8040029556803],[-66.731962449519,64.7853251392424],[-66.72106422119559,64.7675810093449],[-66.7242140274677,64.7523107943752],[-66.713329377772,64.73456513819049],[-66.6882686812965,64.7330217130504],[-66.6680745068843,64.74240755848798],[-66.664896675572,64.7576759560977],[-66.6624557009408,64.7845905045611],[-66.6676839306132,64.8229362684179],[-66.6707919917186,64.8514651470261],[-66.5978765032113,64.96709181561019],[-66.53717909635249,65.02668061021619],[-66.4985532125009,65.0303686679444],[-66.453050906715,65.01806668366469],[-66.3604053063524,64.9385914957956],[-66.3306011722016,64.9337423193073],[-66.2634725672652,64.9426377608336],[-66.1743552358344,64.9727301486231],[-66.0992818314652,64.95545363114108],[-66.0672678229791,64.9303226872165],[-66.1858122357191,64.8604617378195],[-66.3803161548297,64.7832072694568],[-66.4204072261148,64.7550614659278],[-66.4677175632817,64.70828782475299],[-66.44599557396789,64.6669736647678],[-66.4272515186672,64.6535405719597],[-66.3973514421853,64.6381061338251],[-66.360745187894,64.62578328942949],[-66.3346325323727,64.6283026145043],[-66.3283596346186,64.6401469383174],[-66.3414065919253,64.6628674990484],[-66.3900876178713,64.70552366451489],[-66.3556046019377,64.7395235537771],[-66.3229067130188,64.7490410387838],[-66.2692371566653,64.7451988215246],[-66.2021727968906,64.7093747487482],[-66.14424604130909,64.7097390902924],[-66.1764701423382,64.7795442378868],[-66.1209083721999,64.8448256297815],[-66.0923676860072,64.8500526685072],[-66.0528056025549,64.8435232417092],[-66.0363031040343,64.8259012786089],[-66.03296023662429,64.7955559708946],[-66.0548279771463,64.7743534352699],[-66.04271885807098,64.7524924958688],[-66.0175241789396,64.7433518207038],[-65.9452876835052,64.7462478997392],[-65.9343532649858,64.734496529438],[-65.9103520442288,64.6907638522194],[-65.8710410511891,64.6841971772349],[-65.8447331668675,64.7096067404026],[-65.870307413419,64.746174010396],[-65.9517445098497,64.8516308006615],[-65.9032292461391,64.8982409447645],[-65.8152102437797,64.8935529812466],[-65.7252218709851,64.8685854827276],[-65.6970587834618,64.8290504289817],[-65.7325054145882,64.7952020254408],[-65.7019454888527,64.78013220286078],[-65.6260959740222,64.7972294210822],[-65.5867048922678,64.7905926118827],[-65.5749557088286,64.7687041759471],[-65.61541878413169,64.68598014071],[-65.7429469792755,64.5633270140295],[-65.7007921789639,64.5263931584752],[-65.6173365820858,64.507282915868],[-65.5271083192361,64.5168047664585],[-65.4960410296469,64.528165847979],[-65.4723837135865,64.5407534365581],[-65.4453729262023,64.5646922565011],[-65.3973118053867,64.57457210101428],[-65.3681473251395,64.5647831055188],[-65.3912293155397,64.547356067168],[-65.426431790765,64.5191577122666],[-65.4523882667454,64.4917721111172],[-65.4224627112976,64.47405593415249],[-65.3941791405799,64.4791622725974],[-65.3499896503203,64.5213609722309],[-65.3083359124662,64.5391109273074],[-65.2515738893239,64.549276164999],[-65.1585976392036,64.528258079568],[-65.1147946270261,64.4608651227362],[-65.128138118152,64.4482280359542],[-65.217447439217,64.4288184333457],[-65.2439901251595,64.4035252728797],[-65.2114724331783,64.35805908126],[-65.2238498577137,64.3353049620008],[-65.2951323370041,64.3327081622531],[-65.5268034210453,64.362597551023],[-65.6262285378397,64.35472416300439],[-65.65868111397059,64.3453462685116],[-65.6706880947651,64.32255159126049],[-65.655633629965,64.3150221324846],[-65.5941374912214,64.3194341370873],[-65.5263190352827,64.3078314911291],[-65.4934208293223,64.2624209510764],[-65.422344264263,64.2651086737391],[-65.3740300530656,64.2567754372602],[-65.3634510163299,64.2450015815959],[-65.4167087080845,64.2044666198161],[-65.4104775591805,64.1884752481169],[-65.3666407099289,64.1759237950436],[-65.3053960692654,64.1802310121713],[-65.2283674830692,64.1668434343839],[-65.1593947709946,64.0801520926319],[-65.1297661296836,64.0650102376053],[-64.8712865283,64.0194367898772],[-64.7963194758506,64.0260638410791],[-64.6851896611346,64.0561436157461],[-64.6131736440093,64.0382784502081],[-64.5927389629864,64.0146521951157],[-64.6237688612412,63.9852801374607],[-64.7889095434054,63.925040627376696],[-64.8974267622858,63.80986696502459],[-64.8097117078438,63.7643171813096],[-64.5970712657454,63.73105893757659],[-64.5295538329622,63.69888778829739],[-64.4652426614464,63.6423072756842],[-64.5056064365155,63.549906291236695],[-64.4871099866523,63.48171389464299],[-64.5795347392994,63.4138552669798],[-64.5450137560301,63.38264109492619],[-64.5443475032528,63.307786926896],[-64.5744549131678,63.27843431575639],[-64.6246140306678,63.2726675197356],[-64.671227482745,63.281176527227494],[-64.7151323103129,63.31405801111109],[-64.78960593263,63.50176048990169],[-64.91408938568338,63.6087435237318],[-64.9705654045748,63.6735679289027],[-64.9584379932748,63.6962876500163],[-64.99448401477478,63.7375382815168],[-65.127334372999,63.815799475259894],[-65.1844085807348,63.82586092726919],[-65.2111614940044,63.8106803023667],[-65.1998535151291,63.7888040315786],[-65.0574409371545,63.7089230469871],[-65.0367954260318,63.68535954836359],[-65.0359773958236,63.62055685346459],[-64.9648747009477,63.5481797220252],[-64.9794893011676,63.50106385890051],[-65.0495375977274,63.453937472099895],[-64.9744107628944,63.3857944694296],[-64.99309712938108,63.33447489290829],[-64.9412197263744,63.2654901908906],[-64.9784620152232,63.2175473999286],[-64.9580919394493,63.1939951165661],[-64.9208453768409,63.1872584919255],[-64.858185362258,63.205731664820696],[-64.7972706765944,63.1896957865784],[-64.7661520206562,63.14424569312699],[-64.8042847038763,63.1064448572659],[-64.8102729030578,63.067766471653094],[-64.7389582851314,62.97519289362539],[-64.67852515109588,62.9591261148064],[-64.6534903376212,62.92965869382459],[-64.6964168670383,62.89778204342069],[-64.76349910802908,62.8852607035181],[-64.8783296068056,62.9013193090867],[-64.9867160293639,62.9458886269351],[-65.0421921110118,62.955954072858894],[-65.0958452660867,62.9458160356683],[-65.1207768451483,62.92056124730299],[-65.1128684324796,62.8844066507868],[-65.0519486766683,62.8138319313313],[-64.91039371486609,62.7483060394785],[-64.8902710720442,62.724764898425995],[-64.9358208990286,62.67852847086179],[-65.1157378011053,62.6271053326328],[-65.1574478732525,62.63965519619169],[-65.2031314367896,62.6925451055472],[-65.3358608527425,62.7561488808185],[-65.3665758171935,62.7913862987979],[-65.3686378731643,62.8115659883446],[-65.2740688817563,62.9085279337493],[-65.2945599956033,62.93203283486929],[-65.3315824201641,62.93867355872779],[-65.3717202903447,62.9309957890028],[-65.44467304047548,62.8895557715409],[-65.4980473870916,62.879276325711295],[-65.6235419809975,62.906532566579],[-65.67211326227569,62.9349154986175],[-65.6888406391813,62.962602829076495],[-65.623425172882,63.0302148085414],[-65.6338251237905,63.0419505525734],[-65.6710446037606,63.0485142444817],[-65.697843119,63.0433394021905],[-65.7409650382779,63.0212487467021],[-65.8008618592721,62.94772016996009],[-65.8275427399098,62.9425191425557],[-65.8646788175347,62.94903581793649],[-65.890880395181,62.978333513305095],[-65.8741590163336,63.02977100961179],[-65.9912174949176,63.0551276062102],[-66.0427888691579,63.1035993316293],[-66.0947960076828,63.1175423922623],[-66.1336994772178,63.0995751172318],[-66.0530794351032,63.001671073447],[-66.0691983788045,62.98472211783879],[-66.1091873061882,62.97685102056909],[-66.2488780731888,63.0009992417044],[-66.3834970261949,63.05370544729081],[-66.4625166440834,63.1312830717456],[-66.5084604634459,63.2327501920767],[-66.57428297104218,63.24388556162369],[-66.6116546333093,63.2156995330192],[-66.5613925285687,63.118510534617506],[-66.605091917222,63.0717309427193],[-66.558056181521,63.0292680895301],[-66.5778626280086,63.0080078233259],[-66.6191697406484,63.0100969644627],[-66.6486360892755,63.024937089451],[-66.7815424337315,63.1851833923629],[-66.8889275490123,63.198227973541],[-66.94998659828919,63.237917923453],[-66.98288144280788,63.272897017110196],[-66.97960137352669,63.31170585228699],[-67.1237356006894,63.320767075840294],[-67.1954770579002,63.337478471218695],[-67.3206408278287,63.4267350562691],[-67.4587505213253,63.47861796007721],[-67.509275243574,63.53096397627651],[-67.5273699725108,63.5829767718593],[-67.5781384724821,63.6353132240502],[-67.612516172628,63.645723396139296],[-67.7275020785667,63.6640576983211],[-67.7637481341479,63.684532676736],[-67.8213385496711,63.6936581027916],[-67.8542897662668,63.669442781068206],[-67.8185308751542,63.6000314138577],[-67.6503950784684,63.4358710846906],[-67.67959665811318,63.3915094419137],[-67.7196857886027,63.383227169208496],[-67.7785089675751,63.402446899458],[-67.8729260429887,63.515511163103504],[-67.9243792526783,63.54326372349549],[-68.284582792854,63.62910313403259],[-68.5258265370045,63.739684902173494],[-68.6319989401825,63.755908704867],[-68.7625331308176,63.73177750457139],[-68.9498790955173,63.7551695561361],[-68.9566968832495,63.7220337501065],[-68.8915998185156,63.65854673251201],[-68.8267463951158,63.5950417184861],[-68.7083242600123,63.518426257978795],[-68.6025111705632,63.47778728989049],[-68.4532819345841,63.449871117375196],[-68.4226025610746,63.435339266408995],[-68.3821532450035,63.3948389043129],[-68.3603327806031,63.308344707152195],[-68.27618948387799,63.2316241252906],[-68.2359677933062,63.2191163890805],[-68.1491527367701,63.19205164789051],[-68.096090575777,63.15430274512559],[-67.9940986330204,63.14787329872469],[-67.9752315319759,63.1203953881232],[-67.9978450115818,63.0701812492315],[-67.9790023484609,63.04270712277129],[-67.9507792886197,63.03818984509879],[-67.9112483078839,63.0465378344867],[-67.8432568946423,63.09926549609939],[-67.7809673076711,63.10883802317401],[-67.7094393573034,63.0924017622621],[-67.7284709139187,63.0709815762271],[-67.7548858035577,63.0654496520085],[-67.7700678211648,63.048309756017],[-67.7588523839095,63.03670342940979],[-67.6986791823494,63.0318727423827],[-67.6062510578537,63.05118059737109],[-67.5631028278173,63.0392613793788],[-67.58219542646499,63.0178616924223],[-67.6463860670518,62.9939965746828],[-67.66158479330478,62.9768670096684],[-67.6504288494479,62.9652577590579],[-67.6223155579101,62.960683909801396],[-67.5300633769899,62.9799508344745],[-67.448770643045,63.0107850623371],[-67.3456764915537,62.99386236524369],[-67.1243406155067,62.8344875732566],[-66.9359621187186,62.7587044032913],[-66.8965469667265,62.70783516976469],[-66.6374966154795,62.663793163701],[-66.5422819287508,62.627789563695],[-66.4639674660385,62.5503209997474],[-66.48589900533409,62.51474370640659],[-66.4763503700728,62.4786485731366],[-66.4474051157138,62.4637980040101],[-66.3609784986081,62.45371328092081],[-66.3321080700567,62.4388411317061],[-66.3540765517908,62.40328885273391],[-66.4150345352474,62.35977013416169],[-66.4213674082472,62.3411922224517],[-66.3844985064105,62.30033125801499],[-66.3441327500026,62.2982030543291],[-66.3247665625443,62.3194236659853],[-66.3302696103542,62.3597603010417],[-66.3016989686957,62.3793827280416],[-66.2664821373247,62.383072889403],[-66.1789925156776,62.362810008303896],[-66.1345712856257,62.295882979545304],[-66.05778375896,62.28725058488709],[-65.9926761100364,62.3003612843427],[-65.9380424433232,62.29066174863531],[-65.8694072988129,62.23898940120069],[-65.8851028447774,62.222064361335796],[-65.9370947052675,62.211612414444296],[-65.9696206790564,62.18782900513699],[-65.9399879351851,62.12833630010039],[-66.0176921869271,62.0436604454134],[-65.9519412687275,61.9777315312195],[-65.9326881655237,61.929947572939795],[-65.9558597839925,61.904554356022494],[-66.0162672430288,61.8956793373529],[-66.0689564512975,61.8952510496056],[-66.2980597233986,61.9310280477419],[-66.381671613953,61.93102958746049],[-66.6527794695258,61.9784725493606],[-66.8370402992073,62.0300043465191],[-66.9913698121433,62.0565072120858],[-67.124870795224,62.03518863250509],[-67.2430465973231,62.0552495641325],[-67.3699692727547,62.1256153000145],[-67.4812285898941,62.1540518879899],[-67.6841937679182,62.17315438499019],[-68.2240833064722,62.18828179954869],[-68.4077136120176,62.2178443870762],[-68.8422045818466,62.335392517392904],[-69.095475999256,62.3699786288468],[-69.2739186945457,62.446043197294394],[-69.3588978418248,62.522160705615896],[-69.4054799031904,62.5292498171708],[-69.4531649244694,62.5219273778364],[-69.5184127161469,62.5318086165833],[-69.576114609268,62.603598168574194],[-69.5425013439852,62.632507345907904],[-69.4783413521064,62.64710285025979],[-69.4644027173282,62.6644174693919],[-69.490303164636,62.6974598875255],[-69.46935144345919,62.7234362549209],[-69.49289464753008,62.74640730870541],[-69.56558839579499,62.74761967450869],[-69.6497240849954,62.7213949777461],[-69.792110413717,62.7668596541789],[-69.8485450241131,62.7752217936821],[-69.8845828087148,62.7563079501844],[-69.8062748567315,62.69622100266759],[-69.83879657000459,62.68165621838109],[-69.8857082189221,62.68860717446489],[-69.9898110282697,62.74274062694799],[-70.2183670330963,62.78585016254199],[-70.3381113061386,62.8612797844443],[-70.6694399693167,62.9086670505485],[-70.757602115567,62.930803040187605],[-70.78169667898749,62.9680273779691],[-70.88293577215468,62.9870777529047],[-70.9329163121506,63.01821830825709],[-70.9995982296579,63.0275102539031],[-71.0120216880254,63.0388942783517],[-70.9696782027611,63.0668141747572],[-70.8021503990619,63.1062316467606],[-70.769603582823,63.1210059205187],[-70.7623095502359,63.14415589917251],[-70.835936723955,63.14479831135619],[-70.9878749847528,63.0983239459856],[-71.122409666927,63.0879827178723],[-71.1554544093373,63.0442736783767],[-71.18112544603119,63.03816188089839],[-71.2670044011104,63.0499709012521],[-71.3710150948805,63.1220749602245],[-71.5495748999144,63.165564839391],[-71.6193656328119,63.22797272163659],[-71.6603644113149,63.300936394574094],[-71.74354800974979,63.3602124643207],[-71.7853492891999,63.3753964893126],[-71.9981800970188,63.40344158667799],[-72.0466271164155,63.4242220849346],[-72.02727381754939,63.4505791790409],[-71.9852427208387,63.4643423520928],[-71.7299963512461,63.435521964440795],[-71.5910268870762,63.43630260250839],[-71.4971062351439,63.4478422280138],[-71.38647083346699,63.48121762240431],[-71.3263527079846,63.5600118629514],[-71.2023848262246,63.58187940481851],[-71.1719856474444,63.6212406981322],[-71.2336941703176,63.62477447739221],[-71.4100959016036,63.5905976408105],[-71.4781539259435,63.59971697259359],[-71.4973382080338,63.6167624801904],[-71.417641884673,63.6930002345208],[-71.4368387436917,63.7100553755245],[-71.4661180871218,63.7139646868884],[-71.5383297693765,63.68979597630209],[-71.5773615222259,63.69498495871479],[-71.6059554324764,63.742206211595494],[-71.7264663630987,63.767758957605096],[-71.7749508854191,63.8175356799034],[-71.8239923230742,63.8239532890565],[-71.8635836386402,63.785726137674196],[-71.8149875866106,63.73597604951409],[-71.8250143488897,63.7083616553462],[-71.9065092123239,63.7142019442962],[-71.965084620307,63.7507482674636],[-72.0042594919454,63.7558342274359],[-72.0434662577751,63.7464607959505],[-72.0989268291469,63.700654590274],[-72.12830278371528,63.71889510431449],[-72.0400454938558,63.83756408645459],[-72.0432391255087,63.87652571015979],[-72.0759990704962,63.904842303272],[-72.08908431294,63.9450765604508],[-72.1252446703604,63.9400813053912],[-72.177777850315,63.9130902246356],[-72.24954304673129,63.81632483248381],[-72.2919899384936,63.8024924816822],[-72.3312793772227,63.807503583311295],[-72.400659975301,63.8740685456538],[-72.47947478407418,63.8840314144638],[-72.5092370850318,63.9022155701202],[-72.4280331971188,63.9834106819137],[-72.444713716791,64.004765444048],[-72.5107479953635,64.0178772165571],[-72.5858567249118,63.974367096922805],[-72.6353097938613,63.9805446253823],[-72.6818414282023,64.0055792594574],[-72.8733146228548,64.0244603679728],[-72.9336045807838,64.060696108777],[-72.9407463945917,64.0807910551489],[-72.9152495094115,64.1161139663705],[-72.9287674760069,64.12737904365038],[-72.9817217624359,64.1290437077939],[-73.0568789995941,64.0997657470914],[-73.0903498994211,64.113438181949],[-73.0554760498008,64.16204326057668],[-73.0028721952607,64.1748660715164],[-72.9901176451726,64.1925327432998],[-73.0136730408873,64.20500908370579],[-73.0735748594667,64.21227754238639],[-73.1495201625668,64.3031134801071],[-73.1896061156917,64.3079300318556],[-73.23869426261068,64.2850029725911],[-73.2882446752283,64.2765264309692],[-73.3483521277079,64.28369843459409],[-73.4680376866886,64.3602835650589],[-73.4887765863498,64.3771281613339],[-73.4446987589733,64.4391213573631],[-73.3536561583004,64.505185771131],[-73.2579414873938,64.5466753241941],[-73.2322879088066,64.5820690634506],[-73.2406536634974,64.6311185738652],[-73.2844180023588,64.6314963372932],[-73.3483923043347,64.5429835766197],[-73.5259873391057,64.4630842091026],[-73.5959857376053,64.3177792544899],[-73.6562443095159,64.324841415093],[-73.6574628875877,64.41610143568269],[-73.5930500244712,64.538116102563],[-73.4868321661828,64.5640882155863],[-73.4576712928873,64.5894744109505],[-73.4715823533871,64.6007079788533],[-73.53240022377979,64.6078266991328],[-73.734760534144,64.554580904536],[-73.8695936458699,64.5653279625454],[-73.9014459856241,64.535428451905],[-73.8616035581837,64.4829166195202],[-73.8770763222957,64.4607304551323],[-73.9917143111111,64.4211841387975],[-74.0729723557348,64.3346911945415],[-74.16161214289869,64.3160735162773],[-74.1827252975552,64.3328345034701],[-74.08654750948568,64.4415926929557],[-74.1147497109311,64.4639556871735],[-74.0964020170555,64.4906069546808],[-74.05685043084519,64.5004771827732],[-74.0445649668582,64.5182414293388],[-74.1081416078888,64.5685762270462],[-74.0203727955538,64.7263430003981],[-74.0416555257009,64.7431345211389],[-74.0722742413784,64.7465948492158],[-74.1387797969036,64.7301324857795],[-74.1726912291325,64.6812497848111],[-74.1811188941797,64.6055611511668],[-74.20658085923309,64.5844848452542],[-74.2634627917712,64.5813033279009],[-74.30920209709008,64.6103668390286],[-74.3600496735766,64.6160477892937],[-74.3974991405859,64.5771482089447],[-74.4340207047789,64.5716432276293],[-74.4995043499592,64.6363228205285],[-74.6547517174252,64.6821040597875],[-74.70825015163469,64.7166390043235],[-74.6643851106969,64.7979450019576],[-74.5665557077204,64.84466933232798],[-74.5718906067664,64.8691826126309],[-74.6335161519044,64.8759118166161],[-74.6734151300308,64.8659014454678],[-74.7476234775316,64.8213467996088],[-74.7656310059174,64.794606579973],[-74.8860364758017,64.7789315735143],[-74.9098118706569,64.74325786233779],[-74.8517539297068,64.6987577486984],[-74.6038260090981,64.5952133625083],[-74.5291845034839,64.5439315534962],[-74.5441714263558,64.5216773798527],[-74.6593231521361,64.496132588637],[-74.6771405368134,64.4694120812536],[-74.6514690379191,64.4426856779472],[-74.58540250992269,64.4114850368113],[-74.5871837064749,64.3925596711429],[-74.6726966561835,64.3781160442652],[-74.786772688548,64.3858763368391],[-74.9254071440157,64.40577596781],[-75.0294444228181,64.4456804263678],[-75.1105453044948,64.4544030766517],[-75.1756856287027,64.4375207422237],[-75.2568026379273,64.4461719419134],[-75.3293813187216,64.4681835514633],[-75.53806612300549,64.5663972461998],[-75.713216165733,64.598850230113],[-75.7625024579774,64.5896272178],[-75.784950687129,64.553824557587],[-75.69639309716429,64.4875308134922],[-75.59583596641808,64.4580305174385],[-75.5738331406606,64.4414382297549],[-75.5822913967026,64.4280252405747],[-75.7383863445389,64.4204240737857],[-75.7487699719565,64.36911107076939],[-75.7745935658092,64.3622584194569],[-75.9625512786044,64.3720497699462],[-76.1209300985219,64.3596042872815],[-76.2392702262633,64.3239862345067],[-76.2473661601726,64.3105373696163],[-76.1900171677273,64.2809888303389],[-76.2008204125747,64.2630607828685],[-76.2392281411861,64.25267322646478],[-76.434571798097,64.2484698391834],[-76.5304269864203,64.26747555203528],[-76.6342996068724,64.2729604318783],[-76.693164565111,64.2454978963965],[-76.6104264007542,64.2041404311443],[-76.6209257267592,64.186183165319],[-76.6893496866407,64.1786685770585],[-76.787734635718,64.1930327973937],[-76.9794727048545,64.2495368043744],[-77.0807859181288,64.2592354725962],[-77.1923326505551,64.2508763300013],[-77.303760185026,64.2234818333719],[-77.3670526061993,64.2246864866768],[-77.4180728759243,64.2863056998856],[-77.4944885415427,64.3218296972322],[-77.5758528432918,64.3293458047125],[-77.6490256285707,64.2934565677792],[-77.7913624943888,64.3064503307536],[-77.8299883795935,64.3336159655193],[-77.8201841437251,64.3516578129249],[-77.8486913532462,64.37789935024938],[-77.9915197021442,64.3907287033305],[-78.0148597956337,64.40700409903198],[-78.0051367974724,64.4250618352337],[-77.9647297717871,64.4403790978777],[-77.9500694985883,64.46746058360459],[-78.0769122507727,64.5307914705511],[-78.17032203851748,64.6572929824905],[-78.0934462396996,64.7593925869847],[-78.05010750723498,64.7792510062561],[-78.0352937145126,64.8063519779969],[-78.06239499604489,64.8560772232931],[-78.0405573452859,64.9157158188342],[-77.92310729395369,65.009587409282],[-77.7836145500621,65.0825416111581],[-77.499316340708,65.1186954000136],[-77.3345951891794,65.1559174502892],[-77.3108924594782,65.1964774898102],[-77.3683972293023,65.2681881243184],[-77.3945616092433,65.3370323487022],[-77.3839835420734,65.3550680582634],[-77.3576030942925,65.3621739647053],[-77.2443474454734,65.3471097705564],[-77.2204512612027,65.36867573801709],[-77.3283733671409,65.4117630927629],[-77.309708713835,65.44331980345409],[-77.2699668941618,65.4539582105692],[-77.1853929007491,65.4462400290182],[-77.1222282410912,65.421436268072],[-77.0377904702271,65.4136448335581],[-76.93466808779918,65.418336838544],[-76.85766894212348,65.434930447674],[-76.7838052904244,65.4280028158238],[-76.0947862324037,65.2997383004364],[-75.8976411008352,65.2944820045568],[-75.7161783800678,65.3335256756999],[-75.1931905653095,65.2799068130361],[-75.1289645239845,65.2923242248431],[-74.8931383066242,65.391901852513],[-74.8512586263049,65.3874671485649],[-74.8364652840334,65.3763257210919],[-74.8339631019895,65.3473374706818],[-74.8044404385552,65.3250506628243],[-74.6791714790348,65.3116608719714],[-74.60728604296308,65.3182995009994],[-74.5500093525601,65.3360740300056],[-74.3271807779876,65.4604968725063],[-74.2693932158853,65.4781739198527],[-74.1550250636377,65.4800284945912],[-74.121252188009,65.4955089225538],[-74.02694161544109,65.4850899587293],[-73.9806373267888,65.4631446394035],[-73.9600966670612,65.4680646202715],[-73.7718401677919,65.4470007259994],[-73.6444287408297,65.4662706449586],[-73.62531370701099,65.50738365148628],[-73.6369810445588,65.5375570602653],[-73.8810081601072,65.7620027336394],[-74.1466179251369,65.86804814232329],[-74.2861440057025,65.9599975519013],[-74.3464900837895,66.0193008500285],[-74.4512192369567,66.049679567266],[-74.4960901379787,66.0832458807189],[-74.3445530165026,66.2112306057952],[-74.1656886533245,66.2642090318425],[-73.8650356864617,66.4145901376869],[-73.608727554213,66.4877570970979],[-73.52843443313698,66.5753636811067],[-73.46781369527349,66.6072737306157],[-73.2696944328343,66.6625417905656],[-73.1102694849625,66.6833645800465],[-72.97220252445989,66.67747411372049],[-72.9214480149195,66.6959054084908],[-72.9944461120716,66.7380068814474],[-73.0055948952154,66.76827361979669],[-72.97303298676009,66.8081307614375],[-72.88917698471498,66.85188623401238],[-72.8416419082924,66.8949057356138],[-72.84526906278198,66.9776043210522],[-72.8084093971856,67.0218642509221],[-72.7383987608281,67.0333246084324],[-72.6280255096311,67.0207901426518],[-72.5248318447582,67.0283938936566],[-72.4619383431528,67.0454267316287],[-72.387044198466,67.1047262394305],[-72.2598164152293,67.16770768865499],[-72.2100411437796,67.2250800066227],[-72.2203199951239,67.2554071557674],[-72.3193077549177,67.310502827745],[-72.3886928159601,67.3718421047101],[-72.3915218089389,67.4110066408179],[-72.3445375839371,67.4930736395969],[-72.3880092711281,67.5562989536662],[-72.47390566800799,67.5854301777952],[-72.48391358494908,67.6448333313644],[-72.5884444384302,67.7099543330394],[-72.5610458764754,67.75545581829358],[-72.5679357817094,67.7902202591454],[-72.605381061578,67.8186674233037],[-72.8518202920754,67.8943642572334],[-72.9506326428603,67.9536460592572],[-73.0072220647266,68.1198735091882],[-73.1225483879052,68.2486643289486],[-73.3432998916721,68.2720088069089],[-73.3861196282883,68.2958933983278],[-73.3785621035049,68.3193387671598],[-73.4251843184852,68.3242149297508],[-73.4945727590254,68.2878358877408],[-73.5875045106081,68.2829594002252],[-73.6816282973713,68.3362652230189],[-73.7637373310505,68.359218196558],[-73.81504260649308,68.388663486638],[-73.7923614293381,68.4153949829117],[-73.55907972839,68.4495826448627],[-73.5281411145623,68.4706200431355],[-73.6299598876077,68.4859521635819],[-73.77376140152889,68.4522318816597],[-73.8517635847272,68.4504859286944],[-73.7455653773391,68.5898118821962],[-73.8303576885888,68.6855873071599],[-73.9773753750087,68.7245514170687],[-74.1238043059284,68.734269923399],[-74.1621466828637,68.704195483963],[-73.9704612724547,68.6270383538612],[-73.9096614166313,68.5628384041826],[-73.9286044230839,68.5405459691878],[-74.1708727137265,68.5261017223832],[-74.25343100228578,68.5342942496227],[-74.3249150646837,68.5558540226054],[-74.644690132491,68.7270765998412],[-74.6188618038916,68.7584032644771],[-74.5176126451489,68.7872937010176],[-74.5034772137583,68.8197584225437],[-74.5744007270257,68.8120989952705],[-74.6674426581515,68.777557359587],[-74.7225630610059,68.7731724601473],[-74.8107780691977,68.7912305932099],[-74.8439543347289,68.8136854162915],[-74.8329585087073,68.82712519893039],[-74.664367031368,68.8593741555306],[-74.64581092532559,68.8817576189105],[-74.7140678790717,68.8930971953154],[-74.8995010976679,68.8720293551809],[-74.955842427494,68.882153275292],[-74.94224190065749,68.9146603757547],[-74.8350715935977,68.9190536121786],[-74.81245728781039,68.93864757354119],[-74.90084593841989,68.9493898051266],[-74.91756813384508,68.9606133111479],[-74.9028447998732,68.9785436726649],[-74.7016144103407,69.0175240929594],[-74.686672289007,69.0354374646793],[-74.797200128044,69.0748663853748],[-74.9046245408682,69.0632079219546],[-75.0050762199717,69.0122362139471],[-75.08655978761568,68.9281400910285],[-75.11517104396249,68.92315551001312],[-75.10529191916292,68.85163136181032],[-75.1768809248402,68.91240457],[-75.2177874055313,68.9258269873545],[-75.32404357654629,69.0030859229564],[-75.4498459571708,69.0241816260897],[-75.4905569025435,68.9893243576161],[-75.480679743946,68.9691577824978],[-75.5091729336084,68.9332038312984],[-75.6048241810218,68.8936987951336],[-75.9186451382828,68.8207496134474],[-76.2913978077992,68.6997822328065],[-76.3679630042678,68.68243644090138],[-76.4975749999456,68.67923930282879],[-76.5735226917378,68.7145375045276],[-76.5722853700596,68.7336194839301],[-76.5391239945318,68.7787597703323],[-76.459661622434,68.8343396949926],[-76.4448819412454,68.8714731595202],[-76.48508364645919,68.9037174299166],[-76.5683818949889,68.9300085132462],[-76.6472979867131,68.9798751311615],[-76.6515150943342,69.00902492265548],[-76.6024811259144,69.0576889687452],[-76.3632525080443,69.0661803926364],[-76.01974208915348,69.0412575834221],[-75.9363049534017,69.082046449867],[-75.8736680222576,69.0957829770683],[-75.7694011209046,69.0961926550678],[-75.6944657517583,69.10879258756589],[-75.6778156593597,69.12984807603377],[-75.67311850483249,69.1357880360419],[-75.6653630019374,69.1784484637668],[-75.7368854667255,69.2859474810277],[-76.00085715365628,69.400505228756],[-76.16756208810487,69.41143451970642],[-76.23867287476459,69.4160965921261],[-76.3640383940875,69.4411500481484],[-76.4758088803329,69.4841968808571],[-76.59209447966398,69.5563640922887],[-76.6065862571547,69.5719840898444],[-76.5120957510227,69.6603123030488],[-76.3997665403538,69.6509656710938],[-76.2836643103261,69.578674387727],[-76.2215240058034,69.5734199449994],[-76.2127003314506,69.601549876737],[-76.2930750586884,69.6853356961871],[-76.4250804896557,69.6867513481124],[-76.46201347828561,69.69092744598818],[-76.5841436366685,69.7047369835835],[-76.6418704330264,69.6469898524058],[-76.6737638021201,69.6399982509158],[-76.76566107064905,69.64555239180844],[-76.9020205919536,69.6537937683532],[-77.0439971617968,69.641216327139],[-77.078117904907,69.6487475202605],[-77.09637685187498,69.6598065059199],[-77.0828603951386,69.6779254812933],[-76.8768862513046,69.704595267481],[-76.8402922470061,69.7352654000214],[-76.8676061544133,69.7518858397487],[-76.8572752129715,69.7654652958583],[-76.71997264752899,69.7879739141858],[-76.6899770912408,69.8095705011703],[-76.7619854299798,69.8202299684171],[-76.86394258556798,69.8092463582064],[-76.9474612732803,69.8399785068318],[-77.03229896527978,69.8515511145907],[-77.1058596257915,69.8534991079408],[-77.21173439993198,69.8523174934072],[-77.2435143094378,69.86807347297018],[-77.22372273217958,69.8845658696912],[-77.18297015359919,69.89379840566069],[-77.1144793879884,69.91449623609799],[-77.0542359686593,69.9359327717694],[-77.0582867271495,69.94614222590899],[-77.095509416054,69.954726964262],[-77.1484505040691,69.9455231015618],[-77.1842946742183,69.9315446314392],[-77.2318267577288,69.9143158370166],[-77.2954875175745,69.9028257906593],[-77.3459512137103,69.8890690100856],[-77.3960429592165,69.8720500274951],[-77.4467924046631,69.8722659737564],[-77.5019798830552,69.8707153879184],[-77.55157651535119,69.8686547024612],[-77.5711014340986,69.8521285887964],[-77.5645296237047,69.8418891580838],[-77.4653297778362,69.8352522531019],[-77.45137209265579,69.826856683274],[-77.4646970603363,69.8087063433578],[-77.4965614015106,69.80157830021759],[-77.51314276126189,69.7788859006211],[-77.5608370521955,69.7681847922257],[-77.5893128962179,69.76558191859169],[-77.63310569165598,69.7785307344005],[-77.6978848120408,69.8361978723915],[-77.6853872382214,69.9454934704796],[-77.58878836374869,70.0772281167377],[-77.61646669624133,70.13223495027981],[-77.6490143012866,70.196918785312],[-77.6869555790506,70.2189607651276],[-77.9056527789667,70.2352475456678],[-77.99312472420429,70.2081436507189],[-78.0478614514338,70.2073661724265],[-78.11852366813538,70.2221096482127],[-78.1991693665826,70.2040200020683],[-78.2538821816873,70.2031891196519],[-78.35043253543,70.2388597956749],[-78.3860087150913,70.3227935348434],[-78.4151724786739,70.3392298644715],[-78.5511840398752,70.3392644153831],[-78.5934658808075,70.3565896155002],[-78.6132545327826,70.3866863845723],[-78.7273691083679,70.4185451921986],[-78.9034149654842,70.440207305805],[-78.9461689875781,70.45746372575239],[-78.8176599606483,70.5443670945267],[-78.6118602951717,70.5636947567194],[-78.6021676756241,70.5773860639133],[-78.7306750557344,70.6293378526739],[-78.7842568742789,70.6904426231633],[-78.8633902217076,70.6958168449412],[-78.892540714843,70.6738634904147],[-78.8095659318936,70.63473255040138],[-78.812401127768,70.6109965662422],[-78.8713211304874,70.6054374840053],[-78.9275089630091,70.6235992915098],[-79.0064238030151,70.6289190480752],[-79.0910325494716,70.60589454399758],[-79.0804093829599,70.5812780226487],[-78.9817077094154,70.5650793890423],[-78.9549776645163,70.5441422738128],[-78.9832601759086,70.5030160939423],[-79.0543018365405,70.4791241098713],[-79.11744246910747,70.4359590756181],[-79.13068598707119,70.4269053667258],[-79.2020297459136,70.4221243280582],[-79.2557578820229,70.4639235681922],[-79.4016366436379,70.4496755726448],[-79.4548508218916,70.4722632810597],[-79.4497531658187,70.50058135466038],[-79.5021313436037,70.5039967978789],[-79.61183347832429,70.482462451882],[-79.6790951554987,70.4629318162941],[-79.6907011758844,70.41357649598939],[-79.57126900552718,70.3986968491453],[-79.3013067749563,70.3141069821445],[-79.2105110440642,70.3080415158255],[-79.14318318606931,70.31534116096199],[-79.02038767279498,70.328654575319],[-78.8938337670655,70.315232597859],[-78.8086015246788,70.2615469574034],[-78.7028912827181,70.15833250763195],[-78.6873106915504,70.1431197702977],[-78.64448626995268,70.0683819150769],[-78.6594915400647,70.0072903687484],[-78.7133185434701,69.9871877498851],[-78.84969395328498,69.9633009183041],[-79.3664222887657,69.98912219977458],[-79.63565231902119,69.9640892695483],[-79.7507019289589,69.97162110728819],[-79.80605316881248,69.9895132881124],[-79.8799308534764,70.04193344610908],[-79.9284179611917,70.04980997022528],[-79.99992809134879,70.1067758228686],[-80.0985574127434,70.0987310125155],[-80.2402251109722,70.1076151925601],[-80.3774123900359,70.10183881462899],[-80.5156685237311,70.1388594911548],[-80.6421112012088,70.1512696469583],[-81.60077624419158,70.2065912430763],[-81.6317752986944,70.1988097664364],[-81.6418118223949,70.1803822140219],[-81.61044050648759,70.1644132963028],[-81.330530822984,70.1155018059964],[-81.2400818802059,70.0865973129779],[-80.8358327017242,69.887170937228],[-80.8388594610027,69.8588456124768],[-80.9643791516989,69.82357562790318],[-81.01535079640739,69.8265933695278],[-81.0942960346473,69.8502285847395],[-81.3323862958046,69.9684421094948],[-81.5335593093912,70.0367625815975],[-81.9591317672887,70.06010265810708],[-82.328033500659,70.1695936482614],[-82.5809681953428,70.1967043415622],[-82.9227318251043,70.2893406842932],[-83.0164874740258,70.2891313733116],[-83.0275993346909,70.2660015663607],[-82.9279888088399,70.2233349638177],[-82.7033010808767,70.1649507914773],[-82.1002216759561,70.043938925054],[-82.0066498164465,70.0199903978208],[-81.9438489392691,69.9881750310068],[-81.9374392711492,69.9499084568623],[-82.0849501885983,69.91992623950408],[-82.1295338508502,69.8844042119209],[-82.2309241501503,69.8660980671522],[-82.2984634557687,69.8885907156369],[-82.2973256703254,69.916943985596],[-82.3288613063244,69.9327996098896],[-82.654037223043,69.9684130819789],[-82.8851025601645,70.0366973986836],[-83.0185025725343,70.0621264871254],[-83.1608763398693,70.068969567012],[-83.4193606620639,70.0244104174284],[-83.5011085747819,70.01874361209289],[-83.8135361047856,70.0281677116233],[-84.0535784026848,70.0528636447548],[-84.2000472953856,70.0497077079109],[-84.4744365508857,70.0234481153671],[-84.6521267032342,70.0401205375696],[-84.81858547930538,70.0184712343421],[-84.8927510548853,70.0308136773626],[-84.8488323271233,70.076234777434],[-84.8510027654016,70.10460837439],[-84.9290579667781,70.1076532080083],[-85.0437544599812,70.0837904960487],[-85.6422918617126,70.1057985015453],[-85.7008839953768,70.0890216975417],[-85.7073632623128,70.07041343460848],[-85.68460164243669,70.0601998626961],[-85.60015580508039,70.0465672250089],[-85.535344302651,70.0418372695787],[-85.4518875157506,70.0399933254097],[-85.396330062791,70.0342446481593],[-85.37743649931109,70.0115245308906],[-85.4458436055107,70.0012664719984],[-85.5663766428962,69.9975840213126],[-85.66325289957238,69.9948145114746],[-85.72184493867668,69.9933625933683],[-85.7694984119705,69.99035363115598],[-85.836595889046,69.98925797676749],[-85.8724836798252,69.9926646455557],[-85.96340103844,70.0133180340666],[-86.13982195407469,70.0756680259701],[-86.3739059230894,70.1255612334277],[-86.5393003361226,70.18717006507329],[-86.5977217881486,70.25481707439958],[-86.5994588124553,70.3348558281887],[-86.3404277812044,70.4774924215987],[-86.3445842302937,70.5058731612399],[-86.4110019901429,70.5079418070668],[-86.4405707505186,70.4994396094378],[-86.53503390976869,70.4552586995102],[-86.6348824357364,70.39238910041088],[-86.6406620445498,70.3737392718204],[-86.8188090694682,70.3131503975099],[-86.85693249172189,70.3189640723642],[-86.8387887586742,70.3795891457742],[-86.874248027957,70.3947301018146],[-86.9271389514759,70.3962477980227],[-87.0060592911457,70.4455288656849],[-87.0458280137753,70.446643492315],[-87.0896522369881,70.4337519531304],[-87.1441113422494,70.3835247451474],[-86.9650797401306,70.3126655978421],[-86.96147917082,70.2796441522274],[-87.0181497706368,70.2671457119248],[-87.0970294153525,70.26936208527289],[-87.1851280193806,70.2859055710459],[-87.3825658581832,70.2912288395168],[-87.4904034701406,70.28465568657779],[-87.7130307683969,70.2950088122773],[-87.7333866774044,70.2673226804409],[-87.6354519799448,70.2366781098195],[-87.6390928714877,70.2226737499593],[-87.7357595547871,70.2063017253707],[-87.9171511672502,70.22011861596388],[-88.1304423115358,70.2673794652898],[-88.26551241130089,70.3126896137425],[-88.2622628108901,70.3267081208899],[-88.2193875918982,70.339844251558],[-88.15335922581968,70.3383576864807],[-87.9994939761536,70.316020986346],[-87.9817257102824,70.3343973164734],[-88.0179130086649,70.349338080901],[-88.3932063819285,70.4516842025818],[-88.6302439522335,70.4660139680211],[-88.77252742897198,70.4876292133501],[-88.8827044193244,70.5367142170286],[-88.9055574692239,70.5559299421827],[-88.8988490080329,70.5886812310958],[-88.9456830448432,70.6224361972931],[-89.0935396349749,70.6908889316723],[-89.3362606852509,70.8359866880811],[-89.3265938269117,70.88750351632909],[-89.1684298939755,70.93233041913248],[-89.1871444272202,70.97442603708889],[-89.2243761536595,70.99386082672548],[-89.4356888961542,71.03494226735],[-89.4433123442026,71.0679583007419],[-89.4141935091707,71.0768943978243],[-89.27727369305249,71.0746508082649],[-88.8073745917863,71.02396849919099],[-88.6162789957759,71.0202589555465],[-88.517534793247,71.03238178042528],[-88.40831161224709,71.0301339350369],[-88.34228683599,71.01934099932818],[-88.19235604551059,70.9596731662857],[-88.0610452532105,70.9379377685101],[-87.6609015486504,70.9520499649645],[-87.3497763385511,70.939502037889],[-87.2302883226918,70.9740290387361],[-87.09293660324468,70.9750535956837],[-87.04652801712038,70.9926250024835],[-87.0709405655411,71.00271044613389],[-87.3542688575283,71.0196448590749],[-87.629100627122,71.0689306165535],[-87.7669677702752,71.1193280862745],[-87.8068517118348,71.1767549581767],[-87.8706311247896,71.1970745157077],[-87.9256597487988,71.1983467458521],[-88.0578421518556,71.168397749891],[-88.1540287677896,71.1705281944106],[-88.3248082610992,71.2071365691052],[-88.73804680946098,71.21544648404678],[-89.2389056112409,71.2714612528071],[-89.5413787840449,71.28571401137609],[-89.7726216258344,71.3126348402124],[-89.87803401200918,71.3470151546029],[-89.92124110863898,71.4228236510112],[-89.9064730810303,71.5119633269694],[-89.86899601351288,71.5678905281491],[-89.83932660585599,71.5768905730874],[-89.79337943043429,71.6797410601423],[-89.7985146015651,71.7315663342032],[-89.8580028949136,71.7982535333462],[-89.92974864021728,71.8792114568668],[-89.9232702470813,72.0015007962462],[-89.7984819018602,72.0563215395903],[-89.6017236043559,72.1053441433239],[-89.5972794499694,72.1288261756704],[-89.6813189452198,72.1441608601932],[-89.8122462436294,72.14126468026019],[-89.8812232277191,72.16102478233469],[-89.8554987379286,72.30669024372779],[-89.897263345555,72.4014587535274],[-89.7513670394891,72.5550280514137],[-89.68692469540188,72.5824247503529],[-89.57970394495429,72.599771500933],[-89.5815806043713,72.7412529233345],[-89.48538642105599,72.7728795065155],[-89.41068444518419,72.7717742667502],[-89.3389791668886,72.7565395436893],[-89.3071198526203,72.7654869328467],[-89.3020928031401,72.7889946491024],[-89.36595751182318,72.8418611491708],[-89.3318933603471,72.9309894715893],[-89.1007956462191,73.1492331477547],[-88.5607829981866,73.3998397306502],[-88.0007561060603,73.61134348966898],[-87.45540160313348,73.7369600147209],[-86.968518351032,73.8108291060062],[-86.3398330800405,73.8278603102639],[-85.8934660537524,73.86285465742779],[-85.37621410319979,73.8378838668205],[-85.0449106279371,73.7941027092204],[-84.9215095358176,73.7520353929027],[-84.9014814580302,73.7276046898852],[-84.9553482174566,73.6818624356968],[-85.0534846598738,73.6423241111625],[-85.4826355922953,73.5325351811218],[-85.9604652962985,73.366680302691],[-86.1306741714575,73.25311626277349],[-86.28282270424089,73.1011167642968],[-86.4750087615009,72.9975762852127],[-86.6329739294278,72.9403521210291],[-86.71833542659428,72.87166947199698],[-86.7664818731041,72.7357886764235],[-86.7482953243482,72.7022028017277],[-86.7038453117048,72.658454847891],[-86.62671407019708,72.623260493769],[-86.5746850384511,72.56036221541208],[-86.3288027611774,72.4210179588462],[-86.3527992299549,72.3555226970521],[-86.4903641960045,72.2176811929829],[-86.5151351773241,72.147516222821],[-86.49334382000599,72.0854835006432],[-86.3383697372927,71.9109418207379],[-85.9920640335351,71.72091844458969],[-85.7095434049162,71.5654143164777],[-85.40097000088959,71.4510819313111],[-85.1523489767193,71.4045455011609],[-85.08067247769519,71.37361223169819],[-85.0644288777775,71.3446687964528],[-84.9911771741031,71.3183681623229],[-84.9969089136289,71.304399946009],[-85.0577092101046,71.2924415849327],[-85.2110813817521,71.2932409468026],[-85.3120868478226,71.2495842720834],[-85.4018178254871,71.2338374332789],[-85.6681923637288,71.2287877689755],[-86.3689652148524,71.0484142288051],[-86.4705815076072,71.0326356531434],[-86.6371170726342,71.0281467002726],[-86.6673587521042,71.0196056664358],[-86.6748266730012,70.9962658559999],[-86.6249246362068,70.9806711939373],[-86.5026119665758,70.977043969225],[-86.3589491169011,70.9962575260354],[-85.6051137826313,71.1747351042068],[-85.2764253705247,71.1633143346777],[-85.1713635272293,71.1831698654563],[-85.0617909551651,71.1791959385862],[-84.9811251715988,71.1384372522172],[-84.96895957424069,71.1001917408605],[-85.0291542765813,71.0882462531722],[-85.0973246541902,71.0907462977548],[-85.1338602479816,71.068463481476],[-85.0108154888246,71.0308907259534],[-84.9883662759154,70.949770645275],[-84.8778918386718,70.9172896983873],[-84.8181181344283,70.9291899086907],[-84.77574850150289,70.9653639377953],[-84.82800308190934,71.03458487212814],[-84.8381685001326,71.0480508638522],[-84.78609720339169,71.1736677099957],[-84.8199323222855,71.326203105792],[-84.7885576378601,71.4006759626349],[-84.584950037152,71.40004348046828],[-84.5294367900234,71.41445790006249],[-84.487466109008,71.4459513015329],[-84.5696741361042,71.54848613168599],[-84.53731696448469,71.58983517954988],[-84.5509008080362,71.6234848858273],[-84.6086061274098,71.65407958782998],[-84.70467662622428,71.66243077818748],[-84.7928035022815,71.6562515606189],[-85.03852274544438,71.613193021648],[-85.19125648251669,71.6564543228362],[-85.3437073396132,71.666494608911],[-85.4626847346457,71.6894665972656],[-85.5342181812081,71.7249633472106],[-85.56497677897119,71.79216091581159],[-85.6352311590007,71.8322987222477],[-85.758942727446,71.8835930197488],[-85.9545008341796,71.9370639825724],[-86.0403248817633,71.97753233989279],[-86.03160827991539,72.0008911545045],[-85.9673990694657,72.0178071483669],[-85.7009064748132,72.0329976169134],[-85.6506155083142,72.0502825624724],[-85.6321278808073,72.0969752071735],[-85.4159778349257,72.1276887758666],[-85.4351957666423,72.1519892332855],[-85.5302953024139,72.1693314304937],[-85.5113702869364,72.2160218088726],[-85.5597078913693,72.2412642535111],[-85.5319727780743,72.2734826419264],[-85.4305940500065,72.2701426724598],[-85.3206250842568,72.252266045004],[-85.0150080999041,72.2464890284052],[-84.4073316811614,72.0063051521049],[-84.3213335086331,71.9413984088504],[-84.2490918155667,71.9101535017631],[-84.2021918665903,71.91779022355729],[-84.1825651166005,71.95967132228978],[-84.2945440261609,72.0303959030944],[-84.8416286519693,72.2403347723769],[-84.878843907388,72.2890378589361],[-84.8623099938039,72.3263487748354],[-84.8125327394008,72.3387842595089],[-84.5260571999895,72.3520276858684],[-84.4592837789759,72.3685040010849],[-84.4505689523248,72.387143730996],[-84.47531008665929,72.39755257215928],[-84.5480909962799,72.400254884899],[-84.5960643062388,72.3925404943875],[-84.7125175387364,72.39678891541129],[-84.7893909317069,72.423256357086],[-84.780971884026,72.4419118783706],[-84.81846711406018,72.4574725426065],[-84.9207500492946,72.46109441610909],[-85.0767487771161,72.4096770968359],[-85.1682490217,72.4033461859277],[-85.3957026318073,72.4252013620969],[-85.51749712897019,72.4528707839093],[-85.6046277664658,72.4935564933879],[-85.62513925172759,72.5889015748573],[-85.7479506483707,72.6543219242341],[-85.7103442887677,72.8567977775517],[-85.6518947307912,72.8881383965128],[-85.4973057139234,72.9306450099921],[-85.2165342559149,72.9120331020188],[-84.2117364732244,72.7292695167455],[-84.1706145125389,72.751448834186],[-84.2709765778416,72.7932247496274],[-84.571531237594,72.8612478596003],[-84.85939464416978,72.8951661147109],[-85.0262753156967,72.92936166808579],[-85.23526455488499,73.0074891360546],[-85.3256311610555,73.0104463042396],[-85.4492456363942,72.9717669578882],[-85.6578415236793,72.98309389219229],[-85.6781672165238,73.0074186932639],[-85.5567876838667,73.0415477815537],[-85.5388008047664,73.0836452542277],[-85.48534501103188,73.1009236898628],[-85.424782011416,73.0989955686701],[-85.3544870938664,73.0493174935151],[-85.2488332749484,73.0458765690676],[-85.1993917063919,73.05373599147039],[-85.2045417253878,73.1108271438227],[-85.08129130732999,73.111485625674],[-85.0120273930246,73.0949234157853],[-84.7830351083705,73.091826229497],[-84.6302318276291,73.0579743734066],[-84.265010466672,73.0209688452806],[-83.6214220066425,72.9913872937758],[-83.5814459296375,73.0088094610545],[-83.6441215032948,73.0350995035009],[-83.75708479887,73.0538376480276],[-84.2567951050015,73.068171170057],[-84.6851994168033,73.1358849689155],[-85.0860643951329,73.1685852733667],[-85.1818615686356,73.1954798126946],[-85.2017546757259,73.2198556915025],[-85.1784621360771,73.2712942308138],[-85.11764841568389,73.3025189455962],[-84.87699154268279,73.3514451257523],[-84.78273289874008,73.352978763775],[-84.6980040100108,73.302550806685],[-84.5176802137495,73.2581991571775],[-84.456687195878,73.25601924895318],[-84.4215575037996,73.2642592944289],[-84.4122624379251,73.2829313150227],[-84.537438880824,73.34442874033059],[-84.558896862119,73.3641923380447],[-84.5427561983318,73.3968891235418],[-84.3832995898999,73.4339946649409],[-84.19955373809209,73.4558592414032],[-83.8607557985243,73.4431920921364],[-83.7450350412704,73.3959122025448],[-83.696172808888,73.3416601038295],[-83.6171283278839,73.3147590728175],[-83.5534926914438,73.31700405935058],[-83.5178195632928,73.32510699154818],[-83.5049617399522,73.3483999298988],[-83.6018426780817,73.428414552077],[-83.6788052220314,73.4599870308856],[-83.8769878511384,73.5009231396732],[-83.8619382919605,73.5289109533858],[-83.5810163212052,73.57999222856618],[-83.4253921575897,73.6310415105855],[-83.28499726192499,73.6540365790974],[-83.1084752648706,73.6564135589957],[-83.0041243099925,73.6711968097433],[-82.8927547703683,73.7238261665611],[-82.8218646088099,73.73517547100649],[-82.38515362116009,73.7164223411725],[-82.0430624010392,73.7250583689401],[-81.8346058129802,73.7489994341004],[-81.6164777125133,73.738823873055],[-81.3786643913229,73.6412978123803],[-81.3301602252866,73.5958493939961],[-81.2917820039738,73.3976958307622],[-81.2218927806002,73.2697951583168],[-81.0959403609925,73.2251717399583],[-80.9060922154328,73.2059015973151],[-80.7329583595473,73.163382657318],[-80.6271839638414,73.1146949912497],[-80.5897400988616,73.0360525854041],[-80.6579589813561,72.939109139008],[-80.5563986200228,72.8426794129829],[-80.4348152965865,72.7977639162162],[-80.4784463974135,72.7139492108806],[-80.6480108340036,72.6226577302056],[-80.6764238878425,72.58113585550758],[-80.9598280456449,72.4959005031935],[-81.2765364557312,72.3310204835985],[-81.35226425109718,72.2585860837407],[-81.2863820069159,72.2456186857643],[-81.2286279577482,72.2664670915934],[-81.2138518773478,72.2895611214576],[-81.0237581291103,72.39894124661728],[-80.7794778031623,72.4958256187744],[-80.7058182204797,72.5157604463916],[-80.6477319439382,72.5126071517244],[-80.6167743987206,72.4917858419218],[-80.7134657842501,72.3488152447893],[-80.8653537534466,72.2996972465225],[-80.96727067949298,72.1666591046321],[-80.9027316823197,72.129747172967],[-80.7664432848921,72.1127639452783],[-80.7328992001369,72.0965896219284],[-80.7450400893016,72.0781478998208],[-80.8362663245598,72.0735978530837],[-80.9124960153586,72.0920735428994],[-80.983580669932,72.09591421638879],[-81.1380702599771,72.0612295887903],[-81.09305714809469,72.03973833178618],[-80.9259254033774,72.0259550319224],[-80.950389160557,71.9652248203376],[-81.081504824578,71.9198247508063],[-81.0902625220929,71.9059832276996],[-81.028638555709,71.8883433460863],[-80.9465101365182,71.9029681103733],[-80.77408345667858,71.9889979881605],[-80.4865686762547,72.0685447016268],[-80.4648845893981,72.1007868751857],[-80.4808919806793,72.1208106307859],[-80.5954328426765,72.1702291336915],[-80.5799811501735,72.1932745041948],[-80.5452254888072,72.2009039844081],[-80.3930590438753,72.2067267941076],[-80.377325826505,72.2297582710136],[-80.4125140576765,72.2652214409431],[-80.37608214029109,72.2966620105076],[-80.2788786154789,72.28639269070568],[-80.0884289077259,72.21806261473068],[-79.7746584253075,72.1374311602725],[-79.7036541398103,72.13319997396358],[-79.6686583478716,72.1406894408224],[-79.6554298559268,72.1590660900197],[-79.7176631921236,72.1963255294412],[-79.9306966539205,72.2519993119865],[-80.0080613631292,72.2900245514265],[-80.1384879874468,72.3166882895157],[-80.2308945377028,72.3554633072108],[-80.16661678677539,72.4044764722754],[-80.0008425663169,72.44767924583789],[-79.9123611326818,72.5288401661136],[-79.8365168014976,72.5292425644591],[-79.7919490612091,72.5074710051262],[-79.8020713404184,72.4313564482187],[-79.628751444009,72.3396270085652],[-79.6965046647015,72.2669532878924],[-79.6526608995628,72.2451698590037],[-79.5846288338836,72.2363046532852],[-79.5174845659933,72.2466475981027],[-79.3255289512929,72.3645424577213],[-79.2721302188345,72.3756861783917],[-79.2003458310442,72.371287293123],[-79.0736169052017,72.30102990373828],[-79.0104113765744,72.1482229104805],[-79.061757969862,72.0602526001183],[-79.1036838611378,72.043691975992],[-79.1445679081611,71.9886841289424],[-79.091269334064,71.9613421736833],[-79.04191216921,71.9486271273685],[-78.8629887038386,71.9324080493358],[-78.6527965439854,71.84194318916069],[-78.5552153389397,71.83552576821988],[-78.50638596013559,71.84190635590359],[-78.4923095107454,71.8601947198297],[-78.5236204822367,71.8766796554503],[-78.6703526817741,71.9151352246576],[-78.7334832025696,71.94805646667749],[-78.81973035169119,72.01576925912839],[-78.8536028375039,72.0422378230062],[-78.8787441723142,72.0870623344723],[-78.8543302973324,72.1191253342886],[-78.8155174531703,72.1310582154789],[-78.5997195922649,72.1219560144775],[-78.4446796324613,72.0733554765322],[-78.4169779541445,72.0330623645998],[-78.4566207145511,71.9443389670284],[-78.1968824044248,71.8067460229437],[-78.1701120888414,71.7978765828433],[-78.1643295670988,71.7877853678827],[-78.1094114053695,71.769202724227],[-78.0494157162881,71.7634457814084],[-77.9958182747698,71.7714312060363],[-77.9909477969037,71.7873559390962],[-77.9913773705795,71.8077800099331],[-78.0146897888027,71.8269555059533],[-78.0508905180958,71.8491811030259],[-78.1007234357095,71.8561604043962],[-78.1642255061357,71.8723452160838],[-78.2115630846821,71.8892842648168],[-78.2264149081537,71.9077626807416],[-78.200844215798,71.9190191837987],[-78.1515769654626,71.91823749941139],[-78.1007228479184,71.9122219826718],[-78.0575604995175,71.8976199351116],[-77.98050288869,71.8721737879635],[-77.9207418119333,71.8450014491351],[-77.90672643294359,71.8224703134315],[-77.8978608153473,71.7942287286377],[-77.8536102685094,71.7570377534527],[-77.7814015747522,71.7338977062608],[-77.7404166443593,71.7346744075533],[-77.7064314705632,71.7428676970457],[-77.6982036716269,71.7530492872714],[-77.74733590178388,71.8191020877369],[-77.9834027818733,71.9461726353048],[-78.2245935230511,71.9769594825247],[-78.2903905453018,72.0246579049022],[-78.3066162205955,72.0978952624887],[-78.38020561333168,72.1364385286778],[-78.4543078530938,72.15574075867349],[-78.6810591552732,72.1704772943301],[-78.7449194484172,72.18419312718798],[-78.7947632450411,72.21621250484048],[-78.7345228999555,72.3325281006327],[-78.6414550312996,72.3554325161924],[-78.5485066822443,72.3398325885255],[-78.5740572610508,72.26933839647369],[-78.4996151945173,72.230844260467],[-78.3465747347115,72.2352590045621],[-78.3531563440813,72.2645643407561],[-78.42043580028698,72.2930307471769],[-78.38063912610349,72.3241141441526],[-78.1317767028561,72.2787942344272],[-77.896633805963,72.2726146505239],[-77.6968872714088,72.2059286849041],[-77.597773979678,72.1990690812461],[-77.3443855743221,72.21510186801859],[-77.3327406703257,72.2287629504945],[-77.3674811408955,72.2408686052334],[-77.5840798092451,72.2511781193767],[-77.8057197255507,72.3098201515693],[-78.0834502301806,72.3381849232166],[-78.3223135564226,72.3780585825971],[-78.4473099587125,72.4102721824942],[-78.5008386819719,72.4377936141378],[-78.5470201081569,72.4936983331737],[-78.4519594408772,72.57423815442819],[-78.3203822433469,72.6235378600193],[-78.0603662268926,72.6788573063921],[-78.01676060403038,72.67598417153098],[-77.96848989813029,72.6969101337412],[-77.7074519032342,72.7325805448953],[-77.4213658995345,72.79530644484808],[-77.1880101363702,72.7792179222136],[-76.97813948860669,72.7887295829368],[-76.847080300892,72.7794532327485],[-76.7474442227704,72.7190572763545],[-76.6378708306775,72.6869381334444],[-76.16539838126229,72.64734617167218],[-76.1350079362991,72.6305103556787],[-76.2117004007265,72.548905693604],[-76.18140875541428,72.5320824120872],[-76.0884492314176,72.549353904109],[-76.0542153269499,72.5856038902238],[-75.9349184848627,72.629997128759],[-75.8054564274748,72.62013452144748],[-75.65499761912328,72.5842616440871],[-75.5116577250633,72.5731251525049],[-75.3220225703125,72.5777075700311],[-75.2361368183421,72.5709129910535],[-75.1772863857926,72.53701138221619],[-75.132626346877,72.4116903655373],[-74.9495634326828,72.3189292134209],[-74.9846326599502,72.2682147731349],[-75.2284218397871,72.2052631632543],[-75.7748047760643,72.1709371604567],[-75.9937377974646,72.1297431247903],[-76.176300702452,72.0613939134001],[-76.4502702474959,71.8886293916897],[-76.43054827477359,71.8774526307404],[-76.3849311638607,71.8788156224408],[-76.28730991947819,71.9052315113473],[-75.9263886437566,72.1051233721185],[-75.8171142540736,72.1257138940896],[-75.4015604510303,72.1511083764611],[-75.293886399846,72.13759476483258],[-75.2649732891476,72.1206706283445],[-75.2953629790615,72.0890930845687],[-75.42161272871888,72.0502501447416],[-75.4980444011317,72.025358973535],[-75.576699116776,71.9895578046767],[-75.6386126180775,71.96565062317748],[-75.7067375829285,71.9154998019086],[-75.751952347103,71.8592844783151],[-75.7957031708115,71.8364376183775],[-75.83559925196,71.8132435181572],[-75.8841216945123,71.7894855567508],[-75.9325175425119,71.765719265632],[-75.9957370435026,71.7432751958665],[-76.0315126085948,71.7237313426491],[-76.0337086505491,71.705204505971],[-75.9802242908096,71.6977490774819],[-75.9207546378053,71.7084702613465],[-75.8650066071449,71.7275448386587],[-75.79926224550988,71.7684715371024],[-75.7793730738656,71.7880987977224],[-75.7469551502143,71.7999038043046],[-75.7294674845226,71.8210948838564],[-75.6806836895847,71.8407990513025],[-75.6012827667256,71.91804142806939],[-75.5355222243964,71.9576677095877],[-75.5013052374651,71.974879906941],[-75.4778128005504,71.9920235654431],[-75.3879465540841,72.0236589274213],[-75.1968057623157,72.0665124794644],[-75.1514904402718,72.08227534281409],[-75.1121057676419,72.1228481256829],[-75.006979966483,72.1531840310506],[-74.7934246842608,72.15504800091848],[-74.6578256014567,72.145415512328],[-74.39810638007138,72.12671015315028],[-74.2540786279948,72.1046469898621],[-74.1612438003506,72.0771222287819],[-74.1009947096937,72.0474862781173],[-74.0823988627241,72.0067956388227],[-74.12796070237678,71.9179854855496],[-74.2324012380991,71.829473021475],[-74.3413812594081,71.7950347524447],[-74.4462297654995,71.7943357367288],[-74.5188044609105,71.7810779991891],[-74.59962002354548,71.74415504308558],[-74.7664477797418,71.7096764684134],[-74.9247763192921,71.6987184831721],[-75.10256837173279,71.713578056848],[-75.1701106325867,71.7046048922287],[-75.18713148661539,71.6865795683411],[-75.1682965435627,71.6753034205798],[-74.990800556719,71.6604991347073],[-74.9627566724411,71.6435601486784],[-74.99701573604818,71.60754761605028],[-75.3116185047963,71.5220721478538],[-75.3366518546311,71.495026751832],[-75.2866410955327,71.4860260422544],[-75.1844284070997,71.5017907078453],[-74.8079403192319,71.62075286459589],[-74.7182269999635,71.63744326477568],[-74.6724909147475,71.6238041430425],[-74.6985628417162,71.5968347264849],[-74.8403969015723,71.540828709544],[-74.8789333776249,71.5003462254641],[-74.7596226211734,71.4415341754595],[-74.7540746021698,71.4167450226776],[-74.8130769516849,71.3391687161306],[-74.9827746578606,71.26624875716648],[-75.0120402514499,71.2347540149482],[-74.9577998653084,71.2155497134627],[-74.6612705396765,71.3309261333369],[-74.5882532814376,71.4072874799425],[-74.6134765635614,71.487327206707],[-74.5526567832915,71.5502144977182],[-74.3565651545151,71.6452368253832],[-74.3239253725561,71.6565515610393],[-74.22147080790978,71.69194402901049],[-74.1719598006984,71.7266268346925],[-74.1311625585275,71.73768170045018],[-74.0810946006202,71.7283978283358],[-74.1260124972424,71.66892624884109],[-74.1033046530586,71.6620448543519],[-74.0535141185081,71.66740365930988],[-73.8219035080808,71.7493504667805],[-73.7170668484571,71.7643981229512],[-73.648866458307,71.7582618612875],[-73.62185161438218,71.7411561353883],[-73.68179017002029,71.6830153993428],[-73.8272181755237,71.6277074545195],[-74.011880160388,71.4734211872609],[-74.0566202342796,71.4579102248306],[-74.1908434482487,71.4405994029013],[-74.1860003502484,71.4157994885991],[-74.1054049845442,71.4086283260288],[-74.087406707701,71.3972697853321],[-74.0871065971377,71.3679923216321],[-74.2275743354959,71.23923538583908],[-74.1740555463102,71.2198366776576],[-74.0856535083434,71.2362617229687],[-73.8682945866899,71.48492770406159],[-73.6966358532612,71.5817375143929],[-73.6198981382372,71.5845426131208],[-73.5798597231959,71.551569055791],[-73.6044928165303,71.4121126096656],[-73.56452910339678,71.3937833347087],[-73.4525955238187,71.4030048792524],[-73.4307261743105,71.38142560999029],[-73.4489790963254,71.3635644372351],[-73.5925493192066,71.30843484193899],[-73.7624497663152,71.1093291632235],[-73.7316610140086,71.0967334541347],[-73.6611016009101,71.1097253703539],[-73.6079625872732,71.1340833648427],[-73.5807945032767,71.1901468259238],[-73.4816715261319,71.28840569562088],[-73.4323404691761,71.30825544219059],[-73.3786983735033,71.3179251152776],[-73.2321820033227,71.3042062711382],[-73.1973383429614,71.2813561191078],[-73.3197478065816,71.19019686613258],[-73.3208601312294,71.1463130459855],[-73.375339776127,71.0781507300111],[-73.4593984694498,71.05186633391628],[-73.486183041173,71.0250839383288],[-73.4556762889127,71.0124522630473],[-73.3897164694764,71.0208878184141],[-73.3098470233857,71.0573092880298],[-73.1558854672738,71.1942773430847],[-73.0206251070865,71.2548147002143],[-72.94567762875019,71.3407063655708],[-72.9576580696846,71.37123566120668],[-72.8236111484751,71.4564626659096],[-72.8441102727916,71.4927342392823],[-72.8109327475893,71.5238955820435],[-72.6557343754951,71.5581109024815],[-72.5952050562542,71.5866559926901],[-72.5275546536407,71.6488983112639],[-72.4859938636254,71.65963132966098],[-72.4492547840848,71.6659140385747],[-72.3547757578259,71.6567695579815],[-72.2885653514707,71.6355836037616],[-72.1001082440389,71.6171172023687],[-71.9756226617128,71.5949652000269],[-71.96075061314568,71.59044177205882],[-71.831123833009,71.5510149641086],[-71.4987155396798,71.50261652204989],[-71.47993320575355,71.49640295575634],[-71.3907176637293,71.4668886958693],[-71.32813680978852,71.43070488850395]]],[[[-68.3565682026677,68.775369653725],[-68.2971734056085,68.7923697936882],[-68.0553099769415,68.7701751799122],[-67.9593101876158,68.772246468928],[-67.8038669715989,68.7562886717011],[-67.7495417024476,68.73399060058858],[-67.8488259548621,68.717545684823],[-67.9825471662963,68.7405318070531],[-68.2272346415904,68.7483249954307],[-68.3431722654349,68.7636681125619],[-68.3565682026677,68.775369653725]]],[[[-67.9547539513226,68.6024614826389],[-67.990904469156,68.6172863785746],[-67.95470026558898,68.6372766994794],[-67.8493081876071,68.64791310168219],[-67.7967253327401,68.6358035718843],[-67.810069058491,68.6127237396618],[-67.9547539513226,68.6024614826389]]],[[[-65.6951807726077,68.119236726025],[-65.7285988646309,68.1242869044519],[-65.7463835034307,68.1420509747389],[-65.73806127389508,68.1810194637645],[-65.6902149550503,68.2090124749982],[-65.6455177211563,68.20226848671038],[-65.6212118172112,68.1684041289243],[-65.6624554551783,68.1243435671792],[-65.6951807726077,68.119236726025]]],[[[-65.4943337975805,68.0786637302783],[-65.5779980375721,68.0964403731233],[-65.5681599943729,68.1150718523197],[-65.4417599027978,68.1209796214031],[-65.4300539233567,68.1091204780908],[-65.4616199747247,68.0837347057103],[-65.4943337975805,68.0786637302783]]],[[[-65.3257164201667,68.0125223214983],[-65.3653011474207,68.0337248004454],[-65.3389875771216,68.0548640273213],[-65.2951858572583,68.0582005701024],[-65.2498359528065,68.0310480084848],[-65.2656599464705,68.0183732088018],[-65.3257164201667,68.0125223214983]]],[[[-66.2037803495572,68.29304324315899],[-66.2987215274434,68.2092191442417],[-66.3314184004698,68.203998468539],[-66.37531666480449,68.2004160521824],[-66.49878565818898,68.2184623349569],[-66.5814753528279,68.2154741355698],[-66.6387628327484,68.2337898391078],[-66.5918863343514,68.2620297255605],[-66.5356123607342,68.2538644400122],[-66.43740594383,68.2696170993961],[-66.3259089503223,68.2633386866895],[-66.287968213406,68.2728158178978],[-66.2569983013804,68.2983564161181],[-66.2037803495572,68.29304324315899]]],[[[-66.1884546235567,68.1396214075643],[-66.2324198873964,68.136575717322],[-66.26365504854,68.1416131849561],[-66.2871578598087,68.1501890853525],[-66.2795837721572,68.1657327281516],[-66.2277940579219,68.1837423800706],[-66.1990928976594,68.17671875083958],[-66.1742138482579,68.1595206712383],[-66.1884546235567,68.1396214075643]]],[[[-65.8896439566668,68.0956005719843],[-65.945373903136,68.0767553205703],[-65.9752059859652,68.0924266725931],[-65.983013622895,68.1032953175114],[-65.9791645240853,68.1230585122437],[-65.9753000445891,68.140423079266],[-65.97274186921,68.1688011013821],[-65.9454312014463,68.1775508289086],[-65.914209174294,68.1772580607211],[-65.8895127888866,68.16722368675039],[-65.8896439566668,68.0956005719843]]],[[[-66.8433754840066,66.4641211174473],[-66.8756946535983,66.4572000975857],[-66.9142071014239,66.4657863623981],[-66.9241438716701,66.4827365794618],[-66.8985410027361,66.5047225894735],[-66.8730944333997,66.5103371648836],[-66.83013272508639,66.5031951194817],[-66.8158554182664,66.4876942908631],[-66.8433754840066,66.4641211174473]]],[[[-66.8586748199796,66.401838375672],[-66.8147025075476,66.4199773952507],[-66.7727181893687,66.4135660909318],[-66.5570880761367,66.3306770653231],[-66.5454414606265,66.31892363128189],[-66.563922142279,66.3018871726526],[-66.641633392712,66.30892041606678],[-66.8409748629275,66.3842355119584],[-66.8586748199796,66.401838375672]]],[[[-66.89560741550189,66.3434409800325],[-66.9483692428889,66.3272460557108],[-66.9799768255435,66.3346900965393],[-67.0027430548262,66.3428410675967],[-67.0161584067981,66.36144803496498],[-66.9905153900722,66.3790318916285],[-66.9222994354975,66.3753412756464],[-66.89560741550189,66.3434409800325]]],[[[-62.91888908785619,65.2728236696833],[-62.958334056698405,65.2801019801316],[-62.9681413407721,65.2920271947992],[-62.928455461257705,65.3150778093294],[-62.87910095910169,65.3059711892346],[-62.869329325016594,65.294038720968],[-62.8892334498675,65.2774678239355],[-62.91888908785619,65.2728236696833]]],[[[-68.4747557047641,70.1834938910528],[-68.5433377145347,70.1677079112797],[-68.5724685510605,70.1732746622967],[-68.592410377073,70.1823790476508],[-68.58768537487178,70.1929213086818],[-68.5564689960919,70.20625528245579],[-68.5386152249159,70.2198093555525],[-68.496910517616,70.2237217745989],[-68.4653669802996,70.2130230800648],[-68.4544036195236,70.1971346664843],[-68.4747557047641,70.1834938910528]]],[[[-67.7519179936817,69.5674133913628],[-67.6911988174126,69.5943994799077],[-67.518563563054,69.6215863667731],[-67.3881866119317,69.6142579693563],[-67.3616574943341,69.5906907700169],[-67.424106731919,69.5740000524091],[-67.5475838827745,69.575414374392],[-67.6853965793893,69.5536549014161],[-67.7384759131973,69.5556548710914],[-67.7519179936817,69.5674133913628]]],[[[-68.0435208949418,69.55561031497739],[-68.233645016259,69.605106831391],[-68.2542367914987,69.622700663902],[-68.2387463925095,69.6356624012951],[-68.0111115770057,69.6861125684465],[-67.8736141109765,69.7531655901334],[-67.75973216224499,69.7433292870783],[-67.7191892559569,69.7080370579915],[-67.7652406683013,69.6590923435904],[-67.8155666824963,69.6406995628939],[-67.9165042442062,69.5690062198967],[-67.9732520027764,69.55644682928369],[-68.0435208949418,69.55561031497739]]],[[[-67.9151276207012,69.1448755766032],[-67.9504201000665,69.1495518589747],[-67.9704780000062,69.1671569882186],[-67.9434303243314,69.1785281576704],[-67.8963165882166,69.1722884342808],[-67.8829792592108,69.1605472820687],[-67.9151276207012,69.1448755766032]]],[[[-67.583493767036,68.9259177020605],[-67.638369423721,68.9202456220645],[-67.6823604244231,68.9164378511123],[-67.7152842923999,68.921310994814],[-67.7368834215193,68.9306984132141],[-67.737732886768,68.9432157325037],[-67.6989617204292,68.9560751054851],[-67.6500486847236,68.957103020097],[-67.5775947013959,68.9546215266864],[-67.5538135344626,68.94695403982318],[-67.583493767036,68.9259177020605]]],[[[-67.4354093839046,68.877922347484],[-67.4788204131728,68.8789086159824],[-67.5125171148574,68.8787771624033],[-67.5437426539035,68.8762027760781],[-67.5854501662019,68.8741518485674],[-67.6163425190927,68.8849501405519],[-67.5952831915349,68.9014479698047],[-67.551807772695,68.9135776353974],[-67.5040928890034,68.91370087935898],[-67.4466334464989,68.9061503904471],[-67.4189087440783,68.8885537370302],[-67.4354093839046,68.877922347484]]],[[[-67.8888594226738,68.90220995747389],[-67.9304093791096,68.912753099433],[-67.9569303347055,68.9362138961063],[-67.9267430592013,68.9620676320466],[-67.8882694051224,68.9718720267076],[-67.8299141134097,68.96406371000398],[-67.81670131830158,68.9523238086353],[-67.843872192658,68.9061403825305],[-67.8888594226738,68.90220995747389]]],[[[-67.4815191477341,68.8359527535652],[-67.5977979647636,68.81194218287659],[-67.6359391163886,68.8103987100742],[-67.6326066803724,68.8305572980279],[-67.6058268031252,68.84722711071069],[-67.5491338710956,68.8501385163553],[-67.4815191477341,68.8359527535652]]],[[[-66.8430152188334,68.59712708539598],[-66.9261799077151,68.59926613314019],[-66.9464743719821,68.6200162751314],[-66.9112009125264,68.6301178141244],[-66.8836701640462,68.6320841453914],[-66.8374333412639,68.6249302700113],[-66.820991301199,68.6140876516747],[-66.8430152188334,68.59712708539598]]],[[[-67.00368220384759,68.5446037231334],[-67.0624542622148,68.53638386047389],[-67.097970278808,68.5366743389918],[-67.1259387360688,68.5471809174476],[-67.1357467021725,68.561103801906],[-67.1157147933907,68.574589578142],[-67.07800762129239,68.578117970368],[-67.0479823703222,68.573501174765],[-67.0201078027543,68.5650663982376],[-67.00368220384759,68.5446037231334]]],[[[-67.3583791503353,68.5444385957464],[-67.38462702632279,68.5628960128407],[-67.3530595684765,68.57256921375],[-67.3119858512891,68.5766586478898],[-67.2356861124382,68.565023544741],[-67.2281422806763,68.5421303256842],[-67.2800698014764,68.5366412250195],[-67.3583791503353,68.5444385957464]]],[[[-66.7388920850969,68.3480219167054],[-66.8009877404625,68.3561487309469],[-66.8337151486153,68.3552984516309],[-66.863978189157,68.3588346885967],[-66.8748783392002,68.3700875109634],[-66.85957600766298,68.38203027203869],[-66.8417051716656,68.3959587915054],[-66.8130846237394,68.403433660246],[-66.7722912164838,68.4006390889321],[-66.7417652822692,68.3898819969518],[-66.712330931471,68.3709220507638],[-66.7388920850969,68.3480219167054]]],[[[-61.9488512644709,67.1232988488866],[-62.00022891438319,67.1208379890143],[-62.0287347879623,67.1161702465744],[-62.0543469255139,67.1194647766867],[-62.0935106156541,67.1253924941789],[-62.112889904582495,67.1359856727169],[-62.10809720952369,67.1452844401782],[-62.080558341455095,67.1552738333993],[-62.058318950674,67.1645905208728],[-62.0176595398215,67.1686083199474],[-61.9702089754708,67.1712928445403],[-61.9397184132059,67.1653324488017],[-61.92377561435799,67.1553832602253],[-61.9156038815106,67.1401211812336],[-61.9488512644709,67.1232988488866]]],[[[-62.2084779019823,66.9705782822055],[-62.257411279815194,66.966492379502],[-62.2921508714812,66.9783555680139],[-62.290411957942005,66.9916318791332],[-62.24934400535359,67.0142931404319],[-62.224830818014794,67.0163359904465],[-62.19592513331029,67.0124107938494],[-62.16838178002719,66.9985261224503],[-62.2084779019823,66.9705782822055]]],[[[-62.6099236726814,67.0259913581927],[-62.6400625191018,67.06193850680638],[-62.585302689733204,67.1032998846696],[-62.324919946689796,67.2104415025819],[-62.260524496869294,67.2194413992365],[-62.20788462062279,67.21004566279389],[-62.19799965414539,67.1980408141987],[-62.231432579140595,67.1733037889886],[-62.3289942974125,67.1395567931271],[-62.46033907653061,67.0607166480152],[-62.519706629121394,67.03551767126439],[-62.6099236726814,67.0259913581927]]],[[[-62.0017962750475,66.2826811974453],[-62.0291384462845,66.2519954555356],[-62.06546991079159,66.24340781268158],[-62.1989526276229,66.2374503798982],[-62.213466661499,66.2554267178746],[-62.140329204978,66.2827693402384],[-62.0526000078091,66.29208905583019],[-62.0017962750475,66.2826811974453]]],[[[-62.0273412216546,65.8944050489114],[-62.0774544901741,65.9037867238316],[-62.12094808206379,65.9476008762559],[-61.9974057827331,65.9857291402973],[-61.947175344446194,65.9763182995317],[-61.9376757222015,65.9643285521245],[-61.9967807740592,65.8988754155364],[-62.0273412216546,65.8944050489114]]],[[[-62.0735722608469,65.77051902161679],[-62.055936795555795,65.7162414512997],[-62.016113245116,65.7087371552356],[-61.9919552750423,65.6888873968688],[-62.0491803282463,65.6436319646586],[-62.1044767020189,65.6387732459637],[-62.16410586540341,65.6499901270002],[-62.193139604613,65.67580319359028],[-62.2576688887044,65.6929767656238],[-62.2768470872068,65.716915782596],[-62.26054485761739,65.7494999405713],[-62.2298062694475,65.7641228609532],[-62.1234792023695,65.7798833390462],[-62.0735722608469,65.77051902161679]]],[[[-62.362150580585194,65.614411086712],[-62.3702428660327,65.6283476899067],[-62.3702833937596,65.6394277937712],[-62.3594259900415,65.65199484214],[-62.3061886941161,65.6473816976713],[-62.2804777259301,65.6310981234949],[-62.31570352837829,65.6067036999353],[-62.362150580585194,65.614411086712]]],[[[-62.262854901066795,65.5477548919703],[-62.3295149155817,65.538916730296],[-62.3647533578013,65.5546705348175],[-62.3777518469189,65.5671399168418],[-62.355024142423794,65.57975787788608],[-62.3299059678658,65.5808201387295],[-62.29234472262559,65.5756636576097],[-62.266184238171896,65.56419802117759],[-62.262854901066795,65.5477548919703]]],[[[-114.12880817149599,68.61424786089148],[-114.215447156991,68.6239261558034],[-114.267909442737,68.6522192346751],[-114.28121970445399,68.680112697181],[-114.246099177029,68.6841456967146],[-114.178480513261,68.66737749058639],[-114.113697308338,68.62577380221319],[-114.12880817149599,68.61424786089148]]],[[[-113.896811474963,68.5818647016702],[-113.963345627743,68.5890138364691],[-113.979726260051,68.6067381787989],[-113.979728280994,68.6203626289038],[-113.911339558313,68.630007598391],[-113.872640854119,68.6229047045471],[-113.808748022386,68.6073330990068],[-113.822616171836,68.5902422713579],[-113.896811474963,68.5818647016702]]],[[[-110.556694758979,68.518036658265],[-110.587501494171,68.5084015048055],[-110.624732630256,68.5112819792366],[-110.66485956553,68.5183885226044],[-110.67530441985,68.527953234677],[-110.712726744099,68.5367683358699],[-110.731600572392,68.5471241265704],[-110.746931782962,68.5637378307633],[-110.722021167813,68.5732671119294],[-110.686747911091,68.579177487459],[-110.653948195535,68.5714598073846],[-110.63880625412098,68.5607881976485],[-110.56673005770098,68.5414060173506],[-110.556694758979,68.518036658265]]],[[[-110.78420301096,68.484105662148],[-110.966465593951,68.4906950837368],[-111.01229665233599,68.5007523181722],[-111.022826674369,68.5142366567315],[-110.97090582007,68.5289440319151],[-110.837641116651,68.5369605602322],[-110.76128210479699,68.52011990936188],[-110.74398709121499,68.4976180676031],[-110.78420301096,68.484105662148]]],[[[-113.407036663691,68.2309053709217],[-113.41867658439298,68.2519146397353],[-113.39888282295,68.259093258184],[-113.349377284426,68.2652942176177],[-113.29290561711699,68.2543675209874],[-113.280598607195,68.23428061211789],[-113.288566759081,68.2250247428063],[-113.33944318337498,68.2206552870978],[-113.379838266211,68.2244770996576],[-113.407036663691,68.2309053709217]]],[[[-111.63377614022,68.2647941947675],[-111.69912145622898,68.2678404094943],[-111.709915649214,68.2812784890816],[-111.652697234809,68.3355488254331],[-111.504506910381,68.35534366408578],[-111.447069471477,68.3465777659656],[-111.452615346277,68.3218134617088],[-111.565677565836,68.3055940935095],[-111.63377614022,68.2647941947675]]],[[[-112.776101360397,68.1546192985748],[-112.887400399691,68.1522475973359],[-112.929473149194,68.1719972235612],[-112.883224646941,68.1916458399009],[-112.81016937727799,68.1947191685978],[-112.756614983192,68.1761910693747],[-112.776101360397,68.1546192985748]]],[[[-114.100712553907,67.9744300683606],[-114.12679278991,67.967140949797],[-114.151157551405,67.9639465252262],[-114.204313521489,67.9629612313682],[-114.23820434813499,67.9672498646392],[-114.23753582143699,67.9869276177969],[-114.207227892129,67.9972881255666],[-114.158517506258,68.0017244211269],[-114.124592223172,67.9974213599163],[-114.100712553907,67.9744300683606]]],[[[-113.772677935946,67.9702222895756],[-113.86380381154999,67.9763849909525],[-113.92119898844399,67.9741013684242],[-113.968449758299,67.9843183593784],[-113.975276154297,68.0014528553526],[-113.940117246482,68.0105676678462],[-113.901090427234,68.00863824345579],[-113.73568200093399,68.0135350132309],[-113.698042865446,67.99619227174259],[-113.772677935946,67.9702222895756]]],[[[-113.92967311440198,67.878804032642],[-113.986375104302,67.8722052429278],[-114.119542493856,67.88107633074279],[-114.180810637132,67.8934422757557],[-114.196775055555,67.9111303897162],[-114.10996066547598,67.9262110307778],[-113.980500878632,67.9217629675628],[-113.930623298699,67.9080115465655],[-113.914859246867,67.8902986726754],[-113.92967311440198,67.878804032642]]],[[[-113.52056077875,67.9258210001021],[-113.471349323795,67.9411578352052],[-113.387553486156,67.93112830449269],[-113.25074368145998,67.9465082609732],[-113.208832104418,67.9268370665961],[-113.23539166693,67.9141211566674],[-113.337887247089,67.902606343963],[-113.470946554835,67.9119438496544],[-113.52056077875,67.9258210001021]]],[[[-109.79022359844699,68.1743292808237],[-109.838015201115,68.1705381860925],[-109.85652162538999,68.1825282798557],[-109.846997005506,68.1950647793394],[-109.796635786174,68.2259813715841],[-109.746212585142,68.2535156051687],[-109.67205962343,68.2845721036109],[-109.601797279116,68.2951906080837],[-109.569967920208,68.2906948284931],[-109.559166765524,68.270175539585],[-109.67525563178,68.2404725833331],[-109.761569864971,68.1808019949183],[-109.79022359844699,68.1743292808237]]],[[[-109.934885240362,68.1200613086474],[-110.011649176661,68.1246685958931],[-110.032766805952,68.140642741937],[-109.98593637810198,68.162929698943],[-109.921056722951,68.16728503623018],[-109.897363230401,68.15403181968709],[-109.897531694708,68.1405535680199],[-109.934885240362,68.1200613086474]]],[[[-110.13540788918199,68.1239162265655],[-110.111641050438,68.11069162449948],[-110.111694129063,68.0972150621877],[-110.139871657477,68.0816306106736],[-110.201307023126,68.0778336591408],[-110.238853555255,68.09126485089989],[-110.236031569747,68.102272093151],[-110.200136416171,68.1194885854296],[-110.13540788918199,68.1239162265655]]],[[[-110.295471104853,68.0601369427059],[-110.385346753904,68.0292855799799],[-110.417319047834,68.0283166462413],[-110.444311509031,68.046295529813],[-110.391804577446,68.0658202035049],[-110.34999525710398,68.0718064251462],[-110.30763164775,68.0736154755538],[-110.295471104853,68.0601369427059]]],[[[-110.946725491326,67.8935900052624],[-110.992672332568,67.8890397754597],[-111.022440538044,67.89574014239939],[-111.032652604852,67.9092122830445],[-111.000282514152,67.9317393954091],[-110.88721876834698,67.9622114359981],[-110.83834720452,67.9959704332354],[-110.770509153697,67.9881240113851],[-110.773363130123,67.9588940374693],[-110.84726531977199,67.9420057908477],[-110.946725491326,67.8935900052624]]],[[[-93.78399543365278,61.53529366050527],[-93.86306641556229,61.40991363858395],[-93.86238936643781,61.4068075206093],[-93.92959775539039,61.394172996434094],[-94.1463504400522,61.387721617067],[-94.1883644123052,61.3757754566929],[-94.0783825444265,61.3282443979296],[-93.9267486690689,61.2925210945245],[-93.9726732715146,61.25518914434179],[-93.9740391651087,61.21258373989205],[-93.9775629672542,61.1026681386644],[-94.03837311918053,61.06538568944651],[-94.0692526386652,61.0464535855035],[-94.2296811803852,60.84170224545559],[-94.3289267244561,60.7714065298659],[-94.36236195656748,60.6832964432847],[-94.4340182162526,60.63170586121661],[-94.5307381728397,60.528987296250996],[-94.55765514815108,60.51481028735609],[-94.6214854918653,60.5047872863377],[-94.834862794756,60.5435253080202],[-94.945129061171,60.54194780020679],[-94.944327799984,60.5281035716885],[-94.9159842478722,60.51466088651349],[-94.6660100391117,60.4765156862886],[-94.6089923508463,60.435678693672195],[-94.595022358977,60.334275122608695],[-94.620650593226,60.2970205461714],[-94.61733842779928,60.2278139088916],[-94.5880758100707,60.1866341490474],[-94.68482851821905,60.01151095740253],[-94.688237867353,60.0053400076359],[-98.65250638827455,59.99999999999999],[-99,59.99999999999999],[-100,59.99999999999999],[-101,59.99999999999999],[-101.99999999999999,59.99999999999999],[-101.99999999999999,60.99999999999999],[-101.99999999999999,61.99999999999999],[-101.99999999999999,63],[-101.99999999999999,64],[-101.99999999999999,64.24056042488104],[-102.6537139954795,64.27517609300197],[-103.00697326660156,64.30279541015625],[-104.39289855957031,64.44603729248047],[-105.54420471191406,64.56139373779297],[-106.17440032958984,64.63580322265625],[-107.02738189697264,64.70330047607422],[-109.32880401611328,64.85412597656249],[-110.64787292480469,65.49838256835938],[-112.02126312255858,65.49752044677734],[-112.5052261352539,65.49946594238281],[-113.9756622314453,66.0017318725586],[-120.66418457031249,68.00469970703125],[-120.6781613274032,69.49708444772227],[-120.67908906443918,69.51846972995556],[-120.65601583146301,69.50974975372047],[-120.539718468164,69.4657979483875],[-120.28761554305201,69.411433314246],[-120.11563472174599,69.385814516063],[-120.00094985885401,69.37206555161208],[-119.83331578778899,69.3709530123028],[-119.591941921408,69.3549571483807],[-119.31587665879898,69.3158706189205],[-118.983492657903,69.2743170316902],[-118.78696725710398,69.23622609068458],[-118.740439763459,69.1974359036007],[-118.62171801134198,69.1435212153859],[-118.226216281856,69.0372706494628],[-117.837263322174,68.9797877708777],[-117.352376331891,68.92944438057],[-117.191290762605,68.89827976309199],[-117.03155261620898,68.9165939267775],[-116.83951226366199,68.8867301564274],[-116.652735226684,68.9106636411675],[-116.13119342338,68.81789492183628],[-116.05918470382798,68.8120318631224],[-116.01702548005498,68.8222237989558],[-116.04428927607799,68.84851859808],[-116.150957159321,68.8748265752078],[-116.206018001619,68.9273746281335],[-116.35770935275801,68.9579267870609],[-116.37382849811002,68.9856476742254],[-116.211862375192,68.9959945675039],[-115.99678869919299,68.9682088314569],[-115.938009216168,68.975455135309],[-115.91565990811398,69.0177795884858],[-115.85673118538402,69.0250033813068],[-115.686234406927,69.0013106419945],[-115.56772277919198,68.9761655206873],[-115.517283592525,68.9526379510391],[-115.303549258956,68.9240691005847],[-115.175692610633,68.8752634779323],[-115.07590481366299,68.867427314994],[-114.97490620201299,68.8449208698468],[-114.815000398363,68.7752110914294],[-114.671003925875,68.7478478857458],[-114.421318674737,68.5952599297218],[-114.28231759491199,68.5574034772367],[-114.234204158377,68.5335428930337],[-114.126696185075,68.4038564614719],[-114.01430390467199,68.4069727043421],[-113.99806643449,68.3892562594686],[-114.04941734154399,68.3197354265846],[-114.032035728739,68.27279966722519],[-114.089003889643,68.2515449560914],[-114.146531658822,68.244884936992],[-114.281878657653,68.2536221446098],[-114.404199942204,68.234398043287],[-114.560252478888,68.265029823166],[-114.76687873553999,68.2404538284937],[-114.83256437829999,68.2424061508027],[-114.88371835009899,68.2559087340271],[-114.945252185554,68.2534126826938],[-114.931505424689,68.2255940807493],[-114.86366698917298,68.1944727677278],[-114.88544463480899,68.1771159453667],[-115.06099106344,68.1607706044111],[-115.22621883959398,68.1602560533033],[-115.290383892984,68.1474544174654],[-115.228172145305,68.0960794652845],[-115.27816208477599,68.055498213355],[-115.22887179936198,68.0173190281664],[-115.238924346862,68.0013283606149],[-115.27894414075293,67.99262042096892],[-115.343737493848,67.9785219823375],[-115.56980840101798,67.9502997455892],[-115.580358091591,67.9415882086324],[-115.51743204735,67.8830355861724],[-115.327593921827,67.8428328459243],[-115.194025579753,67.7881763891379],[-114.68388879912199,67.7991488390377],[-114.51631169781798,67.7801523209671],[-114.272098831845,67.7310112063477],[-113.97752016534798,67.7217720659619],[-113.79206933105199,67.69457572636429],[-113.227200831769,67.7007441597404],[-113.01266677518899,67.6810198965857],[-112.62856567396,67.6942951978235],[-112.409628320675,67.7132325769008],[-112.325589660713,67.7465430560826],[-112.075420928703,67.773213054384],[-112.00067588724599,67.7568789860366],[-111.914908642567,67.6641944100486],[-111.86092121961998,67.6892381370958],[-111.868369560651,67.7610945340111],[-111.765844326643,67.7717929795],[-111.65364522132,67.75439564006258],[-111.528257166148,67.7673222828217],[-111.48017593028199,67.7529109166908],[-111.419709901687,67.7542623554747],[-111.373012234663,67.7735246991951],[-111.367410416896,67.798263488962],[-111.319489709857,67.8321273423091],[-111.223314649691,67.85150190160948],[-111.193545388294,67.8448341880491],[-111.16738541812998,67.7943261257395],[-111.137704658519,67.7876470258702],[-111.08517961749399,67.7832536655608],[-110.93648680563399,67.79807189517578],[-110.69963745291099,67.8599735151653],[-110.58498579105999,67.9048722751156],[-110.179453374389,67.9917859592262],[-110.079954133181,68.0251986938708],[-110.022007484754,68.0306110737183],[-109.992358086314,68.0237467054842],[-109.956902350416,67.9741199795478],[-109.976117137763,67.9146015305],[-109.960085579981,67.8920468574241],[-109.904381018761,67.88280722459069],[-109.86067924113598,67.9253363384939],[-109.814475740167,67.9296092158538],[-109.785014438845,67.92271192258669],[-109.603825958388,67.7327778871248],[-109.53717022498799,67.72448008076339],[-109.4103750564,67.7888245130781],[-109.375861951676,67.7919442486015],[-109.241737101636,67.7560368214445],[-109.132196669012,67.75623672700928],[-109.059624226731,67.738716339251],[-109.009624909634,67.7000117172416],[-108.935119646479,67.5868289409756],[-108.947329983159,67.4947441789867],[-108.92668396576998,67.4630552017237],[-108.863588937139,67.43992339278348],[-108.84473702858098,67.4200502178903],[-108.766545588822,67.4197712035386],[-108.732722300998,67.441885604705],[-108.686661330768,67.6325595496841],[-108.641033450018,67.6556636584321],[-108.606617920565,67.6586390442896],[-108.545802716976,67.5825502140676],[-108.525166383831,67.4743224135491],[-108.479349445666,67.4017761999989],[-108.41400891993499,67.3930735527927],[-108.371353188289,67.4397558113151],[-108.291662558258,67.44656764134298],[-108.082220786799,67.3592396768119],[-107.939116753035,67.2805728120632],[-107.891897845721,67.2415828609154],[-107.84303225219598,67.1598085833024],[-107.843943458384,67.1215816991773],[-107.878145782168,67.0996418795824],[-107.984775618647,67.1002044189133],[-108.116890956992,67.0842158992033],[-108.15608322935,67.0904119062662],[-108.265600914519,67.0762368557389],[-108.453485754783,67.1507098112955],[-108.509771950731,67.1649158174126],[-108.56319278903699,67.1554623977206],[-108.46469281672,67.0924008175695],[-108.377788402356,67.0665292201158],[-108.327560084155,67.0231340631011],[-108.19628611929,67.0010564618035],[-108.10781047467098,66.9323069679004],[-108.075523456741,66.85875307179118],[-107.876340814906,66.8185111407624],[-107.844423701516,66.7640286113794],[-107.859137368654,66.72942467460838],[-107.84324680978098,66.702184330421],[-107.72982733198299,66.70700544177579],[-107.659362926295,66.6653009359009],[-107.622949459692,66.6017016871227],[-107.53349341990598,66.5663472615399],[-107.31331775427898,66.3991203961334],[-107.240968707744,66.3718062448638],[-107.175220209904,66.3772012862315],[-107.176700733081,66.4008403192564],[-107.21612408047199,66.4308823641305],[-107.379030502664,66.5173242569866],[-107.431653103426,66.5700518530654],[-107.45883897681699,66.5773128181079],[-107.505113536601,66.659127738314],[-107.662699134285,66.7316874440403],[-107.675798341773,66.7544046269349],[-107.640572618572,66.8144979897473],[-107.651834726076,66.8945321866175],[-107.713307192573,66.9799420601721],[-107.692979316437,67.0054601232539],[-107.633638429103,67.024674037644],[-107.662845882484,67.0746739212995],[-107.592074358679,67.0948078765058],[-107.53718200772498,67.0612054773879],[-107.49586441842,66.9693376361991],[-107.57561094077,66.9246699854235],[-107.50287866028398,66.859240739862],[-107.461620464725,66.8483550074731],[-107.397287844492,66.8583910619727],[-107.436969719542,66.9075044641114],[-107.40962157210299,66.9621099334217],[-107.369997466026,66.9748595448339],[-107.32860222014799,66.9639400109691],[-107.30794259151,66.9275407118985],[-107.150101740784,66.85464802629728],[-107.122699593286,66.8473360389427],[-107.078048383266,66.8509147950419],[-107.04347355328599,66.8726960768034],[-107.063698304047,66.9091250112537],[-107.189596246598,67.0084661169356],[-107.358053313201,67.0567612320979],[-107.337317295791,67.0822452580299],[-107.25409859380699,67.1222724726186],[-107.28008315646798,67.1677947773009],[-107.46304584214698,67.2387572316523],[-107.546925476366,67.3415497892934],[-107.630647124507,67.3824026402977],[-107.654954704818,67.4233345772464],[-107.629787654343,67.5016914599165],[-107.65423692148498,67.5426309868403],[-107.72963510949,67.6080532044443],[-107.976791170851,67.7357662439597],[-108.010575721999,67.7903037519753],[-107.98689723557898,67.8304820961077],[-107.896375630577,67.8809103125816],[-107.738956876272,67.9223568017977],[-107.66534856413499,67.9617044248368],[-107.716084319647,68.0244858376291],[-107.68943431839,68.0409525453589],[-107.34940296429399,68.0869500332591],[-107.244915760455,68.1380111172455],[-107.19791332066099,68.14164357426358],[-107.16898142887499,68.1343327122861],[-107.158144493201,68.1160894257759],[-107.114821421854,68.1051146278355],[-107.062489530425,68.0995886172673],[-106.98031212048,68.1058549799806],[-106.832879994758,68.1265308001798],[-106.781992987803,68.1446389410494],[-106.82818687796299,68.2031218723799],[-106.809899981152,68.2140210335116],[-106.71409416317799,68.1973416349289],[-106.691783710596,68.1799443651728],[-106.656415486997,68.1825672118538],[-106.63806559968198,68.1934497074375],[-106.64591047762299,68.2500241814926],[-106.578936924633,68.2406680412015],[-106.484949072974,68.1618533217514],[-106.4065078754,68.1532978505025],[-106.388066342776,68.1641559844803],[-106.403481063963,68.191591910984],[-106.466194863567,68.2155875095368],[-106.492126113063,68.2613069658849],[-106.47624191081,68.2767464645022],[-106.497060002225,68.3133253235562],[-106.467823734037,68.3487834093884],[-106.352613111984,68.3856674708721],[-106.327240363869,68.406529641231],[-106.25994816641,68.3970600390859],[-106.249669363786,68.3787542006095],[-106.220742279964,68.37129764614978],[-106.126341088262,68.4017780631925],[-105.997730658374,68.4155622454703],[-105.933683143262,68.4342894990523],[-105.825936897429,68.4298515560153],[-105.799814076752,68.4387802836452],[-105.783374843496,68.4541712831929],[-105.802323245735,68.557475459809],[-105.748193539807,68.618229233344],[-105.760710358108,68.6411548268445],[-105.804399792153,68.6524476515001],[-105.931865934436,68.6341965158775],[-105.987671588383,68.6446190014463],[-106.071961180361,68.6387681756864],[-106.422551033288,68.5520781315985],[-106.590225314861,68.5399659605779],[-106.570387247855,68.4842297085681],[-106.652612404386,68.4543990176723],[-106.639347756903,68.4315453593703],[-106.595675005296,68.4204474040211],[-106.567957348812,68.39388744845668],[-106.591829428339,68.3492682192012],[-106.628778107045,68.3275030937107],[-106.67622471180398,68.3240109684768],[-106.734271089,68.3387808032368],[-106.816460773972,68.3946446039584],[-106.86019015628,68.4056910597623],[-106.952609065179,68.3940104004264],[-107.088753804601,68.3932765360866],[-107.154496501318,68.3167105413271],[-107.232699748165,68.2820872075967],[-107.592589459156,68.3639095208167],[-107.695872933109,68.3700924851088],[-107.861639650373,68.3568840059811],[-107.906378156076,68.3293803732349],[-107.892301459264,68.2874800073928],[-107.739709971714,68.2614681705516],[-107.725531398505,68.23870652398318],[-107.65865881200499,68.2105837498643],[-107.659167231307,68.1914363368904],[-107.732539499702,68.1903629337674],[-107.77631216932,68.2011961239172],[-107.882124518375,68.192683414966],[-107.93228253340898,68.174283930343],[-107.979243264082,68.17046861861668],[-108.13731763710499,68.2053758526833],[-108.328107573138,68.1752407224003],[-108.372128664871,68.1859333381989],[-108.386966879382,68.2277842498524],[-108.445840436823,68.2420206122327],[-108.460712688867,68.2647224161989],[-108.387306704398,68.30437450311058],[-108.40812697108899,68.3361686509805],[-108.482093483202,68.35395161159678],[-108.576537576718,68.3460318927816],[-108.673305954022,68.3043086588482],[-108.740918636182,68.2937676618699],[-108.767892751994,68.3154414556476],[-108.756504315074,68.3355940671967],[-108.701281954124,68.3834389878712],[-108.442193684496,68.5393573706755],[-108.418679295465,68.5796419288997],[-108.32039657385299,68.6212652938022],[-108.14402775398699,68.64040747106809],[-107.808968218855,68.6480458488782],[-107.331774004322,68.6898841691953],[-106.95282458135,68.7708966121162],[-106.82426174734,68.8089957426234],[-106.669592768495,68.8250263227179],[-106.45384723458999,68.8881792648238],[-106.303711855858,68.913080173679],[-106.209920756
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment