From 9844f83ba297829bd9db92792caea126510cc911 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 3 Mar 2025 19:15:25 -0500 Subject: [PATCH 01/12] Update benchmark code - allow arbitrary legend kws - import GeoFormatTypes, WellKnownGeometry, CoordinateTransformations, ProgressMeter - make USA benchmarks print better - add benchmarks for coverage union - It turns out JTS (and also GEOS) use a special purpose noder and algorithm for coverage unions. We should also implement that at some stage - but it's a bit tough without the OverlayNG methodology. Maybe we can get an AI to implement that here :D --- benchmarks/benchmark_plots.jl | 4 +- benchmarks/benchmarks.jl | 147 +++++++++++++++++++++++++------ benchmarks/geometry_providers.jl | 4 +- benchmarks/polygon_scaling.jl | 2 +- 4 files changed, 126 insertions(+), 31 deletions(-) diff --git a/benchmarks/benchmark_plots.jl b/benchmarks/benchmark_plots.jl index b0f5432a4e..a3ac53d038 100644 --- a/benchmarks/benchmark_plots.jl +++ b/benchmarks/benchmark_plots.jl @@ -73,6 +73,7 @@ function plot_trials( legend_orientation = :horizontal, legend_halign = 1.0, legend_valign = -0.25, + legend_kws = (;), ) xs, ys, labels = [], [], [] @@ -118,7 +119,8 @@ function plot_trials( tellheight = legend_position isa Union{Tuple, Makie.Automatic} && (legend_position isa Makie.Automatic || length(legend_position) != 3) && legend_orientation == :horizontal, halign = legend_halign, valign = legend_valign, - orientation = legend_orientation + orientation = legend_orientation, + legend_kws..., ) ax.xtickcolor[] = ax.xgridcolor[] ax diff --git a/benchmarks/benchmarks.jl b/benchmarks/benchmarks.jl index af5f15ed99..438f60f231 100644 --- a/benchmarks/benchmarks.jl +++ b/benchmarks/benchmarks.jl @@ -10,18 +10,23 @@ import GeometryOps as GO, GeoInterface as GI, GeometryBasics as GB, - LibGEOS as LG -import GeoJSON, NaturalEarth + LibGEOS as LG, + GeoFormatTypes as GFT +import GeoJSON, NaturalEarth, WellKnownGeometry +using CoordinateTransformations: Translation, LinearMap # In order to benchmark, we'll actually use the new [Chairmarks.jl](https://github.com/lilithhafner/Chairmarks.jl), # since it's significantly faster than BenchmarkTools. To keep benchmarks organized, though, we'll still use BenchmarkTools' # `BenchmarkGroup` structure. using Chairmarks import BenchmarkTools: BenchmarkGroup +using ProgressMeter # We use CairoMakie to visualize our results! using CairoMakie, MakieThemes, GeoInterfaceMakie # Finally, we import some general utility packages: using Statistics, CoordinateTransformations +include("benchmark_plots.jl") + # We also set up some utility functions for later on. """ Returns LibGEOS and GeometryOps' native geometries, @@ -155,7 +160,7 @@ circle_difference_suite = circle_suite["difference"] = BenchmarkGroup(["title:Ci circle_intersection_suite = circle_suite["intersection"] = BenchmarkGroup(["title:Circle intersection", "subtitle:Tested on a regular circle"]) circle_union_suite = circle_suite["union"] = BenchmarkGroup(["title:Circle union", "subtitle:Tested on a regular circle"]) -n_points_values = round.(Int, exp10.(LinRange(1, 4, 10))) +n_points_values = round.(Int, exp10.(LinRange(0.7, 6, 15))) @time for n_points in n_points_values circle = GI.Wrappers.Polygon([tuple.((cos(θ) for θ in LinRange(0, 2π, n_points)), (sin(θ) for θ in LinRange(0, 2π, n_points)))]) closed_circle = GO.ClosedRing()(circle) @@ -197,29 +202,117 @@ f # Now, we get to benchmarking: -usa_o_lg, usa_o_go = lg_and_go(usa_poly) -usa_r_lg, usa_r_go = lg_and_go(usa_reflected) +usa_o_lg, usa_o_go = lg_and_go(usa_poly); +usa_r_lg, usa_r_go = lg_and_go(usa_reflected); # First, we'll test union: -printstyled("LibGEOS"; color = :red, bold = true) -println() -@be LG.union($usa_o_lg, $usa_r_lg) seconds=5 -printstyled("GeometryOps"; color = :blue, bold = true) -println() -@be GO.union($usa_o_go, $usa_r_go; target = GI.PolygonTrait) seconds=5 - -# Next, intersection: -printstyled("LibGEOS"; color = :red, bold = true) -println() -@be LG.intersection($usa_o_lg, $usa_r_lg) seconds=5 -printstyled("GeometryOps"; color = :blue, bold = true) -println() -@be GO.intersection($usa_o_go, $usa_r_go; target = GI.PolygonTrait) seconds=5 - -# and finally the difference: -printstyled("LibGEOS"; color = :red, bold = true) -println() -@be LG.difference(usa_o_lg, usa_r_lg) seconds=5 -printstyled("GeometryOps"; color = :blue, bold = true) -println() -@be go_diff = GO.difference(usa_o_go, usa_r_go; target = GI.PolygonTrait) seconds=5 +begin + printstyled("Union"; color = :green, bold = true) + println() + printstyled("LibGEOS"; color = :red, bold = true) + println() + display(@be LG.union($usa_o_lg, $usa_r_lg) seconds=5) + printstyled("GeometryOps"; color = :blue, bold = true) + println() + display(@be GO.union($usa_o_go, $usa_r_go; target = GI.PolygonTrait) seconds=5) + println() + # Next, intersection: + printstyled("Intersection"; color = :green, bold = true) + println() + printstyled("LibGEOS"; color = :red, bold = true) + println() + display(@be LG.intersection($usa_o_lg, $usa_r_lg) seconds=5) + printstyled("GeometryOps"; color = :blue, bold = true) + println() + display(@be GO.intersection($usa_o_go, $usa_r_go; target = GI.PolygonTrait) seconds=5) + # and finally the difference: + printstyled("Difference"; color = :green, bold = true) + println() + printstyled("LibGEOS"; color = :red, bold = true) + println() + display(@be LG.difference(usa_o_lg, usa_r_lg) seconds=5) + printstyled("GeometryOps"; color = :blue, bold = true) + println() + display(@be GO.difference(usa_o_go, usa_r_go; target = GI.PolygonTrait) seconds=5) +end + + + + +# ## Vancouver watershed benchmarks +#= + +Vancouver Island has ~1,300 watersheds. LibGEOS uses this exact data +in their tests, so we'll use it in ours as well! + +We'll start by loading the data, and then we'll use it to benchmark various operations. + +=# + +# The CRS for this file is EPSG:3005, or as a PROJ string, +# `"+proj=aea +lat_1=50 +lat_2=58.5 +lat_0=45 +lon_0=-126 +x_0=1000000 +y_0=0 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs"` +# TODO: this doesn't work with WellKnownGeometry. Why? + +watersheds = mktempdir() do dir + cd(dir) do + wkt_gz = download("https://github.com/pramsey/geos-performance/raw/refs/heads/master/data/watersheds.wkt.gz", "watersheds.wkt.gz") + run(`gunzip watersheds.wkt.gz`) + return [ + GO.tuples(GFT.WellKnownText(GFT.Geom(), line)) + for line in eachline("watersheds.wkt") + ] + end +end + +watershed_polygons = only.(GI.getgeom.(watersheds)) + +import SortTileRecursiveTree as STR +tree = STR.STRtree(watershed_polygons) +query_result = STR.query(tree, GI.extent(watershed_polygons[1])) + +GO.intersects.((watershed_polygons[1],), watershed_polygons[query_result]) + +@be GO.union($(watershed_polygons[1]), $(watershed_polygons[2]); target = $GI.PolygonTrait()) +@be LG.union($(watershed_polygons[1] |> GI.convert(LG)), $(watershed_polygons[2] |> GI.convert(LG))) + +function union_coverage(intersection_f::IF, union_f::UF, polygons::Vector{T}; showplot = true, showprogress = true) where {T, IF, UF} + tree = STR.STRtree(polygons) + all_intersected = falses(length(polygons)) + accumulator = polygons[1] + all_intersected[1] = true + i = 1 + + (showprogress && (prog = Progress(length(all_intersected)))) + + for i in 1:length(polygons) + query_result = STR.query(tree, GI.extent(accumulator)) + for idx in query_result + if !(all_intersected[idx] || !(intersection_f(polygons[idx], accumulator))) + result = union_f(polygons[idx], accumulator) + accumulator = result + all_intersected[idx] = true + (showprogress && next!(prog)) + end + end + showplot && display(poly(view(polygons, all_intersected); color = rand(RGBf, sum(all_intersected))), axis = (; title = "$(GI.trait(accumulator) isa GI.PolygonTrait ? "Polygon" : "MultiPolygon with $(GI.ngeom(accumulator)) individual polys")")) + all(all_intersected) && break # if done then finish + end + + return accumulator +end + +@time union_coverage(LG.intersects, LG.union, watershed_polygons .|> GI.convert(LG); showplot = false, showprogress = true) + +@time union_coverage(GO.intersects, (x, y) -> (GO.union(x, y; target = GI.MultiPolygonTrait())), watershed_polygons; showplot = false, showprogress = true) + + +using GADM + +# austria is landlocked and will form a coverage +# something like India will not -- because it has islands +ind_fc = GADM.get("AUT"; depth = 1) +ind_polys = GI.geometry.(GI.getfeature(ind_fc)) |> x -> GO.tuples(x; calc_extent = true) + + + +@time union_coverage(GO.intersects, (x, y) -> (GO.union(x, y; target = GI.MultiPolygonTrait())), ind_polys; showplot = true, showprogress = true) diff --git a/benchmarks/geometry_providers.jl b/benchmarks/geometry_providers.jl index 9f917eeb84..80715160ff 100644 --- a/benchmarks/geometry_providers.jl +++ b/benchmarks/geometry_providers.jl @@ -139,8 +139,8 @@ end function Makie.convert_arguments(::Makie.SampleBased, labels::AbstractVector{<: AbstractString}, bs::AbstractVector{<: Chairmarks.Benchmark}) ts = map(b -> getproperty.(b.samples, :time), bs) - labels = - return flatten + labels = reduce(vcat, (fill(l, length(t)) for (l, t) in zip(labels, ts))) + return flatten(labels), flatten(ts) end function Makie.convert_arguments(::Type{Makie.Errorbars}, xs, bs::AbstractVector{<: Chairmarks.Benchmark}) diff --git a/benchmarks/polygon_scaling.jl b/benchmarks/polygon_scaling.jl index f38cfcc235..f1c74a5e3f 100644 --- a/benchmarks/polygon_scaling.jl +++ b/benchmarks/polygon_scaling.jl @@ -7,7 +7,7 @@ p26 = GI.Polygon([[(3.0, 1.0), (8.0, 1.0), (8.0, 7.0), (3.0, 7.0), (3.0, 5.0), ( suite = BenchmarkGroup(["title:Polygon intersection timing","subtitle:Single polygon, densified"]) -for max_distance in exp10.(LinRange(-1, 1.5, 10)) +for max_distance in exp10.(LinRange(-2, 1.5, 10)) p25s = GO.segmentize(p25; max_distance) p26s = GO.segmentize(p26; max_distance) n_verts = GI.npoint(p25s) From 771a0ef2b7744eabd9fc7d3547f2b66805d52be7 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 3 Mar 2025 19:23:52 -0500 Subject: [PATCH 02/12] Add `TGGeometry.jl` to Project.toml --- Project.toml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index fcdd6bb59f..f72c99996b 100644 --- a/Project.toml +++ b/Project.toml @@ -8,6 +8,7 @@ CoordinateTransformations = "150eb455-5306-5404-9cee-2592286d6298" DataAPI = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a" DelaunayTriangulation = "927a84f5-c5f4-47a5-9785-b46e178433df" ExactPredicates = "429591f6-91af-11e9-00e2-59fbe8cec110" +Extents = "411431e0-e8b7-467b-b5e0-f676ba4f2910" GeoFormatTypes = "68eda718-8dee-11e9-39e7-89f7f65f511f" GeoInterface = "cf35fbd7-0cd7-5166-be24-54bfbe79505f" GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326" @@ -21,17 +22,20 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" FlexiJoins = "e37f2e79-19fa-4eb7-8510-b63b51fe0a37" LibGEOS = "a90b1aa1-3769-5649-ba7e-abc5a9d163eb" Proj = "c94c279d-25a6-4763-9509-64d165bea63e" +TGGeometry = "d7e755d2-3c95-4bcf-9b3c-79ab1a78647b" [extensions] GeometryOpsFlexiJoinsExt = "FlexiJoins" GeometryOpsLibGEOSExt = "LibGEOS" GeometryOpsProjExt = "Proj" +GeometryOpsTGGeometryExt = "TGGeometry" [compat] CoordinateTransformations = "0.5, 0.6" DataAPI = "1" DelaunayTriangulation = "1.0.4" ExactPredicates = "2.2.8" +Extents = "0.1.5" FlexiJoins = "0.1.30" GeoFormatTypes = "0.4" GeoInterface = "1.2" @@ -42,8 +46,9 @@ LinearAlgebra = "1" Proj = "1" SortTileRecursiveTree = "0.1" Statistics = "1" +TGGeometry = "0.1" Tables = "1" -julia = "1.9" +julia = "1.10" [extras] ArchGDAL = "c9ce4bd3-c3d5-55b8-8973-c0e20141b8c3" @@ -53,7 +58,6 @@ DimensionalData = "0703355e-b756-11e9-17c0-8b28908087d0" Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6" FlexiJoins = "e37f2e79-19fa-4eb7-8510-b63b51fe0a37" -GeoFormatTypes = "68eda718-8dee-11e9-39e7-89f7f65f511f" GeoJSON = "61d90e0f-e114-555e-ac52-39dfb47a3ef9" JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819" LibGEOS = "a90b1aa1-3769-5649-ba7e-abc5a9d163eb" @@ -67,4 +71,4 @@ Shapefile = "8e980c4a-a4fe-5da2-b3a7-4b4b0353a2f4" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [targets] -test = ["ArchGDAL", "CoordinateTransformations", "DataFrames", "Distributions", "DimensionalData", "Downloads", "FlexiJoins", "GeoFormatTypes", "GeoJSON", "Proj", "JLD2", "LibGEOS", "Random", "Rasters", "NaturalEarth", "OffsetArrays", "SafeTestsets", "Shapefile", "Test"] +test = ["ArchGDAL", "CoordinateTransformations", "DataFrames", "Distributions", "DimensionalData", "Downloads", "FlexiJoins", "GeoJSON", "Proj", "JLD2", "LibGEOS", "Random", "Rasters", "NaturalEarth", "OffsetArrays", "SafeTestsets", "Shapefile", "Test"] From 98ca641b1419ae5b75654006f9b7ecf6023a48da Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 3 Mar 2025 19:35:35 -0500 Subject: [PATCH 03/12] Add a dead simple TGGeometry extension --- .../GeometryOpsTGGeometryExt.jl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ext/GeometryOpsTGGeometryExt/GeometryOpsTGGeometryExt.jl diff --git a/ext/GeometryOpsTGGeometryExt/GeometryOpsTGGeometryExt.jl b/ext/GeometryOpsTGGeometryExt/GeometryOpsTGGeometryExt.jl new file mode 100644 index 0000000000..2ea0f0ac02 --- /dev/null +++ b/ext/GeometryOpsTGGeometryExt/GeometryOpsTGGeometryExt.jl @@ -0,0 +1,12 @@ +module GeometryOpsTGGeometryExt + +using GeometryOps: TG +import GeometryOps as GO + +using TGGeometry + +for jl_fname in TGGeometry.TG_PREDICATES + @eval GO.$jl_fname(::TG, geom1, geom2) = TGGeometry.$jl_fname(geom1, geom2) +end + +end \ No newline at end of file From a16a41744d8a8a6153a685eabd95070ac3562e67 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 3 Mar 2025 19:37:07 -0500 Subject: [PATCH 04/12] Add testsets and testset reader for TG These aren't run yet but it is nice to have the code, both to confirm that GeometryOps is correct, and to confirm that TGGeometry actually works. --- test/external/jts/jts_testset_reader.jl | 123 ++++ test/external/tg/data/LICENSE.md | 21 + test/external/tg/data/gcol.jsonc | 62 ++ test/external/tg/data/line.jsonc | 442 +++++++++++++ test/external/tg/data/mline.jsonc | 203 ++++++ test/external/tg/data/mpoint.jsonc | 202 ++++++ test/external/tg/data/mpoly.jsonc | 122 ++++ test/external/tg/data/named_geoms.geojson | 1 + test/external/tg/data/point.jsonc | 362 +++++++++++ test/external/tg/data/poly.jsonc | 723 ++++++++++++++++++++++ test/external/tg/tg_testset_reader.jl | 65 ++ 11 files changed, 2326 insertions(+) create mode 100644 test/external/jts/jts_testset_reader.jl create mode 100644 test/external/tg/data/LICENSE.md create mode 100644 test/external/tg/data/gcol.jsonc create mode 100644 test/external/tg/data/line.jsonc create mode 100644 test/external/tg/data/mline.jsonc create mode 100644 test/external/tg/data/mpoint.jsonc create mode 100644 test/external/tg/data/mpoly.jsonc create mode 100644 test/external/tg/data/named_geoms.geojson create mode 100644 test/external/tg/data/point.jsonc create mode 100644 test/external/tg/data/poly.jsonc create mode 100644 test/external/tg/tg_testset_reader.jl diff --git a/test/external/jts/jts_testset_reader.jl b/test/external/jts/jts_testset_reader.jl new file mode 100644 index 0000000000..57e71c2185 --- /dev/null +++ b/test/external/jts/jts_testset_reader.jl @@ -0,0 +1,123 @@ +using XML + +import WellKnownGeometry +import GeoFormatTypes as GFT +import GeometryOps as GO +import GeoInterface as GI + +""" + jts_wkt_to_geom(wkt::String) + +Convert a JTS WKT string to a GeometryOps geometry, via WellKnownGeometry.jl and GO.tuples. + +The reason this exists is because WellKnownGeometry doesn't work well with newlines in subsidiary geometries, +so this sanitizes the input before parsing and converting. +""" +function jts_wkt_to_geom(wkt::String) + sanitized_wkt = join(strip.(split(wkt, "\n")), "") + geom = GFT.WellKnownText(GFT.Geom(), sanitized_wkt) + return GO.tuples(geom) +end + +struct TestItem{T} + operation::String + arg1::GO.GI.Wrappers.WrapperGeometry + arg2::GO.GI.Wrappers.WrapperGeometry + expected_result::T +end + +Base.show(io::IO, ::MIME"text/plain", item::TestItem) = print(io, "TestItem(operation = $(item.operation), expects $(GI.trait(item.expected_result)))") +Base.show(io::IO, item::TestItem) = show(io, MIME"text/plain"(), item) + +struct Case + description::String + geom_a::GO.GI.Wrappers.WrapperGeometry + geom_b::GO.GI.Wrappers.WrapperGeometry + items::Vector{TestItem} +end + +function load_test_cases(filepath::String) + doc = read(filepath, XML.Node) # lazy parsing + run = only(children(doc)) + test_cases = Case[] + for case in children(run) + if tag(case) != "case" + continue + end + push!(test_cases, parse_case(case)) + end + return test_cases +end + +function parse_case(case::XML.Node) + description = value(only(children(case.children[1]))) + a = jts_wkt_to_geom(value(only(children(case.children[2])))) + b = jts_wkt_to_geom(value(only(children(case.children[3])))) + + items = TestItem[] + for item in children(case)[4:end] + ops = children(item) + for op in ops + op_attrs = XML.attributes(op) + operation = op_attrs["name"] + arg1 = op_attrs["arg1"] + arg2 = op_attrs["arg2"] + expected_result = jts_wkt_to_geom(value(only(op.children))) + push!(items, TestItem(operation, lowercase(arg1) == "a" ? a : b, lowercase(arg2) == "a" ? a : b, expected_result)) + end + end + return Case(description, a, b, items) +end + + +testfile = "/Users/anshul/.julia/dev/geo/jts/modules/tests/src/test/resources/testxml/general/TestOverlayAA.xml" + +cases = load_test_cases(testfile) + +using Test + +for case in cases + @testset "$(case.description)" begin + for item in case.items + @testset "$(item.operation)" begin + result = if item.operation == "union" + GO.union(item.arg1, item.arg2; target = GO.PolygonTrait()) + elseif item.operation == "difference" + GO.difference(item.arg1, item.arg2; target = GO.PolygonTrait()) + elseif item.operation == "intersection" + GO.intersection(item.arg1, item.arg2; target = GO.PolygonTrait()) + elseif item.operation == "symdifference" + continue + else + continue + end + + finalresult = if length(result) == 0 + nothing + elseif length(result) == 1 + only(result) + else + GI.MultiPolygon(result) + end + + if isnothing(finalresult) + @warn("No result") + continue + end + + if GI.geomtrait(item.expected_result) isa Union{GI.MultiPolygonTrait, GI.PolygonTrait} + difference_in_areas = GO.area(GO.difference(finalresult, item.expected_result; target = GO.PolygonTrait())) + if difference_in_areas > 1 + @warn("Difference in areas: $(difference_in_areas)") + f, a, p = poly(finalresult; label = "Final result (GO)", axis = (; title = "$(case.description) - $(item.operation)")) + poly!(a, item.expected_result; label = "Expected result (JTS)") + display(f) + end + # @test difference_in_areas < 1 + else + @test_broken GO.equals(finalresult, item.expected_result) + end + end + end + end +end \ No newline at end of file diff --git a/test/external/tg/data/LICENSE.md b/test/external/tg/data/LICENSE.md new file mode 100644 index 0000000000..52328ff825 --- /dev/null +++ b/test/external/tg/data/LICENSE.md @@ -0,0 +1,21 @@ +Reproduced from https://github.com/tidwall/tg/blob/main/LICENSE + +> Copyright (c) 2023 Joshua J Baker +> +> Permission is hereby granted, free of charge, to any person obtaining a copy +> of this software and associated documentation files (the "Software"), to deal +> in the Software without restriction, including without limitation the rights +> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +> copies of the Software, and to permit persons to whom the Software is +> furnished to do so, subject to the following conditions: +> +> The above copyright notice and this permission notice shall be included in +> all copies or substantial portions of the Software. +> +> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +> THE SOFTWARE. diff --git a/test/external/tg/data/gcol.jsonc b/test/external/tg/data/gcol.jsonc new file mode 100644 index 0000000000..ca52f75350 --- /dev/null +++ b/test/external/tg/data/gcol.jsonc @@ -0,0 +1,62 @@ +[ + { + "geoms": [ + "GEOMETRYCOLLECTION(POLYGON((1 1,4 1,4 4,1 4,1 2.5,1 1)))", + "GEOMETRYCOLLECTION(POLYGON((0 2, 1 2,1 2.5,1 3, 0 3, 0 2)))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2F11212", "FF2F11212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "GEOMETRYCOLLECTION EMPTY", + {"type":"Feature","id":"b","geometry":{"type":"LineString","coordinates":[[1.5,1.8],[1.5,1.4]]}} + ], + "dims": [ -1, 1 ], + "relate": [ "FFFFFF102", "FF1FF0FF2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "GEOMETRYCOLLECTION EMPTY", + "GEOMETRYCOLLECTION(POLYGON((0 2, 1 2,1 2.5,1 3, 0 3, 0 2)))" + ], + "dims": [ -1, 2 ], + "relate": [ "FFFFFF212", "FF2FF1FF2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + } +] diff --git a/test/external/tg/data/line.jsonc b/test/external/tg/data/line.jsonc new file mode 100644 index 0000000000..36020e64d2 --- /dev/null +++ b/test/external/tg/data/line.jsonc @@ -0,0 +1,442 @@ +[ + { + "geoms": [ + "LINESTRING(1 1,2 1,2 2)", + "LINESTRING(1.5 0.5,1.5 1.5,2.5 1.5)" + ], + "dims": [ 1, 1 ], + "relate": [ "0F1FF0102", "0F1FF0102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(1 1,2 1)", + "LINESTRING(1.5 1,3 1)" + ], + "dims": [ 1, 1 ], + "relate": [ "1010F0102", "1010F0102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["T", "T"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(1 1,2 1)", + "LINESTRING(2 1,3 1)" + ], + "dims": [ 1, 1 ], + "relate": [ "FF1F00102", "FF1F00102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "LINESTRING(1 1,2 2,3 2,4 1)", + "LINESTRING(1.5 3,2.2 2,3.2 2,4 1.5,3.2 0.7)" + ], + "dims": [ 1, 1 ], + "relate": [ "1F1FF0102", "1F1FF0102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["T", "T"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(1 1,2 2)", + "LINESTRING(1 1,2 2)" + ], + "dims": [ 1, 1 ], + "relate": [ "1FFF0FFF2", "1FFF0FFF2" ], + "predicates": { + "equals": ["T", "T"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "T"], + "within": ["T", "T"], + "covers": ["T", "T"], + "coveredby": ["T", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(1.1 1,2 1,2 2)", + "LINESTRING(1 1,2 1,2 2)" + ], + "dims": [ 1, 1 ], + "relate": [ "1FF00F102", "101F00FF2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "T"], + "within": ["T", "F"], + "covers": ["F", "T"], + "coveredby": ["T", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(1 1,2 1,2 2)", + "LINESTRING(1 1,1 2)" + ], + "dims": [ 1, 1 ], + "relate": [ "FF1F00102", "FF1F00102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "LINESTRING(1 1,2 1,2 2)", + "LINESTRING(1.5 1,1.5 2)" + ], + "dims": [ 1, 1 ], + "relate": [ "F01FF0102", "FF10F0102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "LINESTRING (1 1, 1.31 1, 1.41 1.1, 1.6 0.89)", + "LINESTRING (1 1, 1.11 1.11, 1.2 0.9, 1.24 1)" + ], + "dims": [ 1, 1 ], + "relate": [ "001F001F2", "0F100F102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING (1 1, 1.31 1, 1.41 1.1, 1.6 0.89)", + "LINESTRING (1 1, 1.11 1.11, 1.2 0.9, 1.24 1)" + ], + "dims": [ 1, 1 ], + "relate": [ "001F001F2", "0F100F102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING (1 1, 1.31 1, 1.41 1.1, 1.6 0.89)", + "LINESTRING (1.02 1, 1.08 1.1, 1.15 0.9, 1.17 1, 1.39 1)" + ], + "dims": [ 1, 1 ], + "relate": [ "101FF0102", "1F10F0102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["T", "T"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING (1 1, 1.31 1, 1.41 1.1, 1.6 0.89)", + "LINESTRING (1 0.94, 1.06 1, 1.12 0.94)" + ], + "dims": [ 1, 1 ], + "relate": [ "0F1FF0102", "0F1FF0102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING (1 1, 1.31 1, 1.41 1.1, 1.6 0.89)", + "LINESTRING (1.03 0.95, 1.13 1.09, 1.21 0.94, 1.25 1)" + ], + "dims": [ 1, 1 ], + "relate": [ "001FF0102", "0F10F0102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING (1 1, 1.31 1, 1.41 1.1, 1.6 0.89)", + "LINESTRING (1 1, 1.23 0.85, 1.31 1)" + ], + "dims": [ 1, 1 ], + "relate": [ "F01F001F2", "FF100F102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "LINESTRING (0 0, 9.97 0.03, 9.97 8.03, 4.97 9.97, 0 8, 0 0)", + "LINESTRING (-0.03 -0.07, 0.03 6.03, 1.03 10.03, 9.97 0.07, -0.03 0.07, 0 6.03)" + ], + "dims": [ 1, 1 ], + "relate": [ "001FFF102", "0F10F01F2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1 1, 2 1, 2 2, 1 2, 1 1), (1.2 1.2, 1.2 1.8, 1.8 1.8, 1.8 1.2, 1.2 1.2))", + "LINESTRING (1.5 1.8, 1.5 1.4)" + ], + "dims": [ 2, 1 ], + "relate": [ "FF2F01102", "FF1F00212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + {"type":"Feature","id":"a","geometry":{"type":"Polygon","coordinates":[[[1,1],[2,1],[2,2],[1,2],[1,1]],[[1.2,1.2],[1.2,1.8],[1.8,1.8],[1.8,1.2],[1.2,1.2]]]}}, + {"type":"Feature","id":"b","geometry":{"type":"LineString","coordinates":[[1.5,1.8],[1.5,1.4]]}} + ], + "dims": [ 2, 1 ], + "relate": [ "FF2F01102", "FF1F00212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + {"type":"Feature","id":"a","geometry":{"type":"Point","coordinates":[1.5,1.8]}}, + {"type":"Feature","id":"b","geometry":{"type":"LineString","coordinates":[[1.5,1.8],[1.5,1.4]]}} + ], + "dims": [ 0, 1 ], + "relate": [ "F0FFFF102", "FF10F0FF2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "T"], + "coveredby": ["T", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + {"type":"Feature","id":"a","geometry":{"type":"LineString","coordinates":[[1.5,1.8],[1.5,1.4]]}}, + {"type":"Feature","id":"b","geometry":{"type":"LineString","coordinates":[[1.5,1.8],[1.5,1.4]]}} + ], + "dims": [ 1, 1 ], + "relate": [ "1FFF0FFF2", "1FFF0FFF2" ], + "predicates": { + "equals": ["T", "T"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "T"], + "within": ["T", "T"], + "covers": ["T", "T"], + "coveredby": ["T", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(1 0, 2 0)", + "LINESTRING(0 0,3 0)" + ], + "dims": [ 1, 1 ], + "relate": [ "1FF0FF102", "101FF0FF2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "T"], + "within": ["T", "F"], + "covers": ["F", "T"], + "coveredby": ["T", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(1 1,2 2)", + "LINESTRING(0 0,3 3)" + ], + "dims": [ 1, 1 ], + "relate": [ "1FF0FF102", "101FF0FF2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "T"], + "within": ["T", "F"], + "covers": ["F", "T"], + "coveredby": ["T", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(-0.5 0.5,-0.1 0.1)", + "LINESTRING(-1 1,1 -1)" + ], + "dims": [ 1, 1 ], + "relate": [ "1FF0FF102", "101FF0FF2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "T"], + "within": ["T", "F"], + "covers": ["F", "T"], + "coveredby": ["T", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + } +] diff --git a/test/external/tg/data/mline.jsonc b/test/external/tg/data/mline.jsonc new file mode 100644 index 0000000000..837e7a4295 --- /dev/null +++ b/test/external/tg/data/mline.jsonc @@ -0,0 +1,203 @@ +[ + { + "geoms": [ + "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", + "POINT (1.34 1.43)" + ], + "dims": [ 1, 0 ], + "relate": [ "FF1FF00F2", "FF0FFF102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", + "POINT (1.32 1.79)" + ], + "dims": [ 1, 0 ], + "relate": [ "0F1FF0FF2", "0FFFFF102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", + "POINT (1.18 1.26)" + ], + "dims": [ 1, 0 ], + "relate": [ "FF10F0FF2", "F0FFFF102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", + "MULTIPOINT ((1.18 1.26), (1.9 1.7))" + ], + "dims": [ 1, 0 ], + "relate": [ "FF10F0FF2", "F0FFFF102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", + "POLYGON ((1.31 1.43, 1.77 1.43, 1.77 1.07, 1.31 1.07, 1.31 1.43))" + ], + "dims": [ 1, 2 ], + "relate": [ "FF1FF0212", "FF2FF1102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", + "POLYGON ((1.18 1.26, 1.71 1.26, 1.71 1.07, 1.18 1.07, 1.18 1.26))" + ], + "dims": [ 1, 2 ], + "relate": [ "FF1F00212", "FF2F01102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "LINESTRING (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96)", + "POLYGON ((1.18 1.26, 1.18 1.54, 1.5 1.54, 1.5 1.26, 1.18 1.26))" + ], + "dims": [ 1, 2 ], + "relate": [ "101F00212", "1F2001102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", + "POLYGON ((1.18 1.26, 1.18 1.54, 1.5 1.54, 1.5 1.26, 1.18 1.26))" + ], + "dims": [ 1, 2 ], + "relate": [ "101F00212", "1F2001102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", + "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))" + ], + "dims": [ 1, 1 ], + "relate": [ "1FFF0FFF2", "1FFF0FFF2" ], + "predicates": { + "equals": ["T", "T"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "T"], + "within": ["T", "T"], + "covers": ["T", "T"], + "coveredby": ["T", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7)", + "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7))" + ], + "dims": [ 1, 1 ], + "relate": [ "1FF0FFFF2", "10FFFFFF2" ], + "predicates": { + "equals": ["T", "T"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "T"], + "within": ["T", "T"], + "covers": ["T", "T"], + "coveredby": ["T", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + } + +] \ No newline at end of file diff --git a/test/external/tg/data/mpoint.jsonc b/test/external/tg/data/mpoint.jsonc new file mode 100644 index 0000000000..ace2faad97 --- /dev/null +++ b/test/external/tg/data/mpoint.jsonc @@ -0,0 +1,202 @@ +[ + { + "geoms": [ + "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", + "MULTIPOINT ((0.95 1.52), (1.09 1.73), (1.13 1.52), (1.6 1.54), (1.52 1.13), (1.22 1.33))" + ], + "dims": [ 0, 0 ], + "relate": [ "FF0FFF0F2", "FF0FFF0F2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", + "MULTIPOINT ((1.26 1.6), (1.5 1.72), (1.3 1.39), (0.92 1.57))" + ], + "dims": [ 0, 0 ], + "relate": [ "0F0FFF0F2", "0F0FFF0F2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["T", "T"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", + "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))" + ], + "dims": [ 0, 0 ], + "relate": [ "0FFFFFFF2", "0FFFFFFF2" ], + "predicates": { + "equals": ["T", "T"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "T"], + "within": ["T", "T"], + "covers": ["T", "T"], + "coveredby": ["T", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", + "POLYGON ((0.98 1.56, 1.43 1.56, 1.43 1.31, 0.98 1.31, 0.98 1.56))" + ], + "dims": [ 0, 2 ], + "relate": [ "0F0FFF212", "0F2FF10F2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", + "POLYGON ((1.19 1.44, 1.62 1.44, 1.62 1.18, 1.19 1.18, 1.19 1.44), (1.31 1.39, 1.57 1.39, 1.57 1.26, 1.31 1.26, 1.31 1.39))" + ], + "dims": [ 0, 2 ], + "relate": [ "FF0FFF212", "FF2FF10F2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", + "LINESTRING (1.13 1.27, 1.23 1.45, 1.51 1.52, 1.61 1.15, 1.21 1.17)" + ], + "dims": [ 0, 1 ], + "relate": [ "FF0FFF102", "FF1FF00F2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", + "LINESTRING (1.24 1.16, 1.41 1.34, 1.6 1.18)" + ], + "dims": [ 0, 1 ], + "relate": [ "0F0FFF102", "0F1FF00F2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", + "LINESTRING (1.16 1.15, 1.36 1.47, 1.55 1.42, 1.26 1.6)" + ], + "dims": [ 0, 1 ], + "relate": [ "F00FFF102", "FF10F00F2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", + "POLYGON ((1.41 1.34, 1.69 1.34, 1.69 1.16, 1.41 1.16, 1.41 1.34))" + ], + "dims": [ 0, 2 ], + "relate": [ "F00FFF212", "FF20F10F2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", + "POLYGON ((1.26 1.6, 1.58 1.6, 1.58 1.19, 1.26 1.19, 1.26 1.6))" + ], + "dims": [ 0, 2 ], + "relate": [ "000FFF212", "0F20F10F2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + } +] \ No newline at end of file diff --git a/test/external/tg/data/mpoly.jsonc b/test/external/tg/data/mpoly.jsonc new file mode 100644 index 0000000000..836849258f --- /dev/null +++ b/test/external/tg/data/mpoly.jsonc @@ -0,0 +1,122 @@ +[ + { + "geoms": [ + "MULTIPOLYGON (((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73)), ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92)))", + "MULTIPOINT ((1.2 1.66), (1.25 1.96), (1.53 1.72))" + ], + "dims": [ 2, 0 ], + "relate": [ "FF2FF10F2", "FF0FFF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTIPOLYGON (((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73)), ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92)))", + "MULTILINESTRING ((1.17 1.63, 1.25 1.7, 1.27 1.65), (1.41 1.93, 1.54 1.77, 1.53 1.48))" + ], + "dims": [ 2, 1 ], + "relate": [ "FF2FF1102", "FF1FF0212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTIPOLYGON (((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73)), ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92)))", + "MULTIPOLYGON (((1.18 1.7, 1.27 1.7, 1.27 1.61, 1.18 1.61, 1.18 1.7)), ((1.56 1.54, 1.72 1.54, 1.72 1.37, 1.56 1.37, 1.56 1.54)))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2FF1212", "FF2FF1212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "MULTIPOLYGON (((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73)), ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92)))", + "POLYGON ((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2F11212", "FF2F11212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "MULTIPOLYGON (((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73)), ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92)))", + "MULTIPOLYGON (((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68)), ((1.44 1.84, 1.57 1.84, 1.57 1.72, 1.44 1.72, 1.44 1.84)))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2F11212", "FF2F11212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68))", + "MULTIPOLYGON (((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68)), ((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68)))" + ], + "dims": [ 2, 2 ], + "relate": [ "2FF10FFF2", "21FF0FFF2" ], + "predicates": { + "equals": ["T", "T"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "T"], + "within": ["T", "T"], + "covers": ["T", "T"], + "coveredby": ["T", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + } +] \ No newline at end of file diff --git a/test/external/tg/data/named_geoms.geojson b/test/external/tg/data/named_geoms.geojson new file mode 100644 index 0000000000..e591b800c8 --- /dev/null +++ b/test/external/tg/data/named_geoms.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-114.635458,34.876902],[-114.636768,34.885705],[-114.636725,34.889107],[-114.635425,34.895192],[-114.63185,34.903942],[-114.630877,34.907263],[-114.630552,34.911852],[-114.631537,34.916153],[-114.633237,34.92123],[-114.633253,34.924608],[-114.632196,34.930628],[-114.629753,34.938684],[-114.629811,34.94481],[-114.631681,34.95131],[-114.634274,34.956662],[-114.634953,34.958918],[-114.635237,34.965149],[-114.634607,34.96906],[-114.629907,34.980791],[-114.629129,34.986132],[-114.629443,34.991825],[-114.630244,34.99464],[-114.631807,34.998632],[-114.632665,34.999806],[-114.63557,35.005933],[-114.637071,35.010371],[-114.637769,35.014948],[-114.63819,35.022069],[-114.637524,35.027053],[-114.633715,35.035602],[-114.629027,35.042531],[-114.625799,35.045834],[-114.615902,35.05272],[-114.610701,35.055458],[-114.606694,35.058941],[-114.604715,35.061744],[-114.603619,35.064226],[-114.602908,35.068588],[-114.603175,35.070445],[-114.604736,35.07483],[-114.607701,35.078533],[-114.613132,35.083097],[-114.61842,35.086539],[-114.622517,35.088703],[-114.632053,35.092559],[-114.63937,35.094733],[-114.642831,35.096503],[-114.646579,35.10082],[-114.646764,35.101868],[-114.645152,35.104995],[-114.644354,35.105903],[-114.641116,35.108401],[-114.637432,35.112489],[-114.632282,35.117088],[-114.628427,35.118943],[-114.623761,35.120602],[-114.628993,35.119411],[-114.624954,35.120742],[-114.618697,35.121749],[-114.604007,35.121252],[-114.60274,35.121666],[-114.597794,35.121735],[-114.589787,35.123522],[-114.584877,35.125194],[-114.579882,35.127506],[-114.578263,35.12881],[-114.577146,35.130982],[-114.574411,35.13495],[-114.572597,35.139557],[-114.573706,35.142698],[-114.573879,35.145351],[-114.569529,35.162317],[-114.56876,35.172195],[-114.569214,35.17289],[-114.568989,35.175085],[-114.569258,35.183424],[-114.569653,35.186267],[-114.571404,35.191026],[-114.572084,35.200794],[-114.574037,35.20379],[-114.574233,35.205481],[-114.574958,35.206714],[-114.578581,35.208113],[-114.579535,35.208911],[-114.579897,35.21097],[-114.580312,35.220095],[-114.583523,35.230348],[-114.58248,35.233173],[-114.582842,35.238703],[-114.584993,35.242717],[-114.586053,35.248891],[-114.585714,35.253145],[-114.585768,35.257743],[-114.586604,35.262386],[-114.587497,35.265473],[-114.590513,35.272334],[-114.593247,35.284361],[-114.595705,35.289939],[-114.596682,35.294557],[-114.597268,35.299565],[-114.59721,35.303223],[-114.595163,35.321883],[-114.595553,35.326547],[-114.599771,35.34111],[-114.604607,35.355239],[-114.606173,35.359651],[-114.611206,35.370119],[-114.617698,35.380131],[-114.618257,35.382646],[-114.618984,35.389391],[-114.620887,35.396867],[-114.621783,35.39945],[-114.625702,35.407976],[-114.626765,35.409644],[-114.629061,35.411175],[-114.65208,35.430134],[-114.653817,35.432853],[-114.654295,35.436854],[-114.658105,35.441835],[-114.661747,35.444735],[-114.662896,35.446449],[-114.663934,35.449466],[-114.664215,35.451707],[-114.66388,35.454657],[-114.664217,35.455845],[-114.665142,35.457331],[-114.666151,35.458198],[-114.667217,35.46037],[-114.666769,35.462085],[-114.66579,35.463915],[-114.665651,35.466911],[-114.665988,35.467985],[-114.667389,35.469904],[-114.67235,35.47374],[-114.673164,35.474814],[-114.673585,35.475843],[-114.673473,35.476849],[-114.672074,35.479709],[-114.671794,35.480806],[-114.671907,35.482087],[-114.673534,35.485675],[-114.676815,35.489787],[-114.676704,35.491845],[-114.676257,35.493103],[-114.677743,35.495182],[-114.678642,35.497628],[-114.678587,35.499846],[-114.678892,35.501276],[-114.67748,35.510948],[-114.677143,35.512945],[-114.675685,35.51563],[-114.672767,35.518428],[-114.66954,35.52079],[-114.668586,35.521225],[-114.666565,35.520993],[-114.664601,35.521519],[-114.663983,35.522161],[-114.661682,35.526682],[-114.659886,35.527919],[-114.657753,35.530741],[-114.657163,35.532301],[-114.65677,35.534964],[-114.657809,35.536963],[-114.660335,35.540433],[-114.661457,35.544062],[-114.66157,35.545692],[-114.66112,35.549021],[-114.661963,35.552604],[-114.661963,35.555887],[-114.663451,35.559884],[-114.663535,35.560963],[-114.662805,35.564268],[-114.6639,35.56629],[-114.664433,35.568426],[-114.666231,35.571642],[-114.668393,35.574331],[-114.670022,35.575596],[-114.671567,35.576217],[-114.674881,35.578379],[-114.675751,35.579459],[-114.675667,35.580033],[-114.670191,35.583471],[-114.664209,35.585944],[-114.660558,35.586583],[-114.659238,35.587477],[-114.654518,35.596609],[-114.6539,35.598491],[-114.653731,35.600373],[-114.654489,35.605173],[-114.653618,35.607192],[-114.653534,35.609672],[-114.653927,35.611739],[-114.655219,35.614059],[-114.657241,35.617046],[-114.659461,35.619552],[-114.660641,35.620334],[-114.663647,35.620773],[-114.665389,35.621556],[-114.666682,35.623073],[-114.668087,35.627115],[-114.669015,35.628861],[-114.672134,35.633365],[-114.675001,35.638304],[-114.677615,35.641774],[-114.679415,35.643429],[-114.686133,35.647522],[-114.689001,35.65028],[-114.689507,35.651429],[-114.689226,35.652898],[-114.690494,35.662657],[-114.690214,35.665159],[-114.686055,35.670642],[-114.682317,35.677825],[-114.680827,35.682255],[-114.680631,35.684046],[-114.680997,35.685929],[-114.682657,35.688571],[-114.691263,35.693125],[-114.696214,35.69655],[-114.701416,35.701084],[-114.703608,35.703922],[-114.704501,35.705993],[-114.704959,35.706366],[-114.704842,35.706744],[-114.705597,35.708274],[-114.705347,35.708344],[-114.705447,35.711757],[-114.699405,35.726929],[-114.697859,35.731657],[-114.69654,35.738934],[-114.6964,35.742653],[-114.696655,35.746143],[-114.697585,35.748417],[-114.697726,35.750966],[-114.696854,35.752756],[-114.696546,35.754638],[-114.694267,35.756633],[-114.694717,35.757897],[-114.69742,35.760677],[-114.700266,35.766879],[-114.701027,35.76968],[-114.70117,35.774112],[-114.699036,35.788046],[-114.699318,35.79048],[-114.703178,35.794685],[-114.705827,35.798889],[-114.71149,35.80438],[-114.712026,35.805529],[-114.710534,35.807525],[-114.709324,35.81005],[-114.70634,35.812022],[-114.703665,35.814614],[-114.700654,35.822004],[-114.697276,35.826776],[-114.69553,35.829897],[-114.695277,35.831091],[-114.695249,35.832285],[-114.695757,35.833387],[-114.701478,35.839316],[-114.702293,35.840792],[-114.702339,35.842151],[-114.703527,35.841845],[-114.704173,35.842669],[-114.704203,35.844274],[-114.706288,35.846218],[-114.706532,35.849027],[-114.705856,35.850508],[-114.703599,35.852595],[-114.701904,35.853223],[-114.696581,35.853727],[-114.69437,35.854463],[-114.693446,35.855125],[-114.691456,35.858661],[-114.687798,35.860728],[-114.68205,35.86295],[-114.678186,35.863311],[-114.672289,35.865011],[-114.66968,35.865036],[-114.667471,35.867061],[-114.662623,35.869213],[-114.661636,35.870545],[-114.661636,35.871233],[-114.663214,35.873692],[-114.668145,35.875201],[-114.672009,35.878018],[-114.678972,35.88551],[-114.693602,35.895311],[-114.69454,35.896587],[-114.696064,35.896464],[-114.694928,35.897594],[-114.696132,35.898662],[-114.697558,35.89936],[-114.700258,35.901757],[-114.700769,35.903064],[-114.703538,35.906707],[-114.705119,35.907637],[-114.705991,35.908598],[-114.705714,35.909316],[-114.706767,35.90895],[-114.708112,35.909933],[-114.709187,35.916827],[-114.707784,35.916993],[-114.707398,35.918057],[-114.70788,35.919207],[-114.707329,35.926177],[-114.707603,35.92795],[-114.712965,35.932159],[-114.712756,35.932639],[-114.713413,35.9319],[-114.713312,35.933844],[-114.729762,35.959895],[-114.728496,35.960395],[-114.728666,35.961757],[-114.73009,35.962691],[-114.732456,35.965891],[-114.736195,35.969421],[-114.740536,35.975545],[-114.743494,35.983553],[-114.743638,35.985785],[-114.743117,35.987387],[-114.740043,35.990534],[-114.739318,35.991804],[-114.740544,35.994853],[-114.740815,35.997464],[-114.741536,35.99969],[-114.741679,36.002283],[-114.743163,36.006722],[-114.743005,36.00845],[-114.740866,36.012928],[-114.738555,36.015223],[-114.728874,36.021387],[-114.723324,36.026588],[-114.722214,36.027964],[-114.722096,36.028952],[-114.722742,36.030286],[-114.723673,36.03123],[-114.727602,36.033099],[-114.730563,36.036207],[-114.733417,36.037913],[-114.735739,36.038033],[-114.740018,36.037467],[-114.741262,36.038044],[-114.742105,36.039792],[-114.742661,36.042573],[-114.742479,36.045697],[-114.741677,36.047877],[-114.735701,36.053393],[-114.73508,36.054435],[-114.735285,36.056648],[-114.736023,36.059063],[-114.74006,36.062437],[-114.7422,36.067833],[-114.742138,36.068676],[-114.743542,36.071037],[-114.748891,36.074981],[-114.75057,36.08033],[-114.754032,36.083093],[-114.754681,36.085052],[-114.754508,36.086171],[-114.752836,36.089393],[-114.750095,36.092275],[-114.748913,36.095183],[-114.737497,36.103102],[-114.734857,36.104426],[-114.718257,36.107164],[-114.709269,36.107396],[-114.706091,36.108239],[-114.703737,36.108348],[-114.696981,36.110297],[-114.693655,36.112482],[-114.691631,36.112535],[-114.688074,36.111457],[-114.684426,36.109472],[-114.681847,36.109192],[-114.679775,36.109874],[-114.678375,36.110815],[-114.675106,36.114111],[-114.671867,36.115964],[-114.664343,36.1163],[-114.662144,36.117742],[-114.660448,36.119999],[-114.658131,36.124127],[-114.655512,36.126187],[-114.645728,36.131995],[-114.641976,36.13373],[-114.640125,36.135126],[-114.636862,36.135552],[-114.635809,36.13617],[-114.630474,36.142218],[-114.628462,36.141822],[-114.627079,36.140761],[-114.623837,36.137144],[-114.620605,36.131759],[-114.618429,36.130328],[-114.615455,36.129653],[-114.61324,36.130266],[-114.609288,36.132229],[-114.596474,36.141537],[-114.593035,36.142674],[-114.589828,36.143192],[-114.583716,36.14556],[-114.580707,36.145987],[-114.578828,36.147175],[-114.57706,36.148845],[-114.57109,36.151099],[-114.561173,36.150921],[-114.556162,36.15247],[-114.548742,36.150697],[-114.543232,36.151871],[-114.539233,36.151764],[-114.534478,36.15023],[-114.532924,36.149282],[-114.532308,36.14804],[-114.531091,36.147644],[-114.52621,36.148177],[-114.51428,36.150795],[-114.511218,36.150576],[-114.508104,36.149713],[-114.501049,36.144516],[-114.500236,36.143226],[-114.499992,36.141594],[-114.500339,36.1407],[-114.50108,36.14006],[-114.50515,36.138078],[-114.507175,36.13634],[-114.50921,36.133247],[-114.508467,36.129913],[-114.507201,36.128484],[-114.504715,36.127188],[-114.501798,36.126556],[-114.498849,36.126612],[-114.487635,36.128656],[-114.483827,36.12972],[-114.478248,36.132683],[-114.468674,36.138889],[-114.465579,36.139496],[-114.4626,36.139644],[-114.458945,36.139214],[-114.456487,36.138032],[-114.45511,36.136372],[-114.453798,36.133586],[-114.451331,36.129831],[-114.447135,36.126022],[-114.445042,36.125346],[-114.443736,36.125593],[-114.435507,36.130057],[-114.423114,36.13735],[-114.418193,36.142771],[-114.415253,36.145123],[-114.412491,36.146511],[-114.40914,36.147],[-114.405624,36.146983],[-114.398373,36.145799],[-114.381479,36.141349],[-114.379976,36.141388],[-114.375278,36.143592],[-114.373745,36.143722],[-114.370181,36.142624],[-114.368551,36.140892],[-114.367381,36.13852],[-114.365529,36.136306],[-114.364499,36.134072],[-114.358968,36.127795],[-114.348592,36.121147],[-114.3451,36.118556],[-114.342601,36.115878],[-114.34095,36.113457],[-114.338815,36.111309],[-114.337264,36.110428],[-114.334632,36.106784],[-114.333587,36.106342],[-114.328801,36.105902],[-114.325814,36.103933],[-114.325539,36.102989],[-114.323458,36.101186],[-114.320866,36.096463],[-114.316983,36.093409],[-114.313086,36.088816],[-114.306939,36.082487],[-114.304171,36.07558],[-114.304384,36.074019],[-114.305853,36.071478],[-114.307485,36.069672],[-114.31242,36.066117],[-114.3136,36.064148],[-114.314328,36.062016],[-114.314427,36.060523],[-114.313591,36.059048],[-114.311904,36.057661],[-114.308624,36.056976],[-114.300971,36.05746],[-114.298593,36.057263],[-114.295941,36.056168],[-114.293435,36.0545],[-114.290867,36.050511],[-114.287992,36.04907],[-114.284006,36.048242],[-114.279637,36.046103],[-114.278166,36.045819],[-114.273911,36.046529],[-114.272299,36.046289],[-114.270862,36.045523],[-114.269548,36.043769],[-114.268896,36.04094],[-114.26922,36.036807],[-114.268586,36.035034],[-114.26438,36.027911],[-114.262388,36.026107],[-114.259518,36.024206],[-114.251633,36.019886],[-114.248419,36.018556],[-114.246111,36.017164],[-114.243865,36.015266],[-114.240439,36.015245],[-114.238154,36.014473],[-114.236892,36.013247],[-114.233443,36.012835],[-114.231854,36.013147],[-114.228015,36.014731],[-114.226459,36.014606],[-114.224798,36.013699],[-114.218759,36.014511],[-114.216609,36.014336],[-114.214679,36.014806],[-114.213549,36.014615],[-114.211932,36.014834],[-114.206052,36.016634],[-114.204156,36.016575],[-114.201227,36.017751],[-114.200066,36.017743],[-114.191221,36.020019],[-114.18586,36.022266],[-114.179438,36.024313],[-114.176304,36.026129],[-114.174683,36.02667],[-114.164402,36.026852],[-114.161237,36.026279],[-114.157344,36.024966],[-114.1534,36.02317],[-114.15139,36.023133],[-114.150225,36.023515],[-114.145907,36.027229],[-114.145637,36.028559],[-114.145672,36.03297],[-114.144666,36.034272],[-114.143153,36.035295],[-114.13826,36.03719],[-114.137112,36.038491],[-114.135721,36.041238],[-114.134841,36.043873],[-114.134824,36.045343],[-114.135927,36.050358],[-114.136206,36.053232],[-114.1352,36.056946],[-114.133389,36.061665],[-114.129768,36.068484],[-114.125891,36.072935],[-114.124019,36.075563],[-114.121186,36.082755],[-114.119648,36.085822],[-114.112297,36.09405],[-114.111998,36.09491],[-114.1119,36.095845],[-114.115208,36.099878],[-114.11707,36.101177],[-114.119329,36.10193],[-114.121033,36.103885],[-114.121779,36.105699],[-114.12167,36.108294],[-114.120865,36.11085],[-114.118497,36.1139],[-114.116061,36.115471],[-114.108381,36.119154],[-114.107419,36.119401],[-114.100433,36.119359],[-114.097707,36.120213],[-114.096994,36.120823],[-114.092753,36.132356],[-114.092366,36.135331],[-114.091701,36.137303],[-114.089279,36.140326],[-114.087899,36.142923],[-114.081234,36.150208],[-114.07945,36.154625],[-114.078832,36.157434],[-114.075641,36.162523],[-114.071652,36.170921],[-114.066798,36.179087],[-114.058662,36.187835],[-114.052743,36.190919],[-114.049484,36.192134],[-114.043944,36.19335],[-114.043849,36.245114],[-114.045518,36.27439],[-114.045559,36.288837],[-114.045033,36.30305],[-114.044345,36.310234],[-114.044051,36.317628],[-114.044776,36.331969],[-114.044702,36.346298],[-114.043034,36.38587],[-114.042843,36.448175],[-114.043133,36.469716],[-114.044816,36.491343],[-114.045647,36.521095],[-114.04632,36.564615],[-114.049935,36.709521],[-114.049973,36.738672],[-114.050327,36.752899],[-114.049879,36.781909],[-114.050502,36.895232],[-114.049995,36.957769],[-114.0506,37.000396],[-114.0008,37.000448],[-113.96266,36.999973],[-113.052912,36.999983],[-112.875756,37.000533],[-112.538546,37.000652],[-112.529846,37.000899],[-112.36102,37.001114],[-112.36037,37.000912],[-112.359329,37.001117],[-112.125741,37.001237],[-112.000735,37.000959],[-111.62572,37.001401],[-111.616249,37.001647],[-111.406146,37.001481],[-111.405895,37.001702],[-111.313211,37.000894],[-111.312169,37.001193],[-111.305843,37.000776],[-111.278221,37.000467],[-111.254853,37.001076],[-111.133718,37.000779],[-111.081493,37.002261],[-111.052354,37.00246],[-111.00182,37.002293],[-110.625691,37.003725],[-110.625605,37.003416],[-110.599512,37.003448],[-110.509004,37.003985],[-110.50069,37.00426],[-110.490908,37.003566],[-110.478446,36.999996],[-110.47729,36.999997],[-110.47019,36.997997],[-110.023043,36.998601],[-110.000876,36.998502],[-110.000677,36.997968],[-109.969958,36.997949],[-109.938511,36.998491],[-109.750669,36.99816],[-109.743284,36.998453],[-109.625658,36.998308],[-109.495338,36.999105],[-109.362565,36.999304],[-109.125691,36.999389],[-109.045223,36.999084],[-109.045554,36.645013],[-109.04539,36.503241],[-109.045946,36.375002],[-109.045637,36.374625],[-109.045744,36.257214],[-109.046024,36.247197],[-109.045877,36.188719],[-109.046183,36.181751],[-109.045726,36.116908],[-109.045767,36.033679],[-109.046124,35.990618],[-109.046009,35.875012],[-109.046423,35.624911],[-109.046181,35.614569],[-109.046795,35.379918],[-109.046084,35.249986],[-109.046256,35.125041],[-109.045842,34.966076],[-109.046136,34.875006],[-109.046072,34.828566],[-109.045626,34.814226],[-109.046104,34.799981],[-109.045363,34.785406],[-109.046087,34.770963],[-109.046175,34.520102],[-109.046561,34.379479],[-109.046337,34.283639],[-109.046664,34.250046],[-109.04696,34.068968],[-109.047006,34.00005],[-109.046426,33.875052],[-109.046869,33.844183],[-109.047145,33.74001],[-109.046662,33.625055],[-109.046825,33.469389],[-109.047309,33.462131],[-109.046928,33.4428],[-109.047304,33.439442],[-109.047298,33.409774],[-109.046564,33.375059],[-109.047045,33.36928],[-109.046827,33.365271],[-109.047104,33.27046],[-109.04747,33.250168],[-109.047122,33.2408],[-109.047324,33.18408],[-109.047208,33.107377],[-109.046905,33.091931],[-109.047513,33.059137],[-109.047382,33.000311],[-109.04711,32.99225],[-109.047117,32.777569],[-109.047518,32.749997],[-109.047796,32.68263],[-109.047912,32.500261],[-109.047629,32.413987],[-109.048323,32.070887],[-109.048731,32.028174],[-109.048465,32.000089],[-109.048738,31.876905],[-109.049048,31.870689],[-109.049298,31.796742],[-109.04899,31.721922],[-109.049311,31.544932],[-109.050173,31.480004],[-109.049934,31.437907],[-109.050044,31.332502],[-109.1256,31.332685],[-109.271744,31.333942],[-109.49449,31.334125],[-109.500621,31.333911],[-109.875628,31.33405],[-110.000613,31.333145],[-110.140512,31.333965],[-110.375635,31.332896],[-110.460172,31.332827],[-110.68143,31.33309],[-110.750638,31.333636],[-110.795467,31.33363],[-110.94232,31.332833],[-111.000643,31.332177],[-111.074825,31.332239],[-111.125646,31.348978],[-111.129451,31.349979],[-111.357436,31.423346],[-111.500659,31.468862],[-111.560194,31.488138],[-111.659998,31.519448],[-111.738873,31.544718],[-111.875674,31.587657],[-111.979304,31.620648],[-112.200717,31.690033],[-112.365328,31.741078],[-112.375759,31.743987],[-112.399254,31.751638],[-112.433246,31.762162],[-112.737399,31.855527],[-112.800213,31.87507],[-112.834233,31.885137],[-112.871505,31.896838],[-113.125961,31.97278],[-113.21163,32.000061],[-113.211365,32.000061],[-113.217307,32.002106],[-113.250731,32.012405],[-113.493196,32.088943],[-113.750756,32.169005],[-113.78168,32.179034],[-114.250775,32.323909],[-114.625785,32.43789],[-114.790245,32.487505],[-114.813613,32.494276],[-114.813991,32.497231],[-114.812316,32.500054],[-114.813402,32.501764],[-114.813753,32.50426],[-114.815185,32.506023],[-114.81651,32.506963],[-114.816591,32.507696],[-114.815591,32.508612],[-114.814321,32.509023],[-114.812942,32.509116],[-114.810159,32.508383],[-114.807726,32.508726],[-114.804076,32.510375],[-114.802833,32.511749],[-114.802211,32.513191],[-114.802238,32.515206],[-114.80367,32.516374],[-114.807753,32.516925],[-114.809672,32.517567],[-114.810374,32.518391],[-114.809969,32.520291],[-114.810482,32.521758],[-114.810969,32.522444],[-114.812888,32.52359],[-114.813348,32.524186],[-114.812645,32.525399],[-114.811293,32.526429],[-114.810563,32.527666],[-114.808617,32.529017],[-114.8064,32.531191],[-114.804858,32.533689],[-114.802559,32.535521],[-114.802181,32.536414],[-114.802018,32.53946],[-114.80237,32.540078],[-114.804776,32.541659],[-114.805966,32.545346],[-114.80583,32.546354],[-114.803883,32.548001],[-114.795635,32.550956],[-114.793769,32.552329],[-114.792065,32.555009],[-114.791551,32.557023],[-114.791523,32.558602],[-114.792955,32.562085],[-114.792088,32.568497],[-114.792358,32.569091],[-114.793224,32.569459],[-114.794684,32.568703],[-114.795253,32.56662],[-114.79766,32.564444],[-114.801311,32.562865],[-114.803664,32.560689],[-114.80683,32.55888],[-114.808885,32.558467],[-114.810318,32.558628],[-114.812914,32.560049],[-114.813995,32.562201],[-114.814212,32.56369],[-114.813968,32.566209],[-114.812995,32.568706],[-114.81148,32.569781],[-114.804421,32.572941],[-114.803474,32.573628],[-114.801877,32.576009],[-114.801471,32.578255],[-114.80193,32.579194],[-114.803879,32.580889],[-114.803987,32.582652],[-114.802823,32.585079],[-114.800441,32.588079],[-114.799737,32.592177],[-114.799683,32.593621],[-114.801251,32.596232],[-114.801548,32.598591],[-114.802361,32.59937],[-114.805932,32.600721],[-114.806905,32.60143],[-114.808041,32.603172],[-114.807879,32.605416],[-114.809042,32.608806],[-114.808906,32.612951],[-114.809555,32.616203],[-114.808662,32.619157],[-114.80739,32.621332],[-114.806821,32.621721],[-114.799302,32.625115],[-114.797564,32.624578],[-114.794102,32.622475],[-114.79264,32.621948],[-114.791179,32.621833],[-114.787715,32.623573],[-114.782573,32.624304],[-114.781896,32.624702],[-114.781766,32.625613],[-114.782518,32.628625],[-114.782235,32.630215],[-114.779215,32.633578],[-114.77457,32.63593],[-114.771978,32.637954],[-114.768199,32.639874],[-114.764382,32.642666],[-114.76331,32.644616],[-114.763512,32.645995],[-114.764917,32.648079],[-114.76495,32.649391],[-114.75831,32.655178],[-114.751079,32.659789],[-114.74948,32.66178],[-114.748,32.664184],[-114.748183,32.665098],[-114.747817,32.667777],[-114.746383,32.669853],[-114.745344,32.67219],[-114.7449,32.677231],[-114.744349,32.678935],[-114.740541,32.684196],[-114.739405,32.686385],[-114.730453,32.698844],[-114.72981,32.700282],[-114.72974,32.703121],[-114.730086,32.704298],[-114.728408,32.706648],[-114.726974,32.707875],[-114.72534,32.710369],[-114.72241,32.713597],[-114.719938,32.71829],[-114.717695,32.721547],[-114.715788,32.727758],[-114.714522,32.73039],[-114.712629,32.732678],[-114.710615,32.733936],[-114.709074,32.735456],[-114.706114,32.740986],[-114.70294,32.744793],[-114.701582,32.745632],[-114.699247,32.745098],[-114.695387,32.742244],[-114.691801,32.740147],[-114.689282,32.737927],[-114.68823,32.73753],[-114.682614,32.737348],[-114.672025,32.734951],[-114.665921,32.734028],[-114.654247,32.73357],[-114.645353,32.732139],[-114.635006,32.731372],[-114.629299,32.729908],[-114.617479,32.728243],[-114.61567,32.728454],[-114.61587,32.729717],[-114.615501,32.730044],[-114.615504,32.731449],[-114.614786,32.732846],[-114.614787,32.734076],[-114.615112,32.734515],[-114.581784,32.734946],[-114.581736,32.74232],[-114.564508,32.742274],[-114.564447,32.749554],[-114.539224,32.749812],[-114.539092,32.756949],[-114.526856,32.757094],[-114.528443,32.767276],[-114.529264,32.769484],[-114.531831,32.774264],[-114.532432,32.776922],[-114.532426,32.778644],[-114.531746,32.782503],[-114.531669,32.791185],[-114.529633,32.795477],[-114.522031,32.801675],[-114.520385,32.803576],[-114.520363,32.804385],[-114.519758,32.805676],[-114.515389,32.811439],[-114.510327,32.816488],[-114.494116,32.823287],[-114.475892,32.838693],[-114.468971,32.845155],[-114.465711,32.873681],[-114.465172,32.885295],[-114.463307,32.899116],[-114.462929,32.907944],[-114.46365,32.911682],[-114.464448,32.913128],[-114.473713,32.920594],[-114.47664,32.923628],[-114.477952,32.925706],[-114.479005,32.928291],[-114.480783,32.933678],[-114.480925,32.936276],[-114.48074,32.937027],[-114.478456,32.940555],[-114.474042,32.94515],[-114.470768,32.949424],[-114.468536,32.953922],[-114.467624,32.956663],[-114.467274,32.960172],[-114.467367,32.965384],[-114.468379,32.970745],[-114.468995,32.972239],[-114.470511,32.973858],[-114.472606,32.974654],[-114.475171,32.975154],[-114.477308,32.975023],[-114.479477,32.974189],[-114.480831,32.973362],[-114.481315,32.972064],[-114.484806,32.971339],[-114.488625,32.969946],[-114.490129,32.969884],[-114.492184,32.971021],[-114.492938,32.971781],[-114.494212,32.974262],[-114.495712,32.980075],[-114.496798,32.986534],[-114.497052,32.990206],[-114.49941,33.00004],[-114.499797,33.003905],[-114.50287,33.011154],[-114.506129,33.017009],[-114.507956,33.019708],[-114.511343,33.023455],[-114.5149,33.026524],[-114.52013,33.029984],[-114.523578,33.03096],[-114.538459,33.033422],[-114.553189,33.033974],[-114.56085,33.035285],[-114.5648,33.035077],[-114.571653,33.036624],[-114.575161,33.036541],[-114.578287,33.035375],[-114.581404,33.032545],[-114.584765,33.02823],[-114.586982,33.026944],[-114.589778,33.026228],[-114.598093,33.025384],[-114.601014,33.02541],[-114.611584,33.026221],[-114.618788,33.027202],[-114.625787,33.029435],[-114.628294,33.03105],[-114.629732,33.032546],[-114.63419,33.039024],[-114.639552,33.04529],[-114.641621,33.046894],[-114.64482,33.048644],[-114.645979,33.048902],[-114.647049,33.048416],[-114.649001,33.046762],[-114.650999,33.044131],[-114.655038,33.037106],[-114.657827,33.033824],[-114.659832,33.032664],[-114.662317,33.03267],[-114.66506,33.033906],[-114.670803,33.037983],[-114.673659,33.041896],[-114.67483,33.045507],[-114.675103,33.04753],[-114.674295,33.057169],[-114.679114,33.061966],[-114.686991,33.070968],[-114.68912,33.076121],[-114.689307,33.079179],[-114.688597,33.082869],[-114.68902,33.084035],[-114.692548,33.085786],[-114.694628,33.086226],[-114.701165,33.086368],[-114.70473,33.087051],[-114.706488,33.08816],[-114.707819,33.091102],[-114.708133,33.094022],[-114.707896,33.097431],[-114.706175,33.105334],[-114.703682,33.113768],[-114.696914,33.131119],[-114.694858,33.13346],[-114.690246,33.137724],[-114.687405,33.141983],[-114.684907,33.147823],[-114.682759,33.154808],[-114.679945,33.159059],[-114.67935,33.162433],[-114.68089,33.169074],[-114.680237,33.169637],[-114.679115,33.174608],[-114.67583,33.18152],[-114.675359,33.185488],[-114.675189,33.188178],[-114.678163,33.199488],[-114.678749,33.203448],[-114.676072,33.210835],[-114.673715,33.219245],[-114.673626,33.223121],[-114.674479,33.225504],[-114.678097,33.2303],[-114.682731,33.234918],[-114.689421,33.24525],[-114.689541,33.246428],[-114.688205,33.247965],[-114.683253,33.250034],[-114.67766,33.254426],[-114.674491,33.255597],[-114.672924,33.257042],[-114.672088,33.258499],[-114.672401,33.260469],[-114.677032,33.270169],[-114.680507,33.273576],[-114.684363,33.276023],[-114.688599,33.277861],[-114.694449,33.279785],[-114.702873,33.281916],[-114.711197,33.283341],[-114.717875,33.285156],[-114.72167,33.286982],[-114.723259,33.288079],[-114.731223,33.302433],[-114.731222,33.304039],[-114.729904,33.305745],[-114.726484,33.308273],[-114.724665,33.310097],[-114.723623,33.312109],[-114.71861,33.315761],[-114.710627,33.3205],[-114.70787,33.323316],[-114.705186,33.327709],[-114.700938,33.337014],[-114.69935,33.345692],[-114.699124,33.349258],[-114.698035,33.352442],[-114.69817,33.356575],[-114.699056,33.361148],[-114.701959,33.367134],[-114.704201,33.371238],[-114.706722,33.37503],[-114.707348,33.376627],[-114.707485,33.378375],[-114.707009,33.380633],[-114.707309,33.38254],[-114.708407,33.384142],[-114.713602,33.388256],[-114.72425,33.40042],[-114.725292,33.402341],[-114.725535,33.404055],[-114.725282,33.405048],[-114.723829,33.406531],[-114.722201,33.407384],[-114.720065,33.407891],[-114.710878,33.407254],[-114.701788,33.408377],[-114.697708,33.410942],[-114.696805,33.412087],[-114.696507,33.414063],[-114.695658,33.415128],[-114.68795,33.417934],[-114.673691,33.419157],[-114.658254,33.413021],[-114.656735,33.412813],[-114.652828,33.412923],[-114.64954,33.413633],[-114.643302,33.416746],[-114.635183,33.422725],[-114.633262,33.425024],[-114.630903,33.426754],[-114.62964,33.428137],[-114.627479,33.432307],[-114.622283,33.447558],[-114.622519,33.450879],[-114.623395,33.45449],[-114.622918,33.456561],[-114.618354,33.462708],[-114.614331,33.467315],[-114.613782,33.469049],[-114.612472,33.470768],[-114.607843,33.474834],[-114.603396,33.480631],[-114.601694,33.481396],[-114.599712,33.484316],[-114.597283,33.490653],[-114.593721,33.495932],[-114.592369,33.498675],[-114.589246,33.501813],[-114.580468,33.506465],[-114.573757,33.507543],[-114.569533,33.509219],[-114.560963,33.516739],[-114.560552,33.518272],[-114.560835,33.524334],[-114.560098,33.526663],[-114.559507,33.530724],[-114.558898,33.531819],[-114.542011,33.542481],[-114.531802,33.547862],[-114.530401,33.550099],[-114.525997,33.551457],[-114.524599,33.552231],[-114.524215,33.553068],[-114.52822,33.559318],[-114.531613,33.561702],[-114.532333,33.562879],[-114.533192,33.565823],[-114.535965,33.569154],[-114.536784,33.570959],[-114.537801,33.575555],[-114.538983,33.576792],[-114.5403,33.580615],[-114.540652,33.582872],[-114.540111,33.588354],[-114.540664,33.589789],[-114.540617,33.591412],[-114.537493,33.594895],[-114.536777,33.596394],[-114.531051,33.604482],[-114.529186,33.60665],[-114.526782,33.608831],[-114.523994,33.60999],[-114.522071,33.611277],[-114.521845,33.612544],[-114.522367,33.614172],[-114.527378,33.617828],[-114.528578,33.619994],[-114.52908,33.621711],[-114.531215,33.623913],[-114.531034,33.628213],[-114.530311,33.629037],[-114.52637,33.630259],[-114.523802,33.6347],[-114.525394,33.640669],[-114.529549,33.643861],[-114.533215,33.648443],[-114.533194,33.65166],[-114.532164,33.653194],[-114.530583,33.654461],[-114.525163,33.655939],[-114.518337,33.655927],[-114.514559,33.658014],[-114.514057,33.660179],[-114.515336,33.662033],[-114.517112,33.662877],[-114.520671,33.662681],[-114.526439,33.66388],[-114.530267,33.666821],[-114.532123,33.669702],[-114.531523,33.675108],[-114.530348,33.679245],[-114.527782,33.682684],[-114.523959,33.685879],[-114.519113,33.688473],[-114.512409,33.691282],[-114.507996,33.692018],[-114.504993,33.693022],[-114.502899,33.694255],[-114.496489,33.696901],[-114.495719,33.698454],[-114.495537,33.701506],[-114.494407,33.705395],[-114.494197,33.707922],[-114.494901,33.71443],[-114.496565,33.719155],[-114.498133,33.720634],[-114.500788,33.722204],[-114.502661,33.724584],[-114.504176,33.728055],[-114.506799,33.730518],[-114.510265,33.732146],[-114.512348,33.734214],[-114.510777,33.737574],[-114.508206,33.741587],[-114.506,33.746344],[-114.504483,33.750998],[-114.50434,33.756381],[-114.504863,33.760465],[-114.507089,33.76793],[-114.516734,33.788345],[-114.518942,33.797302],[-114.521555,33.801982],[-114.524682,33.808961],[-114.527188,33.812639],[-114.52805,33.814963],[-114.527886,33.815617],[-114.527161,33.816191],[-114.522714,33.818979],[-114.520733,33.822031],[-114.51997,33.825381],[-114.520465,33.827778],[-114.523409,33.835323],[-114.525539,33.838614],[-114.529597,33.848063],[-114.530607,33.85544],[-114.529883,33.857563],[-114.527069,33.859429],[-114.525666,33.860003],[-114.524292,33.860133],[-114.52287,33.859965],[-114.518998,33.858563],[-114.516811,33.85812],[-114.514673,33.858638],[-114.511346,33.86157],[-114.506635,33.863484],[-114.505638,33.864276],[-114.503887,33.865754],[-114.503104,33.867166],[-114.503017,33.867998],[-114.50386,33.871234],[-114.503395,33.875018],[-114.50434,33.876882],[-114.510138,33.880777],[-114.51866,33.888263],[-114.522768,33.892583],[-114.524813,33.895684],[-114.525872,33.901008],[-114.52569,33.901428],[-114.524289,33.901587],[-114.516344,33.897918],[-114.513715,33.897959],[-114.510944,33.899099],[-114.508708,33.90064],[-114.507988,33.901813],[-114.50792,33.903807],[-114.508558,33.906098],[-114.511511,33.911092],[-114.514503,33.914214],[-114.518434,33.917518],[-114.523393,33.921221],[-114.525361,33.922272],[-114.528385,33.923674],[-114.531107,33.924633],[-114.534146,33.925187],[-114.534951,33.9257],[-114.535853,33.928103],[-114.535478,33.934651],[-114.530566,33.943629],[-114.52868,33.947817],[-114.526353,33.950917],[-114.522002,33.955623],[-114.51586,33.958106],[-114.51497,33.958149],[-114.511231,33.95704],[-114.509568,33.957264],[-114.499883,33.961789],[-114.496042,33.96589],[-114.490398,33.97062],[-114.488459,33.972832],[-114.484784,33.975519],[-114.483097,33.977745],[-114.482333,33.980181],[-114.481455,33.981261],[-114.475907,33.984424],[-114.471138,33.98804],[-114.467932,33.992877],[-114.466187,33.993465],[-114.461133,33.993541],[-114.46012,33.993888],[-114.459258,33.994711],[-114.458028,33.997158],[-114.458026,33.99782],[-114.459184,34.000016],[-114.460689,34.001128],[-114.46628,34.003885],[-114.46731,34.00519],[-114.467404,34.00745],[-114.465867,34.010987],[-114.464525,34.011982],[-114.463336,34.012259],[-114.454807,34.010968],[-114.450206,34.012574],[-114.446815,34.01421],[-114.443821,34.016176],[-114.44054,34.019329],[-114.438266,34.022609],[-114.436171,34.028083],[-114.434949,34.037784],[-114.435816,34.04373],[-114.438602,34.050205],[-114.439406,34.05381],[-114.43934,34.057893],[-114.437683,34.071937],[-114.435907,34.077491],[-114.434181,34.087379],[-114.43338,34.088413],[-114.428026,34.092787],[-114.426168,34.097042],[-114.422899,34.099661],[-114.420499,34.103466],[-114.415908,34.107636],[-114.41168,34.110031],[-114.405916,34.111468],[-114.401336,34.111638],[-114.390565,34.110084],[-114.379223,34.11599],[-114.369292,34.117519],[-114.366517,34.118577],[-114.360402,34.123577],[-114.359389,34.125016],[-114.358358,34.127617],[-114.356372,34.130428],[-114.35303,34.13312],[-114.350478,34.134107],[-114.348051,34.134457],[-114.336112,34.134034],[-114.324576,34.136759],[-114.320777,34.138635],[-114.312206,34.144776],[-114.307802,34.150574],[-114.298168,34.160321],[-114.292806,34.166725],[-114.287294,34.170529],[-114.275267,34.172149],[-114.26846,34.170177],[-114.257034,34.172837],[-114.253444,34.174129],[-114.244421,34.179403],[-114.240712,34.183232],[-114.229715,34.186928],[-114.227034,34.188866],[-114.225814,34.191238],[-114.224941,34.193896],[-114.225075,34.196814],[-114.22579,34.199236],[-114.225861,34.201774],[-114.225194,34.203642],[-114.223384,34.205136],[-114.215454,34.208956],[-114.211761,34.211539],[-114.208253,34.215505],[-114.190876,34.230858],[-114.17805,34.239969],[-114.176403,34.241512],[-114.175948,34.242695],[-114.175906,34.245587],[-114.174597,34.247303],[-114.166536,34.249647],[-114.166124,34.250015],[-114.164476,34.251667],[-114.163867,34.253349],[-114.163959,34.255377],[-114.165335,34.258486],[-114.165249,34.259125],[-114.164648,34.259699],[-114.156853,34.258415],[-114.153346,34.258289],[-114.147159,34.259564],[-114.144779,34.259623],[-114.13545,34.257886],[-114.133264,34.258462],[-114.131489,34.260387],[-114.131211,34.26273],[-114.134768,34.268965],[-114.136671,34.274377],[-114.137045,34.277018],[-114.13605,34.280833],[-114.136677,34.283936],[-114.138365,34.288564],[-114.139534,34.295844],[-114.139187,34.298074],[-114.138167,34.300936],[-114.138282,34.30323],[-114.14093,34.305919],[-114.157206,34.317862],[-114.157939,34.320277],[-114.164249,34.330816],[-114.168807,34.339513],[-114.172845,34.344979],[-114.176909,34.349306],[-114.181145,34.352186],[-114.185556,34.354386],[-114.191094,34.356125],[-114.19648,34.359187],[-114.199482,34.361373],[-114.213774,34.36246],[-114.226107,34.365916],[-114.229686,34.368908],[-114.233065,34.375013],[-114.234275,34.376662],[-114.245261,34.385659],[-114.248649,34.388113],[-114.252739,34.3901],[-114.25822,34.395046],[-114.262909,34.400373],[-114.264317,34.401329],[-114.267521,34.402486],[-114.272184,34.402961],[-114.280108,34.403147],[-114.282261,34.403641],[-114.286802,34.40534],[-114.288663,34.406623],[-114.290219,34.408291],[-114.291751,34.411104],[-114.291903,34.416231],[-114.292226,34.417606],[-114.294836,34.421389],[-114.301016,34.426807],[-114.308659,34.430485],[-114.312251,34.432726],[-114.319054,34.435831],[-114.32613,34.437251],[-114.32688,34.438048],[-114.330669,34.445295],[-114.332991,34.448082],[-114.335372,34.450038],[-114.339627,34.451435],[-114.342615,34.451442],[-114.348974,34.450166],[-114.356025,34.449744],[-114.363404,34.447773],[-114.373719,34.446938],[-114.375789,34.447798],[-114.378852,34.450376],[-114.382985,34.453971],[-114.386699,34.457911],[-114.387407,34.460492],[-114.387187,34.462021],[-114.383525,34.470405],[-114.381701,34.47604],[-114.381555,34.477883],[-114.383038,34.488903],[-114.382358,34.495758],[-114.381402,34.499245],[-114.378124,34.507288],[-114.378223,34.516521],[-114.380838,34.529724],[-114.389603,34.542982],[-114.398847,34.559149],[-114.405228,34.569637],[-114.422382,34.580711],[-114.435671,34.593841],[-114.43681,34.596074],[-114.436363,34.596797],[-114.427502,34.599227],[-114.425338,34.600842],[-114.424326,34.602338],[-114.424202,34.610453],[-114.428648,34.614641],[-114.438739,34.621455],[-114.439495,34.625858],[-114.441398,34.630171],[-114.441525,34.631529],[-114.440685,34.634739],[-114.440294,34.63824],[-114.440519,34.640066],[-114.441465,34.64253],[-114.444276,34.646542],[-114.445664,34.647542],[-114.449549,34.651423],[-114.457985,34.657113],[-114.45821,34.657994],[-114.457702,34.659328],[-114.457185,34.659992],[-114.451785,34.663891],[-114.450614,34.665793],[-114.450506,34.666836],[-114.451532,34.668605],[-114.454305,34.671234],[-114.45491,34.673092],[-114.454881,34.675639],[-114.455536,34.677335],[-114.458163,34.681161],[-114.462178,34.6858],[-114.463633,34.68794],[-114.465246,34.691202],[-114.46809,34.701786],[-114.46813,34.704445],[-114.46862,34.707573],[-114.470477,34.711368],[-114.47162,34.712966],[-114.473682,34.713964],[-114.477297,34.714514],[-114.482779,34.714511],[-114.487508,34.716626],[-114.489287,34.720155],[-114.490971,34.724848],[-114.492017,34.725702],[-114.495858,34.727956],[-114.499007,34.729096],[-114.500795,34.730418],[-114.510292,34.733582],[-114.514178,34.735288],[-114.516619,34.736745],[-114.521048,34.741173],[-114.522619,34.74373],[-114.525611,34.747005],[-114.529079,34.750006],[-114.529615,34.750822],[-114.540306,34.757109],[-114.546884,34.761802],[-114.552682,34.766871],[-114.558653,34.773852],[-114.563979,34.782597],[-114.565184,34.785976],[-114.569383,34.791568],[-114.57101,34.794294],[-114.574474,34.804214],[-114.574694,34.807471],[-114.576452,34.8153],[-114.578681,34.820977],[-114.581126,34.826115],[-114.586842,34.835672],[-114.592339,34.841153],[-114.600653,34.847361],[-114.604255,34.849573],[-114.619878,34.856873],[-114.623939,34.859738],[-114.628276,34.863596],[-114.630682,34.866352],[-114.633051,34.869971],[-114.634382,34.87289],[-114.635176,34.875003],[-114.635458,34.876902]]]},"properties":{"name":"az"},"bbox":[-114.816591,31.332177,-109.045223,37.00426]},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-123.789325,60.000033],[-124.5,60.0],[-125.0,60.0],[-125.5,60.0],[-126.0,60.0],[-126.5,60.0],[-127.0,60.0],[-127.5,60.0],[-128.0,60.0],[-128.5,60.0],[-129.0,60.0],[-129.75,60.0],[-130.5,60.0],[-131.0,60.0],[-131.5,60.0],[-132.0,60.0],[-132.5,60.0],[-133.0,60.0],[-133.5,60.0],[-134.0,60.0],[-134.75,60.0],[-135.5,60.0],[-136.0,60.0],[-136.5,60.0],[-137.0,60.0],[-137.5,60.0],[-138.0,60.0],[-138.5,60.0],[-139.052201,60.000041],[-139.042131,59.991568],[-138.790823,59.922991],[-138.705785,59.90624],[-138.656299,59.799224],[-138.605426,59.75769],[-138.236661,59.570124],[-137.878044,59.381442],[-137.602069,59.240725],[-137.499314,58.983139],[-137.526729,58.906599],[-137.446562,58.908662],[-137.288408,58.999482],[-137.236648,59.011438],[-136.999634,59.091364],[-136.82467,59.159801],[-136.581992,59.165541],[-136.467495,59.284562],[-136.476248,59.464193],[-136.397735,59.447177],[-136.301436,59.465838],[-136.236285,59.526711],[-136.241406,59.559103],[-136.355712,59.600673],[-136.195251,59.638813],[-135.945689,59.663622],[-135.479005,59.798613],[-135.377023,59.742926],[-135.234707,59.69595],[-135.221815,59.664147],[-135.154455,59.626479],[-135.117546,59.623383],[-135.027708,59.563918],[-135.027989,59.476302],[-135.097528,59.427003],[-134.989246,59.387876],[-135.030202,59.348351],[-134.958935,59.281086],[-134.6993,59.248389],[-134.677947,59.192804],[-134.569799,59.133504],[-134.484783,59.133387],[-134.444919,59.086474],[-134.385375,59.041397],[-134.407607,58.978445],[-134.312279,58.961391],[-134.337383,58.920335],[-134.256434,58.859072],[-134.002586,58.774095],[-133.841333,58.730149],[-133.699471,58.609114],[-133.504183,58.496378],[-133.381798,58.432552],[-133.461274,58.389873],[-133.354071,58.2834],[-133.172399,58.151641],[-133.069543,58.000052],[-132.988993,57.942973],[-132.917966,57.87949],[-132.868068,57.844587],[-132.759443,57.707526],[-132.686743,57.642966],[-132.563579,57.506826],[-132.424282,57.392246],[-132.369582,57.351424],[-132.244621,57.212013],[-132.369308,57.091422],[-132.045927,57.044044],[-132.121147,56.866901],[-131.870758,56.80625],[-131.901838,56.754361],[-131.857457,56.701773],[-131.833632,56.598775],[-131.581755,56.612372],[-131.467385,56.551073],[-131.164157,56.447285],[-131.087203,56.406353],[-130.78139,56.368061],[-130.656236,56.283395],[-130.585513,56.255446],[-130.465112,56.241474],[-130.419724,56.138877],[-130.331545,56.122591],[-130.241241,56.095807],[-130.103701,56.122024],[-130.002139,56.006611],[-130.020406,55.910078],[-129.995715,55.899139],[-130.13344,55.765459],[-130.132561,55.717473],[-130.086297,55.686998],[-130.091593,55.629306],[-130.105133,55.618787],[-130.110445,55.566288],[-130.074986,55.504725],[-130.024123,55.461092],[-130.015996,55.381155],[-130.003035,55.336114],[-129.967917,55.317077],[-129.943683,55.287889],[-130.008722,55.249708],[-130.075523,55.201454],[-130.129456,55.147899],[-130.135944,55.119981],[-130.165866,55.079697],[-130.132759,55.042929],[-130.114109,54.990617],[-130.093712,54.984907],[-130.034143,55.029985],[-130.007792,55.082762],[-129.90097,55.166508],[-129.887838,55.213407],[-129.815736,55.289845],[-129.832944,55.313758],[-129.814107,55.368647],[-129.78669,55.4],[-129.767295,55.473053],[-129.789238,55.511994],[-129.810928,55.57488],[-129.76726,55.549461],[-129.767978,55.529391],[-129.745012,55.480273],[-129.721594,55.461147],[-129.710696,55.41362],[-129.635601,55.457688],[-129.516929,55.451165],[-129.525559,55.437803],[-129.628478,55.445441],[-129.664391,55.432032],[-129.677054,55.377705],[-129.71711,55.35166],[-129.75477,55.281053],[-129.80674,55.268715],[-129.857624,55.209516],[-129.860008,55.177238],[-129.888775,55.145417],[-129.930729,55.119088],[-129.987592,55.058986],[-129.977487,55.0491],[-130.004126,55.01272],[-130.008609,54.97645],[-130.058507,54.952946],[-130.114241,54.9],[-130.161138,54.866533],[-130.136576,54.846911],[-130.092497,54.886006],[-130.056132,54.892197],[-130.107455,54.8385],[-130.169424,54.81518],[-130.208372,54.731629],[-130.240404,54.709456],[-130.349638,54.694665],[-130.369353,54.680675],[-130.392454,54.631373],[-130.291574,54.573415],[-130.173178,54.436964],[-130.237041,54.475775],[-130.349133,54.586331],[-130.394617,54.620859],[-130.431283,54.637302],[-130.456211,54.612881],[-130.384205,54.56138],[-130.436382,54.556854],[-130.450814,54.528639],[-130.444353,54.490094],[-130.388578,54.454661],[-130.447882,54.457101],[-130.483768,54.438815],[-130.474279,54.390143],[-130.481957,54.36863],[-130.463519,54.337081],[-130.416904,54.327904],[-130.307128,54.33742],[-130.28605,54.350033],[-130.253759,54.319858],[-130.231607,54.267919],[-130.272691,54.242245],[-130.287871,54.211846],[-130.177897,54.178601],[-130.12469,54.149493],[-130.082635,54.114502],[-130.102198,54.06363],[-130.085343,54.02374],[-130.109114,53.949817],[-130.072394,53.891744],[-129.981117,53.823897],[-129.785714,53.705906],[-129.729424,53.691395],[-129.757506,53.664658],[-129.687931,53.597609],[-129.646369,53.566434],[-129.487501,53.473704],[-129.457008,53.461295],[-129.38396,53.408168],[-129.339033,53.382461],[-129.280872,53.36262],[-129.29099,53.396456],[-129.260078,53.405328],[-129.234388,53.460267],[-129.238692,53.564204],[-129.251684,53.578342],[-129.240163,53.61352],[-129.297841,53.629912],[-129.294647,53.649093],[-129.231505,53.630859],[-129.191761,53.66025],[-129.137298,53.687801],[-129.117288,53.717889],[-129.03106,53.753446],[-128.975165,53.768575],[-128.960095,53.798491],[-128.927555,53.786775],[-128.873361,53.814432],[-128.847152,53.858641],[-128.789372,53.880862],[-128.789358,53.901508],[-128.730567,53.922475],[-128.702962,53.962866],[-128.69318,54.001885],[-128.64931,54.004516],[-128.661246,53.943792],[-128.715038,53.901795],[-128.707604,53.876673],[-128.627305,53.851175],[-128.571098,53.843006],[-128.495817,53.846884],[-128.486962,53.826551],[-128.609613,53.832837],[-128.655876,53.854138],[-128.678188,53.852779],[-128.705521,53.822579],[-128.784969,53.790011],[-128.80821,53.769853],[-128.805054,53.743432],[-128.783142,53.720725],[-128.801365,53.680498],[-128.835383,53.649467],[-128.823963,53.619654],[-128.76891,53.56882],[-128.749541,53.540062],[-128.711569,53.536274],[-128.686819,53.502027],[-128.644123,53.502168],[-128.586758,53.477283],[-128.592942,53.455993],[-128.535271,53.427952],[-128.568141,53.415787],[-128.634306,53.453312],[-128.657229,53.475205],[-128.731118,53.489507],[-128.756935,53.484457],[-128.807856,53.564431],[-128.840718,53.554609],[-128.867785,53.529951],[-128.908213,53.530645],[-128.966901,53.550244],[-128.972912,53.496314],[-128.952551,53.46589],[-128.915113,53.445519],[-128.885378,53.411139],[-128.890546,53.361156],[-128.886424,53.307201],[-128.847109,53.26766],[-128.69621,53.189704],[-128.610997,53.164152],[-128.579232,53.128321],[-128.550355,53.068472],[-128.523773,53.032024],[-128.498807,52.91904],[-128.498352,52.883834],[-128.45365,52.844765],[-128.432232,52.81453],[-128.401298,52.825212],[-128.324321,52.797218],[-128.240821,52.79958],[-128.197602,52.841253],[-128.159866,52.860239],[-128.126424,52.829611],[-128.13013,52.770277],[-128.113048,52.759668],[-128.135772,52.712162],[-128.171003,52.676255],[-128.184314,52.626281],[-128.243349,52.571509],[-128.248061,52.535802],[-128.22305,52.484423],[-128.227665,52.448769],[-128.252778,52.408159],[-128.311458,52.399066],[-128.339483,52.371805],[-128.324742,52.336704],[-128.37027,52.293305],[-128.358286,52.266197],[-128.289937,52.258136],[-128.234274,52.313674],[-128.223916,52.335419],[-128.151687,52.409274],[-128.150049,52.430994],[-128.103563,52.474856],[-128.09144,52.520831],[-128.066591,52.511072],[-128.014038,52.529149],[-128.039588,52.466083],[-128.07469,52.459414],[-128.078549,52.41904],[-128.034926,52.329225],[-128.007923,52.318105],[-127.932366,52.317427],[-127.925356,52.280402],[-127.900751,52.258795],[-127.898502,52.224752],[-127.853957,52.207434],[-127.818851,52.250363],[-127.785002,52.267803],[-127.716854,52.272009],[-127.671242,52.294063],[-127.635209,52.283205],[-127.60847,52.29111],[-127.606261,52.315244],[-127.57183,52.316154],[-127.538152,52.33145],[-127.488624,52.338208],[-127.454341,52.407043],[-127.434169,52.413303],[-127.485902,52.451335],[-127.536427,52.520888],[-127.428323,52.426768],[-127.40875,52.417703],[-127.345686,52.417476],[-127.306793,52.45351],[-127.262031,52.473451],[-127.267483,52.516834],[-127.255577,52.542822],[-127.215442,52.567696],[-127.134152,52.593786],[-127.117139,52.616948],[-127.037902,52.6426],[-127.032213,52.664607],[-126.968327,52.716865],[-127.002296,52.763747],[-126.996836,52.813889],[-127.075117,52.864842],[-127.038022,52.863489],[-126.98248,52.815003],[-126.953962,52.803852],[-126.958327,52.767351],[-126.941533,52.736525],[-126.915761,52.722165],[-126.930609,52.701331],[-126.975629,52.677805],[-126.976517,52.643221],[-127.002363,52.625515],[-127.037857,52.628446],[-127.099752,52.605656],[-127.1173,52.578036],[-127.156539,52.571523],[-127.226583,52.53696],[-127.237783,52.513958],[-127.218274,52.475606],[-127.231767,52.445706],[-127.201036,52.438308],[-127.19208,52.382083],[-127.163832,52.343289],[-127.078246,52.333036],[-126.980909,52.335485],[-126.962264,52.363606],[-126.920227,52.364556],[-126.796793,52.400048],[-126.785969,52.372528],[-126.882096,52.361774],[-126.891699,52.347316],[-126.934632,52.341654],[-126.965364,52.312136],[-126.916155,52.252506],[-126.900602,52.196785],[-126.815373,52.161084],[-126.75051,52.114138],[-126.719823,52.075447],[-126.672816,52.042622],[-126.68674,52.018975],[-126.759191,52.085213],[-126.838213,52.148997],[-126.927133,52.188594],[-126.957647,52.262736],[-127.006151,52.301331],[-127.032478,52.310567],[-127.082329,52.298348],[-127.152919,52.316973],[-127.204791,52.293305],[-127.212791,52.277467],[-127.297298,52.232373],[-127.339189,52.233295],[-127.399406,52.217429],[-127.426235,52.18854],[-127.461624,52.191076],[-127.436104,52.137393],[-127.434791,52.09569],[-127.456655,52.079758],[-127.554211,52.089772],[-127.554629,52.105314],[-127.474301,52.099796],[-127.463281,52.126879],[-127.491093,52.157271],[-127.529126,52.146773],[-127.570447,52.121547],[-127.607136,52.121689],[-127.613034,52.096404],[-127.64155,52.061202],[-127.652515,51.988648],[-127.667868,51.951203],[-127.704071,51.941114],[-127.747384,51.951024],[-127.801972,51.936602],[-127.84263,51.911131],[-127.87739,51.90192],[-127.886243,51.883643],[-127.862682,51.866126],[-127.892006,51.827096],[-127.892607,51.797222],[-127.873471,51.762638],[-127.891457,51.715206],[-127.877104,51.669895],[-127.850171,51.646166],[-127.792057,51.623148],[-127.760891,51.645672],[-127.713847,51.616427],[-127.799607,51.580665],[-127.787247,51.555954],[-127.730036,51.521835],[-127.696093,51.536804],[-127.672695,51.517892],[-127.63881,51.528536],[-127.595366,51.566232],[-127.559509,51.608232],[-127.54807,51.638143],[-127.484805,51.6463],[-127.452093,51.67053],[-127.335368,51.69269],[-127.26222,51.684968],[-127.265682,51.666666],[-127.325534,51.665511],[-127.349798,51.651629],[-127.383804,51.656301],[-127.415591,51.635333],[-127.44129,51.639777],[-127.504802,51.623239],[-127.521258,51.578774],[-127.51252,51.555535],[-127.521096,51.513452],[-127.563192,51.499767],[-127.563356,51.477585],[-127.633859,51.430381],[-127.655246,51.394811],[-127.720197,51.401186],[-127.754667,51.369554],[-127.792269,51.356828],[-127.770289,51.326969],[-127.748031,51.318945],[-127.653347,51.333075],[-127.524527,51.342376],[-127.530862,51.323402],[-127.473799,51.313418],[-127.396691,51.312864],[-127.325724,51.300171],[-127.215842,51.317478],[-127.164667,51.342974],[-127.154346,51.321093],[-127.285314,51.294793],[-127.454449,51.28293],[-127.469086,51.264877],[-127.58081,51.261968],[-127.602031,51.283841],[-127.677028,51.272375],[-127.764954,51.249281],[-127.784466,51.227669],[-127.788107,51.198148],[-127.724756,51.137025],[-127.683066,51.133299],[-127.657238,51.08698],[-127.573102,51.091325],[-127.504382,51.107846],[-127.453962,51.09303],[-127.386014,51.093829],[-127.417157,51.069271],[-127.339013,51.03806],[-127.31057,51.058876],[-127.155829,51.053209],[-127.101123,51.060867],[-127.014965,51.083881],[-126.946956,51.075465],[-126.873961,51.085126],[-126.828105,51.075754],[-126.792482,51.081831],[-126.754101,51.115718],[-126.674818,51.154262],[-126.658705,51.142014],[-126.775184,51.067681],[-126.968758,51.055862],[-127.016963,51.059866],[-127.142437,51.03805],[-127.303548,51.043657],[-127.305599,51.026536],[-127.400208,51.046289],[-127.498554,51.098547],[-127.515625,51.078388],[-127.524945,51.013774],[-127.512,50.9928],[-127.468201,50.975353],[-127.408004,50.927001],[-127.344885,50.921987],[-127.336511,50.905509],[-127.265103,50.908677],[-127.197334,50.875958],[-127.159796,50.872997],[-127.139428,50.858364],[-127.088384,50.844913],[-127.063296,50.82161],[-127.019797,50.817461],[-126.944254,50.850368],[-126.895975,50.884539],[-126.954694,50.895575],[-127.028145,50.886846],[-127.145119,50.910781],[-127.084437,50.921816],[-127.051823,50.906815],[-126.987387,50.897915],[-126.908824,50.894761],[-126.900963,50.9124],[-126.852477,50.947044],[-126.812707,50.956272],[-126.780853,50.935334],[-126.74132,50.941628],[-126.737419,50.930229],[-126.83947,50.914067],[-126.757953,50.899191],[-126.716202,50.872595],[-126.666072,50.866539],[-126.511567,50.94139],[-126.547877,51.011775],[-126.5157,51.03787],[-126.503041,50.994482],[-126.461087,50.943982],[-126.390559,50.931723],[-126.309288,50.933897],[-126.2754,50.926546],[-126.186582,50.926695],[-126.197537,50.905237],[-126.254653,50.905695],[-126.311254,50.917132],[-126.417001,50.910455],[-126.46361,50.923521],[-126.548488,50.897677],[-126.566476,50.833627],[-126.508967,50.82939],[-126.475509,50.813812],[-126.37438,50.832572],[-126.327696,50.850679],[-126.261029,50.844329],[-126.251209,50.833026],[-126.16773,50.840841],[-126.203883,50.810465],[-126.187409,50.781968],[-126.11923,50.769114],[-126.128619,50.734156],[-126.193064,50.713149],[-126.197636,50.688963],[-126.177838,50.669416],[-126.123601,50.670769],[-126.06747,50.6811],[-126.01387,50.703134],[-125.95802,50.685232],[-125.851367,50.702409],[-125.804161,50.70226],[-125.710552,50.717456],[-125.722314,50.745381],[-125.683162,50.780396],[-125.643377,50.787593],[-125.653525,50.809678],[-125.681501,50.817799],[-125.684943,50.875016],[-125.63674,50.886433],[-125.603969,50.908199],[-125.571017,50.902417],[-125.544799,50.937324],[-125.591519,50.965743],[-125.578391,50.98638],[-125.593154,51.005283],[-125.590848,51.036301],[-125.634374,51.066503],[-125.640114,51.090073],[-125.589216,51.081965],[-125.55211,51.064946],[-125.538406,51.043552],[-125.541323,51.001943],[-125.505122,50.955226],[-125.504266,50.931878],[-125.529976,50.90916],[-125.537544,50.878037],[-125.563368,50.864926],[-125.614159,50.874744],[-125.647004,50.85203],[-125.63401,50.824683],[-125.591142,50.795503],[-125.615921,50.758916],[-125.665702,50.750547],[-125.701703,50.687276],[-125.832988,50.681612],[-125.886986,50.664319],[-125.907069,50.667291],[-126.069598,50.657873],[-126.105552,50.644578],[-126.275095,50.630256],[-126.270366,50.60226],[-126.240006,50.583707],[-126.189507,50.580205],[-126.077441,50.61725],[-126.027415,50.621318],[-125.974479,50.642372],[-125.958913,50.622457],[-126.00475,50.611083],[-126.052838,50.610243],[-126.126052,50.59312],[-126.190395,50.56909],[-126.21078,50.537926],[-126.256422,50.526346],[-126.270919,50.50769],[-126.131638,50.48328],[-126.083978,50.484982],[-126.036093,50.474237],[-125.932086,50.471166],[-125.886,50.490921],[-125.816161,50.500415],[-125.776563,50.490643],[-125.768981,50.468813],[-125.703643,50.422118],[-125.634614,50.437934],[-125.617345,50.450421],[-125.574557,50.528959],[-125.550441,50.549593],[-125.567875,50.581799],[-125.552786,50.595361],[-125.558723,50.62818],[-125.527929,50.673898],[-125.44991,50.694049],[-125.458495,50.673801],[-125.506982,50.668873],[-125.528512,50.634164],[-125.536348,50.559813],[-125.522434,50.551751],[-125.593147,50.449246],[-125.516376,50.453352],[-125.48102,50.443524],[-125.436094,50.449134],[-125.396828,50.468281],[-125.373545,50.505384],[-125.337551,50.470817],[-125.269568,50.459742],[-125.224515,50.441013],[-125.182884,50.407703],[-125.11381,50.430539],[-125.107886,50.500364],[-125.044608,50.515973],[-124.991612,50.537803],[-124.989042,50.568626],[-124.918083,50.601817],[-124.898894,50.640123],[-124.929161,50.671518],[-124.915688,50.703507],[-124.889604,50.731778],[-124.948059,50.755297],[-124.951149,50.775725],[-124.981766,50.797343],[-124.955245,50.832093],[-124.912113,50.836585],[-124.881871,50.885877],[-124.854146,50.901277],[-124.854319,50.930305],[-124.824775,50.931428],[-124.790531,50.899095],[-124.828412,50.872777],[-124.8641,50.824591],[-124.912638,50.803911],[-124.89537,50.769612],[-124.86483,50.764186],[-124.833299,50.73498],[-124.832988,50.712806],[-124.863673,50.688989],[-124.852515,50.665566],[-124.873876,50.628763],[-124.859633,50.598593],[-124.886121,50.560886],[-124.922079,50.550719],[-124.969693,50.500499],[-125.050199,50.480896],[-125.065558,50.40963],[-125.051738,50.38685],[-125.079725,50.325522],[-125.054783,50.315388],[-125.003256,50.342695],[-124.968831,50.378299],[-124.999797,50.445966],[-124.963222,50.429455],[-124.940399,50.376752],[-124.961787,50.337466],[-124.937924,50.326048],[-124.893401,50.324676],[-124.829728,50.306754],[-124.712059,50.373404],[-124.661557,50.436996],[-124.612483,50.419276],[-124.541761,50.421917],[-124.528902,50.436172],[-124.411731,50.467107],[-124.417727,50.438183],[-124.50791,50.41728],[-124.521799,50.398211],[-124.636001,50.400313],[-124.666695,50.389587],[-124.708839,50.321294],[-124.632892,50.29301],[-124.615609,50.258138],[-124.608409,50.193048],[-124.631527,50.16102],[-124.724486,50.127638],[-124.700989,50.098707],[-124.837561,50.051507],[-124.80299,50.007958],[-124.75185,49.963363],[-124.633288,49.910278],[-124.55634,49.871913],[-124.53033,49.845994],[-124.526529,49.804353],[-124.472205,49.794829],[-124.449818,49.77758],[-124.396744,49.766422],[-124.352341,49.776663],[-124.296503,49.762586],[-124.280392,49.77302],[-124.130281,49.781813],[-124.101798,49.798116],[-124.091486,49.837555],[-124.048403,49.841489],[-124.077414,49.866434],[-124.032987,49.916919],[-124.018857,49.90734],[-124.033258,49.874832],[-123.995792,49.842375],[-123.999721,49.811606],[-123.930891,49.837742],[-123.903663,49.878874],[-123.961223,49.905151],[-124.009688,49.968456],[-124.008451,49.998085],[-123.961211,50.021431],[-123.937423,50.019277],[-123.847513,50.056683],[-123.802829,50.092158],[-123.832353,50.104183],[-123.879633,50.146817],[-123.920401,50.158354],[-123.967499,50.182795],[-123.98776,50.206891],[-123.850843,50.163454],[-123.799773,50.131177],[-123.793636,50.117135],[-123.747258,50.09682],[-123.787049,50.068459],[-123.789674,50.046297],[-123.865477,50.028579],[-123.907109,50.003994],[-123.956385,49.99768],[-123.976493,49.961346],[-123.936682,49.920759],[-123.884634,49.908495],[-123.86817,49.879604],[-123.873054,49.846279],[-123.895559,49.813179],[-123.923137,49.798633],[-123.936261,49.765725],[-123.892537,49.749313],[-123.841225,49.68642],[-123.82499,49.634699],[-123.687386,49.653471],[-123.735655,49.623195],[-123.787786,49.602578],[-123.78395,49.568872],[-123.763458,49.550516],[-123.777252,49.519788],[-123.814929,49.593647],[-123.841645,49.619999],[-123.864106,49.675745],[-123.890267,49.69968],[-123.893568,49.734445],[-123.972111,49.766932],[-124.033074,49.742146],[-124.035549,49.723369],[-124.06667,49.694348],[-124.074778,49.64196],[-124.039037,49.633237],[-124.001711,49.555338],[-123.924966,49.513214],[-123.901507,49.480073],[-123.870918,49.467868],[-123.841164,49.472063],[-123.743058,49.464226],[-123.723191,49.438446],[-123.684055,49.436139],[-123.537995,49.383822],[-123.500301,49.393571],[-123.46777,49.449368],[-123.496164,49.501312],[-123.477851,49.528382],[-123.401649,49.55285],[-123.357761,49.554065],[-123.308699,49.583673],[-123.265358,49.589303],[-123.249694,49.667475],[-123.183299,49.685237],[-123.18987,49.65692],[-123.224905,49.64709],[-123.207762,49.628953],[-123.23728,49.556911],[-123.262812,49.519455],[-123.249485,49.501567],[-123.233016,49.424983],[-123.267446,49.381068],[-123.288161,49.37518],[-123.244952,49.34054],[-123.20558,49.340186],[-123.115024,49.30854],[-123.013107,49.297919],[-122.948365,49.326423],[-122.893534,49.359533],[-122.887128,49.33631],[-122.92924,49.304483],[-122.966323,49.288084],[-123.050198,49.29387],[-123.102213,49.285319],[-123.125226,49.29049],[-123.171025,49.271734],[-123.243598,49.279829],[-123.264779,49.266547],[-123.236552,49.2306],[-123.201549,49.215861],[-123.211876,49.183577],[-123.197405,49.168067],[-123.195539,49.126556],[-123.178705,49.083622],[-123.099204,49.034827],[-123.090758,49.001933],[-123.035183,49.002068],[-123.056525,49.027453],[-123.045967,49.046968],[-123.008077,49.063366],[-122.945958,49.073609],[-122.890656,49.09147],[-122.852523,49.082892],[-122.887885,49.056845],[-122.86673,49.024412],[-122.8261,49.02531],[-122.757879,49.002217],[-122.116774,49.002234],[-121.995865,49.000005],[-121.5,49.0],[-121.0,49.0],[-120.369967,49.000081],[-119.918118,49.000096],[-119.535982,49.00004],[-119.008482,49.000011],[-118.5,49.0],[-118.00188,49.000357],[-117.268353,49.000023],[-116.75535,49.00002],[-116.275744,49.00003],[-115.51387,49.000695],[-115.25917,49.000011],[-114.763511,49.000017],[-114.410624,49.001221],[-114.068332,48.99885],[-114.053758,49.026545],[-114.080976,49.059688],[-114.10694,49.064965],[-114.153149,49.09951],[-114.149038,49.143653],[-114.174905,49.163551],[-114.257126,49.177008],[-114.310456,49.192035],[-114.345591,49.193571],[-114.402122,49.213274],[-114.393486,49.257187],[-114.447942,49.264369],[-114.446795,49.288418],[-114.477646,49.312352],[-114.487625,49.347321],[-114.522995,49.356313],[-114.536594,49.37961],[-114.56693,49.376884],[-114.598433,49.412562],[-114.594717,49.502843],[-114.573006,49.524963],[-114.573604,49.557463],[-114.620133,49.546809],[-114.690983,49.554026],[-114.732587,49.57638],[-114.746476,49.61851],[-114.662818,49.643724],[-114.668385,49.703875],[-114.633119,49.73408],[-114.659135,49.765079],[-114.636052,49.784812],[-114.639932,49.827721],[-114.691786,49.896286],[-114.693676,49.942584],[-114.683311,49.967061],[-114.657436,49.968397],[-114.654849,49.996949],[-114.666371,50.050944],[-114.733259,50.118611],[-114.72467,50.190177],[-114.770225,50.249995],[-114.751667,50.275287],[-114.797606,50.326122],[-114.766217,50.350742],[-114.819164,50.369058],[-114.824819,50.393325],[-114.856892,50.392524],[-114.873012,50.430191],[-114.912167,50.451372],[-115.013697,50.570859],[-115.085274,50.589749],[-115.117525,50.569751],[-115.173553,50.567589],[-115.190916,50.535098],[-115.230984,50.544879],[-115.239651,50.589197],[-115.293626,50.611108],[-115.282254,50.663193],[-115.315124,50.725826],[-115.354557,50.722712],[-115.391222,50.706452],[-115.436282,50.755731],[-115.481107,50.755182],[-115.497558,50.782346],[-115.55087,50.797066],[-115.578136,50.840504],[-115.642983,50.842206],[-115.648929,50.874148],[-115.592646,50.892641],[-115.584176,50.915754],[-115.6098,50.92628],[-115.614596,50.951188],[-115.648834,50.99752],[-115.703792,51.021286],[-115.72676,51.018688],[-115.767036,51.039388],[-115.789232,51.072418],[-115.833372,51.075927],[-115.867933,51.08929],[-115.923607,51.08311],[-115.957263,51.115182],[-116.004465,51.124681],[-116.036845,51.170046],[-116.000023,51.193947],[-116.007604,51.222012],[-116.049266,51.227437],[-116.065173,51.24793],[-116.111676,51.253353],[-116.159133,51.275812],[-116.164131,51.29779],[-116.219085,51.294504],[-116.268017,51.311933],[-116.290031,51.343109],[-116.277255,51.354695],[-116.311435,51.384962],[-116.28247,51.406837],[-116.29243,51.461803],[-116.360597,51.470866],[-116.393829,51.505663],[-116.390886,51.545588],[-116.452925,51.560548],[-116.47325,51.582673],[-116.471411,51.604678],[-116.499576,51.623401],[-116.595016,51.66183],[-116.581176,51.697282],[-116.598535,51.723874],[-116.631195,51.731403],[-116.650349,51.753706],[-116.643147,51.786709],[-116.682076,51.812147],[-116.715507,51.798663],[-116.744232,51.806608],[-116.818598,51.735564],[-116.809741,51.705346],[-116.887286,51.702969],[-116.920568,51.709803],[-116.976361,51.760185],[-116.964002,51.794951],[-116.988988,51.811106],[-117.034321,51.859807],[-117.019465,51.89136],[-117.097652,51.939695],[-117.103176,51.956517],[-117.197224,51.980135],[-117.268408,52.055787],[-117.305064,52.074313],[-117.298593,52.094282],[-117.317303,52.194042],[-117.334036,52.148641],[-117.381256,52.137724],[-117.500178,52.144274],[-117.523115,52.158246],[-117.611264,52.144259],[-117.629348,52.174764],[-117.66353,52.197893],[-117.741346,52.202997],[-117.818317,52.226355],[-117.839578,52.274127],[-117.796061,52.292507],[-117.777995,52.31893],[-117.752878,52.316424],[-117.705795,52.365345],[-117.766498,52.417692],[-117.886933,52.426092],[-117.966792,52.469709],[-117.987985,52.500238],[-118.052899,52.449564],[-118.030363,52.438077],[-118.044169,52.398459],[-118.138046,52.407498],[-118.212773,52.370341],[-118.220892,52.39756],[-118.244447,52.408025],[-118.255338,52.449537],[-118.193351,52.47782],[-118.235529,52.490178],[-118.289146,52.538494],[-118.272783,52.565956],[-118.332568,52.580172],[-118.333601,52.606195],[-118.354491,52.633684],[-118.301038,52.654081],[-118.290141,52.677693],[-118.343295,52.708889],[-118.342823,52.738556],[-118.42241,52.775787],[-118.399626,52.82446],[-118.403166,52.850763],[-118.444463,52.852225],[-118.448279,52.885287],[-118.500142,52.906382],[-118.543788,52.908455],[-118.587213,52.882248],[-118.61383,52.883722],[-118.613422,52.936012],[-118.660205,52.963938],[-118.669769,52.983416],[-118.640772,52.999331],[-118.655348,53.034797],[-118.759058,53.065776],[-118.732341,53.119249],[-118.772488,53.133039],[-118.786522,53.159224],[-118.915961,53.211845],[-118.947444,53.238935],[-119.023834,53.23195],[-118.999418,53.192765],[-119.046882,53.14491],[-119.088497,53.165532],[-119.119524,53.161766],[-119.146013,53.191181],[-119.232715,53.181768],[-119.340496,53.28708],[-119.355879,53.340102],[-119.406085,53.368089],[-119.45924,53.357219],[-119.517534,53.370068],[-119.598341,53.365716],[-119.6689,53.367828],[-119.695448,53.39061],[-119.725423,53.388754],[-119.758367,53.426371],[-119.790633,53.479266],[-119.830158,53.514734],[-119.853858,53.499932],[-119.899477,53.519128],[-119.862257,53.548509],[-119.910713,53.601255],[-119.902698,53.620159],[-119.854066,53.607707],[-119.748726,53.593366],[-119.713409,53.61458],[-119.797381,53.707772],[-119.844328,53.714739],[-119.907981,53.710601],[-119.88743,53.750019],[-119.888237,53.779485],[-119.942341,53.775862],[-119.999987,53.806235],[-120.0,54.268869],[-119.999941,54.490897],[-120.000297,54.797684],[-120.000314,55.119198],[-120.0,55.402344],[-119.999946,55.778382],[-120.000752,56.249312],[-120.0,56.438945],[-120.000037,56.770701],[-120.0,57.25],[-119.999899,57.513998],[-120.0,57.911072],[-119.999989,58.149114],[-120.0,58.731498],[-120.0,60.0],[-120.5,60.0],[-121.0,60.0],[-121.75,60.0],[-122.5,60.0],[-123.0,60.0],[-123.789325,60.000033]]]},"properties":{"name":"bc"},"bbox":[-139.052201,48.99885,-114.053758,60.000041]},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-48.010268,-0.686169],[-48.015968,-0.686869],[-48.020668,-0.685769],[-48.022568,-0.682969],[-48.022568,-0.679369],[-48.022568,-0.674969],[-48.023668,-0.671069],[-48.026468,-0.668069],[-48.029768,-0.666769],[-48.033168,-0.664569],[-48.036968,-0.663169],[-48.040268,-0.663169],[-48.043868,-0.661969],[-48.048268,-0.659569],[-48.052968,-0.660369],[-48.057168,-0.663969],[-48.060168,-0.667469],[-48.062668,-0.669169],[-48.067368,-0.673369],[-48.075968,-0.684369],[-48.081768,-0.691069],[-48.087968,-0.697969],[-48.105268,-0.716469],[-48.133868,-0.745269],[-48.141568,-0.754169],[-48.147368,-0.760969],[-48.155168,-0.770169],[-48.158368,-0.774069],[-48.161268,-0.779769],[-48.166368,-0.792869],[-48.166468,-0.799169],[-48.166468,-0.802569],[-48.166468,-0.807169],[-48.166968,-0.810469],[-48.169268,-0.814369],[-48.171868,-0.816669],[-48.175268,-0.819369],[-48.177768,-0.820969],[-48.181168,-0.821369],[-48.185268,-0.820769],[-48.188768,-0.819969],[-48.191668,-0.819569],[-48.196068,-0.819069],[-48.203168,-0.819269],[-48.206168,-0.819869],[-48.209868,-0.820269],[-48.212868,-0.820969],[-48.218368,-0.822069],[-48.221168,-0.822869],[-48.223768,-0.824369],[-48.227068,-0.826269],[-48.229468,-0.827869],[-48.231768,-0.830469],[-48.234468,-0.833569],[-48.236868,-0.837569],[-48.238568,-0.841169],[-48.241868,-0.849969],[-48.242968,-0.853569],[-48.245468,-0.861169],[-48.249368,-0.871669],[-48.250268,-0.874469],[-48.251368,-0.877769],[-48.253768,-0.881869],[-48.257768,-0.888269],[-48.268468,-0.902869],[-48.280968,-0.913069],[-48.293668,-0.919669],[-48.314168,-0.920769],[-48.336568,-0.921369],[-48.365768,-0.918869],[-48.394768,-0.910969],[-48.409468,-0.905669],[-48.423868,-0.900469],[-48.454668,-0.886569],[-48.474568,-0.873869],[-48.491568,-0.848169],[-48.500968,-0.828969],[-48.505968,-0.810469],[-48.506668,-0.805869],[-48.509368,-0.788169],[-48.508468,-0.773969],[-48.509968,-0.769869],[-48.511268,-0.765969],[-48.511068,-0.762969],[-48.512068,-0.759969],[-48.511068,-0.756869],[-48.508868,-0.754069],[-48.507168,-0.750269],[-48.501668,-0.744769],[-48.497668,-0.744169],[-48.493568,-0.743269],[-48.491368,-0.741069],[-48.489968,-0.737769],[-48.487968,-0.733869],[-48.487168,-0.729269],[-48.486468,-0.725969],[-48.486368,-0.722569],[-48.486368,-0.719269],[-48.486168,-0.714569],[-48.484968,-0.708169],[-48.483568,-0.704369],[-48.483168,-0.700169],[-48.482168,-0.694969],[-48.482168,-0.690469],[-48.481668,-0.687269],[-48.479668,-0.682269],[-48.478668,-0.678269],[-48.478968,-0.675069],[-48.479768,-0.671069],[-48.479768,-0.666769],[-48.479268,-0.663669],[-48.479168,-0.660569],[-48.478168,-0.657869],[-48.476668,-0.653069],[-48.474968,-0.648769],[-48.473068,-0.644269],[-48.472568,-0.640069],[-48.473068,-0.636769],[-48.474468,-0.633069],[-48.473968,-0.628369],[-48.472368,-0.622169],[-48.471368,-0.617269],[-48.470568,-0.613369],[-48.471468,-0.610369],[-48.474168,-0.607769],[-48.477268,-0.605269],[-48.477368,-0.601669],[-48.475968,-0.597669],[-48.475268,-0.594569],[-48.474768,-0.590869],[-48.474968,-0.587369],[-48.476368,-0.583969],[-48.477268,-0.580169],[-48.475968,-0.574569],[-48.475068,-0.570169],[-48.474768,-0.565269],[-48.474568,-0.560469],[-48.474768,-0.555869],[-48.475268,-0.551869],[-48.475068,-0.548269],[-48.474568,-0.544669],[-48.474268,-0.539569],[-48.473768,-0.533369],[-48.473368,-0.525469],[-48.472268,-0.521469],[-48.470968,-0.517069],[-48.470668,-0.512969],[-48.470568,-0.507969],[-48.469468,-0.504869],[-48.467668,-0.500769],[-48.466168,-0.497169],[-48.464468,-0.493069],[-48.463268,-0.489669],[-48.462068,-0.486369],[-48.460668,-0.482569],[-48.459668,-0.479669],[-48.458668,-0.476369],[-48.456468,-0.469769],[-48.455068,-0.465869],[-48.454068,-0.460869],[-48.453968,-0.456769],[-48.452168,-0.450669],[-48.450968,-0.446269],[-48.450968,-0.442769],[-48.451568,-0.438069],[-48.451268,-0.433869],[-48.449368,-0.427869],[-48.446368,-0.421369],[-48.444068,-0.416669],[-48.441068,-0.412069],[-48.435768,-0.406569],[-48.428668,-0.400169],[-48.423968,-0.395369],[-48.417468,-0.388169],[-48.413668,-0.384069],[-48.407368,-0.374469],[-48.404168,-0.370769],[-48.400068,-0.366869],[-48.397368,-0.363669],[-48.395368,-0.361069],[-48.393268,-0.357769],[-48.390368,-0.354969],[-48.388168,-0.352569],[-48.387068,-0.348369],[-48.384868,-0.344769],[-48.383768,-0.340869],[-48.382368,-0.336569],[-48.380668,-0.332669],[-48.379168,-0.328969],[-48.378068,-0.325469],[-48.377068,-0.320969],[-48.376568,-0.317169],[-48.375768,-0.312769],[-48.375268,-0.309369],[-48.374868,-0.305869],[-48.374468,-0.302969],[-48.374468,-0.299669],[-48.375268,-0.295569],[-48.375768,-0.291369],[-48.377068,-0.286169],[-48.378468,-0.282269],[-48.379668,-0.279469],[-48.381768,-0.275469],[-48.384068,-0.272069],[-48.386268,-0.268569],[-48.388568,-0.264869],[-48.390768,-0.261769],[-48.392668,-0.259369],[-48.394568,-0.256569],[-48.396168,-0.252669],[-48.400468,-0.249369],[-48.404268,-0.247169],[-48.408468,-0.244469],[-48.412868,-0.243069],[-48.415668,-0.241869],[-48.418868,-0.240569],[-48.422468,-0.237969],[-48.423068,-0.234669],[-48.424168,-0.230869],[-48.427568,-0.227569],[-48.432168,-0.227069],[-48.436568,-0.225669],[-48.440168,-0.225369],[-48.443268,-0.226269],[-48.446668,-0.228469],[-48.449068,-0.230969],[-48.453768,-0.231769],[-48.457868,-0.231769],[-48.460968,-0.231069],[-48.463768,-0.231669],[-48.468168,-0.231669],[-48.471368,-0.230669],[-48.475668,-0.231169],[-48.479968,-0.232569],[-48.482868,-0.232469],[-48.485868,-0.232069],[-48.489668,-0.233669],[-48.491968,-0.235369],[-48.494968,-0.236869],[-48.499368,-0.239069],[-48.504168,-0.242269],[-48.508068,-0.241169],[-48.510768,-0.239969],[-48.515468,-0.238269],[-48.521868,-0.237469],[-48.526468,-0.238669],[-48.529568,-0.238869],[-48.533068,-0.238669],[-48.537768,-0.239069],[-48.543068,-0.240069],[-48.547468,-0.238569],[-48.553568,-0.238269],[-48.557768,-0.239669],[-48.560768,-0.238669],[-48.564668,-0.237869],[-48.567768,-0.236869],[-48.572068,-0.235569],[-48.576768,-0.234969],[-48.583668,-0.233969],[-48.589568,-0.233369],[-48.594868,-0.233669],[-48.600968,-0.235369],[-48.605868,-0.235369],[-48.609768,-0.233569],[-48.615268,-0.232269],[-48.620568,-0.231669],[-48.624468,-0.231369],[-48.629068,-0.231369],[-48.634568,-0.231669],[-48.637768,-0.232169],[-48.641068,-0.233069],[-48.643768,-0.234269],[-48.647168,-0.237169],[-48.651568,-0.240069],[-48.654568,-0.239769],[-48.657868,-0.239469],[-48.661768,-0.240069],[-48.665368,-0.240569],[-48.668868,-0.240469],[-48.672168,-0.241069],[-48.676568,-0.242269],[-48.682168,-0.243069],[-48.685168,-0.243669],[-48.688568,-0.245269],[-48.693768,-0.244969],[-48.697468,-0.245569],[-48.702368,-0.247269],[-48.707268,-0.249669],[-48.710868,-0.251369],[-48.714868,-0.251669],[-48.719468,-0.251069],[-48.725368,-0.251069],[-48.734768,-0.251069],[-48.739668,-0.250469],[-48.743668,-0.249869],[-48.752768,-0.245269],[-48.758868,-0.241869],[-48.763568,-0.239669],[-48.769768,-0.238569],[-48.775068,-0.237569],[-48.778068,-0.234969],[-48.782368,-0.229169],[-48.785068,-0.226469],[-48.788168,-0.224469],[-48.794968,-0.222069],[-48.798568,-0.221969],[-48.802268,-0.219769],[-48.805568,-0.217269],[-48.809468,-0.215069],[-48.815468,-0.215669],[-48.820168,-0.216269],[-48.824868,-0.217269],[-48.827868,-0.219469],[-48.833268,-0.222269],[-48.842568,-0.222069],[-48.845568,-0.221769],[-48.857268,-0.221669],[-48.864668,-0.222669],[-48.890468,-0.221769],[-48.899468,-0.222069],[-48.902668,-0.222369],[-48.905668,-0.223469],[-48.909268,-0.225569],[-48.912568,-0.228069],[-48.916768,-0.229969],[-48.921168,-0.228869],[-48.930268,-0.226969],[-48.935768,-0.226269],[-48.940568,-0.225269],[-48.944068,-0.223669],[-48.948168,-0.221369],[-48.951768,-0.218169],[-48.955068,-0.212969],[-48.958468,-0.208969],[-48.964868,-0.203269],[-48.971468,-0.199669],[-48.975068,-0.198469],[-48.978168,-0.196269],[-48.984168,-0.192669],[-48.988268,-0.189869],[-48.991868,-0.187169],[-48.994768,-0.186669],[-48.997968,-0.185269],[-49.002968,-0.179669],[-49.008568,-0.171869],[-49.010768,-0.168569],[-49.010768,-0.161769],[-49.013468,-0.159869],[-49.017968,-0.160369],[-49.021468,-0.161469],[-49.024468,-0.163069],[-49.028968,-0.163769],[-49.031968,-0.164269],[-49.035868,-0.165669],[-49.038468,-0.168869],[-49.043368,-0.168569],[-49.046768,-0.166669],[-49.051468,-0.164569],[-49.055768,-0.163169],[-49.060168,-0.162069],[-49.063268,-0.161369],[-49.067068,-0.161169],[-49.071568,-0.161669],[-49.075668,-0.161669],[-49.079268,-0.162769],[-49.082068,-0.163669],[-49.084768,-0.165269],[-49.087868,-0.166369],[-49.090568,-0.164269],[-49.093668,-0.163169],[-49.097368,-0.163469],[-49.100068,-0.165569],[-49.103368,-0.163669],[-49.108068,-0.161669],[-49.113268,-0.160569],[-49.116468,-0.161369],[-49.121968,-0.163969],[-49.125268,-0.166669],[-49.125968,-0.171069],[-49.129668,-0.171069],[-49.133468,-0.169569],[-49.136768,-0.168169],[-49.139268,-0.166469],[-49.142868,-0.163169],[-49.147368,-0.159769],[-49.152268,-0.158469],[-49.156568,-0.156469],[-49.157368,-0.151969],[-49.158868,-0.149269],[-49.161968,-0.147869],[-49.164168,-0.144769],[-49.163868,-0.141569],[-49.163068,-0.137469],[-49.163468,-0.132969],[-49.165568,-0.129569],[-49.168968,-0.129069],[-49.171968,-0.130269],[-49.174968,-0.131769],[-49.176168,-0.134669],[-49.176868,-0.138769],[-49.180768,-0.138969],[-49.185568,-0.136269],[-49.190568,-0.133469],[-49.195168,-0.131269],[-49.199268,-0.133069],[-49.203268,-0.135369],[-49.206868,-0.137969],[-49.207968,-0.142069],[-49.210168,-0.145369],[-49.213968,-0.148969],[-49.217668,-0.147269],[-49.220868,-0.148769],[-49.223768,-0.151169],[-49.228068,-0.153169],[-49.231068,-0.154469],[-49.233568,-0.155869],[-49.236868,-0.156969],[-49.242168,-0.159469],[-49.245868,-0.161769],[-49.246568,-0.164969],[-49.250468,-0.164569],[-49.252368,-0.161969],[-49.254968,-0.160169],[-49.259568,-0.159269],[-49.263268,-0.158769],[-49.266768,-0.159169],[-49.270768,-0.158369],[-49.274068,-0.158069],[-49.277368,-0.157869],[-49.281668,-0.157869],[-49.285868,-0.157569],[-49.290368,-0.157269],[-49.293968,-0.157069],[-49.297868,-0.157069],[-49.302568,-0.157669],[-49.307968,-0.158169],[-49.313068,-0.158069],[-49.316868,-0.157269],[-49.320168,-0.158769],[-49.323468,-0.159769],[-49.327368,-0.158069],[-49.331568,-0.159269],[-49.334368,-0.160569],[-49.336868,-0.162369],[-49.339768,-0.164769],[-49.342568,-0.166669],[-49.345368,-0.169169],[-49.348068,-0.171869],[-49.350968,-0.173669],[-49.356368,-0.176869],[-49.360068,-0.178869],[-49.362468,-0.180769],[-49.366068,-0.181869],[-49.370268,-0.184669],[-49.372968,-0.186669],[-49.376668,-0.188569],[-49.379568,-0.191069],[-49.383468,-0.190969],[-49.387768,-0.190169],[-49.390768,-0.190569],[-49.394068,-0.190869],[-49.400068,-0.187269],[-49.408368,-0.181969],[-49.413868,-0.176369],[-49.421468,-0.168969],[-49.427768,-0.158169],[-49.432668,-0.146869],[-49.435868,-0.135669],[-49.438568,-0.126369],[-49.437668,-0.116169],[-49.435168,-0.108269],[-49.433368,-0.102069],[-49.431968,-0.098169],[-49.431568,-0.094469],[-49.431568,-0.091169],[-49.431568,-0.088169],[-49.429668,-0.085469],[-49.426868,-0.081869],[-49.424668,-0.079269],[-49.421768,-0.075969],[-49.419668,-0.072369],[-49.417468,-0.068469],[-49.413168,-0.065569],[-49.409168,-0.063369],[-49.405468,-0.062769],[-49.402068,-0.060869],[-49.398968,-0.058669],[-49.394368,-0.057569],[-49.389968,-0.058769],[-49.386768,-0.055269],[-49.385368,-0.051569],[-49.383868,-0.047569],[-49.380968,-0.043969],[-49.378568,-0.041169],[-49.376968,-0.038169],[-49.375568,-0.033369],[-49.372468,-0.031969],[-49.368368,-0.032269],[-49.364668,-0.030569],[-49.362468,-0.028769],[-49.359468,-0.026469],[-49.356968,-0.022569],[-49.355568,-0.018269],[-49.355068,-0.015469],[-49.354468,-0.012469],[-49.354268,-0.009569],[-49.354968,-0.006369],[-49.355868,-0.002669],[-49.356968,0.002031],[-49.357768,0.004931],[-49.358668,0.009131],[-49.361768,0.013931],[-49.365768,0.016331],[-49.369368,0.018131],[-49.371568,0.023031],[-49.367268,0.026331],[-49.366068,0.029431],[-49.367668,0.033531],[-49.369468,0.037931],[-49.372368,0.041531],[-49.374868,0.044531],[-49.377368,0.046531],[-49.380768,0.048131],[-49.384268,0.050331],[-49.387668,0.053731],[-49.390668,0.057131],[-49.392668,0.059731],[-49.395668,0.061731],[-49.399768,0.062331],[-49.402668,0.062331],[-49.406168,0.062731],[-49.409568,0.064531],[-49.412468,0.066331],[-49.415368,0.067331],[-49.419268,0.068731],[-49.423568,0.070131],[-49.426168,0.071331],[-49.428968,0.072131],[-49.431968,0.072831],[-49.435568,0.073931],[-49.439868,0.074531],[-49.445168,0.074131],[-49.450668,0.073331],[-49.456768,0.074231],[-49.461168,0.075731],[-49.464868,0.076931],[-49.468668,0.078531],[-49.472368,0.079331],[-49.475968,0.080531],[-49.480068,0.081331],[-49.484468,0.081131],[-49.487468,0.081131],[-49.490568,0.080831],[-49.493868,0.081731],[-49.497368,0.081931],[-49.500468,0.082231],[-49.504968,0.082231],[-49.510968,0.081331],[-49.515068,0.081331],[-49.518168,0.081731],[-49.521468,0.081331],[-49.525468,0.081731],[-49.531668,0.081331],[-49.535368,0.081731],[-49.540068,0.082231],[-49.544268,0.083531],[-49.547468,0.085131],[-49.552468,0.085131],[-49.558668,0.085331],[-49.564168,0.085531],[-49.570268,0.086531],[-49.575668,0.090531],[-49.581268,0.089931],[-49.586768,0.088031],[-49.590568,0.085831],[-49.594468,0.084431],[-49.598168,0.083331],[-49.601368,0.081731],[-49.603868,0.080031],[-49.608268,0.078131],[-49.614168,0.075331],[-49.617468,0.074231],[-49.623368,0.074131],[-49.632168,0.074931],[-49.641068,0.078931],[-49.647368,0.082731],[-49.650668,0.084431],[-49.656168,0.088731],[-49.665568,0.096631],[-49.674768,0.106831],[-49.682468,0.117131],[-49.689468,0.126931],[-49.695668,0.139131],[-49.699568,0.150531],[-49.699868,0.158031],[-49.698568,0.162331],[-49.696368,0.166831],[-49.695168,0.171131],[-49.693868,0.175431],[-49.692668,0.178131],[-49.690468,0.180731],[-49.688368,0.183131],[-49.685468,0.185531],[-49.682268,0.188431],[-49.679668,0.191531],[-49.676368,0.194231],[-49.672468,0.198731],[-49.668168,0.202131],[-49.663868,0.204531],[-49.660668,0.206131],[-49.657068,0.207931],[-49.653668,0.210731],[-49.650468,0.212531],[-49.647868,0.213931],[-49.644868,0.216131],[-49.643168,0.220231],[-49.641768,0.224331],[-49.640068,0.228731],[-49.637468,0.233231],[-49.635168,0.236831],[-49.633268,0.241231],[-49.629068,0.243731],[-49.623568,0.245731],[-49.619168,0.247931],[-49.615268,0.250531],[-49.612268,0.253331],[-49.610368,0.256331],[-49.606768,0.259931],[-49.603468,0.262131],[-49.598368,0.264731],[-49.592068,0.266431],[-49.586568,0.269431],[-49.583668,0.272531],[-49.580368,0.272931],[-49.577168,0.273731],[-49.574368,0.274431],[-49.571568,0.275831],[-49.568868,0.277531],[-49.564368,0.278531],[-49.559768,0.279431],[-49.555168,0.280931],[-49.551168,0.282331],[-49.547168,0.283831],[-49.542768,0.285931],[-49.537868,0.288331],[-49.533968,0.289331],[-49.529168,0.291731],[-49.526168,0.294131],[-49.523468,0.298531],[-49.520668,0.302331],[-49.516868,0.304331],[-49.512468,0.305931],[-49.507468,0.308431],[-49.503468,0.311231],[-49.500168,0.313731],[-49.497668,0.316331],[-49.494968,0.318731],[-49.492768,0.322131],[-49.491068,0.325731],[-49.489668,0.329931],[-49.488568,0.334331],[-49.488668,0.339331],[-49.489368,0.343031],[-49.491468,0.346631],[-49.494368,0.350531],[-49.496868,0.354331],[-49.497468,0.361131],[-49.499868,0.366931],[-49.503068,0.371731],[-49.507368,0.374831],[-49.511568,0.377731],[-49.515668,0.379731],[-49.519068,0.382331],[-49.522868,0.384231],[-49.525668,0.386431],[-49.528668,0.388131],[-49.533068,0.389331],[-49.536168,0.389531],[-49.539468,0.389731],[-49.542568,0.389531],[-49.547768,0.390031],[-49.549268,0.393131],[-49.553068,0.397231],[-49.557768,0.402331],[-49.561068,0.405931],[-49.564168,0.409731],[-49.566668,0.411731],[-49.569968,0.414531],[-49.573168,0.416731],[-49.576468,0.417431],[-49.581868,0.418731],[-49.585068,0.418231],[-49.587868,0.414931],[-49.589068,0.409931],[-49.590568,0.406631],[-49.593968,0.405931],[-49.598168,0.405531],[-49.602568,0.403331],[-49.606068,0.401331],[-49.608868,0.399131],[-49.612168,0.396331],[-49.615468,0.394931],[-49.618068,0.392131],[-49.621668,0.392131],[-49.624668,0.393631],[-49.628868,0.395031],[-49.633568,0.394931],[-49.639068,0.394431],[-49.642368,0.393631],[-49.646168,0.393931],[-49.650668,0.393631],[-49.656968,0.393931],[-49.661468,0.393131],[-49.665268,0.391431],[-49.669468,0.390031],[-49.673668,0.388531],[-49.678068,0.386331],[-49.682268,0.385631],[-49.686968,0.384731],[-49.692768,0.383731],[-49.699268,0.383531],[-49.705468,0.381931],[-49.711268,0.380531],[-49.719168,0.378431],[-49.724568,0.377731],[-49.731068,0.375331],[-49.736968,0.371931],[-49.741668,0.369031],[-49.747468,0.365331],[-49.752068,0.361831],[-49.755468,0.358731],[-49.759668,0.355331],[-49.763268,0.351331],[-49.766268,0.348731],[-49.769268,0.347131],[-49.772268,0.345131],[-49.778168,0.341331],[-49.783468,0.339931],[-49.789268,0.338331],[-49.795268,0.335531],[-49.802168,0.333331],[-49.807768,0.332131],[-49.811868,0.333331],[-49.814068,0.336131],[-49.813468,0.343031],[-49.813868,0.349331],[-49.816568,0.353931],[-49.822168,0.356331],[-49.828268,0.355531],[-49.833168,0.352131],[-49.839868,0.347731],[-49.846468,0.343731],[-49.854468,0.339431],[-49.861468,0.335831],[-49.864768,0.334331],[-49.868268,0.332931],[-49.875168,0.329331],[-49.881868,0.326131],[-49.889268,0.322531],[-49.897968,0.324231],[-49.904768,0.323731],[-49.914168,0.319731],[-49.918868,0.321331],[-49.920868,0.324931],[-49.917268,0.329331],[-49.914968,0.332531],[-49.910268,0.336331],[-49.907668,0.340131],[-49.909768,0.344931],[-49.913868,0.349531],[-49.916068,0.351731],[-49.918168,0.353731],[-49.921868,0.357531],[-49.925768,0.360331],[-49.931368,0.363131],[-49.938468,0.365331],[-49.945968,0.365931],[-49.952868,0.364731],[-49.957868,0.364531],[-49.963968,0.364031],[-49.970568,0.363531],[-49.975868,0.362531],[-49.980568,0.360431],[-49.982768,0.357331],[-49.983968,0.352931],[-49.985568,0.347931],[-49.986168,0.342731],[-49.992968,0.338531],[-50.002468,0.337531],[-50.014368,0.337931],[-50.024468,0.340131],[-50.032668,0.340731],[-50.042168,0.340131],[-50.051068,0.336931],[-50.059968,0.336731],[-50.069968,0.337931],[-50.080668,0.339431],[-50.088768,0.341131],[-50.098368,0.344531],[-50.101668,0.343531],[-50.108268,0.341631],[-50.119768,0.336331],[-50.131668,0.330731],[-50.141768,0.333131],[-50.154568,0.336531],[-50.168568,0.341331],[-50.174668,0.347931],[-50.175868,0.354931],[-50.176968,0.363531],[-50.177568,0.375631],[-50.176368,0.387331],[-50.172768,0.397731],[-50.155868,0.409331],[-50.141068,0.419531],[-50.119968,0.430131],[-50.105568,0.440131],[-50.088168,0.453131],[-50.077368,0.463531],[-50.070768,0.477431],[-50.065468,0.487531],[-50.060868,0.496231],[-50.055468,0.507031],[-50.044968,0.521931],[-50.036168,0.535131],[-50.033368,0.546731],[-50.033768,0.550731],[-50.029068,0.558731],[-50.027668,0.567831],[-50.029168,0.578131],[-50.032268,0.590831],[-50.037268,0.601931],[-50.041668,0.607931],[-50.045868,0.613931],[-50.052568,0.621731],[-50.064168,0.630631],[-50.072468,0.635931],[-50.083668,0.640331],[-50.095368,0.641731],[-50.104268,0.639531],[-50.112468,0.633731],[-50.117768,0.627931],[-50.123368,0.621931],[-50.133468,0.619731],[-50.138968,0.620931],[-50.143168,0.623131],[-50.149768,0.624831],[-50.160068,0.627931],[-50.170068,0.631931],[-50.179068,0.634731],[-50.190268,0.640331],[-50.203968,0.648031],[-50.213468,0.655931],[-50.217568,0.665731],[-50.222668,0.678331],[-50.225068,0.691531],[-50.226368,0.696331],[-50.228968,0.718831],[-50.231168,0.730331],[-50.227468,0.737131],[-50.220368,0.743131],[-50.215068,0.745131],[-50.211568,0.746231],[-50.196368,0.748331],[-50.174968,0.753131],[-50.166068,0.754531],[-50.153368,0.749831],[-50.133768,0.754731],[-50.116868,0.759731],[-50.111868,0.760531],[-50.100968,0.765031],[-50.097268,0.767131],[-50.093368,0.771931],[-50.090868,0.775131],[-50.085468,0.780931],[-50.078168,0.789331],[-50.070668,0.797331],[-50.067668,0.800331],[-50.064568,0.803131],[-50.062168,0.805431],[-50.055168,0.812731],[-50.048568,0.819531],[-50.046368,0.821931],[-50.036668,0.832531],[-50.034468,0.835731],[-50.030968,0.840231],[-50.027868,0.844531],[-50.025368,0.848131],[-50.024068,0.851031],[-50.022568,0.854931],[-50.020168,0.858931],[-50.016868,0.861331],[-50.011068,0.864331],[-50.003068,0.867331],[-49.995468,0.870331],[-49.989968,0.873431],[-49.987468,0.876731],[-49.986068,0.880531],[-49.986068,0.883531],[-49.987468,0.887131],[-49.989768,0.891931],[-49.993368,0.897731],[-49.996568,0.901331],[-50.002468,0.906531],[-49.996368,0.921331],[-49.988968,0.939231],[-49.974468,0.941731],[-49.966768,0.943731],[-49.956768,0.949531],[-49.949368,0.955331],[-49.946868,0.957731],[-49.944068,0.959431],[-49.940968,0.962931],[-49.937168,0.967131],[-49.934468,0.971131],[-49.933268,0.974631],[-49.930768,0.980731],[-49.927468,0.984631],[-49.917868,0.991731],[-49.909268,0.999531],[-49.903668,1.003431],[-49.893768,1.009731],[-49.889668,1.013631],[-49.887468,1.022931],[-49.885768,1.034931],[-49.885268,1.039931],[-49.884568,1.047131],[-49.885668,1.066131],[-49.883568,1.077731],[-49.883868,1.081931],[-49.886068,1.088031],[-49.885968,1.111131],[-49.884868,1.134131],[-49.884668,1.137731],[-49.882968,1.169131],[-49.885468,1.173731],[-49.888168,1.176731],[-49.891568,1.178931],[-49.894368,1.182131],[-49.896168,1.187331],[-49.897568,1.191731],[-49.897368,1.195531],[-49.897268,1.201431],[-49.897068,1.206531],[-49.897868,1.210531],[-49.900368,1.212931],[-49.901568,1.240331],[-49.902268,1.252931],[-49.904268,1.295731],[-49.899768,1.302631],[-49.896268,1.311231],[-49.893568,1.318431],[-49.889568,1.324531],[-49.886268,1.332131],[-49.883568,1.340131],[-49.881868,1.352931],[-49.880768,1.363931],[-49.880468,1.369731],[-49.880668,1.375531],[-49.882468,1.380931],[-49.882768,1.385031],[-49.879968,1.386931],[-49.878468,1.389731],[-49.878768,1.396731],[-49.878268,1.406931],[-49.876568,1.416731],[-49.875768,1.423231],[-49.875568,1.430431],[-49.876268,1.437531],[-49.876568,1.450531],[-49.877168,1.458931],[-49.877368,1.462531],[-49.877668,1.465531],[-49.879068,1.473131],[-49.881268,1.479931],[-49.881568,1.488931],[-49.881668,1.500131],[-49.882668,1.504931],[-49.883568,1.509131],[-49.886368,1.516431],[-49.888268,1.522731],[-49.891268,1.530531],[-49.894368,1.533331],[-49.894368,1.538131],[-49.893468,1.541331],[-49.898468,1.557131],[-49.900468,1.568331],[-49.901968,1.577131],[-49.902868,1.580031],[-49.901868,1.584131],[-49.900068,1.588531],[-49.899768,1.595931],[-49.900168,1.602431],[-49.901968,1.607331],[-49.902268,1.610431],[-49.905568,1.624731],[-49.907368,1.631731],[-49.908868,1.636431],[-49.910068,1.649931],[-49.912768,1.660531],[-49.915268,1.665331],[-49.918868,1.667431],[-49.919968,1.672531],[-49.920668,1.676531],[-49.919268,1.682131],[-49.920568,1.687931],[-49.923868,1.693431],[-49.929168,1.699231],[-49.942668,1.709931],[-49.958168,1.719731],[-49.995868,1.738931],[-50.003068,1.743131],[-50.009268,1.746531],[-50.018968,1.753131],[-50.032268,1.759731],[-50.050868,1.767231],[-50.080468,1.778931],[-50.092268,1.782131],[-50.132168,1.796531],[-50.145468,1.803931],[-50.153768,1.808731],[-50.159768,1.811731],[-50.165668,1.813131],[-50.176868,1.813431],[-50.182268,1.813131],[-50.186568,1.812731],[-50.197168,1.810331],[-50.227068,1.809131],[-50.233868,1.808931],[-50.240768,1.809731],[-50.245168,1.810131],[-50.264268,1.812531],[-50.280068,1.808731],[-50.289568,1.807931],[-50.324568,1.815531],[-50.331268,1.814831],[-50.358268,1.804731],[-50.373368,1.801131],[-50.400368,1.800331],[-50.414468,1.801831],[-50.421168,1.803731],[-50.424368,1.805431],[-50.427168,1.808731],[-50.430868,1.810731],[-50.440568,1.813331],[-50.444868,1.815131],[-50.448568,1.817831],[-50.466668,1.831131],[-50.474968,1.838731],[-50.504468,1.881131],[-50.507368,1.884531],[-50.508268,1.887731],[-50.525468,1.929831],[-50.529168,1.934331],[-50.533068,1.940131],[-50.535568,1.941731],[-50.539468,1.943131],[-50.551368,1.949531],[-50.557968,1.955831],[-50.582568,1.989731],[-50.588968,2.004531],[-50.595268,2.024931],[-50.597368,2.029731],[-50.599768,2.040731],[-50.599568,2.052531],[-50.598468,2.057631],[-50.597868,2.062531],[-50.600568,2.068431],[-50.603668,2.073131],[-50.609368,2.078931],[-50.612468,2.083531],[-50.617768,2.091331],[-50.623268,2.094531],[-50.624868,2.096931],[-50.634168,2.102331],[-50.636368,2.105531],[-50.642868,2.112131],[-50.646468,2.114731],[-50.656568,2.119831],[-50.663068,2.124531],[-50.670868,2.129131],[-50.674768,2.130931],[-50.681068,2.133531],[-50.683868,2.143631],[-50.684668,2.151531],[-50.682568,2.156331],[-50.681168,2.161731],[-50.680768,2.167131],[-50.681868,2.175331],[-50.683068,2.179531],[-50.684368,2.183931],[-50.686568,2.190931],[-50.691868,2.201431],[-50.704668,2.224131],[-50.712568,2.232931],[-50.714868,2.234631],[-50.717568,2.235931],[-50.720568,2.237331],[-50.722268,2.240331],[-50.724268,2.245131],[-50.724468,2.248731],[-50.725268,2.252731],[-50.725268,2.255631],[-50.724768,2.261131],[-50.723368,2.266331],[-50.721968,2.278031],[-50.721968,2.281531],[-50.722368,2.286531],[-50.723468,2.290131],[-50.726368,2.294531],[-50.731168,2.300931],[-50.735068,2.303931],[-50.738268,2.307131],[-50.740768,2.309131],[-50.742168,2.312331],[-50.743268,2.316131],[-50.744068,2.319131],[-50.744668,2.324231],[-50.744068,2.328931],[-50.744668,2.333131],[-50.745468,2.336531],[-50.745468,2.339931],[-50.746268,2.343531],[-50.746568,2.347431],[-50.746568,2.351931],[-50.747668,2.356731],[-50.749468,2.361831],[-50.752668,2.365131],[-50.757468,2.370331],[-50.757768,2.374831],[-50.757168,2.380931],[-50.756568,2.385931],[-50.757768,2.389531],[-50.759868,2.395731],[-50.762068,2.399931],[-50.763768,2.402531],[-50.766268,2.405531],[-50.768468,2.408731],[-50.768768,2.413331],[-50.766568,2.429531],[-50.766768,2.436531],[-50.767568,2.443331],[-50.768968,2.449231],[-50.770368,2.453531],[-50.772368,2.457731],[-50.776568,2.463731],[-50.783868,2.471131],[-50.784768,2.475131],[-50.787868,2.486131],[-50.789968,2.491131],[-50.793568,2.497631],[-50.797568,2.500931],[-50.801868,2.502731],[-50.807268,2.503131],[-50.811868,2.503131],[-50.816568,2.503131],[-50.819268,2.505631],[-50.827068,2.513931],[-50.826368,2.519331],[-50.823468,2.527731],[-50.824568,2.530531],[-50.827668,2.534131],[-50.833168,2.540931],[-50.832868,2.545331],[-50.831568,2.549031],[-50.831568,2.554031],[-50.833168,2.559731],[-50.834768,2.567731],[-50.837368,2.576331],[-50.840868,2.580831],[-50.847268,2.592731],[-50.845868,2.597931],[-50.844268,2.601031],[-50.844468,2.612531],[-50.844568,2.619731],[-50.846168,2.632831],[-50.846768,2.636931],[-50.847668,2.640331],[-50.850668,2.642531],[-50.853968,2.643931],[-50.858168,2.644931],[-50.859368,2.647731],[-50.857768,2.650331],[-50.857468,2.653731],[-50.857168,2.656631],[-50.857868,2.659731],[-50.859368,2.663731],[-50.868068,2.677331],[-50.870768,2.680731],[-50.872968,2.682631],[-50.876268,2.684531],[-50.879568,2.684531],[-50.882168,2.689231],[-50.886068,2.710731],[-50.884368,2.713731],[-50.883268,2.723131],[-50.883768,2.732331],[-50.884068,2.737931],[-50.884568,2.741531],[-50.886568,2.745331],[-50.890468,2.749131],[-50.895468,2.753131],[-50.899468,2.755631],[-50.903768,2.757331],[-50.905868,2.775331],[-50.906168,2.781931],[-50.907268,2.786331],[-50.908968,2.789531],[-50.913468,2.792431],[-50.915668,2.795931],[-50.918868,2.799931],[-50.922768,2.803331],[-50.931868,2.808131],[-50.937668,2.811931],[-50.940568,2.814531],[-50.945168,2.818731],[-50.947468,2.827131],[-50.949068,2.830531],[-50.951068,2.834331],[-50.953568,2.837131],[-50.952868,2.840831],[-50.950168,2.844131],[-50.949268,2.849631],[-50.949968,2.854131],[-50.951268,2.861531],[-50.950368,2.866931],[-50.948968,2.872631],[-50.949568,2.877331],[-50.950768,2.882731],[-50.959368,2.894931],[-50.962368,2.900731],[-50.974268,2.924331],[-50.975568,2.928731],[-50.978068,2.931231],[-50.979468,2.933731],[-50.982868,2.936931],[-50.983968,2.941531],[-50.987268,2.951731],[-50.989368,2.959431],[-50.991868,2.962231],[-50.991968,2.965531],[-50.992268,2.974531],[-50.993068,2.982731],[-50.993868,2.988731],[-50.995068,2.994731],[-50.997268,3.001131],[-50.997168,3.004531],[-50.998768,3.011131],[-51.000568,3.015031],[-51.003768,3.020331],[-51.007368,3.026931],[-51.015068,3.037131],[-51.017868,3.039531],[-51.017868,3.043131],[-51.021268,3.052331],[-51.021168,3.056731],[-51.021768,3.060131],[-51.019268,3.064831],[-51.015668,3.068331],[-51.016468,3.071931],[-51.017068,3.074931],[-51.017468,3.079331],[-51.014268,3.082131],[-51.014568,3.085531],[-51.021168,3.096631],[-51.025168,3.102431],[-51.027968,3.104931],[-51.031768,3.106831],[-51.032668,3.109931],[-51.035868,3.115931],[-51.040368,3.124831],[-51.044268,3.134131],[-51.044268,3.139531],[-51.043568,3.143131],[-51.044168,3.148331],[-51.043168,3.152531],[-51.042068,3.156631],[-51.042268,3.160931],[-51.043168,3.164631],[-51.041368,3.167931],[-51.035968,3.175931],[-51.034768,3.180931],[-51.034268,3.189131],[-51.034268,3.194131],[-51.033468,3.198931],[-51.033368,3.203131],[-51.032568,3.206931],[-51.032768,3.213731],[-51.034768,3.219731],[-51.035968,3.222431],[-51.043568,3.240731],[-51.046168,3.244731],[-51.048968,3.247631],[-51.049368,3.250631],[-51.051568,3.252931],[-51.052768,3.258531],[-51.057668,3.271531],[-51.065168,3.288131],[-51.069068,3.303331],[-51.082268,3.339931],[-51.086468,3.350231],[-51.091168,3.369031],[-51.098168,3.394731],[-51.099568,3.405931],[-51.105368,3.425931],[-51.105868,3.434131],[-51.109268,3.450731],[-51.108968,3.454331],[-51.101468,3.461131],[-51.096368,3.468731],[-51.094168,3.474631],[-51.090968,3.480531],[-51.090568,3.483531],[-51.087068,3.499831],[-51.086968,3.519731],[-51.083268,3.544131],[-51.081768,3.559531],[-51.082068,3.565631],[-51.086168,3.591531],[-51.086168,3.601531],[-51.086768,3.610131],[-51.088468,3.614331],[-51.088668,3.622531],[-51.090168,3.629931],[-51.090368,3.632831],[-51.089268,3.636131],[-51.087668,3.642931],[-51.087668,3.651131],[-51.089068,3.671531],[-51.089268,3.675731],[-51.089568,3.679731],[-51.089868,3.684531],[-51.090068,3.688731],[-51.090468,3.702131],[-51.090568,3.707131],[-51.091168,3.738531],[-51.090868,3.743331],[-51.088168,3.764531],[-51.087268,3.783831],[-51.088968,3.794131],[-51.086768,3.796831],[-51.087668,3.804031],[-51.086968,3.808831],[-51.089368,3.819131],[-51.087268,3.824231],[-51.087068,3.827731],[-51.086168,3.836531],[-51.084368,3.839331],[-51.082868,3.857131],[-51.080668,3.884931],[-51.081468,3.890031],[-51.082968,3.895031],[-51.085068,3.899931],[-51.089368,3.905531],[-51.092068,3.908331],[-51.095368,3.910231],[-51.098368,3.910731],[-51.102068,3.912431],[-51.110368,3.911731],[-51.113868,3.910931],[-51.118268,3.909331],[-51.122968,3.907931],[-51.150768,3.913831],[-51.179368,3.919531],[-51.179668,3.924331],[-51.179968,3.929331],[-51.179168,3.936231],[-51.180068,3.940931],[-51.179468,3.944931],[-51.179468,3.947831],[-51.179368,3.952731],[-51.177568,3.958131],[-51.180268,3.961931],[-51.179368,3.964931],[-51.179368,3.972431],[-51.178368,3.976731],[-51.177568,3.980931],[-51.177768,3.984131],[-51.177168,3.988131],[-51.177768,3.992631],[-51.177868,3.997331],[-51.176568,4.000131],[-51.177768,4.004731],[-51.175768,4.010031],[-51.175868,4.013331],[-51.176868,4.018931],[-51.177968,4.022931],[-51.179768,4.026931],[-51.181068,4.032931],[-51.181668,4.036931],[-51.181068,4.040931],[-51.183368,4.047531],[-51.184168,4.051731],[-51.183068,4.054731],[-51.184468,4.060131],[-51.187268,4.069931],[-51.189368,4.073731],[-51.189068,4.077231],[-51.189568,4.080331],[-51.192768,4.088731],[-51.193468,4.092331],[-51.197168,4.099331],[-51.197868,4.104331],[-51.199268,4.108731],[-51.200468,4.113931],[-51.202568,4.117931],[-51.202868,4.121131],[-51.203968,4.125131],[-51.206568,4.127731],[-51.215168,4.142731],[-51.214068,4.145531],[-51.216268,4.150131],[-51.221768,4.157731],[-51.222668,4.160731],[-51.225968,4.163731],[-51.231468,4.171331],[-51.235068,4.177631],[-51.239668,4.184531],[-51.244968,4.191731],[-51.249368,4.197131],[-51.251268,4.199531],[-51.251668,4.202831],[-51.254468,4.205031],[-51.256368,4.207731],[-51.259268,4.211731],[-51.262668,4.215731],[-51.268968,4.229131],[-51.271768,4.231031],[-51.271268,4.234131],[-51.275668,4.239031],[-51.282568,4.246731],[-51.283368,4.250331],[-51.297168,4.261331],[-51.319568,4.284931],[-51.331868,4.304831],[-51.335768,4.307131],[-51.337868,4.310331],[-51.351668,4.319731],[-51.366068,4.336131],[-51.374468,4.342531],[-51.385368,4.353131],[-51.394268,4.365131],[-51.399868,4.368731],[-51.406468,4.372631],[-51.411168,4.377031],[-51.415868,4.381331],[-51.418968,4.384231],[-51.421868,4.387131],[-51.430468,4.393531],[-51.433668,4.395731],[-51.436868,4.397931],[-51.439568,4.399731],[-51.444568,4.403731],[-51.447868,4.405931],[-51.460868,4.416831],[-51.474268,4.428331],[-51.485868,4.437331],[-51.489168,4.437531],[-51.492468,4.439131],[-51.508568,4.447131],[-51.511768,4.448131],[-51.516468,4.450031],[-51.637468,4.508931],[-51.652268,4.486131],[-51.661968,4.470731],[-51.669268,4.453931],[-51.663668,4.423531],[-51.673968,4.394331],[-51.679168,4.366131],[-51.676868,4.332731],[-51.669168,4.309831],[-51.649268,4.267231],[-51.640368,4.252031],[-51.632668,4.240431],[-51.623068,4.225731],[-51.618868,4.209931],[-51.621868,4.195131],[-51.631268,4.186131],[-51.634868,4.176331],[-51.635668,4.172131],[-51.636068,4.167431],[-51.636768,4.157331],[-51.637468,4.133331],[-51.642168,4.116231],[-51.642568,4.111831],[-51.643168,4.106331],[-51.643668,4.103131],[-51.644368,4.098331],[-51.645068,4.094531],[-51.645668,4.091631],[-51.646268,4.087131],[-51.646868,4.083531],[-51.647668,4.079531],[-51.648468,4.076431],[-51.649268,4.073531],[-51.651468,4.069531],[-51.653768,4.063431],[-51.654768,4.058331],[-51.655968,4.053931],[-51.658468,4.050931],[-51.663868,4.046731],[-51.668368,4.043231],[-51.671768,4.039531],[-51.674768,4.036731],[-51.678968,4.035131],[-51.681968,4.034331],[-51.686268,4.032331],[-51.691668,4.029131],[-51.695968,4.027531],[-51.698768,4.026331],[-51.702368,4.024131],[-51.705368,4.020731],[-51.708168,4.018531],[-51.711968,4.017531],[-51.716568,4.015931],[-51.719468,4.014331],[-51.722068,4.013131],[-51.724768,4.011731],[-51.727368,4.009731],[-51.730668,4.007531],[-51.734968,4.005931],[-51.738668,4.004931],[-51.741668,4.003731],[-51.744768,4.002031],[-51.747668,3.999831],[-51.750568,3.997631],[-51.753768,3.995131],[-51.757668,3.992531],[-51.760468,3.988231],[-51.762768,3.985731],[-51.765668,3.983231],[-51.769368,3.980731],[-51.774768,3.977331],[-51.777568,3.974531],[-51.779768,3.971331],[-51.781268,3.967931],[-51.782268,3.964131],[-51.782368,3.960831],[-51.782268,3.956331],[-51.782268,3.952831],[-51.783068,3.948131],[-51.781168,3.943331],[-51.780468,3.939531],[-51.781168,3.935731],[-51.781268,3.931131],[-51.781268,3.926331],[-51.781968,3.922731],[-51.783768,3.917931],[-51.785868,3.913331],[-51.787268,3.909931],[-51.789268,3.905731],[-51.791168,3.901531],[-51.793668,3.897531],[-51.795368,3.893631],[-51.796868,3.890031],[-51.798868,3.886931],[-51.801168,3.884931],[-51.803568,3.882531],[-51.806068,3.879531],[-51.808368,3.877331],[-51.810768,3.875531],[-51.814168,3.872631],[-51.820468,3.870131],[-51.822368,3.866731],[-51.822468,3.861731],[-51.823568,3.858731],[-51.825968,3.856731],[-51.828168,3.854931],[-51.830968,3.852931],[-51.833668,3.851531],[-51.836868,3.850531],[-51.839468,3.848531],[-51.841168,3.846131],[-51.844568,3.842131],[-51.849168,3.838331],[-51.854768,3.833931],[-51.857068,3.829531],[-51.859168,3.825931],[-51.861768,3.823931],[-51.863968,3.822131],[-51.865768,3.819131],[-51.867168,3.816531],[-51.868268,3.812931],[-51.869168,3.809131],[-51.870768,3.806531],[-51.873768,3.803531],[-51.876968,3.802631],[-51.880168,3.803131],[-51.883468,3.801831],[-51.884568,3.798931],[-51.886068,3.795931],[-51.889068,3.795131],[-51.892068,3.796531],[-51.894768,3.797531],[-51.898268,3.798731],[-51.901468,3.800331],[-51.904468,3.797931],[-51.903968,3.793531],[-51.901468,3.791831],[-51.898268,3.791531],[-51.896268,3.789331],[-51.896168,3.785931],[-51.899868,3.784131],[-51.904068,3.782331],[-51.908768,3.780531],[-51.912868,3.780131],[-51.918168,3.781531],[-51.921068,3.777731],[-51.921168,3.773731],[-51.924468,3.770831],[-51.926168,3.767931],[-51.923168,3.763531],[-51.921368,3.760331],[-51.920368,3.755531],[-51.919568,3.750831],[-51.916668,3.746131],[-51.917268,3.743131],[-51.919268,3.740131],[-51.919768,3.735931],[-51.919168,3.732131],[-51.920268,3.727331],[-51.922568,3.723331],[-51.925568,3.722331],[-51.929168,3.722431],[-51.932968,3.722731],[-51.934468,3.720131],[-51.937468,3.720131],[-51.940768,3.721131],[-51.945968,3.721631],[-51.949568,3.722431],[-51.952668,3.722131],[-51.955668,3.720531],[-51.956868,3.717731],[-51.957368,3.714131],[-51.961168,3.713531],[-51.964468,3.711731],[-51.968468,3.708331],[-51.971768,3.705831],[-51.973468,3.701431],[-51.974168,3.697331],[-51.976368,3.692831],[-51.977468,3.689131],[-51.977868,3.684731],[-51.979168,3.681731],[-51.981068,3.679031],[-51.983568,3.677331],[-51.986068,3.673231],[-51.986768,3.669131],[-51.987768,3.665531],[-51.988268,3.661031],[-51.987168,3.657131],[-51.986968,3.653731],[-51.988268,3.650831],[-51.990768,3.647731],[-51.992968,3.642731],[-51.991168,3.640331],[-51.989968,3.636331],[-51.988668,3.632331],[-51.988568,3.627931],[-51.990768,3.624831],[-51.993268,3.621531],[-51.995768,3.617931],[-51.997668,3.615731],[-52.000168,3.613131],[-52.002968,3.609131],[-52.005568,3.607131],[-52.007468,3.604931],[-52.009568,3.602731],[-52.013168,3.599131],[-52.016468,3.596331],[-52.020368,3.591931],[-52.022568,3.587731],[-52.024868,3.584731],[-52.027668,3.577831],[-52.029768,3.575031],[-52.031968,3.572331],[-52.033968,3.568131],[-52.035968,3.564231],[-52.037768,3.561131],[-52.039168,3.557931],[-52.041768,3.553731],[-52.044168,3.549731],[-52.048168,3.542131],[-52.051168,3.537431],[-52.053268,3.534131],[-52.055268,3.529431],[-52.058268,3.523531],[-52.061268,3.519331],[-52.064868,3.518131],[-52.069868,3.518131],[-52.073468,3.514131],[-52.072368,3.509931],[-52.070268,3.507731],[-52.071268,3.504231],[-52.073768,3.499731],[-52.077868,3.496131],[-52.080068,3.492531],[-52.082968,3.491131],[-52.087268,3.488531],[-52.089368,3.484931],[-52.090868,3.481831],[-52.092668,3.479131],[-52.093968,3.475131],[-52.093168,3.470531],[-52.094268,3.466931],[-52.094768,3.462931],[-52.099868,3.459331],[-52.102468,3.456531],[-52.105868,3.454131],[-52.108068,3.451731],[-52.109768,3.448331],[-52.111368,3.444531],[-52.112868,3.441331],[-52.113268,3.438331],[-52.114468,3.434131],[-52.117268,3.432631],[-52.119168,3.429831],[-52.120768,3.427331],[-52.121668,3.424331],[-52.124468,3.419931],[-52.127368,3.415331],[-52.129368,3.412431],[-52.131568,3.407931],[-52.133168,3.404931],[-52.136768,3.397931],[-52.138868,3.392731],[-52.142668,3.386731],[-52.145668,3.381931],[-52.148468,3.378931],[-52.150068,3.375131],[-52.150868,3.371231],[-52.153068,3.367331],[-52.155168,3.363231],[-52.157368,3.359631],[-52.159468,3.355931],[-52.161968,3.351931],[-52.165068,3.349331],[-52.167868,3.346631],[-52.169768,3.344531],[-52.172268,3.339931],[-52.173868,3.337531],[-52.173868,3.333131],[-52.175568,3.328931],[-52.177968,3.326331],[-52.181668,3.324231],[-52.184068,3.322731],[-52.186568,3.320131],[-52.187968,3.317531],[-52.188768,3.314731],[-52.189568,3.311231],[-52.191868,3.306731],[-52.189168,3.302531],[-52.190568,3.297731],[-52.195168,3.294931],[-52.198868,3.291731],[-52.203168,3.286331],[-52.204568,3.283331],[-52.206068,3.280731],[-52.209268,3.278331],[-52.211468,3.275731],[-52.213668,3.271531],[-52.215868,3.267931],[-52.218668,3.262831],[-52.221368,3.259731],[-52.223068,3.256731],[-52.224468,3.252731],[-52.227768,3.248431],[-52.230368,3.245331],[-52.232168,3.242931],[-52.235568,3.239931],[-52.239668,3.238931],[-52.242468,3.237631],[-52.246368,3.240931],[-52.246868,3.245931],[-52.248368,3.249731],[-52.253068,3.251931],[-52.257668,3.252731],[-52.261268,3.252731],[-52.263568,3.250131],[-52.263568,3.246131],[-52.266068,3.243331],[-52.269268,3.241531],[-52.272268,3.239031],[-52.273968,3.236531],[-52.276568,3.234931],[-52.279868,3.234131],[-52.283968,3.231031],[-52.287368,3.228531],[-52.291768,3.226531],[-52.292768,3.221131],[-52.293168,3.218031],[-52.293968,3.215231],[-52.295368,3.212131],[-52.296968,3.209431],[-52.299468,3.206131],[-52.301868,3.201731],[-52.302868,3.197131],[-52.302468,3.193431],[-52.301168,3.188731],[-52.300868,3.184331],[-52.299668,3.179831],[-52.299668,3.176131],[-52.301468,3.173231],[-52.306068,3.174031],[-52.311568,3.175331],[-52.315968,3.173231],[-52.319068,3.171131],[-52.323468,3.170931],[-52.327168,3.171531],[-52.330768,3.171131],[-52.330168,3.167431],[-52.330468,3.163331],[-52.332368,3.160231],[-52.333768,3.155131],[-52.335668,3.150831],[-52.337868,3.148931],[-52.340068,3.145531],[-52.336468,3.141431],[-52.331768,3.137331],[-52.334368,3.134731],[-52.339768,3.134931],[-52.343768,3.134731],[-52.346968,3.136431],[-52.349568,3.133931],[-52.352368,3.128931],[-52.352468,3.125331],[-52.350868,3.122631],[-52.348068,3.120931],[-52.343768,3.120931],[-52.339068,3.120531],[-52.338668,3.116931],[-52.340668,3.114031],[-52.342568,3.111331],[-52.345168,3.108131],[-52.345868,3.104331],[-52.345668,3.100731],[-52.344868,3.096331],[-52.341668,3.092731],[-52.338968,3.089731],[-52.335368,3.087731],[-52.330968,3.084331],[-52.327668,3.081531],[-52.326068,3.078531],[-52.326768,3.074131],[-52.328268,3.070531],[-52.330668,3.067831],[-52.333168,3.063731],[-52.334668,3.060531],[-52.336168,3.057331],[-52.337968,3.054031],[-52.341168,3.050731],[-52.343068,3.046831],[-52.345068,3.043131],[-52.346168,3.038531],[-52.348068,3.035231],[-52.350268,3.031131],[-52.352368,3.026931],[-52.352268,3.023731],[-52.354968,3.020731],[-52.358968,3.018631],[-52.362268,3.015931],[-52.363368,3.010031],[-52.363668,3.006131],[-52.365368,3.002331],[-52.366168,2.997531],[-52.368668,2.993131],[-52.370868,2.991231],[-52.370768,2.988131],[-52.369068,2.985131],[-52.368568,2.981531],[-52.369968,2.977931],[-52.371368,2.974631],[-52.372968,2.971931],[-52.374368,2.968531],[-52.375968,2.965231],[-52.377968,2.962131],[-52.379868,2.958131],[-52.381668,2.953931],[-52.383868,2.950331],[-52.387768,2.948931],[-52.391568,2.948131],[-52.393168,2.945331],[-52.390368,2.942031],[-52.390368,2.937931],[-52.392168,2.933931],[-52.394868,2.931231],[-52.394768,2.927631],[-52.392068,2.925331],[-52.389668,2.922931],[-52.389368,2.919131],[-52.386568,2.917731],[-52.382368,2.918531],[-52.378768,2.920731],[-52.377668,2.915731],[-52.380168,2.912131],[-52.382368,2.909731],[-52.384168,2.907331],[-52.386768,2.904431],[-52.389268,2.900331],[-52.393268,2.897231],[-52.397968,2.897131],[-52.401268,2.897131],[-52.404268,2.900331],[-52.407768,2.899431],[-52.409468,2.897131],[-52.410068,2.894131],[-52.413968,2.893531],[-52.418368,2.893931],[-52.422168,2.891131],[-52.423268,2.887531],[-52.424968,2.883531],[-52.427168,2.879531],[-52.429368,2.876331],[-52.430768,2.873331],[-52.433068,2.870331],[-52.434868,2.867131],[-52.435468,2.864031],[-52.437468,2.861531],[-52.439368,2.858531],[-52.441268,2.854531],[-52.444068,2.851031],[-52.445568,2.847731],[-52.447168,2.843031],[-52.449068,2.840131],[-52.450968,2.835831],[-52.451868,2.831731],[-52.453168,2.828331],[-52.454968,2.825531],[-52.456068,2.821931],[-52.458468,2.818431],[-52.461168,2.814231],[-52.462868,2.811531],[-52.464468,2.808131],[-52.466668,2.804731],[-52.468668,2.801831],[-52.470068,2.798931],[-52.472668,2.795331],[-52.473468,2.792131],[-52.473768,2.789131],[-52.475268,2.784931],[-52.477768,2.781531],[-52.478368,2.778331],[-52.477068,2.774431],[-52.476368,2.769931],[-52.475968,2.765531],[-52.478168,2.762731],[-52.481468,2.761131],[-52.482568,2.757031],[-52.479768,2.753931],[-52.480668,2.750131],[-52.482168,2.747031],[-52.482868,2.744031],[-52.485268,2.740731],[-52.486868,2.736531],[-52.488668,2.733231],[-52.490868,2.730131],[-52.494368,2.727431],[-52.496868,2.725731],[-52.498768,2.723331],[-52.499968,2.720231],[-52.500168,2.716631],[-52.502368,2.713731],[-52.504068,2.711131],[-52.504868,2.708131],[-52.506268,2.704931],[-52.507368,2.701731],[-52.507368,2.698331],[-52.509368,2.695631],[-52.512468,2.692831],[-52.515068,2.690131],[-52.517668,2.687531],[-52.518968,2.684731],[-52.520068,2.681531],[-52.519368,2.676731],[-52.521468,2.674331],[-52.522568,2.671131],[-52.525168,2.666831],[-52.527568,2.662331],[-52.526168,2.659531],[-52.528468,2.656131],[-52.529468,2.652131],[-52.531968,2.650331],[-52.534768,2.650831],[-52.536768,2.652931],[-52.541668,2.653931],[-52.545368,2.651531],[-52.549668,2.649431],[-52.550468,2.645531],[-52.552968,2.642531],[-52.555168,2.640031],[-52.555068,2.636931],[-52.553068,2.634531],[-52.551068,2.631731],[-52.546068,2.630531],[-52.543568,2.626131],[-52.542468,2.622631],[-52.543368,2.618931],[-52.545768,2.614731],[-52.549368,2.612331],[-52.546868,2.609331],[-52.543168,2.607931],[-52.540368,2.606031],[-52.536468,2.603731],[-52.533968,2.600931],[-52.531968,2.598831],[-52.530868,2.595131],[-52.529468,2.589731],[-52.527568,2.584331],[-52.527868,2.580831],[-52.530468,2.578931],[-52.533168,2.575931],[-52.535068,2.572531],[-52.537468,2.567531],[-52.538168,2.564531],[-52.536468,2.561231],[-52.537768,2.558431],[-52.540968,2.559531],[-52.544168,2.561131],[-52.548268,2.562031],[-52.551968,2.560331],[-52.554768,2.557131],[-52.557668,2.552631],[-52.560868,2.550431],[-52.560468,2.546831],[-52.558368,2.543231],[-52.556568,2.540931],[-52.556168,2.536931],[-52.554668,2.532331],[-52.550268,2.530531],[-52.551968,2.525731],[-52.552568,2.520531],[-52.557168,2.519731],[-52.560568,2.518331],[-52.564868,2.516331],[-52.568768,2.512131],[-52.572168,2.508531],[-52.574968,2.505631],[-52.577168,2.503131],[-52.579668,2.501331],[-52.582168,2.498931],[-52.584368,2.495531],[-52.587968,2.493731],[-52.588668,2.488931],[-52.591468,2.485431],[-52.593468,2.481031],[-52.594468,2.476931],[-52.598068,2.475731],[-52.601168,2.476931],[-52.604168,2.476031],[-52.607468,2.476331],[-52.611968,2.475531],[-52.616368,2.475731],[-52.619468,2.473331],[-52.621068,2.470531],[-52.621968,2.466331],[-52.620868,2.462131],[-52.616868,2.459431],[-52.614168,2.457231],[-52.611668,2.455731],[-52.610368,2.452831],[-52.612468,2.450331],[-52.614968,2.448731],[-52.616168,2.446131],[-52.620168,2.445531],[-52.625168,2.445531],[-52.629068,2.444531],[-52.631668,2.442731],[-52.633168,2.445931],[-52.636568,2.444131],[-52.637168,2.440131],[-52.640168,2.437531],[-52.643168,2.435131],[-52.645668,2.432931],[-52.645168,2.428331],[-52.643568,2.424931],[-52.644068,2.420931],[-52.646168,2.417331],[-52.649268,2.414331],[-52.652268,2.410531],[-52.654868,2.406931],[-52.656768,2.404331],[-52.658068,2.401131],[-52.655868,2.398031],[-52.654468,2.393631],[-52.656168,2.390331],[-52.657668,2.386131],[-52.659468,2.381731],[-52.660268,2.378431],[-52.661668,2.374331],[-52.666668,2.373331],[-52.669568,2.371231],[-52.671668,2.369031],[-52.675268,2.369731],[-52.679368,2.370731],[-52.682968,2.369331],[-52.686568,2.367631],[-52.689868,2.367531],[-52.692368,2.365431],[-52.696368,2.363931],[-52.701068,2.362531],[-52.705168,2.360731],[-52.709068,2.358931],[-52.712668,2.356531],[-52.714768,2.354331],[-52.717568,2.351331],[-52.718668,2.348331],[-52.717668,2.344331],[-52.722568,2.341531],[-52.725968,2.339931],[-52.728868,2.339331],[-52.732468,2.338731],[-52.735068,2.336531],[-52.738968,2.336531],[-52.742668,2.333631],[-52.746068,2.331331],[-52.748568,2.329531],[-52.751868,2.328331],[-52.755668,2.326431],[-52.759868,2.325031],[-52.763968,2.323731],[-52.766268,2.320931],[-52.769768,2.321131],[-52.771568,2.318331],[-52.775168,2.315131],[-52.778368,2.317531],[-52.780968,2.314731],[-52.783368,2.311131],[-52.787768,2.310531],[-52.790668,2.307631],[-52.793568,2.304731],[-52.796768,2.304531],[-52.801068,2.301531],[-52.805068,2.300131],[-52.809068,2.298931],[-52.812968,2.296831],[-52.817368,2.295331],[-52.821068,2.294931],[-52.825468,2.293931],[-52.829868,2.293231],[-52.833268,2.292731],[-52.835968,2.290331],[-52.840568,2.290931],[-52.842568,2.287931],[-52.839868,2.285931],[-52.838368,2.282331],[-52.840968,2.280931],[-52.844568,2.280731],[-52.848368,2.280131],[-52.853068,2.279731],[-52.857268,2.281131],[-52.856068,2.276931],[-52.856768,2.274131],[-52.855268,2.271731],[-52.852068,2.269731],[-52.853868,2.265331],[-52.857768,2.262331],[-52.861868,2.260631],[-52.865268,2.261331],[-52.868368,2.259731],[-52.871868,2.259531],[-52.871868,2.256131],[-52.872368,2.252031],[-52.873268,2.247531],[-52.875868,2.243931],[-52.875768,2.240431],[-52.879868,2.238231],[-52.885768,2.238531],[-52.886268,2.234531],[-52.886268,2.229131],[-52.887168,2.224131],[-52.886068,2.220131],[-52.888568,2.218331],[-52.891468,2.216931],[-52.892168,2.213931],[-52.892868,2.211131],[-52.894568,2.208331],[-52.897268,2.205031],[-52.899568,2.200331],[-52.901568,2.197131],[-52.902668,2.193431],[-52.903768,2.187531],[-52.908068,2.189231],[-52.910868,2.188431],[-52.913068,2.191731],[-52.916768,2.192331],[-52.919968,2.192731],[-52.923568,2.190631],[-52.929768,2.191331],[-52.933268,2.194231],[-52.936268,2.192331],[-52.938768,2.189231],[-52.938268,2.186131],[-52.938568,2.182131],[-52.941968,2.178731],[-52.946268,2.177331],[-52.950668,2.175931],[-52.955468,2.173931],[-52.959368,2.174931],[-52.962368,2.173731],[-52.965468,2.173131],[-52.968668,2.172731],[-52.971668,2.171831],[-52.975268,2.171731],[-52.978368,2.168531],[-52.982468,2.168231],[-52.986968,2.168731],[-52.989968,2.171831],[-52.993268,2.173531],[-52.995768,2.175431],[-52.998768,2.178131],[-53.001968,2.177631],[-53.004568,2.179331],[-53.007768,2.178331],[-53.010668,2.179331],[-53.013968,2.179731],[-53.018768,2.181931],[-53.024068,2.182931],[-53.028068,2.184331],[-53.030668,2.186231],[-53.035168,2.186731],[-53.039968,2.186231],[-53.042468,2.188331],[-53.045868,2.189131],[-53.049168,2.190131],[-53.052468,2.190331],[-53.054468,2.193131],[-53.057568,2.195331],[-53.061068,2.198731],[-53.065268,2.200531],[-53.069368,2.203531],[-53.074868,2.207131],[-53.079568,2.210531],[-53.084368,2.212931],[-53.089568,2.212931],[-53.096368,2.213531],[-53.099468,2.214331],[-53.112568,2.212731],[-53.117968,2.211931],[-53.126968,2.211931],[-53.133468,2.211731],[-53.138568,2.211931],[-53.144068,2.210131],[-53.148268,2.208131],[-53.155468,2.206931],[-53.163068,2.204931],[-53.166368,2.205331],[-53.171168,2.204531],[-53.175268,2.204331],[-53.177968,2.203131],[-53.180768,2.200731],[-53.185168,2.199231],[-53.189568,2.199731],[-53.192768,2.199531],[-53.196568,2.198731],[-53.199868,2.199531],[-53.208268,2.199231],[-53.209268,2.196431],[-53.212568,2.195631],[-53.215468,2.193931],[-53.217568,2.195931],[-53.220668,2.193731],[-53.224568,2.196331],[-53.228468,2.197831],[-53.229668,2.200731],[-53.234368,2.205731],[-53.239668,2.207231],[-53.242768,2.207731],[-53.245868,2.205331],[-53.246368,2.201931],[-53.247968,2.199131],[-53.252368,2.198531],[-53.255568,2.197731],[-53.256268,2.194931],[-53.257768,2.191531],[-53.261268,2.189231],[-53.265468,2.188931],[-53.269568,2.190131],[-53.272868,2.191531],[-53.275868,2.194131],[-53.278168,2.192031],[-53.276468,2.188331],[-53.279168,2.186131],[-53.283968,2.189131],[-53.286968,2.196731],[-53.284868,2.201331],[-53.279768,2.206331],[-53.279768,2.213031],[-53.278968,2.217731],[-53.277268,2.221631],[-53.279768,2.223331],[-53.276268,2.225231],[-53.271468,2.224631],[-53.267368,2.223731],[-53.263168,2.228531],[-53.260668,2.235931],[-53.260768,2.242931],[-53.260168,2.246931],[-53.260468,2.251931],[-53.253268,2.246531],[-53.249868,2.248331],[-53.246068,2.252331],[-53.241568,2.254731],[-53.237468,2.258931],[-53.232568,2.260531],[-53.229468,2.262531],[-53.229468,2.265531],[-53.230668,2.268931],[-53.233168,2.272231],[-53.234668,2.275531],[-53.245768,2.273031],[-53.262068,2.276531],[-53.263468,2.279931],[-53.261368,2.289331],[-53.265768,2.291031],[-53.273168,2.296831],[-53.277568,2.298931],[-53.282768,2.309831],[-53.288168,2.309531],[-53.292268,2.310531],[-53.296068,2.309531],[-53.305868,2.315531],[-53.308068,2.317731],[-53.311568,2.325331],[-53.314968,2.326731],[-53.316368,2.330031],[-53.316968,2.339931],[-53.320168,2.344131],[-53.323268,2.347131],[-53.326868,2.344531],[-53.330668,2.343531],[-53.333468,2.344531],[-53.335768,2.347931],[-53.338168,2.353731],[-53.343768,2.355131],[-53.348368,2.354631],[-53.352068,2.351731],[-53.355268,2.352931],[-53.359968,2.349331],[-53.358268,2.345131],[-53.358268,2.341531],[-53.359968,2.333631],[-53.362268,2.328631],[-53.365268,2.324931],[-53.367568,2.320631],[-53.377168,2.317831],[-53.380768,2.315331],[-53.385668,2.308431],[-53.389268,2.308731],[-53.394068,2.307931],[-53.398968,2.308331],[-53.400168,2.304331],[-53.402568,2.300331],[-53.405068,2.297531],[-53.408968,2.297531],[-53.413968,2.297731],[-53.419168,2.292331],[-53.421768,2.289931],[-53.433568,2.287931],[-53.440268,2.280231],[-53.443568,2.280731],[-53.447968,2.284331],[-53.452368,2.285231],[-53.455768,2.286931],[-53.461268,2.291031],[-53.468468,2.289531],[-53.469768,2.285931],[-53.468968,2.282931],[-53.465568,2.276931],[-53.461168,2.276631],[-53.456868,2.273531],[-53.454368,2.270031],[-53.454968,2.264331],[-53.458668,2.261131],[-53.473068,2.256731],[-53.475668,2.258331],[-53.478368,2.261131],[-53.485268,2.264931],[-53.489968,2.264131],[-53.495268,2.261131],[-53.502368,2.262731],[-53.505268,2.261431],[-53.509868,2.262131],[-53.516568,2.265531],[-53.520168,2.266431],[-53.525468,2.264131],[-53.527668,2.261331],[-53.532768,2.257831],[-53.537268,2.259231],[-53.540868,2.257331],[-53.544268,2.259531],[-53.546968,2.258331],[-53.549968,2.258331],[-53.551168,2.260931],[-53.554768,2.260931],[-53.557268,2.263331],[-53.560168,2.267231],[-53.565968,2.268931],[-53.567668,2.271531],[-53.575168,2.272931],[-53.578168,2.272931],[-53.580768,2.270531],[-53.584268,2.268931],[-53.587268,2.272231],[-53.592968,2.276631],[-53.595868,2.279431],[-53.598068,2.284531],[-53.601168,2.286031],[-53.604268,2.286731],[-53.606768,2.285131],[-53.611068,2.286931],[-53.614668,2.282731],[-53.614968,2.278531],[-53.620168,2.279431],[-53.622668,2.283731],[-53.626268,2.284531],[-53.634368,2.281631],[-53.638468,2.283731],[-53.643168,2.283831],[-53.648768,2.283031],[-53.652268,2.283331],[-53.656268,2.284531],[-53.656968,2.288131],[-53.654168,2.293231],[-53.653468,2.297531],[-53.653368,2.302531],[-53.661168,2.299731],[-53.662868,2.302631],[-53.663868,2.305431],[-53.666768,2.305931],[-53.671168,2.305431],[-53.676668,2.302331],[-53.682168,2.301331],[-53.680468,2.297131],[-53.684768,2.294631],[-53.689168,2.299731],[-53.691668,2.303931],[-53.692768,2.307531],[-53.692668,2.310731],[-53.695468,2.312331],[-53.699268,2.311931],[-53.707568,2.309131],[-53.714768,2.312331],[-53.720668,2.313431],[-53.728068,2.313931],[-53.731368,2.309831],[-53.739768,2.309331],[-53.748768,2.312931],[-53.749168,2.316131],[-53.749768,2.319131],[-53.748368,2.322531],[-53.745568,2.323131],[-53.741668,2.324931],[-53.737568,2.323531],[-53.736968,2.327231],[-53.739068,2.329731],[-53.739668,2.335331],[-53.737168,2.338731],[-53.730668,2.340531],[-53.728368,2.342931],[-53.725568,2.349131],[-53.723368,2.352931],[-53.727868,2.351031],[-53.730368,2.352431],[-53.733568,2.356331],[-53.738568,2.362331],[-53.741568,2.361831],[-53.744768,2.358931],[-53.748568,2.359531],[-53.752468,2.364731],[-53.744768,2.366731],[-53.740868,2.369331],[-53.739068,2.372631],[-53.741568,2.375131],[-53.748268,2.374131],[-53.754368,2.375131],[-53.757968,2.375131],[-53.760468,2.377331],[-53.767168,2.378931],[-53.771768,2.377731],[-53.773268,2.373731],[-53.776168,2.372931],[-53.784168,2.372631],[-53.791768,2.364531],[-53.798368,2.365331],[-53.803368,2.359531],[-53.805468,2.357531],[-53.810568,2.357531],[-53.813068,2.353231],[-53.812968,2.348531],[-53.814568,2.342531],[-53.819668,2.340831],[-53.824568,2.340231],[-53.833768,2.340531],[-53.836468,2.334931],[-53.832568,2.328931],[-53.827968,2.328631],[-53.824968,2.330031],[-53.820568,2.329731],[-53.817968,2.327131],[-53.815968,2.322131],[-53.814868,2.317031],[-53.818168,2.316531],[-53.823968,2.317731],[-53.830368,2.313931],[-53.836568,2.310931],[-53.840068,2.309831],[-53.842868,2.308431],[-53.849468,2.309331],[-53.853168,2.311231],[-53.854268,2.315131],[-53.856668,2.318731],[-53.859468,2.320131],[-53.864968,2.312531],[-53.872268,2.316331],[-53.875968,2.315631],[-53.878868,2.316531],[-53.883868,2.316331],[-53.886568,2.314131],[-53.889068,2.307531],[-53.889668,2.304031],[-53.887968,2.300331],[-53.889568,2.295431],[-53.892868,2.291031],[-53.889268,2.286331],[-53.892568,2.283831],[-53.897568,2.287731],[-53.903468,2.280531],[-53.905468,2.275831],[-53.907768,2.274131],[-53.916368,2.277331],[-53.917568,2.280531],[-53.917168,2.284531],[-53.915368,2.286731],[-53.915968,2.290731],[-53.918668,2.292331],[-53.922568,2.292431],[-53.928268,2.290531],[-53.935168,2.297131],[-53.937668,2.295131],[-53.939968,2.292131],[-53.937168,2.289531],[-53.936568,2.286331],[-53.939168,2.284331],[-53.942068,2.278031],[-53.937968,2.270531],[-53.938068,2.266931],[-53.938768,2.263331],[-53.935568,2.259531],[-53.939068,2.254531],[-53.942668,2.252531],[-53.942368,2.242531],[-53.945668,2.241131],[-53.950668,2.242931],[-53.954268,2.245331],[-53.960868,2.243131],[-53.964068,2.243731],[-53.967068,2.243131],[-53.970568,2.238731],[-53.973468,2.233131],[-53.979168,2.233931],[-53.985268,2.235131],[-53.989968,2.237531],[-53.994368,2.236131],[-53.996568,2.233731],[-54.001268,2.230131],[-54.189068,2.178931],[-54.436568,2.209931],[-54.601668,2.337231],[-54.662068,2.327131],[-54.692068,2.361531],[-54.686268,2.411331],[-54.684868,2.446931],[-54.744068,2.471531],[-54.783068,2.447731],[-54.797468,2.439131],[-54.872168,2.433931],[-54.911168,2.489731],[-54.919468,2.499731],[-54.935468,2.518631],[-54.954268,2.583631],[-55.003768,2.591131],[-55.008768,2.587531],[-55.056168,2.553331],[-55.103068,2.525831],[-55.123368,2.567731],[-55.172768,2.559531],[-55.207568,2.522931],[-55.234768,2.503431],[-55.277268,2.512531],[-55.320168,2.515531],[-55.356168,2.475731],[-55.345568,2.448131],[-55.385368,2.418531],[-55.429368,2.439131],[-55.482268,2.438731],[-55.499668,2.443431],[-55.504168,2.439531],[-55.508568,2.438431],[-55.513168,2.438431],[-55.517668,2.435731],[-55.520668,2.437031],[-55.524768,2.435931],[-55.528168,2.431931],[-55.527968,2.428731],[-55.551468,2.429731],[-55.557668,2.425931],[-55.560568,2.425431],[-55.564068,2.426531],[-55.567168,2.424731],[-55.570668,2.423731],[-55.571068,2.428131],[-55.572368,2.430731],[-55.574668,2.437931],[-55.577868,2.435531],[-55.587268,2.434331],[-55.589768,2.431531],[-55.593468,2.433331],[-55.599968,2.430931],[-55.604268,2.430331],[-55.609468,2.428131],[-55.612568,2.426331],[-55.617168,2.419931],[-55.624468,2.420131],[-55.631568,2.417131],[-55.635668,2.418231],[-55.642168,2.416031],[-55.646868,2.416831],[-55.651268,2.418131],[-55.654168,2.419931],[-55.657268,2.420731],[-55.662068,2.419331],[-55.667468,2.414531],[-55.673968,2.413731],[-55.681068,2.416831],[-55.686268,2.417331],[-55.695168,2.421731],[-55.698468,2.421731],[-55.699668,2.417731],[-55.700168,2.413731],[-55.703768,2.408731],[-55.704668,2.405731],[-55.707668,2.403331],[-55.717868,2.402131],[-55.727868,2.406931],[-55.734668,2.406531],[-55.737168,2.409131],[-55.742668,2.408831],[-55.746968,2.410531],[-55.752768,2.417931],[-55.754068,2.421831],[-55.753768,2.425931],[-55.756768,2.430131],[-55.760668,2.430431],[-55.763568,2.433131],[-55.767468,2.438131],[-55.761568,2.440631],[-55.762368,2.447531],[-55.764268,2.452131],[-55.766768,2.455331],[-55.770668,2.456931],[-55.776968,2.460531],[-55.781268,2.461931],[-55.783868,2.456731],[-55.790268,2.458931],[-55.794268,2.457531],[-55.798668,2.459331],[-55.802768,2.459431],[-55.810768,2.457731],[-55.815268,2.459131],[-55.827368,2.460531],[-55.830168,2.459331],[-55.835768,2.460831],[-55.838768,2.462231],[-55.843468,2.465231],[-55.847068,2.466531],[-55.850668,2.469331],[-55.853868,2.477331],[-55.854568,2.480731],[-55.858068,2.482531],[-55.861768,2.483231],[-55.866168,2.481531],[-55.868868,2.483531],[-55.870868,2.486131],[-55.873868,2.488131],[-55.880768,2.489031],[-55.882068,2.494031],[-55.884968,2.498431],[-55.886268,2.503431],[-55.891468,2.505931],[-55.897568,2.505631],[-55.900068,2.509231],[-55.899768,2.514731],[-55.901568,2.517231],[-55.906668,2.519431],[-55.910268,2.520031],[-55.914968,2.519731],[-55.919968,2.517931],[-55.924468,2.518631],[-55.921868,2.522931],[-55.922768,2.527331],[-55.924168,2.530731],[-55.927168,2.531631],[-55.930268,2.531331],[-55.934668,2.533731],[-55.942768,2.531931],[-55.945768,2.532131],[-55.953568,2.530931],[-55.959068,2.531331],[-55.970568,2.529431],[-55.973668,2.525831],[-55.978168,2.527531],[-55.978568,2.522531],[-55.979668,2.518931],[-55.983368,2.519331],[-55.989368,2.517931],[-55.991368,2.512531],[-55.992968,2.504731],[-55.991368,2.502031],[-55.984968,2.499531],[-55.982268,2.497631],[-55.977868,2.496531],[-55.977068,2.492931],[-55.977468,2.489731],[-55.979768,2.485331],[-55.988268,2.478931],[-55.988668,2.470931],[-55.991168,2.467131],[-55.996068,2.465531],[-56.000268,2.463031],[-56.001568,2.460331],[-56.005468,2.459131],[-56.008468,2.454531],[-56.011568,2.452831],[-56.010668,2.449131],[-56.008868,2.444531],[-56.005968,2.446931],[-56.003068,2.445931],[-56.000168,2.442031],[-55.996968,2.441331],[-55.995068,2.435731],[-55.992168,2.438731],[-55.989068,2.436131],[-55.985768,2.434131],[-55.985368,2.429531],[-55.989668,2.427131],[-55.991068,2.422531],[-55.987168,2.420431],[-55.989968,2.417431],[-55.995268,2.416531],[-56.001568,2.413131],[-56.003068,2.408831],[-56.005168,2.406531],[-56.007068,2.401631],[-56.011068,2.400331],[-56.014668,2.399931],[-56.015468,2.397131],[-56.017668,2.394931],[-56.020668,2.393331],[-56.023268,2.390931],[-56.024768,2.382531],[-56.032268,2.378431],[-56.033668,2.374831],[-56.036668,2.374331],[-56.037068,2.370331],[-56.039968,2.366231],[-56.033068,2.364331],[-56.026968,2.355531],[-56.025868,2.350731],[-56.026968,2.347331],[-56.022568,2.347431],[-56.021868,2.342531],[-56.029768,2.339731],[-56.028068,2.336331],[-56.029568,2.332531],[-56.034768,2.332931],[-56.038468,2.334731],[-56.042468,2.333931],[-56.046168,2.333631],[-56.050568,2.335131],[-56.059168,2.343031],[-56.060168,2.346131],[-56.059668,2.351731],[-56.061268,2.355131],[-56.064968,2.357331],[-56.068568,2.361531],[-56.069368,2.364731],[-56.071068,2.368331],[-56.073968,2.370931],[-56.076468,2.369331],[-56.080968,2.369031],[-56.080768,2.373331],[-56.084368,2.375131],[-56.086168,2.372631],[-56.090168,2.372531],[-56.089868,2.368331],[-56.089068,2.364031],[-56.092268,2.360331],[-56.090668,2.357131],[-56.088968,2.351731],[-56.090668,2.348831],[-56.090468,2.345131],[-56.093968,2.341131],[-56.095668,2.338531],[-56.092868,2.334931],[-56.091968,2.330031],[-56.093368,2.325531],[-56.093768,2.321331],[-56.101468,2.320931],[-56.107168,2.318431],[-56.109468,2.315131],[-56.113368,2.311231],[-56.112568,2.307531],[-56.114368,2.303531],[-56.114468,2.298731],[-56.117968,2.295431],[-56.124168,2.291031],[-56.128068,2.286731],[-56.126668,2.283731],[-56.125468,2.278331],[-56.127968,2.275731],[-56.137068,2.270831],[-56.138968,2.265931],[-56.135668,2.263631],[-56.132468,2.263631],[-56.126368,2.259131],[-56.123068,2.258931],[-56.120168,2.255131],[-56.120468,2.250531],[-56.112268,2.247531],[-56.108968,2.244831],[-56.103968,2.245531],[-56.095968,2.241531],[-56.095668,2.246231],[-56.091768,2.248731],[-56.087968,2.250131],[-56.085368,2.246931],[-56.083168,2.243131],[-56.079268,2.241131],[-56.077368,2.237531],[-56.073968,2.237331],[-56.070968,2.239731],[-56.068768,2.242931],[-56.065168,2.241731],[-56.058068,2.233531],[-56.055068,2.232531],[-56.048568,2.232331],[-56.046168,2.229331],[-56.042868,2.227931],[-56.042768,2.224931],[-56.043368,2.221531],[-56.037868,2.219731],[-56.036168,2.216931],[-56.036168,2.213731],[-56.040668,2.209131],[-56.042568,2.206331],[-56.043168,2.201431],[-56.046868,2.196131],[-56.051368,2.192331],[-56.056168,2.189531],[-56.055068,2.184831],[-56.049768,2.184531],[-56.048568,2.180331],[-56.045868,2.177331],[-56.042068,2.176131],[-56.040268,2.173231],[-56.037368,2.171531],[-56.035068,2.168931],[-56.027268,2.169631],[-56.020368,2.167931],[-56.014068,2.165531],[-56.011068,2.166531],[-56.003068,2.167731],[-55.999368,2.164131],[-55.995768,2.161331],[-55.993668,2.158831],[-55.993568,2.154131],[-55.991968,2.151131],[-55.987468,2.148931],[-55.986668,2.145831],[-55.989968,2.142531],[-55.993668,2.139731],[-55.992468,2.136731],[-55.991368,2.131531],[-55.987868,2.132531],[-55.982168,2.132031],[-55.975568,2.126131],[-55.975668,2.119731],[-55.978168,2.115331],[-55.973468,2.116231],[-55.969768,2.113131],[-55.973068,2.103231],[-55.971168,2.099931],[-55.966968,2.088531],[-55.961568,2.088331],[-55.953568,2.091131],[-55.948768,2.091631],[-55.945168,2.089131],[-55.943168,2.085731],[-55.941268,2.081331],[-55.938068,2.078631],[-55.935268,2.077131],[-55.929168,2.078631],[-55.926668,2.075331],[-55.928868,2.068431],[-55.932968,2.061231],[-55.932968,2.057931],[-55.929068,2.057531],[-55.926868,2.054531],[-55.923968,2.051831],[-55.920568,2.052531],[-55.908868,2.047531],[-55.905968,2.044631],[-55.903168,2.041031],[-55.902068,2.029431],[-55.903768,2.026331],[-55.907568,2.022231],[-55.910568,2.022131],[-55.910368,2.017531],[-55.910868,2.014531],[-55.906768,2.013531],[-55.905868,2.009131],[-55.908668,2.008131],[-55.908068,2.001331],[-55.912468,1.994031],[-55.913868,1.990731],[-55.918568,1.991931],[-55.922768,1.991231],[-55.925268,1.994831],[-55.929168,1.997531],[-55.931968,1.995731],[-55.935168,1.996731],[-55.936368,1.986731],[-55.936068,1.983531],[-55.931968,1.971331],[-55.928268,1.969531],[-55.927268,1.965731],[-55.926368,1.957231],[-55.922468,1.950531],[-55.922868,1.947131],[-55.929668,1.939231],[-55.927568,1.936931],[-55.923868,1.937331],[-55.921968,1.933331],[-55.920368,1.928331],[-55.920568,1.919131],[-55.911968,1.913131],[-55.910068,1.910531],[-55.901968,1.907931],[-55.900868,1.903331],[-55.901568,1.899931],[-55.901468,1.896931],[-55.903768,1.888131],[-55.909868,1.887131],[-55.914968,1.884931],[-55.923068,1.879931],[-55.924968,1.876331],[-55.929468,1.873131],[-55.934368,1.871731],[-55.935268,1.867631],[-55.938268,1.866131],[-55.939868,1.861831],[-55.944068,1.858931],[-55.954268,1.848731],[-55.956468,1.845231],[-55.962868,1.848131],[-55.966968,1.847431],[-55.970068,1.848331],[-55.970968,1.844731],[-55.975968,1.840531],[-55.979268,1.842131],[-55.982468,1.839431],[-55.983268,1.835731],[-55.995768,1.835131],[-55.999068,1.831531],[-56.004068,1.833931],[-56.007468,1.836131],[-56.011268,1.835831],[-56.024068,1.842731],[-56.029068,1.841631],[-56.032568,1.845131],[-56.036668,1.850231],[-56.041168,1.849931],[-56.043568,1.847331],[-56.046368,1.849531],[-56.049968,1.851031],[-56.059068,1.850931],[-56.066568,1.851931],[-56.075468,1.849931],[-56.077368,1.845231],[-56.081468,1.845931],[-56.083268,1.850231],[-56.085368,1.853131],[-56.090168,1.853931],[-56.092568,1.851531],[-56.095868,1.849331],[-56.098668,1.846631],[-56.104268,1.849131],[-56.112868,1.855131],[-56.117668,1.851031],[-56.118668,1.854531],[-56.120168,1.857331],[-56.126268,1.857731],[-56.129968,1.859331],[-56.131268,1.862931],[-56.132668,1.870131],[-56.136768,1.873431],[-56.141068,1.875131],[-56.146468,1.881931],[-56.150968,1.885631],[-56.152668,1.890931],[-56.156668,1.891931],[-56.160268,1.891431],[-56.165268,1.887331],[-56.168568,1.887731],[-56.170668,1.891331],[-56.168868,1.897931],[-56.170868,1.900731],[-56.177968,1.896331],[-56.182468,1.892731],[-56.191668,1.893931],[-56.195268,1.892231],[-56.198968,1.892731],[-56.200968,1.896331],[-56.204568,1.896131],[-56.208968,1.894431],[-56.212368,1.899731],[-56.215068,1.902131],[-56.234468,1.898731],[-56.235868,1.893931],[-56.237768,1.889931],[-56.240568,1.886731],[-56.240768,1.883331],[-56.241468,1.879731],[-56.244068,1.878331],[-56.248768,1.879731],[-56.255968,1.884231],[-56.258768,1.885631],[-56.263168,1.885631],[-56.265468,1.889731],[-56.272268,1.896731],[-56.275968,1.896931],[-56.280168,1.899431],[-56.282668,1.902531],[-56.289968,1.906631],[-56.290668,1.910731],[-56.295268,1.908831],[-56.298868,1.909731],[-56.302768,1.911731],[-56.304768,1.915731],[-56.308868,1.917731],[-56.309068,1.921131],[-56.311968,1.923131],[-56.317068,1.922531],[-56.321368,1.923731],[-56.324968,1.927631],[-56.327668,1.929531],[-56.329568,1.932631],[-56.332868,1.934131],[-56.335068,1.937331],[-56.339368,1.935531],[-56.341968,1.937031],[-56.348368,1.939231],[-56.351168,1.937731],[-56.354468,1.938731],[-56.358268,1.941531],[-56.364368,1.938131],[-56.369068,1.937531],[-56.371968,1.932931],[-56.378768,1.931531],[-56.380968,1.933331],[-56.385468,1.932631],[-56.388568,1.932931],[-56.390068,1.928931],[-56.388468,1.926131],[-56.390068,1.923531],[-56.397068,1.923231],[-56.399768,1.927631],[-56.403668,1.930431],[-56.408168,1.929831],[-56.411968,1.928331],[-56.414768,1.931231],[-56.419768,1.937931],[-56.422568,1.939131],[-56.423868,1.942031],[-56.422868,1.945931],[-56.428068,1.945931],[-56.432168,1.946431],[-56.435868,1.949131],[-56.436968,1.951931],[-56.441668,1.951431],[-56.444668,1.948731],[-56.451268,1.956331],[-56.454268,1.952531],[-56.461568,1.950931],[-56.465168,1.951331],[-56.468968,1.949231],[-56.473368,1.950031],[-56.482868,1.954331],[-56.487168,1.951931],[-56.487568,1.946331],[-56.492668,1.941731],[-56.495568,1.938131],[-56.498268,1.936931],[-56.501368,1.936931],[-56.503868,1.934531],[-56.509668,1.932631],[-56.513768,1.932131],[-56.517968,1.932531],[-56.522568,1.929331],[-56.524868,1.924731],[-56.531268,1.922331],[-56.535268,1.921831],[-56.538168,1.918731],[-56.541368,1.917131],[-56.546668,1.915531],[-56.552568,1.918131],[-56.555568,1.917431],[-56.560868,1.911031],[-56.570968,1.909731],[-56.577068,1.907731],[-56.579668,1.905931],[-56.582568,1.907331],[-56.586568,1.911031],[-56.587268,1.915331],[-56.590068,1.921531],[-56.594568,1.923131],[-56.596468,1.926131],[-56.595568,1.929731],[-56.596168,1.932931],[-56.598468,1.936531],[-56.603968,1.936131],[-56.607868,1.934531],[-56.612468,1.937031],[-56.617968,1.943931],[-56.621568,1.946131],[-56.624468,1.945331],[-56.629968,1.942531],[-56.632168,1.938331],[-56.636568,1.936731],[-56.639668,1.934331],[-56.641068,1.931531],[-56.646168,1.930131],[-56.649068,1.931231],[-56.650068,1.928131],[-56.650068,1.922331],[-56.651168,1.917331],[-56.654768,1.918231],[-56.662268,1.915331],[-56.666968,1.915531],[-56.669968,1.913331],[-56.673568,1.912931],[-56.676068,1.918931],[-56.679168,1.921131],[-56.681568,1.919331],[-56.681868,1.913831],[-56.686568,1.913331],[-56.692368,1.915331],[-56.695668,1.917331],[-56.702368,1.920431],[-56.704668,1.924031],[-56.709568,1.922731],[-56.713468,1.924331],[-56.716268,1.926131],[-56.720968,1.925931],[-56.722868,1.922131],[-56.726968,1.918731],[-56.730368,1.918231],[-56.734768,1.917331],[-56.736168,1.914631],[-56.737568,1.908731],[-56.743268,1.906531],[-56.746268,1.903031],[-56.749868,1.902931],[-56.750568,1.896331],[-56.753568,1.892731],[-56.756368,1.890731],[-56.762168,1.889931],[-56.764968,1.888531],[-56.766268,1.883531],[-56.766068,1.880331],[-56.768168,1.876131],[-56.773968,1.868931],[-56.781668,1.864531],[-56.785868,1.865331],[-56.788668,1.864331],[-56.787868,1.858731],[-56.788068,1.854531],[-56.791368,1.852431],[-56.797868,1.853531],[-56.798568,1.857331],[-56.795768,1.858231],[-56.795768,1.861531],[-56.798868,1.863731],[-56.801068,1.866131],[-56.798568,1.868731],[-56.798868,1.872631],[-56.801468,1.874131],[-56.809368,1.873931],[-56.812968,1.876731],[-56.817168,1.877731],[-56.820968,1.879231],[-56.821568,1.883331],[-56.825668,1.884131],[-56.828568,1.881731],[-56.830968,1.888931],[-56.834368,1.889331],[-56.837868,1.888131],[-56.845868,1.893331],[-56.849168,1.892131],[-56.852068,1.891931],[-56.856368,1.889331],[-56.859668,1.890731],[-56.858668,1.895331],[-56.861868,1.895731],[-56.864668,1.896731],[-56.866668,1.893331],[-56.881068,1.897231],[-56.886868,1.897131],[-56.888168,1.900131],[-56.891468,1.901931],[-56.893468,1.899431],[-56.899868,1.904131],[-56.907268,1.910531],[-56.906268,1.915331],[-56.908868,1.917131],[-56.910968,1.922531],[-56.915268,1.923931],[-56.919768,1.930431],[-56.923068,1.929331],[-56.925068,1.926831],[-56.932168,1.926531],[-56.940468,1.921531],[-56.949868,1.919531],[-56.950668,1.922731],[-56.955068,1.922931],[-56.959268,1.924531],[-56.961268,1.920431],[-56.968168,1.916731],[-56.968468,1.912331],[-56.970968,1.908831],[-56.971468,1.905731],[-56.976168,1.903031],[-56.981468,1.904431],[-56.982868,1.907331],[-56.987468,1.906331],[-56.991668,1.907431],[-56.996668,1.907931],[-57.000768,1.907331],[-57.004468,1.910931],[-57.009168,1.917131],[-57.014268,1.915131],[-57.017568,1.918931],[-57.024468,1.927931],[-57.023768,1.933931],[-57.025068,1.939831],[-57.028468,1.942031],[-57.030868,1.944231],[-57.031968,1.947131],[-57.034768,1.948731],[-57.044268,1.951331],[-57.047468,1.953331],[-57.050368,1.953631],[-57.053868,1.952531],[-57.056568,1.956931],[-57.060768,1.957931],[-57.064068,1.956131],[-57.066568,1.961131],[-57.067368,1.964431],[-57.071268,1.968831],[-57.071568,1.973131],[-57.070468,1.976931],[-57.070468,1.980531],[-57.072368,1.984331],[-57.070168,1.989531],[-57.071268,1.996731],[-57.073468,2.002531],[-57.077068,2.005931],[-57.082568,2.007731],[-57.082668,2.013931],[-57.081568,2.018931],[-57.083968,2.021731],[-57.086768,2.026531],[-57.090468,2.025531],[-57.094168,2.022531],[-57.096368,2.017931],[-57.100068,2.018931],[-57.102568,2.022731],[-57.106468,2.026931],[-57.111668,2.029731],[-57.116668,2.028031],[-57.117468,2.024431],[-57.116568,2.019731],[-57.116368,2.015031],[-57.119968,2.010331],[-57.129868,2.006531],[-57.132168,2.002731],[-57.140768,2.001131],[-57.146468,1.995331],[-57.145068,1.991531],[-57.147568,1.989031],[-57.153068,1.992631],[-57.158368,1.991931],[-57.163968,1.994831],[-57.168868,1.994331],[-57.179168,1.990331],[-57.183368,1.979631],[-57.186568,1.978931],[-57.189468,1.979631],[-57.194268,1.978531],[-57.199968,1.978931],[-57.203268,1.976731],[-57.207268,1.970931],[-57.211168,1.968831],[-57.210068,1.966131],[-57.214768,1.961531],[-57.220068,1.959431],[-57.222368,1.956531],[-57.225568,1.956731],[-57.229168,1.953631],[-57.229168,1.950331],[-57.230068,1.945631],[-57.229268,1.937731],[-57.232268,1.936931],[-57.237568,1.939531],[-57.237768,1.943431],[-57.241168,1.943431],[-57.244168,1.947331],[-57.247168,1.948531],[-57.252968,1.948531],[-57.255468,1.950531],[-57.257668,1.954931],[-57.256368,1.961331],[-57.262368,1.961931],[-57.264568,1.966331],[-57.266868,1.969331],[-57.271168,1.969931],[-57.273468,1.974331],[-57.270768,1.976531],[-57.267868,1.979931],[-57.268968,1.983731],[-57.272368,1.983731],[-57.277268,1.983131],[-57.284268,1.986131],[-57.287768,1.988231],[-57.301168,1.995531],[-57.304368,1.997631],[-57.307168,1.996731],[-57.309168,1.992131],[-57.312668,1.981331],[-57.313268,1.977331],[-57.318868,1.977331],[-57.323968,1.977931],[-57.329268,1.979631],[-57.332968,1.977131],[-57.338168,1.975231],[-57.345668,1.980331],[-57.351768,1.976531],[-57.356368,1.970531],[-57.356668,1.966131],[-57.354268,1.961331],[-57.358968,1.958931],[-57.365368,1.958131],[-57.369168,1.956531],[-57.368268,1.952231],[-57.361868,1.948331],[-57.357068,1.947331],[-57.356668,1.944231],[-57.359968,1.940631],[-57.361168,1.936531],[-57.361468,1.932131],[-57.364968,1.926131],[-57.367768,1.923931],[-57.370568,1.922531],[-57.375768,1.922531],[-57.383668,1.927031],[-57.392168,1.924731],[-57.395768,1.924031],[-57.398468,1.921831],[-57.402868,1.912931],[-57.406768,1.911731],[-57.410668,1.909931],[-57.413668,1.909731],[-57.417468,1.910731],[-57.419968,1.909131],[-57.423568,1.908331],[-57.427768,1.909531],[-57.431068,1.908031],[-57.433368,1.906131],[-57.433668,1.901131],[-57.432568,1.897231],[-57.432468,1.890931],[-57.434468,1.886931],[-57.436268,1.880631],[-57.434068,1.877731],[-57.429368,1.874131],[-57.432268,1.869531],[-57.431968,1.858531],[-57.436368,1.853131],[-57.440168,1.850931],[-57.439568,1.845131],[-57.444968,1.841331],[-57.444068,1.836731],[-57.441068,1.835331],[-57.439168,1.832931],[-57.437768,1.830031],[-57.437768,1.826931],[-57.440168,1.823531],[-57.444868,1.822531],[-57.446268,1.817731],[-57.448868,1.812031],[-57.451868,1.811531],[-57.450968,1.806531],[-57.453268,1.803931],[-57.457068,1.802131],[-57.460668,1.803331],[-57.463768,1.800431],[-57.468368,1.799731],[-57.474168,1.796131],[-57.476368,1.799031],[-57.477768,1.794631],[-57.481668,1.795431],[-57.482168,1.798531],[-57.485268,1.800131],[-57.486668,1.796131],[-57.487168,1.792731],[-57.490868,1.790731],[-57.493668,1.792731],[-57.499868,1.788831],[-57.501868,1.786031],[-57.500168,1.781531],[-57.499168,1.776531],[-57.496968,1.773531],[-57.497668,1.770331],[-57.497368,1.766931],[-57.499868,1.761331],[-57.501868,1.758131],[-57.508568,1.757531],[-57.509868,1.754531],[-57.514568,1.747331],[-57.516068,1.742131],[-57.515368,1.736831],[-57.514368,1.733931],[-57.516768,1.731831],[-57.515968,1.727931],[-57.514268,1.723131],[-57.518968,1.721331],[-57.521768,1.723331],[-57.522068,1.726331],[-57.526168,1.728131],[-57.529168,1.723831],[-57.531968,1.721631],[-57.536768,1.722331],[-57.541368,1.720531],[-57.540268,1.716931],[-57.536668,1.714731],[-57.535268,1.711531],[-57.534168,1.708331],[-57.535168,1.704331],[-57.537768,1.700731],[-57.541668,1.698731],[-57.550368,1.700731],[-57.552168,1.698131],[-57.553268,1.692531],[-57.557768,1.692331],[-57.561068,1.694531],[-57.564568,1.695931],[-57.572668,1.688931],[-57.577168,1.690531],[-57.577168,1.699931],[-57.576068,1.702731],[-57.581768,1.706331],[-57.583968,1.702131],[-57.590168,1.700031],[-57.592968,1.701931],[-57.597868,1.700731],[-57.600068,1.697531],[-57.604768,1.693131],[-57.609968,1.692831],[-57.614768,1.695631],[-57.619468,1.695931],[-57.621968,1.699931],[-57.629368,1.698531],[-57.632968,1.691531],[-57.636468,1.690631],[-57.641568,1.686731],[-57.645368,1.685931],[-57.650468,1.682531],[-57.654168,1.686531],[-57.655568,1.690531],[-57.660568,1.689231],[-57.662868,1.692731],[-57.667868,1.695631],[-57.669568,1.700031],[-57.668168,1.702731],[-57.670668,1.708131],[-57.672468,1.710831],[-57.675068,1.706131],[-57.684068,1.705731],[-57.686968,1.706531],[-57.689568,1.708631],[-57.692368,1.712231],[-57.698168,1.713931],[-57.697068,1.717131],[-57.697168,1.720931],[-57.705168,1.731031],[-57.708168,1.731331],[-57.711968,1.728731],[-57.711468,1.724331],[-57.708168,1.720931],[-57.710168,1.717731],[-57.718468,1.715531],[-57.716468,1.720931],[-57.719768,1.723131],[-57.724868,1.720231],[-57.731168,1.718831],[-57.736168,1.719531],[-57.738968,1.722431],[-57.744968,1.722931],[-57.752168,1.719131],[-57.758268,1.718731],[-57.760268,1.722731],[-57.763268,1.723331],[-57.766768,1.722731],[-57.768968,1.727431],[-57.774368,1.729931],[-57.777068,1.728231],[-57.777668,1.723131],[-57.780368,1.719331],[-57.783068,1.721131],[-57.785368,1.724331],[-57.792268,1.726731],[-57.793168,1.719731],[-57.795568,1.713931],[-57.794668,1.710331],[-57.795368,1.706531],[-57.796968,1.703331],[-57.799968,1.701931],[-57.803668,1.701931],[-57.803368,1.698531],[-57.798368,1.697131],[-57.796368,1.691131],[-57.797568,1.687331],[-57.799768,1.685331],[-57.803068,1.684731],[-57.809168,1.688431],[-57.813868,1.687031],[-57.819568,1.683931],[-57.822868,1.685131],[-57.827868,1.685131],[-57.836468,1.686731],[-57.840068,1.683731],[-57.841168,1.686531],[-57.844168,1.689131],[-57.846768,1.687031],[-57.846968,1.681131],[-57.849968,1.679331],[-57.853068,1.677931],[-57.853668,1.674731],[-57.850668,1.673531],[-57.852068,1.667931],[-57.857168,1.668731],[-57.863268,1.673931],[-57.866568,1.674731],[-57.870468,1.676731],[-57.873368,1.680431],[-57.877168,1.680431],[-57.878468,1.676331],[-57.877168,1.671831],[-57.880768,1.670331],[-57.884668,1.669631],[-57.889268,1.674331],[-57.895068,1.674531],[-57.899768,1.671131],[-57.902068,1.667931],[-57.902068,1.660231],[-57.904768,1.655931],[-57.908968,1.651331],[-57.913468,1.647731],[-57.920768,1.646731],[-57.926868,1.644931],[-57.937468,1.646531],[-57.940568,1.648531],[-57.945168,1.648731],[-57.950268,1.647731],[-57.953968,1.650531],[-57.959368,1.651331],[-57.957868,1.654331],[-57.961968,1.657331],[-57.965068,1.655231],[-57.970568,1.654431],[-57.978868,1.655931],[-57.981068,1.659531],[-57.985768,1.660231],[-57.990068,1.658531],[-57.990268,1.651531],[-58.002368,1.649431],[-58.002668,1.645831],[-57.996268,1.644431],[-57.992168,1.641131],[-57.989068,1.640531],[-57.986468,1.636931],[-57.982568,1.635531],[-57.980368,1.633331],[-57.979568,1.628731],[-57.982768,1.626731],[-57.982768,1.621931],[-57.982068,1.617931],[-57.985368,1.616931],[-57.984968,1.613131],[-57.982768,1.608531],[-57.983268,1.603931],[-57.981768,1.600231],[-57.981368,1.596531],[-57.983368,1.590531],[-57.983868,1.586331],[-57.982568,1.579531],[-57.978568,1.572831],[-57.980368,1.569131],[-57.982568,1.565931],[-57.986068,1.567031],[-57.989968,1.567531],[-57.988868,1.562531],[-57.991868,1.561531],[-57.993668,1.556531],[-57.994368,1.553331],[-57.992168,1.550131],[-57.989368,1.547731],[-57.988668,1.543931],[-57.990268,1.540731],[-57.994968,1.538831],[-57.996868,1.534531],[-57.998868,1.530731],[-58.001268,1.528331],[-58.000468,1.520831],[-58.005568,1.516931],[-58.005268,1.513131],[-58.004168,1.509931],[-58.004168,1.503131],[-58.008868,1.505131],[-58.015368,1.505931],[-58.021168,1.507831],[-58.023968,1.510931],[-58.027268,1.508731],[-58.029468,1.513331],[-58.036168,1.518631],[-58.040568,1.521131],[-58.043868,1.519731],[-58.052468,1.524131],[-58.060868,1.525531],[-58.065268,1.522231],[-58.065568,1.518331],[-58.068568,1.512731],[-58.069568,1.507531],[-58.073468,1.506931],[-58.076468,1.507831],[-58.085068,1.508131],[-58.083768,1.511431],[-58.085468,1.514931],[-58.097668,1.514131],[-58.100268,1.509931],[-58.104168,1.506931],[-58.107168,1.505931],[-58.111368,1.501331],[-58.117168,1.500531],[-58.121568,1.501331],[-58.129468,1.499131],[-58.135668,1.503431],[-58.139268,1.505131],[-58.145968,1.507331],[-58.149568,1.510031],[-58.147568,1.512531],[-58.146168,1.515531],[-58.148368,1.521331],[-58.150368,1.523531],[-58.152868,1.528031],[-58.155168,1.530131],[-58.155368,1.536731],[-58.153668,1.543131],[-58.156668,1.543731],[-58.159768,1.552931],[-58.157868,1.555931],[-58.160668,1.560331],[-58.164768,1.560931],[-58.171368,1.563431],[-58.179668,1.565531],[-58.183868,1.565331],[-58.186868,1.568131],[-58.189568,1.571731],[-58.193068,1.572331],[-58.194868,1.569731],[-58.197368,1.567331],[-58.200968,1.567031],[-58.212868,1.564831],[-58.216768,1.560531],[-58.220968,1.556731],[-58.225568,1.554031],[-58.229268,1.553931],[-58.233268,1.547531],[-58.236068,1.546831],[-58.239368,1.548731],[-58.241368,1.554031],[-58.245268,1.557331],[-58.250968,1.559131],[-58.254568,1.562031],[-58.257368,1.569231],[-58.262368,1.570931],[-58.266868,1.569731],[-58.271768,1.567531],[-58.276268,1.569131],[-58.284168,1.573331],[-58.288168,1.572531],[-58.291068,1.568931],[-58.292868,1.564231],[-58.296668,1.564831],[-58.301968,1.564831],[-58.317168,1.568431],[-58.317668,1.575931],[-58.315968,1.578631],[-58.314068,1.584731],[-58.314868,1.588031],[-58.314368,1.594131],[-58.319068,1.594731],[-58.322368,1.597131],[-58.327168,1.595231],[-58.329568,1.593531],[-58.332368,1.590831],[-58.337568,1.581331],[-58.342268,1.578131],[-58.344568,1.575931],[-58.345568,1.572831],[-58.344868,1.569931],[-58.343468,1.566731],[-58.345868,1.564531],[-58.350968,1.563931],[-58.360368,1.560331],[-58.360368,1.554731],[-58.361868,1.551331],[-58.359468,1.546531],[-58.360668,1.542431],[-58.363068,1.538131],[-58.367468,1.536931],[-58.374068,1.537931],[-58.378868,1.535531],[-58.382168,1.537331],[-58.389568,1.535531],[-58.391068,1.531531],[-58.394768,1.526531],[-58.395068,1.522931],[-58.393768,1.520031],[-58.389968,1.515331],[-58.384568,1.514131],[-58.383568,1.510931],[-58.387368,1.507731],[-58.391568,1.506531],[-58.392668,1.501731],[-58.390368,1.496231],[-58.385668,1.492931],[-58.385168,1.488731],[-58.381668,1.489731],[-58.376668,1.488131],[-58.372368,1.483031],[-58.384068,1.472731],[-58.385668,1.470131],[-58.390968,1.469931],[-58.396768,1.470931],[-58.403968,1.469931],[-58.406768,1.471531],[-58.412868,1.472731],[-58.416468,1.470931],[-58.421968,1.471131],[-58.425268,1.467131],[-58.430468,1.466931],[-58.439468,1.464431],[-58.442168,1.461731],[-58.444268,1.456531],[-58.448468,1.456131],[-58.454068,1.460331],[-58.457868,1.460831],[-58.459268,1.463531],[-58.461968,1.466131],[-58.465068,1.466331],[-58.472768,1.461131],[-58.477768,1.460831],[-58.480668,1.461531],[-58.483868,1.460731],[-58.488368,1.462131],[-58.490468,1.466631],[-58.493368,1.468331],[-58.496568,1.466331],[-58.505168,1.464931],[-58.508768,1.463031],[-58.509568,1.459431],[-58.507968,1.449231],[-58.507968,1.444931],[-58.502368,1.442831],[-58.498068,1.430331],[-58.503268,1.424931],[-58.503268,1.418531],[-58.501568,1.415131],[-58.505968,1.409731],[-58.505168,1.403331],[-58.500568,1.401331],[-58.495768,1.397231],[-58.490568,1.394731],[-58.487168,1.394331],[-58.485068,1.392131],[-58.479668,1.390331],[-58.479168,1.387331],[-58.485068,1.384931],[-58.481668,1.381931],[-58.479268,1.378331],[-58.475668,1.376131],[-58.471668,1.374331],[-58.470068,1.370931],[-58.465968,1.372631],[-58.464868,1.375531],[-58.461568,1.374331],[-58.457868,1.371531],[-58.461168,1.367131],[-58.464068,1.365131],[-58.465168,1.362131],[-58.468968,1.356531],[-58.471668,1.354931],[-58.470868,1.350931],[-58.474268,1.348531],[-58.473368,1.340831],[-58.473868,1.337931],[-58.473068,1.329131],[-58.470968,1.319531],[-58.476168,1.308431],[-58.478068,1.305731],[-58.483568,1.300431],[-58.486368,1.299931],[-58.495168,1.295131],[-58.493368,1.291031],[-58.493368,1.287931],[-58.496368,1.282131],[-58.497268,1.279131],[-58.494468,1.275331],[-58.494468,1.270831],[-58.496268,1.268131],[-58.504068,1.269131],[-58.504368,1.273331],[-58.507368,1.274431],[-58.508468,1.277331],[-58.512968,1.277731],[-58.514068,1.273931],[-58.517368,1.272731],[-58.519368,1.268631],[-58.520168,1.265731],[-58.517968,1.261931],[-58.519068,1.258331],[-58.522968,1.257831],[-58.524068,1.262731],[-58.524068,1.267131],[-58.527068,1.269731],[-58.529868,1.270731],[-58.533468,1.269131],[-58.535968,1.265731],[-58.538168,1.267731],[-58.537768,1.271731],[-58.538068,1.275831],[-58.539568,1.281631],[-58.538868,1.284931],[-58.540268,1.288131],[-58.542768,1.289931],[-58.546868,1.291831],[-58.549968,1.291831],[-58.554368,1.292731],[-58.556568,1.290531],[-58.559668,1.290331],[-58.561568,1.292731],[-58.564568,1.294631],[-58.567968,1.292731],[-58.569568,1.290331],[-58.569868,1.286031],[-58.577668,1.283331],[-58.579068,1.279131],[-58.577668,1.274731],[-58.579868,1.270831],[-58.581868,1.268531],[-58.582668,1.263531],[-58.585468,1.262131],[-58.588168,1.263531],[-58.587068,1.267231],[-58.588468,1.270031],[-58.592368,1.270331],[-58.595668,1.271131],[-58.601768,1.274131],[-58.605268,1.274731],[-58.608268,1.273931],[-58.612568,1.281131],[-58.614968,1.283031],[-58.618368,1.285131],[-58.622368,1.284731],[-58.628768,1.288731],[-58.633268,1.289131],[-58.637068,1.288331],[-58.639368,1.285531],[-58.642668,1.285931],[-58.645968,1.285531],[-58.650168,1.286731],[-58.652668,1.288331],[-58.656268,1.286931],[-58.659268,1.283731],[-58.661268,1.280531],[-58.664168,1.279431],[-58.666068,1.281631],[-58.669268,1.281331],[-58.676068,1.285231],[-58.677568,1.288331],[-58.677468,1.292131],[-58.680168,1.296331],[-58.684068,1.296731],[-58.686568,1.294931],[-58.694568,1.297531],[-58.697068,1.294631],[-58.705968,1.293731],[-58.710468,1.290131],[-58.710968,1.286931],[-58.709868,1.283531],[-58.711868,1.281131],[-58.713468,1.278031],[-58.714068,1.274431],[-58.718168,1.266131],[-58.719268,1.258531],[-58.720668,1.255531],[-58.720968,1.245331],[-58.716268,1.241131],[-58.715168,1.237631],[-58.717968,1.236331],[-58.719868,1.233931],[-58.721268,1.230731],[-58.721668,1.227731],[-58.725268,1.218731],[-58.728868,1.216931],[-58.730368,1.214131],[-58.730268,1.210731],[-58.734968,1.208331],[-58.737168,1.206331],[-58.739668,1.200031],[-58.744368,1.205731],[-58.747968,1.208131],[-58.751268,1.208631],[-58.754568,1.205331],[-58.761268,1.200031],[-58.764068,1.197131],[-58.769868,1.186531],[-58.773468,1.186231],[-58.776268,1.185531],[-58.778468,1.187731],[-58.779468,1.190631],[-58.786768,1.188931],[-58.791668,1.190531],[-58.794968,1.187731],[-58.793568,1.184731],[-58.797168,1.181931],[-58.800068,1.176731],[-58.803568,1.176131],[-58.805068,1.180131],[-58.809868,1.179031],[-58.811568,1.176331],[-58.821268,1.171131],[-58.825168,1.171331],[-58.824068,1.183331],[-58.826868,1.187031],[-58.831868,1.187931],[-58.836568,1.185531],[-58.845968,1.181931],[-58.850068,1.183131],[-58.854268,1.183431],[-58.856368,1.186231],[-58.854668,1.189831],[-58.856368,1.193431],[-58.859368,1.196331],[-58.859368,1.204131],[-58.866868,1.203331],[-58.870768,1.208931],[-58.870868,1.217731],[-58.874468,1.219731],[-58.874468,1.223331],[-58.876868,1.225531],[-58.879868,1.225531],[-58.882068,1.228931],[-58.891868,1.230931],[-58.895468,1.227931],[-58.898768,1.228931],[-58.904168,1.234131],[-58.908468,1.235331],[-58.912068,1.238231],[-58.905168,1.240931],[-58.904268,1.245331],[-58.905168,1.249331],[-58.902968,1.252031],[-58.899868,1.252531],[-58.895168,1.254931],[-58.892868,1.257831],[-58.889368,1.258931],[-58.886868,1.260331],[-58.888768,1.263131],[-58.892368,1.267531],[-58.898768,1.279431],[-58.902068,1.279931],[-58.918568,1.284931],[-58.922468,1.289931],[-58.923868,1.293531],[-58.921068,1.294631],[-58.919668,1.301731],[-58.915968,1.305131],[-58.917168,1.309131],[-58.915568,1.313131],[-58.917568,1.316131],[-58.924768,1.317531],[-58.929668,1.316731],[-58.932668,1.317531],[-58.938768,1.316331],[-58.942368,1.316531],[-58.944068,1.314131],[-58.949068,1.312731],[-58.953168,1.313331],[-58.956268,1.312031],[-58.961868,1.313131],[-58.965968,1.312531],[-58.970168,1.309731],[-58.973368,1.307631],[-58.975968,1.302631],[-58.978868,1.301731],[-58.981668,1.304731],[-58.982468,1.307931],[-58.985368,1.312531],[-58.988668,1.318331],[-58.989668,1.324931],[-58.992768,1.326431],[-58.997968,1.325531],[-59.001668,1.324131],[-59.005768,1.324231],[-59.013268,1.323931],[-59.021868,1.331131],[-59.027668,1.330331],[-59.030968,1.327831],[-59.038868,1.324231],[-59.042768,1.323331],[-59.048568,1.322731],[-59.052468,1.323931],[-59.054068,1.326731],[-59.054668,1.331131],[-59.056868,1.334331],[-59.060868,1.335531],[-59.066968,1.335131],[-59.067368,1.331131],[-59.070168,1.329731],[-59.074968,1.330531],[-59.087068,1.338531],[-59.089068,1.342531],[-59.090168,1.345931],[-59.095968,1.344731],[-59.099568,1.347931],[-59.102768,1.348331],[-59.104968,1.346331],[-59.108868,1.345531],[-59.114668,1.342731],[-59.118368,1.342731],[-59.122268,1.345931],[-59.127368,1.350731],[-59.131568,1.352431],[-59.139068,1.349131],[-59.145068,1.347331],[-59.152668,1.348831],[-59.154868,1.351031],[-59.162068,1.359131],[-59.168868,1.356731],[-59.171868,1.357131],[-59.176868,1.360431],[-59.179068,1.363931],[-59.182968,1.368131],[-59.187968,1.375131],[-59.196568,1.378331],[-59.204868,1.376531],[-59.206068,1.372031],[-59.212668,1.374731],[-59.225968,1.377331],[-59.230268,1.382731],[-59.234968,1.386731],[-59.241968,1.385531],[-59.246268,1.385631],[-59.253268,1.388331],[-59.258468,1.396131],[-59.270068,1.401631],[-59.272068,1.406631],[-59.277368,1.408031],[-59.281968,1.409931],[-59.280068,1.413331],[-59.275168,1.418531],[-59.279168,1.426131],[-59.282268,1.429731],[-59.284268,1.437031],[-59.287368,1.438931],[-59.288468,1.444731],[-59.284168,1.448731],[-59.287068,1.452231],[-59.292068,1.457931],[-59.297868,1.460331],[-59.302168,1.465231],[-59.307268,1.466331],[-59.310468,1.466131],[-59.313068,1.461131],[-59.319568,1.460331],[-59.324868,1.461331],[-59.327068,1.464131],[-59.326268,1.467731],[-59.327668,1.474531],[-59.322968,1.479531],[-59.321568,1.482131],[-59.322368,1.485331],[-59.330168,1.499731],[-59.332168,1.506331],[-59.329868,1.509131],[-59.329868,1.513931],[-59.333168,1.514131],[-59.339568,1.518331],[-59.347368,1.517131],[-59.353068,1.517131],[-59.359668,1.516431],[-59.358068,1.511131],[-59.361368,1.505131],[-59.362268,1.508331],[-59.365868,1.509731],[-59.371868,1.506731],[-59.379068,1.507731],[-59.382668,1.508731],[-59.380768,1.512131],[-59.379068,1.515531],[-59.379568,1.521731],[-59.384168,1.523031],[-59.384068,1.528931],[-59.394368,1.537131],[-59.395668,1.540931],[-59.395368,1.554531],[-59.398968,1.557131],[-59.403468,1.554731],[-59.412768,1.551731],[-59.415268,1.554531],[-59.422868,1.555731],[-59.431168,1.567331],[-59.430068,1.575531],[-59.427468,1.579131],[-59.426568,1.582931],[-59.427168,1.586331],[-59.432268,1.590531],[-59.437668,1.593831],[-59.438068,1.598831],[-59.443268,1.605731],[-59.444868,1.614731],[-59.448868,1.619531],[-59.457068,1.618331],[-59.465168,1.617631],[-59.472668,1.620531],[-59.478868,1.625531],[-59.482868,1.626731],[-59.484968,1.630331],[-59.488868,1.635531],[-59.489168,1.640731],[-59.494668,1.647231],[-59.496268,1.654131],[-59.495468,1.658531],[-59.493668,1.661331],[-59.494368,1.665931],[-59.493268,1.669331],[-59.493268,1.673531],[-59.499368,1.677131],[-59.502668,1.674331],[-59.506368,1.674731],[-59.507068,1.668931],[-59.510268,1.667931],[-59.512068,1.671331],[-59.512668,1.678331],[-59.514268,1.681231],[-59.520168,1.684731],[-59.523168,1.687531],[-59.526268,1.691331],[-59.527068,1.694731],[-59.526968,1.703531],[-59.533868,1.708331],[-59.534768,1.716631],[-59.538068,1.721131],[-59.544268,1.721331],[-59.547768,1.727131],[-59.550468,1.728231],[-59.554068,1.727131],[-59.557168,1.724631],[-59.560468,1.729631],[-59.564968,1.734331],[-59.570468,1.734531],[-59.576268,1.734631],[-59.580668,1.731831],[-59.584768,1.731731],[-59.588268,1.726531],[-59.593168,1.726331],[-59.597668,1.725131],[-59.600668,1.722431],[-59.608868,1.721931],[-59.611868,1.717731],[-59.616668,1.716531],[-59.622168,1.721931],[-59.629868,1.728131],[-59.631868,1.733531],[-59.632468,1.740131],[-59.638768,1.740431],[-59.643768,1.741731],[-59.648368,1.740731],[-59.655868,1.742331],[-59.659468,1.738231],[-59.663068,1.736831],[-59.664168,1.741131],[-59.663068,1.744731],[-59.664568,1.748431],[-59.664868,1.752531],[-59.667468,1.755331],[-59.671068,1.756331],[-59.676568,1.755631],[-59.680868,1.754131],[-59.690168,1.756331],[-59.691668,1.760931],[-59.690268,1.764331],[-59.688868,1.766931],[-59.686568,1.771331],[-59.685568,1.774731],[-59.688368,1.779431],[-59.686268,1.782331],[-59.684868,1.786731],[-59.684368,1.790331],[-59.679768,1.789931],[-59.679768,1.794531],[-59.680868,1.797331],[-59.677968,1.807631],[-59.672868,1.807531],[-59.668068,1.811931],[-59.664268,1.813431],[-59.659768,1.811231],[-59.654268,1.816931],[-59.655668,1.819731],[-59.658168,1.823931],[-59.655468,1.828931],[-59.653468,1.834131],[-59.650168,1.840231],[-59.649868,1.843531],[-59.652668,1.849931],[-59.656568,1.853231],[-59.659768,1.860131],[-59.662768,1.863931],[-59.666368,1.864331],[-59.669168,1.859631],[-59.665268,1.850531],[-59.666068,1.847731],[-59.669168,1.846631],[-59.671868,1.843731],[-59.674968,1.839731],[-59.679068,1.839331],[-59.681568,1.845931],[-59.690968,1.853131],[-59.703468,1.854631],[-59.707668,1.854131],[-59.711868,1.854331],[-59.720568,1.849531],[-59.726768,1.849331],[-59.734668,1.851531],[-59.737868,1.851731],[-59.745868,1.851931],[-59.747968,1.855531],[-59.751568,1.858531],[-59.752168,1.861731],[-59.753468,1.865731],[-59.752168,1.871231],[-59.749868,1.873931],[-59.747368,1.878731],[-59.749868,1.882331],[-59.752668,1.890731],[-59.755468,1.894931],[-59.759368,1.900531],[-59.755768,1.905531],[-59.757168,1.909131],[-59.754368,1.911531],[-59.753868,1.917431],[-59.756268,1.919531],[-59.755268,1.922731],[-59.749668,1.927531],[-59.745468,1.929531],[-59.746268,1.933331],[-59.745868,1.941131],[-59.743368,1.944531],[-59.739468,1.956931],[-59.738268,1.961131],[-59.737768,1.966331],[-59.739968,1.970131],[-59.742168,1.972431],[-59.740268,1.975531],[-59.738368,1.979331],[-59.738268,1.983531],[-59.734968,1.984631],[-59.735268,1.989031],[-59.733968,1.993731],[-59.734468,1.998331],[-59.734768,2.002731],[-59.733168,2.005131],[-59.731768,2.008931],[-59.734268,2.011931],[-59.734268,2.014931],[-59.732468,2.018631],[-59.727568,2.020031],[-59.723468,2.022731],[-59.721468,2.027331],[-59.724868,2.029331],[-59.728668,2.030931],[-59.728868,2.033831],[-59.731468,2.036531],[-59.731068,2.040331],[-59.732468,2.043731],[-59.735368,2.048531],[-59.737468,2.051831],[-59.736668,2.055131],[-59.737568,2.058331],[-59.739968,2.061531],[-59.740768,2.065131],[-59.741468,2.068431],[-59.741668,2.073731],[-59.739668,2.076431],[-59.739468,2.079931],[-59.737168,2.082731],[-59.736468,2.086931],[-59.735668,2.089731],[-59.732468,2.091931],[-59.729968,2.093831],[-59.727868,2.096131],[-59.724568,2.098331],[-59.722268,2.102131],[-59.722268,2.106031],[-59.723068,2.110431],[-59.721768,2.113731],[-59.722068,2.116931],[-59.723368,2.119531],[-59.724468,2.122331],[-59.728068,2.123731],[-59.727068,2.127931],[-59.726468,2.132731],[-59.728668,2.137731],[-59.732568,2.140931],[-59.734168,2.143631],[-59.737868,2.146131],[-59.739468,2.149431],[-59.737768,2.152531],[-59.738068,2.155731],[-59.739468,2.159331],[-59.741468,2.162931],[-59.740368,2.166731],[-59.739768,2.171131],[-59.737568,2.175131],[-59.739368,2.177531],[-59.740068,2.180331],[-59.736768,2.182931],[-59.736668,2.186731],[-59.736068,2.189731],[-59.733268,2.193131],[-59.731368,2.196431],[-59.729268,2.199931],[-59.727868,2.202731],[-59.726668,2.205531],[-59.726668,2.209331],[-59.728868,2.213331],[-59.728868,2.217331],[-59.729568,2.220531],[-59.730568,2.224631],[-59.730268,2.229631],[-59.729568,2.232731],[-59.726968,2.234931],[-59.723068,2.236531],[-59.720068,2.237631],[-59.720968,2.241231],[-59.722668,2.245331],[-59.721668,2.249131],[-59.723668,2.252531],[-59.725268,2.254931],[-59.726368,2.259231],[-59.729168,2.264531],[-59.727768,2.267931],[-59.725868,2.270031],[-59.724268,2.273031],[-59.723368,2.276331],[-59.725568,2.279431],[-59.727268,2.282131],[-59.730068,2.283831],[-59.732468,2.285731],[-59.736468,2.286531],[-59.739068,2.289631],[-59.740468,2.292731],[-59.745768,2.292131],[-59.749968,2.288131],[-59.752468,2.289931],[-59.756268,2.289931],[-59.761268,2.290531],[-59.764668,2.292431],[-59.767568,2.293931],[-59.770968,2.294631],[-59.774568,2.292131],[-59.777568,2.289531],[-59.780068,2.285931],[-59.783068,2.285131],[-59.785968,2.284531],[-59.788468,2.288331],[-59.793868,2.290931],[-59.796868,2.293731],[-59.799168,2.297531],[-59.803568,2.298731],[-59.804668,2.302331],[-59.805268,2.306231],[-59.809068,2.309531],[-59.811868,2.311131],[-59.815468,2.312931],[-59.818168,2.317331],[-59.821268,2.318331],[-59.824668,2.319231],[-59.827368,2.323131],[-59.828268,2.328331],[-59.831768,2.329131],[-59.834268,2.325331],[-59.836268,2.322331],[-59.838668,2.320631],[-59.841668,2.320531],[-59.843768,2.323331],[-59.844068,2.328931],[-59.848468,2.330031],[-59.852468,2.330731],[-59.854968,2.333931],[-59.854968,2.338331],[-59.857168,2.340531],[-59.860268,2.342531],[-59.862568,2.344931],[-59.866668,2.348131],[-59.869468,2.350231],[-59.869368,2.353231],[-59.869668,2.356731],[-59.872968,2.360431],[-59.877168,2.357331],[-59.880768,2.353531],[-59.883868,2.353531],[-59.886768,2.354931],[-59.890168,2.357131],[-59.892968,2.361131],[-59.896768,2.361531],[-59.898268,2.364731],[-59.898968,2.369531],[-59.902268,2.373131],[-59.905068,2.376931],[-59.905868,2.381131],[-59.907268,2.384931],[-59.908468,2.388331],[-59.908168,2.393631],[-59.905868,2.397731],[-59.901268,2.399731],[-59.898668,2.402731],[-59.897168,2.405531],[-59.895968,2.409331],[-59.895768,2.412731],[-59.897268,2.416731],[-59.898768,2.421331],[-59.897168,2.424531],[-59.893168,2.424731],[-59.892068,2.427631],[-59.894568,2.430931],[-59.898168,2.435131],[-59.900468,2.438431],[-59.899768,2.442531],[-59.897968,2.445331],[-59.896868,2.450031],[-59.894868,2.453131],[-59.894368,2.456931],[-59.895068,2.460831],[-59.894768,2.465231],[-59.898168,2.468831],[-59.900168,2.471631],[-59.899268,2.474631],[-59.897068,2.477931],[-59.897868,2.482131],[-59.900768,2.483131],[-59.902568,2.485931],[-59.904768,2.489931],[-59.907568,2.492331],[-59.910368,2.493731],[-59.912368,2.496131],[-59.912568,2.499831],[-59.913068,2.503331],[-59.916168,2.505631],[-59.920068,2.508331],[-59.919168,2.511931],[-59.919568,2.516931],[-59.921068,2.520731],[-59.918668,2.523731],[-59.918668,2.526631],[-59.921968,2.530131],[-59.923568,2.533731],[-59.924968,2.536331],[-59.926868,2.538831],[-59.929368,2.540531],[-59.932668,2.544531],[-59.934168,2.549531],[-59.938068,2.552931],[-59.937168,2.556231],[-59.935168,2.558431],[-59.933568,2.561531],[-59.931368,2.564231],[-59.929368,2.567731],[-59.930868,2.571131],[-59.934768,2.573131],[-59.935868,2.576331],[-59.937668,2.579731],[-59.940168,2.582231],[-59.942668,2.584431],[-59.947368,2.586331],[-59.951868,2.586731],[-59.955368,2.589131],[-59.958968,2.591531],[-59.962868,2.592331],[-59.965968,2.592131],[-59.970668,2.592531],[-59.972568,2.596531],[-59.972068,2.599631],[-59.970668,2.602731],[-59.969068,2.605531],[-59.966668,2.608731],[-59.962968,2.609631],[-59.959268,2.610331],[-59.962668,2.614031],[-59.964468,2.617631],[-59.964768,2.621531],[-59.963968,2.624831],[-59.965868,2.627331],[-59.968768,2.628731],[-59.971268,2.632731],[-59.972768,2.635331],[-59.975968,2.638131],[-59.977368,2.642731],[-59.975868,2.646131],[-59.974168,2.649131],[-59.972068,2.655131],[-59.972368,2.659131],[-59.974468,2.662431],[-59.974268,2.666531],[-59.976668,2.670731],[-59.980068,2.674731],[-59.982868,2.675431],[-59.985568,2.677331],[-59.988268,2.679831],[-59.990768,2.683431],[-59.991468,2.688331],[-59.989368,2.693431],[-59.990068,2.699231],[-59.990768,2.702131],[-59.991568,2.706531],[-59.991168,2.710531],[-59.989768,2.717331],[-59.990068,2.720531],[-59.992268,2.725231],[-59.992268,2.728731],[-59.992668,2.731731],[-59.992968,2.734631],[-59.991568,2.737531],[-59.989668,2.740431],[-59.988268,2.743331],[-59.987868,2.747031],[-59.987768,2.750631],[-59.988368,2.753931],[-59.990068,2.757831],[-59.991468,2.762331],[-59.992268,2.768331],[-59.991968,2.772231],[-59.991968,2.777331],[-59.992268,2.780531],[-59.993368,2.783731],[-59.993268,2.786931],[-59.991968,2.790331],[-59.991868,2.793731],[-59.990268,2.797531],[-59.987468,2.802131],[-59.988068,2.806731],[-59.988868,2.811531],[-59.989068,2.815131],[-59.989968,2.820631],[-59.990768,2.825931],[-59.991168,2.831531],[-59.991468,2.835531],[-59.991168,2.839931],[-59.990368,2.843731],[-59.988068,2.846531],[-59.985268,2.851331],[-59.984668,2.855531],[-59.985368,2.858731],[-59.986868,2.862331],[-59.985768,2.865131],[-59.982868,2.869031],[-59.983368,2.873731],[-59.984968,2.877031],[-59.988968,2.880531],[-59.988968,2.883531],[-59.986068,2.885631],[-59.982868,2.889131],[-59.979268,2.893931],[-59.978068,2.897531],[-59.978868,2.903331],[-59.982468,2.904131],[-59.984368,2.906531],[-59.986368,2.909731],[-59.984768,2.913131],[-59.983968,2.915931],[-59.982868,2.919131],[-59.982768,2.922931],[-59.983668,2.926531],[-59.983368,2.930931],[-59.980068,2.935131],[-59.977268,2.937731],[-59.974168,2.940131],[-59.970068,2.945131],[-59.967868,2.947331],[-59.963768,2.949231],[-59.961168,2.951131],[-59.959568,2.954331],[-59.960068,2.957531],[-59.962968,2.959431],[-59.964768,2.962931],[-59.962368,2.968531],[-59.960668,2.972931],[-59.958668,2.977131],[-59.957368,2.983131],[-59.955768,2.986131],[-59.954268,2.990131],[-59.952468,2.993731],[-59.949668,2.996231],[-59.947368,2.998931],[-59.947468,3.002731],[-59.949968,3.005631],[-59.955168,3.009231],[-59.957568,3.011731],[-59.960068,3.013631],[-59.961868,3.017531],[-59.960468,3.020731],[-59.959568,3.024331],[-59.958968,3.028331],[-59.957068,3.031531],[-59.954668,3.035731],[-59.951868,3.040731],[-59.951268,3.044131],[-59.951068,3.047531],[-59.950768,3.054731],[-59.951068,3.058431],[-59.952068,3.061231],[-59.953268,3.066331],[-59.954268,3.069131],[-59.956168,3.073731],[-59.956468,3.077131],[-59.955468,3.081731],[-59.951568,3.083131],[-59.946368,3.084431],[-59.940968,3.086331],[-59.937768,3.089931],[-59.938368,3.093831],[-59.939368,3.098131],[-59.936968,3.102331],[-59.933568,3.106331],[-59.929368,3.109931],[-59.924668,3.108731],[-59.923068,3.112331],[-59.922468,3.116731],[-59.922168,3.120131],[-59.918668,3.120931],[-59.916768,3.116931],[-59.915968,3.112331],[-59.912368,3.110331],[-59.908068,3.113931],[-59.907368,3.118331],[-59.908368,3.121231],[-59.909168,3.124831],[-59.912868,3.127031],[-59.917068,3.126331],[-59.918868,3.128931],[-59.918968,3.132731],[-59.916668,3.137531],[-59.912568,3.139131],[-59.908968,3.139131],[-59.907568,3.141931],[-59.908868,3.145331],[-59.912768,3.146131],[-59.916068,3.144931],[-59.919968,3.145031],[-59.918568,3.149431],[-59.914468,3.149131],[-59.910268,3.149131],[-59.904268,3.149131],[-59.901468,3.150731],[-59.900068,3.154931],[-59.901268,3.160231],[-59.903768,3.165131],[-59.905368,3.168931],[-59.907668,3.172531],[-59.909168,3.177331],[-59.910068,3.181231],[-59.911668,3.185731],[-59.912468,3.190631],[-59.912368,3.194731],[-59.910568,3.199231],[-59.909568,3.202831],[-59.908668,3.207231],[-59.908368,3.211331],[-59.906768,3.213931],[-59.902868,3.216131],[-59.898768,3.216631],[-59.895168,3.215731],[-59.892168,3.215231],[-59.888468,3.216331],[-59.885168,3.217931],[-59.882368,3.220231],[-59.878768,3.221531],[-59.875868,3.223131],[-59.874468,3.225731],[-59.875868,3.230131],[-59.879168,3.232931],[-59.882068,3.234631],[-59.885968,3.237331],[-59.887768,3.239931],[-59.887368,3.242931],[-59.884368,3.243931],[-59.881068,3.244731],[-59.879068,3.247331],[-59.881368,3.253931],[-59.881368,3.257331],[-59.880468,3.260331],[-59.877768,3.263331],[-59.875768,3.266331],[-59.873568,3.270331],[-59.872968,3.274731],[-59.871568,3.277331],[-59.868668,3.278731],[-59.863668,3.278531],[-59.858868,3.279131],[-59.857068,3.283731],[-59.855668,3.287331],[-59.853968,3.290531],[-59.852068,3.295131],[-59.852868,3.300931],[-59.850268,3.305731],[-59.846968,3.307531],[-59.843168,3.308131],[-59.841268,3.310331],[-59.840868,3.313331],[-59.841968,3.316731],[-59.841468,3.319931],[-59.838168,3.321331],[-59.834768,3.322531],[-59.833168,3.326131],[-59.829668,3.329531],[-59.827568,3.332231],[-59.830468,3.340731],[-59.832868,3.345531],[-59.833968,3.348731],[-59.834268,3.351931],[-59.831268,3.355131],[-59.827168,3.356531],[-59.824268,3.356531],[-59.820968,3.355731],[-59.817368,3.354531],[-59.810568,3.352331],[-59.806368,3.353931],[-59.804968,3.357331],[-59.804468,3.360731],[-59.804168,3.364331],[-59.804368,3.370331],[-59.809468,3.376131],[-59.811268,3.380331],[-59.811668,3.383731],[-59.812468,3.387331],[-59.813568,3.392131],[-59.815168,3.395831],[-59.817068,3.398731],[-59.819168,3.405231],[-59.821368,3.411731],[-59.821368,3.416331],[-59.814968,3.419531],[-59.812968,3.421831],[-59.810868,3.424731],[-59.811868,3.428531],[-59.814468,3.430331],[-59.817768,3.430131],[-59.822368,3.428331],[-59.825468,3.425931],[-59.829268,3.423131],[-59.832268,3.422531],[-59.836168,3.422531],[-59.839068,3.423931],[-59.841268,3.426531],[-59.840668,3.433731],[-59.840368,3.437031],[-59.840568,3.440931],[-59.839768,3.443931],[-59.836968,3.446431],[-59.833668,3.449231],[-59.830368,3.453331],[-59.828468,3.456931],[-59.826868,3.459931],[-59.825768,3.463531],[-59.824568,3.467931],[-59.822468,3.471931],[-59.818868,3.472331],[-59.815168,3.470531],[-59.811268,3.469731],[-59.810768,3.473731],[-59.812268,3.476931],[-59.814568,3.479331],[-59.818768,3.479331],[-59.824068,3.476731],[-59.826868,3.479931],[-59.824868,3.483131],[-59.821568,3.484531],[-59.815268,3.485331],[-59.811868,3.485731],[-59.808068,3.488231],[-59.803268,3.491131],[-59.801568,3.494731],[-59.802168,3.497531],[-59.802568,3.501331],[-59.803368,3.504731],[-59.805068,3.509531],[-59.808668,3.512831],[-59.812968,3.516431],[-59.815568,3.519331],[-59.818768,3.521531],[-59.822468,3.523031],[-59.826068,3.523931],[-59.831468,3.522131],[-59.834568,3.523931],[-59.837868,3.527931],[-59.839268,3.531131],[-59.839868,3.534531],[-59.841268,3.538131],[-59.843668,3.542331],[-59.844868,3.546831],[-59.842968,3.552131],[-59.845568,3.554031],[-59.848468,3.554831],[-59.852068,3.555331],[-59.856668,3.555931],[-59.860668,3.556931],[-59.864968,3.558131],[-59.869968,3.559731],[-59.872268,3.563431],[-59.868368,3.565131],[-59.865868,3.567531],[-59.862868,3.569531],[-59.859168,3.572531],[-59.862168,3.575331],[-59.866068,3.577131],[-59.862568,3.579331],[-59.859268,3.580531],[-59.857768,3.584931],[-59.856368,3.589131],[-59.854168,3.591931],[-59.851668,3.594531],[-59.850668,3.598731],[-59.850968,3.603131],[-59.848068,3.605331],[-59.844168,3.605331],[-59.840168,3.605931],[-59.834668,3.607731],[-59.830668,3.610131],[-59.827468,3.611731],[-59.823168,3.613931],[-59.819868,3.613131],[-59.816968,3.610731],[-59.816368,3.614731],[-59.816568,3.619331],[-59.813468,3.619031],[-59.810468,3.617131],[-59.806068,3.617131],[-59.803268,3.617631],[-59.800068,3.618931],[-59.795668,3.619531],[-59.791668,3.618131],[-59.787468,3.617331],[-59.784768,3.619331],[-59.781168,3.621931],[-59.777968,3.624131],[-59.775068,3.625631],[-59.770668,3.626531],[-59.765468,3.627531],[-59.768168,3.631931],[-59.763568,3.632731],[-59.759268,3.634231],[-59.758468,3.639331],[-59.757468,3.643131],[-59.756368,3.645831],[-59.753868,3.649931],[-59.751568,3.653031],[-59.748768,3.654131],[-59.745868,3.655731],[-59.744168,3.658331],[-59.741668,3.660731],[-59.738668,3.661731],[-59.735368,3.661931],[-59.732468,3.662731],[-59.729168,3.663331],[-59.724268,3.663831],[-59.721268,3.665731],[-59.719468,3.668531],[-59.719168,3.673931],[-59.717268,3.676531],[-59.714268,3.677931],[-59.710468,3.679831],[-59.708468,3.682931],[-59.706868,3.686231],[-59.704268,3.689131],[-59.701068,3.689131],[-59.697068,3.688731],[-59.692468,3.689131],[-59.689468,3.693331],[-59.688068,3.696131],[-59.686668,3.699531],[-59.682468,3.696931],[-59.679468,3.696931],[-59.674668,3.700031],[-59.668968,3.702831],[-59.667768,3.706931],[-59.665868,3.710531],[-59.663168,3.713931],[-59.663168,3.717931],[-59.665568,3.719931],[-59.668868,3.722131],[-59.671068,3.726331],[-59.669768,3.730531],[-59.667568,3.732531],[-59.664568,3.733131],[-59.665968,3.736831],[-59.668168,3.740431],[-59.670368,3.743331],[-59.673168,3.744031],[-59.674668,3.747331],[-59.673168,3.751731],[-59.674168,3.755131],[-59.677868,3.755331],[-59.679668,3.757531],[-59.676368,3.760031],[-59.672868,3.761931],[-59.669968,3.766431],[-59.668668,3.771931],[-59.666168,3.775531],[-59.665368,3.778731],[-59.663968,3.782131],[-59.659468,3.782931],[-59.655368,3.785731],[-59.650968,3.785531],[-59.647568,3.787131],[-59.644068,3.786331],[-59.640668,3.784731],[-59.637968,3.786031],[-59.636268,3.790131],[-59.635668,3.793131],[-59.633468,3.795331],[-59.629868,3.798531],[-59.626368,3.796131],[-59.628068,3.793231],[-59.631268,3.792331],[-59.632468,3.789331],[-59.630068,3.785631],[-59.624768,3.790131],[-59.619368,3.791031],[-59.616868,3.793131],[-59.615068,3.797131],[-59.612868,3.801331],[-59.609668,3.804331],[-59.606068,3.801731],[-59.603468,3.796831],[-59.596768,3.794931],[-59.595668,3.799331],[-59.594868,3.802531],[-59.594068,3.805931],[-59.594868,3.808731],[-59.597568,3.811131],[-59.597868,3.814531],[-59.593368,3.814731],[-59.589768,3.816331],[-59.587968,3.819131],[-59.585168,3.823131],[-59.582668,3.819731],[-59.578968,3.816931],[-59.577868,3.821331],[-59.578168,3.825331],[-59.578168,3.830831],[-59.580768,3.833531],[-59.584368,3.833931],[-59.586468,3.836931],[-59.585868,3.841131],[-59.587568,3.844731],[-59.588368,3.847931],[-59.588968,3.852431],[-59.586968,3.857331],[-59.590468,3.858231],[-59.592968,3.860131],[-59.591268,3.864031],[-59.590168,3.867131],[-59.591168,3.869831],[-59.592568,3.872931],[-59.593668,3.877531],[-59.594168,3.881931],[-59.593368,3.884931],[-59.591268,3.887831],[-59.587968,3.889131],[-59.583768,3.888931],[-59.579668,3.890931],[-59.576068,3.890731],[-59.576068,3.896331],[-59.571368,3.892131],[-59.567768,3.891131],[-59.567768,3.895331],[-59.568268,3.898331],[-59.567368,3.901531],[-59.566868,3.905131],[-59.566268,3.909931],[-59.565468,3.915731],[-59.561568,3.920731],[-59.558368,3.920431],[-59.555268,3.919931],[-59.552168,3.919131],[-59.548568,3.919131],[-59.544968,3.920731],[-59.541968,3.922731],[-59.539868,3.925431],[-59.542268,3.928931],[-59.539768,3.931731],[-59.536668,3.929331],[-59.532768,3.926731],[-59.528168,3.924731],[-59.525368,3.927631],[-59.524268,3.932931],[-59.526268,3.937731],[-59.522668,3.941331],[-59.518768,3.943431],[-59.516768,3.946331],[-59.519268,3.947831],[-59.522168,3.951331],[-59.520168,3.954531],[-59.522168,3.958331],[-59.524368,3.961331],[-59.525868,3.964331],[-59.526568,3.968031],[-59.530368,3.969131],[-59.533768,3.971331],[-59.537768,3.971531],[-59.542068,3.971331],[-59.544568,3.973531],[-59.544768,3.977731],[-59.548068,3.978231],[-59.551968,3.979131],[-59.556568,3.979131],[-59.558568,3.976331],[-59.560468,3.973131],[-59.564168,3.971531],[-59.566268,3.968531],[-59.567468,3.965231],[-59.569668,3.968031],[-59.572368,3.969931],[-59.576768,3.968831],[-59.580668,3.968031],[-59.584268,3.969131],[-59.585968,3.972731],[-59.586168,3.975931],[-59.583468,3.979531],[-59.580768,3.982131],[-59.577568,3.984131],[-59.574968,3.985431],[-59.572468,3.987631],[-59.574268,3.991731],[-59.575968,3.994331],[-59.578268,3.996231],[-59.578968,3.999331],[-59.581168,4.002331],[-59.584268,4.002531],[-59.583968,3.998331],[-59.584868,3.994831],[-59.589468,3.995331],[-59.592268,3.998431],[-59.595968,4.001531],[-59.593668,4.005631],[-59.592068,4.009231],[-59.593368,4.013131],[-59.594568,4.017531],[-59.597868,4.015531],[-59.600368,4.011731],[-59.603168,4.008531],[-59.606068,4.007031],[-59.608868,4.009531],[-59.610268,4.012731],[-59.613068,4.015931],[-59.611368,4.018631],[-59.608568,4.016331],[-59.605268,4.014931],[-59.601168,4.017131],[-59.602368,4.019731],[-59.603068,4.023331],[-59.601968,4.027731],[-59.604768,4.031131],[-59.609268,4.032431],[-59.612568,4.033831],[-59.615368,4.035731],[-59.618368,4.037331],[-59.620168,4.040531],[-59.619368,4.044331],[-59.618068,4.048131],[-59.617968,4.051331],[-59.621168,4.053531],[-59.625768,4.053931],[-59.629068,4.052331],[-59.632068,4.054031],[-59.634868,4.055731],[-59.637468,4.058731],[-59.640168,4.061731],[-59.641468,4.064731],[-59.643268,4.067531],[-59.646468,4.067731],[-59.649768,4.068131],[-59.653768,4.071131],[-59.652368,4.074131],[-59.650368,4.076431],[-59.648668,4.078931],[-59.646868,4.082231],[-59.645668,4.084931],[-59.643968,4.088731],[-59.640668,4.092331],[-59.638568,4.095931],[-59.637368,4.098731],[-59.636068,4.101931],[-59.634568,4.104931],[-59.632768,4.108131],[-59.630968,4.112931],[-59.627368,4.116231],[-59.625568,4.119331],[-59.625568,4.122331],[-59.624468,4.126331],[-59.622168,4.130131],[-59.619768,4.131931],[-59.623368,4.134731],[-59.626968,4.137331],[-59.631368,4.138531],[-59.635168,4.141731],[-59.640068,4.143331],[-59.644868,4.144431],[-59.648768,4.145531],[-59.651768,4.145831],[-59.655868,4.146131],[-59.660868,4.146131],[-59.663868,4.145831],[-59.666668,4.144131],[-59.669968,4.145031],[-59.673368,4.146531],[-59.677768,4.146731],[-59.683068,4.146931],[-59.687968,4.149431],[-59.692668,4.151531],[-59.696368,4.153931],[-59.699068,4.156931],[-59.702168,4.160131],[-59.705768,4.160531],[-59.709368,4.161931],[-59.712868,4.163331],[-59.715068,4.166331],[-59.718368,4.166731],[-59.721768,4.165731],[-59.723368,4.169531],[-59.722268,4.172731],[-59.723668,4.175731],[-59.727368,4.178931],[-59.730668,4.181531],[-59.729768,4.184831],[-59.727568,4.187531],[-59.728968,4.192031],[-59.730868,4.196131],[-59.732768,4.199231],[-59.734368,4.203331],[-59.737168,4.208331],[-59.738668,4.212131],[-59.738368,4.216531],[-59.736368,4.220531],[-59.736068,4.224331],[-59.736368,4.228731],[-59.739368,4.231831],[-59.739068,4.235931],[-59.736768,4.239031],[-59.735068,4.241931],[-59.732868,4.243931],[-59.730668,4.246931],[-59.728368,4.249831],[-59.726468,4.252331],[-59.724568,4.254531],[-59.722868,4.257031],[-59.719868,4.259931],[-59.716168,4.264131],[-59.711468,4.266431],[-59.711768,4.270731],[-59.715068,4.272731],[-59.719268,4.274331],[-59.722668,4.271731],[-59.725068,4.269131],[-59.728868,4.268131],[-59.732068,4.270331],[-59.733568,4.274431],[-59.731368,4.277131],[-59.729468,4.279931],[-59.731768,4.282931],[-59.731968,4.286031],[-59.729168,4.288531],[-59.724168,4.293531],[-59.720968,4.296731],[-59.719068,4.301131],[-59.715968,4.304331],[-59.711468,4.306531],[-59.707568,4.305331],[-59.704568,4.307131],[-59.703268,4.310931],[-59.705468,4.315531],[-59.703568,4.319931],[-59.700668,4.323131],[-59.698268,4.325031],[-59.695968,4.328631],[-59.692968,4.332231],[-59.689368,4.335731],[-59.685468,4.338031],[-59.682168,4.340231],[-59.679068,4.342731],[-59.676868,4.348331],[-59.678568,4.352331],[-59.679168,4.355531],[-59.681968,4.357731],[-59.683268,4.360731],[-59.682968,4.364331],[-59.680468,4.367931],[-59.677268,4.369331],[-59.673368,4.370531],[-59.670368,4.372331],[-59.670068,4.375631],[-59.672568,4.377331],[-59.676868,4.380531],[-59.679768,4.382831],[-59.683668,4.384931],[-59.689068,4.382731],[-59.692168,4.380131],[-59.694968,4.381131],[-59.697968,4.383731],[-59.702068,4.386331],[-59.705168,4.388631],[-59.709368,4.390931],[-59.712268,4.393931],[-59.716168,4.396531],[-59.720268,4.397931],[-59.721468,4.400531],[-59.719768,4.404131],[-59.720868,4.408831],[-59.723668,4.411031],[-59.727368,4.410731],[-59.730568,4.415931],[-59.734468,4.421531],[-59.737568,4.423931],[-59.741468,4.422331],[-59.744468,4.422731],[-59.747668,4.421531],[-59.752168,4.420731],[-59.755768,4.421331],[-59.755968,4.424731],[-59.759168,4.428931],[-59.760968,4.432531],[-59.763868,4.434131],[-59.765768,4.436731],[-59.768468,4.438431],[-59.771768,4.438731],[-59.776468,4.440631],[-59.781168,4.441531],[-59.779468,4.444931],[-59.780868,4.448131],[-59.783468,4.450031],[-59.786668,4.447731],[-59.789868,4.446731],[-59.793668,4.447531],[-59.796068,4.450031],[-59.796168,4.453331],[-59.795768,4.456931],[-59.794168,4.463031],[-59.795668,4.465531],[-59.800568,4.466631],[-59.804168,4.466331],[-59.805468,4.463031],[-59.805868,4.459931],[-59.806868,4.453631],[-59.809168,4.450331],[-59.811868,4.447731],[-59.817668,4.447731],[-59.822668,4.448331],[-59.827868,4.449931],[-59.831768,4.452731],[-59.833268,4.457531],[-59.838968,4.455531],[-59.844468,4.454931],[-59.848468,4.453531],[-59.852368,4.455331],[-59.856068,4.455331],[-59.860568,4.452731],[-59.864468,4.454531],[-59.867768,4.457931],[-59.871368,4.461331],[-59.870168,4.466031],[-59.866668,4.469731],[-59.863568,4.471631],[-59.866668,4.474631],[-59.870268,4.476531],[-59.874468,4.478231],[-59.874868,4.481531],[-59.873068,4.484631],[-59.875768,4.486531],[-59.878068,4.483531],[-59.878068,4.480531],[-59.878768,4.477731],[-59.880468,4.475131],[-59.884268,4.475931],[-59.887668,4.477431],[-59.890968,4.478131],[-59.893968,4.477731],[-59.897968,4.478531],[-59.900068,4.476031],[-59.902368,4.469731],[-59.903768,4.466131],[-59.905468,4.461331],[-59.910268,4.460831],[-59.913068,4.462731],[-59.915668,4.466331],[-59.914568,4.470531],[-59.913068,4.474531],[-59.911968,4.477931],[-59.915668,4.478231],[-59.920268,4.479931],[-59.926568,4.479931],[-59.930568,4.481531],[-59.928268,4.485931],[-59.926168,4.489931],[-59.929768,4.492331],[-59.934868,4.494531],[-59.937768,4.499131],[-59.941968,4.497631],[-59.946268,4.498931],[-59.950668,4.499831],[-59.954268,4.502931],[-59.959268,4.504931],[-59.962868,4.507531],[-59.966568,4.508731],[-59.971668,4.507831],[-59.971468,4.503931],[-59.972268,4.500931],[-59.972368,4.496731],[-59.974168,4.493331],[-59.974868,4.489531],[-59.972568,4.484331],[-59.973068,4.481331],[-59.976368,4.482931],[-59.978968,4.485331],[-59.983568,4.487131],[-59.988268,4.485731],[-59.991468,4.486731],[-59.994368,4.488131],[-59.997768,4.491131],[-60.000168,4.493131],[-60.002368,4.495131],[-60.005568,4.495731],[-60.009168,4.495531],[-60.011368,4.493531],[-60.013968,4.490931],[-60.017868,4.489931],[-60.021568,4.492331],[-60.024768,4.494031],[-60.028468,4.492531],[-60.032568,4.490931],[-60.036668,4.490431],[-60.039768,4.491131],[-60.043168,4.492531],[-60.046168,4.494531],[-60.049768,4.494331],[-60.053068,4.494731],[-60.056568,4.495331],[-60.059468,4.495131],[-60.064068,4.495331],[-60.067768,4.493931],[-60.070968,4.493731],[-60.071568,4.497031],[-60.071068,4.500631],[-60.069868,4.503731],[-60.068468,4.507031],[-60.067668,4.512331],[-60.066568,4.516131],[-60.064368,4.518531],[-60.066668,4.523331],[-60.069868,4.524331],[-60.073268,4.524731],[-60.078468,4.523931],[-60.080068,4.520731],[-60.081768,4.517931],[-60.085668,4.517531],[-60.085868,4.520731],[-60.084868,4.523731],[-60.083268,4.527531],[-60.084368,4.531631],[-60.087368,4.533331],[-60.090668,4.532931],[-60.093668,4.528731],[-60.098468,4.528331],[-60.103368,4.527531],[-60.104768,4.523731],[-60.102768,4.521131],[-60.098968,4.518531],[-60.097668,4.514731],[-60.099168,4.511731],[-60.101768,4.508531],[-60.105268,4.506531],[-60.107568,4.504531],[-60.110868,4.505131],[-60.114168,4.504231],[-60.117668,4.502031],[-60.120868,4.501931],[-60.122668,4.504231],[-60.124068,4.506931],[-60.128768,4.508131],[-60.131668,4.510631],[-60.134968,4.512331],[-60.137968,4.514531],[-60.142968,4.513631],[-60.146868,4.512331],[-60.150068,4.511431],[-60.153168,4.512131],[-60.156968,4.513931],[-60.159568,4.516731],[-60.161368,4.519431],[-60.160568,4.522931],[-60.158468,4.525331],[-60.158368,4.528331],[-60.158768,4.532331],[-60.158068,4.536031],[-60.157368,4.539131],[-60.156168,4.541831],[-60.154468,4.544931],[-60.154468,4.549531],[-60.156568,4.552631],[-60.159768,4.554531],[-60.160968,4.557931],[-60.160168,4.561931],[-60.157768,4.565131],[-60.156968,4.571331],[-60.155468,4.574731],[-60.152868,4.575931],[-60.149468,4.574231],[-60.147968,4.569731],[-60.144268,4.566931],[-60.139968,4.566531],[-60.136268,4.565931],[-60.138468,4.570931],[-60.138568,4.575931],[-60.139668,4.579331],[-60.135968,4.580731],[-60.133068,4.578931],[-60.130268,4.577131],[-60.128068,4.575331],[-60.124468,4.576431],[-60.122968,4.579131],[-60.125468,4.582131],[-60.128068,4.585531],[-60.129168,4.589931],[-60.130268,4.593331],[-60.130668,4.596531],[-60.128768,4.600131],[-60.124368,4.604131],[-60.119768,4.604931],[-60.116468,4.604531],[-60.113668,4.602931],[-60.111068,4.604331],[-60.108068,4.607731],[-60.104468,4.607331],[-60.100368,4.604331],[-60.096168,4.604531],[-60.094068,4.606731],[-60.090068,4.605731],[-60.086468,4.608231],[-60.082968,4.612131],[-60.079668,4.613531],[-60.076868,4.615731],[-60.073968,4.615131],[-60.070968,4.616531],[-60.070668,4.620731],[-60.072968,4.624331],[-60.074068,4.628331],[-60.075168,4.631731],[-60.074568,4.636331],[-60.070268,4.638531],[-60.069568,4.643131],[-60.070668,4.646531],[-60.072468,4.649731],[-60.075768,4.649131],[-60.075968,4.653331],[-60.074268,4.656931],[-60.072468,4.659331],[-60.070568,4.662131],[-60.068268,4.664931],[-60.065168,4.668131],[-60.062268,4.671331],[-60.060868,4.673931],[-60.058568,4.677631],[-60.054468,4.679731],[-60.053068,4.682931],[-60.050068,4.686231],[-60.046468,4.689131],[-60.044168,4.691331],[-60.041668,4.695131],[-60.037068,4.696731],[-60.032668,4.698931],[-60.030168,4.702531],[-60.027968,4.704531],[-60.025668,4.706331],[-60.026168,4.709431],[-60.026968,4.713031],[-60.029868,4.714931],[-60.032568,4.717331],[-60.035568,4.719131],[-60.037568,4.722131],[-60.038368,4.725931],[-60.036668,4.729631],[-60.035568,4.732531],[-60.033468,4.734631],[-60.030168,4.735931],[-60.027668,4.738531],[-60.025968,4.741931],[-60.025368,4.744831],[-60.024568,4.748931],[-60.024868,4.752331],[-60.025068,4.755631],[-60.024768,4.759731],[-60.026468,4.764131],[-60.026468,4.767531],[-60.025168,4.771131],[-60.023768,4.773931],[-60.023468,4.776931],[-60.022568,4.779731],[-60.022268,4.783031],[-60.026568,4.785531],[-60.029268,4.787431],[-60.033668,4.788331],[-60.035868,4.790531],[-60.035568,4.794331],[-60.034168,4.798231],[-60.034168,4.802931],[-60.030168,4.807631],[-60.025168,4.809831],[-60.022268,4.812531],[-60.024368,4.815131],[-60.027868,4.819231],[-60.026568,4.823531],[-60.025468,4.827731],[-60.025368,4.831731],[-60.022868,4.833931],[-60.018668,4.836331],[-60.016868,4.838531],[-60.014568,4.841531],[-60.013268,4.844131],[-60.013168,4.848831],[-60.011468,4.852931],[-60.010768,4.857331],[-60.009168,4.861831],[-60.009168,4.864931],[-60.010268,4.868931],[-60.009968,4.873331],[-60.006568,4.877031],[-60.005168,4.881731],[-60.005268,4.885531],[-60.006568,4.888531],[-60.005568,4.891731],[-60.005168,4.895031],[-60.004068,4.900131],[-60.001668,4.905531],[-60.002368,4.909731],[-60.002168,4.913531],[-60.001668,4.916731],[-59.998868,4.918731],[-59.998068,4.921831],[-59.998068,4.924931],[-59.997968,4.928331],[-59.996568,4.931731],[-59.993668,4.934331],[-59.992468,4.937531],[-59.994068,4.940131],[-59.994168,4.944731],[-59.993268,4.949931],[-59.990068,4.949931],[-59.989668,4.953531],[-59.990468,4.956331],[-59.991668,4.959431],[-59.992268,4.962731],[-59.993868,4.965131],[-59.991568,4.968831],[-59.989368,4.971931],[-59.987568,4.974331],[-59.986968,4.977731],[-59.990068,4.983731],[-59.989468,4.987631],[-59.987468,4.991331],[-59.987868,4.997331],[-59.988868,5.001931],[-59.986868,5.006531],[-59.985268,5.009131],[-59.985268,5.012331],[-59.984968,5.017231],[-59.980668,5.016431],[-59.978068,5.019131],[-59.977568,5.022931],[-59.976668,5.026631],[-59.975268,5.030531],[-59.977468,5.033731],[-59.977568,5.038531],[-59.978068,5.042331],[-59.976968,5.045931],[-59.975568,5.049531],[-59.977468,5.053531],[-59.975068,5.056231],[-59.972368,5.058931],[-59.970668,5.062731],[-59.971668,5.066731],[-59.971368,5.070531],[-59.971668,5.073531],[-59.973368,5.076431],[-59.976768,5.078931],[-59.981168,5.080531],[-59.984968,5.082931],[-59.989368,5.084131],[-59.993668,5.085531],[-59.997668,5.083531],[-60.000768,5.083131],[-60.004368,5.084131],[-60.008068,5.086131],[-60.011068,5.087731],[-60.013568,5.089331],[-60.017868,5.090531],[-60.021468,5.092931],[-60.025368,5.096531],[-60.028368,5.100231],[-60.030868,5.102731],[-60.033368,5.105131],[-60.036768,5.108231],[-60.041768,5.106731],[-60.045668,5.107931],[-60.044268,5.110931],[-60.048268,5.113431],[-60.051668,5.118131],[-60.052268,5.122631],[-60.056068,5.123931],[-60.057968,5.126131],[-60.059468,5.130331],[-60.061568,5.133931],[-60.065268,5.137731],[-60.071568,5.137731],[-60.077068,5.138131],[-60.080968,5.139331],[-60.083768,5.141331],[-60.090968,5.141331],[-60.094868,5.140531],[-60.096368,5.143931],[-60.098468,5.146131],[-60.098368,5.149331],[-60.099468,5.153531],[-60.101368,5.160931],[-60.102468,5.171131],[-60.103868,5.175331],[-60.104268,5.180431],[-60.106768,5.194131],[-60.109968,5.198931],[-60.116068,5.203931],[-60.120168,5.207531],[-60.124368,5.212731],[-60.125768,5.217131],[-60.127368,5.219531],[-60.130668,5.222131],[-60.133068,5.225931],[-60.134068,5.229931],[-60.134168,5.234931],[-60.135468,5.243531],[-60.135668,5.248731],[-60.138868,5.248331],[-60.147668,5.241131],[-60.150668,5.238931],[-60.154068,5.235731],[-60.156268,5.233131],[-60.159468,5.231331],[-60.162768,5.230331],[-60.165668,5.230331],[-60.171668,5.226731],[-60.177968,5.229631],[-60.182168,5.230731],[-60.187668,5.232731],[-60.194168,5.237331],[-60.195568,5.241131],[-60.192768,5.251331],[-60.196868,5.257031],[-60.198268,5.260531],[-60.201268,5.265531],[-60.205168,5.267931],[-60.211468,5.271131],[-60.218168,5.270031],[-60.220968,5.268931],[-60.228068,5.263731],[-60.233868,5.263131],[-60.246868,5.251731],[-60.249668,5.251131],[-60.253468,5.251731],[-60.257168,5.251931],[-60.264068,5.251131],[-60.267068,5.247931],[-60.269868,5.243531],[-60.270468,5.239531],[-60.270968,5.234331],[-60.277968,5.233931],[-60.282368,5.229531],[-60.285668,5.229131],[-60.289868,5.228231],[-60.295268,5.229531],[-60.298968,5.228231],[-60.301868,5.227731],[-60.305268,5.225931],[-60.309368,5.219131],[-60.311068,5.213531],[-60.313468,5.210531],[-60.319168,5.208331],[-60.323468,5.207131],[-60.327668,5.205731],[-60.333168,5.207531],[-60.336568,5.207931],[-60.344868,5.204931],[-60.349468,5.205331],[-60.352768,5.208531],[-60.356068,5.209731],[-60.359668,5.209131],[-60.361468,5.206331],[-60.363868,5.204731],[-60.367968,5.204731],[-60.371068,5.207531],[-60.370868,5.212931],[-60.373368,5.216131],[-60.378268,5.217531],[-60.380968,5.220731],[-60.384568,5.221531],[-60.386768,5.219731],[-60.390168,5.218731],[-60.394068,5.216931],[-60.398468,5.215531],[-60.401268,5.213931],[-60.405868,5.211331],[-60.410968,5.213931],[-60.413868,5.213031],[-60.418068,5.205731],[-60.418568,5.194531],[-60.427568,5.188931],[-60.430468,5.184331],[-60.433668,5.181531],[-60.445268,5.183431],[-60.449868,5.188931],[-60.449568,5.197131],[-60.449968,5.200931],[-60.452668,5.203131],[-60.455968,5.203131],[-60.462568,5.199531],[-60.465668,5.200031],[-60.467968,5.202531],[-60.471268,5.202531],[-60.474568,5.200731],[-60.478068,5.202131],[-60.481068,5.202531],[-60.485768,5.202731],[-60.489068,5.202131],[-60.494768,5.202831],[-60.500468,5.202731],[-60.504368,5.204531],[-60.509668,5.206331],[-60.515168,5.207131],[-60.519068,5.207931],[-60.523468,5.207131],[-60.528368,5.207931],[-60.533368,5.205531],[-60.536668,5.203531],[-60.540568,5.201731],[-60.542768,5.197831],[-60.546468,5.194531],[-60.551168,5.194931],[-60.555168,5.195331],[-60.558768,5.195331],[-60.564568,5.196331],[-60.570268,5.195931],[-60.577068,5.197831],[-60.587368,5.205531],[-60.590968,5.208331],[-60.591268,5.212731],[-60.592568,5.218031],[-60.594868,5.219731],[-60.598868,5.220131],[-60.602568,5.215831],[-60.608368,5.215231],[-60.613668,5.218031],[-60.617168,5.218031],[-60.621268,5.216131],[-60.625568,5.215231],[-60.629168,5.216931],[-60.634168,5.219531],[-60.639268,5.220231],[-60.644068,5.224931],[-60.647368,5.228531],[-60.651468,5.230531],[-60.656268,5.227731],[-60.659868,5.226931],[-60.665268,5.227731],[-60.675468,5.231831],[-60.679968,5.232131],[-60.687368,5.230731],[-60.691268,5.229331],[-60.697168,5.228931],[-60.699868,5.227131],[-60.702968,5.224931],[-60.704868,5.222431],[-60.708168,5.219331],[-60.712968,5.217731],[-60.716668,5.218331],[-60.719868,5.219731],[-60.723168,5.219931],[-60.724968,5.216631],[-60.727068,5.213931],[-60.728868,5.210331],[-60.732168,5.205731],[-60.735168,5.202531],[-60.732768,5.199731],[-60.728068,5.201131],[-60.725268,5.198531],[-60.722068,5.196431],[-60.718168,5.195631],[-60.710668,5.197131],[-60.705168,5.195331],[-60.701568,5.194231],[-60.698768,5.194931],[-60.694668,5.197131],[-60.691568,5.195531],[-60.686668,5.194231],[-60.683768,5.191331],[-60.680768,5.188731],[-60.680168,5.184131],[-60.680468,5.179531],[-60.678668,5.176131],[-60.674368,5.175431],[-60.668368,5.169331],[-60.661168,5.163831],[-60.659168,5.159531],[-60.656968,5.156131],[-60.656568,5.152131],[-60.655868,5.149131],[-60.655968,5.144931],[-60.656568,5.140931],[-60.657668,5.137531],[-60.658368,5.133931],[-60.657368,5.129131],[-60.655868,5.126331],[-60.655168,5.117531],[-60.654068,5.114331],[-60.651268,5.117131],[-60.648768,5.119031],[-60.645768,5.118331],[-60.642568,5.117331],[-60.640768,5.109631],[-60.643268,5.102731],[-60.644668,5.098731],[-60.644368,5.095731],[-60.642468,5.091131],[-60.640768,5.081531],[-60.642668,5.078531],[-60.642568,5.074731],[-60.641768,5.069531],[-60.642868,5.066331],[-60.644368,5.062931],[-60.644568,5.057631],[-60.642668,5.054731],[-60.638268,5.051331],[-60.632168,5.049331],[-60.630168,5.045731],[-60.628068,5.042931],[-60.627668,5.036531],[-60.625968,5.031131],[-60.623068,5.026131],[-60.619668,5.022531],[-60.616868,5.019331],[-60.612168,5.015931],[-60.613568,5.009531],[-60.612168,5.006531],[-60.608968,5.004531],[-60.603868,5.003431],[-60.599568,4.999131],[-60.598068,4.996231],[-60.596268,4.992531],[-60.594568,4.987131],[-60.593468,4.982131],[-60.593168,4.973831],[-60.592668,4.970731],[-60.590168,4.967131],[-60.586268,4.959431],[-60.584368,4.956731],[-60.584368,4.952131],[-60.588468,4.946331],[-60.589568,4.942731],[-60.589868,4.939731],[-60.589868,4.931131],[-60.591968,4.926831],[-60.594868,4.926331],[-60.598168,4.926331],[-60.603868,4.925331],[-60.608868,4.923131],[-60.612468,4.919631],[-60.616068,4.918131],[-60.618868,4.913831],[-60.621868,4.909531],[-60.624068,4.907131],[-60.625768,4.904131],[-60.625568,4.896531],[-60.628068,4.891931],[-60.629468,4.888631],[-60.632968,4.888131],[-60.639568,4.886331],[-60.644268,4.885031],[-60.647668,4.884931],[-60.652368,4.882831],[-60.652968,4.878331],[-60.651568,4.874731],[-60.649068,4.872631],[-60.649068,4.868131],[-60.653168,4.866931],[-60.656268,4.865331],[-60.659868,4.856031],[-60.659268,4.852331],[-60.659868,4.848831],[-60.663168,4.847731],[-60.666068,4.844531],[-60.668568,4.842731],[-60.673068,4.839931],[-60.674968,4.835531],[-60.675768,4.832131],[-60.680568,4.830031],[-60.685868,4.826331],[-60.687368,4.823331],[-60.687368,4.819731],[-60.692168,4.814231],[-60.695968,4.810531],[-60.699568,4.810531],[-60.705168,4.809731],[-60.712368,4.804731],[-60.716568,4.801331],[-60.719568,4.799731],[-60.721968,4.794931],[-60.724468,4.791731],[-60.726668,4.788731],[-60.724568,4.784531],[-60.721968,4.781531],[-60.721168,4.777931],[-60.723468,4.775831],[-60.725868,4.774131],[-60.729168,4.772731],[-60.733068,4.772531],[-60.735868,4.771531],[-60.738368,4.770031],[-60.740568,4.766331],[-60.742168,4.762531],[-60.744468,4.760331],[-60.747168,4.759131],[-60.749668,4.756331],[-60.751868,4.753931],[-60.755268,4.753731],[-60.758768,4.755531],[-60.761868,4.757831],[-60.765668,4.757731],[-60.769068,4.755631],[-60.772368,4.753431],[-60.776268,4.752531],[-60.780868,4.752931],[-60.784868,4.753731],[-60.789168,4.751931],[-60.791168,4.749131],[-60.794268,4.748431],[-60.798568,4.750331],[-60.803268,4.747931],[-60.806568,4.747631],[-60.808568,4.745531],[-60.810168,4.742531],[-60.811868,4.737631],[-60.813268,4.733531],[-60.814468,4.730131],[-60.816868,4.727331],[-60.820668,4.725531],[-60.826068,4.725531],[-60.830068,4.727931],[-60.834568,4.726331],[-60.834368,4.722331],[-60.837268,4.720131],[-60.837968,4.717131],[-60.840168,4.713731],[-60.843668,4.712231],[-60.846468,4.711131],[-60.848168,4.708131],[-60.850068,4.704731],[-60.852568,4.703131],[-60.856068,4.703931],[-60.858668,4.705731],[-60.862468,4.706531],[-60.866868,4.708131],[-60.870768,4.709431],[-60.873068,4.711931],[-60.875768,4.715131],[-60.878768,4.715531],[-60.880968,4.713531],[-60.883768,4.713031],[-60.887068,4.715731],[-60.891768,4.716931],[-60.896168,4.717131],[-60.899868,4.717531],[-60.902868,4.714431],[-60.904568,4.711131],[-60.907368,4.708931],[-60.909568,4.704331],[-60.912268,4.699731],[-60.912368,4.696131],[-60.911268,4.691931],[-60.910168,4.688431],[-60.911968,4.685931],[-60.912368,4.682331],[-60.913068,4.678731],[-60.914768,4.674531],[-60.915968,4.670931],[-60.917768,4.666831],[-60.919768,4.663531],[-60.922868,4.662331],[-60.927168,4.662131],[-60.931168,4.661031],[-60.933268,4.658331],[-60.935768,4.656131],[-60.940568,4.655931],[-60.944568,4.655731],[-60.947968,4.654131],[-60.948468,4.650331],[-60.948968,4.647231],[-60.950668,4.643931],[-60.950368,4.640331],[-60.949868,4.637331],[-60.946768,4.636931],[-60.943068,4.635331],[-60.939368,4.633731],[-60.938768,4.628731],[-60.937268,4.624531],[-60.935468,4.621931],[-60.933868,4.619531],[-60.933368,4.616231],[-60.934868,4.612931],[-60.936268,4.608231],[-60.937168,4.604131],[-60.937468,4.598731],[-60.936068,4.594131],[-60.934768,4.589131],[-60.932968,4.585331],[-60.936668,4.582731],[-60.940168,4.580031],[-60.943068,4.580731],[-60.946868,4.580031],[-60.950368,4.580731],[-60.953168,4.582531],[-60.956468,4.581131],[-60.956868,4.577531],[-60.955168,4.573531],[-60.954868,4.569131],[-60.954568,4.565331],[-60.953268,4.561931],[-60.953568,4.558731],[-60.956268,4.557131],[-60.957668,4.553531],[-60.958268,4.549331],[-60.957968,4.545731],[-60.960868,4.544631],[-60.963968,4.543731],[-60.967568,4.543231],[-60.970968,4.543131],[-60.974468,4.542431],[-60.978068,4.541731],[-60.981668,4.542131],[-60.984968,4.541831],[-60.986168,4.537931],[-60.987168,4.533031],[-60.990368,4.532931],[-60.993368,4.532431],[-60.996368,4.528931],[-60.996668,4.525831],[-60.993668,4.522931],[-60.994668,4.519331],[-60.998068,4.516731],[-61.001668,4.517731],[-61.005768,4.518331],[-61.010368,4.517931],[-61.014068,4.515331],[-61.017468,4.515931],[-61.018968,4.518531],[-61.022868,4.520031],[-61.027268,4.520031],[-61.031468,4.520031],[-61.034568,4.521531],[-61.037468,4.521531],[-61.040668,4.522731],[-61.044268,4.522931],[-61.047868,4.523531],[-61.051368,4.523731],[-61.055868,4.523031],[-61.060868,4.523531],[-61.065168,4.522931],[-61.068768,4.520731],[-61.072368,4.518631],[-61.075668,4.517531],[-61.078768,4.518131],[-61.082868,4.517931],[-61.085668,4.518531],[-61.088268,4.520731],[-61.090968,4.523031],[-61.094568,4.521331],[-61.096268,4.517531],[-61.100268,4.517231],[-61.102768,4.515031],[-61.105068,4.512531],[-61.108568,4.510631],[-61.112468,4.510331],[-61.116368,4.508731],[-61.119368,4.506331],[-61.122368,4.505931],[-61.125768,4.504531],[-61.127168,4.500131],[-61.130668,4.498331],[-61.133468,4.496131],[-61.134168,4.493331],[-61.135268,4.490131],[-61.139068,4.489031],[-61.142368,4.486131],[-61.144668,4.483231],[-61.146468,4.481031],[-61.149568,4.484931],[-61.150768,4.490731],[-61.151568,4.494831],[-61.155168,4.495531],[-61.159568,4.495931],[-61.163368,4.497631],[-61.165668,4.501931],[-61.170068,4.502031],[-61.172868,4.506131],[-61.175068,4.508931],[-61.177168,4.511931],[-61.181168,4.513631],[-61.183868,4.515331],[-61.186568,4.516931],[-61.188468,4.520031],[-61.192668,4.520531],[-61.196068,4.518631],[-61.199568,4.516131],[-61.203568,4.517931],[-61.205768,4.520831],[-61.208668,4.522731],[-61.211168,4.525831],[-61.214468,4.528031],[-61.216768,4.531631],[-61.219568,4.530531],[-61.220868,4.526631],[-61.221768,4.522931],[-61.225368,4.524331],[-61.228668,4.525731],[-61.233068,4.527131],[-61.238368,4.528331],[-61.242568,4.531931],[-61.246568,4.533031],[-61.248768,4.530731],[-61.251668,4.526331],[-61.254468,4.529331],[-61.255168,4.533331],[-61.257768,4.536731],[-61.262368,4.536531],[-61.265768,4.537431],[-61.268968,4.539331],[-61.270068,4.535131],[-61.271168,4.532331],[-61.273468,4.529731],[-61.276568,4.528531],[-61.278668,4.531131],[-61.281168,4.534531],[-61.285568,4.537131],[-61.291368,4.535531],[-61.295868,4.537331],[-61.298968,4.536031],[-61.302568,4.537431],[-61.305268,4.540331],[-61.306668,4.537431],[-61.309668,4.536031],[-61.313068,4.535531],[-61.316268,4.534331],[-61.322168,4.534931],[-61.324968,4.533531],[-61.325268,4.529331],[-61.327368,4.525731],[-61.329568,4.520531],[-61.328968,4.517531],[-61.327168,4.514531],[-61.324868,4.512531],[-61.322368,4.509231],[-61.322468,4.504131],[-61.319268,4.502731],[-61.313468,4.504231],[-61.310468,4.502331],[-61.308368,4.499531],[-61.306168,4.496131],[-61.302468,4.493731],[-61.296468,4.492631],[-61.295668,4.487731],[-61.296068,4.481731],[-61.293868,4.479931],[-61.290568,4.478131],[-61.285968,4.478731],[-61.280168,4.479131],[-61.279468,4.474931],[-61.279468,4.470231],[-61.281268,4.467131],[-61.287068,4.463731],[-61.289168,4.457731],[-61.294768,4.457931],[-61.298568,4.458531],[-61.302468,4.456531],[-61.305468,4.459131],[-61.309768,4.458131],[-61.313468,4.456531],[-61.314368,4.451131],[-61.316868,4.449731],[-61.320168,4.446331],[-61.323468,4.445631],[-61.324868,4.441531],[-61.322068,4.437731],[-61.321268,4.434331],[-61.321568,4.430331],[-61.326068,4.429831],[-61.332268,4.428331],[-61.337568,4.427631],[-61.338468,4.424731],[-61.338468,4.420731],[-61.341568,4.419631],[-61.344868,4.419131],[-61.349468,4.419131],[-61.352568,4.419331],[-61.356368,4.420331],[-61.362468,4.422531],[-61.366868,4.424731],[-61.371968,4.426731],[-61.376868,4.425731],[-61.380168,4.426731],[-61.383168,4.426331],[-61.387468,4.425731],[-61.391868,4.424331],[-61.400768,4.425731],[-61.405168,4.425431],[-61.407768,4.429531],[-61.414168,4.432131],[-61.418068,4.431731],[-61.423368,4.433131],[-61.426968,4.430931],[-61.427868,4.426331],[-61.431168,4.426331],[-61.436068,4.424931],[-61.440168,4.424331],[-61.441568,4.427131],[-61.437968,4.429831],[-61.436568,4.433331],[-61.439868,4.436131],[-61.442968,4.435931],[-61.445968,4.435331],[-61.449268,4.438731],[-61.453568,4.437731],[-61.456868,4.435731],[-61.461968,4.435531],[-61.462668,4.432131],[-61.462568,4.428331],[-61.466668,4.424331],[-61.471668,4.424531],[-61.474968,4.421331],[-61.477768,4.417931],[-61.481668,4.415331],[-61.487568,4.410531],[-61.495168,4.410231],[-61.499368,4.407731],[-61.503068,4.408331],[-61.506868,4.408331],[-61.510468,4.407131],[-61.513468,4.405531],[-61.513768,4.402531],[-61.517168,4.398731],[-61.516668,4.393731],[-61.515768,4.389731],[-61.520468,4.385331],[-61.520168,4.381131],[-61.519568,4.377531],[-61.521868,4.372631],[-61.520668,4.367531],[-61.520168,4.363931],[-61.520768,4.360731],[-61.519268,4.355331],[-61.517168,4.349531],[-61.521168,4.346931],[-61.525068,4.346931],[-61.526768,4.342931],[-61.525368,4.337931],[-61.522368,4.335831],[-61.520968,4.332731],[-61.521168,4.326431],[-61.516568,4.324131],[-61.513468,4.323531],[-61.508168,4.320631],[-61.510168,4.316131],[-61.512168,4.312931],[-61.512968,4.309331],[-61.515968,4.307631],[-61.517068,4.304731],[-61.520168,4.299931],[-61.524368,4.297731],[-61.526168,4.294531],[-61.524568,4.291731],[-61.524068,4.288331],[-61.531068,4.285431],[-61.538468,4.276331],[-61.541768,4.272731],[-61.544968,4.270331],[-61.548568,4.267931],[-61.552568,4.266131],[-61.554668,4.262331],[-61.555468,4.257031],[-61.558268,4.253431],[-61.562668,4.251131],[-61.567668,4.251731],[-61.572168,4.250631],[-61.575168,4.249131],[-61.578568,4.246731],[-61.583968,4.246531],[-61.587668,4.244031],[-61.591568,4.244531],[-61.595168,4.246931],[-61.599168,4.248331],[-61.601368,4.250531],[-61.604668,4.258331],[-61.608268,4.261131],[-61.614968,4.257831],[-61.616568,4.255331],[-61.623268,4.250931],[-61.627068,4.253331],[-61.630168,4.244831],[-61.631868,4.241131],[-61.635968,4.238231],[-61.638768,4.237531],[-61.642368,4.238131],[-61.644568,4.241231],[-61.645468,4.244731],[-61.644668,4.248331],[-61.646268,4.251931],[-61.648768,4.253331],[-61.652968,4.253931],[-61.656268,4.256331],[-61.657068,4.260631],[-61.665268,4.262531],[-61.670768,4.262531],[-61.673568,4.261331],[-61.676168,4.257831],[-61.680868,4.254231],[-61.684868,4.256331],[-61.688368,4.255631],[-61.693268,4.253931],[-61.697368,4.254931],[-61.703468,4.254731],[-61.706568,4.252731],[-61.710968,4.250331],[-61.715468,4.247931],[-61.720568,4.244831],[-61.724768,4.244831],[-61.730568,4.250131],[-61.730268,4.254531],[-61.725568,4.257531],[-61.723168,4.260331],[-61.723368,4.268531],[-61.726968,4.267931],[-61.732468,4.264731],[-61.736168,4.262531],[-61.736368,4.259231],[-61.738268,4.256531],[-61.742468,4.255531],[-61.749168,4.255531],[-61.754668,4.253431],[-61.758068,4.252331],[-61.761568,4.250631],[-61.765168,4.250531],[-61.769068,4.248331],[-61.772268,4.248931],[-61.775368,4.247931],[-61.772868,4.244331],[-61.771568,4.241731],[-61.769868,4.239331],[-61.766768,4.236531],[-61.763768,4.234931],[-61.765168,4.231531],[-61.769268,4.228731],[-61.774068,4.227331],[-61.777968,4.225731],[-61.782668,4.224131],[-61.785968,4.224631],[-61.786368,4.227731],[-61.787368,4.230731],[-61.790568,4.231031],[-61.796468,4.229131],[-61.802468,4.227331],[-61.801068,4.222731],[-61.801868,4.218331],[-61.806568,4.216331],[-61.807568,4.212931],[-61.807168,4.209731],[-61.808368,4.203531],[-61.814868,4.199931],[-61.819668,4.199731],[-61.819068,4.194931],[-61.817368,4.192531],[-61.815768,4.188431],[-61.816868,4.185531],[-61.816668,4.181531],[-61.818268,4.175731],[-61.818468,4.169131],[-61.823468,4.164131],[-61.832168,4.161331],[-61.836868,4.160231],[-61.840868,4.162731],[-61.845568,4.164131],[-61.848968,4.167931],[-61.849968,4.171731],[-61.852068,4.174031],[-61.858268,4.171731],[-61.861468,4.171131],[-61.870468,4.172531],[-61.874868,4.170331],[-61.874068,4.165731],[-61.872668,4.161931],[-61.870468,4.157431],[-61.872968,4.152531],[-61.877668,4.154131],[-61.881668,4.154931],[-61.886568,4.153531],[-61.890668,4.155531],[-61.895468,4.158531],[-61.898968,4.160531],[-61.903368,4.159531],[-61.907268,4.157331],[-61.912068,4.157731],[-61.915668,4.156331],[-61.919268,4.156331],[-61.923368,4.154931],[-61.921468,4.151331],[-61.921468,4.147931],[-61.923868,4.145831],[-61.924368,4.142131],[-61.924368,4.136431],[-61.925068,4.131731],[-61.925768,4.127031],[-61.926868,4.124331],[-61.926868,4.120531],[-61.930468,4.116231],[-61.931068,4.111831],[-61.928568,4.108231],[-61.930768,4.103231],[-61.934668,4.104531],[-61.939068,4.107131],[-61.942668,4.109131],[-61.945968,4.111831],[-61.947968,4.116231],[-61.948168,4.120531],[-61.950768,4.125531],[-61.954868,4.128431],[-61.959068,4.134731],[-61.960168,4.137731],[-61.963468,4.141731],[-61.971168,4.147731],[-61.975268,4.151131],[-61.976968,4.154431],[-61.978068,4.158731],[-61.981068,4.161931],[-61.980368,4.166331],[-61.982868,4.171731],[-61.981768,4.176331],[-61.981368,4.179831],[-61.987168,4.178531],[-61.990768,4.176331],[-61.993268,4.174931],[-61.998568,4.168131],[-61.999868,4.164631],[-62.004168,4.164931],[-62.007168,4.162431],[-62.008468,4.158531],[-62.011568,4.156131],[-62.014668,4.155531],[-62.018768,4.155231],[-62.021868,4.157131],[-62.023768,4.154931],[-62.026268,4.151131],[-62.029068,4.150131],[-62.031968,4.151931],[-62.033368,4.154731],[-62.033768,4.157931],[-62.038168,4.156331],[-62.041768,4.156131],[-62.045768,4.153331],[-62.048268,4.150331],[-62.051068,4.150831],[-62.055068,4.152531],[-62.062668,4.157431],[-62.066268,4.157431],[-62.069868,4.156331],[-62.076868,4.153331],[-62.078168,4.148731],[-62.080668,4.143631],[-62.078168,4.137531],[-62.075968,4.134131],[-62.073268,4.132531],[-62.070968,4.129531],[-62.072368,4.124831],[-62.075968,4.121931],[-62.078468,4.119531],[-62.082568,4.121231],[-62.088468,4.124131],[-62.090168,4.128331],[-62.097068,4.127531],[-62.099468,4.123731],[-62.099468,4.119531],[-62.103168,4.117631],[-62.106168,4.115131],[-62.110668,4.117131],[-62.114068,4.116931],[-62.118268,4.116731],[-62.117168,4.111831],[-62.116868,4.107731],[-62.117268,4.104531],[-62.113268,4.100931],[-62.115368,4.097331],[-62.113668,4.094731],[-62.112268,4.091331],[-62.116168,4.088331],[-62.121268,4.088531],[-62.126068,4.088331],[-62.127968,4.085731],[-62.133268,4.087131],[-62.136368,4.085131],[-62.140168,4.083331],[-62.142668,4.081331],[-62.143268,4.077731],[-62.144668,4.074731],[-62.147868,4.078531],[-62.156568,4.083931],[-62.159868,4.084931],[-62.161668,4.087131],[-62.161968,4.090531],[-62.166068,4.091331],[-62.171468,4.092131],[-62.176668,4.090231],[-62.179668,4.091131],[-62.190968,4.096631],[-62.193868,4.099331],[-62.193768,4.106531],[-62.194268,4.111331],[-62.197968,4.112931],[-62.205768,4.110931],[-62.209868,4.111331],[-62.214268,4.109531],[-62.217668,4.111131],[-62.220568,4.112131],[-62.224468,4.111731],[-62.228568,4.112631],[-62.230568,4.116531],[-62.234968,4.118331],[-62.240068,4.117931],[-62.244068,4.116931],[-62.246868,4.118131],[-62.248368,4.121931],[-62.248768,4.126131],[-62.252068,4.128731],[-62.257368,4.127731],[-62.260968,4.127931],[-62.265068,4.129931],[-62.270168,4.131131],[-62.275468,4.129231],[-62.278768,4.129531],[-62.281968,4.131731],[-62.284868,4.133531],[-62.286968,4.136131],[-62.288868,4.139731],[-62.293168,4.141331],[-62.296368,4.140531],[-62.299368,4.138331],[-62.303568,4.136431],[-62.307168,4.137731],[-62.315168,4.137131],[-62.318768,4.140731],[-62.321668,4.140531],[-62.324368,4.139331],[-62.326268,4.136431],[-62.328468,4.134531],[-62.332668,4.136931],[-62.336268,4.138931],[-62.338468,4.143931],[-62.341968,4.146931],[-62.347268,4.149331],[-62.350668,4.151931],[-62.352868,4.157331],[-62.353668,4.164331],[-62.357468,4.166331],[-62.362568,4.166331],[-62.365068,4.163131],[-62.369068,4.162731],[-62.374368,4.164931],[-62.377168,4.166731],[-62.383468,4.173131],[-62.387168,4.174931],[-62.389068,4.177531],[-62.393968,4.173531],[-62.398668,4.175431],[-62.400968,4.178131],[-62.406268,4.179831],[-62.410268,4.180331],[-62.414968,4.181531],[-62.417768,4.184331],[-62.422168,4.181731],[-62.425068,4.182531],[-62.429068,4.181931],[-62.432668,4.182531],[-62.435468,4.183131],[-62.438868,4.182331],[-62.445968,4.179331],[-62.448768,4.174331],[-62.453968,4.173931],[-62.458168,4.176831],[-62.462868,4.177631],[-62.464868,4.173731],[-62.466568,4.169931],[-62.468368,4.166731],[-62.470568,4.163531],[-62.466968,4.162431],[-62.462268,4.162731],[-62.455668,4.156931],[-62.459368,4.153331],[-62.462868,4.150731],[-62.463468,4.145831],[-62.461168,4.142131],[-62.464568,4.138931],[-62.470168,4.139131],[-62.474268,4.135931],[-62.476368,4.132531],[-62.480368,4.131131],[-62.488568,4.134231],[-62.490068,4.137831],[-62.491668,4.140931],[-62.495468,4.142531],[-62.498768,4.142531],[-62.502968,4.140531],[-62.507168,4.137131],[-62.507068,4.134131],[-62.506268,4.131131],[-62.507468,4.127531],[-62.510968,4.127331],[-62.514068,4.129731],[-62.518268,4.130531],[-62.522968,4.133131],[-62.527668,4.134731],[-62.530968,4.136331],[-62.531968,4.133531],[-62.528668,4.130631],[-62.525468,4.128131],[-62.522368,4.122331],[-62.524768,4.116231],[-62.531268,4.114031],[-62.535168,4.113531],[-62.541068,4.110931],[-62.544568,4.109331],[-62.549268,4.109331],[-62.552168,4.108231],[-62.550568,4.104531],[-62.547168,4.101031],[-62.544968,4.098831],[-62.547768,4.096531],[-62.551568,4.093331],[-62.551668,4.090131],[-62.552168,4.086131],[-62.554068,4.082131],[-62.557968,4.080031],[-62.555768,4.078131],[-62.550768,4.077531],[-62.546868,4.077531],[-62.542768,4.079331],[-62.540368,4.075331],[-62.542868,4.069931],[-62.544168,4.066731],[-62.543068,4.060931],[-62.540668,4.057931],[-62.536968,4.053531],[-62.533968,4.050331],[-62.533068,4.046831],[-62.535668,4.044931],[-62.538168,4.043231],[-62.541368,4.043931],[-62.548168,4.045131],[-62.552168,4.042331],[-62.555868,4.041331],[-62.557768,4.038531],[-62.561968,4.037331],[-62.561968,4.033331],[-62.559868,4.027931],[-62.560268,4.024431],[-62.557768,4.022131],[-62.556168,4.017931],[-62.559068,4.016131],[-62.563468,4.016931],[-62.568768,4.015331],[-62.572068,4.014931],[-62.575668,4.015731],[-62.580168,4.017731],[-62.581068,4.021531],[-62.582168,4.025731],[-62.586968,4.028031],[-62.587968,4.031331],[-62.591268,4.033531],[-62.594868,4.034931],[-62.599568,4.035931],[-62.604668,4.038331],[-62.607468,4.042431],[-62.610368,4.044131],[-62.614668,4.042131],[-62.617468,4.041331],[-62.620568,4.040331],[-62.624468,4.040531],[-62.629368,4.039631],[-62.633568,4.041331],[-62.638468,4.043931],[-62.642468,4.044131],[-62.647068,4.046131],[-62.652568,4.043731],[-62.655868,4.042331],[-62.657668,4.039931],[-62.657668,4.036331],[-62.660868,4.034731],[-62.665268,4.036331],[-62.669268,4.036331],[-62.674368,4.036731],[-62.679368,4.038331],[-62.682668,4.036331],[-62.685868,4.034731],[-62.689368,4.032431],[-62.697368,4.032731],[-62.702468,4.031531],[-62.705468,4.033331],[-62.710468,4.034531],[-62.713768,4.034731],[-62.717068,4.035731],[-62.721668,4.035131],[-62.729668,4.037731],[-62.732768,4.039331],[-62.736768,4.039331],[-62.739968,4.037131],[-62.743868,4.036731],[-62.747668,4.035231],[-62.752968,4.031631],[-62.752768,4.026531],[-62.749768,4.022131],[-62.754168,4.019731],[-62.756868,4.017931],[-62.761268,4.015731],[-62.766568,4.012531],[-62.768168,4.009131],[-62.768768,4.006331],[-62.766768,4.003731],[-62.766768,4.000531],[-62.767468,3.997531],[-62.765668,3.993731],[-62.762668,3.989531],[-62.762768,3.985331],[-62.758468,3.981731],[-62.749868,3.977431],[-62.744068,3.975531],[-62.745068,3.971331],[-62.750168,3.966131],[-62.752368,3.959931],[-62.755168,3.954131],[-62.757468,3.947831],[-62.761268,3.942331],[-62.764068,3.940331],[-62.769868,3.937931],[-62.772868,3.936731],[-62.778368,3.934331],[-62.782368,3.934331],[-62.783968,3.931531],[-62.785868,3.927531],[-62.783068,3.924031],[-62.783068,3.921131],[-62.783868,3.916531],[-62.786968,3.915131],[-62.788168,3.907731],[-62.788168,3.904431],[-62.788168,3.898931],[-62.788468,3.892931],[-62.783668,3.888531],[-62.780368,3.883531],[-62.775768,3.880331],[-62.776268,3.876131],[-62.773968,3.873731],[-62.772068,3.870931],[-62.767468,3.866131],[-62.757768,3.859631],[-62.758168,3.853931],[-62.754668,3.850531],[-62.759268,3.846331],[-62.762068,3.843731],[-62.765768,3.842931],[-62.771868,3.839131],[-62.771768,3.835131],[-62.769568,3.832531],[-62.764568,3.829131],[-62.761268,3.825931],[-62.759068,3.823331],[-62.756368,3.822131],[-62.752968,3.819931],[-62.750568,3.818131],[-62.748268,3.812931],[-62.744168,3.809131],[-62.737568,3.806231],[-62.732268,3.805331],[-62.729168,3.804731],[-62.729568,3.801831],[-62.731168,3.797331],[-62.733968,3.794131],[-62.738668,3.791331],[-62.742268,3.789531],[-62.743368,3.786031],[-62.741168,3.784131],[-62.736068,3.780131],[-62.735368,3.776131],[-62.738968,3.769931],[-62.739968,3.766431],[-62.739968,3.762831],[-62.739668,3.759131],[-62.739768,3.755531],[-62.738368,3.751131],[-62.738268,3.747531],[-62.737468,3.743931],[-62.735368,3.740431],[-62.734168,3.736331],[-62.734968,3.729131],[-62.734768,3.718531],[-62.733268,3.714331],[-62.731168,3.708331],[-62.732868,3.702731],[-62.736368,3.699731],[-62.736768,3.695931],[-62.736068,3.691931],[-62.736868,3.689131],[-62.739068,3.686231],[-62.743268,3.684531],[-62.744368,3.681731],[-62.743668,3.673931],[-62.747768,3.672931],[-62.752668,3.675331],[-62.756268,3.677531],[-62.758468,3.680331],[-62.762968,3.683931],[-62.768168,3.686231],[-62.771168,3.689531],[-62.773668,3.694231],[-62.775968,3.697131],[-62.779568,3.698531],[-62.783868,3.699531],[-62.785868,3.702131],[-62.788168,3.714131],[-62.791968,3.718831],[-62.796768,3.720131],[-62.800768,3.723331],[-62.802168,3.726031],[-62.803968,3.729331],[-62.808068,3.731831],[-62.813368,3.732731],[-62.818168,3.731731],[-62.822968,3.732731],[-62.826068,3.734931],[-62.831768,3.738231],[-62.836268,3.738231],[-62.838268,3.736131],[-62.840168,3.730531],[-62.842368,3.726931],[-62.844868,3.723831],[-62.848468,3.721331],[-62.850668,3.715131],[-62.853868,3.711131],[-62.859768,3.707131],[-62.864668,3.704131],[-62.867168,3.702731],[-62.869768,3.700531],[-62.873268,3.698131],[-62.879068,3.692031],[-62.883768,3.686731],[-62.886868,3.683431],[-62.889868,3.681731],[-62.892968,3.679331],[-62.896268,3.677531],[-62.900468,3.675931],[-62.903668,3.673931],[-62.907068,3.671831],[-62.912368,3.671831],[-62.917468,3.673931],[-62.919468,3.671731],[-62.921468,3.665531],[-62.921468,3.655231],[-62.922468,3.652131],[-62.924668,3.648931],[-62.927168,3.645531],[-62.928868,3.640031],[-62.930468,3.637331],[-62.932968,3.635331],[-62.934468,3.631731],[-62.935868,3.628731],[-62.939068,3.626131],[-62.942368,3.623931],[-62.945768,3.619731],[-62.947168,3.616231],[-62.949568,3.614031],[-62.953268,3.611531],[-62.957268,3.609631],[-62.960668,3.607731],[-62.963768,3.609631],[-62.966468,3.610931],[-62.970068,3.610131],[-62.974568,3.610331],[-62.978568,3.610731],[-62.983968,3.610131],[-62.990068,3.611731],[-62.994668,3.615331],[-62.996968,3.618131],[-62.999868,3.622031],[-63.002468,3.624831],[-63.005268,3.628731],[-63.007968,3.633531],[-63.010768,3.639331],[-63.014268,3.641331],[-63.016068,3.645831],[-63.020768,3.647731],[-63.023768,3.648931],[-63.027568,3.651531],[-63.028768,3.657731],[-63.029868,3.661731],[-63.031768,3.664931],[-63.036368,3.667431],[-63.039168,3.669131],[-63.043868,3.670431],[-63.046968,3.672331],[-63.054068,3.676131],[-63.056868,3.677131],[-63.059668,3.681131],[-63.065968,3.683931],[-63.070468,3.684731],[-63.074068,3.686231],[-63.077068,3.689131],[-63.078968,3.691531],[-63.080168,3.694131],[-63.075768,3.695531],[-63.071368,3.696131],[-63.068768,3.697731],[-63.066868,3.700531],[-63.064368,3.704131],[-63.062968,3.707531],[-63.063468,3.710731],[-63.063068,3.714131],[-63.062968,3.718031],[-63.062968,3.729931],[-63.063568,3.733931],[-63.061868,3.737131],[-63.059368,3.739731],[-63.059368,3.748731],[-63.061668,3.752031],[-63.065768,3.751931],[-63.069568,3.753131],[-63.076568,3.760631],[-63.079068,3.764331],[-63.082368,3.767231],[-63.084068,3.769931],[-63.085368,3.774931],[-63.086868,3.778531],[-63.092068,3.781631],[-63.095168,3.784731],[-63.100268,3.789131],[-63.103168,3.793231],[-63.111068,3.796131],[-63.113568,3.798531],[-63.119368,3.803531],[-63.124168,3.804331],[-63.128768,3.802631],[-63.137068,3.802931],[-63.145468,3.805431],[-63.150168,3.805931],[-63.155168,3.805931],[-63.163468,3.804831],[-63.168168,3.805431],[-63.170568,3.807531],[-63.173168,3.810331],[-63.179668,3.812931],[-63.185468,3.812531],[-63.193868,3.814531],[-63.201568,3.811931],[-63.204668,3.811931],[-63.207568,3.814531],[-63.211168,3.817531],[-63.213468,3.821431],[-63.214868,3.824931],[-63.218668,3.828931],[-63.221668,3.830331],[-63.223368,3.832931],[-63.225968,3.835131],[-63.225568,3.838331],[-63.227768,3.845231],[-63.231368,3.849631],[-63.231668,3.856531],[-63.232768,3.861731],[-63.231668,3.867531],[-63.232568,3.870531],[-63.233368,3.873331],[-63.232868,3.879131],[-63.232868,3.882831],[-63.230668,3.886331],[-63.227468,3.888331],[-63.222068,3.898531],[-63.221368,3.901531],[-63.221968,3.904431],[-63.220568,3.907131],[-63.218468,3.910231],[-63.217668,3.914531],[-63.215468,3.918131],[-63.213268,3.922531],[-63.212968,3.927531],[-63.212368,3.931731],[-63.210968,3.934331],[-63.209068,3.937031],[-63.207368,3.940531],[-63.208268,3.943431],[-63.204968,3.950031],[-63.207668,3.952531],[-63.211868,3.951931],[-63.217268,3.950931],[-63.223368,3.952731],[-63.226368,3.952731],[-63.230668,3.953631],[-63.234668,3.954131],[-63.240068,3.954331],[-63.246568,3.954531],[-63.250268,3.957131],[-63.253468,3.961131],[-63.257068,3.961131],[-63.260468,3.960831],[-63.264068,3.961331],[-63.269868,3.959431],[-63.272968,3.957731],[-63.277668,3.955531],[-63.281968,3.955831],[-63.282668,3.959131],[-63.282068,3.961931],[-63.283668,3.964931],[-63.285968,3.971931],[-63.289968,3.971331],[-63.293068,3.970931],[-63.296068,3.974631],[-63.298968,3.976931],[-63.307968,3.981331],[-63.311968,3.980931],[-63.314068,3.976731],[-63.313768,3.971931],[-63.314868,3.968531],[-63.311868,3.962131],[-63.315468,3.961931],[-63.320968,3.962731],[-63.325968,3.963331],[-63.331568,3.961931],[-63.334868,3.959731],[-63.338468,3.956931],[-63.341568,3.957731],[-63.348468,3.960131],[-63.353068,3.960731],[-63.361368,3.962731],[-63.364668,3.964131],[-63.368268,3.965831],[-63.375168,3.969531],[-63.379068,3.972731],[-63.381868,3.974531],[-63.387168,3.976731],[-63.389868,3.978931],[-63.393968,3.980531],[-63.398768,3.978931],[-63.401868,3.978531],[-63.405168,3.978131],[-63.408368,3.977131],[-63.413068,3.975531],[-63.418068,3.975731],[-63.423268,3.976031],[-63.427768,3.977131],[-63.432468,3.974531],[-63.436268,3.968531],[-63.440468,3.965531],[-63.443568,3.963331],[-63.447168,3.961331],[-63.451568,3.954731],[-63.447968,3.952131],[-63.444068,3.951131],[-63.439968,3.948531],[-63.439368,3.943931],[-63.441668,3.940531],[-63.438368,3.936431],[-63.432968,3.934331],[-63.428268,3.936131],[-63.425068,3.934731],[-63.418868,3.935331],[-63.416368,3.932631],[-63.416768,3.928731],[-63.420268,3.925131],[-63.417268,3.921531],[-63.414168,3.918231],[-63.412768,3.915731],[-63.411968,3.912731],[-63.413168,3.909131],[-63.418968,3.900731],[-63.422768,3.898331],[-63.425768,3.895531],[-63.429368,3.893331],[-63.433768,3.887531],[-63.436568,3.885031],[-63.438268,3.882731],[-63.435168,3.879231],[-63.434068,3.875531],[-63.434868,3.872531],[-63.434868,3.869331],[-63.434368,3.866131],[-63.437968,3.863231],[-63.441268,3.862931],[-63.447068,3.861131],[-63.451768,3.858531],[-63.458468,3.860431],[-63.461568,3.862531],[-63.468168,3.862331],[-63.470368,3.866231],[-63.473868,3.869031],[-63.481768,3.873731],[-63.488668,3.873731],[-63.491668,3.872931],[-63.493268,3.868131],[-63.498068,3.869031],[-63.502368,3.868331],[-63.502468,3.864931],[-63.498768,3.861831],[-63.499168,3.856831],[-63.497668,3.853931],[-63.495468,3.851331],[-63.495868,3.847331],[-63.496268,3.842531],[-63.498368,3.840231],[-63.500468,3.843331],[-63.502368,3.848131],[-63.506368,3.849631],[-63.510968,3.847431],[-63.517168,3.849931],[-63.519668,3.853231],[-63.522568,3.855531],[-63.526568,3.856331],[-63.531968,3.856731],[-63.534868,3.858531],[-63.536668,3.861831],[-63.539868,3.865131],[-63.544968,3.863531],[-63.548968,3.863131],[-63.551868,3.864931],[-63.553268,3.868131],[-63.554768,3.873331],[-63.554668,3.876731],[-63.553668,3.881731],[-63.554068,3.887531],[-63.555168,3.891131],[-63.560468,3.888331],[-63.563268,3.886331],[-63.572368,3.883531],[-63.579868,3.886331],[-63.589768,3.884931],[-63.592068,3.889931],[-63.584868,3.896531],[-63.585668,3.900131],[-63.589068,3.901131],[-63.591968,3.902131],[-63.593068,3.904931],[-63.591268,3.911931],[-63.587968,3.918231],[-63.592268,3.928331],[-63.595868,3.932631],[-63.599568,3.935531],[-63.602768,3.939731],[-63.606668,3.941931],[-63.608868,3.944231],[-63.615468,3.955531],[-63.617468,3.959731],[-63.620468,3.962731],[-63.624068,3.965731],[-63.627668,3.969331],[-63.631068,3.971931],[-63.634368,3.974631],[-63.638168,3.977131],[-63.642868,3.978531],[-63.644768,3.984131],[-63.647668,3.990431],[-63.648468,3.993331],[-63.649368,3.997031],[-63.652668,4.001931],[-63.655168,4.003931],[-63.658068,4.007031],[-63.661668,4.010331],[-63.667168,4.011131],[-63.671068,4.013331],[-63.675068,4.014931],[-63.676868,4.019131],[-63.680468,4.018131],[-63.683768,4.018531],[-63.689168,4.014731],[-63.688068,4.011431],[-63.685768,4.009531],[-63.686068,4.004131],[-63.689168,3.999831],[-63.687468,3.995731],[-63.686968,3.992631],[-63.691068,3.986131],[-63.691668,3.982331],[-63.690768,3.979131],[-63.694368,3.973831],[-63.694868,3.970731],[-63.696268,3.966331],[-63.695468,3.961931],[-63.695568,3.957731],[-63.697368,3.954731],[-63.700268,3.951331],[-63.700768,3.947831],[-63.700468,3.944231],[-63.697368,3.942731],[-63.693768,3.937031],[-63.690168,3.934731],[-63.685768,3.934831],[-63.681968,3.935331],[-63.679968,3.932631],[-63.678668,3.928931],[-63.674268,3.927331],[-63.673968,3.923731],[-63.670768,3.923131],[-63.663868,3.922531],[-63.668868,3.917431],[-63.672168,3.914631],[-63.677268,3.912731],[-63.683368,3.907731],[-63.690168,3.909131],[-63.695968,3.912931],[-63.701068,3.912131],[-63.704268,3.913731],[-63.707368,3.913831],[-63.710668,3.911731],[-63.709668,3.907331],[-63.712268,3.904131],[-63.721268,3.910731],[-63.723368,3.914131],[-63.726968,3.914931],[-63.733568,3.913331],[-63.738068,3.914931],[-63.740068,3.918731],[-63.743268,3.920931],[-63.739968,3.925331],[-63.738668,3.929031],[-63.741168,3.932631],[-63.752968,3.938431],[-63.755968,3.940531],[-63.761068,3.938931],[-63.767668,3.935931],[-63.772368,3.938731],[-63.777368,3.935531],[-63.785868,3.935531],[-63.789968,3.933931],[-63.797468,3.933431],[-63.802568,3.935531],[-63.808768,3.936931],[-63.812668,3.939131],[-63.816568,3.939531],[-63.820468,3.939731],[-63.824668,3.940931],[-63.828168,3.939731],[-63.834368,3.939831],[-63.837368,3.943131],[-63.840068,3.946331],[-63.844168,3.946931],[-63.847268,3.949531],[-63.851168,3.948931],[-63.853168,3.945131],[-63.857068,3.946431],[-63.862468,3.946431],[-63.867168,3.940331],[-63.870868,3.937531],[-63.877368,3.936231],[-63.879868,3.934531],[-63.884968,3.933331],[-63.890368,3.930931],[-63.893668,3.931131],[-63.900468,3.933431],[-63.904868,3.931931],[-63.909368,3.930031],[-63.915268,3.925931],[-63.926068,3.926131],[-63.928968,3.924331],[-63.930468,3.921331],[-63.935168,3.917731],[-63.936568,3.914531],[-63.935868,3.909531],[-63.937168,3.903331],[-63.938768,3.900731],[-63.941968,3.899731],[-63.945468,3.900331],[-63.947068,3.892931],[-63.949568,3.889931],[-63.950968,3.886431],[-63.956768,3.889331],[-63.959568,3.885531],[-63.959268,3.880531],[-63.960968,3.877031],[-63.961568,3.873931],[-63.961568,3.869531],[-63.964868,3.868331],[-63.966568,3.873431],[-63.968468,3.878431],[-63.972668,3.885931],[-63.975268,3.893331],[-63.977768,3.898531],[-63.979968,3.900531],[-63.982868,3.897531],[-63.987468,3.897231],[-63.990468,3.899131],[-63.992768,3.902531],[-63.996668,3.903031],[-63.997668,3.908331],[-63.998368,3.911731],[-63.999768,3.923531],[-64.000768,3.930331],[-64.001868,3.933131],[-64.014368,3.932931],[-64.018668,3.933431],[-64.030968,3.933931],[-64.035668,3.934331],[-64.035968,3.944131],[-64.047768,3.949731],[-64.050868,3.950931],[-64.051168,3.954331],[-64.052568,3.957231],[-64.057968,3.966331],[-64.063768,3.977731],[-64.065468,3.981331],[-64.068268,3.985431],[-64.070768,3.988531],[-64.074368,3.994731],[-64.075768,3.998731],[-64.083268,4.009931],[-64.087968,4.016931],[-64.091268,4.021131],[-64.093768,4.023331],[-64.097068,4.025131],[-64.098468,4.028531],[-64.099568,4.031631],[-64.099968,4.034731],[-64.095868,4.039531],[-64.094568,4.042731],[-64.095268,4.048231],[-64.096368,4.053531],[-64.098468,4.058931],[-64.100668,4.062731],[-64.101968,4.065531],[-64.104968,4.076131],[-64.108868,4.085531],[-64.111468,4.088331],[-64.112568,4.091331],[-64.114968,4.093831],[-64.117668,4.096131],[-64.121268,4.098531],[-64.124668,4.100231],[-64.133268,4.106031],[-64.136268,4.107531],[-64.141268,4.107731],[-64.144068,4.108531],[-64.147368,4.110331],[-64.150468,4.112531],[-64.152968,4.114731],[-64.156568,4.116731],[-64.159468,4.119031],[-64.160968,4.121931],[-64.163668,4.125531],[-64.168068,4.127931],[-64.171868,4.128931],[-64.174368,4.127531],[-64.177568,4.125631],[-64.184368,4.119731],[-64.190768,4.116731],[-64.201868,4.115331],[-64.212968,4.114931],[-64.218768,4.115431],[-64.224168,4.117531],[-64.232168,4.123931],[-64.239668,4.124731],[-64.244368,4.126731],[-64.248568,4.129131],[-64.251568,4.129531],[-64.254368,4.128331],[-64.261568,4.125631],[-64.265168,4.125931],[-64.269068,4.127931],[-64.272168,4.133931],[-64.273968,4.141731],[-64.276268,4.143931],[-64.289568,4.143931],[-64.293868,4.142231],[-64.296368,4.140331],[-64.299368,4.134231],[-64.302168,4.132531],[-64.306168,4.131331],[-64.314868,4.131331],[-64.324668,4.130331],[-64.335468,4.129131],[-64.345668,4.131131],[-64.386268,4.137131],[-64.397368,4.133531],[-64.403768,4.132031],[-64.431568,4.134731],[-64.442168,4.130631],[-64.448768,4.126131],[-64.452368,4.123331],[-64.457668,4.121231],[-64.466268,4.118931],[-64.476368,4.116931],[-64.493268,4.114031],[-64.500268,4.111731],[-64.503268,4.110431],[-64.506268,4.111131],[-64.509668,4.111831],[-64.517168,4.114031],[-64.520968,4.116231],[-64.524068,4.116131],[-64.529868,4.114331],[-64.535868,4.113931],[-64.544268,4.113931],[-64.551068,4.111331],[-64.556868,4.105531],[-64.560468,4.101731],[-64.579668,4.109131],[-64.586568,4.111331],[-64.592968,4.114031],[-64.600268,4.119031],[-64.608968,4.126731],[-64.616868,4.131331],[-64.623568,4.134931],[-64.627368,4.138531],[-64.631068,4.143531],[-64.640968,4.165331],[-64.654768,4.204331],[-64.658468,4.211531],[-64.664568,4.218031],[-64.684668,4.239331],[-64.691268,4.244731],[-64.699668,4.250331],[-64.706068,4.252931],[-64.724568,4.259931],[-64.730568,4.262531],[-64.738868,4.266931],[-64.744068,4.269931],[-64.750768,4.274131],[-64.757168,4.276531],[-64.764068,4.278931],[-64.780468,4.286731],[-64.788468,4.287131],[-64.793568,4.286931],[-64.796868,4.285731],[-64.799668,4.284131],[-64.804668,4.277731],[-64.808768,4.271731],[-64.817668,4.265331],[-64.819968,4.261431],[-64.821568,4.258531],[-64.822368,4.253431],[-64.824968,4.242931],[-64.825168,4.238931],[-64.821868,4.223331],[-64.821268,4.218031],[-64.821868,4.211931],[-64.820468,4.205331],[-64.814368,4.184731],[-64.810468,4.174731],[-64.807968,4.171731],[-64.803868,4.167131],[-64.796468,4.161931],[-64.789568,4.157131],[-64.783468,4.152731],[-64.753268,4.136931],[-64.745168,4.131731],[-64.740068,4.127731],[-64.736068,4.124131],[-64.732168,4.120331],[-64.723068,4.104931],[-64.714868,4.084131],[-64.712268,4.074231],[-64.708468,4.066531],[-64.705168,4.062531],[-64.695168,4.051731],[-64.686068,4.043531],[-64.683768,4.040331],[-64.682968,4.036331],[-64.681168,4.024731],[-64.680768,4.016331],[-64.675068,4.012531],[-64.673868,4.004731],[-64.664468,3.999731],[-64.658068,3.996131],[-64.654868,3.994531],[-64.650668,3.991931],[-64.646868,3.988531],[-64.643168,3.984631],[-64.633868,3.975131],[-64.628568,3.963031],[-64.624368,3.956531],[-64.619768,3.951331],[-64.614668,3.946731],[-64.609668,3.944931],[-64.602768,3.942831],[-64.597068,3.938431],[-64.585668,3.932131],[-64.580168,3.928331],[-64.578268,3.922531],[-64.577568,3.917931],[-64.571268,3.894931],[-64.568268,3.881931],[-64.563468,3.875931],[-64.557968,3.868531],[-64.552968,3.863731],[-64.547468,3.859131],[-64.540368,3.854631],[-64.533968,3.849331],[-64.530368,3.847131],[-64.524468,3.841931],[-64.522568,3.838731],[-64.512868,3.821331],[-64.509068,3.815131],[-64.505468,3.809831],[-64.500568,3.804031],[-64.496168,3.800131],[-64.492968,3.796731],[-64.490468,3.793231],[-64.488868,3.790531],[-64.485368,3.787431],[-64.482468,3.785731],[-64.477768,3.783031],[-64.472368,3.781631],[-64.468768,3.781331],[-64.459068,3.781331],[-64.455468,3.782431],[-64.451068,3.783531],[-64.447368,3.784131],[-64.443768,3.783831],[-64.433768,3.781531],[-64.428568,3.779931],[-64.425468,3.778031],[-64.422768,3.775831],[-64.420268,3.773331],[-64.416768,3.770831],[-64.409168,3.765731],[-64.403368,3.763931],[-64.396568,3.762531],[-64.389868,3.759731],[-64.376868,3.753331],[-64.368568,3.747631],[-64.364668,3.747031],[-64.357768,3.741231],[-64.352468,3.738531],[-64.346968,3.736731],[-64.342668,3.734931],[-64.339368,3.733131],[-64.335168,3.729631],[-64.332668,3.725531],[-64.330368,3.722431],[-64.327968,3.720531],[-64.325168,3.719531],[-64.321668,3.718331],[-64.297868,3.704131],[-64.288468,3.698731],[-64.286668,3.693931],[-64.286968,3.690331],[-64.286368,3.687031],[-64.283868,3.679331],[-64.282368,3.676731],[-64.280968,3.669531],[-64.278468,3.665331],[-64.275768,3.661331],[-64.272368,3.658531],[-64.267368,3.654731],[-64.261868,3.651331],[-64.257668,3.647731],[-64.253568,3.641331],[-64.251268,3.637531],[-64.249668,3.633331],[-64.246868,3.627731],[-64.244368,3.624831],[-64.241368,3.621931],[-64.231668,3.613231],[-64.209868,3.594731],[-64.205968,3.590531],[-64.203768,3.587531],[-64.200468,3.583331],[-64.196268,3.578931],[-64.187368,3.555431],[-64.184368,3.489331],[-64.161268,3.465131],[-64.148668,3.439831],[-64.147868,3.403931],[-64.139868,3.384731],[-64.145168,3.378331],[-64.146868,3.371231],[-64.140368,3.364931],[-64.132768,3.363931],[-64.132768,3.357131],[-64.136268,3.351031],[-64.134268,3.348731],[-64.132768,3.345231],[-64.127368,3.345931],[-64.125568,3.338731],[-64.117968,3.337531],[-64.114968,3.334931],[-64.115768,3.329131],[-64.117468,3.325531],[-64.118568,3.321431],[-64.115868,3.313331],[-64.116668,3.307631],[-64.119668,3.304831],[-64.118668,3.301531],[-64.119668,3.298231],[-64.121568,3.294331],[-64.123268,3.291531],[-64.119368,3.289331],[-64.118068,3.286731],[-64.118068,3.282331],[-64.117468,3.278531],[-64.120768,3.278731],[-64.125968,3.275831],[-64.129068,3.274331],[-64.132968,3.271931],[-64.136868,3.272531],[-64.138568,3.268631],[-64.144868,3.264931],[-64.144568,3.261331],[-64.147968,3.258331],[-64.150068,3.255331],[-64.153368,3.253931],[-64.150468,3.249331],[-64.156268,3.248431],[-64.158468,3.243731],[-64.157268,3.240131],[-64.156768,3.234331],[-64.154568,3.230131],[-64.154868,3.221531],[-64.156768,3.212531],[-64.158668,3.206731],[-64.166468,3.204731],[-64.169968,3.201331],[-64.170268,3.197131],[-64.172168,3.191131],[-64.174968,3.188731],[-64.176868,3.184131],[-64.176468,3.179531],[-64.181368,3.170431],[-64.181368,3.165331],[-64.187368,3.164131],[-64.189668,3.160731],[-64.192768,3.159131],[-64.195768,3.160231],[-64.200368,3.164631],[-64.205368,3.159931],[-64.206868,3.157131],[-64.210968,3.154331],[-64.220968,3.150131],[-64.223368,3.145031],[-64.223068,3.139731],[-64.225868,3.132031],[-64.225868,3.127931],[-64.223368,3.124131],[-64.218768,3.112131],[-64.219268,3.106031],[-64.216168,3.100131],[-64.218668,3.096131],[-64.218668,3.090731],[-64.213768,3.090531],[-64.208168,3.082231],[-64.199068,3.081731],[-64.192668,3.073931],[-64.185568,3.067831],[-64.174468,3.062031],[-64.179068,3.054831],[-64.174668,3.050731],[-64.168068,3.050431],[-64.158368,3.045331],[-64.156168,3.040131],[-64.147968,3.036531],[-64.146868,3.032331],[-64.144568,3.025831],[-64.146768,3.018931],[-64.152268,3.016331],[-64.147068,3.010631],[-64.152268,3.002931],[-64.157668,2.994031],[-64.160868,2.987331],[-64.152268,2.985131],[-64.144768,2.985931],[-64.139568,2.990731],[-64.132068,2.986831],[-64.123768,2.988231],[-64.118868,2.985731],[-64.117468,2.981031],[-64.112168,2.970131],[-64.106968,2.966531],[-64.109168,2.959731],[-64.107768,2.954131],[-64.100968,2.952131],[-64.097568,2.946931],[-64.096468,2.944131],[-64.093668,2.939831],[-64.094468,2.935131],[-64.091468,2.932931],[-64.084368,2.931231],[-64.079568,2.925431],[-64.073168,2.922931],[-64.070468,2.917431],[-64.074568,2.913131],[-64.077568,2.905931],[-64.077168,2.901331],[-64.071268,2.902931],[-64.069268,2.896931],[-64.069868,2.890731],[-64.075468,2.883331],[-64.078168,2.879931],[-64.078768,2.874131],[-64.076068,2.870331],[-64.067768,2.869731],[-64.060768,2.864731],[-64.052568,2.855531],[-64.051168,2.850731],[-64.046968,2.840231],[-64.042168,2.836731],[-64.041368,2.831731],[-64.034468,2.830731],[-64.032868,2.827731],[-64.027068,2.825031],[-64.020768,2.818131],[-64.014668,2.812331],[-64.016768,2.807331],[-64.018168,2.795331],[-64.016868,2.790331],[-64.014068,2.785931],[-64.016068,2.777731],[-64.012068,2.773931],[-64.004068,2.773331],[-63.998768,2.770031],[-63.996968,2.766331],[-63.999468,2.759931],[-64.005168,2.758931],[-64.005768,2.753331],[-64.003868,2.750331],[-64.003268,2.747331],[-64.002368,2.741731],[-63.999068,2.736831],[-63.994368,2.736831],[-63.991368,2.735731],[-63.988568,2.732531],[-63.983868,2.728531],[-63.986368,2.725231],[-63.987568,2.720731],[-63.987168,2.715731],[-63.990768,2.716531],[-63.995868,2.715231],[-63.996668,2.710831],[-64.000268,2.709431],[-64.006868,2.709431],[-64.008768,2.705031],[-64.001268,2.700031],[-64.000268,2.695931],[-63.997968,2.691331],[-63.994468,2.690131],[-63.988568,2.689831],[-63.986668,2.683931],[-63.989068,2.682131],[-63.988668,2.677931],[-63.990068,2.673731],[-63.990368,2.669331],[-63.989768,2.663531],[-63.987568,2.658031],[-63.987168,2.654931],[-63.988368,2.651631],[-63.986068,2.648731],[-63.991068,2.645831],[-63.991068,2.641931],[-63.994068,2.636131],[-63.996968,2.632531],[-64.003468,2.630331],[-64.007768,2.626731],[-64.005268,2.621231],[-64.011268,2.617331],[-64.011768,2.610431],[-64.009968,2.604631],[-64.014068,2.600131],[-64.018268,2.598831],[-64.018768,2.594731],[-64.021468,2.592731],[-64.025968,2.589731],[-64.028668,2.585731],[-64.026768,2.582531],[-64.027268,2.577231],[-64.031668,2.577831],[-64.033468,2.575531],[-64.038068,2.580031],[-64.042568,2.580031],[-64.044768,2.574931],[-64.046368,2.570331],[-64.048868,2.567531],[-64.048068,2.564531],[-64.046768,2.561231],[-64.044468,2.553731],[-64.048268,2.552131],[-64.047568,2.549031],[-64.046768,2.543931],[-64.045868,2.539531],[-64.044468,2.536331],[-64.045768,2.533331],[-64.045668,2.528531],[-64.046068,2.522131],[-64.047768,2.518531],[-64.054368,2.516931],[-64.056168,2.513131],[-64.058268,2.509131],[-64.060868,2.505631],[-64.059768,2.500331],[-64.056168,2.496531],[-64.052768,2.497031],[-64.047768,2.496231],[-64.043868,2.496731],[-64.041968,2.492531],[-64.039868,2.488931],[-64.038068,2.485331],[-64.034268,2.485431],[-64.032568,2.481731],[-64.032568,2.477331],[-64.031468,2.472731],[-64.027868,2.475131],[-64.026168,2.471331],[-64.023368,2.467531],[-64.022868,2.464731],[-64.018468,2.467331],[-64.015968,2.471131],[-64.014268,2.477331],[-64.008868,2.480131],[-63.999968,2.479131],[-63.997468,2.476031],[-63.991568,2.472731],[-63.986768,2.472131],[-63.982268,2.466931],[-63.976468,2.465131],[-63.972568,2.466631],[-63.968668,2.468031],[-63.966468,2.472431],[-63.960068,2.473531],[-63.958768,2.470731],[-63.959268,2.467731],[-63.954668,2.459431],[-63.950668,2.461331],[-63.946868,2.463531],[-63.943868,2.460831],[-63.939368,2.462731],[-63.937968,2.458931],[-63.935468,2.457131],[-63.926968,2.465131],[-63.925868,2.471531],[-63.920368,2.473731],[-63.915568,2.471931],[-63.912268,2.473531],[-63.904768,2.471131],[-63.899068,2.470231],[-63.895768,2.466531],[-63.892068,2.465831],[-63.886068,2.468831],[-63.882068,2.469131],[-63.880168,2.471531],[-63.878768,2.474531],[-63.875468,2.477131],[-63.874068,2.480531],[-63.871268,2.482931],[-63.868068,2.483231],[-63.863968,2.485431],[-63.860268,2.486831],[-63.856468,2.486731],[-63.848468,2.492631],[-63.845168,2.495331],[-63.834068,2.491131],[-63.830668,2.487131],[-63.823568,2.487331],[-63.818768,2.487531],[-63.810568,2.481831],[-63.806568,2.481731],[-63.799468,2.480331],[-63.795868,2.476531],[-63.794268,2.472731],[-63.791068,2.472731],[-63.787768,2.471931],[-63.784768,2.471131],[-63.783068,2.467331],[-63.783468,2.462531],[-63.781968,2.456931],[-63.776768,2.455031],[-63.773968,2.452731],[-63.773468,2.448731],[-63.770368,2.448731],[-63.767468,2.447531],[-63.761868,2.443931],[-63.759568,2.446431],[-63.756268,2.445531],[-63.753868,2.443431],[-63.750468,2.441931],[-63.746968,2.441931],[-63.736468,2.446131],[-63.733968,2.453331],[-63.731068,2.455031],[-63.728968,2.452231],[-63.726968,2.448931],[-63.718368,2.444931],[-63.712068,2.448531],[-63.711568,2.454331],[-63.708668,2.453631],[-63.705368,2.455331],[-63.703968,2.457931],[-63.697968,2.457731],[-63.694568,2.457231],[-63.691668,2.457931],[-63.690768,2.455031],[-63.689168,2.449931],[-63.688768,2.446731],[-63.685868,2.445331],[-63.681668,2.442531],[-63.674968,2.445331],[-63.672268,2.442831],[-63.669268,2.444531],[-63.665968,2.443731],[-63.664568,2.440331],[-63.662068,2.443131],[-63.658868,2.444131],[-63.655468,2.442731],[-63.652568,2.440631],[-63.649368,2.444531],[-63.645968,2.446731],[-63.643668,2.444931],[-63.639668,2.445531],[-63.636868,2.440631],[-63.632968,2.440931],[-63.630268,2.445131],[-63.625868,2.447531],[-63.622968,2.447831],[-63.617468,2.451131],[-63.619368,2.443931],[-63.615368,2.444131],[-63.612468,2.448531],[-63.606968,2.447331],[-63.604268,2.449231],[-63.602768,2.452731],[-63.603568,2.457231],[-63.593668,2.455731],[-63.590568,2.453131],[-63.580768,2.451731],[-63.576768,2.448531],[-63.572068,2.446731],[-63.569368,2.447831],[-63.564468,2.447131],[-63.561968,2.451431],[-63.559068,2.450931],[-63.558568,2.447531],[-63.555068,2.447131],[-63.555568,2.444131],[-63.555768,2.439131],[-63.553868,2.433131],[-63.553368,2.430331],[-63.555568,2.427531],[-63.555768,2.423531],[-63.552468,2.424731],[-63.549168,2.426531],[-63.546068,2.428731],[-63.542868,2.427531],[-63.539568,2.425731],[-63.536268,2.427131],[-63.533768,2.425331],[-63.529568,2.424031],[-63.526568,2.425431],[-63.525068,2.422731],[-63.519368,2.422731],[-63.513268,2.425331],[-63.509968,2.425931],[-63.507668,2.428331],[-63.503568,2.430431],[-63.502668,2.426531],[-63.498768,2.426831],[-63.495868,2.430331],[-63.494768,2.435731],[-63.490868,2.436531],[-63.487968,2.436931],[-63.487468,2.433731],[-63.488668,2.430931],[-63.488368,2.427331],[-63.483668,2.428931],[-63.480368,2.431931],[-63.478168,2.427631],[-63.475068,2.423731],[-63.470968,2.423131],[-63.470968,2.420131],[-63.471768,2.416831],[-63.472068,2.413331],[-63.469468,2.410731],[-63.466968,2.408031],[-63.464468,2.402331],[-63.460368,2.403931],[-63.455368,2.403931],[-63.455068,2.408531],[-63.454968,2.412731],[-63.451268,2.413831],[-63.448468,2.410231],[-63.445768,2.415531],[-63.441668,2.417731],[-63.441068,2.420931],[-63.441968,2.424531],[-63.440168,2.431731],[-63.436368,2.436131],[-63.434468,2.439231],[-63.434668,2.442531],[-63.430768,2.444531],[-63.426868,2.446931],[-63.422468,2.445131],[-63.419668,2.448731],[-63.416668,2.453531],[-63.412868,2.450731],[-63.410668,2.445931],[-63.412468,2.443131],[-63.409768,2.439831],[-63.405468,2.440531],[-63.406268,2.435731],[-63.404268,2.431231],[-63.400368,2.429731],[-63.397068,2.428931],[-63.392868,2.428531],[-63.389268,2.426831],[-63.388168,2.430931],[-63.383468,2.429831],[-63.382168,2.426731],[-63.378768,2.426731],[-63.372968,2.426331],[-63.371568,2.422731],[-63.371968,2.418731],[-63.370068,2.414531],[-63.367668,2.416031],[-63.364668,2.416731],[-63.366068,2.412731],[-63.366868,2.407731],[-63.366668,2.403331],[-63.366668,2.399931],[-63.364968,2.397231],[-63.365368,2.393631],[-63.363868,2.390031],[-63.358868,2.388631],[-63.355668,2.387131],[-63.355268,2.382331],[-63.356968,2.378931],[-63.359968,2.375631],[-63.362168,2.372631],[-63.366168,2.368131],[-63.369368,2.362331],[-63.373368,2.361131],[-63.375768,2.357531],[-63.376368,2.352131],[-63.376068,2.348131],[-63.374868,2.344331],[-63.376268,2.340831],[-63.372968,2.338031],[-63.368368,2.335831],[-63.366868,2.331331],[-63.361368,2.328531],[-63.361468,2.324731],[-63.362968,2.318131],[-63.366368,2.316131],[-63.366468,2.312931],[-63.361968,2.304831],[-63.361368,2.300931],[-63.363868,2.297531],[-63.365768,2.294131],[-63.367968,2.289631],[-63.365368,2.286331],[-63.364668,2.281531],[-63.361768,2.278031],[-63.361068,2.272931],[-63.360368,2.269331],[-63.364168,2.266331],[-63.366168,2.260931],[-63.367968,2.255331],[-63.367968,2.251331],[-63.369068,2.248131],[-63.368268,2.243131],[-63.370768,2.241231],[-63.374068,2.239931],[-63.376668,2.236131],[-63.378468,2.231831],[-63.380568,2.228231],[-63.378068,2.226331],[-63.376568,2.223831],[-63.374968,2.218531],[-63.374368,2.215131],[-63.371868,2.212131],[-63.386868,2.202131],[-63.395168,2.199731],[-63.395168,2.188431],[-63.388768,2.183131],[-63.390768,2.172531],[-63.394368,2.165731],[-63.393768,2.156931],[-63.397668,2.146931],[-63.405868,2.144331],[-63.414168,2.137831],[-63.421068,2.131331],[-63.427568,2.135331],[-63.434068,2.126331],[-63.444068,2.125331],[-63.451268,2.128431],[-63.460168,2.136431],[-63.466568,2.141131],[-63.474268,2.137831],[-63.475568,2.126731],[-63.485368,2.121231],[-63.492468,2.115431],[-63.500468,2.115431],[-63.509368,2.113731],[-63.514368,2.121131],[-63.528468,2.128331],[-63.536368,2.131131],[-63.545068,2.130531],[-63.553668,2.131131],[-63.561868,2.132531],[-63.568768,2.124731],[-63.585468,2.119731],[-63.594468,2.120331],[-63.601968,2.113931],[-63.606668,2.107531],[-63.617268,2.106731],[-63.618568,2.096331],[-63.622668,2.089131],[-63.630468,2.084731],[-63.633568,2.076131],[-63.637968,2.069231],[-63.644868,2.064831],[-63.653768,2.068131],[-63.662068,2.065531],[-63.664968,2.057531],[-63.663068,2.048731],[-63.660868,2.033331],[-63.662068,2.023531],[-63.668068,2.016931],[-63.674968,2.021331],[-63.692168,2.023331],[-63.688568,2.031631],[-63.693768,2.041031],[-63.703268,2.046331],[-63.711268,2.040331],[-63.718768,2.035231],[-63.728168,2.026331],[-63.731068,2.017931],[-63.739068,2.016331],[-63.742668,2.008531],[-63.740468,1.999731],[-63.743268,1.998931],[-63.751868,1.996131],[-63.760168,2.004131],[-63.768768,1.999731],[-63.774868,1.993331],[-63.777368,1.985331],[-63.784868,1.981731],[-63.793168,1.983231],[-63.799968,1.987531],[-63.808268,1.988231],[-63.815768,1.991131],[-63.823768,1.991131],[-63.824668,1.983231],[-63.829668,1.968331],[-63.837068,1.965131],[-63.845968,1.964131],[-63.849468,1.971631],[-63.854168,1.978531],[-63.861468,1.979931],[-63.869368,1.978931],[-63.878768,1.981331],[-63.887668,1.982531],[-63.890768,1.989531],[-63.898468,1.992531],[-63.906568,1.991531],[-63.914168,1.986331],[-63.922768,1.982931],[-63.931168,1.984631],[-63.938568,1.989331],[-63.946068,1.988131],[-63.954068,1.988231],[-63.961268,1.992531],[-63.967668,1.988231],[-63.975568,1.991231],[-63.981368,1.985931],[-63.987468,1.979131],[-63.995468,1.979931],[-64.001568,1.974931],[-64.011268,1.962531],[-64.017968,1.958931],[-64.019068,1.951331],[-64.033468,1.943931],[-64.041668,1.942731],[-64.045268,1.934131],[-64.053568,1.931131],[-64.061868,1.930731],[-64.061868,1.922531],[-64.060468,1.913831],[-64.061568,1.905931],[-64.064068,1.898731],[-64.063568,1.890731],[-64.061868,1.882731],[-64.065168,1.875631],[-64.067668,1.868531],[-64.071068,1.852431],[-64.065168,1.844731],[-64.056068,1.841131],[-64.054668,1.833531],[-64.055168,1.825531],[-64.062668,1.820631],[-64.057968,1.813131],[-64.061868,1.805431],[-64.062968,1.797531],[-64.062368,1.789631],[-64.066068,1.781331],[-64.070168,1.773531],[-64.072968,1.766331],[-64.077968,1.759131],[-64.076568,1.751331],[-64.068768,1.747631],[-64.065168,1.739931],[-64.066268,1.730731],[-64.072168,1.725931],[-64.070168,1.717331],[-64.066868,1.707931],[-64.061268,1.701731],[-64.063268,1.692831],[-64.066568,1.683931],[-64.065168,1.676131],[-64.075468,1.652731],[-64.087368,1.640331],[-64.089868,1.632831],[-64.092068,1.624731],[-64.095168,1.617131],[-64.107468,1.607331],[-64.111068,1.598831],[-64.112168,1.589431],[-64.120468,1.584931],[-64.123868,1.580531],[-64.126068,1.577731],[-64.135468,1.576931],[-64.144068,1.582531],[-64.152968,1.578631],[-64.159868,1.574531],[-64.167768,1.576131],[-64.173868,1.571131],[-64.174968,1.563131],[-64.180768,1.556931],[-64.187168,1.551831],[-64.193768,1.542731],[-64.194868,1.534131],[-64.194868,1.524931],[-64.202368,1.518331],[-64.206068,1.515931],[-64.209068,1.513931],[-64.215468,1.508531],[-64.223368,1.507031],[-64.231068,1.509531],[-64.240068,1.511331],[-64.247468,1.508331],[-64.254068,1.503931],[-64.261568,1.499831],[-64.265168,1.492131],[-64.267368,1.484631],[-64.275768,1.485431],[-64.278768,1.478531],[-64.288168,1.476331],[-64.302168,1.468331],[-64.304368,1.460531],[-64.312968,1.456531],[-64.312968,1.447831],[-64.317968,1.440131],[-64.326068,1.436131],[-64.327168,1.427931],[-64.329068,1.419331],[-64.324868,1.410931],[-64.326068,1.401931],[-64.329668,1.394931],[-64.337368,1.391431],[-64.342668,1.384231],[-64.341968,1.375531],[-64.335168,1.370931],[-64.337968,1.363531],[-64.345868,1.366131],[-64.352768,1.374831],[-64.356768,1.381331],[-64.359368,1.389931],[-64.377368,1.386431],[-64.385168,1.389331],[-64.393468,1.388531],[-64.399868,1.394931],[-64.398268,1.402731],[-64.395168,1.409731],[-64.393468,1.417731],[-64.397368,1.424531],[-64.391268,1.429731],[-64.388468,1.436931],[-64.383768,1.443331],[-64.377368,1.448331],[-64.374668,1.456531],[-64.378768,1.463731],[-64.373568,1.471131],[-64.364968,1.478231],[-64.357168,1.483931],[-64.351668,1.491731],[-64.348868,1.502031],[-64.351368,1.518331],[-64.358868,1.520531],[-64.367968,1.520031],[-64.374868,1.523931],[-64.383568,1.520531],[-64.397368,1.526931],[-64.402268,1.519731],[-64.409168,1.513931],[-64.410868,1.506131],[-64.414968,1.498431],[-64.421868,1.493531],[-64.424668,1.485331],[-64.430768,1.477431],[-64.438568,1.471931],[-64.449368,1.473331],[-64.453468,1.480331],[-64.468768,1.471631],[-64.476668,1.468031],[-64.482468,1.462531],[-64.487168,1.453531],[-64.492968,1.448331],[-64.500468,1.442731],[-64.512668,1.438931],[-64.521868,1.437731],[-64.527968,1.444131],[-64.531268,1.435331],[-64.530468,1.426131],[-64.536968,1.421731],[-64.545268,1.418931],[-64.553268,1.416831],[-64.559068,1.409931],[-64.562968,1.402131],[-64.568768,1.394131],[-64.573768,1.383531],[-64.582668,1.375531],[-64.579868,1.367531],[-64.582168,1.359131],[-64.576068,1.354131],[-64.580468,1.347431],[-64.590868,1.337531],[-64.602068,1.338331],[-64.611368,1.335831],[-64.616568,1.330031],[-64.624068,1.324131],[-64.634868,1.320331],[-64.639868,1.313331],[-64.644668,1.304831],[-64.654068,1.298931],[-64.660268,1.291331],[-64.668568,1.291831],[-64.676568,1.285531],[-64.684668,1.283831],[-64.701868,1.291331],[-64.705168,1.283831],[-64.704368,1.276131],[-64.709668,1.269331],[-64.712268,1.260631],[-64.714368,1.251131],[-64.721368,1.247331],[-64.722368,1.238531],[-64.729168,1.234631],[-64.738568,1.231731],[-64.746568,1.225531],[-64.757368,1.226331],[-64.763768,1.230931],[-64.772668,1.247531],[-64.780468,1.258331],[-64.788068,1.264131],[-64.793568,1.269331],[-64.791368,1.277531],[-64.789168,1.285731],[-64.803268,1.310531],[-64.822968,1.278531],[-64.824968,1.295131],[-64.836568,1.286331],[-64.845868,1.282731],[-64.852768,1.275831],[-64.861468,1.269331],[-64.852768,1.263531],[-64.857468,1.257031],[-64.863868,1.247531],[-64.868668,1.241131],[-64.868568,1.231831],[-64.878568,1.228531],[-64.886568,1.231831],[-64.887968,1.239531],[-64.891068,1.248331],[-64.898268,1.252731],[-64.907268,1.251331],[-64.906568,1.241731],[-64.912068,1.236131],[-64.914468,1.228131],[-64.918868,1.221631],[-64.926368,1.214731],[-64.935168,1.211331],[-64.943568,1.215731],[-64.945768,1.225231],[-64.951568,1.231731],[-64.960768,1.230331],[-64.966268,1.224631],[-64.969568,1.217331],[-64.966268,1.206131],[-64.961268,1.198331],[-64.960768,1.189731],[-64.970268,1.172931],[-64.978868,1.163831],[-64.991568,1.150531],[-65.006668,1.128931],[-65.016468,1.124531],[-65.022268,1.114931],[-65.035968,1.116531],[-65.045768,1.116931],[-65.054468,1.115431],[-65.061268,1.111831],[-65.065968,1.119031],[-65.064868,1.128731],[-65.060868,1.137731],[-65.066068,1.144731],[-65.071268,1.153531],[-65.078568,1.147531],[-65.088168,1.146131],[-65.095268,1.151331],[-65.103068,1.156631],[-65.110768,1.150731],[-65.119068,1.146531],[-65.122468,1.135031],[-65.129868,1.130631],[-65.138768,1.127531],[-65.146268,1.125931],[-65.155068,1.125131],[-65.151468,1.116531],[-65.150368,1.107531],[-65.151168,1.098131],[-65.154168,1.088731],[-65.152868,1.079531],[-65.153168,1.068431],[-65.153968,1.056231],[-65.158068,1.046331],[-65.158968,1.033531],[-65.166968,1.027131],[-65.169468,1.018531],[-65.166768,1.011431],[-65.157768,1.008731],[-65.147268,1.009231],[-65.150468,1.001531],[-65.154868,0.986831],[-65.161668,0.978531],[-65.164168,0.969931],[-65.164468,0.961131],[-65.164968,0.950531],[-65.171368,0.940331],[-65.177968,0.932931],[-65.182468,0.922531],[-65.188768,0.917731],[-65.197168,0.910931],[-65.207368,0.906931],[-65.205168,0.917131],[-65.208768,0.928931],[-65.217368,0.927931],[-65.221268,0.927631],[-65.225968,0.927531],[-65.233868,0.925431],[-65.240768,0.921131],[-65.249968,0.921331],[-65.256868,0.925331],[-65.263568,0.919631],[-65.269368,0.926831],[-65.264068,0.934131],[-65.269868,0.943331],[-65.277368,0.938331],[-65.286968,0.940331],[-65.294668,0.941331],[-65.302568,0.942031],[-65.314068,0.933931],[-65.321868,0.928131],[-65.329068,0.931731],[-65.331268,0.923531],[-65.333768,0.916031],[-65.338768,0.908831],[-65.339868,0.901131],[-65.343368,0.893531],[-65.349168,0.887531],[-65.356368,0.884731],[-65.354668,0.880331],[-65.351968,0.873131],[-65.358568,0.868531],[-65.366068,0.865731],[-65.373568,0.864731],[-65.376568,0.857731],[-65.376868,0.849531],[-65.384668,0.849131],[-65.391568,0.844131],[-65.394368,0.836131],[-65.397168,0.829131],[-65.397968,0.821331],[-65.405968,0.819731],[-65.413068,0.815631],[-65.406568,0.805331],[-65.399768,0.797531],[-65.396568,0.790531],[-65.400168,0.781631],[-65.394868,0.774431],[-65.399768,0.767131],[-65.395468,0.758331],[-65.397368,0.749831],[-65.413868,0.755131],[-65.415668,0.747631],[-65.410568,0.739731],[-65.421368,0.732131],[-65.421868,0.723331],[-65.423268,0.715831],[-65.423568,0.707931],[-65.429968,0.703331],[-65.438568,0.700331],[-65.442968,0.689831],[-65.452668,0.685531],[-65.461868,0.684731],[-65.472268,0.682631],[-65.480268,0.686931],[-65.484668,0.678931],[-65.494968,0.678331],[-65.500468,0.672131],[-65.512968,0.670331],[-65.522168,0.670931],[-65.530468,0.668131],[-65.533468,0.659131],[-65.540568,0.648931],[-65.545768,0.655531],[-65.553568,0.658331],[-65.557968,0.669931],[-65.564068,0.675731],[-65.567168,0.685731],[-65.571068,0.692731],[-65.572968,0.701131],[-65.576268,0.711731],[-65.584868,0.714731],[-65.591268,0.721631],[-65.583768,0.736331],[-65.575768,0.744731],[-65.575768,0.756131],[-65.573568,0.764331],[-65.564068,0.770031],[-65.556168,0.777731],[-65.548568,0.774731],[-65.544168,0.783331],[-65.539568,0.796831],[-65.540668,0.805331],[-65.530968,0.805331],[-65.524068,0.824731],[-65.527668,0.833331],[-65.521268,0.840131],[-65.514368,0.837231],[-65.508768,0.843531],[-65.500168,0.842531],[-65.503568,0.852431],[-65.504068,0.861131],[-65.505168,0.868531],[-65.493568,0.882031],[-65.496068,0.889331],[-65.504168,0.887731],[-65.512168,0.885331],[-65.513868,0.895531],[-65.509168,0.905131],[-65.508268,0.915531],[-65.521868,0.929531],[-65.524468,0.937531],[-65.530868,0.942731],[-65.536368,0.948131],[-65.530868,0.956131],[-65.537068,0.961131],[-65.541768,0.975531],[-65.549668,0.975531],[-65.557968,0.975931],[-65.561368,0.985931],[-65.557768,0.993331],[-65.567168,0.994331],[-65.572168,0.985131],[-65.581268,1.000531],[-65.585468,1.008931],[-65.591168,1.002331],[-65.598468,1.005131],[-65.606668,1.004531],[-65.610268,1.014331],[-65.617468,1.009931],[-65.627168,1.009231],[-65.626868,1.001331],[-65.624968,0.989031],[-65.637668,1.000531],[-65.644868,1.005331],[-65.652668,1.011931],[-65.663068,1.006931],[-65.669268,1.002531],[-65.674668,0.996931],[-65.678568,0.988931],[-65.686568,0.990931],[-65.688568,0.999731],[-65.695468,1.004131],[-65.705768,1.003131],[-65.712268,0.997531],[-65.721668,1.001731],[-65.730668,1.001331],[-65.739368,0.999731],[-65.745768,0.990731],[-65.750768,0.982531],[-65.761068,0.981031],[-65.764868,0.973131],[-65.767168,0.964131],[-65.774068,0.959131],[-65.779868,0.964131],[-65.787768,0.961931],[-65.793868,0.954131],[-65.801568,0.953631],[-65.809068,0.949131],[-65.816268,0.952131],[-65.822168,0.945531],[-65.831568,0.940131],[-65.842268,0.938431],[-65.862268,0.930931],[-65.879668,0.932631],[-65.873768,0.922131],[-65.879168,0.913131],[-65.881368,0.901631],[-65.890168,0.896131],[-65.897168,0.892231],[-65.901168,0.883731],[-65.908368,0.888931],[-65.916968,0.889331],[-65.925368,0.891331],[-65.936568,0.882031],[-65.935768,0.870731],[-65.933268,0.862531],[-65.938568,0.855931],[-65.945968,0.852731],[-65.948468,0.844331],[-65.951768,0.836331],[-65.957668,0.828931],[-65.964768,0.819931],[-65.964368,0.809531],[-65.971368,0.806131],[-65.977768,0.811931],[-65.983268,0.806231],[-65.992968,0.807131],[-66.000568,0.802631],[-66.017168,0.800131],[-66.037868,0.812031],[-66.055868,0.802331],[-66.069968,0.805131],[-66.074568,0.798731],[-66.075768,0.787331],[-66.078268,0.779131],[-66.076268,0.768331],[-66.088468,0.759131],[-66.102068,0.763631],[-66.114468,0.763531],[-66.121068,0.752031],[-66.132168,0.747931],[-66.141268,0.748131],[-66.150968,0.744531],[-66.160968,0.746231],[-66.163168,0.756131],[-66.172468,0.761331],[-66.182668,0.767231],[-66.188068,0.778731],[-66.202168,0.781331],[-66.212868,0.780731],[-66.318468,0.755131],[-66.595368,0.996231],[-66.599268,0.999731],[-66.856768,1.230331],[-67.009868,1.188431],[-67.087968,1.166831],[-67.084768,1.183331],[-67.082868,1.203531],[-67.087268,1.231731],[-67.085968,1.256131],[-67.089768,1.288131],[-67.088768,1.325031],[-67.085368,1.351031],[-67.083268,1.361831],[-67.080368,1.401331],[-67.072368,1.442731],[-67.073168,1.472931],[-67.078568,1.499831],[-67.077968,1.544531],[-67.079068,1.587231],[-67.081468,1.606531],[-67.081468,1.638331],[-67.086268,1.658031],[-67.099468,1.681931],[-67.101368,1.706331],[-67.099568,1.719331],[-67.097268,1.732731],[-67.106368,1.750631],[-67.115568,1.767731],[-67.124068,1.798931],[-67.139668,1.826731],[-67.156968,1.848831],[-67.174268,1.857131],[-67.206268,1.858231],[-67.218068,1.859931],[-67.228868,1.860931],[-67.243868,1.858231],[-67.260668,1.865431],[-67.278068,1.875631],[-67.286668,1.888631],[-67.289468,1.899431],[-67.300068,1.926731],[-67.310468,1.966631],[-67.316668,2.001331],[-67.326068,2.029731],[-67.330468,2.061231],[-67.329868,2.078331],[-67.336768,2.098131],[-67.336468,2.116731],[-67.339068,2.152131],[-67.340468,2.186731],[-67.343468,2.205531],[-67.364468,2.230331],[-67.389268,2.244031],[-67.406468,2.246231],[-67.410268,2.246731],[-67.430868,2.241731],[-67.438568,2.233231],[-67.442468,2.220131],[-67.448168,2.208131],[-67.462368,2.199131],[-67.479568,2.191131],[-67.500568,2.179031],[-67.521868,2.170331],[-67.540068,2.155931],[-67.550868,2.141731],[-67.555768,2.120931],[-67.557968,2.106031],[-67.572768,2.097931],[-67.586268,2.085531],[-67.590168,2.074531],[-67.597668,2.055931],[-67.607068,2.035531],[-67.619768,2.023731],[-67.642968,2.020331],[-67.671668,2.020331],[-67.697068,2.023531],[-67.725068,2.034131],[-67.749868,2.040131],[-67.768968,2.039331],[-67.779468,2.031131],[-67.798168,1.998131],[-67.808568,1.985331],[-67.818168,1.966931],[-67.832068,1.957231],[-67.835468,1.945531],[-67.851468,1.930331],[-67.859668,1.920331],[-67.882668,1.902931],[-67.902368,1.898531],[-67.912868,1.897931],[-67.910368,1.880631],[-67.906768,1.866131],[-67.911768,1.855931],[-67.922568,1.852331],[-67.924668,1.843531],[-67.930768,1.834931],[-67.941268,1.830731],[-67.961268,1.830531],[-67.973468,1.832931],[-67.983668,1.842331],[-68.004068,1.860331],[-68.024868,1.885531],[-68.043368,1.899731],[-68.053668,1.899431],[-68.065268,1.897931],[-68.079368,1.902531],[-68.087568,1.901331],[-68.094068,1.910231],[-68.103068,1.936231],[-68.114468,1.944231],[-68.119768,1.957731],[-68.122468,1.965831],[-68.129468,1.971631],[-68.133868,1.979531],[-68.140668,1.984931],[-68.150968,1.980931],[-68.158468,1.977731],[-68.166168,1.984631],[-68.182968,1.978931],[-68.188268,1.970931],[-68.198868,1.960831],[-68.208668,1.961731],[-68.218668,1.953531],[-68.223168,1.945631],[-68.235368,1.937931],[-68.243268,1.926831],[-68.245768,1.915531],[-68.247368,1.906331],[-68.249168,1.898531],[-68.250468,1.890031],[-68.253268,1.878731],[-68.259568,1.867631],[-68.263568,1.860731],[-68.263568,1.853131],[-68.266568,1.846131],[-68.266868,1.827231],[-68.257068,1.829331],[-68.244168,1.831331],[-68.233668,1.829931],[-68.235368,1.819131],[-68.239068,1.807131],[-68.244768,1.794931],[-68.240568,1.779331],[-68.236468,1.772531],[-68.228668,1.772731],[-68.220368,1.773331],[-68.208968,1.778331],[-68.202568,1.786331],[-68.187668,1.784731],[-68.176868,1.774131],[-68.169468,1.770731],[-68.175868,1.760931],[-68.179168,1.753731],[-68.159468,1.750131],[-68.157368,1.741931],[-68.156768,1.731731],[-68.164968,1.731731],[-68.697168,1.732131],[-69.000768,1.732131],[-69.178568,1.733531],[-69.357468,1.730331],[-69.384868,1.729631],[-69.393168,1.724131],[-69.393468,1.734631],[-69.401268,1.737931],[-69.413168,1.746531],[-69.418168,1.752331],[-69.426068,1.756931],[-69.434068,1.758131],[-69.441968,1.759731],[-69.451068,1.764331],[-69.457568,1.759231],[-69.468668,1.761931],[-69.474468,1.768631],[-69.478668,1.760031],[-69.486868,1.762131],[-69.487468,1.772231],[-69.495168,1.766931],[-69.503268,1.772131],[-69.512868,1.774431],[-69.520168,1.778931],[-69.536968,1.784931],[-69.552268,1.791731],[-69.561368,1.784331],[-69.567368,1.777331],[-69.575168,1.775831],[-69.582568,1.770331],[-69.592268,1.767731],[-69.603068,1.764331],[-69.620868,1.752531],[-69.628868,1.750631],[-69.630668,1.743331],[-69.636468,1.736831],[-69.645668,1.743531],[-69.657568,1.736831],[-69.669568,1.738531],[-69.681868,1.735731],[-69.683068,1.747031],[-69.691568,1.745531],[-69.700768,1.743931],[-69.711168,1.749531],[-69.717068,1.743731],[-69.728068,1.746931],[-69.741668,1.744531],[-69.752168,1.738931],[-69.757668,1.733531],[-69.768968,1.724331],[-69.777868,1.723531],[-69.785068,1.714931],[-69.785668,1.704931],[-69.795068,1.710131],[-69.805768,1.709731],[-69.821768,1.705031],[-69.830368,1.709431],[-69.826768,1.716331],[-69.842568,1.720931],[-69.844468,1.576931],[-69.845568,1.499731],[-69.844868,1.294131],[-69.844468,1.136331],[-69.844268,1.085531],[-69.835368,1.078331],[-69.830168,1.072131],[-69.812168,1.069231],[-69.801968,1.073731],[-69.795268,1.090231],[-69.784768,1.101531],[-69.766068,1.113231],[-69.754668,1.118731],[-69.740068,1.120731],[-69.730668,1.115931],[-69.721768,1.119831],[-69.710468,1.126531],[-69.706468,1.112531],[-69.709268,1.090231],[-69.706168,1.082231],[-69.698268,1.083631],[-69.684668,1.076431],[-69.671468,1.087731],[-69.660568,1.090831],[-69.649368,1.095531],[-69.640768,1.094931],[-69.631068,1.094931],[-69.621668,1.102431],[-69.606768,1.105331],[-69.594568,1.096531],[-69.587568,1.088531],[-69.566368,1.080731],[-69.556368,1.081731],[-69.542868,1.081331],[-69.532268,1.079731],[-69.521268,1.079731],[-69.509968,1.082231],[-69.493368,1.087931],[-69.483668,1.086731],[-69.472768,1.086531],[-69.457068,1.081931],[-69.447968,1.083631],[-69.437368,1.080731],[-69.439368,1.071731],[-69.435468,1.057631],[-69.416468,1.052531],[-69.404268,1.064131],[-69.395068,1.074931],[-69.385968,1.082731],[-69.379568,1.095231],[-69.367568,1.092731],[-69.361168,1.088031],[-69.348968,1.093731],[-69.331168,1.096331],[-69.321568,1.095731],[-69.308268,1.079131],[-69.306568,1.071331],[-69.295568,1.070331],[-69.289768,1.062531],[-69.277568,1.066931],[-69.265368,1.064231],[-69.253468,1.054831],[-69.246068,1.047731],[-69.236868,1.042131],[-69.225368,1.030231],[-69.213668,1.020831],[-69.205768,1.010031],[-69.203568,0.999731],[-69.220568,0.985131],[-69.211768,0.979931],[-69.206068,0.972331],[-69.194868,0.968531],[-69.183868,0.964431],[-69.173568,0.959931],[-69.163368,0.946131],[-69.171468,0.942331],[-69.185868,0.939231],[-69.190568,0.932631],[-69.189568,0.922531],[-69.184668,0.915531],[-69.185168,0.902931],[-69.171768,0.902731],[-69.162768,0.895831],[-69.154468,0.888131],[-69.143968,0.886331],[-69.135768,0.877331],[-69.136468,0.863731],[-69.142168,0.852331],[-69.154068,0.854331],[-69.166068,0.851931],[-69.165268,0.843031],[-69.165868,0.828531],[-69.159868,0.817531],[-69.151468,0.809831],[-69.150968,0.799931],[-69.146868,0.791531],[-69.145068,0.783031],[-69.152368,0.765331],[-69.160968,0.760331],[-69.172868,0.763131],[-69.177768,0.755631],[-69.187268,0.749331],[-69.186268,0.733231],[-69.180268,0.724531],[-69.166368,0.718831],[-69.153668,0.710131],[-69.144368,0.702531],[-69.136568,0.685731],[-69.132068,0.678731],[-69.127468,0.668231],[-69.120268,0.659531],[-69.115068,0.649931],[-69.116868,0.635531],[-69.127968,0.640331],[-69.133568,0.646331],[-69.145068,0.644931],[-69.156668,0.651331],[-69.170768,0.651631],[-69.180768,0.655931],[-69.193168,0.651531],[-69.195768,0.637331],[-69.201568,0.631531],[-69.200468,0.617331],[-69.203568,0.605331],[-69.208168,0.607531],[-69.212868,0.609631],[-69.226168,0.605731],[-69.238868,0.602431],[-69.244068,0.608731],[-69.254968,0.604531],[-69.265768,0.608231],[-69.276168,0.603131],[-69.285368,0.602131],[-69.298268,0.603531],[-69.293968,0.611131],[-69.285968,0.619731],[-69.292468,0.635331],[-69.287568,0.646531],[-69.301668,0.649331],[-69.311568,0.637531],[-69.325168,0.632831],[-69.340568,0.639331],[-69.341668,0.627531],[-69.352068,0.615331],[-69.358968,0.611831],[-69.368668,0.627531],[-69.382368,0.636431],[-69.391068,0.645831],[-69.400368,0.654931],[-69.408968,0.661031],[-69.409868,0.674731],[-69.420268,0.685331],[-69.428068,0.690931],[-69.436968,0.694231],[-69.437468,0.709731],[-69.446068,0.714331],[-69.459368,0.715731],[-69.462568,0.729131],[-69.469268,0.735331],[-69.481368,0.735731],[-69.497968,0.727931],[-69.505968,0.721331],[-69.510268,0.712531],[-69.519368,0.713531],[-69.527868,0.707731],[-69.534868,0.700031],[-69.532568,0.692331],[-69.533968,0.683731],[-69.539468,0.682131],[-69.543368,0.680931],[-69.555868,0.683131],[-69.566368,0.684131],[-69.566668,0.672531],[-69.579868,0.666531],[-69.590968,0.659131],[-69.591168,0.647931],[-69.594768,0.638931],[-69.605668,0.638931],[-69.606768,0.629231],[-69.618668,0.629531],[-69.626868,0.636431],[-69.634568,0.636431],[-69.640168,0.646731],[-69.643968,0.653531],[-69.647968,0.660931],[-69.656268,0.666031],[-69.666668,0.666831],[-69.679768,0.670731],[-69.690768,0.665531],[-69.691668,0.653531],[-69.699568,0.652931],[-69.711168,0.648031],[-69.717968,0.643131],[-69.720068,0.632831],[-69.721668,0.626131],[-69.725268,0.616931],[-69.740068,0.614931],[-69.750168,0.622031],[-69.764068,0.605531],[-69.775068,0.601731],[-69.785968,0.595731],[-69.792068,0.585831],[-69.800068,0.580731],[-69.809368,0.572331],[-69.813068,0.582931],[-69.819668,0.586131],[-69.831568,0.590131],[-69.837668,0.583531],[-69.847868,0.586931],[-69.860368,0.579931],[-69.870168,0.579931],[-69.887368,0.575031],[-69.895368,0.583131],[-69.906668,0.581331],[-69.914768,0.585331],[-69.925568,0.564831],[-69.932468,0.560131],[-69.942368,0.554331],[-69.955668,0.556731],[-69.966168,0.561231],[-69.971368,0.570931],[-69.987268,0.571331],[-69.999068,0.570331],[-69.991368,0.561131],[-69.995168,0.547731],[-70.004168,0.540931],[-70.015968,0.539331],[-70.022968,0.543531],[-70.026468,0.557931],[-70.035568,0.561531],[-70.043568,0.558931],[-70.043968,0.550431],[-70.044468,0.457231],[-70.045668,0.247531],[-70.046368,0.109131],[-70.046368,0.068331],[-70.046468,-0.000469],[-70.045868,-0.009869],[-70.046368,-0.020969],[-70.045068,-0.030869],[-70.043668,-0.105269],[-70.041368,-0.113869],[-70.041668,-0.124069],[-70.045668,-0.137069],[-70.048668,-0.145669],[-70.058068,-0.158369],[-70.057968,-0.169269],[-70.057268,-0.186669],[-70.051968,-0.192969],[-70.043568,-0.197369],[-70.037568,-0.203969],[-70.030168,-0.209069],[-70.020168,-0.218169],[-70.006068,-0.225369],[-69.996968,-0.234669],[-69.990268,-0.251669],[-69.981368,-0.258569],[-69.975368,-0.269769],[-69.963768,-0.284869],[-69.953568,-0.292169],[-69.948268,-0.301469],[-69.937168,-0.306169],[-69.934068,-0.316569],[-69.929368,-0.323469],[-69.923068,-0.331469],[-69.915568,-0.335969],[-69.907568,-0.342369],[-69.900168,-0.346369],[-69.892468,-0.349169],[-69.883468,-0.344269],[-69.874368,-0.346769],[-69.861968,-0.348169],[-69.854268,-0.346369],[-69.844868,-0.345869],[-69.837868,-0.354269],[-69.835968,-0.361669],[-69.832268,-0.368369],[-69.823468,-0.380969],[-69.813868,-0.381269],[-69.805868,-0.387369],[-69.793968,-0.391569],[-69.791968,-0.400169],[-69.783468,-0.401569],[-69.775368,-0.400169],[-69.769268,-0.407369],[-69.762068,-0.410669],[-69.755468,-0.421069],[-69.749668,-0.427169],[-69.742468,-0.429769],[-69.739168,-0.440469],[-69.733268,-0.446269],[-69.725968,-0.448569],[-69.717668,-0.455069],[-69.708968,-0.457569],[-69.699068,-0.458769],[-69.691068,-0.462369],[-69.686268,-0.468969],[-69.678268,-0.469769],[-69.670368,-0.471669],[-69.663168,-0.474269],[-69.652968,-0.480569],[-69.645068,-0.482869],[-69.646168,-0.491569],[-69.643768,-0.499469],[-69.633268,-0.498369],[-69.622368,-0.501669],[-69.615468,-0.506269],[-69.611068,-0.513469],[-69.611968,-0.521769],[-69.614668,-0.529069],[-69.614668,-0.540269],[-69.606368,-0.544969],[-69.603468,-0.553669],[-69.596168,-0.559469],[-69.593468,-0.568569],[-69.596468,-0.577369],[-69.598168,-0.589069],[-69.604968,-0.599969],[-69.594768,-0.606369],[-69.590468,-0.613269],[-69.588168,-0.622669],[-69.580068,-0.620169],[-69.573268,-0.626069],[-69.575168,-0.636769],[-69.564168,-0.639669],[-69.573768,-0.649769],[-69.575768,-0.658369],[-69.582068,-0.666769],[-69.584768,-0.674769],[-69.585168,-0.684369],[-69.593668,-0.692769],[-69.598468,-0.699669],[-69.602368,-0.706869],[-69.605268,-0.713969],[-69.603868,-0.721669],[-69.611968,-0.723669],[-69.622668,-0.732069],[-69.618068,-0.740869],[-69.626368,-0.749669],[-69.616568,-0.750469],[-69.619768,-0.759169],[-69.609968,-0.761569],[-69.611968,-0.770169],[-69.603068,-0.778769],[-69.595068,-0.787069],[-69.588368,-0.790869],[-69.583768,-0.801569],[-69.574268,-0.801069],[-69.568768,-0.806869],[-69.563068,-0.812269],[-69.559468,-0.822869],[-69.566268,-0.833269],[-69.573568,-0.842269],[-69.561568,-0.848669],[-69.555068,-0.855269],[-69.548068,-0.860869],[-69.538468,-0.861969],[-69.534568,-0.870469],[-69.527868,-0.878269],[-69.523168,-0.886269],[-69.525868,-0.911969],[-69.527368,-0.921869],[-69.523468,-0.929669],[-69.516468,-0.933569],[-69.507968,-0.932969],[-69.502168,-0.942469],[-69.492968,-0.948869],[-69.484968,-0.950669],[-69.478668,-0.957269],[-69.470868,-0.960469],[-69.463468,-0.967269],[-69.462668,-0.976469],[-69.464068,-0.984169],[-69.456268,-0.993269],[-69.449968,-0.998269],[-69.440968,-0.994669],[-69.430268,-0.997669],[-69.421468,-1.000469],[-69.421068,-1.012169],[-69.428368,-1.015669],[-69.436568,-1.026869],[-69.444068,-1.027869],[-69.443468,-1.036669],[-69.433368,-1.039769],[-69.424268,-1.049469],[-69.423968,-1.058869],[-69.428368,-1.072969],[-69.427468,-1.075769],[-69.424968,-1.083569],[-69.410868,-1.101969],[-69.400868,-1.113869],[-69.396768,-1.123369],[-69.395668,-1.132669],[-69.398368,-1.144369],[-69.405868,-1.149469],[-69.413168,-1.157669],[-69.414468,-1.174169],[-69.414168,-1.186669],[-69.419168,-1.198769],[-69.425768,-1.210669],[-69.430268,-1.224569],[-69.431168,-1.232869],[-69.430768,-1.241869],[-69.425468,-1.257169],[-69.418568,-1.266769],[-69.416968,-1.269769],[-69.413868,-1.276169],[-69.411368,-1.281269],[-69.408468,-1.293169],[-69.408368,-1.306869],[-69.409568,-1.324669],[-69.409468,-1.333769],[-69.404568,-1.344469],[-69.399868,-1.353869],[-69.399868,-1.367569],[-69.399868,-1.370769],[-69.409868,-1.373369],[-69.418168,-1.378069],[-69.422468,-1.380669],[-69.429168,-1.386869],[-69.434468,-1.398269],[-69.436968,-1.417469],[-69.436568,-1.429769],[-69.435168,-1.446269],[-69.435268,-1.457869],[-69.440968,-1.470969],[-69.450268,-1.478969],[-69.457568,-1.493369],[-69.456468,-1.508569],[-69.453568,-1.521769],[-69.453268,-1.531269],[-69.485568,-1.720569],[-69.516768,-1.899769],[-69.534468,-2.000469],[-69.613368,-2.440169],[-69.620868,-2.482869],[-69.689468,-2.871569],[-69.690268,-2.876269],[-69.699268,-2.926969],[-69.700368,-2.933069],[-69.712268,-3.000569],[-69.742468,-3.165869],[-69.798668,-3.474269],[-69.799368,-3.477869],[-69.799968,-3.480669],[-69.800468,-3.483669],[-69.825368,-3.619769],[-69.837568,-3.686569],[-69.858568,-3.803569],[-69.883468,-3.941969],[-69.893968,-4.000569],[-69.912268,-4.096669],[-69.921368,-4.143969],[-69.931568,-4.197869],[-69.933268,-4.206869],[-69.935168,-4.216469],[-69.943468,-4.216569],[-69.946268,-4.220269],[-69.951068,-4.227369],[-69.952068,-4.233869],[-69.952668,-4.238569],[-69.952968,-4.243069],[-69.953268,-4.246569],[-69.953768,-4.253369],[-69.954668,-4.266269],[-69.957568,-4.284169],[-69.963768,-4.300569],[-69.968668,-4.310169],[-69.975268,-4.320469],[-69.980868,-4.327369],[-69.985268,-4.328269],[-69.989668,-4.329369],[-70.001668,-4.332169],[-70.011368,-4.336569],[-70.019068,-4.345569],[-70.025868,-4.349869],[-70.032768,-4.355069],[-70.039568,-4.353369],[-70.043668,-4.352269],[-70.044468,-4.342869],[-70.050068,-4.334569],[-70.063468,-4.329869],[-70.072768,-4.329369],[-70.079268,-4.324869],[-70.081268,-4.308369],[-70.071368,-4.296869],[-70.081568,-4.291969],[-70.097568,-4.296469],[-70.103168,-4.288469],[-70.103668,-4.276169],[-70.107768,-4.264369],[-70.113568,-4.271169],[-70.112768,-4.283169],[-70.119468,-4.290269],[-70.128768,-4.293669],[-70.136868,-4.287069],[-70.144268,-4.282769],[-70.151768,-4.280169],[-70.155068,-4.282269],[-70.158168,-4.284469],[-70.161368,-4.296469],[-70.167468,-4.305869],[-70.168068,-4.314669],[-70.159768,-4.319869],[-70.152268,-4.325669],[-70.152368,-4.335469],[-70.160568,-4.339769],[-70.170068,-4.340869],[-70.178268,-4.347069],[-70.180468,-4.357869],[-70.186868,-4.364769],[-70.190168,-4.363269],[-70.195168,-4.363669],[-70.198168,-4.366069],[-70.205668,-4.361069],[-70.206468,-4.353069],[-70.206768,-4.348969],[-70.208968,-4.339469],[-70.208968,-4.328169],[-70.212668,-4.323569],[-70.216468,-4.319069],[-70.222368,-4.324269],[-70.234168,-4.323169],[-70.244068,-4.319869],[-70.255468,-4.318469],[-70.266768,-4.311969],[-70.272668,-4.301069],[-70.265368,-4.297469],[-70.257068,-4.296069],[-70.250268,-4.287069],[-70.255568,-4.277669],[-70.262868,-4.281769],[-70.272668,-4.288469],[-70.279468,-4.292469],[-70.286668,-4.295269],[-70.298268,-4.290669],[-70.289568,-4.282269],[-70.295768,-4.275869],[-70.307168,-4.269369],[-70.315968,-4.259569],[-70.312768,-4.250269],[-70.301368,-4.244769],[-70.290368,-4.241169],[-70.284868,-4.233869],[-70.290668,-4.213469],[-70.295068,-4.200469],[-70.292568,-4.184769],[-70.292268,-4.176469],[-70.298868,-4.166069],[-70.312468,-4.162769],[-70.318868,-4.156769],[-70.325968,-4.146269],[-70.331768,-4.156269],[-70.329668,-4.168069],[-70.332568,-4.178369],[-70.340868,-4.186869],[-70.351368,-4.180769],[-70.361168,-4.169469],[-70.366568,-4.160969],[-70.369168,-4.152569],[-70.375768,-4.141769],[-70.387068,-4.137669],[-70.396268,-4.142169],[-70.419168,-4.140369],[-70.430568,-4.134969],[-70.439468,-4.134069],[-70.446668,-4.141869],[-70.440568,-4.150369],[-70.437368,-4.158469],[-70.443568,-4.165269],[-70.452168,-4.162769],[-70.460668,-4.162769],[-70.463468,-4.173069],[-70.473368,-4.177269],[-70.480268,-4.171969],[-70.487568,-4.161769],[-70.495168,-4.166369],[-70.500468,-4.187669],[-70.503468,-4.197069],[-70.515168,-4.196269],[-70.521468,-4.190769],[-70.515368,-4.178869],[-70.509368,-4.163469],[-70.515768,-4.149769],[-70.520768,-4.142669],[-70.535068,-4.139269],[-70.549268,-4.137169],[-70.546168,-4.150069],[-70.553868,-4.158069],[-70.561568,-4.161469],[-70.565268,-4.168969],[-70.579668,-4.173069],[-70.586568,-4.178869],[-70.593368,-4.182669],[-70.604668,-4.187769],[-70.615068,-4.191369],[-70.624868,-4.192769],[-70.632768,-4.187669],[-70.638768,-4.179669],[-70.638868,-4.166169],[-70.635468,-4.159469],[-70.631368,-4.152869],[-70.626068,-4.143169],[-70.623868,-4.131769],[-70.631568,-4.126669],[-70.640668,-4.127669],[-70.653468,-4.127169],[-70.655468,-4.137369],[-70.654768,-4.148669],[-70.655668,-4.166969],[-70.663368,-4.158669],[-70.665668,-4.146569],[-70.675268,-4.145069],[-70.672768,-4.166969],[-70.674968,-4.178369],[-70.676168,-4.190169],[-70.680868,-4.199669],[-70.686668,-4.199569],[-70.692668,-4.199069],[-70.700968,-4.188369],[-70.710068,-4.188769],[-70.719868,-4.187969],[-70.729968,-4.184369],[-70.737168,-4.178669],[-70.748368,-4.165269],[-70.758868,-4.159869],[-70.767868,-4.161169],[-70.775868,-4.166669],[-70.791468,-4.186069],[-70.808068,-4.183369],[-70.812768,-4.196369],[-70.825668,-4.202969],[-70.830168,-4.218769],[-70.820268,-4.232169],[-70.830468,-4.240069],[-70.832868,-4.250169],[-70.844068,-4.253869],[-70.856368,-4.247669],[-70.868568,-4.250569],[-70.865868,-4.259969],[-70.859668,-4.269369],[-70.849868,-4.278669],[-70.858668,-4.283669],[-70.872668,-4.289169],[-70.879368,-4.292569],[-70.883468,-4.300769],[-70.882968,-4.309069],[-70.879968,-4.322669],[-70.889568,-4.325469],[-70.899868,-4.324569],[-70.908768,-4.333169],[-70.913068,-4.345269],[-70.915568,-4.353969],[-70.925068,-4.361869],[-70.931868,-4.356469],[-70.937168,-4.363669],[-70.936868,-4.375169],[-70.943068,-4.385969],[-70.949268,-4.379469],[-70.962568,-4.379069],[-70.973068,-4.375569],[-70.976468,-4.362869],[-70.984768,-4.352369],[-70.996868,-4.345169],[-70.999968,-4.354469],[-70.989468,-4.361969],[-70.988368,-4.369669],[-70.995768,-4.384569],[-71.007468,-4.387669],[-71.016268,-4.383769],[-71.023968,-4.384869],[-71.030868,-4.397069],[-71.043168,-4.400969],[-71.050468,-4.395669],[-71.047768,-4.383769],[-71.048068,-4.374969],[-71.057168,-4.373269],[-71.058568,-4.386569],[-71.079568,-4.396269],[-71.086168,-4.389969],[-71.079668,-4.379869],[-71.088668,-4.375569],[-71.100568,-4.377369],[-71.110868,-4.384169],[-71.109368,-4.401269],[-71.117668,-4.410569],[-71.126868,-4.402069],[-71.130968,-4.392869],[-71.137868,-4.386569],[-71.153768,-4.383069],[-71.153368,-4.392069],[-71.150368,-4.399869],[-71.160268,-4.406169],[-71.160568,-4.395069],[-71.167168,-4.390469],[-71.172868,-4.395669],[-71.184768,-4.392669],[-71.189168,-4.399069],[-71.188768,-4.414569],[-71.193468,-4.421369],[-71.201368,-4.426069],[-71.205368,-4.413769],[-71.208968,-4.400369],[-71.202168,-4.388969],[-71.207068,-4.379869],[-71.217068,-4.379969],[-71.219768,-4.387369],[-71.220668,-4.405569],[-71.230568,-4.407769],[-71.229168,-4.397369],[-71.228868,-4.387669],[-71.239068,-4.387069],[-71.251268,-4.391269],[-71.258768,-4.387969],[-71.268968,-4.386269],[-71.278068,-4.387969],[-71.271568,-4.396869],[-71.269868,-4.416069],[-71.266568,-4.428669],[-71.272368,-4.434469],[-71.285968,-4.442969],[-71.298268,-4.437469],[-71.301868,-4.430569],[-71.310268,-4.417769],[-71.323968,-4.421469],[-71.318168,-4.432969],[-71.307468,-4.440269],[-71.303268,-4.451769],[-71.314568,-4.458469],[-71.313868,-4.449069],[-71.319968,-4.444569],[-71.327568,-4.442769],[-71.336168,-4.442169],[-71.345368,-4.444669],[-71.347068,-4.434369],[-71.353868,-4.427969],[-71.359468,-4.433669],[-71.369968,-4.435769],[-71.376268,-4.431169],[-71.388568,-4.428069],[-71.396268,-4.432669],[-71.402268,-4.438069],[-71.406268,-4.448169],[-71.409768,-4.451869],[-71.415668,-4.458469],[-71.417768,-4.466169],[-71.430768,-4.466669],[-71.436868,-4.460469],[-71.437368,-4.451269],[-71.449868,-4.451769],[-71.459868,-4.439369],[-71.473168,-4.439569],[-71.481368,-4.443069],[-71.480368,-4.455069],[-71.489368,-4.459869],[-71.497968,-4.449569],[-71.509368,-4.448269],[-71.509568,-4.457269],[-71.507168,-4.465469],[-71.498768,-4.471669],[-71.494668,-4.478569],[-71.494768,-4.487469],[-71.502668,-4.486869],[-71.510368,-4.477869],[-71.521568,-4.468669],[-71.537468,-4.467269],[-71.542168,-4.473869],[-71.541768,-4.484269],[-71.554468,-4.481069],[-71.564068,-4.496069],[-71.569568,-4.507169],[-71.582668,-4.520169],[-71.598368,-4.531569],[-71.605268,-4.533969],[-71.613068,-4.533369],[-71.614168,-4.530369],[-71.616968,-4.528769],[-71.619768,-4.527569],[-71.623268,-4.527869],[-71.625968,-4.525969],[-71.634168,-4.519069],[-71.634268,-4.510969],[-71.624168,-4.507069],[-71.618668,-4.494669],[-71.615768,-4.486769],[-71.614168,-4.479269],[-71.619368,-4.470269],[-71.626568,-4.474969],[-71.630268,-4.482869],[-71.626968,-4.491169],[-71.637668,-4.497169],[-71.644368,-4.503769],[-71.653768,-4.508169],[-71.654868,-4.495469],[-71.663668,-4.504969],[-71.671168,-4.509669],[-71.679668,-4.504369],[-71.689968,-4.502069],[-71.698568,-4.506769],[-71.704268,-4.512969],[-71.714868,-4.512169],[-71.721968,-4.506569],[-71.728368,-4.498869],[-71.739468,-4.497369],[-71.741068,-4.485369],[-71.748368,-4.472569],[-71.755168,-4.477269],[-71.749868,-4.486769],[-71.751868,-4.495269],[-71.761068,-4.503569],[-71.772368,-4.504969],[-71.771568,-4.495269],[-71.776968,-4.487469],[-71.788868,-4.491169],[-71.800468,-4.490869],[-71.811068,-4.497669],[-71.825368,-4.499469],[-71.838968,-4.505269],[-71.847668,-4.509669],[-71.856368,-4.513169],[-71.860368,-4.520669],[-71.868268,-4.526769],[-71.875268,-4.519269],[-71.882768,-4.516069],[-71.889068,-4.521569],[-71.885368,-4.533769],[-71.893568,-4.538169],[-71.903968,-4.528169],[-71.902568,-4.543869],[-71.910268,-4.548869],[-71.910968,-4.539269],[-71.919968,-4.540969],[-71.926968,-4.545069],[-71.921668,-4.554769],[-71.923168,-4.562469],[-71.932168,-4.561569],[-71.930068,-4.571269],[-71.936368,-4.576869],[-71.946268,-4.575769],[-71.947068,-4.584669],[-71.941668,-4.593369],[-71.949868,-4.597669],[-71.945268,-4.604969],[-71.962268,-4.608069],[-71.969568,-4.605269],[-71.976768,-4.608069],[-71.981768,-4.617469],[-71.984468,-4.625469],[-71.993068,-4.623869],[-72.000568,-4.625869],[-72.005168,-4.632169],[-72.005968,-4.641569],[-72.013568,-4.638169],[-72.018268,-4.631369],[-72.026768,-4.628469],[-72.039268,-4.623269],[-72.037568,-4.637369],[-72.042868,-4.644069],[-72.045268,-4.651569],[-72.053368,-4.651569],[-72.062668,-4.653469],[-72.082068,-4.672769],[-72.076868,-4.679469],[-72.090968,-4.688769],[-72.096668,-4.694969],[-72.100268,-4.703169],[-72.107468,-4.706869],[-72.115768,-4.713769],[-72.127068,-4.723369],[-72.133868,-4.717669],[-72.141068,-4.713669],[-72.145768,-4.721469],[-72.152268,-4.726169],[-72.160368,-4.727869],[-72.161368,-4.736469],[-72.169468,-4.734969],[-72.184668,-4.744069],[-72.192768,-4.746569],[-72.187968,-4.754069],[-72.192368,-4.762069],[-72.200968,-4.757369],[-72.206168,-4.751269],[-72.214568,-4.756869],[-72.216468,-4.767869],[-72.224868,-4.772269],[-72.231368,-4.776769],[-72.239968,-4.778669],[-72.247168,-4.780869],[-72.249468,-4.772969],[-72.254068,-4.765369],[-72.260168,-4.772669],[-72.263168,-4.781269],[-72.271568,-4.795869],[-72.280168,-4.798669],[-72.283068,-4.790569],[-72.277568,-4.783669],[-72.291768,-4.779269],[-72.299668,-4.776169],[-72.308368,-4.783469],[-72.320668,-4.777669],[-72.327668,-4.781169],[-72.323568,-4.787769],[-72.324068,-4.796869],[-72.336868,-4.797269],[-72.347768,-4.806169],[-72.356668,-4.805269],[-72.371568,-4.807269],[-72.376268,-4.827569],[-72.383468,-4.831269],[-72.381368,-4.844169],[-72.384868,-4.850969],[-72.383568,-4.862169],[-72.385668,-4.872169],[-72.399068,-4.875169],[-72.404168,-4.881069],[-72.412368,-4.884869],[-72.418668,-4.878069],[-72.427168,-4.881069],[-72.420368,-4.887669],[-72.419768,-4.897869],[-72.430268,-4.902669],[-72.433268,-4.911269],[-72.440768,-4.909769],[-72.444268,-4.901469],[-72.452068,-4.903669],[-72.455068,-4.895669],[-72.464068,-4.896469],[-72.468768,-4.903469],[-72.463968,-4.909869],[-72.457868,-4.915269],[-72.458168,-4.925469],[-72.468068,-4.925569],[-72.476668,-4.929369],[-72.476668,-4.938069],[-72.475968,-4.945769],[-72.481668,-4.953469],[-72.488668,-4.950469],[-72.485068,-4.942669],[-72.490568,-4.936869],[-72.495468,-4.944069],[-72.498068,-4.953869],[-72.508568,-4.950669],[-72.505668,-4.942069],[-72.512468,-4.938769],[-72.521768,-4.936869],[-72.523668,-4.945769],[-72.528068,-4.958169],[-72.539168,-4.961569],[-72.547568,-4.958469],[-72.553868,-4.963269],[-72.557968,-4.970169],[-72.564868,-4.974569],[-72.569568,-4.981469],[-72.577368,-4.985269],[-72.586468,-4.985269],[-72.592568,-4.991569],[-72.606668,-4.995569],[-72.602268,-5.002769],[-72.603068,-5.010969],[-72.609468,-5.016569],[-72.611068,-5.037069],[-72.622268,-5.045369],[-72.629468,-5.051969],[-72.639668,-5.058069],[-72.641468,-5.050069],[-72.648668,-5.054169],[-72.652568,-5.063769],[-72.667868,-5.055169],[-72.673168,-5.054969],[-72.678368,-5.054769],[-72.692068,-5.064569],[-72.699968,-5.059369],[-72.707568,-5.052869],[-72.712368,-5.058869],[-72.720868,-5.059069],[-72.725668,-5.065469],[-72.734268,-5.064069],[-72.735768,-5.072169],[-72.730268,-5.077969],[-72.736868,-5.082669],[-72.739168,-5.091469],[-72.753568,-5.082669],[-72.757968,-5.090669],[-72.760268,-5.098069],[-72.766068,-5.103669],[-72.774068,-5.098869],[-72.780368,-5.103369],[-72.782768,-5.112469],[-72.790968,-5.112569],[-72.798568,-5.115069],[-72.814568,-5.109669],[-72.815768,-5.134569],[-72.815968,-5.138469],[-72.822168,-5.142069],[-72.828268,-5.145469],[-72.835468,-5.148369],[-72.843468,-5.149869],[-72.847568,-5.142569],[-72.856168,-5.143469],[-72.862168,-5.148369],[-72.865068,-5.155669],[-72.872968,-5.155969],[-72.877168,-5.162469],[-72.884968,-5.166769],[-72.884368,-5.174669],[-72.877368,-5.177469],[-72.877068,-5.185569],[-72.868868,-5.199869],[-72.873768,-5.206569],[-72.865768,-5.209769],[-72.863668,-5.217069],[-72.865068,-5.225369],[-72.866968,-5.232869],[-72.863568,-5.239769],[-72.871668,-5.253069],[-72.869068,-5.266369],[-72.864968,-5.272169],[-72.865568,-5.276969],[-72.866668,-5.280169],[-72.868868,-5.289169],[-72.875568,-5.293369],[-72.870068,-5.299369],[-72.879868,-5.310769],[-72.888168,-5.313869],[-72.886068,-5.322669],[-72.890368,-5.330769],[-72.898668,-5.336969],[-72.898668,-5.346169],[-72.903668,-5.353169],[-72.909268,-5.366069],[-72.906968,-5.375169],[-72.914568,-5.377969],[-72.920668,-5.382369],[-72.920368,-5.390169],[-72.923668,-5.397869],[-72.929068,-5.405369],[-72.929368,-5.413069],[-72.935868,-5.418669],[-72.935868,-5.426169],[-72.940168,-5.434169],[-72.942468,-5.441369],[-72.950968,-5.444669],[-72.948468,-5.451769],[-72.951068,-5.459369],[-72.956868,-5.465369],[-72.959068,-5.482769],[-72.957968,-5.491969],[-72.963668,-5.498069],[-72.962868,-5.506369],[-72.959668,-5.514669],[-72.960468,-5.523469],[-72.956168,-5.532269],[-72.953768,-5.540069],[-72.957168,-5.556669],[-72.954568,-5.561369],[-72.951868,-5.566269],[-72.958468,-5.570769],[-72.955668,-5.577969],[-72.950968,-5.584269],[-72.958468,-5.588169],[-72.966268,-5.593169],[-72.969568,-5.601169],[-72.973168,-5.608069],[-72.974168,-5.615869],[-72.974468,-5.624069],[-72.967268,-5.629569],[-72.967368,-5.637069],[-72.965968,-5.645369],[-72.961768,-5.654569],[-72.965168,-5.661669],[-72.971668,-5.657269],[-72.978568,-5.660569],[-72.986168,-5.662269],[-72.990268,-5.669269],[-72.988268,-5.673269],[-72.986368,-5.678369],[-72.987268,-5.681869],[-72.988268,-5.685769],[-72.984968,-5.694269],[-72.992668,-5.695769],[-72.992168,-5.703769],[-73.003868,-5.708169],[-72.998768,-5.714769],[-73.002768,-5.721369],[-73.010468,-5.724469],[-73.021568,-5.731769],[-73.020668,-5.739469],[-73.026968,-5.745269],[-73.034768,-5.750569],[-73.042468,-5.749069],[-73.047468,-5.756069],[-73.049668,-5.765969],[-73.055868,-5.771769],[-73.053668,-5.780569],[-73.055468,-5.789169],[-73.064068,-5.789269],[-73.079268,-5.805869],[-73.095568,-5.813269],[-73.093468,-5.821669],[-73.101368,-5.821769],[-73.110268,-5.824269],[-73.116968,-5.828569],[-73.117468,-5.837669],[-73.116368,-5.845869],[-73.114668,-5.853669],[-73.126568,-5.855069],[-73.137468,-5.858569],[-73.143168,-5.863569],[-73.150968,-5.863369],[-73.156968,-5.869369],[-73.160968,-5.876569],[-73.155868,-5.882469],[-73.169968,-5.892669],[-73.169968,-5.900669],[-73.168168,-5.909269],[-73.174168,-5.915569],[-73.173668,-5.923869],[-73.181568,-5.922869],[-73.182968,-5.932569],[-73.187768,-5.938769],[-73.185768,-5.946869],[-73.186568,-5.955669],[-73.181668,-5.962669],[-73.184068,-5.970269],[-73.194068,-5.984269],[-73.192168,-5.991669],[-73.189068,-5.999169],[-73.202568,-6.005269],[-73.210168,-6.004969],[-73.216168,-6.011769],[-73.217868,-6.019769],[-73.224768,-6.024269],[-73.229968,-6.030669],[-73.237468,-6.032069],[-73.237768,-6.044769],[-73.234668,-6.055169],[-73.233868,-6.063869],[-73.231668,-6.073469],[-73.239668,-6.079569],[-73.235068,-6.085769],[-73.241068,-6.091769],[-73.245468,-6.099469],[-73.250768,-6.104969],[-73.250168,-6.112469],[-73.252668,-6.129869],[-73.249368,-6.137069],[-73.250168,-6.144869],[-73.245468,-6.152069],[-73.240568,-6.158169],[-73.232568,-6.163369],[-73.226668,-6.171369],[-73.220568,-6.178569],[-73.218168,-6.186669],[-73.216968,-6.203269],[-73.220368,-6.212269],[-73.219168,-6.221669],[-73.209068,-6.226469],[-73.204868,-6.233269],[-73.197668,-6.239669],[-73.196268,-6.247169],[-73.192768,-6.256269],[-73.185168,-6.257069],[-73.178368,-6.262369],[-73.172868,-6.268669],[-73.165368,-6.274069],[-73.161968,-6.283069],[-73.166068,-6.290569],[-73.161468,-6.298969],[-73.160368,-6.307969],[-73.160968,-6.317969],[-73.158168,-6.327169],[-73.150968,-6.321669],[-73.148168,-6.329869],[-73.146768,-6.339469],[-73.147168,-6.348369],[-73.145468,-6.356169],[-73.139268,-6.363069],[-73.137768,-6.371869],[-73.133868,-6.378869],[-73.133468,-6.387369],[-73.125268,-6.389669],[-73.116968,-6.394869],[-73.112468,-6.400869],[-73.108868,-6.410169],[-73.110868,-6.419969],[-73.119368,-6.423869],[-73.122468,-6.431869],[-73.118068,-6.439869],[-73.117768,-6.449869],[-73.123568,-6.454669],[-73.123768,-6.463269],[-73.132168,-6.468169],[-73.134068,-6.477269],[-73.139268,-6.483869],[-73.141768,-6.491169],[-73.138468,-6.497969],[-73.142568,-6.506269],[-73.149068,-6.511069],[-73.153368,-6.520069],[-73.159268,-6.524769],[-73.166768,-6.525969],[-73.172568,-6.518169],[-73.184168,-6.527569],[-73.182468,-6.539969],[-73.190168,-6.545269],[-73.198168,-6.544469],[-73.198168,-6.553969],[-73.205168,-6.556869],[-73.200368,-6.564669],[-73.205668,-6.572769],[-73.212868,-6.577869],[-73.219568,-6.573169],[-73.221968,-6.564669],[-73.230068,-6.570469],[-73.233168,-6.577869],[-73.246968,-6.584269],[-73.255668,-6.582669],[-73.262968,-6.586569],[-73.272268,-6.586769],[-73.280368,-6.585369],[-73.288068,-6.587369],[-73.293368,-6.592669],[-73.301568,-6.594769],[-73.310768,-6.592569],[-73.318168,-6.594169],[-73.325768,-6.594269],[-73.331768,-6.599869],[-73.337568,-6.593069],[-73.345968,-6.595169],[-73.354468,-6.594869],[-73.359768,-6.602469],[-73.367268,-6.608069],[-73.374668,-6.611069],[-73.379168,-6.617269],[-73.380768,-6.625169],[-73.380668,-6.634969],[-73.387968,-6.637869],[-73.405068,-6.642869],[-73.412768,-6.642069],[-73.419668,-6.647369],[-73.428268,-6.652269],[-73.436968,-6.650969],[-73.444068,-6.657269],[-73.451468,-6.660969],[-73.458668,-6.665569],[-73.467068,-6.666769],[-73.475968,-6.665269],[-73.482468,-6.671069],[-73.490568,-6.672769],[-73.498268,-6.671869],[-73.506768,-6.674669],[-73.516468,-6.677269],[-73.522568,-6.682469],[-73.529068,-6.686369],[-73.536168,-6.693169],[-73.542468,-6.701069],[-73.550368,-6.706569],[-73.555568,-6.713969],[-73.559668,-6.720869],[-73.576468,-6.726469],[-73.584368,-6.724569],[-73.592568,-6.729969],[-73.601468,-6.733569],[-73.606968,-6.739069],[-73.615768,-6.741169],[-73.621268,-6.746969],[-73.628068,-6.752169],[-73.634868,-6.756369],[-73.642868,-6.762069],[-73.645168,-6.770469],[-73.648468,-6.778169],[-73.653768,-6.784169],[-73.658468,-6.792769],[-73.663168,-6.798969],[-73.666768,-6.806369],[-73.675068,-6.810869],[-73.681568,-6.817969],[-73.685168,-6.826769],[-73.690468,-6.834269],[-73.697368,-6.839369],[-73.707168,-6.839569],[-73.710768,-6.854469],[-73.711468,-6.862569],[-73.716968,-6.870469],[-73.721968,-6.889569],[-73.735368,-6.902269],[-73.741468,-6.909469],[-73.743368,-6.916769],[-73.747268,-6.926069],[-73.752768,-6.932969],[-73.754568,-6.941869],[-73.750568,-6.950669],[-73.746068,-6.958169],[-73.742768,-6.965169],[-73.740868,-6.974869],[-73.738368,-6.982069],[-73.737568,-6.991369],[-73.738568,-6.999369],[-73.729968,-7.006769],[-73.727468,-7.014569],[-73.726768,-7.022569],[-73.733568,-7.036669],[-73.738668,-7.045269],[-73.746368,-7.051069],[-73.763168,-7.071369],[-73.770068,-7.078569],[-73.774268,-7.085169],[-73.782368,-7.089869],[-73.788468,-7.098069],[-73.796668,-7.103169],[-73.801568,-7.112169],[-73.796668,-7.119369],[-73.791768,-7.125169],[-73.793568,-7.131369],[-73.785368,-7.141269],[-73.781968,-7.142169],[-73.777568,-7.145469],[-73.777268,-7.150769],[-73.775168,-7.156169],[-73.765968,-7.163069],[-73.759368,-7.173969],[-73.756568,-7.190969],[-73.755168,-7.197869],[-73.753268,-7.200969],[-73.748368,-7.206769],[-73.744668,-7.210069],[-73.732268,-7.215369],[-73.723868,-7.220869],[-73.713268,-7.234969],[-73.714768,-7.241669],[-73.715168,-7.247969],[-73.715868,-7.257469],[-73.715668,-7.267169],[-73.710868,-7.277369],[-73.703568,-7.285669],[-73.700668,-7.290569],[-73.698868,-7.295669],[-73.699868,-7.303869],[-73.703768,-7.309869],[-73.708968,-7.315469],[-73.711868,-7.321669],[-73.718368,-7.328869],[-73.728668,-7.335169],[-73.746868,-7.343669],[-73.755268,-7.346469],[-73.763868,-7.347369],[-73.759868,-7.340969],[-73.759968,-7.333769],[-73.765768,-7.331469],[-73.769568,-7.331469],[-73.779468,-7.335469],[-73.786768,-7.340069],[-73.794168,-7.343769],[-73.798668,-7.341169],[-73.807968,-7.336969],[-73.817068,-7.335069],[-73.823168,-7.335069],[-73.829568,-7.336469],[-73.842668,-7.343969],[-73.852068,-7.346969],[-73.855068,-7.351669],[-73.859968,-7.368669],[-73.862868,-7.373569],[-73.866868,-7.377369],[-73.869668,-7.378369],[-73.876568,-7.382169],[-73.890168,-7.377669],[-73.896568,-7.379369],[-73.909468,-7.377669],[-73.913468,-7.374369],[-73.918668,-7.365569],[-73.930868,-7.351969],[-73.935168,-7.351969],[-73.942768,-7.361369],[-73.951868,-7.346269],[-73.958668,-7.345069],[-73.963368,-7.347269],[-73.966168,-7.351669],[-73.967068,-7.359769],[-73.962968,-7.364069],[-73.961568,-7.370469],[-73.958668,-7.377769],[-73.948868,-7.394569],[-73.941568,-7.409469],[-73.930768,-7.423969],[-73.927468,-7.451569],[-73.924668,-7.460169],[-73.921868,-7.463969],[-73.919268,-7.465169],[-73.929168,-7.477569],[-73.932168,-7.486769],[-73.932768,-7.494069],[-73.941568,-7.513469],[-73.943168,-7.519369],[-73.948568,-7.526569],[-73.959268,-7.528169],[-73.968768,-7.531569],[-73.974268,-7.532269],[-73.986368,-7.530869],[-73.990468,-7.535869],[-73.989068,-7.543369],[-73.987768,-7.554769],[-73.981968,-7.566269],[-73.972768,-7.565569],[-73.968368,-7.567369],[-73.958168,-7.576569],[-73.950468,-7.585869],[-73.942368,-7.598469],[-73.937368,-7.601769],[-73.932268,-7.607869],[-73.922768,-7.612969],[-73.911668,-7.621869],[-73.908468,-7.624369],[-73.895668,-7.626969],[-73.888268,-7.631269],[-73.886268,-7.634569],[-73.886068,-7.650369],[-73.884968,-7.655169],[-73.879068,-7.661969],[-73.872968,-7.671069],[-73.857168,-7.677569],[-73.854168,-7.677269],[-73.849468,-7.674769],[-73.845268,-7.675069],[-73.842068,-7.677569],[-73.838968,-7.688269],[-73.832368,-7.696269],[-73.825668,-7.712569],[-73.821568,-7.717369],[-73.814568,-7.721169],[-73.809068,-7.722569],[-73.785968,-7.722369],[-73.759668,-7.730069],[-73.755268,-7.731969],[-73.740768,-7.733569],[-73.732068,-7.742169],[-73.722068,-7.748069],[-73.713168,-7.755469],[-73.705368,-7.758269],[-73.696368,-7.763169],[-73.693168,-7.771469],[-73.683768,-7.775969],[-73.681868,-7.789569],[-73.681868,-7.796069],[-73.683268,-7.805569],[-73.686868,-7.820569],[-73.686368,-7.828769],[-73.683868,-7.836769],[-73.683368,-7.842869],[-73.686968,-7.853969],[-73.693868,-7.859669],[-73.697968,-7.866869],[-73.703968,-7.872669],[-73.712968,-7.875469],[-73.741968,-7.872669],[-73.744668,-7.871369],[-73.747268,-7.867269],[-73.757368,-7.857569],[-73.761068,-7.857569],[-73.767168,-7.860869],[-73.766068,-7.870169],[-73.761268,-7.879069],[-73.752768,-7.890669],[-73.757968,-7.894669],[-73.770768,-7.897569],[-73.771868,-7.901969],[-73.770668,-7.904869],[-73.758868,-7.915269],[-73.750868,-7.923369],[-73.746368,-7.935169],[-73.747168,-7.947069],[-73.745868,-7.953569],[-73.743368,-7.956169],[-73.736868,-7.958569],[-73.734268,-7.961269],[-73.731968,-7.966969],[-73.728668,-7.968969],[-73.724168,-7.965069],[-73.722768,-7.960069],[-73.717368,-7.959669],[-73.710868,-7.960669],[-73.703568,-7.959869],[-73.697468,-7.960169],[-73.692468,-7.963769],[-73.688568,-7.971369],[-73.685568,-7.983269],[-73.681968,-7.992269],[-73.678668,-8.003369],[-73.675868,-8.007769],[-73.663368,-8.008169],[-73.657868,-8.006869],[-73.649468,-8.002469],[-73.645768,-8.002969],[-73.639868,-8.007669],[-73.634668,-8.014069],[-73.626868,-8.021469],[-73.623768,-8.028369],[-73.623368,-8.039269],[-73.626568,-8.046869],[-73.630568,-8.053269],[-73.633468,-8.056669],[-73.631568,-8.059969],[-73.624168,-8.063269],[-73.615368,-8.069869],[-73.612168,-8.074569],[-73.606968,-8.086469],[-73.593768,-8.097369],[-73.585368,-8.122769],[-73.589068,-8.130169],[-73.591168,-8.142169],[-73.589868,-8.153469],[-73.585768,-8.164169],[-73.585368,-8.172769],[-73.586468,-8.178069],[-73.586468,-8.186369],[-73.592568,-8.198169],[-73.595268,-8.206569],[-73.591768,-8.206869],[-73.581568,-8.207869],[-73.577668,-8.211269],[-73.577068,-8.214469],[-73.574368,-8.217869],[-73.573568,-8.225569],[-73.571568,-8.229769],[-73.563768,-8.231469],[-73.560168,-8.235269],[-73.557168,-8.245869],[-73.553268,-8.253769],[-73.550568,-8.255669],[-73.540268,-8.262669],[-73.536368,-8.269869],[-73.535968,-8.277269],[-73.539568,-8.287569],[-73.540068,-8.294969],[-73.537268,-8.301469],[-73.531768,-8.307769],[-73.529568,-8.313269],[-73.534768,-8.328469],[-73.537768,-8.334069],[-73.536368,-8.345869],[-73.529268,-8.351369],[-73.527268,-8.356169],[-73.523268,-8.359369],[-73.516068,-8.369669],[-73.505268,-8.377969],[-73.493868,-8.378469],[-73.489768,-8.379169],[-73.485368,-8.379169],[-73.486068,-8.385769],[-73.482768,-8.391069],[-73.472268,-8.393169],[-73.457968,-8.397969],[-73.452968,-8.400969],[-73.446868,-8.402869],[-73.443568,-8.406769],[-73.433368,-8.412069],[-73.421468,-8.406969],[-73.412268,-8.410569],[-73.406668,-8.419169],[-73.405668,-8.434069],[-73.401568,-8.447369],[-73.394368,-8.467269],[-73.386568,-8.469569],[-73.381768,-8.468169],[-73.376668,-8.462269],[-73.373368,-8.466669],[-73.370168,-8.463969],[-73.364968,-8.463369],[-73.360268,-8.465169],[-73.355368,-8.465669],[-73.347068,-8.470569],[-73.335368,-8.467069],[-73.331268,-8.471769],[-73.331768,-8.476669],[-73.327668,-8.481469],[-73.328568,-8.502469],[-73.327968,-8.517069],[-73.331768,-8.527569],[-73.334068,-8.540069],[-73.334368,-8.552469],[-73.337368,-8.570969],[-73.341268,-8.578569],[-73.342868,-8.591769],[-73.343468,-8.596469],[-73.343768,-8.601669],[-73.341268,-8.615769],[-73.338168,-8.617769],[-73.319568,-8.614069],[-73.313768,-8.616069],[-73.311568,-8.621669],[-73.312268,-8.632069],[-73.308868,-8.633169],[-73.301968,-8.629969],[-73.299668,-8.632169],[-73.301868,-8.636469],[-73.297468,-8.650869],[-73.290268,-8.661669],[-73.284768,-8.666369],[-73.275668,-8.669269],[-73.264268,-8.677569],[-73.257168,-8.678869],[-73.252968,-8.682769],[-73.247768,-8.687269],[-73.237768,-8.686569],[-73.231668,-8.684669],[-73.221768,-8.679769],[-73.216268,-8.678869],[-73.208268,-8.680869],[-73.199568,-8.685869],[-73.194668,-8.686969],[-73.176068,-8.694269],[-73.165568,-8.699869],[-73.155368,-8.707669],[-73.149568,-8.714269],[-73.142368,-8.722669],[-73.140468,-8.727069],[-73.139068,-8.734969],[-73.137468,-8.742969],[-73.137668,-8.751269],[-73.138168,-8.759569],[-73.129068,-8.770469],[-73.123068,-8.774569],[-73.119768,-8.778469],[-73.113668,-8.786769],[-73.111468,-8.791769],[-73.111768,-8.815469],[-73.109468,-8.821569],[-73.099968,-8.832569],[-73.094168,-8.837269],[-73.080668,-8.840869],[-73.077968,-8.842669],[-73.077368,-8.860869],[-73.071268,-8.869769],[-73.068268,-8.877669],[-73.064168,-8.893469],[-73.056168,-8.906969],[-73.048168,-8.913669],[-73.042268,-8.915269],[-73.035168,-8.914469],[-73.024068,-8.913469],[-73.008868,-8.912769],[-72.999368,-8.916769],[-72.994668,-8.920269],[-72.992968,-8.924469],[-72.987768,-8.932469],[-72.984668,-8.942469],[-72.978868,-8.953869],[-72.974268,-8.967869],[-72.970568,-8.974769],[-72.966168,-8.979169],[-72.959568,-8.981669],[-72.944368,-8.983969],[-72.936868,-8.988269],[-72.939168,-8.996869],[-72.948468,-9.005669],[-72.952968,-9.007469],[-72.956868,-9.010669],[-72.955168,-9.016069],[-72.948268,-9.025469],[-72.945968,-9.034769],[-72.945268,-9.046769],[-72.941668,-9.062769],[-72.940968,-9.065969],[-72.940168,-9.068869],[-72.945768,-9.075669],[-72.945268,-9.087069],[-72.943868,-9.091969],[-72.943768,-9.102069],[-72.945568,-9.107269],[-72.946368,-9.113269],[-72.952868,-9.128769],[-72.964268,-9.146869],[-72.971668,-9.148169],[-72.980268,-9.155069],[-72.986068,-9.159869],[-73.001568,-9.164469],[-73.008568,-9.167769],[-73.013568,-9.171969],[-73.016268,-9.176569],[-73.016068,-9.182769],[-73.011068,-9.187469],[-72.994368,-9.191069],[-72.994968,-9.194269],[-73.001268,-9.199569],[-73.003468,-9.203469],[-73.007368,-9.206469],[-73.019068,-9.218969],[-73.021868,-9.225869],[-73.025968,-9.229169],[-73.039868,-9.236169],[-73.044968,-9.236869],[-73.053368,-9.226169],[-73.056168,-9.225269],[-73.061068,-9.227069],[-73.065468,-9.230569],[-73.079368,-9.238269],[-73.086568,-9.244469],[-73.091968,-9.261569],[-73.095068,-9.266069],[-73.108068,-9.275369],[-73.111368,-9.279469],[-73.110868,-9.283169],[-73.104268,-9.295269],[-73.100968,-9.298969],[-73.101668,-9.304969],[-73.107168,-9.307469],[-73.119468,-9.309469],[-73.127968,-9.312469],[-73.139268,-9.321769],[-73.147368,-9.333269],[-73.156668,-9.350869],[-73.163668,-9.354169],[-73.186868,-9.360569],[-73.190468,-9.366869],[-73.191668,-9.386569],[-73.193468,-9.392869],[-73.198568,-9.397869],[-73.210368,-9.406469],[-73.211868,-9.411669],[-73.207668,-9.411669],[-72.983668,-9.411669],[-72.980068,-9.411669],[-72.975968,-9.411669],[-72.819568,-9.411669],[-72.804368,-9.411669],[-72.798868,-9.411669],[-72.735768,-9.411669],[-72.720568,-9.411669],[-72.715868,-9.412069],[-72.715868,-9.415369],[-72.717668,-9.418669],[-72.716168,-9.421669],[-72.712568,-9.424669],[-72.710168,-9.429169],[-72.706568,-9.429969],[-72.702568,-9.431569],[-72.699568,-9.428069],[-72.697768,-9.431169],[-72.698468,-9.434469],[-72.694868,-9.433569],[-72.695268,-9.437669],[-72.692468,-9.435869],[-72.687968,-9.433869],[-72.683568,-9.432169],[-72.680068,-9.435869],[-72.676168,-9.438069],[-72.672468,-9.436169],[-72.668568,-9.437969],[-72.668868,-9.441669],[-72.665868,-9.441269],[-72.661368,-9.446069],[-72.656768,-9.446369],[-72.657268,-9.449569],[-72.654168,-9.449969],[-72.651468,-9.445169],[-72.647668,-9.445969],[-72.644868,-9.445169],[-72.639668,-9.443069],[-72.635968,-9.443469],[-72.632768,-9.444069],[-72.629868,-9.443769],[-72.626968,-9.442769],[-72.624468,-9.444969],[-72.621568,-9.447069],[-72.619068,-9.450669],[-72.616168,-9.451569],[-72.612468,-9.448569],[-72.608868,-9.449969],[-72.604268,-9.451069],[-72.600868,-9.453569],[-72.596668,-9.455469],[-72.592668,-9.454269],[-72.589268,-9.455069],[-72.586568,-9.457169],[-72.582868,-9.458669],[-72.577368,-9.457969],[-72.576768,-9.462269],[-72.571268,-9.462569],[-72.566668,-9.460369],[-72.564868,-9.464569],[-72.560868,-9.462969],[-72.558768,-9.465969],[-72.553968,-9.466769],[-72.550468,-9.466169],[-72.545768,-9.466469],[-72.541468,-9.467669],[-72.539768,-9.471469],[-72.537568,-9.468769],[-72.535968,-9.472369],[-72.531668,-9.473069],[-72.531168,-9.476369],[-72.527968,-9.479269],[-72.526968,-9.483569],[-72.523168,-9.485569],[-72.522168,-9.489369],[-72.517368,-9.490569],[-72.516068,-9.487969],[-72.514368,-9.483969],[-72.510268,-9.484469],[-72.504968,-9.485369],[-72.502368,-9.481969],[-72.499068,-9.480669],[-72.495568,-9.483569],[-72.492568,-9.480269],[-72.488268,-9.479669],[-72.484768,-9.482769],[-72.481668,-9.484669],[-72.478968,-9.485769],[-72.474768,-9.483869],[-72.470268,-9.484969],[-72.467268,-9.485669],[-72.463968,-9.485869],[-72.460768,-9.485669],[-72.456468,-9.487869],[-72.452868,-9.484969],[-72.449968,-9.481769],[-72.446768,-9.481069],[-72.443868,-9.481769],[-72.441368,-9.479169],[-72.437168,-9.482169],[-72.432768,-9.481069],[-72.428268,-9.481369],[-72.426868,-9.483969],[-72.423968,-9.480669],[-72.420268,-9.480669],[-72.415568,-9.482269],[-72.412768,-9.481669],[-72.411168,-9.479169],[-72.407568,-9.476969],[-72.403668,-9.480369],[-72.398668,-9.483569],[-72.396868,-9.487269],[-72.392868,-9.486469],[-72.389268,-9.488269],[-72.387068,-9.491069],[-72.382468,-9.491669],[-72.376568,-9.494469],[-72.371568,-9.492269],[-72.368268,-9.489169],[-72.364668,-9.491869],[-72.363268,-9.495769],[-72.360268,-9.495169],[-72.356668,-9.494369],[-72.353868,-9.497169],[-72.351968,-9.500769],[-72.346768,-9.502669],[-72.343968,-9.504469],[-72.340968,-9.505969],[-72.339868,-9.510669],[-72.338968,-9.514669],[-72.340868,-9.518669],[-72.338268,-9.521469],[-72.335368,-9.520969],[-72.335068,-9.523969],[-72.332968,-9.528169],[-72.329268,-9.531969],[-72.327568,-9.534269],[-72.324568,-9.538069],[-72.320968,-9.541169],[-72.317668,-9.543369],[-72.312168,-9.544169],[-72.311268,-9.540969],[-72.306868,-9.539469],[-72.302568,-9.537069],[-72.299968,-9.533769],[-72.294668,-9.534769],[-72.290568,-9.535869],[-72.288868,-9.538169],[-72.287068,-9.540969],[-72.283768,-9.540269],[-72.282568,-9.543669],[-72.282268,-9.548569],[-72.282768,-9.553269],[-72.283968,-9.557469],[-72.283368,-9.561369],[-72.284868,-9.564869],[-72.285068,-9.568269],[-72.284268,-9.572169],[-72.284468,-9.577469],[-72.285268,-9.581869],[-72.285868,-9.585169],[-72.285568,-9.588469],[-72.284268,-9.591469],[-72.285168,-9.595269],[-72.288368,-9.600869],[-72.285868,-9.605269],[-72.282068,-9.608569],[-72.278768,-9.611469],[-72.275468,-9.614369],[-72.270468,-9.618269],[-72.265368,-9.619069],[-72.263868,-9.615569],[-72.259568,-9.614669],[-72.254968,-9.615069],[-72.252968,-9.619669],[-72.253568,-9.623569],[-72.255468,-9.626569],[-72.255968,-9.629369],[-72.257368,-9.632769],[-72.257968,-9.637369],[-72.259968,-9.640669],[-72.259868,-9.643969],[-72.258468,-9.647569],[-72.254568,-9.652269],[-72.251068,-9.655469],[-72.246668,-9.657369],[-72.247368,-9.662469],[-72.248768,-9.666069],[-72.248768,-9.670069],[-72.249768,-9.674469],[-72.251668,-9.677569],[-72.249968,-9.684069],[-72.251268,-9.692969],[-72.259368,-9.706469],[-72.263868,-9.712969],[-72.265068,-9.718769],[-72.264568,-9.721669],[-72.261868,-9.725969],[-72.264068,-9.730669],[-72.268968,-9.737169],[-72.270668,-9.743369],[-72.268668,-9.749369],[-72.264268,-9.752169],[-72.261468,-9.752969],[-72.256268,-9.752169],[-72.251568,-9.753769],[-72.248568,-9.760469],[-72.244368,-9.765069],[-72.233968,-9.763169],[-72.230268,-9.763269],[-72.226368,-9.765069],[-72.220868,-9.768669],[-72.214468,-9.773969],[-72.209068,-9.775369],[-72.201268,-9.773969],[-72.190468,-9.778069],[-72.186968,-9.779469],[-72.175268,-9.781769],[-72.158068,-9.791069],[-72.152868,-9.796669],[-72.150968,-9.798869],[-72.151568,-9.803969],[-72.155168,-9.811569],[-72.163868,-9.820469],[-72.165368,-9.827969],[-72.160668,-9.831869],[-72.157568,-9.834769],[-72.155068,-9.842069],[-72.155968,-9.854769],[-72.155068,-9.860369],[-72.152268,-9.865069],[-72.140668,-9.877469],[-72.142668,-9.882669],[-72.152368,-9.892969],[-72.153968,-9.897669],[-72.156668,-9.902269],[-72.166368,-9.909469],[-72.167268,-9.914269],[-72.173968,-9.921469],[-72.174368,-9.928669],[-72.172868,-9.934869],[-72.168168,-9.939169],[-72.160668,-9.939469],[-72.159868,-9.953269],[-72.155868,-9.960369],[-72.155668,-9.963669],[-72.157368,-9.968669],[-72.162268,-9.974169],[-72.169568,-9.978669],[-72.179668,-9.983869],[-72.181568,-9.991969],[-72.180468,-9.999969],[-72.023968,-9.999969],[-71.970668,-9.999969],[-71.861968,-9.999969],[-71.837068,-9.999969],[-71.826768,-9.999969],[-71.792168,-9.999969],[-71.719168,-9.999969],[-71.680268,-9.999969],[-71.677168,-9.999969],[-71.658168,-9.999969],[-71.585468,-9.999969],[-71.515468,-9.999969],[-71.431868,-9.999969],[-71.377368,-9.999969],[-71.374468,-9.996569],[-71.368868,-9.989669],[-71.363968,-9.984969],[-71.357468,-9.989469],[-71.354668,-9.987969],[-71.352868,-9.976469],[-71.348368,-9.973069],[-71.338768,-9.971969],[-71.322468,-9.985669],[-71.317668,-9.991169],[-71.307968,-9.991969],[-71.299668,-9.989169],[-71.291468,-9.984969],[-71.285368,-9.985069],[-71.282268,-9.983869],[-71.271168,-9.978169],[-71.259068,-9.978069],[-71.254668,-9.971669],[-71.252968,-9.963969],[-71.246568,-9.961969],[-71.240368,-9.966469],[-71.227468,-9.969269],[-71.210768,-9.966269],[-71.205668,-9.947169],[-71.193868,-9.938069],[-71.187368,-9.919669],[-71.181368,-9.917469],[-71.180068,-9.910669],[-71.171668,-9.887969],[-71.166168,-9.883869],[-71.163068,-9.875269],[-71.132368,-9.854769],[-71.128068,-9.852069],[-71.124468,-9.851669],[-71.119968,-9.851769],[-71.115368,-9.852469],[-71.112268,-9.852869],[-71.107468,-9.852769],[-71.102768,-9.851769],[-71.101368,-9.848369],[-71.099568,-9.845569],[-71.096668,-9.844569],[-71.093168,-9.841969],[-71.089368,-9.840169],[-71.085468,-9.839269],[-71.082868,-9.835469],[-71.080768,-9.832269],[-71.078568,-9.830469],[-71.076368,-9.827169],[-71.071868,-9.827169],[-71.067968,-9.826869],[-71.063468,-9.825469],[-71.059868,-9.824569],[-71.056868,-9.820969],[-71.054068,-9.818069],[-71.050868,-9.816269],[-71.047468,-9.817069],[-71.043068,-9.818869],[-71.040068,-9.818869],[-71.037268,-9.817469],[-71.033168,-9.815169],[-71.029768,-9.815569],[-71.026568,-9.817169],[-71.022968,-9.818269],[-71.019368,-9.816269],[-71.015168,-9.817069],[-71.009868,-9.816269],[-71.006068,-9.817169],[-71.002368,-9.816969],[-70.999068,-9.818569],[-70.994368,-9.816869],[-70.992568,-9.814469],[-70.991668,-9.811369],[-70.992168,-9.808369],[-70.992768,-9.803669],[-70.991368,-9.799269],[-70.991068,-9.793869],[-70.990368,-9.789269],[-70.986368,-9.788469],[-70.984968,-9.784769],[-70.983868,-9.781269],[-70.981468,-9.778669],[-70.981768,-9.775769],[-70.980368,-9.772069],[-70.978868,-9.768569],[-70.976168,-9.764669],[-70.974468,-9.760969],[-70.973168,-9.758169],[-70.970568,-9.756569],[-70.966768,-9.755169],[-70.962968,-9.750569],[-70.959268,-9.749169],[-70.957568,-9.746669],[-70.954968,-9.744969],[-70.953168,-9.741969],[-70.948968,-9.742669],[-70.945968,-9.742269],[-70.941668,-9.742969],[-70.938268,-9.743369],[-70.935468,-9.742269],[-70.932168,-9.740769],[-70.928568,-9.741469],[-70.925068,-9.741369],[-70.922768,-9.738569],[-70.920268,-9.736069],[-70.918068,-9.732469],[-70.914868,-9.728569],[-70.912068,-9.725969],[-70.908468,-9.722369],[-70.905968,-9.718969],[-70.903768,-9.715969],[-70.902668,-9.713269],[-70.898168,-9.712069],[-70.896568,-9.707369],[-70.896568,-9.702669],[-70.893168,-9.700669],[-70.891768,-9.697169],[-70.890068,-9.693569],[-70.888568,-9.691069],[-70.886768,-9.688769],[-70.882668,-9.688869],[-70.880568,-9.685469],[-70.880168,-9.680869],[-70.876668,-9.678669],[-70.875468,-9.675069],[-70.871868,-9.673669],[-70.869168,-9.669469],[-70.868668,-9.664969],[-70.864468,-9.663469],[-70.861168,-9.660869],[-70.858068,-9.659769],[-70.855668,-9.656769],[-70.853468,-9.654869],[-70.849868,-9.653769],[-70.846668,-9.656169],[-70.842568,-9.655169],[-70.839368,-9.655969],[-70.836568,-9.652569],[-70.836468,-9.649469],[-70.835768,-9.646469],[-70.834368,-9.643469],[-70.831068,-9.645769],[-70.828168,-9.643469],[-70.824268,-9.643769],[-70.821068,-9.642069],[-70.815968,-9.642069],[-70.811968,-9.639269],[-70.808368,-9.640669],[-70.804768,-9.642669],[-70.799968,-9.640469],[-70.794268,-9.636269],[-70.793168,-9.632769],[-70.790668,-9.630169],[-70.792068,-9.626669],[-70.789768,-9.624169],[-70.785868,-9.621569],[-70.786768,-9.618069],[-70.786168,-9.613569],[-70.782368,-9.611969],[-70.779268,-9.608969],[-70.775368,-9.609969],[-70.773368,-9.606669],[-70.767068,-9.605869],[-70.767068,-9.601269],[-70.762868,-9.602469],[-70.758268,-9.603169],[-70.756068,-9.599169],[-70.755168,-9.595869],[-70.756268,-9.591969],[-70.757168,-9.587869],[-70.757068,-9.582969],[-70.757168,-9.578469],[-70.753768,-9.578169],[-70.754868,-9.574969],[-70.752368,-9.571369],[-70.749468,-9.568169],[-70.753768,-9.567669],[-70.751568,-9.564169],[-70.748868,-9.560469],[-70.745168,-9.561069],[-70.742468,-9.558869],[-70.738268,-9.558069],[-70.736368,-9.561569],[-70.733068,-9.564069],[-70.730568,-9.565469],[-70.729968,-9.568769],[-70.727868,-9.566369],[-70.725068,-9.565169],[-70.722268,-9.562269],[-70.724168,-9.560169],[-70.722668,-9.557469],[-70.724768,-9.555569],[-70.720968,-9.554669],[-70.717968,-9.553569],[-70.716268,-9.550069],[-70.712868,-9.546069],[-70.708968,-9.545769],[-70.703468,-9.543669],[-70.700968,-9.541969],[-70.698168,-9.539769],[-70.693468,-9.538869],[-70.692368,-9.534869],[-70.688468,-9.534469],[-70.684168,-9.531169],[-70.681568,-9.533069],[-70.679368,-9.531169],[-70.675268,-9.528769],[-70.672168,-9.526169],[-70.669268,-9.523669],[-70.666768,-9.521469],[-70.664468,-9.519369],[-70.662468,-9.523369],[-70.660068,-9.520069],[-70.658468,-9.516469],[-70.656268,-9.513969],[-70.653968,-9.510369],[-70.652068,-9.512769],[-70.650068,-9.509869],[-70.650368,-9.506269],[-70.650668,-9.502969],[-70.650968,-9.499669],[-70.648468,-9.498269],[-70.645668,-9.497769],[-70.643168,-9.495269],[-70.639568,-9.496969],[-70.636468,-9.499069],[-70.635168,-9.494669],[-70.631368,-9.492769],[-70.634568,-9.489069],[-70.636068,-9.486369],[-70.632468,-9.484769],[-70.631368,-9.480669],[-70.628868,-9.478369],[-70.624668,-9.477069],[-70.623568,-9.473469],[-70.622268,-9.470069],[-70.619068,-9.471469],[-70.615568,-9.474469],[-70.615768,-9.469769],[-70.611768,-9.465969],[-70.611468,-9.460769],[-70.610868,-9.456269],[-70.607868,-9.457069],[-70.604668,-9.457869],[-70.598468,-9.458969],[-70.596168,-9.456469],[-70.596268,-9.452169],[-70.595668,-9.448169],[-70.596268,-9.444669],[-70.594568,-9.440969],[-70.590368,-9.440469],[-70.586468,-9.443869],[-70.583668,-9.442069],[-70.579968,-9.438869],[-70.575468,-9.436969],[-70.572468,-9.435769],[-70.569568,-9.437669],[-70.569568,-9.432669],[-70.565468,-9.431869],[-70.560468,-9.429969],[-70.557668,-9.433269],[-70.553268,-9.431869],[-70.548868,-9.433369],[-70.546668,-9.429669],[-70.544468,-9.426869],[-70.540668,-9.429969],[-70.537368,-9.432269],[-70.537568,-9.436169],[-70.534768,-9.434669],[-70.532268,-9.432269],[-70.528668,-9.429969],[-70.525868,-9.426869],[-70.524868,-9.429769],[-70.526568,-9.433869],[-70.523468,-9.433869],[-70.519268,-9.431569],[-70.519368,-9.428269],[-70.515368,-9.426469],[-70.511068,-9.424169],[-70.506368,-9.422769],[-70.502968,-9.423269],[-70.502168,-9.426069],[-70.496968,-9.424669],[-70.495068,-9.428069],[-70.494368,-9.433569],[-70.494468,-9.437469],[-70.496568,-9.441269],[-70.498868,-9.442969],[-70.502068,-9.444169],[-70.505968,-9.444969],[-70.509368,-9.445569],[-70.511068,-9.448169],[-70.509868,-9.452069],[-70.507768,-9.455069],[-70.505768,-9.457869],[-70.504068,-9.460869],[-70.506068,-9.464269],[-70.509968,-9.465069],[-70.513768,-9.464069],[-70.514968,-9.458769],[-70.519268,-9.457169],[-70.522568,-9.458969],[-70.521468,-9.461969],[-70.520368,-9.466969],[-70.519768,-9.473469],[-70.516068,-9.478069],[-70.513168,-9.480569],[-70.510668,-9.483069],[-70.508068,-9.485869],[-70.506368,-9.488269],[-70.504568,-9.490469],[-70.502668,-9.493069],[-70.502168,-9.496669],[-70.503468,-9.502369],[-70.505968,-9.504969],[-70.508468,-9.502969],[-70.510268,-9.499369],[-70.510468,-9.495769],[-70.512868,-9.492469],[-70.515368,-9.495769],[-70.515668,-9.499169],[-70.517168,-9.502069],[-70.519768,-9.504369],[-70.524068,-9.504869],[-70.527268,-9.501669],[-70.529868,-9.504469],[-70.529168,-9.509269],[-70.530568,-9.514269],[-70.534468,-9.515369],[-70.537768,-9.513769],[-70.541468,-9.512469],[-70.544568,-9.513869],[-70.546068,-9.516469],[-70.546468,-9.519369],[-70.546068,-9.523669],[-70.542168,-9.525469],[-70.537568,-9.529569],[-70.538068,-9.534169],[-70.540668,-9.536669],[-70.543868,-9.537869],[-70.548668,-9.538669],[-70.552968,-9.538169],[-70.557268,-9.537069],[-70.561568,-9.532369],[-70.563768,-9.529869],[-70.567768,-9.530169],[-70.569868,-9.532769],[-70.567168,-9.534769],[-70.564668,-9.536269],[-70.563068,-9.539469],[-70.564968,-9.543569],[-70.566868,-9.546969],[-70.568068,-9.549669],[-70.568168,-9.553369],[-70.565968,-9.555769],[-70.563068,-9.556369],[-70.559468,-9.556869],[-70.555868,-9.558769],[-70.553268,-9.565469],[-70.553368,-9.569569],[-70.556368,-9.573169],[-70.560168,-9.574569],[-70.567168,-9.571569],[-70.570168,-9.569069],[-70.572868,-9.564569],[-70.577068,-9.562969],[-70.581068,-9.565469],[-70.583968,-9.566969],[-70.587968,-9.565569],[-70.588368,-9.561669],[-70.586468,-9.558669],[-70.584668,-9.555169],[-70.586768,-9.550069],[-70.591268,-9.548069],[-70.595368,-9.550669],[-70.598468,-9.555469],[-70.599468,-9.559069],[-70.599468,-9.562669],[-70.595168,-9.564069],[-70.592068,-9.566969],[-70.588268,-9.570469],[-70.585868,-9.573469],[-70.586168,-9.576769],[-70.586768,-9.579669],[-70.586968,-9.583169],[-70.589468,-9.585869],[-70.585868,-9.587569],[-70.586568,-9.591969],[-70.587568,-9.596469],[-70.590668,-9.601269],[-70.593768,-9.603169],[-70.597568,-9.605669],[-70.597068,-9.608569],[-70.595568,-9.611069],[-70.592368,-9.616569],[-70.591268,-9.622169],[-70.589868,-9.625269],[-70.587668,-9.628769],[-70.587268,-9.632069],[-70.584268,-9.636369],[-70.583268,-9.640369],[-70.579568,-9.643669],[-70.577868,-9.647569],[-70.574868,-9.650069],[-70.573968,-9.654469],[-70.571768,-9.658369],[-70.569668,-9.661269],[-70.566268,-9.665569],[-70.562168,-9.667769],[-70.558068,-9.666769],[-70.553368,-9.667769],[-70.550768,-9.671069],[-70.548968,-9.675769],[-70.546368,-9.678569],[-70.542268,-9.680469],[-70.540568,-9.684469],[-70.538168,-9.689469],[-70.536668,-9.692769],[-70.536168,-9.696069],[-70.534468,-9.699369],[-70.533168,-9.702169],[-70.532368,-9.706169],[-70.530968,-9.709369],[-70.528668,-9.711969],[-70.525968,-9.714469],[-70.528368,-9.717569],[-70.526868,-9.720069],[-70.526768,-9.723069],[-70.527868,-9.725869],[-70.529468,-9.728469],[-70.532268,-9.732269],[-70.532868,-9.736069],[-70.532268,-9.739469],[-70.532768,-9.744369],[-70.534868,-9.747369],[-70.538468,-9.749969],[-70.538868,-9.753869],[-70.537468,-9.757069],[-70.535968,-9.760269],[-70.535868,-9.764269],[-70.538468,-9.767469],[-70.541768,-9.771469],[-70.544968,-9.774869],[-70.545368,-9.777869],[-70.548268,-9.779469],[-70.551868,-9.783469],[-70.554168,-9.785969],[-70.556968,-9.787769],[-70.560868,-9.788369],[-70.565168,-9.785369],[-70.569268,-9.783069],[-70.572068,-9.780469],[-70.574968,-9.777869],[-70.578268,-9.777969],[-70.581168,-9.780169],[-70.583668,-9.781969],[-70.585868,-9.786769],[-70.585468,-9.790669],[-70.587868,-9.795269],[-70.589268,-9.798669],[-70.591168,-9.802569],[-70.596268,-9.801169],[-70.600668,-9.800069],[-70.604268,-9.800069],[-70.607468,-9.800869],[-70.610068,-9.802469],[-70.612268,-9.805269],[-70.613868,-9.810569],[-70.615068,-9.815969],[-70.620168,-9.818069],[-70.623268,-9.820769],[-70.622268,-9.823769],[-70.621868,-9.827869],[-70.620768,-9.831469],[-70.619968,-10.078169],[-70.620468,-10.081469],[-70.620868,-10.095369],[-70.621068,-10.228169],[-70.620268,-10.359269],[-70.620268,-10.363569],[-70.620468,-10.424969],[-70.620568,-10.499969],[-70.620568,-10.508569],[-70.620568,-10.707569],[-70.620768,-10.714769],[-70.620868,-10.811069],[-70.620868,-10.821369],[-70.620868,-10.910669],[-70.620868,-10.999469],[-70.529868,-10.934469],[-70.528968,-10.931169],[-70.526168,-10.932169],[-70.522868,-10.934169],[-70.520668,-10.936269],[-70.519668,-10.939069],[-70.518168,-10.943469],[-70.516568,-10.945969],[-70.512368,-10.949869],[-70.508468,-10.951769],[-70.504368,-10.952169],[-70.501568,-10.955669],[-70.498768,-10.958469],[-70.495068,-10.962569],[-70.490368,-10.963669],[-70.486468,-10.964069],[-70.481168,-10.967869],[-70.478668,-10.971269],[-70.475968,-10.974769],[-70.473468,-10.979269],[-70.471168,-10.984269],[-70.468368,-10.987469],[-70.465368,-10.987469],[-70.462968,-10.989669],[-70.460468,-10.991169],[-70.457168,-10.993369],[-70.452468,-10.995869],[-70.450168,-10.999069],[-70.447868,-11.004069],[-70.445968,-11.007369],[-70.443768,-11.011069],[-70.441268,-11.014269],[-70.440768,-11.017369],[-70.439868,-11.020069],[-70.437668,-11.025069],[-70.438468,-11.028969],[-70.439968,-11.032769],[-70.437968,-11.036669],[-70.435568,-11.038469],[-70.432168,-11.039169],[-70.427568,-11.038469],[-70.422268,-11.038169],[-70.418368,-11.039269],[-70.414568,-11.040569],[-70.410568,-11.041669],[-70.408368,-11.043969],[-70.405368,-11.046069],[-70.401968,-11.045669],[-70.398168,-11.044969],[-70.395068,-11.044969],[-70.391468,-11.045369],[-70.386468,-11.046769],[-70.382668,-11.048569],[-70.380268,-11.051569],[-70.379368,-11.054669],[-70.376968,-11.056669],[-70.373868,-11.059069],[-70.369468,-11.057969],[-70.365768,-11.058669],[-70.361768,-11.059469],[-70.357768,-11.058869],[-70.354268,-11.058569],[-70.350568,-11.060869],[-70.347268,-11.064669],[-70.342668,-11.066269],[-70.339368,-11.065969],[-70.335468,-11.066669],[-70.332668,-11.065469],[-70.327068,-11.064669],[-70.322368,-11.065869],[-70.316568,-11.067669],[-70.313368,-11.068869],[-70.310168,-11.069569],[-70.306868,-11.069169],[-70.302168,-11.067669],[-70.299668,-11.065269],[-70.296768,-11.064569],[-70.292768,-11.064069],[-70.288668,-11.061169],[-70.285968,-11.057569],[-70.281268,-11.055769],[-70.277668,-11.056169],[-70.274368,-11.057769],[-70.270668,-11.057969],[-70.267068,-11.056169],[-70.264968,-11.052769],[-70.263168,-11.050469],[-70.259068,-11.051469],[-70.253868,-11.049369],[-70.248568,-11.048669],[-70.245068,-11.048369],[-70.242168,-11.046769],[-70.239468,-11.048169],[-70.236168,-11.048969],[-70.231168,-11.050769],[-70.228068,-11.048869],[-70.222768,-11.050369],[-70.218668,-11.049769],[-70.214368,-11.051569],[-70.212068,-11.049669],[-70.208268,-11.050469],[-70.204968,-11.051169],[-70.199968,-11.053069],[-70.197068,-11.051869],[-70.192668,-11.050369],[-70.189968,-11.048269],[-70.188768,-11.044469],[-70.179768,-11.042869],[-70.176868,-11.039169],[-70.174268,-11.040969],[-70.171368,-11.040869],[-70.168068,-11.040669],[-70.165068,-11.038869],[-70.161268,-11.040269],[-70.158068,-11.039569],[-70.156268,-11.032769],[-70.152268,-11.032269],[-70.149568,-11.030369],[-70.145968,-11.029869],[-70.141468,-11.028969],[-70.139268,-11.023169],[-70.133768,-11.021769],[-70.129868,-11.020469],[-70.126668,-11.015469],[-70.123768,-11.012169],[-70.121668,-11.009969],[-70.117768,-11.009669],[-70.114368,-11.008069],[-70.116868,-11.006369],[-70.114468,-11.004569],[-70.110368,-11.004069],[-70.107768,-11.007169],[-70.106768,-11.002769],[-70.107768,-10.998869],[-70.107768,-10.994769],[-70.103668,-10.994769],[-70.104168,-10.999069],[-70.101368,-10.998369],[-70.097568,-10.997669],[-70.095568,-10.993669],[-70.095168,-10.988969],[-70.090668,-10.986469],[-70.086468,-10.988869],[-70.083268,-10.985269],[-70.080368,-10.984969],[-70.079868,-10.989469],[-70.076868,-10.989169],[-70.072968,-10.990769],[-70.069668,-10.992569],[-70.065568,-10.991669],[-70.064168,-10.986769],[-70.060268,-10.986869],[-70.056968,-10.986869],[-70.052868,-10.985869],[-70.050468,-10.984369],[-70.047568,-10.979569],[-70.044768,-10.983169],[-70.044668,-10.978869],[-70.040368,-10.979269],[-70.037468,-10.978069],[-70.038068,-10.974769],[-70.035868,-10.971169],[-70.032068,-10.972769],[-70.029768,-10.975669],[-70.026568,-10.975969],[-70.025868,-10.971969],[-70.022368,-10.969269],[-70.017468,-10.968769],[-70.013468,-10.967669],[-70.011068,-10.965169],[-70.009068,-10.962869],[-70.005968,-10.963669],[-70.003568,-10.960469],[-69.999768,-10.961869],[-69.996868,-10.960369],[-69.995868,-10.957569],[-69.995868,-10.953469],[-69.994668,-10.950269],[-69.990768,-10.950769],[-69.988268,-10.952669],[-69.984768,-10.953169],[-69.983968,-10.949569],[-69.984468,-10.946369],[-69.982068,-10.942169],[-69.978468,-10.945269],[-69.975268,-10.947369],[-69.970968,-10.945169],[-69.967968,-10.941269],[-69.964068,-10.938869],[-69.960068,-10.938269],[-69.961568,-10.934469],[-69.957368,-10.934169],[-69.953768,-10.932269],[-69.953768,-10.926869],[-69.949868,-10.924669],[-69.946868,-10.923869],[-69.944068,-10.924669],[-69.940968,-10.924969],[-69.936368,-10.922469],[-69.932968,-10.920569],[-69.929668,-10.921969],[-69.924168,-10.923369],[-69.923668,-10.927469],[-69.923368,-10.930469],[-69.920668,-10.931569],[-69.917068,-10.929369],[-69.917468,-10.925069],[-69.914768,-10.922869],[-69.912068,-10.921469],[-69.907668,-10.921669],[-69.902868,-10.919769],[-69.898668,-10.919169],[-69.894368,-10.920769],[-69.890368,-10.921469],[-69.885968,-10.922569],[-69.882368,-10.922869],[-69.878068,-10.922869],[-69.875768,-10.926169],[-69.872668,-10.928369],[-69.868268,-10.926069],[-69.864968,-10.924769],[-69.861468,-10.925769],[-69.859968,-10.928569],[-69.857268,-10.931669],[-69.855368,-10.927469],[-69.854468,-10.924469],[-69.850968,-10.922869],[-69.846668,-10.922869],[-69.843068,-10.923869],[-69.839568,-10.927969],[-69.835468,-10.927269],[-69.831768,-10.928269],[-69.832168,-10.931669],[-69.829268,-10.932169],[-69.824668,-10.932069],[-69.820268,-10.930469],[-69.816268,-10.929369],[-69.812968,-10.928269],[-69.811968,-10.924469],[-69.809068,-10.924669],[-69.805468,-10.925269],[-69.801868,-10.925269],[-69.798968,-10.926069],[-69.797168,-10.930469],[-69.793968,-10.932269],[-69.791468,-10.930569],[-69.787068,-10.929369],[-69.783168,-10.931169],[-69.779068,-10.933569],[-69.774068,-10.931669],[-69.770668,-10.928669],[-69.768168,-10.930269],[-69.768768,-10.933069],[-69.771868,-10.934869],[-69.772868,-10.938469],[-69.768668,-10.939869],[-69.764268,-10.939369],[-69.759968,-10.938569],[-69.757768,-10.941069],[-69.755468,-10.944369],[-69.751968,-10.947669],[-69.750168,-10.950669],[-69.747168,-10.953869],[-69.746568,-10.958569],[-69.743668,-10.961469],[-69.739668,-10.963369],[-69.739368,-10.966569],[-69.740768,-10.969769],[-69.739168,-10.973369],[-69.734968,-10.973069],[-69.730668,-10.970369],[-69.726768,-10.966969],[-69.723368,-10.964469],[-69.719768,-10.967369],[-69.717668,-10.972769],[-69.711768,-10.973369],[-69.707568,-10.969769],[-69.704668,-10.967369],[-69.701068,-10.965569],[-69.698868,-10.970169],[-69.695168,-10.967069],[-69.692368,-10.963769],[-69.689168,-10.963669],[-69.684368,-10.962269],[-69.679768,-10.960069],[-69.673068,-10.960069],[-69.669568,-10.961469],[-69.666368,-10.958269],[-69.663668,-10.956469],[-69.661968,-10.953769],[-69.658068,-10.951769],[-69.652568,-10.952069],[-69.648368,-10.953169],[-69.644268,-10.954269],[-69.639868,-10.955369],[-69.635668,-10.956769],[-69.631268,-10.955369],[-69.628068,-10.954069],[-69.625168,-10.951469],[-69.621668,-10.949669],[-69.616068,-10.951269],[-69.611668,-10.955069],[-69.611968,-10.950969],[-69.612168,-10.947169],[-69.609468,-10.944969],[-69.606368,-10.943869],[-69.603568,-10.942769],[-69.598968,-10.942069],[-69.594468,-10.943869],[-69.590468,-10.944969],[-69.586768,-10.947869],[-69.585468,-10.944869],[-69.588968,-10.941669],[-69.585768,-10.939869],[-69.579568,-10.940469],[-69.576068,-10.942669],[-69.572368,-10.944169],[-69.567668,-10.944069],[-69.564868,-10.945169],[-69.561568,-10.946369],[-69.558268,-10.946069],[-69.555168,-10.944869],[-69.552568,-10.948169],[-69.551168,-10.951269],[-69.548168,-10.952569],[-69.544268,-10.952469],[-69.541768,-10.949569],[-69.543568,-10.945769],[-69.542768,-10.942369],[-69.541768,-10.938369],[-69.538868,-10.936869],[-69.534868,-10.936169],[-69.529868,-10.936069],[-69.525168,-10.935869],[-69.521768,-10.937969],[-69.519068,-10.936869],[-69.516068,-10.937269],[-69.513168,-10.940569],[-69.510268,-10.942169],[-69.506668,-10.942369],[-69.504068,-10.939469],[-69.500968,-10.936869],[-69.498868,-10.939169],[-69.498368,-10.943869],[-69.496268,-10.947469],[-69.492268,-10.949669],[-69.487568,-10.949369],[-69.484368,-10.949669],[-69.481068,-10.952169],[-69.477068,-10.952369],[-69.478168,-10.947769],[-69.476968,-10.944369],[-69.473368,-10.943869],[-69.470168,-10.946869],[-69.464568,-10.949869],[-69.460968,-10.948869],[-69.461868,-10.944869],[-69.459068,-10.944369],[-69.454268,-10.947869],[-69.453168,-10.944569],[-69.452068,-10.936869],[-69.447668,-10.934369],[-69.443068,-10.934069],[-69.439368,-10.933369],[-69.435468,-10.933369],[-69.429068,-10.936869],[-69.425568,-10.932969],[-69.424968,-10.927469],[-69.422568,-10.924369],[-69.419268,-10.925469],[-69.416168,-10.925869],[-69.413468,-10.929369],[-69.413068,-10.933369],[-69.412768,-10.936869],[-69.408768,-10.933369],[-69.407368,-10.928569],[-69.403368,-10.927969],[-69.400168,-10.930769],[-69.399368,-10.933569],[-69.398668,-10.936569],[-69.397068,-10.940469],[-69.394868,-10.943169],[-69.392568,-10.941269],[-69.394768,-10.938469],[-69.395068,-10.934469],[-69.392168,-10.933069],[-69.388168,-10.932969],[-69.387068,-10.936969],[-69.384268,-10.940969],[-69.380268,-10.939169],[-69.377768,-10.941269],[-69.377668,-10.944569],[-69.377168,-10.948169],[-69.377368,-10.951469],[-69.374368,-10.952869],[-69.372268,-10.949869],[-69.372268,-10.946369],[-69.374168,-10.941069],[-69.369768,-10.937769],[-69.365468,-10.938769],[-69.362468,-10.940569],[-69.359768,-10.942969],[-69.356768,-10.943069],[-69.357768,-10.939069],[-69.356668,-10.935869],[-69.353168,-10.935769],[-69.350268,-10.937269],[-69.346768,-10.936369],[-69.344868,-10.938469],[-69.345568,-10.942769],[-69.346368,-10.946669],[-69.343468,-10.949969],[-69.341568,-10.946369],[-69.340068,-10.942769],[-69.337868,-10.940569],[-69.334568,-10.941269],[-69.333468,-10.946069],[-69.328968,-10.948769],[-69.327168,-10.945269],[-69.327168,-10.938469],[-69.325668,-10.935769],[-69.322368,-10.937169],[-69.320968,-10.941669],[-69.317768,-10.943569],[-69.313768,-10.943269],[-69.310568,-10.943869],[-69.307668,-10.944869],[-69.304668,-10.946669],[-69.301168,-10.946769],[-69.296368,-10.946369],[-69.291768,-10.948569],[-69.287768,-10.948469],[-69.286168,-10.944169],[-69.282868,-10.942669],[-69.279768,-10.944369],[-69.277568,-10.947669],[-69.276168,-10.950969],[-69.273168,-10.952669],[-69.274568,-10.948269],[-69.275068,-10.945269],[-69.273268,-10.942069],[-69.270168,-10.940469],[-69.266068,-10.940269],[-69.262468,-10.939969],[-69.258568,-10.940569],[-69.255168,-10.939169],[-69.251368,-10.938769],[-69.249868,-10.941969],[-69.252968,-10.943869],[-69.257068,-10.944669],[-69.254068,-10.947469],[-69.248868,-10.948569],[-69.244768,-10.949869],[-69.240068,-10.950169],[-69.236768,-10.947869],[-69.234668,-10.943569],[-69.232468,-10.939369],[-69.228868,-10.941969],[-69.224968,-10.946369],[-69.220668,-10.947469],[-69.218368,-10.950269],[-69.217068,-10.953869],[-69.215368,-10.956169],[-69.211768,-10.954869],[-69.207868,-10.951469],[-69.201768,-10.948169],[-69.197968,-10.947069],[-69.193168,-10.948269],[-69.188468,-10.948469],[-69.184868,-10.948469],[-69.183268,-10.952869],[-69.178268,-10.956069],[-69.174168,-10.957069],[-69.170268,-10.958669],[-69.169168,-10.962669],[-69.165968,-10.964069],[-69.162368,-10.964569],[-69.159768,-10.962569],[-69.157668,-10.958169],[-69.154068,-10.955069],[-69.152668,-10.958469],[-69.152868,-10.962969],[-69.146468,-10.961769],[-69.143968,-10.963469],[-69.146868,-10.966169],[-69.148968,-10.969869],[-69.144768,-10.969869],[-69.142068,-10.968369],[-69.138968,-10.965669],[-69.138468,-10.969769],[-69.136068,-10.972269],[-69.132068,-10.969569],[-69.128568,-10.967269],[-69.125268,-10.965669],[-69.121668,-10.966169],[-69.119668,-10.969469],[-69.119968,-10.972369],[-69.120868,-10.976269],[-69.119768,-10.979269],[-69.116968,-10.977769],[-69.115768,-10.974969],[-69.112768,-10.970869],[-69.108268,-10.971169],[-69.105068,-10.975569],[-69.101368,-10.979469],[-69.096468,-10.977569],[-69.092668,-10.974769],[-69.090068,-10.971769],[-69.086868,-10.969069],[-69.083968,-10.969569],[-69.081168,-10.972269],[-69.077868,-10.973369],[-69.075468,-10.969869],[-69.073468,-10.965869],[-69.069668,-10.968769],[-69.068468,-10.973669],[-69.065568,-10.976369],[-69.064068,-10.979269],[-69.062968,-10.982869],[-69.058868,-10.983369],[-69.055568,-10.979969],[-69.052468,-10.974569],[-69.048868,-10.973869],[-69.048868,-10.978369],[-69.044668,-10.979969],[-69.042268,-10.977769],[-69.039868,-10.976269],[-69.037068,-10.978669],[-69.035568,-10.982469],[-69.031568,-10.984769],[-69.027668,-10.981969],[-69.025768,-10.985269],[-69.025668,-10.989369],[-69.023368,-10.991669],[-69.019668,-10.990069],[-69.015768,-10.989369],[-69.012068,-10.990469],[-69.009568,-10.993369],[-69.011268,-10.996569],[-69.014268,-10.999469],[-69.011868,-11.001669],[-69.007368,-11.001669],[-69.004068,-11.004969],[-69.001568,-11.007169],[-68.997668,-11.002669],[-68.994368,-11.002969],[-68.993668,-11.007769],[-68.991868,-11.009969],[-68.987868,-11.009569],[-68.984468,-11.006769],[-68.986368,-11.002769],[-68.986868,-10.997769],[-68.983168,-10.996569],[-68.980568,-10.995269],[-68.978168,-10.992969],[-68.975268,-10.989969],[-68.972668,-10.988269],[-68.969468,-10.986769],[-68.966168,-10.987169],[-68.963468,-10.989369],[-68.960868,-10.991069],[-68.956868,-10.990069],[-68.952168,-10.988969],[-68.952468,-10.993369],[-68.954868,-10.996869],[-68.955768,-11.000969],[-68.952968,-11.002769],[-68.948568,-11.002969],[-68.945768,-11.004569],[-68.946768,-11.009569],[-68.944068,-11.010669],[-68.940468,-11.007769],[-68.937168,-11.004369],[-68.932768,-11.004069],[-68.930868,-11.007069],[-68.930068,-11.010369],[-68.926968,-11.011069],[-68.925068,-11.013469],[-68.923868,-11.016369],[-68.921068,-11.012869],[-68.916468,-11.015769],[-68.913168,-11.018969],[-68.909168,-11.020469],[-68.905968,-11.017069],[-68.903668,-11.012369],[-68.899768,-11.008869],[-68.896168,-11.005169],[-68.892068,-11.007069],[-68.888968,-11.009869],[-68.886768,-11.013469],[-68.883868,-11.009869],[-68.879868,-11.008469],[-68.876268,-11.008469],[-68.872668,-11.008769],[-68.869768,-11.012669],[-68.864668,-11.014069],[-68.860668,-11.015769],[-68.858868,-11.012369],[-68.859168,-11.008769],[-68.859368,-11.004169],[-68.855568,-11.001269],[-68.852768,-10.997969],[-68.848368,-10.991869],[-68.842668,-10.991169],[-68.840868,-10.993369],[-68.840668,-10.996269],[-68.843968,-10.998269],[-68.840368,-11.000869],[-68.836568,-10.998669],[-68.835368,-10.994769],[-68.833768,-10.992169],[-68.830068,-10.993669],[-68.826768,-10.995169],[-68.825768,-10.998269],[-68.829568,-11.000169],[-68.829568,-11.003569],[-68.827068,-11.005269],[-68.822168,-11.002069],[-68.816868,-11.003669],[-68.812368,-11.000569],[-68.808068,-10.998769],[-68.810768,-10.994369],[-68.805468,-10.993269],[-68.801568,-10.992969],[-68.798968,-10.989769],[-68.796068,-10.988669],[-68.792068,-10.989369],[-68.793868,-10.993069],[-68.796868,-10.994669],[-68.796968,-10.998369],[-68.794168,-10.998869],[-68.789568,-10.999669],[-68.786468,-11.003069],[-68.782568,-10.999869],[-68.779268,-10.997769],[-68.777668,-11.003569],[-68.772568,-11.004069],[-68.769268,-11.005269],[-68.765468,-11.004069],[-68.762368,-11.002969],[-68.758568,-11.000869],[-68.758568,-11.005169],[-68.757368,-11.009869],[-68.754168,-11.008769],[-68.751268,-11.007769],[-68.748268,-11.009869],[-68.750268,-11.014369],[-68.749468,-11.018769],[-68.752368,-11.022369],[-68.751668,-11.025969],[-68.751868,-11.029469],[-68.751668,-11.033869],[-68.752068,-11.037069],[-68.756868,-11.038069],[-68.760268,-11.040369],[-68.760968,-11.044169],[-68.764668,-11.047569],[-68.764668,-11.051669],[-68.760668,-11.054769],[-68.762368,-11.058069],[-68.763868,-11.061869],[-68.764568,-11.066369],[-68.762368,-11.070269],[-68.758768,-11.073569],[-68.756268,-11.077969],[-68.757668,-11.082569],[-68.754668,-11.084269],[-68.750768,-11.086269],[-68.748068,-11.090669],[-68.745768,-11.094569],[-68.741868,-11.096369],[-68.738868,-11.094069],[-68.735068,-11.093369],[-68.731768,-11.095669],[-68.729568,-11.097669],[-68.727068,-11.099869],[-68.724268,-11.101369],[-68.720968,-11.104569],[-68.721368,-11.109469],[-68.722068,-11.113569],[-68.719868,-11.116369],[-68.717668,-11.118269],[-68.715868,-11.120869],[-68.714268,-11.123369],[-68.712268,-11.126569],[-68.711168,-11.129869],[-68.711168,-11.134269],[-68.712268,-11.138169],[-68.714068,-11.140369],[-68.715868,-11.143469],[-68.614968,-11.125469],[-68.542768,-11.110269],[-68.543068,-11.105969],[-68.542868,-11.102069],[-68.541668,-11.099169],[-68.539768,-11.096669],[-68.536768,-11.094469],[-68.531968,-11.092669],[-68.526468,-11.091269],[-68.522068,-11.089369],[-68.519268,-11.087869],[-68.516268,-11.083569],[-68.513768,-11.080769],[-68.510968,-11.078269],[-68.508468,-11.074969],[-68.505468,-11.069969],[-68.504868,-11.065269],[-68.503468,-11.062669],[-68.500268,-11.061369],[-68.497668,-11.059469],[-68.495268,-11.056869],[-68.491368,-11.054069],[-68.486468,-11.050769],[-68.482868,-11.050069],[-68.479968,-11.048969],[-68.475668,-11.051169],[-68.471468,-11.050369],[-68.468068,-11.049369],[-68.464768,-11.049669],[-68.460768,-11.046669],[-68.455768,-11.045569],[-68.451068,-11.046069],[-68.447068,-11.046069],[-68.443868,-11.045569],[-68.443068,-11.042769],[-68.439968,-11.040269],[-68.438068,-11.036269],[-68.435468,-11.033769],[-68.433068,-11.031769],[-68.429668,-11.032669],[-68.428068,-11.035369],[-68.426668,-11.038069],[-68.423668,-11.040669],[-68.419568,-11.040669],[-68.415968,-11.039569],[-68.412568,-11.042469],[-68.409868,-11.044969],[-68.409868,-11.048069],[-68.407668,-11.049969],[-68.404868,-11.053569],[-68.400668,-11.052569],[-68.396468,-11.051069],[-68.393168,-11.048569],[-68.390168,-11.044669],[-68.388268,-11.039469],[-68.387768,-11.035569],[-68.389368,-11.032269],[-68.390468,-11.029569],[-68.389668,-11.026769],[-68.388468,-11.023669],[-68.385968,-11.019269],[-68.382468,-11.017069],[-68.377768,-11.014369],[-68.372368,-11.012069],[-68.369368,-11.010769],[-68.366168,-11.009369],[-68.362868,-11.007469],[-68.358868,-11.005969],[-68.354568,-11.005169],[-68.351668,-11.004369],[-68.348368,-11.004469],[-68.344168,-11.005469],[-68.340368,-11.005769],[-68.337568,-11.007469],[-68.337068,-11.010669],[-68.333768,-11.012469],[-68.329568,-11.011769],[-68.326368,-11.009869],[-68.323568,-11.006269],[-68.322468,-11.002669],[-68.318768,-10.999069],[-68.314068,-10.997669],[-68.310468,-10.995869],[-68.308068,-10.992769],[-68.302468,-10.991069],[-68.298068,-10.990469],[-68.294168,-10.990569],[-68.288668,-10.988369],[-68.285868,-10.990369],[-68.282868,-10.990069],[-68.278768,-10.989369],[-68.276168,-10.987869],[-68.271868,-10.983569],[-68.270368,-10.978969],[-68.265968,-10.975669],[-68.262868,-10.975669],[-68.258568,-10.973069],[-68.254568,-10.969469],[-68.252768,-10.966969],[-68.250768,-10.963769],[-68.246868,-10.960469],[-68.242968,-10.959369],[-68.240068,-10.958169],[-68.237468,-10.955769],[-68.236668,-10.952869],[-68.233868,-10.949369],[-68.231968,-10.945969],[-68.230868,-10.943169],[-68.230568,-10.939669],[-68.230668,-10.935769],[-68.229468,-10.932969],[-68.229268,-10.929369],[-68.227068,-10.925369],[-68.228068,-10.921969],[-68.225968,-10.917169],[-68.224468,-10.914469],[-68.223068,-10.911369],[-68.219768,-10.909769],[-68.216268,-10.905869],[-68.211568,-10.905069],[-68.207968,-10.902569],[-68.206168,-10.897269],[-68.205068,-10.892169],[-68.203968,-10.887869],[-68.204368,-10.883869],[-68.205168,-10.879869],[-68.202468,-10.877969],[-68.200168,-10.875569],[-68.198768,-10.872969],[-68.197768,-10.870169],[-68.197368,-10.867169],[-68.196268,-10.864469],[-68.195568,-10.861669],[-68.194568,-10.858569],[-68.191268,-10.857469],[-68.186968,-10.857269],[-68.182968,-10.855569],[-68.180168,-10.852569],[-68.177868,-10.850069],[-68.176968,-10.847269],[-68.174768,-10.844869],[-68.173968,-10.841469],[-68.171768,-10.838469],[-68.168868,-10.837269],[-68.165668,-10.835069],[-68.162868,-10.832669],[-68.159868,-10.829669],[-68.157368,-10.826369],[-68.156268,-10.823569],[-68.153168,-10.821369],[-68.150068,-10.819569],[-68.146868,-10.817069],[-68.143968,-10.814569],[-68.141868,-10.811569],[-68.139268,-10.807969],[-68.136368,-10.807169],[-68.133768,-10.804669],[-68.130468,-10.800269],[-68.127168,-10.797269],[-68.124668,-10.793869],[-68.122768,-10.791069],[-68.119468,-10.788169],[-68.116568,-10.783369],[-68.112568,-10.782069],[-68.109468,-10.780369],[-68.106668,-10.778669],[-68.104268,-10.774769],[-68.104468,-10.770369],[-68.105268,-10.766869],[-68.105668,-10.762369],[-68.102768,-10.759569],[-68.102768,-10.755969],[-68.101368,-10.753269],[-68.099168,-10.751369],[-68.098068,-10.747769],[-68.100368,-10.744769],[-68.103068,-10.740869],[-68.104968,-10.737569],[-68.105568,-10.734269],[-68.106168,-10.731469],[-68.106068,-10.727569],[-68.107568,-10.724569],[-68.105568,-10.721269],[-68.105268,-10.717269],[-68.103868,-10.714769],[-68.101368,-10.712069],[-68.097768,-10.709869],[-68.095368,-10.707669],[-68.095968,-10.704369],[-68.092668,-10.704269],[-68.088968,-10.700769],[-68.085868,-10.696369],[-68.081268,-10.693469],[-68.078568,-10.690469],[-68.076768,-10.687969],[-68.076368,-10.684869],[-68.071868,-10.684469],[-68.066568,-10.683669],[-68.064068,-10.681169],[-68.062468,-10.677169],[-68.058668,-10.674969],[-68.055268,-10.671469],[-68.051568,-10.671069],[-68.047568,-10.671369],[-68.043168,-10.669569],[-68.039168,-10.668169],[-68.035868,-10.666669],[-68.032868,-10.665369],[-68.030668,-10.662869],[-68.032368,-10.660569],[-68.031268,-10.656269],[-68.027268,-10.656569],[-68.023768,-10.654469],[-68.021768,-10.650969],[-68.015068,-10.649869],[-68.011368,-10.648269],[-68.008768,-10.650069],[-68.004568,-10.650469],[-68.002368,-10.647669],[-68.000168,-10.649769],[-67.996668,-10.650869],[-67.992968,-10.651769],[-67.988668,-10.653369],[-67.985368,-10.655169],[-67.981668,-10.657269],[-67.978568,-10.660869],[-67.974568,-10.660569],[-67.971468,-10.658369],[-67.970668,-10.655569],[-67.965968,-10.654069],[-67.962868,-10.651269],[-67.959568,-10.649269],[-67.954568,-10.649869],[-67.951568,-10.652269],[-67.948168,-10.651469],[-67.943568,-10.653369],[-67.940468,-10.655069],[-67.936968,-10.655069],[-67.933268,-10.654769],[-67.928668,-10.654869],[-67.925568,-10.652369],[-67.922268,-10.651569],[-67.917768,-10.651769],[-67.913668,-10.649069],[-67.911968,-10.645669],[-67.909168,-10.642369],[-67.903768,-10.641769],[-67.900368,-10.643469],[-67.897068,-10.644269],[-67.895068,-10.646769],[-67.890468,-10.644369],[-67.889268,-10.640669],[-67.885168,-10.640669],[-67.882368,-10.640069],[-67.877368,-10.640169],[-67.876068,-10.643269],[-67.872668,-10.642869],[-67.868868,-10.641869],[-67.864768,-10.640769],[-67.860268,-10.643469],[-67.857768,-10.646069],[-67.854168,-10.647869],[-67.849568,-10.647869],[-67.844568,-10.649769],[-67.840368,-10.651369],[-67.836168,-10.650069],[-67.833268,-10.650969],[-67.830068,-10.651869],[-67.826568,-10.651569],[-67.822468,-10.654469],[-67.818868,-10.656569],[-67.817668,-10.660669],[-67.814068,-10.663669],[-67.809468,-10.661969],[-67.807568,-10.665969],[-67.804368,-10.667569],[-67.801668,-10.669169],[-67.797868,-10.670569],[-67.794668,-10.674269],[-67.791468,-10.676869],[-67.786968,-10.676069],[-67.782268,-10.676669],[-67.780068,-10.678569],[-67.777368,-10.680469],[-67.773968,-10.683669],[-67.769268,-10.685469],[-67.765068,-10.687669],[-67.762068,-10.684769],[-67.758168,-10.685169],[-67.756268,-10.687669],[-67.755268,-10.691969],[-67.752968,-10.695169],[-67.749468,-10.696569],[-67.745068,-10.697169],[-67.744068,-10.700269],[-67.743668,-10.703269],[-67.742768,-10.707569],[-67.739768,-10.707069],[-67.737968,-10.709369],[-67.735068,-10.711569],[-67.730668,-10.711769],[-67.727368,-10.708569],[-67.725068,-10.706269],[-67.720968,-10.709269],[-67.716568,-10.708469],[-67.712868,-10.707369],[-67.708468,-10.707569],[-67.707868,-10.704369],[-67.706468,-10.700769],[-67.702668,-10.692069],[-67.676868,-10.607869],[-67.675368,-10.603069],[-67.672168,-10.604969],[-67.668368,-10.608269],[-67.663468,-10.612769],[-67.658968,-10.614469],[-67.654268,-10.611069],[-67.647868,-10.604969],[-67.643468,-10.600969],[-67.640368,-10.598669],[-67.637668,-10.594869],[-67.636468,-10.590469],[-67.636268,-10.584569],[-67.634668,-10.581169],[-67.631368,-10.578469],[-67.623068,-10.573469],[-67.619968,-10.572369],[-67.615068,-10.567369],[-67.612168,-10.562669],[-67.611168,-10.557169],[-67.609668,-10.552869],[-67.607568,-10.548169],[-67.605268,-10.544169],[-67.601368,-10.538369],[-67.599268,-10.533669],[-67.597368,-10.528769],[-67.595868,-10.523969],[-67.593968,-10.518969],[-67.591268,-10.515069],[-67.588968,-10.510769],[-67.583968,-10.507469],[-67.579668,-10.504069],[-67.575468,-10.501869],[-67.570168,-10.501869],[-67.567368,-10.499369],[-67.562968,-10.498069],[-67.560768,-10.496069],[-67.556568,-10.496169],[-67.554068,-10.494369],[-67.551668,-10.492469],[-67.547868,-10.489469],[-67.543868,-10.489669],[-67.539968,-10.488669],[-67.535168,-10.488669],[-67.530368,-10.490469],[-67.527268,-10.491069],[-67.519668,-10.490769],[-67.516468,-10.488269],[-67.515668,-10.482169],[-67.513468,-10.478469],[-67.508868,-10.475569],[-67.505468,-10.472569],[-67.501668,-10.470969],[-67.497468,-10.471669],[-67.494668,-10.472269],[-67.491068,-10.472369],[-67.487868,-10.470669],[-67.483368,-10.469069],[-67.479268,-10.468369],[-67.476368,-10.466969],[-67.474168,-10.464269],[-67.471268,-10.461169],[-67.467068,-10.460069],[-67.464068,-10.459769],[-67.458468,-10.458769],[-67.453268,-10.457969],[-67.448868,-10.455369],[-67.444168,-10.453569],[-67.440468,-10.449269],[-67.435868,-10.446569],[-67.436668,-10.442669],[-67.436368,-10.438769],[-67.432968,-10.435169],[-67.430868,-10.431169],[-67.428268,-10.427969],[-67.423868,-10.428869],[-67.419568,-10.429169],[-67.415868,-10.426969],[-67.413468,-10.425069],[-67.413868,-10.422169],[-67.411968,-10.418469],[-67.412868,-10.414569],[-67.413368,-10.410669],[-67.414468,-10.406269],[-67.414468,-10.401169],[-67.417768,-10.397569],[-67.421868,-10.396269],[-67.423268,-10.393269],[-67.421168,-10.388569],[-67.416668,-10.384569],[-67.413168,-10.381369],[-67.410868,-10.378269],[-67.409168,-10.375469],[-67.405668,-10.372969],[-67.401968,-10.372669],[-67.399068,-10.371369],[-67.397668,-10.374169],[-67.395968,-10.376669],[-67.393768,-10.374769],[-67.389568,-10.376969],[-67.384168,-10.379069],[-67.379068,-10.381369],[-67.374668,-10.380769],[-67.371368,-10.379969],[-67.368268,-10.376569],[-67.364168,-10.378569],[-67.362568,-10.381869],[-67.360868,-10.384169],[-67.358568,-10.387869],[-67.355568,-10.391369],[-67.351968,-10.391569],[-67.353068,-10.387369],[-67.353468,-10.382769],[-67.351668,-10.379169],[-67.348068,-10.377969],[-67.344168,-10.376069],[-67.339368,-10.376269],[-67.336968,-10.377969],[-67.333768,-10.378769],[-67.331468,-10.381369],[-67.328268,-10.382369],[-67.324068,-10.380569],[-67.319568,-10.379869],[-67.317068,-10.376369],[-67.313268,-10.376269],[-67.311268,-10.372969],[-67.312768,-10.370069],[-67.314668,-10.367969],[-67.316968,-10.365569],[-67.316368,-10.361669],[-67.317968,-10.358569],[-67.316368,-10.355269],[-67.315568,-10.347069],[-67.317668,-10.344169],[-67.320268,-10.340869],[-67.324968,-10.337969],[-67.327068,-10.334369],[-67.325668,-10.330369],[-67.324068,-10.327069],[-67.321368,-10.324069],[-67.321568,-10.321069],[-67.317668,-10.320469],[-67.314868,-10.317769],[-67.311268,-10.319869],[-67.308068,-10.320969],[-67.305268,-10.321769],[-67.302168,-10.323169],[-67.300068,-10.320469],[-67.296668,-10.320969],[-67.294968,-10.323269],[-67.291468,-10.323269],[-67.289168,-10.320169],[-67.285568,-10.319269],[-67.280968,-10.320269],[-67.276168,-10.321569],[-67.273968,-10.324569],[-67.270368,-10.324869],[-67.268168,-10.327069],[-67.265668,-10.331169],[-67.262068,-10.330769],[-67.257668,-10.328869],[-67.254068,-10.327869],[-67.250968,-10.326769],[-67.247768,-10.324569],[-67.243368,-10.323169],[-67.241468,-10.319069],[-67.238068,-10.318769],[-67.235068,-10.316069],[-67.231668,-10.315469],[-67.227568,-10.316069],[-67.224268,-10.314869],[-67.222068,-10.316669],[-67.220568,-10.319969],[-67.217268,-10.322369],[-67.212268,-10.323169],[-67.209068,-10.322869],[-67.205668,-10.322869],[-67.202068,-10.322069],[-67.198768,-10.323269],[-67.195968,-10.325369],[-67.192768,-10.329069],[-67.190968,-10.333269],[-67.188768,-10.337569],[-67.184968,-10.337869],[-67.182168,-10.338669],[-67.178968,-10.339369],[-67.175568,-10.338669],[-67.171368,-10.337669],[-67.167168,-10.335669],[-67.164768,-10.333569],[-67.163168,-10.329969],[-67.159868,-10.328769],[-67.156568,-10.328569],[-67.153368,-10.327469],[-67.149768,-10.325769],[-67.146868,-10.323469],[-67.145068,-10.325969],[-67.142168,-10.322969],[-67.140168,-10.319069],[-67.138968,-10.315869],[-67.136368,-10.318069],[-67.132968,-10.316269],[-67.128868,-10.315169],[-67.130768,-10.312269],[-67.133568,-10.309869],[-67.136368,-10.309369],[-67.139568,-10.308769],[-67.139568,-10.305469],[-67.137968,-10.302469],[-67.137368,-10.298869],[-67.135668,-10.296169],[-67.132768,-10.294569],[-67.129368,-10.292269],[-67.124768,-10.290569],[-67.120868,-10.292269],[-67.117168,-10.292569],[-67.113268,-10.291169],[-67.109968,-10.288669],[-67.106368,-10.287369],[-67.102768,-10.285569],[-67.099568,-10.285569],[-67.098068,-10.282269],[-67.093168,-10.283769],[-67.088768,-10.285569],[-67.088968,-10.288969],[-67.085468,-10.289869],[-67.082368,-10.288069],[-67.079068,-10.288369],[-67.075968,-10.284769],[-67.072068,-10.284269],[-67.068468,-10.283469],[-67.065268,-10.282269],[-67.061868,-10.280869],[-67.058668,-10.278769],[-67.055768,-10.278669],[-67.051868,-10.276469],[-67.048568,-10.274569],[-67.051568,-10.271769],[-67.051168,-10.267169],[-67.047268,-10.265369],[-67.043668,-10.265969],[-67.042168,-10.263269],[-67.039168,-10.262069],[-67.035168,-10.263469],[-67.032868,-10.259969],[-67.030568,-10.256769],[-67.027268,-10.257169],[-67.023468,-10.256069],[-67.019268,-10.255169],[-67.015668,-10.256769],[-67.012668,-10.254669],[-67.009968,-10.251669],[-67.009568,-10.247969],[-67.006868,-10.245469],[-67.004868,-10.241169],[-67.005968,-10.237569],[-67.006368,-10.233969],[-67.004468,-10.230569],[-67.000468,-10.229169],[-66.998368,-10.231669],[-66.995168,-10.229169],[-66.993568,-10.223769],[-66.988968,-10.221469],[-66.989468,-10.218169],[-66.994668,-10.218369],[-66.997668,-10.218969],[-66.999068,-10.215669],[-66.997268,-10.211969],[-66.993868,-10.209669],[-66.993868,-10.205769],[-66.996168,-10.203569],[-66.995868,-10.199669],[-66.992268,-10.198969],[-66.992168,-10.202669],[-66.988368,-10.201369],[-66.984668,-10.198569],[-66.981068,-10.195469],[-66.974868,-10.195769],[-66.977568,-10.192069],[-66.979768,-10.189469],[-66.975568,-10.188769],[-66.971968,-10.191669],[-66.968768,-10.191669],[-66.966268,-10.189969],[-66.963968,-10.186869],[-66.959968,-10.183969],[-66.955068,-10.188269],[-66.951468,-10.186169],[-66.950668,-10.181669],[-66.949968,-10.177169],[-66.948568,-10.173369],[-66.947668,-10.169269],[-66.946268,-10.164469],[-66.946368,-10.160069],[-66.944868,-10.157669],[-66.941368,-10.155069],[-66.937768,-10.154169],[-66.933568,-10.153069],[-66.933368,-10.148169],[-66.929368,-10.147169],[-66.925868,-10.145169],[-66.923568,-10.142969],[-66.920268,-10.144269],[-66.916368,-10.144569],[-66.911968,-10.146569],[-66.910568,-10.141269],[-66.911168,-10.138469],[-66.913468,-10.136069],[-66.917068,-10.134869],[-66.917168,-10.129869],[-66.913868,-10.128769],[-66.912268,-10.131269],[-66.909168,-10.129869],[-66.908768,-10.125269],[-66.902968,-10.126069],[-66.901168,-10.123069],[-66.897868,-10.121669],[-66.897068,-10.118269],[-66.897268,-10.115069],[-66.897968,-10.111669],[-66.895068,-10.109969],[-66.892068,-10.112569],[-66.889068,-10.114069],[-66.888768,-10.110269],[-66.888968,-10.105369],[-66.888568,-10.101769],[-66.886468,-10.099469],[-66.885668,-10.103569],[-66.883768,-10.107069],[-66.880268,-10.104669],[-66.881268,-10.100369],[-66.878268,-10.097369],[-66.876668,-10.100069],[-66.873268,-10.100569],[-66.871868,-10.093769],[-66.874068,-10.091269],[-66.872968,-10.087569],[-66.875468,-10.083969],[-66.873368,-10.080769],[-66.869668,-10.080969],[-66.866168,-10.083169],[-66.860368,-10.082669],[-66.855368,-10.083269],[-66.851368,-10.081769],[-66.852068,-10.085169],[-66.849168,-10.085169],[-66.844868,-10.085069],[-66.841168,-10.083669],[-66.837868,-10.081269],[-66.839068,-10.076869],[-66.839568,-10.073269],[-66.840068,-10.069669],[-66.835068,-10.066669],[-66.836568,-10.063769],[-66.835468,-10.060869],[-66.832168,-10.059069],[-66.826568,-10.059669],[-66.822368,-10.058369],[-66.819868,-10.055869],[-66.817968,-10.052169],[-66.812468,-10.048869],[-66.808668,-10.048569],[-66.806568,-10.044769],[-66.802268,-10.043069],[-66.805768,-10.040269],[-66.807168,-10.037769],[-66.802468,-10.034869],[-66.800268,-10.032069],[-66.797468,-10.028769],[-66.793868,-10.027269],[-66.792268,-10.024369],[-66.789968,-10.021069],[-66.786268,-10.020369],[-66.778968,-10.016869],[-66.775068,-10.018269],[-66.771768,-10.018669],[-66.772068,-10.015169],[-66.772968,-10.011469],[-66.771168,-10.008769],[-66.768468,-10.007669],[-66.765668,-10.006369],[-66.764568,-10.002969],[-66.764568,-9.999069],[-66.760968,-9.997969],[-66.757068,-9.998569],[-66.754068,-9.998269],[-66.752368,-9.994669],[-66.748368,-9.993369],[-66.743268,-9.995469],[-66.739368,-9.993569],[-66.737468,-9.991469],[-66.735068,-9.987169],[-66.734968,-9.983969],[-66.732868,-9.981169],[-66.729268,-9.979769],[-66.725868,-9.980669],[-66.721968,-9.981369],[-66.722668,-9.978069],[-66.720968,-9.974969],[-66.718768,-9.973069],[-66.715868,-9.974169],[-66.713668,-9.977069],[-66.709268,-9.975969],[-66.704568,-9.974769],[-66.698568,-9.970969],[-66.695468,-9.968369],[-66.691668,-9.965569],[-66.687968,-9.965569],[-66.684868,-9.964869],[-66.680468,-9.965369],[-66.676368,-9.966269],[-66.676168,-9.962069],[-66.677168,-9.957569],[-66.673868,-9.956069],[-66.669968,-9.957369],[-66.668968,-9.952669],[-66.667468,-9.949569],[-66.664568,-9.948469],[-66.666368,-9.945469],[-66.665868,-9.942369],[-66.664968,-9.939569],[-66.663368,-9.936869],[-66.660168,-9.935769],[-66.656768,-9.935169],[-66.654768,-9.938869],[-66.651968,-9.935869],[-66.650468,-9.940569],[-66.648468,-9.943869],[-66.645768,-9.945169],[-66.642568,-9.945269],[-66.641068,-9.948469],[-66.637768,-9.948969],[-66.637068,-9.945769],[-66.635768,-9.940869],[-66.632768,-9.935769],[-66.629868,-9.935569],[-66.626368,-9.931869],[-66.631668,-9.928069],[-66.635268,-9.926169],[-66.633468,-9.921069],[-66.627968,-9.919269],[-66.628468,-9.915269],[-66.633768,-9.912869],[-66.632668,-9.908769],[-66.628268,-9.906169],[-66.624368,-9.904469],[-66.626568,-9.899569],[-66.623368,-9.896769],[-66.620268,-9.894669],[-66.616168,-9.894869],[-66.608968,-9.895169],[-66.603168,-9.897369],[-66.600368,-9.898169],[-66.591668,-9.899069],[-66.587568,-9.900369],[-66.581268,-9.905369],[-66.579268,-9.901869],[-66.578768,-9.894769],[-66.576468,-9.892969],[-66.574268,-9.890069],[-66.570968,-9.892669],[-66.567368,-9.894569],[-66.564568,-9.890969],[-66.562268,-9.888169],[-66.565968,-9.886269],[-66.564568,-9.883469],[-66.560468,-9.880969],[-66.553268,-9.885969],[-66.548868,-9.888769],[-66.546068,-9.885469],[-66.547268,-9.882769],[-66.545268,-9.880569],[-66.543168,-9.877669],[-66.538468,-9.882069],[-66.533668,-9.885169],[-66.527968,-9.887069],[-66.520068,-9.885169],[-66.515768,-9.882369],[-66.513768,-9.876569],[-66.510668,-9.876669],[-66.499468,-9.876269],[-66.501268,-9.881269],[-66.496268,-9.883769],[-66.491068,-9.882469],[-66.491168,-9.879069],[-66.489168,-9.875169],[-66.488068,-9.869769],[-66.482168,-9.868669],[-66.477068,-9.868669],[-66.471668,-9.868569],[-66.467868,-9.871069],[-66.464868,-9.875769],[-66.460668,-9.878569],[-66.455368,-9.879169],[-66.458668,-9.874469],[-66.453968,-9.870869],[-66.448768,-9.871869],[-66.445168,-9.871369],[-66.440168,-9.869469],[-66.437668,-9.866969],[-66.434768,-9.866069],[-66.430768,-9.867669],[-66.426868,-9.870769],[-66.424768,-9.873669],[-66.428268,-9.883869],[-66.432168,-9.891869],[-66.431568,-9.894769],[-66.427168,-9.899269],[-66.419968,-9.898269],[-66.413468,-9.895069],[-66.419468,-9.895169],[-66.423568,-9.891769],[-66.422468,-9.887169],[-66.417768,-9.883469],[-66.411968,-9.880969],[-66.409468,-9.874669],[-66.407668,-9.871969],[-66.402668,-9.868269],[-66.403968,-9.864969],[-66.395168,-9.864169],[-66.382168,-9.867769],[-66.371868,-9.866369],[-66.366668,-9.866069],[-66.363668,-9.865369],[-66.359368,-9.865369],[-66.357268,-9.857569],[-66.356368,-9.854469],[-66.356368,-9.851169],[-66.355568,-9.848369],[-66.351668,-9.847269],[-66.350968,-9.841269],[-66.346168,-9.839269],[-66.340868,-9.840569],[-66.337568,-9.840669],[-66.334268,-9.839769],[-66.328168,-9.836869],[-66.320668,-9.837069],[-66.317368,-9.835369],[-66.315168,-9.831769],[-66.311268,-9.836269],[-66.306868,-9.839869],[-66.304368,-9.835369],[-66.301568,-9.837669],[-66.295268,-9.840669],[-66.290668,-9.841469],[-66.286668,-9.844569],[-66.282268,-9.840869],[-66.282268,-9.831869],[-66.278668,-9.828569],[-66.275368,-9.827669],[-66.275468,-9.834269],[-66.262168,-9.830769],[-66.257668,-9.833469],[-66.253868,-9.832669],[-66.249768,-9.827569],[-66.248568,-9.821869],[-66.242968,-9.822169],[-66.239668,-9.816669],[-66.237168,-9.814569],[-66.234768,-9.816669],[-66.228068,-9.820269],[-66.219768,-9.827869],[-66.214268,-9.833269],[-66.210668,-9.834869],[-66.204868,-9.834869],[-66.199968,-9.831769],[-66.197168,-9.830669],[-66.194168,-9.827869],[-66.197368,-9.823869],[-66.194968,-9.819969],[-66.188368,-9.824269],[-66.185868,-9.821369],[-66.189968,-9.818269],[-66.192168,-9.815569],[-66.196768,-9.813569],[-66.193868,-9.805469],[-66.186868,-9.805469],[-66.181068,-9.803569],[-66.176968,-9.803369],[-66.176468,-9.799169],[-66.173168,-9.793969],[-66.168068,-9.791069],[-66.163068,-9.790269],[-66.159868,-9.787769],[-66.155568,-9.787069],[-66.151468,-9.785969],[-66.147868,-9.786769],[-66.145368,-9.790869],[-66.142068,-9.788669],[-66.136768,-9.788669],[-66.133168,-9.789869],[-66.130168,-9.788969],[-66.127668,-9.786469],[-66.124168,-9.787769],[-66.123268,-9.790669],[-66.117968,-9.789969],[-66.114668,-9.788469],[-66.110268,-9.789269],[-66.110368,-9.785569],[-66.105268,-9.783069],[-66.100268,-9.784769],[-66.097768,-9.787069],[-66.097768,-9.791369],[-66.100268,-9.798269],[-66.101368,-9.803269],[-66.100668,-9.806869],[-66.097368,-9.811569],[-66.091468,-9.813269],[-66.086568,-9.804969],[-66.083668,-9.799269],[-66.079268,-9.794769],[-66.084868,-9.792569],[-66.087268,-9.790869],[-66.079268,-9.786469],[-66.069868,-9.784469],[-66.059368,-9.785969],[-66.053268,-9.784769],[-66.044968,-9.785669],[-66.040668,-9.786969],[-66.035668,-9.787069],[-66.033168,-9.788869],[-66.030168,-9.801669],[-66.028068,-9.806669],[-66.025068,-9.811569],[-66.019268,-9.811369],[-66.013568,-9.804669],[-66.009968,-9.801169],[-66.002168,-9.795069],[-65.999068,-9.794769],[-65.999068,-9.800369],[-65.995868,-9.804069],[-65.992268,-9.803869],[-65.989068,-9.801669],[-65.984968,-9.806169],[-65.981068,-9.807969],[-65.981368,-9.802169],[-65.974768,-9.803069],[-65.965868,-9.804469],[-65.963968,-9.801969],[-65.970068,-9.799269],[-65.973668,-9.798169],[-65.974168,-9.793669],[-65.974968,-9.790569],[-65.974768,-9.785669],[-65.973368,-9.780969],[-65.972868,-9.776469],[-65.970568,-9.774469],[-65.966568,-9.770469],[-65.961768,-9.770769],[-65.957268,-9.769369],[-65.952468,-9.768169],[-65.949068,-9.763969],[-65.946268,-9.762669],[-65.943768,-9.760169],[-65.939968,-9.761269],[-65.938568,-9.765669],[-65.935868,-9.768969],[-65.930768,-9.767169],[-65.927168,-9.762969],[-65.922468,-9.762669],[-65.925268,-9.759369],[-65.922768,-9.756769],[-65.922468,-9.753369],[-65.918868,-9.752669],[-65.914868,-9.754669],[-65.915568,-9.761869],[-65.913068,-9.764069],[-65.908868,-9.764869],[-65.902368,-9.766069],[-65.899768,-9.760769],[-65.890068,-9.757069],[-65.887868,-9.754069],[-65.884668,-9.752169],[-65.881268,-9.751969],[-65.876868,-9.752769],[-65.870868,-9.754169],[-65.868868,-9.760669],[-65.864668,-9.765469],[-65.862168,-9.768169],[-65.865068,-9.770769],[-65.868268,-9.773169],[-65.869168,-9.775869],[-65.868268,-9.782569],[-65.871068,-9.785969],[-65.871868,-9.789869],[-65.868568,-9.793069],[-65.864968,-9.794469],[-65.860568,-9.795069],[-65.853068,-9.793969],[-65.850968,-9.791769],[-65.846668,-9.789469],[-65.841668,-9.789469],[-65.843668,-9.784769],[-65.834368,-9.775969],[-65.829268,-9.766769],[-65.821368,-9.767069],[-65.819668,-9.763969],[-65.819668,-9.756369],[-65.816068,-9.754869],[-65.812468,-9.757169],[-65.807968,-9.761769],[-65.802168,-9.756569],[-65.799368,-9.757669],[-65.802468,-9.766569],[-65.806568,-9.768969],[-65.811268,-9.769569],[-65.813068,-9.771769],[-65.811068,-9.776769],[-65.807968,-9.781269],[-65.805768,-9.788069],[-65.802568,-9.789469],[-65.797168,-9.786269],[-65.795268,-9.791169],[-65.790668,-9.788169],[-65.784568,-9.786769],[-65.781768,-9.783069],[-65.780868,-9.780069],[-65.780168,-9.770969],[-65.775368,-9.765669],[-65.777568,-9.758069],[-65.779468,-9.749069],[-65.779768,-9.741669],[-65.777868,-9.736769],[-65.775068,-9.734969],[-65.770768,-9.734369],[-65.767168,-9.736369],[-65.766568,-9.739669],[-65.768568,-9.743569],[-65.769568,-9.746869],[-65.771568,-9.750969],[-65.771868,-9.755969],[-65.771768,-9.758869],[-65.765368,-9.762169],[-65.756568,-9.766469],[-65.751268,-9.776469],[-65.744968,-9.781769],[-65.739468,-9.781969],[-65.736768,-9.778669],[-65.736168,-9.767869],[-65.734168,-9.763569],[-65.728968,-9.759569],[-65.722768,-9.756569],[-65.718768,-9.755969],[-65.714768,-9.755769],[-65.705168,-9.757069],[-65.696768,-9.750169],[-65.692768,-9.749369],[-65.686268,-9.749369],[-65.684468,-9.752069],[-65.684968,-9.757169],[-65.685768,-9.760969],[-65.682768,-9.761769],[-65.679068,-9.761069],[-65.680568,-9.766369],[-65.685168,-9.768969],[-65.689168,-9.768769],[-65.694668,-9.766869],[-65.700168,-9.764369],[-65.704968,-9.763969],[-65.708168,-9.765969],[-65.709568,-9.771569],[-65.703268,-9.779269],[-65.701368,-9.782769],[-65.699968,-9.789169],[-65.700968,-9.792469],[-65.708168,-9.800769],[-65.710368,-9.804369],[-65.710468,-9.807269],[-65.700168,-9.809069],[-65.693868,-9.812669],[-65.689068,-9.811869],[-65.691068,-9.806569],[-65.690168,-9.800769],[-65.681868,-9.793569],[-65.679768,-9.791369],[-65.673268,-9.782669],[-65.669968,-9.781169],[-65.666368,-9.782669],[-65.664468,-9.786469],[-65.663168,-9.790569],[-65.658868,-9.793469],[-65.652268,-9.791769],[-65.646468,-9.791769],[-65.643968,-9.795069],[-65.645668,-9.799169],[-65.652068,-9.804969],[-65.653668,-9.808669],[-65.651568,-9.813869],[-65.648268,-9.815969],[-65.641268,-9.807269],[-65.637668,-9.804669],[-65.634568,-9.806069],[-65.632968,-9.809869],[-65.633568,-9.816669],[-65.633168,-9.823569],[-65.632168,-9.830069],[-65.630468,-9.834269],[-65.626568,-9.836769],[-65.623768,-9.835969],[-65.618668,-9.832369],[-65.615568,-9.830769],[-65.613268,-9.828569],[-65.606768,-9.824969],[-65.600568,-9.824269],[-65.597868,-9.826569],[-65.599168,-9.835869],[-65.598768,-9.839069],[-65.595868,-9.841969],[-65.591568,-9.841469],[-65.585768,-9.839869],[-65.574868,-9.838269],[-65.568868,-9.838169],[-65.563068,-9.843469],[-65.559068,-9.844569],[-65.554668,-9.841969],[-65.553268,-9.838769],[-65.552968,-9.835369],[-65.554068,-9.831869],[-65.564068,-9.820569],[-65.565468,-9.816569],[-65.565568,-9.813069],[-65.563768,-9.810169],[-65.559368,-9.810769],[-65.556668,-9.808769],[-65.553968,-9.804769],[-65.548268,-9.804469],[-65.543168,-9.803969],[-65.539268,-9.801869],[-65.537268,-9.798869],[-65.535868,-9.788869],[-65.533668,-9.782369],[-65.530868,-9.781269],[-65.528768,-9.784269],[-65.526468,-9.787369],[-65.521868,-9.788369],[-65.518268,-9.791369],[-65.512468,-9.792769],[-65.508068,-9.788969],[-65.502768,-9.786369],[-65.499068,-9.781269],[-65.498268,-9.778369],[-65.498868,-9.775169],[-65.500468,-9.772569],[-65.503868,-9.768469],[-65.503768,-9.759369],[-65.504068,-9.747669],[-65.501268,-9.743269],[-65.501368,-9.733569],[-65.500268,-9.729169],[-65.491868,-9.729469],[-65.486168,-9.729169],[-65.482568,-9.726669],[-65.487768,-9.721369],[-65.489768,-9.714069],[-65.488568,-9.710369],[-65.485568,-9.707669],[-65.482468,-9.713469],[-65.474968,-9.714269],[-65.471768,-9.713669],[-65.465468,-9.710069],[-65.463168,-9.708269],[-65.460368,-9.706569],[-65.455968,-9.704069],[-65.450468,-9.700369],[-65.447068,-9.697069],[-65.443468,-9.692669],[-65.441368,-9.686269],[-65.442668,-9.678669],[-65.446668,-9.673869],[-65.446368,-9.669269],[-65.443468,-9.669269],[-65.440768,-9.670769],[-65.431068,-9.674669],[-65.421768,-9.677269],[-65.413668,-9.678669],[-65.400068,-9.683569],[-65.394868,-9.685769],[-65.391568,-9.687669],[-65.378268,-9.697069],[-65.368268,-9.706769],[-65.363668,-9.711569],[-65.356768,-9.720069],[-65.354568,-9.723669],[-65.351368,-9.731469],[-65.348168,-9.741669],[-65.343068,-9.753469],[-65.339768,-9.758769],[-65.336868,-9.764569],[-65.331768,-9.772369],[-65.327968,-9.780069],[-65.326768,-9.783969],[-65.324868,-9.797469],[-65.322068,-9.811269],[-65.320468,-9.814469],[-65.317668,-9.817769],[-65.307268,-9.823569],[-65.301168,-9.827969],[-65.298068,-9.829569],[-65.292868,-9.833269],[-65.289768,-9.836269],[-65.286968,-9.840869],[-65.285968,-9.845569],[-65.285968,-9.853369],[-65.286668,-9.858569],[-65.288468,-9.865769],[-65.291368,-9.871569],[-65.295768,-9.878369],[-65.299368,-9.882069],[-65.306968,-9.887869],[-65.312168,-9.893169],[-65.316568,-9.898969],[-65.321268,-9.905969],[-65.328468,-9.921169],[-65.331768,-9.929969],[-65.333268,-9.937469],[-65.332868,-9.943569],[-65.332068,-9.949069],[-65.331768,-9.952369],[-65.332568,-9.957369],[-65.333168,-9.964569],[-65.330768,-9.968769],[-65.325468,-9.972769],[-65.323468,-9.974969],[-65.322168,-9.977569],[-65.321868,-9.984669],[-65.321268,-9.992269],[-65.321268,-9.997769],[-65.320268,-10.001669],[-65.321868,-10.009269],[-65.322868,-10.013969],[-65.324068,-10.021469],[-65.325968,-10.028769],[-65.326768,-10.032369],[-65.327868,-10.036669],[-65.329268,-10.043169],[-65.329568,-10.047469],[-65.329568,-10.052569],[-65.328968,-10.055769],[-65.327468,-10.061869],[-65.325768,-10.066569],[-65.323568,-10.070969],[-65.319868,-10.079569],[-65.318168,-10.081869],[-65.315268,-10.085969],[-65.311968,-10.089469],[-65.309168,-10.091669],[-65.303968,-10.094769],[-65.301668,-10.097369],[-65.300568,-10.100869],[-65.300268,-10.104769],[-65.300568,-10.110369],[-65.302168,-10.121969],[-65.301668,-10.127469],[-65.301068,-10.130769],[-65.300368,-10.136069],[-65.300268,-10.139369],[-65.301168,-10.144369],[-65.302768,-10.149369],[-65.305768,-10.156169],[-65.306868,-10.159469],[-65.306868,-10.166369],[-65.305768,-10.172169],[-65.304668,-10.176569],[-65.303368,-10.182169],[-65.301168,-10.187269],[-65.299768,-10.190469],[-65.298168,-10.193869],[-65.295368,-10.198269],[-65.293568,-10.201569],[-65.290868,-10.206469],[-65.289568,-10.209569],[-65.288868,-10.215169],[-65.289268,-10.220869],[-65.293168,-10.227769],[-65.294168,-10.231969],[-65.294468,-10.238269],[-65.296168,-10.240769],[-65.300468,-10.244469],[-65.304168,-10.247669],[-65.307468,-10.251269],[-65.309468,-10.255169],[-65.310868,-10.258169],[-65.312368,-10.263469],[-65.313568,-10.267169],[-65.315268,-10.271869],[-65.317068,-10.277369],[-65.317768,-10.281169],[-65.317968,-10.286269],[-65.319268,-10.291469],[-65.320968,-10.295769],[-65.323968,-10.300469],[-65.326368,-10.304069],[-65.331068,-10.309069],[-65.334568,-10.311869],[-65.337068,-10.314069],[-65.343468,-10.317769],[-65.347768,-10.322169],[-65.350668,-10.325969],[-65.353468,-10.330169],[-65.356168,-10.333569],[-65.358168,-10.336869],[-65.361668,-10.341669],[-65.363868,-10.343769],[-65.366068,-10.345869],[-65.371568,-10.349169],[-65.374868,-10.351269],[-65.378268,-10.355269],[-65.381668,-10.360869],[-65.384568,-10.364969],[-65.389368,-10.370069],[-65.391768,-10.375569],[-65.389668,-10.382469],[-65.388168,-10.385669],[-65.385668,-10.390769],[-65.383868,-10.393769],[-65.381268,-10.397869],[-65.380268,-10.400869],[-65.379068,-10.408969],[-65.379068,-10.416169],[-65.379868,-10.420369],[-65.380168,-10.424169],[-65.380168,-10.429669],[-65.383068,-10.432969],[-65.384268,-10.435569],[-65.386268,-10.439169],[-65.390368,-10.447469],[-65.392868,-10.450969],[-65.395768,-10.454069],[-65.400868,-10.460469],[-65.402868,-10.462669],[-65.405668,-10.464069],[-65.410868,-10.464069],[-65.416668,-10.462869],[-65.420668,-10.462969],[-65.423868,-10.465069],[-65.424668,-10.468369],[-65.425568,-10.471969],[-65.428668,-10.475969],[-65.429668,-10.481769],[-65.429168,-10.484969],[-65.427168,-10.488669],[-65.424668,-10.492969],[-65.419268,-10.497869],[-65.415268,-10.501569],[-65.413468,-10.504369],[-65.410568,-10.509569],[-65.410568,-10.512869],[-65.411968,-10.515369],[-65.414168,-10.518769],[-65.417768,-10.524369],[-65.419468,-10.527369],[-65.420068,-10.530569],[-65.419968,-10.535569],[-65.417868,-10.540369],[-65.415268,-10.543069],[-65.408368,-10.548569],[-65.405668,-10.551869],[-65.404468,-10.554769],[-65.403468,-10.561369],[-65.402668,-10.564169],[-65.402068,-10.568069],[-65.399068,-10.574869],[-65.397868,-10.579869],[-65.397168,-10.583269],[-65.397068,-10.586569],[-65.398368,-10.590169],[-65.402268,-10.592669],[-65.408468,-10.597369],[-65.410568,-10.602269],[-65.409868,-10.608869],[-65.409568,-10.613569],[-65.416468,-10.617669],[-65.416168,-10.621069],[-65.413668,-10.623869],[-65.412268,-10.627969],[-65.410068,-10.631269],[-65.405868,-10.634969],[-65.405168,-10.639569],[-65.403768,-10.642569],[-65.400468,-10.644369],[-65.395968,-10.645669],[-65.386068,-10.645469],[-65.379168,-10.645669],[-65.374668,-10.647069],[-65.371168,-10.648669],[-65.367668,-10.650669],[-65.361768,-10.654469],[-65.358968,-10.656669],[-65.355268,-10.661269],[-65.351768,-10.666669],[-65.349168,-10.671469],[-65.347868,-10.674969],[-65.346768,-10.678669],[-65.345968,-10.681569],[-65.345368,-10.686569],[-65.344568,-10.690769],[-65.343668,-10.699569],[-65.343368,-10.707269],[-65.343368,-10.715069],[-65.344468,-10.721669],[-65.346968,-10.731169],[-65.348168,-10.734969],[-65.349168,-10.738869],[-65.349468,-10.744069],[-65.348368,-10.748069],[-65.346768,-10.752969],[-65.345568,-10.757769],[-65.344768,-10.762169],[-65.344468,-10.765769],[-65.344768,-10.770369],[-65.346268,-10.774069],[-65.348068,-10.778369],[-65.350568,-10.780469],[-65.354168,-10.780969],[-65.358868,-10.779469],[-65.365368,-10.780869],[-65.367268,-10.785569],[-65.367668,-10.789869],[-65.367168,-10.794969],[-65.365068,-10.799269],[-65.362468,-10.801469],[-65.358068,-10.803269],[-65.354168,-10.805069],[-65.348468,-10.806869],[-65.343768,-10.807469],[-65.340068,-10.807669],[-65.337668,-10.809969],[-65.334768,-10.812769],[-65.330668,-10.815969],[-65.326268,-10.818769],[-65.323568,-10.820169],[-65.320968,-10.821869],[-65.317668,-10.824669],[-65.314368,-10.828469],[-65.310568,-10.833269],[-65.307168,-10.837869],[-65.304168,-10.841269],[-65.301468,-10.844169],[-65.298868,-10.847269],[-65.292768,-10.854169],[-65.289168,-10.857769],[-65.284568,-10.861469],[-65.282068,-10.864069],[-65.278768,-10.866369],[-65.276168,-10.869769],[-65.273468,-10.877469],[-65.271468,-10.884869],[-65.268968,-10.896769],[-65.268168,-10.904469],[-65.267168,-10.909769],[-65.266568,-10.915669],[-65.266468,-10.918669],[-65.267468,-10.922569],[-65.274068,-10.922469],[-65.277668,-10.920669],[-65.280168,-10.919169],[-65.284468,-10.919769],[-65.285968,-10.922869],[-65.285868,-10.926569],[-65.283868,-10.931669],[-65.280568,-10.936969],[-65.278468,-10.939669],[-65.274768,-10.943569],[-65.272968,-10.948969],[-65.271868,-10.952869],[-65.269568,-10.958269],[-65.267068,-10.962969],[-65.263968,-10.966669],[-65.261768,-10.968769],[-65.257968,-10.973169],[-65.255268,-10.976969],[-65.252968,-10.980669],[-65.250568,-10.984969],[-65.250268,-10.987869],[-65.250968,-10.990769],[-65.252768,-10.992969],[-65.254968,-10.994769],[-65.257668,-10.996369],[-65.262368,-10.998069],[-65.265768,-10.999369],[-65.269368,-11.000169],[-65.272968,-11.003569],[-65.277268,-11.007369],[-65.281168,-11.010669],[-65.285668,-11.015169],[-65.288868,-11.018169],[-65.292568,-11.021569],[-65.294768,-11.023669],[-65.297168,-11.025969],[-65.300768,-11.031169],[-65.301668,-11.035569],[-65.300768,-11.038769],[-65.298368,-11.041369],[-65.295368,-11.044669],[-65.292468,-11.047869],[-65.289968,-11.050469],[-65.285868,-11.055069],[-65.283068,-11.058269],[-65.281768,-11.060869],[-65.280868,-11.063569],[-65.279568,-11.069669],[-65.279468,-11.074869],[-65.279768,-11.079069],[-65.280868,-11.082369],[-65.284268,-11.089569],[-65.287268,-11.092969],[-65.293568,-11.095669],[-65.303668,-11.097669],[-65.307468,-11.098469],[-65.311568,-11.099569],[-65.315168,-11.100569],[-65.317968,-11.101369],[-65.321068,-11.102369],[-65.325768,-11.104169],[-65.328768,-11.105569],[-65.332068,-11.107069],[-65.335468,-11.109469],[-65.338968,-11.111969],[-65.343768,-11.115769],[-65.347368,-11.118369],[-65.350568,-11.120869],[-65.353368,-11.123869],[-65.356368,-11.127069],[-65.358268,-11.130469],[-65.361468,-11.134869],[-65.362768,-11.137769],[-65.363868,-11.142069],[-65.363668,-11.146169],[-65.361968,-11.150869],[-65.360268,-11.155869],[-65.359368,-11.158769],[-65.357068,-11.165269],[-65.355568,-11.169969],[-65.354268,-11.173269],[-65.352068,-11.181569],[-65.350268,-11.186969],[-65.347568,-11.189469],[-65.344268,-11.190169],[-65.338968,-11.188769],[-65.333768,-11.186069],[-65.330968,-11.185569],[-65.324568,-11.186969],[-65.321368,-11.190469],[-65.319568,-11.193469],[-65.318768,-11.196369],[-65.318568,-11.199369],[-65.319868,-11.204269],[-65.321568,-11.208469],[-65.324068,-11.210869],[-65.330768,-11.211569],[-65.335068,-11.211169],[-65.339568,-11.210769],[-65.345568,-11.210769],[-65.349768,-11.211569],[-65.353368,-11.213469],[-65.356068,-11.215969],[-65.358968,-11.219769],[-65.360268,-11.222369],[-65.361368,-11.228369],[-65.361868,-11.240269],[-65.361868,-11.245569],[-65.361368,-11.250469],[-65.359768,-11.257769],[-65.356668,-11.269069],[-65.355668,-11.272169],[-65.354468,-11.276569],[-65.353168,-11.281169],[-65.350668,-11.289169],[-65.349568,-11.292769],[-65.348468,-11.296469],[-65.346368,-11.303869],[-65.343368,-11.308769],[-65.341268,-11.310869],[-65.338668,-11.312669],[-65.335368,-11.313769],[-65.332368,-11.314069],[-65.316568,-11.314869],[-65.310468,-11.315269],[-65.306668,-11.315569],[-65.299768,-11.315769],[-65.296068,-11.316969],[-65.293168,-11.319869],[-65.291668,-11.324869],[-65.291768,-11.330469],[-65.293868,-11.333169],[-65.298868,-11.335369],[-65.307968,-11.335869],[-65.313768,-11.336969],[-65.325168,-11.338769],[-65.329268,-11.340369],[-65.332268,-11.343669],[-65.334568,-11.349969],[-65.335368,-11.355869],[-65.333668,-11.363369],[-65.329668,-11.374169],[-65.328768,-11.377969],[-65.327068,-11.384369],[-65.326068,-11.390769],[-65.326068,-11.394369],[-65.326468,-11.397269],[-65.326468,-11.401569],[-65.325668,-11.405069],[-65.324968,-11.409869],[-65.324268,-11.414269],[-65.323968,-11.417169],[-65.323568,-11.420069],[-65.322068,-11.426669],[-65.320568,-11.435169],[-65.319968,-11.439969],[-65.318868,-11.447369],[-65.317768,-11.451469],[-65.316668,-11.456269],[-65.315568,-11.459769],[-65.312968,-11.471969],[-65.311068,-11.479569],[-65.310468,-11.485569],[-65.309768,-11.490469],[-65.309068,-11.493569],[-65.307268,-11.497169],[-65.304768,-11.500769],[-65.298968,-11.504169],[-65.291368,-11.505469],[-65.288468,-11.505569],[-65.284768,-11.505969],[-65.280168,-11.507369],[-65.276568,-11.509069],[-65.271768,-11.510669],[-65.267568,-11.511869],[-65.263468,-11.513169],[-65.258468,-11.514269],[-65.250168,-11.515069],[-65.239968,-11.515069],[-65.228868,-11.515669],[-65.224968,-11.516369],[-65.217968,-11.520069],[-65.214068,-11.524369],[-65.212568,-11.528069],[-65.211568,-11.531569],[-65.211768,-11.537569],[-65.212268,-11.542769],[-65.214068,-11.547869],[-65.218168,-11.553569],[-65.222668,-11.557669],[-65.225968,-11.560469],[-65.228168,-11.562469],[-65.231768,-11.566069],[-65.234468,-11.570269],[-65.234968,-11.575669],[-65.234668,-11.579569],[-65.233368,-11.583469],[-65.228668,-11.590569],[-65.226668,-11.593169],[-65.225268,-11.596369],[-65.224768,-11.599869],[-65.225968,-11.605369],[-65.229968,-11.611469],[-65.231668,-11.615369],[-65.231368,-11.619369],[-65.229568,-11.623669],[-65.226968,-11.627369],[-65.224568,-11.630469],[-65.221168,-11.636269],[-65.218368,-11.641069],[-65.217568,-11.645369],[-65.217668,-11.650869],[-65.218968,-11.655869],[-65.221968,-11.661269],[-65.225068,-11.665669],[-65.227468,-11.668869],[-65.229268,-11.671369],[-65.232068,-11.674169],[-65.236068,-11.678369],[-65.239668,-11.682169],[-65.243068,-11.685269],[-65.249968,-11.690769],[-65.253768,-11.693869],[-65.256268,-11.695969],[-65.259668,-11.700269],[-65.260668,-11.705369],[-65.258468,-11.711469],[-65.255268,-11.715869],[-65.250968,-11.720869],[-65.248068,-11.723369],[-65.243668,-11.726369],[-65.239768,-11.728469],[-65.236368,-11.730869],[-65.233868,-11.732469],[-65.230668,-11.734469],[-65.226468,-11.737169],[-65.220868,-11.740069],[-65.217668,-11.742269],[-65.214768,-11.744069],[-65.208668,-11.747169],[-65.205668,-11.749069],[-65.200968,-11.750569],[-65.197468,-11.751869],[-65.191868,-11.754369],[-65.186368,-11.756369],[-65.181368,-11.756569],[-65.178568,-11.756069],[-65.173868,-11.752469],[-65.173668,-11.747769],[-65.174468,-11.744369],[-65.175768,-11.741569],[-65.178868,-11.737769],[-65.183368,-11.733169],[-65.185468,-11.730269],[-65.185768,-11.725969],[-65.183368,-11.721969],[-65.179768,-11.720969],[-65.176168,-11.720869],[-65.171968,-11.720969],[-65.166768,-11.721169],[-65.160068,-11.720869],[-65.147368,-11.720869],[-65.142968,-11.720369],[-65.128068,-11.720569],[-65.122968,-11.719469],[-65.120068,-11.718369],[-65.114768,-11.714269],[-65.106368,-11.708169],[-65.101668,-11.706469],[-65.097668,-11.705669],[-65.094468,-11.706269],[-65.090468,-11.707669],[-65.087968,-11.709269],[-65.085868,-11.711569],[-65.083968,-11.714069],[-65.082068,-11.717269],[-65.080768,-11.719869],[-65.080068,-11.725569],[-65.079968,-11.730869],[-65.079668,-11.735069],[-65.078568,-11.738569],[-65.076568,-11.744369],[-65.075268,-11.748269],[-65.073568,-11.753469],[-65.071368,-11.758769],[-65.068468,-11.763869],[-65.066568,-11.767369],[-65.064968,-11.771869],[-65.063268,-11.777069],[-65.061968,-11.780869],[-65.060268,-11.786769],[-65.059668,-11.790569],[-65.059368,-11.798969],[-65.059868,-11.804369],[-65.060168,-11.813069],[-65.060768,-11.816569],[-65.060768,-11.819969],[-65.061268,-11.824269],[-65.063068,-11.830669],[-65.064368,-11.834369],[-65.065568,-11.837269],[-65.067768,-11.845169],[-65.068868,-11.849169],[-65.069568,-11.852069],[-65.070768,-11.856369],[-65.071368,-11.862569],[-65.070668,-11.869069],[-65.068868,-11.871669],[-65.064868,-11.877969],[-65.060868,-11.882069],[-65.058068,-11.883469],[-65.053268,-11.885469],[-65.050068,-11.885969],[-65.031668,-11.887169],[-65.025368,-11.888769],[-65.022568,-11.889869],[-65.018768,-11.892069],[-65.016568,-11.894369],[-65.015368,-11.897369],[-65.014868,-11.900869],[-65.014968,-11.904169],[-65.016268,-11.911169],[-65.017368,-11.915069],[-65.017868,-11.918069],[-65.018968,-11.921669],[-65.020768,-11.927469],[-65.023468,-11.935269],[-65.024768,-11.938469],[-65.025868,-11.941569],[-65.027368,-11.945169],[-65.030168,-11.950169],[-65.035568,-11.954669],[-65.039568,-11.958169],[-65.041768,-11.961769],[-65.041368,-11.967269],[-65.039168,-11.970269],[-65.036168,-11.968369],[-65.032068,-11.966269],[-65.028368,-11.967369],[-65.025768,-11.970669],[-65.026568,-11.973969],[-65.029268,-11.977569],[-65.032768,-11.980669],[-65.034468,-11.983369],[-65.035068,-11.987569],[-65.033668,-11.992269],[-65.031968,-11.994969],[-65.029568,-11.996969],[-65.025968,-11.998569],[-65.021468,-11.998769],[-65.017968,-11.998569],[-65.015668,-11.996669],[-65.012168,-11.994369],[-65.007368,-11.992969],[-65.001668,-11.993069],[-64.998268,-11.995469],[-64.994068,-12.000169],[-64.992268,-12.002469],[-64.989468,-12.007769],[-64.986368,-12.011569],[-64.984168,-12.014269],[-64.979968,-12.017169],[-64.975568,-12.018569],[-64.971668,-12.017369],[-64.969468,-12.012769],[-64.968168,-12.008269],[-64.966768,-12.003569],[-64.965068,-11.999469],[-64.959368,-11.996369],[-64.952568,-11.994369],[-64.948268,-11.993369],[-64.944868,-11.994969],[-64.941268,-11.999069],[-64.938068,-12.006869],[-64.933768,-12.014369],[-64.929768,-12.020669],[-64.926168,-12.023769],[-64.922868,-12.026269],[-64.918068,-12.028169],[-64.911668,-12.026469],[-64.907668,-12.025069],[-64.904168,-12.022969],[-64.900468,-12.020769],[-64.895768,-12.019769],[-64.890668,-12.016369],[-64.887068,-12.014969],[-64.882768,-12.013469],[-64.878768,-12.012669],[-64.875168,-12.012369],[-64.869068,-12.011769],[-64.863268,-12.012169],[-64.857468,-12.012169],[-64.853668,-12.011069],[-64.848068,-12.008869],[-64.843668,-12.009169],[-64.839568,-12.010669],[-64.835068,-12.013569],[-64.831168,-12.016069],[-64.828768,-12.017969],[-64.826768,-12.020369],[-64.825468,-12.024269],[-64.823468,-12.029069],[-64.818868,-12.035869],[-64.816368,-12.038669],[-64.812968,-12.044269],[-64.809768,-12.053269],[-64.809368,-12.059069],[-64.810568,-12.065969],[-64.814668,-12.071669],[-64.822468,-12.075969],[-64.827468,-12.077469],[-64.831068,-12.080069],[-64.833968,-12.082969],[-64.835968,-12.086769],[-64.839068,-12.091169],[-64.841968,-12.094069],[-64.842668,-12.096969],[-64.843668,-12.100269],[-64.843168,-12.104269],[-64.841568,-12.108169],[-64.837268,-12.115869],[-64.833968,-12.120169],[-64.830068,-12.122369],[-64.824568,-12.121069],[-64.821368,-12.117769],[-64.819868,-12.114669],[-64.817968,-12.111869],[-64.816668,-12.109169],[-64.815268,-12.104969],[-64.813268,-12.100669],[-64.811568,-12.097569],[-64.809468,-12.093769],[-64.807468,-12.091269],[-64.803668,-12.087569],[-64.800468,-12.085869],[-64.790568,-12.085469],[-64.786968,-12.086769],[-64.782768,-12.088969],[-64.777568,-12.090669],[-64.774068,-12.092369],[-64.770368,-12.093669],[-64.766768,-12.095869],[-64.762368,-12.098869],[-64.760268,-12.101269],[-64.759068,-12.105269],[-64.757768,-12.108069],[-64.757468,-12.112269],[-64.757968,-12.115269],[-64.759268,-12.119169],[-64.761768,-12.122669],[-64.763268,-12.125569],[-64.764968,-12.129069],[-64.766768,-12.132369],[-64.767968,-12.135769],[-64.768768,-12.139069],[-64.769068,-12.143669],[-64.767868,-12.146769],[-64.765668,-12.150369],[-64.762868,-12.154069],[-64.757468,-12.157369],[-64.753068,-12.157869],[-64.749868,-12.157569],[-64.746868,-12.156269],[-64.743668,-12.153769],[-64.741568,-12.150669],[-64.740268,-12.147269],[-64.738668,-12.143969],[-64.736868,-12.139569],[-64.735368,-12.131369],[-64.734668,-12.125569],[-64.734168,-12.120769],[-64.734368,-12.117569],[-64.735268,-12.114069],[-64.736068,-12.110869],[-64.738068,-12.106669],[-64.738668,-12.103169],[-64.738268,-12.100269],[-64.731068,-12.093669],[-64.727768,-12.092269],[-64.723968,-12.089769],[-64.721468,-12.087969],[-64.717068,-12.086969],[-64.712868,-12.086269],[-64.707868,-12.087569],[-64.703268,-12.090469],[-64.699968,-12.092669],[-64.697968,-12.094869],[-64.697368,-12.099469],[-64.698268,-12.103569],[-64.700668,-12.106469],[-64.703168,-12.108869],[-64.705068,-12.111169],[-64.708168,-12.115069],[-64.711468,-12.119669],[-64.713768,-12.124069],[-64.715068,-12.127469],[-64.715868,-12.132969],[-64.716768,-12.136069],[-64.717568,-12.144069],[-64.717268,-12.149369],[-64.717568,-12.153969],[-64.716668,-12.157069],[-64.715868,-12.161169],[-64.715168,-12.164569],[-64.714368,-12.168669],[-64.712068,-12.174269],[-64.709268,-12.177469],[-64.705668,-12.179769],[-64.703468,-12.181869],[-64.699068,-12.186569],[-64.694968,-12.189169],[-64.691568,-12.189969],[-64.686268,-12.190969],[-64.680568,-12.191569],[-64.674668,-12.191669],[-64.671468,-12.192669],[-64.667768,-12.194369],[-64.664868,-12.195969],[-64.660868,-12.197869],[-64.657568,-12.199269],[-64.652668,-12.200669],[-64.648968,-12.201769],[-64.645068,-12.202569],[-64.640068,-12.205169],[-64.635268,-12.206869],[-64.631268,-12.208269],[-64.627768,-12.210169],[-64.622668,-12.212269],[-64.619068,-12.213669],[-64.616168,-12.214769],[-64.612168,-12.215169],[-64.607268,-12.215969],[-64.602068,-12.215869],[-64.597668,-12.215969],[-64.593668,-12.215869],[-64.589768,-12.215369],[-64.584268,-12.214369],[-64.580068,-12.214269],[-64.576868,-12.215069],[-64.573268,-12.216969],[-64.568568,-12.219769],[-64.566068,-12.225269],[-64.563368,-12.231169],[-64.560468,-12.233869],[-64.557968,-12.237469],[-64.553068,-12.241469],[-64.546068,-12.242569],[-64.540668,-12.239469],[-64.537468,-12.235769],[-64.534168,-12.232769],[-64.529768,-12.229969],[-64.526268,-12.227269],[-64.523668,-12.225669],[-64.515668,-12.223369],[-64.511768,-12.223069],[-64.508868,-12.224569],[-64.505968,-12.228069],[-64.504968,-12.231369],[-64.503568,-12.234169],[-64.502668,-12.244369],[-64.501668,-12.247269],[-64.499368,-12.251669],[-64.498268,-12.256569],[-64.496968,-12.261069],[-64.495868,-12.266269],[-64.495268,-12.270669],[-64.494668,-12.275969],[-64.494468,-12.279769],[-64.493568,-12.285969],[-64.492968,-12.290569],[-64.492768,-12.294169],[-64.493368,-12.297269],[-64.494368,-12.303969],[-64.495468,-12.310869],[-64.496668,-12.314369],[-64.498068,-12.317669],[-64.499368,-12.324969],[-64.500468,-12.329369],[-64.504168,-12.333169],[-64.507768,-12.335969],[-64.509868,-12.338469],[-64.512368,-12.341969],[-64.512968,-12.347769],[-64.511468,-12.352369],[-64.507768,-12.357469],[-64.503768,-12.362469],[-64.500768,-12.365469],[-64.498368,-12.367169],[-64.494168,-12.367769],[-64.490468,-12.369969],[-64.487468,-12.372469],[-64.483968,-12.374169],[-64.481668,-12.376069],[-64.479268,-12.379169],[-64.475568,-12.380769],[-64.470568,-12.382069],[-64.465168,-12.384069],[-64.460968,-12.386269],[-64.458168,-12.389069],[-64.454868,-12.394369],[-64.452968,-12.399069],[-64.451368,-12.402269],[-64.449268,-12.406769],[-64.447668,-12.409169],[-64.444168,-12.412669],[-64.440768,-12.415869],[-64.436068,-12.418369],[-64.432468,-12.420869],[-64.430768,-12.423269],[-64.428868,-12.426869],[-64.424968,-12.432469],[-64.419768,-12.438369],[-64.416168,-12.441369],[-64.410068,-12.444569],[-64.406668,-12.446669],[-64.402868,-12.447969],[-64.398968,-12.449069],[-64.393768,-12.449269],[-64.389568,-12.449969],[-64.386268,-12.451269],[-64.382668,-12.452369],[-64.375968,-12.452969],[-64.370068,-12.454369],[-64.366868,-12.455369],[-64.363268,-12.456869],[-64.359768,-12.458669],[-64.352868,-12.458969],[-64.349768,-12.459569],[-64.345068,-12.459769],[-64.336568,-12.458469],[-64.327568,-12.457269],[-64.322468,-12.456569],[-64.318268,-12.457169],[-64.307468,-12.457569],[-64.303268,-12.458169],[-64.298968,-12.457869],[-64.295768,-12.457869],[-64.291768,-12.460469],[-64.290568,-12.467669],[-64.291968,-12.471969],[-64.293568,-12.474869],[-64.295268,-12.479169],[-64.296668,-12.482769],[-64.298168,-12.486469],[-64.298868,-12.490769],[-64.297168,-12.495769],[-64.294168,-12.499469],[-64.290868,-12.501369],[-64.285568,-12.502969],[-64.281268,-12.501569],[-64.278368,-12.499769],[-64.275068,-12.496569],[-64.272568,-12.492669],[-64.270668,-12.488669],[-64.266468,-12.485369],[-64.259268,-12.479969],[-64.254668,-12.477769],[-64.251868,-12.475269],[-64.248368,-12.471969],[-64.246068,-12.469869],[-64.242168,-12.463969],[-64.238668,-12.459569],[-64.235268,-12.456169],[-64.231068,-12.455069],[-64.227568,-12.455969],[-64.224768,-12.458669],[-64.222268,-12.460469],[-64.217968,-12.462269],[-64.213268,-12.461569],[-64.209268,-12.462269],[-64.205768,-12.464269],[-64.202568,-12.467569],[-64.199368,-12.470969],[-64.196768,-12.472769],[-64.193468,-12.472669],[-64.189168,-12.470969],[-64.184768,-12.466669],[-64.181168,-12.465569],[-64.173568,-12.466269],[-64.171368,-12.469769],[-64.171168,-12.481969],[-64.171468,-12.484969],[-64.171068,-12.490869],[-64.172768,-12.495769],[-64.173868,-12.500469],[-64.173868,-12.503869],[-64.173368,-12.507069],[-64.171168,-12.510369],[-64.168668,-12.512069],[-64.165568,-12.513869],[-64.160868,-12.514569],[-64.156468,-12.513469],[-64.153668,-12.511469],[-64.151468,-12.509069],[-64.149068,-12.505469],[-64.146568,-12.501669],[-64.145668,-12.498069],[-64.145068,-12.492969],[-64.145068,-12.489969],[-64.144268,-12.482769],[-64.141068,-12.478569],[-64.137668,-12.476969],[-64.134368,-12.476369],[-64.130168,-12.476969],[-64.127768,-12.478869],[-64.124868,-12.482169],[-64.123068,-12.485069],[-64.122168,-12.489369],[-64.122668,-12.493869],[-64.123068,-12.497169],[-64.124168,-12.500769],[-64.122968,-12.504869],[-64.118368,-12.504569],[-64.114968,-12.503569],[-64.112468,-12.501069],[-64.110568,-12.498569],[-64.108068,-12.496669],[-64.105268,-12.495469],[-64.102468,-12.492969],[-64.100968,-12.490069],[-64.099468,-12.486069],[-64.096368,-12.484369],[-64.092068,-12.483869],[-64.089468,-12.485269],[-64.089368,-12.489769],[-64.088968,-12.495269],[-64.086568,-12.498869],[-64.082868,-12.500869],[-64.076368,-12.501269],[-64.073568,-12.499869],[-64.069068,-12.494069],[-64.064568,-12.491169],[-64.059968,-12.490869],[-64.056968,-12.491969],[-64.053068,-12.494969],[-64.050568,-12.497669],[-64.048568,-12.500769],[-64.046068,-12.504569],[-64.043368,-12.510469],[-64.039468,-12.514969],[-64.035868,-12.516069],[-64.032268,-12.515369],[-64.029268,-12.513969],[-64.026468,-12.511769],[-64.024068,-12.509669],[-64.021268,-12.508169],[-64.018468,-12.508769],[-64.013268,-12.514369],[-64.010468,-12.517469],[-64.005768,-12.517069],[-64.002768,-12.512769],[-64.001068,-12.504169],[-63.998368,-12.503069],[-63.995268,-12.503369],[-63.991968,-12.504869],[-63.986468,-12.509169],[-63.983168,-12.511769],[-63.981368,-12.514369],[-63.978568,-12.517169],[-63.976168,-12.520169],[-63.969568,-12.525469],[-63.966668,-12.527569],[-63.963368,-12.529769],[-63.960468,-12.530569],[-63.957068,-12.531269],[-63.952468,-12.531669],[-63.946568,-12.529769],[-63.942768,-12.527669],[-63.939068,-12.526169],[-63.935568,-12.523169],[-63.932768,-12.520669],[-63.927868,-12.516869],[-63.924368,-12.514269],[-63.920368,-12.511269],[-63.914168,-12.510969],[-63.908468,-12.510469],[-63.902868,-12.507669],[-63.900368,-12.505269],[-63.897868,-12.500169],[-63.897868,-12.495569],[-63.900368,-12.488569],[-63.900868,-12.484969],[-63.900468,-12.481769],[-63.895768,-12.475969],[-63.893468,-12.472269],[-63.890668,-12.468469],[-63.889268,-12.464769],[-63.889268,-12.461269],[-63.890668,-12.455169],[-63.888468,-12.448469],[-63.884368,-12.446269],[-63.880268,-12.445569],[-63.876568,-12.446269],[-63.871568,-12.447669],[-63.865368,-12.451569],[-63.861468,-12.454069],[-63.857768,-12.456269],[-63.851668,-12.459369],[-63.848068,-12.460369],[-63.843368,-12.461769],[-63.840168,-12.462869],[-63.836968,-12.463369],[-63.832868,-12.462969],[-63.827468,-12.459269],[-63.823468,-12.453469],[-63.821068,-12.449969],[-63.817968,-12.447069],[-63.814868,-12.447469],[-63.810768,-12.449069],[-63.806068,-12.448469],[-63.802768,-12.446769],[-63.799368,-12.443869],[-63.797268,-12.441269],[-63.794268,-12.435869],[-63.791068,-12.430469],[-63.787268,-12.427969],[-63.783468,-12.429169],[-63.779768,-12.433069],[-63.774868,-12.436669],[-63.768468,-12.440269],[-63.763468,-12.441969],[-63.758768,-12.441669],[-63.746968,-12.439369],[-63.741968,-12.438369],[-63.733668,-12.438569],[-63.729168,-12.440169],[-63.726368,-12.440769],[-63.720968,-12.441869],[-63.716968,-12.443269],[-63.713168,-12.443769],[-63.709768,-12.444869],[-63.705168,-12.445969],[-63.698568,-12.447769],[-63.695968,-12.449069],[-63.691568,-12.449369],[-63.684768,-12.452969],[-63.680068,-12.457869],[-63.676168,-12.461569],[-63.671468,-12.463269],[-63.666968,-12.463269],[-63.659268,-12.461969],[-63.655868,-12.461969],[-63.651768,-12.464069],[-63.647868,-12.465869],[-63.642568,-12.467269],[-63.638968,-12.468369],[-63.633168,-12.470869],[-63.630168,-12.471669],[-63.624068,-12.472269],[-63.620568,-12.474569],[-63.619068,-12.478569],[-63.617268,-12.480969],[-63.614668,-12.484669],[-63.611068,-12.486169],[-63.605568,-12.486969],[-63.593668,-12.489769],[-63.589768,-12.491169],[-63.585068,-12.493669],[-63.581468,-12.496969],[-63.576868,-12.500569],[-63.572868,-12.502369],[-63.569268,-12.502969],[-63.564868,-12.503069],[-63.560268,-12.504169],[-63.553968,-12.506569],[-63.550468,-12.508469],[-63.547168,-12.512969],[-63.544968,-12.516069],[-63.542468,-12.520369],[-63.540068,-12.524469],[-63.538468,-12.527969],[-63.536768,-12.530469],[-63.532368,-12.538869],[-63.527268,-12.545569],[-63.524768,-12.547469],[-63.520968,-12.549969],[-63.515368,-12.554169],[-63.512068,-12.557569],[-63.508168,-12.562769],[-63.505468,-12.565269],[-63.502068,-12.566969],[-63.498568,-12.567369],[-63.494168,-12.567469],[-63.489968,-12.566569],[-63.482868,-12.564169],[-63.478568,-12.562669],[-63.474868,-12.561969],[-63.470668,-12.561669],[-63.465168,-12.562369],[-63.462268,-12.562369],[-63.458168,-12.561869],[-63.451468,-12.562669],[-63.448468,-12.563369],[-63.441868,-12.563569],[-63.438768,-12.564369],[-63.434668,-12.566669],[-63.437168,-12.572469],[-63.438068,-12.576469],[-63.437968,-12.581469],[-63.436568,-12.585469],[-63.433368,-12.588269],[-63.429368,-12.591269],[-63.427268,-12.593669],[-63.426568,-12.597069],[-63.431868,-12.598469],[-63.436068,-12.599569],[-63.440568,-12.600669],[-63.440768,-12.604969],[-63.438068,-12.608269],[-63.433568,-12.609369],[-63.429068,-12.607569],[-63.422168,-12.606669],[-63.418068,-12.607569],[-63.413968,-12.608869],[-63.410968,-12.610369],[-63.408368,-12.613669],[-63.406768,-12.618269],[-63.404568,-12.626569],[-63.403668,-12.629669],[-63.401568,-12.634969],[-63.397068,-12.639969],[-63.393468,-12.643169],[-63.389568,-12.647069],[-63.384968,-12.651269],[-63.378068,-12.655369],[-63.374668,-12.657069],[-63.368668,-12.659469],[-63.364668,-12.658869],[-63.361768,-12.657569],[-63.357568,-12.657069],[-63.354268,-12.656269],[-63.350268,-12.656669],[-63.346268,-12.658469],[-63.343068,-12.660269],[-63.339768,-12.661769],[-63.336968,-12.663869],[-63.334768,-12.666669],[-63.332268,-12.668069],[-63.328568,-12.669669],[-63.322968,-12.671469],[-63.317468,-12.673269],[-63.313568,-12.674969],[-63.310868,-12.676169],[-63.305468,-12.677969],[-63.301168,-12.679669],[-63.295368,-12.681869],[-63.291668,-12.682269],[-63.286268,-12.683269],[-63.281968,-12.683569],[-63.278768,-12.684169],[-63.272568,-12.684169],[-63.267068,-12.683369],[-63.262768,-12.683269],[-63.255468,-12.684969],[-63.251668,-12.686869],[-63.247468,-12.689069],[-63.244068,-12.690469],[-63.239768,-12.690869],[-63.234968,-12.688069],[-63.231768,-12.683669],[-63.237268,-12.679369],[-63.239968,-12.675369],[-63.241068,-12.669669],[-63.245268,-12.665969],[-63.244668,-12.661669],[-63.239668,-12.661669],[-63.236868,-12.662869],[-63.233168,-12.664869],[-63.229568,-12.664769],[-63.226968,-12.663369],[-63.223768,-12.659869],[-63.220168,-12.657069],[-63.216968,-12.655369],[-63.211468,-12.655069],[-63.207068,-12.656169],[-63.202968,-12.656769],[-63.197168,-12.655069],[-63.192768,-12.651469],[-63.189968,-12.647569],[-63.189868,-12.644369],[-63.190268,-12.641069],[-63.191868,-12.638469],[-63.194268,-12.635969],[-63.197168,-12.631269],[-63.196868,-12.626669],[-63.193868,-12.623869],[-63.189068,-12.624069],[-63.185768,-12.624969],[-63.183268,-12.626669],[-63.179768,-12.631769],[-63.177968,-12.635669],[-63.176068,-12.638169],[-63.173968,-12.640369],[-63.168968,-12.642169],[-63.162768,-12.639369],[-63.161768,-12.635769],[-63.162868,-12.632969],[-63.165568,-12.629169],[-63.167468,-12.624969],[-63.167068,-12.620269],[-63.163068,-12.614969],[-63.158868,-12.613969],[-63.155968,-12.615769],[-63.153668,-12.619469],[-63.153468,-12.624469],[-63.153168,-12.630569],[-63.150968,-12.634369],[-63.145368,-12.637369],[-63.137768,-12.639869],[-63.138568,-12.642869],[-63.139868,-12.645469],[-63.134968,-12.648169],[-63.128768,-12.645669],[-63.125868,-12.647069],[-63.122668,-12.653769],[-63.119368,-12.657369],[-63.113568,-12.658969],[-63.106368,-12.656769],[-63.103168,-12.655169],[-63.097768,-12.655869],[-63.093468,-12.658069],[-63.091168,-12.662269],[-63.091668,-12.667469],[-63.092968,-12.671069],[-63.095568,-12.673169],[-63.098468,-12.676569],[-63.098068,-12.680069],[-63.096368,-12.682969],[-63.092868,-12.683869],[-63.087968,-12.684069],[-63.083168,-12.685169],[-63.078568,-12.685769],[-63.074868,-12.684969],[-63.071268,-12.682969],[-63.067668,-12.682669],[-63.063568,-12.684169],[-63.061068,-12.687469],[-63.061268,-12.691869],[-63.064668,-12.696069],[-63.069068,-12.697469],[-63.072068,-12.698769],[-63.077068,-12.700269],[-63.079668,-12.703169],[-63.081868,-12.706769],[-63.082568,-12.710769],[-63.082868,-12.715369],[-63.082368,-12.720569],[-63.080668,-12.725069],[-63.077568,-12.728869],[-63.073868,-12.730569],[-63.069068,-12.730869],[-63.061268,-12.728069],[-63.057268,-12.729269],[-63.054068,-12.731769],[-63.051668,-12.734369],[-63.049468,-12.737769],[-63.047468,-12.740069],[-63.045368,-12.744369],[-63.043168,-12.747669],[-63.041768,-12.750169],[-63.040568,-12.755169],[-63.040068,-12.758169],[-63.040568,-12.762069],[-63.040268,-12.765169],[-63.035968,-12.770669],[-63.035668,-12.774869],[-63.035068,-12.777669],[-63.033068,-12.781269],[-63.028968,-12.782869],[-63.025868,-12.785169],[-63.022168,-12.787769],[-63.019868,-12.791769],[-63.021468,-12.799369],[-63.021168,-12.805269],[-63.018668,-12.806969],[-63.015668,-12.806869],[-63.012468,-12.807969],[-63.008868,-12.809869],[-63.009268,-12.816069],[-63.012068,-12.821069],[-63.012968,-12.824269],[-63.013468,-12.829869],[-63.012168,-12.834069],[-63.009168,-12.837669],[-63.006368,-12.839569],[-63.000968,-12.841769],[-62.991568,-12.841269],[-62.983368,-12.844069],[-62.983168,-12.849469],[-62.981968,-12.853669],[-62.978968,-12.858369],[-62.976168,-12.859769],[-62.970868,-12.858869],[-62.968668,-12.854969],[-62.965468,-12.850269],[-62.963168,-12.847269],[-62.957968,-12.847269],[-62.951268,-12.850569],[-62.950468,-12.854969],[-62.947468,-12.858569],[-62.942968,-12.854569],[-62.941668,-12.846969],[-62.937768,-12.842969],[-62.931868,-12.841969],[-62.926568,-12.841469],[-62.921368,-12.840869],[-62.915668,-12.844169],[-62.910668,-12.850269],[-62.908968,-12.852769],[-62.905868,-12.854669],[-62.900368,-12.855069],[-62.896568,-12.855869],[-62.892668,-12.858269],[-62.890668,-12.860869],[-62.891768,-12.864369],[-62.893668,-12.869469],[-62.894068,-12.872969],[-62.893168,-12.877069],[-62.891068,-12.879869],[-62.888468,-12.882169],[-62.884668,-12.883569],[-62.880468,-12.887169],[-62.878468,-12.890169],[-62.875768,-12.895469],[-62.875168,-12.898669],[-62.872768,-12.906269],[-62.870168,-12.910569],[-62.866068,-12.911969],[-62.861468,-12.912469],[-62.858868,-12.915269],[-62.855368,-12.918169],[-62.845568,-12.923069],[-62.843068,-12.927169],[-62.843468,-12.932169],[-62.847268,-12.936069],[-62.850268,-12.940869],[-62.849768,-12.944369],[-62.845868,-12.948569],[-62.841968,-12.948269],[-62.838968,-12.947369],[-62.836468,-12.943169],[-62.832068,-12.937769],[-62.822968,-12.933769],[-62.817968,-12.935269],[-62.814968,-12.936669],[-62.810268,-12.937969],[-62.805868,-12.940569],[-62.803268,-12.944969],[-62.805868,-12.952569],[-62.807568,-12.954869],[-62.808068,-12.958269],[-62.808868,-12.962069],[-62.806868,-12.968069],[-62.803568,-12.974469],[-62.797468,-12.983869],[-62.796968,-12.987269],[-62.795768,-12.991969],[-62.794268,-12.995169],[-62.787768,-13.002169],[-62.780068,-13.008869],[-62.772968,-13.009969],[-62.767668,-13.012469],[-62.764068,-13.015669],[-62.759668,-13.018169],[-62.756368,-13.017169],[-62.754568,-13.008169],[-62.753468,-13.004669],[-62.752168,-13.002069],[-62.750268,-12.999869],[-62.746868,-12.998869],[-62.743368,-13.001269],[-62.744368,-13.005169],[-62.744168,-13.008769],[-62.740768,-13.012469],[-62.738568,-13.014369],[-62.736468,-13.018569],[-62.733968,-13.021769],[-62.729168,-13.020669],[-62.726968,-13.014669],[-62.728868,-13.008569],[-62.727268,-13.003069],[-62.725068,-13.001269],[-62.719068,-13.003369],[-62.713168,-13.004169],[-62.709268,-13.002469],[-62.706868,-12.999869],[-62.699368,-13.002669],[-62.694368,-12.992169],[-62.690568,-12.991569],[-62.687268,-12.992769],[-62.682468,-12.992969],[-62.676068,-12.991369],[-62.669968,-12.987169],[-62.667168,-12.984669],[-62.664468,-12.980569],[-62.663168,-12.975969],[-62.659768,-12.968669],[-62.655368,-12.966569],[-62.650768,-12.965569],[-62.645368,-12.967669],[-62.645168,-12.974569],[-62.649068,-12.980669],[-62.651468,-12.983969],[-62.652068,-12.989369],[-62.650668,-12.991869],[-62.646468,-12.993069],[-62.641068,-12.990869],[-62.638868,-12.989069],[-62.634968,-12.988569],[-62.631368,-12.990069],[-62.629068,-12.995769],[-62.629868,-12.999669],[-62.631768,-13.004069],[-62.632668,-13.011769],[-62.629168,-13.016069],[-62.625468,-13.017669],[-62.620268,-13.017069],[-62.613668,-13.013569],[-62.610268,-13.011369],[-62.606768,-13.010969],[-62.602568,-13.012669],[-62.600268,-13.017469],[-62.606168,-13.021869],[-62.610668,-13.024269],[-62.614068,-13.026169],[-62.614668,-13.028969],[-62.615268,-13.032869],[-62.614768,-13.036469],[-62.612468,-13.041369],[-62.608968,-13.043969],[-62.600368,-13.048669],[-62.595568,-13.049669],[-62.589268,-13.051169],[-62.581768,-13.054469],[-62.575968,-13.057769],[-62.567468,-13.062169],[-62.562468,-13.063769],[-62.557968,-13.065569],[-62.555268,-13.067369],[-62.551868,-13.070269],[-62.547168,-13.073969],[-62.541168,-13.075469],[-62.534868,-13.073269],[-62.529868,-13.069869],[-62.526468,-13.067069],[-62.523768,-13.065469],[-62.520968,-13.067169],[-62.518168,-13.071669],[-62.513768,-13.075769],[-62.508868,-13.079069],[-62.505268,-13.081769],[-62.501568,-13.082869],[-62.496268,-13.081269],[-62.490768,-13.079269],[-62.486168,-13.077869],[-62.482868,-13.076069],[-62.481668,-13.071869],[-62.481968,-13.068869],[-62.483368,-13.063269],[-62.482568,-13.058769],[-62.479268,-13.057469],[-62.475868,-13.057469],[-62.473068,-13.061569],[-62.472068,-13.066269],[-62.473668,-13.072969],[-62.472568,-13.077469],[-62.467968,-13.078969],[-62.465568,-13.077169],[-62.462968,-13.073469],[-62.461168,-13.066569],[-62.457168,-13.063869],[-62.453268,-13.066069],[-62.452368,-13.070169],[-62.453568,-13.072769],[-62.456868,-13.075969],[-62.459068,-13.081069],[-62.457368,-13.086569],[-62.451868,-13.087669],[-62.448268,-13.085369],[-62.445268,-13.081769],[-62.442768,-13.079869],[-62.439868,-13.079269],[-62.436968,-13.080469],[-62.434868,-13.082669],[-62.433768,-13.086969],[-62.435168,-13.095069],[-62.435868,-13.098369],[-62.434368,-13.101969],[-62.429368,-13.107469],[-62.425868,-13.109969],[-62.418168,-13.117769],[-62.418068,-13.121969],[-62.416968,-13.124669],[-62.413968,-13.128269],[-62.410668,-13.126969],[-62.407268,-13.123869],[-62.403368,-13.118269],[-62.399268,-13.113369],[-62.396168,-13.114369],[-62.394868,-13.118569],[-62.395968,-13.124669],[-62.397368,-13.130169],[-62.392068,-13.134669],[-62.387668,-13.132369],[-62.382468,-13.130769],[-62.379468,-13.133469],[-62.377668,-13.138469],[-62.372468,-13.140669],[-62.369068,-13.140769],[-62.364068,-13.139569],[-62.360868,-13.139869],[-62.356668,-13.142869],[-62.351968,-13.143269],[-62.349568,-13.139069],[-62.345568,-13.137069],[-62.337368,-13.140469],[-62.342368,-13.145769],[-62.340968,-13.149869],[-62.336168,-13.147969],[-62.333268,-13.143169],[-62.330468,-13.139869],[-62.326068,-13.144669],[-62.325368,-13.150069],[-62.321368,-13.152069],[-62.319668,-13.147169],[-62.318768,-13.138469],[-62.316668,-13.134369],[-62.305068,-13.140369],[-62.303268,-13.146069],[-62.299368,-13.150469],[-62.294968,-13.149869],[-62.292768,-13.144869],[-62.287368,-13.140469],[-62.284568,-13.142069],[-62.282568,-13.149869],[-62.278468,-13.155369],[-62.271568,-13.155169],[-62.275468,-13.151269],[-62.276568,-13.146169],[-62.272868,-13.146769],[-62.267868,-13.149069],[-62.264568,-13.153169],[-62.261568,-13.150669],[-62.265068,-13.146869],[-62.259868,-13.146469],[-62.255268,-13.144369],[-62.245868,-13.145069],[-62.245268,-13.142169],[-62.245468,-13.138469],[-62.244368,-13.134969],[-62.243668,-13.130669],[-62.245468,-13.125969],[-62.244968,-13.120769],[-62.243368,-13.117269],[-62.240568,-13.115769],[-62.235768,-13.116969],[-62.232468,-13.120769],[-62.229468,-13.121569],[-62.225568,-13.117969],[-62.223068,-13.113669],[-62.219768,-13.111469],[-62.214768,-13.111369],[-62.211168,-13.113269],[-62.206268,-13.116869],[-62.203168,-13.121169],[-62.200968,-13.124469],[-62.199668,-13.131369],[-62.200668,-13.137369],[-62.201368,-13.141769],[-62.200168,-13.150469],[-62.195168,-13.153969],[-62.190968,-13.153769],[-62.186868,-13.150969],[-62.182268,-13.147569],[-62.178268,-13.142969],[-62.177568,-13.138169],[-62.181368,-13.132969],[-62.183668,-13.127769],[-62.183868,-13.123069],[-62.181368,-13.117669],[-62.178668,-13.115069],[-62.174968,-13.113569],[-62.170368,-13.113869],[-62.166968,-13.116369],[-62.166368,-13.120169],[-62.168568,-13.125469],[-62.169568,-13.129069],[-62.169468,-13.134169],[-62.162568,-13.142569],[-62.160068,-13.146469],[-62.157268,-13.147169],[-62.151768,-13.150069],[-62.151768,-13.154169],[-62.151968,-13.159569],[-62.148668,-13.163369],[-62.142868,-13.161169],[-62.140368,-13.157869],[-62.137468,-13.153769],[-62.134868,-13.149369],[-62.128768,-13.148369],[-62.124168,-13.149769],[-62.119668,-13.153469],[-62.116168,-13.159469],[-62.114168,-13.164469],[-62.117168,-13.168469],[-62.117768,-13.172469],[-62.117668,-13.177169],[-62.115068,-13.184669],[-62.114368,-13.188269],[-62.114468,-13.195169],[-62.114968,-13.203769],[-62.113568,-13.208169],[-62.113568,-13.211569],[-62.108968,-13.218969],[-62.109668,-13.224469],[-62.109968,-13.228969],[-62.109168,-13.234269],[-62.110368,-13.240469],[-62.109368,-13.245769],[-62.109968,-13.250169],[-62.111968,-13.254169],[-62.114968,-13.257369],[-62.113968,-13.260969],[-62.109368,-13.265069],[-62.106468,-13.267969],[-62.100968,-13.270069],[-62.098168,-13.272669],[-62.096168,-13.275769],[-62.093768,-13.278469],[-62.091268,-13.281969],[-62.085968,-13.281969],[-62.084868,-13.285269],[-62.084268,-13.290269],[-62.079068,-13.291969],[-62.074068,-13.292869],[-62.070168,-13.295869],[-62.066568,-13.293669],[-62.062168,-13.289269],[-62.056868,-13.288169],[-62.056068,-13.294969],[-62.057668,-13.300069],[-62.057668,-13.304769],[-62.056868,-13.311669],[-62.052868,-13.314169],[-62.046168,-13.316269],[-62.043168,-13.319069],[-62.039768,-13.324669],[-62.037468,-13.327069],[-62.036268,-13.330069],[-62.032668,-13.333569],[-62.028768,-13.331869],[-62.025068,-13.327569],[-62.017068,-13.327169],[-62.013568,-13.330369],[-62.013168,-13.333469],[-62.014668,-13.340969],[-62.015368,-13.347769],[-62.014068,-13.352269],[-62.011468,-13.358369],[-62.007168,-13.362569],[-62.003068,-13.365369],[-62.000768,-13.369669],[-61.996668,-13.374369],[-61.994368,-13.370769],[-61.996368,-13.367969],[-61.998568,-13.364069],[-61.994768,-13.365269],[-61.987168,-13.366569],[-61.980368,-13.365469],[-61.976468,-13.368269],[-61.971368,-13.374169],[-61.974168,-13.381769],[-61.977268,-13.387969],[-61.974268,-13.389569],[-61.967568,-13.386769],[-61.962268,-13.391069],[-61.968168,-13.402369],[-61.970568,-13.406169],[-61.967568,-13.407869],[-61.961768,-13.408669],[-61.956268,-13.408169],[-61.952068,-13.410569],[-61.947968,-13.415369],[-61.943868,-13.412069],[-61.940268,-13.407769],[-61.935868,-13.410069],[-61.930868,-13.417469],[-61.928668,-13.425569],[-61.924468,-13.429469],[-61.918168,-13.431869],[-61.914268,-13.433669],[-61.907568,-13.434069],[-61.905068,-13.431169],[-61.903768,-13.428269],[-61.899268,-13.426869],[-61.892968,-13.430869],[-61.889868,-13.435469],[-61.887368,-13.440769],[-61.885968,-13.451069],[-61.883268,-13.456769],[-61.883568,-13.463969],[-61.882668,-13.472369],[-61.880968,-13.479569],[-61.882168,-13.487869],[-61.883468,-13.492269],[-61.883168,-13.497269],[-61.879168,-13.501869],[-61.876068,-13.507369],[-61.871968,-13.513269],[-61.869368,-13.525169],[-61.867968,-13.528769],[-61.866068,-13.531669],[-61.861068,-13.535369],[-61.852868,-13.538469],[-61.849468,-13.535969],[-61.848468,-13.531669],[-61.847068,-13.527369],[-61.840168,-13.526969],[-61.838668,-13.534769],[-61.843368,-13.541369],[-61.840968,-13.548869],[-61.837568,-13.543369],[-61.833668,-13.539269],[-61.826068,-13.537069],[-61.821068,-13.533769],[-61.818468,-13.539269],[-61.811268,-13.540269],[-61.812968,-13.535869],[-61.817668,-13.530569],[-61.817068,-13.527369],[-61.805768,-13.529469],[-61.802868,-13.531169],[-61.798068,-13.534469],[-61.789968,-13.537769],[-61.784168,-13.536969],[-61.778068,-13.532869],[-61.776268,-13.527869],[-61.777968,-13.522069],[-61.776568,-13.517669],[-61.769268,-13.519269],[-61.766768,-13.525069],[-61.766068,-13.533169],[-61.764568,-13.539169],[-61.757368,-13.540569],[-61.754468,-13.536969],[-61.753568,-13.531469],[-61.755768,-13.529069],[-61.757768,-13.524069],[-61.751668,-13.520369],[-61.747768,-13.520769],[-61.744168,-13.525869],[-61.736768,-13.527369],[-61.730568,-13.525169],[-61.734668,-13.518569],[-61.730068,-13.518669],[-61.725068,-13.522269],[-61.719768,-13.519569],[-61.713668,-13.517969],[-61.707268,-13.516869],[-61.702968,-13.515069],[-61.704268,-13.511769],[-61.699068,-13.510969],[-61.693768,-13.507969],[-61.694568,-13.501569],[-61.689568,-13.505269],[-61.686068,-13.509069],[-61.680268,-13.506669],[-61.673368,-13.505269],[-61.668868,-13.504969],[-61.668868,-13.509869],[-61.663368,-13.510669],[-61.658468,-13.514669],[-61.651468,-13.518669],[-61.645768,-13.516469],[-61.647368,-13.510769],[-61.645068,-13.506769],[-61.636868,-13.509369],[-61.628868,-13.515469],[-61.622768,-13.514569],[-61.622968,-13.509169],[-61.625568,-13.504869],[-61.626268,-13.499869],[-61.623068,-13.496669],[-61.619068,-13.499169],[-61.618868,-13.505669],[-61.615868,-13.511369],[-61.607168,-13.510469],[-61.604568,-13.504569],[-61.599468,-13.501669],[-61.591268,-13.502969],[-61.585468,-13.500569],[-61.584268,-13.496169],[-61.585868,-13.493569],[-61.584268,-13.490569],[-61.576768,-13.488569],[-61.573168,-13.494369],[-61.576068,-13.500169],[-61.578568,-13.505269],[-61.578968,-13.509869],[-61.576568,-13.513969],[-61.572368,-13.518469],[-61.567668,-13.521169],[-61.563068,-13.521469],[-61.559668,-13.519869],[-61.556368,-13.518169],[-61.553568,-13.519569],[-61.548368,-13.523669],[-61.543068,-13.525369],[-61.534568,-13.528969],[-61.532868,-13.533069],[-61.529768,-13.534469],[-61.525768,-13.534469],[-61.521768,-13.535369],[-61.514068,-13.543069],[-61.508168,-13.547869],[-61.503068,-13.548169],[-61.500168,-13.548569],[-61.495468,-13.547869],[-61.491868,-13.546369],[-61.489068,-13.547469],[-61.479168,-13.553669],[-61.474968,-13.553369],[-61.470268,-13.554669],[-61.465668,-13.554069],[-61.460068,-13.551469],[-61.455068,-13.549669],[-61.442768,-13.547469],[-61.434768,-13.546369],[-61.429468,-13.545369],[-61.423968,-13.542269],[-61.418568,-13.539569],[-61.413168,-13.537869],[-61.409468,-13.537569],[-61.405068,-13.539569],[-61.402368,-13.537769],[-61.404468,-13.533369],[-61.404868,-13.528369],[-61.401268,-13.524069],[-61.394868,-13.521469],[-61.389668,-13.519769],[-61.384368,-13.519369],[-61.378868,-13.520469],[-61.374368,-13.521069],[-61.369668,-13.520969],[-61.365268,-13.521069],[-61.360768,-13.520769],[-61.355668,-13.521469],[-61.350568,-13.521169],[-61.346668,-13.520169],[-61.342268,-13.518269],[-61.340068,-13.515769],[-61.339868,-13.511569],[-61.339468,-13.508069],[-61.336268,-13.505469],[-61.328568,-13.503569],[-61.313468,-13.504369],[-61.308868,-13.504069],[-61.304968,-13.502369],[-61.301068,-13.498269],[-61.301068,-13.494069],[-61.302768,-13.490069],[-61.305468,-13.486369],[-61.305268,-13.481969],[-61.302468,-13.478869],[-61.296368,-13.477769],[-61.291768,-13.480069],[-61.288168,-13.482769],[-61.286968,-13.487969],[-61.285868,-13.492269],[-61.285968,-13.498269],[-61.285568,-13.502069],[-61.280368,-13.505569],[-61.275168,-13.505969],[-61.272268,-13.504169],[-61.269668,-13.501269],[-61.266768,-13.499369],[-61.262368,-13.497369],[-61.255268,-13.496269],[-61.248268,-13.496269],[-61.243268,-13.499069],[-61.241868,-13.501669],[-61.241668,-13.505269],[-61.243568,-13.511369],[-61.241368,-13.515969],[-61.237168,-13.516869],[-61.234768,-13.520069],[-61.233568,-13.525069],[-61.222868,-13.529769],[-61.215168,-13.528669],[-61.212568,-13.526769],[-61.207868,-13.525369],[-61.204268,-13.526969],[-61.198468,-13.533369],[-61.192768,-13.535969],[-61.188568,-13.532269],[-61.185168,-13.530469],[-61.182768,-13.527569],[-61.183268,-13.521869],[-61.187768,-13.516769],[-61.184068,-13.507769],[-61.180468,-13.508769],[-61.182468,-13.514269],[-61.178068,-13.514669],[-61.171168,-13.510669],[-61.160368,-13.515069],[-61.156668,-13.517069],[-61.154868,-13.519569],[-61.153168,-13.527269],[-61.146868,-13.531969],[-61.144268,-13.528669],[-61.145668,-13.523169],[-61.147368,-13.518969],[-61.144068,-13.513469],[-61.137868,-13.512869],[-61.137668,-13.517669],[-61.140668,-13.524769],[-61.139568,-13.528969],[-61.133868,-13.527269],[-61.132068,-13.523369],[-61.125968,-13.519869],[-61.120268,-13.521469],[-61.112468,-13.528369],[-61.106168,-13.531669],[-61.100868,-13.528369],[-61.101668,-13.524869],[-61.104168,-13.520369],[-61.103368,-13.515669],[-61.094768,-13.504869],[-61.095668,-13.499869],[-61.097768,-13.495769],[-61.094568,-13.492169],[-61.088968,-13.491969],[-61.082368,-13.495169],[-61.079068,-13.497969],[-61.075768,-13.499469],[-61.071068,-13.499969],[-61.065968,-13.500569],[-61.063568,-13.502069],[-61.063368,-13.507769],[-61.060268,-13.511769],[-61.054068,-13.511369],[-61.049368,-13.509869],[-61.046468,-13.509269],[-61.041068,-13.507669],[-61.038368,-13.505769],[-61.035568,-13.500969],[-61.035568,-13.496969],[-61.039268,-13.496869],[-61.047468,-13.495169],[-61.050868,-13.495269],[-61.052268,-13.492469],[-61.050868,-13.488669],[-61.046968,-13.484669],[-61.041068,-13.484969],[-61.029768,-13.489969],[-61.025468,-13.490469],[-61.020668,-13.488269],[-61.014868,-13.487469],[-61.012068,-13.489369],[-61.007168,-13.492469],[-61.001368,-13.494769],[-60.996968,-13.494769],[-60.993368,-13.496269],[-60.988568,-13.500969],[-60.990468,-13.504169],[-60.993868,-13.504869],[-60.996368,-13.501969],[-60.999068,-13.499869],[-61.003468,-13.501669],[-61.006368,-13.503369],[-61.009068,-13.507069],[-61.008768,-13.511769],[-61.007168,-13.517169],[-61.003268,-13.520169],[-60.999068,-13.523469],[-60.997968,-13.528669],[-61.001568,-13.529869],[-61.003868,-13.525169],[-61.008768,-13.523269],[-61.012368,-13.529569],[-61.009368,-13.538869],[-61.007068,-13.547469],[-61.005568,-13.550269],[-61.000468,-13.551669],[-60.995568,-13.551069],[-60.991368,-13.549269],[-60.986968,-13.548069],[-60.986468,-13.542169],[-60.986068,-13.538669],[-60.978868,-13.540069],[-60.972068,-13.536969],[-60.967368,-13.536769],[-60.962368,-13.540569],[-60.957968,-13.548869],[-60.950968,-13.551869],[-60.944368,-13.548869],[-60.940268,-13.545269],[-60.934668,-13.541169],[-60.922868,-13.540669],[-60.918668,-13.543369],[-60.916468,-13.546669],[-60.918968,-13.548869],[-60.924668,-13.556969],[-60.922468,-13.564969],[-60.920768,-13.568869],[-60.908868,-13.584769],[-60.902568,-13.589369],[-60.894068,-13.593769],[-60.887068,-13.601969],[-60.883468,-13.610769],[-60.879868,-13.617469],[-60.875168,-13.621369],[-60.868868,-13.622169],[-60.861368,-13.624369],[-60.854168,-13.629369],[-60.844868,-13.631369],[-60.841168,-13.627669],[-60.834868,-13.627069],[-60.828568,-13.629469],[-60.818868,-13.636869],[-60.815168,-13.643569],[-60.810268,-13.654469],[-60.801868,-13.656269],[-60.790868,-13.655569],[-60.786368,-13.656269],[-60.779868,-13.659769],[-60.774068,-13.661169],[-60.770468,-13.665069],[-60.770068,-13.672769],[-60.771268,-13.679669],[-60.769368,-13.684169],[-60.762968,-13.686369],[-60.755168,-13.687269],[-60.751368,-13.686669],[-60.748268,-13.685469],[-60.739668,-13.685269],[-60.735068,-13.686369],[-60.723768,-13.691569],[-60.717568,-13.693769],[-60.709268,-13.692969],[-60.705668,-13.695269],[-60.705768,-13.700769],[-60.704668,-13.704569],[-60.697068,-13.714869],[-60.693768,-13.715369],[-60.694268,-13.709769],[-60.695568,-13.701469],[-60.689968,-13.699369],[-60.686568,-13.703169],[-60.685868,-13.711969],[-60.684068,-13.715969],[-60.680768,-13.719869],[-60.676068,-13.722869],[-60.672168,-13.724169],[-60.665668,-13.729969],[-60.660568,-13.733369],[-60.655568,-13.737469],[-60.656168,-13.733569],[-60.652668,-13.730069],[-60.651568,-13.736069],[-60.646168,-13.738669],[-60.642668,-13.735669],[-60.641468,-13.730869],[-60.636768,-13.728169],[-60.630968,-13.728369],[-60.623368,-13.719469],[-60.619168,-13.720869],[-60.618868,-13.725269],[-60.611668,-13.725269],[-60.609668,-13.730369],[-60.612168,-13.734769],[-60.610868,-13.740269],[-60.607868,-13.736469],[-60.605868,-13.739369],[-60.606668,-13.746269],[-60.604268,-13.747969],[-60.600368,-13.748869],[-60.594268,-13.745469],[-60.591968,-13.743269],[-60.586968,-13.746869],[-60.581568,-13.747669],[-60.574668,-13.747369],[-60.578768,-13.755669],[-60.572368,-13.757069],[-60.566368,-13.757769],[-60.567368,-13.762869],[-60.570268,-13.765069],[-60.569368,-13.768669],[-60.561268,-13.769369],[-60.557668,-13.770769],[-60.550068,-13.781669],[-60.546468,-13.782369],[-60.546768,-13.777569],[-60.548568,-13.773969],[-60.548068,-13.770369],[-60.542468,-13.769269],[-60.531968,-13.771469],[-60.527368,-13.769569],[-60.522968,-13.768969],[-60.518168,-13.772569],[-60.517368,-13.777869],[-60.519268,-13.781569],[-60.522868,-13.784469],[-60.528468,-13.791769],[-60.523168,-13.793169],[-60.511568,-13.791069],[-60.504068,-13.795569],[-60.502068,-13.790869],[-60.497968,-13.789469],[-60.493068,-13.794469],[-60.490068,-13.795769],[-60.487168,-13.796069],[-60.483068,-13.795769],[-60.472568,-13.793669],[-60.467968,-13.795269],[-60.465468,-13.800369],[-60.473968,-13.801169],[-60.477868,-13.803369],[-60.478068,-13.807969],[-60.475268,-13.810269],[-60.467368,-13.812269],[-60.465168,-13.814869],[-60.467568,-13.820269],[-60.470368,-13.822969],[-60.474768,-13.823969],[-60.481968,-13.820169],[-60.486068,-13.819169],[-60.489368,-13.820269],[-60.489668,-13.824569],[-60.485268,-13.830369],[-60.482468,-13.832369],[-60.479668,-13.833269],[-60.474768,-13.829669],[-60.471668,-13.829569],[-60.469068,-13.832169],[-60.475268,-13.837069],[-60.478668,-13.839769],[-60.481668,-13.843369],[-60.484168,-13.848869],[-60.491168,-13.853169],[-60.491868,-13.857069],[-60.487568,-13.858069],[-60.478468,-13.852769],[-60.473068,-13.853169],[-60.466168,-13.855969],[-60.460068,-13.852869],[-60.456268,-13.854769],[-60.456168,-13.858569],[-60.461968,-13.861369],[-60.464268,-13.864369],[-60.464468,-13.872469],[-60.467268,-13.876269],[-60.472868,-13.879069],[-60.475968,-13.884669],[-60.474568,-13.888469],[-60.467568,-13.890669],[-60.467068,-13.885869],[-60.463468,-13.882369],[-60.455068,-13.880969],[-60.451868,-13.882669],[-60.451068,-13.887469],[-60.456068,-13.892869],[-60.455768,-13.897569],[-60.452168,-13.904569],[-60.452668,-13.912769],[-60.451068,-13.917469],[-60.449968,-13.928569],[-60.450668,-13.933269],[-60.450968,-13.937469],[-60.448468,-13.939169],[-60.444868,-13.939669],[-60.446368,-13.933669],[-60.445268,-13.930869],[-60.438568,-13.935169],[-60.431868,-13.939069],[-60.427968,-13.942669],[-60.423868,-13.939369],[-60.420268,-13.937169],[-60.417168,-13.941369],[-60.419168,-13.946569],[-60.416468,-13.949369],[-60.410968,-13.948269],[-60.410668,-13.951469],[-60.418868,-13.954969],[-60.418368,-13.958969],[-60.420068,-13.963669],[-60.422768,-13.962269],[-60.425768,-13.962569],[-60.422868,-13.966269],[-60.420068,-13.968969],[-60.418668,-13.974469],[-60.415068,-13.980569],[-60.412268,-13.981469],[-60.403468,-13.978669],[-60.397668,-13.977469],[-60.392668,-13.977769],[-60.389068,-13.978869],[-60.386868,-13.980969],[-60.382068,-13.987469],[-60.382068,-13.991569],[-60.385668,-13.993369],[-60.390968,-13.992569],[-60.393968,-13.992769],[-60.395468,-13.996969],[-60.398668,-13.996069],[-60.402268,-13.999469],[-60.402268,-14.003469],[-60.401468,-14.009869],[-60.402868,-14.017069],[-60.405068,-14.019869],[-60.406968,-14.022969],[-60.407368,-14.026869],[-60.406968,-14.030869],[-60.410168,-14.033369],[-60.412768,-14.035969],[-60.416168,-14.037769],[-60.416968,-14.041169],[-60.419968,-14.043669],[-60.421368,-14.047169],[-60.425068,-14.048569],[-60.426868,-14.051169],[-60.428268,-14.053869],[-60.428268,-14.057169],[-60.428568,-14.061869],[-60.430768,-14.064069],[-60.432168,-14.068469],[-60.436568,-14.072069],[-60.439468,-14.075969],[-60.441568,-14.078769],[-60.444268,-14.079669],[-60.445568,-14.083169],[-60.448268,-14.085669],[-60.452368,-14.087969],[-60.462068,-14.093669],[-60.466168,-14.094569],[-60.470368,-14.089769],[-60.477268,-14.093169],[-60.479468,-14.096669],[-60.479468,-14.101369],[-60.476968,-14.105269],[-60.473368,-14.108369],[-60.475068,-14.111769],[-60.479968,-14.113069],[-60.483868,-14.116069],[-60.482168,-14.118869],[-60.479468,-14.120869],[-60.478568,-14.123769],[-60.476668,-14.126369],[-60.473168,-14.128269],[-60.474568,-14.130969],[-60.480368,-14.132669],[-60.481768,-14.136869],[-60.479968,-14.141569],[-60.477068,-14.147969],[-60.474268,-14.151769],[-60.475968,-14.156669],[-60.476368,-14.160669],[-60.481968,-14.162869],[-60.484968,-14.165569],[-60.486968,-14.169169],[-60.488668,-14.172169],[-60.488668,-14.175269],[-60.487768,-14.179069],[-60.490068,-14.183269],[-60.491868,-14.188569],[-60.486068,-14.193069],[-60.481768,-14.193569],[-60.476368,-14.192769],[-60.472268,-14.191969],[-60.471668,-14.196269],[-60.471368,-14.199269],[-60.468768,-14.201769],[-60.467568,-14.205669],[-60.468368,-14.210769],[-60.470268,-14.213969],[-60.468068,-14.216169],[-60.465568,-14.218369],[-60.462268,-14.223169],[-60.465468,-14.230269],[-60.463968,-14.234369],[-60.458668,-14.235569],[-60.455068,-14.237569],[-60.449968,-14.240369],[-60.449568,-14.250169],[-60.457368,-14.255269],[-60.461468,-14.258469],[-60.463168,-14.261869],[-60.465168,-14.265169],[-60.463668,-14.267569],[-60.461168,-14.272869],[-60.462068,-14.277569],[-60.462068,-14.280569],[-60.461168,-14.284769],[-60.458968,-14.288869],[-60.456868,-14.291969],[-60.456468,-14.295369],[-60.456268,-14.298369],[-60.456168,-14.304169],[-60.451368,-14.306569],[-60.452068,-14.309469],[-60.453268,-14.313269],[-60.449868,-14.315569],[-60.445268,-14.319269],[-60.440568,-14.321269],[-60.439468,-14.324669],[-60.438868,-14.327869],[-60.435468,-14.330769],[-60.433268,-14.335469],[-60.429368,-14.338769],[-60.425568,-14.343169],[-60.426868,-14.347269],[-60.424268,-14.350369],[-60.422768,-14.353369],[-60.419768,-14.352769],[-60.417768,-14.348369],[-60.413868,-14.349869],[-60.415268,-14.354169],[-60.413868,-14.358569],[-60.410868,-14.359369],[-60.408368,-14.355569],[-60.406468,-14.359169],[-60.409268,-14.361869],[-60.411368,-14.364069],[-60.408368,-14.368069],[-60.405568,-14.364769],[-60.402868,-14.366569],[-60.399768,-14.365769],[-60.396468,-14.364369],[-60.394068,-14.367569],[-60.396168,-14.369769],[-60.395368,-14.373669],[-60.397368,-14.377369],[-60.394268,-14.379169],[-60.395168,-14.382669],[-60.396768,-14.387769],[-60.399568,-14.386369],[-60.400468,-14.382169],[-60.404468,-14.385369],[-60.403468,-14.389269],[-60.400468,-14.390169],[-60.402268,-14.395969],[-60.403768,-14.399869],[-60.402568,-14.402969],[-60.399568,-14.404269],[-60.401268,-14.409869],[-60.403668,-14.411669],[-60.406268,-14.413069],[-60.402668,-14.416169],[-60.400868,-14.419769],[-60.399768,-14.422869],[-60.397068,-14.419769],[-60.394368,-14.422169],[-60.397968,-14.426369],[-60.395068,-14.428869],[-60.399368,-14.432269],[-60.395468,-14.435469],[-60.391568,-14.434069],[-60.387868,-14.435869],[-60.384668,-14.439169],[-60.383068,-14.441669],[-60.381668,-14.445669],[-60.380568,-14.454669],[-60.377968,-14.456469],[-60.379068,-14.460869],[-60.378268,-14.464269],[-60.372468,-14.467669],[-60.368268,-14.468069],[-60.364968,-14.469069],[-60.361968,-14.470569],[-60.361668,-14.474169],[-60.360268,-14.477569],[-60.360768,-14.481369],[-60.361468,-14.485569],[-60.365768,-14.484469],[-60.366168,-14.487769],[-60.358368,-14.491369],[-60.355268,-14.492569],[-60.351768,-14.494369],[-60.348468,-14.496969],[-60.347568,-14.501569],[-60.346968,-14.505269],[-60.344768,-14.507369],[-60.338668,-14.511069],[-60.339868,-14.515969],[-60.341968,-14.519669],[-60.341968,-14.523969],[-60.339068,-14.526969],[-60.336468,-14.529469],[-60.339568,-14.530969],[-60.342568,-14.533469],[-60.338668,-14.535369],[-60.335968,-14.538169],[-60.334368,-14.542769],[-60.335368,-14.546069],[-60.332868,-14.553369],[-60.331468,-14.557169],[-60.328268,-14.558269],[-60.327868,-14.561869],[-60.330768,-14.564969],[-60.331168,-14.568569],[-60.329268,-14.573169],[-60.327868,-14.576869],[-60.325968,-14.579969],[-60.325368,-14.585169],[-60.325968,-14.588669],[-60.325968,-14.592669],[-60.324368,-14.597569],[-60.323968,-14.600969],[-60.323168,-14.604169],[-60.321068,-14.608869],[-60.316368,-14.613669],[-60.312368,-14.615469],[-60.305868,-14.617669],[-60.298968,-14.621369],[-60.291668,-14.625169],[-60.287468,-14.623869],[-60.280168,-14.623669],[-60.276468,-14.622669],[-60.272968,-14.620769],[-60.262668,-14.789969],[-60.259868,-14.836469],[-60.254168,-14.930569],[-60.246268,-15.063769],[-60.244368,-15.096769],[-60.500968,-15.096169],[-60.564968,-15.108669],[-60.533068,-15.146469],[-60.500468,-15.179769],[-60.494068,-15.186869],[-60.384068,-15.310469],[-60.371568,-15.324369],[-60.243868,-15.467669],[-60.238568,-15.473869],[-60.236068,-15.500769],[-60.232168,-15.544969],[-60.228368,-15.586869],[-60.225968,-15.618269],[-60.222868,-15.656669],[-60.214068,-15.758269],[-60.210468,-15.801869],[-60.207268,-15.839069],[-60.203268,-15.885769],[-60.201068,-15.911969],[-60.197068,-15.963369],[-60.193768,-16.000569],[-60.181368,-16.151469],[-60.177268,-16.197769],[-60.171468,-16.265969],[-60.135968,-16.267069],[-60.105668,-16.267169],[-60.060268,-16.267869],[-60.033468,-16.268169],[-60.012468,-16.268969],[-60.001568,-16.268969],[-59.973068,-16.270069],[-59.895068,-16.271769],[-59.869068,-16.272269],[-59.823168,-16.272969],[-59.775068,-16.273769],[-59.705668,-16.274769],[-59.536768,-16.277369],[-59.500168,-16.278369],[-59.496068,-16.278769],[-59.472768,-16.279269],[-59.468168,-16.279069],[-59.267468,-16.287769],[-59.156768,-16.292069],[-59.134068,-16.293069],[-59.114168,-16.293869],[-59.017068,-16.298069],[-59.000168,-16.298869],[-58.965368,-16.300069],[-58.961468,-16.300069],[-58.922268,-16.301669],[-58.875968,-16.303369],[-58.818568,-16.305869],[-58.785968,-16.306869],[-58.744468,-16.308769],[-58.621268,-16.313269],[-58.436568,-16.320969],[-58.430468,-16.321269],[-58.423868,-16.316569],[-58.408368,-16.309169],[-58.399768,-16.303269],[-58.394068,-16.296669],[-58.390768,-16.284469],[-58.390068,-16.274769],[-58.391068,-16.269369],[-58.388568,-16.260969],[-58.382368,-16.264669],[-58.365768,-16.273269],[-58.353168,-16.269269],[-58.346368,-16.273369],[-58.338468,-16.272969],[-58.328268,-16.270369],[-58.326768,-16.267969],[-58.323168,-16.265469],[-58.316868,-16.290869],[-58.303068,-16.307669],[-58.303268,-16.329569],[-58.306368,-16.338369],[-58.308768,-16.360269],[-58.307168,-16.370169],[-58.309368,-16.372969],[-58.314568,-16.371969],[-58.318568,-16.376269],[-58.324368,-16.377969],[-58.327868,-16.382069],[-58.330968,-16.385469],[-58.333768,-16.387669],[-58.339368,-16.386269],[-58.344168,-16.389269],[-58.346268,-16.393769],[-58.344268,-16.396269],[-58.344768,-16.400069],[-58.347568,-16.406669],[-58.350968,-16.412769],[-58.352768,-16.419169],[-58.356068,-16.427169],[-58.354468,-16.431169],[-58.353168,-16.435169],[-58.352868,-16.439969],[-58.347668,-16.454369],[-58.342868,-16.462269],[-58.334668,-16.477869],[-58.333168,-16.484469],[-58.333668,-16.489969],[-58.337868,-16.499969],[-58.343768,-16.517669],[-58.353868,-16.523369],[-58.357768,-16.529269],[-58.385968,-16.543569],[-58.388568,-16.551669],[-58.393768,-16.562769],[-58.413168,-16.570769],[-58.421368,-16.573469],[-58.428068,-16.585669],[-58.436068,-16.592269],[-58.450968,-16.627669],[-58.462968,-16.652269],[-58.460868,-16.666669],[-58.468468,-16.698869],[-58.470268,-16.702069],[-58.470568,-16.705369],[-58.468068,-16.713769],[-58.466768,-16.716669],[-58.466668,-16.720869],[-58.467668,-16.724569],[-58.468168,-16.730869],[-58.469868,-16.733669],[-58.472768,-16.738069],[-58.473168,-16.745869],[-58.469868,-16.750569],[-58.466668,-16.757969],[-58.463168,-16.770769],[-58.463668,-16.778669],[-58.461168,-16.782569],[-58.458668,-16.785869],[-58.463368,-16.792469],[-58.466468,-16.792469],[-58.471968,-16.791369],[-58.472768,-16.797569],[-58.475268,-16.803869],[-58.477068,-16.812169],[-58.477468,-16.815469],[-58.477368,-16.818869],[-58.475968,-16.827369],[-58.469868,-16.833969],[-58.462268,-16.840069],[-58.463368,-16.844169],[-58.467668,-16.849169],[-58.461468,-16.849469],[-58.462268,-16.853469],[-58.465968,-16.857569],[-58.463468,-16.859269],[-58.461468,-16.864069],[-58.466268,-16.868669],[-58.463168,-16.873369],[-58.464868,-16.880169],[-58.467268,-16.884569],[-58.465668,-16.888269],[-58.466268,-16.893769],[-58.467968,-16.897569],[-58.460868,-16.899269],[-58.461968,-16.904069],[-58.466968,-16.910969],[-58.473768,-16.915569],[-58.469768,-16.920869],[-58.468768,-16.923969],[-58.473468,-16.931069],[-58.474468,-16.934869],[-58.472768,-16.937969],[-58.468668,-16.941069],[-58.463168,-16.939369],[-58.460468,-16.937669],[-58.457568,-16.939069],[-58.457568,-16.944569],[-58.458668,-16.947369],[-58.460668,-16.949869],[-58.461768,-16.954369],[-58.461968,-16.958169],[-58.460168,-16.965869],[-58.456168,-16.969269],[-58.452568,-16.968669],[-58.448768,-16.967569],[-58.448268,-16.971669],[-58.447068,-16.978869],[-58.444968,-16.981669],[-58.437768,-16.985369],[-58.431568,-16.990769],[-58.423968,-16.988669],[-58.426568,-16.995869],[-58.427268,-16.999369],[-58.429068,-17.001669],[-58.433768,-17.004369],[-58.435768,-17.008469],[-58.433568,-17.021769],[-58.434968,-17.027269],[-58.430768,-17.029169],[-58.426168,-17.029069],[-58.420368,-17.029769],[-58.417568,-17.032369],[-58.416768,-17.035669],[-58.419168,-17.038069],[-58.425768,-17.036969],[-58.430568,-17.036769],[-58.433868,-17.038869],[-58.433368,-17.046669],[-58.429168,-17.048569],[-58.422868,-17.049669],[-58.422768,-17.053269],[-58.429768,-17.057169],[-58.432168,-17.058769],[-58.432968,-17.063469],[-58.430568,-17.071269],[-58.432768,-17.074569],[-58.435768,-17.078769],[-58.435868,-17.082669],[-58.434668,-17.085669],[-58.425768,-17.089369],[-58.424968,-17.093669],[-58.428368,-17.100069],[-58.429068,-17.105269],[-58.425368,-17.111969],[-58.422468,-17.113369],[-58.419168,-17.113669],[-58.414768,-17.111669],[-58.408368,-17.110369],[-58.404468,-17.108369],[-58.401568,-17.106169],[-58.397068,-17.104669],[-58.391868,-17.105369],[-58.388268,-17.107769],[-58.386068,-17.111369],[-58.385968,-17.115369],[-58.387468,-17.119169],[-58.393768,-17.127969],[-58.397568,-17.136769],[-58.397968,-17.152669],[-58.396868,-17.181569],[-58.394568,-17.185269],[-58.382468,-17.192369],[-58.368668,-17.200469],[-58.364668,-17.199669],[-58.363568,-17.202969],[-58.363368,-17.206169],[-58.364468,-17.213169],[-58.361368,-17.215169],[-58.360668,-17.212369],[-58.356468,-17.212269],[-58.351468,-17.219069],[-58.349468,-17.225269],[-58.346968,-17.228569],[-58.344768,-17.233169],[-58.340568,-17.233869],[-58.337268,-17.240469],[-58.334268,-17.242669],[-58.327068,-17.247369],[-58.323268,-17.251869],[-58.319568,-17.255669],[-58.322068,-17.261269],[-58.318468,-17.267369],[-58.315568,-17.267869],[-58.312768,-17.267069],[-58.309368,-17.266869],[-58.305768,-17.267869],[-58.303268,-17.271469],[-58.303868,-17.277269],[-58.302468,-17.280469],[-58.294168,-17.284469],[-58.292168,-17.287269],[-58.296868,-17.291369],[-58.298668,-17.294669],[-58.298568,-17.297869],[-58.293968,-17.301469],[-58.291068,-17.301869],[-58.287768,-17.301069],[-58.284268,-17.298969],[-58.277268,-17.299969],[-58.275468,-17.304769],[-58.278668,-17.314069],[-58.276468,-17.323569],[-58.270168,-17.327969],[-58.266768,-17.328169],[-58.263568,-17.330369],[-58.262168,-17.334269],[-58.263768,-17.342269],[-58.261468,-17.345169],[-58.256268,-17.345969],[-58.254668,-17.352469],[-58.251568,-17.354269],[-58.246968,-17.354169],[-58.243668,-17.351469],[-58.240268,-17.349569],[-58.233568,-17.351369],[-58.227568,-17.348369],[-58.226368,-17.351669],[-58.227768,-17.355869],[-58.218168,-17.360069],[-58.207168,-17.356169],[-58.203168,-17.356469],[-58.199868,-17.359269],[-58.196568,-17.363669],[-58.195168,-17.368869],[-58.196268,-17.372769],[-58.199968,-17.378569],[-58.200368,-17.382969],[-58.197068,-17.386569],[-58.193468,-17.387969],[-58.190468,-17.389669],[-58.185468,-17.391469],[-58.177168,-17.391469],[-58.169168,-17.389269],[-58.158068,-17.384569],[-58.152368,-17.384069],[-58.149768,-17.387769],[-58.151168,-17.393169],[-58.151168,-17.397169],[-58.152568,-17.401969],[-58.150968,-17.405869],[-58.147368,-17.411469],[-58.144268,-17.414169],[-58.139268,-17.415569],[-58.133268,-17.412469],[-58.129868,-17.411469],[-58.126668,-17.412069],[-58.122768,-17.414569],[-58.120868,-17.419669],[-58.120468,-17.425569],[-58.118668,-17.434369],[-58.118868,-17.441569],[-58.120768,-17.447469],[-58.117268,-17.451069],[-58.109968,-17.452569],[-58.101168,-17.456269],[-58.097768,-17.457269],[-58.090168,-17.460969],[-58.085868,-17.459369],[-58.079668,-17.457669],[-58.076368,-17.456269],[-58.073468,-17.452869],[-58.068268,-17.452369],[-58.065168,-17.450969],[-58.060168,-17.450669],[-58.057968,-17.455369],[-58.053068,-17.458669],[-58.049468,-17.464069],[-58.046468,-17.475869],[-58.044168,-17.478869],[-58.044568,-17.482469],[-58.043868,-17.485269],[-58.044768,-17.489969],[-58.043368,-17.492669],[-58.040068,-17.493569],[-58.034868,-17.493669],[-58.030868,-17.495769],[-58.027568,-17.496269],[-58.022068,-17.495069],[-58.017168,-17.499369],[-58.013268,-17.498669],[-58.010168,-17.499669],[-58.008268,-17.502369],[-58.005968,-17.505269],[-58.000268,-17.506369],[-57.999968,-17.510969],[-57.997468,-17.515169],[-57.992968,-17.515069],[-57.988268,-17.513269],[-57.984668,-17.511069],[-57.980668,-17.510769],[-57.972868,-17.505769],[-57.965568,-17.501569],[-57.962568,-17.500269],[-57.931168,-17.480069],[-57.883468,-17.449569],[-57.752368,-17.564369],[-57.759568,-17.562169],[-57.767368,-17.558269],[-57.771468,-17.557969],[-57.776868,-17.558569],[-57.781168,-17.557269],[-57.785568,-17.555469],[-57.789168,-17.555569],[-57.792768,-17.555769],[-57.795268,-17.559069],[-57.794768,-17.563369],[-57.790368,-17.566669],[-57.785868,-17.569069],[-57.785368,-17.575169],[-57.781668,-17.577369],[-57.786368,-17.580169],[-57.790268,-17.583169],[-57.789868,-17.586469],[-57.786368,-17.585769],[-57.777068,-17.585069],[-57.778768,-17.587669],[-57.782768,-17.592369],[-57.786668,-17.592269],[-57.785068,-17.595069],[-57.778068,-17.594869],[-57.774368,-17.598369],[-57.777868,-17.603169],[-57.783668,-17.606769],[-57.782568,-17.612969],[-57.778768,-17.614369],[-57.773368,-17.611469],[-57.771868,-17.614669],[-57.773168,-17.619369],[-57.773968,-17.625269],[-57.780068,-17.632169],[-57.782868,-17.636069],[-57.783368,-17.639269],[-57.781268,-17.643769],[-57.776468,-17.650069],[-57.775668,-17.656269],[-57.768668,-17.659769],[-57.762868,-17.660169],[-57.759868,-17.664869],[-57.758268,-17.668069],[-57.755668,-17.676369],[-57.753068,-17.681369],[-57.751568,-17.687469],[-57.748368,-17.693469],[-57.741168,-17.693169],[-57.737768,-17.699269],[-57.735568,-17.705469],[-57.734668,-17.710369],[-57.730868,-17.718669],[-57.727768,-17.720569],[-57.724568,-17.721369],[-57.720268,-17.720169],[-57.709568,-17.729769],[-57.720068,-17.771769],[-57.683268,-17.807969],[-57.683068,-17.828169],[-57.720568,-17.827869],[-57.709668,-17.848069],[-57.654068,-17.945669],[-57.631868,-17.985569],[-57.624168,-18.004069],[-57.600068,-18.046369],[-57.581768,-18.108269],[-57.576268,-18.126669],[-57.574868,-18.131869],[-57.505168,-18.200269],[-57.501568,-18.197469],[-57.495268,-18.197869],[-57.491468,-18.202069],[-57.488068,-18.200369],[-57.485068,-18.198169],[-57.482068,-18.197869],[-57.478668,-18.201569],[-57.479168,-18.204569],[-57.480068,-18.207669],[-57.476768,-18.208969],[-57.473468,-18.212969],[-57.473668,-18.217269],[-57.470068,-18.218369],[-57.468068,-18.221969],[-57.464468,-18.223369],[-57.457568,-18.225969],[-57.455168,-18.230569],[-57.499968,-18.236069],[-57.557768,-18.240269],[-57.766568,-18.899269],[-57.719768,-18.898969],[-57.719268,-18.976969],[-57.714268,-18.977269],[-57.710668,-18.979269],[-57.708768,-18.981969],[-57.704368,-18.986469],[-57.702668,-18.989369],[-57.701768,-18.993269],[-57.697368,-18.996869],[-57.696668,-19.000169],[-57.698468,-19.002969],[-57.698568,-19.006269],[-57.693768,-19.010269],[-57.697468,-19.012669],[-57.702568,-19.019869],[-57.704668,-19.022569],[-57.706868,-19.025369],[-57.710168,-19.032569],[-57.720368,-19.032769],[-57.752368,-19.033069],[-57.784468,-19.033869],[-57.855268,-19.182669],[-57.856768,-19.185769],[-57.864168,-19.200769],[-57.874468,-19.222369],[-57.877668,-19.229169],[-57.886268,-19.247469],[-57.965668,-19.413469],[-58.000868,-19.486969],[-58.032268,-19.552469],[-58.131768,-19.758469],[-57.858068,-19.971369],[-57.862468,-19.985569],[-57.879368,-20.007169],[-57.887368,-20.015469],[-57.896268,-20.031169],[-57.900368,-20.039569],[-57.902268,-20.042069],[-57.905468,-20.042869],[-57.908468,-20.039569],[-57.914768,-20.033869],[-57.927568,-20.022969],[-57.935168,-20.020369],[-57.943268,-20.018969],[-57.946268,-20.018769],[-57.952168,-20.019569],[-57.958668,-20.021769],[-57.965868,-20.030869],[-57.969468,-20.041969],[-57.972568,-20.048069],[-57.977768,-20.053369],[-57.983268,-20.056869],[-57.986768,-20.058369],[-57.990068,-20.058269],[-57.994768,-20.056569],[-58.000268,-20.055869],[-58.008268,-20.058369],[-58.014068,-20.057769],[-58.018968,-20.057669],[-58.022868,-20.058069],[-58.026468,-20.059369],[-58.033168,-20.065169],[-58.037268,-20.071769],[-58.039168,-20.082569],[-58.040568,-20.086769],[-58.043968,-20.098669],[-58.048268,-20.104269],[-58.052968,-20.106669],[-58.056668,-20.107169],[-58.061668,-20.106969],[-58.069368,-20.105569],[-58.075368,-20.105269],[-58.081768,-20.106469],[-58.085368,-20.106669],[-58.088968,-20.107769],[-58.093068,-20.110269],[-58.097568,-20.115069],[-58.104568,-20.124469],[-58.108168,-20.130169],[-58.110568,-20.136069],[-58.116168,-20.144369],[-58.122968,-20.148169],[-58.133868,-20.151469],[-58.138568,-20.152269],[-58.149268,-20.151569],[-58.152568,-20.152869],[-58.156468,-20.155669],[-58.159468,-20.158769],[-58.163168,-20.162569],[-58.165268,-20.166169],[-58.167468,-20.168169],[-58.168168,-20.172269],[-58.166168,-20.176469],[-58.158668,-20.181369],[-58.154468,-20.181869],[-58.146468,-20.180469],[-58.139868,-20.180569],[-58.132468,-20.181869],[-58.127168,-20.185269],[-58.123568,-20.189669],[-58.121868,-20.194369],[-58.121968,-20.198469],[-58.124368,-20.202069],[-58.132068,-20.207269],[-58.140368,-20.210069],[-58.147668,-20.211969],[-58.154168,-20.215669],[-58.159868,-20.222369],[-58.163468,-20.227269],[-58.165968,-20.231769],[-58.166368,-20.236469],[-58.165368,-20.242169],[-58.163868,-20.249169],[-58.162068,-20.257169],[-58.159468,-20.263769],[-58.155068,-20.267469],[-58.150068,-20.270369],[-58.144368,-20.271769],[-58.140068,-20.270769],[-58.137168,-20.268569],[-58.136268,-20.265469],[-58.135168,-20.261569],[-58.132768,-20.258769],[-58.130768,-20.256269],[-58.127168,-20.253069],[-58.123268,-20.251269],[-58.119468,-20.249469],[-58.114468,-20.248669],[-58.107568,-20.249069],[-58.101968,-20.250569],[-58.096668,-20.253869],[-58.092568,-20.258769],[-58.089868,-20.264569],[-58.089768,-20.268969],[-58.089768,-20.276769],[-58.090668,-20.284869],[-58.092668,-20.294469],[-58.094768,-20.301169],[-58.097068,-20.306369],[-58.101368,-20.313569],[-58.102868,-20.319869],[-58.100868,-20.328269],[-58.097368,-20.335969],[-58.095668,-20.342869],[-58.093768,-20.351369],[-58.090868,-20.358169],[-58.086968,-20.366169],[-58.083968,-20.372169],[-58.081768,-20.375769],[-58.078968,-20.380669],[-58.076268,-20.384669],[-58.073168,-20.387969],[-58.067168,-20.391069],[-58.061668,-20.393169],[-58.055068,-20.394569],[-58.047468,-20.396769],[-58.043368,-20.398169],[-58.039568,-20.398969],[-58.033468,-20.399369],[-58.027868,-20.399569],[-58.024568,-20.400069],[-58.021768,-20.401869],[-58.019568,-20.406469],[-58.015668,-20.412569],[-58.010768,-20.418869],[-58.007168,-20.423069],[-58.004168,-20.426569],[-58.001368,-20.430769],[-57.998068,-20.436869],[-57.996368,-20.443469],[-57.996868,-20.450669],[-57.998368,-20.455469],[-58.001668,-20.460669],[-58.004668,-20.465569],[-58.006768,-20.468469],[-58.009668,-20.473969],[-58.013568,-20.480269],[-58.015668,-20.486169],[-58.016768,-20.490769],[-58.017168,-20.496869],[-58.018168,-20.503069],[-58.019768,-20.508569],[-58.019868,-20.514369],[-58.017668,-20.522869],[-58.015668,-20.528469],[-58.013268,-20.533369],[-58.010368,-20.539469],[-58.006568,-20.547569],[-58.004868,-20.554469],[-58.003768,-20.559369],[-58.002168,-20.563469],[-57.999368,-20.568869],[-57.997168,-20.572369],[-57.996968,-20.575469],[-57.998568,-20.578469],[-58.002068,-20.582869],[-58.003868,-20.585369],[-58.006568,-20.588969],[-58.007968,-20.591769],[-58.009268,-20.594569],[-58.011068,-20.598469],[-58.012668,-20.604569],[-58.013168,-20.608269],[-58.012468,-20.612569],[-58.010768,-20.616169],[-58.006768,-20.619969],[-58.003468,-20.624069],[-57.999768,-20.627769],[-57.995468,-20.631669],[-57.990268,-20.634069],[-57.984668,-20.636769],[-57.978668,-20.638269],[-57.974568,-20.639969],[-57.970868,-20.643169],[-57.970968,-20.647269],[-57.972768,-20.651569],[-57.974468,-20.658369],[-57.977768,-20.667569],[-57.980868,-20.673969],[-57.984668,-20.680269],[-57.988268,-20.686669],[-57.988868,-20.694069],[-57.987868,-20.699569],[-57.985068,-20.703469],[-57.981068,-20.705669],[-57.975668,-20.706269],[-57.971768,-20.705669],[-57.966968,-20.704369],[-57.962368,-20.704569],[-57.958168,-20.704869],[-57.953568,-20.702169],[-57.950168,-20.698269],[-57.948468,-20.694569],[-57.946868,-20.689969],[-57.945168,-20.686069],[-57.942368,-20.681069],[-57.939168,-20.675369],[-57.936668,-20.669969],[-57.933068,-20.666069],[-57.929168,-20.663969],[-57.923068,-20.664469],[-57.918568,-20.666369],[-57.913668,-20.670769],[-57.911168,-20.674969],[-57.908368,-20.679969],[-57.905068,-20.686569],[-57.903168,-20.689869],[-57.897868,-20.693569],[-57.894068,-20.696869],[-57.890368,-20.701069],[-57.886268,-20.705469],[-57.882168,-20.709069],[-57.877968,-20.713669],[-57.874668,-20.719469],[-57.870168,-20.725369],[-57.868668,-20.730669],[-57.868268,-20.735369],[-57.864768,-20.742269],[-57.864668,-20.746369],[-57.867968,-20.749369],[-57.873368,-20.750769],[-57.878868,-20.750469],[-57.883868,-20.749169],[-57.889568,-20.748569],[-57.896268,-20.747669],[-57.903168,-20.746569],[-57.908668,-20.745569],[-57.914468,-20.744669],[-57.920268,-20.743869],[-57.925468,-20.744169],[-57.930268,-20.744769],[-57.934068,-20.745869],[-57.936668,-20.748269],[-57.941368,-20.752169],[-57.946068,-20.758469],[-57.949568,-20.765169],[-57.951268,-20.772269],[-57.952368,-20.776169],[-57.953968,-20.780669],[-57.956868,-20.784469],[-57.958668,-20.786969],[-57.961268,-20.791469],[-57.961268,-20.794969],[-57.959368,-20.797869],[-57.955768,-20.798869],[-57.951468,-20.800269],[-57.947068,-20.800469],[-57.941268,-20.800769],[-57.935868,-20.799469],[-57.929968,-20.797769],[-57.922168,-20.794769],[-57.917568,-20.792469],[-57.913668,-20.790069],[-57.910968,-20.788869],[-57.905868,-20.788069],[-57.898768,-20.788669],[-57.893268,-20.790669],[-57.889668,-20.793669],[-57.884568,-20.798669],[-57.876668,-20.804369],[-57.873768,-20.807169],[-57.871568,-20.810869],[-57.868068,-20.815169],[-57.863368,-20.819369],[-57.859368,-20.824869],[-57.857268,-20.829669],[-57.854668,-20.835669],[-57.853968,-20.841169],[-57.854968,-20.845569],[-57.857868,-20.850869],[-57.862268,-20.853569],[-57.866468,-20.853869],[-57.869468,-20.853469],[-57.872668,-20.853869],[-57.876968,-20.856469],[-57.883868,-20.862469],[-57.889668,-20.868069],[-57.891868,-20.870069],[-57.894768,-20.872169],[-57.897568,-20.873869],[-57.901568,-20.876669],[-57.904268,-20.878869],[-57.908068,-20.881269],[-57.910968,-20.882069],[-57.914568,-20.883469],[-57.918168,-20.885969],[-57.921968,-20.888569],[-57.926468,-20.891869],[-57.928868,-20.895169],[-57.928068,-20.900169],[-57.926168,-20.902669],[-57.921868,-20.904469],[-57.916468,-20.904469],[-57.911268,-20.903469],[-57.907368,-20.903069],[-57.902068,-20.901769],[-57.897668,-20.902569],[-57.892368,-20.904469],[-57.886468,-20.908469],[-57.881368,-20.914569],[-57.879668,-20.918569],[-57.878768,-20.923869],[-57.877668,-20.929369],[-57.876068,-20.935169],[-57.874468,-20.939869],[-57.871568,-20.943469],[-57.867168,-20.946669],[-57.863568,-20.948769],[-57.856668,-20.949369],[-57.850668,-20.948769],[-57.844468,-20.946369],[-57.841668,-20.942769],[-57.837968,-20.939969],[-57.835468,-20.937769],[-57.833468,-20.935169],[-57.828568,-20.933869],[-57.824868,-20.933869],[-57.821568,-20.935469],[-57.819668,-20.937969],[-57.819068,-20.942069],[-57.818768,-20.945169],[-57.818768,-20.948469],[-57.820968,-20.952069],[-57.823568,-20.956769],[-57.824668,-20.961469],[-57.825168,-20.965169],[-57.824268,-20.968169],[-57.822168,-20.972069],[-57.818868,-20.975969],[-57.817368,-20.979669],[-57.820468,-20.983369],[-57.823568,-20.985769],[-57.827368,-20.989669],[-57.829568,-20.992669],[-57.833268,-20.997169],[-57.837268,-21.001569],[-57.840468,-21.005569],[-57.842668,-21.010369],[-57.845568,-21.016069],[-57.849568,-21.021269],[-57.852568,-21.025369],[-57.857568,-21.031269],[-57.862168,-21.035369],[-57.866168,-21.039169],[-57.868268,-21.041769],[-57.868568,-21.046169],[-57.868068,-21.051969],[-57.867668,-21.060169],[-57.865768,-21.066669],[-57.862268,-21.070569],[-57.859168,-21.074569],[-57.856768,-21.077869],[-57.854468,-21.082169],[-57.850968,-21.089069],[-57.845868,-21.096969],[-57.847368,-21.101269],[-57.850268,-21.106169],[-57.854468,-21.113969],[-57.858968,-21.123569],[-57.863068,-21.129869],[-57.864968,-21.136269],[-57.862468,-21.147369],[-57.860068,-21.158169],[-57.855868,-21.168869],[-57.851668,-21.179469],[-57.848868,-21.187769],[-57.848168,-21.194969],[-57.849168,-21.201769],[-57.849968,-21.207669],[-57.851368,-21.217969],[-57.853068,-21.227069],[-57.857168,-21.233069],[-57.862968,-21.236069],[-57.867668,-21.238669],[-57.877168,-21.247769],[-57.886568,-21.253769],[-57.897968,-21.260369],[-57.905968,-21.265169],[-57.912068,-21.270969],[-57.921368,-21.278769],[-57.920368,-21.284569],[-57.914468,-21.292269],[-57.905668,-21.300569],[-57.894868,-21.307169],[-57.885168,-21.308769],[-57.875768,-21.311069],[-57.869068,-21.313469],[-57.861168,-21.315569],[-57.854668,-21.316869],[-57.852868,-21.320169],[-57.852568,-21.325769],[-57.853668,-21.332069],[-57.855868,-21.338469],[-57.857168,-21.341769],[-57.861068,-21.350569],[-57.866668,-21.356769],[-57.874468,-21.363269],[-57.880268,-21.368069],[-57.884868,-21.371669],[-57.887968,-21.374469],[-57.892368,-21.377969],[-57.896768,-21.383469],[-57.901868,-21.392169],[-57.905568,-21.398769],[-57.908068,-21.402569],[-57.909468,-21.406969],[-57.909568,-21.414469],[-57.910068,-21.420869],[-57.912868,-21.425269],[-57.915568,-21.429969],[-57.919668,-21.437969],[-57.924668,-21.444969],[-57.927168,-21.449869],[-57.927268,-21.452969],[-57.925568,-21.456869],[-57.925068,-21.461969],[-57.926568,-21.468769],[-57.929468,-21.474769],[-57.932268,-21.480269],[-57.934368,-21.483969],[-57.939668,-21.491369],[-57.946368,-21.498569],[-57.954868,-21.505769],[-57.960468,-21.509869],[-57.964568,-21.515369],[-57.967668,-21.521469],[-57.968368,-21.527669],[-57.968468,-21.535269],[-57.965868,-21.551569],[-57.964068,-21.557269],[-57.961568,-21.562369],[-57.956768,-21.566869],[-57.950768,-21.569869],[-57.940968,-21.571869],[-57.936268,-21.573469],[-57.930268,-21.576569],[-57.923368,-21.579269],[-57.918868,-21.582169],[-57.915568,-21.586269],[-57.913968,-21.590369],[-57.914468,-21.595569],[-57.918568,-21.598869],[-57.923568,-21.601769],[-57.928568,-21.605869],[-57.931968,-21.609969],[-57.935268,-21.612869],[-57.937968,-21.615069],[-57.942168,-21.620869],[-57.943168,-21.628469],[-57.939168,-21.638169],[-57.936668,-21.644569],[-57.933368,-21.651569],[-57.929968,-21.657269],[-57.925568,-21.662069],[-57.920268,-21.666169],[-57.911368,-21.670069],[-57.903468,-21.674669],[-57.897168,-21.677969],[-57.892968,-21.679369],[-57.889968,-21.680469],[-57.886068,-21.682769],[-57.883268,-21.687969],[-57.884868,-21.691669],[-57.887768,-21.694869],[-57.890768,-21.697669],[-57.892668,-21.700469],[-57.897568,-21.704969],[-57.900968,-21.707669],[-57.903768,-21.709769],[-57.907868,-21.712569],[-57.919768,-21.719569],[-57.931168,-21.726369],[-57.940968,-21.732869],[-57.945668,-21.740369],[-57.947368,-21.745869],[-57.945568,-21.752069],[-57.940568,-21.757769],[-57.932768,-21.762969],[-57.926668,-21.766769],[-57.917068,-21.769069],[-57.909868,-21.770369],[-57.908468,-21.773969],[-57.909868,-21.776969],[-57.911668,-21.780569],[-57.912868,-21.785369],[-57.914268,-21.790869],[-57.915568,-21.793569],[-57.920068,-21.801069],[-57.924968,-21.809169],[-57.927868,-21.816669],[-57.931068,-21.824569],[-57.935768,-21.829669],[-57.942668,-21.835369],[-57.949668,-21.838769],[-57.955468,-21.840869],[-57.959568,-21.841969],[-57.965668,-21.843069],[-57.969768,-21.844169],[-57.971768,-21.847069],[-57.969568,-21.850969],[-57.965168,-21.851969],[-57.959768,-21.853069],[-57.954968,-21.855369],[-57.947468,-21.859669],[-57.940568,-21.862969],[-57.932768,-21.866669],[-57.926468,-21.870769],[-57.919968,-21.873769],[-57.916168,-21.876269],[-57.913868,-21.879669],[-57.914168,-21.884969],[-57.916768,-21.889269],[-57.921468,-21.890769],[-57.925768,-21.890969],[-57.929768,-21.889869],[-57.934568,-21.888669],[-57.939068,-21.892569],[-57.942668,-21.896769],[-57.947968,-21.900369],[-57.949668,-21.903369],[-57.949668,-21.907269],[-57.947468,-21.910669],[-57.942668,-21.913069],[-57.938068,-21.915269],[-57.936668,-21.919669],[-57.936968,-21.927869],[-57.940468,-21.935569],[-57.945268,-21.944369],[-57.948968,-21.953169],[-57.951868,-21.959769],[-57.954868,-21.965869],[-57.959268,-21.973069],[-57.962668,-21.978369],[-57.965068,-21.983569],[-57.964768,-21.989669],[-57.964468,-21.996269],[-57.964768,-22.001069],[-57.968968,-22.009969],[-57.974968,-22.015369],[-57.983568,-22.020169],[-57.989968,-22.022969],[-57.994468,-22.025069],[-57.999368,-22.027369],[-58.002968,-22.029169],[-58.006268,-22.031469],[-58.008268,-22.034169],[-58.009268,-22.039169],[-58.009568,-22.045269],[-58.007068,-22.049969],[-58.001268,-22.053669],[-57.994068,-22.055569],[-57.987568,-22.059069],[-57.984268,-22.063569],[-57.983268,-22.070669],[-57.986168,-22.079369],[-57.990768,-22.083769],[-57.993668,-22.089369],[-57.989468,-22.090669],[-57.981968,-22.090069],[-57.977868,-22.090169],[-57.973468,-22.090569],[-57.970568,-22.090369],[-57.967068,-22.089269],[-57.965368,-22.086869],[-57.964468,-22.080969],[-57.961768,-22.078769],[-57.958268,-22.081469],[-57.955768,-22.086269],[-57.951768,-22.086969],[-57.949968,-22.083669],[-57.946768,-22.082569],[-57.941968,-22.082869],[-57.938568,-22.086169],[-57.936568,-22.090369],[-57.937668,-22.097369],[-57.935568,-22.101769],[-57.932768,-22.104769],[-57.928068,-22.106769],[-57.923668,-22.106669],[-57.921468,-22.108969],[-57.925568,-22.113569],[-57.928568,-22.116169],[-57.929768,-22.119669],[-57.926168,-22.120169],[-57.921968,-22.121169],[-57.918068,-22.121069],[-57.913968,-22.121569],[-57.910868,-22.123269],[-57.905868,-22.125469],[-57.898368,-22.123869],[-57.893968,-22.122669],[-57.888168,-22.124069],[-57.886868,-22.129369],[-57.883568,-22.129469],[-57.880668,-22.129069],[-57.876268,-22.129969],[-57.872968,-22.129069],[-57.869168,-22.130569],[-57.867568,-22.133769],[-57.865268,-22.135669],[-57.863568,-22.131769],[-57.859968,-22.130269],[-57.856368,-22.128769],[-57.851368,-22.127369],[-57.845968,-22.127469],[-57.841768,-22.124369],[-57.839068,-22.121969],[-57.835168,-22.119769],[-57.828968,-22.120169],[-57.824868,-22.121569],[-57.822968,-22.123869],[-57.823468,-22.127969],[-57.821768,-22.132069],[-57.820968,-22.136069],[-57.818768,-22.138469],[-57.815168,-22.139869],[-57.811968,-22.140169],[-57.809168,-22.142569],[-57.806668,-22.146769],[-57.805168,-22.150069],[-57.801968,-22.150769],[-57.797868,-22.148769],[-57.796468,-22.143469],[-57.793068,-22.140769],[-57.791168,-22.138169],[-57.790568,-22.134969],[-57.789468,-22.131369],[-57.784268,-22.128569],[-57.779668,-22.125869],[-57.774368,-22.127669],[-57.770768,-22.128269],[-57.767368,-22.130969],[-57.763568,-22.135369],[-57.759368,-22.135269],[-57.754868,-22.135169],[-57.750468,-22.137669],[-57.747668,-22.138969],[-57.744068,-22.136069],[-57.738268,-22.133469],[-57.738268,-22.128469],[-57.736368,-22.125469],[-57.734368,-22.122669],[-57.735368,-22.119669],[-57.739668,-22.118069],[-57.741968,-22.114669],[-57.741368,-22.111869],[-57.740068,-22.107069],[-57.737568,-22.102569],[-57.735068,-22.100569],[-57.731068,-22.099769],[-57.728868,-22.102469],[-57.726368,-22.106469],[-57.723368,-22.110269],[-57.719868,-22.113069],[-57.716968,-22.113669],[-57.715168,-22.110569],[-57.715968,-22.106969],[-57.712368,-22.103169],[-57.707668,-22.102769],[-57.704268,-22.098469],[-57.705768,-22.095069],[-57.706768,-22.091969],[-57.703468,-22.091769],[-57.699368,-22.092069],[-57.696268,-22.091169],[-57.693268,-22.089869],[-57.689868,-22.088769],[-57.686168,-22.092569],[-57.681568,-22.096269],[-57.678268,-22.100569],[-57.674768,-22.102769],[-57.670868,-22.101369],[-57.667068,-22.102569],[-57.665068,-22.105669],[-57.660868,-22.105269],[-57.657068,-22.104569],[-57.653668,-22.106769],[-57.649368,-22.106069],[-57.645768,-22.104769],[-57.642068,-22.105369],[-57.638168,-22.105969],[-57.633768,-22.103069],[-57.629068,-22.101669],[-57.624468,-22.100069],[-57.621168,-22.097269],[-57.618068,-22.095369],[-57.613868,-22.094469],[-57.609968,-22.095969],[-57.611068,-22.099169],[-57.612568,-22.103669],[-57.613368,-22.107469],[-57.612968,-22.110369],[-57.610268,-22.112969],[-57.609268,-22.117169],[-57.611468,-22.120269],[-57.612268,-22.123269],[-57.608668,-22.121969],[-57.606068,-22.123369],[-57.607068,-22.126269],[-57.606368,-22.129469],[-57.602868,-22.130969],[-57.598668,-22.130569],[-57.596968,-22.133769],[-57.600268,-22.136269],[-57.599968,-22.139269],[-57.596368,-22.136569],[-57.593168,-22.136869],[-57.594068,-22.140069],[-57.594068,-22.143269],[-57.590868,-22.143669],[-57.588668,-22.139669],[-57.585168,-22.141369],[-57.586268,-22.145369],[-57.585668,-22.149369],[-57.585868,-22.153169],[-57.587868,-22.157569],[-57.588168,-22.162069],[-57.588368,-22.165069],[-57.587368,-22.167769],[-57.584268,-22.169969],[-57.581468,-22.174169],[-57.576568,-22.176169],[-57.572068,-22.175769],[-57.567668,-22.177569],[-57.563068,-22.178269],[-57.558368,-22.177569],[-57.554368,-22.180469],[-57.551068,-22.181869],[-57.547768,-22.181969],[-57.543568,-22.181669],[-57.540568,-22.181169],[-57.537468,-22.180269],[-57.534468,-22.178369],[-57.531668,-22.177269],[-57.528368,-22.175769],[-57.525768,-22.173169],[-57.523968,-22.168969],[-57.520668,-22.170069],[-57.517868,-22.172869],[-57.513568,-22.174969],[-57.512768,-22.178069],[-57.510368,-22.181169],[-57.506468,-22.184269],[-57.501268,-22.185169],[-57.496868,-22.184069],[-57.493568,-22.181869],[-57.491568,-22.184169],[-57.490268,-22.187469],[-57.489368,-22.191069],[-57.486368,-22.190469],[-57.482868,-22.191569],[-57.479168,-22.190169],[-57.475268,-22.188569],[-57.470968,-22.187269],[-57.468468,-22.190469],[-57.465168,-22.192369],[-57.463268,-22.189169],[-57.460368,-22.187669],[-57.456768,-22.189969],[-57.452168,-22.187969],[-57.447468,-22.187269],[-57.444868,-22.189869],[-57.442368,-22.191869],[-57.439068,-22.192069],[-57.438768,-22.195269],[-57.436968,-22.197969],[-57.434368,-22.199969],[-57.431368,-22.198969],[-57.428668,-22.196069],[-57.424368,-22.197869],[-57.427168,-22.201569],[-57.424668,-22.204269],[-57.422468,-22.201569],[-57.421168,-22.198969],[-57.417568,-22.197069],[-57.413168,-22.197369],[-57.409868,-22.199069],[-57.406968,-22.197969],[-57.404268,-22.199669],[-57.400468,-22.201369],[-57.396768,-22.203569],[-57.397968,-22.207369],[-57.395468,-22.208769],[-57.392168,-22.207569],[-57.389668,-22.205369],[-57.386868,-22.204669],[-57.386768,-22.207569],[-57.382068,-22.209269],[-57.378568,-22.212669],[-57.379168,-22.216469],[-57.380168,-22.220869],[-57.380668,-22.225969],[-57.375568,-22.224469],[-57.372668,-22.226969],[-57.375268,-22.228669],[-57.374068,-22.231469],[-57.370768,-22.231369],[-57.368368,-22.228569],[-57.363568,-22.228469],[-57.363968,-22.231669],[-57.361068,-22.233969],[-57.358568,-22.231469],[-57.357868,-22.226969],[-57.354768,-22.228069],[-57.351368,-22.229469],[-57.347068,-22.231669],[-57.342668,-22.229169],[-57.340468,-22.232869],[-57.338468,-22.230569],[-57.334668,-22.229969],[-57.335768,-22.233669],[-57.331068,-22.234269],[-57.329668,-22.238069],[-57.325968,-22.238869],[-57.323468,-22.242669],[-57.320168,-22.245169],[-57.317368,-22.243069],[-57.314668,-22.240369],[-57.316868,-22.237169],[-57.314568,-22.233569],[-57.311268,-22.231969],[-57.310268,-22.228469],[-57.306968,-22.229569],[-57.303568,-22.228469],[-57.304168,-22.225269],[-57.301868,-22.222269],[-57.298568,-22.221969],[-57.295868,-22.219769],[-57.292468,-22.219769],[-57.291368,-22.223869],[-57.287568,-22.221669],[-57.283668,-22.225069],[-57.280468,-22.226369],[-57.277568,-22.230269],[-57.278468,-22.234269],[-57.275368,-22.234969],[-57.274368,-22.231469],[-57.270968,-22.230269],[-57.271268,-22.234669],[-57.269768,-22.237469],[-57.266068,-22.237769],[-57.263168,-22.239069],[-57.260168,-22.239369],[-57.256868,-22.238369],[-57.253768,-22.238969],[-57.251268,-22.241469],[-57.249168,-22.245569],[-57.245868,-22.248569],[-57.241068,-22.250569],[-57.236068,-22.250169],[-57.231768,-22.246869],[-57.227468,-22.243869],[-57.223768,-22.242969],[-57.218368,-22.240269],[-57.216968,-22.235869],[-57.215368,-22.232769],[-57.215368,-22.228369],[-57.211768,-22.226969],[-57.214268,-22.223369],[-57.214068,-22.218669],[-57.210468,-22.218169],[-57.207668,-22.220569],[-57.204668,-22.217969],[-57.203268,-22.215169],[-57.202068,-22.211569],[-57.197768,-22.212069],[-57.194068,-22.213669],[-57.190568,-22.217069],[-57.192368,-22.220969],[-57.189968,-22.224169],[-57.187668,-22.227069],[-57.184168,-22.230869],[-57.183268,-22.235369],[-57.178668,-22.233669],[-57.173968,-22.233369],[-57.169268,-22.233569],[-57.170268,-22.229969],[-57.166368,-22.228169],[-57.164968,-22.232169],[-57.160268,-22.231769],[-57.157368,-22.227269],[-57.154068,-22.230269],[-57.150868,-22.231969],[-57.147668,-22.233069],[-57.143468,-22.231069],[-57.140468,-22.228669],[-57.137368,-22.226669],[-57.132668,-22.226169],[-57.128268,-22.227069],[-57.124468,-22.228069],[-57.121968,-22.229769],[-57.118368,-22.230069],[-57.114768,-22.228169],[-57.109268,-22.225969],[-57.105068,-22.227769],[-57.107868,-22.231069],[-57.109668,-22.235569],[-57.111768,-22.239469],[-57.108568,-22.242469],[-57.104468,-22.244169],[-57.101468,-22.247969],[-57.097068,-22.248069],[-57.093168,-22.248269],[-57.091568,-22.243669],[-57.088968,-22.242169],[-57.086268,-22.245869],[-57.085768,-22.248869],[-57.082668,-22.250869],[-57.079368,-22.248669],[-57.079568,-22.245769],[-57.076568,-22.245169],[-57.073568,-22.246569],[-57.071368,-22.244469],[-57.068268,-22.242969],[-57.064168,-22.243669],[-57.059868,-22.242269],[-57.058768,-22.239069],[-57.059468,-22.235569],[-57.060268,-22.232469],[-57.058568,-22.229969],[-57.053968,-22.231369],[-57.050368,-22.231669],[-57.048168,-22.233969],[-57.048568,-22.237769],[-57.046968,-22.241169],[-57.043168,-22.241869],[-57.042568,-22.238069],[-57.039868,-22.236369],[-57.036268,-22.235669],[-57.031968,-22.234169],[-57.027568,-22.234969],[-57.022868,-22.236369],[-57.020368,-22.234469],[-57.018168,-22.231369],[-57.015668,-22.232869],[-57.012868,-22.234769],[-57.009568,-22.234669],[-57.006068,-22.232069],[-57.003468,-22.230569],[-57.001568,-22.228169],[-57.000468,-22.223769],[-56.996268,-22.223069],[-56.992668,-22.224569],[-56.990068,-22.227069],[-56.989068,-22.230669],[-56.990468,-22.233969],[-56.991168,-22.237169],[-56.989368,-22.239469],[-56.987268,-22.242269],[-56.983868,-22.242569],[-56.980268,-22.243069],[-56.975668,-22.243869],[-56.971968,-22.244169],[-56.970568,-22.241069],[-56.966168,-22.240769],[-56.962668,-22.239969],[-56.959068,-22.238369],[-56.956868,-22.240469],[-56.956168,-22.244769],[-56.954268,-22.248869],[-56.952168,-22.250869],[-56.949568,-22.253569],[-56.946368,-22.255969],[-56.943268,-22.255669],[-56.940168,-22.254869],[-56.935468,-22.254169],[-56.931068,-22.254069],[-56.927468,-22.251269],[-56.923668,-22.254069],[-56.918968,-22.255169],[-56.915668,-22.255269],[-56.917568,-22.258169],[-56.913068,-22.259169],[-56.910068,-22.262869],[-56.906768,-22.265969],[-56.902668,-22.265369],[-56.901868,-22.261469],[-56.902868,-22.258469],[-56.901768,-22.254569],[-56.898968,-22.251369],[-56.894368,-22.248769],[-56.889668,-22.246369],[-56.886268,-22.246069],[-56.883568,-22.247469],[-56.880568,-22.250769],[-56.879168,-22.255669],[-56.877968,-22.259369],[-56.875868,-22.262469],[-56.875568,-22.265769],[-56.876668,-22.268569],[-56.878468,-22.271769],[-56.880068,-22.276169],[-56.875968,-22.279469],[-56.871568,-22.281469],[-56.867968,-22.283869],[-56.867568,-22.287069],[-56.864968,-22.289569],[-56.860268,-22.291769],[-56.856468,-22.289569],[-56.852368,-22.291669],[-56.849868,-22.294669],[-56.847568,-22.296669],[-56.845268,-22.299269],[-56.843168,-22.301369],[-56.840168,-22.301169],[-56.836168,-22.299969],[-56.832668,-22.297769],[-56.829368,-22.296169],[-56.825968,-22.295569],[-56.824268,-22.292569],[-56.822668,-22.289569],[-56.819968,-22.287269],[-56.816568,-22.288069],[-56.812768,-22.286969],[-56.809468,-22.286669],[-56.807268,-22.284469],[-56.803968,-22.284169],[-56.802268,-22.280869],[-56.804468,-22.275969],[-56.807268,-22.271869],[-56.805868,-22.268469],[-56.803568,-22.266069],[-56.804768,-22.262469],[-56.805868,-22.259169],[-56.805068,-22.256269],[-56.804168,-22.252669],[-56.801568,-22.248769],[-56.798568,-22.245869],[-56.795668,-22.243669],[-56.792268,-22.242169],[-56.787768,-22.241869],[-56.789168,-22.244769],[-56.787068,-22.249369],[-56.787068,-22.254069],[-56.784768,-22.257169],[-56.781768,-22.257369],[-56.778168,-22.257769],[-56.776268,-22.259869],[-56.772868,-22.258069],[-56.770968,-22.254869],[-56.767668,-22.253469],[-56.763468,-22.250569],[-56.763568,-22.246869],[-56.766568,-22.244969],[-56.763168,-22.242669],[-56.758468,-22.242269],[-56.755468,-22.244969],[-56.752168,-22.245469],[-56.751868,-22.240469],[-56.749768,-22.237569],[-56.746968,-22.236069],[-56.745768,-22.238969],[-56.742668,-22.241169],[-56.739068,-22.244069],[-56.736068,-22.244469],[-56.732268,-22.246869],[-56.732468,-22.249869],[-56.735268,-22.252969],[-56.733868,-22.256569],[-56.730668,-22.258269],[-56.727368,-22.259669],[-56.724168,-22.262369],[-56.720368,-22.263569],[-56.720168,-22.259969],[-56.719768,-22.256669],[-56.716768,-22.254869],[-56.713668,-22.252669],[-56.712968,-22.249369],[-56.709068,-22.247269],[-56.706768,-22.242769],[-56.704868,-22.237569],[-56.700968,-22.234969],[-56.697768,-22.234669],[-56.695668,-22.231769],[-56.695468,-22.227569],[-56.701068,-22.225669],[-56.703968,-22.221369],[-56.703168,-22.217669],[-56.699668,-22.219869],[-56.696268,-22.219469],[-56.691968,-22.218669],[-56.688568,-22.221269],[-56.685768,-22.220569],[-56.682768,-22.221469],[-56.681568,-22.226369],[-56.682668,-22.230569],[-56.682568,-22.234469],[-56.681568,-22.238069],[-56.679768,-22.242469],[-56.677568,-22.245169],[-56.674468,-22.246269],[-56.671368,-22.248869],[-56.666968,-22.249669],[-56.664468,-22.253269],[-56.660568,-22.253069],[-56.656968,-22.255269],[-56.652768,-22.254969],[-56.650468,-22.258469],[-56.647868,-22.261069],[-56.644668,-22.263469],[-56.641068,-22.263969],[-56.637668,-22.261769],[-56.638168,-22.256269],[-56.639968,-22.252669],[-56.642568,-22.250169],[-56.643168,-22.246569],[-56.641768,-22.244069],[-56.638168,-22.241469],[-56.633868,-22.241169],[-56.631768,-22.244669],[-56.628468,-22.246569],[-56.625468,-22.243269],[-56.622368,-22.241969],[-56.619468,-22.239069],[-56.615268,-22.235869],[-56.612168,-22.234269],[-56.608968,-22.233669],[-56.606468,-22.230869],[-56.607168,-22.226369],[-56.608568,-22.221169],[-56.604268,-22.220369],[-56.601368,-22.219769],[-56.599168,-22.217269],[-56.599168,-22.212669],[-56.596668,-22.214869],[-56.593668,-22.217369],[-56.592068,-22.214269],[-56.588368,-22.212269],[-56.584268,-22.211269],[-56.581468,-22.209869],[-56.581468,-22.205669],[-56.577068,-22.203169],[-56.575468,-22.206869],[-56.571368,-22.207369],[-56.568868,-22.205669],[-56.567668,-22.202069],[-56.562968,-22.199569],[-56.559768,-22.196669],[-56.556568,-22.196069],[-56.557168,-22.192669],[-56.556868,-22.188769],[-56.552868,-22.186569],[-56.554368,-22.180769],[-56.553668,-22.176869],[-56.555868,-22.173669],[-56.556168,-22.169269],[-56.552268,-22.167569],[-56.549268,-22.166369],[-56.547468,-22.164169],[-56.544568,-22.163069],[-56.540568,-22.161669],[-56.536668,-22.160569],[-56.533668,-22.159469],[-56.533668,-22.156469],[-56.537068,-22.157269],[-56.538368,-22.153769],[-56.540268,-22.150869],[-56.539468,-22.147169],[-56.535968,-22.146569],[-56.532568,-22.147569],[-56.528968,-22.148169],[-56.527868,-22.144069],[-56.526168,-22.140369],[-56.522868,-22.140769],[-56.519668,-22.140469],[-56.521468,-22.137669],[-56.523968,-22.133469],[-56.525968,-22.129969],[-56.523668,-22.128069],[-56.524468,-22.125169],[-56.523668,-22.121569],[-56.521868,-22.118269],[-56.520068,-22.114969],[-56.519068,-22.112169],[-56.518668,-22.108869],[-56.515168,-22.106669],[-56.511768,-22.104569],[-56.507768,-22.102369],[-56.508468,-22.099169],[-56.505568,-22.096269],[-56.501668,-22.096969],[-56.498868,-22.095569],[-56.496068,-22.094169],[-56.493268,-22.095569],[-56.488668,-22.094469],[-56.483568,-22.094869],[-56.477468,-22.092669],[-56.476468,-22.088469],[-56.473368,-22.086769],[-56.472668,-22.082969],[-56.470268,-22.079969],[-56.467268,-22.080769],[-56.462668,-22.083569],[-56.462068,-22.079669],[-56.457268,-22.080469],[-56.455768,-22.084369],[-56.452968,-22.082869],[-56.451268,-22.078469],[-56.447868,-22.077869],[-56.446668,-22.083169],[-56.442168,-22.082669],[-56.438468,-22.081869],[-56.435768,-22.084769],[-56.430868,-22.084769],[-56.428568,-22.082169],[-56.424668,-22.082269],[-56.421168,-22.083969],[-56.417868,-22.079569],[-56.413968,-22.079669],[-56.409768,-22.079669],[-56.405868,-22.077969],[-56.402268,-22.079969],[-56.399068,-22.079369],[-56.395068,-22.076069],[-56.392968,-22.079069],[-56.392668,-22.082169],[-56.390768,-22.085369],[-56.390668,-22.088969],[-56.390168,-22.093069],[-56.393968,-22.092569],[-56.393768,-22.097069],[-56.392568,-22.099869],[-56.390068,-22.102069],[-56.386368,-22.104169],[-56.382068,-22.104669],[-56.383268,-22.109169],[-56.382068,-22.112469],[-56.379068,-22.114769],[-56.379568,-22.118069],[-56.377968,-22.121569],[-56.374368,-22.123769],[-56.372468,-22.128269],[-56.370168,-22.132669],[-56.368368,-22.137469],[-56.370168,-22.140769],[-56.372768,-22.143469],[-56.371668,-22.147569],[-56.373368,-22.149869],[-56.370868,-22.152369],[-56.368668,-22.155969],[-56.366368,-22.158369],[-56.366168,-22.162569],[-56.363968,-22.166769],[-56.363668,-22.170069],[-56.360268,-22.171469],[-56.357468,-22.173969],[-56.353468,-22.174469],[-56.350568,-22.173869],[-56.349268,-22.176469],[-56.348368,-22.179469],[-56.345268,-22.180769],[-56.343668,-22.183569],[-56.345868,-22.187169],[-56.343468,-22.189669],[-56.340168,-22.189369],[-56.337968,-22.192969],[-56.336268,-22.197969],[-56.332668,-22.199269],[-56.329968,-22.200669],[-56.328168,-22.203869],[-56.325268,-22.206869],[-56.323468,-22.210369],[-56.321268,-22.212869],[-56.317668,-22.215169],[-56.316268,-22.217869],[-56.313068,-22.216169],[-56.310768,-22.214069],[-56.305168,-22.215369],[-56.300568,-22.217269],[-56.298568,-22.220069],[-56.295268,-22.220669],[-56.292568,-22.222869],[-56.289468,-22.225069],[-56.285268,-22.225869],[-56.284168,-22.230669],[-56.280068,-22.231769],[-56.277568,-22.233569],[-56.275968,-22.236469],[-56.273368,-22.234469],[-56.269768,-22.234369],[-56.266768,-22.235769],[-56.264868,-22.238069],[-56.261368,-22.239169],[-56.258468,-22.237569],[-56.255268,-22.237469],[-56.252368,-22.238569],[-56.249068,-22.237469],[-56.245468,-22.236669],[-56.241868,-22.235669],[-56.237568,-22.237169],[-56.234968,-22.241469],[-56.232768,-22.245169],[-56.232568,-22.249469],[-56.232568,-22.254169],[-56.231968,-22.257369],[-56.229568,-22.259269],[-56.227068,-22.261869],[-56.224468,-22.263269],[-56.221468,-22.263969],[-56.219568,-22.267069],[-56.215368,-22.269269],[-56.213368,-22.272969],[-56.210068,-22.277069],[-56.206168,-22.276169],[-56.201068,-22.276869],[-56.197968,-22.275669],[-56.194468,-22.272769],[-56.189868,-22.274069],[-56.188768,-22.278369],[-56.187268,-22.280969],[-56.185268,-22.278369],[-56.181568,-22.278769],[-56.178268,-22.279869],[-56.174468,-22.280369],[-56.173868,-22.285069],[-56.169768,-22.285269],[-56.165668,-22.286669],[-56.161668,-22.285969],[-56.160068,-22.282869],[-56.157568,-22.284769],[-56.154468,-22.282569],[-56.150968,-22.281969],[-56.147868,-22.283469],[-56.144368,-22.284769],[-56.139868,-22.285269],[-56.136068,-22.285269],[-56.133468,-22.283369],[-56.130168,-22.283869],[-56.128768,-22.280069],[-56.127768,-22.275369],[-56.124468,-22.274269],[-56.123568,-22.271569],[-56.119368,-22.271869],[-56.116068,-22.273769],[-56.112768,-22.274069],[-56.110068,-22.275869],[-56.105868,-22.277569],[-56.101668,-22.278969],[-56.097368,-22.281769],[-56.094768,-22.283769],[-56.091968,-22.285069],[-56.087268,-22.284769],[-56.083268,-22.283069],[-56.079368,-22.284869],[-56.073968,-22.286369],[-56.069368,-22.285869],[-56.067368,-22.283469],[-56.065968,-22.280369],[-56.063368,-22.277369],[-56.060168,-22.276469],[-56.055868,-22.276769],[-56.051968,-22.277969],[-56.047468,-22.278469],[-56.043868,-22.282069],[-56.041168,-22.283169],[-56.037768,-22.282269],[-56.034768,-22.281669],[-56.032768,-22.284469],[-56.029468,-22.284869],[-56.025068,-22.285569],[-56.019668,-22.286769],[-56.016268,-22.288069],[-56.012468,-22.287069],[-56.010268,-22.290269],[-56.011068,-22.293169],[-56.007468,-22.292869],[-56.004368,-22.293069],[-56.002968,-22.289569],[-56.001568,-22.286369],[-55.999168,-22.284469],[-55.995268,-22.282569],[-55.990768,-22.281469],[-55.986668,-22.280969],[-55.982868,-22.279169],[-55.979768,-22.280869],[-55.976968,-22.284269],[-55.973768,-22.287869],[-55.970568,-22.290869],[-55.965168,-22.289169],[-55.961568,-22.289769],[-55.958168,-22.290269],[-55.952868,-22.291169],[-55.949068,-22.291669],[-55.947068,-22.287469],[-55.946068,-22.284469],[-55.942768,-22.282669],[-55.938868,-22.282069],[-55.936268,-22.280469],[-55.933568,-22.279569],[-55.930768,-22.278969],[-55.927268,-22.279069],[-55.922468,-22.279869],[-55.918168,-22.278969],[-55.914868,-22.278469],[-55.911968,-22.279569],[-55.909468,-22.281269],[-55.906168,-22.283469],[-55.902668,-22.284869],[-55.898168,-22.284869],[-55.892368,-22.283769],[-55.887468,-22.282569],[-55.883468,-22.282569],[-55.879468,-22.282369],[-55.874368,-22.283069],[-55.864668,-22.282869],[-55.860268,-22.282569],[-55.856668,-22.280669],[-55.852068,-22.280969],[-55.849468,-22.285969],[-55.843068,-22.287069],[-55.841668,-22.289569],[-55.839068,-22.294169],[-55.835368,-22.296069],[-55.838668,-22.297469],[-55.838468,-22.300869],[-55.835868,-22.304669],[-55.836168,-22.308369],[-55.835068,-22.312169],[-55.832368,-22.314569],[-55.828768,-22.315969],[-55.832368,-22.321069],[-55.831468,-22.324869],[-55.828468,-22.331469],[-55.825768,-22.335969],[-55.824268,-22.339769],[-55.820968,-22.345069],[-55.814668,-22.345569],[-55.809768,-22.349569],[-55.809168,-22.352469],[-55.804368,-22.354669],[-55.800768,-22.355269],[-55.798568,-22.364669],[-55.799668,-22.368569],[-55.803368,-22.370869],[-55.791368,-22.380469],[-55.791068,-22.388469],[-55.788168,-22.388969],[-55.784268,-22.386469],[-55.779768,-22.384269],[-55.776568,-22.385369],[-55.766468,-22.383769],[-55.757068,-22.386069],[-55.747668,-22.384869],[-55.745768,-22.389069],[-55.741968,-22.395369],[-55.745768,-22.403669],[-55.740868,-22.407069],[-55.737168,-22.410969],[-55.737168,-22.413969],[-55.739668,-22.423669],[-55.736368,-22.429069],[-55.736368,-22.435169],[-55.733868,-22.441569],[-55.736668,-22.444569],[-55.737168,-22.447469],[-55.738268,-22.454369],[-55.736868,-22.459669],[-55.741068,-22.461269],[-55.743368,-22.463669],[-55.748068,-22.464469],[-55.746568,-22.469469],[-55.751968,-22.474569],[-55.751268,-22.481669],[-55.747668,-22.483069],[-55.746868,-22.487469],[-55.747368,-22.492269],[-55.747668,-22.495769],[-55.747168,-22.505469],[-55.740768,-22.515469],[-55.740268,-22.519369],[-55.737268,-22.527369],[-55.735568,-22.530869],[-55.733068,-22.534569],[-55.730668,-22.538869],[-55.728868,-22.542769],[-55.725668,-22.548169],[-55.723468,-22.551669],[-55.718468,-22.553969],[-55.713968,-22.557169],[-55.708468,-22.559369],[-55.705468,-22.560469],[-55.698468,-22.563269],[-55.694868,-22.572469],[-55.694868,-22.577569],[-55.688468,-22.581069],[-55.683268,-22.587569],[-55.676568,-22.591969],[-55.669568,-22.593969],[-55.666668,-22.598469],[-55.660968,-22.602369],[-55.651468,-22.607769],[-55.649068,-22.610369],[-55.642968,-22.612169],[-55.636768,-22.617769],[-55.631368,-22.620469],[-55.629468,-22.622769],[-55.627668,-22.624969],[-55.625268,-22.628669],[-55.624468,-22.633469],[-55.624068,-22.637069],[-55.623568,-22.641069],[-55.622468,-22.647069],[-55.622168,-22.651569],[-55.618068,-22.653469],[-55.614368,-22.655069],[-55.613668,-22.659869],[-55.617168,-22.664769],[-55.618268,-22.670369],[-55.617268,-22.677569],[-55.609268,-22.689069],[-55.613568,-22.692769],[-55.614668,-22.699569],[-55.613068,-22.704569],[-55.613868,-22.711469],[-55.613368,-22.716969],[-55.616968,-22.725069],[-55.615868,-22.735869],[-55.612968,-22.738869],[-55.616368,-22.740069],[-55.620068,-22.744669],[-55.619368,-22.749369],[-55.620868,-22.754069],[-55.624068,-22.755669],[-55.625968,-22.759169],[-55.622968,-22.762069],[-55.619968,-22.764569],[-55.618268,-22.767669],[-55.622168,-22.767169],[-55.627668,-22.766569],[-55.630568,-22.767169],[-55.633168,-22.769369],[-55.635968,-22.770769],[-55.636768,-22.773769],[-55.636268,-22.777869],[-55.638968,-22.782569],[-55.642168,-22.785369],[-55.644768,-22.788169],[-55.647868,-22.789969],[-55.650968,-22.792069],[-55.650068,-22.795369],[-55.649468,-22.800369],[-55.650868,-22.804369],[-55.655068,-22.807769],[-55.653368,-22.811869],[-55.653368,-22.816569],[-55.655168,-22.819869],[-55.658168,-22.824069],[-55.660868,-22.827369],[-55.660268,-22.830769],[-55.659168,-22.835869],[-55.658968,-22.840969],[-55.663068,-22.847069],[-55.665668,-22.852469],[-55.663068,-22.857169],[-55.663168,-22.860269],[-55.660868,-22.863269],[-55.659868,-22.868069],[-55.661668,-22.874369],[-55.661668,-22.877969],[-55.661168,-22.882169],[-55.656768,-22.884969],[-55.653668,-22.884869],[-55.650868,-22.887169],[-55.649468,-22.890969],[-55.649068,-22.897869],[-55.651168,-22.902569],[-55.650468,-22.910969],[-55.647968,-22.912869],[-55.647068,-22.921769],[-55.645468,-22.924369],[-55.651568,-22.931069],[-55.650468,-22.934469],[-55.647068,-22.937369],[-55.644268,-22.941269],[-55.647568,-22.949869],[-55.643968,-22.950769],[-55.638268,-22.950469],[-55.635768,-22.955369],[-55.637968,-22.958969],[-55.636768,-22.964769],[-55.633568,-22.967669],[-55.631568,-22.970069],[-55.628768,-22.975069],[-55.626368,-22.977869],[-55.621868,-22.984469],[-55.624068,-22.988369],[-55.627368,-22.988569],[-55.633868,-22.991669],[-55.633268,-22.997269],[-55.628468,-22.998269],[-55.631368,-23.000769],[-55.632768,-23.008269],[-55.634968,-23.013969],[-55.639368,-23.025869],[-55.635168,-23.025469],[-55.632668,-23.028069],[-55.628768,-23.032369],[-55.623768,-23.032869],[-55.619468,-23.036369],[-55.617268,-23.038169],[-55.614168,-23.041069],[-55.611368,-23.048869],[-55.614468,-23.053869],[-55.611968,-23.059369],[-55.611068,-23.066369],[-55.610768,-23.069669],[-55.611368,-23.076769],[-55.617268,-23.081769],[-55.612468,-23.085969],[-55.611968,-23.090469],[-55.604668,-23.098669],[-55.599568,-23.104169],[-55.596468,-23.116469],[-55.595868,-23.119369],[-55.598168,-23.121269],[-55.596968,-23.126369],[-55.595868,-23.130469],[-55.596368,-23.142369],[-55.597268,-23.146869],[-55.596768,-23.152569],[-55.591968,-23.151569],[-55.584268,-23.148669],[-55.573468,-23.143269],[-55.567768,-23.143969],[-55.564168,-23.146569],[-55.560868,-23.148269],[-55.558268,-23.150069],[-55.554768,-23.152969],[-55.549268,-23.155169],[-55.546068,-23.155969],[-55.541768,-23.156169],[-55.540968,-23.159869],[-55.541168,-23.163369],[-55.544468,-23.166969],[-55.540668,-23.169269],[-55.539968,-23.174969],[-55.543668,-23.177469],[-55.543068,-23.180769],[-55.538868,-23.184469],[-55.535868,-23.186069],[-55.532768,-23.190269],[-55.528068,-23.192969],[-55.525168,-23.194869],[-55.523168,-23.197769],[-55.526168,-23.208169],[-55.530068,-23.211569],[-55.534168,-23.216769],[-55.540268,-23.220869],[-55.542768,-23.219269],[-55.546168,-23.220169],[-55.542468,-23.226369],[-55.540368,-23.233969],[-55.536668,-23.235769],[-55.538468,-23.241169],[-55.540368,-23.244069],[-55.535868,-23.251569],[-55.530168,-23.252669],[-55.526168,-23.256869],[-55.522568,-23.259669],[-55.527068,-23.263569],[-55.529868,-23.266469],[-55.532268,-23.268569],[-55.536168,-23.270369],[-55.539568,-23.272869],[-55.543968,-23.274069],[-55.546668,-23.275069],[-55.548968,-23.278369],[-55.553068,-23.279469],[-55.554768,-23.282869],[-55.554668,-23.288169],[-55.551868,-23.296669],[-55.549168,-23.303669],[-55.555868,-23.316269],[-55.554668,-23.320569],[-55.550868,-23.322369],[-55.546068,-23.323569],[-55.538368,-23.329569],[-55.534468,-23.333269],[-55.532068,-23.341169],[-55.527368,-23.342569],[-55.523968,-23.349269],[-55.520668,-23.352269],[-55.519368,-23.365069],[-55.510668,-23.366869],[-55.506368,-23.370269],[-55.504668,-23.374069],[-55.504368,-23.378469],[-55.509568,-23.393469],[-55.513268,-23.400369],[-55.515468,-23.409469],[-55.520368,-23.416469],[-55.522668,-23.419969],[-55.524068,-23.423269],[-55.527068,-23.427169],[-55.529168,-23.429769],[-55.538168,-23.438869],[-55.544668,-23.449269],[-55.543068,-23.451769],[-55.540568,-23.455469],[-55.541768,-23.464769],[-55.543168,-23.474169],[-55.544968,-23.477269],[-55.553868,-23.475669],[-55.561968,-23.476169],[-55.559368,-23.483169],[-55.559068,-23.488669],[-55.552468,-23.488669],[-55.549668,-23.496169],[-55.548168,-23.504469],[-55.547568,-23.511269],[-55.546668,-23.522569],[-55.540368,-23.524569],[-55.542568,-23.529869],[-55.540568,-23.533669],[-55.538968,-23.536769],[-55.537368,-23.540569],[-55.534868,-23.551069],[-55.535968,-23.554969],[-55.532268,-23.559969],[-55.530168,-23.563069],[-55.526468,-23.567369],[-55.531168,-23.571569],[-55.528368,-23.580169],[-55.530968,-23.584369],[-55.538168,-23.591969],[-55.538368,-23.600869],[-55.536268,-23.609969],[-55.535968,-23.617169],[-55.537868,-23.621169],[-55.539768,-23.625169],[-55.537068,-23.628069],[-55.532068,-23.630269],[-55.530368,-23.627769],[-55.520668,-23.625869],[-55.511068,-23.623269],[-55.509968,-23.631269],[-55.498068,-23.638269],[-55.493268,-23.637669],[-55.490368,-23.642369],[-55.483968,-23.640169],[-55.481768,-23.644369],[-55.478068,-23.646869],[-55.474568,-23.650369],[-55.474568,-23.658069],[-55.473968,-23.661169],[-55.474768,-23.667769],[-55.475068,-23.674769],[-55.469168,-23.676869],[-55.465968,-23.681069],[-55.462268,-23.684469],[-55.463368,-23.692669],[-55.463968,-23.698769],[-55.466468,-23.703469],[-55.464268,-23.708269],[-55.462368,-23.712269],[-55.456868,-23.714069],[-55.454968,-23.716569],[-55.452068,-23.715069],[-55.449368,-23.712269],[-55.443468,-23.712569],[-55.441068,-23.710069],[-55.439868,-23.712869],[-55.436268,-23.716669],[-55.442468,-23.722869],[-55.441968,-23.728169],[-55.446568,-23.734969],[-55.445168,-23.738269],[-55.448568,-23.742169],[-55.446668,-23.747969],[-55.443168,-23.752969],[-55.442768,-23.755969],[-55.447168,-23.760169],[-55.443168,-23.765669],[-55.433768,-23.770969],[-55.433368,-23.775169],[-55.432268,-23.782369],[-55.430768,-23.786969],[-55.430168,-23.790069],[-55.435168,-23.793169],[-55.436868,-23.798069],[-55.441068,-23.803369],[-55.444068,-23.809169],[-55.448468,-23.814169],[-55.450668,-23.816369],[-55.452568,-23.819869],[-55.447168,-23.822569],[-55.441568,-23.829269],[-55.441268,-23.832569],[-55.440468,-23.839869],[-55.440168,-23.845969],[-55.440268,-23.853569],[-55.438868,-23.857169],[-55.439668,-23.862569],[-55.439368,-23.866069],[-55.437268,-23.869469],[-55.435768,-23.874069],[-55.436268,-23.877769],[-55.436668,-23.882069],[-55.436968,-23.885369],[-55.437768,-23.890669],[-55.438068,-23.894569],[-55.438768,-23.899369],[-55.439468,-23.904869],[-55.442368,-23.907369],[-55.444868,-23.909769],[-55.445268,-23.914269],[-55.445168,-23.917269],[-55.442168,-23.918369],[-55.438068,-23.919169],[-55.435168,-23.922169],[-55.432768,-23.923869],[-55.427768,-23.926169],[-55.429668,-23.931569],[-55.432668,-23.940569],[-55.426968,-23.939669],[-55.420368,-23.943069],[-55.416768,-23.948469],[-55.417868,-23.953169],[-55.419968,-23.957269],[-55.414268,-23.964569],[-55.405168,-23.964869],[-55.401768,-23.970369],[-55.402868,-23.974169],[-55.396868,-23.975069],[-55.394268,-23.973469],[-55.390168,-23.970969],[-55.387468,-23.967569],[-55.378268,-23.970569],[-55.379068,-23.975269],[-55.375468,-23.979769],[-55.371568,-23.979169],[-55.366668,-23.981369],[-55.363868,-23.982169],[-55.358368,-23.989169],[-55.352468,-23.989969],[-55.349268,-23.993369],[-55.345368,-23.994469],[-55.341168,-23.994469],[-55.335968,-23.992969],[-55.333968,-23.988569],[-55.329868,-23.983069],[-55.325668,-23.976969],[-55.322368,-23.967569],[-55.317668,-23.962869],[-55.312168,-23.965069],[-55.303368,-23.965869],[-55.297468,-23.970569],[-55.287268,-23.975869],[-55.283168,-23.977569],[-55.277668,-23.984469],[-55.274368,-23.984769],[-55.270968,-23.985369],[-55.269668,-23.988269],[-55.266268,-23.989369],[-55.263168,-23.987169],[-55.262068,-23.991669],[-55.260168,-23.994069],[-55.256868,-23.996169],[-55.253068,-23.997669],[-55.247968,-24.000169],[-55.245868,-23.998269],[-55.243068,-24.002369],[-55.240468,-24.005969],[-55.235268,-24.006569],[-55.232868,-24.009969],[-55.228068,-24.013469],[-55.223868,-24.012469],[-55.218668,-24.009669],[-55.215168,-24.005769],[-55.211468,-24.004069],[-55.206868,-24.003569],[-55.204368,-24.000769],[-55.201768,-23.998069],[-55.199068,-23.995069],[-55.198568,-23.987969],[-55.192768,-23.986769],[-55.187368,-23.988369],[-55.181168,-23.988669],[-55.178568,-23.993669],[-55.175568,-23.993269],[-55.165668,-23.988969],[-55.159868,-23.987569],[-55.157868,-23.985369],[-55.155868,-23.983069],[-55.149468,-23.988569],[-55.145668,-23.988669],[-55.141268,-23.987569],[-55.137968,-23.986869],[-55.128768,-23.983669],[-55.126268,-23.979469],[-55.124668,-23.975969],[-55.122668,-23.978669],[-55.118368,-23.977069],[-55.107168,-23.961969],[-55.106968,-23.965169],[-55.099468,-23.969869],[-55.097768,-23.973069],[-55.094168,-23.974969],[-55.092968,-23.977569],[-55.090168,-23.982569],[-55.084268,-23.982769],[-55.080368,-23.984669],[-55.074268,-23.984769],[-55.071668,-23.987469],[-55.063268,-23.992569],[-55.059968,-23.991869],[-55.052568,-23.986169],[-55.051168,-23.980669],[-55.045068,-23.983569],[-55.039568,-23.980269],[-55.035868,-23.977069],[-55.032268,-23.973469],[-55.027268,-23.973069],[-55.023468,-23.972869],[-55.019268,-23.971969],[-55.005168,-23.962669],[-54.998568,-23.957569],[-54.995168,-23.958969],[-54.990868,-23.962269],[-54.986068,-23.962069],[-54.981068,-23.960969],[-54.976368,-23.957669],[-54.972668,-23.960169],[-54.969568,-23.964369],[-54.966668,-23.966169],[-54.955368,-23.965369],[-54.951368,-23.964769],[-54.948568,-23.963669],[-54.944168,-23.964769],[-54.941568,-23.966569],[-54.938068,-23.962869],[-54.933768,-23.963169],[-54.926068,-23.960969],[-54.926168,-23.954669],[-54.926368,-23.950669],[-54.928068,-23.947369],[-54.929968,-23.943169],[-54.923968,-23.936269],[-54.926468,-23.932269],[-54.927268,-23.929369],[-54.926868,-23.924769],[-54.913168,-23.922169],[-54.913368,-23.917069],[-54.911468,-23.914469],[-54.908868,-23.911669],[-54.903368,-23.909569],[-54.900768,-23.912269],[-54.893568,-23.910669],[-54.891068,-23.901469],[-54.885968,-23.897369],[-54.881068,-23.898469],[-54.880468,-23.901769],[-54.877068,-23.905169],[-54.873368,-23.909169],[-54.869168,-23.906169],[-54.862168,-23.907569],[-54.859368,-23.905369],[-54.850268,-23.907869],[-54.849168,-23.902569],[-54.849768,-23.896869],[-54.847268,-23.894569],[-54.844468,-23.892469],[-54.841968,-23.888969],[-54.835468,-23.884069],[-54.832068,-23.884569],[-54.829568,-23.887069],[-54.826768,-23.888169],[-54.822768,-23.889869],[-54.818768,-23.890169],[-54.814168,-23.890369],[-54.810768,-23.883569],[-54.807568,-23.881269],[-54.805768,-23.879069],[-54.799668,-23.877069],[-54.798968,-23.873869],[-54.796368,-23.870869],[-54.791368,-23.868269],[-54.786968,-23.870269],[-54.779868,-23.869669],[-54.776468,-23.868069],[-54.774568,-23.865369],[-54.763968,-23.866169],[-54.761868,-23.858069],[-54.759068,-23.856669],[-54.754568,-23.858669],[-54.749168,-23.860869],[-54.748368,-23.866069],[-54.745268,-23.868669],[-54.736468,-23.865869],[-54.733268,-23.869669],[-54.721168,-23.865469],[-54.710768,-23.864669],[-54.706268,-23.864469],[-54.699968,-23.859969],[-54.697868,-23.857769],[-54.698468,-23.850569],[-54.698468,-23.841969],[-54.691568,-23.833769],[-54.686568,-23.832169],[-54.684068,-23.829669],[-54.680868,-23.828269],[-54.677768,-23.822469],[-54.669468,-23.812469],[-54.668868,-23.816269],[-54.663868,-23.819269],[-54.658068,-23.819569],[-54.653468,-23.820669],[-54.646768,-23.833669],[-54.638268,-23.830469],[-54.631268,-23.829969],[-54.624868,-23.835069],[-54.616568,-23.835069],[-54.608868,-23.851469],[-54.604968,-23.851969],[-54.601368,-23.852069],[-54.598468,-23.849969],[-54.596268,-23.846169],[-54.593768,-23.843369],[-54.587868,-23.838469],[-54.584068,-23.836969],[-54.583168,-23.841769],[-54.581468,-23.845869],[-54.575668,-23.848069],[-54.570668,-23.850369],[-54.566068,-23.853669],[-54.565968,-23.858969],[-54.567768,-23.862569],[-54.570268,-23.867969],[-54.568568,-23.874369],[-54.561568,-23.872169],[-54.556868,-23.870069],[-54.552968,-23.870769],[-54.548268,-23.869469],[-54.543368,-23.868069],[-54.538868,-23.869069],[-54.535068,-23.873069],[-54.531168,-23.871969],[-54.526468,-23.872669],[-54.522968,-23.873569],[-54.520468,-23.875469],[-54.518268,-23.877769],[-54.517168,-23.881369],[-54.514868,-23.885169],[-54.507168,-23.882369],[-54.502768,-23.884369],[-54.497368,-23.884669],[-54.492968,-23.884969],[-54.491568,-23.887469],[-54.486668,-23.893969],[-54.487568,-23.900369],[-54.487268,-23.903669],[-54.480268,-23.901169],[-54.477768,-23.897869],[-54.470568,-23.897869],[-54.466468,-23.899069],[-54.462868,-23.900669],[-54.457368,-23.899369],[-54.451868,-23.900669],[-54.446568,-23.903369],[-54.443268,-23.904269],[-54.440168,-23.904269],[-54.437668,-23.906169],[-54.434768,-23.909169],[-54.431168,-23.911169],[-54.426868,-23.914469],[-54.427468,-23.926669],[-54.432968,-23.928669],[-54.429668,-23.929769],[-54.424968,-23.930869],[-54.421968,-23.940469],[-54.418968,-23.943469],[-54.416468,-23.946069],[-54.414268,-23.953269],[-54.413868,-23.958569],[-54.410368,-23.961469],[-54.404868,-23.962369],[-54.401268,-23.964769],[-54.397368,-23.965069],[-54.394268,-23.965169],[-54.392668,-23.969069],[-54.391468,-23.971969],[-54.389668,-23.974769],[-54.387868,-23.979969],[-54.386768,-23.982769],[-54.384168,-23.985769],[-54.379968,-23.987569],[-54.376668,-23.990769],[-54.374168,-23.989369],[-54.368668,-23.992969],[-54.365568,-23.997669],[-54.361468,-23.999969],[-54.357768,-24.002969],[-54.354968,-24.004969],[-54.351968,-24.007669],[-54.347568,-24.004669],[-54.346268,-24.001369],[-54.341968,-24.002769],[-54.338168,-24.001669],[-54.336468,-24.004869],[-54.327868,-24.005169],[-54.323268,-24.004669],[-54.320468,-24.007969],[-54.318868,-24.011769],[-54.321368,-24.019269],[-54.321668,-24.023369],[-54.317768,-24.028469],[-54.317068,-24.031969],[-54.313568,-24.034169],[-54.311968,-24.038069],[-54.309868,-24.046369],[-54.304068,-24.050869],[-54.301568,-24.054769],[-54.297768,-24.056669],[-54.293168,-24.061269],[-54.289968,-24.067469],[-54.285168,-24.067769],[-54.288368,-24.070669],[-54.293168,-24.077669],[-54.298968,-24.085769],[-54.302268,-24.090169],[-54.305568,-24.094169],[-54.311668,-24.101169],[-54.314068,-24.103969],[-54.323168,-24.109769],[-54.333268,-24.115869],[-54.339768,-24.122669],[-54.343368,-24.133069],[-54.344468,-24.140669],[-54.344868,-24.144369],[-54.345568,-24.157269],[-54.343968,-24.162769],[-54.340468,-24.168869],[-54.334068,-24.179069],[-54.329868,-24.187969],[-54.327468,-24.196369],[-54.327068,-24.210169],[-54.328168,-24.217569],[-54.329968,-24.224169],[-54.330668,-24.230269],[-54.327868,-24.237969],[-54.324868,-24.244669],[-54.322468,-24.251569],[-54.317068,-24.255269],[-54.309668,-24.260969],[-54.297868,-24.270669],[-54.289168,-24.279469],[-54.283168,-24.285669],[-54.277368,-24.291369],[-54.271568,-24.306869],[-54.267568,-24.321869],[-54.261268,-24.338769],[-54.257768,-24.355269],[-54.258168,-24.365769],[-54.260768,-24.375569],[-54.262668,-24.378069],[-54.269868,-24.390369],[-54.276568,-24.402569],[-54.278968,-24.405369],[-54.285268,-24.412569],[-54.292868,-24.424469],[-54.295568,-24.427569],[-54.301568,-24.434169],[-54.306968,-24.437969],[-54.310768,-24.440569],[-54.318168,-24.450669],[-54.322168,-24.457569],[-54.323568,-24.460069],[-54.326568,-24.465969],[-54.327568,-24.473469],[-54.328968,-24.483969],[-54.331068,-24.493369],[-54.333168,-24.498869],[-54.334268,-24.502169],[-54.336168,-24.507969],[-54.335468,-24.517869],[-54.332968,-24.527669],[-54.329268,-24.537069],[-54.324068,-24.551569],[-54.319868,-24.568869],[-54.319368,-24.576069],[-54.317968,-24.590569],[-54.318168,-24.594469],[-54.318768,-24.606769],[-54.321368,-24.622969],[-54.322768,-24.630569],[-54.324868,-24.642369],[-54.324968,-24.645769],[-54.326068,-24.653169],[-54.326868,-24.659469],[-54.327068,-24.662769],[-54.327168,-24.666169],[-54.327568,-24.674169],[-54.331068,-24.690469],[-54.332268,-24.694569],[-54.334268,-24.701069],[-54.341668,-24.714069],[-54.349168,-24.723169],[-54.353468,-24.729669],[-54.355268,-24.732269],[-54.362468,-24.743269],[-54.369968,-24.756269],[-54.375168,-24.760169],[-54.381368,-24.765969],[-54.389868,-24.777269],[-54.390968,-24.786969],[-54.391468,-24.790369],[-54.393168,-24.800869],[-54.394868,-24.811269],[-54.400368,-24.832069],[-54.405168,-24.845269],[-54.410268,-24.858569],[-54.415368,-24.873869],[-54.416368,-24.877069],[-54.423168,-24.898269],[-54.430268,-24.919169],[-54.435868,-24.938069],[-54.436968,-24.941369],[-54.436968,-24.949069],[-54.438468,-24.962669],[-54.440468,-24.973669],[-54.442068,-24.980269],[-54.442768,-24.983869],[-54.446568,-24.999169],[-54.447468,-25.004569],[-54.449268,-25.014069],[-54.451468,-25.022069],[-54.454368,-25.031669],[-54.456068,-25.039569],[-54.459568,-25.046069],[-54.461568,-25.051169],[-54.462868,-25.057169],[-54.460668,-25.060569],[-54.457568,-25.067369],[-54.457568,-25.074269],[-54.458468,-25.081469],[-54.461568,-25.090069],[-54.461968,-25.096369],[-54.459368,-25.101969],[-54.450668,-25.108669],[-54.445768,-25.113869],[-54.441268,-25.121169],[-54.437668,-25.127069],[-54.434468,-25.132969],[-54.431668,-25.140069],[-54.430168,-25.143769],[-54.428268,-25.146569],[-54.424768,-25.153169],[-54.424468,-25.158069],[-54.426868,-25.165369],[-54.428368,-25.167769],[-54.430768,-25.170069],[-54.434068,-25.170769],[-54.437168,-25.169769],[-54.443268,-25.167769],[-54.447768,-25.168669],[-54.452868,-25.176169],[-54.461568,-25.186569],[-54.466768,-25.195969],[-54.473768,-25.211969],[-54.478068,-25.225669],[-54.479568,-25.230369],[-54.483968,-25.249769],[-54.487568,-25.263869],[-54.491168,-25.277869],[-54.496168,-25.287069],[-54.501568,-25.297169],[-54.513268,-25.311269],[-54.514568,-25.313869],[-54.525368,-25.331469],[-54.539168,-25.347369],[-54.544268,-25.351669],[-54.554968,-25.360069],[-54.561368,-25.366969],[-54.571268,-25.378369],[-54.582868,-25.391569],[-54.586468,-25.396569],[-54.588168,-25.403369],[-54.589368,-25.407269],[-54.590968,-25.411969],[-54.592268,-25.414769],[-54.593668,-25.417569],[-54.595668,-25.420369],[-54.597068,-25.423369],[-54.598368,-25.426369],[-54.599468,-25.429469],[-54.600668,-25.433369],[-54.602468,-25.437969],[-54.604268,-25.440869],[-54.606068,-25.443469],[-54.609168,-25.446069],[-54.612968,-25.448869],[-54.616168,-25.450269],[-54.619368,-25.451069],[-54.620068,-25.454569],[-54.619768,-25.459369],[-54.619668,-25.463969],[-54.617768,-25.469269],[-54.615068,-25.472869],[-54.612168,-25.475569],[-54.608068,-25.478869],[-54.605268,-25.480869],[-54.603068,-25.483569],[-54.601668,-25.486969],[-54.601968,-25.491069],[-54.602768,-25.495869],[-54.601968,-25.501569],[-54.600968,-25.505269],[-54.600868,-25.510269],[-54.601168,-25.515969],[-54.601468,-25.520369],[-54.600668,-25.524269],[-54.599568,-25.528069],[-54.598168,-25.531269],[-54.596368,-25.533969],[-54.594868,-25.536969],[-54.594568,-25.540569],[-54.594768,-25.543869],[-54.594568,-25.548369],[-54.594468,-25.551569],[-54.594268,-25.555069],[-54.594868,-25.558769],[-54.595168,-25.562469],[-54.594868,-25.566569],[-54.594868,-25.570969],[-54.594268,-25.575269],[-54.594168,-25.578969],[-54.594168,-25.583469],[-54.593768,-25.588969],[-54.592268,-25.592269],[-54.588668,-25.592569],[-54.584868,-25.592669],[-54.581168,-25.592269],[-54.577068,-25.591169],[-54.571668,-25.591169],[-54.568068,-25.590969],[-54.564168,-25.590069],[-54.561568,-25.588669],[-54.557968,-25.587569],[-54.553568,-25.587869],[-54.549668,-25.590069],[-54.545768,-25.592569],[-54.542268,-25.594869],[-54.538468,-25.596269],[-54.534868,-25.598769],[-54.533868,-25.604769],[-54.534868,-25.609669],[-54.536268,-25.612269],[-54.537768,-25.616169],[-54.535968,-25.620769],[-54.533468,-25.623269],[-54.528068,-25.627669],[-54.523968,-25.628869],[-54.520768,-25.626969],[-54.517068,-25.624669],[-54.513768,-25.621969],[-54.511368,-25.618569],[-54.505968,-25.617169],[-54.502968,-25.614469],[-54.499668,-25.614669],[-54.495468,-25.616569],[-54.492568,-25.618269],[-54.489668,-25.620869],[-54.485868,-25.624369],[-54.483168,-25.627069],[-54.480268,-25.628469],[-54.476668,-25.631069],[-54.473468,-25.633569],[-54.470168,-25.635669],[-54.468168,-25.637869],[-54.465568,-25.641069],[-54.461268,-25.644869],[-54.458668,-25.648669],[-54.455968,-25.651769],[-54.454068,-25.654069],[-54.450768,-25.657769],[-54.448268,-25.661269],[-54.446668,-25.663669],[-54.445168,-25.666369],[-54.443768,-25.669669],[-54.443568,-25.672569],[-54.443468,-25.675469],[-54.442468,-25.678269],[-54.441968,-25.681969],[-54.441268,-25.685469],[-54.440168,-25.688369],[-54.438768,-25.691269],[-54.437468,-25.694069],[-54.435768,-25.696369],[-54.431668,-25.697069],[-54.426868,-25.695569],[-54.423868,-25.692769],[-54.423568,-25.689869],[-54.423868,-25.685169],[-54.425568,-25.679469],[-54.426168,-25.675869],[-54.426868,-25.669969],[-54.426868,-25.666969],[-54.426368,-25.663869],[-54.425568,-25.659869],[-54.423168,-25.656269],[-54.419468,-25.653169],[-54.415568,-25.650869],[-54.412268,-25.648669],[-54.408068,-25.645769],[-54.403368,-25.644069],[-54.400868,-25.642069],[-54.396868,-25.639669],[-54.394768,-25.636469],[-54.392168,-25.633069],[-54.389868,-25.628269],[-54.389068,-25.625269],[-54.388768,-25.621169],[-54.389068,-25.617769],[-54.389968,-25.614769],[-54.390768,-25.611369],[-54.391068,-25.606969],[-54.390668,-25.603569],[-54.387868,-25.598969],[-54.384068,-25.596469],[-54.379668,-25.595269],[-54.375568,-25.593969],[-54.371568,-25.594469],[-54.368668,-25.596369],[-54.365268,-25.599969],[-54.363268,-25.602469],[-54.359968,-25.605569],[-54.356468,-25.607569],[-54.352868,-25.608169],[-54.349868,-25.606969],[-54.345368,-25.604969],[-54.342268,-25.601269],[-54.339868,-25.597369],[-54.337568,-25.593369],[-54.335868,-25.589269],[-54.334868,-25.585369],[-54.332968,-25.580369],[-54.330968,-25.575669],[-54.328968,-25.571869],[-54.326268,-25.569669],[-54.322868,-25.567469],[-54.318768,-25.565469],[-54.314068,-25.564869],[-54.306068,-25.563469],[-54.302768,-25.561969],[-54.298668,-25.559669],[-54.296068,-25.557269],[-54.292268,-25.555269],[-54.288168,-25.554369],[-54.282568,-25.555769],[-54.279468,-25.557969],[-54.276568,-25.562169],[-54.273668,-25.567769],[-54.266068,-25.581769],[-54.263968,-25.584869],[-54.260168,-25.590169],[-54.257768,-25.593469],[-54.253768,-25.596369],[-54.250468,-25.596769],[-54.245568,-25.597369],[-54.242168,-25.597269],[-54.238068,-25.595869],[-54.235568,-25.593769],[-54.234168,-25.590169],[-54.234168,-25.587269],[-54.234668,-25.582969],[-54.235268,-25.579269],[-54.236068,-25.576069],[-54.236768,-25.573269],[-54.237168,-25.568469],[-54.234468,-25.564369],[-54.229668,-25.562969],[-54.224768,-25.564069],[-54.221368,-25.565969],[-54.217968,-25.568769],[-54.214768,-25.570969],[-54.209368,-25.575169],[-54.202668,-25.580669],[-54.199068,-25.582169],[-54.193468,-25.583769],[-54.186268,-25.585369],[-54.182268,-25.585369],[-54.175268,-25.583269],[-54.173568,-25.579269],[-54.173368,-25.575769],[-54.174668,-25.572969],[-54.176168,-25.570269],[-54.179068,-25.566669],[-54.183668,-25.564569],[-54.187668,-25.563069],[-54.192768,-25.562369],[-54.195968,-25.561569],[-54.198868,-25.560569],[-54.202968,-25.558769],[-54.205468,-25.556669],[-54.207868,-25.553269],[-54.208268,-25.548569],[-54.207568,-25.544769],[-54.206268,-25.541669],[-54.204368,-25.539469],[-54.199968,-25.536469],[-54.197068,-25.534869],[-54.191568,-25.534169],[-54.186868,-25.535369],[-54.181568,-25.537869],[-54.175868,-25.540369],[-54.173068,-25.541469],[-54.167268,-25.543069],[-54.163068,-25.542569],[-54.158668,-25.539469],[-54.155368,-25.535969],[-54.152568,-25.531769],[-54.149068,-25.526969],[-54.143968,-25.520669],[-54.141868,-25.518469],[-54.137468,-25.514669],[-54.134368,-25.511569],[-54.129368,-25.508469],[-54.124668,-25.504969],[-54.120268,-25.501569],[-54.115768,-25.498369],[-54.110068,-25.495469],[-54.103568,-25.494369],[-54.097868,-25.495869],[-54.094468,-25.498869],[-54.093068,-25.501869],[-54.092668,-25.509869],[-54.093768,-25.514369],[-54.095368,-25.518469],[-54.096468,-25.521269],[-54.099168,-25.525469],[-54.101968,-25.530669],[-54.105268,-25.535269],[-54.108968,-25.539969],[-54.111368,-25.542769],[-54.115568,-25.547769],[-54.118268,-25.551069],[-54.119968,-25.553969],[-54.121268,-25.557169],[-54.123068,-25.562769],[-54.123368,-25.568069],[-54.121868,-25.575969],[-54.119468,-25.583469],[-54.117768,-25.586569],[-54.113268,-25.597569],[-54.110068,-25.604769],[-54.108568,-25.608269],[-54.105368,-25.614069],[-54.101768,-25.617969],[-54.098468,-25.619169],[-54.093668,-25.619069],[-54.091168,-25.616069],[-54.090168,-25.611969],[-54.088968,-25.606469],[-54.088968,-25.602269],[-54.089568,-25.595869],[-54.089568,-25.590669],[-54.089768,-25.585469],[-54.087268,-25.579569],[-54.085668,-25.574569],[-54.084568,-25.569869],[-54.084068,-25.566069],[-54.083468,-25.562169],[-54.079968,-25.558569],[-54.074268,-25.559069],[-54.071368,-25.559869],[-54.066268,-25.564969],[-54.062768,-25.572369],[-54.060468,-25.577469],[-54.056168,-25.582569],[-54.051168,-25.585069],[-54.045268,-25.585069],[-54.041768,-25.583169],[-54.036268,-25.577669],[-54.032568,-25.571369],[-54.028668,-25.566569],[-54.024768,-25.563769],[-54.020168,-25.563269],[-54.015768,-25.564169],[-54.010768,-25.566569],[-54.006768,-25.570769],[-54.005468,-25.574269],[-54.003468,-25.579069],[-53.999668,-25.582269],[-53.994668,-25.584369],[-53.990868,-25.586769],[-53.988868,-25.589269],[-53.985768,-25.590569],[-53.981068,-25.591969],[-53.977268,-25.594469],[-53.974168,-25.597369],[-53.970968,-25.600669],[-53.973668,-25.604269],[-53.977768,-25.604569],[-53.978468,-25.607769],[-53.977368,-25.612469],[-53.974868,-25.614969],[-53.971968,-25.613669],[-53.967568,-25.612469],[-53.965368,-25.616569],[-53.965168,-25.620069],[-53.964068,-25.623369],[-53.962268,-25.626669],[-53.961468,-25.631269],[-53.963468,-25.635369],[-53.963368,-25.639869],[-53.960968,-25.643469],[-53.956468,-25.645069],[-53.953768,-25.646769],[-53.951268,-25.645369],[-53.948568,-25.641069],[-53.947468,-25.637169],[-53.946668,-25.634269],[-53.945268,-25.631369],[-53.948168,-25.629969],[-53.950168,-25.627169],[-53.953168,-25.624469],[-53.950768,-25.621969],[-53.948568,-25.619069],[-53.948468,-25.615269],[-53.947868,-25.611769],[-53.942768,-25.611469],[-53.941968,-25.614469],[-53.941868,-25.618669],[-53.938768,-25.621069],[-53.935468,-25.621669],[-53.931868,-25.622469],[-53.927268,-25.621369],[-53.924368,-25.618369],[-53.920868,-25.616869],[-53.916668,-25.617269],[-53.915968,-25.622169],[-53.918568,-25.626269],[-53.920668,-25.629169],[-53.918868,-25.632369],[-53.915568,-25.629369],[-53.914468,-25.632769],[-53.913068,-25.635369],[-53.909768,-25.635469],[-53.908368,-25.632369],[-53.904568,-25.629869],[-53.901768,-25.627669],[-53.898668,-25.625469],[-53.895768,-25.623369],[-53.892068,-25.622669],[-53.889068,-25.625569],[-53.891568,-25.628369],[-53.892568,-25.632169],[-53.893168,-25.635169],[-53.894368,-25.638569],[-53.894568,-25.642869],[-53.890368,-25.643269],[-53.886468,-25.644369],[-53.883568,-25.642869],[-53.880268,-25.640969],[-53.876968,-25.644269],[-53.878468,-25.647069],[-53.881668,-25.646869],[-53.884068,-25.649269],[-53.884868,-25.652669],[-53.887068,-25.655169],[-53.889968,-25.657769],[-53.888568,-25.661169],[-53.883868,-25.658369],[-53.880268,-25.656269],[-53.877068,-25.654569],[-53.873268,-25.656269],[-53.869468,-25.657869],[-53.865568,-25.658469],[-53.862468,-25.658969],[-53.860768,-25.663069],[-53.858868,-25.667769],[-53.856368,-25.670369],[-53.855668,-25.673969],[-53.858968,-25.678269],[-53.856368,-25.682269],[-53.851468,-25.683769],[-53.847068,-25.685269],[-53.843168,-25.688769],[-53.847268,-25.689869],[-53.849168,-25.691969],[-53.854268,-25.691569],[-53.853668,-25.696369],[-53.850868,-25.700669],[-53.850968,-25.704869],[-53.853168,-25.706769],[-53.856768,-25.706169],[-53.858268,-25.702469],[-53.862168,-25.699269],[-53.866568,-25.696269],[-53.871968,-25.695169],[-53.869368,-25.698169],[-53.867168,-25.700269],[-53.865468,-25.702869],[-53.867468,-25.706469],[-53.871268,-25.706769],[-53.875468,-25.706769],[-53.878768,-25.708169],[-53.875868,-25.711569],[-53.871868,-25.713469],[-53.868268,-25.714069],[-53.869668,-25.718669],[-53.865368,-25.717869],[-53.861368,-25.718169],[-53.859368,-25.722769],[-53.859968,-25.726769],[-53.863268,-25.730669],[-53.863968,-25.735269],[-53.865868,-25.740069],[-53.864668,-25.744669],[-53.860268,-25.744669],[-53.856768,-25.743869],[-53.853068,-25.742569],[-53.848768,-25.742169],[-53.846668,-25.745169],[-53.844268,-25.746669],[-53.839768,-25.747969],[-53.835468,-25.749369],[-53.834368,-25.752369],[-53.837668,-25.752469],[-53.841168,-25.752069],[-53.841168,-25.756869],[-53.840668,-25.760669],[-53.843668,-25.759369],[-53.847268,-25.757969],[-53.849768,-25.760469],[-53.852068,-25.763169],[-53.855368,-25.765769],[-53.852568,-25.768669],[-53.848168,-25.768969],[-53.843468,-25.769369],[-53.839468,-25.772069],[-53.836868,-25.773969],[-53.834368,-25.776169],[-53.832268,-25.778769],[-53.830768,-25.781469],[-53.832568,-25.784869],[-53.836568,-25.787069],[-53.840968,-25.790569],[-53.837268,-25.791769],[-53.833768,-25.791769],[-53.830168,-25.791369],[-53.827368,-25.790269],[-53.822868,-25.792169],[-53.821768,-25.796369],[-53.822368,-25.799969],[-53.826368,-25.802769],[-53.827868,-25.807169],[-53.823568,-25.810169],[-53.819568,-25.813069],[-53.820268,-25.816369],[-53.823168,-25.815469],[-53.826768,-25.813469],[-53.831568,-25.813269],[-53.835468,-25.814969],[-53.837668,-25.817069],[-53.836468,-25.820569],[-53.835668,-25.824669],[-53.840068,-25.826169],[-53.843768,-25.828469],[-53.845368,-25.831769],[-53.848768,-25.835469],[-53.849868,-25.840169],[-53.847768,-25.842069],[-53.843368,-25.839769],[-53.840368,-25.841969],[-53.838968,-25.845569],[-53.836268,-25.848069],[-53.834368,-25.850369],[-53.835668,-25.853469],[-53.838768,-25.855969],[-53.843068,-25.856969],[-53.842068,-25.859969],[-53.836968,-25.859969],[-53.832668,-25.858869],[-53.833668,-25.862569],[-53.835368,-25.867569],[-53.831768,-25.868869],[-53.827568,-25.869769],[-53.824868,-25.872669],[-53.828568,-25.876069],[-53.832168,-25.878569],[-53.835468,-25.877969],[-53.838768,-25.878869],[-53.839768,-25.882369],[-53.843368,-25.882969],[-53.848068,-25.883469],[-53.847268,-25.887469],[-53.843668,-25.888269],[-53.838368,-25.887669],[-53.834768,-25.889369],[-53.834768,-25.893169],[-53.831568,-25.895369],[-53.826468,-25.895169],[-53.823468,-25.895669],[-53.819868,-25.897569],[-53.820168,-25.900469],[-53.822668,-25.904069],[-53.827168,-25.905369],[-53.830668,-25.905969],[-53.832968,-25.908069],[-53.834368,-25.911769],[-53.832668,-25.914469],[-53.828968,-25.911969],[-53.824968,-25.910569],[-53.821368,-25.911169],[-53.819968,-25.913669],[-53.822868,-25.917169],[-53.821368,-25.920369],[-53.819968,-25.924469],[-53.822368,-25.928869],[-53.826068,-25.928369],[-53.828568,-25.926169],[-53.832568,-25.923169],[-53.833168,-25.928269],[-53.834068,-25.931869],[-53.838368,-25.931969],[-53.842068,-25.932969],[-53.842068,-25.936569],[-53.841968,-25.939469],[-53.840868,-25.942369],[-53.840168,-25.945969],[-53.839768,-25.949969],[-53.839868,-25.953569],[-53.837368,-25.955669],[-53.835168,-25.958969],[-53.830968,-25.960369],[-53.829868,-25.963469],[-53.833968,-25.965069],[-53.835668,-25.968969],[-53.835068,-25.972569],[-53.831768,-25.974569],[-53.827968,-25.975969],[-53.822968,-25.975569],[-53.819368,-25.976269],[-53.816268,-25.978869],[-53.814668,-25.981669],[-53.819068,-25.982469],[-53.818168,-25.986669],[-53.817168,-25.989469],[-53.813768,-25.989669],[-53.810168,-25.989969],[-53.807168,-25.986669],[-53.803568,-25.984769],[-53.801168,-25.989169],[-53.803068,-25.992969],[-53.803668,-25.996369],[-53.800768,-25.999869],[-53.797568,-26.000569],[-53.793968,-25.999369],[-53.791968,-26.002369],[-53.792268,-26.006069],[-53.788068,-26.006769],[-53.784268,-26.007369],[-53.780868,-26.008469],[-53.782568,-26.011769],[-53.779868,-26.015069],[-53.776968,-26.016469],[-53.779468,-26.020169],[-53.775468,-26.022869],[-53.772568,-26.024769],[-53.770968,-26.027269],[-53.771468,-26.030469],[-53.768468,-26.032369],[-53.765368,-26.034469],[-53.762868,-26.035969],[-53.761368,-26.033369],[-53.757668,-26.031969],[-53.755468,-26.034569],[-53.757568,-26.038269],[-53.755268,-26.041669],[-53.752468,-26.038169],[-53.748268,-26.040269],[-53.746368,-26.043969],[-53.742968,-26.040569],[-53.740368,-26.041769],[-53.736868,-26.041669],[-53.734668,-26.044169],[-53.733368,-26.047769],[-53.732468,-26.050769],[-53.730568,-26.054369],[-53.730668,-26.057969],[-53.729268,-26.061069],[-53.727368,-26.065769],[-53.732068,-26.069369],[-53.734368,-26.073169],[-53.737168,-26.077969],[-53.739668,-26.082569],[-53.740468,-26.086269],[-53.740068,-26.090069],[-53.738868,-26.094469],[-53.738368,-26.098669],[-53.739668,-26.103069],[-53.741868,-26.106669],[-53.742968,-26.111069],[-53.741468,-26.115069],[-53.739068,-26.117669],[-53.734768,-26.119469],[-53.731768,-26.122469],[-53.728568,-26.125569],[-53.724268,-26.128269],[-53.720868,-26.128869],[-53.718168,-26.127169],[-53.714768,-26.127669],[-53.710868,-26.130469],[-53.709868,-26.134169],[-53.707668,-26.137069],[-53.706768,-26.140969],[-53.705068,-26.143769],[-53.702968,-26.146769],[-53.701468,-26.149769],[-53.699268,-26.152969],[-53.696768,-26.154569],[-53.692668,-26.156669],[-53.689168,-26.158969],[-53.686668,-26.160969],[-53.682268,-26.162469],[-53.678568,-26.166169],[-53.677568,-26.168869],[-53.676168,-26.171469],[-53.673868,-26.173269],[-53.671868,-26.176569],[-53.669568,-26.179669],[-53.667068,-26.181069],[-53.664468,-26.184469],[-53.660968,-26.186969],[-53.658868,-26.189469],[-53.656768,-26.192669],[-53.653168,-26.193069],[-53.650168,-26.195169],[-53.650368,-26.199669],[-53.652668,-26.203169],[-53.652268,-26.205969],[-53.647968,-26.208669],[-53.644868,-26.209869],[-53.641468,-26.214369],[-53.644068,-26.217069],[-53.646468,-26.220269],[-53.648968,-26.226269],[-53.651168,-26.229969],[-53.653068,-26.235269],[-53.650368,-26.237869],[-53.645368,-26.240769],[-53.642668,-26.243569],[-53.640668,-26.245769],[-53.638168,-26.248769],[-53.639068,-26.251669],[-53.641768,-26.249469],[-53.644768,-26.249969],[-53.643468,-26.254869],[-53.642468,-26.257969],[-53.642068,-26.261569],[-53.642168,-26.265769],[-53.644068,-26.270369],[-53.645168,-26.273969],[-53.645668,-26.278369],[-53.644568,-26.281969],[-53.645668,-26.285869],[-53.647968,-26.288969],[-53.651568,-26.290669],[-53.653468,-26.293869],[-53.655868,-26.296369],[-53.657668,-26.298969],[-53.658368,-26.301969],[-53.660268,-26.305069],[-53.662368,-26.308269],[-53.662568,-26.311569],[-53.664168,-26.314469],[-53.666168,-26.317669],[-53.669268,-26.319569],[-53.669668,-26.323769],[-53.673568,-26.325469],[-53.671368,-26.329269],[-53.673568,-26.331869],[-53.676668,-26.330969],[-53.677468,-26.335069],[-53.681668,-26.334669],[-53.685468,-26.336869],[-53.687268,-26.340169],[-53.688068,-26.343369],[-53.689668,-26.346269],[-53.689168,-26.349969],[-53.690168,-26.353069],[-53.693868,-26.352769],[-53.695668,-26.355269],[-53.692468,-26.356069],[-53.690568,-26.359969],[-53.693568,-26.361469],[-53.696268,-26.363269],[-53.699668,-26.363969],[-53.700968,-26.367269],[-53.701268,-26.372669],[-53.698468,-26.376369],[-53.697968,-26.380269],[-53.698868,-26.383469],[-53.701468,-26.387369],[-53.708468,-26.387369],[-53.708968,-26.390769],[-53.707368,-26.394269],[-53.703968,-26.396769],[-53.701268,-26.397869],[-53.698768,-26.400069],[-53.696868,-26.403469],[-53.699668,-26.407669],[-53.702568,-26.408069],[-53.705768,-26.409469],[-53.704668,-26.412369],[-53.705368,-26.415269],[-53.702868,-26.416769],[-53.698568,-26.416769],[-53.698968,-26.421769],[-53.695968,-26.423569],[-53.694268,-26.426069],[-53.693468,-26.429769],[-53.690568,-26.428069],[-53.687168,-26.428269],[-53.687968,-26.431569],[-53.688768,-26.434769],[-53.687768,-26.439369],[-53.688768,-26.443269],[-53.693768,-26.443269],[-53.697368,-26.444569],[-53.696668,-26.441569],[-53.700368,-26.440469],[-53.704568,-26.442669],[-53.704068,-26.446269],[-53.702868,-26.449969],[-53.700268,-26.452869],[-53.697468,-26.454969],[-53.698168,-26.458969],[-53.699268,-26.462969],[-53.699268,-26.466469],[-53.699268,-26.469469],[-53.702168,-26.467069],[-53.704568,-26.463669],[-53.708668,-26.464869],[-53.712868,-26.467669],[-53.715468,-26.470969],[-53.712868,-26.473369],[-53.709568,-26.474569],[-53.708968,-26.478369],[-53.706268,-26.480669],[-53.704368,-26.476969],[-53.702068,-26.473669],[-53.698568,-26.474169],[-53.696668,-26.476269],[-53.699868,-26.478969],[-53.699268,-26.482869],[-53.698468,-26.485769],[-53.697068,-26.489969],[-53.699868,-26.490469],[-53.702868,-26.490469],[-53.705368,-26.493569],[-53.706468,-26.497169],[-53.708268,-26.500569],[-53.705968,-26.503269],[-53.704568,-26.507069],[-53.708268,-26.506569],[-53.712068,-26.504069],[-53.716268,-26.503469],[-53.719468,-26.506269],[-53.722668,-26.504069],[-53.725368,-26.500869],[-53.729168,-26.501269],[-53.730668,-26.503869],[-53.731068,-26.507469],[-53.730068,-26.511769],[-53.728868,-26.515969],[-53.729168,-26.519369],[-53.728068,-26.522869],[-53.726368,-26.526169],[-53.721968,-26.526569],[-53.718468,-26.525069],[-53.717868,-26.528369],[-53.720968,-26.529769],[-53.724168,-26.531669],[-53.723468,-26.535869],[-53.719268,-26.536369],[-53.721468,-26.540869],[-53.724168,-26.542569],[-53.728068,-26.540869],[-53.731668,-26.538969],[-53.735268,-26.540569],[-53.740868,-26.543569],[-53.741168,-26.547169],[-53.738268,-26.548369],[-53.734168,-26.548869],[-53.730668,-26.548969],[-53.727068,-26.550769],[-53.725568,-26.554769],[-53.725668,-26.558569],[-53.729568,-26.559869],[-53.732868,-26.558669],[-53.736468,-26.560169],[-53.737468,-26.563569],[-53.735668,-26.566569],[-53.731668,-26.566269],[-53.728668,-26.564569],[-53.724268,-26.562769],[-53.722268,-26.566569],[-53.721468,-26.570969],[-53.722068,-26.575469],[-53.722368,-26.580369],[-53.724868,-26.584669],[-53.725268,-26.588669],[-53.728868,-26.587669],[-53.732468,-26.586469],[-53.731168,-26.589369],[-53.728968,-26.592669],[-53.729568,-26.597869],[-53.729568,-26.603069],[-53.730568,-26.607569],[-53.735268,-26.608569],[-53.734968,-26.612769],[-53.732468,-26.614769],[-53.730368,-26.617269],[-53.730268,-26.621569],[-53.732468,-26.623769],[-53.733868,-26.626569],[-53.733368,-26.630469],[-53.736868,-26.630169],[-53.741068,-26.630469],[-53.741468,-26.634069],[-53.741468,-26.637969],[-53.740368,-26.642969],[-53.743368,-26.643969],[-53.746368,-26.640169],[-53.750468,-26.635969],[-53.754368,-26.636069],[-53.758568,-26.638469],[-53.759568,-26.641469],[-53.756568,-26.644369],[-53.753268,-26.645369],[-53.748568,-26.646469],[-53.743368,-26.647969],[-53.739168,-26.646869],[-53.734968,-26.646069],[-53.733868,-26.649769],[-53.733268,-26.653769],[-53.729168,-26.657569],[-53.724768,-26.658869],[-53.723668,-26.655169],[-53.725268,-26.651169],[-53.723368,-26.648169],[-53.720868,-26.652569],[-53.719868,-26.656969],[-53.719468,-26.661769],[-53.718768,-26.665869],[-53.720668,-26.668569],[-53.725668,-26.667569],[-53.726968,-26.670269],[-53.727068,-26.673669],[-53.730268,-26.675769],[-53.731168,-26.678569],[-53.725968,-26.679369],[-53.722368,-26.679469],[-53.718068,-26.681069],[-53.717568,-26.684369],[-53.721168,-26.686869],[-53.724468,-26.690569],[-53.728968,-26.691969],[-53.732868,-26.690569],[-53.734968,-26.688069],[-53.736768,-26.684169],[-53.739768,-26.680869],[-53.743268,-26.680769],[-53.742968,-26.684969],[-53.742968,-26.688369],[-53.741868,-26.691369],[-53.739668,-26.693469],[-53.736368,-26.695569],[-53.733668,-26.699969],[-53.733568,-26.703969],[-53.734768,-26.708269],[-53.734968,-26.712969],[-53.734968,-26.716769],[-53.738568,-26.719169],[-53.743868,-26.719069],[-53.749068,-26.718369],[-53.750868,-26.714469],[-53.752368,-26.711169],[-53.755168,-26.710169],[-53.757168,-26.712569],[-53.757768,-26.715869],[-53.758468,-26.719569],[-53.755768,-26.722869],[-53.751268,-26.724469],[-53.748068,-26.726269],[-53.745468,-26.728169],[-53.743368,-26.730369],[-53.743568,-26.733269],[-53.746568,-26.734969],[-53.749068,-26.736369],[-53.750868,-26.738869],[-53.749468,-26.741869],[-53.746568,-26.741969],[-53.742768,-26.742169],[-53.738368,-26.741869],[-53.735268,-26.739969],[-53.734668,-26.736769],[-53.734168,-26.733669],[-53.731468,-26.731369],[-53.729468,-26.734669],[-53.729268,-26.738369],[-53.727068,-26.741869],[-53.724768,-26.744469],[-53.721668,-26.747669],[-53.717668,-26.749169],[-53.714468,-26.750169],[-53.714768,-26.753369],[-53.716768,-26.756569],[-53.718368,-26.759069],[-53.720868,-26.760969],[-53.724568,-26.762969],[-53.729268,-26.765169],[-53.733168,-26.765669],[-53.736968,-26.763569],[-53.741068,-26.761469],[-53.742968,-26.764069],[-53.738368,-26.766269],[-53.735368,-26.769869],[-53.732468,-26.772969],[-53.729168,-26.774069],[-53.724868,-26.774069],[-53.720268,-26.773669],[-53.716268,-26.772669],[-53.714868,-26.767169],[-53.710168,-26.766069],[-53.706768,-26.766769],[-53.702368,-26.767469],[-53.700268,-26.770969],[-53.704668,-26.772569],[-53.708968,-26.773969],[-53.712068,-26.776169],[-53.716268,-26.779569],[-53.717268,-26.782869],[-53.715568,-26.788469],[-53.712568,-26.793369],[-53.710368,-26.796769],[-53.706468,-26.798269],[-53.701568,-26.798069],[-53.700968,-26.803069],[-53.699268,-26.807169],[-53.697768,-26.810869],[-53.698168,-26.813869],[-53.701368,-26.815269],[-53.705068,-26.815869],[-53.701068,-26.819869],[-53.699968,-26.823469],[-53.698568,-26.828169],[-53.695468,-26.832569],[-53.692468,-26.835069],[-53.689868,-26.837969],[-53.694568,-26.841169],[-53.696068,-26.844569],[-53.695168,-26.847369],[-53.690968,-26.848369],[-53.686668,-26.846369],[-53.683268,-26.843469],[-53.677868,-26.842969],[-53.676168,-26.845569],[-53.674668,-26.849469],[-53.671668,-26.852869],[-53.668368,-26.854269],[-53.664468,-26.855969],[-53.660968,-26.858169],[-53.660868,-26.861669],[-53.663068,-26.864169],[-53.666468,-26.864169],[-53.669168,-26.862969],[-53.672168,-26.861669],[-53.676868,-26.861169],[-53.680868,-26.861369],[-53.685168,-26.861069],[-53.688068,-26.860569],[-53.691268,-26.859669],[-53.695968,-26.858969],[-53.695468,-26.862969],[-53.691568,-26.865769],[-53.687968,-26.866469],[-53.684368,-26.867169],[-53.680768,-26.869769],[-53.683768,-26.870869],[-53.687668,-26.872469],[-53.690968,-26.875569],[-53.693268,-26.879669],[-53.695168,-26.882769],[-53.696068,-26.886369],[-53.693268,-26.889569],[-53.688868,-26.890969],[-53.685268,-26.891569],[-53.680868,-26.892169],[-53.675768,-26.892669],[-53.672768,-26.892969],[-53.672168,-26.896169],[-53.674968,-26.897969],[-53.677468,-26.899769],[-53.679668,-26.902669],[-53.679468,-26.908669],[-53.674668,-26.912069],[-53.678568,-26.915269],[-53.688568,-26.920669],[-53.691268,-26.922569],[-53.694368,-26.924969],[-53.696868,-26.928069],[-53.695668,-26.931169],[-53.692468,-26.933869],[-53.689368,-26.935269],[-53.685568,-26.936869],[-53.679668,-26.938769],[-53.676168,-26.940169],[-53.672468,-26.941269],[-53.669968,-26.943469],[-53.672868,-26.945469],[-53.675768,-26.946269],[-53.679068,-26.945169],[-53.683068,-26.944369],[-53.686368,-26.943169],[-53.688568,-26.941369],[-53.691368,-26.939069],[-53.694868,-26.936969],[-53.698968,-26.935469],[-53.702668,-26.934069],[-53.705968,-26.933269],[-53.709668,-26.934669],[-53.709868,-26.939069],[-53.707368,-26.944269],[-53.705768,-26.946869],[-53.703168,-26.950669],[-53.701568,-26.954269],[-53.702368,-26.957269],[-53.704968,-26.960369],[-53.707968,-26.962569],[-53.711268,-26.965169],[-53.715468,-26.964469],[-53.718468,-26.962869],[-53.720968,-26.960469],[-53.724468,-26.958769],[-53.727268,-26.959669],[-53.728868,-26.963669],[-53.729668,-26.967869],[-53.731168,-26.972769],[-53.735668,-26.974269],[-53.734368,-26.978169],[-53.728868,-26.980669],[-53.723368,-26.982169],[-53.719268,-26.983869],[-53.717368,-26.986969],[-53.718668,-26.990269],[-53.722768,-26.992969],[-53.727868,-26.993669],[-53.730868,-26.992769],[-53.733968,-26.991869],[-53.738268,-26.990869],[-53.743268,-26.992269],[-53.741168,-26.996969],[-53.738668,-26.998769],[-53.734768,-27.001569],[-53.732568,-27.004869],[-53.733168,-27.007969],[-53.736368,-27.010669],[-53.740468,-27.014069],[-53.743868,-27.012769],[-53.745868,-27.010369],[-53.749368,-27.007069],[-53.753768,-27.004869],[-53.757968,-27.005169],[-53.760968,-27.005769],[-53.763568,-27.007769],[-53.762768,-27.011569],[-53.760768,-27.015969],[-53.758768,-27.018169],[-53.755768,-27.019569],[-53.751368,-27.021069],[-53.748368,-27.025169],[-53.748568,-27.032769],[-53.752668,-27.033469],[-53.758468,-27.033869],[-53.761268,-27.037869],[-53.762368,-27.042569],[-53.764668,-27.044669],[-53.767868,-27.041969],[-53.770368,-27.037369],[-53.772868,-27.034269],[-53.775368,-27.031269],[-53.777568,-27.029269],[-53.781168,-27.026769],[-53.785568,-27.026569],[-53.785268,-27.029569],[-53.782768,-27.033369],[-53.780168,-27.036969],[-53.778768,-27.039469],[-53.778768,-27.042469],[-53.778168,-27.045569],[-53.777268,-27.049169],[-53.773968,-27.052869],[-53.770368,-27.056169],[-53.766268,-27.057969],[-53.760768,-27.060169],[-53.759668,-27.063369],[-53.763468,-27.066569],[-53.766768,-27.067669],[-53.771168,-27.066669],[-53.776268,-27.063569],[-53.779268,-27.060769],[-53.782068,-27.057469],[-53.784868,-27.054169],[-53.787368,-27.049769],[-53.790368,-27.044769],[-53.793168,-27.041669],[-53.797468,-27.039769],[-53.801868,-27.040069],[-53.801668,-27.043069],[-53.800768,-27.046369],[-53.799268,-27.049969],[-53.798368,-27.053669],[-53.797768,-27.058569],[-53.794268,-27.062169],[-53.791968,-27.064469],[-53.788868,-27.068269],[-53.784268,-27.071769],[-53.779068,-27.071369],[-53.774468,-27.071369],[-53.772368,-27.073869],[-53.774568,-27.076369],[-53.777568,-27.077969],[-53.781268,-27.078569],[-53.785368,-27.077369],[-53.788468,-27.075769],[-53.792068,-27.072369],[-53.794268,-27.069269],[-53.796168,-27.066669],[-53.799668,-27.067669],[-53.802468,-27.072769],[-53.805468,-27.079069],[-53.803868,-27.083269],[-53.801368,-27.086269],[-53.798168,-27.088369],[-53.793068,-27.091269],[-53.790068,-27.093969],[-53.784868,-27.097369],[-53.778768,-27.100669],[-53.778168,-27.103869],[-53.783468,-27.104969],[-53.787868,-27.105669],[-53.790868,-27.107569],[-53.793868,-27.109769],[-53.797868,-27.109969],[-53.803068,-27.108269],[-53.805568,-27.106469],[-53.807668,-27.103369],[-53.809368,-27.099869],[-53.812268,-27.097869],[-53.816068,-27.099469],[-53.817968,-27.103669],[-53.814368,-27.106469],[-53.811868,-27.107869],[-53.809068,-27.109469],[-53.806568,-27.111769],[-53.805468,-27.116669],[-53.804768,-27.119669],[-53.804968,-27.123269],[-53.807268,-27.125969],[-53.810468,-27.127369],[-53.814968,-27.129369],[-53.818268,-27.129069],[-53.821268,-27.127769],[-53.824868,-27.127369],[-53.824968,-27.131269],[-53.823868,-27.134069],[-53.822068,-27.136769],[-53.819868,-27.138969],[-53.816268,-27.140169],[-53.812168,-27.139569],[-53.808768,-27.138469],[-53.804168,-27.137169],[-53.798968,-27.137069],[-53.798168,-27.140469],[-53.798168,-27.144869],[-53.800368,-27.146769],[-53.803668,-27.146569],[-53.808068,-27.145769],[-53.812668,-27.144869],[-53.815968,-27.144569],[-53.819368,-27.144369],[-53.822468,-27.144369],[-53.825468,-27.144769],[-53.829568,-27.147269],[-53.832968,-27.150469],[-53.836168,-27.153369],[-53.836468,-27.157269],[-53.833468,-27.162269],[-53.833268,-27.166169],[-53.837868,-27.168069],[-53.841568,-27.165569],[-53.843468,-27.162769],[-53.846968,-27.157369],[-53.848968,-27.153969],[-53.850568,-27.150969],[-53.855668,-27.139369],[-53.858568,-27.132669],[-53.861168,-27.128469],[-53.865368,-27.125969],[-53.869768,-27.125169],[-53.875268,-27.125869],[-53.878068,-27.127169],[-53.882668,-27.130669],[-53.884968,-27.135669],[-53.886068,-27.141069],[-53.887368,-27.147869],[-53.887368,-27.150869],[-53.887968,-27.153769],[-53.890168,-27.157669],[-53.892168,-27.160569],[-53.893768,-27.163169],[-53.895168,-27.166669],[-53.898268,-27.170869],[-53.902668,-27.174369],[-53.905468,-27.175469],[-53.909768,-27.176069],[-53.916768,-27.174669],[-53.921368,-27.168969],[-53.925368,-27.163069],[-53.928968,-27.158969],[-53.933568,-27.155869],[-53.940168,-27.152869],[-53.945168,-27.151569],[-53.953168,-27.152869],[-53.957268,-27.156969],[-53.959768,-27.160069],[-53.960668,-27.165069],[-53.958268,-27.170369],[-53.955668,-27.175569],[-53.955168,-27.178369],[-53.955468,-27.183669],[-53.957368,-27.188569],[-53.960068,-27.195269],[-53.963168,-27.197669],[-53.967668,-27.198869],[-53.972268,-27.198869],[-53.977068,-27.197969],[-53.983968,-27.196269],[-53.992168,-27.195969],[-54.000968,-27.196269],[-54.007068,-27.197969],[-54.012168,-27.202569],[-54.014868,-27.208169],[-54.015668,-27.211869],[-54.016468,-27.216969],[-54.015768,-27.223469],[-54.015468,-27.229169],[-54.015768,-27.232869],[-54.017568,-27.238569],[-54.020768,-27.245769],[-54.024368,-27.251569],[-54.027668,-27.254869],[-54.035268,-27.257169],[-54.041468,-27.257969],[-54.047168,-27.259369],[-54.051868,-27.261469],[-54.055568,-27.264569],[-54.060268,-27.269369],[-54.064668,-27.275869],[-54.068768,-27.283369],[-54.070668,-27.286969],[-54.072168,-27.290869],[-54.075668,-27.294469],[-54.081168,-27.298269],[-54.089068,-27.301169],[-54.096468,-27.302769],[-54.100968,-27.303269],[-54.107468,-27.302969],[-54.111068,-27.303669],[-54.114668,-27.303269],[-54.119068,-27.301869],[-54.126268,-27.301469],[-54.129868,-27.301469],[-54.132768,-27.301369],[-54.140068,-27.300069],[-54.143668,-27.299369],[-54.148468,-27.298569],[-54.155168,-27.296469],[-54.159268,-27.292769],[-54.160068,-27.287469],[-54.158868,-27.283969],[-54.156168,-27.280069],[-54.155368,-27.276469],[-54.155368,-27.272369],[-54.155668,-27.268969],[-54.156968,-27.264569],[-54.159468,-27.259369],[-54.162068,-27.256069],[-54.165268,-27.254069],[-54.169468,-27.253569],[-54.174168,-27.254869],[-54.177568,-27.257769],[-54.180768,-27.260169],[-54.183368,-27.262369],[-54.186568,-27.264869],[-54.187368,-27.267969],[-54.189068,-27.271569],[-54.190768,-27.278069],[-54.191568,-27.283069],[-54.192768,-27.288169],[-54.194168,-27.292269],[-54.193468,-27.295769],[-54.192168,-27.300769],[-54.192168,-27.304669],[-54.193268,-27.308369],[-54.195668,-27.312669],[-54.198768,-27.317669],[-54.202368,-27.323569],[-54.204668,-27.327869],[-54.206468,-27.331469],[-54.208668,-27.335869],[-54.210368,-27.339869],[-54.211968,-27.345569],[-54.213268,-27.351169],[-54.213968,-27.358869],[-54.214068,-27.365269],[-54.213268,-27.369669],[-54.212968,-27.375169],[-54.214368,-27.381569],[-54.217268,-27.385369],[-54.222368,-27.389369],[-54.228368,-27.392069],[-54.231968,-27.392969],[-54.235268,-27.393669],[-54.241568,-27.392969],[-54.245868,-27.393169],[-54.252668,-27.394269],[-54.259868,-27.396169],[-54.263968,-27.399269],[-54.267468,-27.404269],[-54.268568,-27.414169],[-54.270668,-27.418669],[-54.270168,-27.424169],[-54.269068,-27.427269],[-54.267868,-27.431169],[-54.268268,-27.436269],[-54.271868,-27.440969],[-54.277268,-27.444869],[-54.283668,-27.447769],[-54.288968,-27.447969],[-54.294168,-27.445969],[-54.297468,-27.441669],[-54.301468,-27.433369],[-54.310568,-27.421869],[-54.320668,-27.412869],[-54.328768,-27.406669],[-54.334368,-27.403169],[-54.338268,-27.403069],[-54.341268,-27.404269],[-54.342568,-27.408169],[-54.342668,-27.412769],[-54.341668,-27.417469],[-54.341768,-27.421169],[-54.341268,-27.425569],[-54.340368,-27.430869],[-54.338968,-27.435769],[-54.337968,-27.439869],[-54.336468,-27.443769],[-54.335068,-27.446669],[-54.335068,-27.451269],[-54.336868,-27.456569],[-54.338468,-27.459569],[-54.340368,-27.463369],[-54.342568,-27.465169],[-54.346368,-27.466969],[-54.350368,-27.466969],[-54.357168,-27.464869],[-54.362968,-27.459769],[-54.369668,-27.452569],[-54.377068,-27.441869],[-54.385168,-27.426969],[-54.388268,-27.422769],[-54.392168,-27.418069],[-54.398668,-27.411669],[-54.405568,-27.407369],[-54.410568,-27.405469],[-54.415668,-27.406969],[-54.418668,-27.408869],[-54.421468,-27.411369],[-54.426568,-27.416069],[-54.430468,-27.419469],[-54.435768,-27.423269],[-54.439068,-27.424669],[-54.444068,-27.424969],[-54.452668,-27.422869],[-54.456068,-27.422169],[-54.459668,-27.422469],[-54.462668,-27.422869],[-54.465868,-27.423569],[-54.469868,-27.425769],[-54.471968,-27.430469],[-54.471968,-27.434369],[-54.469868,-27.437969],[-54.465468,-27.442969],[-54.460368,-27.448569],[-54.452168,-27.453269],[-54.448468,-27.455669],[-54.443868,-27.459869],[-54.442668,-27.464869],[-54.443268,-27.468369],[-54.445768,-27.472069],[-54.449568,-27.475369],[-54.456168,-27.478069],[-54.462968,-27.479669],[-54.474268,-27.481669],[-54.477768,-27.481069],[-54.481668,-27.480969],[-54.486668,-27.480369],[-54.492968,-27.479969],[-54.500568,-27.480269],[-54.506268,-27.482269],[-54.510268,-27.485369],[-54.512468,-27.488969],[-54.514668,-27.493369],[-54.517068,-27.497669],[-54.520468,-27.502769],[-54.524868,-27.506069],[-54.530068,-27.506069],[-54.534468,-27.505669],[-54.537068,-27.502769],[-54.538168,-27.498669],[-54.539468,-27.492969],[-54.542768,-27.486069],[-54.547568,-27.479269],[-54.552168,-27.473469],[-54.556368,-27.468369],[-54.558568,-27.465669],[-54.561268,-27.462569],[-54.566668,-27.457569],[-54.573268,-27.453569],[-54.576568,-27.453269],[-54.580468,-27.453169],[-54.585368,-27.454669],[-54.589368,-27.458169],[-54.591168,-27.462869],[-54.592268,-27.468469],[-54.591768,-27.475069],[-54.593668,-27.482469],[-54.594868,-27.487269],[-54.597368,-27.491669],[-54.602268,-27.497669],[-54.606168,-27.503769],[-54.609668,-27.510969],[-54.611468,-27.516569],[-54.612968,-27.523169],[-54.616368,-27.532869],[-54.620768,-27.538669],[-54.626868,-27.543969],[-54.633468,-27.546069],[-54.639068,-27.545369],[-54.642368,-27.544769],[-54.647968,-27.540269],[-54.651968,-27.531669],[-54.654768,-27.520669],[-54.657268,-27.512369],[-54.660068,-27.508569],[-54.662768,-27.507169],[-54.665568,-27.505769],[-54.670268,-27.504869],[-54.675468,-27.505769],[-54.677868,-27.508869],[-54.679368,-27.512869],[-54.679768,-27.518169],[-54.679768,-27.527569],[-54.677968,-27.533969],[-54.676868,-27.537769],[-54.673868,-27.548169],[-54.672768,-27.553669],[-54.671668,-27.559369],[-54.671468,-27.565569],[-54.674168,-27.570469],[-54.681968,-27.574369],[-54.693068,-27.572869],[-54.698568,-27.571269],[-54.706768,-27.568569],[-54.717268,-27.564869],[-54.723368,-27.563569],[-54.730568,-27.561669],[-54.738568,-27.560869],[-54.741668,-27.561669],[-54.744768,-27.562669],[-54.747168,-27.565269],[-54.749468,-27.567769],[-54.750968,-27.570769],[-54.753468,-27.575369],[-54.758768,-27.581469],[-54.765968,-27.584669],[-54.772968,-27.585169],[-54.778068,-27.583669],[-54.784868,-27.577369],[-54.787768,-27.570169],[-54.790668,-27.557669],[-54.792768,-27.543569],[-54.794168,-27.538869],[-54.795068,-27.534869],[-54.802568,-27.530669],[-54.806868,-27.530169],[-54.810268,-27.530369],[-54.815968,-27.534769],[-54.821268,-27.543869],[-54.826468,-27.553969],[-54.830968,-27.567769],[-54.832568,-27.573169],[-54.833668,-27.577669],[-54.836868,-27.591169],[-54.838668,-27.596369],[-54.839068,-27.600269],[-54.839868,-27.605569],[-54.842668,-27.612469],[-54.845868,-27.617969],[-54.847868,-27.621569],[-54.850668,-27.623869],[-54.854568,-27.627369],[-54.861068,-27.629169],[-54.869168,-27.627069],[-54.878768,-27.625969],[-54.888468,-27.626569],[-54.895168,-27.629169],[-54.903068,-27.636369],[-54.906468,-27.641769],[-54.907068,-27.647869],[-54.904868,-27.656269],[-54.904768,-27.659869],[-54.904268,-27.671669],[-54.903668,-27.682169],[-54.904468,-27.690169],[-54.902568,-27.698569],[-54.902268,-27.702169],[-54.902368,-27.710969],[-54.902368,-27.715569],[-54.905168,-27.725269],[-54.906768,-27.729969],[-54.915268,-27.737969],[-54.920668,-27.744669],[-54.928868,-27.755769],[-54.930768,-27.758869],[-54.937968,-27.770769],[-54.940968,-27.772969],[-54.948468,-27.778469],[-54.954968,-27.778769],[-54.961168,-27.778369],[-54.970268,-27.774569],[-54.977568,-27.770769],[-54.983568,-27.770669],[-54.988668,-27.772169],[-54.992968,-27.775469],[-54.995468,-27.780169],[-54.997368,-27.786769],[-54.999368,-27.791669],[-55.005768,-27.796169],[-55.014268,-27.796969],[-55.022968,-27.794469],[-55.030468,-27.788669],[-55.038368,-27.779169],[-55.044168,-27.773469],[-55.050868,-27.768669],[-55.057968,-27.767969],[-55.065268,-27.770469],[-55.069868,-27.772369],[-55.072668,-27.773469],[-55.080368,-27.778469],[-55.081868,-27.780869],[-55.083768,-27.784869],[-55.084268,-27.791769],[-55.082568,-27.796069],[-55.077368,-27.799769],[-55.070168,-27.803569],[-55.062168,-27.810469],[-55.052768,-27.816069],[-55.042768,-27.820169],[-55.034868,-27.824269],[-55.028468,-27.829369],[-55.024768,-27.835469],[-55.024368,-27.842269],[-55.025468,-27.848169],[-55.030568,-27.854969],[-55.036368,-27.857769],[-55.044268,-27.855669],[-55.052168,-27.853569],[-55.056868,-27.849969],[-55.066868,-27.846969],[-55.078168,-27.844869],[-55.081168,-27.844169],[-55.085368,-27.843069],[-55.090968,-27.843069],[-55.100968,-27.845969],[-55.108968,-27.847869],[-55.113668,-27.848969],[-55.119668,-27.853169],[-55.125868,-27.859369],[-55.127168,-27.864469],[-55.126068,-27.869769],[-55.125268,-27.875169],[-55.124068,-27.881369],[-55.125268,-27.887869],[-55.128068,-27.893769],[-55.133168,-27.895969],[-55.138268,-27.895169],[-55.145368,-27.889369],[-55.152368,-27.883469],[-55.156268,-27.879669],[-55.161668,-27.874669],[-55.165668,-27.866969],[-55.171368,-27.861369],[-55.181368,-27.856969],[-55.187968,-27.855869],[-55.191368,-27.855369],[-55.202668,-27.857769],[-55.210068,-27.863569],[-55.212568,-27.866869],[-55.220368,-27.873569],[-55.224868,-27.877069],[-55.232768,-27.884969],[-55.236868,-27.890969],[-55.239068,-27.895769],[-55.240268,-27.898669],[-55.242168,-27.901169],[-55.245568,-27.905969],[-55.250168,-27.914169],[-55.257768,-27.922169],[-55.266468,-27.929769],[-55.275168,-27.933069],[-55.277968,-27.934069],[-55.285868,-27.932269],[-55.292768,-27.929669],[-55.300468,-27.925269],[-55.309368,-27.922169],[-55.319268,-27.921869],[-55.327168,-27.926669],[-55.330368,-27.931369],[-55.333268,-27.939169],[-55.335368,-27.950169],[-55.337368,-27.959869],[-55.338468,-27.966169],[-55.346968,-27.972269],[-55.357568,-27.973369],[-55.368868,-27.974869],[-55.376068,-27.976169],[-55.382168,-27.979169],[-55.386368,-27.985069],[-55.387168,-27.989969],[-55.385968,-27.993869],[-55.382368,-28.000469],[-55.371568,-28.013969],[-55.369668,-28.017869],[-55.369368,-28.027269],[-55.375568,-28.034169],[-55.386768,-28.042469],[-55.390468,-28.045269],[-55.402268,-28.050069],[-55.410368,-28.053269],[-55.413868,-28.054669],[-55.422568,-28.062969],[-55.425068,-28.067969],[-55.430468,-28.076069],[-55.434768,-28.081769],[-55.438768,-28.086969],[-55.442468,-28.094269],[-55.447868,-28.097369],[-55.452368,-28.097869],[-55.454568,-28.095569],[-55.458768,-28.093669],[-55.462968,-28.090869],[-55.468768,-28.087969],[-55.478868,-28.080969],[-55.487768,-28.076569],[-55.491368,-28.076569],[-55.495468,-28.076769],[-55.499368,-28.080969],[-55.500568,-28.085369],[-55.501968,-28.090069],[-55.504168,-28.094869],[-55.505468,-28.097769],[-55.506668,-28.102769],[-55.509668,-28.109369],[-55.513168,-28.114669],[-55.518968,-28.115569],[-55.524768,-28.114669],[-55.530568,-28.115469],[-55.536268,-28.118569],[-55.540068,-28.123269],[-55.543668,-28.129869],[-55.545768,-28.133469],[-55.547568,-28.136469],[-55.548068,-28.142669],[-55.548268,-28.147369],[-55.549268,-28.155869],[-55.552168,-28.160069],[-55.557468,-28.164469],[-55.564068,-28.163469],[-55.571268,-28.156969],[-55.577068,-28.153469],[-55.585368,-28.147869],[-55.588768,-28.142169],[-55.587868,-28.136769],[-55.585368,-28.131869],[-55.583268,-28.124969],[-55.587568,-28.119469],[-55.592568,-28.117169],[-55.596168,-28.115769],[-55.604768,-28.115569],[-55.609768,-28.117169],[-55.616068,-28.123769],[-55.620768,-28.130969],[-55.622368,-28.138469],[-55.621568,-28.145669],[-55.619768,-28.152369],[-55.622268,-28.160969],[-55.628468,-28.172569],[-55.634168,-28.177769],[-55.642068,-28.179769],[-55.652968,-28.182169],[-55.662068,-28.189169],[-55.670668,-28.198569],[-55.678268,-28.205069],[-55.685168,-28.211469],[-55.692468,-28.218769],[-55.695768,-28.220269],[-55.704668,-28.224269],[-55.718068,-28.226669],[-55.733868,-28.229269],[-55.749968,-28.233669],[-55.762968,-28.238669],[-55.771168,-28.241369],[-55.778668,-28.247969],[-55.782068,-28.255269],[-55.780068,-28.265069],[-55.772168,-28.274369],[-55.768768,-28.275469],[-55.755668,-28.279469],[-55.751268,-28.280169],[-55.742968,-28.281269],[-55.735668,-28.284569],[-55.732168,-28.286369],[-55.723368,-28.292769],[-55.716668,-28.298969],[-55.711868,-28.303869],[-55.701768,-28.311169],[-55.694268,-28.315169],[-55.686868,-28.318769],[-55.680168,-28.322169],[-55.674468,-28.327969],[-55.670368,-28.334369],[-55.669168,-28.340669],[-55.670768,-28.345669],[-55.674668,-28.356369],[-55.680168,-28.369769],[-55.685468,-28.381369],[-55.688768,-28.388169],[-55.690568,-28.395969],[-55.690568,-28.399769],[-55.690468,-28.404769],[-55.690568,-28.413169],[-55.691568,-28.415869],[-55.695168,-28.422869],[-55.704668,-28.427469],[-55.713168,-28.425569],[-55.716468,-28.422169],[-55.719768,-28.418669],[-55.723068,-28.407369],[-55.724968,-28.401969],[-55.728168,-28.392469],[-55.734368,-28.381269],[-55.739968,-28.376969],[-55.746368,-28.373269],[-55.756568,-28.369369],[-55.767068,-28.368069],[-55.776268,-28.367569],[-55.781268,-28.367269],[-55.785368,-28.367269],[-55.796368,-28.367269],[-55.805468,-28.366169],[-55.809468,-28.365769],[-55.821568,-28.363569],[-55.838468,-28.358369],[-55.847368,-28.356069],[-55.850568,-28.355369],[-55.859468,-28.354769],[-55.871068,-28.357169],[-55.878768,-28.361869],[-55.881568,-28.368369],[-55.882768,-28.371069],[-55.884568,-28.374769],[-55.886468,-28.377069],[-55.890068,-28.381069],[-55.895668,-28.389869],[-55.900368,-28.398369],[-55.903068,-28.407569],[-55.902268,-28.411469],[-55.901468,-28.415569],[-55.900868,-28.418669],[-55.895468,-28.429469],[-55.889068,-28.444669],[-55.884868,-28.456869],[-55.882468,-28.464469],[-55.881268,-28.473469],[-55.883868,-28.479169],[-55.896868,-28.480669],[-55.907268,-28.481469],[-55.911168,-28.482569],[-55.923868,-28.485269],[-55.928668,-28.486369],[-55.935468,-28.489669],[-55.939968,-28.491969],[-55.945168,-28.493369],[-55.949268,-28.494469],[-55.960368,-28.494769],[-55.970968,-28.496369],[-55.987168,-28.497969],[-56.002068,-28.501969],[-56.010268,-28.506369],[-56.017568,-28.513569],[-56.023168,-28.522669],[-56.024468,-28.528669],[-56.025668,-28.534769],[-56.024768,-28.541969],[-56.024068,-28.545669],[-56.020768,-28.553269],[-56.012968,-28.562969],[-56.010168,-28.565869],[-56.007368,-28.568769],[-56.005268,-28.572469],[-56.002368,-28.578269],[-56.001268,-28.587969],[-56.003868,-28.598369],[-56.009668,-28.605669],[-56.015768,-28.611169],[-56.018568,-28.613369],[-56.022168,-28.615069],[-56.026568,-28.617269],[-56.030668,-28.619069],[-56.036668,-28.621569],[-56.046068,-28.623669],[-56.056168,-28.629169],[-56.063868,-28.635469],[-56.071868,-28.643469],[-56.076568,-28.648669],[-56.081868,-28.654169],[-56.086168,-28.656969],[-56.094768,-28.664169],[-56.102068,-28.669669],[-56.108668,-28.674669],[-56.119068,-28.681169],[-56.125268,-28.687469],[-56.131368,-28.694669],[-56.133868,-28.698169],[-56.137768,-28.703569],[-56.140368,-28.706069],[-56.143268,-28.709069],[-56.149268,-28.717669],[-56.150968,-28.720869],[-56.155168,-28.730569],[-56.160668,-28.739669],[-56.162868,-28.742669],[-56.165568,-28.746569],[-56.172168,-28.753469],[-56.177168,-28.760669],[-56.183068,-28.767669],[-56.188068,-28.772269],[-56.194068,-28.775169],[-56.201068,-28.774269],[-56.210468,-28.774569],[-56.223168,-28.776769],[-56.236968,-28.777569],[-56.249668,-28.777869],[-56.260968,-28.778969],[-56.271168,-28.781969],[-56.276768,-28.785569],[-56.282368,-28.788769],[-56.289168,-28.793669],[-56.294468,-28.799969],[-56.299668,-28.808069],[-56.301168,-28.816969],[-56.298568,-28.830969],[-56.297268,-28.841269],[-56.297468,-28.857269],[-56.298568,-28.873269],[-56.298168,-28.885169],[-56.300368,-28.896269],[-56.303668,-28.902969],[-56.308868,-28.908669],[-56.315568,-28.916369],[-56.322368,-28.923969],[-56.327368,-28.928369],[-56.332868,-28.932169],[-56.344168,-28.939969],[-56.362468,-28.944169],[-56.378868,-28.947969],[-56.390068,-28.955669],[-56.397068,-28.962869],[-56.406268,-28.972569],[-56.412068,-28.982869],[-56.413968,-28.987569],[-56.415868,-28.992169],[-56.415668,-28.995869],[-56.416168,-29.000569],[-56.412768,-29.005269],[-56.406768,-29.008869],[-56.402268,-29.012069],[-56.399768,-29.015969],[-56.400768,-29.024569],[-56.404268,-29.032369],[-56.409868,-29.038469],[-56.412268,-29.047169],[-56.413068,-29.054369],[-56.413068,-29.061869],[-56.415968,-29.068869],[-56.420868,-29.074569],[-56.430468,-29.079569],[-56.438468,-29.080769],[-56.445968,-29.081869],[-56.459268,-29.083569],[-56.462968,-29.084069],[-56.476468,-29.086169],[-56.489168,-29.086869],[-56.502968,-29.088669],[-56.513968,-29.092269],[-56.523468,-29.097869],[-56.532768,-29.104669],[-56.537568,-29.111369],[-56.540268,-29.113069],[-56.544168,-29.115569],[-56.550468,-29.116469],[-56.554368,-29.115769],[-56.557168,-29.114969],[-56.560468,-29.114769],[-56.567968,-29.114069],[-56.577168,-29.115069],[-56.588668,-29.119769],[-56.593768,-29.126269],[-56.594768,-29.136269],[-56.600668,-29.145669],[-56.610768,-29.160269],[-56.613568,-29.165069],[-56.616868,-29.171069],[-56.623068,-29.177569],[-56.634168,-29.189069],[-56.640768,-29.194569],[-56.645768,-29.200269],[-56.648368,-29.206869],[-56.651168,-29.213969],[-56.654768,-29.223769],[-56.654768,-29.231069],[-56.652268,-29.239769],[-56.649068,-29.254869],[-56.650668,-29.264269],[-56.657568,-29.280869],[-56.660168,-29.285969],[-56.664468,-29.294969],[-56.684168,-29.326069],[-56.689068,-29.333969],[-56.691668,-29.339469],[-56.699868,-29.356369],[-56.705368,-29.360869],[-56.713168,-29.367169],[-56.730068,-29.368669],[-56.746168,-29.368269],[-56.758768,-29.370869],[-56.767668,-29.377669],[-56.770668,-29.382369],[-56.773168,-29.387369],[-56.775168,-29.394769],[-56.777568,-29.404069],[-56.779868,-29.414869],[-56.779268,-29.419769],[-56.779468,-29.423969],[-56.777668,-29.428969],[-56.777868,-29.432169],[-56.779468,-29.437369],[-56.785568,-29.441669],[-56.796868,-29.449069],[-56.801368,-29.454869],[-56.803968,-29.459569],[-56.805468,-29.466269],[-56.808268,-29.473069],[-56.811568,-29.477769],[-56.813868,-29.481069],[-56.822068,-29.489969],[-56.831268,-29.494669],[-56.843968,-29.499069],[-56.846768,-29.500469],[-56.856468,-29.505169],[-56.861768,-29.507769],[-56.872768,-29.514669],[-56.887968,-29.526469],[-56.901868,-29.533769],[-56.911368,-29.543869],[-56.915568,-29.548569],[-56.920668,-29.554469],[-56.929468,-29.566269],[-56.933368,-29.568769],[-56.939968,-29.572869],[-56.950968,-29.580669],[-56.958668,-29.589569],[-56.963668,-29.596169],[-56.967668,-29.601769],[-56.971368,-29.610269],[-56.972068,-29.617269],[-56.969468,-29.622369],[-56.967268,-29.629969],[-56.967868,-29.638169],[-56.970968,-29.643269],[-56.980268,-29.644369],[-56.990568,-29.646569],[-57.000868,-29.651869],[-57.006568,-29.658169],[-57.011468,-29.664469],[-57.016068,-29.674769],[-57.021168,-29.683269],[-57.026968,-29.689369],[-57.033368,-29.695669],[-57.045368,-29.701569],[-57.052168,-29.707569],[-57.057268,-29.713669],[-57.069268,-29.722069],[-57.082868,-29.734669],[-57.094468,-29.743869],[-57.099568,-29.748269],[-57.102768,-29.750269],[-57.106368,-29.752669],[-57.111768,-29.756269],[-57.120568,-29.762069],[-57.123868,-29.764569],[-57.132768,-29.770369],[-57.151968,-29.774769],[-57.171968,-29.780669],[-57.180568,-29.781169],[-57.195268,-29.779769],[-57.207868,-29.777669],[-57.220968,-29.776269],[-57.235368,-29.780669],[-57.248368,-29.792769],[-57.257368,-29.800469],[-57.267668,-29.809369],[-57.270368,-29.810769],[-57.282068,-29.817169],[-57.287068,-29.823169],[-57.297768,-29.834669],[-57.304668,-29.844769],[-57.314468,-29.859969],[-57.324568,-29.872769],[-57.326268,-29.877969],[-57.328268,-29.883869],[-57.329668,-29.887469],[-57.329068,-29.895369],[-57.328568,-29.902569],[-57.326268,-29.911969],[-57.324068,-29.921669],[-57.324068,-29.925269],[-57.323968,-29.939169],[-57.325468,-29.954569],[-57.326868,-29.971469],[-57.337568,-29.989969],[-57.339768,-29.992469],[-57.344868,-29.998269],[-57.352768,-30.008069],[-57.357468,-30.009969],[-57.362168,-30.011869],[-57.370468,-30.014069],[-57.383068,-30.017569],[-57.396268,-30.022669],[-57.407668,-30.030169],[-57.418068,-30.038969],[-57.429168,-30.050569],[-57.436668,-30.059869],[-57.447468,-30.072169],[-57.453568,-30.081469],[-57.455668,-30.090169],[-57.458168,-30.100869],[-57.459768,-30.103369],[-57.462268,-30.107069],[-57.464568,-30.110269],[-57.475268,-30.117969],[-57.485568,-30.124369],[-57.503468,-30.135769],[-57.522568,-30.149269],[-57.525468,-30.151269],[-57.528668,-30.152669],[-57.546668,-30.161169],[-57.569168,-30.171469],[-57.587968,-30.178269],[-57.594068,-30.178969],[-57.600268,-30.178569],[-57.603668,-30.178269],[-57.609268,-30.177569],[-57.617268,-30.176169],[-57.624968,-30.174969],[-57.632668,-30.174769],[-57.639568,-30.176669],[-57.644568,-30.179669],[-57.646768,-30.181669],[-57.648668,-30.185769],[-57.649568,-30.188769],[-57.644368,-30.193169],[-57.639668,-30.190169],[-57.636468,-30.188469],[-57.632068,-30.186969],[-57.626368,-30.186669],[-57.620468,-30.187469],[-57.614668,-30.189169],[-57.611168,-30.189069],[-57.603368,-30.189669],[-57.593768,-30.194369],[-57.584368,-30.199069],[-57.573268,-30.204669],[-57.562968,-30.209269],[-57.559868,-30.211569],[-57.557668,-30.213669],[-57.556368,-30.219469],[-57.556168,-30.224969],[-57.558068,-30.234269],[-57.561368,-30.240469],[-57.564168,-30.245869],[-57.565768,-30.249469],[-57.567968,-30.252169],[-57.567468,-30.255969],[-57.566368,-30.258769],[-57.562368,-30.261769],[-57.558068,-30.263169],[-57.555568,-30.264669],[-57.553368,-30.267869],[-57.550768,-30.272569],[-57.547168,-30.274869],[-57.542068,-30.276969],[-57.536768,-30.279469],[-57.531568,-30.281269],[-57.528168,-30.283369],[-57.525068,-30.285369],[-57.521268,-30.285869],[-57.517068,-30.285569],[-57.512768,-30.285169],[-57.509068,-30.285869],[-57.505968,-30.286969],[-57.503468,-30.288369],[-57.499068,-30.288069],[-57.496668,-30.284469],[-57.495568,-30.279769],[-57.493268,-30.275869],[-57.491468,-30.272069],[-57.489968,-30.268969],[-57.486668,-30.266769],[-57.481668,-30.266569],[-57.476468,-30.266769],[-57.471768,-30.266069],[-57.464768,-30.265169],[-57.460468,-30.267369],[-57.457668,-30.271169],[-57.455468,-30.274469],[-57.452168,-30.275969],[-57.448168,-30.275969],[-57.444868,-30.275369],[-57.439868,-30.275469],[-57.435768,-30.275669],[-57.428268,-30.274869],[-57.423968,-30.276169],[-57.419668,-30.277269],[-57.416368,-30.277869],[-57.414968,-30.280669],[-57.418868,-30.284569],[-57.421468,-30.289169],[-57.421468,-30.293169],[-57.421468,-30.299969],[-57.419268,-30.302469],[-57.415668,-30.301869],[-57.412368,-30.300269],[-57.407568,-30.300469],[-57.402868,-30.301069],[-57.399068,-30.303569],[-57.391468,-30.304369],[-57.389568,-30.301169],[-57.389568,-30.296469],[-57.387468,-30.293069],[-57.384568,-30.288469],[-57.382668,-30.285369],[-57.380768,-30.282369],[-57.378768,-30.279469],[-57.374768,-30.276269],[-57.369768,-30.272969],[-57.364968,-30.270969],[-57.361868,-30.270769],[-57.358868,-30.272369],[-57.357568,-30.276769],[-57.357768,-30.281669],[-57.356068,-30.284169],[-57.352768,-30.284769],[-57.347568,-30.280369],[-57.342868,-30.277669],[-57.339068,-30.276169],[-57.333168,-30.273969],[-57.329268,-30.272569],[-57.325668,-30.272069],[-57.321768,-30.271269],[-57.319568,-30.269369],[-57.317968,-30.263569],[-57.316968,-30.260269],[-57.314368,-30.257669],[-57.311268,-30.258069],[-57.306968,-30.262369],[-57.302568,-30.268669],[-57.301068,-30.273969],[-57.297468,-30.279869],[-57.293068,-30.286369],[-57.288968,-30.290569],[-57.284468,-30.293669],[-57.280868,-30.294169],[-57.277668,-30.292469],[-57.275368,-30.288169],[-57.271168,-30.285369],[-57.269068,-30.281769],[-57.270068,-30.277569],[-57.269268,-30.273669],[-57.267668,-30.270969],[-57.262668,-30.267869],[-57.258468,-30.267069],[-57.256268,-30.269669],[-57.252968,-30.274469],[-57.254368,-30.277869],[-57.255268,-30.282569],[-57.253568,-30.286269],[-57.249968,-30.289169],[-57.245868,-30.289469],[-57.238268,-30.289169],[-57.229268,-30.288969],[-57.220268,-30.289269],[-57.215868,-30.288169],[-57.212868,-30.286669],[-57.210068,-30.284869],[-57.205368,-30.284869],[-57.202568,-30.283169],[-57.202068,-30.279569],[-57.199668,-30.276169],[-57.197468,-30.268969],[-57.196568,-30.265369],[-57.193868,-30.262969],[-57.189868,-30.260369],[-57.186068,-30.258269],[-57.184368,-30.255969],[-57.180168,-30.253569],[-57.175868,-30.250869],[-57.170668,-30.250269],[-57.167568,-30.248269],[-57.168368,-30.245269],[-57.166768,-30.241369],[-57.162768,-30.242269],[-57.158768,-30.238869],[-57.155868,-30.234769],[-57.157668,-30.230569],[-57.160968,-30.228569],[-57.163868,-30.226969],[-57.165268,-30.222769],[-57.163168,-30.218169],[-57.167268,-30.217369],[-57.165268,-30.213969],[-57.166768,-30.210169],[-57.168168,-30.207269],[-57.167568,-30.202869],[-57.168168,-30.198469],[-57.166368,-30.196069],[-57.162868,-30.195269],[-57.160068,-30.193469],[-57.158368,-30.190169],[-57.158468,-30.185269],[-57.155068,-30.182469],[-57.149268,-30.176869],[-57.145968,-30.173069],[-57.144868,-30.168969],[-57.142968,-30.164869],[-57.139668,-30.162069],[-57.137668,-30.159569],[-57.135168,-30.156669],[-57.133468,-30.152269],[-57.132068,-30.148269],[-57.130268,-30.144569],[-57.129568,-30.141369],[-57.125968,-30.140469],[-57.121968,-30.141769],[-57.118568,-30.145069],[-57.114468,-30.145369],[-57.111768,-30.143469],[-57.110068,-30.140669],[-57.108668,-30.138169],[-57.106668,-30.133769],[-57.105668,-30.130169],[-57.106368,-30.125869],[-57.109668,-30.127969],[-57.113968,-30.127169],[-57.114768,-30.123869],[-57.116368,-30.120769],[-57.116468,-30.117669],[-57.114668,-30.113869],[-57.110568,-30.115069],[-57.107868,-30.116369],[-57.105268,-30.115069],[-57.099568,-30.114669],[-57.095568,-30.115069],[-57.094968,-30.119669],[-57.092368,-30.121669],[-57.089268,-30.120469],[-57.087268,-30.118269],[-57.085068,-30.114969],[-57.085468,-30.111469],[-57.091168,-30.112869],[-57.091668,-30.109669],[-57.087968,-30.106769],[-57.087268,-30.101969],[-57.084868,-30.098869],[-57.082968,-30.095969],[-57.080668,-30.093369],[-57.078268,-30.091469],[-57.075368,-30.090669],[-57.072068,-30.087969],[-57.067668,-30.085369],[-57.063768,-30.086169],[-57.061968,-30.089069],[-57.066268,-30.090469],[-57.067668,-30.094169],[-57.068868,-30.098369],[-57.067068,-30.101269],[-57.064068,-30.100869],[-57.060868,-30.099269],[-57.057768,-30.098469],[-57.054368,-30.100269],[-57.049168,-30.102869],[-57.045268,-30.105569],[-57.041068,-30.105069],[-57.035868,-30.103569],[-57.032068,-30.102369],[-57.030068,-30.099769],[-57.030068,-30.096269],[-57.028768,-30.092669],[-57.024768,-30.088469],[-57.019368,-30.087569],[-57.012668,-30.087569],[-57.008868,-30.087669],[-57.005768,-30.087669],[-57.001668,-30.087269],[-56.997768,-30.086269],[-56.992168,-30.085969],[-56.986168,-30.087269],[-56.982068,-30.089269],[-56.979968,-30.092669],[-56.978068,-30.095369],[-56.975968,-30.097569],[-56.971468,-30.097069],[-56.967668,-30.097569],[-56.963368,-30.098969],[-56.959668,-30.099969],[-56.954568,-30.100669],[-56.951368,-30.099769],[-56.948468,-30.099169],[-56.944268,-30.098469],[-56.940468,-30.096969],[-56.936868,-30.094869],[-56.931368,-30.093769],[-56.926068,-30.095269],[-56.921068,-30.095869],[-56.916768,-30.096669],[-56.914168,-30.099469],[-56.911668,-30.102269],[-56.913168,-30.105669],[-56.914868,-30.109269],[-56.911668,-30.109969],[-56.908168,-30.107469],[-56.905068,-30.108569],[-56.904768,-30.112569],[-56.900868,-30.110069],[-56.898468,-30.107869],[-56.895168,-30.104469],[-56.891868,-30.100269],[-56.890368,-30.097269],[-56.889368,-30.093669],[-56.889068,-30.090069],[-56.886768,-30.087869],[-56.883568,-30.087569],[-56.879868,-30.088269],[-56.874768,-30.086569],[-56.873768,-30.089869],[-56.873068,-30.092869],[-56.869768,-30.093669],[-56.866868,-30.091669],[-56.864468,-30.090069],[-56.857268,-30.088969],[-56.854168,-30.088769],[-56.850368,-30.088769],[-56.842568,-30.090169],[-56.833468,-30.092269],[-56.827468,-30.094269],[-56.824068,-30.095569],[-56.822068,-30.097869],[-56.820968,-30.100669],[-56.818868,-30.104969],[-56.815568,-30.107469],[-56.812468,-30.106469],[-56.810468,-30.103569],[-56.807168,-30.103669],[-56.804668,-30.105869],[-56.802968,-30.110069],[-56.801868,-30.116069],[-56.801568,-30.120069],[-56.799368,-30.122269],[-56.795868,-30.123069],[-56.792468,-30.123369],[-56.789468,-30.124369],[-56.784568,-30.125469],[-56.780168,-30.126569],[-56.778168,-30.130669],[-56.777868,-30.134069],[-56.778768,-30.137069],[-56.780068,-30.140769],[-56.781468,-30.145169],[-56.783468,-30.147969],[-56.783868,-30.151169],[-56.782268,-30.157569],[-56.777268,-30.162869],[-56.773968,-30.164169],[-56.769068,-30.163069],[-56.764368,-30.161369],[-56.759568,-30.160569],[-56.755268,-30.162269],[-56.751568,-30.164569],[-56.746568,-30.166669],[-56.741368,-30.168069],[-56.736368,-30.170369],[-56.732768,-30.170869],[-56.729768,-30.171669],[-56.725568,-30.174469],[-56.720568,-30.178869],[-56.716268,-30.179169],[-56.712868,-30.176669],[-56.709868,-30.175769],[-56.705768,-30.176169],[-56.704868,-30.179669],[-56.706168,-30.183269],[-56.707868,-30.187769],[-56.704268,-30.193469],[-56.702068,-30.195569],[-56.699968,-30.198569],[-56.697868,-30.203569],[-56.692068,-30.202569],[-56.689068,-30.199669],[-56.686068,-30.196669],[-56.682768,-30.194869],[-56.680068,-30.195769],[-56.679468,-30.199569],[-56.675268,-30.199969],[-56.669968,-30.199269],[-56.666068,-30.198169],[-56.662868,-30.197369],[-56.660268,-30.198869],[-56.657068,-30.202069],[-56.653368,-30.206069],[-56.649468,-30.206169],[-56.646468,-30.204569],[-56.645668,-30.207869],[-56.648968,-30.211269],[-56.654268,-30.212669],[-56.658468,-30.213469],[-56.662468,-30.215669],[-56.665568,-30.216269],[-56.668168,-30.217569],[-56.667268,-30.220569],[-56.663368,-30.221669],[-56.660168,-30.221169],[-56.656268,-30.220569],[-56.651568,-30.219869],[-56.647668,-30.222269],[-56.645068,-30.225969],[-56.644268,-30.228869],[-56.642068,-30.233869],[-56.637668,-30.237169],[-56.633768,-30.239369],[-56.629668,-30.241969],[-56.626568,-30.244669],[-56.624468,-30.247169],[-56.627668,-30.251569],[-56.630468,-30.254569],[-56.633868,-30.255269],[-56.636768,-30.254369],[-56.639868,-30.254669],[-56.639568,-30.258169],[-56.637368,-30.260369],[-56.633468,-30.263569],[-56.629868,-30.265969],[-56.625468,-30.266569],[-56.621268,-30.265069],[-56.617768,-30.262669],[-56.614668,-30.262069],[-56.612768,-30.265469],[-56.609968,-30.269269],[-56.609168,-30.273369],[-56.608068,-30.277969],[-56.607468,-30.282069],[-56.609168,-30.285669],[-56.611968,-30.288169],[-56.614368,-30.290069],[-56.617968,-30.291769],[-56.620868,-30.294769],[-56.619668,-30.298869],[-56.617268,-30.301169],[-56.613368,-30.300469],[-56.609968,-30.297869],[-56.605568,-30.293569],[-56.600868,-30.294669],[-56.596768,-30.295669],[-56.591668,-30.293669],[-56.586268,-30.290969],[-56.581768,-30.289569],[-56.575368,-30.289969],[-56.574568,-30.295669],[-56.576068,-30.301569],[-56.574268,-30.305269],[-56.568868,-30.308369],[-56.563068,-30.311569],[-56.559368,-30.315469],[-56.557768,-30.319069],[-56.554668,-30.319669],[-56.550868,-30.316569],[-56.548868,-30.313869],[-56.545568,-30.311269],[-56.541768,-30.313069],[-56.540868,-30.316369],[-56.541068,-30.320269],[-56.540668,-30.326269],[-56.538168,-30.329669],[-56.538068,-30.334269],[-56.541768,-30.337569],[-56.546468,-30.338469],[-56.549668,-30.339069],[-56.551568,-30.341269],[-56.551568,-30.344869],[-56.549768,-30.347569],[-56.546868,-30.349569],[-56.544268,-30.352369],[-56.545568,-30.357469],[-56.545068,-30.360869],[-56.540668,-30.360769],[-56.537768,-30.359269],[-56.532368,-30.359769],[-56.527568,-30.360269],[-56.524468,-30.359669],[-56.521568,-30.358869],[-56.518668,-30.360569],[-56.517068,-30.363269],[-56.513568,-30.365469],[-56.510168,-30.367169],[-56.507168,-30.368869],[-56.504868,-30.371669],[-56.505268,-30.374969],[-56.506568,-30.378769],[-56.506368,-30.382069],[-56.502168,-30.384269],[-56.498868,-30.385669],[-56.496368,-30.387069],[-56.493668,-30.391469],[-56.492268,-30.394069],[-56.491868,-30.397169],[-56.488368,-30.398469],[-56.483968,-30.398669],[-56.481768,-30.396069],[-56.480368,-30.392569],[-56.478068,-30.390469],[-56.475268,-30.388769],[-56.470868,-30.387169],[-56.467268,-30.385769],[-56.462568,-30.384969],[-56.458268,-30.388869],[-56.455768,-30.393169],[-56.455368,-30.396869],[-56.454268,-30.400969],[-56.451568,-30.404469],[-56.449368,-30.406469],[-56.445268,-30.410369],[-56.445468,-30.415569],[-56.450468,-30.418369],[-56.452468,-30.422569],[-56.447368,-30.424669],[-56.445168,-30.427169],[-56.440968,-30.431469],[-56.436368,-30.432969],[-56.432168,-30.433769],[-56.426468,-30.434969],[-56.422768,-30.432569],[-56.417168,-30.431869],[-56.414868,-30.436669],[-56.413368,-30.440569],[-56.410368,-30.444069],[-56.408068,-30.446869],[-56.403668,-30.447469],[-56.398668,-30.449269],[-56.398968,-30.454269],[-56.400468,-30.458969],[-56.405868,-30.459869],[-56.406468,-30.465069],[-56.405568,-30.469469],[-56.403968,-30.471969],[-56.401468,-30.474469],[-56.397868,-30.472569],[-56.397068,-30.477069],[-56.395968,-30.481669],[-56.394868,-30.484969],[-56.390368,-30.485669],[-56.386768,-30.488869],[-56.384168,-30.492769],[-56.387668,-30.493369],[-56.385268,-30.496269],[-56.383568,-30.498569],[-56.380468,-30.500269],[-56.377368,-30.501269],[-56.374068,-30.501069],[-56.371268,-30.501869],[-56.367468,-30.502669],[-56.362168,-30.500469],[-56.360568,-30.496169],[-56.363568,-30.496969],[-56.364368,-30.492669],[-56.358868,-30.492169],[-56.354668,-30.493069],[-56.350968,-30.496569],[-56.350968,-30.500169],[-56.348768,-30.504069],[-56.345868,-30.506369],[-56.342968,-30.507069],[-56.340668,-30.509069],[-56.336968,-30.510969],[-56.334068,-30.514269],[-56.334568,-30.517069],[-56.336968,-30.519869],[-56.336468,-30.523169],[-56.332968,-30.525369],[-56.328968,-30.528969],[-56.324268,-30.530169],[-56.320168,-30.531569],[-56.316568,-30.530169],[-56.312168,-30.530969],[-56.308568,-30.530669],[-56.304468,-30.528969],[-56.302168,-30.526769],[-56.298368,-30.525169],[-56.293168,-30.521569],[-56.290268,-30.522669],[-56.288668,-30.526869],[-56.288468,-30.532269],[-56.289468,-30.536169],[-56.288168,-30.540869],[-56.285668,-30.544669],[-56.283168,-30.548069],[-56.280368,-30.550769],[-56.279168,-30.554369],[-56.280968,-30.558569],[-56.276168,-30.560169],[-56.270768,-30.557569],[-56.266768,-30.555169],[-56.263268,-30.556869],[-56.259268,-30.560869],[-56.256868,-30.566269],[-56.258768,-30.568469],[-56.261768,-30.571269],[-56.260968,-30.577069],[-56.260668,-30.580669],[-56.261768,-30.583969],[-56.256768,-30.587369],[-56.253468,-30.585869],[-56.251968,-30.582069],[-56.249468,-30.577469],[-56.246368,-30.574669],[-56.242468,-30.573469],[-56.238568,-30.573469],[-56.234968,-30.574269],[-56.232268,-30.575369],[-56.228068,-30.577969],[-56.224568,-30.581269],[-56.224768,-30.585469],[-56.227868,-30.586569],[-56.232068,-30.586969],[-56.234668,-30.588969],[-56.232868,-30.594169],[-56.228568,-30.595669],[-56.225368,-30.596669],[-56.222368,-30.601169],[-56.220568,-30.605969],[-56.216568,-30.607869],[-56.212868,-30.607869],[-56.208268,-30.606769],[-56.202968,-30.605269],[-56.198568,-30.604469],[-56.194268,-30.603869],[-56.189168,-30.604269],[-56.185468,-30.606469],[-56.182568,-30.608569],[-56.179768,-30.610269],[-56.177468,-30.612169],[-56.173968,-30.614069],[-56.170668,-30.615269],[-56.171668,-30.618269],[-56.174368,-30.620169],[-56.177468,-30.620769],[-56.181068,-30.622969],[-56.182968,-30.625469],[-56.180868,-30.629869],[-56.176468,-30.633469],[-56.173368,-30.634669],[-56.168968,-30.637769],[-56.166468,-30.639669],[-56.165568,-30.644869],[-56.168368,-30.650069],[-56.169968,-30.652969],[-56.169168,-30.656969],[-56.166968,-30.662269],[-56.164568,-30.666369],[-56.162768,-30.668569],[-56.160668,-30.671169],[-56.157868,-30.673869],[-56.155368,-30.676069],[-56.152868,-30.678569],[-56.149068,-30.680469],[-56.144668,-30.680269],[-56.140768,-30.681169],[-56.137668,-30.684369],[-56.138568,-30.687669],[-56.142068,-30.688769],[-56.147268,-30.691569],[-56.150168,-30.694669],[-56.149768,-30.698969],[-56.150068,-30.703569],[-56.148168,-30.705769],[-56.144368,-30.707169],[-56.140768,-30.709069],[-56.136368,-30.710669],[-56.132768,-30.714269],[-56.130168,-30.717369],[-56.128868,-30.721169],[-56.131268,-30.723869],[-56.132068,-30.727269],[-56.131868,-30.731669],[-56.129968,-30.734269],[-56.128268,-30.738869],[-56.123368,-30.739469],[-56.119768,-30.737769],[-56.118268,-30.735069],[-56.116368,-30.732869],[-56.113068,-30.732569],[-56.109968,-30.732169],[-56.106668,-30.732769],[-56.104268,-30.736369],[-56.102768,-30.740069],[-56.101768,-30.743669],[-56.097568,-30.747269],[-56.095968,-30.752769],[-56.092968,-30.755469],[-56.090168,-30.756869],[-56.086468,-30.756669],[-56.082968,-30.753369],[-56.079868,-30.749969],[-56.077168,-30.747969],[-56.072468,-30.745769],[-56.068768,-30.747169],[-56.065968,-30.748769],[-56.063768,-30.752369],[-56.063568,-30.756769],[-56.064168,-30.759969],[-56.065968,-30.762669],[-56.065768,-30.767969],[-56.064068,-30.772069],[-56.062268,-30.774469],[-56.058068,-30.773969],[-56.053568,-30.775069],[-56.048968,-30.775869],[-56.046368,-30.773769],[-56.042468,-30.774469],[-56.039168,-30.775169],[-56.038168,-30.778169],[-56.035668,-30.783369],[-56.030968,-30.784169],[-56.027268,-30.784869],[-56.023968,-30.785869],[-56.021768,-30.789569],[-56.024368,-30.794669],[-56.025068,-30.798569],[-56.021468,-30.800469],[-56.016268,-30.802269],[-56.012968,-30.806369],[-56.015768,-30.810769],[-56.016768,-30.815169],[-56.015468,-30.818269],[-56.011068,-30.818869],[-56.008568,-30.820269],[-56.007668,-30.823169],[-56.005668,-30.826869],[-56.004468,-30.831469],[-56.004568,-30.836469],[-56.003468,-30.839769],[-56.000968,-30.841669],[-55.998368,-30.843369],[-55.994468,-30.845269],[-55.991868,-30.849469],[-55.992268,-30.853169],[-55.990768,-30.855869],[-55.989668,-30.858869],[-55.990468,-30.862269],[-55.990268,-30.865769],[-55.992568,-30.869069],[-55.995068,-30.871869],[-55.997768,-30.873369],[-55.999468,-30.878269],[-56.001368,-30.883469],[-56.003468,-30.886769],[-56.005568,-30.890369],[-56.007768,-30.894569],[-56.007068,-30.899269],[-56.007968,-30.904269],[-56.009668,-30.908869],[-56.010168,-30.912569],[-56.007368,-30.916369],[-56.005968,-30.919269],[-56.005668,-30.922469],[-56.008468,-30.925069],[-56.010168,-30.927569],[-56.010668,-30.932669],[-56.010668,-30.937769],[-56.014268,-30.941269],[-56.013968,-30.944869],[-56.009868,-30.947069],[-56.010668,-30.950169],[-56.012368,-30.953869],[-56.010468,-30.957069],[-56.011268,-30.962569],[-56.010668,-30.967569],[-56.008268,-30.970969],[-56.006368,-30.974569],[-56.009968,-30.979269],[-56.007368,-30.983869],[-56.010668,-30.987469],[-56.012768,-30.991669],[-56.013568,-30.995469],[-56.014868,-30.998569],[-56.016768,-31.001869],[-56.016768,-31.005969],[-56.017668,-31.009169],[-56.016868,-31.014369],[-56.014868,-31.019269],[-56.015168,-31.022969],[-56.016268,-31.027869],[-56.017468,-31.032869],[-56.017968,-31.038469],[-56.017968,-31.043469],[-56.017868,-31.047869],[-56.015668,-31.051069],[-56.014668,-31.054769],[-56.012468,-31.059469],[-56.011068,-31.064669],[-56.009968,-31.067669],[-56.008268,-31.070569],[-56.007668,-31.073869],[-56.008068,-31.077469],[-56.009968,-31.080669],[-56.006268,-31.081869],[-56.002668,-31.082569],[-55.998568,-31.083569],[-55.995768,-31.084269],[-55.992568,-31.084869],[-55.989668,-31.082569],[-55.986668,-31.077169],[-55.982568,-31.074369],[-55.978568,-31.073469],[-55.974868,-31.074669],[-55.968668,-31.074869],[-55.965168,-31.077469],[-55.958968,-31.077369],[-55.955168,-31.080069],[-55.949868,-31.081169],[-55.944368,-31.081869],[-55.941368,-31.083169],[-55.938468,-31.085769],[-55.934368,-31.086969],[-55.930268,-31.086169],[-55.929768,-31.083169],[-55.926968,-31.081269],[-55.924968,-31.076069],[-55.918568,-31.073569],[-55.913068,-31.075669],[-55.909568,-31.074069],[-55.902668,-31.068569],[-55.898668,-31.066669],[-55.895368,-31.068469],[-55.895068,-31.071569],[-55.892168,-31.073869],[-55.890668,-31.077069],[-55.886768,-31.076769],[-55.881368,-31.076069],[-55.876668,-31.072669],[-55.871968,-31.071269],[-55.868268,-31.064869],[-55.866368,-31.061569],[-55.864168,-31.059169],[-55.860268,-31.053569],[-55.858868,-31.051069],[-55.855668,-31.045669],[-55.852768,-31.044569],[-55.848068,-31.043169],[-55.842968,-31.043169],[-55.838668,-31.042569],[-55.832668,-31.043869],[-55.829668,-31.043669],[-55.830168,-31.040569],[-55.826268,-31.039169],[-55.822468,-31.033969],[-55.820468,-31.030969],[-55.816668,-31.027369],[-55.814468,-31.024269],[-55.811868,-31.021569],[-55.813068,-31.016369],[-55.809168,-31.014969],[-55.805768,-31.016369],[-55.801368,-31.015769],[-55.795768,-31.015969],[-55.785368,-31.016569],[-55.780668,-31.015969],[-55.776568,-31.015669],[-55.772068,-31.013469],[-55.766468,-31.009969],[-55.767868,-31.006369],[-55.767868,-31.003469],[-55.771468,-31.001669],[-55.774368,-31.000169],[-55.773268,-30.997369],[-55.768168,-30.996869],[-55.763568,-30.999169],[-55.758568,-30.999369],[-55.756068,-30.997669],[-55.752468,-30.997769],[-55.749968,-30.994469],[-55.750468,-30.991669],[-55.748368,-30.989469],[-55.746168,-30.983569],[-55.745468,-30.979269],[-55.741068,-30.978869],[-55.737868,-30.979769],[-55.733868,-30.981369],[-55.728568,-30.978469],[-55.731168,-30.975269],[-55.729768,-30.970969],[-55.726968,-30.968169],[-55.724768,-30.965669],[-55.725268,-30.962569],[-55.722268,-30.957269],[-55.724268,-30.952169],[-55.722068,-30.948969],[-55.720968,-30.945669],[-55.723168,-30.943069],[-55.719468,-30.941569],[-55.716668,-30.942769],[-55.715868,-30.946569],[-55.713268,-30.948469],[-55.710868,-30.950169],[-55.710068,-30.953769],[-55.707168,-30.954269],[-55.703268,-30.954069],[-55.700668,-30.950469],[-55.697468,-30.947469],[-55.694068,-30.943569],[-55.688768,-30.944969],[-55.689168,-30.948469],[-55.687368,-30.952169],[-55.681568,-30.954069],[-55.674968,-30.955969],[-55.670268,-30.953769],[-55.666168,-30.953969],[-55.664468,-30.947969],[-55.661168,-30.947469],[-55.659468,-30.943469],[-55.660668,-30.939469],[-55.663068,-30.934369],[-55.660268,-30.930569],[-55.656768,-30.926469],[-55.653668,-30.925069],[-55.651168,-30.922869],[-55.647868,-30.921769],[-55.646168,-30.917769],[-55.643268,-30.914769],[-55.642568,-30.911169],[-55.645168,-30.909569],[-55.647868,-30.906669],[-55.648968,-30.903169],[-55.650668,-30.900769],[-55.653168,-30.896569],[-55.653768,-30.890969],[-55.655668,-30.884869],[-55.652868,-30.883269],[-55.657368,-30.878769],[-55.659568,-30.875569],[-55.663068,-30.872669],[-55.660668,-30.869069],[-55.659268,-30.866069],[-55.656668,-30.863569],[-55.650468,-30.865369],[-55.647068,-30.861369],[-55.645168,-30.857469],[-55.646568,-30.854769],[-55.642168,-30.849569],[-55.639268,-30.848469],[-55.637168,-30.845969],[-55.631568,-30.845869],[-55.627668,-30.847369],[-55.623568,-30.844869],[-55.621868,-30.841969],[-55.618668,-30.842269],[-55.615268,-30.842569],[-55.612568,-30.844769],[-55.610568,-30.848169],[-55.605668,-30.849169],[-55.599868,-30.846769],[-55.597568,-30.845069],[-55.595068,-30.843369],[-55.590668,-30.840869],[-55.586968,-30.839569],[-55.585368,-30.836569],[-55.581468,-30.834269],[-55.577868,-30.833969],[-55.577868,-30.837269],[-55.578968,-30.840169],[-55.577068,-30.842569],[-55.574068,-30.842969],[-55.571768,-30.845869],[-55.566668,-30.846669],[-55.564868,-30.851969],[-55.562768,-30.854769],[-55.564168,-30.857769],[-55.564068,-30.861669],[-55.563768,-30.864969],[-55.563468,-30.867969],[-55.559968,-30.870069],[-55.557568,-30.871569],[-55.553968,-30.873369],[-55.552268,-30.877769],[-55.551668,-30.881669],[-55.549168,-30.886269],[-55.546468,-30.889569],[-55.542868,-30.892369],[-55.540368,-30.893969],[-55.537768,-30.895369],[-55.533668,-30.898669],[-55.532368,-30.902069],[-55.528368,-30.899769],[-55.525368,-30.898169],[-55.520068,-30.898669],[-55.516068,-30.898969],[-55.512768,-30.900469],[-55.510168,-30.901769],[-55.508068,-30.904569],[-55.510268,-30.906969],[-55.509568,-30.912569],[-55.506868,-30.918869],[-55.505668,-30.922769],[-55.502968,-30.924969],[-55.498568,-30.926669],[-55.495768,-30.925369],[-55.492668,-30.924669],[-55.488668,-30.925369],[-55.486368,-30.928269],[-55.488568,-30.932269],[-55.489168,-30.937669],[-55.488068,-30.941269],[-55.486368,-30.946669],[-55.483868,-30.949869],[-55.480668,-30.952069],[-55.476468,-30.952869],[-55.472368,-30.952669],[-55.469868,-30.954269],[-55.466268,-30.953169],[-55.463368,-30.950369],[-55.457568,-30.951569],[-55.452068,-30.959369],[-55.448168,-30.958969],[-55.444968,-30.958569],[-55.441268,-30.959869],[-55.440268,-30.963669],[-55.438468,-30.967869],[-55.436868,-30.971969],[-55.432968,-30.973669],[-55.431568,-30.978069],[-55.427168,-30.981169],[-55.425568,-30.985369],[-55.428868,-30.987869],[-55.431868,-30.992669],[-55.435468,-30.992269],[-55.436968,-30.995569],[-55.434668,-30.999769],[-55.436668,-31.004169],[-55.430468,-31.009069],[-55.425068,-31.012969],[-55.422868,-31.016769],[-55.418668,-31.015369],[-55.414468,-31.014869],[-55.411268,-31.017569],[-55.406668,-31.018969],[-55.405968,-31.021769],[-55.405068,-31.025969],[-55.400868,-31.027669],[-55.394268,-31.025969],[-55.387468,-31.021069],[-55.384068,-31.022069],[-55.379968,-31.023469],[-55.375568,-31.021869],[-55.373868,-31.019069],[-55.371268,-31.023369],[-55.373268,-31.026969],[-55.372468,-31.030369],[-55.368068,-31.034869],[-55.363568,-31.035569],[-55.362468,-31.038969],[-55.358668,-31.039969],[-55.354168,-31.039169],[-55.351368,-31.037569],[-55.349768,-31.039969],[-55.348768,-31.042869],[-55.350668,-31.049269],[-55.353168,-31.053669],[-55.352868,-31.056669],[-55.357468,-31.062369],[-55.359668,-31.067469],[-55.353168,-31.069569],[-55.350568,-31.067769],[-55.349868,-31.071369],[-55.345568,-31.075669],[-55.344268,-31.078569],[-55.340168,-31.083269],[-55.334868,-31.085669],[-55.328268,-31.087869],[-55.328768,-31.092569],[-55.332068,-31.096169],[-55.333168,-31.100869],[-55.333468,-31.105069],[-55.329268,-31.109269],[-55.330468,-31.115369],[-55.332868,-31.118069],[-55.336968,-31.119769],[-55.338368,-31.124469],[-55.338968,-31.127669],[-55.338368,-31.132069],[-55.334568,-31.132969],[-55.329968,-31.135169],[-55.327068,-31.137369],[-55.322968,-31.136769],[-55.319968,-31.136769],[-55.318068,-31.140369],[-55.317468,-31.145669],[-55.312968,-31.146169],[-55.305868,-31.142169],[-55.302468,-31.142669],[-55.297468,-31.144369],[-55.294168,-31.144269],[-55.290568,-31.143269],[-55.289968,-31.146769],[-55.290268,-31.150169],[-55.288068,-31.152369],[-55.285568,-31.155969],[-55.289468,-31.160169],[-55.289468,-31.164169],[-55.284768,-31.165569],[-55.283068,-31.168069],[-55.279468,-31.169769],[-55.275068,-31.171069],[-55.271868,-31.172769],[-55.270968,-31.175869],[-55.272868,-31.178569],[-55.276468,-31.178369],[-55.282768,-31.184069],[-55.285168,-31.186069],[-55.283668,-31.188869],[-55.282368,-31.193169],[-55.279268,-31.194369],[-55.273468,-31.194569],[-55.270068,-31.195769],[-55.265668,-31.195269],[-55.262068,-31.195669],[-55.257468,-31.197869],[-55.255768,-31.201369],[-55.253568,-31.203869],[-55.250968,-31.206869],[-55.252468,-31.212369],[-55.250768,-31.215469],[-55.247968,-31.214869],[-55.248268,-31.219469],[-55.247968,-31.225369],[-55.247268,-31.229269],[-55.246868,-31.234269],[-55.247168,-31.237769],[-55.248768,-31.241469],[-55.247768,-31.245269],[-55.248368,-31.248069],[-55.246668,-31.251569],[-55.243668,-31.252169],[-55.240268,-31.254369],[-55.239068,-31.257469],[-55.239368,-31.260969],[-55.234368,-31.258869],[-55.228668,-31.259869],[-55.224468,-31.260969],[-55.220868,-31.261569],[-55.217668,-31.261769],[-55.213668,-31.263169],[-55.210368,-31.262369],[-55.202668,-31.261869],[-55.199268,-31.263869],[-55.194568,-31.264269],[-55.188768,-31.265369],[-55.183268,-31.266569],[-55.179668,-31.269569],[-55.175068,-31.268669],[-55.169268,-31.270669],[-55.167468,-31.273669],[-55.164568,-31.275969],[-55.164168,-31.280569],[-55.163468,-31.285169],[-55.160568,-31.284469],[-55.156468,-31.285569],[-55.152868,-31.289169],[-55.151968,-31.293169],[-55.148368,-31.294669],[-55.145468,-31.296069],[-55.141468,-31.297469],[-55.135668,-31.301069],[-55.132168,-31.301869],[-55.128468,-31.302469],[-55.123768,-31.303869],[-55.121868,-31.308769],[-55.121568,-31.312769],[-55.118568,-31.311869],[-55.113668,-31.311169],[-55.108868,-31.308269],[-55.106168,-31.309669],[-55.103168,-31.313569],[-55.097368,-31.315769],[-55.091168,-31.319069],[-55.087868,-31.320169],[-55.084768,-31.322969],[-55.080768,-31.326069],[-55.077668,-31.327669],[-55.074868,-31.330769],[-55.071268,-31.331069],[-55.068268,-31.330769],[-55.064968,-31.330669],[-55.060168,-31.332269],[-55.057268,-31.331769],[-55.059068,-31.327469],[-55.061568,-31.324869],[-55.058268,-31.322869],[-55.057668,-31.318569],[-55.059168,-31.314969],[-55.052968,-31.312669],[-55.049468,-31.309769],[-55.046768,-31.307469],[-55.043068,-31.306369],[-55.040668,-31.302569],[-55.038968,-31.298969],[-55.037068,-31.294569],[-55.034468,-31.290969],[-55.033768,-31.287369],[-55.035868,-31.283869],[-55.032268,-31.279069],[-55.036168,-31.275769],[-55.032368,-31.273669],[-55.031768,-31.270669],[-55.028168,-31.268969],[-55.023368,-31.269369],[-55.020368,-31.267669],[-55.015968,-31.268269],[-55.011468,-31.268769],[-55.008268,-31.269269],[-55.005268,-31.267569],[-55.002068,-31.270469],[-55.001368,-31.275669],[-55.000768,-31.282369],[-54.995868,-31.283369],[-54.994368,-31.285869],[-54.994068,-31.289169],[-54.988968,-31.293069],[-54.985568,-31.292469],[-54.982868,-31.295369],[-54.979968,-31.302769],[-54.981168,-31.308069],[-54.981368,-31.312169],[-54.976368,-31.317069],[-54.964768,-31.320669],[-54.958468,-31.323769],[-54.954968,-31.330169],[-54.952968,-31.332269],[-54.952968,-31.336169],[-54.953568,-31.339369],[-54.958668,-31.339569],[-54.959868,-31.343769],[-54.960468,-31.347669],[-54.959668,-31.351669],[-54.956468,-31.352769],[-54.952168,-31.352769],[-54.948768,-31.353569],[-54.945668,-31.353869],[-54.942768,-31.354469],[-54.938768,-31.353969],[-54.935168,-31.356669],[-54.935468,-31.359669],[-54.935868,-31.364369],[-54.933568,-31.367969],[-54.936968,-31.370069],[-54.938768,-31.376269],[-54.940768,-31.379969],[-54.936568,-31.382769],[-54.931868,-31.384269],[-54.927768,-31.384369],[-54.921068,-31.379869],[-54.918068,-31.378769],[-54.913368,-31.380269],[-54.908068,-31.381069],[-54.904768,-31.384069],[-54.897968,-31.381269],[-54.899068,-31.377169],[-54.895168,-31.374969],[-54.890968,-31.375569],[-54.885668,-31.379169],[-54.887068,-31.383469],[-54.884368,-31.386069],[-54.883568,-31.389269],[-54.879868,-31.395469],[-54.878068,-31.397969],[-54.869768,-31.401769],[-54.864068,-31.404169],[-54.857868,-31.408169],[-54.860868,-31.417069],[-54.856968,-31.418369],[-54.854968,-31.423569],[-54.850568,-31.425469],[-54.846668,-31.430769],[-54.844568,-31.433869],[-54.840068,-31.438369],[-54.837268,-31.441069],[-54.833668,-31.440569],[-54.828168,-31.436869],[-54.823268,-31.435869],[-54.815168,-31.435169],[-54.811368,-31.434069],[-54.810468,-31.431169],[-54.805568,-31.429969],[-54.802468,-31.429969],[-54.799168,-31.432469],[-54.796368,-31.430769],[-54.792068,-31.432969],[-54.789468,-31.434169],[-54.786368,-31.432969],[-54.783368,-31.431969],[-54.776268,-31.428869],[-54.769368,-31.426569],[-54.765668,-31.426869],[-54.760668,-31.426069],[-54.753468,-31.424769],[-54.749468,-31.427169],[-54.743668,-31.426069],[-54.738368,-31.426069],[-54.735768,-31.428669],[-54.728968,-31.429169],[-54.724268,-31.429969],[-54.722768,-31.432669],[-54.719868,-31.437669],[-54.713668,-31.437969],[-54.706868,-31.439169],[-54.703168,-31.438769],[-54.700968,-31.434769],[-54.697868,-31.436969],[-54.695968,-31.440169],[-54.695168,-31.443169],[-54.692368,-31.445469],[-54.688768,-31.445669],[-54.685268,-31.444669],[-54.682268,-31.445469],[-54.678868,-31.447169],[-54.675468,-31.449869],[-54.671668,-31.453169],[-54.661368,-31.454269],[-54.642068,-31.454869],[-54.630168,-31.455169],[-54.619168,-31.455469],[-54.602368,-31.455969],[-54.587068,-31.458769],[-54.585868,-31.462569],[-54.583168,-31.464869],[-54.579568,-31.470369],[-54.579268,-31.475869],[-54.575968,-31.481669],[-54.571568,-31.482469],[-54.569268,-31.484969],[-54.565968,-31.486869],[-54.562668,-31.486669],[-54.559968,-31.489869],[-54.557168,-31.493669],[-54.552868,-31.492669],[-54.549368,-31.494769],[-54.546868,-31.497769],[-54.540668,-31.499869],[-54.532868,-31.501869],[-54.529268,-31.504569],[-54.524368,-31.506569],[-54.522568,-31.509569],[-54.518168,-31.510469],[-54.514868,-31.511269],[-54.513568,-31.514269],[-54.512668,-31.517069],[-54.509668,-31.521469],[-54.505668,-31.524069],[-54.502968,-31.529069],[-54.501868,-31.532569],[-54.501268,-31.536769],[-54.499368,-31.539269],[-54.496668,-31.540669],[-54.495068,-31.543569],[-54.492168,-31.547469],[-54.490368,-31.552169],[-54.493068,-31.556869],[-54.489468,-31.563069],[-54.485668,-31.565569],[-54.482468,-31.567369],[-54.479568,-31.569969],[-54.473868,-31.569869],[-54.472668,-31.572869],[-54.471468,-31.576269],[-54.470268,-31.579269],[-54.469068,-31.582869],[-54.469168,-31.587569],[-54.468468,-31.591969],[-54.464368,-31.590069],[-54.461168,-31.593369],[-54.458268,-31.595569],[-54.456168,-31.598669],[-54.452968,-31.599269],[-54.455768,-31.601769],[-54.456768,-31.605569],[-54.460168,-31.606169],[-54.463668,-31.608869],[-54.466168,-31.612869],[-54.463268,-31.614069],[-54.464368,-31.617969],[-54.461568,-31.621969],[-54.460368,-31.626369],[-54.457268,-31.629069],[-54.454368,-31.629169],[-54.454568,-31.632769],[-54.454268,-31.635969],[-54.452168,-31.639969],[-54.453768,-31.645469],[-54.453968,-31.650369],[-54.451868,-31.654769],[-54.421368,-31.677869],[-54.402068,-31.692169],[-54.383468,-31.706169],[-54.377068,-31.710969],[-54.351668,-31.729969],[-54.343768,-31.735769],[-54.334668,-31.742669],[-54.317968,-31.755169],[-54.285968,-31.778769],[-54.255268,-31.801869],[-54.236068,-31.816269],[-54.218668,-31.829069],[-54.203968,-31.840069],[-54.188568,-31.851469],[-54.173968,-31.862169],[-54.166368,-31.867969],[-54.163668,-31.869769],[-54.160868,-31.872169],[-54.158068,-31.874069],[-54.155568,-31.876069],[-54.152968,-31.878469],[-54.149468,-31.879469],[-54.147068,-31.881069],[-54.143968,-31.882969],[-54.142668,-31.885969],[-54.143468,-31.889069],[-54.142168,-31.892069],[-54.140668,-31.894569],[-54.137468,-31.896469],[-54.134268,-31.897269],[-54.130968,-31.897569],[-54.127368,-31.898969],[-54.123868,-31.900769],[-54.120768,-31.903169],[-54.116868,-31.904769],[-54.114068,-31.907069],[-54.110568,-31.908069],[-54.108368,-31.910569],[-54.105668,-31.912769],[-54.107068,-31.916769],[-54.104568,-31.920369],[-54.101668,-31.923669],[-54.100868,-31.927169],[-54.098068,-31.928569],[-54.094768,-31.930569],[-54.091268,-31.930769],[-54.090068,-31.934069],[-54.087368,-31.932969],[-54.083968,-31.929769],[-54.080368,-31.928069],[-54.079668,-31.923669],[-54.076768,-31.920869],[-54.073168,-31.919469],[-54.070168,-31.921969],[-54.065968,-31.921669],[-54.062668,-31.917569],[-54.059068,-31.913969],[-54.056568,-31.910569],[-54.054668,-31.906969],[-54.051968,-31.904469],[-54.048868,-31.904469],[-54.045068,-31.902669],[-54.042768,-31.900469],[-54.040668,-31.897869],[-54.037868,-31.897369],[-54.032768,-31.896769],[-54.027668,-31.897669],[-54.024068,-31.898369],[-54.022568,-31.901469],[-54.016568,-31.902969],[-54.012668,-31.904769],[-54.014268,-31.907669],[-54.010468,-31.908069],[-54.007368,-31.908469],[-54.006568,-31.911669],[-54.003068,-31.914169],[-53.999968,-31.914569],[-53.996868,-31.914269],[-53.993368,-31.915269],[-53.990368,-31.917069],[-53.986468,-31.916969],[-53.981968,-31.916669],[-53.977368,-31.917769],[-53.974268,-31.918069],[-53.970968,-31.918469],[-53.968368,-31.920669],[-53.965068,-31.921769],[-53.962868,-31.923569],[-53.961768,-31.927269],[-53.963468,-31.930769],[-53.965868,-31.933569],[-53.967568,-31.936069],[-53.971468,-31.936369],[-53.972268,-31.940569],[-53.970868,-31.943169],[-53.967668,-31.945169],[-53.965868,-31.949269],[-53.962968,-31.950969],[-53.960968,-31.953869],[-53.957368,-31.955369],[-53.952568,-31.956169],[-53.947868,-31.953269],[-53.943468,-31.956769],[-53.939168,-31.958169],[-53.935468,-31.959069],[-53.932168,-31.962269],[-53.929068,-31.962669],[-53.924968,-31.962869],[-53.919468,-31.963669],[-53.916068,-31.965169],[-53.912368,-31.966969],[-53.910068,-31.970369],[-53.907268,-31.974569],[-53.903668,-31.978069],[-53.899368,-31.978669],[-53.896768,-31.983169],[-53.894668,-31.986069],[-53.892168,-31.989469],[-53.892068,-31.994369],[-53.885968,-31.995169],[-53.881368,-31.994769],[-53.878468,-31.995769],[-53.875168,-31.997669],[-53.872368,-31.998869],[-53.870068,-31.996369],[-53.865468,-31.993869],[-53.860668,-31.996269],[-53.856668,-31.997369],[-53.852768,-31.999469],[-53.849868,-32.000769],[-53.851668,-32.003069],[-53.853368,-32.006569],[-53.853468,-32.010469],[-53.852068,-32.014669],[-53.853068,-32.020169],[-53.851768,-32.024069],[-53.851368,-32.028769],[-53.847668,-32.028969],[-53.844568,-32.029569],[-53.840468,-32.031669],[-53.838668,-32.033869],[-53.841968,-32.036669],[-53.840968,-32.039469],[-53.835868,-32.040569],[-53.833768,-32.043569],[-53.833468,-32.046469],[-53.835468,-32.049969],[-53.833668,-32.054069],[-53.831068,-32.055769],[-53.828768,-32.057969],[-53.825768,-32.059469],[-53.820768,-32.059369],[-53.815468,-32.059669],[-53.813768,-32.063269],[-53.810868,-32.065469],[-53.807968,-32.067369],[-53.805868,-32.069569],[-53.802168,-32.070769],[-53.797468,-32.069869],[-53.793968,-32.069169],[-53.790568,-32.069569],[-53.786768,-32.071569],[-53.781568,-32.071269],[-53.777868,-32.071669],[-53.774568,-32.072469],[-53.770468,-32.073169],[-53.767968,-32.077069],[-53.764368,-32.079369],[-53.759868,-32.077669],[-53.755568,-32.077569],[-53.751268,-32.078969],[-53.747168,-32.078269],[-53.746668,-32.082569],[-53.746568,-32.087669],[-53.745168,-32.091269],[-53.741068,-32.092069],[-53.736368,-32.092569],[-53.731768,-32.093769],[-53.726968,-32.095169],[-53.725568,-32.098169],[-53.727068,-32.101169],[-53.728968,-32.103569],[-53.731068,-32.105569],[-53.734668,-32.102769],[-53.739168,-32.100669],[-53.740268,-32.103469],[-53.738268,-32.106769],[-53.739768,-32.111069],[-53.742668,-32.113969],[-53.742768,-32.118069],[-53.739968,-32.121269],[-53.738268,-32.123769],[-53.736368,-32.126269],[-53.734168,-32.129869],[-53.731768,-32.132969],[-53.727768,-32.136469],[-53.725568,-32.141069],[-53.725568,-32.144769],[-53.728068,-32.146769],[-53.731468,-32.147969],[-53.733968,-32.150969],[-53.729468,-32.152669],[-53.724568,-32.151269],[-53.718768,-32.152069],[-53.717068,-32.155069],[-53.718068,-32.159769],[-53.719268,-32.164469],[-53.722268,-32.168069],[-53.723368,-32.173169],[-53.720268,-32.175369],[-53.716568,-32.175569],[-53.713668,-32.176869],[-53.714068,-32.180269],[-53.714768,-32.183369],[-53.713968,-32.187269],[-53.710068,-32.188769],[-53.706268,-32.187369],[-53.702868,-32.188769],[-53.703568,-32.192369],[-53.707068,-32.194569],[-53.710468,-32.196769],[-53.709768,-32.201069],[-53.707068,-32.204269],[-53.703968,-32.206569],[-53.699968,-32.204569],[-53.695168,-32.203869],[-53.692668,-32.207569],[-53.694168,-32.210469],[-53.693068,-32.213669],[-53.690268,-32.215969],[-53.687168,-32.218369],[-53.684168,-32.221669],[-53.682268,-32.225069],[-53.680268,-32.228169],[-53.677168,-32.233269],[-53.676068,-32.237269],[-53.678368,-32.241069],[-53.678068,-32.246869],[-53.677268,-32.250869],[-53.677168,-32.254369],[-53.677468,-32.258569],[-53.675068,-32.260769],[-53.673568,-32.263469],[-53.671968,-32.266069],[-53.669968,-32.268269],[-53.666968,-32.270769],[-53.665268,-32.274469],[-53.660068,-32.275369],[-53.656568,-32.278369],[-53.655868,-32.282269],[-53.656268,-32.285869],[-53.656468,-32.288969],[-53.652668,-32.292269],[-53.648768,-32.293869],[-53.643768,-32.295869],[-53.643468,-32.301569],[-53.646268,-32.308669],[-53.647668,-32.311969],[-53.652268,-32.311669],[-53.656168,-32.311969],[-53.656768,-32.315269],[-53.656168,-32.318769],[-53.651268,-32.321069],[-53.646268,-32.322369],[-53.643268,-32.325169],[-53.644568,-32.329669],[-53.643568,-32.335769],[-53.641268,-32.338469],[-53.638468,-32.343669],[-53.634868,-32.346969],[-53.633268,-32.351169],[-53.633768,-32.355569],[-53.636468,-32.358269],[-53.638568,-32.361369],[-53.640368,-32.364169],[-53.642968,-32.367169],[-53.643668,-32.370469],[-53.644068,-32.375269],[-53.645068,-32.378869],[-53.645068,-32.382969],[-53.639268,-32.385769],[-53.634968,-32.386769],[-53.631568,-32.387869],[-53.627768,-32.389069],[-53.623868,-32.390969],[-53.619668,-32.393669],[-53.615268,-32.397369],[-53.612468,-32.402569],[-53.613268,-32.406269],[-53.614668,-32.411169],[-53.615368,-32.415669],[-53.613068,-32.417869],[-53.609768,-32.420269],[-53.607268,-32.422269],[-53.604268,-32.425069],[-53.601968,-32.429069],[-53.599168,-32.431169],[-53.595568,-32.432969],[-53.592268,-32.433669],[-53.588668,-32.435769],[-53.587368,-32.439469],[-53.586768,-32.442369],[-53.586468,-32.445269],[-53.585068,-32.448569],[-53.583768,-32.451269],[-53.580368,-32.452969],[-53.576568,-32.454669],[-53.573568,-32.456069],[-53.569868,-32.456869],[-53.566568,-32.459269],[-53.565168,-32.461869],[-53.562368,-32.465869],[-53.559068,-32.469469],[-53.556068,-32.472669],[-53.552568,-32.473669],[-53.548268,-32.473069],[-53.544668,-32.473069],[-53.541468,-32.473069],[-53.541168,-32.476169],[-53.542468,-32.479469],[-53.537568,-32.480569],[-53.531668,-32.482469],[-53.528668,-32.485769],[-53.525368,-32.488869],[-53.522868,-32.486369],[-53.523268,-32.482869],[-53.520368,-32.481169],[-53.516068,-32.482769],[-53.516768,-32.486869],[-53.513968,-32.487969],[-53.510468,-32.486069],[-53.508168,-32.483369],[-53.505468,-32.482269],[-53.502368,-32.481369],[-53.499068,-32.481069],[-53.494168,-32.481469],[-53.490068,-32.482069],[-53.486068,-32.483369],[-53.482268,-32.483869],[-53.478668,-32.483869],[-53.474868,-32.482469],[-53.471168,-32.480669],[-53.468368,-32.482869],[-53.464868,-32.484269],[-53.462868,-32.486869],[-53.464068,-32.490069],[-53.466268,-32.492569],[-53.464768,-32.495269],[-53.462568,-32.498269],[-53.462968,-32.503269],[-53.461768,-32.507069],[-53.460468,-32.510969],[-53.457368,-32.514969],[-53.457868,-32.519569],[-53.456468,-32.522969],[-53.453268,-32.525969],[-53.450168,-32.527969],[-53.448168,-32.530669],[-53.446368,-32.533369],[-53.442168,-32.539469],[-53.438868,-32.544969],[-53.436868,-32.548069],[-53.435568,-32.551069],[-53.434368,-32.554469],[-53.433368,-32.557569],[-53.433268,-32.561669],[-53.431368,-32.565469],[-53.426468,-32.563769],[-53.424968,-32.559769],[-53.421368,-32.558569],[-53.416968,-32.562169],[-53.416768,-32.567169],[-53.414768,-32.569869],[-53.412268,-32.572469],[-53.409468,-32.574869],[-53.405668,-32.577869],[-53.403368,-32.579969],[-53.397868,-32.582669],[-53.392668,-32.584769],[-53.388968,-32.586569],[-53.385668,-32.585669],[-53.383268,-32.582869],[-53.380468,-32.578269],[-53.379568,-32.573869],[-53.377668,-32.570969],[-53.373868,-32.569969],[-53.370468,-32.569669],[-53.368268,-32.572069],[-53.366068,-32.575369],[-53.363568,-32.577569],[-53.360568,-32.581469],[-53.358668,-32.585769],[-53.356368,-32.589569],[-53.352768,-32.591969],[-53.348968,-32.592269],[-53.346168,-32.591569],[-53.343768,-32.589769],[-53.339768,-32.585369],[-53.335968,-32.584069],[-53.333168,-32.585069],[-53.330368,-32.587869],[-53.324568,-32.591969],[-53.319568,-32.595969],[-53.313068,-32.598969],[-53.307768,-32.602869],[-53.303068,-32.606769],[-53.299768,-32.611669],[-53.297168,-32.615469],[-53.292168,-32.619469],[-53.288868,-32.621069],[-53.284468,-32.621369],[-53.281268,-32.620569],[-53.278468,-32.617969],[-53.278068,-32.612769],[-53.274768,-32.607469],[-53.271768,-32.605269],[-53.268468,-32.603969],[-53.263968,-32.603669],[-53.260268,-32.602469],[-53.254868,-32.601969],[-53.249468,-32.603169],[-53.245568,-32.607069],[-53.244168,-32.614169],[-53.244168,-32.619469],[-53.243368,-32.623069],[-53.240468,-32.627069],[-53.236968,-32.629669],[-53.230568,-32.632669],[-53.221168,-32.636469],[-53.214568,-32.638769],[-53.209268,-32.639669],[-53.202668,-32.640169],[-53.197168,-32.640769],[-53.193268,-32.641569],[-53.189668,-32.642869],[-53.185468,-32.645669],[-53.182668,-32.649069],[-53.182168,-32.652569],[-53.180568,-32.655069],[-53.175768,-32.657369],[-53.075468,-32.740869],[-53.076868,-32.754369],[-53.079068,-32.768969],[-53.081268,-32.779569],[-53.083268,-32.785969],[-53.085768,-32.788169],[-53.090468,-32.788369],[-53.096468,-32.788069],[-53.105268,-32.787569],[-53.112968,-32.787369],[-53.119168,-32.787569],[-53.124868,-32.788069],[-53.132768,-32.788169],[-53.138468,-32.789269],[-53.142168,-32.790669],[-53.145668,-32.791969],[-53.149568,-32.794469],[-53.152868,-32.798069],[-53.154768,-32.801069],[-53.153168,-32.804369],[-53.150468,-32.807169],[-53.152568,-32.811569],[-53.154868,-32.815269],[-53.158068,-32.820169],[-53.162468,-32.825369],[-53.165868,-32.830969],[-53.171068,-32.837369],[-53.177168,-32.844169],[-53.184868,-32.850369],[-53.231668,-32.871269],[-53.294468,-32.899269],[-53.310168,-32.918669],[-53.272668,-32.927969],[-53.245068,-32.935169],[-53.444368,-33.052969],[-53.518168,-33.153369],[-53.521468,-33.258769],[-53.521768,-33.265069],[-53.507768,-33.353069],[-53.511068,-33.459369],[-53.525168,-33.526269],[-53.523668,-33.593369],[-53.531268,-33.600969],[-53.534568,-33.603369],[-53.532568,-33.607769],[-53.533368,-33.611069],[-53.535868,-33.613269],[-53.534268,-33.616469],[-53.532068,-33.618669],[-53.529268,-33.620869],[-53.527268,-33.624969],[-53.527868,-33.630169],[-53.528968,-33.633269],[-53.528668,-33.636269],[-53.528768,-33.639669],[-53.530468,-33.642569],[-53.531668,-33.646769],[-53.533768,-33.649769],[-53.533068,-33.652669],[-53.531568,-33.656169],[-53.532168,-33.660569],[-53.531468,-33.666069],[-53.528168,-33.669169],[-53.527968,-33.672569],[-53.525668,-33.674469],[-53.529468,-33.677869],[-53.530368,-33.681069],[-53.530168,-33.684369],[-53.530168,-33.687669],[-53.523168,-33.689169],[-53.511868,-33.689869],[-53.492268,-33.690769],[-53.483968,-33.691269],[-53.481068,-33.691369],[-53.475868,-33.691569],[-53.471968,-33.691669],[-53.468668,-33.691869],[-53.462268,-33.692169],[-53.455368,-33.692669],[-53.452168,-33.692769],[-53.447368,-33.692969],[-53.440268,-33.694069],[-53.441268,-33.697869],[-53.437268,-33.700469],[-53.438068,-33.703969],[-53.437368,-33.707369],[-53.437468,-33.712969],[-53.435168,-33.716469],[-53.433768,-33.720869],[-53.435468,-33.724269],[-53.432768,-33.727369],[-53.431068,-33.730869],[-53.431668,-33.734469],[-53.430568,-33.738869],[-53.426868,-33.739469],[-53.423168,-33.742969],[-53.419568,-33.745169],[-53.415868,-33.748269],[-53.411768,-33.749369],[-53.407568,-33.749369],[-53.403368,-33.749469],[-53.399068,-33.748569],[-53.395768,-33.750769],[-53.392168,-33.750569],[-53.389568,-33.748669],[-53.386268,-33.746269],[-53.379868,-33.746969],[-53.374968,-33.744669],[-53.370868,-33.743269],[-53.366968,-33.740769],[-53.364068,-33.738369],[-53.360068,-33.735769],[-53.355268,-33.732169],[-53.350268,-33.728469],[-53.347768,-33.726769],[-53.343968,-33.723769],[-53.341268,-33.721969],[-53.337868,-33.719569],[-53.335068,-33.717669],[-53.332568,-33.715869],[-53.328968,-33.713769],[-53.326568,-33.712269],[-53.323168,-33.709769],[-53.319068,-33.707169],[-53.314968,-33.704269],[-53.312268,-33.702169],[-53.308368,-33.699569],[-53.304168,-33.696669],[-53.300268,-33.694069],[-53.296068,-33.691269],[-53.292168,-33.688769],[-53.288868,-33.686669],[-53.285868,-33.684869],[-53.283468,-33.683369],[-53.279768,-33.681069],[-53.274768,-33.677869],[-53.268968,-33.673869],[-53.264968,-33.671369],[-53.262468,-33.669169],[-53.259568,-33.667069],[-53.256368,-33.664769],[-53.253868,-33.662769],[-53.249768,-33.659869],[-53.246168,-33.657369],[-53.241468,-33.654269],[-53.237768,-33.651569],[-53.233968,-33.648469],[-53.230668,-33.645969],[-53.227368,-33.643169],[-53.224168,-33.640469],[-53.221168,-33.637869],[-53.218168,-33.635469],[-53.213968,-33.632369],[-53.210068,-33.629069],[-53.206868,-33.626369],[-53.204068,-33.624369],[-53.200668,-33.622169],[-53.196668,-33.619769],[-53.193768,-33.618069],[-53.190968,-33.616169],[-53.187468,-33.613869],[-53.184068,-33.611369],[-53.180468,-33.608669],[-53.176668,-33.605869],[-53.173568,-33.603069],[-53.170568,-33.600969],[-53.167168,-33.598469],[-53.162768,-33.595169],[-53.160368,-33.592969],[-53.157268,-33.590869],[-53.152668,-33.587069],[-53.150368,-33.585369],[-53.147068,-33.582569],[-53.144568,-33.580469],[-53.141068,-33.577169],[-53.137468,-33.573869],[-53.135168,-33.572069],[-53.132968,-33.570169],[-53.122468,-33.561069],[-53.119768,-33.558569],[-53.116168,-33.555769],[-53.112268,-33.552269],[-53.110268,-33.550069],[-53.106768,-33.547269],[-53.103568,-33.544769],[-53.101168,-33.542769],[-53.097868,-33.540269],[-53.094168,-33.537069],[-53.090468,-33.534169],[-53.086168,-33.530669],[-53.082268,-33.527669],[-53.077968,-33.524469],[-53.072868,-33.520469],[-53.069868,-33.518169],[-53.066368,-33.515469],[-53.062268,-33.512069],[-53.058268,-33.508869],[-53.054368,-33.505969],[-53.049468,-33.502169],[-53.046668,-33.499669],[-53.042868,-33.496869],[-53.038868,-33.493569],[-53.035868,-33.491169],[-53.032768,-33.488669],[-53.030168,-33.486469],[-53.027068,-33.483969],[-53.023768,-33.481469],[-53.019668,-33.478169],[-53.016268,-33.475569],[-53.013568,-33.473369],[-53.010668,-33.470969],[-53.006568,-33.467669],[-53.002968,-33.464869],[-53.000168,-33.462569],[-52.996568,-33.459769],[-52.992268,-33.456469],[-52.988268,-33.453169],[-52.983368,-33.449569],[-52.980668,-33.447169],[-52.977468,-33.444569],[-52.972768,-33.440969],[-52.969268,-33.438069],[-52.964868,-33.434669],[-52.960668,-33.431669],[-52.957568,-33.428569],[-52.953168,-33.425069],[-52.948468,-33.421669],[-52.944968,-33.418869],[-52.940468,-33.415269],[-52.936368,-33.411769],[-52.932468,-33.408769],[-52.928068,-33.405369],[-52.924468,-33.402569],[-52.920368,-33.399369],[-52.916768,-33.396469],[-52.911668,-33.392469],[-52.905868,-33.387869],[-52.900468,-33.383569],[-52.895668,-33.379569],[-52.890368,-33.375169],[-52.884568,-33.370569],[-52.879068,-33.366169],[-52.876068,-33.363669],[-52.870468,-33.358669],[-52.865768,-33.354669],[-52.860868,-33.350669],[-52.856168,-33.346769],[-52.850068,-33.342069],[-52.845668,-33.338669],[-52.839768,-33.334269],[-52.835168,-33.330669],[-52.829868,-33.326469],[-52.824568,-33.322369],[-52.819368,-33.318469],[-52.815168,-33.315169],[-52.811868,-33.312769],[-52.808368,-33.309469],[-52.801968,-33.304769],[-52.796468,-33.300069],[-52.790668,-33.295369],[-52.786968,-33.292069],[-52.780868,-33.286669],[-52.776568,-33.283069],[-52.772868,-33.279469],[-52.769268,-33.276169],[-52.765968,-33.272869],[-52.760668,-33.267669],[-52.755468,-33.262769],[-52.750568,-33.257769],[-52.746068,-33.253469],[-52.741368,-33.248569],[-52.737768,-33.244769],[-52.733968,-33.241069],[-52.730568,-33.237269],[-52.726668,-33.233069],[-52.722268,-33.228069],[-52.717668,-33.223169],[-52.712968,-33.218069],[-52.709368,-33.213769],[-52.705668,-33.209369],[-52.701268,-33.204369],[-52.698768,-33.201269],[-52.695168,-33.197169],[-52.692368,-33.193569],[-52.687668,-33.188469],[-52.685568,-33.185569],[-52.682768,-33.182169],[-52.680268,-33.179169],[-52.676068,-33.174169],[-52.671968,-33.169169],[-52.666668,-33.162069],[-52.663168,-33.158069],[-52.658868,-33.152569],[-52.654468,-33.146869],[-52.650068,-33.141569],[-52.645468,-33.135469],[-52.640968,-33.129669],[-52.636368,-33.123269],[-52.632368,-33.116869],[-52.627368,-33.109469],[-52.623768,-33.104169],[-52.620168,-33.098069],[-52.615568,-33.090369],[-52.611468,-33.083269],[-52.607168,-33.075769],[-52.603368,-33.069269],[-52.599468,-33.061969],[-52.595668,-33.054669],[-52.593168,-33.050069],[-52.589868,-33.043169],[-52.586568,-33.036669],[-52.584568,-33.031969],[-52.580768,-33.024469],[-52.577168,-33.016869],[-52.572468,-33.008569],[-52.569568,-33.002669],[-52.567468,-32.999069],[-52.564968,-32.994769],[-52.563068,-32.990869],[-52.561268,-32.986869],[-52.559368,-32.983369],[-52.557768,-32.979969],[-52.556068,-32.976469],[-52.554168,-32.973069],[-52.551868,-32.969169],[-52.550068,-32.965569],[-52.548168,-32.961869],[-52.544968,-32.956569],[-52.541968,-32.951269],[-52.539468,-32.946569],[-52.537468,-32.943169],[-52.533968,-32.937669],[-52.530168,-32.931169],[-52.526568,-32.925069],[-52.522168,-32.917869],[-52.518468,-32.911769],[-52.514668,-32.904869],[-52.511468,-32.899069],[-52.506768,-32.890369],[-52.502468,-32.882069],[-52.498568,-32.874069],[-52.494668,-32.866069],[-52.490368,-32.857069],[-52.487868,-32.850969],[-52.485268,-32.844269],[-52.482168,-32.835469],[-52.479168,-32.827969],[-52.475968,-32.819369],[-52.471668,-32.808569],[-52.468368,-32.799369],[-52.466268,-32.793869],[-52.463968,-32.787569],[-52.462568,-32.782669],[-52.460068,-32.775369],[-52.457868,-32.768569],[-52.455768,-32.761769],[-52.453568,-32.753769],[-52.451368,-32.744969],[-52.448568,-32.734969],[-52.446368,-32.725669],[-52.445168,-32.720669],[-52.444368,-32.717269],[-52.443468,-32.713369],[-52.442668,-32.709669],[-52.441368,-32.704569],[-52.440568,-32.701069],[-52.439968,-32.697669],[-52.439168,-32.694069],[-52.438268,-32.690469],[-52.437268,-32.686669],[-52.436568,-32.681869],[-52.435468,-32.677469],[-52.434168,-32.672469],[-52.433268,-32.668169],[-52.431568,-32.662469],[-52.429768,-32.656269],[-52.429068,-32.652569],[-52.427768,-32.647869],[-52.426168,-32.642069],[-52.424768,-32.636369],[-52.423268,-32.629869],[-52.420768,-32.621669],[-52.418168,-32.613069],[-52.415668,-32.605269],[-52.413168,-32.598469],[-52.410968,-32.592369],[-52.409268,-32.587669],[-52.406968,-32.581869],[-52.405068,-32.576769],[-52.403168,-32.570969],[-52.400168,-32.563269],[-52.397668,-32.556569],[-52.395068,-32.548969],[-52.392668,-32.543069],[-52.391568,-32.539969],[-52.388968,-32.533069],[-52.386368,-32.525769],[-52.384168,-32.520069],[-52.381268,-32.512769],[-52.379368,-32.508569],[-52.376568,-32.501869],[-52.373568,-32.494669],[-52.370868,-32.488269],[-52.368068,-32.481669],[-52.365768,-32.476669],[-52.362568,-32.469869],[-52.359768,-32.463969],[-52.356468,-32.457569],[-52.354468,-32.452969],[-52.350668,-32.445169],[-52.347668,-32.438469],[-52.345568,-32.434469],[-52.344168,-32.431669],[-52.340668,-32.424469],[-52.337068,-32.417869],[-52.333468,-32.411169],[-52.330468,-32.405169],[-52.327068,-32.399069],[-52.324368,-32.393269],[-52.321668,-32.388169],[-52.320168,-32.384969],[-52.318268,-32.381869],[-52.316668,-32.378869],[-52.314668,-32.375769],[-52.312768,-32.371969],[-52.310868,-32.368569],[-52.307968,-32.363069],[-52.304968,-32.358169],[-52.301968,-32.353169],[-52.299168,-32.348469],[-52.296668,-32.344269],[-52.293068,-32.338269],[-52.290268,-32.333969],[-52.286268,-32.328169],[-52.283468,-32.323769],[-52.280368,-32.319369],[-52.276768,-32.314069],[-52.271568,-32.306869],[-52.269668,-32.304069],[-52.264968,-32.298069],[-52.262468,-32.295069],[-52.260268,-32.292169],[-52.256068,-32.286969],[-52.250868,-32.279769],[-52.244668,-32.272369],[-52.238968,-32.266069],[-52.233868,-32.260169],[-52.229168,-32.255269],[-52.225268,-32.251269],[-52.220868,-32.246969],[-52.215968,-32.242969],[-52.211868,-32.239669],[-52.208268,-32.235669],[-52.203468,-32.230569],[-52.198968,-32.226669],[-52.195168,-32.223469],[-52.188768,-32.218669],[-52.186068,-32.216469],[-52.181568,-32.212869],[-52.178268,-32.210169],[-52.173368,-32.205769],[-52.170768,-32.203569],[-52.167468,-32.200769],[-52.164768,-32.198469],[-52.162068,-32.196269],[-52.159168,-32.193769],[-52.156268,-32.191369],[-52.153768,-32.189469],[-52.151468,-32.187369],[-52.147268,-32.184069],[-52.143968,-32.181369],[-52.140968,-32.179169],[-52.132968,-32.173869],[-52.129968,-32.172169],[-52.124868,-32.169169],[-52.116868,-32.165569],[-52.110668,-32.163469],[-52.106768,-32.163069],[-52.098468,-32.161169],[-52.082368,-32.159869],[-52.082168,-32.156169],[-52.080668,-32.151769],[-52.077968,-32.146869],[-52.078268,-32.143269],[-52.074668,-32.140469],[-52.069568,-32.135269],[-52.066268,-32.132069],[-52.061568,-32.127069],[-52.057668,-32.123269],[-52.053568,-32.119069],[-52.049668,-32.114969],[-52.044568,-32.109969],[-52.039968,-32.104769],[-52.035568,-32.099969],[-52.031768,-32.095969],[-52.027668,-32.091569],[-52.022668,-32.086269],[-52.018168,-32.081469],[-52.012468,-32.075669],[-52.005968,-32.069069],[-51.999368,-32.062469],[-51.993868,-32.056969],[-51.985768,-32.048969],[-51.981768,-32.044969],[-51.977468,-32.040269],[-51.973368,-32.036369],[-51.968468,-32.031469],[-51.964768,-32.027869],[-51.958468,-32.021869],[-51.952868,-32.016769],[-51.947368,-32.011569],[-51.943468,-32.008069],[-51.936668,-32.001869],[-51.934168,-31.999669],[-51.931568,-31.997369],[-51.927168,-31.993269],[-51.920568,-31.987469],[-51.914568,-31.982769],[-51.910668,-31.979269],[-51.908468,-31.977469],[-51.902668,-31.972769],[-51.895068,-31.966269],[-51.885968,-31.958969],[-51.880268,-31.954669],[-51.874068,-31.950169],[-51.867568,-31.945269],[-51.859968,-31.939669],[-51.853868,-31.935169],[-51.847568,-31.930769],[-51.844468,-31.928569],[-51.839768,-31.925269],[-51.835068,-31.921969],[-51.830768,-31.919169],[-51.826068,-31.915969],[-51.821268,-31.912869],[-51.815768,-31.909769],[-51.812468,-31.907569],[-51.807568,-31.904469],[-51.803668,-31.901969],[-51.800768,-31.900169],[-51.796468,-31.897669],[-51.793068,-31.895669],[-51.790068,-31.893969],[-51.785368,-31.891069],[-51.780868,-31.888469],[-51.775868,-31.885469],[-51.770768,-31.882769],[-51.765368,-31.879869],[-51.759968,-31.876569],[-51.754668,-31.873669],[-51.747968,-31.869969],[-51.742668,-31.867269],[-51.735368,-31.863269],[-51.728068,-31.859469],[-51.722068,-31.856369],[-51.718968,-31.854769],[-51.715968,-31.853169],[-51.712268,-31.851369],[-51.707868,-31.849169],[-51.702868,-31.846669],[-51.699568,-31.844869],[-51.695468,-31.843069],[-51.691268,-31.840869],[-51.686968,-31.838769],[-51.682668,-31.836569],[-51.677968,-31.834369],[-51.674368,-31.832869],[-51.670768,-31.831069],[-51.667468,-31.829569],[-51.663368,-31.827469],[-51.659468,-31.825769],[-51.655468,-31.824269],[-51.651468,-31.822369],[-51.648668,-31.820969],[-51.638268,-31.815969],[-51.624468,-31.809469],[-51.612268,-31.803269],[-51.606368,-31.799969],[-51.600368,-31.796769],[-51.591168,-31.791369],[-51.585168,-31.788169],[-51.577668,-31.783869],[-51.571368,-31.780369],[-51.560168,-31.774069],[-51.550868,-31.769269],[-51.543368,-31.765169],[-51.532368,-31.759269],[-51.502368,-31.742769],[-51.497668,-31.739969],[-51.493068,-31.737469],[-51.489368,-31.735269],[-51.483668,-31.731769],[-51.478868,-31.728869],[-51.475668,-31.726769],[-51.471468,-31.724169],[-51.465668,-31.720569],[-51.462068,-31.718169],[-51.458668,-31.715969],[-51.452068,-31.711869],[-51.447668,-31.709069],[-51.442968,-31.705769],[-51.438068,-31.702669],[-51.432268,-31.698969],[-51.427168,-31.695569],[-51.423168,-31.692669],[-51.418568,-31.689169],[-51.412868,-31.685469],[-51.409268,-31.682669],[-51.404568,-31.679369],[-51.401268,-31.677169],[-51.396568,-31.673669],[-51.392668,-31.670569],[-51.386568,-31.666169],[-51.381368,-31.662469],[-51.375468,-31.657869],[-51.369068,-31.653369],[-51.363568,-31.649469],[-51.358368,-31.645969],[-51.353068,-31.641769],[-51.350368,-31.639869],[-51.344568,-31.636069],[-51.339268,-31.631769],[-51.335468,-31.628769],[-51.330768,-31.625269],[-51.325268,-31.621569],[-51.319868,-31.617669],[-51.314368,-31.613269],[-51.310568,-31.610369],[-51.306968,-31.608069],[-51.303268,-31.605269],[-51.298868,-31.602069],[-51.293868,-31.598669],[-51.289268,-31.595069],[-51.283968,-31.591169],[-51.280868,-31.588669],[-51.276168,-31.585069],[-51.272068,-31.581869],[-51.267468,-31.578569],[-51.262068,-31.574269],[-51.255968,-31.568869],[-51.249368,-31.563869],[-51.243868,-31.559369],[-51.239168,-31.555169],[-51.231968,-31.548969],[-51.226368,-31.543969],[-51.220868,-31.539469],[-51.214468,-31.533369],[-51.207268,-31.526469],[-51.202368,-31.521569],[-51.196868,-31.515669],[-51.189168,-31.507669],[-51.185868,-31.504369],[-51.183068,-31.501369],[-51.177568,-31.495869],[-51.172468,-31.490469],[-51.166668,-31.484669],[-51.162268,-31.480269],[-51.152568,-31.470669],[-51.143268,-31.461169],[-51.133768,-31.451469],[-51.122368,-31.440269],[-51.113668,-31.431569],[-51.107768,-31.425269],[-51.103968,-31.421369],[-51.101368,-31.418869],[-51.098068,-31.415669],[-51.095868,-31.413469],[-51.093068,-31.410669],[-51.088468,-31.406169],[-51.085968,-31.403769],[-51.083268,-31.401269],[-51.080168,-31.398169],[-51.077368,-31.395369],[-51.072768,-31.391069],[-51.068268,-31.386769],[-51.065268,-31.383869],[-51.062468,-31.381069],[-51.058768,-31.377669],[-51.055768,-31.374769],[-51.051368,-31.370469],[-51.047568,-31.367169],[-51.044268,-31.364369],[-51.041668,-31.362169],[-51.038968,-31.358969],[-51.034468,-31.355869],[-51.031168,-31.353069],[-51.027868,-31.350269],[-51.025068,-31.348069],[-51.021268,-31.344869],[-51.017868,-31.342069],[-51.013968,-31.338969],[-51.010768,-31.336169],[-51.006768,-31.333169],[-51.002468,-31.329969],[-50.997168,-31.325969],[-50.991568,-31.321369],[-50.986868,-31.317769],[-50.980668,-31.313069],[-50.975968,-31.309169],[-50.970368,-31.304769],[-50.965368,-31.300469],[-50.961268,-31.296869],[-50.957868,-31.294169],[-50.954268,-31.291469],[-50.950668,-31.288169],[-50.944968,-31.283469],[-50.941268,-31.280369],[-50.937468,-31.277269],[-50.934868,-31.275069],[-50.929468,-31.270769],[-50.923968,-31.266369],[-50.918868,-31.261769],[-50.914768,-31.258269],[-50.909468,-31.253769],[-50.906468,-31.251269],[-50.902268,-31.247769],[-50.899068,-31.244969],[-50.894268,-31.240369],[-50.888968,-31.235569],[-50.884168,-31.231369],[-50.879068,-31.226969],[-50.874068,-31.221969],[-50.869768,-31.217969],[-50.865368,-31.213269],[-50.861768,-31.209869],[-50.857068,-31.205369],[-50.853068,-31.201469],[-50.848868,-31.197069],[-50.845968,-31.194169],[-50.841968,-31.189869],[-50.837068,-31.185269],[-50.833668,-31.182169],[-50.830368,-31.178569],[-50.826768,-31.174769],[-50.822768,-31.170269],[-50.820168,-31.167169],[-50.815468,-31.161969],[-50.810768,-31.156769],[-50.807468,-31.153769],[-50.804368,-31.150469],[-50.800568,-31.146469],[-50.797568,-31.143169],[-50.794968,-31.140369],[-50.791668,-31.136769],[-50.788868,-31.133869],[-50.785568,-31.130469],[-50.782768,-31.127469],[-50.779268,-31.123869],[-50.776268,-31.120469],[-50.773168,-31.116969],[-50.770468,-31.113669],[-50.767168,-31.110069],[-50.763568,-31.105269],[-50.759968,-31.100369],[-50.757168,-31.096669],[-50.753768,-31.091969],[-50.750968,-31.087869],[-50.747168,-31.082169],[-50.744668,-31.078269],[-50.742468,-31.075369],[-50.740368,-31.072069],[-50.738268,-31.068569],[-50.735768,-31.064469],[-50.733068,-31.060469],[-50.729268,-31.054769],[-50.727268,-31.051669],[-50.724968,-31.047869],[-50.722668,-31.044269],[-50.720368,-31.040569],[-50.718668,-31.037769],[-50.716668,-31.034869],[-50.714368,-31.031169],[-50.712068,-31.027569],[-50.709568,-31.023669],[-50.706768,-31.019369],[-50.703568,-31.014669],[-50.700668,-31.010369],[-50.697468,-31.005769],[-50.694868,-31.001969],[-50.692168,-30.998069],[-50.688768,-30.992669],[-50.685468,-30.988269],[-50.682168,-30.983569],[-50.677468,-30.976469],[-50.674968,-30.973069],[-50.672468,-30.969469],[-50.670368,-30.966669],[-50.667768,-30.962869],[-50.664968,-30.958969],[-50.663168,-30.956569],[-50.660068,-30.952669],[-50.658368,-30.949969],[-50.656568,-30.947369],[-50.654768,-30.944869],[-50.651468,-30.940469],[-50.649068,-30.937369],[-50.646768,-30.934069],[-50.645068,-30.931569],[-50.643268,-30.929069],[-50.640368,-30.925069],[-50.637968,-30.922469],[-50.635368,-30.918669],[-50.632368,-30.914769],[-50.630268,-30.911969],[-50.628068,-30.908969],[-50.625268,-30.905169],[-50.622668,-30.901769],[-50.620868,-30.899269],[-50.618268,-30.895969],[-50.615268,-30.891869],[-50.612268,-30.888169],[-50.609968,-30.884969],[-50.607568,-30.882069],[-50.605268,-30.879069],[-50.601968,-30.874369],[-50.598968,-30.870269],[-50.594768,-30.865369],[-50.592068,-30.862169],[-50.589068,-30.858169],[-50.586468,-30.854669],[-50.582968,-30.850369],[-50.580068,-30.846369],[-50.577368,-30.842669],[-50.574368,-30.838969],[-50.571868,-30.835969],[-50.569068,-30.832569],[-50.565968,-30.828269],[-50.563768,-30.825269],[-50.560768,-30.821269],[-50.558268,-30.818169],[-50.555768,-30.814369],[-50.551968,-30.809169],[-50.548968,-30.804969],[-50.547168,-30.802569],[-50.543968,-30.797769],[-50.541768,-30.794669],[-50.539568,-30.791169],[-50.536968,-30.787269],[-50.534168,-30.783169],[-50.530868,-30.778769],[-50.528368,-30.775169],[-50.525868,-30.771269],[-50.522168,-30.765969],[-50.520068,-30.762469],[-50.517168,-30.758269],[-50.514568,-30.754669],[-50.511768,-30.750969],[-50.509868,-30.747969],[-50.506668,-30.743569],[-50.501668,-30.736069],[-50.495768,-30.726669],[-50.492168,-30.721169],[-50.489068,-30.716669],[-50.486368,-30.712369],[-50.483568,-30.707569],[-50.480268,-30.702869],[-50.477768,-30.698969],[-50.474568,-30.694869],[-50.472268,-30.691669],[-50.470268,-30.689069],[-50.467568,-30.684869],[-50.464868,-30.680769],[-50.461568,-30.676169],[-50.459368,-30.673269],[-50.456268,-30.669169],[-50.453568,-30.665069],[-50.450968,-30.661769],[-50.447768,-30.657569],[-50.428668,-30.632069],[-50.397968,-30.593669],[-50.395768,-30.590669],[-50.392368,-30.586869],[-50.389368,-30.582969],[-50.387368,-30.580369],[-50.383268,-30.574869],[-50.380668,-30.571769],[-50.376868,-30.566669],[-50.374068,-30.563069],[-50.370568,-30.557969],[-50.367268,-30.553069],[-50.364768,-30.549669],[-50.361968,-30.545369],[-50.359368,-30.541669],[-50.356768,-30.537769],[-50.353668,-30.532669],[-50.350868,-30.528469],[-50.348168,-30.524569],[-50.345068,-30.519369],[-50.342868,-30.515369],[-50.340068,-30.511069],[-50.337968,-30.507669],[-50.334668,-30.501569],[-50.331468,-30.496369],[-50.329368,-30.492469],[-50.326468,-30.487269],[-50.322468,-30.480269],[-50.320668,-30.476769],[-50.318768,-30.473069],[-50.317368,-30.469769],[-50.314868,-30.464869],[-50.312668,-30.460369],[-50.311268,-30.457369],[-50.309168,-30.453569],[-50.307668,-30.450369],[-50.306068,-30.447069],[-50.304068,-30.442369],[-50.301868,-30.436669],[-50.299968,-30.432269],[-50.297468,-30.425769],[-50.295668,-30.421369],[-50.294168,-30.417169],[-50.292168,-30.412469],[-50.290868,-30.408769],[-50.289468,-30.405169],[-50.287068,-30.398969],[-50.285068,-30.392869],[-50.283168,-30.387669],[-50.281968,-30.384169],[-50.280868,-30.380469],[-50.279168,-30.375969],[-50.277868,-30.371869],[-50.276468,-30.367769],[-50.274068,-30.361969],[-50.272668,-30.358169],[-50.271268,-30.354569],[-50.269668,-30.350669],[-50.267468,-30.344469],[-50.265668,-30.339769],[-50.264068,-30.335469],[-50.262368,-30.331769],[-50.261268,-30.328969],[-50.259868,-30.325369],[-50.258068,-30.320969],[-50.256268,-30.316369],[-50.254868,-30.312769],[-50.253468,-30.308669],[-50.251868,-30.303669],[-50.249168,-30.298569],[-50.247968,-30.295269],[-50.245468,-30.289469],[-50.242568,-30.283069],[-50.241068,-30.278669],[-50.239468,-30.274869],[-50.237868,-30.271069],[-50.236868,-30.268269],[-50.234968,-30.263469],[-50.231668,-30.255169],[-50.229468,-30.249769],[-50.227368,-30.244369],[-50.225268,-30.238969],[-50.224568,-30.236069],[-50.222568,-30.232769],[-50.220868,-30.228069],[-50.219068,-30.222769],[-50.217568,-30.218769],[-50.215968,-30.215369],[-50.214868,-30.212569],[-50.213768,-30.209569],[-50.211268,-30.202969],[-50.209268,-30.197669],[-50.207368,-30.192769],[-50.205368,-30.187669],[-50.203268,-30.182469],[-50.202068,-30.179369],[-50.199968,-30.174169],[-50.198768,-30.170569],[-50.196368,-30.164469],[-50.194668,-30.160069],[-50.191868,-30.152969],[-50.189668,-30.147569],[-50.187968,-30.141869],[-50.184868,-30.134069],[-50.182168,-30.126669],[-50.179968,-30.121869],[-50.178568,-30.117969],[-50.177468,-30.114969],[-50.174668,-30.107569],[-50.172468,-30.102769],[-50.171068,-30.096669],[-50.168368,-30.092669],[-50.166068,-30.086769],[-50.164268,-30.081469],[-50.160968,-30.074269],[-50.158168,-30.067369],[-50.154768,-30.059369],[-50.152368,-30.054069],[-50.150168,-30.049269],[-50.148668,-30.045569],[-50.146168,-30.039969],[-50.143568,-30.034469],[-50.141468,-30.029569],[-50.139368,-30.024869],[-50.136768,-30.019369],[-50.134868,-30.015069],[-50.132768,-30.011069],[-50.130968,-30.006569],[-50.129668,-30.003869],[-50.128468,-30.000469],[-50.126568,-29.995869],[-50.124468,-29.991069],[-50.122768,-29.986669],[-50.121568,-29.983869],[-50.119168,-29.976969],[-50.116868,-29.973369],[-50.115768,-29.970669],[-50.113568,-29.964869],[-50.111068,-29.959269],[-50.109968,-29.956569],[-50.108368,-29.953469],[-50.106368,-29.949269],[-50.104268,-29.945569],[-50.102768,-29.943069],[-50.100668,-29.938369],[-50.099468,-29.935269],[-50.097668,-29.931569],[-50.095568,-29.926869],[-50.093468,-29.922769],[-50.091568,-29.918869],[-50.089468,-29.914469],[-50.086968,-29.909169],[-50.085368,-29.905469],[-50.083668,-29.901569],[-50.080668,-29.895769],[-50.078968,-29.891769],[-50.075968,-29.885669],[-50.073968,-29.881769],[-50.071568,-29.876669],[-50.069668,-29.872769],[-50.066268,-29.865569],[-50.063368,-29.858969],[-50.060868,-29.854769],[-50.059068,-29.850669],[-50.057568,-29.847769],[-50.056168,-29.845169],[-50.054168,-29.841169],[-50.052768,-29.838269],[-50.051068,-29.835069],[-50.048268,-29.830369],[-50.044668,-29.823869],[-50.042768,-29.820169],[-50.040568,-29.816569],[-50.038668,-29.812669],[-50.036668,-29.808669],[-50.034568,-29.805269],[-50.032768,-29.801469],[-50.030868,-29.798169],[-50.028368,-29.793169],[-50.026468,-29.789569],[-50.024268,-29.785569],[-50.022668,-29.782669],[-50.020768,-29.779269],[-50.019268,-29.775869],[-50.017668,-29.772269],[-50.016068,-29.769769],[-50.014268,-29.766069],[-50.012468,-29.762869],[-50.010968,-29.759969],[-50.008768,-29.756269],[-50.007068,-29.752669],[-50.005168,-29.749369],[-50.003468,-29.745769],[-50.000568,-29.740469],[-49.998368,-29.736469],[-49.995868,-29.731969],[-49.993668,-29.728169],[-49.991168,-29.723369],[-49.988568,-29.718669],[-49.985668,-29.713669],[-49.983268,-29.709269],[-49.981368,-29.706069],[-49.979468,-29.702669],[-49.977768,-29.699669],[-49.976368,-29.697069],[-49.974568,-29.694369],[-49.972268,-29.690469],[-49.969768,-29.685869],[-49.968068,-29.682669],[-49.965868,-29.678969],[-49.963768,-29.675869],[-49.962068,-29.672569],[-49.959868,-29.668169],[-49.957268,-29.664269],[-49.955968,-29.661469],[-49.952868,-29.656569],[-49.950368,-29.652569],[-49.948468,-29.649469],[-49.946668,-29.646769],[-49.944668,-29.643269],[-49.943468,-29.640669],[-49.941868,-29.638169],[-49.939968,-29.635269],[-49.938068,-29.632469],[-49.935868,-29.629069],[-49.934468,-29.624669],[-49.931568,-29.621569],[-49.929368,-29.618369],[-49.926568,-29.613869],[-49.924468,-29.610769],[-49.922768,-29.607569],[-49.920268,-29.603969],[-49.917868,-29.600569],[-49.915668,-29.597369],[-49.913068,-29.593469],[-49.910968,-29.590069],[-49.908368,-29.586469],[-49.905368,-29.581869],[-49.902968,-29.578569],[-49.900168,-29.574969],[-49.897868,-29.571669],[-49.895368,-29.567969],[-49.892868,-29.564169],[-49.890668,-29.561269],[-49.888868,-29.558769],[-49.886568,-29.555869],[-49.883868,-29.552169],[-49.881368,-29.548669],[-49.878068,-29.544269],[-49.875568,-29.540569],[-49.872668,-29.536469],[-49.870868,-29.534169],[-49.868368,-29.530369],[-49.865568,-29.526469],[-49.863568,-29.523669],[-49.861668,-29.521469],[-49.859268,-29.517869],[-49.856668,-29.514269],[-49.853468,-29.509969],[-49.851668,-29.507369],[-49.849468,-29.504369],[-49.847268,-29.501369],[-49.844768,-29.497969],[-49.840868,-29.492569],[-49.837968,-29.488869],[-49.835968,-29.485869],[-49.833968,-29.483269],[-49.831868,-29.480369],[-49.829868,-29.477769],[-49.828168,-29.475269],[-49.825768,-29.472569],[-49.823168,-29.469269],[-49.820568,-29.465569],[-49.818468,-29.462869],[-49.815468,-29.459269],[-49.813068,-29.455969],[-49.811068,-29.453269],[-49.809068,-29.450769],[-49.806868,-29.447969],[-49.804068,-29.444069],[-49.799968,-29.439069],[-49.798068,-29.436869],[-49.796068,-29.434369],[-49.794268,-29.431669],[-49.792068,-29.429069],[-49.788868,-29.424969],[-49.786768,-29.422269],[-49.784168,-29.418869],[-49.781968,-29.416069],[-49.779568,-29.413169],[-49.776568,-29.409469],[-49.773668,-29.405669],[-49.770668,-29.401869],[-49.767668,-29.398169],[-49.765668,-29.395769],[-49.763168,-29.392469],[-49.761068,-29.390069],[-49.758068,-29.386469],[-49.755168,-29.382669],[-49.752368,-29.379169],[-49.749668,-29.375869],[-49.746968,-29.372669],[-49.744768,-29.369769],[-49.742468,-29.366969],[-49.740068,-29.363969],[-49.737568,-29.361069],[-49.734968,-29.358669],[-49.731068,-29.356669],[-49.730068,-29.352469],[-49.729968,-29.349569],[-49.728068,-29.347269],[-49.725268,-29.343969],[-49.722268,-29.340169],[-49.720268,-29.337569],[-49.717368,-29.334069],[-49.715068,-29.331469],[-49.713268,-29.327969],[-49.712568,-29.323969],[-49.711568,-29.320569],[-49.710368,-29.317069],[-49.707968,-29.314069],[-49.705768,-29.311269],[-49.702868,-29.307269],[-49.700168,-29.304169],[-49.696768,-29.299969],[-49.694168,-29.296669],[-49.691268,-29.293069],[-49.687768,-29.288769],[-49.685168,-29.285569],[-49.682668,-29.282369],[-49.680468,-29.279869],[-49.678668,-29.277669],[-49.676168,-29.274769],[-49.672768,-29.270669],[-49.669268,-29.266469],[-49.666768,-29.263569],[-49.664768,-29.261069],[-49.662768,-29.258869],[-49.660668,-29.256369],[-49.657668,-29.252969],[-49.654468,-29.249369],[-49.652268,-29.246269],[-49.649868,-29.243669],[-49.647568,-29.240869],[-49.644368,-29.237269],[-49.641568,-29.234469],[-49.638568,-29.231069],[-49.636468,-29.228169],[-49.634168,-29.225669],[-49.631768,-29.223069],[-49.628268,-29.218769],[-49.625968,-29.215869],[-49.623368,-29.212569],[-49.619968,-29.208869],[-49.616968,-29.205369],[-49.614668,-29.203169],[-49.612568,-29.200669],[-49.610568,-29.198569],[-49.607868,-29.195269],[-49.604968,-29.191669],[-49.602768,-29.189369],[-49.600668,-29.187169],[-49.598668,-29.184869],[-49.595868,-29.181169],[-49.592568,-29.177569],[-49.590068,-29.175069],[-49.587268,-29.171969],[-49.584368,-29.169169],[-49.581568,-29.165669],[-49.578968,-29.163069],[-49.576768,-29.160669],[-49.573568,-29.157769],[-49.570168,-29.154169],[-49.567768,-29.151269],[-49.564668,-29.147569],[-49.561568,-29.144069],[-49.557968,-29.140469],[-49.555268,-29.137469],[-49.552568,-29.135169],[-49.550468,-29.132769],[-49.547868,-29.130169],[-49.545268,-29.127469],[-49.542768,-29.124769],[-49.540568,-29.122769],[-49.538068,-29.119969],[-49.534768,-29.116369],[-49.530368,-29.111469],[-49.527368,-29.107769],[-49.525068,-29.104769],[-49.522168,-29.101969],[-49.519268,-29.098969],[-49.516068,-29.095569],[-49.513568,-29.093069],[-49.510368,-29.089769],[-49.506368,-29.085369],[-49.503768,-29.082569],[-49.501568,-29.079869],[-49.499068,-29.077169],[-49.496268,-29.074369],[-49.494068,-29.072069],[-49.491168,-29.069269],[-49.488668,-29.066669],[-49.486368,-29.064169],[-49.483068,-29.060469],[-49.480568,-29.057269],[-49.478468,-29.055169],[-49.476468,-29.052969],[-49.473768,-29.050069],[-49.470868,-29.046869],[-49.468368,-29.044469],[-49.466268,-29.042469],[-49.463368,-29.039569],[-49.460368,-29.036669],[-49.458168,-29.034269],[-49.455968,-29.032069],[-49.453168,-29.029469],[-49.450468,-29.026469],[-49.448168,-29.023669],[-49.445268,-29.020769],[-49.441868,-29.017869],[-49.438868,-29.014369],[-49.435168,-29.010769],[-49.431868,-29.007669],[-49.428568,-29.004169],[-49.424268,-29.000469],[-49.421868,-28.998269],[-49.419168,-28.995769],[-49.416168,-28.992769],[-49.413368,-28.990069],[-49.410268,-28.987169],[-49.407368,-28.984369],[-49.405068,-28.982069],[-49.401768,-28.979169],[-49.398668,-28.975969],[-49.395368,-28.973069],[-49.391768,-28.969769],[-49.388468,-28.966969],[-49.386068,-28.964769],[-49.383868,-28.962669],[-49.381668,-28.960869],[-49.378768,-28.957969],[-49.375768,-28.955469],[-49.372668,-28.952669],[-49.369768,-28.949969],[-49.367568,-28.947969],[-49.364968,-28.945769],[-49.362168,-28.942969],[-49.359468,-28.940569],[-49.355368,-28.936969],[-49.351168,-28.933569],[-49.347268,-28.930169],[-49.343468,-28.927169],[-49.340368,-28.924269],[-49.336968,-28.921469],[-49.334268,-28.919169],[-49.331168,-28.916669],[-49.327468,-28.913469],[-49.324968,-28.911369],[-49.322468,-28.909169],[-49.320168,-28.907269],[-49.316668,-28.903669],[-49.314668,-28.900969],[-49.311868,-28.899769],[-49.308568,-28.897269],[-49.305768,-28.894269],[-49.301968,-28.892669],[-49.298868,-28.890969],[-49.296368,-28.889369],[-49.294268,-28.887169],[-49.291968,-28.884969],[-49.289568,-28.882669],[-49.286268,-28.879669],[-49.283668,-28.877369],[-49.280068,-28.874669],[-49.276468,-28.871669],[-49.274068,-28.869769],[-49.270168,-28.866669],[-49.266468,-28.863869],[-49.263268,-28.861069],[-49.259168,-28.857469],[-49.256368,-28.855069],[-49.253868,-28.853169],[-49.251068,-28.850669],[-49.248368,-28.848469],[-49.245468,-28.846269],[-49.242268,-28.843769],[-49.239168,-28.841269],[-49.236368,-28.839369],[-49.233168,-28.836769],[-49.229568,-28.834269],[-49.226668,-28.832169],[-49.224468,-28.830369],[-49.220868,-28.827869],[-49.217668,-28.825669],[-49.215168,-28.823869],[-49.211868,-28.821369],[-49.209268,-28.819269],[-49.205468,-28.816269],[-49.200968,-28.813069],[-49.197468,-28.810569],[-49.194868,-28.808369],[-49.190968,-28.805869],[-49.187768,-28.802469],[-49.184368,-28.800869],[-49.181368,-28.798969],[-49.178368,-28.796969],[-49.175868,-28.795069],[-49.173068,-28.792769],[-49.170268,-28.791369],[-49.167568,-28.789469],[-49.164468,-28.787369],[-49.161368,-28.785269],[-49.157868,-28.783069],[-49.153468,-28.780069],[-49.149068,-28.777269],[-49.146868,-28.775369],[-49.144268,-28.774069],[-49.140968,-28.771869],[-49.137468,-28.769569],[-49.134168,-28.767369],[-49.131368,-28.765669],[-49.128468,-28.763569],[-49.125568,-28.761869],[-49.122768,-28.759969],[-49.119168,-28.757769],[-49.114968,-28.755269],[-49.111468,-28.753069],[-49.108868,-28.751369],[-49.105568,-28.749369],[-49.099468,-28.745469],[-49.095168,-28.742669],[-49.091568,-28.740369],[-49.088468,-28.738569],[-49.085468,-28.736769],[-49.082168,-28.734669],[-49.078568,-28.732469],[-49.076068,-28.730669],[-49.073268,-28.729269],[-49.069568,-28.727269],[-49.065768,-28.724869],[-49.062768,-28.723069],[-49.058868,-28.721169],[-49.055068,-28.718969],[-49.050368,-28.716169],[-49.047468,-28.714069],[-49.044968,-28.712669],[-49.042568,-28.710969],[-49.039168,-28.709369],[-49.035368,-28.707269],[-49.032368,-28.705669],[-49.028968,-28.703269],[-49.025468,-28.701069],[-49.022668,-28.699369],[-49.018568,-28.697069],[-49.015968,-28.695269],[-49.011768,-28.693569],[-49.007068,-28.690969],[-49.002968,-28.688769],[-48.999468,-28.686569],[-48.995268,-28.684069],[-48.991568,-28.681869],[-48.987868,-28.679669],[-48.984668,-28.677469],[-48.980568,-28.675069],[-48.976968,-28.672869],[-48.973168,-28.670769],[-48.969268,-28.668669],[-48.964768,-28.666369],[-48.960168,-28.664269],[-48.957268,-28.662769],[-48.953768,-28.660869],[-48.950668,-28.659169],[-48.946568,-28.656969],[-48.942768,-28.655069],[-48.940168,-28.653669],[-48.937368,-28.652369],[-48.934468,-28.650869],[-48.931968,-28.649469],[-48.929168,-28.647969],[-48.925568,-28.646269],[-48.922868,-28.644869],[-48.919568,-28.643169],[-48.916068,-28.641569],[-48.912868,-28.639669],[-48.909568,-28.638469],[-48.906268,-28.636769],[-48.902268,-28.634869],[-48.897168,-28.632369],[-48.892068,-28.629969],[-48.887068,-28.627669],[-48.884268,-28.626569],[-48.881368,-28.625269],[-48.878468,-28.624069],[-48.874468,-28.622169],[-48.870468,-28.620469],[-48.866868,-28.618669],[-48.863068,-28.617169],[-48.859168,-28.615869],[-48.855668,-28.614669],[-48.852768,-28.613369],[-48.848968,-28.611969],[-48.845568,-28.610869],[-48.842668,-28.610069],[-48.839468,-28.610269],[-48.836568,-28.611069],[-48.833168,-28.608369],[-48.829368,-28.607069],[-48.825768,-28.606469],[-48.822468,-28.607069],[-48.819268,-28.608569],[-48.815168,-28.606369],[-48.812368,-28.603369],[-48.816068,-28.601969],[-48.817368,-28.597869],[-48.816068,-28.594769],[-48.816968,-28.591669],[-48.815468,-28.588669],[-48.813268,-28.585469],[-48.811268,-28.583169],[-48.808868,-28.580669],[-48.805768,-28.577169],[-48.802968,-28.574569],[-48.800068,-28.572369],[-48.797768,-28.570469],[-48.795368,-28.568469],[-48.792568,-28.567169],[-48.788468,-28.567969],[-48.785568,-28.565469],[-48.788168,-28.563269],[-48.788968,-28.559169],[-48.787568,-28.555869],[-48.785868,-28.553269],[-48.783768,-28.550469],[-48.781468,-28.547869],[-48.778768,-28.545569],[-48.775368,-28.542269],[-48.771868,-28.539569],[-48.768468,-28.537769],[-48.764568,-28.536269],[-48.761768,-28.534469],[-48.761868,-28.531269],[-48.760468,-28.526869],[-48.762368,-28.523469],[-48.761268,-28.520669],[-48.761068,-28.517369],[-48.759068,-28.514369],[-48.756268,-28.511269],[-48.753468,-28.509869],[-48.751868,-28.506769],[-48.748068,-28.506269],[-48.747368,-28.502669],[-48.747268,-28.499069],[-48.745868,-28.496269],[-48.749768,-28.494369],[-48.754168,-28.494369],[-48.758568,-28.494769],[-48.762468,-28.492269],[-48.763968,-28.489169],[-48.765368,-28.485369],[-48.765968,-28.481769],[-48.766068,-28.478669],[-48.766268,-28.474569],[-48.766068,-28.469869],[-48.765968,-28.465869],[-48.765668,-28.462869],[-48.764668,-28.458969],[-48.763168,-28.454269],[-48.761468,-28.450669],[-48.759668,-28.446869],[-48.757168,-28.442669],[-48.755668,-28.440169],[-48.753768,-28.437269],[-48.751568,-28.434169],[-48.749168,-28.430869],[-48.746568,-28.427569],[-48.744168,-28.425769],[-48.741168,-28.425069],[-48.739068,-28.423169],[-48.742568,-28.421069],[-48.746568,-28.416969],[-48.746568,-28.412469],[-48.746268,-28.408469],[-48.745768,-28.405069],[-48.745068,-28.401269],[-48.744368,-28.398369],[-48.743268,-28.395069],[-48.741968,-28.391269],[-48.740068,-28.387169],[-48.738668,-28.383869],[-48.736768,-28.380269],[-48.734268,-28.375969],[-48.732768,-28.373369],[-48.730568,-28.370169],[-48.728668,-28.367169],[-48.726368,-28.364069],[-48.723468,-28.360269],[-48.720968,-28.356669],[-48.718768,-28.353869],[-48.716268,-28.350969],[-48.712868,-28.346969],[-48.710068,-28.343969],[-48.706468,-28.341769],[-48.703168,-28.342069],[-48.702168,-28.338469],[-48.705768,-28.336769],[-48.708168,-28.333269],[-48.709268,-28.328269],[-48.708968,-28.323469],[-48.708168,-28.319569],[-48.707168,-28.316269],[-48.706168,-28.313469],[-48.704668,-28.309369],[-48.703268,-28.305769],[-48.701768,-28.301469],[-48.700268,-28.297869],[-48.698568,-28.294469],[-48.696368,-28.289869],[-48.694968,-28.286969],[-48.693168,-28.283669],[-48.691068,-28.279869],[-48.689068,-28.276469],[-48.686368,-28.272069],[-48.684368,-28.268969],[-48.682468,-28.266069],[-48.680068,-28.262769],[-48.677568,-28.259569],[-48.675568,-28.256769],[-48.673068,-28.254069],[-48.669568,-28.250469],[-48.665568,-28.246969],[-48.660868,-28.244669],[-48.658668,-28.242669],[-48.656468,-28.240369],[-48.651968,-28.238269],[-48.648368,-28.235869],[-48.645768,-28.233669],[-48.646868,-28.230569],[-48.650068,-28.228669],[-48.651768,-28.231669],[-48.655068,-28.230269],[-48.657768,-28.228869],[-48.660868,-28.226969],[-48.662868,-28.223769],[-48.665368,-28.219769],[-48.666668,-28.216969],[-48.666768,-28.213269],[-48.663368,-28.209369],[-48.665668,-28.205969],[-48.663068,-28.202869],[-48.660668,-28.199569],[-48.658468,-28.197369],[-48.657368,-28.193869],[-48.660968,-28.192369],[-48.662868,-28.188769],[-48.662868,-28.183569],[-48.662068,-28.179369],[-48.661468,-28.176469],[-48.660568,-28.173269],[-48.659168,-28.169969],[-48.658068,-28.167069],[-48.656568,-28.164169],[-48.655068,-28.160969],[-48.653068,-28.157169],[-48.650368,-28.153369],[-48.647068,-28.150069],[-48.646268,-28.145769],[-48.644068,-28.143669],[-48.639568,-28.142469],[-48.637468,-28.138969],[-48.641068,-28.137069],[-48.642468,-28.133469],[-48.643268,-28.129169],[-48.640468,-28.126069],[-48.639268,-28.123369],[-48.636468,-28.121969],[-48.633468,-28.122769],[-48.631068,-28.119669],[-48.634568,-28.117969],[-48.635668,-28.114469],[-48.634568,-28.111769],[-48.631868,-28.108969],[-48.635668,-28.107569],[-48.636768,-28.104669],[-48.633768,-28.100869],[-48.632968,-28.096669],[-48.632068,-28.093369],[-48.630968,-28.090069],[-48.631668,-28.085369],[-48.629068,-28.082569],[-48.628068,-28.078469],[-48.625168,-28.074869],[-48.621168,-28.074869],[-48.619068,-28.072969],[-48.616868,-28.070469],[-48.615068,-28.065869],[-48.610368,-28.062969],[-48.608368,-28.059169],[-48.607168,-28.054969],[-48.606668,-28.051569],[-48.607068,-28.047569],[-48.609668,-28.043369],[-48.607868,-28.038469],[-48.605668,-28.035369],[-48.602468,-28.033769],[-48.598968,-28.033469],[-48.598468,-28.030069],[-48.600968,-28.028369],[-48.602268,-28.025069],[-48.604268,-28.020469],[-48.607868,-28.017569],[-48.611068,-28.019369],[-48.615068,-28.022669],[-48.619668,-28.022069],[-48.623268,-28.019669],[-48.626368,-28.016069],[-48.628868,-28.011269],[-48.630268,-28.007769],[-48.631268,-28.004369],[-48.631768,-28.001069],[-48.632068,-27.997369],[-48.631868,-27.992269],[-48.631268,-27.988969],[-48.629868,-27.984969],[-48.629068,-27.982069],[-48.629068,-27.979169],[-48.627968,-27.974569],[-48.625168,-27.971969],[-48.623368,-27.968769],[-48.621268,-27.965069],[-48.620868,-27.961769],[-48.623268,-27.960169],[-48.625468,-27.958269],[-48.624968,-27.953969],[-48.624068,-27.951069],[-48.623068,-27.947369],[-48.620868,-27.944969],[-48.619168,-27.941669],[-48.617468,-27.938769],[-48.615268,-27.935569],[-48.613368,-27.932969],[-48.610668,-27.929369],[-48.607868,-27.925769],[-48.605668,-27.923069],[-48.603668,-27.920769],[-48.601668,-27.918469],[-48.599468,-27.916169],[-48.595968,-27.912769],[-48.591968,-27.909169],[-48.590068,-27.905869],[-48.586268,-27.904469],[-48.582868,-27.905569],[-48.581468,-27.902269],[-48.581768,-27.899069],[-48.580068,-27.895769],[-48.577468,-27.893969],[-48.575168,-27.891469],[-48.573568,-27.886769],[-48.575268,-27.883469],[-48.575968,-27.879069],[-48.578568,-27.882369],[-48.581768,-27.883069],[-48.585068,-27.881669],[-48.588268,-27.882369],[-48.590168,-27.884869],[-48.594468,-27.883769],[-48.597368,-27.880769],[-48.599168,-27.878469],[-48.600568,-27.875169],[-48.601668,-27.870869],[-48.601968,-27.866969],[-48.601768,-27.863269],[-48.600868,-27.858969],[-48.599568,-27.855969],[-48.598068,-27.853369],[-48.595868,-27.850969],[-48.592968,-27.849469],[-48.588668,-27.848069],[-48.583968,-27.847769],[-48.580768,-27.848969],[-48.578768,-27.851369],[-48.576768,-27.847669],[-48.576068,-27.843669],[-48.573268,-27.842069],[-48.569268,-27.835869],[-48.565968,-27.834269],[-48.560868,-27.835369],[-48.559468,-27.838269],[-48.555868,-27.835969],[-48.552468,-27.833969],[-48.549368,-27.832369],[-48.545668,-27.830169],[-48.542568,-27.827069],[-48.541668,-27.824069],[-48.540868,-27.820969],[-48.540068,-27.816969],[-48.538368,-27.812969],[-48.536768,-27.810469],[-48.535868,-27.807769],[-48.536168,-27.803669],[-48.533968,-27.800069],[-48.534568,-27.797169],[-48.532068,-27.792469],[-48.528668,-27.788169],[-48.525468,-27.785369],[-48.522568,-27.783469],[-48.519568,-27.782069],[-48.515668,-27.781269],[-48.511468,-27.781269],[-48.507768,-27.783069],[-48.507668,-27.786769],[-48.507368,-27.790069],[-48.504068,-27.793069],[-48.499468,-27.793969],[-48.495068,-27.794269],[-48.491868,-27.791969],[-48.489368,-27.790569],[-48.486468,-27.788969],[-48.485268,-27.786169],[-48.483868,-27.782769],[-48.487168,-27.778769],[-48.486868,-27.774769],[-48.484668,-27.771469],[-48.480568,-27.769869],[-48.476968,-27.770069],[-48.478268,-27.763069],[-48.482068,-27.761069],[-48.485268,-27.759569],[-48.487868,-27.755969],[-48.492168,-27.756369],[-48.494968,-27.757469],[-48.497768,-27.755769],[-48.499668,-27.752669],[-48.499468,-27.749469],[-48.503468,-27.749469],[-48.506268,-27.747369],[-48.507368,-27.744669],[-48.507668,-27.741369],[-48.507768,-27.737469],[-48.507468,-27.733369],[-48.506668,-27.728669],[-48.505268,-27.724569],[-48.503068,-27.719569],[-48.502168,-27.715069],[-48.500868,-27.712269],[-48.499168,-27.709269],[-48.497468,-27.706469],[-48.495268,-27.703569],[-48.492968,-27.700669],[-48.489968,-27.698169],[-48.487468,-27.696069],[-48.483868,-27.694369],[-48.481668,-27.691269],[-48.480268,-27.686869],[-48.479468,-27.683269],[-48.479168,-27.678969],[-48.478368,-27.675569],[-48.477268,-27.671669],[-48.475968,-27.668069],[-48.474568,-27.664569],[-48.472568,-27.660569],[-48.470868,-27.657269],[-48.468768,-27.654269],[-48.466468,-27.650169],[-48.464368,-27.647169],[-48.461568,-27.643269],[-48.458968,-27.640069],[-48.456868,-27.637469],[-48.454568,-27.634569],[-48.451368,-27.631269],[-48.447768,-27.629469],[-48.445168,-27.626269],[-48.442768,-27.622469],[-48.439168,-27.620069],[-48.437968,-27.617269],[-48.433068,-27.614469],[-48.435568,-27.610269],[-48.434968,-27.606369],[-48.432968,-27.602869],[-48.430068,-27.599569],[-48.428368,-27.595869],[-48.425768,-27.592869],[-48.422468,-27.591569],[-48.419668,-27.592269],[-48.418368,-27.588669],[-48.419168,-27.584369],[-48.416768,-27.580169],[-48.414468,-27.577669],[-48.412068,-27.575369],[-48.412768,-27.572469],[-48.416168,-27.572069],[-48.418868,-27.573169],[-48.422268,-27.573469],[-48.425868,-27.572369],[-48.427868,-27.568769],[-48.428968,-27.565169],[-48.429368,-27.561069],[-48.429168,-27.555469],[-48.428068,-27.549969],[-48.426168,-27.543869],[-48.424168,-27.538769],[-48.422468,-27.534769],[-48.420868,-27.531569],[-48.419468,-27.528669],[-48.417868,-27.525969],[-48.415868,-27.522269],[-48.413168,-27.517669],[-48.409468,-27.511769],[-48.407368,-27.509169],[-48.405368,-27.505969],[-48.403068,-27.502969],[-48.400068,-27.499369],[-48.396768,-27.495469],[-48.394268,-27.492469],[-48.391268,-27.489369],[-48.387368,-27.485769],[-48.384668,-27.483869],[-48.382368,-27.481769],[-48.379168,-27.481369],[-48.375868,-27.479569],[-48.374468,-27.474769],[-48.374368,-27.470569],[-48.375868,-27.467269],[-48.376568,-27.462969],[-48.375168,-27.458969],[-48.373568,-27.455469],[-48.371268,-27.451069],[-48.368268,-27.449269],[-48.363868,-27.448169],[-48.360668,-27.445169],[-48.359268,-27.440469],[-48.361368,-27.437969],[-48.363568,-27.435469],[-48.365368,-27.433269],[-48.367268,-27.435469],[-48.368868,-27.438869],[-48.370068,-27.442369],[-48.372968,-27.443869],[-48.375968,-27.443569],[-48.379168,-27.442669],[-48.382968,-27.441269],[-48.387068,-27.438769],[-48.389868,-27.436569],[-48.392868,-27.433669],[-48.396168,-27.429769],[-48.398668,-27.426169],[-48.400668,-27.422769],[-48.402268,-27.418869],[-48.403668,-27.415569],[-48.403168,-27.412569],[-48.403168,-27.409469],[-48.405468,-27.406269],[-48.410568,-27.405169],[-48.412768,-27.402269],[-48.413468,-27.398969],[-48.414168,-27.395469],[-48.413168,-27.391769],[-48.411968,-27.387969],[-48.410968,-27.384869],[-48.413468,-27.382769],[-48.415968,-27.380969],[-48.483868,-27.378569],[-48.506368,-27.393969],[-48.516468,-27.399769],[-48.519868,-27.402569],[-48.526168,-27.408169],[-48.532768,-27.388269],[-48.532368,-27.382069],[-48.528168,-27.377969],[-48.531168,-27.374169],[-48.532268,-27.371269],[-48.533468,-27.367169],[-48.535368,-27.363969],[-48.536168,-27.361069],[-48.536368,-27.357869],[-48.533668,-27.354169],[-48.534468,-27.349769],[-48.531568,-27.347869],[-48.527368,-27.344869],[-48.526968,-27.340069],[-48.526168,-27.336169],[-48.525168,-27.333269],[-48.529468,-27.334569],[-48.533168,-27.333169],[-48.535268,-27.330369],[-48.537768,-27.325969],[-48.538968,-27.322869],[-48.539768,-27.318469],[-48.539568,-27.312969],[-48.539168,-27.309069],[-48.538468,-27.305869],[-48.540268,-27.302969],[-48.539768,-27.299969],[-48.543068,-27.298869],[-48.544968,-27.302269],[-48.546968,-27.305469],[-48.550068,-27.305269],[-48.552568,-27.306969],[-48.552768,-27.310769],[-48.554168,-27.314169],[-48.558368,-27.314469],[-48.561868,-27.316069],[-48.564168,-27.312969],[-48.564868,-27.309469],[-48.568068,-27.309869],[-48.569968,-27.312269],[-48.573168,-27.314869],[-48.576268,-27.314869],[-48.579268,-27.312969],[-48.581868,-27.314869],[-48.585568,-27.319169],[-48.590068,-27.318469],[-48.593368,-27.316269],[-48.596668,-27.311669],[-48.600368,-27.306069],[-48.603168,-27.301369],[-48.605568,-27.296469],[-48.607768,-27.291769],[-48.609168,-27.288369],[-48.610768,-27.284869],[-48.612168,-27.282269],[-48.613368,-27.278169],[-48.614968,-27.274069],[-48.615368,-27.270069],[-48.615468,-27.266069],[-48.615368,-27.262369],[-48.615468,-27.257169],[-48.615068,-27.253769],[-48.614368,-27.250169],[-48.614368,-27.245869],[-48.613968,-27.241069],[-48.613268,-27.235669],[-48.612168,-27.231669],[-48.610368,-27.227569],[-48.608868,-27.223369],[-48.606668,-27.219469],[-48.602868,-27.217269],[-48.601368,-27.219869],[-48.598368,-27.219069],[-48.595668,-27.217669],[-48.592868,-27.215869],[-48.588968,-27.214069],[-48.585468,-27.211969],[-48.582568,-27.209769],[-48.578168,-27.210369],[-48.575468,-27.206869],[-48.571768,-27.203269],[-48.568568,-27.201469],[-48.564168,-27.199569],[-48.559168,-27.197169],[-48.554668,-27.195969],[-48.552168,-27.191969],[-48.548068,-27.187469],[-48.544968,-27.185169],[-48.542468,-27.182969],[-48.539268,-27.181569],[-48.536368,-27.180869],[-48.532668,-27.180469],[-48.528368,-27.180469],[-48.524268,-27.180769],[-48.520168,-27.181969],[-48.515668,-27.183569],[-48.512468,-27.185469],[-48.509168,-27.187969],[-48.506368,-27.190269],[-48.504168,-27.192669],[-48.501868,-27.195269],[-48.499968,-27.198169],[-48.499768,-27.202669],[-48.501568,-27.206469],[-48.503768,-27.208269],[-48.506268,-27.210369],[-48.509068,-27.211869],[-48.512168,-27.213969],[-48.514968,-27.215969],[-48.515068,-27.218969],[-48.512368,-27.219869],[-48.511068,-27.216769],[-48.508068,-27.216569],[-48.504068,-27.216269],[-48.501268,-27.214769],[-48.498368,-27.215969],[-48.495268,-27.215969],[-48.493368,-27.212969],[-48.489968,-27.211269],[-48.486768,-27.209369],[-48.483568,-27.209669],[-48.480368,-27.208169],[-48.477468,-27.206069],[-48.476368,-27.203269],[-48.476968,-27.199869],[-48.482068,-27.198969],[-48.485368,-27.200469],[-48.488268,-27.202569],[-48.491668,-27.201069],[-48.494668,-27.198869],[-48.496268,-27.196369],[-48.497668,-27.193469],[-48.498868,-27.189169],[-48.499468,-27.184969],[-48.499768,-27.181869],[-48.499668,-27.177569],[-48.499068,-27.173969],[-48.498368,-27.171069],[-48.497368,-27.167869],[-48.495568,-27.165269],[-48.492268,-27.164169],[-48.488368,-27.163769],[-48.484968,-27.162069],[-48.484768,-27.157369],[-48.482768,-27.154069],[-48.478668,-27.153969],[-48.474168,-27.151969],[-48.471968,-27.148369],[-48.468368,-27.145069],[-48.473068,-27.145369],[-48.476468,-27.144669],[-48.476668,-27.140769],[-48.479768,-27.144669],[-48.483668,-27.147869],[-48.487468,-27.148469],[-48.490568,-27.147969],[-48.494768,-27.146269],[-48.499068,-27.145669],[-48.501968,-27.145069],[-48.505168,-27.142869],[-48.507968,-27.140069],[-48.510968,-27.136569],[-48.513268,-27.132069],[-48.512368,-27.129069],[-48.512368,-27.125569],[-48.511368,-27.121169],[-48.507668,-27.118569],[-48.506068,-27.114169],[-48.508168,-27.111469],[-48.509968,-27.115069],[-48.512468,-27.118069],[-48.517168,-27.120769],[-48.521468,-27.118869],[-48.524768,-27.122369],[-48.527668,-27.122969],[-48.529468,-27.126269],[-48.525368,-27.126369],[-48.526768,-27.130269],[-48.530068,-27.133469],[-48.532268,-27.135669],[-48.534768,-27.137469],[-48.536268,-27.140369],[-48.536968,-27.143169],[-48.533668,-27.145469],[-48.537368,-27.150069],[-48.541968,-27.151569],[-48.544168,-27.153769],[-48.548068,-27.156269],[-48.551868,-27.157369],[-48.554768,-27.156569],[-48.556968,-27.153369],[-48.560568,-27.154769],[-48.563768,-27.155169],[-48.567368,-27.154469],[-48.571268,-27.152869],[-48.575968,-27.150369],[-48.579568,-27.147869],[-48.583168,-27.145669],[-48.586568,-27.143669],[-48.590168,-27.139569],[-48.593368,-27.136369],[-48.596168,-27.132769],[-48.599168,-27.129569],[-48.601368,-27.126869],[-48.603968,-27.123269],[-48.606468,-27.119169],[-48.608168,-27.116069],[-48.610068,-27.111669],[-48.611468,-27.108369],[-48.612568,-27.105069],[-48.613568,-27.102069],[-48.613668,-27.099169],[-48.611968,-27.094869],[-48.609268,-27.091969],[-48.605668,-27.091569],[-48.602068,-27.093769],[-48.598968,-27.090369],[-48.595968,-27.087969],[-48.594568,-27.083469],[-48.590368,-27.080469],[-48.593368,-27.078569],[-48.595068,-27.073869],[-48.595068,-27.070169],[-48.593968,-27.066269],[-48.593668,-27.061969],[-48.590368,-27.060469],[-48.588668,-27.057169],[-48.587068,-27.053869],[-48.587668,-27.049669],[-48.587068,-27.045669],[-48.584068,-27.043369],[-48.580768,-27.040269],[-48.581768,-27.035969],[-48.581468,-27.032069],[-48.581068,-27.028069],[-48.578768,-27.024369],[-48.574868,-27.023969],[-48.575768,-27.019369],[-48.573468,-27.016769],[-48.570768,-27.013269],[-48.570568,-27.009169],[-48.574568,-27.009969],[-48.577468,-27.011069],[-48.580168,-27.008769],[-48.581768,-27.005969],[-48.582268,-27.002169],[-48.582668,-26.998769],[-48.582268,-26.994769],[-48.587268,-26.992769],[-48.588468,-26.995469],[-48.590868,-26.997169],[-48.594868,-26.995869],[-48.598368,-26.994169],[-48.601968,-26.996069],[-48.603168,-26.999369],[-48.602368,-27.003369],[-48.606668,-27.005469],[-48.610268,-27.005669],[-48.613568,-27.004969],[-48.616168,-27.003769],[-48.619068,-27.002169],[-48.621668,-26.999869],[-48.624368,-26.997369],[-48.626668,-26.995069],[-48.628768,-26.991669],[-48.631268,-26.987569],[-48.633468,-26.984169],[-48.634368,-26.980569],[-48.634868,-26.977269],[-48.634368,-26.974169],[-48.631668,-26.971969],[-48.628268,-26.971669],[-48.627768,-26.968369],[-48.627668,-26.965169],[-48.625968,-26.961469],[-48.628768,-26.959669],[-48.629068,-26.956769],[-48.629168,-26.952869],[-48.628868,-26.948269],[-48.628468,-26.944969],[-48.627968,-26.941269],[-48.627068,-26.936569],[-48.626268,-26.932569],[-48.624468,-26.929769],[-48.623368,-26.926569],[-48.627368,-26.928369],[-48.631068,-26.928869],[-48.633768,-26.925869],[-48.637368,-26.921869],[-48.641068,-26.918969],[-48.641468,-26.914569],[-48.644268,-26.911269],[-48.643568,-26.906769],[-48.643268,-26.903069],[-48.642868,-26.898369],[-48.642068,-26.893969],[-48.641468,-26.890369],[-48.640668,-26.886369],[-48.639668,-26.882369],[-48.639268,-26.878569],[-48.638268,-26.873269],[-48.637668,-26.869369],[-48.636868,-26.865569],[-48.636268,-26.861969],[-48.635168,-26.857569],[-48.634068,-26.852869],[-48.633068,-26.848669],[-48.632368,-26.845169],[-48.631068,-26.841969],[-48.629568,-26.839069],[-48.628768,-26.836169],[-48.627368,-26.833269],[-48.625168,-26.830469],[-48.623268,-26.827569],[-48.620768,-26.824569],[-48.618868,-26.827869],[-48.615568,-26.825769],[-48.612268,-26.825169],[-48.609368,-26.827469],[-48.606068,-26.826569],[-48.602768,-26.825769],[-48.600968,-26.822669],[-48.599468,-26.819669],[-48.599468,-26.816669],[-48.599268,-26.813769],[-48.598068,-26.811069],[-48.597068,-26.805769],[-48.595068,-26.801569],[-48.593168,-26.798569],[-48.590568,-26.796669],[-48.587268,-26.797469],[-48.585668,-26.794269],[-48.587268,-26.790069],[-48.584868,-26.785569],[-48.587868,-26.783669],[-48.591468,-26.785569],[-48.594868,-26.784169],[-48.596468,-26.781769],[-48.598168,-26.778669],[-48.598368,-26.773969],[-48.602068,-26.776769],[-48.603168,-26.780369],[-48.602768,-26.784769],[-48.605068,-26.787769],[-48.607468,-26.789869],[-48.611168,-26.790369],[-48.614668,-26.790569],[-48.617968,-26.789969],[-48.621268,-26.788669],[-48.625468,-26.786469],[-48.629668,-26.783469],[-48.632668,-26.780569],[-48.634968,-26.777569],[-48.636768,-26.774469],[-48.638868,-26.771269],[-48.640468,-26.767569],[-48.643268,-26.765769],[-48.646768,-26.763169],[-48.649868,-26.764969],[-48.651268,-26.767869],[-48.652868,-26.770969],[-48.656968,-26.772269],[-48.660968,-26.771469],[-48.664168,-26.770369],[-48.667068,-26.768269],[-48.669768,-26.765769],[-48.671668,-26.762969],[-48.673068,-26.760369],[-48.674168,-26.757469],[-48.675068,-26.754569],[-48.676068,-26.751569],[-48.676868,-26.747669],[-48.677868,-26.742469],[-48.679168,-26.736869],[-48.680068,-26.732769],[-48.680568,-26.729769],[-48.681068,-26.725969],[-48.681868,-26.721669],[-48.681968,-26.718069],[-48.681668,-26.714369],[-48.681568,-26.710669],[-48.681368,-26.707569],[-48.681168,-26.704269],[-48.680868,-26.701069],[-48.679768,-26.697969],[-48.682168,-26.694369],[-48.684368,-26.691869],[-48.686868,-26.688869],[-48.687168,-26.685469],[-48.687668,-26.680869],[-48.688468,-26.677169],[-48.688068,-26.672769],[-48.687168,-26.666769],[-48.686568,-26.662769],[-48.686068,-26.659269],[-48.685168,-26.655469],[-48.684368,-26.652269],[-48.683768,-26.648969],[-48.683268,-26.646069],[-48.682168,-26.642169],[-48.682968,-26.638869],[-48.681568,-26.634969],[-48.680068,-26.628769],[-48.679668,-26.624369],[-48.678668,-26.620569],[-48.677568,-26.616869],[-48.676468,-26.612869],[-48.675568,-26.609969],[-48.674668,-26.606969],[-48.673568,-26.604169],[-48.672468,-26.600869],[-48.671068,-26.597269],[-48.669668,-26.593369],[-48.668168,-26.589769],[-48.666968,-26.586469],[-48.665668,-26.583169],[-48.664568,-26.580169],[-48.663168,-26.577469],[-48.661168,-26.572669],[-48.659168,-26.567969],[-48.657568,-26.564369],[-48.656168,-26.560869],[-48.654768,-26.555869],[-48.652368,-26.551169],[-48.650768,-26.547269],[-48.649368,-26.544569],[-48.647968,-26.541669],[-48.646568,-26.538069],[-48.645368,-26.535069],[-48.643468,-26.531269],[-48.642068,-26.528469],[-48.640468,-26.525169],[-48.638868,-26.521769],[-48.636768,-26.517369],[-48.634568,-26.513169],[-48.632968,-26.510369],[-48.630968,-26.506369],[-48.628468,-26.501969],[-48.627068,-26.499469],[-48.625168,-26.496169],[-48.623268,-26.492969],[-48.621668,-26.490469],[-48.618668,-26.485569],[-48.616468,-26.481969],[-48.614168,-26.478369],[-48.611668,-26.474469],[-48.609968,-26.471769],[-48.606768,-26.467669],[-48.603568,-26.464069],[-48.599568,-26.460369],[-48.597068,-26.457269],[-48.595568,-26.453869],[-48.596668,-26.449869],[-48.598168,-26.445969],[-48.598868,-26.443069],[-48.599468,-26.439069],[-48.599468,-26.435169],[-48.599168,-26.430869],[-48.598368,-26.425869],[-48.597568,-26.422569],[-48.596368,-26.418169],[-48.594568,-26.413169],[-48.592968,-26.409169],[-48.591568,-26.405669],[-48.589868,-26.401969],[-48.588668,-26.399269],[-48.587268,-26.396769],[-48.585068,-26.392569],[-48.582568,-26.387769],[-48.579668,-26.383269],[-48.577668,-26.379969],[-48.574968,-26.375969],[-48.572368,-26.371669],[-48.569968,-26.367969],[-48.568268,-26.364769],[-48.565168,-26.359369],[-48.562168,-26.352769],[-48.561268,-26.349969],[-48.560268,-26.346969],[-48.559168,-26.342269],[-48.557768,-26.337269],[-48.556068,-26.332569],[-48.554768,-26.329069],[-48.552968,-26.324569],[-48.550568,-26.319369],[-48.548868,-26.315469],[-48.547468,-26.312769],[-48.546168,-26.309869],[-48.544668,-26.307169],[-48.542468,-26.302469],[-48.539468,-26.297269],[-48.537068,-26.292869],[-48.535068,-26.289469],[-48.533168,-26.285969],[-48.531268,-26.282369],[-48.528768,-26.277969],[-48.526968,-26.274869],[-48.524468,-26.270769],[-48.522168,-26.266869],[-48.520468,-26.264269],[-48.518968,-26.261569],[-48.517168,-26.258869],[-48.515668,-26.256269],[-48.514068,-26.253769],[-48.512168,-26.250569],[-48.510268,-26.247369],[-48.508768,-26.244769],[-48.507068,-26.242169],[-48.504168,-26.237469],[-48.500568,-26.235269],[-48.499768,-26.232069],[-48.498268,-26.228869],[-48.496568,-26.226469],[-48.495768,-26.222669],[-48.494068,-26.218769],[-48.496868,-26.217269],[-48.500768,-26.219269],[-48.501568,-26.223369],[-48.503568,-26.225969],[-48.507168,-26.226369],[-48.512068,-26.225269],[-48.515368,-26.223169],[-48.518268,-26.220969],[-48.520768,-26.217869],[-48.522168,-26.215169],[-48.523468,-26.212569],[-48.525068,-26.208769],[-48.525968,-26.205069],[-48.526568,-26.201469],[-48.527268,-26.196369],[-48.527568,-26.193069],[-48.527668,-26.189669],[-48.527568,-26.186069],[-48.527068,-26.182969],[-48.526268,-26.179669],[-48.524868,-26.176069],[-48.524068,-26.171769],[-48.525368,-26.167169],[-48.528068,-26.164169],[-48.531968,-26.163369],[-48.534868,-26.165969],[-48.537068,-26.168169],[-48.540268,-26.169769],[-48.543868,-26.170369],[-48.548568,-26.170869],[-48.553668,-26.169769],[-48.558268,-26.169169],[-48.564468,-26.168169],[-48.569268,-26.167769],[-48.572868,-26.167169],[-48.575968,-26.165969],[-48.581868,-26.163169],[-48.585368,-26.159769],[-48.587268,-26.156569],[-48.588968,-26.153769],[-48.590068,-26.150469],[-48.591268,-26.147369],[-48.592568,-26.143969],[-48.594568,-26.138969],[-48.596168,-26.134269],[-48.597268,-26.130269],[-48.598368,-26.126669],[-48.598968,-26.123769],[-48.599568,-26.120769],[-48.600468,-26.116369],[-48.600968,-26.111869],[-48.601668,-26.108069],[-48.602068,-26.103169],[-48.602468,-26.099769],[-48.602768,-26.095569],[-48.603068,-26.090069],[-48.603168,-26.085769],[-48.603168,-26.082569],[-48.603068,-26.079369],[-48.603068,-26.076369],[-48.603068,-26.072469],[-48.606068,-26.069669],[-48.608668,-26.066869],[-48.610368,-26.062669],[-48.610568,-26.057769],[-48.610368,-26.054069],[-48.610268,-26.049969],[-48.609768,-26.045769],[-48.609168,-26.040669],[-48.608868,-26.037269],[-48.608368,-26.033069],[-48.607868,-26.029269],[-48.607468,-26.026269],[-48.606768,-26.023169],[-48.606068,-26.018469],[-48.604968,-26.013469],[-48.603868,-26.008469],[-48.602468,-26.002469],[-48.602068,-25.997969],[-48.600568,-25.993669],[-48.599268,-25.989069],[-48.597868,-25.984269],[-48.596468,-25.980569],[-48.595568,-25.977469],[-48.594468,-25.970369],[-48.592868,-25.964769],[-48.591768,-25.960969],[-48.590868,-25.957869],[-48.589468,-25.954069],[-48.587868,-25.949569],[-48.586268,-25.945469],[-48.584668,-25.941269],[-48.583268,-25.938069],[-48.581868,-25.934469],[-48.580368,-25.930569],[-48.578568,-25.926569],[-48.576868,-25.922469],[-48.575468,-25.919269],[-48.573768,-25.916169],[-48.571268,-25.911169],[-48.569068,-25.906969],[-48.566568,-25.902069],[-48.564068,-25.897269],[-48.561868,-25.893269],[-48.560868,-25.889669],[-48.565468,-25.888469],[-48.567368,-25.885769],[-48.567368,-25.882069],[-48.565768,-25.878069],[-48.564168,-25.874769],[-48.562968,-25.871169],[-48.562768,-25.866469],[-48.564168,-25.862469],[-48.564568,-25.856769],[-48.561668,-25.855069],[-48.559068,-25.853669],[-48.554768,-25.852869],[-48.551168,-25.850869],[-48.547868,-25.851469],[-48.544668,-25.849769],[-48.540268,-25.848069],[-48.535668,-25.850969],[-48.535068,-25.847369],[-48.536968,-25.844069],[-48.535968,-25.838669],[-48.534468,-25.832269],[-48.533368,-25.827469],[-48.532068,-25.824269],[-48.530168,-25.820269],[-48.531668,-25.815569],[-48.531168,-25.811969],[-48.529768,-25.808369],[-48.527068,-25.802969],[-48.524068,-25.797569],[-48.521168,-25.792169],[-48.519368,-25.788069],[-48.517168,-25.784169],[-48.515668,-25.780969],[-48.512368,-25.774269],[-48.510768,-25.771269],[-48.509068,-25.768169],[-48.507368,-25.764569],[-48.504668,-25.759969],[-48.502768,-25.756669],[-48.500868,-25.753369],[-48.497268,-25.747269],[-48.492468,-25.739369],[-48.489468,-25.734469],[-48.487468,-25.730869],[-48.484768,-25.726669],[-48.482168,-25.722269],[-48.480068,-25.718669],[-48.477868,-25.714469],[-48.473668,-25.708269],[-48.471968,-25.705669],[-48.470068,-25.702569],[-48.468068,-25.699369],[-48.466168,-25.696369],[-48.464268,-25.693469],[-48.462568,-25.690569],[-48.460668,-25.687969],[-48.457568,-25.683369],[-48.455668,-25.680469],[-48.453568,-25.677569],[-48.450668,-25.673569],[-48.447968,-25.668869],[-48.444968,-25.663869],[-48.442468,-25.659469],[-48.440268,-25.655969],[-48.437668,-25.651769],[-48.435768,-25.648769],[-48.433568,-25.645669],[-48.430468,-25.641469],[-48.427468,-25.637669],[-48.423968,-25.633569],[-48.420568,-25.629869],[-48.417768,-25.626869],[-48.414468,-25.623269],[-48.411768,-25.620769],[-48.408468,-25.617669],[-48.404168,-25.613969],[-48.401568,-25.611969],[-48.397268,-25.608869],[-48.391468,-25.604769],[-48.385268,-25.600669],[-48.379168,-25.597369],[-48.376568,-25.595669],[-48.371168,-25.592569],[-48.368068,-25.590669],[-48.364968,-25.589069],[-48.360768,-25.587269],[-48.357268,-25.585669],[-48.353568,-25.584369],[-48.319868,-25.586469],[-48.312968,-25.575669],[-48.310568,-25.573169],[-48.307568,-25.570469],[-48.305068,-25.568769],[-48.301968,-25.566669],[-48.299168,-25.566069],[-48.301068,-25.563069],[-48.302168,-25.559669],[-48.300268,-25.556169],[-48.298168,-25.552969],[-48.296368,-25.550069],[-48.294468,-25.547869],[-48.290868,-25.546369],[-48.276868,-25.514069],[-48.310768,-25.492569],[-48.301968,-25.492469],[-48.295868,-25.491469],[-48.286968,-25.489169],[-48.283068,-25.486769],[-48.278768,-25.483269],[-48.275668,-25.480569],[-48.273468,-25.478669],[-48.270368,-25.476669],[-48.266268,-25.474169],[-48.262768,-25.472369],[-48.258468,-25.470569],[-48.254968,-25.469469],[-48.251568,-25.467569],[-48.246868,-25.465369],[-48.243268,-25.465369],[-48.238668,-25.465869],[-48.233668,-25.469269],[-48.227368,-25.472269],[-48.223168,-25.473669],[-48.219068,-25.473669],[-48.216168,-25.473769],[-48.213468,-25.471369],[-48.212668,-25.468069],[-48.212068,-25.465169],[-48.211568,-25.462269],[-48.210668,-25.459369],[-48.209268,-25.455169],[-48.207068,-25.449669],[-48.205668,-25.445769],[-48.204568,-25.442969],[-48.202668,-25.438469],[-48.200768,-25.434069],[-48.199568,-25.431169],[-48.197168,-25.426869],[-48.195168,-25.423069],[-48.193168,-25.419569],[-48.191568,-25.416469],[-48.188568,-25.411969],[-48.185468,-25.406969],[-48.181668,-25.401269],[-48.179968,-25.398969],[-48.177968,-25.395969],[-48.175568,-25.392669],[-48.173568,-25.390069],[-48.171468,-25.387169],[-48.169268,-25.384269],[-48.166768,-25.380969],[-48.164568,-25.378069],[-48.162768,-25.375469],[-48.159868,-25.372169],[-48.157268,-25.368869],[-48.154868,-25.366069],[-48.152568,-25.363269],[-48.150468,-25.361069],[-48.147668,-25.357869],[-48.143968,-25.353869],[-48.140368,-25.349969],[-48.137068,-25.346969],[-48.134568,-25.344469],[-48.131368,-25.341469],[-48.127168,-25.337869],[-48.123368,-25.334669],[-48.120468,-25.332369],[-48.116168,-25.329569],[-48.112168,-25.326569],[-48.109268,-25.324569],[-48.105668,-25.321369],[-48.102068,-25.318469],[-48.099568,-25.316269],[-48.098368,-25.312669],[-48.096668,-25.309469],[-48.091168,-25.304369],[-48.084268,-25.296769],[-48.079068,-25.290669],[-48.069368,-25.280169],[-48.063768,-25.274469],[-48.061268,-25.271869],[-48.056368,-25.267369],[-48.052568,-25.263869],[-48.046868,-25.258469],[-48.043068,-25.255269],[-48.034768,-25.247969],[-48.025368,-25.240069],[-48.016768,-25.233069],[-48.013168,-25.230269],[-48.002368,-25.221669],[-47.991568,-25.212969],[-47.983668,-25.206169],[-47.978068,-25.202169],[-47.974568,-25.200969],[-47.972268,-25.198269],[-47.970868,-25.195769],[-47.968768,-25.193769],[-47.965368,-25.190869],[-47.962868,-25.188569],[-47.959768,-25.185869],[-47.956068,-25.182969],[-47.952968,-25.180269],[-47.945968,-25.174269],[-47.942468,-25.171469],[-47.934868,-25.166969],[-47.930868,-25.165069],[-47.927568,-25.162269],[-47.923268,-25.160669],[-47.918868,-25.159769],[-47.914568,-25.159169],[-47.912768,-25.156569],[-47.915568,-25.155869],[-47.918868,-25.154169],[-47.919568,-25.150069],[-47.918968,-25.145669],[-47.916668,-25.143569],[-47.915568,-25.139669],[-47.914468,-25.135369],[-47.913068,-25.130969],[-47.911768,-25.127369],[-47.909868,-25.123569],[-47.908368,-25.119469],[-47.905868,-25.116969],[-47.903368,-25.114469],[-47.900768,-25.110669],[-47.897168,-25.108569],[-47.895768,-25.105269],[-47.899768,-25.104169],[-47.902568,-25.102569],[-47.904068,-25.099569],[-47.904568,-25.094769],[-47.903968,-25.089769],[-47.903068,-25.086469],[-47.902668,-25.082369],[-47.902668,-25.079269],[-47.902568,-25.074869],[-47.902568,-25.070969],[-47.902368,-25.067669],[-47.903668,-25.064469],[-47.907368,-25.063069],[-47.910868,-25.052869],[-47.903768,-25.052469],[-47.900868,-25.052169],[-47.897568,-25.051869],[-47.894568,-25.051969],[-47.890768,-25.052169],[-47.887368,-25.051069],[-47.885968,-25.047469],[-47.885968,-25.043969],[-47.885468,-25.040869],[-47.884668,-25.037069],[-47.883868,-25.033869],[-47.882368,-25.029669],[-47.880268,-25.025069],[-47.878268,-25.021569],[-47.875468,-25.017069],[-47.872368,-25.012469],[-47.867168,-25.005469],[-47.862468,-24.999469],[-47.854268,-24.989469],[-47.850268,-24.984969],[-47.842868,-24.976669],[-47.836468,-24.969869],[-47.821868,-24.955769],[-47.811968,-24.947069],[-47.809668,-24.944869],[-47.806568,-24.942169],[-47.800268,-24.936669],[-47.797268,-24.934369],[-47.789768,-24.927969],[-47.778368,-24.918669],[-47.768468,-24.910569],[-47.759268,-24.902969],[-47.744968,-24.891769],[-47.731468,-24.880569],[-47.715868,-24.868269],[-47.694268,-24.852069],[-47.691368,-24.849969],[-47.685168,-24.845369],[-47.675468,-24.837969],[-47.659568,-24.826569],[-47.653168,-24.821769],[-47.641468,-24.812969],[-47.632068,-24.805869],[-47.622968,-24.798969],[-47.604268,-24.786369],[-47.591968,-24.777669],[-47.582668,-24.771769],[-47.576068,-24.767569],[-47.569968,-24.763569],[-47.565968,-24.761069],[-47.562668,-24.758869],[-47.560168,-24.757369],[-47.556868,-24.755269],[-47.553068,-24.753069],[-47.549968,-24.751269],[-47.547468,-24.749769],[-47.544168,-24.747969],[-47.540268,-24.745769],[-47.535668,-24.743069],[-47.530868,-24.740369],[-47.526168,-24.737769],[-47.521268,-24.735069],[-47.518468,-24.733569],[-47.513268,-24.730569],[-47.510368,-24.728869],[-47.504168,-24.725669],[-47.496068,-24.721469],[-47.489468,-24.718069],[-47.485068,-24.715869],[-47.482468,-24.714469],[-47.461968,-24.704369],[-47.437168,-24.691569],[-47.424768,-24.685169],[-47.421668,-24.682969],[-47.420268,-24.679769],[-47.414168,-24.674969],[-47.409468,-24.673869],[-47.405168,-24.672769],[-47.401468,-24.669669],[-47.396768,-24.665369],[-47.390368,-24.660269],[-47.385268,-24.656769],[-47.378768,-24.652369],[-47.375268,-24.650069],[-47.366968,-24.645069],[-47.362168,-24.642069],[-47.356968,-24.639269],[-47.348968,-24.634269],[-47.340368,-24.629169],[-47.328268,-24.622169],[-47.319368,-24.616869],[-47.309768,-24.610869],[-47.300268,-24.605269],[-47.292168,-24.600269],[-47.280868,-24.593769],[-47.274268,-24.590169],[-47.265668,-24.585169],[-47.262368,-24.583469],[-47.253468,-24.578569],[-47.249468,-24.576469],[-47.243268,-24.574269],[-47.239668,-24.573769],[-47.236468,-24.571669],[-47.233168,-24.572069],[-47.228868,-24.571669],[-47.225368,-24.569069],[-47.224568,-24.565469],[-47.226668,-24.561569],[-47.224968,-24.557469],[-47.221168,-24.554069],[-47.217568,-24.551369],[-47.214568,-24.549169],[-47.211568,-24.547169],[-47.208668,-24.545069],[-47.205668,-24.543069],[-47.201468,-24.540269],[-47.197068,-24.538069],[-47.191668,-24.535969],[-47.187268,-24.534469],[-47.187268,-24.530569],[-47.186068,-24.525369],[-47.182668,-24.522069],[-47.179368,-24.519269],[-47.176368,-24.516769],[-47.173268,-24.514269],[-47.166668,-24.509169],[-47.162868,-24.506269],[-47.157668,-24.502369],[-47.153168,-24.498769],[-47.149468,-24.496069],[-47.144568,-24.492269],[-47.140768,-24.489469],[-47.134668,-24.485269],[-47.131368,-24.482869],[-47.123868,-24.477769],[-47.121268,-24.475869],[-47.112168,-24.469769],[-47.109468,-24.467969],[-47.097268,-24.460169],[-47.090468,-24.455769],[-47.082368,-24.450969],[-47.078568,-24.448769],[-47.070668,-24.443769],[-47.065168,-24.440269],[-47.058668,-24.436369],[-47.053668,-24.433369],[-47.048568,-24.431169],[-47.044768,-24.429669],[-47.040368,-24.428269],[-47.035968,-24.426969],[-47.030468,-24.427169],[-47.027268,-24.425869],[-47.024468,-24.423969],[-47.021868,-24.422469],[-47.020768,-24.419269],[-47.020068,-24.415569],[-47.017068,-24.413369],[-47.013968,-24.412769],[-47.011068,-24.414269],[-47.008468,-24.412769],[-47.006668,-24.409869],[-47.001068,-24.409169],[-47.004368,-24.406269],[-47.004368,-24.402269],[-47.002968,-24.397969],[-47.007368,-24.396769],[-47.010168,-24.394269],[-47.009968,-24.389569],[-47.012868,-24.387969],[-47.015968,-24.387069],[-47.017068,-24.384269],[-47.017468,-24.380169],[-47.015368,-24.375469],[-47.013168,-24.371969],[-47.011068,-24.369469],[-47.008068,-24.366869],[-47.004168,-24.363669],[-47.001668,-24.360269],[-47.000968,-24.357269],[-46.999368,-24.353869],[-46.997368,-24.350869],[-46.999868,-24.348669],[-47.001268,-24.344869],[-47.000168,-24.340969],[-47.001868,-24.336969],[-46.999768,-24.332569],[-46.995868,-24.327569],[-46.993368,-24.324969],[-46.990068,-24.321569],[-46.986868,-24.318469],[-46.984168,-24.315969],[-46.981468,-24.313469],[-46.977868,-24.310269],[-46.972368,-24.305569],[-46.967668,-24.301669],[-46.962868,-24.297869],[-46.958968,-24.294969],[-46.956768,-24.293069],[-46.952968,-24.290269],[-46.950368,-24.288169],[-46.946368,-24.285369],[-46.940568,-24.280969],[-46.936668,-24.278369],[-46.930868,-24.274069],[-46.928268,-24.272569],[-46.920368,-24.267369],[-46.909868,-24.260669],[-46.907068,-24.258869],[-46.898668,-24.253469],[-46.893668,-24.250469],[-46.891268,-24.248769],[-46.887668,-24.246369],[-46.883168,-24.243069],[-46.878268,-24.239769],[-46.874368,-24.237469],[-46.871868,-24.235769],[-46.869068,-24.233969],[-46.866368,-24.232269],[-46.862768,-24.230069],[-46.860268,-24.228369],[-46.857168,-24.226369],[-46.853968,-24.224469],[-46.849468,-24.221469],[-46.843968,-24.217969],[-46.839868,-24.215669],[-46.837268,-24.214069],[-46.833268,-24.211769],[-46.829568,-24.209669],[-46.825968,-24.207569],[-46.820168,-24.204069],[-46.814668,-24.201269],[-46.810868,-24.201569],[-46.807668,-24.200969],[-46.804168,-24.199069],[-46.801468,-24.196869],[-46.799368,-24.194569],[-46.795768,-24.193869],[-46.793068,-24.191969],[-46.790568,-24.189969],[-46.787468,-24.186669],[-46.783768,-24.185169],[-46.779468,-24.182669],[-46.773968,-24.179769],[-46.769368,-24.177469],[-46.765968,-24.175469],[-46.762868,-24.173969],[-46.758468,-24.171469],[-46.754868,-24.169569],[-46.751268,-24.167569],[-46.748568,-24.166169],[-46.745168,-24.164269],[-46.741368,-24.162069],[-46.737568,-24.159869],[-46.733568,-24.157769],[-46.727568,-24.154469],[-46.721268,-24.150869],[-46.715868,-24.147869],[-46.712368,-24.145769],[-46.709768,-24.143669],[-46.702068,-24.139869],[-46.694368,-24.135769],[-46.690168,-24.133769],[-46.686668,-24.131769],[-46.683268,-24.129869],[-46.679068,-24.127669],[-46.675868,-24.125769],[-46.672768,-24.124069],[-46.668968,-24.122169],[-46.662068,-24.118369],[-46.657068,-24.115769],[-46.652868,-24.113569],[-46.649768,-24.111869],[-46.646268,-24.110269],[-46.642668,-24.108369],[-46.635368,-24.104669],[-46.632368,-24.103069],[-46.629068,-24.101469],[-46.626368,-24.100269],[-46.623568,-24.098869],[-46.617668,-24.096169],[-46.613568,-24.094169],[-46.609768,-24.092269],[-46.606068,-24.089269],[-46.600568,-24.087869],[-46.591268,-24.083269],[-46.582968,-24.079569],[-46.574968,-24.075769],[-46.565968,-24.071369],[-46.558368,-24.067769],[-46.549368,-24.063569],[-46.538668,-24.058769],[-46.530168,-24.054769],[-46.520368,-24.050469],[-46.510668,-24.046169],[-46.501568,-24.042269],[-46.497668,-24.040569],[-46.492968,-24.038469],[-46.484168,-24.034769],[-46.479268,-24.032869],[-46.474568,-24.031169],[-46.464768,-24.027269],[-46.454968,-24.023969],[-46.450668,-24.022569],[-46.445468,-24.021069],[-46.434068,-24.018269],[-46.424768,-24.016569],[-46.416168,-24.015669],[-46.408068,-24.015769],[-46.401568,-24.017869],[-46.399468,-24.020769],[-46.399068,-24.025869],[-46.400068,-24.029269],[-46.400068,-24.032369],[-46.396168,-24.030069],[-46.393968,-24.027869],[-46.392068,-24.025469],[-46.390668,-24.022669],[-46.390368,-24.018169],[-46.384968,-24.017669],[-46.386568,-24.014669],[-46.389868,-24.012969],[-46.392068,-24.010269],[-46.391768,-24.007369],[-46.389368,-24.005469],[-46.390768,-24.002369],[-46.392068,-23.997669],[-46.389268,-23.996369],[-46.385368,-23.995469],[-46.381568,-23.994669],[-46.378268,-23.992969],[-46.375768,-23.989669],[-46.374668,-23.986369],[-46.377468,-23.984669],[-46.379068,-23.980969],[-46.381868,-23.978069],[-46.385768,-23.977769],[-46.387968,-23.975669],[-46.384868,-23.973069],[-46.381068,-23.970569],[-46.376568,-23.969569],[-46.373268,-23.972869],[-46.371968,-23.976669],[-46.371068,-23.980569],[-46.367768,-23.981769],[-46.368268,-23.978569],[-46.368568,-23.974869],[-46.366368,-23.973069],[-46.363368,-23.971969],[-46.360368,-23.971369],[-46.356368,-23.970869],[-46.351368,-23.972369],[-46.346268,-23.970669],[-46.342668,-23.971169],[-46.339068,-23.971669],[-46.335468,-23.972069],[-46.332268,-23.972669],[-46.329268,-23.973369],[-46.325468,-23.974569],[-46.321368,-23.976269],[-46.317068,-23.979169],[-46.314968,-23.981069],[-46.311368,-23.984669],[-46.309068,-23.987169],[-46.307268,-23.989969],[-46.305168,-23.993369],[-46.309468,-23.995869],[-46.312968,-23.997769],[-46.316568,-23.997669],[-46.320468,-23.998269],[-46.320668,-24.001269],[-46.320768,-24.004169],[-46.323168,-24.007769],[-46.323268,-24.012669],[-46.322968,-24.016769],[-46.324268,-24.020069],[-46.322468,-24.022569],[-46.319368,-24.024269],[-46.317068,-24.022569],[-46.314868,-24.020369],[-46.312268,-24.022569],[-46.310568,-24.026469],[-46.307168,-24.023669],[-46.305568,-24.020969],[-46.302168,-24.018269],[-46.299168,-24.016069],[-46.295868,-24.015969],[-46.293168,-24.017169],[-46.291668,-24.021069],[-46.288468,-24.024769],[-46.284568,-24.026169],[-46.284868,-24.029269],[-46.285068,-24.032569],[-46.287268,-24.034469],[-46.288068,-24.037569],[-46.288968,-24.040369],[-46.287568,-24.044169],[-46.282668,-24.042169],[-46.281468,-24.038469],[-46.278468,-24.035969],[-46.277668,-24.031269],[-46.279568,-24.027669],[-46.279768,-24.024069],[-46.278468,-24.020669],[-46.275768,-24.017869],[-46.272068,-24.014569],[-46.267668,-24.013269],[-46.264268,-24.012869],[-46.266068,-24.009669],[-46.266468,-24.005969],[-46.263468,-24.002669],[-46.259368,-24.000169],[-46.256568,-23.999469],[-46.253468,-23.997669],[-46.250468,-23.996569],[-46.247668,-23.994769],[-46.243368,-23.992169],[-46.239668,-23.990769],[-46.236368,-23.989969],[-46.232868,-23.989369],[-46.227868,-23.988069],[-46.223168,-23.987269],[-46.217568,-23.986469],[-46.212968,-23.986169],[-46.209268,-23.987169],[-46.205668,-23.989369],[-46.203168,-23.992769],[-46.205668,-23.996269],[-46.206868,-23.999469],[-46.202868,-24.000269],[-46.200168,-23.996869],[-46.196668,-23.994169],[-46.193568,-23.992269],[-46.191068,-23.990069],[-46.186868,-23.991069],[-46.182468,-23.990369],[-46.185168,-23.986969],[-46.185468,-23.982469],[-46.185868,-23.978069],[-46.184968,-23.972369],[-46.185168,-23.967969],[-46.184368,-23.964869],[-46.181868,-23.961569],[-46.177468,-23.960169],[-46.174468,-23.958969],[-46.171768,-23.955969],[-46.169468,-23.951069],[-46.167268,-23.947669],[-46.164568,-23.944869],[-46.166168,-23.941669],[-46.167868,-23.938369],[-46.171168,-23.938869],[-46.173568,-23.940769],[-46.177268,-23.939869],[-46.179668,-23.936369],[-46.180468,-23.932269],[-46.180168,-23.928669],[-46.178368,-23.923869],[-46.173968,-23.920369],[-46.171468,-23.917169],[-46.168068,-23.915269],[-46.168068,-23.912269],[-46.165668,-23.909869],[-46.162768,-23.907869],[-46.159468,-23.906769],[-46.155168,-23.908369],[-46.150868,-23.906669],[-46.152068,-23.903369],[-46.151568,-23.899769],[-46.149868,-23.895769],[-46.147168,-23.893569],[-46.144268,-23.893169],[-46.139868,-23.891369],[-46.137968,-23.886569],[-46.139968,-23.882469],[-46.140368,-23.879469],[-46.138268,-23.877369],[-46.138468,-23.873369],[-46.134968,-23.871669],[-46.136368,-23.869069],[-46.133868,-23.865069],[-46.129568,-23.862969],[-46.124968,-23.859669],[-46.127968,-23.856769],[-46.132368,-23.856969],[-46.132768,-23.852769],[-46.132168,-23.849769],[-46.130268,-23.846369],[-46.126868,-23.842869],[-46.123568,-23.840469],[-46.120868,-23.838669],[-46.118268,-23.836569],[-46.115368,-23.835069],[-46.112268,-23.833469],[-46.108968,-23.831869],[-46.104968,-23.829869],[-46.100568,-23.827669],[-46.096168,-23.825669],[-46.093168,-23.824269],[-46.089368,-23.822369],[-46.085068,-23.820669],[-46.079968,-23.818869],[-46.075668,-23.817369],[-46.071668,-23.815969],[-46.066268,-23.814569],[-46.060868,-23.814069],[-46.057268,-23.814369],[-46.053268,-23.815769],[-46.049368,-23.817969],[-46.046668,-23.820669],[-46.045368,-23.824269],[-46.047468,-23.827969],[-46.050068,-23.829669],[-46.046868,-23.831469],[-46.043168,-23.829569],[-46.039868,-23.826569],[-46.039468,-23.823569],[-46.036268,-23.821069],[-46.038968,-23.817369],[-46.037068,-23.813069],[-46.034168,-23.810469],[-46.030468,-23.808569],[-46.024468,-23.805569],[-46.020168,-23.803969],[-46.014268,-23.801969],[-46.009168,-23.800569],[-46.005668,-23.799769],[-46.002368,-23.799969],[-46.000168,-23.802569],[-45.996668,-23.802469],[-45.993268,-23.800369],[-45.991968,-23.796769],[-45.991168,-23.793369],[-45.988068,-23.791669],[-45.985368,-23.790569],[-45.981768,-23.788969],[-45.977868,-23.787269],[-45.971368,-23.784869],[-45.966968,-23.783469],[-45.958668,-23.781169],[-45.951868,-23.778969],[-45.940768,-23.775469],[-45.926868,-23.771869],[-45.917268,-23.769369],[-45.909568,-23.767869],[-45.897168,-23.765369],[-45.892168,-23.764669],[-45.888568,-23.763769],[-45.885468,-23.763169],[-45.881368,-23.762769],[-45.876968,-23.762369],[-45.870868,-23.760969],[-45.865768,-23.760269],[-45.861668,-23.759869],[-45.855368,-23.759269],[-45.850268,-23.758769],[-45.845868,-23.758469],[-45.841968,-23.757969],[-45.832868,-23.757669],[-45.828968,-23.757469],[-45.822668,-23.757369],[-45.817368,-23.757669],[-45.812968,-23.758069],[-45.807668,-23.759069],[-45.803668,-23.760669],[-45.801868,-23.763469],[-45.803568,-23.768169],[-45.799968,-23.769069],[-45.796468,-23.768969],[-45.793368,-23.769269],[-45.789468,-23.766069],[-45.784268,-23.765369],[-45.778868,-23.764669],[-45.773168,-23.762469],[-45.769868,-23.762369],[-45.765768,-23.762469],[-45.762368,-23.763569],[-45.761068,-23.766469],[-45.757468,-23.769669],[-45.753768,-23.768569],[-45.749068,-23.767569],[-45.744068,-23.767569],[-45.740068,-23.767569],[-45.736168,-23.768169],[-45.732468,-23.768669],[-45.728868,-23.769269],[-45.725668,-23.770069],[-45.720668,-23.772169],[-45.716268,-23.773169],[-45.712568,-23.771469],[-45.708668,-23.770969],[-45.705668,-23.772069],[-45.701768,-23.773169],[-45.697668,-23.773469],[-45.694568,-23.775669],[-45.695968,-23.779769],[-45.694068,-23.782369],[-45.690568,-23.780969],[-45.686268,-23.778169],[-45.684068,-23.775369],[-45.680468,-23.774569],[-45.675868,-23.774569],[-45.671068,-23.775069],[-45.666768,-23.776769],[-45.664468,-23.779869],[-45.664468,-23.784569],[-45.662268,-23.782669],[-45.659468,-23.780869],[-45.655168,-23.778469],[-45.650168,-23.778069],[-45.646568,-23.778669],[-45.642668,-23.778369],[-45.641068,-23.782369],[-45.637668,-23.783369],[-45.633868,-23.783469],[-45.630168,-23.784269],[-45.625868,-23.786969],[-45.625968,-23.791369],[-45.624768,-23.794969],[-45.625568,-23.798869],[-45.624768,-23.801869],[-45.621668,-23.803669],[-45.617568,-23.803269],[-45.616068,-23.799969],[-45.611168,-23.798869],[-45.606768,-23.799469],[-45.601668,-23.797769],[-45.596768,-23.797869],[-45.593668,-23.796069],[-45.589868,-23.795869],[-45.587268,-23.793069],[-45.583168,-23.792269],[-45.579568,-23.792269],[-45.575468,-23.792269],[-45.571868,-23.792169],[-45.566568,-23.791969],[-45.562368,-23.792069],[-45.559168,-23.792869],[-45.556568,-23.794169],[-45.554668,-23.796469],[-45.555168,-23.800369],[-45.552768,-23.802469],[-45.552568,-23.805469],[-45.553568,-23.809069],[-45.549368,-23.809669],[-45.546168,-23.809669],[-45.542468,-23.810269],[-45.537868,-23.814069],[-45.534568,-23.818269],[-45.533468,-23.822769],[-45.535368,-23.824869],[-45.537868,-23.827669],[-45.536468,-23.830369],[-45.532568,-23.828969],[-45.528668,-23.829569],[-45.524068,-23.829269],[-45.520768,-23.831869],[-45.516268,-23.832269],[-45.512468,-23.832569],[-45.511568,-23.836969],[-45.513768,-23.840169],[-45.509368,-23.840869],[-45.503468,-23.841669],[-45.499868,-23.839069],[-45.496568,-23.838369],[-45.492568,-23.837269],[-45.491568,-23.834369],[-45.489468,-23.830669],[-45.484168,-23.829569],[-45.480268,-23.828969],[-45.477268,-23.827369],[-45.474468,-23.824869],[-45.469468,-23.822469],[-45.467268,-23.819369],[-45.462968,-23.819869],[-45.458968,-23.821669],[-45.455168,-23.823469],[-45.451568,-23.825169],[-45.447368,-23.828569],[-45.444668,-23.831869],[-45.441868,-23.828869],[-45.439068,-23.826769],[-45.434668,-23.828169],[-45.430468,-23.831469],[-45.425868,-23.829569],[-45.422468,-23.828269],[-45.420368,-23.824969],[-45.416668,-23.823469],[-45.412868,-23.824269],[-45.410568,-23.822069],[-45.407768,-23.821069],[-45.405868,-23.818869],[-45.408168,-23.813769],[-45.405668,-23.810469],[-45.401268,-23.812669],[-45.397568,-23.809069],[-45.396868,-23.804669],[-45.398168,-23.799969],[-45.399368,-23.796369],[-45.398668,-23.792869],[-45.397668,-23.788669],[-45.398368,-23.784169],[-45.397868,-23.780069],[-45.400368,-23.776969],[-45.401268,-23.772969],[-45.403068,-23.768769],[-45.405868,-23.764669],[-45.408668,-23.760369],[-45.411268,-23.756069],[-45.411668,-23.751069],[-45.409168,-23.747669],[-45.406168,-23.743569],[-45.402668,-23.740769],[-45.399768,-23.736869],[-45.398668,-23.733169],[-45.399268,-23.730269],[-45.397868,-23.727469],[-45.397568,-23.723969],[-45.400668,-23.724869],[-45.404268,-23.725269],[-45.408668,-23.725069],[-45.413068,-23.724269],[-45.416168,-23.725869],[-45.419268,-23.725369],[-45.421368,-23.722569],[-45.422868,-23.718769],[-45.424468,-23.714869],[-45.425568,-23.711869],[-45.429768,-23.712269],[-45.427568,-23.708769],[-45.426968,-23.705669],[-45.427968,-23.700669],[-45.428868,-23.695969],[-45.429468,-23.691669],[-45.430068,-23.687669],[-45.430268,-23.684169],[-45.430468,-23.680469],[-45.430468,-23.676569],[-45.430468,-23.673569],[-45.430068,-23.669569],[-45.429668,-23.665269],[-45.428968,-23.662069],[-45.428368,-23.658669],[-45.427268,-23.654869],[-45.426068,-23.651269],[-45.424668,-23.647169],[-45.422868,-23.643269],[-45.421368,-23.640169],[-45.419768,-23.637669],[-45.418068,-23.635169],[-45.415668,-23.632369],[-45.413068,-23.629169],[-45.409868,-23.626269],[-45.405168,-23.623369],[-45.400768,-23.623269],[-45.398268,-23.625769],[-45.395768,-23.629869],[-45.392068,-23.631069],[-45.389668,-23.633069],[-45.386368,-23.633069],[-45.383868,-23.629869],[-45.381768,-23.627669],[-45.379168,-23.625269],[-45.375768,-23.625469],[-45.373768,-23.627669],[-45.369768,-23.629469],[-45.366668,-23.627369],[-45.363268,-23.625769],[-45.359968,-23.625469],[-45.357468,-23.624069],[-45.355068,-23.619769],[-45.353068,-23.616169],[-45.351468,-23.613369],[-45.349868,-23.610369],[-45.346968,-23.605869],[-45.344168,-23.601669],[-45.340868,-23.597369],[-45.337868,-23.593969],[-45.334268,-23.590469],[-45.330768,-23.587269],[-45.328168,-23.585069],[-45.325768,-23.583169],[-45.322468,-23.581069],[-45.319268,-23.579269],[-45.315168,-23.577869],[-45.310868,-23.575669],[-45.307268,-23.575969],[-45.304068,-23.574569],[-45.299968,-23.573169],[-45.295668,-23.572369],[-45.292868,-23.574269],[-45.288668,-23.572969],[-45.284868,-23.572369],[-45.281468,-23.572769],[-45.278668,-23.574069],[-45.275968,-23.576269],[-45.277268,-23.580969],[-45.279268,-23.583469],[-45.278368,-23.587069],[-45.272868,-23.586769],[-45.269368,-23.587969],[-45.265068,-23.588369],[-45.261068,-23.592369],[-45.258168,-23.590569],[-45.254968,-23.589769],[-45.252668,-23.592669],[-45.248768,-23.592569],[-45.244068,-23.592569],[-45.241168,-23.588169],[-45.237168,-23.584769],[-45.233368,-23.582669],[-45.229468,-23.582169],[-45.225568,-23.583269],[-45.222368,-23.581869],[-45.218168,-23.581569],[-45.214468,-23.581169],[-45.211568,-23.582569],[-45.209268,-23.578869],[-45.210068,-23.574669],[-45.210868,-23.571569],[-45.213768,-23.568869],[-45.212268,-23.565169],[-45.216168,-23.564569],[-45.218368,-23.561869],[-45.217868,-23.558069],[-45.220568,-23.555069],[-45.223668,-23.551569],[-45.226668,-23.551169],[-45.229668,-23.550269],[-45.229768,-23.545069],[-45.228868,-23.541769],[-45.227868,-23.538469],[-45.225268,-23.533769],[-45.220868,-23.529769],[-45.215368,-23.527669],[-45.211268,-23.524469],[-45.206468,-23.522169],[-45.202068,-23.520769],[-45.197368,-23.520169],[-45.194268,-23.520369],[-45.190768,-23.521569],[-45.190168,-23.524369],[-45.187268,-23.527669],[-45.187668,-23.530969],[-45.188568,-23.534269],[-45.185868,-23.538769],[-45.180868,-23.538069],[-45.176868,-23.539569],[-45.173868,-23.542269],[-45.169968,-23.539869],[-45.165568,-23.541069],[-45.162368,-23.541369],[-45.159468,-23.538069],[-45.158968,-23.533469],[-45.158468,-23.530069],[-45.162068,-23.531569],[-45.165868,-23.529269],[-45.166768,-23.525069],[-45.165668,-23.520469],[-45.164468,-23.516369],[-45.167168,-23.512969],[-45.170768,-23.512169],[-45.173168,-23.510169],[-45.172768,-23.506569],[-45.172468,-23.502369],[-45.174768,-23.499369],[-45.172768,-23.495469],[-45.168968,-23.492969],[-45.164968,-23.494169],[-45.163168,-23.497969],[-45.159768,-23.499669],[-45.157368,-23.497769],[-45.153668,-23.498669],[-45.149568,-23.497769],[-45.145068,-23.497669],[-45.143668,-23.500869],[-45.138768,-23.501069],[-45.134968,-23.504569],[-45.134168,-23.509069],[-45.130968,-23.511269],[-45.127968,-23.514069],[-45.124068,-23.515369],[-45.121568,-23.517069],[-45.119368,-23.520169],[-45.114168,-23.519369],[-45.113068,-23.523269],[-45.112268,-23.526169],[-45.107768,-23.524369],[-45.107268,-23.520369],[-45.108268,-23.515669],[-45.109968,-23.511769],[-45.107768,-23.508769],[-45.112768,-23.507369],[-45.118068,-23.505169],[-45.122768,-23.502669],[-45.119168,-23.500569],[-45.115368,-23.497669],[-45.109968,-23.494769],[-45.106768,-23.490769],[-45.103568,-23.490769],[-45.103168,-23.496269],[-45.099568,-23.494069],[-45.095968,-23.492469],[-45.092068,-23.492669],[-45.088968,-23.493269],[-45.085768,-23.494169],[-45.083668,-23.496169],[-45.083768,-23.499469],[-45.084568,-23.502369],[-45.085068,-23.505269],[-45.085368,-23.508769],[-45.085668,-23.512469],[-45.084768,-23.516069],[-45.081868,-23.518669],[-45.080668,-23.513869],[-45.079568,-23.508869],[-45.076768,-23.505969],[-45.076468,-23.502669],[-45.073768,-23.500169],[-45.071368,-23.497469],[-45.068068,-23.493369],[-45.072368,-23.493069],[-45.074068,-23.489369],[-45.073168,-23.484469],[-45.070968,-23.479469],[-45.069068,-23.476169],[-45.066968,-23.473069],[-45.064068,-23.469269],[-45.061268,-23.466969],[-45.058268,-23.466969],[-45.056168,-23.465069],[-45.052768,-23.466169],[-45.048668,-23.463169],[-45.045068,-23.461469],[-45.039468,-23.462269],[-45.035568,-23.464069],[-45.032268,-23.464769],[-45.028968,-23.462269],[-45.030368,-23.459369],[-45.034468,-23.458469],[-45.035868,-23.453869],[-45.036668,-23.449269],[-45.040268,-23.448469],[-45.043368,-23.449569],[-45.046968,-23.452369],[-45.050068,-23.455969],[-45.053968,-23.458169],[-45.057968,-23.457869],[-45.060768,-23.455369],[-45.063768,-23.451869],[-45.066568,-23.447969],[-45.068168,-23.443769],[-45.069068,-23.439569],[-45.069268,-23.436269],[-45.068768,-23.433069],[-45.065168,-23.431669],[-45.060768,-23.430469],[-45.062768,-23.427469],[-45.064168,-23.424969],[-45.062968,-23.422169],[-45.059868,-23.418969],[-45.056568,-23.417469],[-45.053068,-23.416769],[-45.049668,-23.417269],[-45.046668,-23.418469],[-45.045868,-23.421469],[-45.047468,-23.424669],[-45.044268,-23.425069],[-45.042168,-23.422469],[-45.039168,-23.421769],[-45.037768,-23.418469],[-45.034468,-23.415369],[-45.029868,-23.414469],[-45.025468,-23.414169],[-45.022568,-23.415269],[-45.022568,-23.418169],[-45.019368,-23.418469],[-45.014368,-23.418069],[-45.011868,-23.414269],[-45.009368,-23.412469],[-45.008768,-23.408869],[-45.006268,-23.404069],[-45.001668,-23.401569],[-44.997468,-23.399469],[-44.992668,-23.397869],[-44.988368,-23.398669],[-44.984468,-23.397169],[-44.981068,-23.399269],[-44.976368,-23.398769],[-44.974168,-23.395669],[-44.971668,-23.392969],[-44.970968,-23.388969],[-44.967568,-23.386769],[-44.963668,-23.385969],[-44.960868,-23.381769],[-44.958468,-23.379569],[-44.955468,-23.379069],[-44.951868,-23.379169],[-44.949268,-23.377669],[-44.949868,-23.373369],[-44.949268,-23.369969],[-44.948168,-23.366669],[-44.947368,-23.363269],[-44.943868,-23.360069],[-44.940968,-23.356769],[-44.936968,-23.355269],[-44.934168,-23.354269],[-44.929768,-23.353169],[-44.924768,-23.352369],[-44.920668,-23.350269],[-44.917168,-23.347369],[-44.913468,-23.343069],[-44.911468,-23.337969],[-44.908468,-23.335069],[-44.904268,-23.334269],[-44.899868,-23.335069],[-44.895168,-23.336269],[-44.890668,-23.337969],[-44.887368,-23.339569],[-44.884568,-23.343069],[-44.882768,-23.346369],[-44.882168,-23.349469],[-44.885368,-23.352769],[-44.888168,-23.355669],[-44.889668,-23.359269],[-44.887868,-23.362469],[-44.888468,-23.366369],[-44.891568,-23.369669],[-44.888968,-23.371869],[-44.884968,-23.368669],[-44.883068,-23.364669],[-44.879968,-23.363269],[-44.875468,-23.363569],[-44.872668,-23.361469],[-44.870268,-23.359169],[-44.866468,-23.357769],[-44.862468,-23.357569],[-44.857868,-23.358869],[-44.853068,-23.360069],[-44.848668,-23.361369],[-44.844568,-23.363069],[-44.841768,-23.364969],[-44.839468,-23.366969],[-44.837068,-23.370769],[-44.838968,-23.375769],[-44.839468,-23.379469],[-44.842968,-23.382969],[-44.843668,-23.386869],[-44.840168,-23.387469],[-44.835468,-23.386769],[-44.831268,-23.385369],[-44.829068,-23.387369],[-44.826468,-23.385969],[-44.822468,-23.382769],[-44.818268,-23.381269],[-44.813068,-23.380269],[-44.808768,-23.379369],[-44.804768,-23.378369],[-44.801368,-23.375469],[-44.800768,-23.371169],[-44.796668,-23.369369],[-44.791968,-23.369669],[-44.788168,-23.370569],[-44.784768,-23.370869],[-44.783468,-23.375969],[-44.780468,-23.376269],[-44.777268,-23.374869],[-44.773468,-23.373769],[-44.768968,-23.372369],[-44.766068,-23.372369],[-44.763468,-23.370869],[-44.759968,-23.369969],[-44.756768,-23.368669],[-44.752968,-23.367269],[-44.747968,-23.366569],[-44.743268,-23.366169],[-44.739068,-23.366969],[-44.733968,-23.369069],[-44.728968,-23.369069],[-44.724768,-23.368269],[-44.727568,-23.366069],[-44.731468,-23.361169],[-44.729968,-23.355669],[-44.725268,-23.354669],[-44.721268,-23.356669],[-44.720968,-23.353669],[-44.721668,-23.349969],[-44.717868,-23.346269],[-44.711868,-23.344269],[-44.707868,-23.343069],[-44.704568,-23.342669],[-44.702868,-23.340369],[-44.699968,-23.340969],[-44.697868,-23.343369],[-44.694268,-23.343069],[-44.691068,-23.344569],[-44.690168,-23.347269],[-44.685768,-23.347569],[-44.685168,-23.350669],[-44.682568,-23.349469],[-44.682168,-23.346269],[-44.683768,-23.342969],[-44.681868,-23.339869],[-44.678068,-23.338369],[-44.674968,-23.336869],[-44.673568,-23.340669],[-44.672768,-23.344469],[-44.667468,-23.345969],[-44.663068,-23.346469],[-44.659468,-23.345969],[-44.662568,-23.343069],[-44.661768,-23.339069],[-44.657568,-23.341269],[-44.653768,-23.342269],[-44.651168,-23.340569],[-44.648968,-23.336969],[-44.646568,-23.333969],[-44.642868,-23.333169],[-44.638868,-23.331469],[-44.634568,-23.333269],[-44.630968,-23.335469],[-44.629068,-23.338769],[-44.627668,-23.342269],[-44.624068,-23.339369],[-44.620168,-23.340869],[-44.617668,-23.345169],[-44.616568,-23.349869],[-44.613568,-23.347869],[-44.610368,-23.348369],[-44.606968,-23.349469],[-44.607468,-23.353369],[-44.608168,-23.357469],[-44.607768,-23.360369],[-44.607268,-23.364969],[-44.603968,-23.365269],[-44.603168,-23.362269],[-44.600268,-23.359969],[-44.595968,-23.358969],[-44.592068,-23.361769],[-44.589068,-23.361169],[-44.586168,-23.359669],[-44.582868,-23.357269],[-44.580368,-23.354669],[-44.578568,-23.351469],[-44.575668,-23.349169],[-44.572468,-23.345669],[-44.570468,-23.342369],[-44.567768,-23.338369],[-44.565568,-23.335469],[-44.563768,-23.332969],[-44.561968,-23.329969],[-44.562968,-23.326069],[-44.565568,-23.322969],[-44.564068,-23.320269],[-44.561568,-23.316569],[-44.560768,-23.311369],[-44.557768,-23.308069],[-44.556068,-23.304969],[-44.551968,-23.304369],[-44.550068,-23.307169],[-44.548268,-23.304669],[-44.545268,-23.302969],[-44.541768,-23.303069],[-44.540268,-23.300469],[-44.538968,-23.296769],[-44.535968,-23.293069],[-44.531268,-23.290369],[-44.528768,-23.287569],[-44.525668,-23.287769],[-44.523768,-23.290069],[-44.520168,-23.290969],[-44.516768,-23.291769],[-44.513468,-23.292069],[-44.513868,-23.288769],[-44.515368,-23.285869],[-44.519368,-23.283469],[-44.518768,-23.280069],[-44.521468,-23.278769],[-44.524368,-23.276469],[-44.526868,-23.273169],[-44.529468,-23.271769],[-44.533068,-23.270369],[-44.535668,-23.268969],[-44.538868,-23.266869],[-44.542268,-23.269969],[-44.546068,-23.273269],[-44.549768,-23.273669],[-44.552468,-23.271169],[-44.557268,-23.272569],[-44.561968,-23.272269],[-44.565968,-23.271569],[-44.569068,-23.271269],[-44.572468,-23.271069],[-44.576368,-23.269369],[-44.579668,-23.270469],[-44.583268,-23.267669],[-44.584368,-23.263769],[-44.581868,-23.262069],[-44.581268,-23.258869],[-44.579268,-23.256069],[-44.576268,-23.253469],[-44.575468,-23.249369],[-44.577668,-23.246869],[-44.575668,-23.243669],[-44.572468,-23.240769],[-44.569668,-23.238369],[-44.567368,-23.236169],[-44.564168,-23.233869],[-44.560768,-23.230969],[-44.560168,-23.227369],[-44.563868,-23.228869],[-44.567468,-23.229969],[-44.570968,-23.230369],[-44.574068,-23.232869],[-44.577968,-23.232869],[-44.581768,-23.232769],[-44.586468,-23.232569],[-44.591268,-23.232769],[-44.594068,-23.233869],[-44.597768,-23.236569],[-44.596768,-23.241069],[-44.597368,-23.244169],[-44.600568,-23.246969],[-44.605268,-23.249669],[-44.608568,-23.251569],[-44.611368,-23.252069],[-44.614968,-23.252969],[-44.617568,-23.255969],[-44.620568,-23.259169],[-44.621868,-23.263969],[-44.623368,-23.267869],[-44.625568,-23.270069],[-44.627968,-23.274369],[-44.629368,-23.278169],[-44.630968,-23.282269],[-44.633268,-23.284769],[-44.635368,-23.286969],[-44.638568,-23.289469],[-44.642368,-23.287869],[-44.645368,-23.289469],[-44.642968,-23.293869],[-44.639868,-23.297169],[-44.638068,-23.300769],[-44.641868,-23.301669],[-44.646468,-23.301169],[-44.648368,-23.297469],[-44.650868,-23.294969],[-44.655868,-23.293169],[-44.654068,-23.288469],[-44.650068,-23.286669],[-44.648968,-23.283869],[-44.646568,-23.280969],[-44.642668,-23.277569],[-44.640968,-23.274469],[-44.640368,-23.271469],[-44.637768,-23.269269],[-44.635668,-23.264969],[-44.633868,-23.259669],[-44.631368,-23.255269],[-44.628268,-23.251669],[-44.626268,-23.248569],[-44.624968,-23.244669],[-44.620268,-23.242169],[-44.618068,-23.238869],[-44.615368,-23.236869],[-44.613568,-23.234169],[-44.617268,-23.233569],[-44.620768,-23.235269],[-44.624468,-23.236769],[-44.630268,-23.239369],[-44.636068,-23.238569],[-44.639568,-23.234469],[-44.644268,-23.235269],[-44.647868,-23.235269],[-44.652068,-23.235369],[-44.654768,-23.238669],[-44.658368,-23.239669],[-44.660568,-23.242969],[-44.663468,-23.246969],[-44.668068,-23.248269],[-44.669168,-23.245269],[-44.672468,-23.246969],[-44.674168,-23.249669],[-44.678068,-23.251069],[-44.682968,-23.252469],[-44.685168,-23.250569],[-44.680768,-23.246369],[-44.683268,-23.242169],[-44.679068,-23.242269],[-44.675768,-23.242269],[-44.673568,-23.239669],[-44.677168,-23.239169],[-44.676168,-23.236069],[-44.674368,-23.233869],[-44.672268,-23.230969],[-44.669668,-23.233569],[-44.667068,-23.234969],[-44.663868,-23.233169],[-44.660568,-23.231369],[-44.658068,-23.229169],[-44.655468,-23.225869],[-44.658768,-23.225969],[-44.662768,-23.226369],[-44.659568,-23.222069],[-44.660368,-23.218769],[-44.662068,-23.215569],[-44.658168,-23.215069],[-44.654068,-23.217569],[-44.651468,-23.221269],[-44.648668,-23.219869],[-44.646768,-23.217569],[-44.643768,-23.216169],[-44.639368,-23.213669],[-44.638968,-23.217269],[-44.633768,-23.217269],[-44.632768,-23.220969],[-44.629668,-23.223469],[-44.626668,-23.223169],[-44.624668,-23.219769],[-44.624068,-23.215669],[-44.626568,-23.214069],[-44.624768,-23.210369],[-44.622968,-23.207569],[-44.619768,-23.204969],[-44.622968,-23.203569],[-44.626668,-23.201769],[-44.626568,-23.197969],[-44.630568,-23.196269],[-44.635768,-23.196069],[-44.640068,-23.196269],[-44.643168,-23.196369],[-44.645368,-23.193269],[-44.644368,-23.187369],[-44.649068,-23.187669],[-44.653368,-23.189169],[-44.654568,-23.192369],[-44.655568,-23.196269],[-44.657268,-23.200269],[-44.657268,-23.203969],[-44.659768,-23.207569],[-44.663468,-23.206469],[-44.665968,-23.209069],[-44.668068,-23.206469],[-44.671368,-23.210369],[-44.676568,-23.212669],[-44.673868,-23.215869],[-44.677568,-23.219569],[-44.681168,-23.220969],[-44.683868,-23.223369],[-44.688368,-23.221969],[-44.691968,-23.225369],[-44.694168,-23.230369],[-44.697468,-23.232769],[-44.701068,-23.233069],[-44.705768,-23.233869],[-44.709768,-23.234469],[-44.713168,-23.233569],[-44.714768,-23.229569],[-44.712568,-23.227069],[-44.713368,-23.222769],[-44.709868,-23.219769],[-44.710068,-23.216669],[-44.711368,-23.212669],[-44.714568,-23.210969],[-44.715968,-23.208469],[-44.718668,-23.205369],[-44.720568,-23.202069],[-44.720568,-23.196269],[-44.718068,-23.193869],[-44.715068,-23.194169],[-44.713968,-23.190569],[-44.710868,-23.190169],[-44.708668,-23.188269],[-44.707168,-23.185269],[-44.710668,-23.184869],[-44.713768,-23.186869],[-44.716268,-23.183269],[-44.712968,-23.182669],[-44.711168,-23.180169],[-44.709768,-23.176469],[-44.705368,-23.174769],[-44.702068,-23.175869],[-44.698968,-23.173569],[-44.698568,-23.169669],[-44.703468,-23.168669],[-44.706768,-23.165669],[-44.706768,-23.162469],[-44.706868,-23.158869],[-44.705468,-23.156169],[-44.701468,-23.155369],[-44.697668,-23.154269],[-44.695968,-23.150669],[-44.695168,-23.145969],[-44.697768,-23.142569],[-44.697968,-23.139069],[-44.698768,-23.135969],[-44.699268,-23.132069],[-44.695168,-23.130769],[-44.691568,-23.130469],[-44.689168,-23.128569],[-44.689868,-23.124369],[-44.694368,-23.122969],[-44.697368,-23.123369],[-44.698868,-23.119969],[-44.698168,-23.114669],[-44.696368,-23.110369],[-44.694368,-23.106769],[-44.695268,-23.102769],[-44.694568,-23.097069],[-44.692168,-23.092269],[-44.688568,-23.090169],[-44.689168,-23.086769],[-44.690468,-23.082869],[-44.687768,-23.081769],[-44.685868,-23.078769],[-44.686068,-23.074069],[-44.682468,-23.071769],[-44.677268,-23.070269],[-44.677268,-23.066069],[-44.676368,-23.061269],[-44.672868,-23.058269],[-44.670068,-23.056569],[-44.667868,-23.054369],[-44.664168,-23.053569],[-44.661168,-23.055469],[-44.658068,-23.053069],[-44.654568,-23.054469],[-44.650368,-23.055469],[-44.647568,-23.052769],[-44.647668,-23.049469],[-44.644868,-23.046969],[-44.641868,-23.047769],[-44.637868,-23.048669],[-44.636468,-23.051469],[-44.631368,-23.049969],[-44.626268,-23.047469],[-44.621568,-23.044969],[-44.616468,-23.044269],[-44.612968,-23.047869],[-44.609368,-23.048569],[-44.604968,-23.048169],[-44.600068,-23.047469],[-44.597068,-23.045269],[-44.593168,-23.046769],[-44.590068,-23.050069],[-44.590868,-23.053569],[-44.593368,-23.055869],[-44.594068,-23.059069],[-44.591168,-23.058569],[-44.587968,-23.058869],[-44.585068,-23.058069],[-44.582568,-23.055769],[-44.578568,-23.054169],[-44.576868,-23.050269],[-44.574868,-23.047869],[-44.571668,-23.047769],[-44.568768,-23.046469],[-44.566568,-23.043869],[-44.562968,-23.042769],[-44.561068,-23.040069],[-44.557168,-23.037269],[-44.552568,-23.037469],[-44.549368,-23.035969],[-44.547168,-23.034169],[-44.544268,-23.032369],[-44.540868,-23.031269],[-44.535868,-23.029169],[-44.531168,-23.027369],[-44.528168,-23.025169],[-44.525068,-23.025869],[-44.521468,-23.026769],[-44.517368,-23.026469],[-44.513268,-23.026169],[-44.508868,-23.026469],[-44.506368,-23.029269],[-44.502968,-23.028169],[-44.499368,-23.025069],[-44.495468,-23.023669],[-44.492568,-23.020769],[-44.489668,-23.020069],[-44.487168,-23.016269],[-44.484268,-23.010469],[-44.480568,-23.006669],[-44.475668,-23.006769],[-44.471668,-23.008869],[-44.469068,-23.011069],[-44.464868,-23.009269],[-44.461568,-23.008469],[-44.458768,-23.011369],[-44.457868,-23.016269],[-44.452668,-23.015969],[-44.450668,-23.018169],[-44.449368,-23.021469],[-44.447968,-23.025069],[-44.445768,-23.029169],[-44.442768,-23.026269],[-44.439368,-23.024269],[-44.437168,-23.021069],[-44.440468,-23.019769],[-44.441568,-23.016069],[-44.445168,-23.012469],[-44.443768,-23.008269],[-44.442668,-23.005469],[-44.438768,-23.002469],[-44.434068,-23.000969],[-44.430868,-22.998569],[-44.427568,-22.999369],[-44.425768,-22.997169],[-44.429168,-22.994369],[-44.433268,-22.994369],[-44.437968,-22.995669],[-44.440268,-22.992169],[-44.436268,-22.988569],[-44.435468,-22.985369],[-44.436068,-22.982469],[-44.434368,-22.979469],[-44.431368,-22.977769],[-44.432968,-22.975269],[-44.436568,-22.973469],[-44.436868,-22.970169],[-44.435468,-22.966969],[-44.434068,-22.963469],[-44.427868,-22.961869],[-44.427468,-22.958269],[-44.425568,-22.956169],[-44.423168,-22.953469],[-44.421668,-22.949669],[-44.418868,-22.947669],[-44.415668,-22.944369],[-44.412368,-22.941869],[-44.409568,-22.943269],[-44.409868,-22.946669],[-44.412568,-22.948269],[-44.414568,-22.952669],[-44.410868,-22.953569],[-44.408068,-22.951769],[-44.404268,-22.951569],[-44.400068,-22.951469],[-44.399868,-22.954369],[-44.397968,-22.957069],[-44.396268,-22.953269],[-44.396268,-22.949869],[-44.392868,-22.952469],[-44.388968,-22.951769],[-44.386268,-22.952869],[-44.382668,-22.955169],[-44.378268,-22.958469],[-44.380268,-22.962969],[-44.384568,-22.966269],[-44.386068,-22.969169],[-44.383068,-22.971369],[-44.380468,-22.967369],[-44.377768,-22.968769],[-44.374468,-22.966469],[-44.374468,-22.962569],[-44.372368,-22.959269],[-44.367668,-22.960069],[-44.364168,-22.957869],[-44.362168,-22.955669],[-44.358968,-22.956869],[-44.356368,-22.954069],[-44.352468,-22.953569],[-44.353068,-22.949869],[-44.351668,-22.947169],[-44.350068,-22.944569],[-44.353868,-22.943869],[-44.357568,-22.943769],[-44.360568,-22.941669],[-44.364368,-22.942669],[-44.366168,-22.946069],[-44.369168,-22.947869],[-44.370168,-22.941869],[-44.370868,-22.938269],[-44.366968,-22.934869],[-44.362268,-22.932269],[-44.365568,-22.930169],[-44.362868,-22.928069],[-44.359968,-22.924469],[-44.357768,-22.926969],[-44.355268,-22.929369],[-44.352468,-22.930269],[-44.350268,-22.927269],[-44.347568,-22.924169],[-44.343668,-22.922869],[-44.339068,-22.922869],[-44.337268,-22.926069],[-44.332568,-22.927469],[-44.328268,-22.931669],[-44.324068,-22.932469],[-44.324868,-22.935869],[-44.321368,-22.936169],[-44.321568,-22.939069],[-44.323168,-22.942069],[-44.327468,-22.943569],[-44.330768,-22.945169],[-44.335068,-22.947369],[-44.336468,-22.949869],[-44.336268,-22.953169],[-44.333168,-22.951469],[-44.329268,-22.955069],[-44.332868,-22.955969],[-44.336168,-22.957669],[-44.336168,-22.961569],[-44.335868,-22.964469],[-44.332368,-22.966469],[-44.330068,-22.964769],[-44.328768,-22.961469],[-44.325468,-22.960369],[-44.321368,-22.960669],[-44.319568,-22.957269],[-44.313868,-22.957869],[-44.309368,-22.957669],[-44.307968,-22.960169],[-44.303868,-22.957069],[-44.300568,-22.958469],[-44.302468,-22.960869],[-44.305768,-22.962069],[-44.307468,-22.964369],[-44.307968,-22.967269],[-44.310768,-22.970869],[-44.311868,-22.976669],[-44.312768,-22.979969],[-44.315268,-22.982869],[-44.317368,-22.984969],[-44.320468,-22.985769],[-44.323168,-22.983369],[-44.326768,-22.982769],[-44.329368,-22.985369],[-44.327568,-22.989969],[-44.326068,-22.992969],[-44.328568,-22.995469],[-44.332368,-22.995169],[-44.335968,-22.992269],[-44.340368,-22.990769],[-44.345268,-22.991069],[-44.348368,-22.994069],[-44.352068,-22.995769],[-44.354168,-22.998269],[-44.355668,-23.002369],[-44.357768,-23.004869],[-44.356768,-23.007769],[-44.360368,-23.009869],[-44.361068,-23.013469],[-44.362568,-23.017669],[-44.359268,-23.019269],[-44.358068,-23.022569],[-44.353868,-23.021869],[-44.350268,-23.023669],[-44.349268,-23.026969],[-44.350268,-23.030169],[-44.346668,-23.028369],[-44.344768,-23.026269],[-44.342568,-23.024269],[-44.339468,-23.022169],[-44.335968,-23.023969],[-44.331168,-23.020969],[-44.327168,-23.020369],[-44.328268,-23.015969],[-44.326068,-23.014069],[-44.322368,-23.014369],[-44.319368,-23.011369],[-44.315568,-23.013469],[-44.315968,-23.008869],[-44.311868,-23.007069],[-44.306868,-23.005969],[-44.301868,-23.003769],[-44.298568,-23.006869],[-44.297568,-23.010469],[-44.299468,-23.014269],[-44.302968,-23.017169],[-44.304668,-23.022169],[-44.302568,-23.024569],[-44.297868,-23.025669],[-44.293568,-23.024769],[-44.290568,-23.023969],[-44.289768,-23.020769],[-44.288168,-23.017469],[-44.284768,-23.015069],[-44.280568,-23.015369],[-44.278068,-23.011469],[-44.274868,-23.008769],[-44.273968,-23.005169],[-44.270468,-23.002969],[-44.267068,-23.001669],[-44.263568,-23.003569],[-44.261768,-23.006769],[-44.258268,-23.005169],[-44.256568,-23.002369],[-44.253068,-22.999369],[-44.249468,-22.999069],[-44.246268,-23.000569],[-44.241568,-23.001569],[-44.238868,-23.003769],[-44.237168,-23.007369],[-44.234268,-23.009269],[-44.232268,-23.011769],[-44.229668,-23.013769],[-44.226968,-23.011769],[-44.223668,-23.011069],[-44.221168,-23.015069],[-44.223768,-23.018169],[-44.225068,-23.020769],[-44.228068,-23.021769],[-44.231368,-23.022369],[-44.233868,-23.025969],[-44.237168,-23.028369],[-44.236768,-23.031969],[-44.240268,-23.033669],[-44.241068,-23.037569],[-44.243368,-23.041669],[-44.246268,-23.045069],[-44.249768,-23.048569],[-44.246568,-23.049369],[-44.243668,-23.053669],[-44.240868,-23.055269],[-44.236768,-23.055869],[-44.231968,-23.053369],[-44.227068,-23.050769],[-44.222868,-23.048869],[-44.219868,-23.049369],[-44.215868,-23.047469],[-44.211268,-23.045269],[-44.208268,-23.043569],[-44.204268,-23.041369],[-44.201368,-23.038169],[-44.197668,-23.039169],[-44.194068,-23.041469],[-44.193568,-23.044469],[-44.195568,-23.047869],[-44.194868,-23.053069],[-44.189868,-23.052569],[-44.185468,-23.052469],[-44.185168,-23.049169],[-44.182168,-23.045869],[-44.179668,-23.048869],[-44.176168,-23.049669],[-44.173568,-23.048369],[-44.171468,-23.045569],[-44.173068,-23.043069],[-44.176068,-23.040869],[-44.176368,-23.037769],[-44.174668,-23.035269],[-44.171968,-23.033469],[-44.168668,-23.033369],[-44.165568,-23.032369],[-44.160368,-23.032369],[-44.154868,-23.036169],[-44.152268,-23.039569],[-44.150468,-23.036969],[-44.145668,-23.035569],[-44.141068,-23.034869],[-44.137468,-23.033469],[-44.134168,-23.033069],[-44.129868,-23.031769],[-44.126668,-23.028969],[-44.123168,-23.025869],[-44.118668,-23.025069],[-44.114468,-23.023269],[-44.111368,-23.020469],[-44.108868,-23.017069],[-44.105268,-23.014669],[-44.103968,-23.011569],[-44.101668,-23.009369],[-44.098368,-23.007469],[-44.096168,-23.004969],[-44.095568,-23.002169],[-44.095868,-22.997969],[-44.092568,-22.994169],[-44.087268,-22.992569],[-44.083468,-22.992969],[-44.081868,-22.989769],[-44.080968,-22.986369],[-44.079068,-22.981369],[-44.077968,-22.976969],[-44.075968,-22.973669],[-44.076368,-22.970069],[-44.079968,-22.967569],[-44.080768,-22.963269],[-44.080768,-22.959769],[-44.079268,-22.956869],[-44.077068,-22.954369],[-44.073768,-22.951869],[-44.070668,-22.950969],[-44.066668,-22.950269],[-44.061968,-22.948969],[-44.059468,-22.945669],[-44.054768,-22.944169],[-44.052268,-22.942069],[-44.047868,-22.941669],[-44.044468,-22.944169],[-44.040668,-22.947969],[-44.040068,-22.951469],[-44.042868,-22.953569],[-44.045268,-22.955969],[-44.043368,-22.959669],[-44.042168,-22.963169],[-44.044668,-22.965869],[-44.046768,-22.969769],[-44.049668,-22.971769],[-44.052768,-22.973969],[-44.054668,-22.977769],[-44.055768,-22.980569],[-44.052268,-22.982169],[-44.048668,-22.983669],[-44.045268,-22.984469],[-44.041368,-22.983669],[-44.036968,-22.981969],[-44.033368,-22.980569],[-44.032368,-22.976369],[-44.032368,-22.972669],[-44.032268,-22.969569],[-44.031268,-22.966669],[-44.029868,-22.964069],[-44.025468,-22.962569],[-44.022368,-22.960969],[-44.022068,-22.955769],[-44.018268,-22.952969],[-44.013868,-22.950969],[-44.011768,-22.947369],[-44.009268,-22.943869],[-44.005268,-22.942369],[-44.000168,-22.941969],[-43.994968,-22.941269],[-43.990068,-22.938769],[-43.985668,-22.934969],[-43.981668,-22.932969],[-43.977768,-22.931569],[-43.974268,-22.931569],[-43.970968,-22.932169],[-43.967568,-22.933369],[-43.964068,-22.933769],[-43.960168,-22.932169],[-43.955668,-22.928969],[-43.951368,-22.927469],[-43.948168,-22.927169],[-43.945168,-22.928069],[-43.940568,-22.930069],[-43.936568,-22.929969],[-43.933368,-22.929069],[-43.930468,-22.929369],[-43.927568,-22.929169],[-43.924168,-22.929769],[-43.920068,-22.929669],[-43.914868,-22.930269],[-43.910268,-22.930769],[-43.907268,-22.929669],[-43.904068,-22.928269],[-43.901568,-22.926169],[-43.897568,-22.924969],[-43.893468,-22.922769],[-43.889968,-22.922169],[-43.885668,-22.921969],[-43.881868,-22.920269],[-43.880568,-22.915269],[-43.880768,-22.911469],[-43.877968,-22.910369],[-43.874868,-22.907669],[-43.871968,-22.905969],[-43.868268,-22.904769],[-43.865068,-22.903469],[-43.860868,-22.902669],[-43.855268,-22.902069],[-43.851368,-22.903769],[-43.846668,-22.902369],[-43.842268,-22.901769],[-43.839268,-22.905069],[-43.839068,-22.910369],[-43.841968,-22.913869],[-43.845068,-22.916669],[-43.849468,-22.917169],[-43.853068,-22.918569],[-43.850668,-22.921069],[-43.850668,-22.926069],[-43.848968,-22.929669],[-43.844568,-22.929669],[-43.842068,-22.931869],[-43.836568,-22.931569],[-43.833668,-22.931169],[-43.817368,-22.920669],[-43.813068,-22.919969],[-43.809368,-22.917769],[-43.806868,-22.919269],[-43.808368,-22.923169],[-43.802468,-22.923969],[-43.801468,-22.920269],[-43.800768,-22.917269],[-43.798068,-22.916369],[-43.795368,-22.918069],[-43.792768,-22.921869],[-43.789168,-22.924969],[-43.784168,-22.926169],[-43.780168,-22.928269],[-43.776168,-22.931369],[-43.771768,-22.932769],[-43.768268,-22.933269],[-43.766068,-22.935869],[-43.763168,-22.937169],[-43.760168,-22.938469],[-43.757468,-22.939669],[-43.754568,-22.941269],[-43.750968,-22.943569],[-43.746868,-22.945969],[-43.744068,-22.948469],[-43.741168,-22.950669],[-43.736868,-22.953269],[-43.733368,-22.955669],[-43.730268,-22.958469],[-43.725568,-22.960169],[-43.721468,-22.963769],[-43.719268,-22.966269],[-43.718168,-22.970169],[-43.714468,-22.969469],[-43.709668,-22.971669],[-43.705368,-22.976669],[-43.701868,-22.982269],[-43.699868,-22.985769],[-43.696368,-22.985569],[-43.693468,-22.986369],[-43.690268,-22.989369],[-43.686868,-22.985569],[-43.682768,-22.983269],[-43.678568,-22.980669],[-43.674668,-22.980569],[-43.670668,-22.982069],[-43.668168,-22.983669],[-43.664768,-22.986069],[-43.659768,-22.990769],[-43.656968,-22.993869],[-43.655168,-22.997469],[-43.652068,-23.001369],[-43.648468,-23.001269],[-43.644368,-23.001569],[-43.639568,-23.004869],[-43.635468,-23.005969],[-43.630968,-23.005969],[-43.627068,-23.007069],[-43.623768,-23.008469],[-43.620768,-23.011069],[-43.617968,-23.013869],[-43.614968,-23.016869],[-43.611068,-23.019369],[-43.607768,-23.021069],[-43.603968,-23.021869],[-43.599168,-23.024569],[-43.599168,-23.027669],[-43.603168,-23.027869],[-43.604268,-23.030669],[-43.608268,-23.030869],[-43.611368,-23.031169],[-43.615268,-23.031269],[-43.620068,-23.032869],[-43.623568,-23.033369],[-43.626568,-23.033469],[-43.630268,-23.033669],[-43.633868,-23.034469],[-43.638568,-23.035569],[-43.641868,-23.035869],[-43.647068,-23.036969],[-43.651568,-23.038069],[-43.655968,-23.038969],[-43.659768,-23.040369],[-43.663968,-23.041169],[-43.667068,-23.042769],[-43.670368,-23.043969],[-43.673568,-23.044669],[-43.677768,-23.045369],[-43.681568,-23.046369],[-43.686568,-23.047869],[-43.691968,-23.049369],[-43.695668,-23.050569],[-43.699568,-23.051169],[-43.703268,-23.052169],[-43.706868,-23.054469],[-43.703268,-23.055769],[-43.700268,-23.055469],[-43.696768,-23.054669],[-43.693268,-23.054669],[-43.689068,-23.054469],[-43.684768,-23.054369],[-43.680468,-23.053969],[-43.675468,-23.053569],[-43.672468,-23.053369],[-43.666468,-23.052869],[-43.658068,-23.052269],[-43.651468,-23.051669],[-43.644268,-23.051069],[-43.636768,-23.050469],[-43.630268,-23.050269],[-43.624668,-23.050069],[-43.618268,-23.050269],[-43.611768,-23.050069],[-43.608368,-23.050269],[-43.605068,-23.050569],[-43.598968,-23.051169],[-43.595968,-23.051669],[-43.591268,-23.052469],[-43.585368,-23.053569],[-43.581868,-23.054669],[-43.577468,-23.055869],[-43.574568,-23.057669],[-43.572068,-23.059069],[-43.569668,-23.060869],[-43.566868,-23.063069],[-43.568568,-23.066069],[-43.567668,-23.068869],[-43.568068,-23.073169],[-43.565468,-23.074969],[-43.561368,-23.074869],[-43.556968,-23.073569],[-43.553268,-23.074869],[-43.550068,-23.073169],[-43.552268,-23.071069],[-43.551568,-23.068069],[-43.549268,-23.063769],[-43.547468,-23.060469],[-43.544268,-23.059069],[-43.540668,-23.057469],[-43.537468,-23.055869],[-43.535668,-23.053269],[-43.534268,-23.050369],[-43.530168,-23.049469],[-43.525668,-23.048869],[-43.521768,-23.048569],[-43.516768,-23.048569],[-43.512768,-23.048569],[-43.509868,-23.047769],[-43.507068,-23.044469],[-43.504168,-23.040569],[-43.500468,-23.040269],[-43.497968,-23.037569],[-43.494668,-23.036269],[-43.489968,-23.034769],[-43.486168,-23.033669],[-43.479468,-23.032069],[-43.474468,-23.031669],[-43.469868,-23.034169],[-43.468168,-23.030369],[-43.463468,-23.028069],[-43.457868,-23.026169],[-43.454068,-23.025069],[-43.446268,-23.022969],[-43.439168,-23.021469],[-43.433268,-23.020369],[-43.428268,-23.019369],[-43.423868,-23.018269],[-43.419768,-23.017569],[-43.414268,-23.016769],[-43.408668,-23.015769],[-43.404468,-23.015169],[-43.398668,-23.014269],[-43.395668,-23.013869],[-43.391868,-23.013469],[-43.386768,-23.012969],[-43.381568,-23.012469],[-43.377468,-23.012169],[-43.373768,-23.012069],[-43.370468,-23.011769],[-43.365468,-23.011469],[-43.360268,-23.011269],[-43.356668,-23.011069],[-43.352068,-23.011069],[-43.348068,-23.011069],[-43.342368,-23.011069],[-43.339068,-23.011069],[-43.336168,-23.011369],[-43.331268,-23.011769],[-43.327868,-23.012169],[-43.324368,-23.012669],[-43.318168,-23.013869],[-43.315168,-23.014369],[-43.309368,-23.015669],[-43.305768,-23.016069],[-43.302768,-23.016269],[-43.299668,-23.015969],[-43.296768,-23.016069],[-43.292768,-23.015769],[-43.287768,-23.015169],[-43.286968,-23.010469],[-43.283868,-23.007769],[-43.280368,-23.006069],[-43.276968,-23.005169],[-43.275368,-23.002769],[-43.271168,-23.001269],[-43.265368,-23.000169],[-43.260168,-22.999769],[-43.255968,-22.999769],[-43.252368,-22.999169],[-43.249368,-22.999469],[-43.246568,-23.000569],[-43.243268,-23.000769],[-43.240368,-22.999769],[-43.237968,-22.998069],[-43.233568,-22.995169],[-43.229168,-22.990769],[-43.223868,-22.987769],[-43.220368,-22.987169],[-43.215668,-22.987169],[-43.210768,-22.987169],[-43.207068,-22.987169],[-43.203168,-22.987469],[-43.198968,-22.987769],[-43.194568,-22.988569],[-43.190568,-22.989369],[-43.187168,-22.986669],[-43.189068,-22.981369],[-43.187268,-22.976769],[-43.184368,-22.973369],[-43.181068,-22.970869],[-43.177968,-22.968969],[-43.174668,-22.967369],[-43.171368,-22.965869],[-43.167868,-22.964069],[-43.164168,-22.964569],[-43.160868,-22.964869],[-43.159568,-22.961969],[-43.160668,-22.957969],[-43.163868,-22.955169],[-43.160168,-22.953169],[-43.155468,-22.952669],[-43.151268,-22.949869],[-43.154568,-22.947069],[-43.154568,-22.942469],[-43.153068,-22.939569],[-43.158068,-22.942369],[-43.161668,-22.943469],[-43.163868,-22.947069],[-43.167768,-22.949969],[-43.170368,-22.951769],[-43.175868,-22.949669],[-43.179668,-22.947369],[-43.178268,-22.943169],[-43.173768,-22.943469],[-43.169768,-22.940469],[-43.169168,-22.936369],[-43.171168,-22.932269],[-43.170368,-22.928569],[-43.169168,-22.925269],[-43.167768,-22.922269],[-43.168668,-22.919269],[-43.171868,-22.919269],[-43.172468,-22.916369],[-43.169268,-22.915869],[-43.165268,-22.916369],[-43.161468,-22.915569],[-43.159168,-22.913669],[-43.161168,-22.910669],[-43.162068,-22.904769],[-43.165568,-22.904469],[-43.168968,-22.904469],[-43.172168,-22.902269],[-43.175468,-22.899069],[-43.176368,-22.896069],[-43.179668,-22.895169],[-43.183568,-22.894369],[-43.186368,-22.893569],[-43.190568,-22.892069],[-43.194568,-22.892069],[-43.197968,-22.892869],[-43.201068,-22.894269],[-43.203968,-22.895369],[-43.210968,-22.896469],[-43.213468,-22.891869],[-43.215168,-22.888269],[-43.215068,-22.885369],[-43.210868,-22.881569],[-43.208168,-22.878569],[-43.204068,-22.874369],[-43.203268,-22.871569],[-43.206768,-22.869369],[-43.210768,-22.867969],[-43.213768,-22.869469],[-43.214768,-22.865069],[-43.217668,-22.861969],[-43.213168,-22.859669],[-43.215468,-22.857469],[-43.219268,-22.858669],[-43.223368,-22.858269],[-43.226968,-22.855669],[-43.229568,-22.852369],[-43.231668,-22.848769],[-43.231668,-22.844869],[-43.229268,-22.843069],[-43.224568,-22.841169],[-43.226968,-22.837869],[-43.230268,-22.836969],[-43.233268,-22.838669],[-43.237868,-22.838669],[-43.242168,-22.838169],[-43.240468,-22.841269],[-43.241468,-22.844769],[-43.244068,-22.841269],[-43.248368,-22.839269],[-43.252368,-22.837569],[-43.255268,-22.835069],[-43.259168,-22.831169],[-43.263768,-22.827069],[-43.267068,-22.822669],[-43.268968,-22.818869],[-43.270468,-22.815769],[-43.271768,-22.812669],[-43.273668,-22.808869],[-43.272168,-22.806069],[-43.272668,-22.801869],[-43.270768,-22.798969],[-43.271168,-22.796069],[-43.272268,-22.792769],[-43.275068,-22.791369],[-43.276268,-22.785269],[-43.277568,-22.780569],[-43.275068,-22.776569],[-43.272968,-22.773269],[-43.270168,-22.769569],[-43.267368,-22.766269],[-43.264668,-22.763569],[-43.264568,-22.760269],[-43.260968,-22.760269],[-43.257768,-22.757969],[-43.254668,-22.755569],[-43.250968,-22.753769],[-43.246068,-22.751569],[-43.243568,-22.748069],[-43.240468,-22.745469],[-43.237168,-22.742769],[-43.233568,-22.741369],[-43.229968,-22.740069],[-43.226468,-22.741069],[-43.222868,-22.740269],[-43.220168,-22.739369],[-43.216968,-22.737469],[-43.213768,-22.734669],[-43.211968,-22.732269],[-43.212368,-22.729269],[-43.215568,-22.727369],[-43.210968,-22.726369],[-43.206768,-22.726769],[-43.203468,-22.726469],[-43.200268,-22.725069],[-43.197368,-22.723769],[-43.192768,-22.722269],[-43.187168,-22.721969],[-43.181868,-22.720669],[-43.176668,-22.717869],[-43.172168,-22.715469],[-43.167868,-22.713669],[-43.163868,-22.710869],[-43.159468,-22.709569],[-43.156168,-22.708769],[-43.152268,-22.707969],[-43.148768,-22.708169],[-43.143668,-22.708169],[-43.139668,-22.709569],[-43.136368,-22.710969],[-43.133868,-22.714069],[-43.130668,-22.714869],[-43.127668,-22.714569],[-43.124668,-22.713169],[-43.121868,-22.710169],[-43.117968,-22.707169],[-43.116568,-22.703969],[-43.117268,-22.699869],[-43.114768,-22.696069],[-43.111468,-22.694069],[-43.107768,-22.694569],[-43.105568,-22.690569],[-43.103068,-22.687169],[-43.097068,-22.685769],[-43.093168,-22.685569],[-43.089868,-22.683269],[-43.086968,-22.681369],[-43.083668,-22.678069],[-43.079268,-22.680069],[-43.073568,-22.681869],[-43.068868,-22.684369],[-43.066568,-22.687969],[-43.061868,-22.686569],[-43.057968,-22.685769],[-43.054368,-22.686069],[-43.052768,-22.690569],[-43.050468,-22.692769],[-43.046468,-22.692669],[-43.042868,-22.692669],[-43.038068,-22.692369],[-43.033968,-22.694569],[-43.036368,-22.700169],[-43.033368,-22.702569],[-43.031168,-22.704669],[-43.033868,-22.706769],[-43.035268,-22.710969],[-43.034468,-22.714769],[-43.031968,-22.718369],[-43.028768,-22.721369],[-43.025968,-22.725069],[-43.029168,-22.726669],[-43.029268,-22.729769],[-43.029768,-22.733069],[-43.029168,-22.735869],[-43.029068,-22.740869],[-43.032368,-22.742269],[-43.032268,-22.747469],[-43.036668,-22.749769],[-43.040568,-22.751269],[-43.047268,-22.757069],[-43.050768,-22.758069],[-43.054668,-22.760369],[-43.058268,-22.762069],[-43.062768,-22.764669],[-43.066868,-22.769269],[-43.067668,-22.774469],[-43.068868,-22.779469],[-43.071668,-22.781669],[-43.074868,-22.783469],[-43.078468,-22.785169],[-43.080968,-22.788669],[-43.080468,-22.791769],[-43.079668,-22.795269],[-43.078768,-22.798369],[-43.074268,-22.800569],[-43.069368,-22.801169],[-43.066068,-22.802969],[-43.068468,-22.806169],[-43.070968,-22.808269],[-43.073168,-22.811669],[-43.077068,-22.815569],[-43.079568,-22.817769],[-43.082568,-22.820269],[-43.085968,-22.821269],[-43.089268,-22.822469],[-43.093468,-22.823169],[-43.096968,-22.826769],[-43.097268,-22.832169],[-43.096368,-22.836969],[-43.096968,-22.840069],[-43.098368,-22.842669],[-43.101668,-22.844169],[-43.104968,-22.847369],[-43.103368,-22.850869],[-43.100568,-22.849869],[-43.101968,-22.853569],[-43.103968,-22.856769],[-43.107268,-22.859969],[-43.108868,-22.862569],[-43.110368,-22.865269],[-43.111968,-22.868269],[-43.113968,-22.865769],[-43.117168,-22.865869],[-43.120468,-22.868269],[-43.123268,-22.871569],[-43.124768,-22.876069],[-43.129168,-22.876669],[-43.133868,-22.880969],[-43.132968,-22.884269],[-43.129668,-22.887169],[-43.128068,-22.891269],[-43.124868,-22.893569],[-43.128068,-22.895669],[-43.132168,-22.896469],[-43.135668,-22.899369],[-43.136568,-22.902869],[-43.134868,-22.905469],[-43.132668,-22.907369],[-43.129868,-22.908969],[-43.125868,-22.907369],[-43.123368,-22.905169],[-43.120168,-22.905469],[-43.116068,-22.905069],[-43.110668,-22.910869],[-43.110768,-22.913969],[-43.107468,-22.915269],[-43.102868,-22.914569],[-43.099168,-22.914569],[-43.095668,-22.916369],[-43.094868,-22.921469],[-43.096168,-22.926169],[-43.098768,-22.931169],[-43.101768,-22.934069],[-43.105668,-22.935169],[-43.109968,-22.934469],[-43.113268,-22.932769],[-43.113568,-22.928969],[-43.116368,-22.930869],[-43.118268,-22.927969],[-43.120568,-22.923269],[-43.124068,-22.924669],[-43.123068,-22.928569],[-43.124768,-22.930869],[-43.126868,-22.933369],[-43.129568,-22.937969],[-43.126568,-22.938769],[-43.121568,-22.938269],[-43.116568,-22.938069],[-43.116668,-22.941969],[-43.119168,-22.944869],[-43.114668,-22.945269],[-43.111468,-22.948569],[-43.112168,-22.952069],[-43.107068,-22.953469],[-43.103668,-22.955969],[-43.100068,-22.952869],[-43.097668,-22.954669],[-43.093668,-22.954069],[-43.090668,-22.954269],[-43.086468,-22.954669],[-43.081468,-22.955469],[-43.076068,-22.956069],[-43.072768,-22.956869],[-43.069668,-22.959269],[-43.066068,-22.959769],[-43.062468,-22.960469],[-43.058768,-22.961269],[-43.054368,-22.962569],[-43.050868,-22.964069],[-43.047768,-22.967869],[-43.046668,-22.973069],[-43.051168,-22.977069],[-43.053868,-22.980269],[-43.050568,-22.981369],[-43.046668,-22.980069],[-43.043868,-22.977769],[-43.040268,-22.975269],[-43.037368,-22.975569],[-43.033768,-22.974569],[-43.030368,-22.975669],[-43.028668,-22.980269],[-43.024468,-22.979969],[-43.024068,-22.976269],[-43.020468,-22.975969],[-43.017068,-22.976269],[-43.013968,-22.976769],[-43.013768,-22.973169],[-43.010968,-22.970569],[-43.007968,-22.969869],[-43.004668,-22.969769],[-43.001668,-22.969469],[-42.997968,-22.969469],[-42.994768,-22.969469],[-42.991368,-22.969269],[-42.986368,-22.969469],[-42.978868,-22.969569],[-42.974868,-22.969769],[-42.965968,-22.969869],[-42.962068,-22.970369],[-42.956068,-22.970869],[-42.953168,-22.970969],[-42.949068,-22.971469],[-42.944868,-22.972069],[-42.937968,-22.973169],[-42.934168,-22.973769],[-42.931168,-22.974169],[-42.927568,-22.974469],[-42.923068,-22.974569],[-42.918168,-22.974869],[-42.914268,-22.974569],[-42.910568,-22.974169],[-42.906668,-22.973069],[-42.902268,-22.971769],[-42.897968,-22.970569],[-42.893768,-22.969569],[-42.890668,-22.968769],[-42.887368,-22.968169],[-42.883568,-22.967569],[-42.879868,-22.966769],[-42.875168,-22.966169],[-42.870768,-22.965569],[-42.866068,-22.965169],[-42.861068,-22.964769],[-42.857168,-22.964569],[-42.852468,-22.964069],[-42.847368,-22.963969],[-42.843668,-22.963669],[-42.840068,-22.963369],[-42.836568,-22.962969],[-42.832668,-22.962569],[-42.827868,-22.962269],[-42.824868,-22.962069],[-42.820968,-22.961969],[-42.817468,-22.961769],[-42.814168,-22.961569],[-42.810468,-22.961469],[-42.806368,-22.961169],[-42.802568,-22.960969],[-42.798668,-22.960769],[-42.794268,-22.960469],[-42.788868,-22.960169],[-42.783368,-22.960069],[-42.777568,-22.959769],[-42.773368,-22.959369],[-42.768768,-22.959069],[-42.764068,-22.958669],[-42.759268,-22.958469],[-42.755468,-22.958469],[-42.750568,-22.958169],[-42.744368,-22.957569],[-42.740468,-22.957169],[-42.736368,-22.956769],[-42.733068,-22.956469],[-42.728968,-22.956169],[-42.724568,-22.956169],[-42.720268,-22.956069],[-42.716468,-22.956169],[-42.712068,-22.956069],[-42.707568,-22.956269],[-42.703568,-22.956469],[-42.698968,-22.957069],[-42.694368,-22.959669],[-42.691668,-22.961769],[-42.688368,-22.961269],[-42.685468,-22.959869],[-42.682768,-22.957169],[-42.681968,-22.954069],[-42.681968,-22.950769],[-42.681668,-22.947369],[-42.679168,-22.945469],[-42.672868,-22.943269],[-42.668568,-22.942169],[-42.665268,-22.941569],[-42.661168,-22.940769],[-42.657068,-22.939969],[-42.653768,-22.939369],[-42.649468,-22.938569],[-42.644868,-22.938069],[-42.640068,-22.936669],[-42.635368,-22.936569],[-42.631268,-22.936069],[-42.625768,-22.935469],[-42.621368,-22.935169],[-42.612168,-22.934369],[-42.606068,-22.933869],[-42.601668,-22.933569],[-42.595868,-22.933269],[-42.587868,-22.933069],[-42.583168,-22.932969],[-42.578768,-22.932769],[-42.574868,-22.932769],[-42.571868,-22.932769],[-42.566668,-22.932669],[-42.558268,-22.932769],[-42.553668,-22.932769],[-42.550268,-22.932769],[-42.544268,-22.932769],[-42.539268,-22.932969],[-42.532268,-22.933069],[-42.525768,-22.933269],[-42.519268,-22.933269],[-42.512068,-22.933669],[-42.508868,-22.933769],[-42.504468,-22.934069],[-42.500268,-22.934469],[-42.494968,-22.936369],[-42.490368,-22.937369],[-42.486968,-22.935869],[-42.483968,-22.935869],[-42.480668,-22.936369],[-42.476968,-22.936969],[-42.474168,-22.938069],[-42.469868,-22.936969],[-42.465968,-22.936169],[-42.462268,-22.935569],[-42.458768,-22.935169],[-42.454268,-22.934869],[-42.448168,-22.934869],[-42.441668,-22.934869],[-42.437368,-22.934869],[-42.434168,-22.934669],[-42.429468,-22.934669],[-42.422168,-22.934869],[-42.416668,-22.934969],[-42.410868,-22.935169],[-42.405468,-22.935269],[-42.401468,-22.935569],[-42.395768,-22.935869],[-42.392168,-22.935869],[-42.389068,-22.935869],[-42.386068,-22.935769],[-42.380268,-22.934969],[-42.375568,-22.935469],[-42.371668,-22.935469],[-42.367668,-22.935469],[-42.363568,-22.935469],[-42.360368,-22.935469],[-42.357168,-22.935569],[-42.353868,-22.935569],[-42.350668,-22.935769],[-42.347268,-22.935869],[-42.343468,-22.936069],[-42.339068,-22.936169],[-42.333768,-22.936369],[-42.329568,-22.936569],[-42.326368,-22.936669],[-42.322368,-22.936869],[-42.318168,-22.937169],[-42.314068,-22.937369],[-42.308368,-22.937669],[-42.303368,-22.937969],[-42.297868,-22.938369],[-42.292868,-22.938569],[-42.288068,-22.939069],[-42.284768,-22.939169],[-42.280668,-22.938069],[-42.276768,-22.939669],[-42.272968,-22.939869],[-42.268768,-22.939869],[-42.264568,-22.940169],[-42.261268,-22.940269],[-42.258168,-22.940469],[-42.253568,-22.940569],[-42.248368,-22.940869],[-42.244068,-22.940869],[-42.239668,-22.941269],[-42.236068,-22.941369],[-42.232868,-22.941569],[-42.229568,-22.941669],[-42.226368,-22.941969],[-42.223168,-22.942169],[-42.220168,-22.942369],[-42.216768,-22.942669],[-42.213468,-22.942669],[-42.208968,-22.943069],[-42.204868,-22.943469],[-42.199968,-22.943569],[-42.195168,-22.943869],[-42.190568,-22.944169],[-42.187268,-22.944569],[-42.183868,-22.944869],[-42.179668,-22.944969],[-42.175268,-22.945269],[-42.170368,-22.945769],[-42.165068,-22.946069],[-42.159468,-22.946669],[-42.155468,-22.947069],[-42.151568,-22.947369],[-42.147068,-22.947769],[-42.143168,-22.948169],[-42.139568,-22.948469],[-42.135968,-22.948569],[-42.132468,-22.949269],[-42.127368,-22.949569],[-42.123268,-22.949869],[-42.119368,-22.950269],[-42.114968,-22.950769],[-42.111168,-22.950969],[-42.108068,-22.951469],[-42.104468,-22.951869],[-42.100668,-22.952069],[-42.096268,-22.952569],[-42.091968,-22.953269],[-42.088768,-22.953569],[-42.085368,-22.954069],[-42.081468,-22.954569],[-42.075968,-22.955369],[-42.071868,-22.955969],[-42.067768,-22.956769],[-42.063068,-22.957669],[-42.059368,-22.958469],[-42.055468,-22.959369],[-42.051268,-22.960769],[-42.046668,-22.962569],[-42.043568,-22.963969],[-42.040968,-22.965169],[-42.038068,-22.967069],[-42.034868,-22.969769],[-42.032368,-22.973869],[-42.034168,-22.977869],[-42.030968,-22.981369],[-42.026468,-22.982269],[-42.022368,-22.982769],[-42.019668,-22.984269],[-42.017968,-22.986869],[-42.016768,-22.991069],[-42.013568,-22.995569],[-42.012668,-22.989969],[-42.009968,-22.986069],[-42.008268,-22.982769],[-42.010468,-22.979569],[-42.013768,-22.978369],[-42.018668,-22.978669],[-42.020468,-22.973469],[-42.017868,-22.970369],[-42.013168,-22.971969],[-42.014968,-22.968369],[-42.014268,-22.964869],[-42.010168,-22.965369],[-42.007368,-22.966269],[-42.003868,-22.968769],[-42.001668,-22.965669],[-41.997168,-22.964069],[-41.995468,-22.961569],[-41.997768,-22.959369],[-42.002068,-22.959269],[-42.005168,-22.961469],[-42.008468,-22.960369],[-42.007668,-22.955669],[-42.005768,-22.952169],[-42.010668,-22.952569],[-42.014268,-22.954669],[-42.016468,-22.956769],[-42.018668,-22.960069],[-42.023168,-22.960369],[-42.025868,-22.957169],[-42.024568,-22.954269],[-42.024268,-22.950969],[-42.023668,-22.946669],[-42.027668,-22.946269],[-42.032768,-22.945769],[-42.033968,-22.941969],[-42.035668,-22.939669],[-42.036768,-22.936169],[-42.037268,-22.931669],[-42.037568,-22.926669],[-42.037368,-22.922769],[-42.036768,-22.918869],[-42.035868,-22.914969],[-42.034468,-22.910569],[-42.033068,-22.906569],[-42.031568,-22.903369],[-42.029868,-22.900469],[-42.027868,-22.897369],[-42.025068,-22.893969],[-42.022668,-22.891069],[-42.019868,-22.888469],[-42.017168,-22.885969],[-42.014268,-22.883769],[-42.010368,-22.882769],[-42.007368,-22.885369],[-42.004868,-22.887869],[-42.002668,-22.889669],[-42.000768,-22.887469],[-41.998768,-22.884969],[-41.995068,-22.883469],[-41.990568,-22.882069],[-41.987568,-22.879469],[-41.985768,-22.876869],[-41.984168,-22.874369],[-41.980568,-22.872269],[-41.982868,-22.869669],[-41.982268,-22.866669],[-41.984968,-22.863269],[-41.986368,-22.858969],[-41.986468,-22.855269],[-41.986068,-22.851669],[-41.984968,-22.848369],[-41.983668,-22.844769],[-41.982468,-22.841169],[-41.980868,-22.837869],[-41.978868,-22.834269],[-41.976668,-22.830369],[-41.974168,-22.827069],[-41.971668,-22.824069],[-41.967668,-22.821869],[-41.963768,-22.819269],[-41.959368,-22.818869],[-41.955768,-22.816569],[-41.951568,-22.814169],[-41.947468,-22.812969],[-41.943268,-22.813069],[-41.939568,-22.809769],[-41.935168,-22.809769],[-41.932468,-22.811269],[-41.927968,-22.812669],[-41.925768,-22.808769],[-41.928668,-22.807169],[-41.930568,-22.803069],[-41.928968,-22.797869],[-41.926368,-22.793169],[-41.923968,-22.789969],[-41.921368,-22.786969],[-41.918068,-22.784769],[-41.915968,-22.782269],[-41.913468,-22.780569],[-41.910168,-22.778969],[-41.906768,-22.778369],[-41.903968,-22.780069],[-41.902668,-22.782769],[-41.898468,-22.782869],[-41.895368,-22.785869],[-41.892568,-22.784169],[-41.889568,-22.780869],[-41.886468,-22.777869],[-41.884268,-22.780969],[-41.882468,-22.784169],[-41.882368,-22.778669],[-41.884968,-22.774869],[-41.888468,-22.772969],[-41.886568,-22.768969],[-41.883468,-22.770369],[-41.881268,-22.773669],[-41.878068,-22.774369],[-41.877668,-22.770469],[-41.877968,-22.766069],[-41.875468,-22.762369],[-41.873768,-22.765469],[-41.870068,-22.762369],[-41.866668,-22.762069],[-41.865068,-22.758869],[-41.864468,-22.755169],[-41.867268,-22.753569],[-41.870068,-22.755669],[-41.873068,-22.753869],[-41.873268,-22.750169],[-41.871168,-22.746069],[-41.869168,-22.742169],[-41.871968,-22.738569],[-41.875168,-22.741469],[-41.878468,-22.741469],[-41.881368,-22.740769],[-41.882668,-22.744069],[-41.882068,-22.747369],[-41.883068,-22.750569],[-41.885268,-22.753769],[-41.889068,-22.755169],[-41.892968,-22.754569],[-41.895968,-22.752369],[-41.898668,-22.750169],[-41.900868,-22.753569],[-41.903368,-22.755969],[-41.906268,-22.756569],[-41.909868,-22.756669],[-41.908168,-22.760969],[-41.908368,-22.764369],[-41.909868,-22.767669],[-41.912368,-22.769369],[-41.915368,-22.771069],[-41.919568,-22.771469],[-41.923868,-22.770769],[-41.928568,-22.769269],[-41.932968,-22.766769],[-41.935868,-22.764569],[-41.938568,-22.762069],[-41.941668,-22.758869],[-41.944668,-22.755269],[-41.947468,-22.751269],[-41.949568,-22.748369],[-41.950968,-22.745469],[-41.952368,-22.742269],[-41.954668,-22.740069],[-41.957068,-22.737169],[-41.956768,-22.732869],[-41.960368,-22.732469],[-41.963368,-22.732569],[-41.966268,-22.732469],[-41.969468,-22.730569],[-41.973068,-22.729469],[-41.976768,-22.727469],[-41.979268,-22.725269],[-41.981168,-22.722769],[-41.982568,-22.719869],[-41.984368,-22.717069],[-41.986168,-22.713369],[-41.988068,-22.710069],[-41.989168,-22.706869],[-41.990068,-22.703569],[-41.991068,-22.700369],[-41.992168,-22.696569],[-41.993268,-22.692069],[-41.994068,-22.688769],[-41.994668,-22.685469],[-41.995068,-22.682269],[-41.995768,-22.679169],[-41.996368,-22.675069],[-41.996968,-22.670269],[-41.997668,-22.666369],[-41.997968,-22.662869],[-41.998268,-22.658369],[-41.998868,-22.652669],[-41.999168,-22.647269],[-41.999468,-22.642869],[-41.999468,-22.638969],[-41.999468,-22.633869],[-41.999468,-22.629869],[-41.999168,-22.625969],[-41.998868,-22.621869],[-41.998368,-22.617569],[-41.998068,-22.613369],[-41.997768,-22.609669],[-41.997168,-22.606369],[-41.996568,-22.603169],[-41.995068,-22.599569],[-41.991168,-22.597669],[-41.988568,-22.595669],[-41.988268,-22.592569],[-41.987468,-22.589769],[-41.986768,-22.585869],[-41.985768,-22.582269],[-41.984368,-22.577669],[-41.983168,-22.573869],[-41.982168,-22.570969],[-41.981068,-22.567669],[-41.979668,-22.563569],[-41.977568,-22.559069],[-41.976168,-22.555469],[-41.974568,-22.552269],[-41.973068,-22.549369],[-41.971268,-22.546369],[-41.969268,-22.543169],[-41.966968,-22.540069],[-41.964268,-22.537069],[-41.961968,-22.534869],[-41.959668,-22.532769],[-41.955168,-22.531569],[-41.951468,-22.530169],[-41.948568,-22.528969],[-41.945168,-22.528069],[-41.941368,-22.530169],[-41.938768,-22.532269],[-41.936368,-22.535969],[-41.932168,-22.535969],[-41.928968,-22.532369],[-41.926068,-22.530469],[-41.922868,-22.528769],[-41.920568,-22.526169],[-41.918368,-22.520369],[-41.915868,-22.515769],[-41.913468,-22.512369],[-41.910968,-22.509369],[-41.907768,-22.505169],[-41.905168,-22.501669],[-41.903368,-22.499469],[-41.900968,-22.496669],[-41.898468,-22.493669],[-41.895468,-22.490569],[-41.892168,-22.487569],[-41.889268,-22.486169],[-41.885968,-22.486369],[-41.883068,-22.488069],[-41.878068,-22.487469],[-41.876568,-22.484669],[-41.873768,-22.483869],[-41.871868,-22.480669],[-41.868668,-22.478569],[-41.865468,-22.477869],[-41.862568,-22.475269],[-41.861068,-22.470869],[-41.860368,-22.464769],[-41.859468,-22.460869],[-41.857868,-22.457969],[-41.854968,-22.455669],[-41.854768,-22.450469],[-41.852768,-22.446669],[-41.849768,-22.443569],[-41.846968,-22.440869],[-41.843768,-22.437769],[-41.841568,-22.435269],[-41.839468,-22.432969],[-41.837268,-22.430869],[-41.835068,-22.428969],[-41.831768,-22.426469],[-41.828268,-22.424969],[-41.825668,-22.422469],[-41.822668,-22.420269],[-41.819368,-22.416369],[-41.815968,-22.415669],[-41.813368,-22.414169],[-41.808768,-22.411669],[-41.804168,-22.409169],[-41.800768,-22.407369],[-41.797868,-22.405869],[-41.794768,-22.404569],[-41.791668,-22.401269],[-41.788868,-22.399069],[-41.786368,-22.397669],[-41.783668,-22.396069],[-41.780968,-22.394569],[-41.778368,-22.393169],[-41.775768,-22.391869],[-41.771868,-22.389969],[-41.767968,-22.388769],[-41.767368,-22.384969],[-41.770468,-22.384669],[-41.769268,-22.380969],[-41.767168,-22.376669],[-41.770968,-22.376269],[-41.773668,-22.374669],[-41.775868,-22.372369],[-41.774768,-22.368269],[-41.772968,-22.363669],[-41.770368,-22.359669],[-41.767468,-22.356769],[-41.765168,-22.354269],[-41.762768,-22.352069],[-41.759068,-22.349469],[-41.755168,-22.347269],[-41.751368,-22.345169],[-41.747968,-22.343669],[-41.744168,-22.341969],[-41.740068,-22.339569],[-41.735768,-22.336169],[-41.732068,-22.333269],[-41.728868,-22.330969],[-41.726168,-22.328869],[-41.723068,-22.325969],[-41.719568,-22.322769],[-41.716668,-22.320169],[-41.714068,-22.317969],[-41.711468,-22.315869],[-41.708268,-22.313369],[-41.705768,-22.311569],[-41.702668,-22.309169],[-41.699268,-22.306669],[-41.696368,-22.304769],[-41.693168,-22.302569],[-41.689568,-22.299669],[-41.684668,-22.297269],[-41.681568,-22.295369],[-41.678368,-22.293569],[-41.675268,-22.291769],[-41.672468,-22.290269],[-41.669268,-22.288669],[-41.666668,-22.287269],[-41.663168,-22.285569],[-41.659468,-22.283769],[-41.654568,-22.281469],[-41.650468,-22.279569],[-41.646568,-22.277669],[-41.641568,-22.275669],[-41.637768,-22.273969],[-41.634068,-22.272369],[-41.630268,-22.270669],[-41.626668,-22.269369],[-41.624068,-22.268169],[-41.620868,-22.266769],[-41.617268,-22.265169],[-41.614068,-22.264069],[-41.610568,-22.262369],[-41.606668,-22.260669],[-41.603168,-22.259169],[-41.598868,-22.257669],[-41.594868,-22.255669],[-41.590868,-22.254069],[-41.587568,-22.252769],[-41.583968,-22.251269],[-41.578568,-22.249069],[-41.574668,-22.247369],[-41.571868,-22.246269],[-41.567768,-22.244669],[-41.564168,-22.243269],[-41.560868,-22.241869],[-41.557668,-22.240569],[-41.554668,-22.239169],[-41.550568,-22.237869],[-41.545868,-22.236169],[-41.542468,-22.233969],[-41.538168,-22.232769],[-41.533668,-22.230669],[-41.530568,-22.229469],[-41.527668,-22.228169],[-41.523968,-22.226669],[-41.520368,-22.225069],[-41.517568,-22.223969],[-41.514568,-22.222869],[-41.510768,-22.221669],[-41.506768,-22.219869],[-41.502668,-22.218469],[-41.499668,-22.217369],[-41.496868,-22.216469],[-41.493668,-22.215369],[-41.489568,-22.214069],[-41.485268,-22.212669],[-41.480068,-22.211169],[-41.475668,-22.209769],[-41.472868,-22.208969],[-41.469168,-22.207669],[-41.465968,-22.206769],[-41.462868,-22.205769],[-41.459368,-22.204869],[-41.454968,-22.203469],[-41.450968,-22.202169],[-41.448168,-22.201569],[-41.445468,-22.200669],[-41.442668,-22.199969],[-41.439868,-22.199269],[-41.436868,-22.198569],[-41.434068,-22.197769],[-41.430868,-22.197069],[-41.427768,-22.196269],[-41.423968,-22.195169],[-41.419468,-22.193869],[-41.415568,-22.192969],[-41.411268,-22.191669],[-41.407268,-22.190569],[-41.403768,-22.189869],[-41.399468,-22.188769],[-41.395068,-22.187669],[-41.391768,-22.186869],[-41.387168,-22.185569],[-41.382068,-22.184069],[-41.378068,-22.182969],[-41.374668,-22.182169],[-41.370868,-22.181069],[-41.367768,-22.180269],[-41.364768,-22.179469],[-41.361068,-22.178369],[-41.357768,-22.177269],[-41.354568,-22.176369],[-41.350968,-22.175769],[-41.347568,-22.174969],[-41.344768,-22.174169],[-41.340468,-22.173169],[-41.335468,-22.171969],[-41.331768,-22.171069],[-41.327968,-22.169969],[-41.323968,-22.169169],[-41.319068,-22.168069],[-41.315468,-22.167169],[-41.311968,-22.166169],[-41.308668,-22.165269],[-41.305768,-22.164469],[-41.301168,-22.163069],[-41.296468,-22.161969],[-41.291668,-22.160769],[-41.286968,-22.159569],[-41.284168,-22.158969],[-41.280068,-22.157869],[-41.275868,-22.156969],[-41.271768,-22.155669],[-41.267868,-22.154569],[-41.264368,-22.153669],[-41.260768,-22.152569],[-41.257668,-22.151469],[-41.253868,-22.150369],[-41.248768,-22.148669],[-41.244068,-22.147069],[-41.239068,-22.145369],[-41.233768,-22.143569],[-41.229268,-22.142069],[-41.225568,-22.140769],[-41.222268,-22.139669],[-41.218368,-22.138269],[-41.213968,-22.136769],[-41.210368,-22.135169],[-41.206268,-22.133469],[-41.201768,-22.131369],[-41.197068,-22.129369],[-41.193768,-22.128069],[-41.189868,-22.126269],[-41.186268,-22.124369],[-41.183268,-22.122969],[-41.180468,-22.121669],[-41.177568,-22.120269],[-41.174768,-22.119069],[-41.171468,-22.117569],[-41.167868,-22.116069],[-41.164268,-22.114169],[-41.159868,-22.111769],[-41.155568,-22.109269],[-41.152268,-22.107569],[-41.148668,-22.105569],[-41.145468,-22.103969],[-41.142868,-22.102069],[-41.139368,-22.099869],[-41.134868,-22.097269],[-41.135268,-22.093369],[-41.132068,-22.090069],[-41.129568,-22.088269],[-41.126668,-22.086469],[-41.123268,-22.084269],[-41.120468,-22.082569],[-41.116868,-22.081069],[-41.113268,-22.078569],[-41.109468,-22.076369],[-41.106168,-22.074569],[-41.102568,-22.072469],[-41.099468,-22.070769],[-41.095968,-22.068769],[-41.092268,-22.066669],[-41.088368,-22.064469],[-41.083768,-22.061869],[-41.081068,-22.060269],[-41.078568,-22.058769],[-41.075268,-22.056869],[-41.072168,-22.055269],[-41.069568,-22.053869],[-41.065968,-22.052169],[-41.062168,-22.050069],[-41.058368,-22.048269],[-41.054768,-22.046469],[-41.050468,-22.044269],[-41.047168,-22.042569],[-41.043668,-22.040969],[-41.039868,-22.039169],[-41.035568,-22.037069],[-41.031968,-22.035369],[-41.029168,-22.034169],[-41.025868,-22.032669],[-41.021768,-22.030969],[-41.018968,-22.029469],[-41.016468,-22.028069],[-41.013468,-22.026569],[-41.010168,-22.024769],[-41.007468,-22.022969],[-41.004868,-22.021469],[-41.002068,-22.019269],[-40.999368,-22.017369],[-40.996368,-22.014969],[-40.993668,-22.012669],[-40.991368,-22.010769],[-40.989068,-22.008169],[-40.986668,-22.004869],[-40.984768,-22.000969],[-40.983068,-21.996969],[-40.981668,-21.993669],[-40.980268,-21.989769],[-40.978968,-21.985769],[-40.977768,-21.981669],[-40.977068,-21.978469],[-40.976168,-21.974169],[-40.975368,-21.969069],[-40.974868,-21.964269],[-40.974568,-21.959269],[-40.974568,-21.954569],[-40.974568,-21.950669],[-40.974568,-21.947369],[-40.974868,-21.943269],[-40.975568,-21.938869],[-40.976368,-21.934169],[-40.977068,-21.929969],[-40.978068,-21.925369],[-40.979168,-21.920769],[-40.980368,-21.915969],[-40.982168,-21.909569],[-40.983868,-21.903969],[-40.985268,-21.899569],[-40.986368,-21.895069],[-40.987468,-21.891269],[-40.988268,-21.887669],[-40.989368,-21.882769],[-40.990068,-21.879569],[-40.990868,-21.876069],[-40.991568,-21.872369],[-40.992668,-21.866569],[-40.993068,-21.863369],[-40.994668,-21.854969],[-40.994368,-21.850569],[-40.998768,-21.840969],[-40.998768,-21.836569],[-41.000468,-21.832569],[-41.001368,-21.828569],[-41.002668,-21.824569],[-41.003768,-21.820269],[-41.004968,-21.815869],[-41.006068,-21.811369],[-41.006868,-21.808369],[-41.007668,-21.804769],[-41.008568,-21.801069],[-41.009568,-21.796469],[-41.010968,-21.791469],[-41.011768,-21.788369],[-41.012368,-21.785569],[-41.013168,-21.781769],[-41.014268,-21.777969],[-41.014868,-21.775169],[-41.015768,-21.771169],[-41.017068,-21.766569],[-41.017868,-21.762869],[-41.018568,-21.759869],[-41.019268,-21.757069],[-41.019768,-21.754069],[-41.020668,-21.750569],[-41.021468,-21.746969],[-41.022268,-21.742669],[-41.022868,-21.738569],[-41.023668,-21.734469],[-41.023968,-21.730569],[-41.024368,-21.725969],[-41.024568,-21.722269],[-41.024768,-21.719069],[-41.024768,-21.715569],[-41.024568,-21.712269],[-41.024368,-21.709069],[-41.024068,-21.705969],[-41.024068,-21.702569],[-41.023768,-21.698869],[-41.023668,-21.695969],[-41.023268,-21.692669],[-41.022868,-21.687969],[-41.022368,-21.683369],[-41.021568,-21.678969],[-41.020668,-21.675269],[-41.020068,-21.672169],[-41.019368,-21.668869],[-41.018768,-21.664869],[-41.017968,-21.660569],[-41.017368,-21.656969],[-41.016768,-21.653369],[-41.016268,-21.649069],[-41.015668,-21.645669],[-41.015068,-21.640769],[-41.014568,-21.637069],[-41.014268,-21.633469],[-41.013568,-21.629169],[-41.013268,-21.625469],[-41.012768,-21.621569],[-41.015068,-21.619369],[-41.018268,-21.620569],[-41.023368,-21.621569],[-41.027268,-21.621669],[-41.030168,-21.621069],[-41.033068,-21.620069],[-41.035968,-21.619769],[-41.039768,-21.619769],[-41.045368,-21.618369],[-41.048568,-21.617769],[-41.047468,-21.614669],[-41.042768,-21.616169],[-41.037868,-21.615869],[-41.033368,-21.616069],[-41.028368,-21.615769],[-41.022968,-21.615069],[-41.019868,-21.614369],[-41.016468,-21.612469],[-41.019868,-21.607169],[-41.022868,-21.605369],[-41.026268,-21.603869],[-41.029268,-21.602069],[-41.032668,-21.599169],[-41.035968,-21.596969],[-41.038868,-21.594069],[-41.041668,-21.589069],[-41.043868,-21.585969],[-41.047568,-21.588169],[-41.046368,-21.592969],[-41.046968,-21.596169],[-41.048168,-21.599169],[-41.051068,-21.597269],[-41.051568,-21.594469],[-41.053568,-21.585469],[-41.054768,-21.581769],[-41.055468,-21.576769],[-41.056068,-21.573569],[-41.059468,-21.568869],[-41.059768,-21.565469],[-41.060768,-21.561169],[-41.063368,-21.555569],[-41.064568,-21.549169],[-41.069368,-21.535569],[-41.071568,-21.528969],[-41.072668,-21.524769],[-41.073168,-21.521569],[-41.073168,-21.518269],[-41.073168,-21.514869],[-41.072668,-21.510969],[-41.071868,-21.507169],[-41.070968,-21.503069],[-41.069668,-21.499869],[-41.068268,-21.496569],[-41.066368,-21.492669],[-41.063868,-21.488369],[-41.061568,-21.485069],[-41.059068,-21.481769],[-41.057268,-21.479169],[-41.055468,-21.476969],[-41.052268,-21.473669],[-41.049168,-21.470269],[-41.046368,-21.467569],[-41.042468,-21.465669],[-41.039968,-21.463469],[-41.037368,-21.461169],[-41.035568,-21.457569],[-41.032368,-21.454569],[-41.029768,-21.452369],[-41.027368,-21.448569],[-41.023968,-21.445769],[-41.020368,-21.440769],[-41.019068,-21.436969],[-41.017168,-21.433769],[-41.013968,-21.429769],[-41.011268,-21.425869],[-41.008868,-21.422569],[-41.006368,-21.419269],[-41.004868,-21.414569],[-41.003468,-21.410569],[-41.001668,-21.406169],[-40.999868,-21.402869],[-40.998268,-21.400469],[-40.996268,-21.397969],[-40.993868,-21.395769],[-40.991068,-21.393669],[-40.987568,-21.392169],[-40.983868,-21.392069],[-40.981768,-21.389969],[-40.980068,-21.386869],[-40.978068,-21.384069],[-40.975668,-21.381769],[-40.972768,-21.378069],[-40.969468,-21.375169],[-40.968068,-21.371069],[-40.965968,-21.367769],[-40.965168,-21.364969],[-40.964068,-21.362269],[-40.961868,-21.359369],[-40.962968,-21.354169],[-40.963968,-21.349769],[-40.964368,-21.345969],[-40.964568,-21.342569],[-40.964368,-21.337969],[-40.963968,-21.332869],[-40.962968,-21.328269],[-40.961868,-21.323969],[-40.960468,-21.319669],[-40.959568,-21.316569],[-40.958168,-21.312469],[-40.958768,-21.308369],[-40.959068,-21.303969],[-40.959368,-21.301069],[-40.959268,-21.297169],[-40.959868,-21.294169],[-40.960668,-21.290969],[-40.961568,-21.285569],[-40.961868,-21.280469],[-40.962268,-21.275469],[-40.962268,-21.270769],[-40.962068,-21.266769],[-40.961268,-21.262169],[-40.960768,-21.258469],[-40.960168,-21.255569],[-40.958768,-21.250769],[-40.957568,-21.246569],[-40.955768,-21.242569],[-40.953968,-21.237969],[-40.952168,-21.233969],[-40.950168,-21.230069],[-40.948168,-21.226769],[-40.946268,-21.223469],[-40.944268,-21.220569],[-40.942068,-21.217269],[-40.939468,-21.212969],[-40.936868,-21.208669],[-40.935268,-21.204969],[-40.933768,-21.202069],[-40.932168,-21.199069],[-40.930068,-21.195269],[-40.926968,-21.190869],[-40.924668,-21.187469],[-40.922568,-21.184369],[-40.920868,-21.181669],[-40.919168,-21.178969],[-40.917268,-21.176369],[-40.915068,-21.173569],[-40.912568,-21.170669],[-40.908968,-21.167269],[-40.906168,-21.164969],[-40.902668,-21.162569],[-40.899468,-21.160569],[-40.896768,-21.159169],[-40.892968,-21.156569],[-40.890468,-21.153369],[-40.887668,-21.149369],[-40.884568,-21.145769],[-40.881868,-21.143169],[-40.878868,-21.140769],[-40.876268,-21.138769],[-40.873368,-21.137069],[-40.870568,-21.135369],[-40.867768,-21.133769],[-40.864468,-21.132369],[-40.861368,-21.130169],[-40.858868,-21.127669],[-40.857868,-21.124469],[-40.857468,-21.121569],[-40.856068,-21.117569],[-40.854468,-21.113969],[-40.852868,-21.111069],[-40.851668,-21.108269],[-40.849968,-21.104269],[-40.847768,-21.099869],[-40.846268,-21.096369],[-40.844468,-21.092869],[-40.842668,-21.088769],[-40.841468,-21.085469],[-40.840168,-21.082169],[-40.838668,-21.077669],[-40.837368,-21.073469],[-40.836268,-21.069169],[-40.835368,-21.065269],[-40.834268,-21.061369],[-40.833268,-21.057669],[-40.832068,-21.053569],[-40.830468,-21.049169],[-40.828168,-21.045269],[-40.824968,-21.043669],[-40.821368,-21.041969],[-40.818768,-21.038769],[-40.817068,-21.036269],[-40.814368,-21.035169],[-40.812268,-21.032569],[-40.811668,-21.028469],[-40.810868,-21.023969],[-40.809968,-21.019369],[-40.808868,-21.014669],[-40.807168,-21.009869],[-40.804968,-21.005769],[-40.805868,-21.002169],[-40.807968,-20.999669],[-40.809468,-20.995269],[-40.810468,-20.991369],[-40.810868,-20.987469],[-40.811068,-20.983569],[-40.810868,-20.980569],[-40.810868,-20.976669],[-40.810468,-20.972669],[-40.809868,-20.967569],[-40.809368,-20.963669],[-40.808568,-20.958769],[-40.807668,-20.955169],[-40.806868,-20.951569],[-40.803968,-20.943269],[-40.802868,-20.940469],[-40.801168,-20.936269],[-40.799368,-20.932969],[-40.796768,-20.928269],[-40.795368,-20.925769],[-40.790068,-20.918969],[-40.786368,-20.914969],[-40.784168,-20.911469],[-40.781668,-20.908069],[-40.777668,-20.905069],[-40.776568,-20.900469],[-40.774568,-20.895669],[-40.771168,-20.892169],[-40.767368,-20.891269],[-40.764268,-20.887369],[-40.762168,-20.883869],[-40.760668,-20.881369],[-40.759068,-20.878769],[-40.761768,-20.875469],[-40.759968,-20.871869],[-40.758068,-20.868369],[-40.760168,-20.866169],[-40.757768,-20.863569],[-40.754968,-20.859269],[-40.752168,-20.856369],[-40.749668,-20.853969],[-40.746268,-20.850069],[-40.742568,-20.847269],[-40.738668,-20.845269],[-40.733868,-20.843769],[-40.729268,-20.842369],[-40.725968,-20.842069],[-40.722668,-20.845869],[-40.718668,-20.844869],[-40.713968,-20.842569],[-40.710468,-20.839769],[-40.706868,-20.837269],[-40.702868,-20.836169],[-40.699068,-20.833569],[-40.694668,-20.834369],[-40.691968,-20.831469],[-40.689368,-20.827969],[-40.684068,-20.826569],[-40.681168,-20.823769],[-40.676668,-20.822169],[-40.672568,-20.821269],[-40.671068,-20.818469],[-40.667468,-20.817069],[-40.665668,-20.813069],[-40.662068,-20.811169],[-40.657368,-20.810469],[-40.654868,-20.808069],[-40.652568,-20.806069],[-40.649268,-20.807169],[-40.645368,-20.808669],[-40.641468,-20.810169],[-40.637968,-20.811569],[-40.634968,-20.813069],[-40.631368,-20.815869],[-40.629068,-20.820169],[-40.631268,-20.824869],[-40.632768,-20.829569],[-40.632768,-20.832569],[-40.632368,-20.835469],[-40.630768,-20.839469],[-40.627668,-20.840169],[-40.625468,-20.835869],[-40.621868,-20.833969],[-40.619668,-20.830969],[-40.617568,-20.826869],[-40.615768,-20.824269],[-40.614668,-20.819569],[-40.613568,-20.815869],[-40.611868,-20.813269],[-40.610768,-20.809969],[-40.607568,-20.805869],[-40.603068,-20.804969],[-40.598668,-20.804969],[-40.594568,-20.802869],[-40.590168,-20.801969],[-40.586968,-20.804669],[-40.582868,-20.803069],[-40.582368,-20.798269],[-40.580668,-20.794469],[-40.577568,-20.790069],[-40.574568,-20.787569],[-40.576468,-20.783669],[-40.576768,-20.780169],[-40.576568,-20.776969],[-40.575768,-20.773469],[-40.574568,-20.770669],[-40.572668,-20.767969],[-40.570168,-20.764069],[-40.568068,-20.761069],[-40.565268,-20.758469],[-40.562968,-20.755569],[-40.560768,-20.752069],[-40.558668,-20.748669],[-40.556668,-20.746569],[-40.554368,-20.744469],[-40.551868,-20.742269],[-40.548568,-20.740269],[-40.543168,-20.738569],[-40.538868,-20.738569],[-40.535968,-20.742169],[-40.533368,-20.740769],[-40.532268,-20.735869],[-40.527068,-20.733569],[-40.527268,-20.729469],[-40.524268,-20.729269],[-40.520968,-20.728669],[-40.524068,-20.725669],[-40.522968,-20.720869],[-40.520468,-20.716769],[-40.518668,-20.712969],[-40.516568,-20.709569],[-40.514668,-20.705369],[-40.514368,-20.702069],[-40.513568,-20.698169],[-40.512468,-20.695169],[-40.510768,-20.691669],[-40.508868,-20.688569],[-40.507168,-20.685769],[-40.504568,-20.682769],[-40.501668,-20.678569],[-40.499968,-20.675069],[-40.496568,-20.673969],[-40.494368,-20.670869],[-40.492168,-20.668169],[-40.494368,-20.665569],[-40.496268,-20.662869],[-40.494068,-20.659469],[-40.491168,-20.656969],[-40.487468,-20.654769],[-40.484168,-20.653069],[-40.479768,-20.652569],[-40.475568,-20.653469],[-40.474468,-20.656269],[-40.473468,-20.660269],[-40.467668,-20.660969],[-40.467368,-20.656969],[-40.466968,-20.653369],[-40.471968,-20.652369],[-40.470568,-20.649069],[-40.468068,-20.646869],[-40.464868,-20.644869],[-40.468768,-20.642169],[-40.470068,-20.639369],[-40.467868,-20.636769],[-40.469468,-20.633469],[-40.466968,-20.631569],[-40.464868,-20.629669],[-40.465168,-20.625769],[-40.462368,-20.623369],[-40.458468,-20.623069],[-40.454668,-20.623369],[-40.449968,-20.625169],[-40.446568,-20.628769],[-40.446068,-20.632169],[-40.449068,-20.635369],[-40.445668,-20.637469],[-40.441868,-20.634669],[-40.437468,-20.634869],[-40.434968,-20.637469],[-40.433368,-20.641069],[-40.430468,-20.638569],[-40.429368,-20.635769],[-40.425368,-20.635769],[-40.425768,-20.631569],[-40.424668,-20.627769],[-40.423068,-20.624869],[-40.421468,-20.622269],[-40.419268,-20.619069],[-40.415968,-20.615069],[-40.413868,-20.611469],[-40.411968,-20.608969],[-40.410168,-20.606669],[-40.407068,-20.602769],[-40.404468,-20.599169],[-40.403668,-20.595269],[-40.403768,-20.591269],[-40.403668,-20.587969],[-40.402968,-20.584069],[-40.402268,-20.580369],[-40.401168,-20.577469],[-40.400068,-20.574669],[-40.398668,-20.571269],[-40.396868,-20.567169],[-40.395468,-20.564069],[-40.393568,-20.560269],[-40.391868,-20.557169],[-40.390068,-20.554469],[-40.388168,-20.551469],[-40.386368,-20.548869],[-40.384568,-20.546469],[-40.382668,-20.544169],[-40.380468,-20.540869],[-40.378268,-20.538069],[-40.376868,-20.535069],[-40.374868,-20.532069],[-40.371968,-20.528969],[-40.370168,-20.526469],[-40.368368,-20.522569],[-40.364468,-20.518969],[-40.359968,-20.518669],[-40.359668,-20.515069],[-40.359468,-20.510469],[-40.358068,-20.506269],[-40.356368,-20.502369],[-40.354668,-20.499469],[-40.353068,-20.496969],[-40.351368,-20.493069],[-40.349968,-20.488969],[-40.348668,-20.485769],[-40.347868,-20.481669],[-40.347268,-20.478169],[-40.345968,-20.475269],[-40.343968,-20.471669],[-40.341668,-20.467269],[-40.340068,-20.463969],[-40.337968,-20.460169],[-40.335968,-20.456769],[-40.333768,-20.453969],[-40.331768,-20.449969],[-40.329968,-20.445769],[-40.328968,-20.442069],[-40.326868,-20.438069],[-40.325368,-20.434369],[-40.323568,-20.430869],[-40.321768,-20.427969],[-40.319068,-20.426069],[-40.321268,-20.422469],[-40.322168,-20.418869],[-40.321568,-20.415669],[-40.321268,-20.412769],[-40.320268,-20.409169],[-40.319368,-20.405469],[-40.317768,-20.402069],[-40.316368,-20.398469],[-40.314868,-20.394369],[-40.313768,-20.391569],[-40.311568,-20.387369],[-40.309768,-20.384269],[-40.308268,-20.381369],[-40.304968,-20.376569],[-40.303068,-20.372769],[-40.301168,-20.369669],[-40.298368,-20.365769],[-40.295868,-20.362469],[-40.293568,-20.359969],[-40.290868,-20.358169],[-40.288168,-20.356669],[-40.284268,-20.353869],[-40.283368,-20.348369],[-40.283368,-20.344569],[-40.282368,-20.340869],[-40.280668,-20.336569],[-40.277668,-20.333569],[-40.273668,-20.332369],[-40.272368,-20.329269],[-40.268968,-20.328269],[-40.267368,-20.324869],[-40.271468,-20.322469],[-40.276468,-20.320969],[-40.278368,-20.315469],[-40.279068,-20.312369],[-40.276468,-20.310469],[-40.279268,-20.308269],[-40.283368,-20.308769],[-40.287368,-20.309069],[-40.289868,-20.307569],[-40.290268,-20.303269],[-40.289468,-20.298869],[-40.287768,-20.295069],[-40.287068,-20.292169],[-40.289568,-20.290269],[-40.290068,-20.287069],[-40.288468,-20.283169],[-40.286268,-20.280069],[-40.283468,-20.277269],[-40.280868,-20.275369],[-40.277868,-20.273769],[-40.275368,-20.270969],[-40.271868,-20.269369],[-40.268468,-20.267369],[-40.263568,-20.266069],[-40.259068,-20.265969],[-40.254368,-20.267969],[-40.254068,-20.271269],[-40.252068,-20.274369],[-40.249368,-20.278369],[-40.247968,-20.282369],[-40.245868,-20.285869],[-40.241968,-20.289569],[-40.236868,-20.294269],[-40.232768,-20.292269],[-40.233568,-20.284869],[-40.233868,-20.275469],[-40.231168,-20.270369],[-40.230068,-20.265769],[-40.228068,-20.263469],[-40.223668,-20.257169],[-40.220268,-20.258469],[-40.221668,-20.254969],[-40.223368,-20.252369],[-40.220868,-20.248669],[-40.217668,-20.245469],[-40.215468,-20.241469],[-40.213468,-20.238669],[-40.215368,-20.235869],[-40.213768,-20.232269],[-40.210768,-20.230069],[-40.208168,-20.227769],[-40.204968,-20.224269],[-40.201068,-20.219569],[-40.198768,-20.215869],[-40.198868,-20.212369],[-40.198168,-20.208969],[-40.196568,-20.205469],[-40.194568,-20.201369],[-40.192168,-20.198569],[-40.190968,-20.195169],[-40.190468,-20.191869],[-40.190468,-20.186969],[-40.190968,-20.183569],[-40.189168,-20.179769],[-40.188268,-20.176469],[-40.186268,-20.173169],[-40.185168,-20.169569],[-40.184368,-20.166669],[-40.184068,-20.162769],[-40.184068,-20.159169],[-40.183368,-20.155869],[-40.184368,-20.151969],[-40.184068,-20.147869],[-40.182968,-20.144369],[-40.181668,-20.141369],[-40.181868,-20.138469],[-40.181568,-20.134969],[-40.179768,-20.130469],[-40.177968,-20.124369],[-40.176368,-20.120469],[-40.175268,-20.117269],[-40.174968,-20.114169],[-40.172868,-20.110869],[-40.172168,-20.107769],[-40.172768,-20.104969],[-40.173168,-20.100969],[-40.173568,-20.097369],[-40.173068,-20.094169],[-40.173868,-20.088969],[-40.173868,-20.083969],[-40.173568,-20.079669],[-40.173368,-20.076569],[-40.174768,-20.073969],[-40.176468,-20.070969],[-40.178668,-20.069169],[-40.180768,-20.066869],[-40.182268,-20.063769],[-40.184768,-20.061569],[-40.187168,-20.059469],[-40.189168,-20.057269],[-40.192768,-20.054669],[-40.190568,-20.052169],[-40.189168,-20.048369],[-40.189068,-20.045069],[-40.185168,-20.041369],[-40.181568,-20.038969],[-40.177968,-20.038069],[-40.173968,-20.037069],[-40.169768,-20.037369],[-40.163268,-20.037969],[-40.159168,-20.035869],[-40.159168,-20.032569],[-40.158468,-20.029769],[-40.158368,-20.025669],[-40.159268,-20.020669],[-40.157868,-20.015769],[-40.154468,-20.011069],[-40.151468,-20.007169],[-40.148968,-20.005669],[-40.148368,-20.002669],[-40.147668,-19.999369],[-40.148168,-19.995069],[-40.148368,-19.992169],[-40.146868,-19.988569],[-40.143268,-19.985369],[-40.141468,-19.980069],[-40.139268,-19.975869],[-40.137368,-19.972069],[-40.134368,-19.968169],[-40.132768,-19.965469],[-40.133868,-19.961469],[-40.136868,-19.957869],[-40.139868,-19.955469],[-40.143268,-19.953869],[-40.146768,-19.954269],[-40.150168,-19.954269],[-40.153668,-19.952469],[-40.152568,-19.949369],[-40.150068,-19.946569],[-40.147568,-19.945169],[-40.144568,-19.944869],[-40.142068,-19.943069],[-40.137968,-19.941269],[-40.134268,-19.939169],[-40.132168,-19.936369],[-40.129068,-19.934169],[-40.124768,-19.932969],[-40.121068,-19.931869],[-40.117668,-19.930869],[-40.115468,-19.928569],[-40.111968,-19.925769],[-40.107868,-19.923669],[-40.103668,-19.921869],[-40.099868,-19.918869],[-40.098468,-19.915269],[-40.097368,-19.911269],[-40.098068,-19.906269],[-40.095968,-19.902269],[-40.093168,-19.898769],[-40.091968,-19.894569],[-40.089268,-19.892669],[-40.089268,-19.889369],[-40.087668,-19.886769],[-40.086568,-19.883269],[-40.085068,-19.879469],[-40.083268,-19.876869],[-40.081468,-19.874469],[-40.078268,-19.873269],[-40.076768,-19.870469],[-40.074568,-19.867469],[-40.072068,-19.864469],[-40.069168,-19.861669],[-40.067368,-19.858069],[-40.065468,-19.855669],[-40.063368,-19.852469],[-40.060768,-19.849569],[-40.061568,-19.846769],[-40.061968,-19.843069],[-40.059368,-19.839869],[-40.054968,-19.843069],[-40.054668,-19.838769],[-40.057268,-19.836169],[-40.058368,-19.831869],[-40.058068,-19.827169],[-40.056868,-19.821269],[-40.055168,-19.815769],[-40.053568,-19.812769],[-40.051168,-19.809169],[-40.049468,-19.806569],[-40.045668,-19.801369],[-40.041468,-19.796469],[-40.036968,-19.791069],[-40.029868,-19.783169],[-40.025068,-19.778069],[-40.022368,-19.775369],[-40.019768,-19.772569],[-40.015368,-19.768169],[-40.007968,-19.761269],[-40.005168,-19.758469],[-39.996168,-19.750169],[-39.988868,-19.743669],[-39.977868,-19.734169],[-39.971768,-19.728969],[-39.968068,-19.725669],[-39.965368,-19.723869],[-39.962668,-19.721969],[-39.959368,-19.719569],[-39.954568,-19.715869],[-39.951868,-19.713969],[-39.947668,-19.710869],[-39.942768,-19.707269],[-39.939368,-19.704569],[-39.931568,-19.699269],[-39.926068,-19.695969],[-39.918868,-19.691269],[-39.911668,-19.686969],[-39.909168,-19.685469],[-39.905668,-19.683569],[-39.902568,-19.682169],[-39.899768,-19.680769],[-39.894368,-19.678069],[-39.890168,-19.676069],[-39.887068,-19.674969],[-39.882768,-19.672869],[-39.879568,-19.671369],[-39.874968,-19.669469],[-39.870468,-19.667869],[-39.866868,-19.666669],[-39.863068,-19.664969],[-39.859268,-19.663669],[-39.856068,-19.662369],[-39.852568,-19.661169],[-39.849568,-19.660069],[-39.845968,-19.659169],[-39.842268,-19.658169],[-39.838768,-19.657369],[-39.834068,-19.656169],[-39.828268,-19.654769],[-39.824268,-19.654269],[-39.820168,-19.655169],[-39.815568,-19.653769],[-39.811668,-19.650369],[-39.810868,-19.646569],[-39.811268,-19.642869],[-39.809468,-19.637069],[-39.807968,-19.631869],[-39.804668,-19.626669],[-39.802168,-19.622469],[-39.800368,-19.619069],[-39.798168,-19.615269],[-39.796168,-19.611069],[-39.794468,-19.607769],[-39.791768,-19.602869],[-39.789968,-19.599469],[-39.788368,-19.596469],[-39.785968,-19.591269],[-39.783768,-19.587069],[-39.782268,-19.583969],[-39.778368,-19.576069],[-39.774468,-19.567669],[-39.771168,-19.560169],[-39.766768,-19.550869],[-39.762368,-19.539569],[-39.760668,-19.535569],[-39.757068,-19.526969],[-39.754168,-19.520969],[-39.751668,-19.514669],[-39.749868,-19.510469],[-39.748068,-19.506569],[-39.745168,-19.500869],[-39.743368,-19.497269],[-39.741568,-19.493569],[-39.738668,-19.487469],[-39.737568,-19.484769],[-39.735868,-19.480969],[-39.733568,-19.475769],[-39.730668,-19.469269],[-39.728868,-19.463969],[-39.726968,-19.458269],[-39.725868,-19.454669],[-39.724168,-19.447969],[-39.722668,-19.444569],[-39.721368,-19.441569],[-39.720368,-19.438269],[-39.718768,-19.433369],[-39.716968,-19.428869],[-39.714768,-19.423369],[-39.713368,-19.419169],[-39.711268,-19.414469],[-39.709568,-19.410569],[-39.707868,-19.404769],[-39.705768,-19.400769],[-39.703568,-19.394269],[-39.702168,-19.390069],[-39.700968,-19.386069],[-39.699968,-19.382369],[-39.699568,-19.378369],[-39.698468,-19.374469],[-39.697468,-19.371269],[-39.696568,-19.367569],[-39.696068,-19.364769],[-39.695268,-19.360569],[-39.694868,-19.356469],[-39.694268,-19.351669],[-39.693868,-19.348369],[-39.693468,-19.344769],[-39.692768,-19.340169],[-39.692368,-19.335469],[-39.691868,-19.330769],[-39.691368,-19.325169],[-39.690968,-19.321869],[-39.690468,-19.317069],[-39.689868,-19.311569],[-39.689068,-19.304769],[-39.689068,-19.301469],[-39.689068,-19.298569],[-39.689068,-19.293169],[-39.689368,-19.289169],[-39.689868,-19.285669],[-39.690768,-19.279769],[-39.691368,-19.274069],[-39.692368,-19.268469],[-39.693868,-19.260669],[-39.694368,-19.257669],[-39.695468,-19.251269],[-39.696668,-19.244169],[-39.697368,-19.241069],[-39.700468,-19.226669],[-39.701768,-19.220569],[-39.702168,-19.217069],[-39.702968,-19.212869],[-39.703768,-19.209369],[-39.704368,-19.205669],[-39.705468,-19.198469],[-39.705968,-19.195269],[-39.706468,-19.191869],[-39.706868,-19.187969],[-39.707968,-19.182269],[-39.708468,-19.179369],[-39.709068,-19.174669],[-39.709668,-19.170869],[-39.710368,-19.166769],[-39.711268,-19.159469],[-39.711768,-19.156569],[-39.712268,-19.152569],[-39.712868,-19.148169],[-39.713468,-19.143169],[-39.713968,-19.139669],[-39.714468,-19.135269],[-39.715068,-19.130769],[-39.715868,-19.125469],[-39.716268,-19.120469],[-39.717068,-19.116369],[-39.717568,-19.110369],[-39.718368,-19.104969],[-39.720268,-19.099169],[-39.719468,-19.093369],[-39.719868,-19.090069],[-39.720868,-19.086569],[-39.721468,-19.081869],[-39.721968,-19.074969],[-39.722268,-19.067769],[-39.723468,-19.063069],[-39.724468,-19.057669],[-39.725268,-19.052569],[-39.726368,-19.046869],[-39.726768,-19.042469],[-39.728168,-19.033369],[-39.728568,-19.030169],[-39.728968,-19.027069],[-39.729168,-19.024069],[-39.729568,-19.020769],[-39.729968,-19.017069],[-39.730368,-19.013469],[-39.730568,-19.010169],[-39.731068,-19.007069],[-39.731468,-19.003869],[-39.732068,-18.999469],[-39.732768,-18.995469],[-39.733868,-18.988669],[-39.734668,-18.983369],[-39.735368,-18.977869],[-39.736068,-18.973669],[-39.736168,-18.970269],[-39.736368,-18.965469],[-39.736468,-18.961469],[-39.736668,-18.957869],[-39.737468,-18.954669],[-39.738268,-18.951069],[-39.739368,-18.947369],[-39.741068,-18.943469],[-39.742168,-18.939869],[-39.742968,-18.935169],[-39.743268,-18.930769],[-39.743368,-18.925069],[-39.743868,-18.910969],[-39.744068,-18.906469],[-39.744168,-18.902969],[-39.744368,-18.898969],[-39.744668,-18.892969],[-39.745168,-18.888169],[-39.745568,-18.883469],[-39.746168,-18.878769],[-39.746568,-18.875469],[-39.746968,-18.870169],[-39.747668,-18.865269],[-39.748068,-18.860069],[-39.748568,-18.855669],[-39.749068,-18.850369],[-39.749368,-18.844169],[-39.749668,-18.838669],[-39.749668,-18.834269],[-39.749468,-18.827469],[-39.749468,-18.824269],[-39.749368,-18.820569],[-39.749068,-18.816269],[-39.748768,-18.809369],[-39.748368,-18.798669],[-39.748368,-18.794969],[-39.748268,-18.786369],[-39.748268,-18.779469],[-39.748068,-18.775369],[-39.747768,-18.770369],[-39.747668,-18.764669],[-39.747368,-18.757669],[-39.747168,-18.753569],[-39.746968,-18.750569],[-39.746968,-18.747669],[-39.746868,-18.743269],[-39.746568,-18.739369],[-39.746268,-18.735069],[-39.746068,-18.731769],[-39.745868,-18.727269],[-39.746368,-18.719769],[-39.746568,-18.715069],[-39.746568,-18.706169],[-39.746068,-18.702869],[-39.746068,-18.699369],[-39.745768,-18.695269],[-39.745468,-18.690969],[-39.745068,-18.686869],[-39.744468,-18.682469],[-39.744068,-18.678569],[-39.743668,-18.674669],[-39.743268,-18.669669],[-39.743068,-18.666769],[-39.742568,-18.663369],[-39.741868,-18.658069],[-39.741168,-18.654269],[-39.740568,-18.650369],[-39.739968,-18.647069],[-39.738668,-18.642569],[-39.737868,-18.639569],[-39.736868,-18.635669],[-39.735868,-18.632769],[-39.734668,-18.629169],[-39.733568,-18.625769],[-39.732468,-18.622369],[-39.731168,-18.618669],[-39.729568,-18.614669],[-39.728468,-18.610769],[-39.728168,-18.606669],[-39.728068,-18.600669],[-39.728468,-18.596369],[-39.729268,-18.592269],[-39.730268,-18.588269],[-39.730568,-18.583669],[-39.730568,-18.579569],[-39.730368,-18.576269],[-39.730368,-18.572769],[-39.730268,-18.567769],[-39.729968,-18.562469],[-39.729768,-18.557969],[-39.729968,-18.552769],[-39.729968,-18.546469],[-39.729768,-18.542769],[-39.729168,-18.534169],[-39.728468,-18.528769],[-39.728368,-18.525669],[-39.728468,-18.521869],[-39.728068,-18.517069],[-39.727368,-18.513169],[-39.726668,-18.508269],[-39.725668,-18.504069],[-39.724768,-18.499669],[-39.723468,-18.493269],[-39.722868,-18.490069],[-39.721968,-18.486069],[-39.720868,-18.482169],[-39.720068,-18.479269],[-39.718768,-18.475269],[-39.717068,-18.469269],[-39.715868,-18.465169],[-39.714268,-18.460969],[-39.712668,-18.456269],[-39.711268,-18.452369],[-39.709368,-18.447869],[-39.708168,-18.443769],[-39.707068,-18.441069],[-39.706068,-18.438069],[-39.704568,-18.434069],[-39.703268,-18.430269],[-39.701868,-18.425869],[-39.700468,-18.421469],[-39.699268,-18.418069],[-39.697468,-18.414169],[-39.696068,-18.410969],[-39.694668,-18.407369],[-39.693168,-18.402669],[-39.690268,-18.393969],[-39.688368,-18.389269],[-39.686368,-18.384569],[-39.684768,-18.380969],[-39.682668,-18.376369],[-39.680868,-18.372469],[-39.679468,-18.369769],[-39.677568,-18.366169],[-39.676068,-18.362969],[-39.674768,-18.359469],[-39.673568,-18.356669],[-39.671368,-18.352769],[-39.669168,-18.350569],[-39.671468,-18.348369],[-39.668868,-18.343969],[-39.665568,-18.340169],[-39.663968,-18.336469],[-39.663068,-18.332269],[-39.660668,-18.326869],[-39.658468,-18.322969],[-39.659268,-18.319069],[-39.658868,-18.314669],[-39.657368,-18.311369],[-39.655968,-18.308369],[-39.655168,-18.305269],[-39.654568,-18.302469],[-39.653768,-18.299369],[-39.652668,-18.296169],[-39.652068,-18.292869],[-39.652268,-18.289969],[-39.652668,-18.287069],[-39.651568,-18.283369],[-39.650368,-18.279469],[-39.648768,-18.275369],[-39.647668,-18.271869],[-39.646468,-18.268469],[-39.644868,-18.264269],[-39.643168,-18.259869],[-39.642068,-18.256569],[-39.640068,-18.252669],[-39.638168,-18.249069],[-39.637768,-18.245269],[-39.637668,-18.240769],[-39.637068,-18.236469],[-39.634868,-18.231469],[-39.632668,-18.227269],[-39.631268,-18.224569],[-39.629868,-18.221769],[-39.627968,-18.217669],[-39.625468,-18.213469],[-39.622668,-18.209769],[-39.620868,-18.207069],[-39.618868,-18.203269],[-39.616668,-18.199569],[-39.615068,-18.196269],[-39.613568,-18.192669],[-39.610868,-18.187969],[-39.608668,-18.183669],[-39.606768,-18.180869],[-39.605068,-18.178069],[-39.603668,-18.175369],[-39.601968,-18.172769],[-39.599968,-18.169569],[-39.598368,-18.166669],[-39.596168,-18.163169],[-39.594268,-18.159869],[-39.592368,-18.157069],[-39.590368,-18.153769],[-39.587968,-18.149869],[-39.585468,-18.146169],[-39.583668,-18.143569],[-39.581468,-18.140369],[-39.579268,-18.137369],[-39.577068,-18.134069],[-39.573868,-18.130169],[-39.571368,-18.126669],[-39.569368,-18.123869],[-39.563568,-18.117269],[-39.560168,-18.113369],[-39.556868,-18.109969],[-39.554168,-18.107469],[-39.552168,-18.105269],[-39.549768,-18.102769],[-39.547768,-18.098469],[-39.548668,-18.095169],[-39.547268,-18.092269],[-39.545768,-18.088669],[-39.544568,-18.085069],[-39.542568,-18.080669],[-39.541068,-18.077569],[-39.539568,-18.074869],[-39.537868,-18.071569],[-39.535568,-18.067369],[-39.533468,-18.063769],[-39.531968,-18.060869],[-39.529468,-18.056669],[-39.527568,-18.053269],[-39.525968,-18.050569],[-39.524468,-18.047869],[-39.522368,-18.044569],[-39.520368,-18.040969],[-39.517568,-18.036469],[-39.515168,-18.032769],[-39.513168,-18.029769],[-39.511268,-18.026869],[-39.508868,-18.023669],[-39.506668,-18.020169],[-39.504468,-18.016769],[-39.502368,-18.013569],[-39.500468,-18.010469],[-39.498268,-18.007169],[-39.495868,-18.004069],[-39.493368,-18.000769],[-39.491168,-17.997669],[-39.488568,-17.994669],[-39.486168,-17.991669],[-39.483968,-17.988969],[-39.481068,-17.985269],[-39.478068,-17.981769],[-39.475968,-17.979269],[-39.473868,-17.976969],[-39.471468,-17.974469],[-39.468268,-17.970669],[-39.464768,-17.967269],[-39.462668,-17.965069],[-39.460468,-17.962969],[-39.456768,-17.959269],[-39.453268,-17.955769],[-39.450468,-17.953269],[-39.448168,-17.951069],[-39.445168,-17.948469],[-39.441668,-17.945669],[-39.438468,-17.942969],[-39.435868,-17.940769],[-39.433368,-17.938769],[-39.430768,-17.936669],[-39.427968,-17.934669],[-39.424968,-17.932669],[-39.421068,-17.930469],[-39.416668,-17.927769],[-39.412868,-17.925469],[-39.409768,-17.923669],[-39.406168,-17.921769],[-39.402668,-17.920269],[-39.398968,-17.918469],[-39.395468,-17.916969],[-39.392868,-17.915669],[-39.389668,-17.914569],[-39.386768,-17.913369],[-39.381268,-17.911369],[-39.377168,-17.910069],[-39.373068,-17.908769],[-39.367568,-17.907269],[-39.363568,-17.906269],[-39.361068,-17.904469],[-39.359668,-17.901469],[-39.362268,-17.897169],[-39.363668,-17.891869],[-39.356968,-17.890969],[-39.352768,-17.891269],[-39.348368,-17.891569],[-39.340868,-17.892069],[-39.335768,-17.892169],[-39.331468,-17.892869],[-39.326768,-17.892969],[-39.323268,-17.892369],[-39.319168,-17.891369],[-39.315568,-17.889969],[-39.312168,-17.888169],[-39.308768,-17.886469],[-39.304668,-17.884569],[-39.301468,-17.883069],[-39.298868,-17.881769],[-39.295568,-17.880269],[-39.292768,-17.878869],[-39.290068,-17.877769],[-39.287368,-17.876369],[-39.283468,-17.874469],[-39.278968,-17.872169],[-39.275668,-17.869669],[-39.272868,-17.867569],[-39.270468,-17.865769],[-39.267968,-17.863269],[-39.266268,-17.860269],[-39.265668,-17.856769],[-39.266268,-17.853669],[-39.267068,-17.850569],[-39.266068,-17.846669],[-39.264668,-17.843669],[-39.264668,-17.840069],[-39.261768,-17.835769],[-39.259268,-17.831469],[-39.257668,-17.828469],[-39.256668,-17.824969],[-39.254168,-17.822369],[-39.252068,-17.819169],[-39.249468,-17.816369],[-39.246968,-17.813569],[-39.244668,-17.810769],[-39.242168,-17.807769],[-39.239468,-17.805169],[-39.236868,-17.802569],[-39.234968,-17.799669],[-39.232768,-17.797469],[-39.230868,-17.794969],[-39.228368,-17.792769],[-39.225068,-17.789969],[-39.222568,-17.788069],[-39.219768,-17.785869],[-39.215968,-17.782369],[-39.212668,-17.779569],[-39.209768,-17.776869],[-39.206768,-17.773769],[-39.206268,-17.769869],[-39.204668,-17.766369],[-39.203968,-17.762669],[-39.204368,-17.758269],[-39.206868,-17.751569],[-39.207268,-17.746969],[-39.202868,-17.745469],[-39.198568,-17.743369],[-39.194868,-17.742169],[-39.191668,-17.741969],[-39.188468,-17.739369],[-39.185868,-17.735769],[-39.184368,-17.733169],[-39.181668,-17.730669],[-39.178668,-17.728169],[-39.175768,-17.726169],[-39.172768,-17.724269],[-39.169168,-17.721669],[-39.165568,-17.718369],[-39.162368,-17.715069],[-39.157768,-17.710869],[-39.154768,-17.708269],[-39.151968,-17.706069],[-39.148968,-17.703469],[-39.145168,-17.699869],[-39.142068,-17.696869],[-39.139668,-17.694869],[-39.137168,-17.692169],[-39.135768,-17.689169],[-39.138468,-17.684669],[-39.139868,-17.680069],[-39.142968,-17.675469],[-39.145968,-17.671469],[-39.149068,-17.667269],[-39.151568,-17.663769],[-39.154168,-17.660569],[-39.156968,-17.657369],[-39.159868,-17.653669],[-39.162768,-17.650069],[-39.164968,-17.647169],[-39.167168,-17.643969],[-39.169568,-17.640469],[-39.171368,-17.638169],[-39.173568,-17.634369],[-39.175768,-17.631069],[-39.177768,-17.627169],[-39.180068,-17.622969],[-39.181668,-17.619769],[-39.183268,-17.616669],[-39.184468,-17.613569],[-39.185768,-17.610869],[-39.186868,-17.608169],[-39.187968,-17.605369],[-39.189068,-17.601969],[-39.189968,-17.599169],[-39.190768,-17.596269],[-39.191668,-17.593369],[-39.192468,-17.589469],[-39.193468,-17.585469],[-39.193468,-17.580969],[-39.190468,-17.578569],[-39.188368,-17.574269],[-39.187968,-17.569869],[-39.188068,-17.565269],[-39.188468,-17.561069],[-39.189168,-17.557269],[-39.189068,-17.551969],[-39.189668,-17.546769],[-39.190168,-17.542269],[-39.190468,-17.538169],[-39.190468,-17.534869],[-39.190968,-17.529769],[-39.191268,-17.524569],[-39.191268,-17.521169],[-39.191368,-17.516069],[-39.191568,-17.512169],[-39.191668,-17.507469],[-39.191668,-17.504369],[-39.191668,-17.499869],[-39.191668,-17.494369],[-39.191968,-17.490269],[-39.192068,-17.486369],[-39.192168,-17.481669],[-39.192168,-17.476969],[-39.192168,-17.472669],[-39.192168,-17.468769],[-39.191868,-17.463369],[-39.191668,-17.459669],[-39.191668,-17.456569],[-39.191568,-17.452169],[-39.191668,-17.446869],[-39.192068,-17.442669],[-39.192668,-17.439569],[-39.193868,-17.435569],[-39.195168,-17.431669],[-39.196768,-17.427469],[-39.198468,-17.422869],[-39.199968,-17.418469],[-39.201768,-17.413869],[-39.203268,-17.409469],[-39.203768,-17.406169],[-39.204668,-17.402269],[-39.203468,-17.397669],[-39.203568,-17.393269],[-39.204668,-17.390169],[-39.205668,-17.385969],[-39.206768,-17.382069],[-39.207568,-17.378069],[-39.208268,-17.374869],[-39.209268,-17.371969],[-39.209868,-17.369069],[-39.210668,-17.365769],[-39.211468,-17.362269],[-39.212268,-17.358969],[-39.212868,-17.355969],[-39.213668,-17.352269],[-39.214568,-17.348369],[-39.215568,-17.344769],[-39.216268,-17.341569],[-39.217268,-17.337269],[-39.217868,-17.332569],[-39.218468,-17.326769],[-39.219168,-17.321769],[-39.219768,-17.316069],[-39.220268,-17.311369],[-39.220568,-17.306869],[-39.220868,-17.302469],[-39.220968,-17.298669],[-39.220968,-17.294969],[-39.220968,-17.290869],[-39.221168,-17.286369],[-39.220968,-17.282369],[-39.220568,-17.279469],[-39.219168,-17.275969],[-39.219168,-17.272869],[-39.219268,-17.269269],[-39.219468,-17.265669],[-39.218768,-17.261769],[-39.217668,-17.257769],[-39.217068,-17.254169],[-39.216168,-17.250469],[-39.215068,-17.245869],[-39.213768,-17.240769],[-39.213168,-17.235569],[-39.213668,-17.231069],[-39.214068,-17.226969],[-39.214068,-17.222369],[-39.214068,-17.218669],[-39.214068,-17.215469],[-39.214068,-17.210369],[-39.214068,-17.206169],[-39.213668,-17.202169],[-39.213468,-17.197469],[-39.212868,-17.192369],[-39.212568,-17.189069],[-39.212268,-17.185169],[-39.212968,-17.179669],[-39.213168,-17.175069],[-39.212968,-17.170069],[-39.212668,-17.166069],[-39.212068,-17.162069],[-39.210868,-17.157369],[-39.209768,-17.153369],[-39.207868,-17.147269],[-39.206468,-17.143169],[-39.204668,-17.140669],[-39.202568,-17.137769],[-39.201268,-17.133769],[-39.198268,-17.127969],[-39.193768,-17.123569],[-39.188368,-17.119969],[-39.184968,-17.116969],[-39.183268,-17.114169],[-39.181868,-17.111369],[-39.181068,-17.108169],[-39.180468,-17.104269],[-39.180768,-17.100669],[-39.179768,-17.097369],[-39.178968,-17.093769],[-39.179668,-17.090169],[-39.179968,-17.086469],[-39.180168,-17.082569],[-39.179968,-17.079269],[-39.178668,-17.075669],[-39.177468,-17.072769],[-39.176968,-17.068869],[-39.175068,-17.065869],[-39.171868,-17.063569],[-39.171168,-17.058269],[-39.173668,-17.054369],[-39.174268,-17.050369],[-39.173668,-17.045269],[-39.172768,-17.041769],[-39.171668,-17.038069],[-39.171368,-17.033969],[-39.171868,-17.030169],[-39.171968,-17.026569],[-39.171868,-17.022569],[-39.172268,-17.018669],[-39.172168,-17.013869],[-39.170768,-17.007769],[-39.169168,-17.003769],[-39.167468,-17.000169],[-39.165668,-16.996969],[-39.163468,-16.993669],[-39.161268,-16.990069],[-39.159468,-16.987469],[-39.157568,-16.983669],[-39.155868,-16.980969],[-39.155168,-16.978069],[-39.154768,-16.974169],[-39.153968,-16.970569],[-39.153668,-16.966669],[-39.154268,-16.962969],[-39.153768,-16.958769],[-39.152968,-16.955069],[-39.152068,-16.950969],[-39.151268,-16.947069],[-39.151768,-16.943869],[-39.150468,-16.940769],[-39.148968,-16.938369],[-39.146768,-16.934669],[-39.144268,-16.930169],[-39.141568,-16.926469],[-39.139268,-16.923569],[-39.136768,-16.920769],[-39.134868,-16.918469],[-39.132668,-16.915869],[-39.130168,-16.912369],[-39.127668,-16.908869],[-39.125568,-16.906469],[-39.122968,-16.903669],[-39.120268,-16.901469],[-39.116868,-16.899069],[-39.111868,-16.896869],[-39.113568,-16.894269],[-39.116868,-16.892869],[-39.120068,-16.892669],[-39.122668,-16.890069],[-39.125568,-16.888169],[-39.128568,-16.885469],[-39.131768,-16.882469],[-39.134068,-16.879469],[-39.136468,-16.876569],[-39.138968,-16.872669],[-39.141768,-16.868669],[-39.142168,-16.865069],[-39.142368,-16.860669],[-39.142368,-16.856769],[-39.142468,-16.852569],[-39.143668,-16.846969],[-39.144768,-16.843669],[-39.144268,-16.839769],[-39.144268,-16.834669],[-39.144668,-16.830469],[-39.144768,-16.827369],[-39.144768,-16.823869],[-39.144868,-16.819169],[-39.145368,-16.814369],[-39.145368,-16.810869],[-39.145368,-16.806569],[-39.144668,-16.801869],[-39.144268,-16.798869],[-39.144268,-16.795769],[-39.143968,-16.790269],[-39.143168,-16.784769],[-39.142068,-16.779869],[-39.142068,-16.774769],[-39.140768,-16.770769],[-39.141868,-16.767469],[-39.141768,-16.763869],[-39.141268,-16.759969],[-39.140768,-16.756869],[-39.139868,-16.754069],[-39.137368,-16.750269],[-39.133868,-16.750769],[-39.130768,-16.749369],[-39.128068,-16.746969],[-39.128068,-16.744069],[-39.127368,-16.739069],[-39.126268,-16.734469],[-39.125768,-16.730969],[-39.123568,-16.727469],[-39.121868,-16.724769],[-39.119368,-16.722269],[-39.116068,-16.719169],[-39.115868,-16.715669],[-39.114668,-16.712969],[-39.111668,-16.712269],[-39.108268,-16.710369],[-39.106668,-16.707369],[-39.107168,-16.704269],[-39.105568,-16.701069],[-39.103868,-16.697969],[-39.103968,-16.694369],[-39.103868,-16.690769],[-39.104268,-16.686969],[-39.104668,-16.682769],[-39.104268,-16.678569],[-39.103968,-16.674169],[-39.103168,-16.670369],[-39.102768,-16.667269],[-39.102068,-16.664469],[-39.100968,-16.661169],[-39.098668,-16.657069],[-39.094768,-16.654169],[-39.094768,-16.649769],[-39.096168,-16.645669],[-39.095568,-16.642669],[-39.093368,-16.639569],[-39.092668,-16.634969],[-39.091268,-16.630269],[-39.090068,-16.626369],[-39.090868,-16.623569],[-39.092568,-16.620469],[-39.093368,-16.617269],[-39.094168,-16.614369],[-39.094468,-16.610769],[-39.093968,-16.607469],[-39.092268,-16.603369],[-39.090968,-16.600669],[-39.089068,-16.598469],[-39.088668,-16.594869],[-39.087868,-16.590969],[-39.088768,-16.586969],[-39.088668,-16.583169],[-39.087868,-16.580069],[-39.086568,-16.576269],[-39.085368,-16.572769],[-39.085368,-16.568869],[-39.085768,-16.565869],[-39.086468,-16.562269],[-39.086468,-16.557269],[-39.085868,-16.552269],[-39.085368,-16.547769],[-39.084568,-16.544969],[-39.083968,-16.541669],[-39.083168,-16.537869],[-39.081868,-16.533969],[-39.080668,-16.530069],[-39.079668,-16.526269],[-39.078768,-16.522969],[-39.077168,-16.518269],[-39.074668,-16.514369],[-39.073168,-16.509969],[-39.072168,-16.506069],[-39.070968,-16.502069],[-39.069568,-16.498369],[-39.068468,-16.494669],[-39.067668,-16.490269],[-39.067368,-16.486169],[-39.067368,-16.483169],[-39.065968,-16.480269],[-39.064168,-16.477469],[-39.062468,-16.474469],[-39.061668,-16.470869],[-39.061368,-16.466269],[-39.060568,-16.461469],[-39.059968,-16.457269],[-39.063868,-16.455369],[-39.062368,-16.451069],[-39.061068,-16.447369],[-39.061268,-16.443869],[-39.061868,-16.440569],[-39.061968,-16.436269],[-39.061268,-16.432969],[-39.059868,-16.429069],[-39.057268,-16.425469],[-39.054668,-16.422169],[-39.051568,-16.417569],[-39.049468,-16.413169],[-39.047568,-16.409869],[-39.045868,-16.406569],[-39.043568,-16.403669],[-39.041368,-16.400069],[-39.039468,-16.395169],[-39.036668,-16.391369],[-39.034268,-16.388169],[-39.030868,-16.384969],[-39.025468,-16.380969],[-39.021168,-16.378769],[-39.016468,-16.377169],[-39.011768,-16.375969],[-39.008768,-16.374669],[-39.008768,-16.370569],[-39.009368,-16.367569],[-39.009868,-16.364669],[-39.010668,-16.361069],[-39.011868,-16.357869],[-39.012768,-16.354969],[-39.012368,-16.350869],[-39.009968,-16.346169],[-39.007068,-16.343669],[-39.006268,-16.340869],[-39.007668,-16.336769],[-39.007568,-16.332569],[-39.013168,-16.330369],[-39.016468,-16.328569],[-39.018668,-16.326269],[-39.020768,-16.322869],[-39.022568,-16.317969],[-39.023368,-16.312769],[-39.023668,-16.308269],[-39.023668,-16.302269],[-39.023368,-16.296769],[-39.022968,-16.293169],[-39.022568,-16.289469],[-39.021768,-16.285569],[-39.020768,-16.282369],[-39.019768,-16.279569],[-39.018768,-16.276769],[-39.017568,-16.273169],[-39.016768,-16.270069],[-39.015668,-16.267069],[-39.014068,-16.262969],[-39.012468,-16.258769],[-39.011068,-16.255269],[-39.010168,-16.252369],[-39.010968,-16.248369],[-39.010668,-16.244769],[-39.008068,-16.241169],[-39.004868,-16.237569],[-39.002168,-16.234469],[-39.000468,-16.232069],[-38.997968,-16.229169],[-38.995768,-16.227069],[-38.993568,-16.224869],[-38.991368,-16.222369],[-38.989068,-16.220069],[-38.985368,-16.217569],[-38.981068,-16.215869],[-38.978068,-16.215069],[-38.974468,-16.212869],[-38.973368,-16.208969],[-38.973368,-16.205369],[-38.972768,-16.202169],[-38.971968,-16.199069],[-38.969868,-16.195969],[-38.967668,-16.193469],[-38.964768,-16.189669],[-38.961768,-16.184569],[-38.958668,-16.179669],[-38.958268,-16.175769],[-38.958268,-16.171169],[-38.956768,-16.166969],[-38.953568,-16.161769],[-38.950268,-16.158369],[-38.948168,-16.155069],[-38.948268,-16.150969],[-38.949868,-16.147069],[-38.952068,-16.143669],[-38.954568,-16.139669],[-38.955968,-16.134669],[-38.956568,-16.130169],[-38.956468,-16.125569],[-38.956068,-16.120769],[-38.955768,-16.117769],[-38.955368,-16.114469],[-38.955068,-16.111469],[-38.954668,-16.108569],[-38.954268,-16.105269],[-38.953268,-16.102069],[-38.952568,-16.098869],[-38.951068,-16.095169],[-38.949668,-16.092269],[-38.947468,-16.090069],[-38.947368,-16.086469],[-38.946268,-16.083569],[-38.944668,-16.079269],[-38.944168,-16.074369],[-38.943268,-16.070169],[-38.941868,-16.065569],[-38.940468,-16.061969],[-38.939368,-16.058669],[-38.938068,-16.055469],[-38.936268,-16.050469],[-38.934668,-16.046369],[-38.933268,-16.042769],[-38.932268,-16.039869],[-38.930768,-16.036369],[-38.929168,-16.033069],[-38.927268,-16.030569],[-38.924468,-16.028369],[-38.923968,-16.024469],[-38.922768,-16.020969],[-38.921668,-16.016869],[-38.919968,-16.012469],[-38.918368,-16.008569],[-38.916668,-16.004069],[-38.915368,-16.000169],[-38.914468,-15.997269],[-38.913168,-15.993569],[-38.911468,-15.988969],[-38.909868,-15.984669],[-38.908468,-15.979969],[-38.907268,-15.976669],[-38.906168,-15.973469],[-38.905168,-15.970369],[-38.903968,-15.967369],[-38.902268,-15.963169],[-38.900768,-15.959569],[-38.899068,-15.955669],[-38.897668,-15.951769],[-38.896268,-15.948569],[-38.894768,-15.945269],[-38.893168,-15.941569],[-38.891468,-15.937469],[-38.889668,-15.933369],[-38.888168,-15.929769],[-38.886468,-15.926069],[-38.884968,-15.922469],[-38.882768,-15.917569],[-38.881268,-15.913669],[-38.879468,-15.909869],[-38.877668,-15.905669],[-38.875568,-15.900969],[-38.874068,-15.897169],[-38.872668,-15.893769],[-38.871268,-15.890369],[-38.869768,-15.887069],[-38.868068,-15.883469],[-38.866468,-15.879169],[-38.864968,-15.874969],[-38.863568,-15.871569],[-38.862468,-15.868369],[-38.860768,-15.864969],[-38.858868,-15.861169],[-38.856668,-15.857269],[-38.854268,-15.853069],[-38.852868,-15.848669],[-38.852868,-15.844569],[-38.853168,-15.839569],[-38.854168,-15.835069],[-38.857068,-15.830669],[-38.858968,-15.827169],[-38.861368,-15.823869],[-38.865068,-15.821869],[-38.867668,-15.818469],[-38.869368,-15.815869],[-38.871168,-15.813069],[-38.872968,-15.809769],[-38.875168,-15.805469],[-38.877468,-15.800469],[-38.879468,-15.796469],[-38.880968,-15.793569],[-38.882368,-15.790569],[-38.883868,-15.787369],[-38.885368,-15.784169],[-38.887068,-15.780569],[-38.888868,-15.776769],[-38.890468,-15.773669],[-38.891768,-15.770769],[-38.893168,-15.767369],[-38.894568,-15.764369],[-38.896168,-15.760269],[-38.897868,-15.755769],[-38.899368,-15.751369],[-38.900968,-15.746969],[-38.902568,-15.743269],[-38.903668,-15.739669],[-38.904868,-15.736069],[-38.905868,-15.732869],[-38.908068,-15.728669],[-38.910068,-15.724169],[-38.909568,-15.720969],[-38.912068,-15.717669],[-38.916368,-15.716169],[-38.918568,-15.711569],[-38.921068,-15.703269],[-38.923368,-15.699669],[-38.925468,-15.695969],[-38.927468,-15.690969],[-38.928868,-15.686569],[-38.930568,-15.681569],[-38.932268,-15.675469],[-38.933568,-15.670769],[-38.934668,-15.665869],[-38.935868,-15.658669],[-38.936568,-15.654469],[-38.936968,-15.650469],[-38.938068,-15.644769],[-38.938768,-15.638469],[-38.939168,-15.632169],[-38.939368,-15.627369],[-38.939668,-15.621069],[-38.939868,-15.616969],[-38.939968,-15.611169],[-38.940168,-15.605669],[-38.940168,-15.600669],[-38.940468,-15.597569],[-38.942968,-15.593669],[-38.943768,-15.587269],[-38.943168,-15.582869],[-38.943268,-15.579269],[-38.943068,-15.575969],[-38.943268,-15.572069],[-38.943168,-15.564369],[-38.942768,-15.560569],[-38.942668,-15.557269],[-38.942668,-15.553569],[-38.942368,-15.549269],[-38.942168,-15.544269],[-38.942068,-15.540269],[-38.942368,-15.536969],[-38.942668,-15.533069],[-38.942968,-15.528369],[-38.943268,-15.524369],[-38.943568,-15.520669],[-38.944068,-15.516869],[-38.944668,-15.512869],[-38.945168,-15.508769],[-38.945668,-15.505669],[-38.946268,-15.502469],[-38.946768,-15.497669],[-38.947468,-15.493569],[-38.948468,-15.489969],[-38.949268,-15.485769],[-38.950668,-15.481369],[-38.952068,-15.471369],[-38.952168,-15.466569],[-38.953268,-15.462569],[-38.954268,-15.459069],[-38.955368,-15.455369],[-38.956268,-15.451869],[-38.957568,-15.447669],[-38.958968,-15.442069],[-38.960168,-15.437969],[-38.960968,-15.434769],[-38.961868,-15.431169],[-38.963168,-15.427169],[-38.963968,-15.424169],[-38.965168,-15.418869],[-38.966268,-15.414569],[-38.967668,-15.409469],[-38.968668,-15.405369],[-38.969568,-15.401469],[-38.970868,-15.396569],[-38.971368,-15.393769],[-38.972068,-15.390769],[-38.973068,-15.386569],[-38.973968,-15.381069],[-38.974568,-15.376569],[-38.975368,-15.371569],[-38.975968,-15.366869],[-38.976768,-15.363269],[-38.977368,-15.359169],[-38.978168,-15.353669],[-38.979168,-15.348069],[-38.980068,-15.343969],[-38.980568,-15.340669],[-38.981168,-15.337269],[-38.981668,-15.333969],[-38.982268,-15.330369],[-38.982868,-15.325769],[-38.983668,-15.321669],[-38.984168,-15.317669],[-38.984768,-15.312769],[-38.985268,-15.309669],[-38.985668,-15.306169],[-38.986668,-15.301169],[-38.989668,-15.298569],[-38.992268,-15.296969],[-38.991668,-15.292869],[-38.990768,-15.289269],[-38.990868,-15.285069],[-38.991168,-15.281669],[-38.991468,-15.278169],[-38.991868,-15.273669],[-38.991968,-15.269769],[-38.992168,-15.265069],[-38.992468,-15.260769],[-38.992668,-15.256869],[-38.992768,-15.253369],[-38.992968,-15.250469],[-38.993268,-15.246869],[-38.993268,-15.243569],[-38.993368,-15.239969],[-38.994068,-15.234669],[-38.994468,-15.228669],[-38.994968,-15.224469],[-38.995868,-15.220969],[-38.996568,-15.217069],[-38.996568,-15.213669],[-38.996568,-15.210069],[-38.996668,-15.206869],[-38.996568,-15.203169],[-38.996568,-15.198569],[-38.996368,-15.193169],[-38.996168,-15.188069],[-38.995868,-15.184369],[-38.995768,-15.180169],[-38.995768,-15.174969],[-38.995268,-15.169969],[-38.995168,-15.165569],[-38.994968,-15.160869],[-38.994968,-15.157369],[-38.994768,-15.153669],[-38.994768,-15.148969],[-38.994968,-15.144269],[-38.994968,-15.140469],[-38.994968,-15.136569],[-38.995068,-15.132769],[-38.995468,-15.129369],[-38.995468,-15.125769],[-38.995568,-15.120869],[-38.995768,-15.117169],[-38.995768,-15.114169],[-38.995768,-15.109969],[-38.995868,-15.105069],[-38.996168,-15.098969],[-38.996368,-15.094869],[-38.996368,-15.090369],[-38.996268,-15.085669],[-38.996068,-15.079269],[-38.996068,-15.073269],[-38.996068,-15.068469],[-38.996068,-15.063069],[-38.996068,-15.058069],[-38.996168,-15.054369],[-38.996168,-15.050769],[-38.996268,-15.045369],[-38.996368,-15.041369],[-38.996368,-15.037569],[-38.996368,-15.032569],[-38.996368,-15.028369],[-38.996568,-15.025069],[-38.996568,-15.021869],[-38.996568,-15.018169],[-38.996368,-15.013569],[-38.996568,-15.009569],[-38.996568,-15.004569],[-38.996568,-15.000169],[-38.996968,-14.996069],[-38.997268,-14.991169],[-38.997668,-14.986769],[-38.998768,-14.983069],[-38.999668,-14.980269],[-39.001268,-14.977869],[-39.002768,-14.974169],[-39.003768,-14.970169],[-39.004068,-14.966269],[-39.004668,-14.961569],[-39.005268,-14.956869],[-39.006868,-14.952169],[-39.008068,-14.949269],[-39.008868,-14.945969],[-39.010468,-14.941669],[-39.013468,-14.937969],[-39.014568,-14.932969],[-39.015668,-14.930169],[-39.016768,-14.926669],[-39.018268,-14.921369],[-39.018968,-14.916369],[-39.019568,-14.912069],[-39.020068,-14.907569],[-39.020068,-14.902669],[-39.020668,-14.899469],[-39.021268,-14.896469],[-39.021768,-14.893169],[-39.021868,-14.888469],[-39.022368,-14.883469],[-39.022668,-14.877669],[-39.022968,-14.872169],[-39.023268,-14.866369],[-39.023668,-14.861869],[-39.023668,-14.858669],[-39.023768,-14.854469],[-39.023968,-14.850569],[-39.023968,-14.847369],[-39.024068,-14.843169],[-39.024068,-14.837569],[-39.023968,-14.833169],[-39.023968,-14.830169],[-39.024068,-14.825969],[-39.024068,-14.820969],[-39.023968,-14.815869],[-39.023968,-14.811869],[-39.024368,-14.805469],[-39.029168,-14.803569],[-39.028768,-14.798669],[-39.027868,-14.794169],[-39.027668,-14.791169],[-39.027568,-14.787769],[-39.027668,-14.783369],[-39.031468,-14.784469],[-39.035068,-14.783469],[-39.039868,-14.783069],[-39.043168,-14.781269],[-39.046168,-14.779469],[-39.049468,-14.777269],[-39.052568,-14.777869],[-39.054168,-14.774769],[-39.054068,-14.770069],[-39.056068,-14.766369],[-39.057768,-14.762469],[-39.059368,-14.758469],[-39.060568,-14.753869],[-39.061568,-14.749969],[-39.062268,-14.745769],[-39.062668,-14.742269],[-39.062968,-14.739369],[-39.063468,-14.734469],[-39.063768,-14.729469],[-39.064068,-14.725669],[-39.064068,-14.722069],[-39.064468,-14.717669],[-39.064668,-14.713669],[-39.064968,-14.709669],[-39.064968,-14.704869],[-39.064968,-14.699969],[-39.065168,-14.694269],[-39.065168,-14.689069],[-39.065168,-14.684169],[-39.065168,-14.679369],[-39.065168,-14.675769],[-39.065168,-14.672469],[-39.065168,-14.669169],[-39.064868,-14.665869],[-39.064668,-14.662369],[-39.064668,-14.659469],[-39.064168,-14.654569],[-39.063868,-14.649369],[-39.063768,-14.645769],[-39.063568,-14.642569],[-39.063368,-14.639669],[-39.062968,-14.635369],[-39.062468,-14.631369],[-39.061868,-14.626569],[-39.060568,-14.620869],[-39.059368,-14.616169],[-39.057968,-14.611769],[-39.055768,-14.607869],[-39.054668,-14.602569],[-39.052968,-14.598369],[-39.053068,-14.593769],[-39.052568,-14.590169],[-39.050768,-14.586169],[-39.049268,-14.583269],[-39.048268,-14.579069],[-39.048268,-14.574069],[-39.047768,-14.569569],[-39.046468,-14.566369],[-39.045068,-14.563469],[-39.043068,-14.559769],[-39.041668,-14.554769],[-39.040068,-14.551569],[-39.039168,-14.547469],[-39.038368,-14.543169],[-39.037368,-14.540269],[-39.036468,-14.536469],[-39.035268,-14.532269],[-39.035968,-14.528669],[-39.035968,-14.524869],[-39.035868,-14.521069],[-39.034868,-14.517369],[-39.034468,-14.513869],[-39.034868,-14.510169],[-39.033468,-14.506069],[-39.033968,-14.502669],[-39.033968,-14.498869],[-39.033468,-14.494669],[-39.033068,-14.490769],[-39.032368,-14.486169],[-39.031268,-14.481469],[-39.029468,-14.477269],[-39.027368,-14.473169],[-39.026468,-14.469469],[-39.026268,-14.466469],[-39.025868,-14.461569],[-39.025068,-14.458269],[-39.024468,-14.453569],[-39.023468,-14.448769],[-39.022668,-14.444569],[-39.021768,-14.440569],[-39.021168,-14.436969],[-39.020668,-14.433369],[-39.019768,-14.429069],[-39.019068,-14.425469],[-39.018268,-14.420569],[-39.017068,-14.415269],[-39.015968,-14.410869],[-39.015368,-14.406669],[-39.014668,-14.403769],[-39.013968,-14.400969],[-39.013268,-14.397969],[-39.011768,-14.394369],[-39.010668,-14.389669],[-39.009968,-14.384569],[-39.009268,-14.380969],[-39.008468,-14.377369],[-39.007668,-14.373569],[-39.006368,-14.369369],[-39.004168,-14.364969],[-39.003768,-14.361069],[-39.001268,-14.358569],[-38.999968,-14.355869],[-39.001568,-14.353469],[-38.999768,-14.351169],[-39.000168,-14.347669],[-39.001368,-14.344569],[-38.999468,-14.340569],[-38.997968,-14.336469],[-38.997268,-14.333269],[-38.996068,-14.329869],[-38.994168,-14.325969],[-38.993268,-14.321569],[-38.992568,-14.318169],[-38.991168,-14.315469],[-38.989068,-14.312769],[-38.987868,-14.308269],[-38.985368,-14.305469],[-38.983568,-14.302569],[-38.981768,-14.298869],[-38.980568,-14.292869],[-38.983268,-14.290269],[-38.984768,-14.287569],[-38.984468,-14.284469],[-38.983368,-14.281169],[-38.983668,-14.278169],[-38.985368,-14.275369],[-38.989968,-14.275069],[-38.992668,-14.272869],[-38.993868,-14.269669],[-38.994768,-14.265669],[-38.995068,-14.261469],[-38.994768,-14.257369],[-38.994668,-14.253269],[-38.994368,-14.249069],[-38.994068,-14.244469],[-38.993668,-14.239969],[-38.992968,-14.235769],[-38.993668,-14.231969],[-38.993368,-14.228169],[-38.991268,-14.222569],[-38.987968,-14.220969],[-38.989668,-14.218469],[-38.989668,-14.215069],[-38.990268,-14.211569],[-38.990568,-14.207369],[-38.990368,-14.203469],[-38.989668,-14.198469],[-38.988868,-14.194569],[-38.988068,-14.190969],[-38.987268,-14.187669],[-38.986068,-14.182969],[-38.984968,-14.179469],[-38.983568,-14.176569],[-38.981768,-14.173569],[-38.979168,-14.170369],[-38.978068,-14.167269],[-38.978568,-14.162769],[-38.978568,-14.158369],[-38.977768,-14.153969],[-38.976168,-14.150169],[-38.975268,-14.146469],[-38.975368,-14.141369],[-38.974768,-14.138469],[-38.973968,-14.135669],[-38.972668,-14.131269],[-38.971468,-14.126969],[-38.968968,-14.122169],[-38.968668,-14.117969],[-38.967868,-14.114969],[-38.967268,-14.111969],[-38.966468,-14.108869],[-38.965468,-14.105069],[-38.963668,-14.101169],[-38.961468,-14.097569],[-38.960468,-14.094769],[-38.959768,-14.090869],[-38.958968,-14.087569],[-38.957868,-14.084369],[-38.955968,-14.081269],[-38.954668,-14.077469],[-38.954668,-14.073469],[-38.955168,-14.070269],[-38.954668,-14.065569],[-38.953568,-14.062469],[-38.952468,-14.059369],[-38.951568,-14.054769],[-38.951068,-14.049969],[-38.949068,-14.045069],[-38.948868,-14.041169],[-38.948968,-14.037869],[-38.948168,-14.033769],[-38.946868,-14.030169],[-38.945968,-14.026169],[-38.945768,-14.022669],[-38.945268,-14.019769],[-38.944268,-14.017069],[-38.942768,-14.013969],[-38.942768,-14.009869],[-38.943768,-14.005969],[-38.943768,-14.001069],[-38.942968,-13.995769],[-38.942168,-13.991669],[-38.941368,-13.988069],[-38.940168,-13.983369],[-38.939168,-13.978969],[-38.938068,-13.975269],[-38.936868,-13.971969],[-38.934468,-13.968669],[-38.933268,-13.965369],[-38.933268,-13.961469],[-38.932168,-13.957369],[-38.931368,-13.954369],[-38.930268,-13.951269],[-38.929668,-13.948469],[-38.929668,-13.945269],[-38.928268,-13.942669],[-38.927768,-13.938869],[-38.928368,-13.935869],[-38.929768,-13.932969],[-38.930168,-13.928369],[-38.930468,-13.924269],[-38.929968,-13.921069],[-38.928868,-13.916169],[-38.928368,-13.912269],[-38.928568,-13.907769],[-38.930068,-13.903669],[-38.932268,-13.898969],[-38.933668,-13.894269],[-38.934968,-13.891069],[-38.935868,-13.887469],[-38.938568,-13.884269],[-38.941268,-13.883169],[-38.943768,-13.880669],[-38.946368,-13.879069],[-38.952568,-13.873269],[-38.967668,-13.848669],[-38.972268,-13.842369],[-38.981368,-13.829069],[-38.983868,-13.826569],[-38.985368,-13.824069],[-38.986768,-13.821069],[-38.988268,-13.817369],[-38.989968,-13.812769],[-38.991468,-13.809469],[-38.993268,-13.806169],[-38.994768,-13.802769],[-38.996268,-13.798869],[-38.997668,-13.794269],[-38.998568,-13.789769],[-38.999168,-13.786969],[-38.999668,-13.783369],[-39.000168,-13.778769],[-39.000268,-13.774769],[-39.000268,-13.770769],[-39.000168,-13.766769],[-38.999468,-13.762369],[-38.999068,-13.758069],[-38.998568,-13.754569],[-38.998068,-13.750869],[-38.997468,-13.746569],[-38.996568,-13.742669],[-38.995568,-13.738869],[-38.994468,-13.734969],[-38.993368,-13.730569],[-38.992268,-13.727069],[-38.991168,-13.723669],[-38.989468,-13.719469],[-38.988868,-13.715869],[-38.987868,-13.711269],[-38.984968,-13.710369],[-38.983268,-13.707569],[-38.981068,-13.704569],[-38.978468,-13.701069],[-38.975268,-13.697469],[-38.972868,-13.695469],[-38.970568,-13.693169],[-38.968468,-13.691269],[-38.966468,-13.689069],[-38.963968,-13.686669],[-38.967568,-13.683069],[-38.969168,-13.679669],[-38.969768,-13.676369],[-38.971468,-13.671969],[-38.968768,-13.670369],[-38.964368,-13.671369],[-38.959668,-13.670769],[-38.956568,-13.669269],[-38.952068,-13.669669],[-38.949068,-13.666469],[-38.946568,-13.664569],[-38.944168,-13.662069],[-38.939568,-13.659869],[-38.935868,-13.658069],[-38.931868,-13.657569],[-38.928568,-13.657569],[-38.924368,-13.658369],[-38.921468,-13.662269],[-38.920368,-13.666469],[-38.918568,-13.671169],[-38.917268,-13.674369],[-38.914168,-13.675469],[-38.912068,-13.673169],[-38.909268,-13.670369],[-38.906168,-13.668569],[-38.902268,-13.666969],[-38.898668,-13.665269],[-38.899268,-13.660569],[-38.896168,-13.657069],[-38.892568,-13.655069],[-38.891568,-13.651569],[-38.892068,-13.648469],[-38.891268,-13.644069],[-38.892068,-13.639669],[-38.895068,-13.636569],[-38.896168,-13.631269],[-38.900668,-13.627969],[-38.903768,-13.624869],[-38.905968,-13.621569],[-38.905168,-13.616869],[-38.905868,-13.613569],[-38.906668,-13.609969],[-38.904768,-13.607569],[-38.901568,-13.601969],[-38.903468,-13.598369],[-38.906768,-13.596769],[-38.911968,-13.593069],[-38.914768,-13.588669],[-38.914168,-13.584269],[-38.914868,-13.579469],[-38.918868,-13.579269],[-38.921968,-13.579569],[-38.924968,-13.578269],[-38.928268,-13.576069],[-38.930468,-13.572469],[-38.931668,-13.569869],[-38.933268,-13.563069],[-38.933368,-13.559669],[-38.933368,-13.555469],[-38.933268,-13.552269],[-38.933268,-13.548969],[-38.932668,-13.544469],[-38.931968,-13.539969],[-38.931568,-13.535869],[-38.930568,-13.530869],[-38.929768,-13.526869],[-38.928968,-13.523269],[-38.927568,-13.519269],[-38.926168,-13.514969],[-38.924968,-13.511769],[-38.923168,-13.509169],[-38.921168,-13.507069],[-38.918568,-13.503469],[-38.915568,-13.501069],[-38.912468,-13.498769],[-38.911168,-13.495269],[-38.911968,-13.491569],[-38.915568,-13.486669],[-38.917068,-13.482469],[-38.916668,-13.478069],[-38.914268,-13.474469],[-38.910668,-13.473469],[-38.906968,-13.474169],[-38.903468,-13.472269],[-38.900368,-13.468769],[-38.898668,-13.465369],[-38.895768,-13.463169],[-38.892868,-13.460469],[-38.892168,-13.454969],[-38.892668,-13.450169],[-38.895068,-13.447469],[-38.897068,-13.443869],[-38.900068,-13.440569],[-38.900668,-13.436869],[-38.902568,-13.432169],[-38.904568,-13.428969],[-38.905568,-13.426069],[-38.905168,-13.422569],[-38.905368,-13.419169],[-38.906168,-13.415669],[-38.906268,-13.412569],[-38.907068,-13.409569],[-38.907368,-13.406169],[-38.907568,-13.402669],[-38.907368,-13.399069],[-38.907368,-13.395969],[-38.906168,-13.391769],[-38.905968,-13.386069],[-38.909468,-13.380969],[-38.912568,-13.378869],[-38.916168,-13.375769],[-38.919468,-13.378869],[-38.923068,-13.380469],[-38.925468,-13.382969],[-38.927868,-13.385669],[-38.930468,-13.388169],[-38.934468,-13.390369],[-38.936968,-13.393469],[-38.940168,-13.395969],[-38.944568,-13.398269],[-38.950668,-13.389869],[-38.954568,-13.378769],[-38.956468,-13.374369],[-38.957968,-13.371869],[-38.959268,-13.369069],[-38.960468,-13.365869],[-38.961568,-13.362969],[-38.962868,-13.359769],[-38.964068,-13.355869],[-38.965168,-13.351669],[-38.966168,-13.346969],[-38.966768,-13.343469],[-38.967068,-13.340169],[-38.967368,-13.335869],[-38.967568,-13.332369],[-38.967268,-13.329069],[-38.967268,-13.326069],[-38.967268,-13.323169],[-38.967068,-13.319569],[-38.966568,-13.315569],[-38.966168,-13.312669],[-38.965968,-13.309469],[-38.965668,-13.305569],[-38.965168,-13.301169],[-38.964868,-13.296869],[-38.964068,-13.292469],[-38.963668,-13.288669],[-38.962568,-13.284569],[-38.961468,-13.280169],[-38.960368,-13.275469],[-38.959068,-13.271869],[-38.957968,-13.268469],[-38.957068,-13.265669],[-38.956168,-13.262969],[-38.954068,-13.257669],[-38.952168,-13.253569],[-38.950768,-13.250569],[-38.948768,-13.246569],[-38.946368,-13.242169],[-38.944668,-13.239069],[-38.942168,-13.234969],[-38.939168,-13.230669],[-38.937168,-13.227469],[-38.934868,-13.224469],[-38.931968,-13.220969],[-38.929168,-13.218369],[-38.926068,-13.216469],[-38.922868,-13.215069],[-38.920268,-13.212969],[-38.916368,-13.213669],[-38.912768,-13.212669],[-38.909768,-13.212569],[-38.906968,-13.211469],[-38.905168,-13.208469],[-38.902268,-13.205969],[-38.898668,-13.203569],[-38.895068,-13.201769],[-38.890768,-13.199369],[-38.887868,-13.197369],[-38.885468,-13.195169],[-38.882468,-13.193269],[-38.877668,-13.191569],[-38.872768,-13.189069],[-38.868368,-13.186969],[-38.865068,-13.183269],[-38.863268,-13.179369],[-38.861068,-13.177269],[-38.859268,-13.175069],[-38.857168,-13.172469],[-38.854768,-13.169969],[-38.851168,-13.166769],[-38.846668,-13.163769],[-38.843168,-13.160969],[-38.839768,-13.158969],[-38.835468,-13.156269],[-38.831768,-13.153969],[-38.827868,-13.151769],[-38.824668,-13.150369],[-38.821068,-13.149269],[-38.817968,-13.148169],[-38.814468,-13.146769],[-38.811368,-13.146269],[-38.807268,-13.146069],[-38.803368,-13.143769],[-38.797768,-13.137169],[-38.789568,-13.133069],[-38.785668,-13.132369],[-38.780868,-13.129869],[-38.776868,-13.127169],[-38.772568,-13.124669],[-38.768968,-13.123069],[-38.765368,-13.120769],[-38.761568,-13.117769],[-38.760468,-13.114469],[-38.759268,-13.111469],[-38.756668,-13.108069],[-38.753768,-13.104669],[-38.752068,-13.101769],[-38.749868,-13.097369],[-38.747668,-13.093369],[-38.745068,-13.090969],[-38.742268,-13.089869],[-38.739468,-13.090869],[-38.736068,-13.089369],[-38.732468,-13.085869],[-38.730068,-13.083169],[-38.727768,-13.079569],[-38.726668,-13.076069],[-38.724868,-13.072969],[-38.722568,-13.070669],[-38.720568,-13.068569],[-38.717268,-13.065569],[-38.714868,-13.063469],[-38.712568,-13.061169],[-38.710068,-13.059669],[-38.707168,-13.058869],[-38.703268,-13.057669],[-38.698768,-13.056169],[-38.695168,-13.055069],[-38.691368,-13.052469],[-38.688268,-13.049669],[-38.684468,-13.047569],[-38.680768,-13.045369],[-38.677568,-13.042569],[-38.674768,-13.039869],[-38.671468,-13.037569],[-38.666768,-13.037269],[-38.660568,-13.035069],[-38.655468,-13.031669],[-38.652668,-13.028669],[-38.650868,-13.026469],[-38.648968,-13.024069],[-38.646868,-13.020769],[-38.644268,-13.016769],[-38.585468,-13.012469],[-38.539768,-13.010469],[-38.531568,-13.010669],[-38.527568,-13.009969],[-38.523968,-13.011069],[-38.519668,-13.010369],[-38.515368,-13.010669],[-38.511768,-13.011769],[-38.508468,-13.011569],[-38.505468,-13.012069],[-38.501268,-13.011469],[-38.496068,-13.011569],[-38.492168,-13.012669],[-38.489368,-13.014869],[-38.487168,-13.016769],[-38.483968,-13.015669],[-38.480068,-13.015469],[-38.475368,-13.014569],[-38.470968,-13.014569],[-38.468068,-13.013569],[-38.464768,-13.010769],[-38.461168,-13.009069],[-38.458768,-13.007169],[-38.454668,-13.005969],[-38.450668,-13.003469],[-38.447868,-13.000569],[-38.444668,-12.999069],[-38.440968,-12.997469],[-38.439468,-12.994969],[-38.437668,-12.992269],[-38.434668,-12.989069],[-38.431568,-12.985769],[-38.428968,-12.983669],[-38.425868,-12.981169],[-38.421468,-12.978569],[-38.416368,-12.975969],[-38.412768,-12.973769],[-38.409468,-12.971269],[-38.405568,-12.968669],[-38.401468,-12.965869],[-38.397568,-12.962869],[-38.393668,-12.960769],[-38.390968,-12.959069],[-38.388568,-12.957569],[-38.384968,-12.956069],[-38.379668,-12.955769],[-38.377168,-12.953769],[-38.372668,-12.952069],[-38.367468,-12.951069],[-38.362968,-12.952169],[-38.359968,-12.955169],[-38.357168,-12.956469],[-38.353368,-12.956469],[-38.349268,-12.954369],[-38.345568,-12.952169],[-38.342068,-12.949969],[-38.337668,-12.946069],[-38.333968,-12.944169],[-38.331568,-12.941669],[-38.328768,-12.939069],[-38.325168,-12.935269],[-38.322168,-12.932269],[-38.318868,-12.929469],[-38.315168,-12.925369],[-38.313268,-12.922469],[-38.310768,-12.919169],[-38.308868,-12.916669],[-38.306868,-12.913669],[-38.304668,-12.911169],[-38.302568,-12.908869],[-38.298868,-12.904169],[-38.295668,-12.899869],[-38.292768,-12.895969],[-38.288968,-12.891569],[-38.285268,-12.887469],[-38.281668,-12.883069],[-38.280168,-12.879369],[-38.277568,-12.878069],[-38.275068,-12.876069],[-38.270168,-12.875469],[-38.265668,-12.873069],[-38.263468,-12.869669],[-38.260968,-12.867169],[-38.258268,-12.864669],[-38.254468,-12.861369],[-38.250568,-12.858569],[-38.247668,-12.855669],[-38.244968,-12.853469],[-38.241868,-12.849569],[-38.239668,-12.846369],[-38.237468,-12.843969],[-38.234768,-12.840169],[-38.231368,-12.835669],[-38.228068,-12.832369],[-38.225068,-12.829269],[-38.221768,-12.826069],[-38.218968,-12.823469],[-38.216768,-12.821269],[-38.214568,-12.818869],[-38.211868,-12.815569],[-38.208968,-12.812369],[-38.206468,-12.808369],[-38.203268,-12.803869],[-38.200668,-12.799769],[-38.197968,-12.796069],[-38.194368,-12.791169],[-38.191868,-12.787369],[-38.189868,-12.784869],[-38.186568,-12.782869],[-38.184368,-12.780469],[-38.180868,-12.777869],[-38.177168,-12.774369],[-38.174368,-12.771569],[-38.171768,-12.768269],[-38.168868,-12.764269],[-38.167168,-12.761569],[-38.164468,-12.758469],[-38.161168,-12.754469],[-38.158668,-12.751269],[-38.155468,-12.747369],[-38.152568,-12.744069],[-38.149868,-12.740769],[-38.147668,-12.737969],[-38.145768,-12.735869],[-38.143668,-12.733369],[-38.141268,-12.731369],[-38.138568,-12.728169],[-38.134568,-12.723469],[-38.131368,-12.719769],[-38.128568,-12.716169],[-38.125868,-12.712369],[-38.124068,-12.708569],[-38.120768,-12.706269],[-38.118568,-12.703569],[-38.115768,-12.700669],[-38.112568,-12.697369],[-38.109668,-12.693769],[-38.106768,-12.690869],[-38.104968,-12.688469],[-38.102768,-12.686069],[-38.099968,-12.683669],[-38.096168,-12.680869],[-38.093768,-12.679069],[-38.089768,-12.676169],[-38.086268,-12.672169],[-38.083668,-12.668069],[-38.081068,-12.664469],[-38.078768,-12.662069],[-38.076268,-12.659169],[-38.073168,-12.655869],[-38.069568,-12.654069],[-38.067368,-12.651969],[-38.064068,-12.650469],[-38.061268,-12.648769],[-38.059868,-12.645669],[-38.057468,-12.641469],[-38.054668,-12.639269],[-38.051868,-12.637369],[-38.048968,-12.636369],[-38.046368,-12.633869],[-38.044968,-12.629169],[-38.045368,-12.624169],[-38.043568,-12.619469],[-38.042468,-12.614969],[-38.040968,-12.610769],[-38.038668,-12.607869],[-38.036268,-12.604669],[-38.034168,-12.602469],[-38.031968,-12.599869],[-38.030868,-12.594869],[-38.027068,-12.593669],[-38.025068,-12.591169],[-38.021768,-12.588369],[-38.017968,-12.585669],[-38.014668,-12.583669],[-38.011068,-12.581769],[-38.007368,-12.581569],[-38.004468,-12.579269],[-38.001868,-12.577969],[-37.999968,-12.574969],[-37.998368,-12.572069],[-37.996868,-12.569569],[-37.994068,-12.565869],[-37.992968,-12.561869],[-37.991568,-12.559069],[-37.989368,-12.556569],[-37.987468,-12.554369],[-37.986068,-12.551069],[-37.984168,-12.548169],[-37.982768,-12.544769],[-37.981768,-12.540269],[-37.980568,-12.536269],[-37.978868,-12.532869],[-37.976968,-12.529169],[-37.975268,-12.525669],[-37.973168,-12.521469],[-37.971168,-12.518169],[-37.969568,-12.515769],[-37.967268,-12.512769],[-37.964068,-12.509169],[-37.961168,-12.504669],[-37.958968,-12.499469],[-37.957068,-12.496269],[-37.954668,-12.492469],[-37.952168,-12.488869],[-37.950168,-12.486069],[-37.947868,-12.482869],[-37.945168,-12.478969],[-37.941868,-12.474169],[-37.939868,-12.470569],[-37.937468,-12.467569],[-37.935468,-12.465069],[-37.931968,-12.460469],[-37.930068,-12.456869],[-37.928268,-12.453969],[-37.925568,-12.450669],[-37.922768,-12.446569],[-37.918968,-12.442369],[-37.915968,-12.440469],[-37.914468,-12.437269],[-37.912868,-12.433369],[-37.910868,-12.430069],[-37.908068,-12.426669],[-37.905668,-12.423669],[-37.903668,-12.421069],[-37.901468,-12.418069],[-37.897568,-12.413469],[-37.895068,-12.410569],[-37.892568,-12.406969],[-37.889968,-12.403969],[-37.888168,-12.401269],[-37.885768,-12.398669],[-37.882468,-12.394569],[-37.879368,-12.389569],[-37.876568,-12.384869],[-37.874168,-12.381269],[-37.872468,-12.378569],[-37.870768,-12.376269],[-37.868868,-12.373669],[-37.866868,-12.370469],[-37.864668,-12.367169],[-37.862768,-12.363669],[-37.861068,-12.361169],[-37.858868,-12.358069],[-37.856368,-12.354269],[-37.854168,-12.351169],[-37.851968,-12.347769],[-37.848968,-12.343469],[-37.846768,-12.340069],[-37.844868,-12.337269],[-37.842668,-12.334369],[-37.840568,-12.331469],[-37.838768,-12.328569],[-37.837068,-12.326069],[-37.835368,-12.323169],[-37.832868,-12.319869],[-37.829068,-12.314969],[-37.826268,-12.310769],[-37.823568,-12.307269],[-37.820168,-12.302969],[-37.816668,-12.298269],[-37.813568,-12.294169],[-37.810468,-12.290269],[-37.807668,-12.286969],[-37.805268,-12.283669],[-37.802168,-12.280069],[-37.798968,-12.276269],[-37.796368,-12.273169],[-37.793868,-12.270769],[-37.791668,-12.268569],[-37.788868,-12.265069],[-37.786268,-12.261769],[-37.784268,-12.258869],[-37.782068,-12.255169],[-37.779268,-12.251069],[-37.777268,-12.248269],[-37.775768,-12.245769],[-37.773668,-12.242269],[-37.771768,-12.240069],[-37.770068,-12.237269],[-37.768268,-12.234769],[-37.766468,-12.231669],[-37.764568,-12.228469],[-37.762968,-12.225969],[-37.761068,-12.221769],[-37.758068,-12.219569],[-37.756268,-12.216169],[-37.754368,-12.212869],[-37.752468,-12.209569],[-37.750968,-12.207169],[-37.748368,-12.203169],[-37.745168,-12.197469],[-37.742968,-12.193769],[-37.740768,-12.189669],[-37.738068,-12.185769],[-37.736068,-12.182969],[-37.733968,-12.179769],[-37.730868,-12.175069],[-37.728868,-12.171669],[-37.726968,-12.168369],[-37.724568,-12.164769],[-37.723168,-12.162269],[-37.720968,-12.158369],[-37.718768,-12.154469],[-37.716568,-12.150369],[-37.714368,-12.146769],[-37.712068,-12.142869],[-37.710368,-12.139969],[-37.708468,-12.136869],[-37.706468,-12.133769],[-37.704868,-12.130769],[-37.702668,-12.126869],[-37.699268,-12.121569],[-37.697068,-12.117469],[-37.694968,-12.114369],[-37.692468,-12.110769],[-37.690568,-12.107869],[-37.689068,-12.104469],[-37.687368,-12.101469],[-37.686868,-12.097669],[-37.684368,-12.095869],[-37.681868,-12.091269],[-37.678968,-12.086469],[-37.677168,-12.082869],[-37.675268,-12.078869],[-37.673568,-12.074869],[-37.671468,-12.071069],[-37.670268,-12.068069],[-37.668568,-12.064669],[-37.667068,-12.061869],[-37.665668,-12.059369],[-37.663968,-12.055769],[-37.661368,-12.050869],[-37.658468,-12.045669],[-37.656168,-12.041369],[-37.654268,-12.037369],[-37.651868,-12.033369],[-37.649768,-12.029469],[-37.647968,-12.026469],[-37.646568,-12.023369],[-37.644268,-12.019069],[-37.642068,-12.015669],[-37.640668,-12.012669],[-37.637968,-12.008069],[-37.634968,-12.003069],[-37.631568,-11.997269],[-37.629068,-11.992969],[-37.626868,-11.988569],[-37.624468,-11.983669],[-37.621968,-11.979269],[-37.619668,-11.974569],[-37.617968,-11.970869],[-37.616468,-11.967569],[-37.614668,-11.963769],[-37.612868,-11.960669],[-37.610268,-11.955769],[-37.608568,-11.952369],[-37.607068,-11.948769],[-37.605568,-11.945269],[-37.604268,-11.942669],[-37.602568,-11.939169],[-37.601468,-11.936269],[-37.600368,-11.933569],[-37.598968,-11.930469],[-37.597168,-11.926269],[-37.595568,-11.922169],[-37.593968,-11.919269],[-37.591668,-11.914169],[-37.589068,-11.909469],[-37.586968,-11.904769],[-37.584568,-11.899069],[-37.583268,-11.896469],[-37.581168,-11.891369],[-37.578468,-11.885969],[-37.576368,-11.881269],[-37.574068,-11.875869],[-37.572468,-11.872669],[-37.570968,-11.869069],[-37.569068,-11.864769],[-37.567768,-11.861969],[-37.566568,-11.859169],[-37.564968,-11.856369],[-37.563868,-11.853469],[-37.562468,-11.850369],[-37.560868,-11.847369],[-37.559468,-11.843769],[-37.558268,-11.841169],[-37.555868,-11.836269],[-37.554168,-11.832269],[-37.552868,-11.829569],[-37.551668,-11.826769],[-37.549668,-11.822869],[-37.548268,-11.819869],[-37.546468,-11.816269],[-37.544968,-11.812669],[-37.542868,-11.808369],[-37.540568,-11.803069],[-37.538668,-11.798969],[-37.537068,-11.794669],[-37.534768,-11.789569],[-37.532668,-11.784769],[-37.530368,-11.779769],[-37.528068,-11.774769],[-37.526468,-11.770669],[-37.524868,-11.766869],[-37.523468,-11.763969],[-37.521768,-11.760669],[-37.519668,-11.756369],[-37.517668,-11.752069],[-37.515368,-11.747769],[-37.514268,-11.743269],[-37.512368,-11.739969],[-37.509868,-11.737469],[-37.507468,-11.733269],[-37.506068,-11.730369],[-37.504568,-11.727469],[-37.503068,-11.724469],[-37.501268,-11.720869],[-37.499668,-11.717269],[-37.497968,-11.714269],[-37.496568,-11.711469],[-37.494768,-11.707969],[-37.493068,-11.704369],[-37.491868,-11.701569],[-37.489768,-11.698169],[-37.488068,-11.694869],[-37.486368,-11.691569],[-37.483868,-11.686669],[-37.481668,-11.682269],[-37.479668,-11.678269],[-37.478068,-11.675769],[-37.476668,-11.672769],[-37.474968,-11.669269],[-37.473068,-11.666069],[-37.471668,-11.663169],[-37.469768,-11.658969],[-37.467868,-11.655669],[-37.464568,-11.648369],[-37.462968,-11.645769],[-37.461168,-11.641769],[-37.457868,-11.635169],[-37.455968,-11.631769],[-37.454268,-11.628469],[-37.452568,-11.625169],[-37.451268,-11.622369],[-37.448468,-11.616569],[-37.446568,-11.612869],[-37.444668,-11.608569],[-37.441868,-11.603669],[-37.439868,-11.600269],[-37.436268,-11.592969],[-37.433268,-11.586969],[-37.429668,-11.580369],[-37.426868,-11.575169],[-37.423368,-11.568469],[-37.420068,-11.562369],[-37.417568,-11.557469],[-37.415568,-11.553369],[-37.412768,-11.548569],[-37.409768,-11.543369],[-37.406268,-11.536469],[-37.401468,-11.529069],[-37.399468,-11.526169],[-37.395768,-11.520069],[-37.392868,-11.515469],[-37.390668,-11.512669],[-37.388268,-11.508869],[-37.384168,-11.503569],[-37.381068,-11.500169],[-37.379068,-11.497769],[-37.376268,-11.494669],[-37.373568,-11.491169],[-37.371368,-11.488669],[-37.367668,-11.484469],[-37.364168,-11.480269],[-37.361668,-11.477269],[-37.359168,-11.474469],[-37.356368,-11.471269],[-37.353368,-11.467569],[-37.350668,-11.464069],[-37.348868,-11.461469],[-37.348368,-11.457669],[-37.348468,-11.454369],[-37.345968,-11.448269],[-37.341168,-11.442369],[-37.337968,-11.442669],[-37.325968,-11.436069],[-37.319368,-11.429769],[-37.316668,-11.426869],[-37.313868,-11.425369],[-37.312168,-11.422869],[-37.311868,-11.418469],[-37.311568,-11.415369],[-37.310168,-11.408669],[-37.309368,-11.402569],[-37.309368,-11.398969],[-37.309468,-11.394369],[-37.306868,-11.384369],[-37.305568,-11.380669],[-37.304368,-11.377069],[-37.302968,-11.372669],[-37.301068,-11.367269],[-37.298968,-11.362569],[-37.296668,-11.357169],[-37.294568,-11.352569],[-37.293068,-11.349169],[-37.290868,-11.344769],[-37.288468,-11.339769],[-37.286468,-11.335469],[-37.284468,-11.331769],[-37.282668,-11.328169],[-37.280368,-11.323869],[-37.278668,-11.320669],[-37.276768,-11.316869],[-37.274568,-11.313069],[-37.272368,-11.309369],[-37.269368,-11.304069],[-37.267068,-11.300269],[-37.264568,-11.296369],[-37.261768,-11.291969],[-37.260268,-11.289469],[-37.257768,-11.286469],[-37.255768,-11.283369],[-37.252668,-11.279469],[-37.250768,-11.276869],[-37.248768,-11.273969],[-37.246868,-11.271569],[-37.244968,-11.269369],[-37.242768,-11.266469],[-37.239168,-11.262069],[-37.235268,-11.257369],[-37.232868,-11.254169],[-37.230568,-11.251369],[-37.228168,-11.248269],[-37.225868,-11.245569],[-37.223668,-11.242969],[-37.220568,-11.239169],[-37.218768,-11.236969],[-37.216268,-11.233869],[-37.213668,-11.230669],[-37.210668,-11.227269],[-37.208668,-11.224769],[-37.205968,-11.221969],[-37.202868,-11.218669],[-37.199968,-11.215369],[-37.196268,-11.211469],[-37.189468,-11.205069],[-37.185468,-11.200669],[-37.180468,-11.195769],[-37.176668,-11.192369],[-37.173968,-11.189969],[-37.168668,-11.184469],[-37.166068,-11.182469],[-37.164168,-11.179469],[-37.162368,-11.174969],[-37.160568,-11.170269],[-37.157768,-11.164869],[-37.154068,-11.160969],[-37.152268,-11.156569],[-37.150868,-11.151469],[-37.147668,-11.146569],[-37.145668,-11.138869],[-37.144068,-11.134369],[-37.140668,-11.127669],[-37.137168,-11.121269],[-37.134868,-11.117269],[-37.132368,-11.113569],[-37.129468,-11.109169],[-37.125468,-11.102769],[-37.123868,-11.100269],[-37.121968,-11.097669],[-37.119768,-11.094469],[-37.114468,-11.086769],[-37.111668,-11.082869],[-37.109668,-11.079869],[-37.105868,-11.074369],[-37.101368,-11.067969],[-37.099768,-11.065569],[-37.096668,-11.060769],[-37.092068,-11.054169],[-37.088768,-11.049269],[-37.083668,-11.041669],[-37.079268,-11.035269],[-37.076268,-11.031169],[-37.073168,-11.026569],[-37.071368,-11.024069],[-37.068868,-11.020769],[-37.066668,-11.017469],[-37.062468,-11.011869],[-37.059168,-11.007669],[-37.057268,-11.005269],[-37.054668,-11.002169],[-37.052268,-10.999369],[-37.048668,-10.995469],[-37.046168,-10.992469],[-37.044168,-10.990069],[-37.040268,-10.985569],[-37.037068,-10.982169],[-37.034868,-10.978969],[-37.033968,-10.975569],[-37.033868,-10.970269],[-37.035568,-10.965969],[-37.036168,-10.962669],[-37.035668,-10.959869],[-37.034568,-10.957069],[-37.030168,-10.954269],[-37.026268,-10.951569],[-37.024768,-10.949069],[-37.022668,-10.945169],[-37.020168,-10.941869],[-37.018168,-10.938469],[-37.015768,-10.934369],[-37.014268,-10.931369],[-37.012068,-10.927769],[-37.009668,-10.923969],[-37.007068,-10.920269],[-37.004568,-10.916669],[-37.002668,-10.914169],[-37.000268,-10.911269],[-36.998368,-10.908969],[-36.996568,-10.906669],[-36.994768,-10.904169],[-36.991668,-10.900369],[-36.989468,-10.897369],[-36.987568,-10.895169],[-36.983968,-10.890669],[-36.981368,-10.887169],[-36.976968,-10.881669],[-36.973368,-10.876569],[-36.969468,-10.871669],[-36.964568,-10.865869],[-36.961168,-10.861169],[-36.953268,-10.851969],[-36.943568,-10.841169],[-36.938768,-10.836569],[-36.935768,-10.834669],[-36.931868,-10.832169],[-36.930068,-10.829669],[-36.928368,-10.826369],[-36.926168,-10.823469],[-36.924468,-10.821069],[-36.922468,-10.818469],[-36.919668,-10.815169],[-36.916168,-10.811069],[-36.912868,-10.807269],[-36.909268,-10.803669],[-36.906168,-10.800069],[-36.903068,-10.796869],[-36.899568,-10.793069],[-36.895668,-10.788169],[-36.890168,-10.782669],[-36.885368,-10.777269],[-36.879868,-10.771269],[-36.875268,-10.766469],[-36.867468,-10.757969],[-36.860868,-10.751369],[-36.858068,-10.748569],[-36.854168,-10.743369],[-36.849768,-10.742569],[-36.846768,-10.739069],[-36.843368,-10.735569],[-36.840368,-10.732469],[-36.833268,-10.725969],[-36.827868,-10.721369],[-36.820668,-10.715569],[-36.815168,-10.711169],[-36.809468,-10.706769],[-36.805468,-10.703469],[-36.801868,-10.700769],[-36.796868,-10.696869],[-36.792468,-10.693869],[-36.787568,-10.690269],[-36.783368,-10.687469],[-36.779268,-10.685169],[-36.775968,-10.682969],[-36.772068,-10.680469],[-36.769268,-10.678669],[-36.760968,-10.673969],[-36.755268,-10.670369],[-36.750568,-10.667769],[-36.744768,-10.664169],[-36.742268,-10.662569],[-36.738568,-10.660369],[-36.734668,-10.658069],[-36.731968,-10.656969],[-36.725668,-10.653769],[-36.722268,-10.652269],[-36.717668,-10.650369],[-36.699368,-10.643569],[-36.687468,-10.638569],[-36.680868,-10.635169],[-36.673168,-10.629869],[-36.656268,-10.619169],[-36.648368,-10.613269],[-36.639068,-10.606369],[-36.624168,-10.596369],[-36.612568,-10.588369],[-36.599768,-10.580769],[-36.592868,-10.576769],[-36.587068,-10.573769],[-36.583668,-10.572369],[-36.580368,-10.572469],[-36.576068,-10.571769],[-36.564668,-10.566669],[-36.547468,-10.559669],[-36.537868,-10.555869],[-36.527268,-10.551169],[-36.521768,-10.549469],[-36.511468,-10.545569],[-36.500868,-10.541969],[-36.493368,-10.538769],[-36.489668,-10.537369],[-36.486168,-10.536369],[-36.482168,-10.534769],[-36.476668,-10.532769],[-36.469768,-10.530169],[-36.466268,-10.528969],[-36.458268,-10.525669],[-36.454668,-10.523769],[-36.449368,-10.521769],[-36.442468,-10.519269],[-36.436668,-10.517069],[-36.432968,-10.515769],[-36.426868,-10.514669],[-36.422168,-10.514369],[-36.418068,-10.514269],[-36.414168,-10.513469],[-36.408868,-10.511769],[-36.406568,-10.507969],[-36.404168,-10.506369],[-36.401268,-10.503269],[-36.398468,-10.499369],[-36.394868,-10.496569],[-36.391768,-10.496969],[-36.390668,-10.499669],[-36.387668,-10.498569],[-36.385468,-10.495169],[-36.383868,-10.491869],[-36.381768,-10.487769],[-36.379868,-10.484169],[-36.376668,-10.478869],[-36.374468,-10.474969],[-36.372268,-10.471169],[-36.370168,-10.467669],[-36.368068,-10.464569],[-36.366168,-10.461869],[-36.363668,-10.457869],[-36.361668,-10.454269],[-36.360068,-10.451769],[-36.358068,-10.448469],[-36.356068,-10.444369],[-36.354468,-10.441569],[-36.352768,-10.438069],[-36.350668,-10.434469],[-36.349468,-10.431369],[-36.348068,-10.428669],[-36.345968,-10.425069],[-36.344068,-10.421469],[-36.342568,-10.418569],[-36.340568,-10.414969],[-36.338468,-10.411469],[-36.336768,-10.408369],[-36.335168,-10.405869],[-36.333268,-10.402369],[-36.331768,-10.399569],[-36.330068,-10.397069],[-36.328268,-10.394369],[-36.326068,-10.391069],[-36.323868,-10.387669],[-36.322068,-10.385169],[-36.320268,-10.382169],[-36.318568,-10.379869],[-36.315268,-10.375269],[-36.312168,-10.371569],[-36.309868,-10.369069],[-36.307768,-10.366869],[-36.305568,-10.364469],[-36.302168,-10.363269],[-36.298868,-10.361969],[-36.297468,-10.359169],[-36.295368,-10.356969],[-36.293668,-10.353969],[-36.296168,-10.350669],[-36.299968,-10.347269],[-36.302968,-10.344469],[-36.302168,-10.340869],[-36.302568,-10.335069],[-36.302768,-10.330969],[-36.302268,-10.327569],[-36.301568,-10.323569],[-36.300268,-10.318569],[-36.298268,-10.313569],[-36.296768,-10.310469],[-36.295068,-10.307169],[-36.293368,-10.303969],[-36.291368,-10.300469],[-36.288668,-10.296369],[-36.286268,-10.293169],[-36.283868,-10.289869],[-36.281968,-10.287469],[-36.279568,-10.284569],[-36.277568,-10.281969],[-36.275668,-10.279769],[-36.273668,-10.277669],[-36.271268,-10.275369],[-36.268768,-10.272669],[-36.266068,-10.270069],[-36.262668,-10.266769],[-36.258768,-10.263269],[-36.252968,-10.258869],[-36.249768,-10.256569],[-36.246868,-10.254469],[-36.244468,-10.252669],[-36.241868,-10.250469],[-36.239668,-10.248069],[-36.237268,-10.245769],[-36.234968,-10.242769],[-36.232768,-10.239969],[-36.229668,-10.236069],[-36.226968,-10.232469],[-36.224568,-10.229469],[-36.222068,-10.226669],[-36.219468,-10.223969],[-36.216768,-10.221469],[-36.214368,-10.219469],[-36.211468,-10.217269],[-36.208168,-10.214869],[-36.204368,-10.212369],[-36.201268,-10.210469],[-36.198568,-10.208669],[-36.195168,-10.206469],[-36.190968,-10.203569],[-36.187968,-10.201069],[-36.185168,-10.198469],[-36.182768,-10.194569],[-36.180768,-10.190769],[-36.179168,-10.187669],[-36.177268,-10.184469],[-36.175368,-10.181569],[-36.173568,-10.178969],[-36.170768,-10.175569],[-36.168968,-10.173369],[-36.166668,-10.170769],[-36.163468,-10.168069],[-36.159868,-10.165269],[-36.156268,-10.162869],[-36.152568,-10.159869],[-36.150368,-10.156769],[-36.146468,-10.156169],[-36.141768,-10.155369],[-36.137968,-10.156769],[-36.134868,-10.159469],[-36.132368,-10.156169],[-36.130968,-10.153669],[-36.129168,-10.150469],[-36.127668,-10.147369],[-36.125468,-10.143669],[-36.123368,-10.140769],[-36.121568,-10.138569],[-36.117968,-10.136369],[-36.113668,-10.134069],[-36.110268,-10.130269],[-36.108168,-10.125569],[-36.106468,-10.120869],[-36.104268,-10.117169],[-36.102368,-10.114669],[-36.100868,-10.111469],[-36.099468,-10.108869],[-36.097668,-10.105969],[-36.095368,-10.102569],[-36.093668,-10.100069],[-36.091568,-10.097369],[-36.089468,-10.095069],[-36.086168,-10.092569],[-36.082668,-10.090369],[-36.078568,-10.088769],[-36.075468,-10.087569],[-36.072868,-10.086269],[-36.067968,-10.084469],[-36.061968,-10.084869],[-36.057468,-10.083569],[-36.054368,-10.080169],[-36.050068,-10.076269],[-36.045868,-10.074569],[-36.044968,-10.070469],[-36.043168,-10.066269],[-36.041368,-10.062969],[-36.038168,-10.059869],[-36.035568,-10.057169],[-36.032868,-10.053069],[-36.030068,-10.049469],[-36.027268,-10.046169],[-36.025368,-10.042169],[-36.023168,-10.038869],[-36.020768,-10.034569],[-36.018968,-10.031669],[-36.017468,-10.029069],[-36.015768,-10.025969],[-36.014268,-10.022969],[-36.012468,-10.019669],[-36.010668,-10.015669],[-36.008568,-10.012069],[-36.006368,-10.008069],[-36.004168,-10.004469],[-36.002368,-10.001969],[-36.000168,-9.998769],[-35.997268,-9.995269],[-35.994068,-9.990769],[-35.991868,-9.987169],[-35.989468,-9.983969],[-35.987468,-9.981769],[-35.985268,-9.979269],[-35.982868,-9.976769],[-35.981168,-9.974469],[-35.978168,-9.970269],[-35.975568,-9.966969],[-35.974168,-9.963969],[-35.971968,-9.959769],[-35.970068,-9.955769],[-35.968368,-9.952369],[-35.966268,-9.948469],[-35.964868,-9.945269],[-35.963168,-9.941369],[-35.959368,-9.936269],[-35.956868,-9.933369],[-35.954668,-9.930869],[-35.952668,-9.927469],[-35.950668,-9.924269],[-35.948768,-9.921069],[-35.946068,-9.916369],[-35.943168,-9.910969],[-35.940768,-9.907069],[-35.937768,-9.902269],[-35.934468,-9.898169],[-35.929768,-9.894069],[-35.926868,-9.891769],[-35.924268,-9.889669],[-35.921068,-9.887069],[-35.918568,-9.884669],[-35.915668,-9.882069],[-35.913068,-9.880269],[-35.910368,-9.878069],[-35.907368,-9.874769],[-35.906168,-9.870769],[-35.905468,-9.866669],[-35.905068,-9.862469],[-35.903768,-9.859469],[-35.904768,-9.856169],[-35.906268,-9.852469],[-35.903668,-9.848669],[-35.899568,-9.845669],[-35.896568,-9.843669],[-35.893768,-9.842369],[-35.890768,-9.840869],[-35.888168,-9.838169],[-35.885768,-9.835169],[-35.883768,-9.832169],[-35.881368,-9.829069],[-35.878868,-9.825469],[-35.876568,-9.821569],[-35.875168,-9.818569],[-35.873368,-9.815469],[-35.871268,-9.811869],[-35.869368,-9.808869],[-35.866968,-9.805169],[-35.864668,-9.801569],[-35.862468,-9.798269],[-35.860668,-9.795669],[-35.858968,-9.793169],[-35.858268,-9.789969],[-35.854268,-9.786969],[-35.851368,-9.783369],[-35.849468,-9.780869],[-35.847568,-9.778669],[-35.845568,-9.775669],[-35.841768,-9.771869],[-35.838368,-9.769269],[-35.836868,-9.766469],[-35.834768,-9.763269],[-35.832868,-9.759969],[-35.830668,-9.756769],[-35.827568,-9.753769],[-35.825468,-9.751569],[-35.823168,-9.749069],[-35.820468,-9.744769],[-35.818468,-9.740869],[-35.818068,-9.737169],[-35.818468,-9.733869],[-35.815168,-9.732869],[-35.812268,-9.729269],[-35.810168,-9.727069],[-35.806668,-9.724269],[-35.804368,-9.721169],[-35.805868,-9.717269],[-35.801868,-9.715969],[-35.798568,-9.715969],[-35.794968,-9.716569],[-35.793368,-9.713369],[-35.790568,-9.711469],[-35.787768,-9.708769],[-35.785168,-9.705969],[-35.779868,-9.701069],[-35.776568,-9.698169],[-35.773768,-9.694869],[-35.770768,-9.692069],[-35.767868,-9.690169],[-35.764968,-9.688369],[-35.762468,-9.685469],[-35.760668,-9.682769],[-35.758068,-9.680769],[-35.754068,-9.677969],[-35.749368,-9.675069],[-35.745468,-9.673369],[-35.742168,-9.672269],[-35.738368,-9.671469],[-35.734968,-9.671169],[-35.731668,-9.671369],[-35.727768,-9.672469],[-35.724468,-9.674369],[-35.724168,-9.680169],[-35.723468,-9.684069],[-35.720568,-9.680469],[-35.717368,-9.676069],[-35.715068,-9.672569],[-35.712868,-9.669269],[-35.710468,-9.666769],[-35.707668,-9.664869],[-35.704568,-9.664169],[-35.699968,-9.664469],[-35.695768,-9.664169],[-35.697368,-9.659769],[-35.697768,-9.656669],[-35.698268,-9.653469],[-35.699268,-9.649769],[-35.698568,-9.644669],[-35.697868,-9.640069],[-35.697368,-9.635769],[-35.696268,-9.632469],[-35.695168,-9.629469],[-35.693868,-9.626569],[-35.692068,-9.622169],[-35.689968,-9.618569],[-35.687668,-9.615469],[-35.684468,-9.611369],[-35.681168,-9.607769],[-35.678668,-9.604269],[-35.676568,-9.600269],[-35.673868,-9.596969],[-35.670068,-9.594069],[-35.666368,-9.591469],[-35.664468,-9.588669],[-35.662068,-9.586469],[-35.659468,-9.583269],[-35.656768,-9.579869],[-35.655168,-9.576469],[-35.653768,-9.572669],[-35.651568,-9.569969],[-35.648168,-9.567669],[-35.644768,-9.564669],[-35.642068,-9.560869],[-35.639268,-9.558369],[-35.636068,-9.556069],[-35.633268,-9.554369],[-35.629668,-9.552569],[-35.624968,-9.550369],[-35.619968,-9.548669],[-35.616868,-9.546169],[-35.614968,-9.542569],[-35.613068,-9.538469],[-35.608968,-9.534469],[-35.606168,-9.532269],[-35.603668,-9.530869],[-35.600668,-9.529769],[-35.596268,-9.529569],[-35.592268,-9.529569],[-35.590868,-9.522969],[-35.590568,-9.519869],[-35.589868,-9.517069],[-35.588368,-9.514069],[-35.585968,-9.510669],[-35.582568,-9.507669],[-35.580768,-9.505169],[-35.578468,-9.502369],[-35.574168,-9.499569],[-35.569568,-9.495469],[-35.565768,-9.493269],[-35.562668,-9.490769],[-35.559068,-9.487969],[-35.556568,-9.485069],[-35.555868,-9.481369],[-35.555168,-9.477469],[-35.553268,-9.474469],[-35.548968,-9.471269],[-35.546368,-9.468769],[-35.543868,-9.466669],[-35.541968,-9.464269],[-35.539568,-9.461169],[-35.535868,-9.457869],[-35.531968,-9.456869],[-35.529068,-9.453269],[-35.528768,-9.448469],[-35.526868,-9.445169],[-35.523668,-9.441969],[-35.520168,-9.440469],[-35.516768,-9.440469],[-35.513268,-9.439669],[-35.511268,-9.436269],[-35.509268,-9.431869],[-35.506568,-9.428669],[-35.504868,-9.426369],[-35.502968,-9.424169],[-35.500768,-9.421769],[-35.503568,-9.419169],[-35.499868,-9.416769],[-35.497368,-9.411969],[-35.496168,-9.407069],[-35.495768,-9.402269],[-35.496368,-9.398469],[-35.495868,-9.394269],[-35.495168,-9.390769],[-35.494068,-9.387869],[-35.491668,-9.382969],[-35.488568,-9.377369],[-35.485268,-9.372169],[-35.482768,-9.368869],[-35.480368,-9.366369],[-35.478168,-9.364169],[-35.475968,-9.361969],[-35.473068,-9.358569],[-35.469868,-9.355669],[-35.467968,-9.353369],[-35.465568,-9.350369],[-35.462568,-9.346669],[-35.458968,-9.343669],[-35.456068,-9.342569],[-35.452568,-9.341969],[-35.448768,-9.341669],[-35.445668,-9.340169],[-35.442668,-9.339469],[-35.440168,-9.336469],[-35.439168,-9.331469],[-35.437268,-9.327869],[-35.434868,-9.325669],[-35.431968,-9.323969],[-35.428668,-9.322669],[-35.425068,-9.321869],[-35.419968,-9.321569],[-35.416068,-9.319569],[-35.419468,-9.315769],[-35.415868,-9.313769],[-35.412268,-9.310769],[-35.408968,-9.308269],[-35.406168,-9.306669],[-35.401868,-9.305469],[-35.397868,-9.303269],[-35.395368,-9.299969],[-35.394568,-9.296469],[-35.393168,-9.293569],[-35.389268,-9.290969],[-35.386068,-9.285369],[-35.382468,-9.282569],[-35.378068,-9.280369],[-35.373868,-9.277269],[-35.371068,-9.273669],[-35.368368,-9.270769],[-35.365768,-9.267969],[-35.363068,-9.264669],[-35.360068,-9.261769],[-35.356668,-9.258469],[-35.353668,-9.254169],[-35.351668,-9.250769],[-35.349768,-9.248269],[-35.347868,-9.244669],[-35.344268,-9.240069],[-35.342268,-9.236069],[-35.338968,-9.232869],[-35.338768,-9.229669],[-35.335468,-9.226969],[-35.332968,-9.225069],[-35.330768,-9.223169],[-35.329268,-9.220269],[-35.328168,-9.217569],[-35.327368,-9.214769],[-35.324968,-9.211169],[-35.323568,-9.206769],[-35.321668,-9.202469],[-35.319068,-9.198569],[-35.316268,-9.196569],[-35.311568,-9.195269],[-35.307968,-9.194069],[-35.305868,-9.191969],[-35.304168,-9.189669],[-35.301868,-9.185869],[-35.300068,-9.182669],[-35.298368,-9.178669],[-35.296868,-9.174669],[-35.295268,-9.171469],[-35.294968,-9.168569],[-35.295368,-9.165269],[-35.295268,-9.160069],[-35.295268,-9.155869],[-35.291068,-9.156669],[-35.287068,-9.154069],[-35.285568,-9.149369],[-35.286768,-9.145769],[-35.287068,-9.142669],[-35.286668,-9.139269],[-35.285568,-9.135769],[-35.284768,-9.132369],[-35.283168,-9.129169],[-35.281168,-9.126869],[-35.278768,-9.125169],[-35.275068,-9.124469],[-35.271768,-9.123369],[-35.269368,-9.121169],[-35.268268,-9.114669],[-35.265768,-9.110869],[-35.262668,-9.106669],[-35.260168,-9.103069],[-35.258768,-9.099169],[-35.258468,-9.094569],[-35.257668,-9.091669],[-35.256268,-9.088369],[-35.253568,-9.086169],[-35.250868,-9.083469],[-35.248568,-9.081769],[-35.245768,-9.080069],[-35.243668,-9.076869],[-35.242168,-9.073469],[-35.240068,-9.068469],[-35.241868,-9.065969],[-35.239468,-9.061969],[-35.239368,-9.058269],[-35.239668,-9.052969],[-35.238668,-9.048669],[-35.235668,-9.043869],[-35.232868,-9.039569],[-35.230368,-9.036669],[-35.229568,-9.033169],[-35.227468,-9.030969],[-35.226168,-9.027969],[-35.224568,-9.025169],[-35.224268,-9.021869],[-35.223468,-9.019069],[-35.221668,-9.015369],[-35.218668,-9.010969],[-35.215368,-9.006669],[-35.211568,-9.003569],[-35.207668,-8.999469],[-35.204668,-8.996069],[-35.200268,-8.992569],[-35.197368,-8.990269],[-35.192768,-8.987469],[-35.189568,-8.983969],[-35.186368,-8.981169],[-35.182168,-8.978169],[-35.179468,-8.973669],[-35.177268,-8.969869],[-35.175768,-8.966669],[-35.175068,-8.963769],[-35.173668,-8.959769],[-35.172468,-8.956269],[-35.171068,-8.952869],[-35.170368,-8.948769],[-35.169268,-8.944069],[-35.168568,-8.940169],[-35.167168,-8.936369],[-35.164768,-8.931969],[-35.162468,-8.929069],[-35.160068,-8.926369],[-35.157868,-8.923869],[-35.155068,-8.920569],[-35.153168,-8.917469],[-35.152568,-8.914469],[-35.153368,-8.911269],[-35.150768,-8.906269],[-35.147668,-8.902569],[-35.144568,-8.899769],[-35.143268,-8.896469],[-35.142868,-8.892369],[-35.142168,-8.888969],[-35.141468,-8.885369],[-35.139568,-8.881369],[-35.137468,-8.878769],[-35.136068,-8.874969],[-35.134568,-8.871869],[-35.131268,-8.868869],[-35.129368,-8.866669],[-35.129868,-8.863269],[-35.131668,-8.859269],[-35.132168,-8.854569],[-35.133068,-8.849969],[-35.133768,-8.846669],[-35.134268,-8.842569],[-35.134168,-8.838669],[-35.134368,-8.835069],[-35.133768,-8.831869],[-35.131368,-8.827369],[-35.129568,-8.823869],[-35.127668,-8.820969],[-35.125268,-8.817769],[-35.123268,-8.814069],[-35.120868,-8.810769],[-35.119068,-8.806169],[-35.117968,-8.802269],[-35.116068,-8.799969],[-35.113368,-8.796769],[-35.109368,-8.795269],[-35.106668,-8.793969],[-35.104268,-8.790069],[-35.103368,-8.784769],[-35.104568,-8.780569],[-35.105868,-8.775769],[-35.105868,-8.772069],[-35.105068,-8.768769],[-35.103168,-8.764869],[-35.099968,-8.761069],[-35.096968,-8.759569],[-35.093768,-8.757669],[-35.091968,-8.753569],[-35.087968,-8.749669],[-35.086168,-8.746369],[-35.086468,-8.742269],[-35.087368,-8.736069],[-35.089068,-8.731969],[-35.089268,-8.727769],[-35.087868,-8.722369],[-35.086568,-8.719169],[-35.084868,-8.716469],[-35.083168,-8.713669],[-35.079668,-8.710369],[-35.079268,-8.706469],[-35.079368,-8.703469],[-35.082268,-8.701069],[-35.085468,-8.698569],[-35.089468,-8.695569],[-35.087668,-8.690769],[-35.085068,-8.687969],[-35.084368,-8.684469],[-35.083668,-8.681569],[-35.081168,-8.678569],[-35.077968,-8.675769],[-35.072668,-8.672769],[-35.071268,-8.667869],[-35.073168,-8.662269],[-35.072968,-8.657869],[-35.072068,-8.653669],[-35.070168,-8.649269],[-35.067668,-8.643969],[-35.065568,-8.640169],[-35.063268,-8.635969],[-35.061868,-8.632969],[-35.060168,-8.629869],[-35.057968,-8.625469],[-35.054668,-8.619069],[-35.051868,-8.615569],[-35.048068,-8.612469],[-35.049268,-8.607469],[-35.046068,-8.605669],[-35.045068,-8.602469],[-35.046068,-8.599169],[-35.045568,-8.594769],[-35.043568,-8.590869],[-35.040868,-8.588169],[-35.038868,-8.585169],[-35.038168,-8.581269],[-35.036968,-8.578169],[-35.035968,-8.574969],[-35.033168,-8.571169],[-35.029568,-8.567669],[-35.026768,-8.564869],[-35.022268,-8.560869],[-35.018668,-8.559869],[-35.014668,-8.560269],[-35.010468,-8.562469],[-35.007668,-8.563069],[-35.008568,-8.558369],[-35.008468,-8.554169],[-35.005968,-8.551569],[-35.003468,-8.547869],[-35.004068,-8.542869],[-35.003468,-8.539769],[-35.005168,-8.534769],[-35.006268,-8.530169],[-35.006368,-8.524869],[-35.005968,-8.520669],[-35.005468,-8.517669],[-35.004868,-8.514669],[-35.002668,-8.511869],[-35.000168,-8.508869],[-35.000268,-8.504569],[-35.001668,-8.501569],[-35.002368,-8.497969],[-35.001868,-8.494469],[-35.001268,-8.491069],[-34.999868,-8.486669],[-34.998368,-8.483069],[-34.996568,-8.478669],[-34.994668,-8.474569],[-34.992968,-8.471969],[-34.991368,-8.469269],[-34.988868,-8.464769],[-34.986368,-8.461269],[-34.983868,-8.458169],[-34.983868,-8.454369],[-34.983868,-8.450769],[-34.982868,-8.446869],[-34.981068,-8.441569],[-34.979968,-8.438769],[-34.978868,-8.435869],[-34.977468,-8.433269],[-34.975568,-8.428869],[-34.973668,-8.424969],[-34.971468,-8.420269],[-34.969868,-8.416969],[-34.966968,-8.410569],[-34.965168,-8.406969],[-34.963168,-8.402269],[-34.960768,-8.399069],[-34.961468,-8.395069],[-34.970368,-8.389269],[-34.974868,-8.384969],[-34.979668,-8.382169],[-34.972068,-8.380969],[-34.969468,-8.379169],[-34.967268,-8.375969],[-34.969468,-8.372669],[-34.970868,-8.369369],[-34.967668,-8.368369],[-34.965668,-8.371969],[-34.963168,-8.369069],[-34.961168,-8.366169],[-34.958668,-8.364669],[-34.957568,-8.361769],[-34.956568,-8.358169],[-34.953568,-8.355869],[-34.949368,-8.358269],[-34.945468,-8.358869],[-34.942768,-8.356469],[-34.940968,-8.353169],[-34.939668,-8.349469],[-34.940768,-8.345569],[-34.943868,-8.344169],[-34.947668,-8.341969],[-34.949968,-8.337369],[-34.950168,-8.333769],[-34.950268,-8.328969],[-34.949968,-8.324669],[-34.949568,-8.321069],[-34.948168,-8.316869],[-34.946368,-8.312669],[-34.944668,-8.308569],[-34.943068,-8.303669],[-34.946368,-8.302569],[-34.948768,-8.301069],[-34.951068,-8.298869],[-34.951868,-8.295869],[-34.951768,-8.292469],[-34.950668,-8.287269],[-34.948868,-8.283669],[-34.947168,-8.280169],[-34.946268,-8.275969],[-34.945268,-8.271769],[-34.944968,-8.267069],[-34.944568,-8.261269],[-34.942768,-8.256569],[-34.941268,-8.252969],[-34.939068,-8.248869],[-34.937368,-8.246069],[-34.935768,-8.243669],[-34.933768,-8.241369],[-34.931568,-8.239169],[-34.929068,-8.236769],[-34.926968,-8.234669],[-34.924668,-8.231369],[-34.925868,-8.227069],[-34.928568,-8.225269],[-34.925068,-8.222369],[-34.922468,-8.219769],[-34.919268,-8.215869],[-34.917568,-8.211169],[-34.916668,-8.206169],[-34.916068,-8.200469],[-34.916768,-8.195169],[-34.917068,-8.191269],[-34.917468,-8.185769],[-34.916368,-8.181169],[-34.915568,-8.176369],[-34.914468,-8.172769],[-34.913468,-8.168669],[-34.911768,-8.163169],[-34.909868,-8.158369],[-34.908768,-8.155069],[-34.907068,-8.151169],[-34.905468,-8.147169],[-34.904168,-8.144269],[-34.902068,-8.139869],[-34.900068,-8.134969],[-34.897868,-8.129869],[-34.896168,-8.125469],[-34.893768,-8.120869],[-34.891068,-8.116469],[-34.888968,-8.112869],[-34.887668,-8.109969],[-34.886268,-8.107269],[-34.884168,-8.103069],[-34.882368,-8.099469],[-34.881268,-8.096669],[-34.880268,-8.093469],[-34.879168,-8.090169],[-34.878068,-8.086769],[-34.876968,-8.083169],[-34.875568,-8.079669],[-34.874068,-8.075969],[-34.871268,-8.069269],[-34.869668,-8.065169],[-34.868068,-8.061869],[-34.865868,-8.056569],[-34.863268,-8.050869],[-34.861768,-8.048069],[-34.858968,-8.047169],[-34.860668,-8.044169],[-34.863968,-8.040969],[-34.863568,-8.038069],[-34.862268,-8.034169],[-34.860868,-8.031169],[-34.858968,-8.027969],[-34.856968,-8.025669],[-34.852068,-8.022569],[-34.849268,-8.020169],[-34.846668,-8.017169],[-34.843468,-8.013569],[-34.841568,-8.010669],[-34.840168,-8.007369],[-34.839368,-8.003569],[-34.838668,-7.999869],[-34.837368,-7.995869],[-34.838168,-7.992969],[-34.838168,-7.990069],[-34.836568,-7.985369],[-34.835068,-7.981769],[-34.834068,-7.978069],[-34.832568,-7.973469],[-34.830768,-7.967569],[-34.829568,-7.961969],[-34.828268,-7.958169],[-34.828268,-7.954669],[-34.827068,-7.952069],[-34.824768,-7.947969],[-34.823268,-7.942669],[-34.822768,-7.936969],[-34.821568,-7.932169],[-34.820468,-7.927269],[-34.819968,-7.921469],[-34.820268,-7.916669],[-34.821568,-7.911769],[-34.823468,-7.908369],[-34.824568,-7.905169],[-34.824868,-7.901769],[-34.824268,-7.898669],[-34.823768,-7.895369],[-34.823568,-7.890369],[-34.824568,-7.884569],[-34.827068,-7.880269],[-34.829668,-7.877369],[-34.832268,-7.873369],[-34.833668,-7.869769],[-34.834268,-7.866069],[-34.834268,-7.861169],[-34.834268,-7.856169],[-34.835368,-7.850669],[-34.836168,-7.845569],[-34.839068,-7.840369],[-34.841468,-7.844069],[-34.844768,-7.839069],[-34.844468,-7.834569],[-34.843168,-7.831169],[-34.843368,-7.826769],[-34.844468,-7.820569],[-34.846268,-7.816069],[-34.843668,-7.812469],[-34.839068,-7.811069],[-34.836868,-7.808669],[-34.836468,-7.804669],[-34.836868,-7.800469],[-34.836968,-7.796469],[-34.836568,-7.793069],[-34.836168,-7.788669],[-34.834768,-7.783069],[-34.832868,-7.777569],[-34.831168,-7.772969],[-34.829668,-7.768269],[-34.827668,-7.763569],[-34.825768,-7.760169],[-34.824568,-7.757069],[-34.823468,-7.752769],[-34.823268,-7.749769],[-34.823168,-7.746869],[-34.823168,-7.743369],[-34.823168,-7.740269],[-34.823468,-7.736469],[-34.824568,-7.732469],[-34.825268,-7.728469],[-34.827168,-7.725269],[-34.830668,-7.723069],[-34.830768,-7.720069],[-34.832068,-7.716269],[-34.832968,-7.712069],[-34.833168,-7.708569],[-34.832368,-7.704569],[-34.831868,-7.700169],[-34.835168,-7.696769],[-34.839768,-7.694569],[-34.841968,-7.692169],[-34.843768,-7.689469],[-34.847368,-7.687969],[-34.843368,-7.683269],[-34.837968,-7.682469],[-34.834368,-7.683369],[-34.831868,-7.679769],[-34.830168,-7.674969],[-34.829568,-7.670769],[-34.828768,-7.667469],[-34.827468,-7.663669],[-34.826068,-7.659769],[-34.824368,-7.655669],[-34.823168,-7.652069],[-34.821868,-7.648769],[-34.819568,-7.644869],[-34.817768,-7.641769],[-34.815968,-7.638869],[-34.814168,-7.636069],[-34.811668,-7.632969],[-34.808368,-7.628569],[-34.807268,-7.623869],[-34.806868,-7.619669],[-34.808368,-7.616869],[-34.811268,-7.615069],[-34.813468,-7.611669],[-34.815268,-7.608569],[-34.817668,-7.604269],[-34.819668,-7.600569],[-34.820968,-7.597669],[-34.822868,-7.594569],[-34.824968,-7.591969],[-34.826568,-7.587669],[-34.828268,-7.583569],[-34.829268,-7.580669],[-34.830968,-7.576069],[-34.831768,-7.571369],[-34.832268,-7.567669],[-34.833968,-7.564069],[-34.836968,-7.560769],[-34.837568,-7.556569],[-34.837568,-7.553369],[-34.833468,-7.548969],[-34.830468,-7.549369],[-34.827568,-7.550569],[-34.824568,-7.548169],[-34.823468,-7.544769],[-34.822668,-7.539869],[-34.822168,-7.536169],[-34.821068,-7.532669],[-34.819068,-7.528169],[-34.816568,-7.523669],[-34.813068,-7.518769],[-34.810768,-7.515369],[-34.809168,-7.510669],[-34.809868,-7.506569],[-34.811668,-7.502369],[-34.813468,-7.497269],[-34.814068,-7.493669],[-34.814068,-7.490069],[-34.812668,-7.484269],[-34.810768,-7.479969],[-34.808268,-7.476269],[-34.804768,-7.472269],[-34.805568,-7.468369],[-34.807768,-7.465669],[-34.810168,-7.460469],[-34.810768,-7.455669],[-34.810768,-7.451069],[-34.810468,-7.445769],[-34.809668,-7.440569],[-34.809468,-7.437369],[-34.809468,-7.433669],[-34.808868,-7.430069],[-34.808268,-7.426369],[-34.807268,-7.420069],[-34.806868,-7.415569],[-34.806368,-7.412569],[-34.805868,-7.409469],[-34.805468,-7.405869],[-34.804768,-7.402569],[-34.804368,-7.399069],[-34.803368,-7.392969],[-34.803368,-7.387369],[-34.802568,-7.384369],[-34.799968,-7.373869],[-34.798068,-7.369669],[-34.797568,-7.366069],[-34.798868,-7.362469],[-34.799768,-7.358869],[-34.799168,-7.354269],[-34.797868,-7.349569],[-34.797868,-7.346269],[-34.797568,-7.342569],[-34.796768,-7.339269],[-34.795768,-7.335969],[-34.794968,-7.331769],[-34.796368,-7.327869],[-34.798268,-7.322969],[-34.800868,-7.319069],[-34.801968,-7.315269],[-34.802168,-7.311369],[-34.800468,-7.306869],[-34.798568,-7.302769],[-34.799368,-7.299169],[-34.801068,-7.296069],[-34.801068,-7.292869],[-34.801068,-7.289569],[-34.799968,-7.285869],[-34.798968,-7.281969],[-34.799268,-7.277369],[-34.801568,-7.273669],[-34.802468,-7.270669],[-34.803568,-7.267969],[-34.804768,-7.261369],[-34.805168,-7.257069],[-34.805168,-7.253769],[-34.805268,-7.249769],[-34.806868,-7.245469],[-34.807168,-7.242269],[-34.806168,-7.238669],[-34.804468,-7.235769],[-34.804368,-7.231969],[-34.804368,-7.226769],[-34.804068,-7.222069],[-34.804068,-7.218069],[-34.803568,-7.214569],[-34.802168,-7.208769],[-34.801168,-7.206069],[-34.800068,-7.203269],[-34.797768,-7.199369],[-34.795268,-7.195669],[-34.794768,-7.192069],[-34.795268,-7.188369],[-34.795768,-7.185469],[-34.795868,-7.181169],[-34.795768,-7.175269],[-34.795668,-7.169469],[-34.795268,-7.163669],[-34.793868,-7.158369],[-34.793568,-7.154069],[-34.796468,-7.147669],[-34.800468,-7.145969],[-34.803868,-7.145469],[-34.806968,-7.145669],[-34.810468,-7.144869],[-34.813568,-7.142369],[-34.816568,-7.139269],[-34.818868,-7.135369],[-34.821068,-7.130469],[-34.822068,-7.127369],[-34.822868,-7.123369],[-34.822768,-7.120469],[-34.821868,-7.116069],[-34.821268,-7.111969],[-34.823268,-7.109669],[-34.826868,-7.106669],[-34.829668,-7.103169],[-34.831468,-7.100869],[-34.832668,-7.097269],[-34.833168,-7.092369],[-34.832668,-7.087869],[-34.830768,-7.081869],[-34.829668,-7.078169],[-34.829868,-7.074269],[-34.833168,-7.071269],[-34.836968,-7.067769],[-34.840168,-7.063069],[-34.841768,-7.059169],[-34.843368,-7.056169],[-34.842268,-7.052569],[-34.841668,-7.048869],[-34.840468,-7.045369],[-34.837568,-7.039569],[-34.835068,-7.036369],[-34.831068,-7.032669],[-34.829368,-7.028769],[-34.829568,-7.024269],[-34.829068,-7.018969],[-34.828268,-7.015769],[-34.827368,-7.012769],[-34.826768,-7.009869],[-34.825368,-7.004669],[-34.825368,-6.999669],[-34.825968,-6.995769],[-34.826868,-6.989369],[-34.827168,-6.983969],[-34.827468,-6.979769],[-34.827868,-6.974969],[-34.828268,-6.970569],[-34.829668,-6.966769],[-34.832068,-6.965069],[-34.836468,-6.964069],[-34.842268,-6.963469],[-34.842368,-6.966769],[-34.840668,-6.970069],[-34.836168,-6.977769],[-34.835368,-6.981769],[-34.834368,-6.985769],[-34.834068,-6.993569],[-34.835468,-6.999369],[-34.835068,-7.003569],[-34.836868,-7.009569],[-34.839268,-7.012969],[-34.843768,-7.017069],[-34.847268,-7.020169],[-34.850568,-7.024069],[-34.853868,-7.027569],[-34.858268,-7.029569],[-34.864668,-7.029569],[-34.865868,-7.025969],[-34.866668,-7.019069],[-34.870568,-7.011269],[-34.871068,-7.004569],[-34.871968,-6.999469],[-34.872768,-6.992669],[-34.873368,-6.989769],[-34.873768,-6.986469],[-34.869668,-6.978669],[-34.867168,-6.976169],[-34.863268,-6.973669],[-34.858968,-6.971969],[-34.855568,-6.969569],[-34.855068,-6.963969],[-34.856068,-6.959769],[-34.857468,-6.956769],[-34.859968,-6.952569],[-34.862568,-6.947069],[-34.864368,-6.942769],[-34.865468,-6.939169],[-34.866068,-6.934069],[-34.865768,-6.929069],[-34.863968,-6.922769],[-34.862568,-6.918469],[-34.860768,-6.914869],[-34.859168,-6.912269],[-34.857468,-6.909769],[-34.855568,-6.906169],[-34.854468,-6.901269],[-34.859268,-6.899869],[-34.862268,-6.899369],[-34.866068,-6.898269],[-34.870168,-6.896469],[-34.874468,-6.894269],[-34.877168,-6.892469],[-34.880668,-6.889869],[-34.884568,-6.886369],[-34.888268,-6.882069],[-34.890768,-6.878269],[-34.893768,-6.874069],[-34.896768,-6.869069],[-34.899368,-6.865369],[-34.900368,-6.861969],[-34.901568,-6.857469],[-34.902068,-6.854669],[-34.903668,-6.851469],[-34.905368,-6.846969],[-34.906568,-6.843669],[-34.909468,-6.833169],[-34.910268,-6.829669],[-34.911268,-6.825269],[-34.911668,-6.821769],[-34.912568,-6.817069],[-34.913368,-6.811169],[-34.914168,-6.806069],[-34.914468,-6.799969],[-34.914468,-6.796069],[-34.914768,-6.788669],[-34.917068,-6.780069],[-34.918168,-6.774469],[-34.920368,-6.769369],[-34.925768,-6.768269],[-34.932268,-6.763469],[-34.933868,-6.758869],[-34.936268,-6.755769],[-34.938868,-6.753769],[-34.936968,-6.750969],[-34.935168,-6.747669],[-34.933568,-6.744669],[-34.931168,-6.742169],[-34.928968,-6.739369],[-34.931168,-6.736369],[-34.933068,-6.732869],[-34.933868,-6.728169],[-34.932768,-6.723769],[-34.931568,-6.720669],[-34.932268,-6.716669],[-34.933268,-6.713369],[-34.933668,-6.709669],[-34.933668,-6.706469],[-34.933668,-6.701269],[-34.933868,-6.696869],[-34.932568,-6.692369],[-34.930768,-6.688769],[-34.935868,-6.687669],[-34.939568,-6.685769],[-34.942068,-6.684169],[-34.945168,-6.682469],[-34.947768,-6.679669],[-34.951068,-6.675069],[-34.952668,-6.672569],[-34.954568,-6.668369],[-34.956068,-6.663369],[-34.957168,-6.659169],[-34.957868,-6.655969],[-34.958968,-6.650969],[-34.959368,-6.647669],[-34.960168,-6.644569],[-34.961168,-6.641469],[-34.961568,-6.637969],[-34.962268,-6.634569],[-34.962968,-6.630969],[-34.963368,-6.627369],[-34.963968,-6.621969],[-34.963968,-6.618869],[-34.964068,-6.614369],[-34.964068,-6.610269],[-34.963968,-6.606769],[-34.964868,-6.603869],[-34.965868,-6.598969],[-34.966168,-6.590169],[-34.966268,-6.585469],[-34.966268,-6.579869],[-34.966168,-6.574369],[-34.966168,-6.570169],[-34.966168,-6.562269],[-34.966268,-6.554169],[-34.966268,-6.546769],[-34.966568,-6.542469],[-34.966768,-6.538069],[-34.967068,-6.528769],[-34.967368,-6.521069],[-34.967568,-6.510969],[-34.967368,-6.501669],[-34.967368,-6.497169],[-34.967568,-6.491369],[-34.969268,-6.487969],[-34.969868,-6.484669],[-34.969468,-6.480069],[-34.969568,-6.474569],[-34.969468,-6.470969],[-34.970868,-6.466969],[-34.972768,-6.461869],[-34.972768,-6.456769],[-34.973668,-6.452869],[-34.973968,-6.449669],[-34.973468,-6.445969],[-34.973068,-6.442169],[-34.971468,-6.438569],[-34.972068,-6.435769],[-34.974168,-6.432269],[-34.974868,-6.428669],[-34.974968,-6.425069],[-34.974868,-6.421369],[-34.975568,-6.418069],[-34.976968,-6.414469],[-34.979168,-6.410669],[-34.979768,-6.405869],[-34.979968,-6.402069],[-34.981768,-6.397669],[-34.984268,-6.393669],[-34.985268,-6.390469],[-34.986968,-6.386769],[-34.988568,-6.383469],[-34.989668,-6.380669],[-34.990368,-6.377669],[-34.991068,-6.372969],[-34.995868,-6.371269],[-34.999868,-6.369369],[-35.001968,-6.367169],[-35.004868,-6.365769],[-35.009068,-6.366869],[-35.010968,-6.369769],[-35.014068,-6.369669],[-35.016868,-6.367969],[-35.020368,-6.364669],[-35.022968,-6.360569],[-35.024768,-6.357269],[-35.026168,-6.354169],[-35.027568,-6.348869],[-35.028468,-6.344769],[-35.029168,-6.341269],[-35.029468,-6.337969],[-35.030168,-6.334369],[-35.031168,-6.330769],[-35.031568,-6.327869],[-35.032068,-6.324569],[-35.032568,-6.320469],[-35.032668,-6.316069],[-35.031968,-6.311969],[-35.031268,-6.306569],[-35.031968,-6.301469],[-35.032768,-6.297169],[-35.033168,-6.293569],[-35.033368,-6.289469],[-35.034468,-6.286269],[-35.033968,-6.283169],[-35.033768,-6.280169],[-35.033368,-6.275969],[-35.035168,-6.272369],[-35.037368,-6.267569],[-35.037568,-6.263869],[-35.037468,-6.259969],[-35.037268,-6.256569],[-35.036968,-6.252469],[-35.036768,-6.249069],[-35.036768,-6.245469],[-35.036368,-6.241569],[-35.035968,-6.236469],[-35.038168,-6.233569],[-35.040668,-6.231769],[-35.041968,-6.227569],[-35.045268,-6.225669],[-35.049268,-6.225669],[-35.053968,-6.225969],[-35.057668,-6.226269],[-35.061568,-6.225969],[-35.064068,-6.223869],[-35.066368,-6.221269],[-35.069168,-6.222269],[-35.072168,-6.220669],[-35.074668,-6.217069],[-35.076468,-6.213969],[-35.078268,-6.210669],[-35.079568,-6.206269],[-35.081068,-6.200469],[-35.081868,-6.195269],[-35.083668,-6.187969],[-35.087368,-6.184869],[-35.090368,-6.181869],[-35.094168,-6.182569],[-35.095368,-6.178669],[-35.095968,-6.173169],[-35.096168,-6.169169],[-35.096968,-6.164469],[-35.097268,-6.161269],[-35.097668,-6.158069],[-35.097368,-6.153769],[-35.097268,-6.150369],[-35.097568,-6.147369],[-35.097768,-6.143169],[-35.098468,-6.137669],[-35.098068,-6.133169],[-35.098168,-6.129869],[-35.098368,-6.124369],[-35.098368,-6.121269],[-35.098468,-6.117169],[-35.099868,-6.112469],[-35.100268,-6.107169],[-35.099968,-6.104169],[-35.099868,-6.099569],[-35.099568,-6.095669],[-35.099468,-6.091269],[-35.099168,-6.087669],[-35.098968,-6.084369],[-35.099168,-6.081469],[-35.099768,-6.077669],[-35.100268,-6.073269],[-35.097868,-6.069269],[-35.098368,-6.065769],[-35.097268,-6.061869],[-35.096368,-6.057769],[-35.098368,-6.055269],[-35.101368,-6.056569],[-35.104668,-6.054769],[-35.107268,-6.051169],[-35.108868,-6.047569],[-35.109468,-6.044169],[-35.109968,-6.038169],[-35.109968,-6.033069],[-35.109768,-6.028369],[-35.109268,-6.024769],[-35.108968,-6.021769],[-35.108268,-6.018469],[-35.107768,-6.015669],[-35.106368,-6.011569],[-35.106368,-6.007369],[-35.108868,-6.003769],[-35.110868,-5.999869],[-35.112168,-5.996569],[-35.112568,-5.991669],[-35.112868,-5.988369],[-35.116068,-5.985669],[-35.119968,-5.983269],[-35.121068,-5.979969],[-35.122268,-5.977069],[-35.123768,-5.974169],[-35.125568,-5.971269],[-35.128468,-5.967969],[-35.132768,-5.965569],[-35.137668,-5.965869],[-35.141868,-5.964569],[-35.146568,-5.961169],[-35.149468,-5.956869],[-35.151168,-5.952569],[-35.152568,-5.948169],[-35.153468,-5.943169],[-35.154168,-5.937669],[-35.154268,-5.932769],[-35.154268,-5.929369],[-35.156168,-5.925569],[-35.156968,-5.920369],[-35.156468,-5.915269],[-35.156168,-5.910569],[-35.155868,-5.906669],[-35.155168,-5.903669],[-35.154768,-5.900769],[-35.155468,-5.897569],[-35.153468,-5.893169],[-35.152968,-5.887169],[-35.154068,-5.883469],[-35.156768,-5.882069],[-35.160868,-5.879969],[-35.164868,-5.882669],[-35.168568,-5.882369],[-35.171168,-5.880269],[-35.173868,-5.877169],[-35.176368,-5.872669],[-35.178268,-5.867569],[-35.179468,-5.862569],[-35.180168,-5.857869],[-35.180568,-5.852869],[-35.180768,-5.848469],[-35.180768,-5.844569],[-35.180768,-5.839769],[-35.181168,-5.836169],[-35.181168,-5.833169],[-35.181168,-5.829869],[-35.181168,-5.826769],[-35.181368,-5.822069],[-35.181168,-5.819069],[-35.181068,-5.815569],[-35.180768,-5.811069],[-35.180468,-5.806369],[-35.179968,-5.801969],[-35.180068,-5.798569],[-35.181868,-5.795869],[-35.182668,-5.793069],[-35.186368,-5.790369],[-35.188868,-5.786969],[-35.190168,-5.783169],[-35.192668,-5.780869],[-35.192968,-5.777269],[-35.193468,-5.773769],[-35.193868,-5.770069],[-35.194268,-5.766769],[-35.194168,-5.762169],[-35.194268,-5.757669],[-35.197468,-5.753469],[-35.200968,-5.752069],[-35.202868,-5.749769],[-35.203468,-5.746569],[-35.204268,-5.741169],[-35.202968,-5.736769],[-35.202668,-5.733369],[-35.201868,-5.730069],[-35.201068,-5.725269],[-35.200368,-5.720869],[-35.199368,-5.717569],[-35.197868,-5.714069],[-35.196368,-5.708969],[-35.194868,-5.705369],[-35.192468,-5.702069],[-35.193168,-5.698469],[-35.194868,-5.694569],[-35.198968,-5.693869],[-35.202068,-5.694569],[-35.204968,-5.692669],[-35.207868,-5.689169],[-35.210968,-5.685469],[-35.213268,-5.681869],[-35.215468,-5.677569],[-35.216968,-5.673569],[-35.217568,-5.668069],[-35.217568,-5.663169],[-35.216468,-5.658869],[-35.216468,-5.653369],[-35.217568,-5.647869],[-35.217568,-5.643269],[-35.217568,-5.639669],[-35.217268,-5.635769],[-35.216268,-5.630569],[-35.219468,-5.629869],[-35.222868,-5.627669],[-35.224968,-5.623569],[-35.225668,-5.619769],[-35.226468,-5.616169],[-35.227068,-5.613269],[-35.227068,-5.609669],[-35.226668,-5.605969],[-35.225568,-5.602069],[-35.224968,-5.598169],[-35.224868,-5.594269],[-35.226368,-5.589769],[-35.226768,-5.585469],[-35.226368,-5.580769],[-35.228368,-5.575669],[-35.231368,-5.574969],[-35.233868,-5.573569],[-35.236168,-5.571269],[-35.237468,-5.567469],[-35.238668,-5.563269],[-35.241968,-5.559969],[-35.244068,-5.557169],[-35.246168,-5.551969],[-35.248068,-5.546769],[-35.248868,-5.543669],[-35.249368,-5.540269],[-35.249368,-5.535969],[-35.248568,-5.531769],[-35.248768,-5.528369],[-35.249968,-5.524269],[-35.250968,-5.521069],[-35.250768,-5.518169],[-35.255168,-5.517469],[-35.257068,-5.515369],[-35.258768,-5.512069],[-35.259668,-5.508769],[-35.259968,-5.503369],[-35.259868,-5.498369],[-35.258868,-5.493669],[-35.260268,-5.488569],[-35.259868,-5.482869],[-35.262368,-5.481369],[-35.265068,-5.482469],[-35.268468,-5.480669],[-35.272368,-5.478669],[-35.274868,-5.475069],[-35.276268,-5.472369],[-35.278468,-5.470269],[-35.280168,-5.467569],[-35.282668,-5.464469],[-35.286668,-5.461469],[-35.289268,-5.456469],[-35.289968,-5.451769],[-35.290568,-5.447369],[-35.290868,-5.443469],[-35.291668,-5.438769],[-35.292468,-5.435769],[-35.293068,-5.432169],[-35.292868,-5.427469],[-35.296768,-5.426169],[-35.299668,-5.423569],[-35.301068,-5.419969],[-35.302468,-5.417269],[-35.306368,-5.415869],[-35.309068,-5.412469],[-35.310268,-5.409769],[-35.310568,-5.406569],[-35.310468,-5.402269],[-35.310168,-5.398269],[-35.309768,-5.394769],[-35.309868,-5.391269],[-35.312668,-5.387469],[-35.314668,-5.385169],[-35.317468,-5.381269],[-35.321268,-5.377769],[-35.325468,-5.380769],[-35.329668,-5.380969],[-35.334868,-5.379469],[-35.339268,-5.376569],[-35.341968,-5.374169],[-35.344768,-5.371169],[-35.348168,-5.366869],[-35.350668,-5.362869],[-35.352068,-5.360269],[-35.354568,-5.355269],[-35.356068,-5.351469],[-35.357268,-5.347569],[-35.358368,-5.343969],[-35.359468,-5.339569],[-35.359668,-5.335869],[-35.359668,-5.331469],[-35.360768,-5.325669],[-35.361468,-5.319969],[-35.363568,-5.315469],[-35.364368,-5.311969],[-35.364668,-5.308369],[-35.365768,-5.304669],[-35.367168,-5.301569],[-35.367268,-5.297769],[-35.368368,-5.292169],[-35.370068,-5.288069],[-35.370768,-5.284869],[-35.372468,-5.281769],[-35.374768,-5.279069],[-35.377468,-5.276269],[-35.380568,-5.272669],[-35.383768,-5.269769],[-35.384068,-5.266069],[-35.385468,-5.263469],[-35.386768,-5.260669],[-35.388968,-5.256869],[-35.391268,-5.252769],[-35.393668,-5.249369],[-35.396768,-5.245269],[-35.400468,-5.242669],[-35.403068,-5.239669],[-35.404868,-5.236669],[-35.406968,-5.233869],[-35.409468,-5.231369],[-35.412068,-5.227469],[-35.414568,-5.224269],[-35.418168,-5.220569],[-35.423068,-5.218369],[-35.427468,-5.216669],[-35.430168,-5.215369],[-35.434068,-5.213269],[-35.436968,-5.211469],[-35.439168,-5.209569],[-35.442668,-5.207569],[-35.445468,-5.205369],[-35.448168,-5.203769],[-35.451068,-5.201469],[-35.454268,-5.198969],[-35.458268,-5.197369],[-35.460768,-5.194169],[-35.462968,-5.189169],[-35.464368,-5.186069],[-35.465668,-5.183269],[-35.467268,-5.180069],[-35.470568,-5.176069],[-35.474168,-5.171969],[-35.477468,-5.168069],[-35.480368,-5.164169],[-35.484168,-5.160969],[-35.486968,-5.158869],[-35.490068,-5.157269],[-35.493368,-5.157069],[-35.497768,-5.155569],[-35.502668,-5.153769],[-35.506668,-5.154169],[-35.511568,-5.152669],[-35.515768,-5.150969],[-35.520368,-5.149469],[-35.524368,-5.147569],[-35.528368,-5.145369],[-35.531268,-5.144369],[-35.534468,-5.142869],[-35.539168,-5.141469],[-35.543868,-5.140669],[-35.548368,-5.138569],[-35.551968,-5.138169],[-35.555768,-5.137669],[-35.559668,-5.137169],[-35.563768,-5.136369],[-35.567368,-5.134969],[-35.571068,-5.134269],[-35.573768,-5.132669],[-35.577168,-5.130269],[-35.581568,-5.128469],[-35.586468,-5.127969],[-35.589868,-5.126669],[-35.593968,-5.124369],[-35.598068,-5.122969],[-35.603168,-5.121269],[-35.607568,-5.119769],[-35.610768,-5.118369],[-35.613368,-5.116669],[-35.616868,-5.114969],[-35.621868,-5.118369],[-35.626668,-5.119069],[-35.631268,-5.120269],[-35.634968,-5.120069],[-35.639368,-5.119369],[-35.643668,-5.118069],[-35.649368,-5.116369],[-35.654268,-5.114969],[-35.657368,-5.113669],[-35.661668,-5.112469],[-35.664568,-5.111069],[-35.668668,-5.110669],[-35.673968,-5.109769],[-35.678668,-5.108569],[-35.681968,-5.107469],[-35.686768,-5.105769],[-35.691268,-5.104169],[-35.694368,-5.102769],[-35.698268,-5.101969],[-35.702068,-5.104169],[-35.706168,-5.103869],[-35.710168,-5.102869],[-35.713468,-5.100969],[-35.717568,-5.097869],[-35.722268,-5.096969],[-35.725668,-5.097269],[-35.730268,-5.096169],[-35.734668,-5.093369],[-35.738068,-5.093169],[-35.741168,-5.092669],[-35.744768,-5.091569],[-35.748368,-5.089769],[-35.752368,-5.089469],[-35.756068,-5.089269],[-35.759568,-5.088169],[-35.763468,-5.085969],[-35.766768,-5.083969],[-35.769668,-5.082069],[-35.773168,-5.081169],[-35.776468,-5.079969],[-35.780068,-5.077169],[-35.783168,-5.075769],[-35.786468,-5.075269],[-35.790568,-5.077169],[-35.794668,-5.077469],[-35.798968,-5.075669],[-35.802468,-5.073469],[-35.805768,-5.073169],[-35.809168,-5.073269],[-35.812768,-5.073869],[-35.818068,-5.073869],[-35.822168,-5.074269],[-35.825968,-5.074869],[-35.830368,-5.074969],[-35.834368,-5.074269],[-35.838168,-5.073169],[-35.841968,-5.072369],[-35.844868,-5.071369],[-35.847868,-5.070269],[-35.851668,-5.069269],[-35.854668,-5.068769],[-35.858968,-5.067669],[-35.864668,-5.068069],[-35.868568,-5.068769],[-35.871668,-5.068469],[-35.875468,-5.068169],[-35.879068,-5.067969],[-35.882368,-5.067369],[-35.885768,-5.066569],[-35.889268,-5.065769],[-35.892668,-5.064669],[-35.896168,-5.063569],[-35.899768,-5.062469],[-35.904468,-5.060769],[-35.909168,-5.059369],[-35.912768,-5.058769],[-35.915668,-5.057969],[-35.919268,-5.056669],[-35.923868,-5.054969],[-35.928568,-5.052969],[-35.931868,-5.051569],[-35.935468,-5.050469],[-35.939068,-5.049169],[-35.942368,-5.047569],[-35.945268,-5.046069],[-35.949568,-5.044169],[-35.953268,-5.044169],[-35.956568,-5.043869],[-35.959368,-5.043069],[-35.962568,-5.043569],[-35.965668,-5.043869],[-35.970368,-5.042769],[-35.973468,-5.043069],[-35.977468,-5.041769],[-35.981768,-5.043569],[-35.986368,-5.045869],[-35.990268,-5.046069],[-35.993368,-5.046069],[-35.996368,-5.045569],[-35.999368,-5.044969],[-36.003468,-5.045369],[-36.007368,-5.046369],[-36.010368,-5.048069],[-36.014268,-5.049469],[-36.017168,-5.049669],[-36.020368,-5.050069],[-36.023368,-5.050469],[-36.027268,-5.050769],[-36.030668,-5.051069],[-36.034768,-5.051369],[-36.038668,-5.052169],[-36.040068,-5.055869],[-36.042868,-5.057269],[-36.045368,-5.059069],[-36.049268,-5.060769],[-36.053368,-5.062369],[-36.056668,-5.063269],[-36.060868,-5.064069],[-36.066068,-5.064669],[-36.071268,-5.064869],[-36.076068,-5.065269],[-36.082168,-5.067469],[-36.085468,-5.069369],[-36.088668,-5.070669],[-36.091768,-5.072469],[-36.094768,-5.074869],[-36.098468,-5.076869],[-36.102068,-5.078769],[-36.104668,-5.080169],[-36.108968,-5.082569],[-36.113068,-5.085769],[-36.116868,-5.087269],[-36.120068,-5.088669],[-36.122668,-5.090069],[-36.125468,-5.091469],[-36.128568,-5.092269],[-36.131768,-5.092869],[-36.136268,-5.093669],[-36.140768,-5.094469],[-36.144668,-5.094869],[-36.148168,-5.095369],[-36.151168,-5.095569],[-36.155368,-5.095969],[-36.159768,-5.096369],[-36.163068,-5.096469],[-36.168068,-5.096369],[-36.172768,-5.095969],[-36.175868,-5.095969],[-36.180268,-5.095869],[-36.185768,-5.095569],[-36.190768,-5.095369],[-36.194668,-5.095369],[-36.198168,-5.095069],[-36.201768,-5.094869],[-36.205068,-5.095169],[-36.211168,-5.095569],[-36.215368,-5.095669],[-36.218368,-5.095869],[-36.222268,-5.095669],[-36.225968,-5.095569],[-36.229268,-5.095269],[-36.233068,-5.094869],[-36.236668,-5.094569],[-36.240368,-5.095269],[-36.245468,-5.095869],[-36.249468,-5.095569],[-36.252468,-5.094869],[-36.257768,-5.093969],[-36.262368,-5.092669],[-36.267368,-5.090969],[-36.271868,-5.089569],[-36.276168,-5.089469],[-36.280568,-5.090569],[-36.284768,-5.089469],[-36.289268,-5.088169],[-36.293568,-5.090869],[-36.304068,-5.099269],[-36.308568,-5.103069],[-36.311868,-5.099769],[-36.314968,-5.097369],[-36.317968,-5.095269],[-36.323568,-5.091969],[-36.326268,-5.090169],[-36.330768,-5.087369],[-36.335868,-5.086569],[-36.341268,-5.085369],[-36.345168,-5.086469],[-36.351368,-5.086769],[-36.355868,-5.086469],[-36.360268,-5.086469],[-36.363568,-5.086769],[-36.366968,-5.087869],[-36.372668,-5.088769],[-36.375868,-5.087669],[-36.379868,-5.087269],[-36.383768,-5.087569],[-36.387168,-5.087069],[-36.390668,-5.085969],[-36.394268,-5.084669],[-36.398668,-5.083169],[-36.402668,-5.081469],[-36.406668,-5.080669],[-36.411468,-5.079369],[-36.416668,-5.077869],[-36.421968,-5.076069],[-36.425068,-5.074969],[-36.428668,-5.073469],[-36.434168,-5.071369],[-36.438368,-5.069969],[-36.442068,-5.068769],[-36.446368,-5.067369],[-36.449368,-5.066569],[-36.453268,-5.066069],[-36.457368,-5.066269],[-36.460368,-5.068569],[-36.463668,-5.068869],[-36.466668,-5.068769],[-36.470368,-5.068769],[-36.474268,-5.069269],[-36.477068,-5.068469],[-36.481868,-5.066869],[-36.485868,-5.065469],[-36.489968,-5.064169],[-36.495168,-5.062969],[-36.499468,-5.062369],[-36.502968,-5.061869],[-36.508068,-5.062669],[-36.511768,-5.064669],[-36.516868,-5.067469],[-36.519768,-5.067369],[-36.523768,-5.067369],[-36.528668,-5.068269],[-36.532768,-5.070169],[-36.536468,-5.073869],[-36.540568,-5.076369],[-36.542568,-5.079969],[-36.544168,-5.088669],[-36.548868,-5.088369],[-36.552768,-5.087869],[-36.556868,-5.087369],[-36.561268,-5.087069],[-36.564168,-5.086769],[-36.567068,-5.086469],[-36.570968,-5.086169],[-36.574668,-5.085769],[-36.578168,-5.086569],[-36.580668,-5.088169],[-36.584268,-5.085369],[-36.587868,-5.083669],[-36.590868,-5.082669],[-36.594468,-5.081269],[-36.598968,-5.079669],[-36.603468,-5.078969],[-36.607168,-5.078569],[-36.610568,-5.078569],[-36.612168,-5.081869],[-36.609668,-5.088969],[-36.610568,-5.092369],[-36.614168,-5.094169],[-36.617568,-5.093969],[-36.620868,-5.093369],[-36.623768,-5.092369],[-36.627168,-5.091569],[-36.630468,-5.090869],[-36.634368,-5.090069],[-36.638268,-5.089569],[-36.641268,-5.089269],[-36.644568,-5.088769],[-36.648968,-5.087869],[-36.654468,-5.087869],[-36.657668,-5.087569],[-36.660868,-5.086969],[-36.663868,-5.086569],[-36.667568,-5.087269],[-36.672168,-5.086769],[-36.676868,-5.085069],[-36.682168,-5.084769],[-36.686968,-5.087269],[-36.694368,-5.086569],[-36.701468,-5.084769],[-36.716268,-5.081769],[-36.729268,-5.075969],[-36.731368,-5.071869],[-36.734168,-5.068069],[-36.736468,-5.065469],[-36.738968,-5.063869],[-36.741868,-5.062769],[-36.745768,-5.061569],[-36.749668,-5.059969],[-36.752668,-5.058669],[-36.755568,-5.056969],[-36.758568,-5.054969],[-36.762468,-5.052469],[-36.766068,-5.049969],[-36.770068,-5.049669],[-36.774768,-5.051169],[-36.777268,-5.046169],[-36.781768,-5.045269],[-36.785868,-5.044969],[-36.788668,-5.043869],[-36.791368,-5.042469],[-36.794668,-5.040369],[-36.796968,-5.038669],[-36.799968,-5.036469],[-36.803668,-5.033169],[-36.806968,-5.030169],[-36.810168,-5.027669],[-36.812468,-5.025469],[-36.814968,-5.022969],[-36.817368,-5.020469],[-36.819568,-5.017469],[-36.822068,-5.014069],[-36.824868,-5.010969],[-36.828768,-5.007069],[-36.831768,-5.003469],[-36.834568,-4.999769],[-36.837268,-4.996369],[-36.839768,-4.992969],[-36.842668,-4.989769],[-36.845668,-4.986369],[-36.848968,-4.981769],[-36.851668,-4.977869],[-36.854268,-4.973469],[-36.857768,-4.969469],[-36.860368,-4.966569],[-36.862468,-4.964069],[-36.865068,-4.960969],[-36.866968,-4.958269],[-36.870468,-4.957169],[-36.875168,-4.954269],[-36.878468,-4.950969],[-36.882968,-4.949869],[-36.885768,-4.951069],[-36.889368,-4.952169],[-36.895368,-4.952069],[-36.899568,-4.951469],[-36.902568,-4.951469],[-36.906668,-4.950669],[-36.910068,-4.949869],[-36.914468,-4.948169],[-36.920068,-4.945769],[-36.925268,-4.943169],[-36.933868,-4.937769],[-36.942368,-4.931869],[-36.948268,-4.927169],[-36.953768,-4.922869],[-36.956168,-4.921369],[-36.958968,-4.919169],[-36.962268,-4.918869],[-36.965068,-4.921369],[-36.967668,-4.925069],[-36.970668,-4.927469],[-36.974568,-4.929969],[-36.977868,-4.931169],[-36.982168,-4.931869],[-36.986368,-4.931569],[-36.989168,-4.930869],[-36.992668,-4.930169],[-36.995468,-4.929469],[-37.000168,-4.928569],[-37.003568,-4.929969],[-37.005668,-4.933069],[-37.008768,-4.935869],[-37.013168,-4.937469],[-37.017868,-4.939869],[-37.022268,-4.941669],[-37.025768,-4.943869],[-37.028768,-4.946269],[-37.032568,-4.948269],[-37.035968,-4.949569],[-37.039768,-4.949969],[-37.043668,-4.949869],[-37.047268,-4.948869],[-37.051668,-4.947369],[-37.057268,-4.944869],[-37.061668,-4.942369],[-37.064668,-4.940569],[-37.068468,-4.938069],[-37.072368,-4.935469],[-37.074868,-4.933669],[-37.077468,-4.931869],[-37.079968,-4.930269],[-37.082968,-4.929069],[-37.086568,-4.928669],[-37.089868,-4.927469],[-37.092668,-4.926169],[-37.097068,-4.924269],[-37.100068,-4.923369],[-37.103468,-4.922469],[-37.107768,-4.922769],[-37.111468,-4.925069],[-37.115768,-4.926669],[-37.117468,-4.929669],[-37.120868,-4.932969],[-37.124468,-4.935169],[-37.129168,-4.936269],[-37.134168,-4.936069],[-37.137468,-4.935869],[-37.141768,-4.935769],[-37.144568,-4.937769],[-37.143968,-4.941569],[-37.139568,-4.944169],[-37.137468,-4.949569],[-37.141768,-4.949669],[-37.145168,-4.949869],[-37.149068,-4.949369],[-37.152568,-4.948269],[-37.155168,-4.947069],[-37.158068,-4.944869],[-37.160168,-4.941669],[-37.162868,-4.936969],[-37.165668,-4.933669],[-37.167568,-4.931569],[-37.169768,-4.928969],[-37.172768,-4.924969],[-37.174668,-4.922769],[-37.177468,-4.919969],[-37.180468,-4.917169],[-37.183568,-4.915569],[-37.186868,-4.913769],[-37.189568,-4.911969],[-37.192768,-4.909769],[-37.196268,-4.907269],[-37.200168,-4.904069],[-37.204068,-4.900669],[-37.206568,-4.898269],[-37.209868,-4.894869],[-37.213168,-4.891069],[-37.215068,-4.888569],[-37.216968,-4.886469],[-37.218768,-4.884069],[-37.221268,-4.881369],[-37.223468,-4.877669],[-37.225868,-4.874369],[-37.227568,-4.871669],[-37.229468,-4.868869],[-37.231368,-4.866369],[-37.233068,-4.863569],[-37.235268,-4.860269],[-37.237568,-4.856369],[-37.239168,-4.853869],[-37.240868,-4.850669],[-37.242568,-4.847769],[-37.244368,-4.844869],[-37.246868,-4.840969],[-37.249168,-4.836469],[-37.251068,-4.833269],[-37.253268,-4.831269],[-37.254868,-4.827869],[-37.257068,-4.823169],[-37.259168,-4.818769],[-37.262068,-4.811269],[-37.264668,-4.802969],[-37.266268,-4.798169],[-37.268168,-4.793469],[-37.269768,-4.789469],[-37.271268,-4.785669],[-37.272868,-4.780169],[-37.276168,-4.769069],[-37.278768,-4.759069],[-37.280368,-4.754369],[-37.281968,-4.750769],[-37.284768,-4.745769],[-37.286768,-4.742169],[-37.289468,-4.738369],[-37.293368,-4.732269],[-37.295868,-4.729269],[-37.299768,-4.725669],[-37.302568,-4.723369],[-37.308068,-4.718069],[-37.310768,-4.715469],[-37.315268,-4.710469],[-37.321268,-4.704569],[-37.325168,-4.700969],[-37.329068,-4.697669],[-37.333468,-4.694869],[-37.336568,-4.693169],[-37.340868,-4.691569],[-37.345868,-4.690469],[-37.349568,-4.691569],[-37.356068,-4.689469],[-37.361468,-4.686969],[-37.365068,-4.685469],[-37.367968,-4.684169],[-37.372368,-4.682169],[-37.375568,-4.681169],[-37.378768,-4.680769],[-37.383168,-4.679769],[-37.389568,-4.678569],[-37.398268,-4.676869],[-37.403468,-4.675869],[-37.407268,-4.675069],[-37.410668,-4.673969],[-37.414868,-4.672169],[-37.418868,-4.670269],[-37.422168,-4.668869],[-37.425068,-4.667069],[-37.430468,-4.664569],[-37.434368,-4.663369],[-37.440468,-4.661669],[-37.445468,-4.659569],[-37.450768,-4.656969],[-37.454868,-4.655169],[-37.458968,-4.653169],[-37.462668,-4.652069],[-37.467068,-4.651569],[-37.470968,-4.650769],[-37.475568,-4.648369],[-37.478668,-4.646069],[-37.485068,-4.639869],[-37.487468,-4.637369],[-37.489468,-4.634669],[-37.492168,-4.630969],[-37.495068,-4.628369],[-37.499868,-4.626869],[-37.504668,-4.627969],[-37.507668,-4.628769],[-37.511268,-4.631769],[-37.514368,-4.634869],[-37.517868,-4.637369],[-37.520068,-4.640069],[-37.523768,-4.642069],[-37.526868,-4.642569],[-37.530368,-4.642369],[-37.536268,-4.643169],[-37.540268,-4.645669],[-37.545868,-4.644069],[-37.552268,-4.643169],[-37.558568,-4.641569],[-37.562668,-4.639969],[-37.566068,-4.638169],[-37.572468,-4.634269],[-37.579668,-4.629869],[-37.582968,-4.628769],[-37.586168,-4.628269],[-37.589568,-4.626669],[-37.592368,-4.624969],[-37.595268,-4.622969],[-37.603068,-4.617269],[-37.607468,-4.613569],[-37.613268,-4.608569],[-37.615468,-4.606669],[-37.625268,-4.598369],[-37.631068,-4.593169],[-37.635768,-4.589069],[-37.639568,-4.585769],[-37.644668,-4.580669],[-37.648268,-4.577069],[-37.652568,-4.572969],[-37.655368,-4.569969],[-37.657568,-4.567469],[-37.660968,-4.563869],[-37.664468,-4.560469],[-37.667068,-4.557269],[-37.670268,-4.553969],[-37.672768,-4.550769],[-37.675068,-4.547869],[-37.678868,-4.543369],[-37.681868,-4.539769],[-37.685268,-4.535869],[-37.689468,-4.532369],[-37.693568,-4.530369],[-37.697968,-4.526469],[-37.700968,-4.524269],[-37.703468,-4.522369],[-37.705768,-4.520469],[-37.708468,-4.518569],[-37.712868,-4.515169],[-37.716468,-4.511569],[-37.720668,-4.506269],[-37.723868,-4.502069],[-37.726168,-4.498769],[-37.728368,-4.495169],[-37.732468,-4.488369],[-37.736068,-4.481069],[-37.740368,-4.472369],[-37.744668,-4.462969],[-37.746568,-4.457969],[-37.748768,-4.452369],[-37.751568,-4.443269],[-37.753068,-4.439869],[-37.754668,-4.436569],[-37.757068,-4.433369],[-37.759568,-4.430769],[-37.763168,-4.427569],[-37.767868,-4.426669],[-37.768268,-4.422569],[-37.766768,-4.418469],[-37.767068,-4.415369],[-37.768168,-4.411669],[-37.768268,-4.407569],[-37.769568,-4.402569],[-37.774368,-4.402069],[-37.779768,-4.401569],[-37.785068,-4.400369],[-37.789568,-4.397869],[-37.793068,-4.396469],[-37.796668,-4.395669],[-37.800068,-4.398769],[-37.805768,-4.398969],[-37.810868,-4.397969],[-37.815468,-4.395769],[-37.819368,-4.393569],[-37.822768,-4.391369],[-37.826568,-4.389069],[-37.830668,-4.387369],[-37.834068,-4.383869],[-37.838268,-4.380969],[-37.842868,-4.379169],[-37.845968,-4.381669],[-37.850568,-4.381269],[-37.854168,-4.379469],[-37.856368,-4.377369],[-37.862968,-4.372169],[-37.866168,-4.369969],[-37.868568,-4.368369],[-37.871868,-4.366169],[-37.874468,-4.364469],[-37.877768,-4.361869],[-37.880268,-4.359969],[-37.884268,-4.356769],[-37.888468,-4.353469],[-37.892568,-4.350269],[-37.895768,-4.347569],[-37.899368,-4.344769],[-37.902668,-4.342369],[-37.906568,-4.339769],[-37.910168,-4.336269],[-37.916168,-4.330369],[-37.919168,-4.327669],[-37.921468,-4.325669],[-37.924168,-4.323469],[-37.927468,-4.320269],[-37.929968,-4.317669],[-37.934068,-4.313469],[-37.936968,-4.310769],[-37.940168,-4.308369],[-37.944268,-4.304669],[-37.948268,-4.301369],[-37.950768,-4.299369],[-37.953968,-4.296669],[-37.957568,-4.293869],[-37.960068,-4.291769],[-37.963768,-4.288069],[-37.966168,-4.285569],[-37.969768,-4.281969],[-37.973768,-4.277569],[-37.976968,-4.274069],[-37.979968,-4.270669],[-37.982168,-4.268169],[-37.984368,-4.265669],[-37.986468,-4.262969],[-37.989668,-4.260669],[-37.994768,-4.258469],[-37.999368,-4.255169],[-38.003768,-4.253869],[-38.010168,-4.250269],[-38.012768,-4.247769],[-38.015168,-4.245069],[-38.017168,-4.242969],[-38.019368,-4.240769],[-38.022968,-4.236469],[-38.026468,-4.233369],[-38.028368,-4.230969],[-38.030368,-4.228469],[-38.033068,-4.225369],[-38.038068,-4.223069],[-38.042768,-4.219869],[-38.046368,-4.216169],[-38.048868,-4.213969],[-38.051168,-4.211169],[-38.054168,-4.207869],[-38.056868,-4.204569],[-38.061068,-4.199569],[-38.064068,-4.197069],[-38.066868,-4.195469],[-38.070768,-4.191869],[-38.073568,-4.188769],[-38.076068,-4.185469],[-38.079668,-4.181169],[-38.083468,-4.177569],[-38.086168,-4.175069],[-38.090168,-4.171369],[-38.092268,-4.169269],[-38.096468,-4.165369],[-38.100468,-4.161569],[-38.103468,-4.158469],[-38.105868,-4.156269],[-38.110268,-4.153369],[-38.114168,-4.149569],[-38.116868,-4.146769],[-38.120168,-4.142569],[-38.122168,-4.139869],[-38.129368,-4.130269],[-38.134368,-4.122969],[-38.139968,-4.113869],[-38.143968,-4.106669],[-38.145368,-4.103469],[-38.148668,-4.101769],[-38.148968,-4.098169],[-38.151268,-4.094869],[-38.154068,-4.092269],[-38.156268,-4.090169],[-38.158668,-4.087669],[-38.160268,-4.085169],[-38.162068,-4.082869],[-38.164468,-4.079569],[-38.167568,-4.075169],[-38.170068,-4.071369],[-38.171868,-4.068469],[-38.175268,-4.063769],[-38.180568,-4.057669],[-38.182568,-4.053069],[-38.184768,-4.050369],[-38.186968,-4.047269],[-38.188768,-4.044969],[-38.190568,-4.042269],[-38.194268,-4.039569],[-38.198468,-4.037769],[-38.200968,-4.035869],[-38.203968,-4.033069],[-38.207868,-4.028669],[-38.210868,-4.023769],[-38.213968,-4.019569],[-38.216768,-4.016069],[-38.219068,-4.012669],[-38.224568,-4.006369],[-38.226968,-4.002769],[-38.230068,-3.998869],[-38.232468,-3.995869],[-38.235268,-3.992469],[-38.237768,-3.989169],[-38.240768,-3.985669],[-38.242968,-3.983069],[-38.246168,-3.978569],[-38.249068,-3.974869],[-38.251368,-3.972069],[-38.256068,-3.966269],[-38.259968,-3.960669],[-38.262868,-3.957569],[-38.266868,-3.952869],[-38.268768,-3.950669],[-38.271168,-3.947169],[-38.274468,-3.943769],[-38.279168,-3.941369],[-38.284168,-3.941569],[-38.288668,-3.942069],[-38.292768,-3.941069],[-38.296668,-3.939169],[-38.301168,-3.936669],[-38.304768,-3.934969],[-38.308668,-3.932569],[-38.311568,-3.930769],[-38.314868,-3.928569],[-38.319968,-3.924969],[-38.322768,-3.922769],[-38.326068,-3.919969],[-38.328968,-3.917569],[-38.331068,-3.915669],[-38.334568,-3.912369],[-38.337068,-3.909769],[-38.339068,-3.907569],[-38.341968,-3.904769],[-38.345068,-3.901469],[-38.349168,-3.897169],[-38.351968,-3.894369],[-38.354968,-3.890769],[-38.357468,-3.887869],[-38.360268,-3.884869],[-38.369468,-3.872469],[-38.372768,-3.867669],[-38.376068,-3.862769],[-38.377768,-3.860069],[-38.382368,-3.853369],[-38.385668,-3.848169],[-38.388568,-3.843969],[-38.392368,-3.838169],[-38.393968,-3.835069],[-38.396168,-3.831769],[-38.399068,-3.826869],[-38.401768,-3.825369],[-38.401768,-3.821769],[-38.403368,-3.819269],[-38.406268,-3.815569],[-38.408668,-3.811569],[-38.414868,-3.802569],[-38.418068,-3.797869],[-38.420868,-3.793969],[-38.423968,-3.788369],[-38.427268,-3.782569],[-38.429668,-3.778769],[-38.433268,-3.772269],[-38.435468,-3.770369],[-38.436868,-3.767169],[-38.438368,-3.764569],[-38.440168,-3.761769],[-38.442668,-3.757469],[-38.443868,-3.754869],[-38.446068,-3.750269],[-38.447468,-3.747669],[-38.449868,-3.743269],[-38.452068,-3.738869],[-38.453568,-3.735369],[-38.455768,-3.731369],[-38.457568,-3.728069],[-38.458968,-3.724569],[-38.460868,-3.720169],[-38.462368,-3.715869],[-38.463268,-3.712969],[-38.463768,-3.709269],[-38.467568,-3.708169],[-38.470668,-3.706169],[-38.474568,-3.701769],[-38.473668,-3.705369],[-38.474568,-3.710769],[-38.477068,-3.716269],[-38.477568,-3.719769],[-38.481768,-3.721969],[-38.484668,-3.722369],[-38.487568,-3.722369],[-38.490268,-3.723669],[-38.494168,-3.724869],[-38.499068,-3.724469],[-38.503768,-3.721669],[-38.507668,-3.720969],[-38.512368,-3.718969],[-38.516568,-3.717069],[-38.520168,-3.717269],[-38.523968,-3.717869],[-38.526868,-3.719469],[-38.530568,-3.718669],[-38.534768,-3.717569],[-38.539868,-3.715569],[-38.541968,-3.712269],[-38.546068,-3.711569],[-38.549268,-3.709869],[-38.551868,-3.708169],[-38.554468,-3.706469],[-38.558668,-3.705169],[-38.564168,-3.703169],[-38.569568,-3.700969],[-38.574868,-3.698169],[-38.576768,-3.695169],[-38.580368,-3.693769],[-38.585468,-3.693069],[-38.587968,-3.696369],[-38.591168,-3.695169],[-38.594868,-3.694069],[-38.598468,-3.693169],[-38.603868,-3.691669],[-38.607868,-3.690969],[-38.612168,-3.688869],[-38.617768,-3.689669],[-38.622968,-3.689069],[-38.627068,-3.688069],[-38.629868,-3.687269],[-38.633768,-3.686069],[-38.637468,-3.686669],[-38.640968,-3.686869],[-38.645068,-3.685469],[-38.648968,-3.683869],[-38.652868,-3.681669],[-38.656268,-3.679669],[-38.660368,-3.676869],[-38.663068,-3.674969],[-38.665868,-3.673169],[-38.668968,-3.670769],[-38.673968,-3.666769],[-38.676668,-3.664469],[-38.680868,-3.659869],[-38.685168,-3.655569],[-38.689568,-3.651169],[-38.691568,-3.648169],[-38.696068,-3.643169],[-38.699068,-3.640369],[-38.701568,-3.638469],[-38.705668,-3.636069],[-38.708968,-3.633869],[-38.712568,-3.632669],[-38.715668,-3.631369],[-38.719468,-3.629169],[-38.724568,-3.625569],[-38.728368,-3.624469],[-38.731368,-3.623369],[-38.735268,-3.622369],[-38.738668,-3.620869],[-38.741968,-3.619369],[-38.746968,-3.617469],[-38.752368,-3.613869],[-38.755668,-3.611169],[-38.759868,-3.607869],[-38.762468,-3.605669],[-38.766068,-3.601969],[-38.770668,-3.596769],[-38.773168,-3.593469],[-38.776168,-3.589069],[-38.777868,-3.586269],[-38.780068,-3.583469],[-38.783468,-3.579869],[-38.786968,-3.576269],[-38.789468,-3.573469],[-38.791468,-3.570569],[-38.794268,-3.566969],[-38.798268,-3.561869],[-38.800768,-3.557669],[-38.803268,-3.554169],[-38.805768,-3.549669],[-38.808268,-3.546369],[-38.810168,-3.544169],[-38.813368,-3.543469],[-38.816568,-3.544669],[-38.820468,-3.546069],[-38.824868,-3.546469],[-38.828568,-3.546369],[-38.834268,-3.545669],[-38.838668,-3.545069],[-38.842668,-3.543969],[-38.847268,-3.542869],[-38.852068,-3.540669],[-38.854468,-3.538969],[-38.858168,-3.536369],[-38.860568,-3.534469],[-38.863268,-3.532269],[-38.866368,-3.529069],[-38.869368,-3.525469],[-38.871968,-3.523169],[-38.874468,-3.520969],[-38.877068,-3.518569],[-38.880668,-3.515069],[-38.886268,-3.510169],[-38.888568,-3.507769],[-38.891268,-3.506269],[-38.894668,-3.506069],[-38.898368,-3.505669],[-38.901568,-3.505269],[-38.906168,-3.505469],[-38.910568,-3.502969],[-38.913668,-3.499869],[-38.917068,-3.495269],[-38.921468,-3.487769],[-38.924468,-3.482169],[-38.926668,-3.476769],[-38.929468,-3.472569],[-38.932468,-3.464269],[-38.934368,-3.460069],[-38.935268,-3.456869],[-38.936968,-3.453169],[-38.938568,-3.450669],[-38.941668,-3.447869],[-38.944668,-3.445969],[-38.946668,-3.443569],[-38.949268,-3.440469],[-38.952168,-3.437769],[-38.954868,-3.434369],[-38.957368,-3.430869],[-38.959568,-3.427869],[-38.962568,-3.423969],[-38.965868,-3.420069],[-38.967868,-3.417869],[-38.970568,-3.415269],[-38.973768,-3.410969],[-38.976368,-3.409469],[-38.979268,-3.406969],[-38.982768,-3.404769],[-38.988068,-3.401869],[-38.991668,-3.399569],[-38.995068,-3.397869],[-38.998368,-3.397269],[-39.001568,-3.396869],[-39.005668,-3.396869],[-39.008868,-3.398369],[-39.012768,-3.400169],[-39.016068,-3.403369],[-39.020368,-3.404169],[-39.023468,-3.403669],[-39.027868,-3.404769],[-39.030868,-3.405969],[-39.032668,-3.408869],[-39.035368,-3.410969],[-39.040268,-3.411269],[-39.045668,-3.411969],[-39.052468,-3.411269],[-39.056968,-3.409169],[-39.062968,-3.408669],[-39.067668,-3.404769],[-39.071368,-3.402869],[-39.074268,-3.401269],[-39.078268,-3.397569],[-39.083668,-3.393269],[-39.085868,-3.390969],[-39.088768,-3.387469],[-39.091168,-3.384569],[-39.103168,-3.366169],[-39.107868,-3.357269],[-39.110368,-3.350869],[-39.113068,-3.346669],[-39.117268,-3.345369],[-39.121068,-3.344469],[-39.125168,-3.343969],[-39.128068,-3.343769],[-39.130968,-3.344869],[-39.135668,-3.345169],[-39.140768,-3.344869],[-39.144068,-3.343369],[-39.146868,-3.340969],[-39.150668,-3.337869],[-39.156268,-3.335369],[-39.159868,-3.331469],[-39.162768,-3.328269],[-39.165568,-3.325969],[-39.168068,-3.322069],[-39.169968,-3.319869],[-39.177468,-3.309169],[-39.185468,-3.295269],[-39.187668,-3.290669],[-39.189868,-3.287269],[-39.191968,-3.284169],[-39.194568,-3.282269],[-39.196268,-3.279869],[-39.198768,-3.275469],[-39.201868,-3.271869],[-39.205168,-3.267869],[-39.207568,-3.264969],[-39.209368,-3.261869],[-39.212868,-3.257969],[-39.219168,-3.250269],[-39.221668,-3.247169],[-39.224468,-3.244469],[-39.226968,-3.241469],[-39.229568,-3.239169],[-39.232868,-3.237569],[-39.237268,-3.235669],[-39.240868,-3.232869],[-39.244468,-3.229469],[-39.248768,-3.225269],[-39.251068,-3.222869],[-39.254368,-3.220869],[-39.257768,-3.219169],[-39.260668,-3.217969],[-39.263968,-3.217669],[-39.268768,-3.218369],[-39.272868,-3.219769],[-39.276468,-3.219769],[-39.279468,-3.218769],[-39.284468,-3.216969],[-39.287868,-3.215969],[-39.292568,-3.215069],[-39.296968,-3.212669],[-39.300468,-3.210069],[-39.305868,-3.206869],[-39.309068,-3.206869],[-39.312968,-3.205769],[-39.318268,-3.202469],[-39.322168,-3.200669],[-39.325168,-3.198469],[-39.330168,-3.195169],[-39.332868,-3.192669],[-39.335368,-3.189969],[-39.338468,-3.185569],[-39.340668,-3.181569],[-39.345268,-3.177769],[-39.349168,-3.176569],[-39.352068,-3.174769],[-39.356368,-3.173569],[-39.360268,-3.173169],[-39.364668,-3.173269],[-39.367968,-3.175269],[-39.371868,-3.178269],[-39.378468,-3.180269],[-39.378868,-3.183669],[-39.382468,-3.183069],[-39.385768,-3.180869],[-39.388168,-3.179069],[-39.391768,-3.178369],[-39.396868,-3.176669],[-39.399568,-3.174769],[-39.402268,-3.172269],[-39.404068,-3.170069],[-39.407568,-3.166669],[-39.409168,-3.164269],[-39.411768,-3.161169],[-39.419268,-3.155969],[-39.422168,-3.154569],[-39.426168,-3.154769],[-39.431968,-3.151469],[-39.435468,-3.149069],[-39.439068,-3.147669],[-39.442968,-3.146569],[-39.447168,-3.146469],[-39.451068,-3.145669],[-39.455168,-3.145669],[-39.458268,-3.144769],[-39.462868,-3.143469],[-39.469068,-3.139669],[-39.471968,-3.137969],[-39.474968,-3.134969],[-39.478568,-3.129969],[-39.481068,-3.126569],[-39.483268,-3.124369],[-39.486168,-3.119769],[-39.489368,-3.118269],[-39.493368,-3.116869],[-39.496868,-3.114769],[-39.499468,-3.113269],[-39.503068,-3.111369],[-39.508768,-3.109169],[-39.515168,-3.104969],[-39.521568,-3.102469],[-39.527368,-3.098069],[-39.530068,-3.094769],[-39.533068,-3.091169],[-39.537268,-3.088669],[-39.542468,-3.084669],[-39.545068,-3.082269],[-39.550768,-3.079269],[-39.553868,-3.078269],[-39.558368,-3.076069],[-39.562168,-3.075969],[-39.565968,-3.076069],[-39.569268,-3.074569],[-39.573468,-3.071669],[-39.578568,-3.072869],[-39.583268,-3.072469],[-39.586768,-3.071269],[-39.591268,-3.069569],[-39.594268,-3.067969],[-39.597068,-3.065269],[-39.600568,-3.060469],[-39.602768,-3.057269],[-39.606168,-3.051869],[-39.609768,-3.045369],[-39.611068,-3.042469],[-39.613668,-3.038469],[-39.614968,-3.034869],[-39.616168,-3.031269],[-39.617568,-3.028769],[-39.619668,-3.026269],[-39.623068,-3.024369],[-39.628568,-3.021869],[-39.633568,-3.020369],[-39.637468,-3.018969],[-39.641068,-3.018969],[-39.643768,-3.020669],[-39.645968,-3.023369],[-39.648768,-3.024269],[-39.652668,-3.024269],[-39.656768,-3.023169],[-39.659768,-3.021569],[-39.663168,-3.018469],[-39.665268,-3.016269],[-39.670268,-3.010269],[-39.672468,-3.007369],[-39.673968,-3.004669],[-39.676168,-3.001669],[-39.679668,-3.000769],[-39.683268,-2.999069],[-39.687668,-2.996569],[-39.691068,-2.996669],[-39.693868,-2.998269],[-39.696868,-2.999969],[-39.701268,-3.001069],[-39.705068,-3.001069],[-39.709268,-2.999869],[-39.713968,-2.998369],[-39.719768,-2.998269],[-39.722568,-2.995169],[-39.727268,-2.993069],[-39.732468,-2.990469],[-39.736168,-2.987269],[-39.740368,-2.983569],[-39.743668,-2.980569],[-39.746268,-2.978969],[-39.749468,-2.977269],[-39.752468,-2.974169],[-39.756268,-2.970569],[-39.758468,-2.968769],[-39.761068,-2.967069],[-39.765768,-2.963269],[-39.768768,-2.960869],[-39.772668,-2.958269],[-39.776168,-2.955969],[-39.780868,-2.953969],[-39.787068,-2.950969],[-39.790568,-2.950969],[-39.793868,-2.951869],[-39.798568,-2.945769],[-39.804168,-2.942969],[-39.809468,-2.939869],[-39.814368,-2.935869],[-39.818568,-2.934669],[-39.822668,-2.931669],[-39.825368,-2.929669],[-39.829568,-2.926569],[-39.831868,-2.924169],[-39.835368,-2.920869],[-39.837868,-2.918569],[-39.841668,-2.915069],[-39.844868,-2.912369],[-39.850368,-2.908069],[-39.853368,-2.905869],[-39.856968,-2.903369],[-39.861868,-2.899869],[-39.865068,-2.897969],[-39.868268,-2.896869],[-39.872468,-2.896169],[-39.876568,-2.893269],[-39.880968,-2.892469],[-39.885668,-2.889569],[-39.886768,-2.885969],[-39.888568,-2.883769],[-39.892168,-2.881269],[-39.896268,-2.878769],[-39.900468,-2.878069],[-39.899368,-2.882969],[-39.909868,-2.879569],[-39.913968,-2.878769],[-39.919268,-2.876669],[-39.922568,-2.875269],[-39.926468,-2.873369],[-39.930768,-2.871669],[-39.933868,-2.870769],[-39.936268,-2.868869],[-39.939068,-2.867669],[-39.942468,-2.866169],[-39.947168,-2.862869],[-39.950968,-2.860269],[-39.955168,-2.857869],[-39.957868,-2.856469],[-39.960768,-2.855369],[-39.965868,-2.851269],[-39.970868,-2.848369],[-39.979968,-2.844569],[-39.987468,-2.841969],[-39.990468,-2.841769],[-39.987868,-2.846269],[-39.992468,-2.844869],[-39.996968,-2.844469],[-40.000568,-2.844169],[-40.005568,-2.843669],[-40.009568,-2.843169],[-40.012468,-2.842569],[-40.019068,-2.840669],[-40.022868,-2.839569],[-40.026168,-2.838969],[-40.026568,-2.841969],[-40.032268,-2.840069],[-40.035368,-2.840869],[-40.038468,-2.841569],[-40.043968,-2.839369],[-40.048368,-2.837569],[-40.051168,-2.836469],[-40.054668,-2.835069],[-40.059168,-2.834369],[-40.062368,-2.836969],[-40.068168,-2.836269],[-40.072468,-2.836169],[-40.075968,-2.840069],[-40.078768,-2.837869],[-40.080768,-2.834569],[-40.085368,-2.831869],[-40.095868,-2.828269],[-40.100268,-2.827069],[-40.103368,-2.827169],[-40.109968,-2.826469],[-40.113268,-2.826369],[-40.117268,-2.827069],[-40.120268,-2.824869],[-40.126268,-2.823769],[-40.130268,-2.824869],[-40.135368,-2.826069],[-40.133568,-2.829269],[-40.136368,-2.830469],[-40.136568,-2.834369],[-40.139268,-2.837969],[-40.144868,-2.839769],[-40.147968,-2.838669],[-40.151168,-2.836869],[-40.156268,-2.834369],[-40.159868,-2.832569],[-40.163868,-2.828969],[-40.168568,-2.825969],[-40.171468,-2.823469],[-40.173868,-2.821669],[-40.176568,-2.819969],[-40.179968,-2.817769],[-40.182968,-2.814969],[-40.184868,-2.812169],[-40.188768,-2.812169],[-40.192068,-2.811969],[-40.195268,-2.811669],[-40.198268,-2.811569],[-40.201068,-2.810869],[-40.205068,-2.811669],[-40.208968,-2.811269],[-40.212368,-2.811369],[-40.216468,-2.810869],[-40.219868,-2.810769],[-40.223968,-2.810769],[-40.228068,-2.810869],[-40.232468,-2.811569],[-40.236368,-2.814069],[-40.241568,-2.814169],[-40.253268,-2.812369],[-40.256268,-2.811869],[-40.261368,-2.811169],[-40.264268,-2.810769],[-40.267868,-2.810169],[-40.271768,-2.809869],[-40.274768,-2.809469],[-40.278168,-2.809669],[-40.283768,-2.809069],[-40.288168,-2.809069],[-40.294268,-2.808269],[-40.297868,-2.807969],[-40.303368,-2.807969],[-40.306868,-2.807969],[-40.309768,-2.807669],[-40.313568,-2.807269],[-40.317968,-2.806969],[-40.321668,-2.806569],[-40.327068,-2.806069],[-40.332568,-2.805869],[-40.339568,-2.806069],[-40.344168,-2.806669],[-40.350068,-2.807969],[-40.353168,-2.808669],[-40.361168,-2.809969],[-40.365068,-2.810769],[-40.368068,-2.811669],[-40.370868,-2.812169],[-40.376868,-2.812669],[-40.385668,-2.813469],[-40.390668,-2.813769],[-40.400468,-2.813469],[-40.405068,-2.813269],[-40.408068,-2.813069],[-40.411168,-2.812969],[-40.420368,-2.811969],[-40.423968,-2.811069],[-40.428268,-2.811169],[-40.434668,-2.810269],[-40.438068,-2.809369],[-40.449068,-2.805769],[-40.454568,-2.804369],[-40.458268,-2.802269],[-40.462868,-2.800269],[-40.467668,-2.798569],[-40.470568,-2.797469],[-40.473468,-2.796169],[-40.476468,-2.794669],[-40.482468,-2.791969],[-40.488568,-2.788669],[-40.491668,-2.787069],[-40.496868,-2.784769],[-40.500868,-2.784769],[-40.504468,-2.786469],[-40.508068,-2.787069],[-40.512368,-2.788669],[-40.515768,-2.790369],[-40.520068,-2.792469],[-40.519268,-2.797169],[-40.520768,-2.800769],[-40.523668,-2.804469],[-40.525968,-2.807769],[-40.528968,-2.811569],[-40.530868,-2.814169],[-40.534268,-2.817369],[-40.537068,-2.819369],[-40.540968,-2.821369],[-40.546968,-2.823669],[-40.553568,-2.825669],[-40.557968,-2.827069],[-40.560768,-2.827669],[-40.563768,-2.827669],[-40.567168,-2.830769],[-40.570268,-2.832869],[-40.573768,-2.835069],[-40.577568,-2.836769],[-40.580468,-2.837869],[-40.588668,-2.839769],[-40.592568,-2.839269],[-40.595968,-2.839869],[-40.597868,-2.844069],[-40.592868,-2.845969],[-40.596268,-2.846969],[-40.600568,-2.848369],[-40.604568,-2.846269],[-40.608568,-2.842069],[-40.612168,-2.841269],[-40.618368,-2.844569],[-40.625168,-2.845969],[-40.628068,-2.845969],[-40.632468,-2.846969],[-40.637368,-2.847569],[-40.640768,-2.848869],[-40.644268,-2.849169],[-40.649868,-2.848969],[-40.655068,-2.848369],[-40.660868,-2.846369],[-40.665668,-2.844569],[-40.670268,-2.843669],[-40.675268,-2.844869],[-40.679968,-2.845669],[-40.684768,-2.846269],[-40.687468,-2.848469],[-40.690768,-2.851169],[-40.690468,-2.846969],[-40.694868,-2.846769],[-40.699568,-2.846969],[-40.702168,-2.848369],[-40.705668,-2.849269],[-40.709568,-2.849469],[-40.714468,-2.849269],[-40.718468,-2.848969],[-40.725968,-2.850269],[-40.729468,-2.850869],[-40.732868,-2.850969],[-40.736868,-2.850669],[-40.740568,-2.850369],[-40.746968,-2.849469],[-40.751668,-2.849469],[-40.756668,-2.848769],[-40.760968,-2.849169],[-40.765368,-2.850269],[-40.769868,-2.851169],[-40.774068,-2.853069],[-40.778168,-2.855569],[-40.781468,-2.858269],[-40.785168,-2.862169],[-40.790668,-2.866469],[-40.797268,-2.870069],[-40.802168,-2.872769],[-40.805768,-2.873869],[-40.810768,-2.875469],[-40.815268,-2.876569],[-40.821268,-2.877369],[-40.829868,-2.878369],[-40.834668,-2.878769],[-40.838168,-2.880169],[-40.841668,-2.882369],[-40.845068,-2.884869],[-40.847668,-2.880069],[-40.850568,-2.875469],[-40.852868,-2.873369],[-40.854168,-2.869369],[-40.857168,-2.864469],[-40.859668,-2.860269],[-40.863268,-2.857169],[-40.865768,-2.861469],[-40.870868,-2.861669],[-40.875468,-2.860369],[-40.879468,-2.860769],[-40.882668,-2.860669],[-40.885468,-2.861369],[-40.888568,-2.862269],[-40.892368,-2.862269],[-40.898468,-2.861869],[-40.902668,-2.860069],[-40.905868,-2.859769],[-40.906568,-2.864169],[-40.908368,-2.868669],[-40.912068,-2.871869],[-40.915268,-2.873069],[-40.919268,-2.874069],[-40.922468,-2.874369],[-40.925768,-2.874369],[-40.932168,-2.874069],[-40.937668,-2.874069],[-40.942768,-2.873269],[-40.946768,-2.872369],[-40.950468,-2.871669],[-40.955768,-2.872469],[-40.958968,-2.876869],[-40.962868,-2.880269],[-40.966168,-2.881669],[-40.969768,-2.882469],[-40.972868,-2.883169],[-40.975968,-2.883469],[-40.980568,-2.884369],[-40.987168,-2.884069],[-40.991968,-2.884169],[-40.995468,-2.884969],[-40.999868,-2.887069],[-41.001668,-2.889269],[-41.006068,-2.890669],[-41.010268,-2.891469],[-41.015968,-2.892169],[-41.022068,-2.891769],[-41.025068,-2.890969],[-41.029468,-2.891769],[-41.034568,-2.891469],[-41.038168,-2.892669],[-41.041468,-2.892969],[-41.046068,-2.894069],[-41.054168,-2.893969],[-41.059468,-2.894369],[-41.065268,-2.894869],[-41.068168,-2.895069],[-41.077868,-2.894569],[-41.083468,-2.894569],[-41.087668,-2.893969],[-41.091768,-2.892669],[-41.094868,-2.891069],[-41.098168,-2.890669],[-41.100968,-2.891769],[-41.105268,-2.890969],[-41.108168,-2.890769],[-41.106668,-2.894569],[-41.104168,-2.898669],[-41.108968,-2.897269],[-41.111368,-2.894769],[-41.112968,-2.891769],[-41.113668,-2.888269],[-41.116568,-2.885469],[-41.118268,-2.888169],[-41.121168,-2.890069],[-41.124168,-2.891869],[-41.128868,-2.892569],[-41.133168,-2.891869],[-41.137968,-2.892069],[-41.143568,-2.891569],[-41.147968,-2.891769],[-41.154268,-2.890769],[-41.159468,-2.889569],[-41.162768,-2.889369],[-41.165568,-2.888469],[-41.168868,-2.888269],[-41.174168,-2.886869],[-41.177468,-2.886469],[-41.181168,-2.886769],[-41.184068,-2.888969],[-41.187468,-2.890769],[-41.191868,-2.890369],[-41.196768,-2.889069],[-41.200168,-2.888169],[-41.204268,-2.890069],[-41.208668,-2.890369],[-41.216968,-2.889269],[-41.224868,-2.887869],[-41.232768,-2.889269],[-41.238068,-2.888969],[-41.243268,-2.888169],[-41.246268,-2.887469],[-41.251668,-2.886569],[-41.256368,-2.884869],[-41.259568,-2.883769],[-41.262968,-2.884069],[-41.265668,-2.884969],[-41.270368,-2.886769],[-41.273668,-2.889269],[-41.276468,-2.891769],[-41.279268,-2.894569],[-41.283968,-2.899269],[-41.287068,-2.901869],[-41.290268,-2.903769],[-41.293868,-2.906169],[-41.297468,-2.907869],[-41.300468,-2.909469],[-41.303868,-2.911369],[-41.309168,-2.913969],[-41.322768,-2.921369],[-41.329068,-2.923969],[-41.332868,-2.924969],[-41.336468,-2.925869],[-41.341268,-2.926869],[-41.346668,-2.923869],[-41.349468,-2.922869],[-41.356668,-2.921169],[-41.360368,-2.920369],[-41.363668,-2.918069],[-41.368368,-2.917769],[-41.373268,-2.917869],[-41.376668,-2.916169],[-41.380968,-2.914169],[-41.383768,-2.912769],[-41.386868,-2.910069],[-41.390368,-2.907669],[-41.393768,-2.906169],[-41.399068,-2.904469],[-41.403368,-2.906169],[-41.407268,-2.906569],[-41.411268,-2.908369],[-41.416468,-2.909569],[-41.420868,-2.909769],[-41.423968,-2.909469],[-41.427468,-2.908869],[-41.431568,-2.907569],[-41.435568,-2.906169],[-41.438868,-2.906169],[-41.441568,-2.907269],[-41.447368,-2.906169],[-41.451768,-2.903369],[-41.455368,-2.900969],[-41.466168,-2.900069],[-41.471168,-2.899069],[-41.474768,-2.897369],[-41.478968,-2.895969],[-41.482868,-2.897869],[-41.486968,-2.898669],[-41.491168,-2.899569],[-41.494768,-2.901169],[-41.498268,-2.904169],[-41.501568,-2.905969],[-41.504068,-2.907369],[-41.507368,-2.910269],[-41.511068,-2.911669],[-41.515768,-2.911669],[-41.519068,-2.911169],[-41.522868,-2.910969],[-41.527368,-2.910969],[-41.530168,-2.910369],[-41.533368,-2.909569],[-41.536268,-2.908369],[-41.539968,-2.906269],[-41.543668,-2.904169],[-41.547468,-2.902269],[-41.552168,-2.900369],[-41.555068,-2.898969],[-41.558268,-2.897669],[-41.560568,-2.900669],[-41.564168,-2.901569],[-41.567368,-2.902669],[-41.571568,-2.902669],[-41.575268,-2.905069],[-41.578968,-2.906469],[-41.583668,-2.906469],[-41.586868,-2.905969],[-41.590068,-2.905369],[-41.593368,-2.904469],[-41.597868,-2.902569],[-41.602768,-2.900469],[-41.606168,-2.899069],[-41.612468,-2.896469],[-41.616168,-2.894069],[-41.619068,-2.892469],[-41.622668,-2.890669],[-41.625568,-2.888569],[-41.628768,-2.886769],[-41.632768,-2.883769],[-41.635768,-2.881069],[-41.638468,-2.878469],[-41.641468,-2.875469],[-41.643968,-2.872769],[-41.648168,-2.867969],[-41.649768,-2.863669],[-41.652268,-2.861069],[-41.655168,-2.860069],[-41.659768,-2.858569],[-41.665568,-2.856669],[-41.669968,-2.854569],[-41.674368,-2.851769],[-41.677168,-2.850069],[-41.680768,-2.847569],[-41.683668,-2.845069],[-41.688268,-2.841169],[-41.691868,-2.838169],[-41.694668,-2.835769],[-41.698468,-2.832369],[-41.701768,-2.829569],[-41.704568,-2.826769],[-41.706768,-2.824569],[-41.709568,-2.821869],[-41.714468,-2.817469],[-41.719468,-2.812669],[-41.723768,-2.808769],[-41.727068,-2.805269],[-41.730068,-2.803669],[-41.731468,-2.807169],[-41.733968,-2.808569],[-41.737568,-2.808369],[-41.740768,-2.807469],[-41.743368,-2.806069],[-41.746368,-2.804169],[-41.749068,-2.802269],[-41.751368,-2.800569],[-41.755168,-2.796969],[-41.758468,-2.793969],[-41.760768,-2.791769],[-41.763468,-2.789169],[-41.765668,-2.786469],[-41.768268,-2.783369],[-41.770668,-2.780169],[-41.772568,-2.776969],[-41.773968,-2.774269],[-41.775768,-2.771469],[-41.777568,-2.767869],[-41.779268,-2.764069],[-41.780668,-2.760769],[-41.783368,-2.757069],[-41.787068,-2.754869],[-41.790668,-2.752669],[-41.793868,-2.750169],[-41.797468,-2.749769],[-41.801868,-2.750169],[-41.805068,-2.751269],[-41.808368,-2.753369],[-41.811868,-2.756369],[-41.815168,-2.758569],[-41.817968,-2.759669],[-41.820968,-2.760769],[-41.825968,-2.757369],[-41.829568,-2.753769],[-41.826768,-2.750169],[-41.824968,-2.747369],[-41.822068,-2.744969],[-41.817768,-2.741669],[-41.814168,-2.739469],[-41.810468,-2.737969],[-41.807768,-2.736869],[-41.804468,-2.735669],[-41.804368,-2.732269],[-41.807268,-2.730069],[-41.811868,-2.728369],[-41.817368,-2.726969],[-41.822368,-2.725969],[-41.827568,-2.725369],[-41.830468,-2.724869],[-41.833668,-2.724169],[-41.838368,-2.723669],[-41.842368,-2.723469],[-41.845968,-2.723069],[-41.850568,-2.722369],[-41.855568,-2.721969],[-41.858868,-2.721469],[-41.861768,-2.721669],[-41.865268,-2.721669],[-41.869468,-2.721169],[-41.874068,-2.720869],[-41.879068,-2.720269],[-41.882068,-2.720269],[-41.885268,-2.720069],[-41.889068,-2.719769],[-41.892068,-2.719769],[-41.895668,-2.719569],[-41.900068,-2.719469],[-41.905068,-2.719269],[-41.910668,-2.718769],[-41.915568,-2.718969],[-41.918868,-2.719069],[-41.922568,-2.718969],[-41.926568,-2.719069],[-41.931168,-2.718669],[-41.936568,-2.718469],[-41.941268,-2.718669],[-41.945568,-2.718769],[-41.949968,-2.718769],[-41.953568,-2.718669],[-41.959068,-2.718669],[-41.963968,-2.718969],[-41.967068,-2.719169],[-41.970268,-2.719469],[-41.973168,-2.720569],[-41.976668,-2.722269],[-41.982468,-2.723069],[-41.987268,-2.722769],[-41.990368,-2.721969],[-41.994668,-2.720869],[-41.998068,-2.719769],[-42.002068,-2.717369],[-42.007468,-2.714569],[-42.012668,-2.712869],[-42.016868,-2.712869],[-42.019368,-2.715169],[-42.020068,-2.719569],[-42.019568,-2.723069],[-42.018268,-2.725669],[-42.016568,-2.728369],[-42.016068,-2.732469],[-42.016468,-2.736469],[-42.031568,-2.739069],[-42.034468,-2.737169],[-42.037268,-2.734769],[-42.039968,-2.732169],[-42.042468,-2.730069],[-42.044268,-2.727469],[-42.046068,-2.723469],[-42.047868,-2.719769],[-42.049968,-2.716169],[-42.051968,-2.712869],[-42.054168,-2.709269],[-42.055268,-2.705669],[-42.055868,-2.700769],[-42.057768,-2.697869],[-42.060768,-2.695269],[-42.063068,-2.692769],[-42.066268,-2.689869],[-42.069168,-2.687669],[-42.072868,-2.687669],[-42.077568,-2.688869],[-42.081868,-2.690569],[-42.086968,-2.691869],[-42.092368,-2.692969],[-42.095668,-2.693469],[-42.099568,-2.693469],[-42.104268,-2.694069],[-42.108068,-2.694569],[-42.111068,-2.694869],[-42.115268,-2.694869],[-42.118668,-2.694969],[-42.122268,-2.694869],[-42.125468,-2.694669],[-42.128768,-2.695169],[-42.132068,-2.694869],[-42.135468,-2.694869],[-42.139668,-2.694269],[-42.142968,-2.694269],[-42.146468,-2.693769],[-42.150368,-2.693469],[-42.154268,-2.693069],[-42.159268,-2.692669],[-42.162268,-2.692169],[-42.165668,-2.691869],[-42.168868,-2.691369],[-42.171868,-2.691269],[-42.174968,-2.690769],[-42.177968,-2.690269],[-42.181668,-2.689469],[-42.186368,-2.688869],[-42.189568,-2.688469],[-42.193868,-2.687769],[-42.197768,-2.687969],[-42.200968,-2.687769],[-42.204368,-2.687469],[-42.208268,-2.687369],[-42.211768,-2.686969],[-42.215668,-2.687669],[-42.218668,-2.688869],[-42.221168,-2.691869],[-42.229468,-2.696369],[-42.231668,-2.694169],[-42.233268,-2.691369],[-42.235268,-2.688769],[-42.237468,-2.685769],[-42.239968,-2.683369],[-42.243668,-2.680569],[-42.247768,-2.678669],[-42.250968,-2.677269],[-42.254168,-2.676069],[-42.257168,-2.676069],[-42.257068,-2.678969],[-42.255568,-2.682669],[-42.257068,-2.685769],[-42.259868,-2.689369],[-42.259568,-2.692969],[-42.258568,-2.702069],[-42.259168,-2.704869],[-42.259868,-2.708469],[-42.260168,-2.713669],[-42.260468,-2.717669],[-42.261068,-2.721669],[-42.262368,-2.725569],[-42.262368,-2.728869],[-42.260468,-2.732569],[-42.256268,-2.735769],[-42.252668,-2.738069],[-42.264868,-2.757069],[-42.269368,-2.755269],[-42.272968,-2.753869],[-42.276168,-2.753069],[-42.280168,-2.752769],[-42.283968,-2.753069],[-42.286768,-2.754069],[-42.292468,-2.753869],[-42.295368,-2.754169],[-42.299368,-2.754369],[-42.303568,-2.754369],[-42.307668,-2.754169],[-42.310768,-2.754069],[-42.314168,-2.753569],[-42.318068,-2.753069],[-42.322368,-2.752369],[-42.326768,-2.751569],[-42.331468,-2.750569],[-42.336468,-2.749469],[-42.339268,-2.748769],[-42.341968,-2.747669],[-42.345668,-2.745269],[-42.349168,-2.742469],[-42.352068,-2.739969],[-42.354168,-2.736869],[-42.357468,-2.733669],[-42.361368,-2.729269],[-42.362568,-2.724469],[-42.363668,-2.718969],[-42.364668,-2.715469],[-42.369368,-2.714069],[-42.374468,-2.715069],[-42.378768,-2.715469],[-42.382668,-2.715369],[-42.386068,-2.714769],[-42.389268,-2.713969],[-42.392168,-2.712369],[-42.395668,-2.711569],[-42.400368,-2.712669],[-42.404568,-2.713469],[-42.408468,-2.713969],[-42.413168,-2.714069],[-42.417768,-2.714069],[-42.421468,-2.713969],[-42.425468,-2.713169],[-42.430568,-2.712569],[-42.434868,-2.711769],[-42.438768,-2.711169],[-42.441868,-2.710669],[-42.446368,-2.709769],[-42.450168,-2.708969],[-42.454368,-2.707869],[-42.458668,-2.706769],[-42.461768,-2.705969],[-42.465168,-2.704869],[-42.468968,-2.703169],[-42.472068,-2.701769],[-42.475968,-2.699669],[-42.481468,-2.699569],[-42.485668,-2.700369],[-42.487168,-2.703269],[-42.489968,-2.703769],[-42.494068,-2.703569],[-42.495768,-2.700669],[-42.496868,-2.697869],[-42.497668,-2.692669],[-42.498268,-2.687669],[-42.499368,-2.684069],[-42.501268,-2.680269],[-42.504068,-2.678569],[-42.507668,-2.678569],[-42.510668,-2.679369],[-42.513968,-2.680169],[-42.518468,-2.680869],[-42.523668,-2.681169],[-42.527968,-2.681369],[-42.531968,-2.681369],[-42.535868,-2.681169],[-42.538868,-2.680769],[-42.543068,-2.680469],[-42.546868,-2.679969],[-42.550068,-2.679469],[-42.554368,-2.678669],[-42.558268,-2.678669],[-42.561968,-2.678569],[-42.568268,-2.676669],[-42.573468,-2.675069],[-42.577968,-2.673369],[-42.582868,-2.671069],[-42.587268,-2.668969],[-42.590368,-2.666469],[-42.593768,-2.663769],[-42.598068,-2.661269],[-42.603168,-2.657869],[-42.606668,-2.655469],[-42.610268,-2.652869],[-42.612568,-2.650869],[-42.616868,-2.647869],[-42.620868,-2.645069],[-42.624368,-2.641769],[-42.627468,-2.638569],[-42.630968,-2.635269],[-42.634668,-2.631769],[-42.639268,-2.627669],[-42.641568,-2.625569],[-42.643768,-2.623269],[-42.647068,-2.620269],[-42.650368,-2.617269],[-42.653668,-2.614369],[-42.657568,-2.610769],[-42.660068,-2.608269],[-42.661968,-2.606169],[-42.664468,-2.603569],[-42.667868,-2.599969],[-42.671368,-2.596669],[-42.674668,-2.593469],[-42.678268,-2.590069],[-42.680468,-2.587969],[-42.682668,-2.585869],[-42.685168,-2.583969],[-42.687968,-2.581469],[-42.690468,-2.579069],[-42.693268,-2.576469],[-42.696368,-2.573569],[-42.699568,-2.571069],[-42.702068,-2.568869],[-42.704368,-2.567169],[-42.708468,-2.564169],[-42.711568,-2.562169],[-42.714068,-2.560569],[-42.717668,-2.558569],[-42.721368,-2.556669],[-42.726468,-2.554769],[-42.730268,-2.554069],[-42.733568,-2.553569],[-42.737468,-2.554369],[-42.740068,-2.555869],[-42.742168,-2.558269],[-42.745568,-2.559869],[-42.749368,-2.560169],[-42.751668,-2.556869],[-42.754868,-2.553869],[-42.757768,-2.550269],[-42.760668,-2.546969],[-42.763868,-2.545369],[-42.768568,-2.546369],[-42.772568,-2.547569],[-42.777268,-2.547869],[-42.780168,-2.547769],[-42.783968,-2.547869],[-42.790568,-2.547769],[-42.795368,-2.547569],[-42.800068,-2.547269],[-42.803968,-2.547569],[-42.808068,-2.548069],[-42.812168,-2.547869],[-42.817168,-2.546369],[-42.821668,-2.545369],[-42.825268,-2.544669],[-42.828568,-2.543169],[-42.832868,-2.540969],[-42.836768,-2.538969],[-42.840068,-2.536969],[-42.844468,-2.534469],[-42.848368,-2.532569],[-42.852468,-2.530169],[-42.864968,-2.524769],[-42.867968,-2.523369],[-42.871368,-2.521469],[-42.875168,-2.519069],[-42.878068,-2.517569],[-42.881568,-2.515369],[-42.885468,-2.513269],[-42.888468,-2.511769],[-42.892068,-2.510969],[-42.896168,-2.509969],[-42.900068,-2.507769],[-42.903968,-2.505969],[-42.906768,-2.504569],[-42.910568,-2.502469],[-42.914968,-2.499369],[-42.918868,-2.496969],[-42.921468,-2.495769],[-42.924368,-2.494469],[-42.928568,-2.492269],[-42.932768,-2.490069],[-42.937668,-2.487969],[-42.942768,-2.485369],[-42.947068,-2.483369],[-42.950968,-2.481669],[-42.955368,-2.479169],[-42.958668,-2.477769],[-42.961568,-2.476369],[-42.964268,-2.474869],[-42.968968,-2.474469],[-42.973368,-2.473769],[-42.977068,-2.472069],[-42.979968,-2.470969],[-42.982768,-2.469769],[-42.987268,-2.467669],[-42.991068,-2.465869],[-42.996368,-2.463669],[-43.000268,-2.461969],[-43.005668,-2.460469],[-43.008468,-2.459369],[-43.011568,-2.458169],[-43.015368,-2.456569],[-43.019868,-2.454369],[-43.025468,-2.452069],[-43.029468,-2.449969],[-43.033068,-2.448769],[-43.036968,-2.447069],[-43.040268,-2.445669],[-43.044468,-2.443769],[-43.048868,-2.442369],[-43.051868,-2.441369],[-43.054768,-2.440169],[-43.057468,-2.438869],[-43.060468,-2.437669],[-43.064068,-2.435869],[-43.066968,-2.434369],[-43.073468,-2.431169],[-43.079268,-2.427769],[-43.084268,-2.425269],[-43.091468,-2.421669],[-43.096968,-2.419169],[-43.100968,-2.417269],[-43.104668,-2.415669],[-43.107768,-2.414269],[-43.110868,-2.413069],[-43.114668,-2.412069],[-43.120468,-2.411169],[-43.124468,-2.409269],[-43.127168,-2.408169],[-43.130168,-2.406969],[-43.135968,-2.404469],[-43.141068,-2.401969],[-43.144368,-2.400369],[-43.148368,-2.398769],[-43.152668,-2.397069],[-43.155968,-2.395469],[-43.159268,-2.393469],[-43.162268,-2.391869],[-43.165368,-2.390069],[-43.168368,-2.388469],[-43.171868,-2.386569],[-43.175468,-2.384869],[-43.178268,-2.383769],[-43.181968,-2.382369],[-43.185168,-2.380669],[-43.189168,-2.378269],[-43.193768,-2.376069],[-43.200768,-2.372969],[-43.208268,-2.370169],[-43.215168,-2.367769],[-43.222268,-2.365069],[-43.225568,-2.364069],[-43.228568,-2.362869],[-43.231668,-2.361369],[-43.234668,-2.359769],[-43.238568,-2.358369],[-43.243568,-2.357069],[-43.247668,-2.355969],[-43.251068,-2.354969],[-43.255168,-2.353969],[-43.258868,-2.353069],[-43.262968,-2.351969],[-43.267968,-2.350569],[-43.272368,-2.349469],[-43.276268,-2.348169],[-43.281268,-2.346269],[-43.285968,-2.344869],[-43.290668,-2.343369],[-43.296068,-2.342269],[-43.299968,-2.341269],[-43.302968,-2.340869],[-43.306568,-2.340069],[-43.310268,-2.338969],[-43.314668,-2.338169],[-43.317468,-2.337669],[-43.321668,-2.337069],[-43.326368,-2.336769],[-43.331068,-2.336769],[-43.333968,-2.338269],[-43.337568,-2.338969],[-43.340868,-2.339869],[-43.344868,-2.340069],[-43.348368,-2.340169],[-43.352568,-2.340069],[-43.358368,-2.339769],[-43.363568,-2.339569],[-43.368068,-2.339269],[-43.371568,-2.339269],[-43.375168,-2.340069],[-43.377368,-2.343669],[-43.385968,-2.344569],[-43.388268,-2.341569],[-43.390668,-2.338269],[-43.395468,-2.336869],[-43.399768,-2.335869],[-43.403968,-2.335469],[-43.408768,-2.336769],[-43.413468,-2.339069],[-43.416468,-2.340369],[-43.421068,-2.341269],[-43.425068,-2.342269],[-43.429768,-2.343669],[-43.435168,-2.342269],[-43.440268,-2.341969],[-43.443768,-2.344569],[-43.447068,-2.346669],[-43.452068,-2.348369],[-43.456568,-2.349569],[-43.460768,-2.350969],[-43.461468,-2.354969],[-43.462868,-2.357769],[-43.467068,-2.359669],[-43.469868,-2.361169],[-43.472668,-2.362769],[-43.475968,-2.364969],[-43.478468,-2.366869],[-43.481368,-2.369769],[-43.483268,-2.373269],[-43.484168,-2.378069],[-43.483568,-2.384369],[-43.480668,-2.389869],[-43.468068,-2.412069],[-43.466268,-2.415669],[-43.463168,-2.423569],[-43.460368,-2.429969],[-43.457568,-2.434669],[-43.456168,-2.437469],[-43.452168,-2.443269],[-43.454668,-2.446769],[-43.456468,-2.449969],[-43.456168,-2.453469],[-43.454668,-2.457269],[-43.454268,-2.461169],[-43.453968,-2.472669],[-43.454668,-2.476769],[-43.456268,-2.481769],[-43.458168,-2.484169],[-43.461468,-2.486869],[-43.465968,-2.487569],[-43.469568,-2.487969],[-43.474468,-2.487769],[-43.479168,-2.486869],[-43.482868,-2.485769],[-43.485868,-2.483969],[-43.488568,-2.481069],[-43.492768,-2.479669],[-43.500268,-2.478669],[-43.506068,-2.477769],[-43.509068,-2.475569],[-43.511268,-2.470569],[-43.513468,-2.466169],[-43.517368,-2.462969],[-43.518968,-2.460169],[-43.520368,-2.457569],[-43.520368,-2.453569],[-43.518768,-2.449869],[-43.516868,-2.446769],[-43.513268,-2.443869],[-43.511468,-2.440769],[-43.512368,-2.437169],[-43.514368,-2.433569],[-43.514668,-2.429669],[-43.515768,-2.425269],[-43.519668,-2.421669],[-43.523668,-2.419269],[-43.528768,-2.418869],[-43.534168,-2.420269],[-43.537868,-2.422469],[-43.540068,-2.425069],[-43.541368,-2.428669],[-43.543068,-2.432669],[-43.545368,-2.436169],[-43.547868,-2.439169],[-43.550868,-2.441569],[-43.553268,-2.444169],[-43.554668,-2.447469],[-43.554768,-2.452069],[-43.554768,-2.455669],[-43.554068,-2.460069],[-43.554368,-2.463669],[-43.554768,-2.468169],[-43.555268,-2.471969],[-43.556568,-2.475669],[-43.558068,-2.479769],[-43.562468,-2.486369],[-43.565268,-2.489469],[-43.567168,-2.492469],[-43.569868,-2.494469],[-43.575268,-2.497669],[-43.577168,-2.502669],[-43.579568,-2.506569],[-43.584368,-2.506769],[-43.587868,-2.506269],[-43.591968,-2.505569],[-43.596468,-2.504569],[-43.598368,-2.502069],[-43.598168,-2.498269],[-43.595568,-2.494969],[-43.592668,-2.491169],[-43.589768,-2.488569],[-43.586568,-2.487469],[-43.580768,-2.485269],[-43.576868,-2.482269],[-43.573868,-2.479469],[-43.571768,-2.476269],[-43.570168,-2.472569],[-43.570668,-2.469469],[-43.572968,-2.466769],[-43.574268,-2.464069],[-43.576368,-2.460469],[-43.580668,-2.458569],[-43.584068,-2.461269],[-43.586768,-2.465169],[-43.587868,-2.468469],[-43.589068,-2.471769],[-43.589268,-2.474769],[-43.590868,-2.477469],[-43.593768,-2.480869],[-43.598068,-2.483869],[-43.601168,-2.486169],[-43.604168,-2.489969],[-43.605668,-2.494069],[-43.606368,-2.497769],[-43.610268,-2.500469],[-43.611468,-2.503469],[-43.612568,-2.506269],[-43.614968,-2.508069],[-43.617968,-2.509169],[-43.621868,-2.510169],[-43.625168,-2.510269],[-43.628768,-2.508069],[-43.631368,-2.504569],[-43.633868,-2.502469],[-43.637968,-2.500269],[-43.641068,-2.498569],[-43.644768,-2.496869],[-43.648468,-2.495169],[-43.649868,-2.491369],[-43.647568,-2.488569],[-43.647868,-2.485269],[-43.650468,-2.482169],[-43.654868,-2.482769],[-43.660068,-2.485269],[-43.663968,-2.487969],[-43.666968,-2.491069],[-43.669968,-2.494669],[-43.671868,-2.497669],[-43.675468,-2.503769],[-43.680868,-2.512769],[-43.684168,-2.515469],[-43.686968,-2.518169],[-43.689968,-2.519869],[-43.693768,-2.519869],[-43.696868,-2.516069],[-43.700968,-2.512869],[-43.702868,-2.509669],[-43.702868,-2.506669],[-43.701368,-2.503769],[-43.699968,-2.498069],[-43.698468,-2.493269],[-43.696268,-2.488669],[-43.695668,-2.484669],[-43.699068,-2.482769],[-43.704268,-2.485269],[-43.709068,-2.487169],[-43.711168,-2.482569],[-43.713468,-2.478869],[-43.716268,-2.476169],[-43.719468,-2.475269],[-43.722868,-2.474569],[-43.725968,-2.475969],[-43.730068,-2.478169],[-43.733868,-2.479969],[-43.736168,-2.482869],[-43.739668,-2.486469],[-43.742968,-2.490069],[-43.744768,-2.492269],[-43.747468,-2.493669],[-43.751968,-2.494069],[-43.756268,-2.494469],[-43.760768,-2.494769],[-43.765768,-2.494669],[-43.768268,-2.493069],[-43.770668,-2.489769],[-43.773168,-2.486469],[-43.776568,-2.482469],[-43.777568,-2.478069],[-43.776068,-2.473369],[-43.771868,-2.470869],[-43.768168,-2.470069],[-43.765068,-2.468769],[-43.761068,-2.466569],[-43.758168,-2.462869],[-43.756768,-2.459069],[-43.755268,-2.455369],[-43.752468,-2.452569],[-43.749668,-2.450369],[-43.747968,-2.447069],[-43.746568,-2.443769],[-43.743968,-2.440069],[-43.741868,-2.434769],[-43.739068,-2.431169],[-43.735268,-2.428269],[-43.732068,-2.425469],[-43.728868,-2.424169],[-43.725268,-2.423969],[-43.720868,-2.424669],[-43.715368,-2.426169],[-43.709268,-2.426169],[-43.706568,-2.422469],[-43.705768,-2.419269],[-43.703568,-2.414969],[-43.699568,-2.411269],[-43.693468,-2.409469],[-43.689168,-2.405569],[-43.688468,-2.402369],[-43.688068,-2.398669],[-43.685168,-2.397569],[-43.681568,-2.398469],[-43.674668,-2.399869],[-43.669768,-2.400469],[-43.664768,-2.401869],[-43.661468,-2.402869],[-43.657668,-2.401269],[-43.654168,-2.401569],[-43.650368,-2.403469],[-43.645668,-2.403069],[-43.644368,-2.398969],[-43.643268,-2.394569],[-43.641068,-2.392469],[-43.638168,-2.388969],[-43.638768,-2.384369],[-43.637068,-2.381069],[-43.634968,-2.378469],[-43.634368,-2.375169],[-43.633468,-2.372369],[-43.631668,-2.368269],[-43.630668,-2.364969],[-43.629868,-2.362169],[-43.628768,-2.357769],[-43.628568,-2.352269],[-43.628068,-2.348069],[-43.628468,-2.344869],[-43.628068,-2.341269],[-43.627668,-2.337669],[-43.627168,-2.334069],[-43.629068,-2.329569],[-43.629868,-2.324969],[-43.627668,-2.321069],[-43.626268,-2.316969],[-43.625268,-2.313069],[-43.625468,-2.309369],[-43.624468,-2.305569],[-43.622968,-2.302169],[-43.621268,-2.299269],[-43.618368,-2.296369],[-43.614968,-2.294169],[-43.610768,-2.293069],[-43.604968,-2.292469],[-43.600568,-2.293069],[-43.596968,-2.291469],[-43.594568,-2.288969],[-43.593668,-2.285969],[-43.594868,-2.281669],[-43.597268,-2.278669],[-43.599468,-2.275969],[-43.601668,-2.271469],[-43.601968,-2.266769],[-43.602068,-2.262969],[-43.603168,-2.258769],[-43.607268,-2.255969],[-43.610568,-2.253469],[-43.614068,-2.252069],[-43.616968,-2.251869],[-43.620768,-2.251569],[-43.623768,-2.251269],[-43.627068,-2.251269],[-43.632068,-2.251869],[-43.638268,-2.254069],[-43.644368,-2.257769],[-43.650668,-2.260369],[-43.654468,-2.262369],[-43.660368,-2.265069],[-43.669668,-2.269069],[-43.677968,-2.271169],[-43.682268,-2.271869],[-43.686068,-2.272969],[-43.689968,-2.274469],[-43.696268,-2.276569],[-43.700668,-2.278769],[-43.704268,-2.281269],[-43.708968,-2.284169],[-43.713368,-2.286169],[-43.718068,-2.288769],[-43.720268,-2.291369],[-43.721168,-2.295869],[-43.721968,-2.300069],[-43.723168,-2.304469],[-43.723468,-2.308369],[-43.722568,-2.312769],[-43.721668,-2.317169],[-43.721768,-2.322069],[-43.722868,-2.324969],[-43.724568,-2.329269],[-43.727268,-2.333769],[-43.730368,-2.337669],[-43.734368,-2.342369],[-43.737468,-2.346769],[-43.738668,-2.351269],[-43.735368,-2.354169],[-43.731768,-2.356169],[-43.728868,-2.359369],[-43.726668,-2.364369],[-43.725068,-2.367969],[-43.724868,-2.371669],[-43.724868,-2.375869],[-43.725068,-2.379169],[-43.725968,-2.383569],[-43.727468,-2.386869],[-43.730368,-2.389669],[-43.733568,-2.393169],[-43.736468,-2.394369],[-43.739968,-2.395369],[-43.743268,-2.396169],[-43.746868,-2.398669],[-43.750168,-2.402669],[-43.753068,-2.404869],[-43.756368,-2.406269],[-43.758868,-2.410069],[-43.759068,-2.415269],[-43.761768,-2.418869],[-43.765668,-2.420669],[-43.768968,-2.422569],[-43.772268,-2.424269],[-43.780068,-2.428269],[-43.782768,-2.429769],[-43.785368,-2.431569],[-43.788068,-2.433269],[-43.791068,-2.435169],[-43.795068,-2.437669],[-43.798868,-2.439569],[-43.802268,-2.439969],[-43.806068,-2.439169],[-43.809368,-2.436969],[-43.809468,-2.432069],[-43.806568,-2.427569],[-43.804368,-2.423169],[-43.801668,-2.420369],[-43.799668,-2.416769],[-43.799468,-2.413869],[-43.800768,-2.409769],[-43.800268,-2.405069],[-43.798568,-2.401869],[-43.796668,-2.398469],[-43.793368,-2.395069],[-43.797868,-2.391769],[-43.802568,-2.390769],[-43.806568,-2.392569],[-43.810568,-2.395069],[-43.814368,-2.397569],[-43.817768,-2.400469],[-43.820168,-2.402969],[-43.824268,-2.406269],[-43.829968,-2.409869],[-43.833668,-2.412769],[-43.836868,-2.415569],[-43.839468,-2.419169],[-43.839868,-2.424169],[-43.838768,-2.428569],[-43.835968,-2.431169],[-43.833668,-2.434169],[-43.832068,-2.437269],[-43.831768,-2.440469],[-43.834368,-2.443469],[-43.837268,-2.445569],[-43.841268,-2.447469],[-43.842568,-2.452369],[-43.842268,-2.457969],[-43.842568,-2.461569],[-43.843468,-2.468069],[-43.844868,-2.475569],[-43.845968,-2.488569],[-43.846768,-2.501869],[-43.848368,-2.507369],[-43.850068,-2.509969],[-43.855268,-2.514269],[-43.859968,-2.515669],[-43.864068,-2.516569],[-43.867168,-2.516069],[-43.871868,-2.515769],[-43.875468,-2.517669],[-43.877768,-2.521169],[-43.879068,-2.525769],[-43.882168,-2.528769],[-43.887068,-2.531769],[-43.890368,-2.534469],[-43.891868,-2.537069],[-43.892368,-2.540069],[-43.891468,-2.544669],[-43.890468,-2.548969],[-43.891068,-2.553669],[-43.894768,-2.556869],[-43.899568,-2.558069],[-43.902868,-2.557969],[-43.905668,-2.556569],[-43.908768,-2.554769],[-43.914468,-2.554369],[-43.920368,-2.555469],[-43.924468,-2.557169],[-43.927168,-2.558369],[-43.930268,-2.560869],[-43.931568,-2.564169],[-43.932968,-2.567769],[-43.935868,-2.572169],[-43.939768,-2.576969],[-43.945668,-2.586969],[-43.949068,-2.593769],[-43.950968,-2.598069],[-43.953768,-2.605269],[-43.954068,-2.611869],[-43.953968,-2.617769],[-43.956868,-2.621569],[-43.962668,-2.622669],[-43.973668,-2.625769],[-43.981468,-2.630269],[-43.988868,-2.633769],[-43.993668,-2.635169],[-43.998868,-2.636769],[-44.003868,-2.638169],[-44.007168,-2.643469],[-44.009868,-2.647269],[-44.013768,-2.650369],[-44.019268,-2.651169],[-44.022568,-2.652569],[-44.025968,-2.656469],[-44.027868,-2.661669],[-44.027868,-2.666169],[-44.029168,-2.670069],[-44.031168,-2.673369],[-44.035168,-2.676669],[-44.037768,-2.678369],[-44.041668,-2.682969],[-44.043968,-2.687169],[-44.044668,-2.690569],[-44.047168,-2.693169],[-44.050368,-2.698169],[-44.051168,-2.702069],[-44.052268,-2.705669],[-44.053068,-2.708569],[-44.055068,-2.711969],[-44.058268,-2.715669],[-44.061068,-2.718969],[-44.065568,-2.720969],[-44.067668,-2.724569],[-44.067768,-2.728169],[-44.070468,-2.732869],[-44.072868,-2.735569],[-44.075368,-2.739669],[-44.078268,-2.743269],[-44.080768,-2.745769],[-44.084768,-2.748869],[-44.089268,-2.751269],[-44.092268,-2.751869],[-44.094868,-2.753069],[-44.098068,-2.752369],[-44.102268,-2.749369],[-44.106768,-2.748369],[-44.111368,-2.747769],[-44.115268,-2.748769],[-44.117968,-2.752469],[-44.120168,-2.755269],[-44.122668,-2.758169],[-44.125568,-2.759669],[-44.127668,-2.762069],[-44.129668,-2.764369],[-44.132368,-2.765369],[-44.136068,-2.766269],[-44.141268,-2.767069],[-44.147968,-2.768269],[-44.152568,-2.767969],[-44.158768,-2.768469],[-44.163468,-2.768169],[-44.169168,-2.767669],[-44.175068,-2.767069],[-44.179668,-2.766469],[-44.184868,-2.764669],[-44.190268,-2.764569],[-44.194968,-2.765369],[-44.197968,-2.766269],[-44.202068,-2.767069],[-44.208168,-2.767869],[-44.211968,-2.769869],[-44.215868,-2.771769],[-44.220968,-2.771069],[-44.225068,-2.771869],[-44.228568,-2.772669],[-44.232068,-2.774469],[-44.234968,-2.775769],[-44.237268,-2.778169],[-44.240868,-2.780369],[-44.243868,-2.780569],[-44.246868,-2.780469],[-44.250868,-2.780069],[-44.254868,-2.778969],[-44.257768,-2.777269],[-44.260768,-2.774769],[-44.263168,-2.771469],[-44.264368,-2.767069],[-44.265368,-2.762969],[-44.265768,-2.759169],[-44.264568,-2.753869],[-44.262368,-2.749669],[-44.259868,-2.744369],[-44.257668,-2.740869],[-44.255768,-2.738369],[-44.251868,-2.732869],[-44.249068,-2.729969],[-44.245268,-2.728369],[-44.241168,-2.726469],[-44.237168,-2.725269],[-44.232068,-2.724569],[-44.228968,-2.724769],[-44.223468,-2.725669],[-44.219768,-2.723969],[-44.216768,-2.723069],[-44.213668,-2.720969],[-44.209668,-2.719069],[-44.205368,-2.717269],[-44.202068,-2.713669],[-44.199868,-2.709669],[-44.197068,-2.706769],[-44.193468,-2.704669],[-44.188068,-2.704669],[-44.184368,-2.704669],[-44.180768,-2.703869],[-44.176368,-2.701069],[-44.170668,-2.700469],[-44.165868,-2.699569],[-44.163168,-2.697869],[-44.161268,-2.693869],[-44.159568,-2.690569],[-44.157668,-2.688269],[-44.153668,-2.685269],[-44.148168,-2.684169],[-44.143768,-2.682169],[-44.138768,-2.681569],[-44.137068,-2.677469],[-44.135968,-2.672769],[-44.134968,-2.668169],[-44.133068,-2.665369],[-44.133468,-2.661469],[-44.132768,-2.658669],[-44.129368,-2.655169],[-44.125168,-2.654769],[-44.123368,-2.651269],[-44.125168,-2.648469],[-44.121568,-2.646769],[-44.117268,-2.643169],[-44.115268,-2.638969],[-44.113568,-2.636469],[-44.112468,-2.632769],[-44.108168,-2.630169],[-44.105568,-2.628569],[-44.106168,-2.625469],[-44.107268,-2.621569],[-44.107768,-2.617669],[-44.106768,-2.613569],[-44.106068,-2.609269],[-44.105268,-2.604269],[-44.102768,-2.598069],[-44.100268,-2.594769],[-44.097268,-2.592669],[-44.093368,-2.590369],[-44.092268,-2.587069],[-44.092968,-2.583969],[-44.093468,-2.579669],[-44.093368,-2.576069],[-44.090968,-2.573769],[-44.086568,-2.571369],[-44.083468,-2.567469],[-44.081468,-2.563769],[-44.076468,-2.561969],[-44.072668,-2.560269],[-44.068768,-2.559369],[-44.065168,-2.559469],[-44.061968,-2.559869],[-44.057968,-2.562669],[-44.053868,-2.562969],[-44.053268,-2.558769],[-44.051468,-2.555869],[-44.046968,-2.554369],[-44.043168,-2.554669],[-44.040868,-2.557169],[-44.036968,-2.556869],[-44.034568,-2.551669],[-44.033868,-2.545369],[-44.033768,-2.542269],[-44.034268,-2.537869],[-44.033768,-2.533669],[-44.031268,-2.531469],[-44.027668,-2.528769],[-44.027568,-2.524069],[-44.027668,-2.519769],[-44.026568,-2.516269],[-44.024368,-2.513169],[-44.023768,-2.509069],[-44.025068,-2.505169],[-44.027068,-2.500869],[-44.028768,-2.498569],[-44.031268,-2.495469],[-44.034268,-2.491869],[-44.041768,-2.483269],[-44.048368,-2.475669],[-44.050868,-2.472369],[-44.052468,-2.469469],[-44.052268,-2.466269],[-44.051068,-2.462069],[-44.048368,-2.456869],[-44.044568,-2.452869],[-44.038468,-2.450969],[-44.033368,-2.450469],[-44.029268,-2.451269],[-44.025468,-2.450669],[-44.023368,-2.447369],[-44.022868,-2.442369],[-44.022868,-2.439069],[-44.022868,-2.434669],[-44.023468,-2.430869],[-44.025168,-2.426669],[-44.026268,-2.423269],[-44.027268,-2.420069],[-44.028068,-2.416369],[-44.028768,-2.413169],[-44.029468,-2.410069],[-44.031268,-2.406969],[-44.036968,-2.406269],[-44.042168,-2.405969],[-44.047568,-2.405169],[-44.051668,-2.404769],[-44.059068,-2.404069],[-44.063468,-2.403369],[-44.068268,-2.403369],[-44.072368,-2.403669],[-44.077668,-2.404069],[-44.082568,-2.404469],[-44.088968,-2.405369],[-44.094568,-2.406569],[-44.097268,-2.407869],[-44.100668,-2.409769],[-44.103168,-2.411369],[-44.108568,-2.414269],[-44.125268,-2.423569],[-44.132068,-2.427269],[-44.136568,-2.429769],[-44.140668,-2.430769],[-44.145168,-2.432169],[-44.150468,-2.433569],[-44.154868,-2.436669],[-44.156168,-2.440569],[-44.157868,-2.444869],[-44.162468,-2.448769],[-44.167468,-2.452869],[-44.171668,-2.455769],[-44.173868,-2.458269],[-44.177868,-2.459369],[-44.183368,-2.460969],[-44.186268,-2.461469],[-44.190268,-2.462669],[-44.193868,-2.463269],[-44.197468,-2.463669],[-44.201368,-2.464069],[-44.205068,-2.466669],[-44.210468,-2.469769],[-44.214568,-2.470869],[-44.218368,-2.472269],[-44.222068,-2.475069],[-44.225968,-2.476969],[-44.230268,-2.477769],[-44.234968,-2.478369],[-44.238368,-2.478969],[-44.242468,-2.479569],[-44.246268,-2.480969],[-44.250468,-2.481369],[-44.254168,-2.481069],[-44.258568,-2.480969],[-44.263568,-2.481969],[-44.268268,-2.484969],[-44.272568,-2.486369],[-44.276168,-2.486769],[-44.280868,-2.486869],[-44.286468,-2.487169],[-44.292068,-2.486969],[-44.296468,-2.486469],[-44.300068,-2.486369],[-44.303668,-2.487569],[-44.305868,-2.490469],[-44.307168,-2.493669],[-44.309168,-2.496569],[-44.312468,-2.498369],[-44.316068,-2.500569],[-44.319668,-2.502469],[-44.318868,-2.505269],[-44.315968,-2.506269],[-44.312368,-2.505169],[-44.310768,-2.508869],[-44.309068,-2.512969],[-44.307268,-2.516369],[-44.306968,-2.521769],[-44.306968,-2.526169],[-44.307968,-2.529769],[-44.307768,-2.534169],[-44.308268,-2.537069],[-44.310168,-2.539569],[-44.314068,-2.540569],[-44.317668,-2.539569],[-44.318868,-2.536169],[-44.319868,-2.533369],[-44.320468,-2.530169],[-44.321768,-2.527569],[-44.327068,-2.527869],[-44.334368,-2.529069],[-44.339768,-2.530369],[-44.344268,-2.529469],[-44.348068,-2.527269],[-44.349568,-2.530369],[-44.353068,-2.531769],[-44.355568,-2.533469],[-44.355568,-2.538169],[-44.356468,-2.541369],[-44.355268,-2.545069],[-44.355068,-2.548269],[-44.356068,-2.551069],[-44.358968,-2.555469],[-44.362568,-2.558369],[-44.365368,-2.559869],[-44.368268,-2.561669],[-44.371368,-2.562269],[-44.374368,-2.562969],[-44.377368,-2.565269],[-44.375768,-2.568869],[-44.370768,-2.572069],[-44.369368,-2.576069],[-44.368068,-2.581769],[-44.364768,-2.580969],[-44.362968,-2.584069],[-44.360568,-2.587869],[-44.357768,-2.595969],[-44.355668,-2.598869],[-44.354968,-2.602069],[-44.356768,-2.606469],[-44.357768,-2.612169],[-44.359268,-2.615369],[-44.360068,-2.619169],[-44.366868,-2.641869],[-44.367968,-2.647869],[-44.367968,-2.651169],[-44.369068,-2.655069],[-44.370768,-2.657869],[-44.371968,-2.660869],[-44.374768,-2.663369],[-44.378268,-2.666069],[-44.380168,-2.669769],[-44.380168,-2.673669],[-44.379068,-2.677869],[-44.379168,-2.682969],[-44.380168,-2.687469],[-44.381368,-2.690569],[-44.383468,-2.694569],[-44.384968,-2.697869],[-44.385368,-2.700769],[-44.386368,-2.705069],[-44.387468,-2.709369],[-44.388168,-2.712669],[-44.389268,-2.716269],[-44.391068,-2.720569],[-44.389568,-2.723969],[-44.387468,-2.727769],[-44.385468,-2.736069],[-44.385368,-2.740269],[-44.385768,-2.744369],[-44.386468,-2.749169],[-44.388568,-2.753769],[-44.390468,-2.756069],[-44.394068,-2.760169],[-44.397168,-2.763969],[-44.399068,-2.767369],[-44.401868,-2.769269],[-44.403468,-2.772269],[-44.404468,-2.775869],[-44.404768,-2.778769],[-44.405168,-2.781969],[-44.405868,-2.785969],[-44.407868,-2.790069],[-44.409268,-2.793869],[-44.408468,-2.798669],[-44.410268,-2.801369],[-44.409468,-2.805269],[-44.410068,-2.810169],[-44.409568,-2.815169],[-44.408968,-2.821269],[-44.408968,-2.826869],[-44.408368,-2.830669],[-44.407368,-2.836169],[-44.407368,-2.843369],[-44.407268,-2.847269],[-44.407268,-2.851669],[-44.407668,-2.857869],[-44.407068,-2.862169],[-44.406768,-2.865269],[-44.406968,-2.874069],[-44.406468,-2.878769],[-44.406168,-2.883469],[-44.406668,-2.887769],[-44.407068,-2.892069],[-44.407368,-2.895769],[-44.408368,-2.899869],[-44.409768,-2.905069],[-44.410968,-2.908169],[-44.411968,-2.911969],[-44.412868,-2.914769],[-44.414468,-2.918569],[-44.416768,-2.924469],[-44.421468,-2.934469],[-44.422568,-2.937969],[-44.424768,-2.943869],[-44.430768,-2.952169],[-44.433268,-2.955769],[-44.436268,-2.961869],[-44.438568,-2.964769],[-44.441868,-2.969569],[-44.448768,-2.980869],[-44.451068,-2.983869],[-44.453568,-2.987269],[-44.457568,-2.991369],[-44.463268,-2.997169],[-44.466968,-2.999869],[-44.472368,-3.005169],[-44.476668,-3.009269],[-44.490068,-3.021069],[-44.496568,-3.027669],[-44.506868,-3.032769],[-44.515068,-3.036969],[-44.519268,-3.038869],[-44.525368,-3.041169],[-44.532368,-3.043969],[-44.541068,-3.044469],[-44.548868,-3.045369],[-44.562668,-3.045269],[-44.574068,-3.044269],[-44.586768,-3.041669],[-44.591168,-3.041969],[-44.597068,-3.039969],[-44.603968,-3.037769],[-44.610868,-3.033369],[-44.613868,-3.030969],[-44.618368,-3.028369],[-44.621968,-3.026969],[-44.628068,-3.024869],[-44.633468,-3.023969],[-44.638168,-3.022869],[-44.642068,-3.021869],[-44.645968,-3.020369],[-44.650068,-3.018669],[-44.653368,-3.017469],[-44.658168,-3.015369],[-44.662468,-3.012869],[-44.666368,-3.009969],[-44.669568,-3.006769],[-44.671468,-3.004469],[-44.673368,-3.000269],[-44.675268,-2.996369],[-44.676168,-2.993269],[-44.676968,-2.989169],[-44.677868,-2.985069],[-44.678868,-2.981769],[-44.679368,-2.978869],[-44.679368,-2.974569],[-44.678868,-2.970569],[-44.678268,-2.967669],[-44.677568,-2.964469],[-44.676668,-2.960769],[-44.677168,-2.954969],[-44.679168,-2.948469],[-44.680268,-2.943869],[-44.680868,-2.939969],[-44.680768,-2.935469],[-44.680768,-2.928869],[-44.680068,-2.924769],[-44.679668,-2.919469],[-44.677568,-2.913169],[-44.674968,-2.908869],[-44.672468,-2.905969],[-44.670268,-2.904069],[-44.666668,-2.901569],[-44.662868,-2.900169],[-44.658968,-2.897369],[-44.655068,-2.895369],[-44.651468,-2.892169],[-44.648468,-2.888469],[-44.646468,-2.884669],[-44.642668,-2.876269],[-44.636868,-2.865769],[-44.634168,-2.860269],[-44.632768,-2.856069],[-44.632468,-2.852369],[-44.633268,-2.844169],[-44.635368,-2.838969],[-44.638168,-2.834869],[-44.640068,-2.830369],[-44.642068,-2.825969],[-44.643768,-2.821669],[-44.645668,-2.818169],[-44.647268,-2.815569],[-44.649368,-2.812469],[-44.651468,-2.806869],[-44.649068,-2.804169],[-44.648668,-2.796669],[-44.647968,-2.793369],[-44.646768,-2.789569],[-44.646168,-2.785169],[-44.645668,-2.782069],[-44.643568,-2.778369],[-44.641068,-2.775069],[-44.638968,-2.771769],[-44.636368,-2.766769],[-44.633468,-2.761069],[-44.632068,-2.757969],[-44.629968,-2.753569],[-44.626068,-2.745269],[-44.624068,-2.739769],[-44.623268,-2.735369],[-44.623068,-2.730269],[-44.623368,-2.724169],[-44.624368,-2.720569],[-44.625868,-2.713369],[-44.626568,-2.708469],[-44.626068,-2.702169],[-44.622168,-2.698569],[-44.618368,-2.695569],[-44.615568,-2.694869],[-44.611068,-2.691869],[-44.607868,-2.690269],[-44.604968,-2.686269],[-44.604268,-2.682969],[-44.603868,-2.679669],[-44.602268,-2.675869],[-44.600268,-2.671969],[-44.598768,-2.669269],[-44.597268,-2.666369],[-44.594068,-2.662869],[-44.590068,-2.660869],[-44.585368,-2.658069],[-44.583768,-2.654169],[-44.581768,-2.649069],[-44.580168,-2.645369],[-44.578168,-2.639969],[-44.576368,-2.635169],[-44.573268,-2.627769],[-44.571568,-2.623069],[-44.569368,-2.619469],[-44.563068,-2.610069],[-44.560168,-2.607169],[-44.557668,-2.604969],[-44.556568,-2.600269],[-44.554968,-2.595569],[-44.552968,-2.592369],[-44.551868,-2.589569],[-44.550768,-2.586869],[-44.549268,-2.580669],[-44.546468,-2.570669],[-44.544168,-2.564569],[-44.542568,-2.561869],[-44.541168,-2.558269],[-44.538968,-2.551969],[-44.537568,-2.547769],[-44.536968,-2.544669],[-44.537068,-2.540669],[-44.537068,-2.537269],[-44.536668,-2.534269],[-44.535868,-2.530869],[-44.534168,-2.527069],[-44.531268,-2.525669],[-44.527668,-2.525469],[-44.523968,-2.525469],[-44.520768,-2.527269],[-44.518168,-2.529469],[-44.514568,-2.533369],[-44.509968,-2.534269],[-44.505968,-2.530569],[-44.498868,-2.524769],[-44.495068,-2.521769],[-44.489768,-2.520469],[-44.487468,-2.516369],[-44.486468,-2.512669],[-44.485368,-2.509569],[-44.482568,-2.503569],[-44.481668,-2.499669],[-44.479468,-2.493369],[-44.477568,-2.487769],[-44.475568,-2.484369],[-44.473068,-2.481369],[-44.470568,-2.479169],[-44.465568,-2.476669],[-44.461568,-2.476969],[-44.460468,-2.479769],[-44.455668,-2.474169],[-44.450668,-2.467869],[-44.446768,-2.462669],[-44.444568,-2.459369],[-44.442968,-2.456769],[-44.444168,-2.453569],[-44.442968,-2.450469],[-44.444368,-2.446069],[-44.446268,-2.442469],[-44.448968,-2.439369],[-44.451768,-2.437669],[-44.455668,-2.435569],[-44.459068,-2.433769],[-44.467368,-2.431169],[-44.470568,-2.429469],[-44.473068,-2.428069],[-44.478468,-2.429669],[-44.484368,-2.431169],[-44.489668,-2.433269],[-44.493668,-2.434669],[-44.497168,-2.434469],[-44.499768,-2.430269],[-44.498368,-2.425869],[-44.495868,-2.422769],[-44.493268,-2.420369],[-44.488868,-2.416969],[-44.485268,-2.414569],[-44.479168,-2.411769],[-44.474268,-2.412569],[-44.471268,-2.412569],[-44.467568,-2.411969],[-44.463968,-2.410569],[-44.460468,-2.410669],[-44.457568,-2.411669],[-44.454668,-2.412569],[-44.451568,-2.412069],[-44.448168,-2.411969],[-44.444568,-2.413869],[-44.440768,-2.413869],[-44.439468,-2.410869],[-44.436068,-2.408469],[-44.431568,-2.408369],[-44.425068,-2.408469],[-44.420268,-2.409769],[-44.416468,-2.410869],[-44.413368,-2.411969],[-44.408668,-2.409469],[-44.405568,-2.412069],[-44.405568,-2.416769],[-44.401168,-2.414569],[-44.396868,-2.412369],[-44.392068,-2.409769],[-44.387668,-2.408369],[-44.385968,-2.405169],[-44.383268,-2.401969],[-44.381668,-2.398769],[-44.379968,-2.395669],[-44.378868,-2.392869],[-44.375968,-2.390669],[-44.374468,-2.387069],[-44.373068,-2.382069],[-44.372268,-2.377969],[-44.373268,-2.371069],[-44.374368,-2.367169],[-44.376868,-2.362169],[-44.379468,-2.359669],[-44.379168,-2.356169],[-44.374968,-2.355669],[-44.372268,-2.352869],[-44.370268,-2.350269],[-44.367668,-2.348469],[-44.364968,-2.347069],[-44.362868,-2.344869],[-44.361168,-2.341969],[-44.357868,-2.338769],[-44.358568,-2.334069],[-44.360368,-2.330469],[-44.361068,-2.327369],[-44.360668,-2.324369],[-44.361368,-2.320969],[-44.362868,-2.315469],[-44.364368,-2.310769],[-44.366068,-2.306969],[-44.368368,-2.301169],[-44.370768,-2.296069],[-44.372968,-2.291169],[-44.374368,-2.287269],[-44.375568,-2.284469],[-44.377068,-2.281469],[-44.379868,-2.278769],[-44.383568,-2.276969],[-44.386568,-2.276469],[-44.389668,-2.275069],[-44.385668,-2.273269],[-44.384968,-2.270469],[-44.384868,-2.267569],[-44.387768,-2.257769],[-44.389968,-2.249169],[-44.391068,-2.246069],[-44.392068,-2.242469],[-44.392868,-2.238969],[-44.393468,-2.235669],[-44.394768,-2.229669],[-44.395368,-2.225569],[-44.396568,-2.222869],[-44.400668,-2.221769],[-44.403168,-2.218369],[-44.400668,-2.216569],[-44.399468,-2.213669],[-44.403768,-2.208969],[-44.408068,-2.204669],[-44.410268,-2.201869],[-44.413068,-2.198469],[-44.417168,-2.192469],[-44.420368,-2.185469],[-44.422768,-2.181169],[-44.427568,-2.175469],[-44.429368,-2.172469],[-44.433368,-2.166369],[-44.437268,-2.164169],[-44.439868,-2.161969],[-44.444068,-2.158869],[-44.448168,-2.155169],[-44.451468,-2.152869],[-44.454668,-2.151569],[-44.458168,-2.150369],[-44.460868,-2.147269],[-44.463968,-2.145469],[-44.467368,-2.147669],[-44.469468,-2.150469],[-44.473468,-2.151769],[-44.477368,-2.150969],[-44.480668,-2.149069],[-44.484668,-2.146469],[-44.489868,-2.147069],[-44.494068,-2.148169],[-44.497668,-2.148469],[-44.500468,-2.149569],[-44.502968,-2.151569],[-44.507068,-2.152969],[-44.510768,-2.153669],[-44.515768,-2.154069],[-44.521268,-2.155169],[-44.526468,-2.157669],[-44.529868,-2.162069],[-44.528368,-2.165869],[-44.530168,-2.168869],[-44.531468,-2.172769],[-44.533768,-2.176469],[-44.537568,-2.180469],[-44.540268,-2.183769],[-44.539468,-2.189069],[-44.541368,-2.191569],[-44.544268,-2.195169],[-44.547768,-2.197369],[-44.550768,-2.198569],[-44.552468,-2.201569],[-44.556568,-2.201069],[-44.559468,-2.203269],[-44.560568,-2.207169],[-44.561668,-2.210369],[-44.571668,-2.219469],[-44.580168,-2.226969],[-44.583168,-2.228869],[-44.586868,-2.228469],[-44.587268,-2.231769],[-44.586968,-2.235369],[-44.587668,-2.239469],[-44.589868,-2.243269],[-44.592868,-2.244069],[-44.595968,-2.245769],[-44.597568,-2.248869],[-44.599568,-2.251069],[-44.602768,-2.251669],[-44.606068,-2.252969],[-44.609468,-2.254469],[-44.612168,-2.256369],[-44.614968,-2.257769],[-44.617768,-2.260969],[-44.620868,-2.264569],[-44.623268,-2.267669],[-44.624068,-2.270769],[-44.625568,-2.275069],[-44.624768,-2.279769],[-44.626068,-2.285969],[-44.627168,-2.290269],[-44.630668,-2.292469],[-44.634968,-2.294669],[-44.639668,-2.295769],[-44.644368,-2.296169],[-44.647568,-2.295869],[-44.650668,-2.295269],[-44.653768,-2.293869],[-44.656168,-2.290869],[-44.658068,-2.288469],[-44.661668,-2.287269],[-44.666468,-2.287769],[-44.671868,-2.286969],[-44.675068,-2.283369],[-44.677968,-2.280869],[-44.682268,-2.271269],[-44.683868,-2.267069],[-44.685168,-2.263569],[-44.685268,-2.260669],[-44.684868,-2.257769],[-44.682668,-2.255469],[-44.677568,-2.253769],[-44.674468,-2.252769],[-44.670768,-2.251969],[-44.666068,-2.250269],[-44.661268,-2.247969],[-44.657368,-2.245169],[-44.655168,-2.242469],[-44.652268,-2.238569],[-44.648668,-2.237169],[-44.645368,-2.236169],[-44.642168,-2.233969],[-44.638868,-2.231669],[-44.635468,-2.229269],[-44.632168,-2.225369],[-44.628468,-2.221969],[-44.625568,-2.217869],[-44.623768,-2.213969],[-44.620268,-2.210369],[-44.617468,-2.207869],[-44.616468,-2.205069],[-44.614368,-2.202069],[-44.611868,-2.198969],[-44.608668,-2.194369],[-44.605068,-2.192069],[-44.601668,-2.189969],[-44.598668,-2.185769],[-44.595568,-2.181869],[-44.592668,-2.177569],[-44.591268,-2.173569],[-44.587668,-2.166069],[-44.586768,-2.163069],[-44.586168,-2.159769],[-44.586568,-2.156769],[-44.587968,-2.154069],[-44.587568,-2.151169],[-44.583768,-2.147669],[-44.579968,-2.143969],[-44.582668,-2.141769],[-44.586568,-2.138469],[-44.588668,-2.135769],[-44.585968,-2.133869],[-44.581768,-2.132669],[-44.579868,-2.128569],[-44.577468,-2.126669],[-44.567768,-2.126369],[-44.566368,-2.118369],[-44.565468,-2.110269],[-44.562668,-2.107169],[-44.558768,-2.101669],[-44.555868,-2.098369],[-44.553868,-2.094469],[-44.553568,-2.091169],[-44.551368,-2.088669],[-44.547468,-2.090869],[-44.543168,-2.090069],[-44.538068,-2.086869],[-44.533768,-2.084069],[-44.528768,-2.078869],[-44.526568,-2.073869],[-44.522268,-2.072469],[-44.519268,-2.070769],[-44.516768,-2.068269],[-44.514568,-2.065269],[-44.511268,-2.062769],[-44.505968,-2.057969],[-44.503568,-2.055169],[-44.500168,-2.053569],[-44.498368,-2.051169],[-44.496168,-2.048569],[-44.492568,-2.048669],[-44.489968,-2.047469],[-44.486968,-2.044969],[-44.486068,-2.040969],[-44.489668,-2.040269],[-44.492468,-2.038469],[-44.495868,-2.031469],[-44.496368,-2.027869],[-44.497968,-2.025069],[-44.502168,-2.023769],[-44.505668,-2.026269],[-44.509868,-2.029169],[-44.513768,-2.031969],[-44.518468,-2.034569],[-44.522268,-2.034469],[-44.529468,-2.035069],[-44.533668,-2.035569],[-44.539168,-2.033369],[-44.543068,-2.030969],[-44.546368,-2.028169],[-44.550468,-2.026169],[-44.553868,-2.025069],[-44.557268,-2.024369],[-44.560868,-2.023769],[-44.564668,-2.022069],[-44.569668,-2.022569],[-44.572368,-2.025869],[-44.575968,-2.029869],[-44.579068,-2.029069],[-44.576368,-2.024869],[-44.573268,-2.020769],[-44.570268,-2.018169],[-44.566268,-2.016069],[-44.563068,-2.015369],[-44.559168,-2.016069],[-44.555768,-2.017169],[-44.551468,-2.017569],[-44.547568,-2.017869],[-44.544268,-2.017969],[-44.540568,-2.019369],[-44.535168,-2.019369],[-44.531268,-2.017469],[-44.526768,-2.015669],[-44.522568,-2.014269],[-44.518968,-2.013569],[-44.514368,-2.012069],[-44.509368,-2.009969],[-44.506068,-2.007069],[-44.503768,-2.004669],[-44.501868,-2.002469],[-44.497768,-1.999669],[-44.494068,-1.997669],[-44.490568,-1.993669],[-44.486668,-1.991169],[-44.483568,-1.989069],[-44.482768,-1.986069],[-44.486668,-1.982769],[-44.490868,-1.980869],[-44.491168,-1.977469],[-44.493668,-1.975269],[-44.495468,-1.972369],[-44.495768,-1.968769],[-44.499068,-1.966969],[-44.503568,-1.964769],[-44.508468,-1.961469],[-44.510968,-1.958269],[-44.508768,-1.956269],[-44.505568,-1.957669],[-44.503468,-1.959869],[-44.501068,-1.961469],[-44.497968,-1.962569],[-44.493568,-1.962969],[-44.490468,-1.959369],[-44.489468,-1.954369],[-44.490468,-1.948969],[-44.491868,-1.943469],[-44.493368,-1.939869],[-44.494768,-1.935769],[-44.496268,-1.932169],[-44.499668,-1.923869],[-44.508268,-1.900669],[-44.512668,-1.889069],[-44.514968,-1.884969],[-44.517668,-1.882169],[-44.520468,-1.880669],[-44.524268,-1.879469],[-44.529068,-1.879069],[-44.534468,-1.881669],[-44.535968,-1.884269],[-44.538068,-1.887669],[-44.542768,-1.889969],[-44.547768,-1.891069],[-44.551968,-1.887469],[-44.553568,-1.883869],[-44.552868,-1.880169],[-44.551868,-1.876669],[-44.549668,-1.874069],[-44.547768,-1.871169],[-44.545268,-1.866869],[-44.544168,-1.862569],[-44.541368,-1.857869],[-44.539868,-1.853969],[-44.539268,-1.849969],[-44.540968,-1.843769],[-44.541468,-1.839769],[-44.540368,-1.836569],[-44.538868,-1.833669],[-44.537768,-1.830969],[-44.535568,-1.827869],[-44.533468,-1.824869],[-44.534768,-1.822069],[-44.538868,-1.820569],[-44.541768,-1.819669],[-44.544768,-1.820469],[-44.547168,-1.823769],[-44.547768,-1.827669],[-44.548968,-1.831069],[-44.550068,-1.834069],[-44.551868,-1.837869],[-44.554768,-1.837669],[-44.555868,-1.833969],[-44.560268,-1.834269],[-44.563868,-1.835469],[-44.563068,-1.830669],[-44.565768,-1.828169],[-44.567368,-1.824569],[-44.565568,-1.820969],[-44.567668,-1.816869],[-44.566368,-1.813369],[-44.565168,-1.809969],[-44.563468,-1.806969],[-44.564568,-1.802569],[-44.567468,-1.799369],[-44.571568,-1.796169],[-44.576268,-1.795369],[-44.580168,-1.793469],[-44.583668,-1.791469],[-44.586468,-1.789169],[-44.589068,-1.785369],[-44.590168,-1.781569],[-44.587268,-1.779469],[-44.583768,-1.778369],[-44.580368,-1.777269],[-44.576568,-1.777269],[-44.573468,-1.776269],[-44.578768,-1.773669],[-44.582668,-1.772369],[-44.586868,-1.771069],[-44.592068,-1.768969],[-44.595368,-1.768169],[-44.598368,-1.768669],[-44.602468,-1.766269],[-44.606668,-1.767169],[-44.611068,-1.766069],[-44.614968,-1.763569],[-44.617168,-1.759969],[-44.614168,-1.757369],[-44.611368,-1.755569],[-44.606368,-1.751669],[-44.603368,-1.750269],[-44.599968,-1.747969],[-44.598468,-1.743669],[-44.601368,-1.739669],[-44.604968,-1.737469],[-44.607568,-1.734969],[-44.610368,-1.732769],[-44.613868,-1.730969],[-44.616568,-1.729669],[-44.620168,-1.727769],[-44.622668,-1.725969],[-44.625568,-1.724469],[-44.638168,-1.717869],[-44.642468,-1.716469],[-44.645768,-1.715669],[-44.648968,-1.715169],[-44.652368,-1.715469],[-44.656768,-1.718469],[-44.658468,-1.720969],[-44.657568,-1.723969],[-44.653768,-1.724869],[-44.651568,-1.727869],[-44.650068,-1.733969],[-44.649068,-1.737969],[-44.648368,-1.741169],[-44.652968,-1.741369],[-44.653368,-1.746369],[-44.652068,-1.750869],[-44.650768,-1.755169],[-44.647568,-1.759269],[-44.646768,-1.763569],[-44.650468,-1.763169],[-44.652968,-1.767169],[-44.654768,-1.770069],[-44.657668,-1.770669],[-44.662268,-1.770669],[-44.663868,-1.767869],[-44.666468,-1.765369],[-44.670068,-1.766369],[-44.673368,-1.767369],[-44.677968,-1.769069],[-44.681568,-1.771469],[-44.685568,-1.770769],[-44.688768,-1.771769],[-44.691568,-1.771169],[-44.694568,-1.770169],[-44.698568,-1.769069],[-44.702968,-1.769669],[-44.704368,-1.773469],[-44.706468,-1.776469],[-44.708668,-1.779769],[-44.710968,-1.784169],[-44.713768,-1.789569],[-44.716968,-1.789969],[-44.720268,-1.788369],[-44.720168,-1.785069],[-44.719768,-1.781169],[-44.723068,-1.780869],[-44.727468,-1.780869],[-44.731368,-1.781269],[-44.734968,-1.782669],[-44.738268,-1.784769],[-44.741068,-1.785869],[-44.745268,-1.786969],[-44.750168,-1.788169],[-44.754568,-1.789469],[-44.757768,-1.788669],[-44.759368,-1.785869],[-44.758068,-1.782369],[-44.754068,-1.780069],[-44.751868,-1.777269],[-44.749068,-1.774069],[-44.745768,-1.771169],[-44.741868,-1.767869],[-44.738268,-1.765069],[-44.735768,-1.763169],[-44.731468,-1.761069],[-44.727768,-1.759269],[-44.724968,-1.756069],[-44.723168,-1.752369],[-44.719768,-1.751269],[-44.717268,-1.749469],[-44.715168,-1.746569],[-44.713968,-1.742769],[-44.710968,-1.740269],[-44.708468,-1.736869],[-44.704668,-1.739369],[-44.702368,-1.737169],[-44.700268,-1.732569],[-44.700268,-1.727769],[-44.702568,-1.723469],[-44.705668,-1.720569],[-44.708668,-1.717869],[-44.712668,-1.714769],[-44.716168,-1.713969],[-44.718168,-1.716569],[-44.720268,-1.718769],[-44.723368,-1.721169],[-44.726668,-1.722069],[-44.731068,-1.721269],[-44.735368,-1.721669],[-44.738668,-1.721769],[-44.742268,-1.720969],[-44.746268,-1.719869],[-44.750468,-1.717969],[-44.754168,-1.717669],[-44.756868,-1.714769],[-44.759168,-1.711469],[-44.760968,-1.708269],[-44.763168,-1.705169],[-44.766768,-1.703469],[-44.770668,-1.703569],[-44.774068,-1.704569],[-44.776768,-1.705469],[-44.779068,-1.708469],[-44.778768,-1.711769],[-44.781668,-1.712869],[-44.786368,-1.710869],[-44.789768,-1.706769],[-44.794968,-1.705469],[-44.798368,-1.702969],[-44.795368,-1.702169],[-44.792868,-1.699269],[-44.789868,-1.694569],[-44.786768,-1.691969],[-44.783768,-1.690269],[-44.780968,-1.689069],[-44.779468,-1.685269],[-44.778368,-1.681669],[-44.774468,-1.679469],[-44.771468,-1.678269],[-44.767468,-1.676169],[-44.764268,-1.674669],[-44.760468,-1.674169],[-44.757368,-1.671669],[-44.753868,-1.668369],[-44.751968,-1.665269],[-44.749768,-1.662069],[-44.748368,-1.658669],[-44.746868,-1.655469],[-44.746868,-1.651269],[-44.744168,-1.652869],[-44.740568,-1.652869],[-44.737568,-1.650669],[-44.732468,-1.649569],[-44.727768,-1.648469],[-44.722368,-1.647969],[-44.716968,-1.647969],[-44.711768,-1.648169],[-44.708268,-1.647569],[-44.705368,-1.643769],[-44.702568,-1.645469],[-44.697168,-1.643769],[-44.692468,-1.642669],[-44.687668,-1.640969],[-44.684368,-1.642669],[-44.681668,-1.643969],[-44.677468,-1.642169],[-44.673868,-1.643969],[-44.671368,-1.646069],[-44.671668,-1.649069],[-44.670768,-1.653369],[-44.667468,-1.657869],[-44.664268,-1.659769],[-44.661268,-1.662069],[-44.658468,-1.659769],[-44.656768,-1.656269],[-44.653768,-1.649769],[-44.649868,-1.638969],[-44.643968,-1.628369],[-44.640068,-1.624369],[-44.637468,-1.620769],[-44.636368,-1.617269],[-44.638168,-1.614169],[-44.640668,-1.609969],[-44.642068,-1.607269],[-44.644268,-1.604269],[-44.647868,-1.601169],[-44.652368,-1.594169],[-44.654868,-1.590469],[-44.657068,-1.587669],[-44.661668,-1.583969],[-44.665868,-1.581169],[-44.668868,-1.578469],[-44.673268,-1.576569],[-44.675368,-1.573569],[-44.676568,-1.570469],[-44.679168,-1.567969],[-44.682468,-1.565969],[-44.686368,-1.565869],[-44.688368,-1.568469],[-44.689468,-1.571269],[-44.691668,-1.574669],[-44.695268,-1.580769],[-44.699868,-1.583169],[-44.703268,-1.583169],[-44.707568,-1.581269],[-44.709568,-1.578569],[-44.707868,-1.574969],[-44.706868,-1.571369],[-44.706868,-1.568469],[-44.706768,-1.565169],[-44.706168,-1.561569],[-44.705368,-1.558269],[-44.705368,-1.553969],[-44.707868,-1.551869],[-44.712268,-1.553269],[-44.715468,-1.554369],[-44.719268,-1.555469],[-44.723368,-1.556669],[-44.725268,-1.559369],[-44.728368,-1.564469],[-44.733968,-1.571269],[-44.739968,-1.576269],[-44.743068,-1.579369],[-44.748068,-1.581569],[-44.750968,-1.583169],[-44.755168,-1.587269],[-44.757668,-1.591169],[-44.762768,-1.594069],[-44.767068,-1.593969],[-44.768768,-1.590969],[-44.768268,-1.587669],[-44.767568,-1.583269],[-44.767868,-1.577869],[-44.768268,-1.572469],[-44.767868,-1.568569],[-44.767168,-1.563769],[-44.770368,-1.561869],[-44.772368,-1.564969],[-44.773668,-1.567769],[-44.775468,-1.572669],[-44.778068,-1.577669],[-44.781968,-1.579869],[-44.787768,-1.580769],[-44.792068,-1.581169],[-44.795768,-1.584369],[-44.799768,-1.587869],[-44.802868,-1.589269],[-44.806968,-1.588669],[-44.810768,-1.586869],[-44.814068,-1.583269],[-44.817368,-1.580769],[-44.819868,-1.578969],[-44.822668,-1.577369],[-44.826868,-1.575669],[-44.831868,-1.573269],[-44.835468,-1.573569],[-44.836568,-1.579069],[-44.836568,-1.583969],[-44.837268,-1.586969],[-44.837368,-1.591269],[-44.838668,-1.595369],[-44.839468,-1.598469],[-44.841268,-1.602369],[-44.842868,-1.604769],[-44.845568,-1.608669],[-44.848768,-1.611869],[-44.852768,-1.616169],[-44.855668,-1.618269],[-44.859968,-1.618369],[-44.863368,-1.614669],[-44.864968,-1.610369],[-44.866968,-1.607469],[-44.869068,-1.604169],[-44.871268,-1.601969],[-44.875168,-1.601669],[-44.879068,-1.601769],[-44.882968,-1.602269],[-44.886268,-1.603169],[-44.889668,-1.603569],[-44.893568,-1.604169],[-44.896568,-1.604969],[-44.899268,-1.606669],[-44.902368,-1.606669],[-44.905168,-1.604769],[-44.908468,-1.601969],[-44.910868,-1.598469],[-44.912068,-1.595569],[-44.912268,-1.591269],[-44.911368,-1.586569],[-44.910968,-1.581869],[-44.912368,-1.578169],[-44.914468,-1.574369],[-44.918068,-1.570969],[-44.917468,-1.565269],[-44.915068,-1.562369],[-44.913468,-1.559469],[-44.912468,-1.556669],[-44.912768,-1.552969],[-44.915068,-1.548669],[-44.916468,-1.543869],[-44.917468,-1.539869],[-44.913468,-1.540669],[-44.908068,-1.538469],[-44.903668,-1.537369],[-44.900368,-1.535569],[-44.898468,-1.531169],[-44.895468,-1.531969],[-44.897068,-1.528669],[-44.894268,-1.525069],[-44.893968,-1.521869],[-44.890768,-1.518669],[-44.890668,-1.514669],[-44.894568,-1.512469],[-44.892368,-1.509069],[-44.888168,-1.508169],[-44.884868,-1.506569],[-44.884068,-1.503769],[-44.881668,-1.500869],[-44.879068,-1.498069],[-44.877768,-1.494969],[-44.880168,-1.491169],[-44.876568,-1.489969],[-44.872668,-1.487969],[-44.874868,-1.484369],[-44.877768,-1.482869],[-44.881368,-1.481469],[-44.884568,-1.480569],[-44.883468,-1.477769],[-44.879068,-1.478469],[-44.874368,-1.480569],[-44.871568,-1.482169],[-44.868668,-1.483569],[-44.864968,-1.485369],[-44.860768,-1.486369],[-44.857868,-1.484969],[-44.854168,-1.484669],[-44.850968,-1.485869],[-44.847068,-1.487769],[-44.843468,-1.487869],[-44.843068,-1.483169],[-44.843468,-1.479169],[-44.841668,-1.470869],[-44.840168,-1.462269],[-44.838968,-1.456869],[-44.837868,-1.451069],[-44.836968,-1.447469],[-44.836168,-1.443769],[-44.835168,-1.440269],[-44.832868,-1.437269],[-44.830368,-1.433269],[-44.830668,-1.428269],[-44.834368,-1.424469],[-44.837568,-1.421369],[-44.841468,-1.418869],[-44.845868,-1.416169],[-44.849468,-1.414569],[-44.853868,-1.412569],[-44.857168,-1.411969],[-44.860068,-1.411369],[-44.862968,-1.412369],[-44.866568,-1.413669],[-44.870268,-1.414269],[-44.873368,-1.415269],[-44.876068,-1.416969],[-44.879968,-1.418469],[-44.883068,-1.419169],[-44.885268,-1.421669],[-44.881368,-1.424169],[-44.883768,-1.426169],[-44.883868,-1.429769],[-44.884168,-1.433869],[-44.885268,-1.437969],[-44.887468,-1.442369],[-44.892468,-1.442669],[-44.896268,-1.445169],[-44.898968,-1.446269],[-44.901568,-1.449569],[-44.906268,-1.452869],[-44.910168,-1.454969],[-44.911968,-1.457369],[-44.913368,-1.460069],[-44.916168,-1.460869],[-44.920368,-1.462969],[-44.922168,-1.467269],[-44.923568,-1.469869],[-44.926068,-1.472369],[-44.929668,-1.474869],[-44.933568,-1.477069],[-44.935568,-1.480269],[-44.935768,-1.483869],[-44.935768,-1.488269],[-44.939068,-1.490469],[-44.942368,-1.490269],[-44.946068,-1.490869],[-44.949868,-1.491169],[-44.953568,-1.491169],[-44.954568,-1.484769],[-44.949368,-1.482869],[-44.951568,-1.479669],[-44.954968,-1.477769],[-44.958168,-1.474469],[-44.962868,-1.474469],[-44.966168,-1.475569],[-44.969268,-1.478369],[-44.971368,-1.482469],[-44.972868,-1.485569],[-44.974168,-1.489069],[-44.974468,-1.495169],[-44.973868,-1.499169],[-44.972368,-1.503469],[-44.966968,-1.510669],[-44.963968,-1.512169],[-44.960168,-1.514069],[-44.956868,-1.518769],[-44.953468,-1.524269],[-44.951068,-1.529269],[-44.949268,-1.534769],[-44.948168,-1.538369],[-44.947968,-1.541669],[-44.948568,-1.548269],[-44.949268,-1.553069],[-44.951068,-1.557269],[-44.953568,-1.560169],[-44.957068,-1.560769],[-44.960168,-1.559469],[-44.962868,-1.557169],[-44.963268,-1.554069],[-44.961868,-1.551069],[-44.961168,-1.543369],[-44.962268,-1.539969],[-44.963668,-1.536169],[-44.966268,-1.532869],[-44.970668,-1.529469],[-44.975868,-1.527269],[-44.979768,-1.525069],[-44.982168,-1.527869],[-44.985068,-1.529469],[-44.989668,-1.530669],[-44.993668,-1.533069],[-44.996968,-1.534769],[-45.000868,-1.534869],[-45.005168,-1.533369],[-45.007768,-1.529869],[-45.008468,-1.524769],[-45.007068,-1.520769],[-45.003468,-1.519369],[-45.000168,-1.517869],[-44.996668,-1.516269],[-44.992268,-1.514369],[-44.990068,-1.511069],[-44.993068,-1.506769],[-44.994068,-1.502469],[-44.997168,-1.500469],[-44.999868,-1.498069],[-45.001268,-1.494469],[-45.002468,-1.491069],[-45.004368,-1.488369],[-45.006668,-1.486169],[-45.011068,-1.485769],[-45.014868,-1.485369],[-45.018168,-1.487269],[-45.020468,-1.491069],[-45.023968,-1.491369],[-45.028768,-1.492469],[-45.033468,-1.491869],[-45.038668,-1.490569],[-45.042768,-1.491069],[-45.046168,-1.490769],[-45.049768,-1.488569],[-45.052868,-1.486769],[-45.056068,-1.483369],[-45.061268,-1.482469],[-45.064968,-1.482769],[-45.069568,-1.480169],[-45.070168,-1.474569],[-45.070268,-1.470369],[-45.070968,-1.467569],[-45.079068,-1.460369],[-45.084268,-1.458269],[-45.087968,-1.457169],[-45.091268,-1.456269],[-45.095868,-1.455969],[-45.097568,-1.459869],[-45.098968,-1.462569],[-45.100068,-1.467569],[-45.102368,-1.471969],[-45.106668,-1.474469],[-45.110268,-1.475269],[-45.115868,-1.476169],[-45.120068,-1.476369],[-45.122968,-1.476969],[-45.126068,-1.478969],[-45.129068,-1.480669],[-45.131668,-1.483969],[-45.135968,-1.484969],[-45.140468,-1.483969],[-45.143768,-1.481769],[-45.145668,-1.477569],[-45.148168,-1.473769],[-45.150368,-1.470969],[-45.153668,-1.470869],[-45.156968,-1.473369],[-45.160268,-1.477469],[-45.162868,-1.482069],[-45.165668,-1.485369],[-45.166468,-1.488569],[-45.169968,-1.491869],[-45.173568,-1.494169],[-45.177768,-1.495769],[-45.181968,-1.495769],[-45.184868,-1.495269],[-45.187668,-1.493869],[-45.191268,-1.488969],[-45.196768,-1.488269],[-45.199868,-1.491869],[-45.201768,-1.495769],[-45.202168,-1.499669],[-45.203168,-1.505969],[-45.203468,-1.510369],[-45.203968,-1.513969],[-45.205468,-1.518469],[-45.207268,-1.521069],[-45.211168,-1.525469],[-45.212068,-1.528369],[-45.212968,-1.531769],[-45.215568,-1.534169],[-45.217368,-1.536669],[-45.219868,-1.538169],[-45.222268,-1.540669],[-45.225368,-1.542469],[-45.227868,-1.544569],[-45.231068,-1.547169],[-45.232468,-1.551069],[-45.234968,-1.554369],[-45.236368,-1.557969],[-45.236368,-1.561669],[-45.239968,-1.564069],[-45.241668,-1.567969],[-45.242268,-1.570969],[-45.243868,-1.573469],[-45.246868,-1.576369],[-45.248868,-1.581169],[-45.249368,-1.585969],[-45.251668,-1.588969],[-45.254168,-1.591569],[-45.257968,-1.594169],[-45.260968,-1.595969],[-45.263868,-1.597569],[-45.269068,-1.598469],[-45.272968,-1.598669],[-45.277568,-1.598669],[-45.285868,-1.598069],[-45.290268,-1.598069],[-45.293668,-1.598469],[-45.297168,-1.599169],[-45.301868,-1.599469],[-45.306168,-1.599469],[-45.310568,-1.599469],[-45.316368,-1.598469],[-45.321268,-1.597769],[-45.325668,-1.596369],[-45.329668,-1.595369],[-45.334768,-1.594269],[-45.337868,-1.593669],[-45.342068,-1.590169],[-45.343368,-1.586769],[-45.341768,-1.582869],[-45.340568,-1.578469],[-45.338368,-1.575469],[-45.336968,-1.572369],[-45.336268,-1.568569],[-45.334668,-1.565169],[-45.330368,-1.562369],[-45.323868,-1.560169],[-45.319568,-1.557169],[-45.318468,-1.553869],[-45.319368,-1.549369],[-45.321568,-1.545369],[-45.320468,-1.542469],[-45.315968,-1.533869],[-45.315568,-1.528369],[-45.315568,-1.522169],[-45.314868,-1.517869],[-45.313368,-1.514669],[-45.310768,-1.512069],[-45.308768,-1.507769],[-45.308568,-1.503769],[-45.308268,-1.497969],[-45.311268,-1.492669],[-45.314368,-1.489169],[-45.316668,-1.486069],[-45.320668,-1.483269],[-45.323768,-1.481769],[-45.328268,-1.480369],[-45.330968,-1.479269],[-45.337668,-1.477569],[-45.340368,-1.478669],[-45.343668,-1.480269],[-45.347368,-1.478969],[-45.350268,-1.476669],[-45.351768,-1.473969],[-45.356168,-1.471769],[-45.361168,-1.472869],[-45.364968,-1.473469],[-45.368268,-1.473369],[-45.371568,-1.474169],[-45.374768,-1.476269],[-45.378068,-1.478069],[-45.381768,-1.478869],[-45.384968,-1.478169],[-45.387968,-1.475869],[-45.388168,-1.472269],[-45.384368,-1.467569],[-45.379568,-1.464669],[-45.374968,-1.462069],[-45.372268,-1.460869],[-45.368068,-1.459569],[-45.364168,-1.457969],[-45.360568,-1.456869],[-45.356368,-1.455469],[-45.351668,-1.453169],[-45.345968,-1.451069],[-45.342568,-1.450369],[-45.338968,-1.450169],[-45.335468,-1.449269],[-45.332068,-1.447969],[-45.327168,-1.446269],[-45.322068,-1.443769],[-45.317368,-1.441669],[-45.313068,-1.439069],[-45.308868,-1.437969],[-45.302168,-1.438769],[-45.299468,-1.435569],[-45.298968,-1.432769],[-45.298668,-1.429369],[-45.298568,-1.425469],[-45.298268,-1.422469],[-45.297868,-1.416169],[-45.297868,-1.413069],[-45.298168,-1.408469],[-45.298668,-1.403369],[-45.299668,-1.398369],[-45.300768,-1.393969],[-45.301868,-1.389669],[-45.303068,-1.385969],[-45.306868,-1.384969],[-45.309768,-1.383469],[-45.312268,-1.381569],[-45.313268,-1.377369],[-45.313368,-1.373069],[-45.310568,-1.370569],[-45.308268,-1.367469],[-45.307468,-1.362469],[-45.306968,-1.357469],[-45.305868,-1.352069],[-45.305868,-1.348469],[-45.307968,-1.344869],[-45.310468,-1.342569],[-45.310768,-1.339369],[-45.305868,-1.337969],[-45.306168,-1.335069],[-45.309368,-1.332169],[-45.318768,-1.325469],[-45.326768,-1.320469],[-45.332268,-1.317669],[-45.338368,-1.314869],[-45.342668,-1.313569],[-45.347568,-1.312669],[-45.352068,-1.313369],[-45.356668,-1.315469],[-45.361168,-1.318069],[-45.364468,-1.322069],[-45.366168,-1.325469],[-45.364968,-1.328569],[-45.359668,-1.330469],[-45.356468,-1.331769],[-45.354168,-1.335169],[-45.351368,-1.339069],[-45.348668,-1.342069],[-45.346168,-1.344169],[-45.345368,-1.347569],[-45.349268,-1.346969],[-45.352868,-1.345969],[-45.356668,-1.346669],[-45.358068,-1.349869],[-45.360368,-1.353169],[-45.361068,-1.357769],[-45.362968,-1.360669],[-45.366068,-1.362169],[-45.369368,-1.363269],[-45.371968,-1.364669],[-45.375868,-1.366369],[-45.376368,-1.370269],[-45.376268,-1.374869],[-45.375468,-1.378869],[-45.370868,-1.380669],[-45.374368,-1.383769],[-45.372368,-1.388469],[-45.376868,-1.387369],[-45.378568,-1.390669],[-45.377168,-1.393569],[-45.374168,-1.394369],[-45.371568,-1.396069],[-45.374768,-1.399069],[-45.377668,-1.401469],[-45.381368,-1.403169],[-45.384668,-1.404469],[-45.387968,-1.408069],[-45.390168,-1.412269],[-45.392668,-1.414169],[-45.396168,-1.414469],[-45.402568,-1.419169],[-45.407368,-1.421769],[-45.412068,-1.423169],[-45.415868,-1.423369],[-45.419168,-1.422469],[-45.420868,-1.419969],[-45.424468,-1.419269],[-45.427468,-1.422469],[-45.429968,-1.424669],[-45.433368,-1.428069],[-45.436668,-1.430069],[-45.439168,-1.434069],[-45.440568,-1.437769],[-45.441968,-1.440769],[-45.443168,-1.443469],[-45.445568,-1.448169],[-45.449068,-1.452069],[-45.454868,-1.452969],[-45.456868,-1.455669],[-45.456468,-1.458569],[-45.456568,-1.462569],[-45.457868,-1.468069],[-45.459768,-1.471669],[-45.462368,-1.474469],[-45.465468,-1.477569],[-45.470368,-1.479169],[-45.475268,-1.479669],[-45.478368,-1.479669],[-45.481668,-1.478869],[-45.484468,-1.477369],[-45.486968,-1.474469],[-45.488668,-1.470569],[-45.486768,-1.466169],[-45.484968,-1.462569],[-45.481368,-1.459369],[-45.480568,-1.453769],[-45.480668,-1.450269],[-45.482568,-1.447069],[-45.485568,-1.444669],[-45.487168,-1.442069],[-45.486368,-1.439169],[-45.484468,-1.436969],[-45.484368,-1.433669],[-45.483368,-1.429669],[-45.482268,-1.425369],[-45.482468,-1.421069],[-45.485268,-1.419169],[-45.484168,-1.413469],[-45.483568,-1.409169],[-45.482468,-1.405969],[-45.480668,-1.402269],[-45.478568,-1.397869],[-45.477468,-1.392969],[-45.477768,-1.387369],[-45.477068,-1.381769],[-45.476468,-1.377669],[-45.474968,-1.373369],[-45.471168,-1.370069],[-45.467968,-1.367769],[-45.464768,-1.366069],[-45.460468,-1.365769],[-45.456468,-1.365369],[-45.453468,-1.367669],[-45.449168,-1.367069],[-45.445168,-1.363869],[-45.442368,-1.362769],[-45.439968,-1.360269],[-45.437668,-1.357069],[-45.435168,-1.354969],[-45.433068,-1.352069],[-45.429368,-1.354269],[-45.424668,-1.353469],[-45.420768,-1.351669],[-45.416468,-1.346669],[-45.414268,-1.343769],[-45.413068,-1.340969],[-45.410968,-1.336169],[-45.409468,-1.332669],[-45.408368,-1.328869],[-45.407368,-1.324669],[-45.407368,-1.321569],[-45.407268,-1.316569],[-45.407768,-1.312369],[-45.408068,-1.308769],[-45.408468,-1.305869],[-45.410568,-1.301369],[-45.413468,-1.297869],[-45.416668,-1.295769],[-45.419468,-1.294969],[-45.422868,-1.294569],[-45.428068,-1.293969],[-45.431868,-1.293369],[-45.435168,-1.293069],[-45.439168,-1.292769],[-45.443868,-1.292569],[-45.448268,-1.293169],[-45.452668,-1.294769],[-45.456468,-1.296969],[-45.458768,-1.298969],[-45.460768,-1.301169],[-45.461268,-1.303969],[-45.459568,-1.306669],[-45.455168,-1.308569],[-45.451368,-1.309369],[-45.447168,-1.310169],[-45.449668,-1.315169],[-45.453268,-1.316869],[-45.456768,-1.318569],[-45.460968,-1.317469],[-45.465468,-1.319069],[-45.468668,-1.320969],[-45.472368,-1.322469],[-45.475968,-1.325469],[-45.477268,-1.330369],[-45.477068,-1.335469],[-45.479268,-1.337869],[-45.481668,-1.339569],[-45.484268,-1.342669],[-45.486668,-1.344469],[-45.491168,-1.346969],[-45.495768,-1.353869],[-45.495768,-1.350269],[-45.496968,-1.347369],[-45.499368,-1.350969],[-45.500568,-1.353969],[-45.498268,-1.357469],[-45.498268,-1.360869],[-45.500568,-1.364369],[-45.501668,-1.368269],[-45.502068,-1.372369],[-45.504068,-1.376369],[-45.508068,-1.377969],[-45.512768,-1.377969],[-45.517068,-1.376269],[-45.519868,-1.372469],[-45.522068,-1.369669],[-45.523768,-1.367169],[-45.525468,-1.363669],[-45.526468,-1.357569],[-45.525368,-1.353169],[-45.524068,-1.347269],[-45.523968,-1.343469],[-45.522168,-1.336469],[-45.521168,-1.332569],[-45.520068,-1.329369],[-45.519368,-1.324969],[-45.519068,-1.319569],[-45.517368,-1.316669],[-45.515468,-1.311269],[-45.515368,-1.306969],[-45.517168,-1.303269],[-45.520068,-1.301069],[-45.523368,-1.302269],[-45.525468,-1.306169],[-45.528468,-1.308569],[-45.531968,-1.309069],[-45.535068,-1.308369],[-45.538468,-1.305869],[-45.541668,-1.303369],[-45.545268,-1.300769],[-45.546868,-1.296369],[-45.546468,-1.287069],[-45.547568,-1.283969],[-45.548268,-1.281169],[-45.549368,-1.276769],[-45.552168,-1.277869],[-45.554768,-1.281169],[-45.559068,-1.283969],[-45.563768,-1.285669],[-45.568468,-1.286669],[-45.574068,-1.287469],[-45.576868,-1.290669],[-45.579568,-1.293669],[-45.582368,-1.295569],[-45.587368,-1.298069],[-45.590368,-1.299769],[-45.592068,-1.302469],[-45.598368,-1.298569],[-45.596268,-1.294669],[-45.592268,-1.289769],[-45.589768,-1.286669],[-45.587268,-1.283469],[-45.585668,-1.279869],[-45.585068,-1.275769],[-45.585868,-1.272269],[-45.587968,-1.270069],[-45.591668,-1.268269],[-45.594768,-1.267369],[-45.597268,-1.268769],[-45.600268,-1.270769],[-45.604168,-1.272269],[-45.606968,-1.273169],[-45.612168,-1.274869],[-45.617168,-1.276969],[-45.621368,-1.279869],[-45.624368,-1.282369],[-45.628868,-1.283769],[-45.633468,-1.282669],[-45.637368,-1.280569],[-45.639668,-1.277969],[-45.640768,-1.275069],[-45.641768,-1.272269],[-45.641468,-1.269269],[-45.637668,-1.264069],[-45.635268,-1.258169],[-45.635768,-1.254969],[-45.633868,-1.251269],[-45.633468,-1.246569],[-45.633868,-1.243669],[-45.634968,-1.239969],[-45.637468,-1.236169],[-45.641468,-1.232269],[-45.643168,-1.229969],[-45.643768,-1.225969],[-45.643168,-1.221769],[-45.641068,-1.217269],[-45.640068,-1.212869],[-45.639568,-1.208269],[-45.638168,-1.204269],[-45.637868,-1.199969],[-45.637468,-1.196269],[-45.636368,-1.192469],[-45.634568,-1.189669],[-45.631368,-1.186969],[-45.627168,-1.184769],[-45.622168,-1.182669],[-45.618668,-1.180869],[-45.616568,-1.177469],[-45.615568,-1.173869],[-45.614968,-1.170269],[-45.614068,-1.166769],[-45.613568,-1.162869],[-45.613568,-1.159269],[-45.614368,-1.155869],[-45.615768,-1.150969],[-45.617168,-1.147369],[-45.617768,-1.143169],[-45.617968,-1.138169],[-45.618668,-1.135169],[-45.621668,-1.131869],[-45.624768,-1.127969],[-45.627968,-1.124969],[-45.630968,-1.124469],[-45.629568,-1.127969],[-45.627768,-1.130669],[-45.628468,-1.133869],[-45.629168,-1.137169],[-45.630268,-1.140969],[-45.632668,-1.145169],[-45.634568,-1.148369],[-45.634868,-1.152669],[-45.636268,-1.157669],[-45.637068,-1.161369],[-45.637368,-1.165869],[-45.638568,-1.169969],[-45.640368,-1.172769],[-45.642068,-1.176069],[-45.643168,-1.180469],[-45.644768,-1.187969],[-45.646168,-1.195769],[-45.647368,-1.203569],[-45.647968,-1.209069],[-45.648268,-1.214569],[-45.647568,-1.222269],[-45.646768,-1.226969],[-45.646568,-1.232569],[-45.647868,-1.236369],[-45.649868,-1.239669],[-45.654768,-1.241469],[-45.657668,-1.245869],[-45.663968,-1.253769],[-45.666668,-1.255269],[-45.669568,-1.258469],[-45.673368,-1.261769],[-45.676468,-1.263969],[-45.680268,-1.265769],[-45.683868,-1.269069],[-45.686868,-1.272269],[-45.690968,-1.273669],[-45.695968,-1.273169],[-45.699668,-1.272569],[-45.702968,-1.271269],[-45.706468,-1.270069],[-45.708768,-1.267969],[-45.711168,-1.265669],[-45.713368,-1.262869],[-45.716268,-1.260169],[-45.719468,-1.256369],[-45.721768,-1.252669],[-45.723668,-1.249469],[-45.724968,-1.246569],[-45.726668,-1.241069],[-45.727268,-1.236769],[-45.730568,-1.235569],[-45.733968,-1.235069],[-45.735068,-1.231969],[-45.735768,-1.228669],[-45.737168,-1.222869],[-45.737168,-1.219569],[-45.735368,-1.215669],[-45.735368,-1.211469],[-45.735668,-1.207369],[-45.733968,-1.203569],[-45.732568,-1.200669],[-45.728668,-1.194869],[-45.726768,-1.192069],[-45.725268,-1.189169],[-45.722568,-1.185569],[-45.719268,-1.182269],[-45.716668,-1.178569],[-45.714268,-1.175069],[-45.711568,-1.172569],[-45.707968,-1.169269],[-45.705368,-1.165269],[-45.702468,-1.162769],[-45.699868,-1.161369],[-45.698768,-1.158469],[-45.696768,-1.155069],[-45.692368,-1.151769],[-45.690968,-1.146569],[-45.692068,-1.141569],[-45.694068,-1.138169],[-45.696268,-1.135469],[-45.698468,-1.133269],[-45.701568,-1.130969],[-45.704668,-1.128069],[-45.707668,-1.125169],[-45.709868,-1.123069],[-45.713268,-1.119169],[-45.717068,-1.117169],[-45.718968,-1.114369],[-45.720268,-1.110769],[-45.724868,-1.110369],[-45.726968,-1.113569],[-45.726968,-1.117169],[-45.726668,-1.120069],[-45.724868,-1.123569],[-45.724768,-1.128769],[-45.728868,-1.128869],[-45.731368,-1.130469],[-45.730268,-1.134969],[-45.734468,-1.136869],[-45.739068,-1.138469],[-45.742268,-1.141369],[-45.742968,-1.146069],[-45.744368,-1.152269],[-45.746668,-1.154569],[-45.748868,-1.158369],[-45.749468,-1.163169],[-45.752068,-1.165869],[-45.755968,-1.166769],[-45.757368,-1.171869],[-45.759168,-1.175369],[-45.759868,-1.180069],[-45.758868,-1.184369],[-45.761768,-1.188769],[-45.763568,-1.191969],[-45.764668,-1.195169],[-45.767868,-1.198469],[-45.771868,-1.198169],[-45.777668,-1.197469],[-45.781268,-1.193869],[-45.784468,-1.190269],[-45.788468,-1.187669],[-45.792568,-1.185469],[-45.795768,-1.183069],[-45.798968,-1.180469],[-45.799968,-1.177569],[-45.800768,-1.174169],[-45.801868,-1.169969],[-45.800868,-1.166369],[-45.802268,-1.161769],[-45.806568,-1.163169],[-45.809468,-1.164269],[-45.814368,-1.164569],[-45.817968,-1.166669],[-45.821368,-1.169969],[-45.825668,-1.174369],[-45.828968,-1.176869],[-45.829268,-1.181169],[-45.830668,-1.187169],[-45.829568,-1.191569],[-45.827968,-1.194869],[-45.826068,-1.197969],[-45.825668,-1.201869],[-45.830668,-1.205769],[-45.834268,-1.203969],[-45.838668,-1.201269],[-45.840868,-1.204869],[-45.841568,-1.208269],[-45.843668,-1.211769],[-45.846668,-1.213469],[-45.850068,-1.213769],[-45.856468,-1.213969],[-45.860568,-1.213469],[-45.864368,-1.211169],[-45.866868,-1.207969],[-45.868268,-1.203869],[-45.867968,-1.200469],[-45.865068,-1.197069],[-45.863668,-1.192369],[-45.862768,-1.187969],[-45.862468,-1.184969],[-45.862968,-1.181369],[-45.866668,-1.183569],[-45.869668,-1.186369],[-45.871068,-1.189469],[-45.874368,-1.191869],[-45.874468,-1.187669],[-45.872968,-1.183869],[-45.870268,-1.179969],[-45.868668,-1.174769],[-45.869768,-1.171369],[-45.874968,-1.171469],[-45.879868,-1.173969],[-45.883268,-1.176569],[-45.883068,-1.172869],[-45.882168,-1.168869],[-45.880468,-1.164869],[-45.877468,-1.161669],[-45.874468,-1.158669],[-45.872468,-1.155869],[-45.871668,-1.152969],[-45.875468,-1.149569],[-45.879468,-1.148469],[-45.882368,-1.149069],[-45.884868,-1.150869],[-45.887668,-1.153969],[-45.889968,-1.155969],[-45.893168,-1.158669],[-45.897368,-1.163469],[-45.900868,-1.168169],[-45.906768,-1.171069],[-45.911268,-1.165669],[-45.909168,-1.163369],[-45.906768,-1.159869],[-45.904768,-1.156269],[-45.901568,-1.152569],[-45.899568,-1.149769],[-45.896468,-1.147969],[-45.892968,-1.146269],[-45.889568,-1.145469],[-45.886568,-1.143269],[-45.883268,-1.141069],[-45.880468,-1.137769],[-45.878068,-1.134069],[-45.874368,-1.133869],[-45.870068,-1.133069],[-45.865468,-1.130969],[-45.863668,-1.125569],[-45.865068,-1.121569],[-45.867768,-1.118869],[-45.865768,-1.115069],[-45.864468,-1.108569],[-45.862168,-1.106369],[-45.858868,-1.104969],[-45.854968,-1.103169],[-45.849768,-1.100669],[-45.848068,-1.097069],[-45.847268,-1.092869],[-45.845868,-1.089469],[-45.844468,-1.086169],[-45.843468,-1.081769],[-45.843668,-1.078569],[-45.843768,-1.075669],[-45.844268,-1.072469],[-45.844868,-1.069269],[-45.845968,-1.066369],[-45.847868,-1.062169],[-45.849768,-1.058269],[-45.852468,-1.054669],[-45.854968,-1.051969],[-45.858068,-1.050469],[-45.861368,-1.049669],[-45.864668,-1.049469],[-45.867568,-1.050069],[-45.871668,-1.053669],[-45.872168,-1.059369],[-45.874168,-1.063069],[-45.875968,-1.067669],[-45.873768,-1.070169],[-45.871068,-1.072169],[-45.873268,-1.075669],[-45.877968,-1.076269],[-45.882768,-1.078169],[-45.886068,-1.080969],[-45.887768,-1.083969],[-45.889268,-1.086769],[-45.890768,-1.089769],[-45.891768,-1.093169],[-45.894368,-1.096669],[-45.895968,-1.100269],[-45.895768,-1.104269],[-45.894868,-1.107569],[-45.895168,-1.111369],[-45.896168,-1.115269],[-45.898968,-1.118669],[-45.902868,-1.121869],[-45.904868,-1.126269],[-45.906468,-1.130169],[-45.907668,-1.133169],[-45.909468,-1.136069],[-45.911268,-1.139669],[-45.913168,-1.142669],[-45.915968,-1.146769],[-45.918968,-1.151969],[-45.923968,-1.160369],[-45.930168,-1.171069],[-45.935168,-1.177469],[-45.938368,-1.181669],[-45.939868,-1.184369],[-45.941268,-1.187369],[-45.942768,-1.189869],[-45.944668,-1.193269],[-45.946368,-1.196569],[-45.945568,-1.200669],[-45.948268,-1.202669],[-45.952868,-1.202469],[-45.954668,-1.199669],[-45.957168,-1.195969],[-45.956568,-1.192069],[-45.953568,-1.188069],[-45.953968,-1.182969],[-45.956868,-1.185469],[-45.957968,-1.178869],[-45.958168,-1.174369],[-45.956768,-1.171469],[-45.954968,-1.166969],[-45.954868,-1.162269],[-45.958768,-1.159869],[-45.957668,-1.155869],[-45.955468,-1.151969],[-45.953768,-1.147869],[-45.951868,-1.143669],[-45.953268,-1.140369],[-45.957568,-1.140769],[-45.961768,-1.140769],[-45.964468,-1.138169],[-45.964268,-1.134869],[-45.961568,-1.130469],[-45.960368,-1.125269],[-45.962268,-1.122669],[-45.960968,-1.118069],[-45.961468,-1.112469],[-45.963668,-1.109669],[-45.968168,-1.108669],[-45.970868,-1.110269],[-45.974768,-1.112569],[-45.978168,-1.115469],[-45.981468,-1.115069],[-45.982868,-1.111369],[-45.981768,-1.106469],[-45.982168,-1.102769],[-45.981068,-1.099769],[-45.978368,-1.095569],[-45.974868,-1.092569],[-45.971268,-1.091169],[-45.968168,-1.088269],[-45.968368,-1.084369],[-45.968668,-1.081269],[-45.969768,-1.077369],[-45.972268,-1.073169],[-45.974568,-1.070969],[-45.975668,-1.067969],[-45.978168,-1.065169],[-45.983268,-1.065569],[-45.981768,-1.062969],[-45.979268,-1.061369],[-45.976368,-1.060869],[-45.973968,-1.062369],[-45.970668,-1.064869],[-45.967068,-1.063769],[-45.964868,-1.060469],[-45.964568,-1.056869],[-45.966468,-1.054369],[-45.968768,-1.052569],[-45.972568,-1.050569],[-45.977068,-1.049469],[-45.981068,-1.049469],[-45.987168,-1.050069],[-45.991168,-1.051469],[-45.994068,-1.052569],[-45.996568,-1.055169],[-45.998068,-1.058269],[-45.997768,-1.061569],[-45.996968,-1.065469],[-45.999368,-1.068769],[-46.002368,-1.072469],[-46.002968,-1.076069],[-46.006668,-1.079069],[-46.011868,-1.080069],[-46.016268,-1.079269],[-46.020668,-1.083269],[-46.021768,-1.085969],[-46.022968,-1.088969],[-46.024068,-1.092569],[-46.026568,-1.096369],[-46.028968,-1.098469],[-46.031268,-1.101169],[-46.033968,-1.104769],[-46.036768,-1.109969],[-46.040368,-1.112469],[-46.041968,-1.115869],[-46.046068,-1.121069],[-46.045868,-1.124969],[-46.042768,-1.130569],[-46.042168,-1.133569],[-46.042268,-1.140369],[-46.044268,-1.149769],[-46.043968,-1.153369],[-46.038168,-1.164169],[-46.037368,-1.167269],[-46.037268,-1.170369],[-46.039268,-1.173369],[-46.040368,-1.169769],[-46.043068,-1.165869],[-46.045068,-1.161469],[-46.048968,-1.150069],[-46.048968,-1.142869],[-46.051068,-1.140469],[-46.052468,-1.135969],[-46.053668,-1.131369],[-46.057568,-1.132369],[-46.060768,-1.136069],[-46.062668,-1.141769],[-46.064668,-1.144269],[-46.065568,-1.147969],[-46.065268,-1.154769],[-46.066968,-1.160569],[-46.068868,-1.151169],[-46.072968,-1.155969],[-46.074968,-1.160969],[-46.076268,-1.166969],[-46.076568,-1.170669],[-46.074968,-1.185269],[-46.074968,-1.189369],[-46.077068,-1.196269],[-46.081168,-1.196869],[-46.085368,-1.196769],[-46.087868,-1.198269],[-46.092568,-1.201469],[-46.103968,-1.202069],[-46.098068,-1.195969],[-46.093368,-1.180769],[-46.087568,-1.158369],[-46.087068,-1.134369],[-46.081768,-1.126569],[-46.080068,-1.121969],[-46.075768,-1.115569],[-46.063568,-1.105869],[-46.061368,-1.100969],[-46.062268,-1.095969],[-46.063768,-1.091969],[-46.064568,-1.089069],[-46.065968,-1.086169],[-46.068068,-1.084269],[-46.069568,-1.081769],[-46.071368,-1.078569],[-46.074568,-1.074569],[-46.077068,-1.070569],[-46.079668,-1.066969],[-46.081868,-1.064869],[-46.080768,-1.062169],[-46.081568,-1.059369],[-46.085468,-1.059469],[-46.089268,-1.061069],[-46.092668,-1.059769],[-46.093668,-1.056869],[-46.093168,-1.053869],[-46.089868,-1.049969],[-46.085768,-1.048269],[-46.082068,-1.047569],[-46.078268,-1.047269],[-46.074368,-1.046869],[-46.072068,-1.044269],[-46.071268,-1.040669],[-46.069868,-1.037069],[-46.070968,-1.033369],[-46.073268,-1.030069],[-46.076268,-1.026169],[-46.080368,-1.022869],[-46.084668,-1.020769],[-46.087568,-1.019869],[-46.090868,-1.019769],[-46.094868,-1.021069],[-46.099168,-1.024269],[-46.101968,-1.027869],[-46.104468,-1.031169],[-46.107768,-1.033369],[-46.110268,-1.036369],[-46.109668,-1.039569],[-46.113268,-1.038169],[-46.116368,-1.038169],[-46.119468,-1.039169],[-46.123768,-1.040969],[-46.127068,-1.044569],[-46.130568,-1.047169],[-46.134368,-1.051369],[-46.137168,-1.053869],[-46.140368,-1.057169],[-46.143968,-1.063069],[-46.146768,-1.068469],[-46.148268,-1.071669],[-46.149468,-1.075969],[-46.150368,-1.079969],[-46.150368,-1.084669],[-46.152268,-1.087969],[-46.155168,-1.089569],[-46.159568,-1.089869],[-46.164168,-1.089069],[-46.168668,-1.087269],[-46.171368,-1.083969],[-46.170668,-1.077969],[-46.170068,-1.073969],[-46.168968,-1.071269],[-46.166368,-1.067969],[-46.163068,-1.065869],[-46.159868,-1.064469],[-46.155868,-1.063069],[-46.153768,-1.060469],[-46.152568,-1.056569],[-46.150968,-1.051969],[-46.151468,-1.048369],[-46.150668,-1.044769],[-46.150468,-1.041669],[-46.151168,-1.038169],[-46.153468,-1.034269],[-46.156768,-1.031769],[-46.156168,-1.027369],[-46.156968,-1.022269],[-46.156268,-1.019269],[-46.156768,-1.015969],[-46.158868,-1.008869],[-46.159868,-1.005969],[-46.163668,-1.002469],[-46.166368,-1.000869],[-46.169268,-0.999769],[-46.172868,-0.999369],[-46.176168,-1.000469],[-46.178968,-1.003369],[-46.180568,-1.006369],[-46.181968,-1.009269],[-46.183368,-1.012969],[-46.185868,-1.023769],[-46.186568,-1.028369],[-46.186668,-1.033369],[-46.186268,-1.038169],[-46.185268,-1.043669],[-46.184768,-1.048369],[-46.184068,-1.052969],[-46.184768,-1.056869],[-46.184968,-1.061369],[-46.186868,-1.066969],[-46.188468,-1.072169],[-46.190468,-1.076069],[-46.193468,-1.079569],[-46.197868,-1.082869],[-46.201068,-1.084769],[-46.203468,-1.086569],[-46.206868,-1.088769],[-46.210468,-1.092069],[-46.213468,-1.095669],[-46.216168,-1.098169],[-46.218768,-1.099569],[-46.222568,-1.101369],[-46.226368,-1.103169],[-46.229268,-1.104269],[-46.235868,-1.103169],[-46.239468,-1.099969],[-46.236968,-1.094869],[-46.231968,-1.088669],[-46.225668,-1.082569],[-46.218468,-1.074269],[-46.212868,-1.069969],[-46.208268,-1.067469],[-46.205368,-1.062269],[-46.204568,-1.057169],[-46.204668,-1.053069],[-46.205368,-1.049169],[-46.206168,-1.044169],[-46.207268,-1.037469],[-46.209568,-1.033469],[-46.212968,-1.029769],[-46.215168,-1.026769],[-46.215868,-1.023169],[-46.215968,-1.019669],[-46.216768,-1.016569],[-46.217668,-1.013469],[-46.218368,-1.009069],[-46.218368,-1.005569],[-46.218068,-1.002469],[-46.218368,-0.999369],[-46.217668,-0.995869],[-46.217668,-0.992469],[-46.218368,-0.989669],[-46.221168,-0.988969],[-46.221668,-0.985369],[-46.218368,-0.982869],[-46.214368,-0.980369],[-46.210468,-0.976669],[-46.208168,-0.973669],[-46.205168,-0.970969],[-46.202468,-0.968469],[-46.200168,-0.965369],[-46.197968,-0.962069],[-46.194868,-0.958969],[-46.192668,-0.956169],[-46.191568,-0.951869],[-46.189868,-0.948569],[-46.186868,-0.949269],[-46.183768,-0.951569],[-46.179968,-0.952169],[-46.177468,-0.950169],[-46.176068,-0.946269],[-46.175868,-0.941369],[-46.176668,-0.935469],[-46.177168,-0.930869],[-46.177468,-0.927969],[-46.177568,-0.923969],[-46.178068,-0.920369],[-46.178568,-0.917169],[-46.179368,-0.914169],[-46.181168,-0.910569],[-46.185768,-0.905069],[-46.188068,-0.902369],[-46.190968,-0.899569],[-46.193868,-0.896869],[-46.196368,-0.893469],[-46.198868,-0.890069],[-46.200468,-0.887069],[-46.203468,-0.884969],[-46.206768,-0.885269],[-46.210968,-0.887369],[-46.215568,-0.889869],[-46.219568,-0.892169],[-46.222768,-0.893269],[-46.226668,-0.895069],[-46.230668,-0.896469],[-46.233968,-0.897869],[-46.237168,-0.898969],[-46.240068,-0.900069],[-46.244368,-0.901569],[-46.248768,-0.903669],[-46.252968,-0.905869],[-46.256868,-0.907769],[-46.260668,-0.909869],[-46.264068,-0.912769],[-46.265768,-0.916069],[-46.266868,-0.920369],[-46.267868,-0.923969],[-46.269368,-0.928069],[-46.270668,-0.931869],[-46.271168,-0.935269],[-46.271168,-0.939069],[-46.270968,-0.942769],[-46.268668,-0.947369],[-46.267168,-0.952069],[-46.266768,-0.957169],[-46.266568,-0.960469],[-46.267168,-0.963969],[-46.269768,-0.968969],[-46.272868,-0.972769],[-46.276168,-0.975269],[-46.280068,-0.977369],[-46.283768,-0.979269],[-46.287368,-0.981669],[-46.289968,-0.986469],[-46.289468,-0.991669],[-46.288168,-0.994469],[-46.287868,-0.997669],[-46.288468,-1.000569],[-46.291768,-1.002969],[-46.296468,-1.005469],[-46.301168,-1.005769],[-46.304068,-1.007369],[-46.306168,-1.009669],[-46.307968,-1.012069],[-46.308868,-1.015669],[-46.311968,-1.018669],[-46.315568,-1.018969],[-46.318468,-1.022169],[-46.322468,-1.024869],[-46.326268,-1.025369],[-46.329868,-1.025369],[-46.335668,-1.025069],[-46.336968,-1.022169],[-46.339568,-1.020469],[-46.341168,-1.017969],[-46.342268,-1.015069],[-46.343368,-1.012069],[-46.347268,-1.007669],[-46.351968,-1.007769],[-46.356968,-1.009169],[-46.361368,-1.010269],[-46.364368,-1.012069],[-46.366868,-1.014969],[-46.368068,-1.018269],[-46.368668,-1.021869],[-46.370568,-1.025369],[-46.371968,-1.028069],[-46.375468,-1.026569],[-46.379068,-1.026969],[-46.382468,-1.025869],[-46.385368,-1.023769],[-46.388768,-1.021169],[-46.390768,-1.017469],[-46.391568,-1.014069],[-46.394268,-1.011069],[-46.396468,-1.007369],[-46.396468,-1.003769],[-46.395768,-1.000469],[-46.396168,-0.997269],[-46.400368,-0.996969],[-46.403968,-0.996869],[-46.406968,-0.997769],[-46.410668,-0.999069],[-46.413968,-1.000269],[-46.416768,-1.001969],[-46.418668,-1.004169],[-46.420368,-1.006769],[-46.422468,-1.009169],[-46.423868,-1.012469],[-46.423868,-1.017669],[-46.426168,-1.021069],[-46.428968,-1.023969],[-46.432268,-1.025169],[-46.434968,-1.026269],[-46.438068,-1.027269],[-46.441568,-1.027569],[-46.445668,-1.028069],[-46.448868,-1.028369],[-46.452068,-1.028069],[-46.455368,-1.027569],[-46.458168,-1.026969],[-46.461168,-1.026969],[-46.465468,-1.026469],[-46.469168,-1.023669],[-46.469468,-1.019269],[-46.472668,-1.017569],[-46.475868,-1.016369],[-46.475668,-1.013469],[-46.472868,-1.010169],[-46.468768,-1.008869],[-46.466268,-1.006669],[-46.465068,-0.997669],[-46.466568,-0.992969],[-46.468068,-0.989369],[-46.468668,-0.984269],[-46.469868,-0.981369],[-46.473668,-0.978069],[-46.479268,-0.976669],[-46.482768,-0.976269],[-46.486968,-0.976169],[-46.490768,-0.975869],[-46.494068,-0.975269],[-46.493268,-0.970369],[-46.489968,-0.967569],[-46.486968,-0.967069],[-46.483868,-0.966769],[-46.478468,-0.965169],[-46.471168,-0.958769],[-46.467668,-0.954669],[-46.465468,-0.951469],[-46.463968,-0.947369],[-46.462568,-0.939069],[-46.462968,-0.935769],[-46.465168,-0.933369],[-46.467968,-0.930869],[-46.470568,-0.928269],[-46.475868,-0.925769],[-46.480268,-0.923069],[-46.474468,-0.918869],[-46.470568,-0.917469],[-46.467068,-0.914569],[-46.464768,-0.912769],[-46.460368,-0.913169],[-46.458268,-0.910169],[-46.456268,-0.907669],[-46.459068,-0.904869],[-46.456068,-0.903969],[-46.452868,-0.906169],[-46.449368,-0.908869],[-46.444668,-0.910269],[-46.441668,-0.908769],[-46.439068,-0.906769],[-46.436368,-0.904269],[-46.432968,-0.902069],[-46.428368,-0.899769],[-46.425768,-0.898469],[-46.422768,-0.896869],[-46.419968,-0.895169],[-46.417168,-0.892469],[-46.413468,-0.888469],[-46.410068,-0.886769],[-46.410368,-0.882469],[-46.412068,-0.878769],[-46.414168,-0.876269],[-46.417468,-0.872669],[-46.420568,-0.869369],[-46.422868,-0.866869],[-46.426068,-0.865769],[-46.429768,-0.865769],[-46.432168,-0.867269],[-46.434968,-0.867969],[-46.438768,-0.868269],[-46.442168,-0.868269],[-46.445768,-0.869769],[-46.448268,-0.871969],[-46.452068,-0.871969],[-46.456268,-0.871869],[-46.460968,-0.871869],[-46.464768,-0.872269],[-46.467968,-0.873369],[-46.468668,-0.876269],[-46.464468,-0.877669],[-46.461568,-0.879369],[-46.459868,-0.882369],[-46.459768,-0.885669],[-46.463968,-0.888869],[-46.466268,-0.892469],[-46.468768,-0.889069],[-46.470368,-0.885269],[-46.473968,-0.883469],[-46.478668,-0.882769],[-46.481668,-0.879469],[-46.484268,-0.877369],[-46.488568,-0.874469],[-46.494968,-0.872369],[-46.498868,-0.873369],[-46.504068,-0.877669],[-46.508468,-0.880669],[-46.512468,-0.883469],[-46.514568,-0.885669],[-46.513968,-0.889069],[-46.511568,-0.891569],[-46.509168,-0.894269],[-46.505668,-0.898169],[-46.508268,-0.901269],[-46.508768,-0.905869],[-46.510368,-0.909769],[-46.512868,-0.914169],[-46.514868,-0.918169],[-46.513868,-0.922169],[-46.515068,-0.925269],[-46.515468,-0.929769],[-46.519368,-0.932569],[-46.523168,-0.934169],[-46.524868,-0.936969],[-46.525068,-0.940869],[-46.527868,-0.943269],[-46.530068,-0.946069],[-46.530868,-0.949869],[-46.532668,-0.953569],[-46.536968,-0.954669],[-46.537868,-0.950769],[-46.537068,-0.946669],[-46.537568,-0.942969],[-46.538368,-0.938769],[-46.537868,-0.934469],[-46.536668,-0.931169],[-46.535868,-0.926869],[-46.534568,-0.923669],[-46.533068,-0.919469],[-46.532868,-0.913769],[-46.532868,-0.908969],[-46.535968,-0.905869],[-46.540568,-0.906269],[-46.543568,-0.907569],[-46.546468,-0.909469],[-46.549968,-0.911969],[-46.552968,-0.914169],[-46.555768,-0.917069],[-46.556868,-0.920869],[-46.557168,-0.925769],[-46.557468,-0.930269],[-46.558268,-0.933269],[-46.559368,-0.936569],[-46.560768,-0.939169],[-46.562468,-0.941669],[-46.563368,-0.946069],[-46.565968,-0.951269],[-46.568168,-0.957569],[-46.569568,-0.960969],[-46.570968,-0.964769],[-46.572868,-0.969469],[-46.574568,-0.973369],[-46.578168,-0.981369],[-46.582568,-0.981369],[-46.585068,-0.979969],[-46.587968,-0.977069],[-46.589868,-0.973769],[-46.591768,-0.970969],[-46.593468,-0.968069],[-46.595368,-0.964469],[-46.598668,-0.960069],[-46.602368,-0.957569],[-46.606668,-0.956569],[-46.605268,-0.953269],[-46.604268,-0.949069],[-46.602768,-0.944869],[-46.603168,-0.940469],[-46.607468,-0.940169],[-46.611468,-0.941569],[-46.614468,-0.942669],[-46.617668,-0.944169],[-46.620468,-0.946369],[-46.622368,-0.949669],[-46.624468,-0.953569],[-46.625768,-0.956269],[-46.626268,-0.960069],[-46.629068,-0.963969],[-46.631768,-0.966469],[-46.634268,-0.968169],[-46.637068,-0.969469],[-46.639568,-0.957569],[-46.641068,-0.948469],[-46.637168,-0.945669],[-46.634368,-0.942669],[-46.632068,-0.939069],[-46.629868,-0.935569],[-46.628268,-0.930869],[-46.627168,-0.927169],[-46.625568,-0.922169],[-46.628468,-0.918669],[-46.632468,-0.915069],[-46.636468,-0.913869],[-46.639068,-0.911469],[-46.641768,-0.910069],[-46.639668,-0.907569],[-46.636068,-0.905969],[-46.634168,-0.901969],[-46.636068,-0.899069],[-46.636368,-0.895769],[-46.632068,-0.895069],[-46.629168,-0.891569],[-46.630168,-0.887669],[-46.630268,-0.884169],[-46.626068,-0.882669],[-46.622168,-0.880969],[-46.619468,-0.876869],[-46.619968,-0.872369],[-46.616668,-0.871269],[-46.615768,-0.868369],[-46.617668,-0.865069],[-46.615568,-0.858669],[-46.612968,-0.856669],[-46.610068,-0.855269],[-46.605668,-0.855669],[-46.603068,-0.857869],[-46.599468,-0.856769],[-46.596468,-0.854269],[-46.595568,-0.850569],[-46.595568,-0.846369],[-46.595868,-0.843069],[-46.597668,-0.838169],[-46.600268,-0.833569],[-46.601668,-0.830169],[-46.603368,-0.827369],[-46.606668,-0.823169],[-46.608968,-0.820669],[-46.611368,-0.817969],[-46.613968,-0.815169],[-46.616568,-0.813769],[-46.619668,-0.813069],[-46.620768,-0.809769],[-46.619368,-0.806169],[-46.622168,-0.803969],[-46.626068,-0.801969],[-46.629868,-0.800869],[-46.632068,-0.803269],[-46.629168,-0.806169],[-46.627368,-0.809369],[-46.627068,-0.812669],[-46.630168,-0.814569],[-46.633568,-0.811869],[-46.636568,-0.809469],[-46.639268,-0.805269],[-46.638868,-0.801169],[-46.639268,-0.797469],[-46.641568,-0.793869],[-46.645768,-0.792769],[-46.649768,-0.792469],[-46.654768,-0.791669],[-46.660568,-0.791369],[-46.665268,-0.791169],[-46.668868,-0.791469],[-46.671868,-0.791669],[-46.674668,-0.792469],[-46.678068,-0.793969],[-46.679968,-0.796769],[-46.676168,-0.798869],[-46.672768,-0.801369],[-46.668968,-0.804369],[-46.666668,-0.807569],[-46.664968,-0.809969],[-46.663168,-0.812469],[-46.665668,-0.814869],[-46.670668,-0.815169],[-46.673968,-0.816569],[-46.676068,-0.820169],[-46.677268,-0.824269],[-46.676868,-0.827869],[-46.675768,-0.831769],[-46.673968,-0.835169],[-46.671968,-0.838669],[-46.670868,-0.841969],[-46.670068,-0.845869],[-46.670068,-0.849169],[-46.671768,-0.851669],[-46.676068,-0.851469],[-46.678268,-0.847269],[-46.680868,-0.844469],[-46.684468,-0.842269],[-46.686668,-0.839569],[-46.689568,-0.836469],[-46.692768,-0.833669],[-46.696268,-0.834069],[-46.700468,-0.835669],[-46.704068,-0.839069],[-46.707068,-0.839769],[-46.710468,-0.840069],[-46.713368,-0.840969],[-46.715468,-0.843069],[-46.716168,-0.846669],[-46.716268,-0.849769],[-46.716568,-0.852869],[-46.716968,-0.857469],[-46.717668,-0.863269],[-46.721668,-0.866469],[-46.724868,-0.866569],[-46.728068,-0.865869],[-46.731768,-0.864069],[-46.735268,-0.860369],[-46.734768,-0.852469],[-46.734968,-0.848169],[-46.734768,-0.844169],[-46.734268,-0.837569],[-46.736168,-0.831269],[-46.739968,-0.830169],[-46.741068,-0.826069],[-46.740768,-0.821269],[-46.744368,-0.817369],[-46.746268,-0.814469],[-46.750268,-0.814569],[-46.754868,-0.812169],[-46.758068,-0.809069],[-46.757968,-0.805569],[-46.756268,-0.801669],[-46.759068,-0.798569],[-46.762368,-0.800069],[-46.763868,-0.802869],[-46.764368,-0.806869],[-46.764868,-0.811969],[-46.765668,-0.818169],[-46.765768,-0.822769],[-46.765468,-0.829069],[-46.765068,-0.833969],[-46.766868,-0.839769],[-46.769768,-0.840169],[-46.773668,-0.841269],[-46.777368,-0.843169],[-46.780868,-0.845369],[-46.783668,-0.848369],[-46.786268,-0.851169],[-46.787368,-0.854469],[-46.788868,-0.857769],[-46.788168,-0.861469],[-46.788068,-0.866669],[-46.791468,-0.869669],[-46.795568,-0.870869],[-46.800868,-0.872269],[-46.806168,-0.869769],[-46.808068,-0.864769],[-46.809368,-0.859969],[-46.809368,-0.855869],[-46.809168,-0.851669],[-46.808568,-0.848669],[-46.808268,-0.844769],[-46.807168,-0.840869],[-46.806968,-0.837869],[-46.806868,-0.833769],[-46.805468,-0.830469],[-46.806168,-0.826269],[-46.811368,-0.827369],[-46.815268,-0.829569],[-46.817968,-0.831869],[-46.820768,-0.835069],[-46.823568,-0.837869],[-46.827068,-0.841269],[-46.830768,-0.842869],[-46.834068,-0.841169],[-46.833268,-0.837269],[-46.832168,-0.833969],[-46.833168,-0.827569],[-46.836168,-0.824269],[-46.840568,-0.821069],[-46.843468,-0.818769],[-46.839068,-0.817069],[-46.833668,-0.815969],[-46.829268,-0.813769],[-46.826268,-0.810869],[-46.825968,-0.807969],[-46.824868,-0.804369],[-46.828168,-0.800769],[-46.831768,-0.799169],[-46.833968,-0.797169],[-46.835968,-0.794669],[-46.838968,-0.792169],[-46.834668,-0.790669],[-46.830168,-0.791669],[-46.825668,-0.792869],[-46.824268,-0.788769],[-46.825168,-0.785569],[-46.826268,-0.782069],[-46.826768,-0.778169],[-46.829268,-0.774769],[-46.831868,-0.771069],[-46.830668,-0.767869],[-46.829568,-0.764269],[-46.830368,-0.759369],[-46.831868,-0.754569],[-46.835368,-0.752169],[-46.835868,-0.747969],[-46.838768,-0.745469],[-46.842268,-0.743369],[-46.846768,-0.740769],[-46.850068,-0.739369],[-46.853168,-0.739669],[-46.856168,-0.740469],[-46.859668,-0.741069],[-46.862768,-0.741969],[-46.865268,-0.743669],[-46.868268,-0.746069],[-46.871068,-0.749669],[-46.868368,-0.751869],[-46.864368,-0.752969],[-46.861768,-0.754469],[-46.862268,-0.757769],[-46.864068,-0.760269],[-46.869068,-0.760669],[-46.875168,-0.760769],[-46.879068,-0.762869],[-46.882168,-0.765669],[-46.884168,-0.768969],[-46.883868,-0.772369],[-46.882668,-0.776469],[-46.882468,-0.780869],[-46.882668,-0.784469],[-46.882768,-0.787769],[-46.882668,-0.791469],[-46.882968,-0.795669],[-46.882768,-0.801069],[-46.884168,-0.808369],[-46.887368,-0.810769],[-46.892168,-0.812969],[-46.896868,-0.814069],[-46.901168,-0.814569],[-46.905068,-0.815969],[-46.909168,-0.818169],[-46.912768,-0.821069],[-46.914968,-0.825969],[-46.915368,-0.829969],[-46.918368,-0.840069],[-46.918368,-0.844769],[-46.916768,-0.849469],[-46.916068,-0.852369],[-46.919768,-0.856369],[-46.923568,-0.857569],[-46.925068,-0.859969],[-46.926868,-0.862869],[-46.929768,-0.866169],[-46.933368,-0.868269],[-46.936268,-0.869669],[-46.939968,-0.869369],[-46.942768,-0.865569],[-46.943468,-0.860369],[-46.940468,-0.857869],[-46.937668,-0.855069],[-46.938468,-0.849469],[-46.942068,-0.839469],[-46.943468,-0.833969],[-46.944268,-0.830169],[-46.944968,-0.825469],[-46.944368,-0.820169],[-46.943768,-0.816669],[-46.942668,-0.811369],[-46.941968,-0.807969],[-46.949968,-0.800369],[-46.948468,-0.797569],[-46.948268,-0.794169],[-46.950668,-0.791769],[-46.953968,-0.789169],[-46.956768,-0.786169],[-46.959768,-0.782769],[-46.962368,-0.780169],[-46.967268,-0.772869],[-46.969168,-0.766769],[-46.966968,-0.763769],[-46.965568,-0.760269],[-46.962568,-0.756569],[-46.959268,-0.753069],[-46.956068,-0.750469],[-46.952168,-0.746669],[-46.950668,-0.742769],[-46.949568,-0.739669],[-46.948468,-0.736469],[-46.946868,-0.733969],[-46.946368,-0.729769],[-46.948468,-0.726169],[-46.950368,-0.723169],[-46.953268,-0.719869],[-46.956068,-0.716569],[-46.957568,-0.711869],[-46.960068,-0.709669],[-46.963168,-0.708269],[-46.968068,-0.706069],[-46.971968,-0.704669],[-46.974968,-0.704269],[-46.977868,-0.705769],[-46.981068,-0.707269],[-46.985368,-0.709269],[-46.989968,-0.711469],[-46.993668,-0.714569],[-46.993668,-0.718469],[-46.989768,-0.718669],[-46.988968,-0.723669],[-46.990068,-0.727269],[-46.992268,-0.729269],[-46.993368,-0.733269],[-46.995568,-0.736969],[-46.996168,-0.741669],[-47.000568,-0.745769],[-47.003468,-0.748269],[-47.003468,-0.752469],[-47.003768,-0.756769],[-47.003068,-0.759969],[-47.004868,-0.764869],[-47.007068,-0.767369],[-47.010668,-0.769369],[-47.013968,-0.770669],[-47.016468,-0.767069],[-47.013468,-0.762469],[-47.015368,-0.758769],[-47.018168,-0.760469],[-47.021468,-0.764269],[-47.025668,-0.764569],[-47.030068,-0.766369],[-47.032268,-0.770669],[-47.033968,-0.774069],[-47.035568,-0.778369],[-47.036468,-0.781269],[-47.035568,-0.785569],[-47.035268,-0.789269],[-47.036668,-0.793069],[-47.040968,-0.796169],[-47.045568,-0.798069],[-47.049768,-0.798369],[-47.053068,-0.797769],[-47.055868,-0.797269],[-47.059168,-0.795669],[-47.063068,-0.793469],[-47.063368,-0.789869],[-47.063368,-0.785569],[-47.064168,-0.780469],[-47.065568,-0.776569],[-47.067668,-0.774069],[-47.071268,-0.774069],[-47.073468,-0.776869],[-47.073568,-0.781969],[-47.075368,-0.785669],[-47.077568,-0.782769],[-47.078168,-0.777069],[-47.077168,-0.771769],[-47.078568,-0.766769],[-47.081568,-0.764569],[-47.081768,-0.761269],[-47.082168,-0.757769],[-47.081768,-0.754069],[-47.085968,-0.751869],[-47.089768,-0.753569],[-47.094068,-0.755569],[-47.097368,-0.755169],[-47.098968,-0.751669],[-47.096968,-0.749069],[-47.095368,-0.745769],[-47.094068,-0.742469],[-47.091268,-0.738669],[-47.091168,-0.734669],[-47.090168,-0.730969],[-47.089368,-0.727069],[-47.088968,-0.723969],[-47.087968,-0.720969],[-47.090568,-0.717269],[-47.087968,-0.711269],[-47.084068,-0.709369],[-47.081068,-0.710769],[-47.078168,-0.712869],[-47.074968,-0.708969],[-47.074268,-0.704669],[-47.074268,-0.700469],[-47.074968,-0.695169],[-47.077468,-0.691069],[-47.081468,-0.686369],[-47.083768,-0.683369],[-47.085868,-0.680769],[-47.089368,-0.677169],[-47.092968,-0.673269],[-47.097068,-0.672169],[-47.099868,-0.672769],[-47.102868,-0.673969],[-47.106168,-0.675769],[-47.111468,-0.675869],[-47.115368,-0.675869],[-47.118268,-0.675769],[-47.121868,-0.676369],[-47.126368,-0.678669],[-47.129568,-0.682169],[-47.129668,-0.686669],[-47.124768,-0.689469],[-47.124168,-0.693769],[-47.129068,-0.693769],[-47.133768,-0.694269],[-47.137668,-0.695669],[-47.139068,-0.699269],[-47.136868,-0.701569],[-47.134568,-0.703969],[-47.132668,-0.707169],[-47.130268,-0.710369],[-47.128468,-0.713369],[-47.131868,-0.716969],[-47.133068,-0.722269],[-47.134968,-0.725569],[-47.136068,-0.729169],[-47.137968,-0.733569],[-47.145968,-0.742469],[-47.149568,-0.740269],[-47.153068,-0.740469],[-47.155968,-0.742969],[-47.158068,-0.747169],[-47.159768,-0.752369],[-47.160168,-0.756769],[-47.160568,-0.761069],[-47.161968,-0.764269],[-47.165868,-0.765369],[-47.170268,-0.763869],[-47.173568,-0.760669],[-47.176168,-0.753569],[-47.176868,-0.749669],[-47.178068,-0.746869],[-47.178268,-0.740469],[-47.176568,-0.736469],[-47.174668,-0.733969],[-47.171668,-0.730669],[-47.167568,-0.729769],[-47.166468,-0.726769],[-47.166668,-0.723369],[-47.166668,-0.718669],[-47.166668,-0.713369],[-47.167768,-0.708669],[-47.168868,-0.705769],[-47.168168,-0.701869],[-47.167768,-0.697869],[-47.167568,-0.694569],[-47.169968,-0.686969],[-47.170368,-0.683069],[-47.171068,-0.679169],[-47.171068,-0.676169],[-47.173368,-0.673569],[-47.177468,-0.673669],[-47.179768,-0.677269],[-47.183868,-0.679969],[-47.187668,-0.682669],[-47.191668,-0.686369],[-47.194368,-0.688269],[-47.196068,-0.691069],[-47.197068,-0.693869],[-47.198468,-0.696569],[-47.201768,-0.697969],[-47.205468,-0.697769],[-47.209268,-0.695569],[-47.210968,-0.690269],[-47.212268,-0.685769],[-47.211168,-0.681169],[-47.208268,-0.678569],[-47.206768,-0.674969],[-47.206168,-0.667269],[-47.205668,-0.660969],[-47.205968,-0.657669],[-47.204668,-0.654769],[-47.204868,-0.650369],[-47.208268,-0.647669],[-47.211768,-0.645369],[-47.212868,-0.642069],[-47.214768,-0.637769],[-47.216568,-0.635369],[-47.219768,-0.632369],[-47.224268,-0.631369],[-47.228368,-0.630469],[-47.232568,-0.629169],[-47.236468,-0.628269],[-47.241468,-0.627769],[-47.251068,-0.626269],[-47.255268,-0.623669],[-47.260968,-0.625269],[-47.260468,-0.630169],[-47.257968,-0.634969],[-47.253868,-0.636769],[-47.251968,-0.640069],[-47.251568,-0.644269],[-47.256668,-0.646269],[-47.258568,-0.648969],[-47.261268,-0.650669],[-47.261768,-0.647869],[-47.264268,-0.644869],[-47.268268,-0.644369],[-47.271168,-0.645069],[-47.274768,-0.641769],[-47.277668,-0.639669],[-47.280568,-0.638469],[-47.283668,-0.638169],[-47.287268,-0.639369],[-47.289968,-0.642069],[-47.292768,-0.644769],[-47.295268,-0.642869],[-47.294968,-0.639869],[-47.294568,-0.636769],[-47.292268,-0.634869],[-47.291068,-0.631269],[-47.289868,-0.627469],[-47.286268,-0.624869],[-47.285868,-0.620869],[-47.285268,-0.617169],[-47.285068,-0.613869],[-47.285168,-0.610369],[-47.285568,-0.606969],[-47.286168,-0.603569],[-47.288068,-0.600569],[-47.291468,-0.597669],[-47.295068,-0.596169],[-47.298268,-0.595569],[-47.301668,-0.595869],[-47.306168,-0.594869],[-47.309768,-0.594069],[-47.312968,-0.593169],[-47.316568,-0.592269],[-47.320468,-0.591269],[-47.324268,-0.592869],[-47.327068,-0.595969],[-47.329968,-0.597269],[-47.333268,-0.598069],[-47.336968,-0.599169],[-47.341168,-0.599869],[-47.344468,-0.600369],[-47.349268,-0.600669],[-47.354468,-0.602369],[-47.356068,-0.606069],[-47.349568,-0.606769],[-47.347368,-0.609969],[-47.350968,-0.612169],[-47.353968,-0.612869],[-47.357168,-0.611769],[-47.360368,-0.609769],[-47.363668,-0.607069],[-47.365068,-0.603369],[-47.367268,-0.600969],[-47.370468,-0.599969],[-47.373768,-0.600069],[-47.378068,-0.600669],[-47.381668,-0.601469],[-47.384868,-0.603069],[-47.386568,-0.606669],[-47.385668,-0.609969],[-47.384868,-0.612869],[-47.375468,-0.617469],[-47.370868,-0.620069],[-47.367768,-0.623369],[-47.367668,-0.627169],[-47.370468,-0.629969],[-47.375168,-0.631769],[-47.380668,-0.631369],[-47.385168,-0.629969],[-47.388468,-0.628069],[-47.388768,-0.631269],[-47.388868,-0.635369],[-47.390668,-0.639269],[-47.392168,-0.643269],[-47.392968,-0.646869],[-47.394868,-0.652969],[-47.404168,-0.655069],[-47.408068,-0.652269],[-47.410268,-0.650469],[-47.413068,-0.649869],[-47.415868,-0.647669],[-47.417868,-0.645369],[-47.418068,-0.642169],[-47.419768,-0.639869],[-47.422868,-0.642669],[-47.424768,-0.646069],[-47.425868,-0.650069],[-47.426568,-0.655869],[-47.429368,-0.651569],[-47.429768,-0.647669],[-47.430468,-0.643569],[-47.430468,-0.639669],[-47.428968,-0.637169],[-47.426968,-0.634969],[-47.423968,-0.632069],[-47.421968,-0.627369],[-47.420768,-0.624369],[-47.422168,-0.620869],[-47.418568,-0.617969],[-47.416368,-0.612769],[-47.414568,-0.609769],[-47.411768,-0.604269],[-47.410968,-0.600369],[-47.411968,-0.597269],[-47.413468,-0.594769],[-47.414568,-0.591969],[-47.418168,-0.587869],[-47.422168,-0.584869],[-47.426168,-0.584369],[-47.430768,-0.585069],[-47.433768,-0.585069],[-47.439068,-0.584769],[-47.442368,-0.584569],[-47.446068,-0.585169],[-47.448868,-0.585869],[-47.453568,-0.586769],[-47.458468,-0.587969],[-47.462868,-0.589569],[-47.466168,-0.590569],[-47.470068,-0.591269],[-47.472868,-0.593469],[-47.470568,-0.596969],[-47.471968,-0.600969],[-47.475268,-0.601669],[-47.477868,-0.603969],[-47.479668,-0.607869],[-47.480568,-0.612569],[-47.483268,-0.616369],[-47.484668,-0.619069],[-47.482468,-0.622269],[-47.477068,-0.623069],[-47.476368,-0.626569],[-47.473168,-0.629969],[-47.474568,-0.635169],[-47.475568,-0.641569],[-47.474868,-0.645069],[-47.475668,-0.648369],[-47.476968,-0.652569],[-47.478468,-0.656269],[-47.477268,-0.659769],[-47.476368,-0.663969],[-47.473168,-0.670269],[-47.473468,-0.675569],[-47.474168,-0.679769],[-47.472368,-0.684369],[-47.471368,-0.687769],[-47.469868,-0.693769],[-47.470068,-0.708669],[-47.471168,-0.718369],[-47.471768,-0.723469],[-47.472868,-0.729569],[-47.473868,-0.735669],[-47.476468,-0.738069],[-47.480568,-0.738669],[-47.483668,-0.736069],[-47.484668,-0.732769],[-47.487568,-0.729169],[-47.491068,-0.726369],[-47.494068,-0.724169],[-47.495768,-0.721669],[-47.497368,-0.718069],[-47.498368,-0.715169],[-47.499868,-0.712669],[-47.501768,-0.707869],[-47.500468,-0.703769],[-47.498868,-0.699969],[-47.499768,-0.695269],[-47.501568,-0.690169],[-47.504068,-0.686969],[-47.506868,-0.683369],[-47.510168,-0.678669],[-47.513568,-0.675069],[-47.515368,-0.672269],[-47.516868,-0.668969],[-47.518168,-0.664569],[-47.519268,-0.661669],[-47.519768,-0.658469],[-47.520168,-0.655469],[-47.520668,-0.650969],[-47.522568,-0.646769],[-47.525768,-0.645369],[-47.528668,-0.645769],[-47.531168,-0.647869],[-47.534168,-0.645769],[-47.536468,-0.641869],[-47.539968,-0.639069],[-47.537568,-0.635969],[-47.536168,-0.632669],[-47.537268,-0.629069],[-47.538668,-0.625169],[-47.536468,-0.621169],[-47.532868,-0.620569],[-47.531268,-0.617169],[-47.532868,-0.613269],[-47.535268,-0.609369],[-47.537768,-0.605369],[-47.540068,-0.602369],[-47.542768,-0.599569],[-47.545268,-0.597269],[-47.549368,-0.593369],[-47.553368,-0.590169],[-47.556168,-0.587869],[-47.559368,-0.585769],[-47.562668,-0.582869],[-47.567368,-0.581269],[-47.571768,-0.580369],[-47.576268,-0.578569],[-47.580368,-0.577369],[-47.583668,-0.577069],[-47.587868,-0.576769],[-47.587868,-0.581569],[-47.588968,-0.584769],[-47.590368,-0.588269],[-47.591268,-0.593369],[-47.590068,-0.596269],[-47.587268,-0.599469],[-47.583768,-0.602069],[-47.584368,-0.606669],[-47.585668,-0.610269],[-47.586468,-0.613369],[-47.588168,-0.617269],[-47.587368,-0.620869],[-47.586868,-0.624469],[-47.586568,-0.629069],[-47.586468,-0.632969],[-47.586768,-0.637369],[-47.588668,-0.641269],[-47.588968,-0.644369],[-47.590568,-0.648169],[-47.593068,-0.652269],[-47.595868,-0.655169],[-47.597368,-0.658469],[-47.598768,-0.661269],[-47.600368,-0.664569],[-47.601368,-0.667769],[-47.602768,-0.671769],[-47.604268,-0.674669],[-47.606068,-0.678069],[-47.608668,-0.682469],[-47.610568,-0.686269],[-47.609768,-0.690169],[-47.606968,-0.694069],[-47.607868,-0.697669],[-47.610368,-0.699569],[-47.614068,-0.699869],[-47.617968,-0.699969],[-47.619768,-0.702969],[-47.623268,-0.705469],[-47.626068,-0.706269],[-47.630568,-0.706769],[-47.634568,-0.703769],[-47.633468,-0.700169],[-47.631568,-0.696569],[-47.631268,-0.692369],[-47.633468,-0.688569],[-47.636068,-0.686069],[-47.639668,-0.685869],[-47.643968,-0.688569],[-47.644768,-0.684369],[-47.643168,-0.680469],[-47.640668,-0.677569],[-47.638168,-0.672869],[-47.635668,-0.668469],[-47.634368,-0.665569],[-47.633868,-0.662469],[-47.634868,-0.658469],[-47.637668,-0.655469],[-47.640968,-0.653069],[-47.639268,-0.649869],[-47.636768,-0.648369],[-47.635168,-0.644869],[-47.635668,-0.640769],[-47.636768,-0.636069],[-47.634368,-0.633469],[-47.631668,-0.630169],[-47.630268,-0.625569],[-47.631668,-0.621069],[-47.631568,-0.616169],[-47.634168,-0.613269],[-47.637368,-0.616869],[-47.637768,-0.613369],[-47.635268,-0.610369],[-47.631668,-0.607469],[-47.632968,-0.601669],[-47.635668,-0.597869],[-47.638868,-0.594069],[-47.642168,-0.590169],[-47.644568,-0.587969],[-47.647268,-0.585469],[-47.650768,-0.582669],[-47.654568,-0.581069],[-47.658168,-0.578969],[-47.662368,-0.577169],[-47.666668,-0.575669],[-47.670868,-0.575169],[-47.674268,-0.575769],[-47.676968,-0.577169],[-47.679668,-0.579569],[-47.681168,-0.582969],[-47.681568,-0.587269],[-47.684468,-0.589469],[-47.688368,-0.590469],[-47.691268,-0.593669],[-47.694868,-0.595969],[-47.697668,-0.597269],[-47.700768,-0.596269],[-47.701868,-0.592969],[-47.700668,-0.589869],[-47.699868,-0.585769],[-47.698768,-0.580669],[-47.697068,-0.575469],[-47.694768,-0.569969],[-47.693768,-0.564369],[-47.692668,-0.560769],[-47.690968,-0.557769],[-47.690468,-0.554469],[-47.693168,-0.553569],[-47.697768,-0.553669],[-47.702668,-0.554069],[-47.703568,-0.551369],[-47.700768,-0.550069],[-47.701068,-0.547169],[-47.698868,-0.543869],[-47.698568,-0.539769],[-47.700968,-0.536669],[-47.703768,-0.534769],[-47.708668,-0.534469],[-47.713168,-0.534469],[-47.718668,-0.535169],[-47.722768,-0.535569],[-47.725868,-0.535869],[-47.729568,-0.535869],[-47.734368,-0.535969],[-47.739768,-0.536969],[-47.744168,-0.537869],[-47.748368,-0.539569],[-47.751268,-0.541669],[-47.754068,-0.543169],[-47.755268,-0.545869],[-47.751268,-0.548069],[-47.746868,-0.551169],[-47.743668,-0.555169],[-47.742568,-0.559369],[-47.741368,-0.563069],[-47.743268,-0.566269],[-47.746368,-0.566569],[-47.748268,-0.563069],[-47.752368,-0.561969],[-47.756268,-0.561669],[-47.761068,-0.560769],[-47.766468,-0.560769],[-47.770468,-0.563369],[-47.770068,-0.567069],[-47.769268,-0.570769],[-47.768168,-0.574969],[-47.766468,-0.579569],[-47.765468,-0.583269],[-47.763168,-0.586769],[-47.761068,-0.589369],[-47.758768,-0.592069],[-47.757368,-0.595969],[-47.757468,-0.599769],[-47.756768,-0.603969],[-47.756268,-0.608569],[-47.759368,-0.609969],[-47.762668,-0.610669],[-47.765768,-0.610869],[-47.768768,-0.609469],[-47.772168,-0.606369],[-47.773368,-0.602869],[-47.775368,-0.599969],[-47.776168,-0.596769],[-47.776568,-0.593769],[-47.775668,-0.590169],[-47.773668,-0.587269],[-47.775168,-0.584269],[-47.777568,-0.581769],[-47.781768,-0.582569],[-47.786668,-0.584869],[-47.790268,-0.585669],[-47.794968,-0.585469],[-47.797868,-0.585669],[-47.801068,-0.585469],[-47.803368,-0.587669],[-47.807168,-0.587969],[-47.809368,-0.585169],[-47.809068,-0.582069],[-47.808268,-0.579269],[-47.806068,-0.575669],[-47.802868,-0.572169],[-47.799768,-0.569569],[-47.798168,-0.565969],[-47.796368,-0.563269],[-47.797268,-0.559969],[-47.799968,-0.557769],[-47.802968,-0.556369],[-47.806068,-0.555469],[-47.810168,-0.556169],[-47.814868,-0.558369],[-47.817668,-0.560869],[-47.819168,-0.564069],[-47.816368,-0.567969],[-47.815268,-0.572469],[-47.814468,-0.576369],[-47.816868,-0.579669],[-47.818168,-0.583969],[-47.819868,-0.586769],[-47.822068,-0.589769],[-47.824068,-0.592369],[-47.825668,-0.595669],[-47.825668,-0.600269],[-47.826768,-0.605069],[-47.829668,-0.608869],[-47.830168,-0.613369],[-47.829568,-0.617969],[-47.828468,-0.621169],[-47.826768,-0.623669],[-47.824268,-0.626669],[-47.822068,-0.629369],[-47.822168,-0.632669],[-47.820568,-0.636069],[-47.821668,-0.639569],[-47.824568,-0.646269],[-47.826468,-0.653469],[-47.826268,-0.658169],[-47.826768,-0.662869],[-47.829268,-0.667769],[-47.832568,-0.670269],[-47.834768,-0.675769],[-47.835968,-0.679369],[-47.838168,-0.681869],[-47.842068,-0.681969],[-47.845868,-0.677969],[-47.847568,-0.675269],[-47.848968,-0.672469],[-47.852068,-0.669769],[-47.856368,-0.671969],[-47.861368,-0.673069],[-47.864668,-0.671369],[-47.866168,-0.666669],[-47.862968,-0.659869],[-47.857868,-0.655669],[-47.855368,-0.652269],[-47.855568,-0.649269],[-47.855668,-0.646069],[-47.856068,-0.642669],[-47.854568,-0.639269],[-47.852068,-0.635669],[-47.850868,-0.632669],[-47.848068,-0.629069],[-47.845968,-0.625169],[-47.846968,-0.621069],[-47.848168,-0.617169],[-47.849468,-0.613069],[-47.849968,-0.609169],[-47.849868,-0.605569],[-47.849268,-0.601969],[-47.850368,-0.599169],[-47.849568,-0.595969],[-47.848468,-0.591469],[-47.848368,-0.588369],[-47.852068,-0.588769],[-47.855668,-0.589069],[-47.858868,-0.588769],[-47.859468,-0.585769],[-47.857568,-0.583669],[-47.857068,-0.580469],[-47.857768,-0.575969],[-47.858568,-0.571369],[-47.860368,-0.567469],[-47.863668,-0.564169],[-47.867168,-0.562369],[-47.870768,-0.560869],[-47.874368,-0.560469],[-47.877668,-0.559669],[-47.881368,-0.559169],[-47.884868,-0.559369],[-47.887668,-0.558669],[-47.891268,-0.558269],[-47.896268,-0.558269],[-47.900368,-0.558369],[-47.903168,-0.559069],[-47.907068,-0.560169],[-47.911368,-0.561869],[-47.914268,-0.563569],[-47.916668,-0.566269],[-47.914568,-0.568469],[-47.913868,-0.572669],[-47.910668,-0.576369],[-47.908868,-0.579269],[-47.909568,-0.582869],[-47.909768,-0.588369],[-47.909768,-0.593369],[-47.908468,-0.596469],[-47.908068,-0.600369],[-47.911968,-0.603169],[-47.914468,-0.600569],[-47.919468,-0.602069],[-47.920368,-0.605869],[-47.919668,-0.609269],[-47.918168,-0.612269],[-47.916368,-0.616669],[-47.915668,-0.619669],[-47.917468,-0.623269],[-47.920368,-0.625269],[-47.923368,-0.626069],[-47.930068,-0.627469],[-47.932768,-0.629069],[-47.935768,-0.631069],[-47.938868,-0.633069],[-47.941968,-0.632769],[-47.945168,-0.633769],[-47.948768,-0.633869],[-47.952068,-0.632369],[-47.955468,-0.632069],[-47.958468,-0.633569],[-47.960668,-0.636369],[-47.963968,-0.641269],[-47.965068,-0.646869],[-47.964768,-0.651269],[-47.965168,-0.655969],[-47.965168,-0.660069],[-47.963468,-0.665669],[-47.963768,-0.669569],[-47.965168,-0.673569],[-47.967268,-0.676169],[-47.969868,-0.677769],[-47.972568,-0.678969],[-47.975268,-0.680569],[-47.975568,-0.686369],[-47.978868,-0.688569],[-47.980868,-0.690769],[-47.983868,-0.692669],[-47.988268,-0.694169],[-47.993368,-0.693269],[-47.997368,-0.691369],[-47.999468,-0.688369],[-48.002668,-0.686569],[-48.010268,-0.686169]]]},"properties":{"name":"br"},"bbox":[-73.990468,-33.750769,-34.793568,5.271131]},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.86652,41.319141],[-71.857395,41.320868],[-71.851834,41.324733],[-71.847795,41.329526],[-71.837195,41.335075],[-71.829355,41.342482],[-71.83127,41.351188],[-71.836228,41.354037],[-71.837905,41.359082],[-71.837489,41.365555],[-71.831685,41.370873],[-71.832756,41.37546],[-71.830591,41.378904],[-71.833493,41.382366],[-71.832589,41.386614],[-71.841194,41.394227],[-71.842357,41.395322],[-71.842188,41.396702],[-71.840942,41.399439],[-71.841412,41.402978],[-71.843689,41.405304],[-71.842631,41.409778],[-71.842096,41.410648],[-71.839182,41.412447],[-71.834145,41.411677],[-71.829298,41.413691],[-71.824734,41.415108],[-71.82369,41.417524],[-71.818557,41.41993],[-71.812807,41.419495],[-71.806961,41.416705],[-71.803945,41.417483],[-71.801153,41.415446],[-71.79779,41.416763],[-71.787078,41.65167],[-71.795876,41.891424],[-71.799411,42.008224],[-71.591748,42.013673],[-71.528051,42.014917],[-71.49853,42.017265],[-71.381325,42.018807],[-71.381572,41.893426],[-71.338864,41.89849],[-71.340751,41.881576],[-71.333966,41.862537],[-71.342449,41.84466],[-71.335457,41.835726],[-71.346409,41.825272],[-71.347438,41.823181],[-71.339328,41.808551],[-71.340489,41.79708],[-71.340485,41.797033],[-71.334818,41.794916],[-71.334647,41.79484],[-71.332842,41.790515],[-71.332742,41.79016],[-71.329655,41.788488],[-71.329457,41.788327],[-71.330228,41.7856],[-71.33038,41.785411],[-71.328465,41.780701],[-71.261039,41.752083],[-71.225997,41.712355],[-71.195661,41.674898],[-71.175751,41.671534],[-71.176161,41.668239],[-71.132665,41.660212],[-71.135006,41.628496],[-71.139976,41.624002],[-71.142067,41.612621],[-71.140242,41.60503],[-71.138375,41.603613],[-71.131482,41.593408],[-71.122783,41.52395],[-71.12033,41.496567],[-71.170471,41.460818],[-71.194359,41.456332],[-71.247128,41.472113],[-71.275187,41.479246],[-71.277309,41.480277],[-71.278573,41.48364],[-71.279816,41.483694],[-71.296537,41.468999],[-71.304444,41.454611],[-71.310691,41.451019],[-71.337552,41.449106],[-71.39948,41.448912],[-71.437894,41.441154],[-71.4566,41.434008],[-71.455517,41.429393],[-71.455839,41.42222],[-71.45295,41.419109],[-71.452469,41.415998],[-71.453731,41.411315],[-71.452787,41.409039],[-71.462786,41.396344],[-71.470904,41.390725],[-71.47561,41.383902],[-71.48362,41.371459],[-71.480391,41.361715],[-71.48201,41.360227],[-71.488485,41.361293],[-71.498575,41.371957],[-71.507633,41.374715],[-71.514629,41.374389],[-71.519027,41.376575],[-71.532879,41.375839],[-71.538895,41.372908],[-71.549917,41.374358],[-71.584645,41.368565],[-71.597132,41.364233],[-71.607925,41.364541],[-71.665838,41.349946],[-71.696794,41.340209],[-71.716252,41.330473],[-71.733353,41.331357],[-71.751592,41.325405],[-71.765568,41.328787],[-71.780682,41.327469],[-71.82187,41.319667],[-71.841981,41.313219],[-71.855908,41.306914],[-71.858134,41.303218],[-71.86652,41.319141]]]},"properties":{"name":"ri"},"bbox":[-71.86652,41.303218,-71.12033,42.018807]},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-103.064657,32.959097],[-103.064639,33.000106],[-103.06398,33.038693],[-103.059558,33.241728],[-103.059649,33.252511],[-103.059173,33.260362],[-103.057487,33.329476],[-103.056494,33.397068],[-103.055384,33.435256],[-103.052858,33.553381],[-103.053063,33.553403],[-103.052285,33.585908],[-103.051777,33.627599],[-103.051166,33.649202],[-103.051535,33.650487],[-103.050234,33.684178],[-103.049608,33.737766],[-103.049096,33.74627],[-103.047886,33.796166],[-103.046471,33.875145],[-103.045644,33.901537],[-103.044173,33.974557],[-103.043478,34.020439],[-103.04378,34.035816],[-103.043516,34.079382],[-103.043682,34.110056],[-103.043283,34.124264],[-103.043862,34.133232],[-103.043903,34.162064],[-103.043595,34.18126],[-103.043833,34.199838],[-103.043566,34.204873],[-103.043835,34.2049],[-103.043837,34.211545],[-103.043568,34.21437],[-103.043482,34.238098],[-103.043748,34.245595],[-103.043557,34.274781],[-103.043977,34.31141],[-103.043762,34.31275],[-103.043072,34.619782],[-103.043293,34.653098],[-103.042827,34.671188],[-103.043123,34.672589],[-103.042668,34.740129],[-103.042974,34.757315],[-103.042661,34.784966],[-103.042982,34.79215],[-103.042521,35.014239],[-103.042741,35.022395],[-103.04264,35.109974],[-103.043264,35.12506],[-103.042369,35.138464],[-103.042339,35.181922],[-103.042773,35.241293],[-103.042363,35.250017],[-103.042289,35.383144],[-103.041146,35.791583],[-103.04192,35.796425],[-103.041717,35.814066],[-103.042186,35.825217],[-103.041305,35.837694],[-103.040824,36.000037],[-103.041263,36.250031],[-103.041745,36.318267],[-103.041618,36.461804],[-103.041923,36.50035],[-102.875477,36.500238],[-102.821224,36.500632],[-102.750472,36.5004],[-102.729727,36.500672],[-102.625467,36.500364],[-102.250453,36.500369],[-102.24499,36.500704],[-102.22058,36.500333],[-102.12545,36.500324],[-102.122066,36.500684],[-102.012467,36.500581],[-101.993161,36.500278],[-101.986513,36.500526],[-101.899344,36.500424],[-101.878154,36.500026],[-101.838447,36.500026],[-101.834063,36.499556],[-101.826503,36.499533],[-101.74382,36.499799],[-101.699028,36.499711],[-101.698685,36.499508],[-101.411358,36.499332],[-101.375437,36.499343],[-101.373576,36.499583],[-101.125434,36.499519],[-101.098994,36.499118],[-101.05274,36.499567],[-100.977271,36.499593],[-100.977037,36.499926],[-100.513719,36.499286],[-100.334464,36.49942],[-100.32421,36.49997],[-100.308121,36.499618],[-100.276714,36.499881],[-100.181221,36.499633],[-100.177147,36.499635],[-100.177134,36.499862],[-100.172187,36.49959],[-100.172128,36.499882],[-100.16327,36.499609],[-100.16317,36.49989],[-100.158627,36.499626],[-100.158601,36.499898],[-100.155633,36.499566],[-100.15474,36.49988],[-100.152288,36.499632],[-100.147417,36.499872],[-100.147383,36.499613],[-100.14539,36.49985],[-100.133838,36.49964],[-100.12723,36.49986],[-100.127194,36.499638],[-100.115007,36.499867],[-100.114895,36.499568],[-100.11293,36.4999],[-100.109325,36.499893],[-100.109325,36.499639],[-100.05493,36.499881],[-100.000406,36.499702],[-100.000391,35.51913],[-99.999632,35.50044],[-99.999628,35.482947],[-99.99966,35.422364],[-100.000393,35.422369],[-100.000386,35.247405],[-100.000121,35.238798],[-100.00042,35.204641],[-100.000479,34.708601],[-100.000372,34.659853],[-100.000095,34.652869],[-100.00042,34.652598],[-100.000277,34.56045],[-99.99962,34.56017],[-99.998159,34.560662],[-99.99607,34.560729],[-99.992406,34.559367],[-99.990694,34.560243],[-99.985851,34.560078],[-99.982549,34.560773],[-99.980639,34.560686],[-99.977672,34.56146],[-99.974832,34.561311],[-99.973517,34.561957],[-99.971606,34.562169],[-99.970045,34.563491],[-99.969685,34.564517],[-99.96561,34.565844],[-99.962618,34.568136],[-99.962021,34.569143],[-99.958899,34.571271],[-99.957542,34.572709],[-99.957555,34.574169],[-99.956717,34.576524],[-99.955562,34.577616],[-99.953817,34.578527],[-99.944679,34.579135],[-99.934276,34.576761],[-99.929334,34.576714],[-99.923211,34.574552],[-99.921801,34.570253],[-99.909988,34.562135],[-99.906534,34.560387],[-99.903489,34.558362],[-99.900596,34.557202],[-99.898943,34.555804],[-99.896007,34.55553],[-99.89376,34.554219],[-99.888741,34.550452],[-99.884842,34.546953],[-99.880898,34.542219],[-99.878551,34.540648],[-99.87766,34.540577],[-99.876957,34.540098],[-99.876597,34.539709],[-99.876677,34.538975],[-99.876183,34.537901],[-99.875377,34.537073],[-99.875377,34.53736],[-99.874403,34.537095],[-99.873255,34.535348],[-99.872255,34.531722],[-99.870401,34.530221],[-99.868953,34.527615],[-99.867654,34.527191],[-99.864891,34.522993],[-99.862235,34.520506],[-99.861078,34.519986],[-99.858408,34.516969],[-99.856472,34.515744],[-99.855224,34.513655],[-99.853053,34.511585],[-99.846697,34.508522],[-99.843974,34.506502],[-99.834768,34.50174],[-99.832904,34.500068],[-99.83072,34.499267],[-99.828369,34.498878],[-99.825325,34.497596],[-99.822835,34.4981],[-99.821839,34.497848],[-99.819431,34.495192],[-99.816803,34.490199],[-99.81672,34.489718],[-99.817771,34.488733],[-99.818186,34.48784],[-99.81813,34.486007],[-99.818739,34.484976],[-99.815751,34.480693],[-99.814313,34.476204],[-99.80986,34.47183],[-99.806929,34.469791],[-99.802864,34.465668],[-99.801619,34.464019],[-99.801149,34.462324],[-99.798605,34.460125],[-99.797167,34.457674],[-99.795315,34.456116],[-99.793684,34.453894],[-99.789841,34.451718],[-99.78879,34.451489],[-99.787104,34.451763],[-99.786081,34.451099],[-99.785445,34.450045],[-99.784037,34.445509],[-99.782986,34.444364],[-99.775743,34.444225],[-99.774278,34.443285],[-99.772702,34.441269],[-99.765599,34.437488],[-99.764826,34.436434],[-99.764882,34.435266],[-99.765297,34.434373],[-99.766514,34.433411],[-99.767648,34.431854],[-99.767234,34.430502],[-99.764001,34.428302],[-99.759607,34.426674],[-99.75621,34.42271],[-99.754248,34.421289],[-99.75248,34.420533],[-99.750021,34.420348],[-99.748789,34.419753],[-99.748014,34.419112],[-99.747378,34.417784],[-99.746686,34.417395],[-99.74312,34.417282],[-99.742318,34.416709],[-99.740907,34.414763],[-99.734356,34.412429],[-99.733168,34.412521],[-99.730763,34.411698],[-99.730348,34.41124],[-99.727031,34.410554],[-99.726064,34.409958],[-99.725096,34.408355],[-99.724349,34.407852],[-99.720259,34.406295],[-99.717854,34.403708],[-99.716416,34.402815],[-99.715089,34.400754],[-99.714232,34.397822],[-99.714231,34.397089],[-99.714977,34.395325],[-99.714838,34.394524],[-99.712682,34.390928],[-99.710029,34.389669],[-99.709532,34.388523],[-99.707901,34.387539],[-99.706658,34.385981],[-99.705249,34.385775],[-99.704005,34.385982],[-99.701187,34.385203],[-99.700414,34.384699],[-99.696462,34.381036],[-99.695799,34.379272],[-99.69497,34.378333],[-99.690604,34.378219],[-99.686709,34.378654],[-99.682482,34.379822],[-99.678283,34.379799],[-99.673145,34.378516],[-99.671377,34.377714],[-99.669388,34.375652],[-99.668339,34.375487],[-99.665992,34.374185],[-99.662705,34.37368],[-99.659362,34.37439],[-99.658451,34.374723],[-99.65715,34.375833],[-99.654194,34.376519],[-99.649662,34.379885],[-99.648833,34.381603],[-99.648142,34.382312],[-99.646511,34.382541],[-99.644578,34.38167],[-99.642755,34.381555],[-99.639661,34.379905],[-99.633859,34.378757],[-99.631843,34.377703],[-99.631181,34.377061],[-99.630905,34.376007],[-99.62969,34.375482],[-99.62853,34.375401],[-99.628545,34.375076],[-99.626847,34.374356],[-99.624197,34.373577],[-99.621407,34.373784],[-99.619556,34.374627],[-99.616863,34.375076],[-99.616793,34.375391],[-99.611572,34.375643],[-99.610136,34.37656],[-99.607263,34.376928],[-99.600026,34.374688],[-99.596323,34.377137],[-99.596296,34.378741],[-99.595137,34.380322],[-99.592044,34.383163],[-99.587596,34.385867],[-99.586215,34.387402],[-99.585442,34.388914],[-99.584531,34.391205],[-99.584973,34.393175],[-99.584891,34.396336],[-99.585306,34.398122],[-99.584534,34.401673],[-99.583484,34.403735],[-99.583595,34.40504],[-99.584341,34.406346],[-99.58448,34.407673],[-99.583071,34.409598],[-99.582684,34.410995],[-99.581193,34.413927],[-99.581138,34.414752],[-99.58017,34.415943],[-99.58006,34.416653],[-99.576909,34.417799],[-99.574367,34.418281],[-99.569696,34.418418],[-99.567015,34.418304],[-99.565134,34.418006],[-99.564056,34.417388],[-99.562204,34.417319],[-99.555986,34.41464],[-99.554604,34.414571],[-99.549242,34.412715],[-99.541531,34.413241],[-99.539707,34.412782],[-99.53664,34.412736],[-99.533517,34.411796],[-99.529786,34.411452],[-99.52365,34.412206],[-99.520886,34.413144],[-99.518895,34.414289],[-99.517624,34.414494],[-99.51428,34.414035],[-99.511102,34.412705],[-99.506903,34.40952],[-99.503144,34.409289],[-99.500367,34.409677],[-99.498999,34.409173],[-99.497091,34.407731],[-99.496399,34.406495],[-99.494104,34.404755],[-99.493606,34.403495],[-99.491975,34.40203],[-99.490426,34.399694],[-99.487219,34.397955],[-99.481125,34.396683],[-99.479827,34.396803],[-99.477782,34.396288],[-99.476243,34.39636],[-99.473789,34.39535],[-99.472268,34.395602],[-99.470306,34.396748],[-99.468427,34.396634],[-99.466383,34.3959],[-99.464036,34.393634],[-99.462462,34.391137],[-99.462297,34.388639],[-99.461854,34.387241],[-99.462075,34.383462],[-99.461053,34.380666],[-99.459395,34.380117],[-99.457626,34.380117],[-99.456328,34.380392],[-99.455085,34.381264],[-99.454891,34.381905],[-99.455472,34.386097],[-99.454588,34.38864],[-99.453787,34.388663],[-99.451465,34.386922],[-99.450222,34.385021],[-99.449117,34.384333],[-99.445336,34.379768],[-99.444255,34.378134],[-99.443669,34.376457],[-99.442394,34.375453],[-99.441937,34.374412],[-99.441057,34.374042],[-99.440671,34.372774],[-99.438269,34.371164],[-99.437095,34.371144],[-99.436474,34.370539],[-99.434921,34.370634],[-99.433458,34.370223],[-99.431043,34.371117],[-99.431118,34.374003],[-99.429793,34.375003],[-99.429324,34.375834],[-99.430145,34.377589],[-99.43001,34.381019],[-99.429154,34.382849],[-99.427497,34.385136],[-99.424897,34.385823],[-99.423679,34.385663],[-99.421908,34.384201],[-99.42141,34.383355],[-99.420714,34.380386],[-99.417385,34.378838],[-99.414159,34.377773],[-99.413045,34.377012],[-99.412103,34.375041],[-99.410195,34.373402],[-99.409005,34.372758],[-99.407307,34.372593],[-99.405286,34.372858],[-99.400334,34.374623],[-99.398728,34.375832],[-99.397355,34.377868],[-99.396151,34.382546],[-99.396162,34.383502],[-99.396789,34.384777],[-99.396714,34.392667],[-99.395887,34.394197],[-99.395676,34.39769],[-99.394046,34.399976],[-99.393714,34.401439],[-99.39175,34.405533],[-99.387929,34.409469],[-99.387181,34.410842],[-99.387653,34.411984],[-99.389484,34.413432],[-99.391918,34.414674],[-99.394183,34.415177],[-99.395148,34.415855],[-99.396751,34.41721],[-99.397164,34.418607],[-99.396802,34.420968],[-99.397298,34.422411],[-99.397267,34.423924],[-99.396297,34.425298],[-99.393306,34.427613],[-99.393802,34.42901],[-99.393049,34.431921],[-99.395122,34.433044],[-99.396115,34.43497],[-99.395187,34.44203],[-99.393495,34.443679],[-99.389227,34.446863],[-99.386757,34.449521],[-99.381204,34.456879],[-99.377132,34.45855],[-99.37555,34.458789],[-99.368932,34.458461],[-99.366054,34.456743],[-99.35897,34.455807],[-99.355705,34.453082],[-99.354848,34.4518],[-99.35485,34.450539],[-99.355016,34.4496],[-99.356624,34.447467],[-99.356956,34.446481],[-99.35729,34.444854],[-99.357236,34.44286],[-99.356903,34.442082],[-99.350594,34.436992],[-99.345462,34.434031],[-99.34013,34.430102],[-99.33409,34.427525],[-99.333665,34.426293],[-99.330693,34.42442],[-99.328698,34.422383],[-99.326728,34.419111],[-99.326338,34.417667],[-99.325064,34.41634],[-99.32423,34.414464],[-99.322459,34.413685],[-99.320073,34.409267],[-99.319602,34.408879],[-99.318357,34.408306],[-99.316365,34.408215],[-99.313959,34.409085],[-99.309257,34.409704],[-99.305774,34.411055],[-99.304613,34.412062],[-99.300466,34.413344],[-99.299084,34.414236],[-99.294632,34.415381],[-99.289903,34.414739],[-99.28791,34.41403],[-99.285586,34.412358],[-99.284396,34.41103],[-99.282843,34.40748],[-99.28317,34.402946],[-99.28151,34.401457],[-99.280045,34.400655],[-99.276865,34.400058],[-99.27526,34.400104],[-99.272303,34.400812],[-99.269566,34.40191],[-99.268296,34.403558],[-99.267745,34.404955],[-99.266308,34.405481],[-99.264124,34.405159],[-99.261275,34.403508],[-99.260859,34.402203],[-99.261825,34.398677],[-99.261822,34.395036],[-99.261241,34.394073],[-99.258807,34.392078],[-99.258917,34.391255],[-99.261126,34.389561],[-99.264442,34.388099],[-99.271655,34.38769],[-99.272042,34.387919],[-99.273894,34.387577],[-99.275275,34.386616],[-99.274858,34.384922],[-99.274415,34.384349],[-99.272922,34.383547],[-99.272202,34.382356],[-99.269796,34.380843],[-99.264958,34.378756],[-99.260441,34.378078],[-99.259767,34.3776],[-99.259203,34.377004],[-99.259334,34.373621],[-99.258606,34.37265],[-99.256498,34.372229],[-99.254631,34.372419],[-99.250668,34.375518],[-99.248884,34.375995],[-99.247584,34.375551],[-99.246007,34.374235],[-99.242855,34.372676],[-99.243024,34.371142],[-99.243543,34.370711],[-99.246328,34.369828],[-99.247942,34.368487],[-99.24812,34.367433],[-99.247009,34.36478],[-99.246393,34.364397],[-99.244454,34.363701],[-99.241476,34.364536],[-99.237562,34.366701],[-99.236494,34.365805],[-99.236188,34.36439],[-99.237129,34.362723],[-99.237141,34.361095],[-99.236521,34.358569],[-99.234843,34.356441],[-99.234135,34.353464],[-99.232646,34.35254],[-99.228772,34.350986],[-99.227977,34.349464],[-99.228636,34.348564],[-99.23031,34.347506],[-99.232113,34.345576],[-99.234046,34.342173],[-99.234298,34.340451],[-99.232632,34.338872],[-99.230519,34.337777],[-99.227117,34.337767],[-99.221843,34.340007],[-99.219647,34.341365],[-99.217203,34.341508],[-99.208832,34.339172],[-99.206905,34.338277],[-99.20946,34.337984],[-99.210725,34.337337],[-99.21082,34.336826],[-99.210582,34.336292],[-99.210992,34.332101],[-99.21066,34.329206],[-99.209574,34.324925],[-99.205936,34.320582],[-99.205628,34.319201],[-99.206584,34.31696],[-99.211432,34.313967],[-99.213302,34.310673],[-99.213161,34.308476],[-99.212521,34.306278],[-99.210999,34.303392],[-99.209695,34.298904],[-99.210075,34.295587],[-99.211448,34.292247],[-99.21092,34.289661],[-99.209535,34.286364],[-99.208927,34.28522],[-99.207352,34.283525],[-99.203473,34.281944],[-99.200016,34.281167],[-99.196058,34.281472],[-99.195553,34.281282],[-99.195403,34.280849],[-99.195744,34.278286],[-99.194651,34.274552],[-99.194459,34.271881],[-99.196679,34.269252],[-99.196461,34.267806],[-99.196682,34.266198],[-99.198017,34.262723],[-99.199254,34.260791],[-99.199053,34.26054],[-99.1967,34.260973],[-99.193838,34.260307],[-99.191849,34.259001],[-99.191422,34.25783],[-99.192018,34.255632],[-99.193943,34.253374],[-99.196199,34.249385],[-99.196912,34.244382],[-99.195061,34.239218],[-99.190936,34.232442],[-99.189986,34.229756],[-99.18992,34.227277],[-99.192019,34.222282],[-99.192811,34.218888],[-99.192355,34.21674],[-99.191156,34.215296],[-99.189776,34.214357],[-99.186817,34.213555],[-99.173824,34.211794],[-99.164135,34.208976],[-99.160881,34.209207],[-99.159194,34.208931],[-99.156823,34.207214],[-99.153653,34.207328],[-99.15134,34.207603],[-99.148721,34.20877],[-99.147239,34.209914],[-99.145075,34.212385],[-99.14391,34.214838],[-99.142471,34.215408],[-99.141545,34.21669],[-99.139489,34.217353],[-99.13897,34.21866],[-99.138076,34.219233],[-99.133397,34.219665],[-99.130443,34.219478],[-99.128351,34.218835],[-99.127394,34.218055],[-99.126799,34.217115],[-99.126495,34.215396],[-99.127429,34.213838],[-99.130012,34.212263],[-99.131559,34.209417],[-99.131986,34.207436],[-99.131168,34.205742],[-99.129889,34.20446],[-99.12664,34.203064],[-99.124969,34.202972],[-99.121004,34.20185],[-99.119254,34.201809],[-99.11778,34.202447],[-99.116965,34.203729],[-99.115104,34.204895],[-99.111807,34.20598],[-99.108417,34.205271],[-99.108383,34.204788],[-99.109622,34.205084],[-99.110628,34.204968],[-99.111003,34.2046],[-99.110459,34.204257],[-99.108766,34.204235],[-99.108546,34.204143],[-99.108894,34.203524],[-99.108201,34.203547],[-99.106301,34.204698],[-99.103395,34.205046],[-99.102186,34.205483],[-99.100249,34.208867],[-99.099354,34.209852],[-99.097876,34.211019],[-99.096211,34.211705],[-99.094168,34.211658],[-99.092851,34.210742],[-99.093299,34.210124],[-99.092064,34.209368],[-99.088923,34.208475],[-99.0866,34.208702],[-99.083804,34.20973],[-99.080577,34.211483],[-99.079392,34.21155],[-99.075837,34.211249],[-99.070159,34.209074],[-99.066329,34.20843],[-99.063105,34.206851],[-99.060212,34.204794],[-99.059497,34.203926],[-99.058688,34.201296],[-99.057976,34.20061],[-99.048685,34.198248],[-99.044463,34.198106],[-99.043358,34.198242],[-99.041972,34.199359],[-99.040837,34.200864],[-99.03888,34.204669],[-99.037336,34.206446],[-99.03615,34.206901],[-99.02576,34.204807],[-99.024768,34.204418],[-99.024465,34.203984],[-99.020661,34.204684],[-99.017271,34.206314],[-99.015041,34.203896],[-99.013673,34.20319],[-99.012957,34.203194],[-99.009823,34.205289],[-99.008944,34.205167],[-99.005674,34.206594],[-99.002242,34.209374],[-99.001745,34.210353],[-99.004198,34.211954],[-99.004695,34.214145],[-99.003867,34.214895],[-99.001549,34.215599],[-99.000632,34.216715],[-99.000592,34.217672],[-98.997327,34.21865],[-98.995838,34.219652],[-98.991703,34.221427],[-98.988172,34.22131],[-98.985662,34.220417],[-98.980917,34.217059],[-98.980695,34.215735],[-98.978569,34.210123],[-98.97661,34.207885],[-98.97647,34.206198],[-98.974015,34.203482],[-98.972609,34.202591],[-98.968886,34.201218],[-98.966626,34.201101],[-98.965743,34.201465],[-98.962931,34.203833],[-98.962352,34.204562],[-98.961967,34.206272],[-98.962189,34.211177],[-98.961941,34.211838],[-98.959984,34.213272],[-98.958357,34.213704],[-98.951284,34.212189],[-98.95035,34.211578],[-98.949673,34.209995],[-98.948685,34.209229],[-98.947141,34.208862],[-98.942453,34.20506],[-98.94022,34.203686],[-98.936664,34.20002],[-98.935202,34.19789],[-98.934679,34.197523],[-98.9333,34.197317],[-98.928145,34.192689],[-98.927456,34.191155],[-98.92503,34.188635],[-98.923129,34.185978],[-98.920704,34.183435],[-98.918333,34.181831],[-98.915357,34.18096],[-98.909349,34.177499],[-98.905876,34.177178],[-98.896616,34.174495],[-98.895129,34.173509],[-98.892263,34.172294],[-98.891657,34.171355],[-98.890473,34.170392],[-98.887112,34.16826],[-98.884467,34.167618],[-98.880415,34.167272],[-98.87606,34.167705],[-98.874849,34.167522],[-98.872922,34.166584],[-98.871543,34.165027],[-98.871211,34.163012],[-98.872229,34.160446],[-98.874955,34.157031],[-98.874872,34.155657],[-98.873271,34.153596],[-98.869246,34.150207],[-98.868116,34.149635],[-98.865747,34.149132],[-98.86255,34.149111],[-98.860125,34.149913],[-98.858419,34.152732],[-98.85842,34.155389],[-98.8579,34.159627],[-98.857322,34.161094],[-98.855585,34.161621],[-98.853849,34.161553],[-98.850762,34.159882],[-98.846518,34.159654],[-98.844727,34.159082],[-98.843542,34.158143],[-98.842191,34.158051],[-98.840676,34.157296],[-98.837066,34.156495],[-98.836294,34.156678],[-98.834063,34.158259],[-98.833346,34.159107],[-98.832135,34.161787],[-98.831115,34.162154],[-98.825079,34.160391],[-98.815269,34.158101],[-98.812954,34.158444],[-98.80681,34.155901],[-98.804413,34.153931],[-98.799756,34.147883],[-98.797966,34.144608],[-98.796203,34.142775],[-98.792015,34.143736],[-98.79072,34.144584],[-98.789094,34.146485],[-98.788405,34.146668],[-98.783006,34.142337],[-98.778076,34.139495],[-98.771795,34.138302],[-98.76557,34.136376],[-98.761797,34.133785],[-98.760558,34.132388],[-98.759486,34.128882],[-98.759653,34.126912],[-98.75745,34.124713],[-98.757037,34.124633],[-98.749291,34.124238],[-98.746263,34.12554],[-98.741966,34.12553],[-98.740589,34.126294],[-98.739461,34.127394],[-98.737232,34.130992],[-98.737177,34.13255],[-98.73682,34.133374],[-98.735471,34.135208],[-98.734287,34.135758],[-98.731036,34.136011],[-98.728502,34.135279],[-98.726188,34.135486],[-98.723626,34.135189],[-98.718639,34.136473],[-98.717537,34.13645],[-98.716104,34.135947],[-98.714947,34.134847],[-98.71423,34.133404],[-98.71412,34.132144],[-98.712467,34.13116],[-98.710731,34.131206],[-98.70996,34.131549],[-98.706132,34.134986],[-98.703047,34.135903],[-98.700182,34.135995],[-98.696518,34.133521],[-98.693405,34.13375],[-98.690898,34.133018],[-98.690072,34.133155],[-98.685828,34.136041],[-98.68536,34.137187],[-98.68412,34.13879],[-98.678693,34.142135],[-98.67715,34.142501],[-98.676626,34.142913],[-98.673733,34.145868],[-98.672934,34.147472],[-98.670922,34.149373],[-98.665824,34.151617],[-98.663179,34.153312],[-98.659899,34.156128],[-98.655655,34.158258],[-98.652347,34.161029],[-98.650583,34.163113],[-98.649534,34.163433],[-98.648073,34.164441],[-98.643223,34.164531],[-98.639642,34.16343],[-98.63573,34.161618],[-98.629117,34.159806],[-98.621666,34.157195],[-98.616733,34.156418],[-98.613096,34.156282],[-98.611829,34.156558],[-98.608853,34.157521],[-98.606732,34.159034],[-98.603978,34.160249],[-98.602131,34.160593],[-98.599789,34.160571],[-98.597502,34.159128],[-98.592954,34.157297],[-98.583914,34.151298],[-98.579147,34.149695],[-98.578128,34.149031],[-98.577136,34.148962],[-98.572451,34.145091],[-98.571459,34.143488],[-98.569724,34.141586],[-98.56774,34.13996],[-98.567298,34.138242],[-98.566609,34.13744],[-98.560191,34.133202],[-98.558621,34.132973],[-98.553717,34.13366],[-98.552836,34.133568],[-98.55088,34.132583],[-98.550384,34.131736],[-98.550357,34.129239],[-98.551046,34.127818],[-98.551845,34.127131],[-98.554324,34.126605],[-98.557602,34.128437],[-98.558593,34.128254],[-98.559558,34.127704],[-98.560136,34.126926],[-98.560976,34.125092],[-98.560977,34.123922],[-98.558027,34.122856],[-98.55682,34.121079],[-98.555747,34.120134],[-98.55387,34.119542],[-98.550917,34.119334],[-98.536257,34.107347],[-98.533678,34.103269],[-98.530611,34.099843],[-98.5282,34.094961],[-98.524614,34.092595],[-98.521928,34.089803],[-98.516875,34.085984],[-98.513812,34.082011],[-98.504149,34.072287],[-98.501375,34.071921],[-98.49812,34.070307],[-98.494613,34.07009],[-98.491727,34.067771],[-98.489346,34.066579],[-98.488268,34.065473],[-98.487824,34.063768],[-98.486328,34.062598],[-98.483551,34.062277],[-98.480713,34.062499],[-98.473525,34.064734],[-98.471465,34.065665],[-98.468184,34.068991],[-98.466002,34.073081],[-98.465133,34.073729],[-98.461959,34.073836],[-98.454665,34.072577],[-98.45169,34.072615],[-98.449034,34.073462],[-98.446379,34.07543],[-98.445784,34.076827],[-98.445921,34.078413],[-98.445585,34.079298],[-98.443724,34.082152],[-98.442808,34.083144],[-98.440092,34.084311],[-98.432127,34.085622],[-98.42848,34.085523],[-98.42523,34.084799],[-98.423533,34.082843],[-98.420408,34.082314],[-98.417813,34.083029],[-98.414426,34.085074],[-98.411052,34.088592],[-98.410517,34.090807],[-98.409723,34.092509],[-98.409596,34.09407],[-98.411511,34.098615],[-98.411649,34.099554],[-98.411374,34.100324],[-98.409924,34.101247],[-98.407727,34.101369],[-98.406735,34.10114],[-98.403821,34.099279],[-98.402158,34.098653],[-98.40051,34.099042],[-98.399777,34.099973],[-98.398389,34.104566],[-98.398297,34.111333],[-98.398648,34.115728],[-98.39816,34.121396],[-98.400494,34.121778],[-98.400967,34.122236],[-98.400159,34.124364],[-98.399355,34.125093],[-98.398524,34.127356],[-98.398441,34.128456],[-98.394032,34.131913],[-98.389403,34.133217],[-98.38775,34.133033],[-98.385767,34.132162],[-98.383785,34.129916],[-98.382959,34.129549],[-98.382298,34.129572],[-98.380093,34.130831],[-98.379762,34.131174],[-98.37979,34.131839],[-98.380421,34.13429],[-98.383726,34.136307],[-98.384965,34.136651],[-98.386232,34.137728],[-98.386865,34.138873],[-98.387084,34.140912],[-98.38485,34.143844],[-98.384381,34.146317],[-98.383222,34.147806],[-98.381238,34.149454],[-98.378152,34.149957],[-98.376911,34.150552],[-98.374461,34.150758],[-98.370936,34.15186],[-98.370082,34.152616],[-98.367907,34.155824],[-98.366778,34.156649],[-98.365621,34.156993],[-98.364023,34.157109],[-98.348894,34.154502],[-98.343163,34.154115],[-98.341454,34.153153],[-98.336384,34.152444],[-98.333601,34.151688],[-98.331479,34.151391],[-98.328421,34.151643],[-98.325445,34.151025],[-98.32258,34.14972],[-98.31875,34.146421],[-98.315939,34.144864],[-98.314589,34.143695],[-98.310952,34.141932],[-98.308638,34.139755],[-98.301201,34.135472],[-98.300209,34.134579],[-98.296849,34.134189],[-98.293901,34.13302],[-98.280321,34.13075],[-98.276878,34.131046],[-98.272994,34.132213],[-98.271561,34.132282],[-98.268972,34.131616],[-98.266217,34.132051],[-98.264729,34.131913],[-98.2617,34.131568],[-98.257872,34.129665],[-98.256467,34.129481],[-98.253272,34.129732],[-98.247954,34.130717],[-98.241013,34.133103],[-98.239141,34.134547],[-98.235477,34.1348],[-98.232474,34.134641],[-98.231042,34.134023],[-98.225558,34.129283],[-98.225282,34.127245],[-98.2236,34.125093],[-98.219494,34.123469],[-98.216463,34.121821],[-98.209219,34.120997],[-98.208008,34.120539],[-98.20517,34.118341],[-98.201728,34.117058],[-98.187213,34.115341],[-98.170827,34.114171],[-98.16879,34.114262],[-98.166228,34.116255],[-98.157412,34.120467],[-98.154354,34.122734],[-98.14744,34.13068],[-98.147274,34.131939],[-98.145951,34.133932],[-98.142754,34.136359],[-98.141596,34.137847],[-98.140079,34.141008],[-98.138316,34.142519],[-98.136991,34.144786],[-98.135145,34.145494],[-98.134207,34.14751],[-98.130816,34.150532],[-98.128198,34.151057],[-98.125993,34.153164],[-98.123377,34.15454],[-98.122468,34.154678],[-98.120925,34.154358],[-98.11828,34.154749],[-98.114506,34.154727],[-98.109462,34.154111],[-98.107065,34.152531],[-98.105217,34.150173],[-98.103178,34.148318],[-98.101937,34.14683],[-98.100559,34.143486],[-98.100558,34.142135],[-98.103172,34.135194],[-98.103309,34.13414],[-98.102895,34.132605],[-98.102344,34.131918],[-98.100498,34.131369],[-98.094439,34.132379],[-98.092373,34.13215],[-98.090224,34.130181],[-98.089755,34.128211],[-98.090634,34.125093],[-98.09066,34.12198],[-98.092421,34.116917],[-98.095118,34.11119],[-98.099328,34.104295],[-98.104309,34.0982],[-98.109924,34.09293],[-98.112649,34.090867],[-98.114575,34.088668],[-98.118482,34.085619],[-98.119417,34.084474],[-98.119527,34.083672],[-98.121039,34.081266],[-98.121039,34.080327],[-98.120598,34.07925],[-98.120208,34.072127],[-98.11803,34.067065],[-98.114587,34.06228],[-98.11087,34.059876],[-98.101893,34.050969],[-98.100627,34.049984],[-98.09526,34.047626],[-98.093526,34.047192],[-98.087472,34.0441],[-98.083839,34.041719],[-98.082463,34.039428],[-98.082655,34.038191],[-98.08381,34.036656],[-98.089037,34.033838],[-98.091788,34.033654],[-98.093219,34.034547],[-98.09655,34.038051],[-98.098613,34.038852],[-98.101695,34.039057],[-98.103538,34.03853],[-98.105025,34.037545],[-98.106179,34.034887],[-98.106261,34.033696],[-98.104884,34.031841],[-98.103617,34.029207],[-98.099268,34.025429],[-98.098442,34.023918],[-98.095443,34.021697],[-98.089555,34.01927],[-98.087684,34.016888],[-98.085538,34.01595],[-98.084025,34.014369],[-98.082401,34.009834],[-98.083611,34.00949],[-98.084189,34.008528],[-98.084601,34.008368],[-98.087104,34.008344],[-98.088149,34.007932],[-98.088809,34.007176],[-98.088203,34.005481],[-98.08526,34.003259],[-98.082839,34.002412],[-98.078851,34.001542],[-98.073267,34.001016],[-98.071425,34.000096],[-98.061907,33.997971],[-98.05935,33.99678],[-98.055197,33.995841],[-98.048118,33.994474],[-98.044692,33.994282],[-98.041117,33.993456],[-98.033252,33.99389],[-98.027672,33.993357],[-98.025086,33.994091],[-98.022551,33.993612],[-98.019485,33.993804],[-98.017345,33.994303],[-98.015101,33.994136],[-97.999624,33.99711],[-97.998938,33.997024],[-97.990861,33.998873],[-97.987388,33.999823],[-97.985366,34.000959],[-97.983521,34.001559],[-97.980607,34.003599],[-97.979508,34.004722],[-97.97684,34.006051],[-97.974173,34.006716],[-97.972605,34.006144],[-97.97167,34.005434],[-97.969358,34.002136],[-97.967818,34.000946],[-97.967708,34.000576],[-97.96823,34.000785],[-97.96834,34.00053],[-97.963028,33.994235],[-97.958325,33.990846],[-97.95585,33.990136],[-97.952688,33.990114],[-97.947572,33.991053],[-97.946473,33.990732],[-97.94573,33.989839],[-97.94595,33.988396],[-97.948644,33.982601],[-97.949827,33.979188],[-97.95274,33.969567],[-97.954499,33.966451],[-97.956917,33.958502],[-97.958455,33.95612],[-97.958895,33.954516],[-97.960351,33.951928],[-97.965737,33.947392],[-97.966616,33.947415],[-97.968897,33.94588],[-97.972662,33.944527],[-97.974173,33.942832],[-97.974062,33.940289],[-97.972494,33.937907],[-97.971175,33.937129],[-97.965953,33.936191],[-97.963425,33.936237],[-97.955511,33.938186],[-97.954467,33.937774],[-97.953395,33.936445],[-97.952679,33.929482],[-97.953695,33.924373],[-97.954217,33.923549],[-97.957155,33.914454],[-97.958226,33.912897],[-97.961632,33.909414],[-97.965395,33.906917],[-97.968747,33.906023],[-97.970532,33.906297],[-97.973143,33.908014],[-97.974764,33.909709],[-97.975837,33.911633],[-97.976963,33.912549],[-97.978804,33.912548],[-97.979985,33.911402],[-97.983552,33.904002],[-97.98454,33.900703],[-97.984373,33.898024],[-97.9819,33.895322],[-97.97786,33.889825],[-97.974263,33.886706],[-97.974177,33.886347],[-97.967752,33.882214],[-97.960716,33.879733],[-97.957064,33.878767],[-97.951201,33.878396],[-97.942868,33.879062],[-97.942483,33.878776],[-97.941578,33.879181],[-97.938948,33.879466],[-97.934169,33.878109],[-97.93229,33.876495],[-97.928584,33.874187],[-97.91826,33.869948],[-97.914443,33.868642],[-97.912961,33.868481],[-97.909858,33.867221],[-97.909282,33.866625],[-97.907058,33.865571],[-97.905467,33.863531],[-97.901294,33.86124],[-97.898467,33.858925],[-97.896738,33.857985],[-97.894239,33.857068],[-97.888721,33.856723],[-97.888419,33.856265],[-97.889408,33.856288],[-97.883204,33.854362],[-97.879829,33.852436],[-97.878183,33.850534],[-97.875311,33.849721],[-97.871502,33.849093],[-97.864175,33.849745],[-97.852241,33.853091],[-97.847802,33.854735],[-97.843777,33.856813],[-97.841581,33.856272],[-97.83432,33.857634],[-97.833225,33.858334],[-97.831854,33.860087],[-97.831894,33.860774],[-97.831132,33.861741],[-97.825877,33.864474],[-97.822994,33.866467],[-97.820743,33.868895],[-97.819672,33.870544],[-97.818931,33.874003],[-97.819428,33.8779],[-97.819236,33.879091],[-97.817643,33.880992],[-97.815501,33.882],[-97.813853,33.881931],[-97.812508,33.881153],[-97.811464,33.880053],[-97.810119,33.877923],[-97.808938,33.876709],[-97.8074,33.876159],[-97.806659,33.876205],[-97.805423,33.877167],[-97.803473,33.88019],[-97.801578,33.885138],[-97.801631,33.889833],[-97.801136,33.890933],[-97.80163,33.89588],[-97.79891,33.898537],[-97.797015,33.899499],[-97.79479,33.899956],[-97.7924,33.899085],[-97.788145,33.89377],[-97.788145,33.892076],[-97.785317,33.890701],[-97.784656,33.890631],[-97.78128,33.89446],[-97.780839,33.894447],[-97.781003,33.894936],[-97.780041,33.897205],[-97.779683,33.899243],[-97.779682,33.901374],[-97.78034,33.904833],[-97.783717,33.91056],[-97.785474,33.912164],[-97.786133,33.913424],[-97.785913,33.914981],[-97.783522,33.918302],[-97.780499,33.919675],[-97.778301,33.919629],[-97.775527,33.917841],[-97.774072,33.916444],[-97.772672,33.914382],[-97.767781,33.91351],[-97.765446,33.913532],[-97.76377,33.914241],[-97.761736,33.915615],[-97.760224,33.917194],[-97.759399,33.91882],[-97.759834,33.92521],[-97.761425,33.929219],[-97.762661,33.930846],[-97.763043,33.934145],[-97.762768,33.934396],[-97.75499,33.936752],[-97.75295,33.937102],[-97.751143,33.936979],[-97.749172,33.936229],[-97.741327,33.937376],[-97.738467,33.937305],[-97.735507,33.936248],[-97.732261,33.936519],[-97.724698,33.941456],[-97.72428,33.942237],[-97.721172,33.944506],[-97.720647,33.944618],[-97.720604,33.943955],[-97.716637,33.947179],[-97.712194,33.951641],[-97.709539,33.954881],[-97.704159,33.963336],[-97.701769,33.969932],[-97.69946,33.974193],[-97.699185,33.975705],[-97.698581,33.975842],[-97.697564,33.978316],[-97.697206,33.978385],[-97.696134,33.979942],[-97.695694,33.98008],[-97.69311,33.983699],[-97.690058,33.984981],[-97.688738,33.986058],[-97.688711,33.986516],[-97.688023,33.986607],[-97.687694,33.98718],[-97.686016,33.98789],[-97.684229,33.988417],[-97.683762,33.988073],[-97.681425,33.988439],[-97.673669,33.990912],[-97.672514,33.990935],[-97.671277,33.991553],[-97.667703,33.991094],[-97.668033,33.990407],[-97.661489,33.990818],[-97.657585,33.989535],[-97.65621,33.989488],[-97.655633,33.98919],[-97.65566,33.98887],[-97.657255,33.988824],[-97.64964,33.986532],[-97.648209,33.986394],[-97.644059,33.984468],[-97.633778,33.981257],[-97.630728,33.979309],[-97.629601,33.97924],[-97.628941,33.978735],[-97.628694,33.978094],[-97.624573,33.97585],[-97.62185,33.972988],[-97.61756,33.970791],[-97.616075,33.969716],[-97.614151,33.969488],[-97.609091,33.968093],[-97.606974,33.966193],[-97.606726,33.965574],[-97.604526,33.96404],[-97.604333,33.962758],[-97.600979,33.960789],[-97.600896,33.958888],[-97.600401,33.957926],[-97.599466,33.956323],[-97.59798,33.955247],[-97.596358,33.954537],[-97.590971,33.954241],[-97.589597,33.953554],[-97.588827,33.951882],[-97.591409,33.948057],[-97.592151,33.945949],[-97.594377,33.944094],[-97.59542,33.941436],[-97.595419,33.938917],[-97.595034,33.93736],[-97.593302,33.933924],[-97.591405,33.931955],[-97.591212,33.929643],[-97.591514,33.9282],[-97.595084,33.922954],[-97.596155,33.922106],[-97.596979,33.920228],[-97.59695,33.916311],[-97.596289,33.913769],[-97.593816,33.910265],[-97.593239,33.910059],[-97.592799,33.910357],[-97.591288,33.909922],[-97.589914,33.908044],[-97.589282,33.905754],[-97.589254,33.903922],[-97.587441,33.902479],[-97.581078,33.899679],[-97.578082,33.899216],[-97.572349,33.899263],[-97.569404,33.901115],[-97.568715,33.901379],[-97.56834,33.901077],[-97.566956,33.901583],[-97.562788,33.900925],[-97.56055,33.899343],[-97.560686,33.89861],[-97.559917,33.897603],[-97.55827,33.897099],[-97.555002,33.897282],[-97.551541,33.897947],[-97.549399,33.899068],[-97.543246,33.901289],[-97.537999,33.904334],[-97.534207,33.90573],[-97.525277,33.911751],[-97.523904,33.912232],[-97.524096,33.911705],[-97.519838,33.913421],[-97.517173,33.914016],[-97.51099,33.916327],[-97.50605,33.917495],[-97.500271,33.919635],[-97.494846,33.919193],[-97.487716,33.917508],[-97.486508,33.916991],[-97.486395,33.916399],[-97.470542,33.908984],[-97.469113,33.908618],[-97.463564,33.904955],[-97.46142,33.90523],[-97.460267,33.90436],[-97.460431,33.903581],[-97.459772,33.902596],[-97.458069,33.901635],[-97.457492,33.900513],[-97.456722,33.899826],[-97.456283,33.898566],[-97.454689,33.896825],[-97.451887,33.892428],[-97.451058,33.891676],[-97.451026,33.89069],[-97.4513,33.890459],[-97.450807,33.886608],[-97.451499,33.885214],[-97.451776,33.881595],[-97.451199,33.878183],[-97.451469,33.87093],[-97.452182,33.86896],[-97.453281,33.868044],[-97.453968,33.866693],[-97.456025,33.859432],[-97.455723,33.858104],[-97.455915,33.857646],[-97.456931,33.857073],[-97.457617,33.855126],[-97.457974,33.85508],[-97.459566,33.853316],[-97.461486,33.84956],[-97.463202,33.84309],[-97.463242,33.842004],[-97.462768,33.841864],[-97.462307,33.840261],[-97.459068,33.834581],[-97.456048,33.832246],[-97.454594,33.830002],[-97.453057,33.828536],[-97.445235,33.824643],[-97.444879,33.824048],[-97.444193,33.823773],[-97.437364,33.82181],[-97.433264,33.821259],[-97.430297,33.820418],[-97.428786,33.819415],[-97.426799,33.818641],[-97.418191,33.818707],[-97.414155,33.817977],[-97.413692,33.819304],[-97.410387,33.818845],[-97.406435,33.818821],[-97.403263,33.819523],[-97.400083,33.819483],[-97.395129,33.819963],[-97.391617,33.819343],[-97.390575,33.818839],[-97.386205,33.819513],[-97.380288,33.818526],[-97.375775,33.818832],[-97.37469,33.818552],[-97.368731,33.821443],[-97.365497,33.823744],[-97.358513,33.830018],[-97.357334,33.831369],[-97.355991,33.83501],[-97.354318,33.837965],[-97.352946,33.838836],[-97.34971,33.843372],[-97.348338,33.843876],[-97.347213,33.845113],[-97.346747,33.846945],[-97.344388,33.851504],[-97.344141,33.853061],[-97.342797,33.854825],[-97.342166,33.856199],[-97.342138,33.857184],[-97.339641,33.860734],[-97.338379,33.8663],[-97.338106,33.87056],[-97.337244,33.875101],[-97.335915,33.879168],[-97.334845,33.881802],[-97.33361,33.883566],[-97.33188,33.884483],[-97.32864,33.884827],[-97.326608,33.884414],[-97.323779,33.881712],[-97.323367,33.880934],[-97.32334,33.87917],[-97.324218,33.876628],[-97.328057,33.870263],[-97.334178,33.862888],[-97.334644,33.861445],[-97.334616,33.857231],[-97.334177,33.856246],[-97.333436,33.855559],[-97.332063,33.855056],[-97.328729,33.855434],[-97.326098,33.857083],[-97.320346,33.862299],[-97.318091,33.86353],[-97.316389,33.865775],[-97.315511,33.866164],[-97.314257,33.865089],[-97.314254,33.866985],[-97.310727,33.872476],[-97.309946,33.874449],[-97.309426,33.877769],[-97.309442,33.880147],[-97.309846,33.883003],[-97.311192,33.887089],[-97.310324,33.88849],[-97.309172,33.888698],[-97.307633,33.888011],[-97.302224,33.883888],[-97.2972,33.878597],[-97.287808,33.870054],[-97.281032,33.865482],[-97.275487,33.863266],[-97.275903,33.860878],[-97.275241,33.859675],[-97.275607,33.858168],[-97.270644,33.858073],[-97.266874,33.859957],[-97.265839,33.861731],[-97.265087,33.862413],[-97.263446,33.862888],[-97.256628,33.863292],[-97.255639,33.863702],[-97.254235,33.865323],[-97.253163,33.867911],[-97.250293,33.872708],[-97.249209,33.875101],[-97.248789,33.882818],[-97.246537,33.887499],[-97.247124,33.889383],[-97.24687,33.897357],[-97.246302,33.900472],[-97.245049,33.903216],[-97.241536,33.906911],[-97.239467,33.907976],[-97.231587,33.910223],[-97.228462,33.913254],[-97.226936,33.91317],[-97.226243,33.913343],[-97.225815,33.913833],[-97.210921,33.916064],[-97.206141,33.91428],[-97.203174,33.912105],[-97.200372,33.908761],[-97.19845,33.907525],[-97.190813,33.903815],[-97.189165,33.902601],[-97.186584,33.901548],[-97.182575,33.897609],[-97.180845,33.895204],[-97.179307,33.891127],[-97.178155,33.883707],[-97.176426,33.879081],[-97.176343,33.878394],[-97.176591,33.877432],[-97.17703,33.877203],[-97.176975,33.876699],[-97.169947,33.859656],[-97.168685,33.856037],[-97.166629,33.847311],[-97.167262,33.841563],[-97.166824,33.840395],[-97.171627,33.835335],[-97.175826,33.833801],[-97.176869,33.833001],[-97.179943,33.831673],[-97.18137,33.831375],[-97.186254,33.830894],[-97.19369,33.831307],[-97.195832,33.830805],[-97.197509,33.829834],[-97.199801,33.827405],[-97.203514,33.821825],[-97.204995,33.81887],[-97.204748,33.816947],[-97.204829,33.810122],[-97.204911,33.80971],[-97.205323,33.809756],[-97.20557,33.81145],[-97.205789,33.810053],[-97.205569,33.809091],[-97.205705,33.802908],[-97.205431,33.801488],[-97.204827,33.799908],[-97.203236,33.797343],[-97.200959,33.795442],[-97.200492,33.793198],[-97.196843,33.78894],[-97.195554,33.78784],[-97.195691,33.78681],[-97.194786,33.785344],[-97.192838,33.783146],[-97.19122,33.782184],[-97.190397,33.781153],[-97.189328,33.776939],[-97.189383,33.776138],[-97.189712,33.775978],[-97.190809,33.776436],[-97.188513,33.77241],[-97.187724,33.769831],[-97.188108,33.768007],[-97.190691,33.765143],[-97.191321,33.763537],[-97.192817,33.761169],[-97.192851,33.760362],[-97.191454,33.757966],[-97.185325,33.755503],[-97.184968,33.75603],[-97.181843,33.75587],[-97.18272,33.75548],[-97.181843,33.755366],[-97.180143,33.754495],[-97.178209,33.750104],[-97.176302,33.74776],[-97.17463,33.745035],[-97.174,33.74318],[-97.173617,33.739607],[-97.173287,33.738988],[-97.17219,33.737545],[-97.165256,33.730954],[-97.163145,33.729329],[-97.157373,33.725535],[-97.154367,33.724094],[-97.142227,33.719918],[-97.133915,33.718128],[-97.125135,33.71709],[-97.120685,33.717211],[-97.111057,33.719374],[-97.107191,33.721162],[-97.103344,33.723356],[-97.096748,33.728106],[-97.090488,33.735912],[-97.087365,33.741139],[-97.086201,33.744162],[-97.084944,33.752328],[-97.084802,33.7616],[-97.085191,33.764738],[-97.086568,33.770695],[-97.090822,33.78078],[-97.094274,33.787962],[-97.095098,33.792172],[-97.095238,33.798404],[-97.093765,33.802488],[-97.092646,33.804198],[-97.087335,33.808464],[-97.082476,33.811102],[-97.079105,33.812317],[-97.072067,33.814049],[-97.057957,33.816193],[-97.050852,33.816604],[-97.048146,33.817456],[-97.047539,33.822297],[-97.048315,33.82787],[-97.049316,33.829794],[-97.051949,33.832993],[-97.054675,33.835049],[-97.056967,33.836203],[-97.062282,33.83799],[-97.071041,33.839638],[-97.08345,33.840456],[-97.087204,33.841368],[-97.090115,33.843961],[-97.090538,33.845215],[-97.090334,33.847523],[-97.088498,33.851849],[-97.086772,33.853849],[-97.082708,33.85607],[-97.073473,33.859314],[-97.069536,33.860365],[-97.06704,33.860514],[-97.063786,33.859965],[-97.062047,33.859354],[-97.057373,33.857214],[-97.056546,33.856476],[-97.054692,33.853922],[-97.05356,33.850998],[-97.051143,33.84681],[-97.046126,33.83956],[-97.041832,33.837756],[-97.039428,33.837893],[-97.031333,33.841238],[-97.021438,33.846379],[-97.014392,33.853889],[-97.010951,33.857976],[-97.009856,33.859762],[-97.003514,33.865397],[-96.999998,33.867894],[-96.997088,33.871017],[-96.993933,33.875656],[-96.9919,33.87985],[-96.989576,33.882846],[-96.98907,33.884424],[-96.988043,33.886013],[-96.986034,33.888256],[-96.984683,33.888651],[-96.983835,33.890949],[-96.984725,33.903059],[-96.985326,33.906607],[-96.987746,33.914057],[-96.987875,33.917046],[-96.993997,33.928979],[-96.995023,33.932035],[-96.996251,33.942664],[-96.995791,33.946076],[-96.994674,33.948681],[-96.990835,33.952701],[-96.987892,33.954671],[-96.981337,33.956378],[-96.979927,33.956347],[-96.97929,33.955969],[-96.979347,33.95513],[-96.980676,33.951814],[-96.981031,33.94916],[-96.979818,33.941588],[-96.978754,33.939541],[-96.976955,33.937453],[-96.974869,33.93606],[-96.97287,33.935698],[-96.970703,33.937286],[-96.966378,33.939539],[-96.960017,33.941265],[-96.951782,33.944744],[-96.949041,33.946858],[-96.939136,33.951927],[-96.93484,33.954453],[-96.924268,33.959159],[-96.920733,33.959523],[-96.917652,33.95858],[-96.9163,33.957798],[-96.911336,33.95396],[-96.907387,33.950025],[-96.905253,33.947219],[-96.900996,33.938784],[-96.899442,33.933728],[-96.898274,33.9258],[-96.897868,33.920817],[-96.896469,33.913318],[-96.897194,33.902954],[-96.895728,33.896414],[-96.893673,33.893116],[-96.892786,33.889938],[-96.890499,33.885648],[-96.889497,33.881616],[-96.887558,33.878487],[-96.886015,33.875102],[-96.885687,33.873543],[-96.88301,33.868019],[-96.875281,33.860505],[-96.866438,33.853149],[-96.860247,33.849689],[-96.85609,33.84749],[-96.850593,33.847211],[-96.845896,33.848975],[-96.843709,33.850575],[-96.841592,33.852894],[-96.841481,33.857239],[-96.840819,33.863645],[-96.839775,33.868398],[-96.837413,33.871349],[-96.832879,33.874025],[-96.832157,33.874835],[-96.828163,33.874603],[-96.812778,33.872646],[-96.794276,33.868886],[-96.783485,33.863534],[-96.780569,33.860098],[-96.779588,33.857939],[-96.779376,33.856116],[-96.778783,33.854734],[-96.777202,33.848162],[-96.777104,33.843792],[-96.776766,33.841976],[-96.774531,33.838109],[-96.770675,33.829621],[-96.769377,33.827478],[-96.766234,33.825459],[-96.761587,33.824407],[-96.75404,33.824658],[-96.746038,33.825699],[-96.731618,33.828475],[-96.725102,33.830313],[-96.718922,33.830588],[-96.712422,33.831633],[-96.708134,33.83306],[-96.704457,33.835021],[-96.699574,33.839049],[-96.690708,33.849959],[-96.688191,33.854613],[-96.684727,33.862905],[-96.683048,33.869222],[-96.682209,33.873876],[-96.682103,33.876645],[-96.683464,33.884217],[-96.681494,33.894675],[-96.680947,33.896204],[-96.678572,33.900857],[-96.675306,33.909114],[-96.673449,33.912278],[-96.670618,33.914914],[-96.667187,33.91694],[-96.66441,33.917267],[-96.659896,33.916666],[-96.658207,33.915841],[-96.654984,33.913789],[-96.647735,33.907973],[-96.64405,33.905962],[-96.630117,33.895422],[-96.628294,33.894477],[-96.626404,33.894392],[-96.624093,33.895141],[-96.614844,33.894546],[-96.59217,33.895513],[-96.587934,33.894784],[-96.585452,33.891281],[-96.58536,33.888948],[-96.587494,33.884251],[-96.590112,33.880665],[-96.597348,33.875101],[-96.601686,33.872823],[-96.61197,33.869016],[-96.612963,33.867651],[-96.625399,33.856542],[-96.629022,33.852408],[-96.629751,33.850863],[-96.63002,33.848539],[-96.629847,33.846561],[-96.629274,33.8455],[-96.623147,33.841496],[-96.618022,33.839586],[-96.612331,33.838156],[-96.601256,33.834329],[-96.592926,33.830915],[-96.587067,33.828008],[-96.572937,33.819098],[-96.566666,33.818511],[-96.563599,33.819165],[-96.56042,33.818862],[-96.556213,33.819142],[-96.556997,33.817983],[-96.558004,33.817642],[-96.558109,33.817131],[-96.557122,33.817565],[-96.555654,33.819389],[-96.554923,33.819279],[-96.555028,33.818867],[-96.553982,33.819175],[-96.551065,33.819252],[-96.551809,33.818834],[-96.551704,33.818477],[-96.548754,33.819944],[-96.545417,33.820124],[-96.543139,33.820816],[-96.541677,33.820805],[-96.533368,33.82277],[-96.531966,33.823989],[-96.531729,33.823462],[-96.532131,33.823572],[-96.532513,33.822858],[-96.528623,33.821664],[-96.524865,33.819526],[-96.524069,33.817503],[-96.520609,33.812623],[-96.517848,33.806858],[-96.51656,33.802248],[-96.515689,33.795165],[-96.515745,33.791418],[-96.516581,33.788279],[-96.51591,33.787792],[-96.512709,33.782801],[-96.510855,33.780608],[-96.508487,33.778321],[-96.500984,33.772801],[-96.500352,33.773257],[-96.500233,33.772586],[-96.493375,33.77304],[-96.486341,33.772965],[-96.476694,33.77493],[-96.473092,33.775445],[-96.471154,33.775205],[-96.469365,33.775792],[-96.459154,33.775232],[-96.456254,33.776035],[-96.45051,33.780588],[-96.448045,33.781031],[-96.442042,33.780488],[-96.436714,33.779329],[-96.431987,33.779105],[-96.423532,33.776432],[-96.421462,33.774939],[-96.418978,33.771637],[-96.416146,33.766099],[-96.414576,33.761199],[-96.413632,33.759268],[-96.413408,33.757714],[-96.40822,33.750542],[-96.406589,33.749042],[-96.405452,33.748497],[-96.399976,33.743551],[-96.395046,33.738401],[-96.388986,33.733585],[-96.382828,33.729269],[-96.379452,33.725764],[-96.378438,33.723975],[-96.375485,33.720876],[-96.370847,33.717996],[-96.369589,33.716809],[-96.368447,33.714926],[-96.366944,33.711223],[-96.366015,33.705493],[-96.363252,33.70105],[-96.363135,33.694215],[-96.362197,33.691818],[-96.359374,33.689432],[-96.355634,33.687494],[-96.354089,33.686983],[-96.351933,33.687028],[-96.350566,33.686572],[-96.346859,33.686216],[-96.342568,33.686755],[-96.338756,33.688316],[-96.334604,33.692366],[-96.332917,33.693158],[-96.328076,33.694158],[-96.322152,33.694705],[-96.321098,33.695102],[-96.318378,33.697118],[-96.314886,33.702696],[-96.31223,33.706304],[-96.309964,33.710491],[-96.308682,33.713988],[-96.308183,33.716851],[-96.308529,33.71762],[-96.308168,33.71867],[-96.307298,33.71954],[-96.306364,33.723062],[-96.30631,33.729347],[-96.307874,33.735022],[-96.30765,33.737451],[-96.30692,33.738956],[-96.306163,33.744032],[-96.303657,33.748328],[-96.300147,33.755681],[-96.299637,33.75615],[-96.29961,33.756924],[-96.29811,33.759125],[-96.297794,33.761213],[-96.298202,33.761015],[-96.298255,33.7594],[-96.298827,33.758548],[-96.298761,33.760905],[-96.297031,33.763234],[-96.296412,33.766833],[-96.295194,33.768338],[-96.293708,33.769409],[-96.292161,33.76981],[-96.290359,33.770831],[-96.287083,33.771243],[-96.278301,33.770598],[-96.268928,33.767958],[-96.263593,33.767467],[-96.262133,33.766922],[-96.256893,33.763728],[-96.255092,33.761634],[-96.248243,33.759106],[-96.238724,33.753693],[-96.236926,33.753259],[-96.230352,33.748524],[-96.229023,33.748021],[-96.224599,33.748327],[-96.220522,33.74739],[-96.215851,33.749179],[-96.208994,33.750096],[-96.203266,33.751339],[-96.202142,33.752015],[-96.201319,33.751795],[-96.197985,33.752554],[-96.190166,33.75557],[-96.188015,33.75602],[-96.186627,33.755021],[-96.187732,33.756097],[-96.178603,33.760426],[-96.172933,33.765221],[-96.16909,33.770417],[-96.168333,33.772538],[-96.168112,33.774475],[-96.167538,33.774485],[-96.166595,33.77768],[-96.165199,33.78013],[-96.165114,33.781638],[-96.1641,33.784261],[-96.162775,33.786421],[-96.163597,33.786936],[-96.163713,33.787728],[-96.162757,33.788769],[-96.162483,33.789904],[-96.162902,33.791974],[-96.162745,33.792613],[-96.160756,33.79591],[-96.161954,33.799713],[-96.161121,33.802692],[-96.161385,33.803154],[-96.161114,33.805767],[-96.159822,33.81155],[-96.159273,33.812328],[-96.156355,33.813349],[-96.155538,33.81404],[-96.158772,33.813941],[-96.163766,33.813051],[-96.164979,33.81094],[-96.166896,33.809602],[-96.168041,33.808289],[-96.169121,33.806048],[-96.16995,33.805131],[-96.170721,33.803192],[-96.17028,33.803708],[-96.170023,33.803252],[-96.169457,33.804109],[-96.169592,33.800944],[-96.172857,33.801102],[-96.175726,33.802321],[-96.177339,33.805114],[-96.179122,33.810224],[-96.17691,33.813935],[-96.176307,33.814375],[-96.175349,33.814736],[-96.17363,33.81448],[-96.171353,33.814725],[-96.170497,33.815132],[-96.170432,33.815841],[-96.166503,33.817867],[-96.161455,33.81764],[-96.159295,33.818599],[-96.150765,33.816987],[-96.148792,33.819197],[-96.15163,33.831946],[-96.150147,33.835855],[-96.149227,33.837091],[-96.146535,33.838303],[-96.138905,33.839159],[-96.135189,33.838602],[-96.131058,33.837438],[-96.130349,33.837824],[-96.129807,33.838872],[-96.127818,33.839896],[-96.122949,33.839964],[-96.118167,33.837883],[-96.114437,33.835056],[-96.109994,33.832396],[-96.104078,33.83073],[-96.09936,33.83047],[-96.097449,33.832729],[-96.097638,33.837936],[-96.099153,33.842409],[-96.100785,33.844229],[-96.101349,33.845721],[-96.101473,33.84671],[-96.100746,33.847683],[-96.100095,33.847971],[-96.099112,33.847586],[-96.098296,33.847848],[-96.091683,33.846873],[-96.084626,33.846656],[-96.077442,33.844973],[-96.072658,33.842937],[-96.06829,33.84269],[-96.063934,33.841528],[-96.055358,33.838262],[-96.05356,33.838203],[-96.048834,33.836468],[-96.043271,33.838996],[-96.038978,33.84028],[-96.034988,33.842646],[-96.032545,33.845266],[-96.030865,33.848363],[-96.030488,33.85106],[-96.030809,33.85423],[-96.030501,33.855261],[-96.029438,33.856348],[-96.026968,33.857474],[-96.022408,33.857042],[-96.020083,33.855046],[-96.019542,33.853497],[-96.020326,33.849579],[-96.022508,33.84613],[-96.023095,33.844128],[-96.023241,33.842479],[-96.022736,33.841092],[-96.020624,33.840627],[-96.017055,33.841454],[-96.010907,33.844296],[-96.005704,33.845435],[-96.00405,33.845237],[-96.004237,33.845544],[-96.003595,33.846028],[-96.004998,33.845987],[-96.004473,33.846836],[-96.002747,33.848532],[-96.000257,33.849403],[-95.998351,33.85105],[-95.996833,33.853898],[-95.99559,33.857907],[-95.994869,33.861824],[-95.999694,33.862552],[-96.002875,33.86667],[-96.003982,33.868405],[-96.004573,33.870712],[-96.002925,33.87359],[-96.001873,33.873744],[-96.000255,33.87254],[-95.998617,33.87223],[-95.996377,33.871231],[-95.992111,33.868849],[-95.989191,33.86859],[-95.987836,33.867949],[-95.984927,33.865805],[-95.984059,33.860118],[-95.98604,33.856931],[-95.984856,33.852492],[-95.974629,33.855464],[-95.962305,33.857099],[-95.957729,33.858166],[-95.951962,33.858832],[-95.947327,33.858915],[-95.9484,33.858745],[-95.94834,33.858547],[-95.950046,33.857783],[-95.951264,33.857755],[-95.952383,33.85731],[-95.951382,33.857332],[-95.948676,33.858041],[-95.94414,33.859998],[-95.941796,33.861651],[-95.94125,33.862613],[-95.941224,33.864151],[-95.939143,33.866453],[-95.936404,33.871424],[-95.935634,33.875],[-95.933474,33.878614],[-95.9335,33.880031],[-95.932868,33.881372],[-95.932677,33.883173],[-95.932209,33.883882],[-95.931241,33.88464],[-95.92825,33.885354],[-95.925089,33.884936],[-95.918583,33.880838],[-95.913907,33.878854],[-95.909904,33.876639],[-95.901865,33.871366],[-95.895215,33.86758],[-95.890409,33.865563],[-95.887952,33.865408],[-95.886833,33.864935],[-95.88293,33.862033],[-95.885418,33.863353],[-95.885188,33.863012],[-95.881153,33.860555],[-95.879435,33.858961],[-95.877302,33.857873],[-95.87236,33.854369],[-95.867189,33.85129],[-95.861046,33.849799],[-95.860381,33.849805],[-95.860025,33.85025],[-95.85863,33.85069],[-95.856832,33.850141],[-95.85454,33.848225],[-95.848921,33.841784],[-95.843935,33.838198],[-95.837114,33.835646],[-95.830406,33.834785],[-95.823699,33.837406],[-95.820974,33.839516],[-95.819486,33.841296],[-95.818855,33.843021],[-95.819158,33.844982],[-95.818881,33.846663],[-95.819448,33.84902],[-95.821121,33.853068],[-95.821161,33.854233],[-95.820654,33.855447],[-95.820911,33.856172],[-95.81993,33.857546],[-95.817718,33.858331],[-95.816796,33.859331],[-95.815571,33.859853],[-95.810073,33.860271],[-95.806432,33.860832],[-95.805016,33.861381],[-95.802184,33.861562],[-95.797614,33.86059],[-95.791135,33.857875],[-95.788679,33.856408],[-95.784914,33.853353],[-95.783939,33.853111],[-95.782366,33.851079],[-95.781142,33.85087],[-95.779884,33.851331],[-95.775902,33.847311],[-95.771968,33.845604],[-95.770239,33.845202],[-95.763586,33.846824],[-95.757959,33.849566],[-95.75452,33.852218],[-95.752109,33.854953],[-95.751555,33.856035],[-95.751342,33.860287],[-95.752071,33.862029],[-95.754131,33.865249],[-95.757803,33.868975],[-95.760056,33.873817],[-95.76152,33.873118],[-95.762063,33.875107],[-95.762467,33.881144],[-95.761729,33.884317],[-95.759389,33.888768],[-95.757941,33.890752],[-95.756612,33.892028],[-95.752153,33.894577],[-95.748856,33.896081],[-95.745131,33.89669],[-95.736316,33.896866],[-95.733183,33.896447],[-95.731732,33.895513],[-95.729309,33.894623],[-95.728159,33.894633],[-95.726663,33.893506],[-95.71998,33.890944],[-95.717999,33.889667],[-95.71695,33.888288],[-95.715198,33.887001],[-95.712183,33.885519],[-95.700635,33.885845],[-95.699752,33.886216],[-95.694888,33.886787],[-95.690483,33.887936],[-95.688876,33.888486],[-95.687053,33.88989],[-95.684579,33.890646],[-95.683949,33.891571],[-95.67928,33.894364],[-95.677922,33.896976],[-95.672101,33.90228],[-95.670787,33.904406],[-95.669241,33.905848],[-95.668632,33.906995],[-95.665478,33.909004],[-95.66046,33.910162],[-95.65835,33.910258],[-95.657535,33.90965],[-95.656321,33.909377],[-95.655232,33.909914],[-95.651128,33.908631],[-95.64812,33.908128],[-95.638772,33.904938],[-95.635337,33.905263],[-95.634367,33.904727],[-95.632774,33.904815],[-95.631781,33.905534],[-95.629256,33.905895],[-95.627318,33.907806],[-95.626024,33.912501],[-95.624798,33.915664],[-95.62164,33.920513],[-95.619053,33.923015],[-95.61836,33.924208],[-95.618357,33.924849],[-95.616367,33.927626],[-95.614746,33.928561],[-95.613661,33.928414],[-95.611,33.929044],[-95.609074,33.9292],[-95.605132,33.928757],[-95.603138,33.9292],[-95.599108,33.933071],[-95.598416,33.93438],[-95.597954,33.935722],[-95.597959,33.939361],[-95.597522,33.942342],[-95.594085,33.943057],[-95.58984,33.942045],[-95.58787,33.940811],[-95.586598,33.939586],[-95.584542,33.936682],[-95.581854,33.934152],[-95.577324,33.932927],[-95.573998,33.933506],[-95.570264,33.933717],[-95.567393,33.933616],[-95.563784,33.932945],[-95.557711,33.930351],[-95.55421,33.926958],[-95.552799,33.924311],[-95.551312,33.91622],[-95.549114,33.911534],[-95.548234,33.906616],[-95.547832,33.901856],[-95.548479,33.897573],[-95.550313,33.893942],[-95.55121,33.891104],[-95.551216,33.889713],[-95.548961,33.885053],[-95.547638,33.883509],[-95.544141,33.880603],[-95.538576,33.880671],[-95.535721,33.881144],[-95.534306,33.881052],[-95.532622,33.881521],[-95.529811,33.883515],[-95.528007,33.883884],[-95.526523,33.884684],[-95.523788,33.887322],[-95.518529,33.889877],[-95.517553,33.891303],[-95.517428,33.892117],[-95.516433,33.893035],[-95.515979,33.893986],[-95.512759,33.895792],[-95.511439,33.897296],[-95.509526,33.897586],[-95.507952,33.897433],[-95.506619,33.896716],[-95.505788,33.895564],[-95.505092,33.893406],[-95.504838,33.889714],[-95.505656,33.885831],[-95.505365,33.88243],[-95.50621,33.877809],[-95.505776,33.876391],[-95.504999,33.875922],[-95.501634,33.875015],[-95.499913,33.87523],[-95.49204,33.874942],[-95.483531,33.876825],[-95.473296,33.880197],[-95.47047,33.881599],[-95.46883,33.883116],[-95.468554,33.884632],[-95.464938,33.886891],[-95.463594,33.887249],[-95.46144,33.887106],[-95.45973,33.886611],[-95.460091,33.884199],[-95.46279,33.879051],[-95.462847,33.876856],[-95.463785,33.876038],[-95.464339,33.874389],[-95.464225,33.873381],[-95.463336,33.872396],[-95.453655,33.870862],[-95.44988,33.869527],[-95.445466,33.867236],[-95.442746,33.866506],[-95.4383,33.866342],[-95.434546,33.867551],[-95.432372,33.868765],[-95.427684,33.870459],[-95.424606,33.869905],[-95.421651,33.868683],[-95.41871,33.868483],[-95.41582,33.866916],[-95.410715,33.865406],[-95.405209,33.864575],[-95.400493,33.864756],[-95.398042,33.865211],[-95.389695,33.867978],[-95.383826,33.868646],[-95.381415,33.868453],[-95.3788,33.868721],[-95.375743,33.868401],[-95.372733,33.867322],[-95.369301,33.866574],[-95.367832,33.866472],[-95.365626,33.867064],[-95.362571,33.866902],[-95.358374,33.868431],[-95.357383,33.869235],[-95.352359,33.869597],[-95.351422,33.8703],[-95.350322,33.870605],[-95.347728,33.870503],[-95.346587,33.871557],[-95.342513,33.872972],[-95.341114,33.873323],[-95.339879,33.873017],[-95.339064,33.874071],[-95.337706,33.874659],[-95.335696,33.874252],[-95.332071,33.879301],[-95.330458,33.882532],[-95.329936,33.886334],[-95.325535,33.885734],[-95.314428,33.881632],[-95.313697,33.8811],[-95.312564,33.879001],[-95.310318,33.877033],[-95.306397,33.874906],[-95.303478,33.874307],[-95.300975,33.874186],[-95.294513,33.872785],[-95.292747,33.87323],[-95.288926,33.87307],[-95.286798,33.873487],[-95.280725,33.875491],[-95.279025,33.876677],[-95.278174,33.878386],[-95.27864,33.883579],[-95.278244,33.883947],[-95.27794,33.887293],[-95.278163,33.890343],[-95.280691,33.896075],[-95.281784,33.897537],[-95.283952,33.899126],[-95.284558,33.899917],[-95.285591,33.903357],[-95.284629,33.905483],[-95.281537,33.908637],[-95.27596,33.911279],[-95.273198,33.911624],[-95.269949,33.911491],[-95.268697,33.91109],[-95.266385,33.908468],[-95.264997,33.904588],[-95.265086,33.898307],[-95.265825,33.895527],[-95.266142,33.89551],[-95.266656,33.8939],[-95.26578,33.893697],[-95.265141,33.892707],[-95.264425,33.889778],[-95.26212,33.887826],[-95.261026,33.887848],[-95.257724,33.890122],[-95.253187,33.894878],[-95.252671,33.897296],[-95.250217,33.901614],[-95.248501,33.906974],[-95.247597,33.915613],[-95.248187,33.919926],[-95.249661,33.925684],[-95.250426,33.932711],[-95.250893,33.934255],[-95.25084,33.936358],[-95.250001,33.938861],[-95.245996,33.943721],[-95.240539,33.946784],[-95.240605,33.947229],[-95.238746,33.947785],[-95.236557,33.947907],[-95.234191,33.948771],[-95.232879,33.949736],[-95.230884,33.955141],[-95.230258,33.955988],[-95.230423,33.957785],[-95.230142,33.959724],[-95.230865,33.959512],[-95.230444,33.960043],[-95.227574,33.960798],[-95.227076,33.961577],[-95.226041,33.962237],[-95.220488,33.961997],[-95.216947,33.962674],[-95.214137,33.962142],[-95.205761,33.958616],[-95.202615,33.956907],[-95.199541,33.954105],[-95.198104,33.953352],[-95.192551,33.951803],[-95.189478,33.951281],[-95.184968,33.949529],[-95.18028,33.948836],[-95.171503,33.94672],[-95.167792,33.944686],[-95.156961,33.936645],[-95.149069,33.935297],[-95.139484,33.934733],[-95.134861,33.93599],[-95.130157,33.936799],[-95.128171,33.936259],[-95.1247,33.934675],[-95.121184,33.931307],[-95.121327,33.927181],[-95.121727,33.925762],[-95.127731,33.920435],[-95.131642,33.916027],[-95.131644,33.913926],[-95.131041,33.912535],[-95.127364,33.907826],[-95.125777,33.906497],[-95.123101,33.905417],[-95.122488,33.905528],[-95.120893,33.904539],[-95.117768,33.904233],[-95.113148,33.904493],[-95.110388,33.905407],[-95.108622,33.906429],[-95.106784,33.908496],[-95.105176,33.909464],[-95.099943,33.910318],[-95.095778,33.911374],[-95.089801,33.914069],[-95.08557,33.917719],[-95.084655,33.920038],[-95.083198,33.921417],[-95.082229,33.921742],[-95.08006,33.920989],[-95.07795,33.918696],[-95.076782,33.913584],[-95.07783,33.911265],[-95.079742,33.908595],[-95.081606,33.90686],[-95.087583,33.903018],[-95.090219,33.90272],[-95.092064,33.901945],[-95.091003,33.901572],[-95.091503,33.900329],[-95.092946,33.900148],[-95.094765,33.899438],[-95.0963,33.899377],[-95.097408,33.898861],[-95.099351,33.89703],[-95.100003,33.896793],[-95.100378,33.895595],[-95.099856,33.892776],[-95.098709,33.890683],[-95.097786,33.88965],[-95.095833,33.88843],[-95.092118,33.883216],[-95.089607,33.880857],[-95.0874,33.880321],[-95.082408,33.879882],[-95.080102,33.885706],[-95.079834,33.887479],[-95.078696,33.90504],[-95.077704,33.906712],[-95.075908,33.907656],[-95.074988,33.908805],[-95.073966,33.915636],[-95.069476,33.917586],[-95.067955,33.917551],[-95.06676,33.917101],[-95.064512,33.915346],[-95.063459,33.91404],[-95.063318,33.912059],[-95.064235,33.910156],[-95.065432,33.908953],[-95.066979,33.908253],[-95.070573,33.908401],[-95.074629,33.907267],[-95.076417,33.904298],[-95.075876,33.901846],[-95.073597,33.89881],[-95.073267,33.897904],[-95.072918,33.897849],[-95.071801,33.895561],[-95.069952,33.895578],[-95.071231,33.898778],[-95.073528,33.901966],[-95.072413,33.902699],[-95.069128,33.903419],[-95.062284,33.903618],[-95.060105,33.901873],[-95.058834,33.894846],[-95.059088,33.887491],[-95.05846,33.886246],[-95.056333,33.884142],[-95.054787,33.881648],[-95.050572,33.878299],[-95.051319,33.874782],[-95.050704,33.868179],[-95.049025,33.86409],[-95.046568,33.862565],[-95.043921,33.86166],[-95.037207,33.86025],[-95.029715,33.860091],[-95.020672,33.8583],[-95.015745,33.857733],[-95.012214,33.858034],[-95.010185,33.858731],[-95.003589,33.862246],[-95.002187,33.863713],[-95.000223,33.862505],[-94.998019,33.860504],[-94.997124,33.859067],[-94.995524,33.857438],[-94.993921,33.854759],[-94.993418,33.853322],[-94.992671,33.852455],[-94.992163,33.852034],[-94.988487,33.851],[-94.983295,33.851357],[-94.981634,33.852314],[-94.97701,33.857971],[-94.975896,33.860188],[-94.972735,33.861983],[-94.971435,33.862123],[-94.970205,33.861817],[-94.968892,33.860913],[-94.968317,33.856696],[-94.965799,33.848696],[-94.965647,33.843746],[-94.964401,33.837021],[-94.957676,33.835004],[-94.952298,33.834949],[-94.947281,33.832648],[-94.944681,33.831055],[-94.943888,33.830226],[-94.943531,33.828378],[-94.944838,33.82584],[-94.947663,33.823552],[-94.953518,33.816475],[-94.953084,33.815203],[-94.947874,33.808356],[-94.943667,33.806291],[-94.942217,33.80578],[-94.940436,33.805637],[-94.923289,33.808742],[-94.924266,33.812494],[-94.923099,33.815456],[-94.923815,33.819168],[-94.926571,33.826339],[-94.926616,33.827557],[-94.926072,33.828533],[-94.924573,33.829047],[-94.922439,33.829113],[-94.920925,33.828728],[-94.918599,33.82682],[-94.91801,33.826783],[-94.915908,33.82476],[-94.913655,33.821729],[-94.91216,33.819443],[-94.910882,33.815915],[-94.911042,33.815023],[-94.912596,33.812591],[-94.914487,33.808516],[-94.916748,33.808969],[-94.9176,33.807001],[-94.917325,33.805861],[-94.917533,33.80521],[-94.919436,33.80096],[-94.921314,33.798408],[-94.922353,33.793535],[-94.921526,33.790472],[-94.918071,33.78688],[-94.917598,33.786717],[-94.916937,33.784936],[-94.912868,33.779476],[-94.911427,33.778383],[-94.906243,33.77819],[-94.904172,33.777198],[-94.904599,33.775678],[-94.904198,33.773249],[-94.901281,33.77085],[-94.898198,33.769021],[-94.895303,33.768404],[-94.886934,33.769067],[-94.885678,33.765234],[-94.883847,33.763243],[-94.881395,33.761177],[-94.879395,33.760188],[-94.877357,33.758574],[-94.876372,33.75733],[-94.874772,33.756904],[-94.874143,33.757342],[-94.873833,33.758059],[-94.87493,33.767432],[-94.874935,33.768768],[-94.874564,33.769618],[-94.873453,33.77052],[-94.871737,33.770395],[-94.869606,33.769862],[-94.868144,33.768874],[-94.866513,33.76697],[-94.865929,33.765637],[-94.866097,33.763401],[-94.866736,33.76183],[-94.868374,33.760126],[-94.869667,33.759521],[-94.873965,33.75634],[-94.876124,33.755501],[-94.876082,33.754899],[-94.877125,33.753123],[-94.877083,33.75222],[-94.874669,33.749164],[-94.872944,33.748785],[-94.869913,33.746196],[-94.86882,33.745881],[-94.867768,33.745009],[-94.866149,33.744669],[-94.860687,33.741945],[-94.856554,33.74071],[-94.849314,33.739587],[-94.842574,33.739445],[-94.827948,33.740882],[-94.828321,33.734947],[-94.827256,33.734131],[-94.822928,33.732724],[-94.821989,33.732878],[-94.820429,33.733807],[-94.820089,33.734826],[-94.820155,33.736984],[-94.823042,33.747525],[-94.830844,33.758079],[-94.830875,33.759985],[-94.829499,33.764104],[-94.827275,33.766885],[-94.825294,33.768525],[-94.823385,33.769179],[-94.820707,33.768964],[-94.818574,33.767704],[-94.817335,33.765842],[-94.816387,33.763963],[-94.815937,33.759787],[-94.816831,33.754216],[-94.815253,33.751382],[-94.814602,33.751838],[-94.812764,33.752113],[-94.812155,33.750936],[-94.812193,33.747726],[-94.812912,33.745447],[-94.814803,33.743119],[-94.816983,33.741591],[-94.817023,33.740007],[-94.812021,33.735262],[-94.809145,33.73451],[-94.807268,33.733411],[-94.803433,33.732739],[-94.801874,33.732949],[-94.79726,33.736925],[-94.790051,33.739356],[-94.781542,33.743322],[-94.780068,33.744469],[-94.778416,33.748445],[-94.777841,33.753006],[-94.776368,33.756399],[-94.774923,33.758115],[-94.772915,33.759733],[-94.771345,33.760648],[-94.76985,33.761034],[-94.763035,33.759764],[-94.762043,33.759022],[-94.760058,33.758291],[-94.759323,33.75673],[-94.758125,33.756537],[-94.757847,33.755889],[-94.757189,33.753028],[-94.757813,33.750109],[-94.758948,33.748532],[-94.760218,33.748031],[-94.760868,33.74732],[-94.762226,33.746609],[-94.763233,33.746642],[-94.765256,33.746096],[-94.769023,33.746202],[-94.772425,33.746767],[-94.775836,33.746712],[-94.776815,33.746437],[-94.778866,33.745099],[-94.78136,33.74211],[-94.785974,33.738515],[-94.788637,33.735669],[-94.782498,33.730125],[-94.779372,33.728872],[-94.773126,33.727187],[-94.768695,33.726989],[-94.760604,33.727054],[-94.754396,33.73339],[-94.752389,33.734556],[-94.751825,33.734326],[-94.751371,33.733727],[-94.750287,33.729234],[-94.747668,33.725148],[-94.757738,33.717817],[-94.756998,33.71604],[-94.755905,33.715073],[-94.751366,33.71354],[-94.747585,33.714734],[-94.745855,33.716158],[-94.744916,33.718614],[-94.745089,33.722908],[-94.744495,33.724346],[-94.742092,33.726692],[-94.736739,33.727187],[-94.735178,33.726616],[-94.733413,33.725191],[-94.73263,33.723917],[-94.732329,33.722505],[-94.732786,33.720035],[-94.733593,33.718685],[-94.736129,33.71608],[-94.738572,33.714501],[-94.741237,33.713358],[-94.753069,33.710753],[-94.753801,33.708663],[-94.753651,33.706931],[-94.751942,33.704862],[-94.743091,33.701988],[-94.740922,33.700555],[-94.739413,33.69699],[-94.737179,33.692928],[-94.735856,33.691625],[-94.734366,33.691144],[-94.730387,33.691254],[-94.726123,33.690899],[-94.725243,33.690098],[-94.724076,33.689667],[-94.719531,33.688857],[-94.715943,33.694913],[-94.716873,33.700358],[-94.718872,33.703349],[-94.719633,33.703921],[-94.722821,33.704811],[-94.727199,33.705314],[-94.728484,33.705791],[-94.730691,33.707355],[-94.732524,33.709211],[-94.733643,33.711306],[-94.734918,33.714765],[-94.734731,33.715437],[-94.733965,33.715687],[-94.73233,33.71565],[-94.73028,33.71606],[-94.725295,33.714672],[-94.712719,33.708962],[-94.706024,33.706293],[-94.702601,33.704038],[-94.70156,33.702878],[-94.700884,33.701417],[-94.701055,33.700053],[-94.701996,33.698655],[-94.703496,33.697538],[-94.706336,33.696726],[-94.709321,33.697174],[-94.710841,33.696743],[-94.713201,33.69774],[-94.714432,33.697189],[-94.715123,33.695961],[-94.715112,33.694108],[-94.718338,33.688664],[-94.716188,33.687902],[-94.712067,33.687935],[-94.709101,33.688311],[-94.704114,33.687945],[-94.70175,33.687621],[-94.697246,33.686203],[-94.691756,33.685474],[-94.68822,33.68444],[-94.684796,33.684353],[-94.677383,33.688342],[-94.673933,33.691844],[-94.671773,33.693307],[-94.668891,33.694392],[-94.666885,33.694583],[-94.664914,33.694255],[-94.659167,33.692138],[-94.657529,33.690194],[-94.654861,33.688568],[-94.651402,33.685843],[-94.648804,33.686573],[-94.647093,33.690346],[-94.647241,33.692654],[-94.648621,33.697011],[-94.648392,33.69949],[-94.647902,33.700516],[-94.647277,33.701187],[-94.645882,33.701778],[-94.643715,33.701522],[-94.641776,33.700385],[-94.63945,33.698259],[-94.638731,33.69711],[-94.638646,33.695804],[-94.639775,33.693938],[-94.643132,33.690323],[-94.645492,33.685932],[-94.650373,33.684438],[-94.649821,33.683407],[-94.648055,33.681527],[-94.645579,33.6755],[-94.645337,33.673644],[-94.650685,33.670604],[-94.65185,33.670453],[-94.653996,33.671147],[-94.659525,33.675129],[-94.661806,33.675133],[-94.66754,33.6728],[-94.668848,33.671878],[-94.670184,33.670343],[-94.671048,33.668388],[-94.670564,33.665934],[-94.669311,33.664362],[-94.666855,33.662808],[-94.663955,33.661994],[-94.663195,33.661084],[-94.661829,33.660457],[-94.657219,33.660592],[-94.654919,33.659925],[-94.651734,33.660704],[-94.649234,33.662604],[-94.645923,33.661945],[-94.644692,33.66231],[-94.642451,33.663887],[-94.640054,33.663672],[-94.638679,33.663988],[-94.637563,33.665281],[-94.636939,33.667469],[-94.634938,33.667649],[-94.630919,33.673442],[-94.630554,33.674459],[-94.630278,33.678116],[-94.629922,33.679094],[-94.628711,33.680532],[-94.627239,33.681954],[-94.624298,33.682336],[-94.623214,33.682068],[-94.622043,33.682535],[-94.618329,33.681608],[-94.616418,33.680103],[-94.614303,33.677109],[-94.612707,33.673765],[-94.611891,33.67004],[-94.607683,33.665569],[-94.605823,33.664189],[-94.603705,33.663197],[-94.601163,33.662761],[-94.596019,33.663863],[-94.593294,33.665258],[-94.59205,33.667039],[-94.591401,33.669413],[-94.591953,33.672863],[-94.591415,33.673686],[-94.590298,33.674405],[-94.590027,33.67585],[-94.590335,33.67769],[-94.592829,33.6823],[-94.59303,33.684019],[-94.59275,33.684714],[-94.591585,33.685867],[-94.589658,33.686368],[-94.58793,33.686255],[-94.586242,33.685131],[-94.584837,33.682824],[-94.580335,33.67888],[-94.57962,33.677623],[-94.579554,33.675822],[-94.581251,33.673618],[-94.580259,33.672892],[-94.579269,33.670817],[-94.579376,33.669307],[-94.580784,33.666392],[-94.577876,33.665682],[-94.575593,33.66627],[-94.572568,33.6677],[-94.570458,33.668305],[-94.563668,33.669272],[-94.561203,33.668504],[-94.560501,33.667463],[-94.560339,33.666591],[-94.56114,33.664911],[-94.562538,33.663297],[-94.564802,33.661804],[-94.568433,33.660941],[-94.569993,33.660877],[-94.57557,33.659409],[-94.576765,33.658763],[-94.586986,33.65018],[-94.59083,33.645563],[-94.590478,33.645075],[-94.588632,33.644183],[-94.583273,33.643793],[-94.580047,33.6445],[-94.576243,33.646546],[-94.573988,33.649517],[-94.570566,33.652226],[-94.565105,33.654386],[-94.560198,33.656967],[-94.549636,33.660676],[-94.548111,33.66033],[-94.546732,33.659566],[-94.545437,33.657635],[-94.543527,33.656005],[-94.543022,33.655182],[-94.542627,33.653992],[-94.542593,33.651411],[-94.543033,33.649322],[-94.545436,33.646228],[-94.546006,33.645908],[-94.550035,33.645167],[-94.555995,33.642811],[-94.559042,33.641971],[-94.563334,33.640065],[-94.568386,33.637203],[-94.570379,33.630536],[-94.569975,33.62847],[-94.568965,33.627453],[-94.564076,33.626265],[-94.560217,33.626746],[-94.558012,33.626691],[-94.553372,33.627584],[-94.551869,33.628185],[-94.546437,33.631504],[-94.541858,33.636299],[-94.53951,33.637006],[-94.53775,33.638255],[-94.528126,33.641248],[-94.523253,33.641149],[-94.521837,33.640728],[-94.519942,33.639275],[-94.518529,33.63757],[-94.521123,33.634932],[-94.527579,33.630818],[-94.530434,33.628624],[-94.532859,33.62743],[-94.534814,33.625521],[-94.535425,33.624217],[-94.53534,33.622502],[-94.534689,33.621193],[-94.532601,33.619126],[-94.52774,33.615898],[-94.523498,33.615899],[-94.520989,33.617023],[-94.519838,33.618077],[-94.519673,33.619611],[-94.519098,33.62023],[-94.518961,33.620985],[-94.518441,33.621352],[-94.518495,33.622222],[-94.51792,33.623734],[-94.518686,33.624558],[-94.520245,33.629805],[-94.517468,33.633056],[-94.515956,33.63109],[-94.513908,33.626877],[-94.511514,33.623105],[-94.509498,33.621708],[-94.508375,33.62129],[-94.505655,33.620668],[-94.504525,33.620728],[-94.501764,33.621716],[-94.500699,33.622974],[-94.498911,33.623924],[-94.493065,33.624531],[-94.491503,33.625115],[-94.488363,33.627406],[-94.487514,33.628939],[-94.487737,33.630634],[-94.489095,33.633438],[-94.49167,33.636454],[-94.483042,33.638588],[-94.478067,33.639007],[-94.475507,33.638777],[-94.47277,33.637575],[-94.468362,33.637542],[-94.466075,33.636262],[-94.464186,33.637656],[-94.462592,33.641789],[-94.461453,33.643616],[-94.459872,33.644849],[-94.45863,33.645266],[-94.45482,33.644903],[-94.448637,33.642766],[-94.447408,33.641334],[-94.446871,33.640178],[-94.447161,33.639783],[-94.44703,33.638055],[-94.447514,33.636255],[-94.448054,33.635917],[-94.448438,33.634498],[-94.45296,33.633312],[-94.45866,33.632473],[-94.462736,33.63091],[-94.461813,33.630464],[-94.461325,33.629706],[-94.460874,33.628185],[-94.461244,33.625811],[-94.460274,33.624415],[-94.458976,33.623862],[-94.456433,33.624696],[-94.45449,33.625742],[-94.452711,33.622621],[-94.452325,33.618817],[-94.452701,33.617373],[-94.454769,33.615155],[-94.462335,33.610567],[-94.469451,33.607316],[-94.471498,33.605767],[-94.472496,33.604035],[-94.472443,33.603469],[-94.470629,33.601161],[-94.46896,33.599869],[-94.467364,33.599155],[-94.467587,33.598842],[-94.467212,33.599144],[-94.462302,33.598379],[-94.45931,33.600211],[-94.457439,33.600412],[-94.458232,33.59827],[-94.456834,33.597011],[-94.455755,33.594359],[-94.453996,33.592222],[-94.453197,33.59178],[-94.449197,33.59091],[-94.445459,33.590896],[-94.442214,33.591276],[-94.440606,33.592162],[-94.438979,33.59362],[-94.430041,33.591124],[-94.428232,33.590076],[-94.427578,33.589319],[-94.425982,33.586425],[-94.413164,33.569359],[-94.410926,33.568344],[-94.406709,33.568014],[-94.403342,33.568424],[-94.400669,33.569803],[-94.397342,33.571608],[-94.393534,33.574686],[-94.386412,33.58159],[-94.382898,33.583277],[-94.379674,33.580631],[-94.378106,33.577015],[-94.377756,33.57461],[-94.378464,33.571688],[-94.38008,33.568947],[-94.38252,33.567061],[-94.388033,33.565518],[-94.392339,33.565236],[-94.394851,33.566521],[-94.395941,33.565227],[-94.397688,33.564903],[-94.400438,33.562935],[-94.401026,33.561899],[-94.401616,33.559378],[-94.400531,33.557471],[-94.397079,33.553618],[-94.394614,33.551971],[-94.392388,33.551195],[-94.391466,33.550133],[-94.38953,33.546739],[-94.386768,33.545009],[-94.383953,33.544834],[-94.381664,33.544035],[-94.373393,33.544471],[-94.371952,33.544741],[-94.37069,33.545671],[-94.369875,33.545661],[-94.365926,33.544964],[-94.361351,33.544613],[-94.35897,33.54323],[-94.357791,33.54305],[-94.355945,33.54318],[-94.353593,33.544005],[-94.348945,33.548358],[-94.347389,33.551052],[-94.347293,33.552152],[-94.352643,33.56063],[-94.352418,33.562193],[-94.351441,33.563246],[-94.345513,33.567313],[-94.344023,33.567824],[-94.341709,33.567954],[-94.339562,33.567668],[-94.337057,33.56605],[-94.335524,33.564484],[-94.334351,33.562527],[-94.333826,33.557154],[-94.333203,33.555366],[-94.332653,33.554309],[-94.331202,33.552951],[-94.321266,33.54903],[-94.319492,33.548864],[-94.316304,33.549252],[-94.31215,33.550666],[-94.309582,33.551673],[-94.308454,33.552608],[-94.306411,33.555598],[-94.306215,33.557675],[-94.307182,33.559798],[-94.303576,33.56828],[-94.301023,33.573021],[-94.298377,33.576219],[-94.294969,33.579125],[-94.291212,33.581478],[-94.289215,33.582131],[-94.287049,33.58238],[-94.283582,33.581891],[-94.282648,33.580978],[-94.281216,33.578211],[-94.280605,33.574908],[-94.282172,33.572989],[-94.290127,33.568111],[-94.290216,33.565947],[-94.291341,33.563682],[-94.291362,33.561004],[-94.290897,33.559906],[-94.289173,33.559625],[-94.289545,33.558272],[-94.28786,33.557137],[-94.287895,33.556858],[-94.28594,33.556229],[-94.282833,33.557102],[-94.27826,33.557556],[-94.275746,33.558533],[-94.271348,33.562094],[-94.2703,33.563421],[-94.269881,33.566702],[-94.269577,33.566791],[-94.265669,33.573589],[-94.262755,33.577353],[-94.256794,33.583605],[-94.252656,33.586144],[-94.245932,33.589114],[-94.242777,33.589709],[-94.240177,33.589539],[-94.236971,33.587407],[-94.236365,33.585994],[-94.236833,33.580918],[-94.237969,33.577768],[-94.238866,33.576748],[-94.242421,33.574973],[-94.24435,33.57357],[-94.250193,33.56746],[-94.251099,33.565851],[-94.251783,33.56365],[-94.252158,33.560496],[-94.251918,33.559411],[-94.250794,33.55727],[-94.25013,33.556753],[-94.247509,33.55562],[-94.242967,33.554704],[-94.237575,33.552669],[-94.23197,33.552086],[-94.226188,33.552976],[-94.222923,33.554098],[-94.21921,33.556096],[-94.213625,33.563132],[-94.208034,33.566913],[-94.205666,33.567219],[-94.203594,33.566534],[-94.202827,33.564583],[-94.201585,33.559508],[-94.200448,33.557078],[-94.199792,33.556336],[-94.197769,33.555204],[-94.195432,33.555094],[-94.192877,33.556133],[-94.191472,33.557183],[-94.189988,33.560075],[-94.18966,33.561807],[-94.18989,33.563434],[-94.191814,33.566496],[-94.192366,33.570526],[-94.194127,33.573469],[-94.196178,33.575334],[-94.19922,33.57673],[-94.201587,33.577348],[-94.203925,33.576844],[-94.207405,33.574353],[-94.209665,33.57351],[-94.211244,33.573738],[-94.216208,33.576569],[-94.217463,33.579378],[-94.217114,33.580994],[-94.215283,33.582624],[-94.213007,33.583482],[-94.210732,33.582986],[-94.203843,33.579773],[-94.199186,33.580321],[-94.196435,33.581293],[-94.194564,33.582798],[-94.193186,33.585156],[-94.184308,33.594578],[-94.183912,33.594685],[-94.183266,33.594598],[-94.18088,33.592612],[-94.176327,33.591077],[-94.162266,33.588906],[-94.161081,33.587973],[-94.161069,33.586199],[-94.161902,33.582844],[-94.162006,33.580884],[-94.161272,33.57928],[-94.156775,33.575762],[-94.154371,33.575615],[-94.152626,33.575923],[-94.148732,33.580197],[-94.146048,33.581975],[-94.144383,33.582098],[-94.14216,33.58139],[-94.141727,33.580526],[-94.141852,33.57959],[-94.143024,33.577725],[-94.145669,33.5756],[-94.149506,33.573602],[-94.151344,33.571389],[-94.15183,33.569488],[-94.151574,33.568406],[-94.149693,33.566325],[-94.148645,33.565698],[-94.147428,33.565183],[-94.145218,33.564979],[-94.143391,33.565501],[-94.136862,33.570998],[-94.136044,33.571386],[-94.135144,33.571033],[-94.134532,33.570348],[-94.133715,33.565957],[-94.132142,33.560514],[-94.132377,33.559369],[-94.132184,33.556645],[-94.131121,33.552809],[-94.129756,33.55145],[-94.127612,33.550721],[-94.125468,33.551138],[-94.12316,33.553268],[-94.122423,33.554617],[-94.120737,33.560561],[-94.120355,33.5655],[-94.12086,33.567051],[-94.112843,33.566991],[-94.103173,33.570349],[-94.101638,33.571146],[-94.100109,33.5726],[-94.097441,33.573744],[-94.088937,33.575334],[-94.082352,33.57572],[-94.072826,33.572298],[-94.071974,33.574409],[-94.072008,33.576295],[-94.074777,33.580438],[-94.075256,33.58251],[-94.074694,33.584053],[-94.073635,33.584773],[-94.072212,33.584422],[-94.070518,33.582678],[-94.070062,33.581294],[-94.070664,33.578156],[-94.070597,33.576725],[-94.068531,33.571103],[-94.066846,33.568909],[-94.061314,33.56879],[-94.057086,33.568003],[-94.056665,33.567464],[-94.056824,33.562771],[-94.05658,33.560932],[-94.059848,33.559248],[-94.061178,33.559158],[-94.066684,33.560953],[-94.067984,33.56096],[-94.07096,33.56014],[-94.072593,33.559255],[-94.07319,33.558793],[-94.073893,33.55743],[-94.073833,33.556006],[-94.072388,33.554164],[-94.071686,33.553818],[-94.071318,33.554132],[-94.069334,33.553707],[-94.065661,33.550967],[-94.064276,33.550835],[-94.062835,33.551242],[-94.061477,33.550001],[-94.059164,33.550002],[-94.055907,33.550843],[-94.051918,33.55264],[-94.050186,33.551076],[-94.04604,33.551321],[-94.04345,33.552253],[-94.04343,33.551479],[-94.042886,33.420221],[-94.043149,33.409015],[-94.043232,33.354012],[-94.042995,33.345547],[-94.04305,33.255128],[-94.04273,33.241822],[-94.043129,33.117322],[-94.04287,33.092726],[-94.043225,32.808299],[-94.042993,32.80743],[-94.04319,32.797117],[-94.04287,32.787185],[-94.043226,32.770226],[-94.042953,32.767907],[-94.043199,32.755485],[-94.042938,32.659726],[-94.043307,32.640446],[-94.042931,32.619442],[-94.043147,32.610783],[-94.042819,32.591175],[-94.0431,32.58862],[-94.042817,32.574534],[-94.043103,32.573542],[-94.042965,32.5511],[-94.043352,32.522112],[-94.043258,32.516199],[-94.042916,32.513605],[-94.043167,32.510705],[-94.042926,32.494047],[-94.04314,32.4785],[-94.042875,32.471348],[-94.04298,32.388203],[-94.042762,32.375155],[-94.043003,32.373394],[-94.042567,32.185249],[-94.042812,32.144788],[-94.042751,32.125163],[-94.042337,32.119914],[-94.04272,32.086182],[-94.042778,32.024831],[-94.04272,31.999271],[-94.042105,31.998898],[-94.041398,31.996306],[-94.042609,31.99426],[-94.042566,31.993502],[-94.041833,31.992402],[-94.039466,31.992205],[-94.030865,31.995638],[-94.029283,31.995865],[-94.027896,31.995695],[-94.027289,31.995182],[-94.025916,31.99282],[-94.024084,31.99104],[-94.022893,31.99045],[-94.021931,31.990366],[-94.021029,31.99079],[-94.019973,31.992126],[-94.019043,31.992561],[-94.018514,31.992432],[-94.018301,31.991522],[-94.018664,31.990843],[-94.018765,31.989118],[-94.017302,31.986022],[-94.016688,31.983857],[-94.016515,31.981174],[-94.01563,31.979856],[-94.012433,31.9781],[-94.006795,31.97343],[-94.000969,31.961795],[-93.998606,31.958826],[-93.995713,31.95414],[-93.994501,31.952648],[-93.989706,31.948783],[-93.987878,31.944315],[-93.986985,31.943307],[-93.982321,31.939764],[-93.980795,31.935225],[-93.979707,31.93329],[-93.978155,31.927847],[-93.977461,31.926419],[-93.975377,31.92366],[-93.97171,31.920386],[-93.970826,31.919968],[-93.969032,31.920151],[-93.964881,31.923183],[-93.962948,31.924156],[-93.959768,31.923226],[-93.956035,31.917022],[-93.955659,31.912782],[-93.954796,31.911564],[-93.953546,31.910563],[-93.949837,31.910865],[-93.945979,31.910328],[-93.942646,31.910373],[-93.937537,31.909222],[-93.932798,31.910514],[-93.931007,31.911414],[-93.929903,31.912719],[-93.928651,31.912645],[-93.927611,31.910684],[-93.924896,31.908706],[-93.923939,31.9071],[-93.922109,31.905324],[-93.921594,31.904421],[-93.921979,31.903781],[-93.924449,31.903038],[-93.925157,31.902475],[-93.927436,31.898286],[-93.929523,31.895773],[-93.932135,31.893672],[-93.93241,31.893197],[-93.932205,31.892681],[-93.93119,31.891495],[-93.927986,31.893119],[-93.926618,31.894375],[-93.925526,31.894615],[-93.924542,31.892929],[-93.926747,31.891876],[-93.927172,31.890893],[-93.92621,31.888683],[-93.9242,31.886963],[-93.922085,31.886009],[-93.920975,31.885878],[-93.919882,31.886232],[-93.919693,31.886642],[-93.920711,31.889731],[-93.920511,31.890304],[-93.919681,31.890963],[-93.919051,31.890898],[-93.917398,31.889816],[-93.916889,31.889847],[-93.916097,31.890604],[-93.916213,31.892652],[-93.914999,31.892948],[-93.912534,31.892469],[-93.912272,31.891767],[-93.913047,31.89064],[-93.913001,31.890245],[-93.912549,31.890145],[-93.910399,31.892022],[-93.906539,31.892509],[-93.906042,31.891863],[-93.907005,31.890832],[-93.907091,31.890284],[-93.906603,31.889856],[-93.906188,31.889928],[-93.904905,31.891128],[-93.90308,31.893922],[-93.903858,31.89531],[-93.903819,31.895769],[-93.901782,31.897016],[-93.900616,31.896788],[-93.898464,31.894099],[-93.897188,31.891019],[-93.896458,31.886286],[-93.896668,31.885327],[-93.898733,31.883984],[-93.900302,31.881487],[-93.901888,31.880063],[-93.902069,31.879104],[-93.901041,31.876732],[-93.901882,31.875371],[-93.901676,31.87457],[-93.900624,31.873868],[-93.899345,31.873876],[-93.896975,31.875982],[-93.894917,31.876297],[-93.892115,31.875917],[-93.891572,31.874583],[-93.893256,31.873379],[-93.893438,31.871731],[-93.890936,31.869767],[-93.888739,31.869458],[-93.886137,31.865499],[-93.885415,31.865257],[-93.884804,31.865433],[-93.884426,31.866269],[-93.885078,31.868642],[-93.884879,31.869372],[-93.88423,31.869653],[-93.881678,31.868581],[-93.881394,31.86604],[-93.881894,31.864835],[-93.889193,31.856819],[-93.889396,31.8559],[-93.888859,31.855073],[-93.883929,31.855003],[-93.882878,31.854672],[-93.882112,31.852319],[-93.882679,31.851504],[-93.884138,31.850758],[-93.884637,31.850163],[-93.884751,31.849408],[-93.884117,31.847606],[-93.883245,31.847042],[-93.881696,31.846734],[-93.878997,31.845145],[-93.878942,31.844455],[-93.879178,31.844126],[-93.880079,31.843942],[-93.881252,31.844249],[-93.882079,31.844089],[-93.882485,31.843599],[-93.881914,31.842216],[-93.880592,31.841522],[-93.879183,31.841979],[-93.877155,31.841896],[-93.874964,31.840868],[-93.874679,31.83792],[-93.872819,31.836301],[-93.876199,31.834248],[-93.877358,31.832528],[-93.877275,31.831853],[-93.874645,31.829888],[-93.874761,31.821661],[-93.874,31.821065],[-93.872375,31.820752],[-93.871285,31.820189],[-93.870937,31.819383],[-93.870917,31.816837],[-93.87301,31.816272],[-93.873432,31.815813],[-93.873253,31.814886],[-93.871947,31.81392],[-93.870839,31.813783],[-93.868484,31.815253],[-93.867319,31.815316],[-93.861384,31.812297],[-93.860482,31.811516],[-93.859316,31.809115],[-93.854573,31.806651],[-93.85339,31.805467],[-93.853529,31.802607],[-93.852655,31.801108],[-93.851481,31.80015],[-93.847632,31.799635],[-93.84706,31.799861],[-93.846188,31.802021],[-93.842892,31.800676],[-93.839343,31.80033],[-93.838413,31.798002],[-93.835942,31.79569],[-93.835613,31.794489],[-93.837556,31.789792],[-93.837696,31.787858],[-93.836634,31.786263],[-93.835874,31.785731],[-93.835855,31.785216],[-93.836371,31.784547],[-93.837778,31.783708],[-93.838144,31.782082],[-93.837693,31.780817],[-93.836229,31.780487],[-93.832821,31.781316],[-93.831732,31.780914],[-93.830849,31.779859],[-93.830849,31.779094],[-93.833242,31.778143],[-93.83312,31.777522],[-93.831515,31.77691],[-93.827451,31.777741],[-93.825621,31.776895],[-93.823443,31.775098],[-93.822598,31.773559],[-93.823133,31.772085],[-93.824568,31.770449],[-93.825112,31.769257],[-93.825328,31.76717],[-93.825956,31.766509],[-93.828809,31.76563],[-93.829587,31.764204],[-93.829587,31.763568],[-93.829099,31.763294],[-93.827288,31.764075],[-93.82681,31.763777],[-93.826171,31.762327],[-93.826105,31.759894],[-93.826461,31.759193],[-93.827343,31.75937],[-93.827541,31.760885],[-93.828348,31.76107],[-93.829821,31.760619],[-93.830112,31.759644],[-93.830065,31.757895],[-93.830909,31.756606],[-93.830975,31.755671],[-93.831622,31.754592],[-93.835234,31.752843],[-93.836884,31.750171],[-93.835257,31.747236],[-93.831698,31.745514],[-93.826905,31.737596],[-93.824579,31.734397],[-93.822177,31.732675],[-93.815962,31.73011],[-93.81493,31.728688],[-93.814309,31.721919],[-93.812477,31.715246],[-93.81276,31.714415],[-93.816918,31.708765],[-93.816694,31.707917],[-93.816291,31.707497],[-93.811802,31.707485],[-93.811052,31.706112],[-93.811121,31.703681],[-93.809798,31.703082],[-93.807047,31.702813],[-93.797407,31.705615],[-93.79507,31.704975],[-93.794462,31.70332],[-93.794548,31.702076],[-93.803396,31.687812],[-93.805144,31.686957],[-93.805229,31.686424],[-93.804479,31.685664],[-93.804273,31.684969],[-93.804462,31.684089],[-93.806342,31.683033],[-93.806879,31.681571],[-93.810975,31.679846],[-93.811559,31.678134],[-93.812509,31.677005],[-93.814997,31.676595],[-93.816285,31.67536],[-93.815629,31.674035],[-93.812516,31.6719],[-93.812433,31.670245],[-93.815834,31.668058],[-93.816651,31.66801],[-93.817372,31.669166],[-93.816957,31.671031],[-93.817425,31.672146],[-93.820109,31.672552],[-93.82114,31.673611],[-93.822051,31.673967],[-93.823169,31.672893],[-93.826462,31.666919],[-93.826297,31.66305],[-93.825661,31.661022],[-93.822511,31.658153],[-93.821371,31.65661],[-93.819486,31.65265],[-93.818427,31.651479],[-93.817029,31.650928],[-93.813623,31.650926],[-93.812788,31.650441],[-93.811682,31.649309],[-93.811516,31.647435],[-93.813234,31.646491],[-93.816122,31.6489],[-93.816788,31.648949],[-93.818037,31.647892],[-93.818077,31.646189],[-93.817405,31.643572],[-93.817464,31.641496],[-93.816555,31.640276],[-93.816369,31.639258],[-93.818132,31.63682],[-93.818062,31.635568],[-93.816592,31.633669],[-93.815955,31.632279],[-93.816528,31.631787],[-93.818527,31.631473],[-93.819992,31.630626],[-93.820848,31.62902],[-93.820344,31.627089],[-93.817615,31.625843],[-93.816987,31.625175],[-93.817264,31.623752],[-93.816838,31.622509],[-93.817155,31.621872],[-93.820728,31.621441],[-93.823754,31.62064],[-93.82583,31.621382],[-93.826852,31.621047],[-93.82717,31.620276],[-93.825956,31.619535],[-93.822154,31.618522],[-93.818787,31.616603],[-93.818717,31.614556],[-93.819582,31.614121],[-93.822642,31.614529],[-93.827083,31.612857],[-93.827865,31.613496],[-93.827273,31.614401],[-93.82629,31.614903],[-93.825854,31.61591],[-93.827852,31.616551],[-93.832782,31.61075],[-93.833103,31.609038],[-93.836404,31.608002],[-93.838057,31.606795],[-93.83913,31.60354],[-93.837606,31.601826],[-93.839262,31.599981],[-93.839416,31.5992],[-93.838263,31.594709],[-93.835805,31.591449],[-93.834918,31.586212],[-93.830363,31.579355],[-93.82715,31.578477],[-93.823399,31.57498],[-93.820269,31.57286],[-93.818434,31.570943],[-93.8184,31.5696],[-93.819149,31.56893],[-93.82221,31.568834],[-93.822958,31.56813],[-93.822889,31.565914],[-93.821564,31.563696],[-93.817444,31.564092],[-93.81686,31.563084],[-93.816984,31.561674],[-93.818363,31.560164],[-93.821107,31.560471],[-93.820764,31.558221],[-93.818582,31.554826],[-93.813973,31.550556],[-93.81025,31.549878],[-93.809475,31.547863],[-93.808305,31.546383],[-93.803337,31.543622],[-93.800515,31.543449],[-93.799536,31.542977],[-93.799894,31.54187],[-93.802331,31.540733],[-93.803197,31.539828],[-93.803359,31.538787],[-93.799206,31.538075],[-93.798821,31.53653],[-93.798828,31.534817],[-93.798087,31.534044],[-93.790298,31.530773],[-93.787687,31.527344],[-93.785028,31.525962],[-93.780835,31.525384],[-93.776444,31.525376],[-93.767315,31.524082],[-93.760062,31.523933],[-93.754883,31.524796],[-93.75386,31.525331],[-93.75413,31.526406],[-93.757613,31.527554],[-93.758195,31.528731],[-93.758111,31.529872],[-93.7565,31.53054],[-93.7547,31.529865],[-93.753414,31.528284],[-93.751889,31.527475],[-93.749772,31.529783],[-93.748319,31.53056],[-93.747437,31.530682],[-93.747043,31.530175],[-93.747361,31.528415],[-93.746901,31.52794],[-93.746029,31.527434],[-93.743403,31.52726],[-93.742652,31.52656],[-93.742313,31.52289],[-93.740529,31.518142],[-93.740978,31.517568],[-93.741841,31.517236],[-93.743876,31.518064],[-93.744448,31.517853],[-93.744232,31.516829],[-93.742693,31.515694],[-93.737376,31.513864],[-93.735238,31.513496],[-93.732902,31.513451],[-93.730137,31.513972],[-93.72136,31.513848],[-93.714703,31.514156],[-93.71249,31.513361],[-93.711046,31.512161],[-93.710952,31.511427],[-93.711402,31.510652],[-93.713886,31.50864],[-93.714683,31.508163],[-93.718358,31.50794],[-93.719567,31.506921],[-93.719708,31.50584],[-93.71771,31.503972],[-93.717176,31.503029],[-93.717119,31.501916],[-93.717485,31.501496],[-93.718938,31.500953],[-93.720925,31.501862],[-93.7222,31.501981],[-93.723447,31.500938],[-93.723794,31.500178],[-93.723662,31.499252],[-93.724081,31.496401],[-93.722238,31.494967],[-93.721941,31.494283],[-93.721974,31.493653],[-93.722596,31.492769],[-93.72516,31.491397],[-93.729613,31.487922],[-93.731346,31.487274],[-93.735315,31.489074],[-93.735707,31.488757],[-93.736453,31.485676],[-93.737168,31.484622],[-93.741894,31.483537],[-93.742892,31.483779],[-93.745152,31.485638],[-93.748492,31.485117],[-93.752387,31.48274],[-93.752988,31.48171],[-93.752198,31.479551],[-93.751368,31.479072],[-93.750183,31.479314],[-93.748003,31.481648],[-93.746483,31.481828],[-93.745542,31.480396],[-93.745401,31.47812],[-93.748474,31.474808],[-93.749775,31.470747],[-93.749476,31.46869],[-93.741864,31.465872],[-93.731513,31.457474],[-93.726609,31.454864],[-93.721931,31.453447],[-93.720994,31.453752],[-93.717734,31.457106],[-93.71675,31.457548],[-93.715619,31.457054],[-93.713637,31.454474],[-93.711663,31.453049],[-93.70997,31.45276],[-93.709027,31.453404],[-93.708941,31.45443],[-93.709366,31.455945],[-93.709128,31.456746],[-93.707946,31.456979],[-93.70663,31.456793],[-93.703934,31.455493],[-93.703771,31.453831],[-93.709416,31.442995],[-93.709512,31.442025],[-93.708203,31.441557],[-93.693272,31.440078],[-93.692659,31.439597],[-93.692526,31.438201],[-93.692631,31.437192],[-93.701051,31.424629],[-93.702953,31.420371],[-93.704678,31.4189],[-93.704811,31.416703],[-93.70446,31.414953],[-93.704904,31.412924],[-93.704879,31.410881],[-93.701611,31.409334],[-93.697895,31.409679],[-93.695866,31.409392],[-93.690326,31.406591],[-93.688134,31.404762],[-93.682097,31.398332],[-93.681279,31.398049],[-93.676555,31.398733],[-93.674117,31.397681],[-93.671644,31.393352],[-93.670182,31.387184],[-93.669017,31.371379],[-93.669396,31.37053],[-93.67242,31.371187],[-93.673634,31.370964],[-93.673847,31.370633],[-93.673322,31.368682],[-93.670999,31.366221],[-93.669069,31.36543],[-93.667273,31.365413],[-93.658343,31.366845],[-93.652025,31.369008],[-93.648257,31.370855],[-93.647211,31.371109],[-93.644104,31.370645],[-93.641384,31.372455],[-93.639552,31.372591],[-93.639222,31.37202],[-93.641722,31.367377],[-93.644124,31.365528],[-93.64498,31.362966],[-93.644891,31.360174],[-93.645866,31.359008],[-93.647638,31.358097],[-93.652905,31.357116],[-93.657834,31.35562],[-93.667395,31.353501],[-93.668439,31.353012],[-93.669547,31.35057],[-93.668707,31.343939],[-93.669024,31.338829],[-93.67284,31.334278],[-93.674551,31.332641],[-93.676535,31.331454],[-93.677277,31.330483],[-93.676973,31.329612],[-93.673954,31.326186],[-93.673553,31.324542],[-93.675342,31.322033],[-93.676263,31.321351],[-93.680659,31.320341],[-93.682941,31.318999],[-93.683478,31.318109],[-93.683981,31.314621],[-93.687159,31.311403],[-93.687851,31.309835],[-93.687899,31.308543],[-93.687278,31.306068],[-93.68622,31.30399],[-93.683561,31.301507],[-93.680441,31.301592],[-93.67544,31.30104],[-93.671676,31.299586],[-93.668928,31.297975],[-93.667651,31.294986],[-93.665592,31.292702],[-93.6641,31.289731],[-93.659285,31.282106],[-93.658685,31.281624],[-93.657004,31.281736],[-93.655095,31.282857],[-93.651152,31.284487],[-93.650042,31.284677],[-93.648648,31.28423],[-93.647053,31.281161],[-93.644633,31.277764],[-93.644235,31.276612],[-93.643926,31.27123],[-93.642516,31.269508],[-93.641384,31.269157],[-93.639694,31.269163],[-93.635168,31.269979],[-93.628652,31.270488],[-93.622818,31.271338],[-93.620829,31.271299],[-93.620343,31.271025],[-93.620034,31.270419],[-93.620159,31.266333],[-93.619924,31.265178],[-93.617999,31.263371],[-93.615346,31.261862],[-93.614402,31.260869],[-93.613942,31.259375],[-93.615637,31.255127],[-93.615402,31.254166],[-93.613944,31.252858],[-93.614288,31.251631],[-93.621202,31.249642],[-93.621757,31.249127],[-93.62133,31.2481],[-93.620127,31.246953],[-93.617735,31.245744],[-93.616308,31.244595],[-93.617109,31.241005],[-93.616205,31.237548],[-93.616274,31.236838],[-93.618255,31.233105],[-93.618107,31.232685],[-93.617482,31.232135],[-93.616471,31.231979],[-93.612491,31.232689],[-93.610705,31.232152],[-93.609772,31.22909],[-93.608747,31.228014],[-93.608158,31.227835],[-93.601656,31.229523],[-93.598391,31.231097],[-93.597773,31.23112],[-93.596886,31.230626],[-93.596273,31.22951],[-93.596266,31.228856],[-93.596785,31.227986],[-93.599353,31.224949],[-93.59874,31.22385],[-93.595305,31.221815],[-93.59497,31.221314],[-93.595255,31.220314],[-93.595678,31.219798],[-93.603496,31.21671],[-93.603816,31.214161],[-93.603379,31.211343],[-93.603541,31.210673],[-93.604993,31.208053],[-93.607061,31.205766],[-93.607243,31.204806],[-93.606517,31.203755],[-93.601986,31.19991],[-93.601857,31.199393],[-93.601941,31.192887],[-93.601589,31.187511],[-93.602443,31.182541],[-93.600308,31.176158],[-93.589119,31.165889],[-93.587585,31.165577],[-93.583558,31.166868],[-93.57931,31.167404],[-93.578166,31.167855],[-93.57718,31.168571],[-93.572841,31.174548],[-93.569563,31.177574],[-93.564018,31.180312],[-93.560918,31.182486],[-93.554592,31.184823],[-93.551472,31.18558],[-93.549984,31.186627],[-93.548584,31.186476],[-93.545836,31.184215],[-93.544365,31.183478],[-93.542367,31.183193],[-93.53928,31.183547],[-93.536287,31.185312],[-93.535098,31.185612],[-93.53428,31.185425],[-93.532545,31.183314],[-93.531318,31.179806],[-93.532023,31.175978],[-93.532807,31.174265],[-93.535953,31.172409],[-93.542309,31.17164],[-93.542933,31.171277],[-93.543061,31.170658],[-93.542995,31.169643],[-93.5421,31.167888],[-93.538977,31.16515],[-93.537989,31.163427],[-93.536412,31.160387],[-93.536481,31.158471],[-93.540164,31.156054],[-93.546372,31.156599],[-93.548506,31.156195],[-93.5487,31.155839],[-93.548515,31.148229],[-93.546102,31.143354],[-93.544735,31.136066],[-93.543673,31.134106],[-93.53787,31.12657],[-93.537824,31.125181],[-93.539366,31.115207],[-93.539832,31.114152],[-93.540737,31.113573],[-93.544377,31.112404],[-93.545935,31.111197],[-93.548696,31.106035],[-93.549125,31.103231],[-93.548632,31.101203],[-93.549067,31.100219],[-93.550341,31.099651],[-93.558179,31.097983],[-93.558623,31.096926],[-93.558316,31.096481],[-93.554628,31.095188],[-93.553852,31.094584],[-93.553566,31.094164],[-93.553722,31.093869],[-93.554891,31.094829],[-93.557941,31.095874],[-93.559378,31.097678],[-93.561195,31.097783],[-93.562415,31.097529],[-93.563182,31.096988],[-93.563654,31.096009],[-93.563746,31.094522],[-93.563269,31.093592],[-93.560894,31.092226],[-93.558581,31.091504],[-93.557808,31.090692],[-93.556641,31.087435],[-93.555815,31.086965],[-93.554638,31.08687],[-93.552279,31.088327],[-93.550714,31.090985],[-93.550083,31.091072],[-93.549262,31.090412],[-93.548699,31.088637],[-93.549399,31.087602],[-93.551436,31.085735],[-93.552467,31.082489],[-93.552205,31.078931],[-93.551311,31.078661],[-93.542454,31.078336],[-93.54013,31.07794],[-93.537766,31.077213],[-93.532627,31.074552],[-93.527645,31.07451],[-93.527168,31.073189],[-93.528057,31.071022],[-93.528935,31.070234],[-93.528732,31.069214],[-93.525131,31.066551],[-93.523322,31.066186],[-93.52114,31.066325],[-93.520126,31.065816],[-93.518942,31.063162],[-93.518912,31.061863],[-93.521145,31.057275],[-93.522971,31.05667],[-93.528438,31.057176],[-93.530129,31.056814],[-93.531989,31.055715],[-93.532215,31.055236],[-93.531628,31.053627],[-93.53073,31.051749],[-93.527743,31.048317],[-93.526289,31.047272],[-93.524202,31.04635],[-93.519961,31.045168],[-93.518899,31.043736],[-93.519196,31.042694],[-93.519941,31.041876],[-93.521932,31.041413],[-93.524048,31.04152],[-93.52445,31.041139],[-93.524904,31.039947],[-93.524739,31.039007],[-93.523383,31.037716],[-93.521598,31.036301],[-93.518841,31.03607],[-93.510073,31.033423],[-93.508292,31.032352],[-93.508039,31.031532],[-93.508141,31.030245],[-93.50896,31.029017],[-93.515738,31.025203],[-93.522314,31.020098],[-93.524522,31.019642],[-93.531482,31.020243],[-93.532457,31.019719],[-93.53343,31.018971],[-93.534612,31.017323],[-93.537458,31.012202],[-93.539184,31.008212],[-93.540429,31.007808],[-93.543086,31.008299],[-93.54576,31.010033],[-93.547626,31.010373],[-93.549377,31.010143],[-93.551466,31.009237],[-93.552303,31.00831],[-93.554265,31.004547],[-93.555927,31.003744],[-93.562664,31.008907],[-93.564164,31.011512],[-93.565631,31.013156],[-93.566561,31.013057],[-93.567548,31.012672],[-93.571465,31.009599],[-93.572729,31.007743],[-93.573044,31.004712],[-93.573423,31.003858],[-93.574588,31.002363],[-93.577094,31.001003],[-93.578207,30.999995],[-93.577892,30.998764],[-93.575958,30.995714],[-93.574,30.993399],[-93.573365,30.991828],[-93.572216,30.99121],[-93.570479,30.990815],[-93.56543,30.990579],[-93.564299,30.9897],[-93.564164,30.988368],[-93.565551,30.986257],[-93.565885,30.985168],[-93.566858,30.979403],[-93.568296,30.977096],[-93.569295,30.976191],[-93.572798,30.974724],[-93.574332,30.973708],[-93.573537,30.971206],[-93.572159,30.970273],[-93.567737,30.968971],[-93.564841,30.969527],[-93.562556,30.97091],[-93.560537,30.971289],[-93.558861,30.970861],[-93.556106,30.968639],[-93.55354,30.967374],[-93.550651,30.967499],[-93.549841,30.967118],[-93.547314,30.964755],[-93.546933,30.960132],[-93.546327,30.957802],[-93.543122,30.95674],[-93.539274,30.95652],[-93.534628,30.957998],[-93.531758,30.958217],[-93.530927,30.957114],[-93.530507,30.955738],[-93.530534,30.954578],[-93.532224,30.95182],[-93.532555,30.950702],[-93.532367,30.948977],[-93.530936,30.94453],[-93.529814,30.942172],[-93.526439,30.939375],[-93.526013,30.937535],[-93.527262,30.935634],[-93.527837,30.933066],[-93.526457,30.930365],[-93.526474,30.929464],[-93.527471,30.928035],[-93.529636,30.927538],[-93.530703,30.926778],[-93.531234,30.924388],[-93.532008,30.923754],[-93.534173,30.924033],[-93.535832,30.923691],[-93.537974,30.922742],[-93.541782,30.920207],[-93.543423,30.920153],[-93.544116,30.921214],[-93.542073,30.925849],[-93.542589,30.926422],[-93.545718,30.9271],[-93.546838,30.926601],[-93.549283,30.924372],[-93.552085,30.918119],[-93.558562,30.913238],[-93.558737,30.911652],[-93.558087,30.910797],[-93.5561,30.909635],[-93.554674,30.909216],[-93.553026,30.9081],[-93.552916,30.907153],[-93.553995,30.902773],[-93.553116,30.901053],[-93.548623,30.899894],[-93.548643,30.898622],[-93.549202,30.897439],[-93.552475,30.896704],[-93.557806,30.896746],[-93.561564,30.895684],[-93.566316,30.894839],[-93.568158,30.893374],[-93.568508,30.892364],[-93.570222,30.889912],[-93.572957,30.88757],[-93.57408,30.884529],[-93.571855,30.879389],[-93.5717,30.877963],[-93.570604,30.875193],[-93.568137,30.874565],[-93.56559,30.87564],[-93.564795,30.875675],[-93.563233,30.874867],[-93.563014,30.872568],[-93.564651,30.870113],[-93.564504,30.86864],[-93.563011,30.868108],[-93.559763,30.869826],[-93.559142,30.869937],[-93.558616,30.869424],[-93.558502,30.867905],[-93.561394,30.861942],[-93.562147,30.859332],[-93.561911,30.858332],[-93.559653,30.855608],[-93.55792,30.854299],[-93.557314,30.852081],[-93.564101,30.846744],[-93.568195,30.845515],[-93.568717,30.844182],[-93.56797,30.843026],[-93.565803,30.84207],[-93.563494,30.842049],[-93.559854,30.840988],[-93.558024,30.840075],[-93.555603,30.837908],[-93.553626,30.83514],[-93.553104,30.833111],[-93.553311,30.832542],[-93.553744,30.831785],[-93.55732,30.828419],[-93.556179,30.826387],[-93.554057,30.824941],[-93.554433,30.823524],[-93.557842,30.821015],[-93.561912,30.819459],[-93.564164,30.817541],[-93.564579,30.816402],[-93.563763,30.813606],[-93.561153,30.810613],[-93.560707,30.809639],[-93.560791,30.808628],[-93.561349,30.807577],[-93.56298,30.806009],[-93.569318,30.802962],[-93.572471,30.80245],[-93.574677,30.801373],[-93.578437,30.801749],[-93.580535,30.803001],[-93.581505,30.803105],[-93.582229,30.803117],[-93.583775,30.801779],[-93.58415,30.799141],[-93.584094,30.796689],[-93.583188,30.794284],[-93.581388,30.791627],[-93.581921,30.788979],[-93.583693,30.787762],[-93.58716,30.787859],[-93.588939,30.78755],[-93.589381,30.786676],[-93.586956,30.782895],[-93.58445,30.781164],[-93.583165,30.778596],[-93.583815,30.777052],[-93.587143,30.776815],[-93.590049,30.777662],[-93.591731,30.776664],[-93.592714,30.775095],[-93.593505,30.772275],[-93.592722,30.769648],[-93.591558,30.767258],[-93.592101,30.763675],[-93.600501,30.762012],[-93.602161,30.760761],[-93.603663,30.760115],[-93.60492,30.761073],[-93.605225,30.764361],[-93.605941,30.764593],[-93.606653,30.763572],[-93.606086,30.760123],[-93.606496,30.758797],[-93.606785,30.758157],[-93.609178,30.75726],[-93.610447,30.757858],[-93.611365,30.759871],[-93.612372,30.760597],[-93.613474,30.76085],[-93.614346,30.760195],[-93.614728,30.758775],[-93.614777,30.756064],[-93.614038,30.755107],[-93.612424,30.754123],[-93.611723,30.752331],[-93.608364,30.748127],[-93.608414,30.746664],[-93.608998,30.745507],[-93.609946,30.744649],[-93.613696,30.744587],[-93.617753,30.743252],[-93.61913,30.741997],[-93.619031,30.740338],[-93.617689,30.738478],[-93.61282,30.736707],[-93.610645,30.734279],[-93.609134,30.730039],[-93.610081,30.728249],[-93.610953,30.727868],[-93.612393,30.727987],[-93.615307,30.729816],[-93.616569,30.729953],[-93.617719,30.728897],[-93.616885,30.727545],[-93.614893,30.726788],[-93.609814,30.727339],[-93.609047,30.724272],[-93.609544,30.723139],[-93.610637,30.722259],[-93.613274,30.722814],[-93.613746,30.722548],[-93.613644,30.722143],[-93.609699,30.720388],[-93.608326,30.718655],[-93.605391,30.717159],[-93.605817,30.716594],[-93.606868,30.716241],[-93.608298,30.715195],[-93.60872,30.715235],[-93.609569,30.717892],[-93.610046,30.718293],[-93.611211,30.718062],[-93.612598,30.716532],[-93.613331,30.717054],[-93.614447,30.71987],[-93.615669,30.719595],[-93.616438,30.718626],[-93.617229,30.71858],[-93.616185,30.713981],[-93.616437,30.712388],[-93.619655,30.708939],[-93.620157,30.707073],[-93.620123,30.705951],[-93.620773,30.704121],[-93.621809,30.702762],[-93.624466,30.701083],[-93.624676,30.699937],[-93.624384,30.698643],[-93.623279,30.69736],[-93.62102,30.696018],[-93.620373,30.69513],[-93.620442,30.694142],[-93.626647,30.688357],[-93.627228,30.687412],[-93.627709,30.683731],[-93.629887,30.679935],[-93.631345,30.677872],[-93.636054,30.67632],[-93.636974,30.67455],[-93.638215,30.67306],[-93.63964,30.672505],[-93.642697,30.673395],[-93.645306,30.673481],[-93.646623,30.671435],[-93.646847,30.668727],[-93.647302,30.668166],[-93.648584,30.667647],[-93.651473,30.66994],[-93.653494,30.670465],[-93.654972,30.670185],[-93.658269,30.664154],[-93.659745,30.662052],[-93.661251,30.661203],[-93.663572,30.66188],[-93.665753,30.661581],[-93.668189,30.660146],[-93.670358,30.658007],[-93.670662,30.65651],[-93.670035,30.654056],[-93.670536,30.652626],[-93.672094,30.651697],[-93.673838,30.651297],[-93.674224,30.650166],[-93.674134,30.648686],[-93.674761,30.647683],[-93.6786,30.64419],[-93.681086,30.643108],[-93.682972,30.641251],[-93.682868,30.639346],[-93.68078,30.636786],[-93.680415,30.634877],[-93.680799,30.633782],[-93.681763,30.633033],[-93.683819,30.632578],[-93.684211,30.631881],[-93.684715,30.63081],[-93.683887,30.6286],[-93.685121,30.625201],[-93.682072,30.620926],[-93.681802,30.619516],[-93.681983,30.618584],[-93.685702,30.616418],[-93.686905,30.613757],[-93.689134,30.611406],[-93.689072,30.610836],[-93.688287,30.610151],[-93.684396,30.609181],[-93.683372,30.608249],[-93.682843,30.604999],[-93.682082,30.603256],[-93.679553,30.600342],[-93.678767,30.598629],[-93.678662,30.594097],[-93.678949,30.593637],[-93.679609,30.593402],[-93.683649,30.59352],[-93.685066,30.592086],[-93.684933,30.587145],[-93.685466,30.58603],[-93.686573,30.58572],[-93.691552,30.585482],[-93.692222,30.585706],[-93.692437,30.586196],[-93.691751,30.587959],[-93.687804,30.590138],[-93.687912,30.591099],[-93.688739,30.592123],[-93.692869,30.594382],[-93.693976,30.594217],[-93.700892,30.591643],[-93.703297,30.588773],[-93.703908,30.588441],[-93.706034,30.588035],[-93.708482,30.588672],[-93.711318,30.588906],[-93.71253,30.588575],[-93.713782,30.587584],[-93.713732,30.583131],[-93.714032,30.580284],[-93.715068,30.579018],[-93.716821,30.57786],[-93.717911,30.577767],[-93.720477,30.58036],[-93.721493,30.580553],[-93.727844,30.57407],[-93.728062,30.572403],[-93.726165,30.56952],[-93.726423,30.568105],[-93.727616,30.567248],[-93.727818,30.565919],[-93.7243,30.562015],[-93.723945,30.559224],[-93.725403,30.557104],[-93.730144,30.554218],[-93.731423,30.552861],[-93.731155,30.550366],[-93.728763,30.546438],[-93.72876,30.545296],[-93.734801,30.541731],[-93.739494,30.540643],[-93.740253,30.539569],[-93.739634,30.53809],[-93.738053,30.537309],[-93.733326,30.536849],[-93.732416,30.536366],[-93.732209,30.535805],[-93.732806,30.534882],[-93.733821,30.531735],[-93.732793,30.52996],[-93.727722,30.52567],[-93.72478,30.524828],[-93.720484,30.524328],[-93.719788,30.523609],[-93.718693,30.520851],[-93.716473,30.519231],[-93.714322,30.518562],[-93.71287,30.518613],[-93.711579,30.519065],[-93.709155,30.521845],[-93.708633,30.522034],[-93.707683,30.521337],[-93.707692,30.519971],[-93.708903,30.518823],[-93.710223,30.518263],[-93.711022,30.517275],[-93.709892,30.513851],[-93.710019,30.51333],[-93.711412,30.51222],[-93.711762,30.510915],[-93.710106,30.510558],[-93.707653,30.511066],[-93.707559,30.510518],[-93.706358,30.509653],[-93.706809,30.507069],[-93.707346,30.50644],[-93.709726,30.506511],[-93.71062,30.506198],[-93.71072,30.505562],[-93.715145,30.501268],[-93.714124,30.499997],[-93.708536,30.500397],[-93.708669,30.499124],[-93.710395,30.497411],[-93.714495,30.497701],[-93.715377,30.49727],[-93.716602,30.494424],[-93.717069,30.494449],[-93.713819,30.490521],[-93.711995,30.487635],[-93.710247,30.486253],[-93.70955,30.485093],[-93.709763,30.482649],[-93.711727,30.482299],[-93.713178,30.483398],[-93.713842,30.484615],[-93.71483,30.485235],[-93.716173,30.485085],[-93.717421,30.483822],[-93.716811,30.481495],[-93.714455,30.479481],[-93.712853,30.479032],[-93.711081,30.476877],[-93.710519,30.475498],[-93.710303,30.47394],[-93.712226,30.470627],[-93.711854,30.469437],[-93.711061,30.468749],[-93.707167,30.467488],[-93.706377,30.466904],[-93.704842,30.464559],[-93.703877,30.463779],[-93.702396,30.461735],[-93.699426,30.459512],[-93.699036,30.458805],[-93.699128,30.458165],[-93.700359,30.457532],[-93.703719,30.458251],[-93.706339,30.458141],[-93.707144,30.456547],[-93.706936,30.455341],[-93.705367,30.453233],[-93.703076,30.451567],[-93.702103,30.449759],[-93.703802,30.447756],[-93.706835,30.446491],[-93.70744,30.445933],[-93.707465,30.445045],[-93.706945,30.443994],[-93.705852,30.443334],[-93.704633,30.443118],[-93.700836,30.444915],[-93.699332,30.4452],[-93.698306,30.444928],[-93.697725,30.444321],[-93.697578,30.442233],[-93.698135,30.43888],[-93.698927,30.437234],[-93.699277,30.437376],[-93.702023,30.436307],[-93.703393,30.435356],[-93.704154,30.434353],[-93.703853,30.432579],[-93.702368,30.430922],[-93.70214,30.430369],[-93.702329,30.42984],[-93.703254,30.429447],[-93.705501,30.430184],[-93.708255,30.430252],[-93.709445,30.430967],[-93.711254,30.433149],[-93.711928,30.433428],[-93.712747,30.433175],[-93.713369,30.432163],[-93.713359,30.430741],[-93.714039,30.429729],[-93.716472,30.428442],[-93.716905,30.427679],[-93.716874,30.425976],[-93.716369,30.424755],[-93.717062,30.423114],[-93.718051,30.422579],[-93.719178,30.422722],[-93.719622,30.423513],[-93.719274,30.425467],[-93.719799,30.426803],[-93.721934,30.42904],[-93.722767,30.431983],[-93.723846,30.432138],[-93.726106,30.43072],[-93.726824,30.429675],[-93.727152,30.427672],[-93.726834,30.423642],[-93.722744,30.421369],[-93.722277,30.420179],[-93.722749,30.419557],[-93.72671,30.419392],[-93.727548,30.41872],[-93.727871,30.4177],[-93.727551,30.416526],[-93.727724,30.415158],[-93.728721,30.413547],[-93.730608,30.41333],[-93.731988,30.413878],[-93.732988,30.415128],[-93.733917,30.414935],[-93.734984,30.412266],[-93.734892,30.408339],[-93.736764,30.405478],[-93.738273,30.403963],[-93.741679,30.402975],[-93.742037,30.400515],[-93.742882,30.399758],[-93.745498,30.398747],[-93.745338,30.397028],[-93.745681,30.39657],[-93.748372,30.39684],[-93.751016,30.396484],[-93.751997,30.395753],[-93.752242,30.393415],[-93.752615,30.39275],[-93.755025,30.391495],[-93.756773,30.391156],[-93.757668,30.390441],[-93.758753,30.387892],[-93.758612,30.386186],[-93.757877,30.385996],[-93.755774,30.387273],[-93.755149,30.387004],[-93.754822,30.386313],[-93.75533,30.385029],[-93.757959,30.384474],[-93.758466,30.384033],[-93.755789,30.380646],[-93.755226,30.378848],[-93.754981,30.372899],[-93.755356,30.368956],[-93.754697,30.367191],[-93.754857,30.366091],[-93.755967,30.365794],[-93.756495,30.366253],[-93.758051,30.369692],[-93.758633,30.36967],[-93.759215,30.368754],[-93.759216,30.36802],[-93.758505,30.365842],[-93.757687,30.364581],[-93.754939,30.363478],[-93.751744,30.361046],[-93.750979,30.359899],[-93.751429,30.359441],[-93.752169,30.359373],[-93.754045,30.359741],[-93.755367,30.359582],[-93.755976,30.358414],[-93.756064,30.356558],[-93.756803,30.356158],[-93.757532,30.356266],[-93.758502,30.357553],[-93.75893,30.360965],[-93.759218,30.361088],[-93.759709,30.360388],[-93.760326,30.360302],[-93.760779,30.35985],[-93.761022,30.359168],[-93.760938,30.357112],[-93.758118,30.354686],[-93.758703,30.354075],[-93.762183,30.353653],[-93.76248,30.353039],[-93.760727,30.351788],[-93.75821,30.350782],[-93.757718,30.349977],[-93.758541,30.349255],[-93.75981,30.348788],[-93.761779,30.346774],[-93.762308,30.34646],[-93.763413,30.346563],[-93.763655,30.34604],[-93.761112,30.344964],[-93.759533,30.342323],[-93.75988,30.341869],[-93.760749,30.341809],[-93.764356,30.344448],[-93.765489,30.344253],[-93.765655,30.343409],[-93.763925,30.340173],[-93.763089,30.339457],[-93.761277,30.339074],[-93.759191,30.339602],[-93.758658,30.339019],[-93.764109,30.33383],[-93.765851,30.333105],[-93.765829,30.332745],[-93.764252,30.330229],[-93.762958,30.329448],[-93.75947,30.330225],[-93.75812,30.332126],[-93.757274,30.332354],[-93.755584,30.331505],[-93.755374,30.330542],[-93.755561,30.328869],[-93.755244,30.328387],[-93.754478,30.328226],[-93.752337,30.329485],[-93.751676,30.329347],[-93.751783,30.328361],[-93.752392,30.327605],[-93.756013,30.326784],[-93.756198,30.326004],[-93.753321,30.323526],[-93.752688,30.322609],[-93.750711,30.321753],[-93.751239,30.320402],[-93.751041,30.319852],[-93.750262,30.319443],[-93.748305,30.319153],[-93.747815,30.318756],[-93.748458,30.31802],[-93.750181,30.31701],[-93.750201,30.316155],[-93.747821,30.315972],[-93.746868,30.315376],[-93.747021,30.314283],[-93.748619,30.312405],[-93.748609,30.311945],[-93.745648,30.311744],[-93.744211,30.310681],[-93.743296,30.30904],[-93.740918,30.30723],[-93.740965,30.30669],[-93.741377,30.306327],[-93.744352,30.305451],[-93.744293,30.304418],[-93.743364,30.30322],[-93.743029,30.301772],[-93.742424,30.301139],[-93.74149,30.30115],[-93.739643,30.303507],[-93.73852,30.303745],[-93.737129,30.302059],[-93.734546,30.301675],[-93.734855,30.301079],[-93.737938,30.300247],[-93.738113,30.299586],[-93.737556,30.299369],[-93.735891,30.299435],[-93.734228,30.298813],[-93.732906,30.298993],[-93.731903,30.298372],[-93.729922,30.297917],[-93.729046,30.296705],[-93.72799,30.296776],[-93.72625,30.298179],[-93.725511,30.298226],[-93.724797,30.297838],[-93.724659,30.295615],[-93.724208,30.295112],[-93.722808,30.29491],[-93.720566,30.295947],[-93.718982,30.296246],[-93.718347,30.295788],[-93.717157,30.293611],[-93.715413,30.292764],[-93.714779,30.293155],[-93.71478,30.293773],[-93.715996,30.295171],[-93.715996,30.295537],[-93.715521,30.295629],[-93.712269,30.292331],[-93.712558,30.290978],[-93.713385,30.289862],[-93.713653,30.290003],[-93.713652,30.288582],[-93.712908,30.287939],[-93.710573,30.287987],[-93.710439,30.287765],[-93.709532,30.289312],[-93.709477,30.292001],[-93.708354,30.292563],[-93.707756,30.292608],[-93.706061,30.291791],[-93.704584,30.289949],[-93.704589,30.288641],[-93.705254,30.286181],[-93.706251,30.284925],[-93.708596,30.284283],[-93.709053,30.283874],[-93.709419,30.281917],[-93.708446,30.281031],[-93.704917,30.28083],[-93.704203,30.280188],[-93.70406,30.279417],[-93.705626,30.277393],[-93.706526,30.273501],[-93.707365,30.272947],[-93.708165,30.272904],[-93.710084,30.273759],[-93.710416,30.273172],[-93.710152,30.272274],[-93.709663,30.271892],[-93.708005,30.271818],[-93.707757,30.271569],[-93.708618,30.268673],[-93.708666,30.267428],[-93.705732,30.267934],[-93.705452,30.267756],[-93.705911,30.267115],[-93.708054,30.266673],[-93.708819,30.265923],[-93.708717,30.265081],[-93.708054,30.264793],[-93.707468,30.265036],[-93.706881,30.265898],[-93.706575,30.265943],[-93.706218,30.265477],[-93.706448,30.264349],[-93.707979,30.263686],[-93.707266,30.262379],[-93.707266,30.261471],[-93.705126,30.260585],[-93.703289,30.261069],[-93.702983,30.260517],[-93.703544,30.259321],[-93.705372,30.257152],[-93.705733,30.256007],[-93.705666,30.254116],[-93.706301,30.252956],[-93.70695,30.252417],[-93.708789,30.251949],[-93.708928,30.251653],[-93.707326,30.249668],[-93.707432,30.249221],[-93.708916,30.249043],[-93.70905,30.248048],[-93.70831,30.247532],[-93.706266,30.247441],[-93.705542,30.246502],[-93.705932,30.246127],[-93.706439,30.246464],[-93.708249,30.246352],[-93.709081,30.246017],[-93.709531,30.244932],[-93.709018,30.243963],[-93.706939,30.244261],[-93.706993,30.243736],[-93.705002,30.242351],[-93.703218,30.239759],[-93.703099,30.238459],[-93.703683,30.238011],[-93.704181,30.238035],[-93.706668,30.239402],[-93.707812,30.239624],[-93.70945,30.238514],[-93.709569,30.237666],[-93.708401,30.236158],[-93.707656,30.235849],[-93.706095,30.236269],[-93.705625,30.235364],[-93.704661,30.234565],[-93.70449,30.233787],[-93.705288,30.233359],[-93.707623,30.233791],[-93.709513,30.233548],[-93.71013,30.233948],[-93.71013,30.234466],[-93.709679,30.234915],[-93.709749,30.235512],[-93.710323,30.235726],[-93.711098,30.235247],[-93.710837,30.233837],[-93.711433,30.231593],[-93.713427,30.229466],[-93.713496,30.2289],[-93.711856,30.229092],[-93.709509,30.227834],[-93.709867,30.227488],[-93.711081,30.227432],[-93.711983,30.227022],[-93.713113,30.226001],[-93.713642,30.224656],[-93.713371,30.22406],[-93.711154,30.222976],[-93.711176,30.22207],[-93.712023,30.221473],[-93.712152,30.219815],[-93.713058,30.218641],[-93.713755,30.218739],[-93.714853,30.220143],[-93.716065,30.220934],[-93.718463,30.219998],[-93.71965,30.218219],[-93.719938,30.216234],[-93.720689,30.215481],[-93.720544,30.214935],[-93.719861,30.21485],[-93.720287,30.215395],[-93.718199,30.215504],[-93.71702,30.216131],[-93.717788,30.215472],[-93.719542,30.214985],[-93.719557,30.214751],[-93.717517,30.213244],[-93.717119,30.21204],[-93.717693,30.210984],[-93.720413,30.210781],[-93.720997,30.210409],[-93.721259,30.209611],[-93.720931,30.208461],[-93.718219,30.206441],[-93.717438,30.206208],[-93.717007,30.206304],[-93.71548,30.208891],[-93.714996,30.209043],[-93.714192,30.208659],[-93.715003,30.204488],[-93.714617,30.202383],[-93.716371,30.20259],[-93.717904,30.200723],[-93.717102,30.199406],[-93.71533,30.198185],[-93.714755,30.197404],[-93.716134,30.196898],[-93.717648,30.194888],[-93.717839,30.193999],[-93.717523,30.193085],[-93.713227,30.193245],[-93.710622,30.196541],[-93.709121,30.197208],[-93.708222,30.196224],[-93.70823,30.194982],[-93.70794,30.194454],[-93.706044,30.193978],[-93.705495,30.192921],[-93.705663,30.191771],[-93.708992,30.190959],[-93.710858,30.191342],[-93.712024,30.192729],[-93.712552,30.192456],[-93.71281,30.188827],[-93.712423,30.187172],[-93.711422,30.186226],[-93.709548,30.186897],[-93.708795,30.186353],[-93.708896,30.185786],[-93.709573,30.185071],[-93.709712,30.18298],[-93.710684,30.179862],[-93.708027,30.179284],[-93.70709,30.179664],[-93.706609,30.180676],[-93.705621,30.180649],[-93.705488,30.180165],[-93.706399,30.17836],[-93.706538,30.176979],[-93.705196,30.174867],[-93.70424,30.174185],[-93.703429,30.174086],[-93.702612,30.174406],[-93.701239,30.17582],[-93.699953,30.175529],[-93.700254,30.174549],[-93.702094,30.17296],[-93.703,30.171695],[-93.703046,30.169753],[-93.702658,30.167824],[-93.701925,30.166711],[-93.700817,30.166226],[-93.702162,30.165104],[-93.702716,30.161748],[-93.70305,30.161231],[-93.705838,30.159268],[-93.706996,30.157465],[-93.707056,30.154226],[-93.706333,30.152416],[-93.706154,30.150596],[-93.707069,30.14911],[-93.709348,30.147632],[-93.709508,30.146672],[-93.708436,30.146608],[-93.706532,30.147424],[-93.703837,30.149205],[-93.701513,30.152027],[-93.70018,30.15272],[-93.697737,30.152946],[-93.696292,30.151601],[-93.695721,30.148612],[-93.693303,30.141899],[-93.691923,30.141088],[-93.689527,30.141751],[-93.688205,30.141357],[-93.688834,30.139945],[-93.692849,30.135213],[-93.693821,30.13499],[-93.694952,30.135181],[-93.698274,30.138619],[-93.699911,30.138626],[-93.70121,30.137458],[-93.701999,30.129995],[-93.700692,30.125105],[-93.700872,30.123114],[-93.70143,30.122295],[-93.702587,30.121841],[-93.706884,30.121554],[-93.707753,30.120943],[-93.707954,30.120016],[-93.70729,30.119365],[-93.703412,30.117185],[-93.702372,30.114753],[-93.702436,30.112721],[-93.702916,30.111777],[-93.70426,30.110657],[-93.70666,30.110113],[-93.710709,30.109761],[-93.712261,30.109041],[-93.712997,30.107857],[-93.714597,30.101825],[-93.715493,30.100529],[-93.718021,30.098129],[-93.723109,30.094866],[-93.723765,30.09413],[-93.724101,30.09301],[-93.723141,30.088722],[-93.722949,30.08613],[-93.723237,30.08389],[-93.724005,30.082626],[-93.724805,30.082098],[-93.726859,30.082268],[-93.727717,30.08341],[-93.729544,30.087867],[-93.730313,30.089034],[-93.731079,30.089518],[-93.733127,30.088374],[-93.733765,30.08757],[-93.734085,30.08613],[-93.733745,30.08459],[-93.732491,30.082589],[-93.72591,30.078469],[-93.720716,30.072981],[-93.717008,30.069583],[-93.715238,30.06887],[-93.706171,30.067311],[-93.703105,30.066261],[-93.70058,30.063683],[-93.699421,30.060323],[-93.699516,30.058578],[-93.700189,30.057],[-93.701092,30.05604],[-93.704151,30.054208],[-93.706578,30.053751],[-93.711074,30.054391],[-93.711797,30.055671],[-93.712112,30.059221],[-93.713772,30.065687],[-93.715461,30.066579],[-93.717884,30.065554],[-93.719453,30.063808],[-93.719714,30.061943],[-93.719685,30.05605],[-93.720805,30.053043],[-93.722309,30.051059],[-93.727187,30.0465],[-93.734486,30.040803],[-93.737446,30.037283],[-93.739158,30.032627],[-93.739734,30.023987],[-93.741078,30.021571],[-93.743958,30.019539],[-93.74879,30.017491],[-93.755014,30.015363],[-93.75663,30.014163],[-93.761959,30.00906],[-93.767239,30.00338],[-93.768444,30.001694],[-93.769383,29.9977],[-93.770567,29.996532],[-93.772935,29.995588],[-93.776807,29.995396],[-93.780823,29.994276],[-93.785191,29.991956],[-93.788599,29.988836],[-93.790087,29.986564],[-93.792423,29.979108],[-93.794439,29.974773],[-93.796151,29.972037],[-93.803591,29.962309],[-93.806551,29.957445],[-93.807815,29.954549],[-93.810375,29.947349],[-93.813735,29.935126],[-93.815558,29.925094],[-93.817286,29.918422],[-93.821478,29.910182],[-93.830374,29.894358],[-93.838374,29.882853],[-93.845079,29.874835],[-93.85514,29.864099],[-93.859896,29.859921],[-93.86357,29.857177],[-93.872446,29.85165],[-93.880999,29.848215],[-93.886215,29.845719],[-93.895575,29.840247],[-93.903576,29.835],[-93.913672,29.827192],[-93.922744,29.818808],[-93.92572,29.814744],[-93.927992,29.80964],[-93.929208,29.802952],[-93.928808,29.79708],[-93.926504,29.78956],[-93.922407,29.785048],[-93.89847,29.771577],[-93.893863,29.767294],[-93.892246,29.765241],[-93.890821,29.761673],[-93.890789,29.760873],[-93.892773,29.757033],[-93.893829,29.753033],[-93.892805,29.747129],[-93.891637,29.744618],[-93.888821,29.742234],[-93.887557,29.74209],[-93.873941,29.73777],[-93.871908,29.736922],[-93.87002,29.735482],[-93.863204,29.724059],[-93.8445,29.699644],[-93.837412,29.689885],[-93.83554,29.685661],[-93.834196,29.681069],[-93.831076,29.666879],[-93.828708,29.659535],[-93.814351,29.596576],[-93.825794,29.595828],[-93.836491,29.596845],[-93.848588,29.60026],[-93.857983,29.605087],[-93.866531,29.611834],[-93.875006,29.621426],[-93.906043,29.625001],[-94.033565,29.625002],[-94.12518,29.595559],[-94.250184,29.546764],[-94.250184,29.5476],[-94.370351,29.50023],[-94.372494,29.499741],[-94.375187,29.500131],[-94.419249,29.483452],[-94.499452,29.452337],[-94.50019,29.45159],[-94.625192,29.397662],[-94.650311,29.38282],[-94.646981,29.381008],[-94.643555,29.378486],[-94.640821,29.375235],[-94.636046,29.370636],[-94.628585,29.358279],[-94.625192,29.349517],[-94.625192,29.347758],[-94.623898,29.343143],[-94.624169,29.335198],[-94.627306,29.327899],[-94.629026,29.32164],[-94.633492,29.314449],[-94.638018,29.307965],[-94.642421,29.300136],[-94.65036,29.29189],[-94.659644,29.285145],[-94.66622,29.281047],[-94.680295,29.277603],[-94.692309,29.277051],[-94.707561,29.280785],[-94.713311,29.282521],[-94.741166,29.259583],[-94.747932,29.25024],[-94.75074,29.246928],[-94.772686,29.231718],[-94.840151,29.198346],[-94.912171,29.159318],[-94.963661,29.125241],[-94.96424,29.125241],[-95.000202,29.104452],[-95.086398,29.06824],[-95.088357,29.0652],[-95.091622,29.062739],[-95.087257,29.057996],[-95.089036,29.048046],[-95.093799,29.033327],[-95.105447,29.016048],[-95.106528,29.014935],[-95.115124,29.008631],[-95.12577,29.002989],[-95.139469,28.991697],[-95.156695,28.974271],[-95.180835,28.948931],[-95.206428,28.926692],[-95.227228,28.910379],[-95.241681,28.89996],[-95.252791,28.8926],[-95.267365,28.885063],[-95.290812,28.871643],[-95.308121,28.85883],[-95.310199,28.850965],[-95.315422,28.842209],[-95.322113,28.834442],[-95.329847,28.828699],[-95.340722,28.823085],[-95.353471,28.817863],[-95.365442,28.813757],[-95.377987,28.810279],[-95.3839,28.809387],[-95.394172,28.807],[-95.401159,28.805969],[-95.413068,28.805317],[-95.420071,28.805625],[-95.493888,28.76534],[-95.533784,28.750256],[-95.532019,28.750256],[-95.625232,28.702877],[-95.750238,28.638419],[-95.777845,28.625266],[-95.87524,28.582788],[-96.000243,28.532071],[-96.000243,28.533433],[-96.076048,28.500002],[-96.078331,28.500001],[-96.182242,28.452036],[-96.199375,28.442278],[-96.217837,28.431368],[-96.235458,28.421469],[-96.258191,28.407872],[-96.259806,28.400699],[-96.262905,28.394196],[-96.267069,28.388229],[-96.271767,28.382934],[-96.282307,28.375002],[-96.294175,28.368305],[-96.303533,28.36502],[-96.312419,28.363443],[-96.320762,28.362868],[-96.321428,28.360792],[-96.324204,28.356953],[-96.32874,28.352053],[-96.337945,28.3443],[-96.341807,28.342381],[-96.34129,28.340699],[-96.342291,28.335135],[-96.344731,28.325989],[-96.347637,28.32017],[-96.352686,28.312923],[-96.359293,28.305753],[-96.367967,28.297222],[-96.375252,28.29076],[-96.381092,28.287098],[-96.38929,28.282543],[-96.395645,28.279524],[-96.402403,28.278056],[-96.425807,28.268687],[-96.455074,28.255279],[-96.500256,28.235482],[-96.510049,28.23068],[-96.531,28.221164],[-96.556661,28.20648],[-96.596507,28.182998],[-96.618785,28.169522],[-96.640749,28.15539],[-96.666137,28.137684],[-96.730685,28.091268],[-96.746251,28.079622],[-96.784064,28.048554],[-96.844196,28.000296],[-96.875264,27.96992],[-96.908743,27.934091],[-96.938546,27.901199],[-96.959495,27.875302],[-96.984281,27.803783],[-96.987006,27.800842],[-96.99168,27.797166],[-97.008898,27.78679],[-97.013046,27.785288],[-97.021855,27.783364],[-97.037789,27.765692],[-97.046727,27.755049],[-97.050221,27.750308],[-97.125265,27.640597],[-97.165097,27.5683],[-97.167381,27.562816],[-97.199816,27.500319],[-97.250264,27.392308],[-97.256726,27.375321],[-97.288337,27.277584],[-97.296567,27.250323],[-97.304669,27.216929],[-97.306841,27.205748],[-97.309363,27.196109],[-97.309473,27.190842],[-97.311943,27.179492],[-97.313559,27.169689],[-97.315535,27.148146],[-97.316571,27.14113],[-97.319824,27.110023],[-97.321854,27.079308],[-97.32315,27.051146],[-97.322698,27.036033],[-97.323219,27.010256],[-97.321148,27.00033],[-97.320725,26.984484],[-97.31595,26.929289],[-97.313879,26.913126],[-97.310842,26.897682],[-97.306988,26.875334],[-97.300423,26.834613],[-97.296629,26.818647],[-97.292374,26.803255],[-97.282725,26.763423],[-97.251705,26.661866],[-97.224429,26.597694],[-97.217341,26.58467],[-97.214056,26.576766],[-97.212676,26.56688],[-97.212817,26.56403],[-97.212548,26.561651],[-97.201806,26.529057],[-97.196851,26.512843],[-97.184566,26.475852],[-97.167369,26.413108],[-97.156496,26.375348],[-97.126121,26.250351],[-97.125248,26.248285],[-97.125248,26.246333],[-97.124553,26.244415],[-97.121262,26.225549],[-97.117285,26.197964],[-97.113328,26.166312],[-97.112594,26.157957],[-97.110699,26.145367],[-97.110147,26.140583],[-97.109649,26.129468],[-97.10904,26.125354],[-97.108301,26.10451],[-97.100252,26.097664],[-97.097386,26.093508],[-97.09422,26.088376],[-97.092921,26.085102],[-97.089989,26.07534],[-97.08934,26.066115],[-97.090205,26.057169],[-97.091287,26.051598],[-97.094143,26.043044],[-97.097858,26.03862],[-97.091121,25.97384],[-97.125247,25.972593],[-97.146654,25.970969],[-97.147012,25.970516],[-97.14634,25.962614],[-97.146679,25.959391],[-97.146105,25.956657],[-97.147333,25.955701],[-97.147278,25.953991],[-97.147786,25.953143],[-97.150485,25.951472],[-97.156606,25.94902],[-97.158954,25.949119],[-97.160297,25.95025],[-97.160462,25.950985],[-97.158577,25.957571],[-97.158188,25.960365],[-97.158816,25.96222],[-97.160004,25.962371],[-97.164277,25.960621],[-97.16695,25.960225],[-97.1711,25.96164],[-97.171879,25.96228],[-97.173479,25.96457],[-97.175584,25.965573],[-97.177088,25.965346],[-97.177743,25.962709],[-97.178601,25.961459],[-97.179674,25.960749],[-97.187079,25.958483],[-97.187513,25.957584],[-97.187143,25.955227],[-97.187895,25.954513],[-97.189587,25.953795],[-97.193392,25.955091],[-97.196753,25.957449],[-97.197888,25.957926],[-97.201568,25.958458],[-97.203656,25.957988],[-97.205481,25.958287],[-97.206059,25.958652],[-97.206488,25.960115],[-97.206561,25.963231],[-97.207157,25.963646],[-97.209021,25.963722],[-97.209961,25.963458],[-97.214089,25.960311],[-97.220922,25.957272],[-97.22256,25.957326],[-97.22422,25.958629],[-97.225354,25.959094],[-97.228026,25.958937],[-97.229227,25.958758],[-97.233001,25.956711],[-97.239872,25.954975],[-97.243572,25.952786],[-97.244775,25.951272],[-97.244853,25.949951],[-97.245243,25.949225],[-97.24701,25.948234],[-97.248033,25.948097],[-97.253586,25.948366],[-97.257597,25.950112],[-97.260864,25.950933],[-97.276701,25.952146],[-97.27858,25.953428],[-97.28,25.954926],[-97.282197,25.958807],[-97.283013,25.959271],[-97.284446,25.959156],[-97.285523,25.958615],[-97.289239,25.955444],[-97.289702,25.954674],[-97.289638,25.954028],[-97.288389,25.952384],[-97.284741,25.949487],[-97.281254,25.947995],[-97.278528,25.947465],[-97.278284,25.946582],[-97.28039,25.945446],[-97.281037,25.943457],[-97.278937,25.941724],[-97.277485,25.939905],[-97.276387,25.936065],[-97.276696,25.935339],[-97.280046,25.93507],[-97.286873,25.936227],[-97.291786,25.936302],[-97.293243,25.93571],[-97.295005,25.933739],[-97.296108,25.933425],[-97.29815,25.933865],[-97.298659,25.934422],[-97.298893,25.936246],[-97.299615,25.936865],[-97.300716,25.937224],[-97.302541,25.93723],[-97.30421,25.936114],[-97.30459,25.935156],[-97.304691,25.932168],[-97.304216,25.930274],[-97.304505,25.928838],[-97.305319,25.92793],[-97.306903,25.92701],[-97.308231,25.92649],[-97.309739,25.926405],[-97.310856,25.926903],[-97.311487,25.927544],[-97.311734,25.928597],[-97.312635,25.929954],[-97.313962,25.931073],[-97.315177,25.931468],[-97.316784,25.93165],[-97.318582,25.931042],[-97.320567,25.929804],[-97.323951,25.925955],[-97.324916,25.924036],[-97.325102,25.921667],[-97.324651,25.918592],[-97.324869,25.918041],[-97.326003,25.917689],[-97.330249,25.917709],[-97.331241,25.918556],[-97.331805,25.920029],[-97.332678,25.925578],[-97.333623,25.926112],[-97.334077,25.925687],[-97.33451,25.92428],[-97.334267,25.921457],[-97.334483,25.920203],[-97.335936,25.919802],[-97.337834,25.920477],[-97.338437,25.921624],[-97.338357,25.922854],[-97.336541,25.928366],[-97.336436,25.928958],[-97.336819,25.929449],[-97.338064,25.929806],[-97.340778,25.928877],[-97.342507,25.928985],[-97.344231,25.929377],[-97.347354,25.931178],[-97.348274,25.931143],[-97.348906,25.930807],[-97.350394,25.925237],[-97.352979,25.921733],[-97.355441,25.919428],[-97.3615,25.915868],[-97.36764,25.915681],[-97.368517,25.915326],[-97.369113,25.914622],[-97.369393,25.913126],[-97.368351,25.910639],[-97.36842,25.909671],[-97.369123,25.909049],[-97.370215,25.908915],[-97.372158,25.909463],[-97.37349,25.909252],[-97.374914,25.908006],[-97.375118,25.907196],[-97.374844,25.906536],[-97.372365,25.905016],[-97.365976,25.902447],[-97.365675,25.901056],[-97.365909,25.899358],[-97.367262,25.893886],[-97.366957,25.891746],[-97.366287,25.89082],[-97.364886,25.889969],[-97.363427,25.889689],[-97.361037,25.889938],[-97.358467,25.889639],[-97.35675,25.888432],[-97.356629,25.887681],[-97.357401,25.886825],[-97.358747,25.886228],[-97.363522,25.885888],[-97.366723,25.885066],[-97.369042,25.884051],[-97.373197,25.881183],[-97.373864,25.880253],[-97.37413,25.879039],[-97.373337,25.878484],[-97.363823,25.877917],[-97.361702,25.878398],[-97.361367,25.879302],[-97.360657,25.879828],[-97.359497,25.879683],[-97.358573,25.878129],[-97.358605,25.876669],[-97.359263,25.873873],[-97.359192,25.872426],[-97.356693,25.867354],[-97.357193,25.86668],[-97.358752,25.865708],[-97.359384,25.86655],[-97.358933,25.868101],[-97.359364,25.869209],[-97.360072,25.869577],[-97.361455,25.8693],[-97.363247,25.8676],[-97.363976,25.866025],[-97.365723,25.864257],[-97.369144,25.858453],[-97.372278,25.857076],[-97.374155,25.856948],[-97.375772,25.856437],[-97.376575,25.854578],[-97.375558,25.853998],[-97.369756,25.854357],[-97.366583,25.853564],[-97.365393,25.852977],[-97.364585,25.852134],[-97.364099,25.851108],[-97.3641,25.850034],[-97.365185,25.849854],[-97.368197,25.850705],[-97.369403,25.850484],[-97.370778,25.849656],[-97.372042,25.847422],[-97.371842,25.841919],[-97.372279,25.840781],[-97.373187,25.839956],[-97.376551,25.84041],[-97.380663,25.839613],[-97.382063,25.83976],[-97.383381,25.840646],[-97.3862,25.843552],[-97.387138,25.843853],[-97.387863,25.843495],[-97.388246,25.842749],[-97.389075,25.839749],[-97.390072,25.838932],[-97.393366,25.837395],[-97.395041,25.83724],[-97.398496,25.83896],[-97.399655,25.839212],[-97.401823,25.838888],[-97.40366,25.837873],[-97.40525,25.837728],[-97.406166,25.837915],[-97.406701,25.838393],[-97.407088,25.839865],[-97.405042,25.840657],[-97.403426,25.840237],[-97.402272,25.840341],[-97.400663,25.841512],[-97.400158,25.842759],[-97.400776,25.846198],[-97.398744,25.85049],[-97.399212,25.851202],[-97.400694,25.852281],[-97.402253,25.851929],[-97.403585,25.851012],[-97.404314,25.85003],[-97.405798,25.845292],[-97.406731,25.844722],[-97.408247,25.845633],[-97.410051,25.84835],[-97.410564,25.849964],[-97.410214,25.851084],[-97.408105,25.854729],[-97.408304,25.856035],[-97.409262,25.85759],[-97.408856,25.859038],[-97.407859,25.860764],[-97.408014,25.861596],[-97.408806,25.862109],[-97.410018,25.862077],[-97.411314,25.861342],[-97.412612,25.859689],[-97.413926,25.856594],[-97.413618,25.852609],[-97.414579,25.847729],[-97.413558,25.843793],[-97.412223,25.842649],[-97.412349,25.841658],[-97.413055,25.840881],[-97.416718,25.841349],[-97.423016,25.840259],[-97.42609,25.840947],[-97.429761,25.843869],[-97.434598,25.848774],[-97.436046,25.849827],[-97.436937,25.849796],[-97.440442,25.84832],[-97.443362,25.84818],[-97.444515,25.849147],[-97.445849,25.851373],[-97.444116,25.85475],[-97.444451,25.855746],[-97.44513,25.856224],[-97.447497,25.856256],[-97.452149,25.853832],[-97.453182,25.853634],[-97.453985,25.854088],[-97.453656,25.856486],[-97.451768,25.858793],[-97.45138,25.85914],[-97.448744,25.859032],[-97.448271,25.859463],[-97.447679,25.863232],[-97.445586,25.865018],[-97.444873,25.866286],[-97.444653,25.86744],[-97.445097,25.868664],[-97.447153,25.87141],[-97.448321,25.872106],[-97.449482,25.872116],[-97.450267,25.871747],[-97.451526,25.869481],[-97.453491,25.867367],[-97.455598,25.86729],[-97.45669,25.868343],[-97.45713,25.869473],[-97.456331,25.871872],[-97.454724,25.879336],[-97.454895,25.88207],[-97.455601,25.883949],[-97.458332,25.883946],[-97.464181,25.881716],[-97.465338,25.880875],[-97.469507,25.875539],[-97.470122,25.875413],[-97.472321,25.875596],[-97.474103,25.876531],[-97.474743,25.878037],[-97.47467,25.879681],[-97.473149,25.880865],[-97.469418,25.882697],[-97.46846,25.883707],[-97.467772,25.886642],[-97.46834,25.888401],[-97.469342,25.888795],[-97.470819,25.888354],[-97.477089,25.883092],[-97.481769,25.879955],[-97.484865,25.8787],[-97.486444,25.878502],[-97.48764,25.879023],[-97.487561,25.880253],[-97.486273,25.883334],[-97.486749,25.884781],[-97.487161,25.885158],[-97.488472,25.885384],[-97.492814,25.880806],[-97.495094,25.879665],[-97.496687,25.87968],[-97.497355,25.880092],[-97.497457,25.880563],[-97.497615,25.886255],[-97.496513,25.892892],[-97.49643,25.895805],[-97.497386,25.898644],[-97.498204,25.899039],[-97.499553,25.898056],[-97.502073,25.89474],[-97.505319,25.891291],[-97.510769,25.887595],[-97.515135,25.887213],[-97.52034,25.885932],[-97.52175,25.886462],[-97.522489,25.887362],[-97.523317,25.889407],[-97.523447,25.890956],[-97.522862,25.895058],[-97.523862,25.899032],[-97.526102,25.901035],[-97.527342,25.902613],[-97.528346,25.906171],[-97.528799,25.906876],[-97.530309,25.907423],[-97.532087,25.907333],[-97.532863,25.907626],[-97.533482,25.908383],[-97.533757,25.911919],[-97.533055,25.913316],[-97.530144,25.916756],[-97.529855,25.918954],[-97.530182,25.919854],[-97.531623,25.920475],[-97.533987,25.920457],[-97.54038,25.919131],[-97.542125,25.919433],[-97.542962,25.920031],[-97.542975,25.921489],[-97.54253,25.922373],[-97.537349,25.927396],[-97.536987,25.928855],[-97.537229,25.930526],[-97.537794,25.930761],[-97.538571,25.930238],[-97.539884,25.927567],[-97.542484,25.923731],[-97.542982,25.923395],[-97.54399,25.923353],[-97.545099,25.924002],[-97.545477,25.92517],[-97.54544,25.931181],[-97.546014,25.93352],[-97.546667,25.934547],[-97.54974,25.936219],[-97.553868,25.937247],[-97.555914,25.937018],[-97.557586,25.935267],[-97.559355,25.931464],[-97.559324,25.932247],[-97.582865,25.937857],[-97.580908,25.939368],[-97.573474,25.94297],[-97.571468,25.943632],[-97.568993,25.94382],[-97.566663,25.944714],[-97.566113,25.945414],[-97.566062,25.948192],[-97.567957,25.95235],[-97.569342,25.953147],[-97.573998,25.953969],[-97.574406,25.95381],[-97.574668,25.952777],[-97.572998,25.94865],[-97.573223,25.945855],[-97.573918,25.944434],[-97.575181,25.943177],[-97.578236,25.942049],[-97.578955,25.942431],[-97.580048,25.944498],[-97.581167,25.950915],[-97.582052,25.952216],[-97.583012,25.954828],[-97.582968,25.956976],[-97.581716,25.960848],[-97.581747,25.961596],[-97.582373,25.962469],[-97.58312,25.96258],[-97.587742,25.961339],[-97.591765,25.961857],[-97.593888,25.961575],[-97.595678,25.960593],[-97.597562,25.957663],[-97.598311,25.957038],[-97.600561,25.956747],[-97.601478,25.956919],[-97.602591,25.957735],[-97.604484,25.961047],[-97.609107,25.964537],[-97.610572,25.966303],[-97.610389,25.967326],[-97.608725,25.969762],[-97.608077,25.97128],[-97.60765,25.975887],[-97.607957,25.976635],[-97.609992,25.977582],[-97.612891,25.977742],[-97.615119,25.978296],[-97.617666,25.979956],[-97.619331,25.982732],[-97.620197,25.985014],[-97.620264,25.986094],[-97.619847,25.987469],[-97.620687,25.988496],[-97.62172,25.989117],[-97.623686,25.989522],[-97.627965,25.988374],[-97.629857,25.988053],[-97.631571,25.988178],[-97.633081,25.988652],[-97.634436,25.990268],[-97.634367,25.991617],[-97.633215,25.9945],[-97.632379,25.995689],[-97.631137,25.996331],[-97.629786,25.996331],[-97.626111,25.995229],[-97.624565,25.99397],[-97.623937,25.992345],[-97.623015,25.991613],[-97.621267,25.991856],[-97.620309,25.992357],[-97.618712,25.994625],[-97.617834,25.997895],[-97.617467,26.000356],[-97.618282,26.002092],[-97.619127,26.00289],[-97.619816,26.002703],[-97.622017,25.998605],[-97.623816,25.997076],[-97.626011,25.99648],[-97.627704,25.996826],[-97.62831,25.997625],[-97.628154,25.998892],[-97.626396,26.00284],[-97.626357,26.005306],[-97.62695,26.005968],[-97.628505,26.006155],[-97.629977,26.005485],[-97.631889,26.003187],[-97.631886,26.001888],[-97.632224,26.001335],[-97.635072,25.999893],[-97.637321,26.001367],[-97.640706,26.004722],[-97.646769,26.007609],[-97.648411,26.009327],[-97.649377,26.010862],[-97.649562,26.011324],[-97.649268,26.012164],[-97.648177,26.012666],[-97.641221,26.011828],[-97.638874,26.01276],[-97.637609,26.014161],[-97.636767,26.016439],[-97.63733,26.020165],[-97.638293,26.02202],[-97.640578,26.024515],[-97.64522,26.027758],[-97.645991,26.027522],[-97.647683,26.026249],[-97.649638,26.024495],[-97.65054,26.023216],[-97.651086,26.02039],[-97.650185,26.017974],[-97.650939,26.01639],[-97.651442,26.015981],[-97.652771,26.016296],[-97.654368,26.018122],[-97.655647,26.019018],[-97.658627,26.020115],[-97.659753,26.020189],[-97.666207,26.018873],[-97.667001,26.018876],[-97.66813,26.019429],[-97.668196,26.020844],[-97.667428,26.024384],[-97.665826,26.026108],[-97.662378,26.028511],[-97.660699,26.031252],[-97.660524,26.033708],[-97.662728,26.038078],[-97.66351,26.037862],[-97.664178,26.036785],[-97.664193,26.03297],[-97.665052,26.03075],[-97.667693,26.028954],[-97.66848,26.028949],[-97.66955,26.030149],[-97.670379,26.033235],[-97.670859,26.033819],[-97.672436,26.034023],[-97.674548,26.033029],[-97.675906,26.031369],[-97.676163,26.030016],[-97.675628,26.029229],[-97.673727,26.02848],[-97.673418,26.0279],[-97.67402,26.026703],[-97.67576,26.025822],[-97.681101,26.025887],[-97.685669,26.026755],[-97.687813,26.02761],[-97.689249,26.028656],[-97.69226,26.032337],[-97.692777,26.032541],[-97.693333,26.032337],[-97.694117,26.030289],[-97.693705,26.0271],[-97.692702,26.024879],[-97.690471,26.022939],[-97.690123,26.022282],[-97.690684,26.019588],[-97.691369,26.01899],[-97.693099,26.019247],[-97.694889,26.0218],[-97.697422,26.023836],[-97.69784,26.02591],[-97.697232,26.029087],[-97.697287,26.030946],[-97.698816,26.031204],[-97.70171,26.030888],[-97.702521,26.031208],[-97.704708,26.036101],[-97.705422,26.036863],[-97.707296,26.037756],[-97.708629,26.036545],[-97.7093,26.034722],[-97.709514,26.031777],[-97.709239,26.029064],[-97.709661,26.026194],[-97.714757,26.025349],[-97.71862,26.023716],[-97.721113,26.023321],[-97.721469,26.023993],[-97.721171,26.024777],[-97.718887,26.027421],[-97.71827,26.029036],[-97.718716,26.030188],[-97.719764,26.031039],[-97.721702,26.03131],[-97.726071,26.030775],[-97.7349,26.032018],[-97.735419,26.03134],[-97.734889,26.028948],[-97.735071,26.028355],[-97.7326,26.027313],[-97.730174,26.028012],[-97.727702,26.027985],[-97.726268,26.027313],[-97.725551,26.026551],[-97.725276,26.02488],[-97.725719,26.023496],[-97.72647,26.022656],[-97.7308,26.023408],[-97.7317,26.023313],[-97.735745,26.021611],[-97.737103,26.021493],[-97.738217,26.021982],[-97.738232,26.022882],[-97.737471,26.024856],[-97.736401,26.026161],[-97.73608,26.027477],[-97.736271,26.028155],[-97.737774,26.028858],[-97.740729,26.029244],[-97.742404,26.029806],[-97.744683,26.029015],[-97.74581,26.027322],[-97.746911,26.026532],[-97.748699,26.026327],[-97.749376,26.027318],[-97.748508,26.029197],[-97.748663,26.030002],[-97.749717,26.031123],[-97.752072,26.031475],[-97.754055,26.030827],[-97.758523,26.026559],[-97.759422,26.026131],[-97.761583,26.025792],[-97.763425,26.026819],[-97.764081,26.027958],[-97.764136,26.028992],[-97.763103,26.035161],[-97.763272,26.036355],[-97.762671,26.040955],[-97.76312,26.04245],[-97.764219,26.044079],[-97.768065,26.047321],[-97.76986,26.047379],[-97.773458,26.045769],[-97.775547,26.045351],[-97.776126,26.045037],[-97.776828,26.043972],[-97.776902,26.04217],[-97.776349,26.040509],[-97.774914,26.039093],[-97.770557,26.037292],[-97.769331,26.036065],[-97.769406,26.035621],[-97.77024,26.034863],[-97.772972,26.034255],[-97.774936,26.032954],[-97.77594,26.031785],[-97.776194,26.030064],[-97.776816,26.029452],[-97.778356,26.029433],[-97.779144,26.029931],[-97.780836,26.032848],[-97.782526,26.033894],[-97.783695,26.034174],[-97.78817,26.033375],[-97.790246,26.033359],[-97.792955,26.034536],[-97.795194,26.036731],[-97.797261,26.039441],[-97.797869,26.041164],[-97.797649,26.042686],[-97.79583,26.045526],[-97.795122,26.047207],[-97.794414,26.047454],[-97.791102,26.047183],[-97.789757,26.047425],[-97.789004,26.048072],[-97.789028,26.049737],[-97.789899,26.05117],[-97.792981,26.053231],[-97.7967,26.052382],[-97.798428,26.052692],[-97.799148,26.053323],[-97.799878,26.054688],[-97.800325,26.059371],[-97.801317,26.060161],[-97.803099,26.060055],[-97.80757,26.058205],[-97.809599,26.057068],[-97.810972,26.055512],[-97.811997,26.053418],[-97.812428,26.050342],[-97.81238,26.048407],[-97.81116,26.045742],[-97.811547,26.04502],[-97.813389,26.044199],[-97.815196,26.044453],[-97.816457,26.045637],[-97.816451,26.047058],[-97.814942,26.051638],[-97.81489,26.053415],[-97.816253,26.055512],[-97.818054,26.056397],[-97.821533,26.056534],[-97.82594,26.055878],[-97.829315,26.049813],[-97.832391,26.047445],[-97.832779,26.046157],[-97.833456,26.045861],[-97.834665,26.046009],[-97.835983,26.047558],[-97.836044,26.04979],[-97.836608,26.051651],[-97.837403,26.052407],[-97.839386,26.053204],[-97.842779,26.053545],[-97.849594,26.052109],[-97.852374,26.052289],[-97.857773,26.053372],[-97.859787,26.052819],[-97.860504,26.052918],[-97.86139,26.054184],[-97.862294,26.060419],[-97.861765,26.062195],[-97.85991,26.06457],[-97.859391,26.065758],[-97.85933,26.066956],[-97.860702,26.069676],[-97.861776,26.069946],[-97.862828,26.069608],[-97.864076,26.068024],[-97.867372,26.060105],[-97.868268,26.058685],[-97.868606,26.057156],[-97.869061,26.056955],[-97.870744,26.057598],[-97.87407,26.062439],[-97.876935,26.064582],[-97.878755,26.065269],[-97.884117,26.065859],[-97.887041,26.066554],[-97.887648,26.066437],[-97.88843,26.065382],[-97.888393,26.062428],[-97.888811,26.061784],[-97.890677,26.060672],[-97.893652,26.060171],[-97.897933,26.061073],[-97.90106,26.061081],[-97.903549,26.060436],[-97.909862,26.056864],[-97.911245,26.056454],[-97.913882,26.056539],[-97.917994,26.057902],[-97.920123,26.057984],[-97.921388,26.057768],[-97.92523,26.055693],[-97.92719,26.055316],[-97.927981,26.055906],[-97.931397,26.06342],[-97.932286,26.064662],[-97.933924,26.064834],[-97.935984,26.064007],[-97.936787,26.063007],[-97.936967,26.061926],[-97.936098,26.05999],[-97.932868,26.057308],[-97.931801,26.055944],[-97.931981,26.054848],[-97.93282,26.053671],[-97.934247,26.052826],[-97.936607,26.052773],[-97.937924,26.053524],[-97.943401,26.058919],[-97.94526,26.060188],[-97.948046,26.061402],[-97.951175,26.061958],[-97.954551,26.061182],[-97.957001,26.059963],[-97.958988,26.057274],[-97.965437,26.052268],[-97.967335,26.051783],[-97.96942,26.052702],[-97.975045,26.05816],[-97.978761,26.059756],[-97.979831,26.06245],[-97.980163,26.06651],[-97.981339,26.067227],[-97.987302,26.065722],[-97.988121,26.06464],[-97.989766,26.059846],[-97.990477,26.058998],[-97.991493,26.058585],[-97.992491,26.058585],[-97.993553,26.059197],[-97.997253,26.064141],[-98.000285,26.065042],[-98.003516,26.064453],[-98.005919,26.063293],[-98.007386,26.06216],[-98.00882,26.060422],[-98.010698,26.057133],[-98.011978,26.056292],[-98.012641,26.056885],[-98.012428,26.058316],[-98.011013,26.060922],[-98.010853,26.061892],[-98.010971,26.063863],[-98.011932,26.065859],[-98.012675,26.066328],[-98.013652,26.066413],[-98.014233,26.066022],[-98.016012,26.06139],[-98.017336,26.060242],[-98.020091,26.05878],[-98.020741,26.058739],[-98.021392,26.058957],[-98.022703,26.06042],[-98.024203,26.064104],[-98.025537,26.065965],[-98.026355,26.066544],[-98.027801,26.066849],[-98.028973,26.066487],[-98.030132,26.065673],[-98.031487,26.064217],[-98.032717,26.062124],[-98.034115,26.057556],[-98.034403,26.051375],[-98.035451,26.04849],[-98.037506,26.045606],[-98.038367,26.042107],[-98.039239,26.041275],[-98.039845,26.041275],[-98.044517,26.043746],[-98.046228,26.04423],[-98.054701,26.04459],[-98.061169,26.046238],[-98.063052,26.045894],[-98.065094,26.044831],[-98.069953,26.038181],[-98.071198,26.037075],[-98.073054,26.036501],[-98.07662,26.036415],[-98.077576,26.036823],[-98.079906,26.04127],[-98.080003,26.04196],[-98.078104,26.042437],[-98.075051,26.042641],[-98.072365,26.043884],[-98.070857,26.045947],[-98.070021,26.047992],[-98.070025,26.051466],[-98.071162,26.054705],[-98.074069,26.058109],[-98.075073,26.059871],[-98.07568,26.062168],[-98.075981,26.066741],[-98.076544,26.068042],[-98.07774,26.069496],[-98.079087,26.070513],[-98.080495,26.070932],[-98.083113,26.07114],[-98.084689,26.07086],[-98.085387,26.070355],[-98.085849,26.069208],[-98.085204,26.068019],[-98.08225,26.067076],[-98.0814,26.066207],[-98.081102,26.064872],[-98.081884,26.063724],[-98.083088,26.06288],[-98.091038,26.059169],[-98.094432,26.058625],[-98.096728,26.059517],[-98.098487,26.060968],[-98.103811,26.067094],[-98.105505,26.067537],[-98.106922,26.06735],[-98.111143,26.06582],[-98.119758,26.064447],[-98.122724,26.06341],[-98.123996,26.062375],[-98.125844,26.061791],[-98.126872,26.061852],[-98.129269,26.062692],[-98.130369,26.063153],[-98.130776,26.063689],[-98.13125,26.065381],[-98.131014,26.066843],[-98.128964,26.070238],[-98.128367,26.072399],[-98.128869,26.073547],[-98.129797,26.074236],[-98.131829,26.07417],[-98.134432,26.072898],[-98.136013,26.071022],[-98.136802,26.068615],[-98.136515,26.065157],[-98.136796,26.062319],[-98.137302,26.060845],[-98.140656,26.054966],[-98.14238,26.052829],[-98.143828,26.050384],[-98.144787,26.049607],[-98.146506,26.049303],[-98.147777,26.049638],[-98.149381,26.051506],[-98.149372,26.055797],[-98.149917,26.056741],[-98.151665,26.058208],[-98.152979,26.058316],[-98.154074,26.0579],[-98.155609,26.056648],[-98.156682,26.054979],[-98.159262,26.053743],[-98.16188,26.054539],[-98.162489,26.056096],[-98.162096,26.057089],[-98.158334,26.06058],[-98.158422,26.0627],[-98.158839,26.063309],[-98.159679,26.064021],[-98.161684,26.064239],[-98.165337,26.062533],[-98.16655,26.062356],[-98.168829,26.062987],[-98.16996,26.065431],[-98.17115,26.069457],[-98.172126,26.071137],[-98.176296,26.075075],[-98.178292,26.07478],[-98.17924,26.074053],[-98.18022,26.071616],[-98.180319,26.07053],[-98.180059,26.068179],[-98.180404,26.065786],[-98.179836,26.064727],[-98.177106,26.063399],[-98.176673,26.062863],[-98.17654,26.06162],[-98.176935,26.060661],[-98.177875,26.060017],[-98.178787,26.059836],[-98.179721,26.060098],[-98.181954,26.06252],[-98.183606,26.063658],[-98.185405,26.064264],[-98.187835,26.064005],[-98.189061,26.063257],[-98.189508,26.062399],[-98.190006,26.058093],[-98.192305,26.053453],[-98.192981,26.053268],[-98.196572,26.054138],[-98.198466,26.055397],[-98.200871,26.059161],[-98.20256,26.063075],[-98.204959,26.066418],[-98.206878,26.067781],[-98.211395,26.068513],[-98.212791,26.069154],[-98.214402,26.070713],[-98.215214,26.072416],[-98.216832,26.074437],[-98.220673,26.076467],[-98.224833,26.077139],[-98.230097,26.077155],[-98.240076,26.07502],[-98.243682,26.073745],[-98.245997,26.072361],[-98.248737,26.072042],[-98.249954,26.072718],[-98.250957,26.074089],[-98.251541,26.079031],[-98.26317,26.084494],[-98.264514,26.085507],[-98.265394,26.087011],[-98.265906,26.089507],[-98.266754,26.091554],[-98.268386,26.093138],[-98.277218,26.098802],[-98.284291,26.10109],[-98.286211,26.102402],[-98.288535,26.105312],[-98.288209,26.105892],[-98.286547,26.106914],[-98.281187,26.10773],[-98.278851,26.107602],[-98.274482,26.10637],[-98.271298,26.106338],[-98.270482,26.10661],[-98.269944,26.107496],[-98.271578,26.110525],[-98.271829,26.112996],[-98.270338,26.11515],[-98.269144,26.115965],[-98.26726,26.116241],[-98.265974,26.117138],[-98.265314,26.11901],[-98.265698,26.12037],[-98.266898,26.120866],[-98.26854,26.120613],[-98.270235,26.119355],[-98.271816,26.117057],[-98.273743,26.116072],[-98.275161,26.115918],[-98.290595,26.120657],[-98.295187,26.120641],[-98.296195,26.120321],[-98.299345,26.118088],[-98.302979,26.11005],[-98.302787,26.10845],[-98.301827,26.106898],[-98.300643,26.10573],[-98.298179,26.10501],[-98.297875,26.104386],[-98.298019,26.103298],[-98.299571,26.102146],[-98.302803,26.102354],[-98.305027,26.10309],[-98.305971,26.103682],[-98.307075,26.10525],[-98.309447,26.113001],[-98.310339,26.114396],[-98.313171,26.115995],[-98.317301,26.116405],[-98.320878,26.118238],[-98.324868,26.122305],[-98.326296,26.125097],[-98.329905,26.130036],[-98.332388,26.132753],[-98.335204,26.137617],[-98.335284,26.140449],[-98.334532,26.141121],[-98.332724,26.141585],[-98.327908,26.141809],[-98.326916,26.142769],[-98.32706,26.143809],[-98.328436,26.144833],[-98.333108,26.145489],[-98.33562,26.146401],[-98.337428,26.148081],[-98.338244,26.149936],[-98.33842,26.151344],[-98.337508,26.15408],[-98.334532,26.156784],[-98.333316,26.1588],[-98.332948,26.16128],[-98.333156,26.162336],[-98.333444,26.163456],[-98.334564,26.165136],[-98.336837,26.166432],[-98.339413,26.166896],[-98.342923,26.166896],[-98.345781,26.166016],[-98.347525,26.164],[-98.348703,26.160106],[-98.348981,26.15312],[-98.349749,26.152],[-98.350437,26.151568],[-98.352341,26.15112],[-98.353109,26.151392],[-98.354645,26.15304],[-98.356805,26.156448],[-98.358021,26.159232],[-98.358533,26.16192],[-98.357447,26.166544],[-98.357685,26.168832],[-98.358069,26.170112],[-98.359157,26.171832],[-98.360645,26.172544],[-98.361925,26.172368],[-98.362933,26.17184],[-98.364901,26.169888],[-98.3666,26.168782],[-98.367125,26.166944],[-98.366858,26.165847],[-98.365409,26.164221],[-98.364927,26.163063],[-98.364702,26.160891],[-98.365029,26.159156],[-98.367237,26.15768],[-98.368597,26.157088],[-98.374677,26.157568],[-98.380486,26.156816],[-98.383814,26.15696],[-98.386694,26.157872],[-98.388838,26.160464],[-98.391446,26.165856],[-98.393542,26.168016],[-98.39783,26.170624],[-98.401542,26.171648],[-98.402208,26.17217],[-98.402745,26.173259],[-98.402844,26.174875],[-98.402249,26.179523],[-98.402646,26.180761],[-98.404433,26.182564],[-98.406222,26.183229],[-98.414657,26.183794],[-98.41812,26.184648],[-98.420439,26.186735],[-98.423271,26.189983],[-98.425175,26.191535],[-98.431559,26.195071],[-98.439048,26.197471],[-98.440616,26.198367],[-98.44204,26.198751],[-98.444072,26.200895],[-98.44468,26.202783],[-98.444296,26.204671],[-98.442923,26.206869],[-98.442456,26.206989],[-98.440733,26.208726],[-98.439203,26.210923],[-98.438822,26.212022],[-98.438822,26.21422],[-98.440251,26.219442],[-98.443406,26.223653],[-98.445222,26.224571],[-98.446658,26.224389],[-98.45001,26.223019],[-98.453165,26.219724],[-98.453892,26.217424],[-98.454456,26.217062],[-98.456072,26.217598],[-98.456724,26.222883],[-98.458402,26.225317],[-98.459716,26.225961],[-98.461216,26.22612],[-98.463657,26.225272],[-98.468217,26.221589],[-98.471782,26.220187],[-98.479871,26.220103],[-98.481582,26.219379],[-98.483082,26.217546],[-98.483129,26.215309],[-98.482502,26.213511],[-98.479344,26.209941],[-98.478495,26.208292],[-98.477961,26.203359],[-98.478377,26.202303],[-98.479593,26.201471],[-98.482201,26.201375],[-98.482973,26.202043],[-98.483186,26.203348],[-98.481868,26.205476],[-98.481617,26.206469],[-98.482021,26.208588],[-98.482601,26.209822],[-98.483993,26.211438],[-98.485401,26.212366],[-98.486988,26.212923],[-98.490138,26.213177],[-98.492428,26.212921],[-98.495133,26.212128],[-98.500333,26.20975],[-98.503766,26.2088],[-98.505042,26.208793],[-98.506769,26.209404],[-98.507332,26.210171],[-98.507105,26.211675],[-98.503859,26.217451],[-98.501081,26.221347],[-98.500916,26.222211],[-98.501269,26.222922],[-98.502025,26.223344],[-98.506343,26.224135],[-98.511623,26.226995],[-98.514847,26.227218],[-98.51655,26.226708],[-98.519058,26.224939],[-98.521219,26.223037],[-98.521918,26.221574],[-98.52254,26.220996],[-98.523414,26.220894],[-98.524278,26.221245],[-98.525369,26.222651],[-98.526723,26.225443],[-98.526435,26.227723],[-98.525956,26.228662],[-98.521788,26.23253],[-98.521526,26.234423],[-98.521814,26.235642],[-98.523053,26.235934],[-98.524456,26.235565],[-98.525429,26.234805],[-98.529841,26.227936],[-98.531592,26.226544],[-98.53408,26.225604],[-98.535241,26.225677],[-98.537109,26.227721],[-98.539492,26.234224],[-98.543549,26.242436],[-98.544479,26.243753],[-98.545328,26.244536],[-98.55197,26.246346],[-98.554577,26.24738],[-98.557349,26.247482],[-98.559097,26.245519],[-98.559053,26.244976],[-98.557444,26.243411],[-98.552335,26.241192],[-98.547599,26.241135],[-98.546752,26.24046],[-98.546023,26.2392],[-98.545922,26.237097],[-98.54655,26.235512],[-98.547683,26.234277],[-98.548718,26.233714],[-98.55408,26.232853],[-98.556002,26.232105],[-98.558012,26.230016],[-98.559181,26.226274],[-98.560442,26.225237],[-98.561701,26.224811],[-98.562959,26.224908],[-98.564549,26.22688],[-98.564737,26.227818],[-98.564236,26.232459],[-98.564985,26.238619],[-98.566231,26.240833],[-98.567392,26.241624],[-98.571006,26.240471],[-98.574106,26.238585],[-98.576643,26.233834],[-98.57839,26.23384],[-98.579845,26.234776],[-98.58172,26.238759],[-98.58392,26.242023],[-98.584982,26.244301],[-98.584145,26.246178],[-98.579958,26.24943],[-98.579517,26.252245],[-98.580817,26.254741],[-98.582917,26.256472],[-98.583882,26.257008],[-98.587545,26.257816],[-98.591377,26.257563],[-98.596334,26.257972],[-98.599154,26.257612],[-98.608362,26.253388],[-98.611271,26.253282],[-98.612913,26.252727],[-98.613465,26.252028],[-98.614188,26.248864],[-98.614799,26.247727],[-98.616487,26.246761],[-98.617266,26.246809],[-98.618205,26.247562],[-98.618755,26.249254],[-98.618915,26.252412],[-98.619519,26.254659],[-98.621654,26.258774],[-98.622199,26.259481],[-98.623467,26.259666],[-98.624759,26.259221],[-98.625837,26.258338],[-98.627709,26.255763],[-98.632277,26.25214],[-98.6329,26.250348],[-98.633486,26.243265],[-98.63418,26.242612],[-98.636253,26.241866],[-98.642402,26.241829],[-98.644095,26.241356],[-98.648528,26.239481],[-98.652068,26.236897],[-98.654451,26.235933],[-98.659343,26.23533],[-98.664633,26.235351],[-98.669149,26.23653],[-98.672967,26.238423],[-98.676562,26.241562],[-98.67777,26.243236],[-98.678852,26.245576],[-98.679298,26.247308],[-98.679361,26.24921],[-98.677813,26.254784],[-98.677845,26.256915],[-98.678958,26.260064],[-98.68109,26.262803],[-98.685037,26.26462],[-98.687156,26.26512],[-98.689489,26.265296],[-98.693174,26.264849],[-98.700737,26.265966],[-98.710942,26.268692],[-98.718412,26.271417],[-98.719413,26.272304],[-98.720181,26.274507],[-98.719765,26.275911],[-98.719033,26.276853],[-98.717792,26.277624],[-98.715661,26.278423],[-98.712157,26.278977],[-98.710621,26.278929],[-98.70568,26.277418],[-98.703226,26.27717],[-98.701159,26.278023],[-98.699943,26.280005],[-98.699898,26.280858],[-98.700639,26.283731],[-98.701773,26.286143],[-98.704267,26.287982],[-98.708443,26.289181],[-98.709353,26.289189],[-98.712227,26.28722],[-98.714802,26.286077],[-98.71617,26.286197],[-98.718218,26.287253],[-98.718951,26.288237],[-98.719907,26.291052],[-98.721989,26.295046],[-98.724135,26.297054],[-98.727765,26.29877],[-98.729196,26.299027],[-98.73225,26.299108],[-98.734822,26.298352],[-98.736559,26.297517],[-98.74,26.294944],[-98.742621,26.294197],[-98.747755,26.294853],[-98.749407,26.295323],[-98.750973,26.296321],[-98.751974,26.297697],[-98.753012,26.300213],[-98.755067,26.301926],[-98.756123,26.304249],[-98.755948,26.30559],[-98.755209,26.307037],[-98.754216,26.307928],[-98.752708,26.308237],[-98.750353,26.307657],[-98.743685,26.303009],[-98.740419,26.302777],[-98.738469,26.3037],[-98.737235,26.30496],[-98.736528,26.306406],[-98.736161,26.309199],[-98.736652,26.31141],[-98.738457,26.313654],[-98.739927,26.31446],[-98.743477,26.314897],[-98.745069,26.315929],[-98.745821,26.316845],[-98.748049,26.320294],[-98.749379,26.324831],[-98.749469,26.329988],[-98.751127,26.331584],[-98.753776,26.331666],[-98.755002,26.331368],[-98.763488,26.326663],[-98.76824,26.325308],[-98.771321,26.325081],[-98.777028,26.325729],[-98.780245,26.326724],[-98.788955,26.330433],[-98.789706,26.331527],[-98.789673,26.332059],[-98.788333,26.334811],[-98.788018,26.336114],[-98.788313,26.338337],[-98.793073,26.343515],[-98.796252,26.349104],[-98.797257,26.352061],[-98.798211,26.360166],[-98.802238,26.365456],[-98.803946,26.367223],[-98.806618,26.369109],[-98.807348,26.369421],[-98.808354,26.369078],[-98.811396,26.366904],[-98.812928,26.366309],[-98.814,26.366292],[-98.81507,26.366478],[-98.816622,26.367733],[-98.818125,26.36953],[-98.820452,26.371002],[-98.824565,26.370833],[-98.826857,26.369624],[-98.830652,26.365262],[-98.832909,26.363338],[-98.836587,26.361197],[-98.841562,26.358943],[-98.844115,26.35873],[-98.845703,26.35893],[-98.84757,26.35979],[-98.84893,26.36072],[-98.851022,26.36381],[-98.853415,26.365023],[-98.856076,26.365776],[-98.86191,26.36599],[-98.866097,26.364713],[-98.870285,26.362365],[-98.878494,26.360694],[-98.889045,26.357096],[-98.890895,26.356362],[-98.895694,26.353491],[-98.896734,26.35333],[-98.898647,26.35505],[-98.900893,26.359404],[-98.900993,26.361385],[-98.899551,26.366588],[-98.901677,26.371229],[-98.903899,26.37213],[-98.911058,26.371767],[-98.913276,26.3723],[-98.917377,26.374471],[-98.920316,26.377827],[-98.922194,26.37908],[-98.923402,26.381371],[-98.923967,26.383281],[-98.92365,26.386426],[-98.924106,26.387728],[-98.923777,26.392048],[-98.925024,26.393718],[-98.925879,26.394357],[-98.92705,26.394462],[-98.929283,26.393361],[-98.933348,26.38886],[-98.935636,26.385047],[-98.935891,26.383091],[-98.934684,26.379824],[-98.934307,26.377464],[-98.934586,26.374375],[-98.935134,26.372971],[-98.936164,26.371533],[-98.939165,26.369929],[-98.942152,26.369687],[-98.946694,26.370003],[-98.948963,26.371253],[-98.953375,26.375341],[-98.955846,26.376982],[-98.956128,26.377561],[-98.955984,26.379466],[-98.954037,26.382666],[-98.953322,26.384712],[-98.952973,26.390926],[-98.953384,26.392948],[-98.954504,26.394368],[-98.956815,26.396005],[-98.961886,26.398373],[-98.966348,26.399081],[-98.970083,26.399193],[-98.973187,26.400841],[-98.975227,26.40114],[-98.976423,26.400986],[-98.979153,26.399924],[-98.983619,26.395097],[-98.986298,26.392782],[-98.987204,26.392197],[-98.989085,26.391667],[-98.990505,26.39156],[-98.997099,26.392375],[-99.000307,26.392345],[-99.003783,26.393476],[-99.005749,26.393199],[-99.008517,26.392313],[-99.01064,26.392135],[-99.012429,26.393016],[-99.014315,26.395822],[-99.015646,26.399521],[-99.016414,26.400781],[-99.021935,26.407902],[-99.023694,26.409142],[-99.026938,26.410265],[-99.032011,26.412821],[-99.037058,26.413603],[-99.040441,26.412674],[-99.045466,26.409816],[-99.047575,26.406922],[-99.050831,26.404612],[-99.054614,26.401262],[-99.062111,26.397385],[-99.063179,26.39712],[-99.069041,26.397639],[-99.07379,26.396976],[-99.078575,26.397255],[-99.082006,26.396667],[-99.083628,26.397441],[-99.085126,26.398782],[-99.086712,26.402084],[-99.086997,26.403534],[-99.089413,26.4081],[-99.090367,26.408974],[-99.094783,26.410953],[-99.096011,26.411828],[-99.099574,26.417248],[-99.104198,26.421162],[-99.105723,26.423216],[-99.108723,26.4253],[-99.110854,26.426282],[-99.113546,26.43253],[-99.113808,26.434002],[-99.113163,26.43518],[-99.112694,26.435457],[-99.107253,26.437597],[-99.105656,26.438667],[-99.104037,26.440186],[-99.102376,26.442726],[-99.102567,26.445788],[-99.102359,26.447981],[-99.100822,26.450212],[-99.100647,26.451918],[-99.100046,26.453587],[-99.100357,26.458748],[-99.099226,26.461606],[-99.098127,26.463347],[-99.093618,26.4683],[-99.091976,26.472376],[-99.091572,26.477054],[-99.091956,26.477912],[-99.095479,26.481678],[-99.095803,26.483068],[-99.102237,26.495318],[-99.103437,26.496896],[-99.104851,26.500383],[-99.112292,26.507703],[-99.113557,26.510174],[-99.115989,26.512839],[-99.118566,26.516583],[-99.12115,26.518295],[-99.123613,26.520494],[-99.127782,26.525199],[-99.128379,26.525501],[-99.135664,26.526259],[-99.137325,26.52744],[-99.143658,26.527929],[-99.155517,26.531956],[-99.16279,26.535211],[-99.166742,26.536079],[-99.16917,26.538332],[-99.17123,26.541965],[-99.171822,26.54459],[-99.17138,26.549249],[-99.169665,26.553928],[-99.168255,26.555918],[-99.16741,26.560001],[-99.178064,26.620547],[-99.200522,26.656443],[-99.209948,26.693938],[-99.208907,26.724761],[-99.240023,26.745851],[-99.242444,26.788262],[-99.262208,26.815668],[-99.268613,26.843213],[-99.280471,26.858053],[-99.295146,26.86544],[-99.310232,26.864983],[-99.316753,26.865831],[-99.323837,26.873902],[-99.325882,26.877376],[-99.328619,26.878592],[-99.3289,26.879761],[-99.326574,26.884784],[-99.326216,26.890403],[-99.321819,26.906846],[-99.32297,26.912464],[-99.324684,26.915973],[-99.329852,26.919343],[-99.337297,26.922759],[-99.347147,26.925004],[-99.35165,26.92514],[-99.361144,26.928921],[-99.367054,26.929034],[-99.373374,26.931256],[-99.379149,26.93449],[-99.385159,26.940455],[-99.388253,26.944217],[-99.390605,26.951465],[-99.393033,26.95706],[-99.393748,26.96073],[-99.392954,26.963803],[-99.390189,26.966348],[-99.381102,26.970816],[-99.377312,26.973819],[-99.376593,26.977717],[-99.378435,26.980034],[-99.384808,26.981069],[-99.387367,26.982399],[-99.392178,26.987492],[-99.403694,26.997356],[-99.405922,27.002798],[-99.407073,27.006995],[-99.408507,27.00952],[-99.411175,27.011597],[-99.412625,27.013949],[-99.415476,27.01724],[-99.418357,27.017107],[-99.420447,27.016568],[-99.422232,27.015715],[-99.424892,27.013483],[-99.42938,27.010833],[-99.430182,27.010544],[-99.432155,27.010699],[-99.435547,27.012164],[-99.443632,27.01882],[-99.44531,27.02105],[-99.446123,27.023048],[-99.445668,27.026009],[-99.444062,27.031253],[-99.443973,27.036458],[-99.445646,27.043441],[-99.447128,27.047495],[-99.449948,27.053068],[-99.450926,27.055653],[-99.452316,27.060957],[-99.452316,27.062669],[-99.451035,27.066765],[-99.450282,27.067705],[-99.444748,27.072003],[-99.435487,27.077476],[-99.43447,27.078517],[-99.432812,27.081875],[-99.429209,27.090982],[-99.429096,27.092632],[-99.430275,27.094872],[-99.435324,27.098373],[-99.437646,27.100442],[-99.439876,27.103423],[-99.44181,27.105394],[-99.442125,27.106856],[-99.441922,27.108405],[-99.441109,27.110042],[-99.435746,27.116081],[-99.43337,27.119218],[-99.431153,27.124719],[-99.430672,27.125307],[-99.430581,27.126612],[-99.430685,27.131543],[-99.431355,27.13758],[-99.434495,27.140359],[-99.435514,27.14202],[-99.438265,27.144792],[-99.439973,27.148773],[-99.439971,27.151072],[-99.439276,27.152694],[-99.437951,27.154121],[-99.435932,27.155435],[-99.432166,27.157086],[-99.429984,27.159149],[-99.427806,27.167273],[-99.426348,27.176262],[-99.426418,27.178287],[-99.428212,27.185923],[-99.430395,27.193551],[-99.43105,27.196981],[-99.432775,27.201841],[-99.43316,27.204552],[-99.432589,27.209698],[-99.434307,27.212131],[-99.437405,27.214216],[-99.442755,27.21878],[-99.445238,27.223341],[-99.445228,27.225479],[-99.442934,27.231223],[-99.441407,27.236758],[-99.441041,27.242987],[-99.441545,27.249915],[-99.442314,27.251607],[-99.444362,27.253831],[-99.446811,27.25758],[-99.449888,27.2604],[-99.452391,27.264046],[-99.455584,27.266198],[-99.458418,27.266236],[-99.460509,27.267838],[-99.461476,27.268175],[-99.463309,27.268437],[-99.465825,27.26797],[-99.469275,27.265974],[-99.471231,27.265274],[-99.473678,27.263175],[-99.476401,27.26236],[-99.481192,27.259835],[-99.48352,27.259562],[-99.486011,27.259854],[-99.489059,27.261477],[-99.492407,27.264118],[-99.494022,27.26623],[-99.495658,27.269053],[-99.49669,27.272435],[-99.494678,27.277595],[-99.489139,27.28576],[-99.487592,27.289602],[-99.487505,27.292777],[-99.487937,27.294941],[-99.490784,27.298334],[-99.49202,27.300666],[-99.493758,27.301856],[-99.494604,27.303542],[-99.495754,27.304444],[-99.497419,27.305279],[-99.500951,27.306008],[-99.505247,27.305983],[-99.511531,27.304077],[-99.521071,27.303824],[-99.523658,27.304138],[-99.525756,27.305257],[-99.528473,27.305417],[-99.529654,27.306051],[-99.533564,27.310452],[-99.535183,27.31112],[-99.535999,27.31199],[-99.536715,27.31303],[-99.538035,27.316961],[-99.537702,27.317704],[-99.533992,27.320673],[-99.531376,27.323809],[-99.530355,27.324117],[-99.525589,27.323857],[-99.523583,27.324143],[-99.521639,27.324581],[-99.518912,27.326305],[-99.509016,27.333859],[-99.506145,27.336511],[-99.504575,27.338741],[-99.504397,27.339896],[-99.507831,27.348637],[-99.507565,27.351398],[-99.507984,27.353013],[-99.507779,27.354247],[-99.50696,27.35642],[-99.505895,27.357818],[-99.503727,27.36462],[-99.499076,27.37314],[-99.498347,27.373918],[-99.495999,27.375204],[-99.494875,27.377424],[-99.493136,27.37903],[-99.492144,27.380517],[-99.491717,27.383668],[-99.492709,27.386049],[-99.492709,27.391954],[-99.489611,27.399041],[-99.488818,27.405556],[-99.487521,27.411572],[-99.487643,27.413071],[-99.489199,27.41634],[-99.489931,27.418663],[-99.490984,27.424294],[-99.493899,27.432578],[-99.495699,27.438884],[-99.495882,27.440147],[-99.495577,27.444732],[-99.494646,27.44931],[-99.495104,27.451518],[-99.494636,27.452539],[-99.493495,27.453098],[-99.492175,27.455818],[-99.487631,27.460672],[-99.485404,27.464067],[-99.485027,27.464869],[-99.485239,27.465696],[-99.483973,27.467244],[-99.483119,27.469396],[-99.482965,27.473129],[-99.482282,27.476315],[-99.479251,27.478635],[-99.479376,27.481606],[-99.480119,27.48534],[-99.481288,27.488468],[-99.483708,27.491405],[-99.485806,27.493188],[-99.491911,27.497304],[-99.496826,27.500106],[-99.497505,27.500033],[-99.499002,27.499154],[-99.500977,27.500076],[-99.502519,27.500396],[-99.510319,27.499096],[-99.513576,27.499412],[-99.51612,27.498594],[-99.51985,27.496763],[-99.526137,27.496589],[-99.528392,27.49855],[-99.52742,27.503395],[-99.52532,27.510395],[-99.52512,27.515695],[-99.52542,27.518495],[-99.524835,27.523795],[-99.52222,27.534794],[-99.521919,27.544094],[-99.518819,27.553194],[-99.514016,27.556842],[-99.512367,27.562627],[-99.511049,27.564507],[-99.512132,27.568288],[-99.516405,27.572467],[-99.521731,27.574611],[-99.523959,27.576102],[-99.52495,27.576327],[-99.529711,27.579761],[-99.531878,27.582858],[-99.536197,27.591682],[-99.536136,27.592692],[-99.536945,27.596103],[-99.539722,27.603281],[-99.541889,27.606001],[-99.551425,27.611643],[-99.554945,27.614456],[-99.556117,27.614408],[-99.557563,27.612976],[-99.55864,27.611132],[-99.558701,27.609181],[-99.561233,27.607569],[-99.569065,27.605883],[-99.578626,27.602286],[-99.580008,27.602246],[-99.582278,27.602734],[-99.584843,27.603903],[-99.584973,27.605321],[-99.584432,27.606213],[-99.582469,27.606646],[-99.579977,27.607823],[-99.577802,27.610146],[-99.577182,27.6113],[-99.577173,27.615714],[-99.577636,27.618597],[-99.578892,27.619978],[-99.581713,27.620646],[-99.584782,27.622007],[-99.588896,27.625292],[-99.589481,27.626314],[-99.591372,27.627464],[-99.592353,27.628613],[-99.592757,27.634654],[-99.594038,27.638573],[-99.596231,27.639858],[-99.603533,27.641992],[-99.610311,27.640006],[-99.614252,27.63795],[-99.616069,27.637681],[-99.617582,27.638358],[-99.619093,27.640148],[-99.621397,27.643763],[-99.623478,27.644136],[-99.624311,27.644001],[-99.626294,27.64245],[-99.627057,27.640778],[-99.627123,27.638412],[-99.626349,27.637365],[-99.623753,27.635367],[-99.623246,27.634644],[-99.623415,27.633558],[-99.625112,27.63138],[-99.626857,27.629963],[-99.636553,27.626989],[-99.638929,27.626758],[-99.650057,27.630582],[-99.6543,27.629778],[-99.658853,27.631138],[-99.659586,27.632565],[-99.666108,27.636088],[-99.666175,27.638324],[-99.665422,27.640275],[-99.661159,27.643128],[-99.6595,27.645246],[-99.658068,27.648003],[-99.658295,27.650158],[-99.659353,27.652281],[-99.661467,27.654069],[-99.661845,27.655753],[-99.664223,27.657575],[-99.668942,27.659974],[-99.671471,27.660248],[-99.678949,27.658979],[-99.685813,27.661015],[-99.687814,27.662263],[-99.688569,27.663173],[-99.689514,27.665093],[-99.689403,27.66856],[-99.690158,27.668864],[-99.691253,27.668732],[-99.694383,27.666078],[-99.69706,27.662481],[-99.699356,27.655417],[-99.704601,27.654954],[-99.711511,27.658365],[-99.713248,27.660185],[-99.716173,27.661836],[-99.721519,27.666155],[-99.723634,27.669532],[-99.723902,27.673559],[-99.72844,27.67926],[-99.732448,27.685425],[-99.738459,27.693108],[-99.752615,27.706844],[-99.757645,27.712112],[-99.758512,27.717041],[-99.76162,27.722063],[-99.768239,27.72985],[-99.77074,27.732134],[-99.774901,27.73354],[-99.785366,27.730355],[-99.788845,27.730718],[-99.791531,27.731858],[-99.796342,27.735586],[-99.801651,27.741771],[-99.803427,27.750288],[-99.80567,27.758688],[-99.809963,27.769272],[-99.813118,27.773997],[-99.815584,27.775595],[-99.817549,27.776296],[-99.819092,27.776019],[-99.822114,27.767274],[-99.822905,27.766278],[-99.826022,27.764327],[-99.833054,27.76289],[-99.835127,27.762881],[-99.838791,27.764181],[-99.841708,27.766464],[-99.842967,27.768518],[-99.843441,27.771521],[-99.843195,27.773655],[-99.844737,27.778809],[-99.84887,27.787399],[-99.84966,27.79246],[-99.850877,27.793974],[-99.852465,27.794608],[-99.854342,27.794689],[-99.86038,27.793673],[-99.86294,27.794256],[-99.866407,27.794206],[-99.870066,27.794627],[-99.872294,27.795258],[-99.87533,27.79677],[-99.876761,27.797845],[-99.878024,27.800505],[-99.877143,27.804385],[-99.874845,27.808584],[-99.873785,27.813012],[-99.874222,27.816014],[-99.876452,27.819895],[-99.877894,27.825352],[-99.87805,27.827612],[-99.877061,27.832234],[-99.876241,27.83382],[-99.876003,27.837968],[-99.8772,27.84218],[-99.882015,27.850392],[-99.883375,27.85049],[-99.8844,27.851262],[-99.890805,27.85438],[-99.89365,27.856193],[-99.895284,27.857706],[-99.895755,27.85923],[-99.897079,27.8606],[-99.901486,27.864162],[-99.902333,27.866486],[-99.904385,27.875284],[-99.903953,27.878533],[-99.903326,27.880544],[-99.901232,27.884406],[-99.897013,27.88824],[-99.894091,27.89295],[-99.893456,27.899208],[-99.896309,27.905186],[-99.896778,27.907011],[-99.90008,27.912142],[-99.903125,27.913486],[-99.908331,27.914619],[-99.917461,27.917973],[-99.922046,27.922119],[-99.926035,27.927484],[-99.92435,27.929514],[-99.92413,27.931379],[-99.926555,27.935701],[-99.927623,27.936407],[-99.932866,27.93727],[-99.934619,27.938245],[-99.937142,27.940537],[-99.938958,27.949323],[-99.938541,27.954059],[-99.934388,27.96148],[-99.932161,27.96771],[-99.931229,27.979482],[-99.931811,27.980968],[-99.934816,27.98177],[-99.941236,27.982493],[-99.947117,27.98217],[-99.950209,27.983266],[-99.962768,27.983537],[-99.970113,27.985879],[-99.977281,27.989505],[-99.978659,27.989289],[-99.984923,27.990729],[-99.989762,27.992876],[-99.991447,27.99456],[-99.996388,28.001582],[-100.000024,28.010478],[-100.006148,28.018419],[-100.008631,28.023964],[-100.012839,28.037203],[-100.013088,28.04382],[-100.015,28.04888],[-100.016068,28.053296],[-100.017143,28.062274],[-100.017913,28.064788],[-100.018951,28.066441],[-100.021859,28.068881],[-100.028724,28.073119],[-100.031775,28.074391],[-100.040905,28.076969],[-100.046107,28.079069],[-100.053122,28.084731],[-100.055063,28.088182],[-100.056982,28.094208],[-100.057048,28.095657],[-100.055595,28.101142],[-100.055834,28.10272],[-100.056492,28.104187],[-100.058808,28.107292],[-100.065885,28.111738],[-100.067651,28.113603],[-100.071769,28.120842],[-100.075474,28.124882],[-100.076596,28.127629],[-100.077784,28.128663],[-100.07895,28.131028],[-100.080629,28.135474],[-100.081301,28.138475],[-100.082553,28.139743],[-100.082958,28.141059],[-100.082932,28.143099],[-100.083393,28.144035],[-100.084328,28.144819],[-100.086898,28.146783],[-100.090289,28.148313],[-100.109091,28.153586],[-100.110448,28.153573],[-100.114395,28.15474],[-100.119627,28.155588],[-100.124318,28.158111],[-100.126782,28.160037],[-100.128308,28.160574],[-100.129148,28.161806],[-100.133157,28.163563],[-100.134383,28.163737],[-100.136405,28.165362],[-100.141099,28.168148],[-100.142252,28.168372],[-100.155975,28.167383],[-100.15919,28.167647],[-100.160589,28.16816],[-100.168437,28.171542],[-100.171322,28.17623],[-100.174412,28.179448],[-100.177552,28.181585],[-100.178623,28.181623],[-100.185694,28.185781],[-100.196499,28.190218],[-100.197886,28.190004],[-100.201085,28.190558],[-100.202447,28.190554],[-100.203807,28.190049],[-100.208058,28.190383],[-100.210217,28.192248],[-100.211313,28.193899],[-100.212104,28.19651],[-100.213609,28.204703],[-100.214112,28.205694],[-100.213481,28.20714],[-100.213452,28.210416],[-100.214248,28.211769],[-100.215464,28.218872],[-100.216532,28.221821],[-100.216547,28.223503],[-100.217565,28.226934],[-100.220288,28.23221],[-100.223629,28.235223],[-100.227573,28.235858],[-100.230517,28.236034],[-100.231479,28.235697],[-100.232228,28.236058],[-100.234966,28.23518],[-100.241397,28.234938],[-100.244273,28.23413],[-100.246205,28.234091],[-100.251636,28.23618],[-100.257789,28.24034],[-100.26091,28.244832],[-100.26471,28.247843],[-100.265998,28.249337],[-100.267603,28.250269],[-100.270129,28.253721],[-100.27263,28.255876],[-100.27763,28.262453],[-100.280519,28.267968],[-100.283177,28.270634],[-100.284301,28.271074],[-100.285102,28.271808],[-100.28939,28.27349],[-100.291397,28.275397],[-100.293474,28.278474],[-100.294113,28.280404],[-100.294296,28.28438],[-100.293468,28.28598],[-100.293276,28.287368],[-100.292228,28.288647],[-100.292151,28.289899],[-100.290436,28.295089],[-100.289798,28.295774],[-100.287553,28.301095],[-100.285986,28.3091],[-100.286476,28.312295],[-100.288639,28.316976],[-100.289553,28.31758],[-100.293084,28.321908],[-100.294838,28.323213],[-100.299284,28.328716],[-100.300887,28.330242],[-100.303849,28.334188],[-100.305428,28.335196],[-100.309123,28.338674],[-100.309837,28.341557],[-100.310732,28.343227],[-100.313139,28.344788],[-100.314199,28.345859],[-100.315712,28.349662],[-100.317245,28.357381],[-100.320392,28.362117],[-100.322914,28.364679],[-100.323724,28.366026],[-100.325114,28.367245],[-100.32959,28.372652],[-100.331401,28.373939],[-100.332208,28.375265],[-100.339712,28.382491],[-100.341871,28.384953],[-100.344402,28.389662],[-100.346799,28.395752],[-100.348178,28.398189],[-100.349588,28.402604],[-100.34945,28.403714],[-100.346988,28.407232],[-100.345248,28.407889],[-100.343947,28.410119],[-100.341915,28.414607],[-100.337063,28.427152],[-100.336187,28.430181],[-100.337616,28.437723],[-100.337433,28.441217],[-100.337798,28.44296],[-100.33944,28.446436],[-100.341534,28.449571],[-100.348425,28.456047],[-100.350786,28.459246],[-100.357498,28.463642],[-100.361046,28.467332],[-100.36206,28.469303],[-100.367765,28.475019],[-100.368288,28.477196],[-100.368197,28.47891],[-100.365982,28.481116],[-100.36189,28.482301],[-100.35508,28.482105],[-100.352235,28.482638],[-100.35065,28.483629],[-100.344181,28.486249],[-100.33714,28.491729],[-100.334864,28.495111],[-100.333682,28.497878],[-100.333814,28.499252],[-100.33474,28.500261],[-100.338518,28.501833],[-100.346748,28.503841],[-100.353142,28.504247],[-100.356037,28.504871],[-100.357982,28.5056],[-100.360356,28.50777],[-100.362148,28.508399],[-100.364738,28.508621],[-100.376959,28.512023],[-100.379079,28.511639],[-100.386963,28.514023],[-100.388262,28.514863],[-100.394988,28.528358],[-100.396177,28.529619],[-100.397736,28.530424],[-100.400209,28.531095],[-100.402214,28.532657],[-100.405058,28.53578],[-100.409887,28.545605],[-100.411269,28.550705],[-100.411388,28.55196],[-100.408888,28.557281],[-100.405171,28.560712],[-100.40425,28.564233],[-100.402866,28.565887],[-100.397301,28.575578],[-100.3968,28.580401],[-100.397211,28.582069],[-100.398096,28.583508],[-100.398462,28.585169],[-100.400266,28.58653],[-100.402236,28.58735],[-100.406214,28.588666],[-100.408968,28.588924],[-100.419389,28.593429],[-100.426603,28.595145],[-100.429856,28.596441],[-100.431871,28.597841],[-100.433623,28.606117],[-100.435334,28.606986],[-100.444975,28.607806],[-100.44732,28.609325],[-100.448624,28.61705],[-100.447557,28.621163],[-100.446581,28.633599],[-100.445529,28.637144],[-100.445526,28.637765],[-100.446163,28.638598],[-100.445749,28.640626],[-100.447091,28.642197],[-100.449519,28.642962],[-100.4547,28.642186],[-100.455719,28.642275],[-100.460287,28.641021],[-100.462866,28.641364],[-100.474494,28.647071],[-100.476171,28.649219],[-100.478878,28.654416],[-100.479636,28.655225],[-100.483946,28.655811],[-100.486033,28.656948],[-100.48926,28.658002],[-100.492639,28.657869],[-100.495863,28.658569],[-100.498115,28.659605],[-100.500354,28.66196],[-100.501798,28.66738],[-100.507691,28.682875],[-100.509005,28.687974],[-100.510055,28.690723],[-100.510534,28.692669],[-100.510532,28.697972],[-100.510922,28.701539],[-100.511998,28.705352],[-100.511419,28.708024],[-100.508986,28.711014],[-100.50775,28.71332],[-100.506701,28.716745],[-100.507877,28.721571],[-100.507706,28.727769],[-100.507113,28.72891],[-100.506791,28.732015],[-100.507613,28.740599],[-100.508255,28.741199],[-100.50915,28.741435],[-100.513516,28.741726],[-100.515156,28.742947],[-100.515565,28.743943],[-100.515536,28.744943],[-100.514504,28.74819],[-100.514399,28.750252],[-100.515472,28.75248],[-100.519226,28.756161],[-100.52157,28.75764],[-100.522483,28.757786],[-100.527216,28.756168],[-100.528475,28.756106],[-100.531567,28.757181],[-100.532862,28.758118],[-100.533408,28.759207],[-100.533551,28.761078],[-100.533017,28.76328],[-100.532211,28.764763],[-100.530281,28.767052],[-100.530046,28.770423],[-100.530464,28.771681],[-100.53194,28.773771],[-100.535023,28.77587],[-100.536445,28.777622],[-100.537772,28.780776],[-100.537733,28.782688],[-100.536944,28.784292],[-100.53517,28.785758],[-100.53345,28.787821],[-100.532431,28.791063],[-100.533402,28.799282],[-100.534246,28.802556],[-100.535438,28.805195],[-100.536459,28.806276],[-100.538815,28.806673],[-100.542173,28.808466],[-100.5452,28.812082],[-100.545819,28.813308],[-100.546216,28.81597],[-100.545479,28.819954],[-100.546576,28.824923],[-100.547324,28.825817],[-100.548895,28.826214],[-100.55313,28.828249],[-100.561443,28.829174],[-100.562777,28.829183],[-100.56583,28.828338],[-100.570475,28.826036],[-100.573158,28.82731],[-100.574728,28.828788],[-100.575891,28.832949],[-100.576866,28.835157],[-100.576846,28.836168],[-100.576294,28.83895],[-100.574397,28.843148],[-100.572878,28.848206],[-100.575154,28.850941],[-100.580502,28.856008],[-100.588192,28.860238],[-100.59104,28.863054],[-100.591468,28.864272],[-100.590761,28.867369],[-100.590855,28.871052],[-100.590369,28.87189],[-100.590768,28.872697],[-100.592033,28.873232],[-100.596804,28.873402],[-100.598101,28.874314],[-100.598877,28.875591],[-100.598731,28.878096],[-100.597941,28.880146],[-100.594848,28.882215],[-100.591041,28.883008],[-100.589705,28.884988],[-100.589499,28.886358],[-100.591517,28.889286],[-100.592504,28.889448],[-100.594287,28.888831],[-100.594929,28.888166],[-100.59729,28.887811],[-100.59987,28.886469],[-100.60099,28.886331],[-100.602172,28.886617],[-100.603011,28.887227],[-100.603841,28.888391],[-100.603793,28.889458],[-100.602294,28.894154],[-100.602562,28.895315],[-100.60232,28.898055],[-100.600749,28.900076],[-100.60109,28.901288],[-100.602595,28.902214],[-100.604249,28.90238],[-100.607763,28.902323],[-100.61218,28.901292],[-100.614222,28.901718],[-100.615792,28.903049],[-100.617016,28.907072],[-100.618216,28.908522],[-100.620942,28.909546],[-100.622436,28.909773],[-100.623482,28.909601],[-100.624899,28.90827],[-100.624706,28.9066],[-100.625407,28.904898],[-100.627729,28.903363],[-100.631611,28.902839],[-100.632778,28.903766],[-100.633277,28.904583],[-100.634691,28.908708],[-100.636619,28.911508],[-100.639242,28.912603],[-100.640568,28.914212],[-100.640672,28.915249],[-100.63917,28.916289],[-100.636015,28.916567],[-100.632956,28.916245],[-100.631061,28.916915],[-100.629785,28.91879],[-100.629706,28.921146],[-100.630188,28.922177],[-100.630228,28.923333],[-100.63072,28.924006],[-100.632401,28.925032],[-100.636855,28.926306],[-100.638857,28.927622],[-100.640794,28.930333],[-100.642552,28.933674],[-100.64375,28.937528],[-100.645841,28.939867],[-100.650894,28.942128],[-100.651512,28.943432],[-100.651542,28.945577],[-100.648911,28.952632],[-100.647268,28.955457],[-100.646993,28.957079],[-100.647143,28.958306],[-100.648285,28.960656],[-100.648828,28.961017],[-100.649932,28.961092],[-100.650334,28.961544],[-100.650319,28.962336],[-100.64943,28.964152],[-100.647153,28.96612],[-100.646636,28.966929],[-100.646382,28.970724],[-100.647192,28.973056],[-100.648113,28.974004],[-100.648654,28.977422],[-100.648104,28.98386],[-100.647286,28.985298],[-100.645894,28.986421],[-100.64604,28.987981],[-100.646903,28.991777],[-100.647826,28.992933],[-100.649164,28.996285],[-100.648529,28.998941],[-100.648664,29.000243],[-100.650946,29.008254],[-100.653758,29.015356],[-100.65611,29.017224],[-100.660208,29.031497],[-100.660351,29.035849],[-100.661885,29.039655],[-100.663212,29.048042],[-100.663059,29.053466],[-100.662508,29.058107],[-100.664021,29.074164],[-100.664609,29.075392],[-100.665464,29.075973],[-100.665873,29.076782],[-100.666848,29.082596],[-100.670597,29.092045],[-100.6752,29.100741],[-100.680526,29.107006],[-100.683927,29.110239],[-100.688505,29.112591],[-100.69179,29.114854],[-100.692978,29.115384],[-100.702309,29.117482],[-100.709966,29.119684],[-100.727462,29.129123],[-100.729049,29.131466],[-100.737795,29.139079],[-100.739116,29.141658],[-100.73886,29.143271],[-100.737709,29.145489],[-100.737419,29.147443],[-100.738023,29.148815],[-100.739681,29.150486],[-100.743105,29.152686],[-100.74614,29.154149],[-100.750365,29.155241],[-100.758072,29.156321],[-100.759726,29.15715],[-100.76335,29.160084],[-100.763676,29.164845],[-100.765448,29.166326],[-100.76896,29.166045],[-100.772604,29.168369],[-100.773855,29.170836],[-100.775905,29.173344],[-100.775189,29.174996],[-100.768493,29.181832],[-100.766004,29.185847],[-100.765824,29.187473],[-100.766306,29.190446],[-100.766121,29.191296],[-100.767059,29.195287],[-100.76811,29.197364],[-100.769341,29.198911],[-100.773952,29.199846],[-100.775294,29.199698],[-100.776254,29.200929],[-100.77702,29.204329],[-100.774539,29.209728],[-100.774627,29.210634],[-100.775042,29.211637],[-100.777088,29.213506],[-100.779697,29.218698],[-100.780039,29.21912],[-100.781036,29.219432],[-100.781142,29.220511],[-100.78241,29.222511],[-100.783779,29.225997],[-100.785521,29.228137],[-100.786329,29.228501],[-100.787131,29.228346],[-100.790071,29.226391],[-100.791372,29.225945],[-100.793677,29.226466],[-100.795681,29.22773],[-100.79686,29.231386],[-100.797046,29.235586],[-100.7948,29.239587],[-100.794627,29.241612],[-100.795647,29.244111],[-100.797619,29.246776],[-100.80006,29.248797],[-100.806653,29.252264],[-100.809279,29.253152],[-100.816277,29.253864],[-100.816723,29.254557],[-100.816693,29.255639],[-100.813306,29.261057],[-100.813321,29.262158],[-100.813959,29.263137],[-100.815062,29.263926],[-100.816994,29.264332],[-100.818773,29.263915],[-100.823533,29.261742],[-100.826006,29.261513],[-100.831214,29.261826],[-100.832315,29.261342],[-100.83404,29.2614],[-100.839016,29.263259],[-100.840829,29.264457],[-100.842782,29.266981],[-100.845476,29.269145],[-100.849908,29.27211],[-100.8511,29.271732],[-100.853396,29.272606],[-100.855067,29.274946],[-100.855841,29.275546],[-100.857898,29.275879],[-100.864659,29.276076],[-100.873343,29.27849],[-100.876049,29.279585],[-100.878126,29.28086],[-100.878883,29.282193],[-100.88024,29.286296],[-100.88058,29.292108],[-100.881958,29.299057],[-100.882293,29.299873],[-100.885785,29.304286],[-100.886291,29.305966],[-100.886312,29.307322],[-100.886842,29.307848],[-100.891072,29.308765],[-100.894931,29.310351],[-100.896646,29.309105],[-100.899033,29.309643],[-100.904734,29.312136],[-100.906419,29.313032],[-100.907422,29.314528],[-100.908394,29.316927],[-100.909457,29.317608],[-100.913131,29.317821],[-100.916628,29.319204],[-100.917279,29.320462],[-100.917602,29.322547],[-100.918284,29.324147],[-100.919499,29.325318],[-100.921343,29.326197],[-100.9236,29.326785],[-100.926677,29.326583],[-100.928505,29.326976],[-100.930482,29.328531],[-100.934451,29.330818],[-100.940616,29.333109],[-100.941265,29.333926],[-100.941691,29.337422],[-100.943198,29.341985],[-100.945383,29.344517],[-100.948974,29.347246],[-100.950727,29.347711],[-100.96079,29.346914],[-100.964326,29.347342],[-100.970212,29.350802],[-100.971744,29.351371],[-100.97254,29.352349],[-100.972914,29.354521],[-100.983246,29.359121],[-100.995607,29.363403],[-101.002948,29.365083],[-101.004207,29.364772],[-101.009976,29.368267],[-101.012627,29.371282],[-101.014274,29.374123],[-101.013273,29.380347],[-101.013542,29.381188],[-101.014473,29.38211],[-101.016726,29.387275],[-101.019258,29.390907],[-101.021023,29.39279],[-101.024016,29.393698],[-101.030464,29.399584],[-101.035146,29.405334],[-101.036604,29.406108],[-101.0386,29.410714],[-101.037642,29.414681],[-101.039461,29.416505],[-101.040637,29.422447],[-101.043364,29.42988],[-101.050505,29.434621],[-101.054422,29.437949],[-101.056957,29.440773],[-101.056844,29.447599],[-101.058149,29.447834],[-101.059727,29.455097],[-101.060151,29.458661],[-101.077184,29.46419],[-101.087149,29.469414],[-101.103699,29.47055],[-101.115254,29.468459],[-101.123794,29.473721],[-101.12728,29.477071],[-101.130038,29.47842],[-101.132634,29.477314],[-101.137503,29.473542],[-101.14075,29.472993],[-101.143447,29.473155],[-101.146798,29.474187],[-101.151877,29.477005],[-101.152191,29.478449],[-101.152741,29.478609],[-101.161948,29.489524],[-101.168102,29.50022],[-101.171664,29.503951],[-101.173824,29.514568],[-101.179646,29.515444],[-101.192716,29.520285],[-101.227417,29.52235],[-101.235273,29.524854],[-101.250382,29.520701],[-101.254895,29.520341],[-101.260838,29.529932],[-101.261176,29.536776],[-101.260482,29.538968],[-101.255275,29.549307],[-101.250385,29.556621],[-101.248524,29.559211],[-101.242981,29.564129],[-101.24103,29.565028],[-101.25166,29.600247],[-101.252297,29.604167],[-101.250383,29.609193],[-101.249636,29.610204],[-101.247333,29.61848],[-101.250383,29.624171],[-101.254036,29.626879],[-101.262233,29.630607],[-101.263391,29.630962],[-101.266469,29.63101],[-101.269102,29.630128],[-101.274145,29.625214],[-101.277709,29.621025],[-101.278759,29.619467],[-101.280494,29.615181],[-101.280079,29.613273],[-101.278097,29.609371],[-101.277439,29.606593],[-101.278008,29.596549],[-101.27761,29.593231],[-101.277878,29.59081],[-101.279449,29.588238],[-101.280623,29.587249],[-101.281138,29.5859],[-101.285336,29.582018],[-101.290962,29.571537],[-101.292489,29.571574],[-101.296162,29.572778],[-101.305533,29.577925],[-101.305969,29.578792],[-101.307565,29.580214],[-101.311636,29.585127],[-101.311997,29.586063],[-101.312363,29.587367],[-101.313373,29.602259],[-101.312617,29.60764],[-101.312896,29.610657],[-101.311706,29.615372],[-101.305863,29.625213],[-101.301427,29.634624],[-101.300027,29.640702],[-101.301444,29.647233],[-101.302516,29.650425],[-101.303558,29.652281],[-101.306944,29.655768],[-101.310372,29.657682],[-101.314135,29.659054],[-101.333486,29.66089],[-101.337483,29.660786],[-101.346017,29.662241],[-101.347863,29.662209],[-101.349351,29.661681],[-101.350327,29.66066],[-101.35545,29.651003],[-101.35714,29.649267],[-101.358713,29.649106],[-101.361312,29.650063],[-101.363218,29.652638],[-101.365551,29.666912],[-101.367105,29.670898],[-101.368718,29.672408],[-101.372696,29.678057],[-101.373054,29.680191],[-101.373108,29.684137],[-101.371782,29.693258],[-101.372773,29.699428],[-101.375386,29.701807],[-101.388481,29.707629],[-101.396948,29.713947],[-101.398362,29.717],[-101.398175,29.720485],[-101.396294,29.727055],[-101.396271,29.730465],[-101.397009,29.733963],[-101.398599,29.736432],[-101.400636,29.738079],[-101.407663,29.740357],[-101.410024,29.741498],[-101.413227,29.743599],[-101.414875,29.745234],[-101.415584,29.746534],[-101.415936,29.748638],[-101.415722,29.750206],[-101.414588,29.752418],[-101.413211,29.753381],[-101.403926,29.757587],[-101.400155,29.760083],[-101.398983,29.762175],[-101.398445,29.76463],[-101.398672,29.766898],[-101.399736,29.768961],[-101.402319,29.77119],[-101.404067,29.771766],[-101.40596,29.771653],[-101.407983,29.771343],[-101.410933,29.770152],[-101.424208,29.761312],[-101.43627,29.751921],[-101.438146,29.75092],[-101.442589,29.749722],[-101.446202,29.749933],[-101.448881,29.750699],[-101.450298,29.752846],[-101.451215,29.755792],[-101.451974,29.760363],[-101.453074,29.764719],[-101.454588,29.768703],[-101.455224,29.771874],[-101.455125,29.773936],[-101.452947,29.781947],[-101.452806,29.783791],[-101.45378,29.785911],[-101.455799,29.788049],[-101.458309,29.789228],[-101.460906,29.789663],[-101.464403,29.789286],[-101.469489,29.787894],[-101.476275,29.785518],[-101.478864,29.784085],[-101.482515,29.780095],[-101.484457,29.776885],[-101.487089,29.773868],[-101.500389,29.765868],[-101.503223,29.764582],[-101.504956,29.764238],[-101.508274,29.76422],[-101.51758,29.765005],[-101.520351,29.764354],[-101.522811,29.763338],[-101.525648,29.761583],[-101.530256,29.759584],[-101.533874,29.758728],[-101.535998,29.75895],[-101.537276,29.759411],[-101.538638,29.760506],[-101.539191,29.761774],[-101.539432,29.766421],[-101.538466,29.770038],[-101.53792,29.788065],[-101.536916,29.791649],[-101.535218,29.795404],[-101.53501,29.797679],[-101.536166,29.801284],[-101.541901,29.810781],[-101.543881,29.81184],[-101.544769,29.811868],[-101.547382,29.810716],[-101.550918,29.805714],[-101.552485,29.804233],[-101.554059,29.803422],[-101.565446,29.799911],[-101.567749,29.798727],[-101.573216,29.790334],[-101.574119,29.788222],[-101.574332,29.786482],[-101.57291,29.78338],[-101.572789,29.775757],[-101.572223,29.773319],[-101.573629,29.771304],[-101.575807,29.769319],[-101.57754,29.769074],[-101.578627,29.769703],[-101.580247,29.76966],[-101.586899,29.771124],[-101.588593,29.770746],[-101.589443,29.770875],[-101.595863,29.772207],[-101.59889,29.773827],[-101.603681,29.774399],[-101.606648,29.774113],[-101.615674,29.770412],[-101.617906,29.76993],[-101.620336,29.769814],[-101.625133,29.770988],[-101.6269,29.770762],[-101.628769,29.770025],[-101.63029,29.768335],[-101.632715,29.764265],[-101.632961,29.763013],[-101.632796,29.761638],[-101.633951,29.759802],[-101.635464,29.75836],[-101.637748,29.757437],[-101.640177,29.756918],[-101.642883,29.754548],[-101.644567,29.754233],[-101.646936,29.754565],[-101.650758,29.757093],[-101.652965,29.759911],[-101.653145,29.762195],[-101.654459,29.765121],[-101.656004,29.765888],[-101.657663,29.766235],[-101.659687,29.767411],[-101.660268,29.768971],[-101.661724,29.770857],[-101.662994,29.77106],[-101.66614,29.769926],[-101.670623,29.768928],[-101.673629,29.766458],[-101.674564,29.765232],[-101.674965,29.764158],[-101.675299,29.761084],[-101.677804,29.760292],[-101.680002,29.760198],[-101.68144,29.760784],[-101.684555,29.764381],[-101.686219,29.76859],[-101.689634,29.771035],[-101.690109,29.771051],[-101.693945,29.76893],[-101.698177,29.765672],[-101.702393,29.764605],[-101.706113,29.762861],[-101.707177,29.761793],[-101.708873,29.761642],[-101.710724,29.76202],[-101.712056,29.762777],[-101.712781,29.763668],[-101.714439,29.768456],[-101.717778,29.772535],[-101.718713,29.774738],[-101.71973,29.775738],[-101.72261,29.776247],[-101.724956,29.775897],[-101.726329,29.774152],[-101.728289,29.772685],[-101.731236,29.771415],[-101.733352,29.77118],[-101.736078,29.771862],[-101.738692,29.772985],[-101.739228,29.773535],[-101.739864,29.776207],[-101.741335,29.778278],[-101.744315,29.779195],[-101.74628,29.778141],[-101.748894,29.777549],[-101.753881,29.777327],[-101.754392,29.777527],[-101.755347,29.778984],[-101.756124,29.779583],[-101.758591,29.780331],[-101.760308,29.781702],[-101.762899,29.782125],[-101.764299,29.782736],[-101.7711,29.787512],[-101.773825,29.788675],[-101.777045,29.789251],[-101.780556,29.789376],[-101.782767,29.789321],[-101.7849,29.788648],[-101.785957,29.787409],[-101.785586,29.78416],[-101.785773,29.783247],[-101.787141,29.78084],[-101.788531,29.779272],[-101.790762,29.779496],[-101.794631,29.779134],[-101.799496,29.779218],[-101.805114,29.78035],[-101.808059,29.781594],[-101.81081,29.783627],[-101.813135,29.787207],[-101.813977,29.79233],[-101.813462,29.794412],[-101.806515,29.799296],[-101.805,29.801642],[-101.804919,29.802512],[-101.803976,29.802562],[-101.803613,29.803446],[-101.805745,29.80524],[-101.809739,29.807198],[-101.812516,29.809786],[-101.816284,29.81135],[-101.817777,29.811635],[-101.819986,29.811394],[-101.822559,29.810341],[-101.825062,29.808255],[-101.825608,29.807053],[-101.82583,29.80552],[-101.825533,29.803963],[-101.823966,29.800478],[-101.821851,29.798466],[-101.820306,29.79631],[-101.818694,29.7915],[-101.819289,29.790058],[-101.820422,29.788875],[-101.823656,29.787398],[-101.824844,29.787426],[-101.828671,29.788532],[-101.837595,29.793364],[-101.842932,29.798972],[-101.846922,29.802442],[-101.847406,29.803243],[-101.847159,29.804002],[-101.847353,29.80466],[-101.848948,29.806743],[-101.850726,29.807542],[-101.85272,29.807791],[-101.855862,29.807217],[-101.859472,29.803485],[-101.861087,29.802638],[-101.866502,29.798014],[-101.870297,29.795895],[-101.875772,29.793796],[-101.880588,29.79576],[-101.882451,29.793627],[-101.883984,29.793542],[-101.885185,29.794099],[-101.88816,29.796425],[-101.890511,29.79738],[-101.892883,29.797688],[-101.898696,29.798201],[-101.902729,29.798027],[-101.908795,29.798467],[-101.911595,29.79804],[-101.913966,29.796885],[-101.915723,29.795213],[-101.91742,29.79254],[-101.921707,29.78824],[-101.921428,29.787473],[-101.92225,29.786026],[-101.926637,29.783109],[-101.929323,29.782576],[-101.931675,29.784222],[-101.933061,29.78448],[-101.933528,29.785193],[-101.934174,29.787993],[-101.932541,29.789769],[-101.932672,29.793243],[-101.933806,29.797033],[-101.935606,29.799561],[-101.937595,29.800544],[-101.939329,29.800864],[-101.94386,29.800667],[-101.94589,29.801755],[-101.947566,29.800929],[-101.949642,29.798745],[-101.95409,29.795777],[-101.95548,29.795333],[-101.957515,29.795766],[-101.960968,29.797618],[-101.963377,29.800149],[-101.963342,29.801192],[-101.964012,29.803601],[-101.965465,29.805995],[-101.964717,29.809314],[-101.965435,29.810994],[-101.96674,29.812698],[-101.967677,29.813347],[-101.969615,29.813834],[-101.971005,29.813555],[-101.971783,29.814079],[-101.972232,29.815245],[-101.972838,29.815658],[-101.973974,29.815579],[-101.976264,29.81604],[-101.979137,29.815319],[-101.980779,29.815625],[-101.981567,29.81502],[-101.982795,29.811869],[-101.983052,29.809943],[-101.98296,29.808766],[-101.981725,29.806807],[-101.981808,29.806167],[-101.984303,29.799262],[-101.985445,29.797959],[-101.987305,29.796842],[-101.988607,29.796666],[-101.989796,29.79696],[-101.991032,29.797723],[-101.99299,29.800964],[-101.994147,29.804516],[-101.994724,29.805165],[-101.997021,29.806109],[-102.000656,29.805198],[-102.006007,29.801489],[-102.009659,29.800441],[-102.011603,29.799571],[-102.014465,29.797643],[-102.015227,29.797491],[-102.017928,29.798127],[-102.018412,29.798517],[-102.019847,29.801171],[-102.021906,29.802467],[-102.024555,29.802922],[-102.027436,29.801883],[-102.028424,29.80188],[-102.030684,29.802538],[-102.032571,29.803832],[-102.035818,29.804063],[-102.038758,29.803029],[-102.039827,29.802047],[-102.040732,29.800553],[-102.041189,29.799058],[-102.04093,29.797565],[-102.039462,29.794367],[-102.038736,29.793625],[-102.038386,29.792368],[-102.038626,29.791619],[-102.040385,29.790104],[-102.041418,29.789656],[-102.043783,29.790298],[-102.046293,29.78994],[-102.048289,29.788182],[-102.048605,29.787722],[-102.048787,29.786091],[-102.049652,29.785276],[-102.051958,29.784977],[-102.053162,29.785745],[-102.053765,29.786564],[-102.055001,29.78703],[-102.057891,29.786436],[-102.067455,29.786923],[-102.068434,29.786376],[-102.071246,29.787012],[-102.072046,29.786913],[-102.072618,29.786458],[-102.073187,29.786524],[-102.075668,29.788392],[-102.076317,29.790682],[-102.077109,29.792051],[-102.078982,29.793084],[-102.080596,29.792772],[-102.082058,29.79314],[-102.082475,29.793425],[-102.082784,29.794351],[-102.084379,29.795064],[-102.08863,29.793522],[-102.091149,29.793287],[-102.093567,29.791497],[-102.094678,29.791245],[-102.098732,29.792264],[-102.101383,29.793612],[-102.107362,29.79282],[-102.108782,29.791845],[-102.110895,29.792412],[-102.112266,29.793557],[-102.114196,29.793451],[-102.114766,29.792466],[-102.115706,29.792301],[-102.116723,29.793038],[-102.117916,29.796161],[-102.11773,29.797447],[-102.118365,29.79921],[-102.117141,29.800363],[-102.119754,29.802479],[-102.12361,29.801884],[-102.127641,29.798797],[-102.128904,29.79853],[-102.130461,29.798983],[-102.135562,29.801589],[-102.137847,29.802108],[-102.140769,29.802264],[-102.143566,29.80332],[-102.149206,29.810122],[-102.150893,29.811592],[-102.152059,29.811983],[-102.153207,29.811605],[-102.15561,29.812042],[-102.15789,29.813094],[-102.159796,29.814685],[-102.161279,29.818683],[-102.165745,29.823046],[-102.16583,29.824212],[-102.166445,29.825385],[-102.167666,29.826043],[-102.168603,29.82616],[-102.172682,29.825633],[-102.177527,29.825551],[-102.17956,29.82597],[-102.179964,29.826375],[-102.181305,29.83115],[-102.180008,29.833063],[-102.178437,29.836665],[-102.178509,29.839454],[-102.181131,29.844484],[-102.182281,29.845889],[-102.187027,29.848656],[-102.189394,29.848662],[-102.191655,29.846638],[-102.192469,29.845266],[-102.193254,29.842783],[-102.193357,29.839356],[-102.194201,29.837894],[-102.196086,29.836576],[-102.197642,29.836417],[-102.199614,29.83687],[-102.202257,29.839453],[-102.204561,29.840993],[-102.204987,29.841954],[-102.206645,29.843201],[-102.208021,29.843919],[-102.209938,29.844359],[-102.211834,29.844417],[-102.214598,29.84399],[-102.219797,29.840869],[-102.221853,29.840365],[-102.223528,29.84053],[-102.227891,29.843634],[-102.229466,29.845598],[-102.229973,29.847035],[-102.230857,29.847868],[-102.231791,29.848251],[-102.234142,29.848579],[-102.24138,29.847686],[-102.24383,29.848172],[-102.244892,29.848946],[-102.245319,29.850403],[-102.24494,29.852718],[-102.243225,29.858413],[-102.245307,29.863191],[-102.246458,29.864128],[-102.24831,29.864341],[-102.24917,29.864002],[-102.249775,29.863293],[-102.25055,29.861416],[-102.251604,29.859912],[-102.251891,29.858291],[-102.251294,29.856751],[-102.251491,29.855155],[-102.253178,29.853068],[-102.254581,29.852702],[-102.256398,29.852714],[-102.261495,29.853241],[-102.26348,29.854227],[-102.264269,29.85563],[-102.264278,29.857797],[-102.263161,29.861435],[-102.262134,29.862667],[-102.261882,29.86357],[-102.262081,29.864693],[-102.263134,29.866231],[-102.264842,29.867496],[-102.266758,29.868039],[-102.268995,29.867765],[-102.27404,29.864583],[-102.274764,29.863788],[-102.276591,29.862954],[-102.280892,29.862819],[-102.282359,29.863452],[-102.283305,29.864292],[-102.285828,29.870053],[-102.286875,29.871202],[-102.295871,29.87361],[-102.299707,29.877167],[-102.300558,29.877597],[-102.304401,29.877815],[-102.30954,29.877099],[-102.312298,29.877119],[-102.313741,29.87909],[-102.314818,29.879804],[-102.31594,29.879993],[-102.320272,29.879301],[-102.321186,29.878685],[-102.32434,29.873712],[-102.324739,29.872617],[-102.324602,29.87098],[-102.322711,29.86566],[-102.323463,29.863917],[-102.324856,29.863081],[-102.326905,29.862674],[-102.330758,29.86311],[-102.331931,29.862824],[-102.332642,29.863675],[-102.332949,29.865607],[-102.332801,29.867072],[-102.33331,29.868071],[-102.338298,29.868874],[-102.339382,29.869475],[-102.340921,29.869373],[-102.342185,29.868441],[-102.342113,29.866565],[-102.343091,29.865237],[-102.349678,29.862634],[-102.350207,29.861203],[-102.350245,29.857008],[-102.350854,29.854849],[-102.352272,29.852756],[-102.354553,29.851275],[-102.359135,29.850242],[-102.361236,29.84913],[-102.363355,29.847085],[-102.364557,29.845335],[-102.364491,29.843381],[-102.363956,29.841953],[-102.364202,29.841294],[-102.362445,29.835655],[-102.362407,29.834148],[-102.362929,29.831489],[-102.364255,29.829579],[-102.364503,29.828261],[-102.365832,29.825592],[-102.369643,29.820662],[-102.369627,29.819703],[-102.372084,29.813605],[-102.373195,29.807878],[-102.374339,29.806417],[-102.375752,29.802914],[-102.377512,29.799997],[-102.37782,29.797168],[-102.377361,29.794514],[-102.377471,29.791219],[-102.3772,29.789889],[-102.37896,29.788468],[-102.379379,29.787762],[-102.385189,29.785769],[-102.388554,29.78361],[-102.390044,29.781921],[-102.38951,29.780608],[-102.387263,29.778473],[-102.386586,29.777446],[-102.386234,29.774879],[-102.385408,29.773398],[-102.385039,29.771744],[-102.385028,29.770502],[-102.385455,29.769242],[-102.386961,29.76657],[-102.386854,29.765476],[-102.387347,29.76474],[-102.386361,29.762412],[-102.387227,29.761392],[-102.388323,29.761266],[-102.389679,29.76188],[-102.390299,29.762639],[-102.391791,29.7661],[-102.393428,29.768296],[-102.394807,29.769163],[-102.397619,29.769642],[-102.398924,29.769522],[-102.404537,29.765181],[-102.408183,29.765011],[-102.408976,29.764531],[-102.410639,29.765373],[-102.411973,29.768168],[-102.413289,29.768269],[-102.414934,29.769281],[-102.416032,29.769575],[-102.417545,29.769591],[-102.420082,29.768939],[-102.421474,29.769258],[-102.423119,29.770008],[-102.424043,29.771361],[-102.425922,29.7731],[-102.427012,29.773654],[-102.428494,29.773859],[-102.429474,29.774657],[-102.432281,29.775547],[-102.433666,29.776853],[-102.435636,29.776479],[-102.436597,29.775743],[-102.437271,29.774242],[-102.438272,29.773496],[-102.439297,29.773259],[-102.440787,29.773735],[-102.444578,29.776812],[-102.447382,29.777502],[-102.450082,29.777171],[-102.455006,29.77481],[-102.457692,29.774585],[-102.458889,29.775398],[-102.462194,29.78129],[-102.465453,29.78339],[-102.466268,29.783402],[-102.467487,29.78287],[-102.469728,29.780796],[-102.470649,29.779664],[-102.471314,29.777078],[-102.471994,29.776387],[-102.473233,29.776018],[-102.480665,29.776069],[-102.482285,29.777961],[-102.481345,29.780574],[-102.481271,29.781325],[-102.481772,29.782838],[-102.483565,29.784784],[-102.485665,29.785681],[-102.486377,29.786467],[-102.487252,29.786585],[-102.497987,29.781448],[-102.506048,29.78237],[-102.514939,29.784299],[-102.516551,29.784121],[-102.517616,29.78358],[-102.519186,29.780368],[-102.518382,29.778664],[-102.514571,29.775609],[-102.511517,29.774565],[-102.510727,29.773882],[-102.510727,29.771354],[-102.511765,29.769785],[-102.513103,29.769089],[-102.51329,29.768398],[-102.513,29.766569],[-102.513503,29.765439],[-102.514562,29.764994],[-102.520514,29.760739],[-102.523414,29.759546],[-102.527363,29.758426],[-102.534235,29.754938],[-102.540715,29.748069],[-102.543417,29.746505],[-102.546441,29.745769],[-102.547978,29.744644],[-102.550704,29.745191],[-102.551815,29.746039],[-102.553106,29.747873],[-102.554669,29.748728],[-102.555127,29.751329],[-102.554408,29.753769],[-102.555184,29.755862],[-102.557482,29.757877],[-102.55836,29.759096],[-102.560429,29.763718],[-102.56272,29.767509],[-102.563781,29.7684],[-102.564937,29.768772],[-102.565544,29.769628],[-102.565697,29.770928],[-102.567663,29.771463],[-102.56919,29.771455],[-102.570568,29.771005],[-102.571815,29.768964],[-102.573629,29.768202],[-102.574077,29.767358],[-102.574451,29.765969],[-102.573301,29.762486],[-102.57385,29.761631],[-102.572054,29.757189],[-102.572558,29.755885],[-102.573796,29.754896],[-102.576011,29.754691],[-102.576904,29.755119],[-102.578982,29.755417],[-102.580338,29.754991],[-102.582585,29.753522],[-102.582836,29.752958],[-102.58538,29.750897],[-102.589207,29.749069],[-102.591014,29.749093],[-102.591915,29.749514],[-102.592869,29.74914],[-102.594654,29.750699],[-102.595741,29.751211],[-102.597618,29.751415],[-102.599755,29.751229],[-102.604412,29.750155],[-102.606108,29.748858],[-102.609942,29.747785],[-102.612426,29.748272],[-102.61496,29.746654],[-102.617042,29.743449],[-102.62279,29.736339],[-102.62611,29.735418],[-102.629342,29.73531],[-102.63041,29.734181],[-102.631913,29.73427],[-102.634193,29.733805],[-102.638922,29.733932],[-102.639968,29.733628],[-102.645184,29.733839],[-102.651403,29.734765],[-102.653927,29.735509],[-102.656868,29.73516],[-102.660245,29.735629],[-102.664048,29.736667],[-102.667148,29.739129],[-102.667634,29.74015],[-102.66728,29.744164],[-102.667571,29.745099],[-102.668403,29.74593],[-102.669034,29.746106],[-102.67008,29.745684],[-102.672285,29.744363],[-102.673465,29.744732],[-102.673997,29.744574],[-102.675018,29.743969],[-102.677021,29.741523],[-102.678987,29.73402],[-102.681763,29.728073],[-102.68268,29.727291],[-102.683972,29.727311],[-102.685062,29.726867],[-102.686833,29.723774],[-102.687737,29.722753],[-102.689676,29.722098],[-102.690532,29.722673],[-102.691373,29.721372],[-102.691061,29.720751],[-102.690378,29.713829],[-102.690471,29.710091],[-102.690166,29.707308],[-102.689019,29.706036],[-102.689035,29.705038],[-102.690552,29.70355],[-102.694239,29.701104],[-102.695107,29.699989],[-102.697027,29.698776],[-102.698137,29.695637],[-102.698551,29.695545],[-102.699252,29.691254],[-102.6993,29.687269],[-102.699672,29.686287],[-102.699443,29.684999],[-102.696169,29.681927],[-102.695493,29.679914],[-102.693758,29.677785],[-102.693644,29.676685],[-102.696233,29.673129],[-102.696723,29.671958],[-102.698307,29.671634],[-102.70051,29.672561],[-102.704083,29.67134],[-102.706755,29.668474],[-102.708646,29.666987],[-102.709167,29.664874],[-102.711283,29.660467],[-102.712536,29.658694],[-102.715209,29.656405],[-102.718293,29.653998],[-102.721347,29.652607],[-102.722828,29.651427],[-102.724224,29.651143],[-102.72574,29.651417],[-102.725528,29.650051],[-102.724066,29.648515],[-102.724467,29.645844],[-102.725906,29.643242],[-102.729784,29.640652],[-102.73451,29.642143],[-102.736574,29.641825],[-102.737021,29.641496],[-102.736848,29.639834],[-102.741949,29.633193],[-102.742289,29.631978],[-102.741957,29.630319],[-102.741048,29.628712],[-102.74012,29.627782],[-102.739053,29.625557],[-102.738557,29.618176],[-102.738791,29.608828],[-102.739515,29.606392],[-102.740973,29.604509],[-102.741565,29.602828],[-102.741451,29.602069],[-102.739721,29.599925],[-102.740543,29.597499],[-102.743416,29.594876],[-102.74434,29.593559],[-102.746331,29.592648],[-102.749695,29.595085],[-102.753667,29.596245],[-102.756303,29.597598],[-102.760323,29.598603],[-102.761886,29.598643],[-102.765374,29.597757],[-102.768302,29.595209],[-102.768641,29.59468],[-102.768405,29.593334],[-102.765929,29.589527],[-102.763504,29.582012],[-102.762343,29.580548],[-102.762263,29.579751],[-102.763242,29.577818],[-102.763953,29.574747],[-102.764779,29.57334],[-102.766201,29.572206],[-102.767627,29.571798],[-102.768901,29.572743],[-102.769121,29.573303],[-102.770649,29.573838],[-102.77325,29.573674],[-102.773866,29.573124],[-102.773897,29.569659],[-102.773423,29.566865],[-102.774882,29.565136],[-102.7751,29.563722],[-102.776568,29.561809],[-102.777603,29.561377],[-102.777766,29.56098],[-102.777339,29.554749],[-102.775437,29.551588],[-102.773831,29.550371],[-102.77111,29.549031],[-102.771228,29.548397],[-102.773468,29.547184],[-102.776809,29.547055],[-102.778382,29.543592],[-102.780266,29.542466],[-102.783332,29.541918],[-102.789266,29.543679],[-102.789883,29.543672],[-102.791452,29.542824],[-102.792443,29.54177],[-102.793027,29.539946],[-102.792941,29.538837],[-102.791526,29.536016],[-102.792007,29.533004],[-102.792567,29.532444],[-102.795039,29.531237],[-102.79718,29.529398],[-102.798443,29.526667],[-102.803907,29.523954],[-102.80832,29.52293],[-102.808856,29.521198],[-102.808738,29.519948],[-102.807869,29.517554],[-102.806388,29.515381],[-102.807219,29.512826],[-102.806561,29.507012],[-102.807474,29.503851],[-102.806388,29.502887],[-102.805133,29.502497],[-102.804337,29.501177],[-102.804744,29.498785],[-102.807268,29.494295],[-102.806571,29.493594],[-102.805748,29.491436],[-102.804874,29.490353],[-102.803239,29.489082],[-102.802856,29.488396],[-102.801958,29.488233],[-102.800673,29.486235],[-102.80421,29.483716],[-102.808352,29.483305],[-102.810695,29.483816],[-102.812565,29.483636],[-102.814251,29.482398],[-102.814385,29.4799],[-102.815527,29.476004],[-102.815374,29.474444],[-102.814001,29.472408],[-102.813997,29.471401],[-102.815482,29.47116],[-102.816414,29.470522],[-102.817971,29.467113],[-102.82038,29.466009],[-102.822185,29.464558],[-102.823474,29.462581],[-102.823858,29.459955],[-102.825637,29.457945],[-102.825355,29.456072],[-102.825579,29.455463],[-102.823954,29.452112],[-102.821086,29.45189],[-102.819528,29.45072],[-102.822243,29.449123],[-102.823892,29.448806],[-102.825593,29.447421],[-102.829393,29.445884],[-102.831045,29.444254],[-102.830827,29.441028],[-102.831214,29.439933],[-102.831767,29.439391],[-102.831827,29.438652],[-102.831656,29.436532],[-102.830862,29.434353],[-102.830943,29.433879],[-102.832215,29.433393],[-102.83248,29.432431],[-102.830798,29.427879],[-102.829948,29.427277],[-102.828572,29.423584],[-102.826925,29.4177],[-102.828539,29.415518],[-102.830583,29.413967],[-102.831537,29.412082],[-102.833102,29.41114],[-102.833443,29.410498],[-102.833251,29.409291],[-102.832582,29.408445],[-102.826518,29.407563],[-102.826522,29.406341],[-102.825727,29.404186],[-102.826126,29.402962],[-102.825855,29.402544],[-102.824621,29.402603],[-102.823136,29.403425],[-102.819003,29.403599],[-102.813676,29.402326],[-102.812362,29.401443],[-102.812381,29.400525],[-102.813383,29.399085],[-102.815859,29.397016],[-102.82004,29.398348],[-102.825612,29.396946],[-102.826598,29.395941],[-102.829741,29.390769],[-102.83252,29.388922],[-102.83306,29.388086],[-102.834023,29.379056],[-102.834712,29.378492],[-102.837029,29.377894],[-102.84069,29.377641],[-102.84398,29.375749],[-102.845018,29.374441],[-102.844898,29.3696],[-102.845545,29.366937],[-102.845317,29.364732],[-102.842943,29.363004],[-102.841378,29.36272],[-102.840078,29.361851],[-102.839375,29.358922],[-102.843356,29.357775],[-102.845303,29.357699],[-102.849183,29.355921],[-102.856661,29.353603],[-102.859893,29.351771],[-102.862127,29.351343],[-102.872932,29.352259],[-102.875824,29.35358],[-102.876861,29.354711],[-102.877505,29.354891],[-102.880711,29.352639],[-102.884365,29.347946],[-102.884439,29.347412],[-102.88388,29.34599],[-102.882508,29.344603],[-102.880749,29.342088],[-102.879875,29.339148],[-102.880627,29.337185],[-102.881158,29.334315],[-102.884737,29.325995],[-102.88499,29.322133],[-102.88432,29.321197],[-102.88445,29.320678],[-102.88525,29.320147],[-102.886205,29.320316],[-102.887433,29.318755],[-102.887625,29.316783],[-102.888263,29.314836],[-102.887544,29.313217],[-102.887338,29.31163],[-102.890195,29.309472],[-102.892234,29.309499],[-102.893041,29.308907],[-102.893109,29.307473],[-102.892635,29.305885],[-102.890123,29.302415],[-102.888862,29.296517],[-102.88845,29.295832],[-102.888178,29.293359],[-102.889736,29.288748],[-102.890466,29.287978],[-102.891219,29.28739],[-102.894883,29.285956],[-102.896514,29.284831],[-102.897544,29.281992],[-102.89867,29.28073],[-102.899238,29.280456],[-102.901643,29.280659],[-102.902978,29.279225],[-102.903328,29.277842],[-102.903065,29.276081],[-102.902153,29.274644],[-102.900182,29.272783],[-102.899287,29.269092],[-102.902249,29.26482],[-102.903273,29.264681],[-102.905478,29.263623],[-102.906382,29.262055],[-102.906384,29.260083],[-102.905981,29.258269],[-102.904208,29.255471],[-102.903066,29.254335],[-102.900322,29.253964],[-102.898706,29.254424],[-102.896626,29.254114],[-102.89266,29.249172],[-102.887818,29.245796],[-102.884061,29.246173],[-102.88028,29.246066],[-102.880254,29.245505],[-102.879724,29.245176],[-102.874388,29.243552],[-102.871749,29.241776],[-102.871032,29.240706],[-102.871176,29.238767],[-102.870597,29.236109],[-102.870799,29.233949],[-102.871525,29.232744],[-102.871716,29.231719],[-102.868529,29.230365],[-102.866762,29.227744],[-102.866544,29.226258],[-102.867474,29.223883],[-102.873736,29.218868],[-102.877286,29.217087],[-102.877894,29.216334],[-102.878346,29.214056],[-102.878821,29.213627],[-102.882829,29.213003],[-102.884595,29.212207],[-102.885596,29.211116],[-102.890054,29.209959],[-102.890388,29.209332],[-102.891414,29.209424],[-102.895101,29.208521],[-102.897783,29.208636],[-102.899491,29.20946],[-102.900956,29.212364],[-102.903375,29.214712],[-102.905631,29.215826],[-102.907677,29.218136],[-102.90797,29.219155],[-102.908653,29.219663],[-102.912324,29.219418],[-102.914944,29.217476],[-102.916081,29.215743],[-102.916023,29.21196],[-102.91574,29.211213],[-102.913712,29.208907],[-102.912862,29.207554],[-102.912734,29.20673],[-102.913623,29.204384],[-102.913305,29.20256],[-102.914306,29.201082],[-102.914195,29.200143],[-102.917513,29.199294],[-102.918689,29.199349],[-102.918936,29.19903],[-102.918588,29.194186],[-102.918125,29.193007],[-102.917086,29.192235],[-102.917823,29.190887],[-102.9186,29.190515],[-102.919747,29.19076],[-102.924166,29.19344],[-102.925329,29.19376],[-102.932511,29.194735],[-102.934468,29.192997],[-102.935891,29.191119],[-102.937967,29.189429],[-102.937749,29.188534],[-102.938271,29.188198],[-102.939081,29.188151],[-102.939835,29.188551],[-102.940889,29.189939],[-102.941465,29.191735],[-102.942334,29.191852],[-102.943378,29.19141],[-102.944328,29.190599],[-102.945431,29.188905],[-102.945476,29.187915],[-102.944822,29.186724],[-102.945711,29.183075],[-102.946827,29.182432],[-102.947641,29.181083],[-102.949465,29.180493],[-102.950888,29.178162],[-102.950998,29.177385],[-102.950413,29.174442],[-102.950886,29.17362],[-102.952786,29.17394],[-102.954004,29.175201],[-102.954393,29.176485],[-102.955349,29.177904],[-102.957274,29.17904],[-102.958508,29.178827],[-102.962518,29.180176],[-102.966074,29.182575],[-102.968038,29.18274],[-102.973241,29.185657],[-102.975527,29.186298],[-102.97874,29.186433],[-102.981148,29.185738],[-102.983989,29.183994],[-102.986044,29.183219],[-102.989985,29.183472],[-102.991413,29.182061],[-102.992276,29.180603],[-102.994519,29.180013],[-102.995618,29.179291],[-102.996759,29.177729],[-102.997902,29.175119],[-102.998121,29.173769],[-102.996993,29.170479],[-102.995785,29.164008],[-102.995914,29.161134],[-102.996268,29.16022],[-102.999575,29.155897],[-103.002506,29.149959],[-103.008108,29.148382],[-103.008991,29.141378],[-103.008797,29.137569],[-103.011018,29.137052],[-103.012086,29.137179],[-103.014859,29.135347],[-103.015651,29.133995],[-103.015571,29.132715],[-103.01479,29.130614],[-103.013624,29.130236],[-103.012171,29.128703],[-103.011748,29.127465],[-103.012093,29.126187],[-103.013228,29.125265],[-103.014259,29.124978],[-103.016633,29.126204],[-103.016978,29.125925],[-103.018952,29.126148],[-103.020472,29.125628],[-103.02181,29.124745],[-103.022856,29.123505],[-103.023528,29.122048],[-103.02403,29.119753],[-103.025905,29.117387],[-103.027592,29.116021],[-103.02861,29.115509],[-103.032719,29.115168],[-103.034318,29.114294],[-103.035656,29.114222],[-103.037014,29.112901],[-103.036117,29.11078],[-103.032109,29.106827],[-103.032353,29.103832],[-103.033879,29.100972],[-103.036301,29.098872],[-103.039319,29.097044],[-103.041844,29.096108],[-103.045427,29.095427],[-103.047636,29.096032],[-103.049319,29.098013],[-103.054249,29.100798],[-103.05568,29.099654],[-103.056869,29.097723],[-103.05867,29.095814],[-103.061632,29.09425],[-103.064179,29.091476],[-103.066028,29.091437],[-103.068968,29.093488],[-103.069989,29.093708],[-103.071835,29.093015],[-103.073005,29.092199],[-103.075824,29.091537],[-103.078679,29.088079],[-103.07959,29.087946],[-103.080183,29.087437],[-103.07663,29.07977],[-103.077019,29.076017],[-103.079154,29.073564],[-103.083562,29.070849],[-103.087024,29.067887],[-103.087425,29.067108],[-103.085506,29.059961],[-103.085404,29.058383],[-103.085868,29.056633],[-103.085584,29.054645],[-103.0859,29.053736],[-103.088699,29.053729],[-103.089689,29.053352],[-103.090535,29.054098],[-103.090775,29.055541],[-103.091473,29.056981],[-103.091908,29.057256],[-103.092033,29.061644],[-103.091501,29.063523],[-103.09239,29.064704],[-103.094098,29.065121],[-103.09548,29.064727],[-103.096218,29.063845],[-103.096166,29.062595],[-103.096891,29.060768],[-103.097927,29.060477],[-103.100134,29.060675],[-103.100626,29.060323],[-103.100599,29.057835],[-103.100136,29.05718],[-103.09992,29.055613],[-103.100437,29.054716],[-103.100435,29.051375],[-103.101069,29.049301],[-103.103004,29.047598],[-103.105046,29.044468],[-103.105868,29.042454],[-103.106506,29.038179],[-103.10472,29.034205],[-103.103465,29.032661],[-103.100651,29.03091],[-103.097891,29.027174],[-103.097993,29.026264],[-103.099501,29.022201],[-103.101503,29.018099],[-103.103249,29.016353],[-103.10683,29.014704],[-103.108484,29.013329],[-103.112482,29.00761],[-103.113491,29.005643],[-103.116039,29.002552],[-103.117191,29.000484],[-103.117478,28.997774],[-103.116478,28.996298],[-103.115928,28.993401],[-103.115246,28.992024],[-103.114732,28.991623],[-103.113814,28.988604],[-103.114247,28.986642],[-103.11536,28.985398],[-103.116814,28.984416],[-103.118833,28.983709],[-103.121863,28.98445],[-103.123582,28.984301],[-103.125379,28.982439],[-103.127006,28.982056],[-103.129714,28.982734],[-103.131689,28.984045],[-103.132761,28.983652],[-103.134552,28.983755],[-103.135989,28.983371],[-103.139313,28.980552],[-103.144408,28.977467],[-103.151022,28.975448],[-103.1527,28.972656],[-103.153896,28.971606],[-103.154418,28.971547],[-103.155352,28.972044],[-103.156231,28.972981],[-103.160319,28.973844],[-103.163935,28.972204],[-103.166084,28.974397],[-103.166031,28.975598],[-103.165608,28.976548],[-103.165776,28.977496],[-103.166788,28.978513],[-103.170321,28.980422],[-103.172436,28.980694],[-103.174459,28.977795],[-103.176281,28.977804],[-103.176755,28.978069],[-103.178373,28.980824],[-103.180842,28.982398],[-103.190822,28.984163],[-103.191639,28.983946],[-103.198843,28.985872],[-103.200557,28.986777],[-103.202412,28.987195],[-103.203834,28.98723],[-103.206289,28.986575],[-103.207759,28.986547],[-103.212275,28.987622],[-103.214782,28.987726],[-103.218981,28.985652],[-103.219848,28.983318],[-103.220731,28.983601],[-103.221594,28.984368],[-103.225548,28.989978],[-103.227888,28.991857],[-103.229378,28.990301],[-103.229338,28.98981],[-103.229913,28.988935],[-103.231555,28.98738],[-103.236191,28.984622],[-103.236285,28.983683],[-103.237635,28.981862],[-103.238976,28.981331],[-103.250416,28.98043],[-103.251189,28.981735],[-103.251242,28.983247],[-103.251971,28.985348],[-103.253393,28.987019],[-103.25526,28.988474],[-103.256747,28.989028],[-103.259317,28.99068],[-103.259512,28.991643],[-103.262216,28.99349],[-103.266333,28.995981],[-103.267334,28.996072],[-103.269359,28.993309],[-103.26993,28.991105],[-103.269844,28.989268],[-103.271386,28.985362],[-103.274447,28.981581],[-103.27796,28.979176],[-103.279338,28.977002],[-103.281773,28.976641],[-103.285083,28.977491],[-103.286241,28.978211],[-103.286986,28.978172],[-103.288163,28.979382],[-103.288305,28.981385],[-103.284996,28.982084],[-103.283009,28.982971],[-103.282293,28.98449],[-103.281553,28.987696],[-103.281918,28.989638],[-103.284675,28.996976],[-103.28616,29.000258],[-103.286941,29.001273],[-103.288116,29.002409],[-103.29056,29.00315],[-103.293941,29.00492],[-103.295666,29.006399],[-103.298981,29.006678],[-103.300422,29.00821],[-103.301662,29.008426],[-103.304671,29.00652],[-103.306798,29.004194],[-103.308664,29.003426],[-103.310067,29.004085],[-103.313765,29.006987],[-103.314955,29.008449],[-103.316162,29.010689],[-103.316318,29.011581],[-103.316,29.011994],[-103.312748,29.012963],[-103.311219,29.013978],[-103.308628,29.01786],[-103.30778,29.019455],[-103.30671,29.022775],[-103.306735,29.023401],[-103.307657,29.024537],[-103.309141,29.025484],[-103.311237,29.026076],[-103.314341,29.026064],[-103.315208,29.025593],[-103.315881,29.024217],[-103.31859,29.02194],[-103.320921,29.019103],[-103.324815,29.016847],[-103.326359,29.016315],[-103.332551,29.01659],[-103.336486,29.018315],[-103.338751,29.020277],[-103.340695,29.023641],[-103.34201,29.028436],[-103.34021,29.028641],[-103.33796,29.027471],[-103.336108,29.027396],[-103.333589,29.028956],[-103.33011,29.029534],[-103.327248,29.032721],[-103.327696,29.034044],[-103.327122,29.038269],[-103.327492,29.039924],[-103.328702,29.041559],[-103.330613,29.043219],[-103.333972,29.043991],[-103.3367,29.043394],[-103.339281,29.043704],[-103.340758,29.045209],[-103.342294,29.046168],[-103.343678,29.046369],[-103.344334,29.04595],[-103.344901,29.045161],[-103.345868,29.042459],[-103.347802,29.040259],[-103.349144,29.036853],[-103.350528,29.028914],[-103.352595,29.026401],[-103.353504,29.022892],[-103.353901,29.022225],[-103.355608,29.020883],[-103.359603,29.018644],[-103.361934,29.01869],[-103.366763,29.020227],[-103.374597,29.023703],[-103.375829,29.02383],[-103.376512,29.023213],[-103.377277,29.023183],[-103.382961,29.024512],[-103.384568,29.023933],[-103.385637,29.022208],[-103.386505,29.021648],[-103.387384,29.022245],[-103.38812,29.023798],[-103.38705,29.027461],[-103.387745,29.033023],[-103.388644,29.033974],[-103.392261,29.034955],[-103.393013,29.034599],[-103.394142,29.033145],[-103.394982,29.032575],[-103.399365,29.03125],[-103.40105,29.031056],[-103.401917,29.031452],[-103.402448,29.032127],[-103.402785,29.03385],[-103.403442,29.034476],[-103.404323,29.036493],[-103.404332,29.038874],[-103.405079,29.039577],[-103.408339,29.039738],[-103.410968,29.038842],[-103.411883,29.038126],[-103.415414,29.037881],[-103.417396,29.041061],[-103.418999,29.042324],[-103.423557,29.043487],[-103.427601,29.042164],[-103.432095,29.043356],[-103.432072,29.043944],[-103.430677,29.044938],[-103.431126,29.04599],[-103.429584,29.047006],[-103.428869,29.047918],[-103.428894,29.049455],[-103.429895,29.050337],[-103.433707,29.052198],[-103.435125,29.055216],[-103.435111,29.05561],[-103.433987,29.056899],[-103.434221,29.057287],[-103.435494,29.057829],[-103.438396,29.058186],[-103.439546,29.057542],[-103.441077,29.0579],[-103.442269,29.058532],[-103.446978,29.062334],[-103.449667,29.065092],[-103.450019,29.065734],[-103.450246,29.068457],[-103.450614,29.06892],[-103.450319,29.071172],[-103.449548,29.07219],[-103.44993,29.072714],[-103.454046,29.072294],[-103.459023,29.072704],[-103.461694,29.072604],[-103.462307,29.07211],[-103.462228,29.071425],[-103.459097,29.068174],[-103.459684,29.067048],[-103.460935,29.067388],[-103.462596,29.067302],[-103.465878,29.066646],[-103.467094,29.066079],[-103.468483,29.066003],[-103.470107,29.066194],[-103.47135,29.066727],[-103.472151,29.06771],[-103.472618,29.067794],[-103.47393,29.070315],[-103.471289,29.075064],[-103.470039,29.079182],[-103.469743,29.08107],[-103.469936,29.085317],[-103.470348,29.085738],[-103.471448,29.085878],[-103.476202,29.087812],[-103.475257,29.090315],[-103.475558,29.091003],[-103.476495,29.091671],[-103.476955,29.091732],[-103.477283,29.091276],[-103.478551,29.091253],[-103.480683,29.091697],[-103.483406,29.093496],[-103.486453,29.097109],[-103.4897,29.101891],[-103.492351,29.104729],[-103.493639,29.107953],[-103.494612,29.108419],[-103.497562,29.108245],[-103.498762,29.108539],[-103.500165,29.110386],[-103.499763,29.114778],[-103.500377,29.116196],[-103.500934,29.116536],[-103.503233,29.115732],[-103.505884,29.116048],[-103.507822,29.117048],[-103.508321,29.118418],[-103.510674,29.120374],[-103.512852,29.121255],[-103.515261,29.121317],[-103.516854,29.120279],[-103.51987,29.119676],[-103.521535,29.119996],[-103.523855,29.121247],[-103.523959,29.122794],[-103.523297,29.129033],[-103.523849,29.131681],[-103.523772,29.133079],[-103.523029,29.133596],[-103.522804,29.134646],[-103.523378,29.136021],[-103.524835,29.137123],[-103.527249,29.138337],[-103.528424,29.139474],[-103.531739,29.140543],[-103.535085,29.142795],[-103.538212,29.144133],[-103.539806,29.146224],[-103.542237,29.145869],[-103.544671,29.144837],[-103.546375,29.143807],[-103.547616,29.142394],[-103.548444,29.142382],[-103.550211,29.143639],[-103.55238,29.146202],[-103.552965,29.148656],[-103.552055,29.151563],[-103.550081,29.153613],[-103.550372,29.155512],[-103.551315,29.156668],[-103.553692,29.157996],[-103.554482,29.15774],[-103.556108,29.155989],[-103.55702,29.155451],[-103.561401,29.1553],[-103.565417,29.154163],[-103.566214,29.154772],[-103.568876,29.155316],[-103.571962,29.154113],[-103.573684,29.153823],[-103.576078,29.1514],[-103.577319,29.150986],[-103.578073,29.150126],[-103.580009,29.149524],[-103.582856,29.149389],[-103.584486,29.150013],[-103.587444,29.150391],[-103.5911,29.150472],[-103.592241,29.150069],[-103.594581,29.151331],[-103.596132,29.151701],[-103.597147,29.153888],[-103.598293,29.154483],[-103.600418,29.157227],[-103.600667,29.15796],[-103.603182,29.158097],[-103.606179,29.160275],[-103.608875,29.164799],[-103.612231,29.165369],[-103.618985,29.163261],[-103.62218,29.162954],[-103.624631,29.163261],[-103.628384,29.163067],[-103.630188,29.162102],[-103.631319,29.15978],[-103.633657,29.15858],[-103.63483,29.158821],[-103.63759,29.160531],[-103.63976,29.161202],[-103.640745,29.161142],[-103.646174,29.158996],[-103.647564,29.157103],[-103.649178,29.156529],[-103.650586,29.15648],[-103.651676,29.157206],[-103.651975,29.157907],[-103.651903,29.159331],[-103.651109,29.159864],[-103.65062,29.160824],[-103.651287,29.161978],[-103.65305,29.162823],[-103.653633,29.163417],[-103.655264,29.166413],[-103.656141,29.167389],[-103.655984,29.167902],[-103.656712,29.16936],[-103.659619,29.170569],[-103.661164,29.171005],[-103.664632,29.170937],[-103.66783,29.173145],[-103.669307,29.173652],[-103.673492,29.173247],[-103.67774,29.173883],[-103.682553,29.176275],[-103.68461,29.176062],[-103.68628,29.176347],[-103.687771,29.178108],[-103.688568,29.17857],[-103.690233,29.178408],[-103.693611,29.177217],[-103.698164,29.177473],[-103.700317,29.178434],[-103.700241,29.179362],[-103.700649,29.180346],[-103.702553,29.182566],[-103.703295,29.184041],[-103.705162,29.184968],[-103.706013,29.184846],[-103.707345,29.183713],[-103.708965,29.185259],[-103.711134,29.184677],[-103.711747,29.185239],[-103.712958,29.185222],[-103.714438,29.184272],[-103.71546,29.182076],[-103.715559,29.181102],[-103.716618,29.180591],[-103.718561,29.180826],[-103.71918,29.181395],[-103.720121,29.18431],[-103.721656,29.186636],[-103.722843,29.189167],[-103.724947,29.191986],[-103.726213,29.192581],[-103.728725,29.192885],[-103.72961,29.194638],[-103.729457,29.196745],[-103.729792,29.197428],[-103.730779,29.198273],[-103.733892,29.199676],[-103.737055,29.201861],[-103.739187,29.20411],[-103.741098,29.207713],[-103.742545,29.20901],[-103.742646,29.210583],[-103.742216,29.213515],[-103.742318,29.213927],[-103.743086,29.214445],[-103.743182,29.215082],[-103.741102,29.217573],[-103.740875,29.218785],[-103.740924,29.219424],[-103.742246,29.221694],[-103.743459,29.22212],[-103.747629,29.220171],[-103.752874,29.219486],[-103.756362,29.219937],[-103.757365,29.220668],[-103.757657,29.223098],[-103.754878,29.225013],[-103.754261,29.22689],[-103.755117,29.228725],[-103.757395,29.231176],[-103.758549,29.232939],[-103.760166,29.23352],[-103.762782,29.232748],[-103.768393,29.227578],[-103.768508,29.226673],[-103.76753,29.22583],[-103.767533,29.225089],[-103.768831,29.222896],[-103.769706,29.220224],[-103.771574,29.219348],[-103.775086,29.220136],[-103.776698,29.220054],[-103.777147,29.220509],[-103.777534,29.222994],[-103.777955,29.223806],[-103.779874,29.225923],[-103.780692,29.226518],[-103.781443,29.226591],[-103.782029,29.227264],[-103.780591,29.236185],[-103.78073,29.238034],[-103.781489,29.239035],[-103.781681,29.241278],[-103.780716,29.243822],[-103.776733,29.243273],[-103.776253,29.243465],[-103.775916,29.244112],[-103.776089,29.245319],[-103.775072,29.247954],[-103.775542,29.248947],[-103.778477,29.252039],[-103.778807,29.253468],[-103.778732,29.256131],[-103.779969,29.257697],[-103.783626,29.265324],[-103.788613,29.265379],[-103.790566,29.264048],[-103.790909,29.26341],[-103.793487,29.262214],[-103.796176,29.259486],[-103.799364,29.258437],[-103.806369,29.261089],[-103.806945,29.2619],[-103.806782,29.264043],[-103.808879,29.265433],[-103.809173,29.265939],[-103.807612,29.270159],[-103.809396,29.272713],[-103.810111,29.27305],[-103.812178,29.273084],[-103.813517,29.274032],[-103.816142,29.273129],[-103.820753,29.270527],[-103.822634,29.270495],[-103.826207,29.269203],[-103.829628,29.271313],[-103.832317,29.27143],[-103.832511,29.271819],[-103.833772,29.272455],[-103.835491,29.272687],[-103.836956,29.274169],[-103.837348,29.276139],[-103.836708,29.277225],[-103.837638,29.278252],[-103.8423,29.278514],[-103.843887,29.27952],[-103.845589,29.279891],[-103.846985,29.279538],[-103.849315,29.279853],[-103.854307,29.281472],[-103.857412,29.281661],[-103.859373,29.280442],[-103.861384,29.280025],[-103.863178,29.279197],[-103.863876,29.279755],[-103.864546,29.281315],[-103.865763,29.282155],[-103.868945,29.280648],[-103.870076,29.280684],[-103.872515,29.283116],[-103.88012,29.285149],[-103.884487,29.284698],[-103.885689,29.28349],[-103.885637,29.282536],[-103.885239,29.282074],[-103.885624,29.281296],[-103.887584,29.279494],[-103.889395,29.278824],[-103.891972,29.280286],[-103.892863,29.281142],[-103.893164,29.281938],[-103.895921,29.284027],[-103.8986,29.287074],[-103.899292,29.28741],[-103.902212,29.28742],[-103.902886,29.286956],[-103.904609,29.286773],[-103.908867,29.284674],[-103.912078,29.283744],[-103.918887,29.284844],[-103.919116,29.285506],[-103.91894,29.286278],[-103.91769,29.288213],[-103.918288,29.28982],[-103.919703,29.291111],[-103.922755,29.292473],[-103.923667,29.29356],[-103.92572,29.294372],[-103.930071,29.293604],[-103.933679,29.293486],[-103.937011,29.292712],[-103.943774,29.295099],[-103.946333,29.294969],[-103.949239,29.295485],[-103.950033,29.295347],[-103.950861,29.296563],[-103.952194,29.297616],[-103.95456,29.296713],[-103.956082,29.297457],[-103.958146,29.297573],[-103.961152,29.298684],[-103.963476,29.298334],[-103.964806,29.298488],[-103.965995,29.298834],[-103.967648,29.300029],[-103.968397,29.29974],[-103.969694,29.297397],[-103.970834,29.296556],[-103.972294,29.295996],[-103.975808,29.296249],[-103.978094,29.297373],[-103.983342,29.299175],[-103.985491,29.301211],[-103.987869,29.301814],[-103.991659,29.303807],[-103.992867,29.304255],[-104.000678,29.305337],[-104.003356,29.306965],[-104.008177,29.308132],[-104.009118,29.30894],[-104.010806,29.309349],[-104.016238,29.312139],[-104.019398,29.311851],[-104.020218,29.312048],[-104.02746,29.315567],[-104.02873,29.315796],[-104.030258,29.3171],[-104.031571,29.317159],[-104.03434,29.318689],[-104.037497,29.319707],[-104.038307,29.32025],[-104.03919,29.321756],[-104.041354,29.32269],[-104.045958,29.325611],[-104.047069,29.325836],[-104.049672,29.327384],[-104.051147,29.327763],[-104.055165,29.330442],[-104.056691,29.333265],[-104.056141,29.336443],[-104.055523,29.337021],[-104.0561,29.337727],[-104.05936,29.338194],[-104.06219,29.339314],[-104.063717,29.34055],[-104.066746,29.341005],[-104.068873,29.342308],[-104.069302,29.34335],[-104.071222,29.344649],[-104.072332,29.34611],[-104.073532,29.346557],[-104.074428,29.346331],[-104.074774,29.345658],[-104.075779,29.345136],[-104.077902,29.345278],[-104.078839,29.345653],[-104.080379,29.345375],[-104.082256,29.346064],[-104.086172,29.350431],[-104.088109,29.351309],[-104.089244,29.352484],[-104.090909,29.353528],[-104.0909,29.353971],[-104.089487,29.355929],[-104.090092,29.35672],[-104.0895,29.357989],[-104.090025,29.359221],[-104.091208,29.359913],[-104.092264,29.359904],[-104.093671,29.360372],[-104.094475,29.361179],[-104.097754,29.361642],[-104.098207,29.363147],[-104.09774,29.365185],[-104.098201,29.366547],[-104.099495,29.367242],[-104.100925,29.367465],[-104.102991,29.370312],[-104.106579,29.373313],[-104.10956,29.374085],[-104.113371,29.373623],[-104.11511,29.372896],[-104.117715,29.370661],[-104.121318,29.371423],[-104.121707,29.372661],[-104.121741,29.377445],[-104.122289,29.379352],[-104.122941,29.380306],[-104.123215,29.380484],[-104.125974,29.379447],[-104.126923,29.378358],[-104.127979,29.37825],[-104.129447,29.378589],[-104.130758,29.379259],[-104.131422,29.379979],[-104.130909,29.381327],[-104.131383,29.382346],[-104.133266,29.383677],[-104.134919,29.38422],[-104.136329,29.383911],[-104.137809,29.382655],[-104.137918,29.381416],[-104.137285,29.379933],[-104.138199,29.378564],[-104.141158,29.377823],[-104.142158,29.378607],[-104.143202,29.382424],[-104.143152,29.383322],[-104.142481,29.384593],[-104.142424,29.386098],[-104.143339,29.388268],[-104.143787,29.388371],[-104.144455,29.387956],[-104.146438,29.385425],[-104.148373,29.385101],[-104.150158,29.385897],[-104.151519,29.387738],[-104.152045,29.388911],[-104.15131,29.390509],[-104.151568,29.391542],[-104.155195,29.394569],[-104.155981,29.394609],[-104.156569,29.393936],[-104.156343,29.39081],[-104.157393,29.390267],[-104.160378,29.389828],[-104.161553,29.390411],[-104.16232,29.391632],[-104.165004,29.392722],[-104.167443,29.394744],[-104.16843,29.396489],[-104.166697,29.398621],[-104.165376,29.399052],[-104.164691,29.399645],[-104.164512,29.400955],[-104.164771,29.401517],[-104.166089,29.402038],[-104.167484,29.401514],[-104.168508,29.401507],[-104.170364,29.402646],[-104.171133,29.40378],[-104.171068,29.404351],[-104.170257,29.406387],[-104.169391,29.407332],[-104.169674,29.408161],[-104.170605,29.408914],[-104.173757,29.410108],[-104.175938,29.40928],[-104.17755,29.409553],[-104.179438,29.4104],[-104.180136,29.411528],[-104.180058,29.413176],[-104.180407,29.41447],[-104.182306,29.415105],[-104.183889,29.4172],[-104.182824,29.421429],[-104.181504,29.421613],[-104.180901,29.422575],[-104.180792,29.425861],[-104.181065,29.42646],[-104.182306,29.427531],[-104.186114,29.428298],[-104.188881,29.432115],[-104.192924,29.43527],[-104.193603,29.436121],[-104.192823,29.439248],[-104.193109,29.440295],[-104.194142,29.441678],[-104.197548,29.442773],[-104.2006,29.444793],[-104.203656,29.445534],[-104.204189,29.446422],[-104.206225,29.446803],[-104.207846,29.448128],[-104.210077,29.448843],[-104.211166,29.449755],[-104.212023,29.451726],[-104.212899,29.452582],[-104.215641,29.454081],[-104.217705,29.456559],[-104.218262,29.458175],[-104.213583,29.461528],[-104.212433,29.464928],[-104.212914,29.467508],[-104.210808,29.471753],[-104.210954,29.476918],[-104.208923,29.480732],[-104.209153,29.481468],[-104.210044,29.482243],[-104.21169,29.482842],[-104.2129,29.484087],[-104.214147,29.484638],[-104.215529,29.484763],[-104.219669,29.48317],[-104.221539,29.483046],[-104.22347,29.482285],[-104.22524,29.482036],[-104.226724,29.48114],[-104.227521,29.480022],[-104.230698,29.478669],[-104.23221,29.481284],[-104.233523,29.485628],[-104.233904,29.487909],[-104.233219,29.491339],[-104.23382,29.493654],[-104.235005,29.495777],[-104.237134,29.497556],[-104.237968,29.497844],[-104.240317,29.49739],[-104.244623,29.500112],[-104.247178,29.502781],[-104.249505,29.504404],[-104.254295,29.506711],[-104.258305,29.506104],[-104.260659,29.506671],[-104.261441,29.507409],[-104.262034,29.509002],[-104.262278,29.510204],[-104.261301,29.510958],[-104.261243,29.511548],[-104.262175,29.513501],[-104.2657,29.514181],[-104.26885,29.513582],[-104.270482,29.514567],[-104.270773,29.515564],[-104.272244,29.516349],[-104.274246,29.516331],[-104.276481,29.517013],[-104.27773,29.516919],[-104.282072,29.517492],[-104.284827,29.518892],[-104.286621,29.518469],[-104.287098,29.51882],[-104.291929,29.519455],[-104.292436,29.519776],[-104.292703,29.520449],[-104.292874,29.521612],[-104.292571,29.52168],[-104.292895,29.52229],[-104.294195,29.523209],[-104.296789,29.524128],[-104.302801,29.524256],[-104.309184,29.523268],[-104.311475,29.523202],[-104.311696,29.524423],[-104.310631,29.526574],[-104.310946,29.528792],[-104.313114,29.531651],[-104.315476,29.532754],[-104.317925,29.532356],[-104.320896,29.529539],[-104.32051,29.527066],[-104.320618,29.524068],[-104.321486,29.521862],[-104.32248,29.521901],[-104.324095,29.522935],[-104.326598,29.523282],[-104.330727,29.522656],[-104.332533,29.521319],[-104.332769,29.520381],[-104.334553,29.519412],[-104.336221,29.519333],[-104.338201,29.520182],[-104.347405,29.526236],[-104.350243,29.527677],[-104.352684,29.529691],[-104.357532,29.5324],[-104.362498,29.535885],[-104.370421,29.543141],[-104.373135,29.5438],[-104.375044,29.543748],[-104.378932,29.542103],[-104.380531,29.542637],[-104.381563,29.543369],[-104.386143,29.548175],[-104.392374,29.553958],[-104.394268,29.55518],[-104.394913,29.556527],[-104.39391,29.558432],[-104.393893,29.559694],[-104.394905,29.561206],[-104.395859,29.564045],[-104.397269,29.566423],[-104.39744,29.567391],[-104.396925,29.568369],[-104.396928,29.5695],[-104.397543,29.570749],[-104.398921,29.571897],[-104.404747,29.575677],[-104.418129,29.583272],[-104.429355,29.590244],[-104.452025,29.603525],[-104.454848,29.605808],[-104.455262,29.607083],[-104.456369,29.608734],[-104.457436,29.609213],[-104.460726,29.608948],[-104.462952,29.609586],[-104.463819,29.61024],[-104.464867,29.61008],[-104.465508,29.609049],[-104.466549,29.609216],[-104.467582,29.611236],[-104.467591,29.612938],[-104.466666,29.614624],[-104.465816,29.614903],[-104.46543,29.615525],[-104.465619,29.617118],[-104.465397,29.618209],[-104.466387,29.618934],[-104.468495,29.619067],[-104.471787,29.61836],[-104.472807,29.617732],[-104.473404,29.617887],[-104.474142,29.619472],[-104.47415,29.621494],[-104.474752,29.623626],[-104.476049,29.624866],[-104.47647,29.626011],[-104.476428,29.626756],[-104.47581,29.62737],[-104.475991,29.627979],[-104.477326,29.628619],[-104.483292,29.627631],[-104.486141,29.628658],[-104.487391,29.630918],[-104.486961,29.63298],[-104.487179,29.633691],[-104.487822,29.634024],[-104.49006,29.633939],[-104.491696,29.634284],[-104.494934,29.633826],[-104.495303,29.634971],[-104.49675,29.635741],[-104.496752,29.637819],[-104.496266,29.638296],[-104.496231,29.639049],[-104.498003,29.639695],[-104.501832,29.638425],[-104.502646,29.637271],[-104.503199,29.637057],[-104.504055,29.637025],[-104.505123,29.63757],[-104.506923,29.637011],[-104.507152,29.63667],[-104.50692,29.635955],[-104.505749,29.634722],[-104.505633,29.634044],[-104.507124,29.632349],[-104.507659,29.632278],[-104.508462,29.632697],[-104.510223,29.635223],[-104.512756,29.63703],[-104.514031,29.63863],[-104.513982,29.639762],[-104.515589,29.640282],[-104.515891,29.640963],[-104.51532,29.641582],[-104.513934,29.640842],[-104.513194,29.640906],[-104.512447,29.641873],[-104.512893,29.642612],[-104.512636,29.643126],[-104.511663,29.643571],[-104.510101,29.643295],[-104.509878,29.644213],[-104.510684,29.645492],[-104.512001,29.645637],[-104.51243,29.646717],[-104.513745,29.646456],[-104.515423,29.647216],[-104.517107,29.647066],[-104.517597,29.647391],[-104.518466,29.64915],[-104.517059,29.650193],[-104.517245,29.651809],[-104.516594,29.652102],[-104.516581,29.65242],[-104.517203,29.653203],[-104.518476,29.653492],[-104.519408,29.654124],[-104.519964,29.655353],[-104.52189,29.656976],[-104.522269,29.658089],[-104.524112,29.658582],[-104.524682,29.659236],[-104.525263,29.661987],[-104.524785,29.665043],[-104.52498,29.665974],[-104.525686,29.667053],[-104.525227,29.667412],[-104.525397,29.667843],[-104.526176,29.668021],[-104.527766,29.667337],[-104.528224,29.667422],[-104.528875,29.668413],[-104.528427,29.669452],[-104.528614,29.669792],[-104.530116,29.670632],[-104.531202,29.670775],[-104.532283,29.670419],[-104.533386,29.668673],[-104.532599,29.667777],[-104.532656,29.667178],[-104.533616,29.666349],[-104.535575,29.666553],[-104.536415,29.667777],[-104.535184,29.672254],[-104.535864,29.674354],[-104.53887,29.677849],[-104.540337,29.678919],[-104.541277,29.679123],[-104.542387,29.679939],[-104.542604,29.680441],[-104.54388,29.680375],[-104.544099,29.680693],[-104.543842,29.682182],[-104.542273,29.684086],[-104.540617,29.684831],[-104.537724,29.684495],[-104.534299,29.685852],[-104.530824,29.688393],[-104.530119,29.690027],[-104.53021,29.690464],[-104.530624,29.691072],[-104.531709,29.69172],[-104.534217,29.692623],[-104.536095,29.692997],[-104.537053,29.692861],[-104.543832,29.696299],[-104.544181,29.697114],[-104.543561,29.697512],[-104.543607,29.697832],[-104.545123,29.69829],[-104.545932,29.699909],[-104.54453,29.70177],[-104.543382,29.704039],[-104.543829,29.705103],[-104.545075,29.706339],[-104.545221,29.707363],[-104.546163,29.708475],[-104.54625,29.708999],[-104.545761,29.709897],[-104.544023,29.710311],[-104.543909,29.711189],[-104.544559,29.712742],[-104.545451,29.713758],[-104.54672,29.713752],[-104.547535,29.714252],[-104.545009,29.715247],[-104.544881,29.716098],[-104.545599,29.717043],[-104.546358,29.717122],[-104.547143,29.717663],[-104.547662,29.717627],[-104.549997,29.71617],[-104.55167,29.716413],[-104.552287,29.717342],[-104.551344,29.719204],[-104.549998,29.719425],[-104.549159,29.720175],[-104.54912,29.720773],[-104.552155,29.722754],[-104.552448,29.723707],[-104.552041,29.725074],[-104.549549,29.726569],[-104.548905,29.72746],[-104.54892,29.728723],[-104.549546,29.729745],[-104.549326,29.730571],[-104.550063,29.731269],[-104.552666,29.731941],[-104.5536,29.731184],[-104.554129,29.73112],[-104.555149,29.731191],[-104.556248,29.731811],[-104.556507,29.733132],[-104.555668,29.734584],[-104.556393,29.735488],[-104.558611,29.734793],[-104.560435,29.735188],[-104.560246,29.736707],[-104.558934,29.73806],[-104.556416,29.737768],[-104.555716,29.738078],[-104.555368,29.73779],[-104.553997,29.738707],[-104.552562,29.738368],[-104.551154,29.738847],[-104.550955,29.738145],[-104.550327,29.738008],[-104.550058,29.738234],[-104.550382,29.739614],[-104.549848,29.740895],[-104.550401,29.741194],[-104.551559,29.740653],[-104.551339,29.74129],[-104.551859,29.742062],[-104.553877,29.743054],[-104.55439,29.742774],[-104.554482,29.742102],[-104.55539,29.741871],[-104.556698,29.744358],[-104.556624,29.744888],[-104.557144,29.745474],[-104.557932,29.745784],[-104.559343,29.745688],[-104.560036,29.74721],[-104.56195,29.747538],[-104.565165,29.74989],[-104.568838,29.751465],[-104.569941,29.752597],[-104.570182,29.754276],[-104.569299,29.756111],[-104.569614,29.757089],[-104.569011,29.757414],[-104.568481,29.756821],[-104.567887,29.756697],[-104.567118,29.757062],[-104.566577,29.75827],[-104.565661,29.759208],[-104.565942,29.759501],[-104.566817,29.759448],[-104.566892,29.760092],[-104.565732,29.76028],[-104.563883,29.761283],[-104.564194,29.761747],[-104.565164,29.761442],[-104.565812,29.761859],[-104.566246,29.762853],[-104.566158,29.765131],[-104.566513,29.765451],[-104.568207,29.765744],[-104.568517,29.766177],[-104.567841,29.767389],[-104.566468,29.768323],[-104.565573,29.769381],[-104.565929,29.771468],[-104.568451,29.773842],[-104.569089,29.775457],[-104.5703,29.77692],[-104.570473,29.778342],[-104.571446,29.778868],[-104.572252,29.778828],[-104.572538,29.779796],[-104.573218,29.78021],[-104.573668,29.780159],[-104.574082,29.779508],[-104.57441,29.779601],[-104.57426,29.781087],[-104.574714,29.781788],[-104.577197,29.782091],[-104.578921,29.782835],[-104.57899,29.784724],[-104.578603,29.785293],[-104.57895,29.786842],[-104.578234,29.787779],[-104.579926,29.788881],[-104.579281,29.789891],[-104.579874,29.790787],[-104.581744,29.791757],[-104.582463,29.792501],[-104.58227,29.793356],[-104.581402,29.793805],[-104.581506,29.795112],[-104.585193,29.796232],[-104.587602,29.796121],[-104.589,29.795662],[-104.589352,29.795871],[-104.589586,29.796915],[-104.590915,29.798115],[-104.59047,29.799673],[-104.588664,29.799783],[-104.587503,29.80019],[-104.586443,29.800871],[-104.586014,29.802035],[-104.58632,29.803165],[-104.58927,29.806156],[-104.590138,29.808108],[-104.591347,29.809809],[-104.59255,29.810453],[-104.59306,29.80977],[-104.593978,29.809437],[-104.59395,29.808213],[-104.59336,29.808173],[-104.59248,29.808931],[-104.591642,29.808477],[-104.591645,29.808103],[-104.592264,29.807712],[-104.591886,29.806888],[-104.592403,29.806178],[-104.593412,29.806012],[-104.593884,29.805318],[-104.594928,29.805331],[-104.595638,29.806324],[-104.5963,29.8082],[-104.599193,29.811392],[-104.59995,29.813033],[-104.600436,29.815133],[-104.601168,29.816183],[-104.603324,29.817322],[-104.603642,29.81716],[-104.603957,29.816063],[-104.605076,29.815998],[-104.606945,29.817099],[-104.607245,29.819365],[-104.607755,29.819384],[-104.608755,29.818584],[-104.609642,29.818851],[-104.610082,29.819359],[-104.610414,29.820582],[-104.609575,29.822327],[-104.609526,29.823813],[-104.608423,29.827001],[-104.608486,29.827949],[-104.609702,29.828363],[-104.609379,29.827427],[-104.610032,29.827056],[-104.61044,29.827502],[-104.612842,29.82734],[-104.613844,29.828004],[-104.614031,29.829142],[-104.614775,29.829799],[-104.617616,29.829424],[-104.619637,29.830217],[-104.620256,29.833082],[-104.615271,29.833445],[-104.613939,29.833935],[-104.610499,29.836275],[-104.610706,29.837832],[-104.609956,29.838222],[-104.610492,29.83872],[-104.610193,29.839216],[-104.609484,29.839144],[-104.609445,29.839754],[-104.610968,29.841202],[-104.610746,29.84243],[-104.612345,29.842497],[-104.613609,29.844196],[-104.614019,29.845087],[-104.61389,29.846109],[-104.615371,29.846569],[-104.61612,29.846393],[-104.617796,29.844733],[-104.61911,29.844502],[-104.619579,29.843648],[-104.619028,29.842791],[-104.619488,29.841722],[-104.620173,29.84222],[-104.620093,29.842853],[-104.620523,29.843238],[-104.621098,29.842894],[-104.621218,29.842064],[-104.621912,29.841843],[-104.62475,29.842783],[-104.624333,29.844979],[-104.623579,29.845712],[-104.622017,29.846431],[-104.621325,29.847527],[-104.621869,29.848496],[-104.621585,29.849565],[-104.622623,29.849866],[-104.623102,29.850822],[-104.62493,29.851243],[-104.626844,29.850964],[-104.629271,29.852201],[-104.630138,29.853931],[-104.630519,29.856397],[-104.629948,29.860998],[-104.630125,29.86452],[-104.631303,29.865438],[-104.63165,29.867752],[-104.633421,29.870758],[-104.634347,29.871464],[-104.637039,29.872503],[-104.637239,29.873964],[-104.639493,29.873539],[-104.641084,29.873821],[-104.641841,29.874543],[-104.642003,29.875665],[-104.642528,29.876399],[-104.646112,29.878542],[-104.64627,29.879077],[-104.645675,29.881171],[-104.64652,29.883537],[-104.647182,29.883578],[-104.647673,29.884257],[-104.65074,29.886444],[-104.650941,29.887661],[-104.652639,29.888937],[-104.652446,29.889491],[-104.651105,29.890318],[-104.65056,29.891127],[-104.651662,29.892384],[-104.653333,29.892295],[-104.653348,29.890769],[-104.655852,29.889211],[-104.656784,29.889372],[-104.658257,29.890798],[-104.658551,29.892179],[-104.657836,29.895297],[-104.659048,29.89868],[-104.659002,29.899087],[-104.658262,29.899702],[-104.659008,29.901191],[-104.658079,29.902104],[-104.656153,29.902159],[-104.655157,29.902808],[-104.654783,29.903761],[-104.655086,29.905398],[-104.656549,29.90608],[-104.657501,29.905909],[-104.659202,29.90496],[-104.662299,29.905388],[-104.662618,29.905168],[-104.662671,29.90454],[-104.661686,29.903123],[-104.661824,29.902188],[-104.663986,29.901114],[-104.665589,29.901708],[-104.666094,29.902404],[-104.666197,29.903257],[-104.665893,29.905351],[-104.666118,29.906731],[-104.665542,29.908271],[-104.665606,29.908879],[-104.666622,29.909276],[-104.666968,29.910049],[-104.668569,29.911245],[-104.670796,29.911865],[-104.673504,29.910809],[-104.67453,29.91083],[-104.677167,29.913035],[-104.677293,29.914083],[-104.676968,29.914846],[-104.676406,29.914907],[-104.675861,29.915537],[-104.677436,29.91737],[-104.677208,29.917903],[-104.677455,29.918703],[-104.679236,29.920183],[-104.679921,29.921176],[-104.679741,29.924679],[-104.678798,29.925649],[-104.678501,29.926622],[-104.679851,29.926906],[-104.679982,29.927777],[-104.680535,29.928281],[-104.682429,29.92835],[-104.683272,29.929107],[-104.682877,29.930574],[-104.683298,29.931559],[-104.68264,29.931766],[-104.681719,29.930505],[-104.680472,29.930404],[-104.679467,29.931732],[-104.6793,29.932879],[-104.679863,29.933686],[-104.681746,29.934203],[-104.682628,29.935381],[-104.682548,29.936038],[-104.681275,29.937962],[-104.682345,29.939174],[-104.682318,29.939691],[-104.681181,29.94021],[-104.680465,29.939692],[-104.680231,29.938664],[-104.678949,29.938131],[-104.678339,29.938619],[-104.67779,29.940432],[-104.678631,29.941781],[-104.678044,29.942755],[-104.677971,29.943602],[-104.680783,29.945732],[-104.680364,29.946471],[-104.680735,29.947326],[-104.67938,29.947618],[-104.67889,29.948145],[-104.678668,29.949709],[-104.67711,29.9503],[-104.677232,29.95074],[-104.678226,29.951117],[-104.678168,29.951691],[-104.676397,29.952033],[-104.675152,29.950759],[-104.674288,29.950795],[-104.674715,29.952742],[-104.673502,29.953999],[-104.67318,29.954969],[-104.673435,29.956001],[-104.674174,29.956734],[-104.676964,29.956056],[-104.679036,29.956022],[-104.680058,29.955414],[-104.68093,29.955692],[-104.68017,29.956648],[-104.680729,29.957124],[-104.681781,29.9571],[-104.683747,29.956059],[-104.685049,29.956335],[-104.685253,29.956731],[-104.683553,29.960734],[-104.683086,29.963885],[-104.683237,29.966586],[-104.682134,29.967585],[-104.682213,29.968392],[-104.681853,29.969067],[-104.682056,29.969512],[-104.683163,29.969315],[-104.683956,29.970212],[-104.685326,29.970293],[-104.685503,29.970843],[-104.684345,29.971673],[-104.683514,29.971316],[-104.682387,29.97185],[-104.681996,29.973346],[-104.680106,29.974224],[-104.679518,29.975307],[-104.680152,29.977003],[-104.680663,29.977201],[-104.68265,29.976978],[-104.685334,29.974724],[-104.687638,29.973922],[-104.691737,29.973986],[-104.692012,29.975022],[-104.693127,29.97553],[-104.69308,29.975854],[-104.691528,29.976791],[-104.690483,29.978431],[-104.690406,29.979203],[-104.688353,29.98005],[-104.688826,29.982133],[-104.688197,29.983773],[-104.688272,29.984721],[-104.687919,29.985015],[-104.686393,29.985169],[-104.685736,29.987142],[-104.68567,29.990451],[-104.690314,29.990846],[-104.691552,29.9913],[-104.692787,29.992536],[-104.693182,29.993525],[-104.692864,29.994],[-104.689087,29.993931],[-104.688139,29.994573],[-104.687533,29.995673],[-104.687717,29.997598],[-104.688481,29.998768],[-104.688639,29.999662],[-104.689508,29.999868],[-104.689825,30.000854],[-104.688798,30.001748],[-104.688798,30.002229],[-104.690088,30.003398],[-104.690615,30.003398],[-104.692063,30.002183],[-104.691194,30.001106],[-104.691906,30.000781],[-104.693637,30.001376],[-104.694104,30.002516],[-104.693364,30.004294],[-104.693207,30.005826],[-104.693851,30.006984],[-104.693694,30.00774],[-104.693096,30.008172],[-104.692198,30.008276],[-104.691922,30.008792],[-104.690475,30.008229],[-104.690724,30.009571],[-104.689564,30.010455],[-104.689652,30.011343],[-104.690277,30.01215],[-104.690463,30.013497],[-104.689581,30.014457],[-104.689549,30.015105],[-104.692796,30.017808],[-104.693254,30.019128],[-104.694126,30.019433],[-104.697604,30.019443],[-104.700653,30.021131],[-104.702066,30.02123],[-104.703818,30.023417],[-104.703899,30.025808],[-104.702203,30.027701],[-104.702493,30.02899],[-104.702049,30.03023],[-104.702112,30.031028],[-104.700331,30.034039],[-104.7009,30.035643],[-104.699412,30.036016],[-104.6979,30.036994],[-104.696046,30.037125],[-104.695675,30.037664],[-104.696748,30.039006],[-104.697681,30.041242],[-104.698457,30.041994],[-104.699733,30.042532],[-104.705111,30.048623],[-104.706581,30.048842],[-104.707264,30.049867],[-104.705247,30.053781],[-104.703629,30.055055],[-104.704791,30.058325],[-104.703821,30.059351],[-104.702468,30.05979],[-104.702213,30.06019],[-104.703553,30.062963],[-104.703662,30.064196],[-104.702169,30.064972],[-104.699495,30.064773],[-104.697541,30.065243],[-104.695477,30.066676],[-104.693915,30.068721],[-104.693849,30.069458],[-104.691027,30.070496],[-104.693223,30.071694],[-104.693612,30.073219],[-104.693159,30.074015],[-104.690507,30.07415],[-104.687986,30.073771],[-104.687368,30.075685],[-104.6866,30.076581],[-104.687072,30.076782],[-104.687963,30.075871],[-104.689545,30.075649],[-104.690404,30.076135],[-104.690772,30.076727],[-104.690772,30.078015],[-104.690078,30.078929],[-104.687303,30.080666],[-104.685829,30.082063],[-104.685857,30.082581],[-104.686634,30.08325],[-104.686676,30.08395],[-104.68593,30.084859],[-104.684965,30.085301],[-104.68621,30.08597],[-104.686422,30.087177],[-104.6873,30.0875],[-104.687801,30.087469],[-104.68794,30.086843],[-104.686971,30.08664],[-104.687124,30.086014],[-104.687977,30.085911],[-104.688656,30.085336],[-104.689223,30.085384],[-104.689425,30.085869],[-104.688951,30.087487],[-104.689868,30.089342],[-104.689537,30.0902],[-104.687853,30.090407],[-104.687066,30.090835],[-104.685535,30.093209],[-104.685876,30.09524],[-104.685033,30.097694],[-104.685068,30.099849],[-104.685552,30.099988],[-104.686535,30.099517],[-104.686575,30.097946],[-104.687282,30.097019],[-104.688057,30.096869],[-104.687921,30.095657],[-104.688951,30.095259],[-104.69046,30.096278],[-104.691531,30.095901],[-104.692153,30.096084],[-104.692521,30.098062],[-104.692392,30.099378],[-104.694404,30.101979],[-104.692896,30.104023],[-104.692497,30.106359],[-104.691798,30.1072],[-104.691742,30.108725],[-104.691285,30.108783],[-104.689954,30.107808],[-104.690644,30.10699],[-104.690254,30.106308],[-104.687131,30.105867],[-104.686358,30.106373],[-104.685632,30.107855],[-104.685468,30.110032],[-104.685703,30.11059],[-104.686859,30.111036],[-104.689835,30.111473],[-104.691574,30.111222],[-104.691867,30.112256],[-104.691382,30.113049],[-104.691801,30.113512],[-104.692093,30.114991],[-104.691302,30.116506],[-104.690817,30.11651],[-104.690484,30.115756],[-104.689859,30.11598],[-104.689947,30.117021],[-104.690985,30.117888],[-104.692172,30.11774],[-104.693027,30.118353],[-104.693457,30.118189],[-104.693536,30.117098],[-104.693825,30.116884],[-104.694319,30.116986],[-104.695078,30.117811],[-104.695157,30.11894],[-104.694264,30.119981],[-104.693902,30.12159],[-104.694824,30.12456],[-104.695683,30.125613],[-104.695217,30.130053],[-104.695312,30.132282],[-104.696706,30.134457],[-104.696146,30.135128],[-104.695366,30.13441],[-104.694603,30.134223],[-104.694253,30.134688],[-104.694343,30.135752],[-104.693033,30.135451],[-104.692428,30.136848],[-104.692399,30.138406],[-104.6919,30.138852],[-104.690969,30.139069],[-104.689619,30.137622],[-104.689069,30.137724],[-104.689043,30.13986],[-104.689609,30.140372],[-104.689628,30.14094],[-104.688323,30.141788],[-104.686287,30.141457],[-104.686538,30.143297],[-104.685728,30.143707],[-104.685312,30.144733],[-104.685352,30.14528],[-104.68593,30.1457],[-104.687674,30.145298],[-104.689326,30.145635],[-104.689607,30.146571],[-104.688505,30.146868],[-104.688248,30.147371],[-104.688633,30.147996],[-104.689836,30.148624],[-104.690113,30.149226],[-104.689909,30.14986],[-104.687442,30.150878],[-104.686885,30.152139],[-104.687044,30.152743],[-104.689051,30.153421],[-104.689563,30.154269],[-104.687529,30.159552],[-104.687387,30.161571],[-104.687848,30.16418],[-104.688531,30.165666],[-104.688376,30.166822],[-104.687273,30.168283],[-104.686782,30.169618],[-104.686725,30.172403],[-104.686332,30.173281],[-104.687149,30.17557],[-104.687978,30.17639],[-104.687076,30.179342],[-104.688741,30.18091],[-104.691512,30.184627],[-104.692691,30.187092],[-104.693147,30.18926],[-104.695912,30.190159],[-104.697138,30.191568],[-104.697196,30.192233],[-104.696117,30.19557],[-104.697041,30.1978],[-104.699,30.198757],[-104.699808,30.198782],[-104.700404,30.203591],[-104.700327,30.205303],[-104.701928,30.206383],[-104.704122,30.206806],[-104.705066,30.208381],[-104.703766,30.210445],[-104.703888,30.210989],[-104.702471,30.21165],[-104.702475,30.212779],[-104.70526,30.216933],[-104.707949,30.218801],[-104.709415,30.220772],[-104.710164,30.221078],[-104.711269,30.223083],[-104.711092,30.224338],[-104.7079,30.226231],[-104.706078,30.233835],[-104.706255,30.234812],[-104.706699,30.235258],[-104.708285,30.235492],[-104.713195,30.237632],[-104.714157,30.240363],[-104.714921,30.241293],[-104.716303,30.241892],[-104.717348,30.243786],[-104.718554,30.244958],[-104.71895,30.247086],[-104.721274,30.247671],[-104.723999,30.249619],[-104.724509,30.250414],[-104.724474,30.251231],[-104.723877,30.251904],[-104.724146,30.253046],[-104.727516,30.254438],[-104.72974,30.258497],[-104.732117,30.259882],[-104.733722,30.261399],[-104.734788,30.261693],[-104.736837,30.261635],[-104.737501,30.261285],[-104.736826,30.259648],[-104.737511,30.25842],[-104.736523,30.257917],[-104.735988,30.257249],[-104.736011,30.256602],[-104.736645,30.255905],[-104.737871,30.256245],[-104.739637,30.258037],[-104.740392,30.259582],[-104.745505,30.260452],[-104.746872,30.261208],[-104.749012,30.26107],[-104.750712,30.262229],[-104.750878,30.26309],[-104.751632,30.263853],[-104.751586,30.264419],[-104.74958,30.266972],[-104.748607,30.27166],[-104.747858,30.273159],[-104.748593,30.274407],[-104.748957,30.274279],[-104.748814,30.272994],[-104.750094,30.272366],[-104.750768,30.271543],[-104.751349,30.271718],[-104.751472,30.272117],[-104.75108,30.272697],[-104.751097,30.273881],[-104.752057,30.273937],[-104.752746,30.273406],[-104.753229,30.273555],[-104.753862,30.27289],[-104.754111,30.271807],[-104.754725,30.271741],[-104.756249,30.27258],[-104.756241,30.273647],[-104.75678,30.274316],[-104.757184,30.274343],[-104.757994,30.273879],[-104.756915,30.272773],[-104.757194,30.271876],[-104.758479,30.271393],[-104.75899,30.271732],[-104.760166,30.271666],[-104.760534,30.271983],[-104.760456,30.272794],[-104.759673,30.27387],[-104.760076,30.274359],[-104.760607,30.27461],[-104.762509,30.274278],[-104.763176,30.274836],[-104.76298,30.275287],[-104.761332,30.276319],[-104.760419,30.277325],[-104.758275,30.281158],[-104.757893,30.28337],[-104.758139,30.286412],[-104.759209,30.288255],[-104.75958,30.293404],[-104.760939,30.298114],[-104.761288,30.300611],[-104.763018,30.301827],[-104.764088,30.303082],[-104.764888,30.303387],[-104.766158,30.303077],[-104.767091,30.303713],[-104.76669,30.306],[-104.768884,30.304446],[-104.770424,30.303688],[-104.771502,30.303578],[-104.772645,30.302691],[-104.773466,30.302786],[-104.775081,30.304163],[-104.775908,30.304471],[-104.777191,30.304273],[-104.778409,30.303371],[-104.779318,30.303269],[-104.779633,30.303756],[-104.779631,30.305731],[-104.77685,30.307384],[-104.776427,30.3089],[-104.776807,30.3103],[-104.777599,30.311104],[-104.77874,30.311628],[-104.779182,30.312873],[-104.782824,30.316051],[-104.783921,30.316475],[-104.786221,30.316314],[-104.788494,30.317893],[-104.789306,30.318979],[-104.788802,30.321843],[-104.790978,30.321905],[-104.791485,30.322286],[-104.791107,30.324068],[-104.791399,30.325518],[-104.794797,30.32696],[-104.797444,30.330437],[-104.802987,30.331086],[-104.805748,30.332763],[-104.807917,30.333314],[-104.809409,30.333431],[-104.810299,30.332838],[-104.811578,30.332811],[-104.811854,30.333703],[-104.810933,30.335499],[-104.810876,30.337853],[-104.810096,30.339498],[-104.809995,30.341511],[-104.814041,30.343893],[-104.81571,30.343981],[-104.818756,30.347527],[-104.819104,30.347395],[-104.819196,30.346933],[-104.819868,30.34686],[-104.821201,30.348907],[-104.822291,30.349663],[-104.822581,30.350624],[-104.822595,30.351267],[-104.821755,30.351861],[-104.818401,30.351865],[-104.815685,30.352751],[-104.814131,30.353691],[-104.814215,30.357416],[-104.813879,30.359896],[-104.811655,30.361283],[-104.810993,30.362472],[-104.811355,30.366701],[-104.812885,30.366905],[-104.814665,30.366335],[-104.815301,30.36583],[-104.816171,30.365864],[-104.819155,30.367769],[-104.819674,30.368722],[-104.819231,30.370657],[-104.818596,30.371077],[-104.818205,30.372027],[-104.816784,30.372724],[-104.81616,30.37375],[-104.816423,30.375187],[-104.817602,30.375746],[-104.820057,30.374642],[-104.825694,30.37391],[-104.827919,30.373049],[-104.829478,30.373262],[-104.830564,30.372853],[-104.834318,30.373604],[-104.837438,30.373847],[-104.838646,30.375854],[-104.839384,30.376407],[-104.841205,30.377081],[-104.84263,30.378096],[-104.845613,30.379209],[-104.846324,30.380176],[-104.846584,30.381209],[-104.848505,30.383579],[-104.850247,30.384366],[-104.853814,30.385321],[-104.859296,30.390253],[-104.859397,30.391125],[-104.85735,30.393522],[-104.856046,30.395695],[-104.854813,30.399566],[-104.854281,30.400366],[-104.854278,30.40094],[-104.855281,30.40138],[-104.856033,30.403319],[-104.856443,30.407103],[-104.857198,30.407999],[-104.857182,30.408871],[-104.856695,30.409839],[-104.855546,30.410523],[-104.855113,30.411183],[-104.853947,30.411761],[-104.852321,30.412043],[-104.852031,30.413066],[-104.851258,30.413829],[-104.847679,30.413805],[-104.848166,30.416432],[-104.848971,30.417986],[-104.847831,30.419775],[-104.848333,30.421012],[-104.849422,30.421549],[-104.849913,30.421121],[-104.849721,30.419953],[-104.850063,30.419262],[-104.851533,30.418651],[-104.852151,30.418739],[-104.852742,30.419231],[-104.852723,30.420066],[-104.853067,30.420512],[-104.85576,30.420967],[-104.856626,30.421517],[-104.856879,30.422226],[-104.85647,30.423822],[-104.856886,30.424475],[-104.859211,30.42568],[-104.859382,30.426045],[-104.860354,30.425597],[-104.861305,30.426121],[-104.861535,30.426927],[-104.860826,30.427978],[-104.860485,30.429337],[-104.859875,30.429689],[-104.859207,30.430908],[-104.858394,30.431409],[-104.858149,30.432186],[-104.858167,30.433213],[-104.858723,30.433783],[-104.859033,30.434923],[-104.858171,30.436844],[-104.858333,30.437636],[-104.86022,30.439913],[-104.862656,30.440209],[-104.864511,30.441276],[-104.866687,30.440902],[-104.867781,30.440974],[-104.868047,30.441407],[-104.867856,30.44263],[-104.867087,30.444037],[-104.865458,30.444907],[-104.86585,30.446495],[-104.864444,30.450549],[-104.86541,30.452555],[-104.868057,30.453623],[-104.868382,30.454158],[-104.869636,30.459195],[-104.869465,30.45997],[-104.868283,30.460526],[-104.868534,30.463481],[-104.867489,30.464207],[-104.866596,30.464061],[-104.866063,30.464384],[-104.86588,30.46689],[-104.866493,30.469394],[-104.869383,30.474117],[-104.869082,30.475864],[-104.869153,30.478738],[-104.86966,30.479414],[-104.871393,30.479697],[-104.871667,30.480345],[-104.869504,30.484641],[-104.868749,30.484993],[-104.867548,30.484671],[-104.867174,30.485071],[-104.867383,30.488332],[-104.866317,30.492435],[-104.866632,30.494499],[-104.867182,30.494825],[-104.87032,30.494088],[-104.873921,30.495258],[-104.872911,30.497758],[-104.872224,30.501502],[-104.872364,30.502346],[-104.87352,30.504545],[-104.872869,30.507563],[-104.872213,30.508481],[-104.871955,30.51109],[-104.873047,30.511816],[-104.87319,30.513304],[-104.873719,30.513737],[-104.874241,30.513459],[-104.874855,30.512153],[-104.876754,30.511096],[-104.877041,30.511204],[-104.879147,30.515358],[-104.879258,30.517813],[-104.879965,30.517751],[-104.881004,30.5169],[-104.882885,30.516769],[-104.88368,30.516961],[-104.885702,30.51827],[-104.88569,30.518798],[-104.884599,30.520331],[-104.883053,30.520583],[-104.882356,30.521032],[-104.881602,30.520557],[-104.881023,30.520976],[-104.88118,30.521629],[-104.882117,30.522378],[-104.883359,30.522957],[-104.88418,30.522791],[-104.883873,30.523815],[-104.88532,30.523998],[-104.885884,30.524523],[-104.884505,30.525846],[-104.883715,30.526135],[-104.883238,30.524598],[-104.881409,30.523955],[-104.881121,30.524368],[-104.880559,30.528925],[-104.880648,30.529821],[-104.882359,30.532255],[-104.884531,30.533239],[-104.886354,30.533557],[-104.888836,30.534775],[-104.889271,30.535378],[-104.889678,30.537067],[-104.889636,30.538385],[-104.890786,30.54101],[-104.888889,30.542162],[-104.887685,30.544089],[-104.887697,30.546727],[-104.888143,30.547098],[-104.888646,30.547057],[-104.889624,30.545977],[-104.890254,30.546037],[-104.890535,30.546799],[-104.889819,30.549157],[-104.891711,30.550269],[-104.893279,30.550063],[-104.894061,30.550918],[-104.893794,30.551917],[-104.892786,30.55114],[-104.892374,30.551293],[-104.892277,30.551858],[-104.892898,30.552925],[-104.896244,30.552983],[-104.897946,30.554548],[-104.897817,30.556332],[-104.896965,30.557686],[-104.896907,30.559877],[-104.896322,30.560582],[-104.896433,30.561088],[-104.895838,30.562272],[-104.896818,30.565042],[-104.898929,30.568362],[-104.898835,30.570473],[-104.901489,30.572203],[-104.902232,30.573627],[-104.904039,30.57502],[-104.905226,30.576496],[-104.906888,30.577164],[-104.907774,30.582307],[-104.909552,30.585143],[-104.912705,30.58605],[-104.91552,30.585837],[-104.917643,30.585093],[-104.918762,30.585542],[-104.919115,30.586537],[-104.919931,30.587275],[-104.921378,30.590032],[-104.920205,30.590486],[-104.919447,30.593572],[-104.918741,30.594815],[-104.91932,30.596471],[-104.91855,30.597038],[-104.918798,30.597791],[-104.920025,30.597434],[-104.921777,30.598465],[-104.922096,30.602245],[-104.922677,30.603693],[-104.924704,30.605112],[-104.926521,30.605212],[-104.9283,30.603035],[-104.929329,30.599649],[-104.929927,30.599202],[-104.930975,30.599066],[-104.934584,30.600013],[-104.935129,30.600807],[-104.93626,30.601557],[-104.936852,30.60266],[-104.938415,30.603633],[-104.940313,30.602752],[-104.941118,30.602867],[-104.941351,30.603764],[-104.941768,30.604076],[-104.942878,30.603849],[-104.943427,30.603143],[-104.944093,30.602895],[-104.945394,30.603077],[-104.94584,30.604143],[-104.946747,30.604664],[-104.947952,30.604712],[-104.950076,30.603973],[-104.950821,30.604051],[-104.953806,30.606417],[-104.95394,30.608],[-104.95503,30.609357],[-104.956764,30.609276],[-104.95739,30.609881],[-104.959831,30.610595],[-104.963816,30.608595],[-104.966902,30.607895],[-104.971664,30.610014],[-104.973271,30.611702],[-104.974185,30.613234],[-104.975508,30.614245],[-104.97436,30.616235],[-104.974403,30.61678],[-104.974947,30.617253],[-104.976533,30.617534],[-104.977664,30.61813],[-104.978765,30.62107],[-104.980213,30.621952],[-104.979616,30.624605],[-104.980778,30.62552],[-104.979521,30.626706],[-104.979496,30.628598],[-104.980469,30.629833],[-104.982141,30.630275],[-104.982632,30.631701],[-104.982734,30.633874],[-104.9839,30.635025],[-104.98388,30.637111],[-104.984513,30.641342],[-104.983892,30.642798],[-104.984561,30.644245],[-104.98468,30.646726],[-104.985514,30.649899],[-104.985181,30.653127],[-104.98585,30.654575],[-104.985658,30.655268],[-104.984716,30.655636],[-104.985076,30.656795],[-104.986176,30.658076],[-104.985393,30.658332],[-104.985537,30.659158],[-104.986557,30.659547],[-104.985945,30.661233],[-104.986245,30.66215],[-104.98611,30.662767],[-104.990294,30.663326],[-104.991423,30.665132],[-104.993052,30.664914],[-104.993485,30.66596],[-104.99312,30.667018],[-104.993846,30.66852],[-104.995681,30.668714],[-104.996552,30.669158],[-104.997758,30.668994],[-104.999555,30.671465],[-105.001542,30.672704],[-105.00127,30.675199],[-105.002539,30.680087],[-105.002048,30.680426],[-105.002043,30.680878],[-105.004508,30.68309],[-105.005628,30.683076],[-105.006147,30.685476],[-105.006579,30.68606],[-105.007796,30.686221],[-105.010423,30.684584],[-105.012296,30.683832],[-105.013199,30.682562],[-105.016008,30.682878],[-105.016594,30.683509],[-105.016759,30.684875],[-105.017878,30.685086],[-105.019829,30.683931],[-105.02127,30.681509],[-105.025218,30.681287],[-105.026247,30.680722],[-105.026618,30.679428],[-105.027325,30.678881],[-105.028127,30.680004],[-105.028784,30.680264],[-105.030388,30.680143],[-105.031962,30.68099],[-105.033953,30.683335],[-105.036089,30.686658],[-105.038318,30.688082],[-105.040819,30.688935],[-105.041274,30.688874],[-105.042063,30.687663],[-105.042709,30.687353],[-105.044555,30.68781],[-105.045357,30.688957],[-105.047161,30.688074],[-105.047076,30.687433],[-105.044781,30.684964],[-105.044428,30.684183],[-105.044402,30.683205],[-105.045316,30.682668],[-105.045784,30.681876],[-105.045704,30.681029],[-105.04522,30.680559],[-105.045681,30.679917],[-105.048321,30.680285],[-105.048449,30.680728],[-105.047537,30.681704],[-105.048406,30.682458],[-105.050809,30.682174],[-105.051972,30.681569],[-105.055307,30.682156],[-105.055392,30.682753],[-105.054421,30.68418],[-105.054269,30.685104],[-105.055642,30.685544],[-105.056155,30.687206],[-105.056698,30.687864],[-105.05904,30.688015],[-105.060011,30.687285],[-105.059277,30.686812],[-105.059289,30.686452],[-105.061247,30.685738],[-105.061762,30.685845],[-105.062486,30.686532],[-105.063388,30.688938],[-105.062904,30.691385],[-105.061685,30.69466],[-105.06182,30.695953],[-105.062657,30.697015],[-105.062552,30.698502],[-105.065076,30.698372],[-105.066885,30.699256],[-105.068085,30.701572],[-105.068232,30.703702],[-105.06873,30.703668],[-105.069131,30.702549],[-105.070062,30.701885],[-105.073349,30.701527],[-105.075332,30.701893],[-105.07664,30.701239],[-105.077401,30.700012],[-105.07856,30.699708],[-105.080941,30.699846],[-105.081129,30.700336],[-105.080786,30.701441],[-105.082065,30.701301],[-105.082578,30.701678],[-105.082592,30.702088],[-105.081864,30.702981],[-105.080104,30.703315],[-105.079383,30.704343],[-105.079461,30.705605],[-105.080462,30.706389],[-105.080227,30.707724],[-105.081028,30.708471],[-105.082405,30.708648],[-105.083349,30.70997],[-105.087463,30.709877],[-105.087892,30.711437],[-105.086976,30.714451],[-105.087614,30.715488],[-105.088955,30.715897],[-105.091063,30.717177],[-105.094911,30.717197],[-105.09531,30.716058],[-105.095778,30.715891],[-105.098179,30.716479],[-105.098675,30.717477],[-105.098381,30.720045],[-105.099281,30.720868],[-105.099622,30.721953],[-105.100916,30.722544],[-105.103628,30.722755],[-105.105547,30.723808],[-105.105471,30.724597],[-105.103901,30.7253],[-105.103314,30.726337],[-105.103358,30.727076],[-105.103889,30.727828],[-105.103344,30.728598],[-105.103371,30.729129],[-105.10589,30.730483],[-105.106023,30.731821],[-105.106614,30.732221],[-105.107443,30.731633],[-105.106889,30.731098],[-105.107097,30.73015],[-105.107988,30.729908],[-105.108805,30.730087],[-105.11018,30.731295],[-105.110409,30.732116],[-105.111679,30.732868],[-105.111825,30.733261],[-105.111676,30.735716],[-105.110836,30.737681],[-105.110985,30.738563],[-105.110018,30.739108],[-105.10981,30.739564],[-105.11022,30.740248],[-105.111562,30.740104],[-105.112211,30.740502],[-105.111476,30.742351],[-105.110897,30.742648],[-105.110939,30.743552],[-105.113933,30.74598],[-105.116139,30.74466],[-105.115935,30.743578],[-105.116942,30.743009],[-105.11979,30.743159],[-105.120443,30.743853],[-105.120851,30.745894],[-105.119432,30.747519],[-105.119456,30.748354],[-105.118021,30.749083],[-105.118295,30.749726],[-105.119676,30.749995],[-105.121242,30.749563],[-105.122877,30.749545],[-105.124278,30.749227],[-105.125399,30.748101],[-105.127659,30.747845],[-105.128329,30.748161],[-105.12906,30.749992],[-105.129598,30.750376],[-105.133366,30.750734],[-105.137217,30.751737],[-105.139592,30.753023],[-105.140727,30.752214],[-105.141294,30.752676],[-105.142175,30.754696],[-105.143771,30.755205],[-105.147155,30.753648],[-105.148677,30.752258],[-105.150628,30.752003],[-105.151976,30.751462],[-105.15307,30.751689],[-105.156846,30.753972],[-105.158184,30.752862],[-105.16139,30.752133],[-105.161951,30.753351],[-105.161259,30.754789],[-105.161304,30.756263],[-105.160667,30.757546],[-105.158744,30.759394],[-105.157844,30.761305],[-105.15743,30.765512],[-105.157566,30.766819],[-105.156191,30.769773],[-105.158912,30.771014],[-105.160487,30.77036],[-105.162815,30.770719],[-105.165184,30.772897],[-105.166479,30.775539],[-105.166464,30.776441],[-105.167082,30.776594],[-105.168853,30.775823],[-105.169896,30.773017],[-105.170723,30.771728],[-105.172504,30.77053],[-105.172451,30.769936],[-105.173992,30.767531],[-105.175202,30.767353],[-105.176601,30.767975],[-105.179536,30.771369],[-105.180635,30.774021],[-105.182134,30.776272],[-105.184215,30.776452],[-105.184896,30.77696],[-105.185172,30.780593],[-105.184391,30.781573],[-105.185591,30.782518],[-105.185616,30.783736],[-105.185999,30.78455],[-105.190738,30.785697],[-105.191667,30.787138],[-105.192619,30.78997],[-105.194373,30.791034],[-105.195191,30.792304],[-105.195891,30.792111],[-105.196845,30.790727],[-105.199101,30.789016],[-105.199792,30.787731],[-105.200607,30.787365],[-105.202198,30.788004],[-105.20368,30.78793],[-105.20655,30.786346],[-105.207078,30.785576],[-105.207017,30.78432],[-105.209091,30.782655],[-105.209989,30.78265],[-105.211687,30.781766],[-105.213462,30.782201],[-105.214126,30.782631],[-105.214319,30.78335],[-105.214851,30.783726],[-105.216744,30.783385],[-105.216952,30.783634],[-105.216568,30.784611],[-105.218787,30.78536],[-105.219687,30.786262],[-105.22015,30.787763],[-105.220047,30.788898],[-105.218836,30.790434],[-105.218431,30.792113],[-105.217635,30.793167],[-105.217065,30.793416],[-105.215209,30.792858],[-105.212999,30.793232],[-105.211566,30.794334],[-105.211517,30.795311],[-105.210761,30.796813],[-105.20992,30.797068],[-105.209598,30.797628],[-105.21116,30.799626],[-105.212249,30.799798],[-105.213288,30.800806],[-105.213985,30.802183],[-105.213885,30.803838],[-105.215017,30.805893],[-105.218285,30.805759],[-105.223303,30.800872],[-105.224445,30.800741],[-105.225767,30.79957],[-105.227443,30.799191],[-105.228019,30.799272],[-105.229016,30.800162],[-105.228392,30.801393],[-105.228391,30.802867],[-105.230019,30.803827],[-105.230756,30.803788],[-105.232261,30.802969],[-105.233729,30.803056],[-105.23449,30.802647],[-105.238178,30.80366],[-105.239139,30.802419],[-105.241656,30.802215],[-105.242782,30.801601],[-105.244172,30.799812],[-105.246155,30.800477],[-105.247941,30.800115],[-105.249928,30.799236],[-105.252731,30.795867],[-105.253909,30.795875],[-105.255673,30.795095],[-105.256013,30.794402],[-105.25716,30.794354],[-105.25882,30.795489],[-105.259982,30.797396],[-105.261232,30.798497],[-105.26193,30.798648],[-105.264148,30.800335],[-105.265533,30.802636],[-105.265805,30.806495],[-105.266835,30.808481],[-105.268768,30.809309],[-105.271694,30.809382],[-105.27276,30.808274],[-105.274229,30.808167],[-105.274663,30.80755],[-105.275799,30.807003],[-105.276701,30.808497],[-105.277301,30.811284],[-105.279221,30.812905],[-105.279401,30.815698],[-105.282514,30.818279],[-105.285275,30.818682],[-105.286632,30.817891],[-105.287953,30.817877],[-105.288797,30.819124],[-105.289484,30.821584],[-105.289258,30.823779],[-105.289894,30.82478],[-105.291795,30.826193],[-105.294783,30.826344],[-105.299041,30.825399],[-105.300136,30.824771],[-105.300984,30.822504],[-105.300988,30.820615],[-105.300534,30.81919],[-105.302683,30.816133],[-105.303547,30.813665],[-105.304863,30.812438],[-105.305462,30.811421],[-105.306159,30.81132],[-105.306147,30.809838],[-105.307588,30.810032],[-105.308862,30.811089],[-105.30878,30.81373],[-105.307869,30.814732],[-105.309288,30.815647],[-105.30907,30.816706],[-105.309363,30.81704],[-105.309936,30.816814],[-105.310538,30.816031],[-105.311366,30.814017],[-105.311952,30.813391],[-105.314248,30.812452],[-105.314938,30.811363],[-105.316869,30.810913],[-105.317984,30.811944],[-105.319094,30.812259],[-105.318421,30.813444],[-105.318328,30.814552],[-105.317486,30.816573],[-105.317553,30.817261],[-105.315958,30.818717],[-105.316522,30.820414],[-105.317899,30.821577],[-105.318896,30.824046],[-105.318924,30.825056],[-105.31801,30.827175],[-105.318179,30.827816],[-105.319453,30.829084],[-105.320047,30.828804],[-105.319946,30.827789],[-105.320678,30.827372],[-105.324592,30.828303],[-105.32685,30.826084],[-105.327043,30.824705],[-105.329297,30.824975],[-105.330194,30.826134],[-105.328309,30.829066],[-105.327762,30.83031],[-105.327825,30.831087],[-105.328333,30.831486],[-105.332223,30.832382],[-105.333063,30.83319],[-105.334135,30.833633],[-105.335827,30.833341],[-105.337192,30.833481],[-105.337947,30.838023],[-105.339293,30.840475],[-105.341676,30.84047],[-105.342692,30.840998],[-105.345755,30.840612],[-105.347372,30.839516],[-105.347169,30.838708],[-105.347658,30.838044],[-105.348823,30.837639],[-105.351409,30.835625],[-105.351964,30.835544],[-105.353153,30.835927],[-105.354442,30.837781],[-105.353523,30.839569],[-105.353057,30.841278],[-105.353184,30.842021],[-105.354447,30.843339],[-105.356401,30.844328],[-105.357774,30.845433],[-105.35972,30.845942],[-105.360408,30.848584],[-105.361592,30.850545],[-105.363976,30.849701],[-105.367638,30.847693],[-105.370497,30.8475],[-105.372073,30.847612],[-105.373436,30.848422],[-105.374477,30.848617],[-105.375047,30.849965],[-105.376288,30.848851],[-105.377628,30.848814],[-105.376725,30.850546],[-105.377066,30.851262],[-105.37989,30.850615],[-105.382124,30.851202],[-105.382708,30.851966],[-105.383263,30.852106],[-105.383718,30.851819],[-105.384163,30.850585],[-105.384696,30.850497],[-105.385585,30.851325],[-105.38684,30.853502],[-105.387322,30.853734],[-105.38784,30.853638],[-105.389229,30.852255],[-105.391036,30.852289],[-105.391952,30.850594],[-105.394018,30.850913],[-105.394514,30.850234],[-105.394051,30.849358],[-105.39462,30.849021],[-105.395889,30.849295],[-105.398151,30.851277],[-105.399837,30.852077],[-105.401635,30.854266],[-105.401639,30.854658],[-105.400802,30.856314],[-105.39927,30.857737],[-105.395482,30.859089],[-105.394946,30.859757],[-105.394523,30.861288],[-105.395027,30.862192],[-105.394404,30.863107],[-105.395007,30.86399],[-105.39586,30.863933],[-105.395993,30.864305],[-105.39364,30.86693],[-105.393916,30.868007],[-105.394723,30.868992],[-105.394817,30.869619],[-105.394399,30.870563],[-105.39496,30.871194],[-105.394353,30.871891],[-105.392893,30.872519],[-105.392383,30.87316],[-105.391653,30.873309],[-105.391299,30.873853],[-105.392681,30.875766],[-105.393628,30.876381],[-105.397308,30.876219],[-105.399936,30.876674],[-105.40258,30.878791],[-105.404303,30.879676],[-105.402372,30.881658],[-105.400113,30.88294],[-105.399132,30.884255],[-105.398828,30.885329],[-105.400151,30.886629],[-105.399951,30.887694],[-105.399415,30.888305],[-105.400185,30.889382],[-105.401293,30.890174],[-105.402142,30.89028],[-105.40376,30.892106],[-105.408026,30.889361],[-105.412093,30.88856],[-105.412308,30.888922],[-105.412143,30.890443],[-105.410617,30.891572],[-105.410552,30.892048],[-105.412166,30.893843],[-105.413802,30.899567],[-105.416205,30.900188],[-105.421917,30.900483],[-105.424762,30.900996],[-105.425817,30.900396],[-105.426786,30.90192],[-105.427624,30.902562],[-105.428698,30.904533],[-105.430136,30.905604],[-105.432634,30.9061],[-105.434559,30.907685],[-105.435592,30.907832],[-105.436172,30.90748],[-105.439857,30.908877],[-105.440539,30.908349],[-105.441158,30.908449],[-105.442361,30.909442],[-105.444773,30.913336],[-105.44556,30.916124],[-105.44432,30.917258],[-105.446379,30.919355],[-105.446918,30.919613],[-105.447468,30.919392],[-105.448665,30.917723],[-105.450063,30.917039],[-105.451348,30.915727],[-105.452091,30.915653],[-105.453152,30.916206],[-105.4534,30.917517],[-105.454395,30.919345],[-105.453928,30.919768],[-105.452224,30.919971],[-105.451453,30.921041],[-105.451147,30.922064],[-105.451205,30.923963],[-105.451604,30.924827],[-105.452971,30.925085],[-105.456916,30.924515],[-105.457787,30.924923],[-105.459613,30.924802],[-105.460521,30.925408],[-105.462775,30.924964],[-105.464827,30.925857],[-105.46531,30.925386],[-105.465462,30.924551],[-105.466771,30.924279],[-105.467339,30.925552],[-105.467552,30.929668],[-105.46924,30.930505],[-105.469765,30.931119],[-105.470789,30.931239],[-105.470794,30.933712],[-105.473603,30.934388],[-105.474373,30.933885],[-105.475923,30.933817],[-105.478028,30.937984],[-105.479749,30.939536],[-105.481918,30.94074],[-105.483937,30.940983],[-105.486358,30.942625],[-105.486793,30.942481],[-105.487632,30.940962],[-105.488731,30.940815],[-105.490644,30.942261],[-105.491654,30.942407],[-105.49169,30.94345],[-105.491355,30.943806],[-105.490327,30.943709],[-105.488677,30.942515],[-105.488082,30.942856],[-105.488114,30.943725],[-105.490138,30.946469],[-105.493224,30.948663],[-105.493728,30.949461],[-105.496272,30.949273],[-105.497742,30.950169],[-105.498623,30.950134],[-105.498872,30.950418],[-105.49898,30.950826],[-105.497697,30.952396],[-105.497492,30.953239],[-105.496463,30.954325],[-105.49681,30.95542],[-105.495544,30.955655],[-105.49481,30.956255],[-105.494305,30.955261],[-105.49395,30.955624],[-105.493893,30.956424],[-105.494462,30.958045],[-105.495969,30.959542],[-105.496991,30.961401],[-105.498617,30.962725],[-105.499883,30.965719],[-105.501968,30.967737],[-105.503436,30.968026],[-105.506674,30.966507],[-105.508236,30.966295],[-105.511606,30.9665],[-105.513764,30.966261],[-105.515718,30.964857],[-105.516865,30.967207],[-105.516888,30.969428],[-105.517731,30.970322],[-105.517864,30.971098],[-105.520338,30.972974],[-105.521319,30.974689],[-105.521799,30.976286],[-105.522561,30.976801],[-105.52536,30.977332],[-105.527083,30.978178],[-105.532676,30.984697],[-105.535789,30.985022],[-105.538042,30.985734],[-105.53923,30.985507],[-105.541003,30.984634],[-105.543018,30.984644],[-105.555148,30.98847],[-105.557226,30.989673],[-105.563446,30.997165],[-105.565684,31.002336],[-105.570096,31.008203],[-105.5702,31.009427],[-105.568756,31.014606],[-105.570532,31.018007],[-105.571146,31.018656],[-105.571976,31.018936],[-105.576419,31.019387],[-105.578008,31.020078],[-105.581246,31.026653],[-105.581175,31.027902],[-105.579913,31.03039],[-105.579524,31.035695],[-105.584994,31.056964],[-105.585362,31.05767],[-105.588417,31.060457],[-105.593854,31.063243],[-105.595286,31.06431],[-105.596003,31.065285],[-105.596672,31.066924],[-105.598367,31.074318],[-105.602682,31.081817],[-105.604467,31.083744],[-105.606438,31.085278],[-105.627102,31.098405],[-105.628519,31.098655],[-105.640048,31.097639],[-105.641829,31.098333],[-105.642684,31.099583],[-105.646488,31.11308],[-105.647604,31.114979],[-105.648839,31.115877],[-105.659637,31.119655],[-105.661688,31.11995],[-105.663473,31.121113],[-105.665712,31.121999],[-105.679183,31.125937],[-105.7084,31.13593],[-105.710526,31.136975],[-105.71618,31.140567],[-105.717098,31.141534],[-105.717525,31.142415],[-105.717856,31.145653],[-105.718417,31.147635],[-105.719273,31.148894],[-105.741929,31.164602],[-105.743685,31.165254],[-105.745725,31.165363],[-105.76337,31.164127],[-105.76956,31.164876],[-105.77299,31.166702],[-105.774028,31.168474],[-105.775795,31.175829],[-105.78003,31.18274],[-105.780253,31.184941],[-105.779491,31.188338],[-105.779478,31.190228],[-105.780132,31.192326],[-105.782798,31.197459],[-105.784684,31.19898],[-105.792344,31.201202],[-105.794287,31.202286],[-105.818381,31.230146],[-105.836392,31.247722],[-105.850332,31.264968],[-105.853814,31.272521],[-105.857962,31.275561],[-105.869294,31.288955],[-105.870715,31.289939],[-105.874456,31.291309],[-105.876387,31.291668],[-105.89104,31.290095],[-105.894146,31.290749],[-105.895649,31.291758],[-105.8967,31.293122],[-105.901978,31.303434],[-105.903322,31.306788],[-105.906689,31.310045],[-105.907388,31.312214],[-105.908629,31.312745],[-105.913327,31.313058],[-105.922307,31.311952],[-105.931585,31.312781],[-105.932823,31.313362],[-105.937894,31.318223],[-105.93851,31.31907],[-105.947752,31.339589],[-105.94768,31.342008],[-105.945453,31.351015],[-105.945732,31.35295],[-105.953786,31.364749],[-105.955596,31.365304],[-105.968706,31.365619],[-105.970046,31.365977],[-105.987067,31.37975],[-106.002304,31.391147],[-106.004921,31.392456],[-106.016192,31.39352],[-106.075307,31.397615],[-106.081665,31.399223],[-106.084977,31.401446],[-106.103087,31.418478],[-106.108615,31.422375],[-106.112169,31.423567],[-106.124541,31.423729],[-106.129672,31.424348],[-106.132291,31.425081],[-106.154608,31.435894],[-106.156934,31.43736],[-106.15942,31.439308],[-106.170276,31.451289],[-106.175625,31.455206],[-106.180304,31.457107],[-106.200119,31.462411],[-106.204393,31.464605],[-106.207631,31.467104],[-106.217435,31.477921],[-106.219074,31.48028],[-106.21962,31.481561],[-106.223562,31.498074],[-106.224764,31.500929],[-106.225704,31.502252],[-106.235235,31.511238],[-106.237224,31.513858],[-106.245236,31.539123],[-106.246571,31.541661],[-106.248245,31.543488],[-106.254742,31.548043],[-106.279589,31.561138],[-106.28079,31.562096],[-106.28874,31.587157],[-106.292933,31.594306],[-106.296671,31.603509],[-106.297761,31.604306],[-106.300889,31.609624],[-106.300617,31.613262],[-106.302832,31.618677],[-106.302868,31.620785],[-106.303433,31.622193],[-106.307944,31.629519],[-106.324357,31.649739],[-106.32985,31.65849],[-106.334435,31.663555],[-106.349565,31.696712],[-106.351748,31.698592],[-106.370139,31.71071],[-106.37237,31.712569],[-106.374036,31.714845],[-106.378039,31.72831],[-106.380321,31.731378],[-106.381074,31.732082],[-106.387829,31.735902],[-106.394719,31.73925],[-106.408116,31.746995],[-106.412058,31.748789],[-106.415684,31.750893],[-106.421849,31.752928],[-106.431606,31.754103],[-106.435718,31.755275],[-106.447752,31.762669],[-106.45143,31.764427],[-106.452806,31.764571],[-106.455059,31.764169],[-106.466135,31.760007],[-106.467556,31.75921],[-106.4685,31.758249],[-106.469242,31.756834],[-106.470566,31.752737],[-106.472076,31.751049],[-106.473207,31.750493],[-106.484642,31.747809],[-106.487746,31.747809],[-106.490549,31.748924],[-106.494677,31.751804],[-106.496479,31.753843],[-106.500089,31.755527],[-106.501391,31.757042],[-106.503482,31.758168],[-106.505818,31.760472],[-106.507326,31.761192],[-106.508774,31.761018],[-106.51006,31.761258],[-106.511301,31.764089],[-106.511899,31.767746],[-106.513687,31.770711],[-106.514871,31.771588],[-106.517521,31.771643],[-106.520988,31.773829],[-106.523647,31.776223],[-106.525318,31.778681],[-106.528498,31.781497],[-106.528641,31.782307],[-106.528124,31.783394],[-106.528075,31.785241],[-106.527061,31.788712],[-106.527402,31.790011],[-106.528391,31.791],[-106.530362,31.792009],[-106.5318,31.791891],[-106.532795,31.792444],[-106.533937,31.795189],[-106.535431,31.797097],[-106.536005,31.798506],[-106.538377,31.800415],[-106.542127,31.802068],[-106.544157,31.80347],[-106.54714,31.807299],[-106.551237,31.8082],[-106.558444,31.810405],[-106.562951,31.811105],[-106.56341,31.812736],[-106.566472,31.813433],[-106.570944,31.810206],[-106.577244,31.810406],[-106.581345,31.813901],[-106.58214,31.815504],[-106.588051,31.822108],[-106.589061,31.822708],[-106.593825,31.824898],[-106.597307,31.8247],[-106.602806,31.825018],[-106.605297,31.82772],[-106.603841,31.832999],[-106.603446,31.83591],[-106.601944,31.839601],[-106.602043,31.844406],[-106.6062,31.846326],[-106.609098,31.846655],[-106.614788,31.846413],[-106.62184,31.852624],[-106.622026,31.853189],[-106.625773,31.856165],[-106.62746,31.860158],[-106.628173,31.86112],[-106.635922,31.866237],[-106.635892,31.871504],[-106.634874,31.874477],[-106.630804,31.87969],[-106.629191,31.883699],[-106.630686,31.886407],[-106.633922,31.88918],[-106.638155,31.891663],[-106.642901,31.892933],[-106.645584,31.895328],[-106.645478,31.898669],[-106.642643,31.902642],[-106.640062,31.905273],[-106.633667,31.909793],[-106.628933,31.911072],[-106.625568,31.912432],[-106.618751,31.917795],[-106.616146,31.917303],[-106.614349,31.918005],[-106.611847,31.920003],[-106.618409,31.922253],[-106.622117,31.924713],[-106.623932,31.925334],[-106.624996,31.925248],[-106.628654,31.923608],[-106.629742,31.926567],[-106.625339,31.930031],[-106.623826,31.932082],[-106.622529,31.934863],[-106.622117,31.936324],[-106.622371,31.940863],[-106.623659,31.94551],[-106.618229,31.947363],[-106.615253,31.948965],[-106.614321,31.951615],[-106.614375,31.955991],[-106.617707,31.956008],[-106.622818,31.952891],[-106.625123,31.95453],[-106.625534,31.957476],[-106.624298,31.961056],[-106.620453,31.963403],[-106.619371,31.964777],[-106.618745,31.966955],[-106.619569,31.971577],[-106.621841,31.972918],[-106.623186,31.972918],[-106.626523,31.970675],[-106.630102,31.971258],[-106.633868,31.974188],[-106.638193,31.976824],[-106.639536,31.980343],[-106.636497,31.985711],[-106.631186,31.98981],[-106.623568,31.990998],[-106.619449,31.994735],[-106.618486,32.000495],[-106.394127,32.001449],[-106.377165,32.001168],[-106.298762,32.001351],[-106.206157,32.001739],[-106.125534,32.002533],[-105.9232,32.002081],[-105.920223,32.001635],[-105.908383,32.001286],[-105.900751,32.001977],[-105.875288,32.001948],[-105.854059,32.00235],[-105.750511,32.002206],[-105.731353,32.001565],[-105.679527,32.001362],[-105.250514,32.000278],[-104.800928,32.000663],[-104.776185,32.00042],[-104.252421,31.999939],[-103.915663,32.000124],[-103.875476,32.000554],[-103.750471,32.000411],[-103.748317,32.000197],[-103.064422,32.000517],[-103.064348,32.123041],[-103.064566,32.127577],[-103.06438,32.13754],[-103.064788,32.240487],[-103.064842,32.619155],[-103.064815,32.624537],[-103.064537,32.62511],[-103.064871,32.682647],[-103.064691,32.733769],[-103.064968,32.754674],[-103.064682,32.784584],[-103.065075,32.784773],[-103.065078,32.785155],[-103.064725,32.78564],[-103.064722,32.786625],[-103.064916,32.857259],[-103.064566,32.899909],[-103.064657,32.959097]]]},"properties":{"name":"tx"},"bbox":[-106.645584,25.83724,-93.508039,36.500704]}]} \ No newline at end of file diff --git a/test/external/tg/data/point.jsonc b/test/external/tg/data/point.jsonc new file mode 100644 index 0000000000..0c1050920c --- /dev/null +++ b/test/external/tg/data/point.jsonc @@ -0,0 +1,362 @@ +[ + { + "geoms": [ + "POINT(0 0)", + "POINT(0 0)" + ], + "dims": [ 0, 0 ], + "relate": [ "0FFFFFFF2", "0FFFFFFF2" ], + "predicates": { + "equals": ["T", "T"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "T"], + "within": ["T", "T"], + "covers": ["T", "T"], + "coveredby": ["T", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POINT(0 0)", + "POINT(1 0)" + ], + "dims": [ 0, 0 ], + "relate": [ "FF0FFF0F2", "FF0FFF0F2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POINT(0 0)", + "POINT EMPTY" + ], + "dims": [ 0, 0 ], + "relate": [ "FF0FFFFF2", "FFFFFF0F2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POINT EMPTY", + "POINT EMPTY" + ], + "dims": [ 0, 0 ], + "relate": [ "FFFFFFFF2", "FFFFFFFF2" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(0 0, 10 10, 20 0)", + "POINT(0 0)" + ], + "dims": [ 1, 0 ], + "relate": [ "FF10F0FF2", "F0FFFF102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "LINESTRING(0 0, 10 10, 20 0)", + "POINT(5 5)" + ], + "dims": [ 1, 0 ], + "relate": [ "0F1FF0FF2", "0FFFFF102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(0 0, 10 10, 20 0)", + "POINT(10 10)" + ], + "dims": [ 1, 0 ], + "relate": [ "0F1FF0FF2", "0FFFFF102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(0 0, 10 10, 20 0)", + "POINT(20 0)" + ], + "dims": [ 1, 0 ], + "relate": [ "FF10F0FF2", "F0FFFF102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "LINESTRING(1 1,2 2)", + "POINT(1.5 1.5)" + ], + "dims": [ 1, 0 ], + "relate": [ "0F1FF0FF2", "0FFFFF102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING(1 1,2 2,1 1,3 3,2 2)", + "POINT(2 2)" + ], + "dims": [ 1, 0 ], + "relate": [ "FF10F0FF2", "F0FFFF102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON((0 0,10 0,10 10,0 10,0 0))", + "POINT(0 0)" + ], + "dims": [ 2, 0 ], + "relate": [ "FF20F1FF2", "F0FFFF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0))", + "POINT(0 0)" + ], + "dims": [ 2, 0 ], + "relate": [ "FF20F1FF2", "F0FFFF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0))", + "POINT(1 1)" + ], + "dims": [ 2, 0 ], + "relate": [ "0F2FF1FF2", "0FFFFF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(2 2,8 2,8 8,2 8,2 2))", + "POINT(5 5)" + ], + "dims": [ 2, 0 ], + "relate": [ "FF2FF10F2", "FF0FFF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(2 2,8 2,8 8,2 8,2 2))", + "POINT(6 6)" + ], + "dims": [ 2, 0 ], + "relate": [ "FF2FF10F2", "FF0FFF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "LINESTRING (0 0,10 10)", + "POINT (15 15)" + ], + "dims": [ 1, 0 ], + "relate": [ "FF1FF00F2", "FF0FFF102" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + {"type":"Feature","id":"a","geometry":{"type":"Point","coordinates":[0,0]}}, + {"type":"Feature","id":"b","geometry":{"type":"Point","coordinates":[0,0]}}, + ], + "dims": [ 0, 0 ], + "relate": [ "0FFFFFFF2", "0FFFFFFF2" ], + "predicates": { + "equals": ["T", "T"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "T"], + "within": ["T", "T"], + "covers": ["T", "T"], + "coveredby": ["T", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POINT(0 0)", + "MULTIPOINT(0 0)" + ], + "dims": [ 0, 0 ], + "relate": [ "0FFFFFFF2", "0FFFFFFF2" ], + "predicates": { + "equals": ["T", "T"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "T"], + "within": ["T", "T"], + "covers": ["T", "T"], + "coveredby": ["T", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + } +] diff --git a/test/external/tg/data/poly.jsonc b/test/external/tg/data/poly.jsonc new file mode 100644 index 0000000000..baeeb5e7b9 --- /dev/null +++ b/test/external/tg/data/poly.jsonc @@ -0,0 +1,723 @@ +[ + { + "geoms": [ + "POLYGON ((0 4, 0 5, 1 5, 1 4, 0 4), (0.21 4.1, 0.21 4.81, 0.85 4.81, 0.85 4.1, 0.21 4.1))", + "LINESTRING (-0.11 4.79, 0.21 4.64)" + ], + "dims": [ 2, 1 ], + "relate": [ "1F2001102", "101F00212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(2 2,8 2,8 8,2 8,2 2))", + "POINT(2 6)" + ], + "dims": [ 2, 0 ], + "relate": [ "FF20F1FF2", "F0FFFF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(2 2,8 2,8 8,2 8,2 2))", + "POINT(1 1)" + ], + "dims": [ 2, 0 ], + "relate": [ "FF20F1FF2", "F0FFFF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(2 2,8 2,8 8,2 8,2 2))", + "POINT(0 0)" + ], + "dims": [ 2, 0 ], + "relate": [ "FF20F1FF2", "F0FFFF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON ((1.1 1, 1.4 1, 1.4 1.1, 1.2 1.1, 1.1 1))", + "LINESTRING (1.11 1.05, 1.15 1.1)" + ], + "dims": [ 2, 1 ], + "relate": [ "FF2FF1102", "FF1FF0212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON((0 0,10 0,10 10,0 10,0 0))", + "POLYGON((10 10,20 10,20 20,10 20,10 10))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2F01212", "FF2F01212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON((0 0,10 0,10 10,0 10,0 0))", + "POLYGON((9 9,19 9,19 19,9 19,9 9))" + ], + "dims": [ 2, 2 ], + "relate": [ "212101212", "212101212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["T", "T"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON((0 0,10 0,10 10,0 10,0 0))", + "POLYGON((9 9,19 9,19 19,9 19,9 9))" + ], + "dims": [ 2, 2 ], + "relate": [ "212101212", "212101212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["T", "T"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON((0 0,10 0,10 10,0 10,0 0))", + "POLYGON((0 0,10 0,10 10,0 10,0 0))" + ], + "dims": [ 2, 2 ], + "relate": [ "2FFF1FFF2", "2FFF1FFF2" ], + "predicates": { + "equals": ["T", "T"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "T"], + "within": ["T", "T"], + "covers": ["T", "T"], + "coveredby": ["T", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON((0 0,10 0,10 10,0 10,0 0))", + "POLYGON((1 1,9 1,9 9,1 9,1 1))" + ], + "dims": [ 2, 2 ], + "relate": [ "212FF1FF2", "2FF1FF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((0 3.1, 0 6.1, 4.1 10, 7 5, 7 1.9, 1 2, 0 3.1), (2 5.7, 3.9 7.4, 4.8 7.3, 6 5, 6 3, 4 3, 2 5.7))", + "POLYGON ((6 3, 6 4.1, 5 4.1, 6 3))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2F11212", "FF2F11212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON ((0 0, 0 9.1, 5 10, 10 0, 0 0))", + "POLYGON ((0 0, 0 6, 5 10, 10 6, 10 0, 0 0))" + ], + "dims": [ 2, 2 ], + "relate": [ "212111212", "212111212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["T", "T"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1 0, 1 8, 6.1 9, 10 7.1, 10 3.1, 4.1 4.1, 4.1 1, 1 0), (3 7, 3 4.9, 6 5.5, 7.1 6, 5.1 7, 5.1 6.2, 3.5 6, 3 7))", + "POLYGON ((1 6.8, 1 4.5, 3 5.5, 3 6.8, 1 6.8))" + ], + "dims": [ 2, 2 ], + "relate": [ "212F11FF2", "2FF11F212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1 5, 1 7.1, 3 7.1, 3 5, 1 5))", + "POLYGON ((1 5.5, 1 6.7, 3 6.7, 3 5.5, 1 5.5))" + ], + "dims": [ 2, 2 ], + "relate": [ "212F11FF2", "2FF11F212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((0 0, 0 6, 5 6, 5 0, 0 0))", + "LINESTRING (0 2.9, 0 6, 3 6)" + ], + "dims": [ 2, 1 ], + "relate": [ "FF2101FF2", "F1FF0F212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON ((0.7 7, 0.7 7.2, 0.9 7.2, 0.9 7, 0.7 7))", + "POLYGON ((0.8 7.2, 0.7 7.1, 0.8 7, 0.9 7.1, 0.8 7.2))" + ], + "dims": [ 2, 2 ], + "relate": [ "212F01FF2", "2FF10F212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1 5, 1 7.1, 3 7.1, 3 5, 1 5))", + "LINESTRING (1 6.4, 3 6.4)" + ], + "dims": [ 2, 1 ], + "relate": [ "1F2F01FF2", "1FFF0F212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1 0, 1 8, 6.1 9, 10 7.1, 10 3.1, 4.1 4.1, 4.1 1, 1 0), (3 7, 3 4.9, 6 5.5, 7.1 6, 5.1 7, 5.1 6.2, 3.5 6, 3 7))", + "LINESTRING (1 6.4, 3 6.4)" + ], + "dims": [ 2, 1 ], + "relate": [ "1F2F01FF2", "1FFF0F212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1 0, 1 8, 6.1 9, 10 7.1, 10 3.1, 4.1 4.1, 4.1 1, 1 0), (3 7, 3 4.9, 6 5.5, 7.1 6, 5.1 7, 5.1 6.2, 3.5 6, 3 7))", + "LINESTRING (1 6, 3 6.7, 1.9 3.1, 4.2 4.9, 8.4 4.9, 7.4 7.4, 4.9 7.6, 4.9 6.4, 4.9 6.4, 3.1 7.2, 2.2 7.1)" + ], + "dims": [ 2, 1 ], + "relate": [ "102001FF2", "10F00F212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((0.7 7, 0.7 7.2, 0.9 7.2, 0.9 7, 0.7 7))", + "LINESTRING (0.8 7.2, 0.7 7.1, 0.8 7, 0.9 7.1, 0.8 7.2)" + ], + "dims": [ 2, 1 ], + "relate": [ "1F20F1FF2", "10FFFF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "F"], + "within": ["F", "T"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((0.7 7, 0.7 7.02, 0.72 7.02, 0.72 7, 0.7 7))", + "LINESTRING (0.7 7.011, 0.695 7.023, 0.70675 7.02585, 0.712 7.02)" + ], + "dims": [ 2, 1 ], + "relate": [ "FF2F011F2", "FF1F0F212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON ((0.7 7, 0.7 7.02, 0.72 7.02, 0.72 7, 0.7 7))", + "LINESTRING (0.7 7.00845, 0.7 7.02, 0.72 7.02, 0.72 7.013)" + ], + "dims": [ 2, 1 ], + "relate": [ "FF2101FF2", "F1FF0F212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON ((0.7 7, 0.7 7.02, 0.72 7.02, 0.72 7, 0.7 7), (0.70325 7.00365, 0.70325 7.01545, 0.71735 7.01545, 0.71735 7.00365, 0.70325 7.00365))", + "LINESTRING (0.7054 7.0175, 0.707 7.013)" + ], + "dims": [ 2, 1 ], + "relate": [ "1020F1102", "1010F0212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["T", "T"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((0.7 7, 0.7 7.02, 0.72 7.02, 0.72 7, 0.7 7), (0.70325 7.00365, 0.70325 7.01545, 0.71735 7.01545, 0.71735 7.00365, 0.70325 7.00365))", + "LINESTRING EMPTY" + ], + "dims": [ 2, 1 ], + "relate": [ "FF2FF1FF2", "FFFFFF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1 1, 2 1, 2 2, 1 2, 1 1), (1.2 1.2, 1.2 1.8, 1.8 1.8, 1.8 1.2, 1.2 1.2))", + "LINESTRING (1.35 1.42, 1.56 1.73, 1.66 1.41)" + ], + "dims": [ 2, 1 ], + "relate": [ "FF2FF1102", "FF1FF0212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1 1, 2 1, 2 2, 1 2, 1 1), (1.2 1.2, 1.2 1.8, 1.8 1.8, 1.8 1.2, 1.2 1.2))", + "LINESTRING (0.28 1.55, 0.5 2.01, 0.77 1.54, 0.29 1.53)" + ], + "dims": [ 2, 1 ], + "relate": [ "FF2FF1102", "FF1FF0212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1 1, 2 1, 2 2, 1 2, 1 1), (1.2 1.2, 1.2 1.8, 1.8 1.8, 1.8 1.2, 1.2 1.2))", + "POLYGON ((0.29 1.84, 0.83 1.84, 0.83 1.16, 0.29 1.16, 0.29 1.84))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2FF1212", "FF2FF1212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1 1, 2 1, 2 2, 1 2, 1 1), (1.2 1.2, 1.2 1.8, 1.8 1.8, 1.8 1.2, 1.2 1.2))", + "POLYGON ((1.27 1.7, 1.62 1.7, 1.62 1.38, 1.27 1.38, 1.27 1.7))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2FF1212", "FF2FF1212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1 1.69, 1.5 2, 1.85 1.26, 1.33 1.21, 1.43 1.64, 1 1.69))", + "POLYGON ((0.72 1.91, 1.17 2, 0.98 1.78, 0.84 1.57, 1.33 1.59, 1.22 1.16, 0.67 1.24, 0.66 1.65, 0.72 1.91))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2FF1212", "FF2FF1212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + {"type":"Feature","id":"a","geometry":{"type":"Polygon","coordinates":[[[1,1],[2,1],[2,2],[1,2],[1,1]]]}}, + {"type":"Feature","id":"b","geometry":{"type":"Polygon","coordinates":[[[1,1],[2,1],[2,2],[1,2],[1,1]]]}} + ], + "dims": [ 2, 2 ], + "relate": [ "2FFF1FFF2", "2FFF1FFF2" ], + "predicates": { + "equals": ["T", "T"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["T", "T"], + "within": ["T", "T"], + "covers": ["T", "T"], + "coveredby": ["T", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73))", + "POLYGON ((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2F11212", "FF2F11212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON ((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73))", + "POLYGON ((1.44 1.84, 1.57 1.84, 1.57 1.72, 1.44 1.72, 1.44 1.84))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2FF1212", "FF2FF1212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92))", + "POLYGON ((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2FF1212", "FF2FF1212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["F", "F"], + "disjoint": ["T", "T"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["F", "F"] + } + }, + { + "geoms": [ + "POLYGON ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92))", + "POLYGON ((1.44 1.84, 1.57 1.84, 1.57 1.72, 1.44 1.72, 1.44 1.84))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2F11212", "FF2F11212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + "POLYGON((1 1,4 1,4 4,1 4,1 2.5,1 1))", + "POLYGON((0 2, 1 2,1 2.5,1 3, 0 3, 0 2))" + ], + "dims": [ 2, 2 ], + "relate": [ "FF2F11212", "FF2F11212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["F", "F"], + "coveredby": ["F", "F"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + { + "geoms": [ + {"type":"Feature","id":"a","geometry":{"type":"Polygon","coordinates":[[[0,0],[10,0],[10,10],[0,10],[0,0]],[[2,2],[8,2],[8,8],[2,8],[2,2]]]}}, + {"type":"Feature","id":"b","geometry":{"type":"Point","coordinates":[0,0]}} + ], + "dims": [ 2, 0 ], + "relate": [ "FF20F1FF2", "F0FFFF212" ], + "predicates": { + "equals": ["F", "F"], + "intersects": ["T", "T"], + "disjoint": ["F", "F"], + "contains": ["F", "F"], + "within": ["F", "F"], + "covers": ["T", "F"], + "coveredby": ["F", "T"], + "crosses": ["F", "F"], + "overlaps": ["F", "F"], + "touches": ["T", "T"] + } + }, + +] diff --git a/test/external/tg/tg_testset_reader.jl b/test/external/tg/tg_testset_reader.jl new file mode 100644 index 0000000000..52f9cc4f3a --- /dev/null +++ b/test/external/tg/tg_testset_reader.jl @@ -0,0 +1,65 @@ +using JSON3 +import GeoFormatTypes as GFT, GeoInterface as GI, GeometryOps as GO +import TGGeometry +import LibGEOS +import WellKnownGeometry + + +using Test + +TG_PRED_SYMBOL_TO_FUNCTION = Dict( + [sym => getproperty(GO, sym) for sym in TGGeometry.TG_PREDICATES] +) + +TG_IGNORE_LIST = Set([:crosses, :overlaps, :equals]) + +testsets = JSON3.read(read(joinpath(@__DIR__, "data", "mpoly.jsonc"))) + +# # assume GEOS is the ultimate source of truth + +testset = testsets[4] +geoms = GO.tuples.(GFT.WellKnownText.((GFT.Geom(),), testset.geoms)) + + + +function run_testsets(json_file_path) + testsets = JSON3.read(read(json_file_path)) + for i in eachindex(testsets) + testset = testsets[i] + geoms = GO.tuples.(GFT.WellKnownText.((GFT.Geom(),), testset.geoms)) + @testset let testset_index = i + for (predname, results) in testset.predicates + !haskey(TG_PRED_SYMBOL_TO_FUNCTION, predname) && continue + predname in TG_IGNORE_LIST && continue + predicate_f = TG_PRED_SYMBOL_TO_FUNCTION[predname] + + @testset let predicate = predname + go_result = try + predicate_f(geoms[1], geoms[2]) + catch e + println("Error: $e") + @test_broken false + continue + end + lg_result = predicate_f(GO.GEOS(), geoms[1], geoms[2]) + # tg_result = predicate_f(GO.TG(), geoms[1], geoms[2]) + + expected = first(results) == "T" + + @test go_result == expected + @test lg_result == expected + # @test tg_result == expected + end + end + end + end +end + +@testset "All TG testsets" begin + for file in filter(endswith(".jsonc"), readdir(joinpath(@__DIR__, "data"); join = true)) + filename = splitext(basename(file))[1] + @testset "$filename" begin + run_testsets(file) + end + end +end From 7c74b4d0835848ce6ba0e3cee734ba4e4dd31e56 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 3 Mar 2025 19:44:27 -0500 Subject: [PATCH 05/12] Implement GEOS, Proj, TG as algorithms --- src/types.jl | 134 ++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 116 insertions(+), 18 deletions(-) diff --git a/src/types.jl b/src/types.jl index 3a89f0f9fd..f88f8c3ec5 100644 --- a/src/types.jl +++ b/src/types.jl @@ -1,14 +1,21 @@ #= # Types -This file defines some fundamental types used in GeometryOps. +This file defines some types used in GeometryOps. !!! warning - Unlike in other Julia packages, only some types are defined in this file, not all. - This is because we define types in the files where they are used, to make it easier to understand the code. + Many type definitions are in `GeometryOpsCore`, not here. Look there for the definitions of the basic types like `Manifold`, `Algorithm`, etc. + + +## Naming + +We force all our external algorithm types to be uppercase, to make them different +from the package names. This is really relevant for the `PROJ` algorithm, since +the Julia package is called `Proj.jl`. If we called our type `Proj`, it would +conflict with the package's name - as we saw with GeoFormatTypes' `GeoJSON` and `GeoJSON.jl`. =# -export GEOS +export GEOS, TG, PROJ #= ## `GEOS` @@ -23,6 +30,62 @@ useful for two reasons: =# +# ## C-library planar algorithms +""" + abstract type CLibraryPlanarAlgorithm <: GeometryOpsCore.SingleManifoldAlgorithm{Planar} end + +This is a type which extends `GeometryOpsCore.SingleManifoldAlgorithm{Planar}`, +and is used as an abstract supertype for some C library based algorithms. + +The type requires that algorithm structs be arranged as: +``` +struct MyAlgorithm <: CLibraryPlanarAlgorithm + manifold::Planar + params::NamedTuple +end +``` + +Then you get a nice constructor for free, as well as the +`get(alg, key, value)` and `get(alg, key) do ...` syntax. +Plus the [`enforce`](@ref) method, which will check that given keyword arguments +are present. +""" +abstract type CLibraryPlanarAlgorithm <: GeometryOpsCore.SingleManifoldAlgorithm{Planar} end + + +function (::Type{T})(; params...) where {T <: CLibraryPlanarAlgorithm} + nt = NamedTuple(params) + return T(Planar(), nt) +end +(T::Type{<: CLibraryPlanarAlgorithm})(params::NamedTuple) = T(Planar(), params) + + +# These are definitions for convenience, so we don't have to type out +# `alg.params` every time. + +Base.get(alg::CLibraryPlanarAlgorithm, key, value) = Base.get(alg.params, key, value) +Base.get(f::Function, alg::CLibraryPlanarAlgorithm, key) = Base.get(f, alg.params, key) + +""" + enforce(alg::CLibraryPlanarAlgorithm, kw::Symbol, f) + +Enforce the presence of a keyword argument in a `GEOS` algorithm, and return `alg.params[kw]`. + +Throws an error if the key is not present, and mentions `f` in the error message (since there isn't +a good way to get the name of the function that called this method). + +This applies to all `CLibraryPlanarAlgorithm` types, like [`GEOS`](@ref) and [`TG`](@ref). +""" +function enforce(alg::CLibraryPlanarAlgorithm, kw::Symbol, f) + if haskey(alg.params, kw) + return alg.params[kw] + else + error("$(f) requires a `$(kw)` keyword argument to the `GEOS` algorithm, which was not provided.") + end +end + +# ## GEOS - call into LibGEOS.jl + """ GEOS(; params...) @@ -33,31 +96,66 @@ Dispatch is generally carried out using the names of the keyword arguments. For example, `segmentize` will only accept a `GEOS` struct with only a `max_distance` keyword, and no other. -It's generally a lot slower than the native Julia implementations, since +It's generally somewhat slower than the native Julia implementations, since it must convert to the LibGEOS implementation and back - so be warned! + +## Extended help + +This uses the [LibGEOS.jl](https://github.com/JuliaGeometry/LibGEOS.jl) package, +which is a Julia wrapper around the C library GEOS (https://trac.osgeo.org/geos). """ -struct GEOS +struct GEOS <: CLibraryPlanarAlgorithm # SingleManifoldAlgorithm{Planar} + manifold::Planar params::NamedTuple end -function GEOS(; params...) - nt = NamedTuple(params) - return GEOS(nt) +# ## TG - call into TGGeometry.jl + +""" + TG(; params...) + +A struct which instructs the method it's passed to as an algorithm +to use the appropriate TG function via `TGGeometry.jl` for the operation. + +It's generally a lot faster than the native Julia implementations, but only +supports planar manifolds / operations. Also, it only supports geometric predicates, +specifically the ones which the underlying `tg` library supports. These are: + +[`equals`](@ref), [`intersects`](@ref), [`disjoint`](@ref), [`contains`](@ref), +[`within`](@ref), [`covers`](@ref), [`coveredby`](@ref), and [`touches`](@ref). + +## Extended help + +This uses the [TGGeometry.jl](https://github.com/JuliaGeo/TGGeometry.jl) package, +which is a Julia wrapper around the `tg` C library (https://github.com/tidwall/tg). +""" +struct TG <: CLibraryPlanarAlgorithm + manifold::Planar + params::NamedTuple end -# These are definitions for convenience, so we don't have to type out -# `alg.params` every time. -Base.get(alg::GEOS, key, value) = Base.get(alg.params, key, value) -Base.get(f::Function, alg::GEOS, key) = Base.get(f, alg.params, key) + +# ## PROJ - call into Proj.jl """ - enforce(alg::GO.GEOS, kw::Symbol, f) + PROJ(; params...) -Enforce the presence of a keyword argument in a `GEOS` algorithm, and return `alg.params[kw]`. +A struct which instructs the method it's passed to as an algorithm +to use the appropriate PROJ function via `Proj.jl` for the operation. -Throws an error if the key is not present, and mentions `f` in the error message (since there isn't -a good way to get the name of the function that called this method). +## Extended help + +This is the default algorithm for [`reproject`](@ref), and is also the default algorithm for """ -function enforce(alg::GEOS, kw::Symbol, f) +struct PROJ{M <: Manifold} <: Algorithm{M} + manifold::M + params::NamedTuple +end + +# We repeat these functions here because PROJ does not subtype `CLibraryPlanarAlgorithm`. + +Base.get(alg::PROJ, key, value) = Base.get(alg.params, key, value) +Base.get(f::Function, alg::PROJ, key) = Base.get(f, alg.params, key) +function enforce(alg::PROJ, kw::Symbol, f) if haskey(alg.params, kw) return alg.params[kw] else From fc5bd5af457f5770aaa8980f14bef733dc95cc71 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 14 Apr 2025 18:10:46 -0400 Subject: [PATCH 06/12] Add docstring and API functions to manifolds --- GeometryOpsCore/src/types/algorithm.jl | 122 +++++++++++++++++++++++-- 1 file changed, 115 insertions(+), 7 deletions(-) diff --git a/GeometryOpsCore/src/types/algorithm.jl b/GeometryOpsCore/src/types/algorithm.jl index 5fb21c4a30..4e2f171e2c 100644 --- a/GeometryOpsCore/src/types/algorithm.jl +++ b/GeometryOpsCore/src/types/algorithm.jl @@ -42,8 +42,80 @@ MyIndependentAlgorithm(m::Manifold; kw1 = 1, kw2 = "hello") = MyIndependentAlgor export Algorithm, AutoAlgorithm, ManifoldIndependentAlgorithm, SingleManifoldAlgorithm, NoAlgorithm +""" + abstract type Algorithm{M <: Manifold} + +The abstract supertype for all GeometryOps algorithms. +These define how to perform a particular [`Operation`](@ref). + +An algorithm may be associated with one or many [`Manifold`](@ref)s. +It may either have the manifold as a field, or have it as a static parameter +(e.g. `struct GEOS <: Algorithm{Planar}`). + +## Interface + +All `Algorithm`s must implement the following methods: + +- `rebuild(alg, manifold::Manifold)` Rebuild algorithm `alg` with a new manifold + as passed in the second argument. This may error and throw a [`WrongManifoldException`](@ref) + if the manifold is not compatible with that algorithm. +- `manifold(alg::Algorithm)` Return the manifold associated with the algorithm. +- `best_manifold(alg::Algorithm, input)`: Return the best manifold for that algorithm, in the absence of + any other context. WARNING: this may change in future and is not stable! + +The actual implementation is left to the implementation of that particular [`Operation`](@ref). + +## Notable subtypes + +- [`AutoAlgorithm`](@ref): Tells the [`Operation`](@ref) receiving + it to automatically select the best algorithm for its input data. +- [`ManifoldIndependentAlgorithm`](@ref): An abstract supertype for an algorithm that works on any manifold. + The manifold must be stored in the algorithm for a `ManifoldIndependentAlgorithm`, and accessed via `manifold(alg)`. +- [`SingleManifoldAlgorithm`](@ref): An abstract supertype for an algorithm that only works on a + single manifold, specified in its type parameter. `SingleManifoldAlgorithm{Planar}` is a special case + that does not have to store its manifold, since that doesn't contain any information. All other + `SingleManifoldAlgorithm`s must store their manifold, since they do contain information. +- [`NoAlgorithm`](@ref): A type that indicates no algorithm is to be used, essentially the equivalent + of `nothing`. +""" abstract type Algorithm{M <: Manifold} end +""" + manifold(alg::Algorithm)::Manifold + +Return the manifold associated with the algorithm. + +May be any subtype of [`Manifold`](@ref). +""" +function manifold end + +# The below definition is a special case, since [`Planar`](@ref) has no contents, being a +# singleton struct. +# If that changes in the future, then this method must be deleted. +manifold(::Algorithm{<: Planar}) = Planar() + +""" + best_manifold(alg::Algorithm, input)::Manifold + +Return the best [`Manifold`](@ref) for the algorithm `alg` based on the given `input`. + +May be any subtype of [`Manifold`](@ref). +""" +function best_manifold end + +# ## Implementation of basic algorithm types + +# ### `AutoAlgorithm` + +""" + AutoAlgorithm{T, M <: Manifold}(manifold::M, x::T) + +Indicates that the [`Operation`](@ref) should automatically select the best algorithm for +its input data, based on the passed in manifold (may be an [`AutoManifold`](@ref)) and data +`x`. + +The actual implementation is left to the implementation of that particular [`Operation`](@ref). +""" struct AutoAlgorithm{T, M <: Manifold} <: Algorithm{M} manifold::M x::T @@ -52,18 +124,33 @@ end AutoAlgorithm(m::Manifold; kwargs...) = AutoAlgorithm(m, kwargs) AutoAlgorithm(; kwargs...) = AutoAlgorithm(AutoManifold(), kwargs) +manifold(a::AutoAlgorithm) = a.manifold +rebuild(a::AutoAlgorithm, m::Manifold) = AutoAlgorithm(m, a.x) + + +# ### `ManifoldIndependentAlgorithm` + +""" + abstract type ManifoldIndependentAlgorithm{M <: Manifold} <: Algorithm{M} + +The abstract supertype for a manifold-independent algorithm, i.e., one which may work on any manifold. +The manifold is stored in the algorithm for a `ManifoldIndependentAlgorithm`, and accessed via `manifold(alg)`. +""" abstract type ManifoldIndependentAlgorithm{M <: Manifold} <: Algorithm{M} end -abstract type SingleManifoldAlgorithm{M <: Manifold} <: Algorithm{M} end -struct NoAlgorithm{M <: Manifold} <: Algorithm{M} - m::M -end +# ### `SingleManifoldAlgorithm` -NoAlgorithm() = NoAlgorithm(Planar()) # TODO: add a NoManifold or AutoManifold type? -# Maybe AutoManifold -# and then we have DD.format like materialization +""" + abstract type SingleManifoldAlgorithm{M <: Manifold} <: Algorithm{M} + +The abstract supertype for a single-manifold algorithm, i.e., one which is known to only work +on a single manifold. + +The manifold may be accessed via `manifold(alg)`. +""" +abstract type SingleManifoldAlgorithm{M <: Manifold} <: Algorithm{M} end function (Alg::Type{<: SingleManifoldAlgorithm{M}})(m::M; kwargs...) where {M} # successful - the algorithm is designed for this manifold @@ -76,3 +163,24 @@ function (Alg::Type{<: SingleManifoldAlgorithm{M}})(m::Manifold; kwargs...) wher # throw a WrongManifoldException and be done with it throw(WrongManifoldException{typeof(m), M, Alg}()) end + + +# ### `NoAlgorithm` + +""" + NoAlgorithm(manifold) + +A type that indicates no algorithm is to be used, essentially the equivalent +of `nothing`. + +Stores a manifold within itself. +""" +struct NoAlgorithm{M <: Manifold} <: Algorithm{M} + m::M +end + +NoAlgorithm() = NoAlgorithm(Planar()) # TODO: add a NoManifold or AutoManifold type? + +manifold(a::NoAlgorithm) = a.m +# Maybe AutoManifold +# and then we have DD.format like materialization \ No newline at end of file From 492df71982ba805bd7b82ba4fd8ae638b74d2afb Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 14 Apr 2025 18:19:14 -0400 Subject: [PATCH 07/12] define the new interface on algorithm types implemented in GO --- src/GeometryOps.jl | 1 + src/types.jl | 30 +++++++++++++++++++++++++----- 2 files changed, 26 insertions(+), 5 deletions(-) diff --git a/src/GeometryOps.jl b/src/GeometryOps.jl index 030597023b..c0d169f6eb 100644 --- a/src/GeometryOps.jl +++ b/src/GeometryOps.jl @@ -6,6 +6,7 @@ import GeometryOpsCore import GeometryOpsCore: TraitTarget, Manifold, Planar, Spherical, Geodesic, AutoManifold, WrongManifoldException, + manifold, best_manifold, Algorithm, AutoAlgorithm, ManifoldIndependentAlgorithm, SingleManifoldAlgorithm, NoAlgorithm, BoolsAsTypes, True, False, booltype, istrue, TaskFunctors, diff --git a/src/types.jl b/src/types.jl index f88f8c3ec5..91a9ac0488 100644 --- a/src/types.jl +++ b/src/types.jl @@ -52,13 +52,26 @@ are present. """ abstract type CLibraryPlanarAlgorithm <: GeometryOpsCore.SingleManifoldAlgorithm{Planar} end - function (::Type{T})(; params...) where {T <: CLibraryPlanarAlgorithm} nt = NamedTuple(params) return T(Planar(), nt) end -(T::Type{<: CLibraryPlanarAlgorithm})(params::NamedTuple) = T(Planar(), params) +(T::Type{<: CLibraryPlanarAlgorithm})(::Planar, params::NamedTuple) = T(params) + +manifold(alg::CLibraryPlanarAlgorithm) = Planar() +best_manifold(alg::CLibraryPlanarAlgorithm, input) = Planar() + +function rebuild(alg::T, m::Planar) where {T <: CLibraryPlanarAlgorithm} + return T(m, alg.params) +end +function rebuild(alg::T, m::AutoManifold) where {T <: CLibraryPlanarAlgorithm} + return T(Planar(), alg.params) +end + +function rebuild(alg::T, m::M) where {T <: CLibraryPlanarAlgorithm, M <: Manifold} + throw(GeometryOpsCore.WrongManifoldException{M, Planar, T}("The algorithm `$(typeof(alg))` is only compatible with planar manifolds.")) +end # These are definitions for convenience, so we don't have to type out # `alg.params` every time. @@ -105,7 +118,6 @@ This uses the [LibGEOS.jl](https://github.com/JuliaGeometry/LibGEOS.jl) package, which is a Julia wrapper around the C library GEOS (https://trac.osgeo.org/geos). """ struct GEOS <: CLibraryPlanarAlgorithm # SingleManifoldAlgorithm{Planar} - manifold::Planar params::NamedTuple end @@ -130,7 +142,6 @@ This uses the [TGGeometry.jl](https://github.com/JuliaGeo/TGGeometry.jl) package which is a Julia wrapper around the `tg` C library (https://github.com/tidwall/tg). """ struct TG <: CLibraryPlanarAlgorithm - manifold::Planar params::NamedTuple end @@ -144,13 +155,22 @@ to use the appropriate PROJ function via `Proj.jl` for the operation. ## Extended help -This is the default algorithm for [`reproject`](@ref), and is also the default algorithm for +This is the default algorithm for [`reproject`](@ref), and will also be the default algorithm for +operations on geodesics like [`area`](@ref) and [`arclength`](@ref). """ struct PROJ{M <: Manifold} <: Algorithm{M} manifold::M params::NamedTuple end +PROJ() = PROJ(Planar(), NamedTuple()) +PROJ(; params...) = PROJ(Planar(), NamedTuple(params)) +PROJ(m::Manifold) = PROJ(m, NamedTuple()) + +manifold(alg::PROJ) = alg.manifold +rebuild(alg::PROJ, m::Manifold) = PROJ(m, alg.params) +rebuild(alg::PROJ, params::NamedTuple) = PROJ(alg.manifold, params) + # We repeat these functions here because PROJ does not subtype `CLibraryPlanarAlgorithm`. Base.get(alg::PROJ, key, value) = Base.get(alg.params, key, value) From 94fe7e2e792448b58114c5de9d9e704571d5b269 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 14 Apr 2025 18:29:59 -0400 Subject: [PATCH 08/12] remove TG jsonc All these files, translated to JSON, are now in TGGeometry.jl, along with a reader that we can copy from there at some point. So there's no reason to keep those files in here. --- test/external/tg/data/LICENSE.md | 21 - test/external/tg/data/gcol.jsonc | 62 -- test/external/tg/data/line.jsonc | 442 ------------- test/external/tg/data/mline.jsonc | 203 ------ test/external/tg/data/mpoint.jsonc | 202 ------ test/external/tg/data/mpoly.jsonc | 122 ---- test/external/tg/data/named_geoms.geojson | 1 - test/external/tg/data/point.jsonc | 362 ----------- test/external/tg/data/poly.jsonc | 723 ---------------------- 9 files changed, 2138 deletions(-) delete mode 100644 test/external/tg/data/LICENSE.md delete mode 100644 test/external/tg/data/gcol.jsonc delete mode 100644 test/external/tg/data/line.jsonc delete mode 100644 test/external/tg/data/mline.jsonc delete mode 100644 test/external/tg/data/mpoint.jsonc delete mode 100644 test/external/tg/data/mpoly.jsonc delete mode 100644 test/external/tg/data/named_geoms.geojson delete mode 100644 test/external/tg/data/point.jsonc delete mode 100644 test/external/tg/data/poly.jsonc diff --git a/test/external/tg/data/LICENSE.md b/test/external/tg/data/LICENSE.md deleted file mode 100644 index 52328ff825..0000000000 --- a/test/external/tg/data/LICENSE.md +++ /dev/null @@ -1,21 +0,0 @@ -Reproduced from https://github.com/tidwall/tg/blob/main/LICENSE - -> Copyright (c) 2023 Joshua J Baker -> -> Permission is hereby granted, free of charge, to any person obtaining a copy -> of this software and associated documentation files (the "Software"), to deal -> in the Software without restriction, including without limitation the rights -> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -> copies of the Software, and to permit persons to whom the Software is -> furnished to do so, subject to the following conditions: -> -> The above copyright notice and this permission notice shall be included in -> all copies or substantial portions of the Software. -> -> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -> THE SOFTWARE. diff --git a/test/external/tg/data/gcol.jsonc b/test/external/tg/data/gcol.jsonc deleted file mode 100644 index ca52f75350..0000000000 --- a/test/external/tg/data/gcol.jsonc +++ /dev/null @@ -1,62 +0,0 @@ -[ - { - "geoms": [ - "GEOMETRYCOLLECTION(POLYGON((1 1,4 1,4 4,1 4,1 2.5,1 1)))", - "GEOMETRYCOLLECTION(POLYGON((0 2, 1 2,1 2.5,1 3, 0 3, 0 2)))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2F11212", "FF2F11212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "GEOMETRYCOLLECTION EMPTY", - {"type":"Feature","id":"b","geometry":{"type":"LineString","coordinates":[[1.5,1.8],[1.5,1.4]]}} - ], - "dims": [ -1, 1 ], - "relate": [ "FFFFFF102", "FF1FF0FF2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "GEOMETRYCOLLECTION EMPTY", - "GEOMETRYCOLLECTION(POLYGON((0 2, 1 2,1 2.5,1 3, 0 3, 0 2)))" - ], - "dims": [ -1, 2 ], - "relate": [ "FFFFFF212", "FF2FF1FF2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - } -] diff --git a/test/external/tg/data/line.jsonc b/test/external/tg/data/line.jsonc deleted file mode 100644 index 36020e64d2..0000000000 --- a/test/external/tg/data/line.jsonc +++ /dev/null @@ -1,442 +0,0 @@ -[ - { - "geoms": [ - "LINESTRING(1 1,2 1,2 2)", - "LINESTRING(1.5 0.5,1.5 1.5,2.5 1.5)" - ], - "dims": [ 1, 1 ], - "relate": [ "0F1FF0102", "0F1FF0102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(1 1,2 1)", - "LINESTRING(1.5 1,3 1)" - ], - "dims": [ 1, 1 ], - "relate": [ "1010F0102", "1010F0102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["T", "T"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(1 1,2 1)", - "LINESTRING(2 1,3 1)" - ], - "dims": [ 1, 1 ], - "relate": [ "FF1F00102", "FF1F00102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "LINESTRING(1 1,2 2,3 2,4 1)", - "LINESTRING(1.5 3,2.2 2,3.2 2,4 1.5,3.2 0.7)" - ], - "dims": [ 1, 1 ], - "relate": [ "1F1FF0102", "1F1FF0102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["T", "T"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(1 1,2 2)", - "LINESTRING(1 1,2 2)" - ], - "dims": [ 1, 1 ], - "relate": [ "1FFF0FFF2", "1FFF0FFF2" ], - "predicates": { - "equals": ["T", "T"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "T"], - "within": ["T", "T"], - "covers": ["T", "T"], - "coveredby": ["T", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(1.1 1,2 1,2 2)", - "LINESTRING(1 1,2 1,2 2)" - ], - "dims": [ 1, 1 ], - "relate": [ "1FF00F102", "101F00FF2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "T"], - "within": ["T", "F"], - "covers": ["F", "T"], - "coveredby": ["T", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(1 1,2 1,2 2)", - "LINESTRING(1 1,1 2)" - ], - "dims": [ 1, 1 ], - "relate": [ "FF1F00102", "FF1F00102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "LINESTRING(1 1,2 1,2 2)", - "LINESTRING(1.5 1,1.5 2)" - ], - "dims": [ 1, 1 ], - "relate": [ "F01FF0102", "FF10F0102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "LINESTRING (1 1, 1.31 1, 1.41 1.1, 1.6 0.89)", - "LINESTRING (1 1, 1.11 1.11, 1.2 0.9, 1.24 1)" - ], - "dims": [ 1, 1 ], - "relate": [ "001F001F2", "0F100F102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING (1 1, 1.31 1, 1.41 1.1, 1.6 0.89)", - "LINESTRING (1 1, 1.11 1.11, 1.2 0.9, 1.24 1)" - ], - "dims": [ 1, 1 ], - "relate": [ "001F001F2", "0F100F102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING (1 1, 1.31 1, 1.41 1.1, 1.6 0.89)", - "LINESTRING (1.02 1, 1.08 1.1, 1.15 0.9, 1.17 1, 1.39 1)" - ], - "dims": [ 1, 1 ], - "relate": [ "101FF0102", "1F10F0102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["T", "T"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING (1 1, 1.31 1, 1.41 1.1, 1.6 0.89)", - "LINESTRING (1 0.94, 1.06 1, 1.12 0.94)" - ], - "dims": [ 1, 1 ], - "relate": [ "0F1FF0102", "0F1FF0102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING (1 1, 1.31 1, 1.41 1.1, 1.6 0.89)", - "LINESTRING (1.03 0.95, 1.13 1.09, 1.21 0.94, 1.25 1)" - ], - "dims": [ 1, 1 ], - "relate": [ "001FF0102", "0F10F0102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING (1 1, 1.31 1, 1.41 1.1, 1.6 0.89)", - "LINESTRING (1 1, 1.23 0.85, 1.31 1)" - ], - "dims": [ 1, 1 ], - "relate": [ "F01F001F2", "FF100F102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "LINESTRING (0 0, 9.97 0.03, 9.97 8.03, 4.97 9.97, 0 8, 0 0)", - "LINESTRING (-0.03 -0.07, 0.03 6.03, 1.03 10.03, 9.97 0.07, -0.03 0.07, 0 6.03)" - ], - "dims": [ 1, 1 ], - "relate": [ "001FFF102", "0F10F01F2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1 1, 2 1, 2 2, 1 2, 1 1), (1.2 1.2, 1.2 1.8, 1.8 1.8, 1.8 1.2, 1.2 1.2))", - "LINESTRING (1.5 1.8, 1.5 1.4)" - ], - "dims": [ 2, 1 ], - "relate": [ "FF2F01102", "FF1F00212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - {"type":"Feature","id":"a","geometry":{"type":"Polygon","coordinates":[[[1,1],[2,1],[2,2],[1,2],[1,1]],[[1.2,1.2],[1.2,1.8],[1.8,1.8],[1.8,1.2],[1.2,1.2]]]}}, - {"type":"Feature","id":"b","geometry":{"type":"LineString","coordinates":[[1.5,1.8],[1.5,1.4]]}} - ], - "dims": [ 2, 1 ], - "relate": [ "FF2F01102", "FF1F00212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - {"type":"Feature","id":"a","geometry":{"type":"Point","coordinates":[1.5,1.8]}}, - {"type":"Feature","id":"b","geometry":{"type":"LineString","coordinates":[[1.5,1.8],[1.5,1.4]]}} - ], - "dims": [ 0, 1 ], - "relate": [ "F0FFFF102", "FF10F0FF2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "T"], - "coveredby": ["T", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - {"type":"Feature","id":"a","geometry":{"type":"LineString","coordinates":[[1.5,1.8],[1.5,1.4]]}}, - {"type":"Feature","id":"b","geometry":{"type":"LineString","coordinates":[[1.5,1.8],[1.5,1.4]]}} - ], - "dims": [ 1, 1 ], - "relate": [ "1FFF0FFF2", "1FFF0FFF2" ], - "predicates": { - "equals": ["T", "T"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "T"], - "within": ["T", "T"], - "covers": ["T", "T"], - "coveredby": ["T", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(1 0, 2 0)", - "LINESTRING(0 0,3 0)" - ], - "dims": [ 1, 1 ], - "relate": [ "1FF0FF102", "101FF0FF2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "T"], - "within": ["T", "F"], - "covers": ["F", "T"], - "coveredby": ["T", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(1 1,2 2)", - "LINESTRING(0 0,3 3)" - ], - "dims": [ 1, 1 ], - "relate": [ "1FF0FF102", "101FF0FF2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "T"], - "within": ["T", "F"], - "covers": ["F", "T"], - "coveredby": ["T", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(-0.5 0.5,-0.1 0.1)", - "LINESTRING(-1 1,1 -1)" - ], - "dims": [ 1, 1 ], - "relate": [ "1FF0FF102", "101FF0FF2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "T"], - "within": ["T", "F"], - "covers": ["F", "T"], - "coveredby": ["T", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - } -] diff --git a/test/external/tg/data/mline.jsonc b/test/external/tg/data/mline.jsonc deleted file mode 100644 index 837e7a4295..0000000000 --- a/test/external/tg/data/mline.jsonc +++ /dev/null @@ -1,203 +0,0 @@ -[ - { - "geoms": [ - "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", - "POINT (1.34 1.43)" - ], - "dims": [ 1, 0 ], - "relate": [ "FF1FF00F2", "FF0FFF102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", - "POINT (1.32 1.79)" - ], - "dims": [ 1, 0 ], - "relate": [ "0F1FF0FF2", "0FFFFF102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", - "POINT (1.18 1.26)" - ], - "dims": [ 1, 0 ], - "relate": [ "FF10F0FF2", "F0FFFF102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", - "MULTIPOINT ((1.18 1.26), (1.9 1.7))" - ], - "dims": [ 1, 0 ], - "relate": [ "FF10F0FF2", "F0FFFF102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", - "POLYGON ((1.31 1.43, 1.77 1.43, 1.77 1.07, 1.31 1.07, 1.31 1.43))" - ], - "dims": [ 1, 2 ], - "relate": [ "FF1FF0212", "FF2FF1102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", - "POLYGON ((1.18 1.26, 1.71 1.26, 1.71 1.07, 1.18 1.07, 1.18 1.26))" - ], - "dims": [ 1, 2 ], - "relate": [ "FF1F00212", "FF2F01102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "LINESTRING (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96)", - "POLYGON ((1.18 1.26, 1.18 1.54, 1.5 1.54, 1.5 1.26, 1.18 1.26))" - ], - "dims": [ 1, 2 ], - "relate": [ "101F00212", "1F2001102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", - "POLYGON ((1.18 1.26, 1.18 1.54, 1.5 1.54, 1.5 1.26, 1.18 1.26))" - ], - "dims": [ 1, 2 ], - "relate": [ "101F00212", "1F2001102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))", - "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.18 1.26, 1.32 1.79, 1.68 1.48, 2.16 1.73, 2.01 1.89, 1.71 1.73, 1.68 1.88, 1.35 1.96))" - ], - "dims": [ 1, 1 ], - "relate": [ "1FFF0FFF2", "1FFF0FFF2" ], - "predicates": { - "equals": ["T", "T"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "T"], - "within": ["T", "T"], - "covers": ["T", "T"], - "coveredby": ["T", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7)", - "MULTILINESTRING ((1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7), (1.1 1.39, 1.31 1.88, 1.65 1.8, 1.58 1.66, 1.9 1.7))" - ], - "dims": [ 1, 1 ], - "relate": [ "1FF0FFFF2", "10FFFFFF2" ], - "predicates": { - "equals": ["T", "T"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "T"], - "within": ["T", "T"], - "covers": ["T", "T"], - "coveredby": ["T", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - } - -] \ No newline at end of file diff --git a/test/external/tg/data/mpoint.jsonc b/test/external/tg/data/mpoint.jsonc deleted file mode 100644 index ace2faad97..0000000000 --- a/test/external/tg/data/mpoint.jsonc +++ /dev/null @@ -1,202 +0,0 @@ -[ - { - "geoms": [ - "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", - "MULTIPOINT ((0.95 1.52), (1.09 1.73), (1.13 1.52), (1.6 1.54), (1.52 1.13), (1.22 1.33))" - ], - "dims": [ 0, 0 ], - "relate": [ "FF0FFF0F2", "FF0FFF0F2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", - "MULTIPOINT ((1.26 1.6), (1.5 1.72), (1.3 1.39), (0.92 1.57))" - ], - "dims": [ 0, 0 ], - "relate": [ "0F0FFF0F2", "0F0FFF0F2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["T", "T"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", - "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))" - ], - "dims": [ 0, 0 ], - "relate": [ "0FFFFFFF2", "0FFFFFFF2" ], - "predicates": { - "equals": ["T", "T"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "T"], - "within": ["T", "T"], - "covers": ["T", "T"], - "coveredby": ["T", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", - "POLYGON ((0.98 1.56, 1.43 1.56, 1.43 1.31, 0.98 1.31, 0.98 1.56))" - ], - "dims": [ 0, 2 ], - "relate": [ "0F0FFF212", "0F2FF10F2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", - "POLYGON ((1.19 1.44, 1.62 1.44, 1.62 1.18, 1.19 1.18, 1.19 1.44), (1.31 1.39, 1.57 1.39, 1.57 1.26, 1.31 1.26, 1.31 1.39))" - ], - "dims": [ 0, 2 ], - "relate": [ "FF0FFF212", "FF2FF10F2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", - "LINESTRING (1.13 1.27, 1.23 1.45, 1.51 1.52, 1.61 1.15, 1.21 1.17)" - ], - "dims": [ 0, 1 ], - "relate": [ "FF0FFF102", "FF1FF00F2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", - "LINESTRING (1.24 1.16, 1.41 1.34, 1.6 1.18)" - ], - "dims": [ 0, 1 ], - "relate": [ "0F0FFF102", "0F1FF00F2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", - "LINESTRING (1.16 1.15, 1.36 1.47, 1.55 1.42, 1.26 1.6)" - ], - "dims": [ 0, 1 ], - "relate": [ "F00FFF102", "FF10F00F2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", - "POLYGON ((1.41 1.34, 1.69 1.34, 1.69 1.16, 1.41 1.16, 1.41 1.34))" - ], - "dims": [ 0, 2 ], - "relate": [ "F00FFF212", "FF20F10F2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "MULTIPOINT ((1.04 1.22), (1.26 1.6), (1.73 1.39), (1.38 1.07), (1.41 1.34))", - "POLYGON ((1.26 1.6, 1.58 1.6, 1.58 1.19, 1.26 1.19, 1.26 1.6))" - ], - "dims": [ 0, 2 ], - "relate": [ "000FFF212", "0F20F10F2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - } -] \ No newline at end of file diff --git a/test/external/tg/data/mpoly.jsonc b/test/external/tg/data/mpoly.jsonc deleted file mode 100644 index 836849258f..0000000000 --- a/test/external/tg/data/mpoly.jsonc +++ /dev/null @@ -1,122 +0,0 @@ -[ - { - "geoms": [ - "MULTIPOLYGON (((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73)), ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92)))", - "MULTIPOINT ((1.2 1.66), (1.25 1.96), (1.53 1.72))" - ], - "dims": [ 2, 0 ], - "relate": [ "FF2FF10F2", "FF0FFF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTIPOLYGON (((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73)), ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92)))", - "MULTILINESTRING ((1.17 1.63, 1.25 1.7, 1.27 1.65), (1.41 1.93, 1.54 1.77, 1.53 1.48))" - ], - "dims": [ 2, 1 ], - "relate": [ "FF2FF1102", "FF1FF0212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTIPOLYGON (((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73)), ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92)))", - "MULTIPOLYGON (((1.18 1.7, 1.27 1.7, 1.27 1.61, 1.18 1.61, 1.18 1.7)), ((1.56 1.54, 1.72 1.54, 1.72 1.37, 1.56 1.37, 1.56 1.54)))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2FF1212", "FF2FF1212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "MULTIPOLYGON (((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73)), ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92)))", - "POLYGON ((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2F11212", "FF2F11212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "MULTIPOLYGON (((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73)), ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92)))", - "MULTIPOLYGON (((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68)), ((1.44 1.84, 1.57 1.84, 1.57 1.72, 1.44 1.72, 1.44 1.84)))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2F11212", "FF2F11212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68))", - "MULTIPOLYGON (((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68)), ((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68)))" - ], - "dims": [ 2, 2 ], - "relate": [ "2FF10FFF2", "21FF0FFF2" ], - "predicates": { - "equals": ["T", "T"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "T"], - "within": ["T", "T"], - "covers": ["T", "T"], - "coveredby": ["T", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - } -] \ No newline at end of file diff --git a/test/external/tg/data/named_geoms.geojson b/test/external/tg/data/named_geoms.geojson deleted file mode 100644 index e591b800c8..0000000000 --- a/test/external/tg/data/named_geoms.geojson +++ /dev/null @@ -1 +0,0 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-114.635458,34.876902],[-114.636768,34.885705],[-114.636725,34.889107],[-114.635425,34.895192],[-114.63185,34.903942],[-114.630877,34.907263],[-114.630552,34.911852],[-114.631537,34.916153],[-114.633237,34.92123],[-114.633253,34.924608],[-114.632196,34.930628],[-114.629753,34.938684],[-114.629811,34.94481],[-114.631681,34.95131],[-114.634274,34.956662],[-114.634953,34.958918],[-114.635237,34.965149],[-114.634607,34.96906],[-114.629907,34.980791],[-114.629129,34.986132],[-114.629443,34.991825],[-114.630244,34.99464],[-114.631807,34.998632],[-114.632665,34.999806],[-114.63557,35.005933],[-114.637071,35.010371],[-114.637769,35.014948],[-114.63819,35.022069],[-114.637524,35.027053],[-114.633715,35.035602],[-114.629027,35.042531],[-114.625799,35.045834],[-114.615902,35.05272],[-114.610701,35.055458],[-114.606694,35.058941],[-114.604715,35.061744],[-114.603619,35.064226],[-114.602908,35.068588],[-114.603175,35.070445],[-114.604736,35.07483],[-114.607701,35.078533],[-114.613132,35.083097],[-114.61842,35.086539],[-114.622517,35.088703],[-114.632053,35.092559],[-114.63937,35.094733],[-114.642831,35.096503],[-114.646579,35.10082],[-114.646764,35.101868],[-114.645152,35.104995],[-114.644354,35.105903],[-114.641116,35.108401],[-114.637432,35.112489],[-114.632282,35.117088],[-114.628427,35.118943],[-114.623761,35.120602],[-114.628993,35.119411],[-114.624954,35.120742],[-114.618697,35.121749],[-114.604007,35.121252],[-114.60274,35.121666],[-114.597794,35.121735],[-114.589787,35.123522],[-114.584877,35.125194],[-114.579882,35.127506],[-114.578263,35.12881],[-114.577146,35.130982],[-114.574411,35.13495],[-114.572597,35.139557],[-114.573706,35.142698],[-114.573879,35.145351],[-114.569529,35.162317],[-114.56876,35.172195],[-114.569214,35.17289],[-114.568989,35.175085],[-114.569258,35.183424],[-114.569653,35.186267],[-114.571404,35.191026],[-114.572084,35.200794],[-114.574037,35.20379],[-114.574233,35.205481],[-114.574958,35.206714],[-114.578581,35.208113],[-114.579535,35.208911],[-114.579897,35.21097],[-114.580312,35.220095],[-114.583523,35.230348],[-114.58248,35.233173],[-114.582842,35.238703],[-114.584993,35.242717],[-114.586053,35.248891],[-114.585714,35.253145],[-114.585768,35.257743],[-114.586604,35.262386],[-114.587497,35.265473],[-114.590513,35.272334],[-114.593247,35.284361],[-114.595705,35.289939],[-114.596682,35.294557],[-114.597268,35.299565],[-114.59721,35.303223],[-114.595163,35.321883],[-114.595553,35.326547],[-114.599771,35.34111],[-114.604607,35.355239],[-114.606173,35.359651],[-114.611206,35.370119],[-114.617698,35.380131],[-114.618257,35.382646],[-114.618984,35.389391],[-114.620887,35.396867],[-114.621783,35.39945],[-114.625702,35.407976],[-114.626765,35.409644],[-114.629061,35.411175],[-114.65208,35.430134],[-114.653817,35.432853],[-114.654295,35.436854],[-114.658105,35.441835],[-114.661747,35.444735],[-114.662896,35.446449],[-114.663934,35.449466],[-114.664215,35.451707],[-114.66388,35.454657],[-114.664217,35.455845],[-114.665142,35.457331],[-114.666151,35.458198],[-114.667217,35.46037],[-114.666769,35.462085],[-114.66579,35.463915],[-114.665651,35.466911],[-114.665988,35.467985],[-114.667389,35.469904],[-114.67235,35.47374],[-114.673164,35.474814],[-114.673585,35.475843],[-114.673473,35.476849],[-114.672074,35.479709],[-114.671794,35.480806],[-114.671907,35.482087],[-114.673534,35.485675],[-114.676815,35.489787],[-114.676704,35.491845],[-114.676257,35.493103],[-114.677743,35.495182],[-114.678642,35.497628],[-114.678587,35.499846],[-114.678892,35.501276],[-114.67748,35.510948],[-114.677143,35.512945],[-114.675685,35.51563],[-114.672767,35.518428],[-114.66954,35.52079],[-114.668586,35.521225],[-114.666565,35.520993],[-114.664601,35.521519],[-114.663983,35.522161],[-114.661682,35.526682],[-114.659886,35.527919],[-114.657753,35.530741],[-114.657163,35.532301],[-114.65677,35.534964],[-114.657809,35.536963],[-114.660335,35.540433],[-114.661457,35.544062],[-114.66157,35.545692],[-114.66112,35.549021],[-114.661963,35.552604],[-114.661963,35.555887],[-114.663451,35.559884],[-114.663535,35.560963],[-114.662805,35.564268],[-114.6639,35.56629],[-114.664433,35.568426],[-114.666231,35.571642],[-114.668393,35.574331],[-114.670022,35.575596],[-114.671567,35.576217],[-114.674881,35.578379],[-114.675751,35.579459],[-114.675667,35.580033],[-114.670191,35.583471],[-114.664209,35.585944],[-114.660558,35.586583],[-114.659238,35.587477],[-114.654518,35.596609],[-114.6539,35.598491],[-114.653731,35.600373],[-114.654489,35.605173],[-114.653618,35.607192],[-114.653534,35.609672],[-114.653927,35.611739],[-114.655219,35.614059],[-114.657241,35.617046],[-114.659461,35.619552],[-114.660641,35.620334],[-114.663647,35.620773],[-114.665389,35.621556],[-114.666682,35.623073],[-114.668087,35.627115],[-114.669015,35.628861],[-114.672134,35.633365],[-114.675001,35.638304],[-114.677615,35.641774],[-114.679415,35.643429],[-114.686133,35.647522],[-114.689001,35.65028],[-114.689507,35.651429],[-114.689226,35.652898],[-114.690494,35.662657],[-114.690214,35.665159],[-114.686055,35.670642],[-114.682317,35.677825],[-114.680827,35.682255],[-114.680631,35.684046],[-114.680997,35.685929],[-114.682657,35.688571],[-114.691263,35.693125],[-114.696214,35.69655],[-114.701416,35.701084],[-114.703608,35.703922],[-114.704501,35.705993],[-114.704959,35.706366],[-114.704842,35.706744],[-114.705597,35.708274],[-114.705347,35.708344],[-114.705447,35.711757],[-114.699405,35.726929],[-114.697859,35.731657],[-114.69654,35.738934],[-114.6964,35.742653],[-114.696655,35.746143],[-114.697585,35.748417],[-114.697726,35.750966],[-114.696854,35.752756],[-114.696546,35.754638],[-114.694267,35.756633],[-114.694717,35.757897],[-114.69742,35.760677],[-114.700266,35.766879],[-114.701027,35.76968],[-114.70117,35.774112],[-114.699036,35.788046],[-114.699318,35.79048],[-114.703178,35.794685],[-114.705827,35.798889],[-114.71149,35.80438],[-114.712026,35.805529],[-114.710534,35.807525],[-114.709324,35.81005],[-114.70634,35.812022],[-114.703665,35.814614],[-114.700654,35.822004],[-114.697276,35.826776],[-114.69553,35.829897],[-114.695277,35.831091],[-114.695249,35.832285],[-114.695757,35.833387],[-114.701478,35.839316],[-114.702293,35.840792],[-114.702339,35.842151],[-114.703527,35.841845],[-114.704173,35.842669],[-114.704203,35.844274],[-114.706288,35.846218],[-114.706532,35.849027],[-114.705856,35.850508],[-114.703599,35.852595],[-114.701904,35.853223],[-114.696581,35.853727],[-114.69437,35.854463],[-114.693446,35.855125],[-114.691456,35.858661],[-114.687798,35.860728],[-114.68205,35.86295],[-114.678186,35.863311],[-114.672289,35.865011],[-114.66968,35.865036],[-114.667471,35.867061],[-114.662623,35.869213],[-114.661636,35.870545],[-114.661636,35.871233],[-114.663214,35.873692],[-114.668145,35.875201],[-114.672009,35.878018],[-114.678972,35.88551],[-114.693602,35.895311],[-114.69454,35.896587],[-114.696064,35.896464],[-114.694928,35.897594],[-114.696132,35.898662],[-114.697558,35.89936],[-114.700258,35.901757],[-114.700769,35.903064],[-114.703538,35.906707],[-114.705119,35.907637],[-114.705991,35.908598],[-114.705714,35.909316],[-114.706767,35.90895],[-114.708112,35.909933],[-114.709187,35.916827],[-114.707784,35.916993],[-114.707398,35.918057],[-114.70788,35.919207],[-114.707329,35.926177],[-114.707603,35.92795],[-114.712965,35.932159],[-114.712756,35.932639],[-114.713413,35.9319],[-114.713312,35.933844],[-114.729762,35.959895],[-114.728496,35.960395],[-114.728666,35.961757],[-114.73009,35.962691],[-114.732456,35.965891],[-114.736195,35.969421],[-114.740536,35.975545],[-114.743494,35.983553],[-114.743638,35.985785],[-114.743117,35.987387],[-114.740043,35.990534],[-114.739318,35.991804],[-114.740544,35.994853],[-114.740815,35.997464],[-114.741536,35.99969],[-114.741679,36.002283],[-114.743163,36.006722],[-114.743005,36.00845],[-114.740866,36.012928],[-114.738555,36.015223],[-114.728874,36.021387],[-114.723324,36.026588],[-114.722214,36.027964],[-114.722096,36.028952],[-114.722742,36.030286],[-114.723673,36.03123],[-114.727602,36.033099],[-114.730563,36.036207],[-114.733417,36.037913],[-114.735739,36.038033],[-114.740018,36.037467],[-114.741262,36.038044],[-114.742105,36.039792],[-114.742661,36.042573],[-114.742479,36.045697],[-114.741677,36.047877],[-114.735701,36.053393],[-114.73508,36.054435],[-114.735285,36.056648],[-114.736023,36.059063],[-114.74006,36.062437],[-114.7422,36.067833],[-114.742138,36.068676],[-114.743542,36.071037],[-114.748891,36.074981],[-114.75057,36.08033],[-114.754032,36.083093],[-114.754681,36.085052],[-114.754508,36.086171],[-114.752836,36.089393],[-114.750095,36.092275],[-114.748913,36.095183],[-114.737497,36.103102],[-114.734857,36.104426],[-114.718257,36.107164],[-114.709269,36.107396],[-114.706091,36.108239],[-114.703737,36.108348],[-114.696981,36.110297],[-114.693655,36.112482],[-114.691631,36.112535],[-114.688074,36.111457],[-114.684426,36.109472],[-114.681847,36.109192],[-114.679775,36.109874],[-114.678375,36.110815],[-114.675106,36.114111],[-114.671867,36.115964],[-114.664343,36.1163],[-114.662144,36.117742],[-114.660448,36.119999],[-114.658131,36.124127],[-114.655512,36.126187],[-114.645728,36.131995],[-114.641976,36.13373],[-114.640125,36.135126],[-114.636862,36.135552],[-114.635809,36.13617],[-114.630474,36.142218],[-114.628462,36.141822],[-114.627079,36.140761],[-114.623837,36.137144],[-114.620605,36.131759],[-114.618429,36.130328],[-114.615455,36.129653],[-114.61324,36.130266],[-114.609288,36.132229],[-114.596474,36.141537],[-114.593035,36.142674],[-114.589828,36.143192],[-114.583716,36.14556],[-114.580707,36.145987],[-114.578828,36.147175],[-114.57706,36.148845],[-114.57109,36.151099],[-114.561173,36.150921],[-114.556162,36.15247],[-114.548742,36.150697],[-114.543232,36.151871],[-114.539233,36.151764],[-114.534478,36.15023],[-114.532924,36.149282],[-114.532308,36.14804],[-114.531091,36.147644],[-114.52621,36.148177],[-114.51428,36.150795],[-114.511218,36.150576],[-114.508104,36.149713],[-114.501049,36.144516],[-114.500236,36.143226],[-114.499992,36.141594],[-114.500339,36.1407],[-114.50108,36.14006],[-114.50515,36.138078],[-114.507175,36.13634],[-114.50921,36.133247],[-114.508467,36.129913],[-114.507201,36.128484],[-114.504715,36.127188],[-114.501798,36.126556],[-114.498849,36.126612],[-114.487635,36.128656],[-114.483827,36.12972],[-114.478248,36.132683],[-114.468674,36.138889],[-114.465579,36.139496],[-114.4626,36.139644],[-114.458945,36.139214],[-114.456487,36.138032],[-114.45511,36.136372],[-114.453798,36.133586],[-114.451331,36.129831],[-114.447135,36.126022],[-114.445042,36.125346],[-114.443736,36.125593],[-114.435507,36.130057],[-114.423114,36.13735],[-114.418193,36.142771],[-114.415253,36.145123],[-114.412491,36.146511],[-114.40914,36.147],[-114.405624,36.146983],[-114.398373,36.145799],[-114.381479,36.141349],[-114.379976,36.141388],[-114.375278,36.143592],[-114.373745,36.143722],[-114.370181,36.142624],[-114.368551,36.140892],[-114.367381,36.13852],[-114.365529,36.136306],[-114.364499,36.134072],[-114.358968,36.127795],[-114.348592,36.121147],[-114.3451,36.118556],[-114.342601,36.115878],[-114.34095,36.113457],[-114.338815,36.111309],[-114.337264,36.110428],[-114.334632,36.106784],[-114.333587,36.106342],[-114.328801,36.105902],[-114.325814,36.103933],[-114.325539,36.102989],[-114.323458,36.101186],[-114.320866,36.096463],[-114.316983,36.093409],[-114.313086,36.088816],[-114.306939,36.082487],[-114.304171,36.07558],[-114.304384,36.074019],[-114.305853,36.071478],[-114.307485,36.069672],[-114.31242,36.066117],[-114.3136,36.064148],[-114.314328,36.062016],[-114.314427,36.060523],[-114.313591,36.059048],[-114.311904,36.057661],[-114.308624,36.056976],[-114.300971,36.05746],[-114.298593,36.057263],[-114.295941,36.056168],[-114.293435,36.0545],[-114.290867,36.050511],[-114.287992,36.04907],[-114.284006,36.048242],[-114.279637,36.046103],[-114.278166,36.045819],[-114.273911,36.046529],[-114.272299,36.046289],[-114.270862,36.045523],[-114.269548,36.043769],[-114.268896,36.04094],[-114.26922,36.036807],[-114.268586,36.035034],[-114.26438,36.027911],[-114.262388,36.026107],[-114.259518,36.024206],[-114.251633,36.019886],[-114.248419,36.018556],[-114.246111,36.017164],[-114.243865,36.015266],[-114.240439,36.015245],[-114.238154,36.014473],[-114.236892,36.013247],[-114.233443,36.012835],[-114.231854,36.013147],[-114.228015,36.014731],[-114.226459,36.014606],[-114.224798,36.013699],[-114.218759,36.014511],[-114.216609,36.014336],[-114.214679,36.014806],[-114.213549,36.014615],[-114.211932,36.014834],[-114.206052,36.016634],[-114.204156,36.016575],[-114.201227,36.017751],[-114.200066,36.017743],[-114.191221,36.020019],[-114.18586,36.022266],[-114.179438,36.024313],[-114.176304,36.026129],[-114.174683,36.02667],[-114.164402,36.026852],[-114.161237,36.026279],[-114.157344,36.024966],[-114.1534,36.02317],[-114.15139,36.023133],[-114.150225,36.023515],[-114.145907,36.027229],[-114.145637,36.028559],[-114.145672,36.03297],[-114.144666,36.034272],[-114.143153,36.035295],[-114.13826,36.03719],[-114.137112,36.038491],[-114.135721,36.041238],[-114.134841,36.043873],[-114.134824,36.045343],[-114.135927,36.050358],[-114.136206,36.053232],[-114.1352,36.056946],[-114.133389,36.061665],[-114.129768,36.068484],[-114.125891,36.072935],[-114.124019,36.075563],[-114.121186,36.082755],[-114.119648,36.085822],[-114.112297,36.09405],[-114.111998,36.09491],[-114.1119,36.095845],[-114.115208,36.099878],[-114.11707,36.101177],[-114.119329,36.10193],[-114.121033,36.103885],[-114.121779,36.105699],[-114.12167,36.108294],[-114.120865,36.11085],[-114.118497,36.1139],[-114.116061,36.115471],[-114.108381,36.119154],[-114.107419,36.119401],[-114.100433,36.119359],[-114.097707,36.120213],[-114.096994,36.120823],[-114.092753,36.132356],[-114.092366,36.135331],[-114.091701,36.137303],[-114.089279,36.140326],[-114.087899,36.142923],[-114.081234,36.150208],[-114.07945,36.154625],[-114.078832,36.157434],[-114.075641,36.162523],[-114.071652,36.170921],[-114.066798,36.179087],[-114.058662,36.187835],[-114.052743,36.190919],[-114.049484,36.192134],[-114.043944,36.19335],[-114.043849,36.245114],[-114.045518,36.27439],[-114.045559,36.288837],[-114.045033,36.30305],[-114.044345,36.310234],[-114.044051,36.317628],[-114.044776,36.331969],[-114.044702,36.346298],[-114.043034,36.38587],[-114.042843,36.448175],[-114.043133,36.469716],[-114.044816,36.491343],[-114.045647,36.521095],[-114.04632,36.564615],[-114.049935,36.709521],[-114.049973,36.738672],[-114.050327,36.752899],[-114.049879,36.781909],[-114.050502,36.895232],[-114.049995,36.957769],[-114.0506,37.000396],[-114.0008,37.000448],[-113.96266,36.999973],[-113.052912,36.999983],[-112.875756,37.000533],[-112.538546,37.000652],[-112.529846,37.000899],[-112.36102,37.001114],[-112.36037,37.000912],[-112.359329,37.001117],[-112.125741,37.001237],[-112.000735,37.000959],[-111.62572,37.001401],[-111.616249,37.001647],[-111.406146,37.001481],[-111.405895,37.001702],[-111.313211,37.000894],[-111.312169,37.001193],[-111.305843,37.000776],[-111.278221,37.000467],[-111.254853,37.001076],[-111.133718,37.000779],[-111.081493,37.002261],[-111.052354,37.00246],[-111.00182,37.002293],[-110.625691,37.003725],[-110.625605,37.003416],[-110.599512,37.003448],[-110.509004,37.003985],[-110.50069,37.00426],[-110.490908,37.003566],[-110.478446,36.999996],[-110.47729,36.999997],[-110.47019,36.997997],[-110.023043,36.998601],[-110.000876,36.998502],[-110.000677,36.997968],[-109.969958,36.997949],[-109.938511,36.998491],[-109.750669,36.99816],[-109.743284,36.998453],[-109.625658,36.998308],[-109.495338,36.999105],[-109.362565,36.999304],[-109.125691,36.999389],[-109.045223,36.999084],[-109.045554,36.645013],[-109.04539,36.503241],[-109.045946,36.375002],[-109.045637,36.374625],[-109.045744,36.257214],[-109.046024,36.247197],[-109.045877,36.188719],[-109.046183,36.181751],[-109.045726,36.116908],[-109.045767,36.033679],[-109.046124,35.990618],[-109.046009,35.875012],[-109.046423,35.624911],[-109.046181,35.614569],[-109.046795,35.379918],[-109.046084,35.249986],[-109.046256,35.125041],[-109.045842,34.966076],[-109.046136,34.875006],[-109.046072,34.828566],[-109.045626,34.814226],[-109.046104,34.799981],[-109.045363,34.785406],[-109.046087,34.770963],[-109.046175,34.520102],[-109.046561,34.379479],[-109.046337,34.283639],[-109.046664,34.250046],[-109.04696,34.068968],[-109.047006,34.00005],[-109.046426,33.875052],[-109.046869,33.844183],[-109.047145,33.74001],[-109.046662,33.625055],[-109.046825,33.469389],[-109.047309,33.462131],[-109.046928,33.4428],[-109.047304,33.439442],[-109.047298,33.409774],[-109.046564,33.375059],[-109.047045,33.36928],[-109.046827,33.365271],[-109.047104,33.27046],[-109.04747,33.250168],[-109.047122,33.2408],[-109.047324,33.18408],[-109.047208,33.107377],[-109.046905,33.091931],[-109.047513,33.059137],[-109.047382,33.000311],[-109.04711,32.99225],[-109.047117,32.777569],[-109.047518,32.749997],[-109.047796,32.68263],[-109.047912,32.500261],[-109.047629,32.413987],[-109.048323,32.070887],[-109.048731,32.028174],[-109.048465,32.000089],[-109.048738,31.876905],[-109.049048,31.870689],[-109.049298,31.796742],[-109.04899,31.721922],[-109.049311,31.544932],[-109.050173,31.480004],[-109.049934,31.437907],[-109.050044,31.332502],[-109.1256,31.332685],[-109.271744,31.333942],[-109.49449,31.334125],[-109.500621,31.333911],[-109.875628,31.33405],[-110.000613,31.333145],[-110.140512,31.333965],[-110.375635,31.332896],[-110.460172,31.332827],[-110.68143,31.33309],[-110.750638,31.333636],[-110.795467,31.33363],[-110.94232,31.332833],[-111.000643,31.332177],[-111.074825,31.332239],[-111.125646,31.348978],[-111.129451,31.349979],[-111.357436,31.423346],[-111.500659,31.468862],[-111.560194,31.488138],[-111.659998,31.519448],[-111.738873,31.544718],[-111.875674,31.587657],[-111.979304,31.620648],[-112.200717,31.690033],[-112.365328,31.741078],[-112.375759,31.743987],[-112.399254,31.751638],[-112.433246,31.762162],[-112.737399,31.855527],[-112.800213,31.87507],[-112.834233,31.885137],[-112.871505,31.896838],[-113.125961,31.97278],[-113.21163,32.000061],[-113.211365,32.000061],[-113.217307,32.002106],[-113.250731,32.012405],[-113.493196,32.088943],[-113.750756,32.169005],[-113.78168,32.179034],[-114.250775,32.323909],[-114.625785,32.43789],[-114.790245,32.487505],[-114.813613,32.494276],[-114.813991,32.497231],[-114.812316,32.500054],[-114.813402,32.501764],[-114.813753,32.50426],[-114.815185,32.506023],[-114.81651,32.506963],[-114.816591,32.507696],[-114.815591,32.508612],[-114.814321,32.509023],[-114.812942,32.509116],[-114.810159,32.508383],[-114.807726,32.508726],[-114.804076,32.510375],[-114.802833,32.511749],[-114.802211,32.513191],[-114.802238,32.515206],[-114.80367,32.516374],[-114.807753,32.516925],[-114.809672,32.517567],[-114.810374,32.518391],[-114.809969,32.520291],[-114.810482,32.521758],[-114.810969,32.522444],[-114.812888,32.52359],[-114.813348,32.524186],[-114.812645,32.525399],[-114.811293,32.526429],[-114.810563,32.527666],[-114.808617,32.529017],[-114.8064,32.531191],[-114.804858,32.533689],[-114.802559,32.535521],[-114.802181,32.536414],[-114.802018,32.53946],[-114.80237,32.540078],[-114.804776,32.541659],[-114.805966,32.545346],[-114.80583,32.546354],[-114.803883,32.548001],[-114.795635,32.550956],[-114.793769,32.552329],[-114.792065,32.555009],[-114.791551,32.557023],[-114.791523,32.558602],[-114.792955,32.562085],[-114.792088,32.568497],[-114.792358,32.569091],[-114.793224,32.569459],[-114.794684,32.568703],[-114.795253,32.56662],[-114.79766,32.564444],[-114.801311,32.562865],[-114.803664,32.560689],[-114.80683,32.55888],[-114.808885,32.558467],[-114.810318,32.558628],[-114.812914,32.560049],[-114.813995,32.562201],[-114.814212,32.56369],[-114.813968,32.566209],[-114.812995,32.568706],[-114.81148,32.569781],[-114.804421,32.572941],[-114.803474,32.573628],[-114.801877,32.576009],[-114.801471,32.578255],[-114.80193,32.579194],[-114.803879,32.580889],[-114.803987,32.582652],[-114.802823,32.585079],[-114.800441,32.588079],[-114.799737,32.592177],[-114.799683,32.593621],[-114.801251,32.596232],[-114.801548,32.598591],[-114.802361,32.59937],[-114.805932,32.600721],[-114.806905,32.60143],[-114.808041,32.603172],[-114.807879,32.605416],[-114.809042,32.608806],[-114.808906,32.612951],[-114.809555,32.616203],[-114.808662,32.619157],[-114.80739,32.621332],[-114.806821,32.621721],[-114.799302,32.625115],[-114.797564,32.624578],[-114.794102,32.622475],[-114.79264,32.621948],[-114.791179,32.621833],[-114.787715,32.623573],[-114.782573,32.624304],[-114.781896,32.624702],[-114.781766,32.625613],[-114.782518,32.628625],[-114.782235,32.630215],[-114.779215,32.633578],[-114.77457,32.63593],[-114.771978,32.637954],[-114.768199,32.639874],[-114.764382,32.642666],[-114.76331,32.644616],[-114.763512,32.645995],[-114.764917,32.648079],[-114.76495,32.649391],[-114.75831,32.655178],[-114.751079,32.659789],[-114.74948,32.66178],[-114.748,32.664184],[-114.748183,32.665098],[-114.747817,32.667777],[-114.746383,32.669853],[-114.745344,32.67219],[-114.7449,32.677231],[-114.744349,32.678935],[-114.740541,32.684196],[-114.739405,32.686385],[-114.730453,32.698844],[-114.72981,32.700282],[-114.72974,32.703121],[-114.730086,32.704298],[-114.728408,32.706648],[-114.726974,32.707875],[-114.72534,32.710369],[-114.72241,32.713597],[-114.719938,32.71829],[-114.717695,32.721547],[-114.715788,32.727758],[-114.714522,32.73039],[-114.712629,32.732678],[-114.710615,32.733936],[-114.709074,32.735456],[-114.706114,32.740986],[-114.70294,32.744793],[-114.701582,32.745632],[-114.699247,32.745098],[-114.695387,32.742244],[-114.691801,32.740147],[-114.689282,32.737927],[-114.68823,32.73753],[-114.682614,32.737348],[-114.672025,32.734951],[-114.665921,32.734028],[-114.654247,32.73357],[-114.645353,32.732139],[-114.635006,32.731372],[-114.629299,32.729908],[-114.617479,32.728243],[-114.61567,32.728454],[-114.61587,32.729717],[-114.615501,32.730044],[-114.615504,32.731449],[-114.614786,32.732846],[-114.614787,32.734076],[-114.615112,32.734515],[-114.581784,32.734946],[-114.581736,32.74232],[-114.564508,32.742274],[-114.564447,32.749554],[-114.539224,32.749812],[-114.539092,32.756949],[-114.526856,32.757094],[-114.528443,32.767276],[-114.529264,32.769484],[-114.531831,32.774264],[-114.532432,32.776922],[-114.532426,32.778644],[-114.531746,32.782503],[-114.531669,32.791185],[-114.529633,32.795477],[-114.522031,32.801675],[-114.520385,32.803576],[-114.520363,32.804385],[-114.519758,32.805676],[-114.515389,32.811439],[-114.510327,32.816488],[-114.494116,32.823287],[-114.475892,32.838693],[-114.468971,32.845155],[-114.465711,32.873681],[-114.465172,32.885295],[-114.463307,32.899116],[-114.462929,32.907944],[-114.46365,32.911682],[-114.464448,32.913128],[-114.473713,32.920594],[-114.47664,32.923628],[-114.477952,32.925706],[-114.479005,32.928291],[-114.480783,32.933678],[-114.480925,32.936276],[-114.48074,32.937027],[-114.478456,32.940555],[-114.474042,32.94515],[-114.470768,32.949424],[-114.468536,32.953922],[-114.467624,32.956663],[-114.467274,32.960172],[-114.467367,32.965384],[-114.468379,32.970745],[-114.468995,32.972239],[-114.470511,32.973858],[-114.472606,32.974654],[-114.475171,32.975154],[-114.477308,32.975023],[-114.479477,32.974189],[-114.480831,32.973362],[-114.481315,32.972064],[-114.484806,32.971339],[-114.488625,32.969946],[-114.490129,32.969884],[-114.492184,32.971021],[-114.492938,32.971781],[-114.494212,32.974262],[-114.495712,32.980075],[-114.496798,32.986534],[-114.497052,32.990206],[-114.49941,33.00004],[-114.499797,33.003905],[-114.50287,33.011154],[-114.506129,33.017009],[-114.507956,33.019708],[-114.511343,33.023455],[-114.5149,33.026524],[-114.52013,33.029984],[-114.523578,33.03096],[-114.538459,33.033422],[-114.553189,33.033974],[-114.56085,33.035285],[-114.5648,33.035077],[-114.571653,33.036624],[-114.575161,33.036541],[-114.578287,33.035375],[-114.581404,33.032545],[-114.584765,33.02823],[-114.586982,33.026944],[-114.589778,33.026228],[-114.598093,33.025384],[-114.601014,33.02541],[-114.611584,33.026221],[-114.618788,33.027202],[-114.625787,33.029435],[-114.628294,33.03105],[-114.629732,33.032546],[-114.63419,33.039024],[-114.639552,33.04529],[-114.641621,33.046894],[-114.64482,33.048644],[-114.645979,33.048902],[-114.647049,33.048416],[-114.649001,33.046762],[-114.650999,33.044131],[-114.655038,33.037106],[-114.657827,33.033824],[-114.659832,33.032664],[-114.662317,33.03267],[-114.66506,33.033906],[-114.670803,33.037983],[-114.673659,33.041896],[-114.67483,33.045507],[-114.675103,33.04753],[-114.674295,33.057169],[-114.679114,33.061966],[-114.686991,33.070968],[-114.68912,33.076121],[-114.689307,33.079179],[-114.688597,33.082869],[-114.68902,33.084035],[-114.692548,33.085786],[-114.694628,33.086226],[-114.701165,33.086368],[-114.70473,33.087051],[-114.706488,33.08816],[-114.707819,33.091102],[-114.708133,33.094022],[-114.707896,33.097431],[-114.706175,33.105334],[-114.703682,33.113768],[-114.696914,33.131119],[-114.694858,33.13346],[-114.690246,33.137724],[-114.687405,33.141983],[-114.684907,33.147823],[-114.682759,33.154808],[-114.679945,33.159059],[-114.67935,33.162433],[-114.68089,33.169074],[-114.680237,33.169637],[-114.679115,33.174608],[-114.67583,33.18152],[-114.675359,33.185488],[-114.675189,33.188178],[-114.678163,33.199488],[-114.678749,33.203448],[-114.676072,33.210835],[-114.673715,33.219245],[-114.673626,33.223121],[-114.674479,33.225504],[-114.678097,33.2303],[-114.682731,33.234918],[-114.689421,33.24525],[-114.689541,33.246428],[-114.688205,33.247965],[-114.683253,33.250034],[-114.67766,33.254426],[-114.674491,33.255597],[-114.672924,33.257042],[-114.672088,33.258499],[-114.672401,33.260469],[-114.677032,33.270169],[-114.680507,33.273576],[-114.684363,33.276023],[-114.688599,33.277861],[-114.694449,33.279785],[-114.702873,33.281916],[-114.711197,33.283341],[-114.717875,33.285156],[-114.72167,33.286982],[-114.723259,33.288079],[-114.731223,33.302433],[-114.731222,33.304039],[-114.729904,33.305745],[-114.726484,33.308273],[-114.724665,33.310097],[-114.723623,33.312109],[-114.71861,33.315761],[-114.710627,33.3205],[-114.70787,33.323316],[-114.705186,33.327709],[-114.700938,33.337014],[-114.69935,33.345692],[-114.699124,33.349258],[-114.698035,33.352442],[-114.69817,33.356575],[-114.699056,33.361148],[-114.701959,33.367134],[-114.704201,33.371238],[-114.706722,33.37503],[-114.707348,33.376627],[-114.707485,33.378375],[-114.707009,33.380633],[-114.707309,33.38254],[-114.708407,33.384142],[-114.713602,33.388256],[-114.72425,33.40042],[-114.725292,33.402341],[-114.725535,33.404055],[-114.725282,33.405048],[-114.723829,33.406531],[-114.722201,33.407384],[-114.720065,33.407891],[-114.710878,33.407254],[-114.701788,33.408377],[-114.697708,33.410942],[-114.696805,33.412087],[-114.696507,33.414063],[-114.695658,33.415128],[-114.68795,33.417934],[-114.673691,33.419157],[-114.658254,33.413021],[-114.656735,33.412813],[-114.652828,33.412923],[-114.64954,33.413633],[-114.643302,33.416746],[-114.635183,33.422725],[-114.633262,33.425024],[-114.630903,33.426754],[-114.62964,33.428137],[-114.627479,33.432307],[-114.622283,33.447558],[-114.622519,33.450879],[-114.623395,33.45449],[-114.622918,33.456561],[-114.618354,33.462708],[-114.614331,33.467315],[-114.613782,33.469049],[-114.612472,33.470768],[-114.607843,33.474834],[-114.603396,33.480631],[-114.601694,33.481396],[-114.599712,33.484316],[-114.597283,33.490653],[-114.593721,33.495932],[-114.592369,33.498675],[-114.589246,33.501813],[-114.580468,33.506465],[-114.573757,33.507543],[-114.569533,33.509219],[-114.560963,33.516739],[-114.560552,33.518272],[-114.560835,33.524334],[-114.560098,33.526663],[-114.559507,33.530724],[-114.558898,33.531819],[-114.542011,33.542481],[-114.531802,33.547862],[-114.530401,33.550099],[-114.525997,33.551457],[-114.524599,33.552231],[-114.524215,33.553068],[-114.52822,33.559318],[-114.531613,33.561702],[-114.532333,33.562879],[-114.533192,33.565823],[-114.535965,33.569154],[-114.536784,33.570959],[-114.537801,33.575555],[-114.538983,33.576792],[-114.5403,33.580615],[-114.540652,33.582872],[-114.540111,33.588354],[-114.540664,33.589789],[-114.540617,33.591412],[-114.537493,33.594895],[-114.536777,33.596394],[-114.531051,33.604482],[-114.529186,33.60665],[-114.526782,33.608831],[-114.523994,33.60999],[-114.522071,33.611277],[-114.521845,33.612544],[-114.522367,33.614172],[-114.527378,33.617828],[-114.528578,33.619994],[-114.52908,33.621711],[-114.531215,33.623913],[-114.531034,33.628213],[-114.530311,33.629037],[-114.52637,33.630259],[-114.523802,33.6347],[-114.525394,33.640669],[-114.529549,33.643861],[-114.533215,33.648443],[-114.533194,33.65166],[-114.532164,33.653194],[-114.530583,33.654461],[-114.525163,33.655939],[-114.518337,33.655927],[-114.514559,33.658014],[-114.514057,33.660179],[-114.515336,33.662033],[-114.517112,33.662877],[-114.520671,33.662681],[-114.526439,33.66388],[-114.530267,33.666821],[-114.532123,33.669702],[-114.531523,33.675108],[-114.530348,33.679245],[-114.527782,33.682684],[-114.523959,33.685879],[-114.519113,33.688473],[-114.512409,33.691282],[-114.507996,33.692018],[-114.504993,33.693022],[-114.502899,33.694255],[-114.496489,33.696901],[-114.495719,33.698454],[-114.495537,33.701506],[-114.494407,33.705395],[-114.494197,33.707922],[-114.494901,33.71443],[-114.496565,33.719155],[-114.498133,33.720634],[-114.500788,33.722204],[-114.502661,33.724584],[-114.504176,33.728055],[-114.506799,33.730518],[-114.510265,33.732146],[-114.512348,33.734214],[-114.510777,33.737574],[-114.508206,33.741587],[-114.506,33.746344],[-114.504483,33.750998],[-114.50434,33.756381],[-114.504863,33.760465],[-114.507089,33.76793],[-114.516734,33.788345],[-114.518942,33.797302],[-114.521555,33.801982],[-114.524682,33.808961],[-114.527188,33.812639],[-114.52805,33.814963],[-114.527886,33.815617],[-114.527161,33.816191],[-114.522714,33.818979],[-114.520733,33.822031],[-114.51997,33.825381],[-114.520465,33.827778],[-114.523409,33.835323],[-114.525539,33.838614],[-114.529597,33.848063],[-114.530607,33.85544],[-114.529883,33.857563],[-114.527069,33.859429],[-114.525666,33.860003],[-114.524292,33.860133],[-114.52287,33.859965],[-114.518998,33.858563],[-114.516811,33.85812],[-114.514673,33.858638],[-114.511346,33.86157],[-114.506635,33.863484],[-114.505638,33.864276],[-114.503887,33.865754],[-114.503104,33.867166],[-114.503017,33.867998],[-114.50386,33.871234],[-114.503395,33.875018],[-114.50434,33.876882],[-114.510138,33.880777],[-114.51866,33.888263],[-114.522768,33.892583],[-114.524813,33.895684],[-114.525872,33.901008],[-114.52569,33.901428],[-114.524289,33.901587],[-114.516344,33.897918],[-114.513715,33.897959],[-114.510944,33.899099],[-114.508708,33.90064],[-114.507988,33.901813],[-114.50792,33.903807],[-114.508558,33.906098],[-114.511511,33.911092],[-114.514503,33.914214],[-114.518434,33.917518],[-114.523393,33.921221],[-114.525361,33.922272],[-114.528385,33.923674],[-114.531107,33.924633],[-114.534146,33.925187],[-114.534951,33.9257],[-114.535853,33.928103],[-114.535478,33.934651],[-114.530566,33.943629],[-114.52868,33.947817],[-114.526353,33.950917],[-114.522002,33.955623],[-114.51586,33.958106],[-114.51497,33.958149],[-114.511231,33.95704],[-114.509568,33.957264],[-114.499883,33.961789],[-114.496042,33.96589],[-114.490398,33.97062],[-114.488459,33.972832],[-114.484784,33.975519],[-114.483097,33.977745],[-114.482333,33.980181],[-114.481455,33.981261],[-114.475907,33.984424],[-114.471138,33.98804],[-114.467932,33.992877],[-114.466187,33.993465],[-114.461133,33.993541],[-114.46012,33.993888],[-114.459258,33.994711],[-114.458028,33.997158],[-114.458026,33.99782],[-114.459184,34.000016],[-114.460689,34.001128],[-114.46628,34.003885],[-114.46731,34.00519],[-114.467404,34.00745],[-114.465867,34.010987],[-114.464525,34.011982],[-114.463336,34.012259],[-114.454807,34.010968],[-114.450206,34.012574],[-114.446815,34.01421],[-114.443821,34.016176],[-114.44054,34.019329],[-114.438266,34.022609],[-114.436171,34.028083],[-114.434949,34.037784],[-114.435816,34.04373],[-114.438602,34.050205],[-114.439406,34.05381],[-114.43934,34.057893],[-114.437683,34.071937],[-114.435907,34.077491],[-114.434181,34.087379],[-114.43338,34.088413],[-114.428026,34.092787],[-114.426168,34.097042],[-114.422899,34.099661],[-114.420499,34.103466],[-114.415908,34.107636],[-114.41168,34.110031],[-114.405916,34.111468],[-114.401336,34.111638],[-114.390565,34.110084],[-114.379223,34.11599],[-114.369292,34.117519],[-114.366517,34.118577],[-114.360402,34.123577],[-114.359389,34.125016],[-114.358358,34.127617],[-114.356372,34.130428],[-114.35303,34.13312],[-114.350478,34.134107],[-114.348051,34.134457],[-114.336112,34.134034],[-114.324576,34.136759],[-114.320777,34.138635],[-114.312206,34.144776],[-114.307802,34.150574],[-114.298168,34.160321],[-114.292806,34.166725],[-114.287294,34.170529],[-114.275267,34.172149],[-114.26846,34.170177],[-114.257034,34.172837],[-114.253444,34.174129],[-114.244421,34.179403],[-114.240712,34.183232],[-114.229715,34.186928],[-114.227034,34.188866],[-114.225814,34.191238],[-114.224941,34.193896],[-114.225075,34.196814],[-114.22579,34.199236],[-114.225861,34.201774],[-114.225194,34.203642],[-114.223384,34.205136],[-114.215454,34.208956],[-114.211761,34.211539],[-114.208253,34.215505],[-114.190876,34.230858],[-114.17805,34.239969],[-114.176403,34.241512],[-114.175948,34.242695],[-114.175906,34.245587],[-114.174597,34.247303],[-114.166536,34.249647],[-114.166124,34.250015],[-114.164476,34.251667],[-114.163867,34.253349],[-114.163959,34.255377],[-114.165335,34.258486],[-114.165249,34.259125],[-114.164648,34.259699],[-114.156853,34.258415],[-114.153346,34.258289],[-114.147159,34.259564],[-114.144779,34.259623],[-114.13545,34.257886],[-114.133264,34.258462],[-114.131489,34.260387],[-114.131211,34.26273],[-114.134768,34.268965],[-114.136671,34.274377],[-114.137045,34.277018],[-114.13605,34.280833],[-114.136677,34.283936],[-114.138365,34.288564],[-114.139534,34.295844],[-114.139187,34.298074],[-114.138167,34.300936],[-114.138282,34.30323],[-114.14093,34.305919],[-114.157206,34.317862],[-114.157939,34.320277],[-114.164249,34.330816],[-114.168807,34.339513],[-114.172845,34.344979],[-114.176909,34.349306],[-114.181145,34.352186],[-114.185556,34.354386],[-114.191094,34.356125],[-114.19648,34.359187],[-114.199482,34.361373],[-114.213774,34.36246],[-114.226107,34.365916],[-114.229686,34.368908],[-114.233065,34.375013],[-114.234275,34.376662],[-114.245261,34.385659],[-114.248649,34.388113],[-114.252739,34.3901],[-114.25822,34.395046],[-114.262909,34.400373],[-114.264317,34.401329],[-114.267521,34.402486],[-114.272184,34.402961],[-114.280108,34.403147],[-114.282261,34.403641],[-114.286802,34.40534],[-114.288663,34.406623],[-114.290219,34.408291],[-114.291751,34.411104],[-114.291903,34.416231],[-114.292226,34.417606],[-114.294836,34.421389],[-114.301016,34.426807],[-114.308659,34.430485],[-114.312251,34.432726],[-114.319054,34.435831],[-114.32613,34.437251],[-114.32688,34.438048],[-114.330669,34.445295],[-114.332991,34.448082],[-114.335372,34.450038],[-114.339627,34.451435],[-114.342615,34.451442],[-114.348974,34.450166],[-114.356025,34.449744],[-114.363404,34.447773],[-114.373719,34.446938],[-114.375789,34.447798],[-114.378852,34.450376],[-114.382985,34.453971],[-114.386699,34.457911],[-114.387407,34.460492],[-114.387187,34.462021],[-114.383525,34.470405],[-114.381701,34.47604],[-114.381555,34.477883],[-114.383038,34.488903],[-114.382358,34.495758],[-114.381402,34.499245],[-114.378124,34.507288],[-114.378223,34.516521],[-114.380838,34.529724],[-114.389603,34.542982],[-114.398847,34.559149],[-114.405228,34.569637],[-114.422382,34.580711],[-114.435671,34.593841],[-114.43681,34.596074],[-114.436363,34.596797],[-114.427502,34.599227],[-114.425338,34.600842],[-114.424326,34.602338],[-114.424202,34.610453],[-114.428648,34.614641],[-114.438739,34.621455],[-114.439495,34.625858],[-114.441398,34.630171],[-114.441525,34.631529],[-114.440685,34.634739],[-114.440294,34.63824],[-114.440519,34.640066],[-114.441465,34.64253],[-114.444276,34.646542],[-114.445664,34.647542],[-114.449549,34.651423],[-114.457985,34.657113],[-114.45821,34.657994],[-114.457702,34.659328],[-114.457185,34.659992],[-114.451785,34.663891],[-114.450614,34.665793],[-114.450506,34.666836],[-114.451532,34.668605],[-114.454305,34.671234],[-114.45491,34.673092],[-114.454881,34.675639],[-114.455536,34.677335],[-114.458163,34.681161],[-114.462178,34.6858],[-114.463633,34.68794],[-114.465246,34.691202],[-114.46809,34.701786],[-114.46813,34.704445],[-114.46862,34.707573],[-114.470477,34.711368],[-114.47162,34.712966],[-114.473682,34.713964],[-114.477297,34.714514],[-114.482779,34.714511],[-114.487508,34.716626],[-114.489287,34.720155],[-114.490971,34.724848],[-114.492017,34.725702],[-114.495858,34.727956],[-114.499007,34.729096],[-114.500795,34.730418],[-114.510292,34.733582],[-114.514178,34.735288],[-114.516619,34.736745],[-114.521048,34.741173],[-114.522619,34.74373],[-114.525611,34.747005],[-114.529079,34.750006],[-114.529615,34.750822],[-114.540306,34.757109],[-114.546884,34.761802],[-114.552682,34.766871],[-114.558653,34.773852],[-114.563979,34.782597],[-114.565184,34.785976],[-114.569383,34.791568],[-114.57101,34.794294],[-114.574474,34.804214],[-114.574694,34.807471],[-114.576452,34.8153],[-114.578681,34.820977],[-114.581126,34.826115],[-114.586842,34.835672],[-114.592339,34.841153],[-114.600653,34.847361],[-114.604255,34.849573],[-114.619878,34.856873],[-114.623939,34.859738],[-114.628276,34.863596],[-114.630682,34.866352],[-114.633051,34.869971],[-114.634382,34.87289],[-114.635176,34.875003],[-114.635458,34.876902]]]},"properties":{"name":"az"},"bbox":[-114.816591,31.332177,-109.045223,37.00426]},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-123.789325,60.000033],[-124.5,60.0],[-125.0,60.0],[-125.5,60.0],[-126.0,60.0],[-126.5,60.0],[-127.0,60.0],[-127.5,60.0],[-128.0,60.0],[-128.5,60.0],[-129.0,60.0],[-129.75,60.0],[-130.5,60.0],[-131.0,60.0],[-131.5,60.0],[-132.0,60.0],[-132.5,60.0],[-133.0,60.0],[-133.5,60.0],[-134.0,60.0],[-134.75,60.0],[-135.5,60.0],[-136.0,60.0],[-136.5,60.0],[-137.0,60.0],[-137.5,60.0],[-138.0,60.0],[-138.5,60.0],[-139.052201,60.000041],[-139.042131,59.991568],[-138.790823,59.922991],[-138.705785,59.90624],[-138.656299,59.799224],[-138.605426,59.75769],[-138.236661,59.570124],[-137.878044,59.381442],[-137.602069,59.240725],[-137.499314,58.983139],[-137.526729,58.906599],[-137.446562,58.908662],[-137.288408,58.999482],[-137.236648,59.011438],[-136.999634,59.091364],[-136.82467,59.159801],[-136.581992,59.165541],[-136.467495,59.284562],[-136.476248,59.464193],[-136.397735,59.447177],[-136.301436,59.465838],[-136.236285,59.526711],[-136.241406,59.559103],[-136.355712,59.600673],[-136.195251,59.638813],[-135.945689,59.663622],[-135.479005,59.798613],[-135.377023,59.742926],[-135.234707,59.69595],[-135.221815,59.664147],[-135.154455,59.626479],[-135.117546,59.623383],[-135.027708,59.563918],[-135.027989,59.476302],[-135.097528,59.427003],[-134.989246,59.387876],[-135.030202,59.348351],[-134.958935,59.281086],[-134.6993,59.248389],[-134.677947,59.192804],[-134.569799,59.133504],[-134.484783,59.133387],[-134.444919,59.086474],[-134.385375,59.041397],[-134.407607,58.978445],[-134.312279,58.961391],[-134.337383,58.920335],[-134.256434,58.859072],[-134.002586,58.774095],[-133.841333,58.730149],[-133.699471,58.609114],[-133.504183,58.496378],[-133.381798,58.432552],[-133.461274,58.389873],[-133.354071,58.2834],[-133.172399,58.151641],[-133.069543,58.000052],[-132.988993,57.942973],[-132.917966,57.87949],[-132.868068,57.844587],[-132.759443,57.707526],[-132.686743,57.642966],[-132.563579,57.506826],[-132.424282,57.392246],[-132.369582,57.351424],[-132.244621,57.212013],[-132.369308,57.091422],[-132.045927,57.044044],[-132.121147,56.866901],[-131.870758,56.80625],[-131.901838,56.754361],[-131.857457,56.701773],[-131.833632,56.598775],[-131.581755,56.612372],[-131.467385,56.551073],[-131.164157,56.447285],[-131.087203,56.406353],[-130.78139,56.368061],[-130.656236,56.283395],[-130.585513,56.255446],[-130.465112,56.241474],[-130.419724,56.138877],[-130.331545,56.122591],[-130.241241,56.095807],[-130.103701,56.122024],[-130.002139,56.006611],[-130.020406,55.910078],[-129.995715,55.899139],[-130.13344,55.765459],[-130.132561,55.717473],[-130.086297,55.686998],[-130.091593,55.629306],[-130.105133,55.618787],[-130.110445,55.566288],[-130.074986,55.504725],[-130.024123,55.461092],[-130.015996,55.381155],[-130.003035,55.336114],[-129.967917,55.317077],[-129.943683,55.287889],[-130.008722,55.249708],[-130.075523,55.201454],[-130.129456,55.147899],[-130.135944,55.119981],[-130.165866,55.079697],[-130.132759,55.042929],[-130.114109,54.990617],[-130.093712,54.984907],[-130.034143,55.029985],[-130.007792,55.082762],[-129.90097,55.166508],[-129.887838,55.213407],[-129.815736,55.289845],[-129.832944,55.313758],[-129.814107,55.368647],[-129.78669,55.4],[-129.767295,55.473053],[-129.789238,55.511994],[-129.810928,55.57488],[-129.76726,55.549461],[-129.767978,55.529391],[-129.745012,55.480273],[-129.721594,55.461147],[-129.710696,55.41362],[-129.635601,55.457688],[-129.516929,55.451165],[-129.525559,55.437803],[-129.628478,55.445441],[-129.664391,55.432032],[-129.677054,55.377705],[-129.71711,55.35166],[-129.75477,55.281053],[-129.80674,55.268715],[-129.857624,55.209516],[-129.860008,55.177238],[-129.888775,55.145417],[-129.930729,55.119088],[-129.987592,55.058986],[-129.977487,55.0491],[-130.004126,55.01272],[-130.008609,54.97645],[-130.058507,54.952946],[-130.114241,54.9],[-130.161138,54.866533],[-130.136576,54.846911],[-130.092497,54.886006],[-130.056132,54.892197],[-130.107455,54.8385],[-130.169424,54.81518],[-130.208372,54.731629],[-130.240404,54.709456],[-130.349638,54.694665],[-130.369353,54.680675],[-130.392454,54.631373],[-130.291574,54.573415],[-130.173178,54.436964],[-130.237041,54.475775],[-130.349133,54.586331],[-130.394617,54.620859],[-130.431283,54.637302],[-130.456211,54.612881],[-130.384205,54.56138],[-130.436382,54.556854],[-130.450814,54.528639],[-130.444353,54.490094],[-130.388578,54.454661],[-130.447882,54.457101],[-130.483768,54.438815],[-130.474279,54.390143],[-130.481957,54.36863],[-130.463519,54.337081],[-130.416904,54.327904],[-130.307128,54.33742],[-130.28605,54.350033],[-130.253759,54.319858],[-130.231607,54.267919],[-130.272691,54.242245],[-130.287871,54.211846],[-130.177897,54.178601],[-130.12469,54.149493],[-130.082635,54.114502],[-130.102198,54.06363],[-130.085343,54.02374],[-130.109114,53.949817],[-130.072394,53.891744],[-129.981117,53.823897],[-129.785714,53.705906],[-129.729424,53.691395],[-129.757506,53.664658],[-129.687931,53.597609],[-129.646369,53.566434],[-129.487501,53.473704],[-129.457008,53.461295],[-129.38396,53.408168],[-129.339033,53.382461],[-129.280872,53.36262],[-129.29099,53.396456],[-129.260078,53.405328],[-129.234388,53.460267],[-129.238692,53.564204],[-129.251684,53.578342],[-129.240163,53.61352],[-129.297841,53.629912],[-129.294647,53.649093],[-129.231505,53.630859],[-129.191761,53.66025],[-129.137298,53.687801],[-129.117288,53.717889],[-129.03106,53.753446],[-128.975165,53.768575],[-128.960095,53.798491],[-128.927555,53.786775],[-128.873361,53.814432],[-128.847152,53.858641],[-128.789372,53.880862],[-128.789358,53.901508],[-128.730567,53.922475],[-128.702962,53.962866],[-128.69318,54.001885],[-128.64931,54.004516],[-128.661246,53.943792],[-128.715038,53.901795],[-128.707604,53.876673],[-128.627305,53.851175],[-128.571098,53.843006],[-128.495817,53.846884],[-128.486962,53.826551],[-128.609613,53.832837],[-128.655876,53.854138],[-128.678188,53.852779],[-128.705521,53.822579],[-128.784969,53.790011],[-128.80821,53.769853],[-128.805054,53.743432],[-128.783142,53.720725],[-128.801365,53.680498],[-128.835383,53.649467],[-128.823963,53.619654],[-128.76891,53.56882],[-128.749541,53.540062],[-128.711569,53.536274],[-128.686819,53.502027],[-128.644123,53.502168],[-128.586758,53.477283],[-128.592942,53.455993],[-128.535271,53.427952],[-128.568141,53.415787],[-128.634306,53.453312],[-128.657229,53.475205],[-128.731118,53.489507],[-128.756935,53.484457],[-128.807856,53.564431],[-128.840718,53.554609],[-128.867785,53.529951],[-128.908213,53.530645],[-128.966901,53.550244],[-128.972912,53.496314],[-128.952551,53.46589],[-128.915113,53.445519],[-128.885378,53.411139],[-128.890546,53.361156],[-128.886424,53.307201],[-128.847109,53.26766],[-128.69621,53.189704],[-128.610997,53.164152],[-128.579232,53.128321],[-128.550355,53.068472],[-128.523773,53.032024],[-128.498807,52.91904],[-128.498352,52.883834],[-128.45365,52.844765],[-128.432232,52.81453],[-128.401298,52.825212],[-128.324321,52.797218],[-128.240821,52.79958],[-128.197602,52.841253],[-128.159866,52.860239],[-128.126424,52.829611],[-128.13013,52.770277],[-128.113048,52.759668],[-128.135772,52.712162],[-128.171003,52.676255],[-128.184314,52.626281],[-128.243349,52.571509],[-128.248061,52.535802],[-128.22305,52.484423],[-128.227665,52.448769],[-128.252778,52.408159],[-128.311458,52.399066],[-128.339483,52.371805],[-128.324742,52.336704],[-128.37027,52.293305],[-128.358286,52.266197],[-128.289937,52.258136],[-128.234274,52.313674],[-128.223916,52.335419],[-128.151687,52.409274],[-128.150049,52.430994],[-128.103563,52.474856],[-128.09144,52.520831],[-128.066591,52.511072],[-128.014038,52.529149],[-128.039588,52.466083],[-128.07469,52.459414],[-128.078549,52.41904],[-128.034926,52.329225],[-128.007923,52.318105],[-127.932366,52.317427],[-127.925356,52.280402],[-127.900751,52.258795],[-127.898502,52.224752],[-127.853957,52.207434],[-127.818851,52.250363],[-127.785002,52.267803],[-127.716854,52.272009],[-127.671242,52.294063],[-127.635209,52.283205],[-127.60847,52.29111],[-127.606261,52.315244],[-127.57183,52.316154],[-127.538152,52.33145],[-127.488624,52.338208],[-127.454341,52.407043],[-127.434169,52.413303],[-127.485902,52.451335],[-127.536427,52.520888],[-127.428323,52.426768],[-127.40875,52.417703],[-127.345686,52.417476],[-127.306793,52.45351],[-127.262031,52.473451],[-127.267483,52.516834],[-127.255577,52.542822],[-127.215442,52.567696],[-127.134152,52.593786],[-127.117139,52.616948],[-127.037902,52.6426],[-127.032213,52.664607],[-126.968327,52.716865],[-127.002296,52.763747],[-126.996836,52.813889],[-127.075117,52.864842],[-127.038022,52.863489],[-126.98248,52.815003],[-126.953962,52.803852],[-126.958327,52.767351],[-126.941533,52.736525],[-126.915761,52.722165],[-126.930609,52.701331],[-126.975629,52.677805],[-126.976517,52.643221],[-127.002363,52.625515],[-127.037857,52.628446],[-127.099752,52.605656],[-127.1173,52.578036],[-127.156539,52.571523],[-127.226583,52.53696],[-127.237783,52.513958],[-127.218274,52.475606],[-127.231767,52.445706],[-127.201036,52.438308],[-127.19208,52.382083],[-127.163832,52.343289],[-127.078246,52.333036],[-126.980909,52.335485],[-126.962264,52.363606],[-126.920227,52.364556],[-126.796793,52.400048],[-126.785969,52.372528],[-126.882096,52.361774],[-126.891699,52.347316],[-126.934632,52.341654],[-126.965364,52.312136],[-126.916155,52.252506],[-126.900602,52.196785],[-126.815373,52.161084],[-126.75051,52.114138],[-126.719823,52.075447],[-126.672816,52.042622],[-126.68674,52.018975],[-126.759191,52.085213],[-126.838213,52.148997],[-126.927133,52.188594],[-126.957647,52.262736],[-127.006151,52.301331],[-127.032478,52.310567],[-127.082329,52.298348],[-127.152919,52.316973],[-127.204791,52.293305],[-127.212791,52.277467],[-127.297298,52.232373],[-127.339189,52.233295],[-127.399406,52.217429],[-127.426235,52.18854],[-127.461624,52.191076],[-127.436104,52.137393],[-127.434791,52.09569],[-127.456655,52.079758],[-127.554211,52.089772],[-127.554629,52.105314],[-127.474301,52.099796],[-127.463281,52.126879],[-127.491093,52.157271],[-127.529126,52.146773],[-127.570447,52.121547],[-127.607136,52.121689],[-127.613034,52.096404],[-127.64155,52.061202],[-127.652515,51.988648],[-127.667868,51.951203],[-127.704071,51.941114],[-127.747384,51.951024],[-127.801972,51.936602],[-127.84263,51.911131],[-127.87739,51.90192],[-127.886243,51.883643],[-127.862682,51.866126],[-127.892006,51.827096],[-127.892607,51.797222],[-127.873471,51.762638],[-127.891457,51.715206],[-127.877104,51.669895],[-127.850171,51.646166],[-127.792057,51.623148],[-127.760891,51.645672],[-127.713847,51.616427],[-127.799607,51.580665],[-127.787247,51.555954],[-127.730036,51.521835],[-127.696093,51.536804],[-127.672695,51.517892],[-127.63881,51.528536],[-127.595366,51.566232],[-127.559509,51.608232],[-127.54807,51.638143],[-127.484805,51.6463],[-127.452093,51.67053],[-127.335368,51.69269],[-127.26222,51.684968],[-127.265682,51.666666],[-127.325534,51.665511],[-127.349798,51.651629],[-127.383804,51.656301],[-127.415591,51.635333],[-127.44129,51.639777],[-127.504802,51.623239],[-127.521258,51.578774],[-127.51252,51.555535],[-127.521096,51.513452],[-127.563192,51.499767],[-127.563356,51.477585],[-127.633859,51.430381],[-127.655246,51.394811],[-127.720197,51.401186],[-127.754667,51.369554],[-127.792269,51.356828],[-127.770289,51.326969],[-127.748031,51.318945],[-127.653347,51.333075],[-127.524527,51.342376],[-127.530862,51.323402],[-127.473799,51.313418],[-127.396691,51.312864],[-127.325724,51.300171],[-127.215842,51.317478],[-127.164667,51.342974],[-127.154346,51.321093],[-127.285314,51.294793],[-127.454449,51.28293],[-127.469086,51.264877],[-127.58081,51.261968],[-127.602031,51.283841],[-127.677028,51.272375],[-127.764954,51.249281],[-127.784466,51.227669],[-127.788107,51.198148],[-127.724756,51.137025],[-127.683066,51.133299],[-127.657238,51.08698],[-127.573102,51.091325],[-127.504382,51.107846],[-127.453962,51.09303],[-127.386014,51.093829],[-127.417157,51.069271],[-127.339013,51.03806],[-127.31057,51.058876],[-127.155829,51.053209],[-127.101123,51.060867],[-127.014965,51.083881],[-126.946956,51.075465],[-126.873961,51.085126],[-126.828105,51.075754],[-126.792482,51.081831],[-126.754101,51.115718],[-126.674818,51.154262],[-126.658705,51.142014],[-126.775184,51.067681],[-126.968758,51.055862],[-127.016963,51.059866],[-127.142437,51.03805],[-127.303548,51.043657],[-127.305599,51.026536],[-127.400208,51.046289],[-127.498554,51.098547],[-127.515625,51.078388],[-127.524945,51.013774],[-127.512,50.9928],[-127.468201,50.975353],[-127.408004,50.927001],[-127.344885,50.921987],[-127.336511,50.905509],[-127.265103,50.908677],[-127.197334,50.875958],[-127.159796,50.872997],[-127.139428,50.858364],[-127.088384,50.844913],[-127.063296,50.82161],[-127.019797,50.817461],[-126.944254,50.850368],[-126.895975,50.884539],[-126.954694,50.895575],[-127.028145,50.886846],[-127.145119,50.910781],[-127.084437,50.921816],[-127.051823,50.906815],[-126.987387,50.897915],[-126.908824,50.894761],[-126.900963,50.9124],[-126.852477,50.947044],[-126.812707,50.956272],[-126.780853,50.935334],[-126.74132,50.941628],[-126.737419,50.930229],[-126.83947,50.914067],[-126.757953,50.899191],[-126.716202,50.872595],[-126.666072,50.866539],[-126.511567,50.94139],[-126.547877,51.011775],[-126.5157,51.03787],[-126.503041,50.994482],[-126.461087,50.943982],[-126.390559,50.931723],[-126.309288,50.933897],[-126.2754,50.926546],[-126.186582,50.926695],[-126.197537,50.905237],[-126.254653,50.905695],[-126.311254,50.917132],[-126.417001,50.910455],[-126.46361,50.923521],[-126.548488,50.897677],[-126.566476,50.833627],[-126.508967,50.82939],[-126.475509,50.813812],[-126.37438,50.832572],[-126.327696,50.850679],[-126.261029,50.844329],[-126.251209,50.833026],[-126.16773,50.840841],[-126.203883,50.810465],[-126.187409,50.781968],[-126.11923,50.769114],[-126.128619,50.734156],[-126.193064,50.713149],[-126.197636,50.688963],[-126.177838,50.669416],[-126.123601,50.670769],[-126.06747,50.6811],[-126.01387,50.703134],[-125.95802,50.685232],[-125.851367,50.702409],[-125.804161,50.70226],[-125.710552,50.717456],[-125.722314,50.745381],[-125.683162,50.780396],[-125.643377,50.787593],[-125.653525,50.809678],[-125.681501,50.817799],[-125.684943,50.875016],[-125.63674,50.886433],[-125.603969,50.908199],[-125.571017,50.902417],[-125.544799,50.937324],[-125.591519,50.965743],[-125.578391,50.98638],[-125.593154,51.005283],[-125.590848,51.036301],[-125.634374,51.066503],[-125.640114,51.090073],[-125.589216,51.081965],[-125.55211,51.064946],[-125.538406,51.043552],[-125.541323,51.001943],[-125.505122,50.955226],[-125.504266,50.931878],[-125.529976,50.90916],[-125.537544,50.878037],[-125.563368,50.864926],[-125.614159,50.874744],[-125.647004,50.85203],[-125.63401,50.824683],[-125.591142,50.795503],[-125.615921,50.758916],[-125.665702,50.750547],[-125.701703,50.687276],[-125.832988,50.681612],[-125.886986,50.664319],[-125.907069,50.667291],[-126.069598,50.657873],[-126.105552,50.644578],[-126.275095,50.630256],[-126.270366,50.60226],[-126.240006,50.583707],[-126.189507,50.580205],[-126.077441,50.61725],[-126.027415,50.621318],[-125.974479,50.642372],[-125.958913,50.622457],[-126.00475,50.611083],[-126.052838,50.610243],[-126.126052,50.59312],[-126.190395,50.56909],[-126.21078,50.537926],[-126.256422,50.526346],[-126.270919,50.50769],[-126.131638,50.48328],[-126.083978,50.484982],[-126.036093,50.474237],[-125.932086,50.471166],[-125.886,50.490921],[-125.816161,50.500415],[-125.776563,50.490643],[-125.768981,50.468813],[-125.703643,50.422118],[-125.634614,50.437934],[-125.617345,50.450421],[-125.574557,50.528959],[-125.550441,50.549593],[-125.567875,50.581799],[-125.552786,50.595361],[-125.558723,50.62818],[-125.527929,50.673898],[-125.44991,50.694049],[-125.458495,50.673801],[-125.506982,50.668873],[-125.528512,50.634164],[-125.536348,50.559813],[-125.522434,50.551751],[-125.593147,50.449246],[-125.516376,50.453352],[-125.48102,50.443524],[-125.436094,50.449134],[-125.396828,50.468281],[-125.373545,50.505384],[-125.337551,50.470817],[-125.269568,50.459742],[-125.224515,50.441013],[-125.182884,50.407703],[-125.11381,50.430539],[-125.107886,50.500364],[-125.044608,50.515973],[-124.991612,50.537803],[-124.989042,50.568626],[-124.918083,50.601817],[-124.898894,50.640123],[-124.929161,50.671518],[-124.915688,50.703507],[-124.889604,50.731778],[-124.948059,50.755297],[-124.951149,50.775725],[-124.981766,50.797343],[-124.955245,50.832093],[-124.912113,50.836585],[-124.881871,50.885877],[-124.854146,50.901277],[-124.854319,50.930305],[-124.824775,50.931428],[-124.790531,50.899095],[-124.828412,50.872777],[-124.8641,50.824591],[-124.912638,50.803911],[-124.89537,50.769612],[-124.86483,50.764186],[-124.833299,50.73498],[-124.832988,50.712806],[-124.863673,50.688989],[-124.852515,50.665566],[-124.873876,50.628763],[-124.859633,50.598593],[-124.886121,50.560886],[-124.922079,50.550719],[-124.969693,50.500499],[-125.050199,50.480896],[-125.065558,50.40963],[-125.051738,50.38685],[-125.079725,50.325522],[-125.054783,50.315388],[-125.003256,50.342695],[-124.968831,50.378299],[-124.999797,50.445966],[-124.963222,50.429455],[-124.940399,50.376752],[-124.961787,50.337466],[-124.937924,50.326048],[-124.893401,50.324676],[-124.829728,50.306754],[-124.712059,50.373404],[-124.661557,50.436996],[-124.612483,50.419276],[-124.541761,50.421917],[-124.528902,50.436172],[-124.411731,50.467107],[-124.417727,50.438183],[-124.50791,50.41728],[-124.521799,50.398211],[-124.636001,50.400313],[-124.666695,50.389587],[-124.708839,50.321294],[-124.632892,50.29301],[-124.615609,50.258138],[-124.608409,50.193048],[-124.631527,50.16102],[-124.724486,50.127638],[-124.700989,50.098707],[-124.837561,50.051507],[-124.80299,50.007958],[-124.75185,49.963363],[-124.633288,49.910278],[-124.55634,49.871913],[-124.53033,49.845994],[-124.526529,49.804353],[-124.472205,49.794829],[-124.449818,49.77758],[-124.396744,49.766422],[-124.352341,49.776663],[-124.296503,49.762586],[-124.280392,49.77302],[-124.130281,49.781813],[-124.101798,49.798116],[-124.091486,49.837555],[-124.048403,49.841489],[-124.077414,49.866434],[-124.032987,49.916919],[-124.018857,49.90734],[-124.033258,49.874832],[-123.995792,49.842375],[-123.999721,49.811606],[-123.930891,49.837742],[-123.903663,49.878874],[-123.961223,49.905151],[-124.009688,49.968456],[-124.008451,49.998085],[-123.961211,50.021431],[-123.937423,50.019277],[-123.847513,50.056683],[-123.802829,50.092158],[-123.832353,50.104183],[-123.879633,50.146817],[-123.920401,50.158354],[-123.967499,50.182795],[-123.98776,50.206891],[-123.850843,50.163454],[-123.799773,50.131177],[-123.793636,50.117135],[-123.747258,50.09682],[-123.787049,50.068459],[-123.789674,50.046297],[-123.865477,50.028579],[-123.907109,50.003994],[-123.956385,49.99768],[-123.976493,49.961346],[-123.936682,49.920759],[-123.884634,49.908495],[-123.86817,49.879604],[-123.873054,49.846279],[-123.895559,49.813179],[-123.923137,49.798633],[-123.936261,49.765725],[-123.892537,49.749313],[-123.841225,49.68642],[-123.82499,49.634699],[-123.687386,49.653471],[-123.735655,49.623195],[-123.787786,49.602578],[-123.78395,49.568872],[-123.763458,49.550516],[-123.777252,49.519788],[-123.814929,49.593647],[-123.841645,49.619999],[-123.864106,49.675745],[-123.890267,49.69968],[-123.893568,49.734445],[-123.972111,49.766932],[-124.033074,49.742146],[-124.035549,49.723369],[-124.06667,49.694348],[-124.074778,49.64196],[-124.039037,49.633237],[-124.001711,49.555338],[-123.924966,49.513214],[-123.901507,49.480073],[-123.870918,49.467868],[-123.841164,49.472063],[-123.743058,49.464226],[-123.723191,49.438446],[-123.684055,49.436139],[-123.537995,49.383822],[-123.500301,49.393571],[-123.46777,49.449368],[-123.496164,49.501312],[-123.477851,49.528382],[-123.401649,49.55285],[-123.357761,49.554065],[-123.308699,49.583673],[-123.265358,49.589303],[-123.249694,49.667475],[-123.183299,49.685237],[-123.18987,49.65692],[-123.224905,49.64709],[-123.207762,49.628953],[-123.23728,49.556911],[-123.262812,49.519455],[-123.249485,49.501567],[-123.233016,49.424983],[-123.267446,49.381068],[-123.288161,49.37518],[-123.244952,49.34054],[-123.20558,49.340186],[-123.115024,49.30854],[-123.013107,49.297919],[-122.948365,49.326423],[-122.893534,49.359533],[-122.887128,49.33631],[-122.92924,49.304483],[-122.966323,49.288084],[-123.050198,49.29387],[-123.102213,49.285319],[-123.125226,49.29049],[-123.171025,49.271734],[-123.243598,49.279829],[-123.264779,49.266547],[-123.236552,49.2306],[-123.201549,49.215861],[-123.211876,49.183577],[-123.197405,49.168067],[-123.195539,49.126556],[-123.178705,49.083622],[-123.099204,49.034827],[-123.090758,49.001933],[-123.035183,49.002068],[-123.056525,49.027453],[-123.045967,49.046968],[-123.008077,49.063366],[-122.945958,49.073609],[-122.890656,49.09147],[-122.852523,49.082892],[-122.887885,49.056845],[-122.86673,49.024412],[-122.8261,49.02531],[-122.757879,49.002217],[-122.116774,49.002234],[-121.995865,49.000005],[-121.5,49.0],[-121.0,49.0],[-120.369967,49.000081],[-119.918118,49.000096],[-119.535982,49.00004],[-119.008482,49.000011],[-118.5,49.0],[-118.00188,49.000357],[-117.268353,49.000023],[-116.75535,49.00002],[-116.275744,49.00003],[-115.51387,49.000695],[-115.25917,49.000011],[-114.763511,49.000017],[-114.410624,49.001221],[-114.068332,48.99885],[-114.053758,49.026545],[-114.080976,49.059688],[-114.10694,49.064965],[-114.153149,49.09951],[-114.149038,49.143653],[-114.174905,49.163551],[-114.257126,49.177008],[-114.310456,49.192035],[-114.345591,49.193571],[-114.402122,49.213274],[-114.393486,49.257187],[-114.447942,49.264369],[-114.446795,49.288418],[-114.477646,49.312352],[-114.487625,49.347321],[-114.522995,49.356313],[-114.536594,49.37961],[-114.56693,49.376884],[-114.598433,49.412562],[-114.594717,49.502843],[-114.573006,49.524963],[-114.573604,49.557463],[-114.620133,49.546809],[-114.690983,49.554026],[-114.732587,49.57638],[-114.746476,49.61851],[-114.662818,49.643724],[-114.668385,49.703875],[-114.633119,49.73408],[-114.659135,49.765079],[-114.636052,49.784812],[-114.639932,49.827721],[-114.691786,49.896286],[-114.693676,49.942584],[-114.683311,49.967061],[-114.657436,49.968397],[-114.654849,49.996949],[-114.666371,50.050944],[-114.733259,50.118611],[-114.72467,50.190177],[-114.770225,50.249995],[-114.751667,50.275287],[-114.797606,50.326122],[-114.766217,50.350742],[-114.819164,50.369058],[-114.824819,50.393325],[-114.856892,50.392524],[-114.873012,50.430191],[-114.912167,50.451372],[-115.013697,50.570859],[-115.085274,50.589749],[-115.117525,50.569751],[-115.173553,50.567589],[-115.190916,50.535098],[-115.230984,50.544879],[-115.239651,50.589197],[-115.293626,50.611108],[-115.282254,50.663193],[-115.315124,50.725826],[-115.354557,50.722712],[-115.391222,50.706452],[-115.436282,50.755731],[-115.481107,50.755182],[-115.497558,50.782346],[-115.55087,50.797066],[-115.578136,50.840504],[-115.642983,50.842206],[-115.648929,50.874148],[-115.592646,50.892641],[-115.584176,50.915754],[-115.6098,50.92628],[-115.614596,50.951188],[-115.648834,50.99752],[-115.703792,51.021286],[-115.72676,51.018688],[-115.767036,51.039388],[-115.789232,51.072418],[-115.833372,51.075927],[-115.867933,51.08929],[-115.923607,51.08311],[-115.957263,51.115182],[-116.004465,51.124681],[-116.036845,51.170046],[-116.000023,51.193947],[-116.007604,51.222012],[-116.049266,51.227437],[-116.065173,51.24793],[-116.111676,51.253353],[-116.159133,51.275812],[-116.164131,51.29779],[-116.219085,51.294504],[-116.268017,51.311933],[-116.290031,51.343109],[-116.277255,51.354695],[-116.311435,51.384962],[-116.28247,51.406837],[-116.29243,51.461803],[-116.360597,51.470866],[-116.393829,51.505663],[-116.390886,51.545588],[-116.452925,51.560548],[-116.47325,51.582673],[-116.471411,51.604678],[-116.499576,51.623401],[-116.595016,51.66183],[-116.581176,51.697282],[-116.598535,51.723874],[-116.631195,51.731403],[-116.650349,51.753706],[-116.643147,51.786709],[-116.682076,51.812147],[-116.715507,51.798663],[-116.744232,51.806608],[-116.818598,51.735564],[-116.809741,51.705346],[-116.887286,51.702969],[-116.920568,51.709803],[-116.976361,51.760185],[-116.964002,51.794951],[-116.988988,51.811106],[-117.034321,51.859807],[-117.019465,51.89136],[-117.097652,51.939695],[-117.103176,51.956517],[-117.197224,51.980135],[-117.268408,52.055787],[-117.305064,52.074313],[-117.298593,52.094282],[-117.317303,52.194042],[-117.334036,52.148641],[-117.381256,52.137724],[-117.500178,52.144274],[-117.523115,52.158246],[-117.611264,52.144259],[-117.629348,52.174764],[-117.66353,52.197893],[-117.741346,52.202997],[-117.818317,52.226355],[-117.839578,52.274127],[-117.796061,52.292507],[-117.777995,52.31893],[-117.752878,52.316424],[-117.705795,52.365345],[-117.766498,52.417692],[-117.886933,52.426092],[-117.966792,52.469709],[-117.987985,52.500238],[-118.052899,52.449564],[-118.030363,52.438077],[-118.044169,52.398459],[-118.138046,52.407498],[-118.212773,52.370341],[-118.220892,52.39756],[-118.244447,52.408025],[-118.255338,52.449537],[-118.193351,52.47782],[-118.235529,52.490178],[-118.289146,52.538494],[-118.272783,52.565956],[-118.332568,52.580172],[-118.333601,52.606195],[-118.354491,52.633684],[-118.301038,52.654081],[-118.290141,52.677693],[-118.343295,52.708889],[-118.342823,52.738556],[-118.42241,52.775787],[-118.399626,52.82446],[-118.403166,52.850763],[-118.444463,52.852225],[-118.448279,52.885287],[-118.500142,52.906382],[-118.543788,52.908455],[-118.587213,52.882248],[-118.61383,52.883722],[-118.613422,52.936012],[-118.660205,52.963938],[-118.669769,52.983416],[-118.640772,52.999331],[-118.655348,53.034797],[-118.759058,53.065776],[-118.732341,53.119249],[-118.772488,53.133039],[-118.786522,53.159224],[-118.915961,53.211845],[-118.947444,53.238935],[-119.023834,53.23195],[-118.999418,53.192765],[-119.046882,53.14491],[-119.088497,53.165532],[-119.119524,53.161766],[-119.146013,53.191181],[-119.232715,53.181768],[-119.340496,53.28708],[-119.355879,53.340102],[-119.406085,53.368089],[-119.45924,53.357219],[-119.517534,53.370068],[-119.598341,53.365716],[-119.6689,53.367828],[-119.695448,53.39061],[-119.725423,53.388754],[-119.758367,53.426371],[-119.790633,53.479266],[-119.830158,53.514734],[-119.853858,53.499932],[-119.899477,53.519128],[-119.862257,53.548509],[-119.910713,53.601255],[-119.902698,53.620159],[-119.854066,53.607707],[-119.748726,53.593366],[-119.713409,53.61458],[-119.797381,53.707772],[-119.844328,53.714739],[-119.907981,53.710601],[-119.88743,53.750019],[-119.888237,53.779485],[-119.942341,53.775862],[-119.999987,53.806235],[-120.0,54.268869],[-119.999941,54.490897],[-120.000297,54.797684],[-120.000314,55.119198],[-120.0,55.402344],[-119.999946,55.778382],[-120.000752,56.249312],[-120.0,56.438945],[-120.000037,56.770701],[-120.0,57.25],[-119.999899,57.513998],[-120.0,57.911072],[-119.999989,58.149114],[-120.0,58.731498],[-120.0,60.0],[-120.5,60.0],[-121.0,60.0],[-121.75,60.0],[-122.5,60.0],[-123.0,60.0],[-123.789325,60.000033]]]},"properties":{"name":"bc"},"bbox":[-139.052201,48.99885,-114.053758,60.000041]},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-48.010268,-0.686169],[-48.015968,-0.686869],[-48.020668,-0.685769],[-48.022568,-0.682969],[-48.022568,-0.679369],[-48.022568,-0.674969],[-48.023668,-0.671069],[-48.026468,-0.668069],[-48.029768,-0.666769],[-48.033168,-0.664569],[-48.036968,-0.663169],[-48.040268,-0.663169],[-48.043868,-0.661969],[-48.048268,-0.659569],[-48.052968,-0.660369],[-48.057168,-0.663969],[-48.060168,-0.667469],[-48.062668,-0.669169],[-48.067368,-0.673369],[-48.075968,-0.684369],[-48.081768,-0.691069],[-48.087968,-0.697969],[-48.105268,-0.716469],[-48.133868,-0.745269],[-48.141568,-0.754169],[-48.147368,-0.760969],[-48.155168,-0.770169],[-48.158368,-0.774069],[-48.161268,-0.779769],[-48.166368,-0.792869],[-48.166468,-0.799169],[-48.166468,-0.802569],[-48.166468,-0.807169],[-48.166968,-0.810469],[-48.169268,-0.814369],[-48.171868,-0.816669],[-48.175268,-0.819369],[-48.177768,-0.820969],[-48.181168,-0.821369],[-48.185268,-0.820769],[-48.188768,-0.819969],[-48.191668,-0.819569],[-48.196068,-0.819069],[-48.203168,-0.819269],[-48.206168,-0.819869],[-48.209868,-0.820269],[-48.212868,-0.820969],[-48.218368,-0.822069],[-48.221168,-0.822869],[-48.223768,-0.824369],[-48.227068,-0.826269],[-48.229468,-0.827869],[-48.231768,-0.830469],[-48.234468,-0.833569],[-48.236868,-0.837569],[-48.238568,-0.841169],[-48.241868,-0.849969],[-48.242968,-0.853569],[-48.245468,-0.861169],[-48.249368,-0.871669],[-48.250268,-0.874469],[-48.251368,-0.877769],[-48.253768,-0.881869],[-48.257768,-0.888269],[-48.268468,-0.902869],[-48.280968,-0.913069],[-48.293668,-0.919669],[-48.314168,-0.920769],[-48.336568,-0.921369],[-48.365768,-0.918869],[-48.394768,-0.910969],[-48.409468,-0.905669],[-48.423868,-0.900469],[-48.454668,-0.886569],[-48.474568,-0.873869],[-48.491568,-0.848169],[-48.500968,-0.828969],[-48.505968,-0.810469],[-48.506668,-0.805869],[-48.509368,-0.788169],[-48.508468,-0.773969],[-48.509968,-0.769869],[-48.511268,-0.765969],[-48.511068,-0.762969],[-48.512068,-0.759969],[-48.511068,-0.756869],[-48.508868,-0.754069],[-48.507168,-0.750269],[-48.501668,-0.744769],[-48.497668,-0.744169],[-48.493568,-0.743269],[-48.491368,-0.741069],[-48.489968,-0.737769],[-48.487968,-0.733869],[-48.487168,-0.729269],[-48.486468,-0.725969],[-48.486368,-0.722569],[-48.486368,-0.719269],[-48.486168,-0.714569],[-48.484968,-0.708169],[-48.483568,-0.704369],[-48.483168,-0.700169],[-48.482168,-0.694969],[-48.482168,-0.690469],[-48.481668,-0.687269],[-48.479668,-0.682269],[-48.478668,-0.678269],[-48.478968,-0.675069],[-48.479768,-0.671069],[-48.479768,-0.666769],[-48.479268,-0.663669],[-48.479168,-0.660569],[-48.478168,-0.657869],[-48.476668,-0.653069],[-48.474968,-0.648769],[-48.473068,-0.644269],[-48.472568,-0.640069],[-48.473068,-0.636769],[-48.474468,-0.633069],[-48.473968,-0.628369],[-48.472368,-0.622169],[-48.471368,-0.617269],[-48.470568,-0.613369],[-48.471468,-0.610369],[-48.474168,-0.607769],[-48.477268,-0.605269],[-48.477368,-0.601669],[-48.475968,-0.597669],[-48.475268,-0.594569],[-48.474768,-0.590869],[-48.474968,-0.587369],[-48.476368,-0.583969],[-48.477268,-0.580169],[-48.475968,-0.574569],[-48.475068,-0.570169],[-48.474768,-0.565269],[-48.474568,-0.560469],[-48.474768,-0.555869],[-48.475268,-0.551869],[-48.475068,-0.548269],[-48.474568,-0.544669],[-48.474268,-0.539569],[-48.473768,-0.533369],[-48.473368,-0.525469],[-48.472268,-0.521469],[-48.470968,-0.517069],[-48.470668,-0.512969],[-48.470568,-0.507969],[-48.469468,-0.504869],[-48.467668,-0.500769],[-48.466168,-0.497169],[-48.464468,-0.493069],[-48.463268,-0.489669],[-48.462068,-0.486369],[-48.460668,-0.482569],[-48.459668,-0.479669],[-48.458668,-0.476369],[-48.456468,-0.469769],[-48.455068,-0.465869],[-48.454068,-0.460869],[-48.453968,-0.456769],[-48.452168,-0.450669],[-48.450968,-0.446269],[-48.450968,-0.442769],[-48.451568,-0.438069],[-48.451268,-0.433869],[-48.449368,-0.427869],[-48.446368,-0.421369],[-48.444068,-0.416669],[-48.441068,-0.412069],[-48.435768,-0.406569],[-48.428668,-0.400169],[-48.423968,-0.395369],[-48.417468,-0.388169],[-48.413668,-0.384069],[-48.407368,-0.374469],[-48.404168,-0.370769],[-48.400068,-0.366869],[-48.397368,-0.363669],[-48.395368,-0.361069],[-48.393268,-0.357769],[-48.390368,-0.354969],[-48.388168,-0.352569],[-48.387068,-0.348369],[-48.384868,-0.344769],[-48.383768,-0.340869],[-48.382368,-0.336569],[-48.380668,-0.332669],[-48.379168,-0.328969],[-48.378068,-0.325469],[-48.377068,-0.320969],[-48.376568,-0.317169],[-48.375768,-0.312769],[-48.375268,-0.309369],[-48.374868,-0.305869],[-48.374468,-0.302969],[-48.374468,-0.299669],[-48.375268,-0.295569],[-48.375768,-0.291369],[-48.377068,-0.286169],[-48.378468,-0.282269],[-48.379668,-0.279469],[-48.381768,-0.275469],[-48.384068,-0.272069],[-48.386268,-0.268569],[-48.388568,-0.264869],[-48.390768,-0.261769],[-48.392668,-0.259369],[-48.394568,-0.256569],[-48.396168,-0.252669],[-48.400468,-0.249369],[-48.404268,-0.247169],[-48.408468,-0.244469],[-48.412868,-0.243069],[-48.415668,-0.241869],[-48.418868,-0.240569],[-48.422468,-0.237969],[-48.423068,-0.234669],[-48.424168,-0.230869],[-48.427568,-0.227569],[-48.432168,-0.227069],[-48.436568,-0.225669],[-48.440168,-0.225369],[-48.443268,-0.226269],[-48.446668,-0.228469],[-48.449068,-0.230969],[-48.453768,-0.231769],[-48.457868,-0.231769],[-48.460968,-0.231069],[-48.463768,-0.231669],[-48.468168,-0.231669],[-48.471368,-0.230669],[-48.475668,-0.231169],[-48.479968,-0.232569],[-48.482868,-0.232469],[-48.485868,-0.232069],[-48.489668,-0.233669],[-48.491968,-0.235369],[-48.494968,-0.236869],[-48.499368,-0.239069],[-48.504168,-0.242269],[-48.508068,-0.241169],[-48.510768,-0.239969],[-48.515468,-0.238269],[-48.521868,-0.237469],[-48.526468,-0.238669],[-48.529568,-0.238869],[-48.533068,-0.238669],[-48.537768,-0.239069],[-48.543068,-0.240069],[-48.547468,-0.238569],[-48.553568,-0.238269],[-48.557768,-0.239669],[-48.560768,-0.238669],[-48.564668,-0.237869],[-48.567768,-0.236869],[-48.572068,-0.235569],[-48.576768,-0.234969],[-48.583668,-0.233969],[-48.589568,-0.233369],[-48.594868,-0.233669],[-48.600968,-0.235369],[-48.605868,-0.235369],[-48.609768,-0.233569],[-48.615268,-0.232269],[-48.620568,-0.231669],[-48.624468,-0.231369],[-48.629068,-0.231369],[-48.634568,-0.231669],[-48.637768,-0.232169],[-48.641068,-0.233069],[-48.643768,-0.234269],[-48.647168,-0.237169],[-48.651568,-0.240069],[-48.654568,-0.239769],[-48.657868,-0.239469],[-48.661768,-0.240069],[-48.665368,-0.240569],[-48.668868,-0.240469],[-48.672168,-0.241069],[-48.676568,-0.242269],[-48.682168,-0.243069],[-48.685168,-0.243669],[-48.688568,-0.245269],[-48.693768,-0.244969],[-48.697468,-0.245569],[-48.702368,-0.247269],[-48.707268,-0.249669],[-48.710868,-0.251369],[-48.714868,-0.251669],[-48.719468,-0.251069],[-48.725368,-0.251069],[-48.734768,-0.251069],[-48.739668,-0.250469],[-48.743668,-0.249869],[-48.752768,-0.245269],[-48.758868,-0.241869],[-48.763568,-0.239669],[-48.769768,-0.238569],[-48.775068,-0.237569],[-48.778068,-0.234969],[-48.782368,-0.229169],[-48.785068,-0.226469],[-48.788168,-0.224469],[-48.794968,-0.222069],[-48.798568,-0.221969],[-48.802268,-0.219769],[-48.805568,-0.217269],[-48.809468,-0.215069],[-48.815468,-0.215669],[-48.820168,-0.216269],[-48.824868,-0.217269],[-48.827868,-0.219469],[-48.833268,-0.222269],[-48.842568,-0.222069],[-48.845568,-0.221769],[-48.857268,-0.221669],[-48.864668,-0.222669],[-48.890468,-0.221769],[-48.899468,-0.222069],[-48.902668,-0.222369],[-48.905668,-0.223469],[-48.909268,-0.225569],[-48.912568,-0.228069],[-48.916768,-0.229969],[-48.921168,-0.228869],[-48.930268,-0.226969],[-48.935768,-0.226269],[-48.940568,-0.225269],[-48.944068,-0.223669],[-48.948168,-0.221369],[-48.951768,-0.218169],[-48.955068,-0.212969],[-48.958468,-0.208969],[-48.964868,-0.203269],[-48.971468,-0.199669],[-48.975068,-0.198469],[-48.978168,-0.196269],[-48.984168,-0.192669],[-48.988268,-0.189869],[-48.991868,-0.187169],[-48.994768,-0.186669],[-48.997968,-0.185269],[-49.002968,-0.179669],[-49.008568,-0.171869],[-49.010768,-0.168569],[-49.010768,-0.161769],[-49.013468,-0.159869],[-49.017968,-0.160369],[-49.021468,-0.161469],[-49.024468,-0.163069],[-49.028968,-0.163769],[-49.031968,-0.164269],[-49.035868,-0.165669],[-49.038468,-0.168869],[-49.043368,-0.168569],[-49.046768,-0.166669],[-49.051468,-0.164569],[-49.055768,-0.163169],[-49.060168,-0.162069],[-49.063268,-0.161369],[-49.067068,-0.161169],[-49.071568,-0.161669],[-49.075668,-0.161669],[-49.079268,-0.162769],[-49.082068,-0.163669],[-49.084768,-0.165269],[-49.087868,-0.166369],[-49.090568,-0.164269],[-49.093668,-0.163169],[-49.097368,-0.163469],[-49.100068,-0.165569],[-49.103368,-0.163669],[-49.108068,-0.161669],[-49.113268,-0.160569],[-49.116468,-0.161369],[-49.121968,-0.163969],[-49.125268,-0.166669],[-49.125968,-0.171069],[-49.129668,-0.171069],[-49.133468,-0.169569],[-49.136768,-0.168169],[-49.139268,-0.166469],[-49.142868,-0.163169],[-49.147368,-0.159769],[-49.152268,-0.158469],[-49.156568,-0.156469],[-49.157368,-0.151969],[-49.158868,-0.149269],[-49.161968,-0.147869],[-49.164168,-0.144769],[-49.163868,-0.141569],[-49.163068,-0.137469],[-49.163468,-0.132969],[-49.165568,-0.129569],[-49.168968,-0.129069],[-49.171968,-0.130269],[-49.174968,-0.131769],[-49.176168,-0.134669],[-49.176868,-0.138769],[-49.180768,-0.138969],[-49.185568,-0.136269],[-49.190568,-0.133469],[-49.195168,-0.131269],[-49.199268,-0.133069],[-49.203268,-0.135369],[-49.206868,-0.137969],[-49.207968,-0.142069],[-49.210168,-0.145369],[-49.213968,-0.148969],[-49.217668,-0.147269],[-49.220868,-0.148769],[-49.223768,-0.151169],[-49.228068,-0.153169],[-49.231068,-0.154469],[-49.233568,-0.155869],[-49.236868,-0.156969],[-49.242168,-0.159469],[-49.245868,-0.161769],[-49.246568,-0.164969],[-49.250468,-0.164569],[-49.252368,-0.161969],[-49.254968,-0.160169],[-49.259568,-0.159269],[-49.263268,-0.158769],[-49.266768,-0.159169],[-49.270768,-0.158369],[-49.274068,-0.158069],[-49.277368,-0.157869],[-49.281668,-0.157869],[-49.285868,-0.157569],[-49.290368,-0.157269],[-49.293968,-0.157069],[-49.297868,-0.157069],[-49.302568,-0.157669],[-49.307968,-0.158169],[-49.313068,-0.158069],[-49.316868,-0.157269],[-49.320168,-0.158769],[-49.323468,-0.159769],[-49.327368,-0.158069],[-49.331568,-0.159269],[-49.334368,-0.160569],[-49.336868,-0.162369],[-49.339768,-0.164769],[-49.342568,-0.166669],[-49.345368,-0.169169],[-49.348068,-0.171869],[-49.350968,-0.173669],[-49.356368,-0.176869],[-49.360068,-0.178869],[-49.362468,-0.180769],[-49.366068,-0.181869],[-49.370268,-0.184669],[-49.372968,-0.186669],[-49.376668,-0.188569],[-49.379568,-0.191069],[-49.383468,-0.190969],[-49.387768,-0.190169],[-49.390768,-0.190569],[-49.394068,-0.190869],[-49.400068,-0.187269],[-49.408368,-0.181969],[-49.413868,-0.176369],[-49.421468,-0.168969],[-49.427768,-0.158169],[-49.432668,-0.146869],[-49.435868,-0.135669],[-49.438568,-0.126369],[-49.437668,-0.116169],[-49.435168,-0.108269],[-49.433368,-0.102069],[-49.431968,-0.098169],[-49.431568,-0.094469],[-49.431568,-0.091169],[-49.431568,-0.088169],[-49.429668,-0.085469],[-49.426868,-0.081869],[-49.424668,-0.079269],[-49.421768,-0.075969],[-49.419668,-0.072369],[-49.417468,-0.068469],[-49.413168,-0.065569],[-49.409168,-0.063369],[-49.405468,-0.062769],[-49.402068,-0.060869],[-49.398968,-0.058669],[-49.394368,-0.057569],[-49.389968,-0.058769],[-49.386768,-0.055269],[-49.385368,-0.051569],[-49.383868,-0.047569],[-49.380968,-0.043969],[-49.378568,-0.041169],[-49.376968,-0.038169],[-49.375568,-0.033369],[-49.372468,-0.031969],[-49.368368,-0.032269],[-49.364668,-0.030569],[-49.362468,-0.028769],[-49.359468,-0.026469],[-49.356968,-0.022569],[-49.355568,-0.018269],[-49.355068,-0.015469],[-49.354468,-0.012469],[-49.354268,-0.009569],[-49.354968,-0.006369],[-49.355868,-0.002669],[-49.356968,0.002031],[-49.357768,0.004931],[-49.358668,0.009131],[-49.361768,0.013931],[-49.365768,0.016331],[-49.369368,0.018131],[-49.371568,0.023031],[-49.367268,0.026331],[-49.366068,0.029431],[-49.367668,0.033531],[-49.369468,0.037931],[-49.372368,0.041531],[-49.374868,0.044531],[-49.377368,0.046531],[-49.380768,0.048131],[-49.384268,0.050331],[-49.387668,0.053731],[-49.390668,0.057131],[-49.392668,0.059731],[-49.395668,0.061731],[-49.399768,0.062331],[-49.402668,0.062331],[-49.406168,0.062731],[-49.409568,0.064531],[-49.412468,0.066331],[-49.415368,0.067331],[-49.419268,0.068731],[-49.423568,0.070131],[-49.426168,0.071331],[-49.428968,0.072131],[-49.431968,0.072831],[-49.435568,0.073931],[-49.439868,0.074531],[-49.445168,0.074131],[-49.450668,0.073331],[-49.456768,0.074231],[-49.461168,0.075731],[-49.464868,0.076931],[-49.468668,0.078531],[-49.472368,0.079331],[-49.475968,0.080531],[-49.480068,0.081331],[-49.484468,0.081131],[-49.487468,0.081131],[-49.490568,0.080831],[-49.493868,0.081731],[-49.497368,0.081931],[-49.500468,0.082231],[-49.504968,0.082231],[-49.510968,0.081331],[-49.515068,0.081331],[-49.518168,0.081731],[-49.521468,0.081331],[-49.525468,0.081731],[-49.531668,0.081331],[-49.535368,0.081731],[-49.540068,0.082231],[-49.544268,0.083531],[-49.547468,0.085131],[-49.552468,0.085131],[-49.558668,0.085331],[-49.564168,0.085531],[-49.570268,0.086531],[-49.575668,0.090531],[-49.581268,0.089931],[-49.586768,0.088031],[-49.590568,0.085831],[-49.594468,0.084431],[-49.598168,0.083331],[-49.601368,0.081731],[-49.603868,0.080031],[-49.608268,0.078131],[-49.614168,0.075331],[-49.617468,0.074231],[-49.623368,0.074131],[-49.632168,0.074931],[-49.641068,0.078931],[-49.647368,0.082731],[-49.650668,0.084431],[-49.656168,0.088731],[-49.665568,0.096631],[-49.674768,0.106831],[-49.682468,0.117131],[-49.689468,0.126931],[-49.695668,0.139131],[-49.699568,0.150531],[-49.699868,0.158031],[-49.698568,0.162331],[-49.696368,0.166831],[-49.695168,0.171131],[-49.693868,0.175431],[-49.692668,0.178131],[-49.690468,0.180731],[-49.688368,0.183131],[-49.685468,0.185531],[-49.682268,0.188431],[-49.679668,0.191531],[-49.676368,0.194231],[-49.672468,0.198731],[-49.668168,0.202131],[-49.663868,0.204531],[-49.660668,0.206131],[-49.657068,0.207931],[-49.653668,0.210731],[-49.650468,0.212531],[-49.647868,0.213931],[-49.644868,0.216131],[-49.643168,0.220231],[-49.641768,0.224331],[-49.640068,0.228731],[-49.637468,0.233231],[-49.635168,0.236831],[-49.633268,0.241231],[-49.629068,0.243731],[-49.623568,0.245731],[-49.619168,0.247931],[-49.615268,0.250531],[-49.612268,0.253331],[-49.610368,0.256331],[-49.606768,0.259931],[-49.603468,0.262131],[-49.598368,0.264731],[-49.592068,0.266431],[-49.586568,0.269431],[-49.583668,0.272531],[-49.580368,0.272931],[-49.577168,0.273731],[-49.574368,0.274431],[-49.571568,0.275831],[-49.568868,0.277531],[-49.564368,0.278531],[-49.559768,0.279431],[-49.555168,0.280931],[-49.551168,0.282331],[-49.547168,0.283831],[-49.542768,0.285931],[-49.537868,0.288331],[-49.533968,0.289331],[-49.529168,0.291731],[-49.526168,0.294131],[-49.523468,0.298531],[-49.520668,0.302331],[-49.516868,0.304331],[-49.512468,0.305931],[-49.507468,0.308431],[-49.503468,0.311231],[-49.500168,0.313731],[-49.497668,0.316331],[-49.494968,0.318731],[-49.492768,0.322131],[-49.491068,0.325731],[-49.489668,0.329931],[-49.488568,0.334331],[-49.488668,0.339331],[-49.489368,0.343031],[-49.491468,0.346631],[-49.494368,0.350531],[-49.496868,0.354331],[-49.497468,0.361131],[-49.499868,0.366931],[-49.503068,0.371731],[-49.507368,0.374831],[-49.511568,0.377731],[-49.515668,0.379731],[-49.519068,0.382331],[-49.522868,0.384231],[-49.525668,0.386431],[-49.528668,0.388131],[-49.533068,0.389331],[-49.536168,0.389531],[-49.539468,0.389731],[-49.542568,0.389531],[-49.547768,0.390031],[-49.549268,0.393131],[-49.553068,0.397231],[-49.557768,0.402331],[-49.561068,0.405931],[-49.564168,0.409731],[-49.566668,0.411731],[-49.569968,0.414531],[-49.573168,0.416731],[-49.576468,0.417431],[-49.581868,0.418731],[-49.585068,0.418231],[-49.587868,0.414931],[-49.589068,0.409931],[-49.590568,0.406631],[-49.593968,0.405931],[-49.598168,0.405531],[-49.602568,0.403331],[-49.606068,0.401331],[-49.608868,0.399131],[-49.612168,0.396331],[-49.615468,0.394931],[-49.618068,0.392131],[-49.621668,0.392131],[-49.624668,0.393631],[-49.628868,0.395031],[-49.633568,0.394931],[-49.639068,0.394431],[-49.642368,0.393631],[-49.646168,0.393931],[-49.650668,0.393631],[-49.656968,0.393931],[-49.661468,0.393131],[-49.665268,0.391431],[-49.669468,0.390031],[-49.673668,0.388531],[-49.678068,0.386331],[-49.682268,0.385631],[-49.686968,0.384731],[-49.692768,0.383731],[-49.699268,0.383531],[-49.705468,0.381931],[-49.711268,0.380531],[-49.719168,0.378431],[-49.724568,0.377731],[-49.731068,0.375331],[-49.736968,0.371931],[-49.741668,0.369031],[-49.747468,0.365331],[-49.752068,0.361831],[-49.755468,0.358731],[-49.759668,0.355331],[-49.763268,0.351331],[-49.766268,0.348731],[-49.769268,0.347131],[-49.772268,0.345131],[-49.778168,0.341331],[-49.783468,0.339931],[-49.789268,0.338331],[-49.795268,0.335531],[-49.802168,0.333331],[-49.807768,0.332131],[-49.811868,0.333331],[-49.814068,0.336131],[-49.813468,0.343031],[-49.813868,0.349331],[-49.816568,0.353931],[-49.822168,0.356331],[-49.828268,0.355531],[-49.833168,0.352131],[-49.839868,0.347731],[-49.846468,0.343731],[-49.854468,0.339431],[-49.861468,0.335831],[-49.864768,0.334331],[-49.868268,0.332931],[-49.875168,0.329331],[-49.881868,0.326131],[-49.889268,0.322531],[-49.897968,0.324231],[-49.904768,0.323731],[-49.914168,0.319731],[-49.918868,0.321331],[-49.920868,0.324931],[-49.917268,0.329331],[-49.914968,0.332531],[-49.910268,0.336331],[-49.907668,0.340131],[-49.909768,0.344931],[-49.913868,0.349531],[-49.916068,0.351731],[-49.918168,0.353731],[-49.921868,0.357531],[-49.925768,0.360331],[-49.931368,0.363131],[-49.938468,0.365331],[-49.945968,0.365931],[-49.952868,0.364731],[-49.957868,0.364531],[-49.963968,0.364031],[-49.970568,0.363531],[-49.975868,0.362531],[-49.980568,0.360431],[-49.982768,0.357331],[-49.983968,0.352931],[-49.985568,0.347931],[-49.986168,0.342731],[-49.992968,0.338531],[-50.002468,0.337531],[-50.014368,0.337931],[-50.024468,0.340131],[-50.032668,0.340731],[-50.042168,0.340131],[-50.051068,0.336931],[-50.059968,0.336731],[-50.069968,0.337931],[-50.080668,0.339431],[-50.088768,0.341131],[-50.098368,0.344531],[-50.101668,0.343531],[-50.108268,0.341631],[-50.119768,0.336331],[-50.131668,0.330731],[-50.141768,0.333131],[-50.154568,0.336531],[-50.168568,0.341331],[-50.174668,0.347931],[-50.175868,0.354931],[-50.176968,0.363531],[-50.177568,0.375631],[-50.176368,0.387331],[-50.172768,0.397731],[-50.155868,0.409331],[-50.141068,0.419531],[-50.119968,0.430131],[-50.105568,0.440131],[-50.088168,0.453131],[-50.077368,0.463531],[-50.070768,0.477431],[-50.065468,0.487531],[-50.060868,0.496231],[-50.055468,0.507031],[-50.044968,0.521931],[-50.036168,0.535131],[-50.033368,0.546731],[-50.033768,0.550731],[-50.029068,0.558731],[-50.027668,0.567831],[-50.029168,0.578131],[-50.032268,0.590831],[-50.037268,0.601931],[-50.041668,0.607931],[-50.045868,0.613931],[-50.052568,0.621731],[-50.064168,0.630631],[-50.072468,0.635931],[-50.083668,0.640331],[-50.095368,0.641731],[-50.104268,0.639531],[-50.112468,0.633731],[-50.117768,0.627931],[-50.123368,0.621931],[-50.133468,0.619731],[-50.138968,0.620931],[-50.143168,0.623131],[-50.149768,0.624831],[-50.160068,0.627931],[-50.170068,0.631931],[-50.179068,0.634731],[-50.190268,0.640331],[-50.203968,0.648031],[-50.213468,0.655931],[-50.217568,0.665731],[-50.222668,0.678331],[-50.225068,0.691531],[-50.226368,0.696331],[-50.228968,0.718831],[-50.231168,0.730331],[-50.227468,0.737131],[-50.220368,0.743131],[-50.215068,0.745131],[-50.211568,0.746231],[-50.196368,0.748331],[-50.174968,0.753131],[-50.166068,0.754531],[-50.153368,0.749831],[-50.133768,0.754731],[-50.116868,0.759731],[-50.111868,0.760531],[-50.100968,0.765031],[-50.097268,0.767131],[-50.093368,0.771931],[-50.090868,0.775131],[-50.085468,0.780931],[-50.078168,0.789331],[-50.070668,0.797331],[-50.067668,0.800331],[-50.064568,0.803131],[-50.062168,0.805431],[-50.055168,0.812731],[-50.048568,0.819531],[-50.046368,0.821931],[-50.036668,0.832531],[-50.034468,0.835731],[-50.030968,0.840231],[-50.027868,0.844531],[-50.025368,0.848131],[-50.024068,0.851031],[-50.022568,0.854931],[-50.020168,0.858931],[-50.016868,0.861331],[-50.011068,0.864331],[-50.003068,0.867331],[-49.995468,0.870331],[-49.989968,0.873431],[-49.987468,0.876731],[-49.986068,0.880531],[-49.986068,0.883531],[-49.987468,0.887131],[-49.989768,0.891931],[-49.993368,0.897731],[-49.996568,0.901331],[-50.002468,0.906531],[-49.996368,0.921331],[-49.988968,0.939231],[-49.974468,0.941731],[-49.966768,0.943731],[-49.956768,0.949531],[-49.949368,0.955331],[-49.946868,0.957731],[-49.944068,0.959431],[-49.940968,0.962931],[-49.937168,0.967131],[-49.934468,0.971131],[-49.933268,0.974631],[-49.930768,0.980731],[-49.927468,0.984631],[-49.917868,0.991731],[-49.909268,0.999531],[-49.903668,1.003431],[-49.893768,1.009731],[-49.889668,1.013631],[-49.887468,1.022931],[-49.885768,1.034931],[-49.885268,1.039931],[-49.884568,1.047131],[-49.885668,1.066131],[-49.883568,1.077731],[-49.883868,1.081931],[-49.886068,1.088031],[-49.885968,1.111131],[-49.884868,1.134131],[-49.884668,1.137731],[-49.882968,1.169131],[-49.885468,1.173731],[-49.888168,1.176731],[-49.891568,1.178931],[-49.894368,1.182131],[-49.896168,1.187331],[-49.897568,1.191731],[-49.897368,1.195531],[-49.897268,1.201431],[-49.897068,1.206531],[-49.897868,1.210531],[-49.900368,1.212931],[-49.901568,1.240331],[-49.902268,1.252931],[-49.904268,1.295731],[-49.899768,1.302631],[-49.896268,1.311231],[-49.893568,1.318431],[-49.889568,1.324531],[-49.886268,1.332131],[-49.883568,1.340131],[-49.881868,1.352931],[-49.880768,1.363931],[-49.880468,1.369731],[-49.880668,1.375531],[-49.882468,1.380931],[-49.882768,1.385031],[-49.879968,1.386931],[-49.878468,1.389731],[-49.878768,1.396731],[-49.878268,1.406931],[-49.876568,1.416731],[-49.875768,1.423231],[-49.875568,1.430431],[-49.876268,1.437531],[-49.876568,1.450531],[-49.877168,1.458931],[-49.877368,1.462531],[-49.877668,1.465531],[-49.879068,1.473131],[-49.881268,1.479931],[-49.881568,1.488931],[-49.881668,1.500131],[-49.882668,1.504931],[-49.883568,1.509131],[-49.886368,1.516431],[-49.888268,1.522731],[-49.891268,1.530531],[-49.894368,1.533331],[-49.894368,1.538131],[-49.893468,1.541331],[-49.898468,1.557131],[-49.900468,1.568331],[-49.901968,1.577131],[-49.902868,1.580031],[-49.901868,1.584131],[-49.900068,1.588531],[-49.899768,1.595931],[-49.900168,1.602431],[-49.901968,1.607331],[-49.902268,1.610431],[-49.905568,1.624731],[-49.907368,1.631731],[-49.908868,1.636431],[-49.910068,1.649931],[-49.912768,1.660531],[-49.915268,1.665331],[-49.918868,1.667431],[-49.919968,1.672531],[-49.920668,1.676531],[-49.919268,1.682131],[-49.920568,1.687931],[-49.923868,1.693431],[-49.929168,1.699231],[-49.942668,1.709931],[-49.958168,1.719731],[-49.995868,1.738931],[-50.003068,1.743131],[-50.009268,1.746531],[-50.018968,1.753131],[-50.032268,1.759731],[-50.050868,1.767231],[-50.080468,1.778931],[-50.092268,1.782131],[-50.132168,1.796531],[-50.145468,1.803931],[-50.153768,1.808731],[-50.159768,1.811731],[-50.165668,1.813131],[-50.176868,1.813431],[-50.182268,1.813131],[-50.186568,1.812731],[-50.197168,1.810331],[-50.227068,1.809131],[-50.233868,1.808931],[-50.240768,1.809731],[-50.245168,1.810131],[-50.264268,1.812531],[-50.280068,1.808731],[-50.289568,1.807931],[-50.324568,1.815531],[-50.331268,1.814831],[-50.358268,1.804731],[-50.373368,1.801131],[-50.400368,1.800331],[-50.414468,1.801831],[-50.421168,1.803731],[-50.424368,1.805431],[-50.427168,1.808731],[-50.430868,1.810731],[-50.440568,1.813331],[-50.444868,1.815131],[-50.448568,1.817831],[-50.466668,1.831131],[-50.474968,1.838731],[-50.504468,1.881131],[-50.507368,1.884531],[-50.508268,1.887731],[-50.525468,1.929831],[-50.529168,1.934331],[-50.533068,1.940131],[-50.535568,1.941731],[-50.539468,1.943131],[-50.551368,1.949531],[-50.557968,1.955831],[-50.582568,1.989731],[-50.588968,2.004531],[-50.595268,2.024931],[-50.597368,2.029731],[-50.599768,2.040731],[-50.599568,2.052531],[-50.598468,2.057631],[-50.597868,2.062531],[-50.600568,2.068431],[-50.603668,2.073131],[-50.609368,2.078931],[-50.612468,2.083531],[-50.617768,2.091331],[-50.623268,2.094531],[-50.624868,2.096931],[-50.634168,2.102331],[-50.636368,2.105531],[-50.642868,2.112131],[-50.646468,2.114731],[-50.656568,2.119831],[-50.663068,2.124531],[-50.670868,2.129131],[-50.674768,2.130931],[-50.681068,2.133531],[-50.683868,2.143631],[-50.684668,2.151531],[-50.682568,2.156331],[-50.681168,2.161731],[-50.680768,2.167131],[-50.681868,2.175331],[-50.683068,2.179531],[-50.684368,2.183931],[-50.686568,2.190931],[-50.691868,2.201431],[-50.704668,2.224131],[-50.712568,2.232931],[-50.714868,2.234631],[-50.717568,2.235931],[-50.720568,2.237331],[-50.722268,2.240331],[-50.724268,2.245131],[-50.724468,2.248731],[-50.725268,2.252731],[-50.725268,2.255631],[-50.724768,2.261131],[-50.723368,2.266331],[-50.721968,2.278031],[-50.721968,2.281531],[-50.722368,2.286531],[-50.723468,2.290131],[-50.726368,2.294531],[-50.731168,2.300931],[-50.735068,2.303931],[-50.738268,2.307131],[-50.740768,2.309131],[-50.742168,2.312331],[-50.743268,2.316131],[-50.744068,2.319131],[-50.744668,2.324231],[-50.744068,2.328931],[-50.744668,2.333131],[-50.745468,2.336531],[-50.745468,2.339931],[-50.746268,2.343531],[-50.746568,2.347431],[-50.746568,2.351931],[-50.747668,2.356731],[-50.749468,2.361831],[-50.752668,2.365131],[-50.757468,2.370331],[-50.757768,2.374831],[-50.757168,2.380931],[-50.756568,2.385931],[-50.757768,2.389531],[-50.759868,2.395731],[-50.762068,2.399931],[-50.763768,2.402531],[-50.766268,2.405531],[-50.768468,2.408731],[-50.768768,2.413331],[-50.766568,2.429531],[-50.766768,2.436531],[-50.767568,2.443331],[-50.768968,2.449231],[-50.770368,2.453531],[-50.772368,2.457731],[-50.776568,2.463731],[-50.783868,2.471131],[-50.784768,2.475131],[-50.787868,2.486131],[-50.789968,2.491131],[-50.793568,2.497631],[-50.797568,2.500931],[-50.801868,2.502731],[-50.807268,2.503131],[-50.811868,2.503131],[-50.816568,2.503131],[-50.819268,2.505631],[-50.827068,2.513931],[-50.826368,2.519331],[-50.823468,2.527731],[-50.824568,2.530531],[-50.827668,2.534131],[-50.833168,2.540931],[-50.832868,2.545331],[-50.831568,2.549031],[-50.831568,2.554031],[-50.833168,2.559731],[-50.834768,2.567731],[-50.837368,2.576331],[-50.840868,2.580831],[-50.847268,2.592731],[-50.845868,2.597931],[-50.844268,2.601031],[-50.844468,2.612531],[-50.844568,2.619731],[-50.846168,2.632831],[-50.846768,2.636931],[-50.847668,2.640331],[-50.850668,2.642531],[-50.853968,2.643931],[-50.858168,2.644931],[-50.859368,2.647731],[-50.857768,2.650331],[-50.857468,2.653731],[-50.857168,2.656631],[-50.857868,2.659731],[-50.859368,2.663731],[-50.868068,2.677331],[-50.870768,2.680731],[-50.872968,2.682631],[-50.876268,2.684531],[-50.879568,2.684531],[-50.882168,2.689231],[-50.886068,2.710731],[-50.884368,2.713731],[-50.883268,2.723131],[-50.883768,2.732331],[-50.884068,2.737931],[-50.884568,2.741531],[-50.886568,2.745331],[-50.890468,2.749131],[-50.895468,2.753131],[-50.899468,2.755631],[-50.903768,2.757331],[-50.905868,2.775331],[-50.906168,2.781931],[-50.907268,2.786331],[-50.908968,2.789531],[-50.913468,2.792431],[-50.915668,2.795931],[-50.918868,2.799931],[-50.922768,2.803331],[-50.931868,2.808131],[-50.937668,2.811931],[-50.940568,2.814531],[-50.945168,2.818731],[-50.947468,2.827131],[-50.949068,2.830531],[-50.951068,2.834331],[-50.953568,2.837131],[-50.952868,2.840831],[-50.950168,2.844131],[-50.949268,2.849631],[-50.949968,2.854131],[-50.951268,2.861531],[-50.950368,2.866931],[-50.948968,2.872631],[-50.949568,2.877331],[-50.950768,2.882731],[-50.959368,2.894931],[-50.962368,2.900731],[-50.974268,2.924331],[-50.975568,2.928731],[-50.978068,2.931231],[-50.979468,2.933731],[-50.982868,2.936931],[-50.983968,2.941531],[-50.987268,2.951731],[-50.989368,2.959431],[-50.991868,2.962231],[-50.991968,2.965531],[-50.992268,2.974531],[-50.993068,2.982731],[-50.993868,2.988731],[-50.995068,2.994731],[-50.997268,3.001131],[-50.997168,3.004531],[-50.998768,3.011131],[-51.000568,3.015031],[-51.003768,3.020331],[-51.007368,3.026931],[-51.015068,3.037131],[-51.017868,3.039531],[-51.017868,3.043131],[-51.021268,3.052331],[-51.021168,3.056731],[-51.021768,3.060131],[-51.019268,3.064831],[-51.015668,3.068331],[-51.016468,3.071931],[-51.017068,3.074931],[-51.017468,3.079331],[-51.014268,3.082131],[-51.014568,3.085531],[-51.021168,3.096631],[-51.025168,3.102431],[-51.027968,3.104931],[-51.031768,3.106831],[-51.032668,3.109931],[-51.035868,3.115931],[-51.040368,3.124831],[-51.044268,3.134131],[-51.044268,3.139531],[-51.043568,3.143131],[-51.044168,3.148331],[-51.043168,3.152531],[-51.042068,3.156631],[-51.042268,3.160931],[-51.043168,3.164631],[-51.041368,3.167931],[-51.035968,3.175931],[-51.034768,3.180931],[-51.034268,3.189131],[-51.034268,3.194131],[-51.033468,3.198931],[-51.033368,3.203131],[-51.032568,3.206931],[-51.032768,3.213731],[-51.034768,3.219731],[-51.035968,3.222431],[-51.043568,3.240731],[-51.046168,3.244731],[-51.048968,3.247631],[-51.049368,3.250631],[-51.051568,3.252931],[-51.052768,3.258531],[-51.057668,3.271531],[-51.065168,3.288131],[-51.069068,3.303331],[-51.082268,3.339931],[-51.086468,3.350231],[-51.091168,3.369031],[-51.098168,3.394731],[-51.099568,3.405931],[-51.105368,3.425931],[-51.105868,3.434131],[-51.109268,3.450731],[-51.108968,3.454331],[-51.101468,3.461131],[-51.096368,3.468731],[-51.094168,3.474631],[-51.090968,3.480531],[-51.090568,3.483531],[-51.087068,3.499831],[-51.086968,3.519731],[-51.083268,3.544131],[-51.081768,3.559531],[-51.082068,3.565631],[-51.086168,3.591531],[-51.086168,3.601531],[-51.086768,3.610131],[-51.088468,3.614331],[-51.088668,3.622531],[-51.090168,3.629931],[-51.090368,3.632831],[-51.089268,3.636131],[-51.087668,3.642931],[-51.087668,3.651131],[-51.089068,3.671531],[-51.089268,3.675731],[-51.089568,3.679731],[-51.089868,3.684531],[-51.090068,3.688731],[-51.090468,3.702131],[-51.090568,3.707131],[-51.091168,3.738531],[-51.090868,3.743331],[-51.088168,3.764531],[-51.087268,3.783831],[-51.088968,3.794131],[-51.086768,3.796831],[-51.087668,3.804031],[-51.086968,3.808831],[-51.089368,3.819131],[-51.087268,3.824231],[-51.087068,3.827731],[-51.086168,3.836531],[-51.084368,3.839331],[-51.082868,3.857131],[-51.080668,3.884931],[-51.081468,3.890031],[-51.082968,3.895031],[-51.085068,3.899931],[-51.089368,3.905531],[-51.092068,3.908331],[-51.095368,3.910231],[-51.098368,3.910731],[-51.102068,3.912431],[-51.110368,3.911731],[-51.113868,3.910931],[-51.118268,3.909331],[-51.122968,3.907931],[-51.150768,3.913831],[-51.179368,3.919531],[-51.179668,3.924331],[-51.179968,3.929331],[-51.179168,3.936231],[-51.180068,3.940931],[-51.179468,3.944931],[-51.179468,3.947831],[-51.179368,3.952731],[-51.177568,3.958131],[-51.180268,3.961931],[-51.179368,3.964931],[-51.179368,3.972431],[-51.178368,3.976731],[-51.177568,3.980931],[-51.177768,3.984131],[-51.177168,3.988131],[-51.177768,3.992631],[-51.177868,3.997331],[-51.176568,4.000131],[-51.177768,4.004731],[-51.175768,4.010031],[-51.175868,4.013331],[-51.176868,4.018931],[-51.177968,4.022931],[-51.179768,4.026931],[-51.181068,4.032931],[-51.181668,4.036931],[-51.181068,4.040931],[-51.183368,4.047531],[-51.184168,4.051731],[-51.183068,4.054731],[-51.184468,4.060131],[-51.187268,4.069931],[-51.189368,4.073731],[-51.189068,4.077231],[-51.189568,4.080331],[-51.192768,4.088731],[-51.193468,4.092331],[-51.197168,4.099331],[-51.197868,4.104331],[-51.199268,4.108731],[-51.200468,4.113931],[-51.202568,4.117931],[-51.202868,4.121131],[-51.203968,4.125131],[-51.206568,4.127731],[-51.215168,4.142731],[-51.214068,4.145531],[-51.216268,4.150131],[-51.221768,4.157731],[-51.222668,4.160731],[-51.225968,4.163731],[-51.231468,4.171331],[-51.235068,4.177631],[-51.239668,4.184531],[-51.244968,4.191731],[-51.249368,4.197131],[-51.251268,4.199531],[-51.251668,4.202831],[-51.254468,4.205031],[-51.256368,4.207731],[-51.259268,4.211731],[-51.262668,4.215731],[-51.268968,4.229131],[-51.271768,4.231031],[-51.271268,4.234131],[-51.275668,4.239031],[-51.282568,4.246731],[-51.283368,4.250331],[-51.297168,4.261331],[-51.319568,4.284931],[-51.331868,4.304831],[-51.335768,4.307131],[-51.337868,4.310331],[-51.351668,4.319731],[-51.366068,4.336131],[-51.374468,4.342531],[-51.385368,4.353131],[-51.394268,4.365131],[-51.399868,4.368731],[-51.406468,4.372631],[-51.411168,4.377031],[-51.415868,4.381331],[-51.418968,4.384231],[-51.421868,4.387131],[-51.430468,4.393531],[-51.433668,4.395731],[-51.436868,4.397931],[-51.439568,4.399731],[-51.444568,4.403731],[-51.447868,4.405931],[-51.460868,4.416831],[-51.474268,4.428331],[-51.485868,4.437331],[-51.489168,4.437531],[-51.492468,4.439131],[-51.508568,4.447131],[-51.511768,4.448131],[-51.516468,4.450031],[-51.637468,4.508931],[-51.652268,4.486131],[-51.661968,4.470731],[-51.669268,4.453931],[-51.663668,4.423531],[-51.673968,4.394331],[-51.679168,4.366131],[-51.676868,4.332731],[-51.669168,4.309831],[-51.649268,4.267231],[-51.640368,4.252031],[-51.632668,4.240431],[-51.623068,4.225731],[-51.618868,4.209931],[-51.621868,4.195131],[-51.631268,4.186131],[-51.634868,4.176331],[-51.635668,4.172131],[-51.636068,4.167431],[-51.636768,4.157331],[-51.637468,4.133331],[-51.642168,4.116231],[-51.642568,4.111831],[-51.643168,4.106331],[-51.643668,4.103131],[-51.644368,4.098331],[-51.645068,4.094531],[-51.645668,4.091631],[-51.646268,4.087131],[-51.646868,4.083531],[-51.647668,4.079531],[-51.648468,4.076431],[-51.649268,4.073531],[-51.651468,4.069531],[-51.653768,4.063431],[-51.654768,4.058331],[-51.655968,4.053931],[-51.658468,4.050931],[-51.663868,4.046731],[-51.668368,4.043231],[-51.671768,4.039531],[-51.674768,4.036731],[-51.678968,4.035131],[-51.681968,4.034331],[-51.686268,4.032331],[-51.691668,4.029131],[-51.695968,4.027531],[-51.698768,4.026331],[-51.702368,4.024131],[-51.705368,4.020731],[-51.708168,4.018531],[-51.711968,4.017531],[-51.716568,4.015931],[-51.719468,4.014331],[-51.722068,4.013131],[-51.724768,4.011731],[-51.727368,4.009731],[-51.730668,4.007531],[-51.734968,4.005931],[-51.738668,4.004931],[-51.741668,4.003731],[-51.744768,4.002031],[-51.747668,3.999831],[-51.750568,3.997631],[-51.753768,3.995131],[-51.757668,3.992531],[-51.760468,3.988231],[-51.762768,3.985731],[-51.765668,3.983231],[-51.769368,3.980731],[-51.774768,3.977331],[-51.777568,3.974531],[-51.779768,3.971331],[-51.781268,3.967931],[-51.782268,3.964131],[-51.782368,3.960831],[-51.782268,3.956331],[-51.782268,3.952831],[-51.783068,3.948131],[-51.781168,3.943331],[-51.780468,3.939531],[-51.781168,3.935731],[-51.781268,3.931131],[-51.781268,3.926331],[-51.781968,3.922731],[-51.783768,3.917931],[-51.785868,3.913331],[-51.787268,3.909931],[-51.789268,3.905731],[-51.791168,3.901531],[-51.793668,3.897531],[-51.795368,3.893631],[-51.796868,3.890031],[-51.798868,3.886931],[-51.801168,3.884931],[-51.803568,3.882531],[-51.806068,3.879531],[-51.808368,3.877331],[-51.810768,3.875531],[-51.814168,3.872631],[-51.820468,3.870131],[-51.822368,3.866731],[-51.822468,3.861731],[-51.823568,3.858731],[-51.825968,3.856731],[-51.828168,3.854931],[-51.830968,3.852931],[-51.833668,3.851531],[-51.836868,3.850531],[-51.839468,3.848531],[-51.841168,3.846131],[-51.844568,3.842131],[-51.849168,3.838331],[-51.854768,3.833931],[-51.857068,3.829531],[-51.859168,3.825931],[-51.861768,3.823931],[-51.863968,3.822131],[-51.865768,3.819131],[-51.867168,3.816531],[-51.868268,3.812931],[-51.869168,3.809131],[-51.870768,3.806531],[-51.873768,3.803531],[-51.876968,3.802631],[-51.880168,3.803131],[-51.883468,3.801831],[-51.884568,3.798931],[-51.886068,3.795931],[-51.889068,3.795131],[-51.892068,3.796531],[-51.894768,3.797531],[-51.898268,3.798731],[-51.901468,3.800331],[-51.904468,3.797931],[-51.903968,3.793531],[-51.901468,3.791831],[-51.898268,3.791531],[-51.896268,3.789331],[-51.896168,3.785931],[-51.899868,3.784131],[-51.904068,3.782331],[-51.908768,3.780531],[-51.912868,3.780131],[-51.918168,3.781531],[-51.921068,3.777731],[-51.921168,3.773731],[-51.924468,3.770831],[-51.926168,3.767931],[-51.923168,3.763531],[-51.921368,3.760331],[-51.920368,3.755531],[-51.919568,3.750831],[-51.916668,3.746131],[-51.917268,3.743131],[-51.919268,3.740131],[-51.919768,3.735931],[-51.919168,3.732131],[-51.920268,3.727331],[-51.922568,3.723331],[-51.925568,3.722331],[-51.929168,3.722431],[-51.932968,3.722731],[-51.934468,3.720131],[-51.937468,3.720131],[-51.940768,3.721131],[-51.945968,3.721631],[-51.949568,3.722431],[-51.952668,3.722131],[-51.955668,3.720531],[-51.956868,3.717731],[-51.957368,3.714131],[-51.961168,3.713531],[-51.964468,3.711731],[-51.968468,3.708331],[-51.971768,3.705831],[-51.973468,3.701431],[-51.974168,3.697331],[-51.976368,3.692831],[-51.977468,3.689131],[-51.977868,3.684731],[-51.979168,3.681731],[-51.981068,3.679031],[-51.983568,3.677331],[-51.986068,3.673231],[-51.986768,3.669131],[-51.987768,3.665531],[-51.988268,3.661031],[-51.987168,3.657131],[-51.986968,3.653731],[-51.988268,3.650831],[-51.990768,3.647731],[-51.992968,3.642731],[-51.991168,3.640331],[-51.989968,3.636331],[-51.988668,3.632331],[-51.988568,3.627931],[-51.990768,3.624831],[-51.993268,3.621531],[-51.995768,3.617931],[-51.997668,3.615731],[-52.000168,3.613131],[-52.002968,3.609131],[-52.005568,3.607131],[-52.007468,3.604931],[-52.009568,3.602731],[-52.013168,3.599131],[-52.016468,3.596331],[-52.020368,3.591931],[-52.022568,3.587731],[-52.024868,3.584731],[-52.027668,3.577831],[-52.029768,3.575031],[-52.031968,3.572331],[-52.033968,3.568131],[-52.035968,3.564231],[-52.037768,3.561131],[-52.039168,3.557931],[-52.041768,3.553731],[-52.044168,3.549731],[-52.048168,3.542131],[-52.051168,3.537431],[-52.053268,3.534131],[-52.055268,3.529431],[-52.058268,3.523531],[-52.061268,3.519331],[-52.064868,3.518131],[-52.069868,3.518131],[-52.073468,3.514131],[-52.072368,3.509931],[-52.070268,3.507731],[-52.071268,3.504231],[-52.073768,3.499731],[-52.077868,3.496131],[-52.080068,3.492531],[-52.082968,3.491131],[-52.087268,3.488531],[-52.089368,3.484931],[-52.090868,3.481831],[-52.092668,3.479131],[-52.093968,3.475131],[-52.093168,3.470531],[-52.094268,3.466931],[-52.094768,3.462931],[-52.099868,3.459331],[-52.102468,3.456531],[-52.105868,3.454131],[-52.108068,3.451731],[-52.109768,3.448331],[-52.111368,3.444531],[-52.112868,3.441331],[-52.113268,3.438331],[-52.114468,3.434131],[-52.117268,3.432631],[-52.119168,3.429831],[-52.120768,3.427331],[-52.121668,3.424331],[-52.124468,3.419931],[-52.127368,3.415331],[-52.129368,3.412431],[-52.131568,3.407931],[-52.133168,3.404931],[-52.136768,3.397931],[-52.138868,3.392731],[-52.142668,3.386731],[-52.145668,3.381931],[-52.148468,3.378931],[-52.150068,3.375131],[-52.150868,3.371231],[-52.153068,3.367331],[-52.155168,3.363231],[-52.157368,3.359631],[-52.159468,3.355931],[-52.161968,3.351931],[-52.165068,3.349331],[-52.167868,3.346631],[-52.169768,3.344531],[-52.172268,3.339931],[-52.173868,3.337531],[-52.173868,3.333131],[-52.175568,3.328931],[-52.177968,3.326331],[-52.181668,3.324231],[-52.184068,3.322731],[-52.186568,3.320131],[-52.187968,3.317531],[-52.188768,3.314731],[-52.189568,3.311231],[-52.191868,3.306731],[-52.189168,3.302531],[-52.190568,3.297731],[-52.195168,3.294931],[-52.198868,3.291731],[-52.203168,3.286331],[-52.204568,3.283331],[-52.206068,3.280731],[-52.209268,3.278331],[-52.211468,3.275731],[-52.213668,3.271531],[-52.215868,3.267931],[-52.218668,3.262831],[-52.221368,3.259731],[-52.223068,3.256731],[-52.224468,3.252731],[-52.227768,3.248431],[-52.230368,3.245331],[-52.232168,3.242931],[-52.235568,3.239931],[-52.239668,3.238931],[-52.242468,3.237631],[-52.246368,3.240931],[-52.246868,3.245931],[-52.248368,3.249731],[-52.253068,3.251931],[-52.257668,3.252731],[-52.261268,3.252731],[-52.263568,3.250131],[-52.263568,3.246131],[-52.266068,3.243331],[-52.269268,3.241531],[-52.272268,3.239031],[-52.273968,3.236531],[-52.276568,3.234931],[-52.279868,3.234131],[-52.283968,3.231031],[-52.287368,3.228531],[-52.291768,3.226531],[-52.292768,3.221131],[-52.293168,3.218031],[-52.293968,3.215231],[-52.295368,3.212131],[-52.296968,3.209431],[-52.299468,3.206131],[-52.301868,3.201731],[-52.302868,3.197131],[-52.302468,3.193431],[-52.301168,3.188731],[-52.300868,3.184331],[-52.299668,3.179831],[-52.299668,3.176131],[-52.301468,3.173231],[-52.306068,3.174031],[-52.311568,3.175331],[-52.315968,3.173231],[-52.319068,3.171131],[-52.323468,3.170931],[-52.327168,3.171531],[-52.330768,3.171131],[-52.330168,3.167431],[-52.330468,3.163331],[-52.332368,3.160231],[-52.333768,3.155131],[-52.335668,3.150831],[-52.337868,3.148931],[-52.340068,3.145531],[-52.336468,3.141431],[-52.331768,3.137331],[-52.334368,3.134731],[-52.339768,3.134931],[-52.343768,3.134731],[-52.346968,3.136431],[-52.349568,3.133931],[-52.352368,3.128931],[-52.352468,3.125331],[-52.350868,3.122631],[-52.348068,3.120931],[-52.343768,3.120931],[-52.339068,3.120531],[-52.338668,3.116931],[-52.340668,3.114031],[-52.342568,3.111331],[-52.345168,3.108131],[-52.345868,3.104331],[-52.345668,3.100731],[-52.344868,3.096331],[-52.341668,3.092731],[-52.338968,3.089731],[-52.335368,3.087731],[-52.330968,3.084331],[-52.327668,3.081531],[-52.326068,3.078531],[-52.326768,3.074131],[-52.328268,3.070531],[-52.330668,3.067831],[-52.333168,3.063731],[-52.334668,3.060531],[-52.336168,3.057331],[-52.337968,3.054031],[-52.341168,3.050731],[-52.343068,3.046831],[-52.345068,3.043131],[-52.346168,3.038531],[-52.348068,3.035231],[-52.350268,3.031131],[-52.352368,3.026931],[-52.352268,3.023731],[-52.354968,3.020731],[-52.358968,3.018631],[-52.362268,3.015931],[-52.363368,3.010031],[-52.363668,3.006131],[-52.365368,3.002331],[-52.366168,2.997531],[-52.368668,2.993131],[-52.370868,2.991231],[-52.370768,2.988131],[-52.369068,2.985131],[-52.368568,2.981531],[-52.369968,2.977931],[-52.371368,2.974631],[-52.372968,2.971931],[-52.374368,2.968531],[-52.375968,2.965231],[-52.377968,2.962131],[-52.379868,2.958131],[-52.381668,2.953931],[-52.383868,2.950331],[-52.387768,2.948931],[-52.391568,2.948131],[-52.393168,2.945331],[-52.390368,2.942031],[-52.390368,2.937931],[-52.392168,2.933931],[-52.394868,2.931231],[-52.394768,2.927631],[-52.392068,2.925331],[-52.389668,2.922931],[-52.389368,2.919131],[-52.386568,2.917731],[-52.382368,2.918531],[-52.378768,2.920731],[-52.377668,2.915731],[-52.380168,2.912131],[-52.382368,2.909731],[-52.384168,2.907331],[-52.386768,2.904431],[-52.389268,2.900331],[-52.393268,2.897231],[-52.397968,2.897131],[-52.401268,2.897131],[-52.404268,2.900331],[-52.407768,2.899431],[-52.409468,2.897131],[-52.410068,2.894131],[-52.413968,2.893531],[-52.418368,2.893931],[-52.422168,2.891131],[-52.423268,2.887531],[-52.424968,2.883531],[-52.427168,2.879531],[-52.429368,2.876331],[-52.430768,2.873331],[-52.433068,2.870331],[-52.434868,2.867131],[-52.435468,2.864031],[-52.437468,2.861531],[-52.439368,2.858531],[-52.441268,2.854531],[-52.444068,2.851031],[-52.445568,2.847731],[-52.447168,2.843031],[-52.449068,2.840131],[-52.450968,2.835831],[-52.451868,2.831731],[-52.453168,2.828331],[-52.454968,2.825531],[-52.456068,2.821931],[-52.458468,2.818431],[-52.461168,2.814231],[-52.462868,2.811531],[-52.464468,2.808131],[-52.466668,2.804731],[-52.468668,2.801831],[-52.470068,2.798931],[-52.472668,2.795331],[-52.473468,2.792131],[-52.473768,2.789131],[-52.475268,2.784931],[-52.477768,2.781531],[-52.478368,2.778331],[-52.477068,2.774431],[-52.476368,2.769931],[-52.475968,2.765531],[-52.478168,2.762731],[-52.481468,2.761131],[-52.482568,2.757031],[-52.479768,2.753931],[-52.480668,2.750131],[-52.482168,2.747031],[-52.482868,2.744031],[-52.485268,2.740731],[-52.486868,2.736531],[-52.488668,2.733231],[-52.490868,2.730131],[-52.494368,2.727431],[-52.496868,2.725731],[-52.498768,2.723331],[-52.499968,2.720231],[-52.500168,2.716631],[-52.502368,2.713731],[-52.504068,2.711131],[-52.504868,2.708131],[-52.506268,2.704931],[-52.507368,2.701731],[-52.507368,2.698331],[-52.509368,2.695631],[-52.512468,2.692831],[-52.515068,2.690131],[-52.517668,2.687531],[-52.518968,2.684731],[-52.520068,2.681531],[-52.519368,2.676731],[-52.521468,2.674331],[-52.522568,2.671131],[-52.525168,2.666831],[-52.527568,2.662331],[-52.526168,2.659531],[-52.528468,2.656131],[-52.529468,2.652131],[-52.531968,2.650331],[-52.534768,2.650831],[-52.536768,2.652931],[-52.541668,2.653931],[-52.545368,2.651531],[-52.549668,2.649431],[-52.550468,2.645531],[-52.552968,2.642531],[-52.555168,2.640031],[-52.555068,2.636931],[-52.553068,2.634531],[-52.551068,2.631731],[-52.546068,2.630531],[-52.543568,2.626131],[-52.542468,2.622631],[-52.543368,2.618931],[-52.545768,2.614731],[-52.549368,2.612331],[-52.546868,2.609331],[-52.543168,2.607931],[-52.540368,2.606031],[-52.536468,2.603731],[-52.533968,2.600931],[-52.531968,2.598831],[-52.530868,2.595131],[-52.529468,2.589731],[-52.527568,2.584331],[-52.527868,2.580831],[-52.530468,2.578931],[-52.533168,2.575931],[-52.535068,2.572531],[-52.537468,2.567531],[-52.538168,2.564531],[-52.536468,2.561231],[-52.537768,2.558431],[-52.540968,2.559531],[-52.544168,2.561131],[-52.548268,2.562031],[-52.551968,2.560331],[-52.554768,2.557131],[-52.557668,2.552631],[-52.560868,2.550431],[-52.560468,2.546831],[-52.558368,2.543231],[-52.556568,2.540931],[-52.556168,2.536931],[-52.554668,2.532331],[-52.550268,2.530531],[-52.551968,2.525731],[-52.552568,2.520531],[-52.557168,2.519731],[-52.560568,2.518331],[-52.564868,2.516331],[-52.568768,2.512131],[-52.572168,2.508531],[-52.574968,2.505631],[-52.577168,2.503131],[-52.579668,2.501331],[-52.582168,2.498931],[-52.584368,2.495531],[-52.587968,2.493731],[-52.588668,2.488931],[-52.591468,2.485431],[-52.593468,2.481031],[-52.594468,2.476931],[-52.598068,2.475731],[-52.601168,2.476931],[-52.604168,2.476031],[-52.607468,2.476331],[-52.611968,2.475531],[-52.616368,2.475731],[-52.619468,2.473331],[-52.621068,2.470531],[-52.621968,2.466331],[-52.620868,2.462131],[-52.616868,2.459431],[-52.614168,2.457231],[-52.611668,2.455731],[-52.610368,2.452831],[-52.612468,2.450331],[-52.614968,2.448731],[-52.616168,2.446131],[-52.620168,2.445531],[-52.625168,2.445531],[-52.629068,2.444531],[-52.631668,2.442731],[-52.633168,2.445931],[-52.636568,2.444131],[-52.637168,2.440131],[-52.640168,2.437531],[-52.643168,2.435131],[-52.645668,2.432931],[-52.645168,2.428331],[-52.643568,2.424931],[-52.644068,2.420931],[-52.646168,2.417331],[-52.649268,2.414331],[-52.652268,2.410531],[-52.654868,2.406931],[-52.656768,2.404331],[-52.658068,2.401131],[-52.655868,2.398031],[-52.654468,2.393631],[-52.656168,2.390331],[-52.657668,2.386131],[-52.659468,2.381731],[-52.660268,2.378431],[-52.661668,2.374331],[-52.666668,2.373331],[-52.669568,2.371231],[-52.671668,2.369031],[-52.675268,2.369731],[-52.679368,2.370731],[-52.682968,2.369331],[-52.686568,2.367631],[-52.689868,2.367531],[-52.692368,2.365431],[-52.696368,2.363931],[-52.701068,2.362531],[-52.705168,2.360731],[-52.709068,2.358931],[-52.712668,2.356531],[-52.714768,2.354331],[-52.717568,2.351331],[-52.718668,2.348331],[-52.717668,2.344331],[-52.722568,2.341531],[-52.725968,2.339931],[-52.728868,2.339331],[-52.732468,2.338731],[-52.735068,2.336531],[-52.738968,2.336531],[-52.742668,2.333631],[-52.746068,2.331331],[-52.748568,2.329531],[-52.751868,2.328331],[-52.755668,2.326431],[-52.759868,2.325031],[-52.763968,2.323731],[-52.766268,2.320931],[-52.769768,2.321131],[-52.771568,2.318331],[-52.775168,2.315131],[-52.778368,2.317531],[-52.780968,2.314731],[-52.783368,2.311131],[-52.787768,2.310531],[-52.790668,2.307631],[-52.793568,2.304731],[-52.796768,2.304531],[-52.801068,2.301531],[-52.805068,2.300131],[-52.809068,2.298931],[-52.812968,2.296831],[-52.817368,2.295331],[-52.821068,2.294931],[-52.825468,2.293931],[-52.829868,2.293231],[-52.833268,2.292731],[-52.835968,2.290331],[-52.840568,2.290931],[-52.842568,2.287931],[-52.839868,2.285931],[-52.838368,2.282331],[-52.840968,2.280931],[-52.844568,2.280731],[-52.848368,2.280131],[-52.853068,2.279731],[-52.857268,2.281131],[-52.856068,2.276931],[-52.856768,2.274131],[-52.855268,2.271731],[-52.852068,2.269731],[-52.853868,2.265331],[-52.857768,2.262331],[-52.861868,2.260631],[-52.865268,2.261331],[-52.868368,2.259731],[-52.871868,2.259531],[-52.871868,2.256131],[-52.872368,2.252031],[-52.873268,2.247531],[-52.875868,2.243931],[-52.875768,2.240431],[-52.879868,2.238231],[-52.885768,2.238531],[-52.886268,2.234531],[-52.886268,2.229131],[-52.887168,2.224131],[-52.886068,2.220131],[-52.888568,2.218331],[-52.891468,2.216931],[-52.892168,2.213931],[-52.892868,2.211131],[-52.894568,2.208331],[-52.897268,2.205031],[-52.899568,2.200331],[-52.901568,2.197131],[-52.902668,2.193431],[-52.903768,2.187531],[-52.908068,2.189231],[-52.910868,2.188431],[-52.913068,2.191731],[-52.916768,2.192331],[-52.919968,2.192731],[-52.923568,2.190631],[-52.929768,2.191331],[-52.933268,2.194231],[-52.936268,2.192331],[-52.938768,2.189231],[-52.938268,2.186131],[-52.938568,2.182131],[-52.941968,2.178731],[-52.946268,2.177331],[-52.950668,2.175931],[-52.955468,2.173931],[-52.959368,2.174931],[-52.962368,2.173731],[-52.965468,2.173131],[-52.968668,2.172731],[-52.971668,2.171831],[-52.975268,2.171731],[-52.978368,2.168531],[-52.982468,2.168231],[-52.986968,2.168731],[-52.989968,2.171831],[-52.993268,2.173531],[-52.995768,2.175431],[-52.998768,2.178131],[-53.001968,2.177631],[-53.004568,2.179331],[-53.007768,2.178331],[-53.010668,2.179331],[-53.013968,2.179731],[-53.018768,2.181931],[-53.024068,2.182931],[-53.028068,2.184331],[-53.030668,2.186231],[-53.035168,2.186731],[-53.039968,2.186231],[-53.042468,2.188331],[-53.045868,2.189131],[-53.049168,2.190131],[-53.052468,2.190331],[-53.054468,2.193131],[-53.057568,2.195331],[-53.061068,2.198731],[-53.065268,2.200531],[-53.069368,2.203531],[-53.074868,2.207131],[-53.079568,2.210531],[-53.084368,2.212931],[-53.089568,2.212931],[-53.096368,2.213531],[-53.099468,2.214331],[-53.112568,2.212731],[-53.117968,2.211931],[-53.126968,2.211931],[-53.133468,2.211731],[-53.138568,2.211931],[-53.144068,2.210131],[-53.148268,2.208131],[-53.155468,2.206931],[-53.163068,2.204931],[-53.166368,2.205331],[-53.171168,2.204531],[-53.175268,2.204331],[-53.177968,2.203131],[-53.180768,2.200731],[-53.185168,2.199231],[-53.189568,2.199731],[-53.192768,2.199531],[-53.196568,2.198731],[-53.199868,2.199531],[-53.208268,2.199231],[-53.209268,2.196431],[-53.212568,2.195631],[-53.215468,2.193931],[-53.217568,2.195931],[-53.220668,2.193731],[-53.224568,2.196331],[-53.228468,2.197831],[-53.229668,2.200731],[-53.234368,2.205731],[-53.239668,2.207231],[-53.242768,2.207731],[-53.245868,2.205331],[-53.246368,2.201931],[-53.247968,2.199131],[-53.252368,2.198531],[-53.255568,2.197731],[-53.256268,2.194931],[-53.257768,2.191531],[-53.261268,2.189231],[-53.265468,2.188931],[-53.269568,2.190131],[-53.272868,2.191531],[-53.275868,2.194131],[-53.278168,2.192031],[-53.276468,2.188331],[-53.279168,2.186131],[-53.283968,2.189131],[-53.286968,2.196731],[-53.284868,2.201331],[-53.279768,2.206331],[-53.279768,2.213031],[-53.278968,2.217731],[-53.277268,2.221631],[-53.279768,2.223331],[-53.276268,2.225231],[-53.271468,2.224631],[-53.267368,2.223731],[-53.263168,2.228531],[-53.260668,2.235931],[-53.260768,2.242931],[-53.260168,2.246931],[-53.260468,2.251931],[-53.253268,2.246531],[-53.249868,2.248331],[-53.246068,2.252331],[-53.241568,2.254731],[-53.237468,2.258931],[-53.232568,2.260531],[-53.229468,2.262531],[-53.229468,2.265531],[-53.230668,2.268931],[-53.233168,2.272231],[-53.234668,2.275531],[-53.245768,2.273031],[-53.262068,2.276531],[-53.263468,2.279931],[-53.261368,2.289331],[-53.265768,2.291031],[-53.273168,2.296831],[-53.277568,2.298931],[-53.282768,2.309831],[-53.288168,2.309531],[-53.292268,2.310531],[-53.296068,2.309531],[-53.305868,2.315531],[-53.308068,2.317731],[-53.311568,2.325331],[-53.314968,2.326731],[-53.316368,2.330031],[-53.316968,2.339931],[-53.320168,2.344131],[-53.323268,2.347131],[-53.326868,2.344531],[-53.330668,2.343531],[-53.333468,2.344531],[-53.335768,2.347931],[-53.338168,2.353731],[-53.343768,2.355131],[-53.348368,2.354631],[-53.352068,2.351731],[-53.355268,2.352931],[-53.359968,2.349331],[-53.358268,2.345131],[-53.358268,2.341531],[-53.359968,2.333631],[-53.362268,2.328631],[-53.365268,2.324931],[-53.367568,2.320631],[-53.377168,2.317831],[-53.380768,2.315331],[-53.385668,2.308431],[-53.389268,2.308731],[-53.394068,2.307931],[-53.398968,2.308331],[-53.400168,2.304331],[-53.402568,2.300331],[-53.405068,2.297531],[-53.408968,2.297531],[-53.413968,2.297731],[-53.419168,2.292331],[-53.421768,2.289931],[-53.433568,2.287931],[-53.440268,2.280231],[-53.443568,2.280731],[-53.447968,2.284331],[-53.452368,2.285231],[-53.455768,2.286931],[-53.461268,2.291031],[-53.468468,2.289531],[-53.469768,2.285931],[-53.468968,2.282931],[-53.465568,2.276931],[-53.461168,2.276631],[-53.456868,2.273531],[-53.454368,2.270031],[-53.454968,2.264331],[-53.458668,2.261131],[-53.473068,2.256731],[-53.475668,2.258331],[-53.478368,2.261131],[-53.485268,2.264931],[-53.489968,2.264131],[-53.495268,2.261131],[-53.502368,2.262731],[-53.505268,2.261431],[-53.509868,2.262131],[-53.516568,2.265531],[-53.520168,2.266431],[-53.525468,2.264131],[-53.527668,2.261331],[-53.532768,2.257831],[-53.537268,2.259231],[-53.540868,2.257331],[-53.544268,2.259531],[-53.546968,2.258331],[-53.549968,2.258331],[-53.551168,2.260931],[-53.554768,2.260931],[-53.557268,2.263331],[-53.560168,2.267231],[-53.565968,2.268931],[-53.567668,2.271531],[-53.575168,2.272931],[-53.578168,2.272931],[-53.580768,2.270531],[-53.584268,2.268931],[-53.587268,2.272231],[-53.592968,2.276631],[-53.595868,2.279431],[-53.598068,2.284531],[-53.601168,2.286031],[-53.604268,2.286731],[-53.606768,2.285131],[-53.611068,2.286931],[-53.614668,2.282731],[-53.614968,2.278531],[-53.620168,2.279431],[-53.622668,2.283731],[-53.626268,2.284531],[-53.634368,2.281631],[-53.638468,2.283731],[-53.643168,2.283831],[-53.648768,2.283031],[-53.652268,2.283331],[-53.656268,2.284531],[-53.656968,2.288131],[-53.654168,2.293231],[-53.653468,2.297531],[-53.653368,2.302531],[-53.661168,2.299731],[-53.662868,2.302631],[-53.663868,2.305431],[-53.666768,2.305931],[-53.671168,2.305431],[-53.676668,2.302331],[-53.682168,2.301331],[-53.680468,2.297131],[-53.684768,2.294631],[-53.689168,2.299731],[-53.691668,2.303931],[-53.692768,2.307531],[-53.692668,2.310731],[-53.695468,2.312331],[-53.699268,2.311931],[-53.707568,2.309131],[-53.714768,2.312331],[-53.720668,2.313431],[-53.728068,2.313931],[-53.731368,2.309831],[-53.739768,2.309331],[-53.748768,2.312931],[-53.749168,2.316131],[-53.749768,2.319131],[-53.748368,2.322531],[-53.745568,2.323131],[-53.741668,2.324931],[-53.737568,2.323531],[-53.736968,2.327231],[-53.739068,2.329731],[-53.739668,2.335331],[-53.737168,2.338731],[-53.730668,2.340531],[-53.728368,2.342931],[-53.725568,2.349131],[-53.723368,2.352931],[-53.727868,2.351031],[-53.730368,2.352431],[-53.733568,2.356331],[-53.738568,2.362331],[-53.741568,2.361831],[-53.744768,2.358931],[-53.748568,2.359531],[-53.752468,2.364731],[-53.744768,2.366731],[-53.740868,2.369331],[-53.739068,2.372631],[-53.741568,2.375131],[-53.748268,2.374131],[-53.754368,2.375131],[-53.757968,2.375131],[-53.760468,2.377331],[-53.767168,2.378931],[-53.771768,2.377731],[-53.773268,2.373731],[-53.776168,2.372931],[-53.784168,2.372631],[-53.791768,2.364531],[-53.798368,2.365331],[-53.803368,2.359531],[-53.805468,2.357531],[-53.810568,2.357531],[-53.813068,2.353231],[-53.812968,2.348531],[-53.814568,2.342531],[-53.819668,2.340831],[-53.824568,2.340231],[-53.833768,2.340531],[-53.836468,2.334931],[-53.832568,2.328931],[-53.827968,2.328631],[-53.824968,2.330031],[-53.820568,2.329731],[-53.817968,2.327131],[-53.815968,2.322131],[-53.814868,2.317031],[-53.818168,2.316531],[-53.823968,2.317731],[-53.830368,2.313931],[-53.836568,2.310931],[-53.840068,2.309831],[-53.842868,2.308431],[-53.849468,2.309331],[-53.853168,2.311231],[-53.854268,2.315131],[-53.856668,2.318731],[-53.859468,2.320131],[-53.864968,2.312531],[-53.872268,2.316331],[-53.875968,2.315631],[-53.878868,2.316531],[-53.883868,2.316331],[-53.886568,2.314131],[-53.889068,2.307531],[-53.889668,2.304031],[-53.887968,2.300331],[-53.889568,2.295431],[-53.892868,2.291031],[-53.889268,2.286331],[-53.892568,2.283831],[-53.897568,2.287731],[-53.903468,2.280531],[-53.905468,2.275831],[-53.907768,2.274131],[-53.916368,2.277331],[-53.917568,2.280531],[-53.917168,2.284531],[-53.915368,2.286731],[-53.915968,2.290731],[-53.918668,2.292331],[-53.922568,2.292431],[-53.928268,2.290531],[-53.935168,2.297131],[-53.937668,2.295131],[-53.939968,2.292131],[-53.937168,2.289531],[-53.936568,2.286331],[-53.939168,2.284331],[-53.942068,2.278031],[-53.937968,2.270531],[-53.938068,2.266931],[-53.938768,2.263331],[-53.935568,2.259531],[-53.939068,2.254531],[-53.942668,2.252531],[-53.942368,2.242531],[-53.945668,2.241131],[-53.950668,2.242931],[-53.954268,2.245331],[-53.960868,2.243131],[-53.964068,2.243731],[-53.967068,2.243131],[-53.970568,2.238731],[-53.973468,2.233131],[-53.979168,2.233931],[-53.985268,2.235131],[-53.989968,2.237531],[-53.994368,2.236131],[-53.996568,2.233731],[-54.001268,2.230131],[-54.189068,2.178931],[-54.436568,2.209931],[-54.601668,2.337231],[-54.662068,2.327131],[-54.692068,2.361531],[-54.686268,2.411331],[-54.684868,2.446931],[-54.744068,2.471531],[-54.783068,2.447731],[-54.797468,2.439131],[-54.872168,2.433931],[-54.911168,2.489731],[-54.919468,2.499731],[-54.935468,2.518631],[-54.954268,2.583631],[-55.003768,2.591131],[-55.008768,2.587531],[-55.056168,2.553331],[-55.103068,2.525831],[-55.123368,2.567731],[-55.172768,2.559531],[-55.207568,2.522931],[-55.234768,2.503431],[-55.277268,2.512531],[-55.320168,2.515531],[-55.356168,2.475731],[-55.345568,2.448131],[-55.385368,2.418531],[-55.429368,2.439131],[-55.482268,2.438731],[-55.499668,2.443431],[-55.504168,2.439531],[-55.508568,2.438431],[-55.513168,2.438431],[-55.517668,2.435731],[-55.520668,2.437031],[-55.524768,2.435931],[-55.528168,2.431931],[-55.527968,2.428731],[-55.551468,2.429731],[-55.557668,2.425931],[-55.560568,2.425431],[-55.564068,2.426531],[-55.567168,2.424731],[-55.570668,2.423731],[-55.571068,2.428131],[-55.572368,2.430731],[-55.574668,2.437931],[-55.577868,2.435531],[-55.587268,2.434331],[-55.589768,2.431531],[-55.593468,2.433331],[-55.599968,2.430931],[-55.604268,2.430331],[-55.609468,2.428131],[-55.612568,2.426331],[-55.617168,2.419931],[-55.624468,2.420131],[-55.631568,2.417131],[-55.635668,2.418231],[-55.642168,2.416031],[-55.646868,2.416831],[-55.651268,2.418131],[-55.654168,2.419931],[-55.657268,2.420731],[-55.662068,2.419331],[-55.667468,2.414531],[-55.673968,2.413731],[-55.681068,2.416831],[-55.686268,2.417331],[-55.695168,2.421731],[-55.698468,2.421731],[-55.699668,2.417731],[-55.700168,2.413731],[-55.703768,2.408731],[-55.704668,2.405731],[-55.707668,2.403331],[-55.717868,2.402131],[-55.727868,2.406931],[-55.734668,2.406531],[-55.737168,2.409131],[-55.742668,2.408831],[-55.746968,2.410531],[-55.752768,2.417931],[-55.754068,2.421831],[-55.753768,2.425931],[-55.756768,2.430131],[-55.760668,2.430431],[-55.763568,2.433131],[-55.767468,2.438131],[-55.761568,2.440631],[-55.762368,2.447531],[-55.764268,2.452131],[-55.766768,2.455331],[-55.770668,2.456931],[-55.776968,2.460531],[-55.781268,2.461931],[-55.783868,2.456731],[-55.790268,2.458931],[-55.794268,2.457531],[-55.798668,2.459331],[-55.802768,2.459431],[-55.810768,2.457731],[-55.815268,2.459131],[-55.827368,2.460531],[-55.830168,2.459331],[-55.835768,2.460831],[-55.838768,2.462231],[-55.843468,2.465231],[-55.847068,2.466531],[-55.850668,2.469331],[-55.853868,2.477331],[-55.854568,2.480731],[-55.858068,2.482531],[-55.861768,2.483231],[-55.866168,2.481531],[-55.868868,2.483531],[-55.870868,2.486131],[-55.873868,2.488131],[-55.880768,2.489031],[-55.882068,2.494031],[-55.884968,2.498431],[-55.886268,2.503431],[-55.891468,2.505931],[-55.897568,2.505631],[-55.900068,2.509231],[-55.899768,2.514731],[-55.901568,2.517231],[-55.906668,2.519431],[-55.910268,2.520031],[-55.914968,2.519731],[-55.919968,2.517931],[-55.924468,2.518631],[-55.921868,2.522931],[-55.922768,2.527331],[-55.924168,2.530731],[-55.927168,2.531631],[-55.930268,2.531331],[-55.934668,2.533731],[-55.942768,2.531931],[-55.945768,2.532131],[-55.953568,2.530931],[-55.959068,2.531331],[-55.970568,2.529431],[-55.973668,2.525831],[-55.978168,2.527531],[-55.978568,2.522531],[-55.979668,2.518931],[-55.983368,2.519331],[-55.989368,2.517931],[-55.991368,2.512531],[-55.992968,2.504731],[-55.991368,2.502031],[-55.984968,2.499531],[-55.982268,2.497631],[-55.977868,2.496531],[-55.977068,2.492931],[-55.977468,2.489731],[-55.979768,2.485331],[-55.988268,2.478931],[-55.988668,2.470931],[-55.991168,2.467131],[-55.996068,2.465531],[-56.000268,2.463031],[-56.001568,2.460331],[-56.005468,2.459131],[-56.008468,2.454531],[-56.011568,2.452831],[-56.010668,2.449131],[-56.008868,2.444531],[-56.005968,2.446931],[-56.003068,2.445931],[-56.000168,2.442031],[-55.996968,2.441331],[-55.995068,2.435731],[-55.992168,2.438731],[-55.989068,2.436131],[-55.985768,2.434131],[-55.985368,2.429531],[-55.989668,2.427131],[-55.991068,2.422531],[-55.987168,2.420431],[-55.989968,2.417431],[-55.995268,2.416531],[-56.001568,2.413131],[-56.003068,2.408831],[-56.005168,2.406531],[-56.007068,2.401631],[-56.011068,2.400331],[-56.014668,2.399931],[-56.015468,2.397131],[-56.017668,2.394931],[-56.020668,2.393331],[-56.023268,2.390931],[-56.024768,2.382531],[-56.032268,2.378431],[-56.033668,2.374831],[-56.036668,2.374331],[-56.037068,2.370331],[-56.039968,2.366231],[-56.033068,2.364331],[-56.026968,2.355531],[-56.025868,2.350731],[-56.026968,2.347331],[-56.022568,2.347431],[-56.021868,2.342531],[-56.029768,2.339731],[-56.028068,2.336331],[-56.029568,2.332531],[-56.034768,2.332931],[-56.038468,2.334731],[-56.042468,2.333931],[-56.046168,2.333631],[-56.050568,2.335131],[-56.059168,2.343031],[-56.060168,2.346131],[-56.059668,2.351731],[-56.061268,2.355131],[-56.064968,2.357331],[-56.068568,2.361531],[-56.069368,2.364731],[-56.071068,2.368331],[-56.073968,2.370931],[-56.076468,2.369331],[-56.080968,2.369031],[-56.080768,2.373331],[-56.084368,2.375131],[-56.086168,2.372631],[-56.090168,2.372531],[-56.089868,2.368331],[-56.089068,2.364031],[-56.092268,2.360331],[-56.090668,2.357131],[-56.088968,2.351731],[-56.090668,2.348831],[-56.090468,2.345131],[-56.093968,2.341131],[-56.095668,2.338531],[-56.092868,2.334931],[-56.091968,2.330031],[-56.093368,2.325531],[-56.093768,2.321331],[-56.101468,2.320931],[-56.107168,2.318431],[-56.109468,2.315131],[-56.113368,2.311231],[-56.112568,2.307531],[-56.114368,2.303531],[-56.114468,2.298731],[-56.117968,2.295431],[-56.124168,2.291031],[-56.128068,2.286731],[-56.126668,2.283731],[-56.125468,2.278331],[-56.127968,2.275731],[-56.137068,2.270831],[-56.138968,2.265931],[-56.135668,2.263631],[-56.132468,2.263631],[-56.126368,2.259131],[-56.123068,2.258931],[-56.120168,2.255131],[-56.120468,2.250531],[-56.112268,2.247531],[-56.108968,2.244831],[-56.103968,2.245531],[-56.095968,2.241531],[-56.095668,2.246231],[-56.091768,2.248731],[-56.087968,2.250131],[-56.085368,2.246931],[-56.083168,2.243131],[-56.079268,2.241131],[-56.077368,2.237531],[-56.073968,2.237331],[-56.070968,2.239731],[-56.068768,2.242931],[-56.065168,2.241731],[-56.058068,2.233531],[-56.055068,2.232531],[-56.048568,2.232331],[-56.046168,2.229331],[-56.042868,2.227931],[-56.042768,2.224931],[-56.043368,2.221531],[-56.037868,2.219731],[-56.036168,2.216931],[-56.036168,2.213731],[-56.040668,2.209131],[-56.042568,2.206331],[-56.043168,2.201431],[-56.046868,2.196131],[-56.051368,2.192331],[-56.056168,2.189531],[-56.055068,2.184831],[-56.049768,2.184531],[-56.048568,2.180331],[-56.045868,2.177331],[-56.042068,2.176131],[-56.040268,2.173231],[-56.037368,2.171531],[-56.035068,2.168931],[-56.027268,2.169631],[-56.020368,2.167931],[-56.014068,2.165531],[-56.011068,2.166531],[-56.003068,2.167731],[-55.999368,2.164131],[-55.995768,2.161331],[-55.993668,2.158831],[-55.993568,2.154131],[-55.991968,2.151131],[-55.987468,2.148931],[-55.986668,2.145831],[-55.989968,2.142531],[-55.993668,2.139731],[-55.992468,2.136731],[-55.991368,2.131531],[-55.987868,2.132531],[-55.982168,2.132031],[-55.975568,2.126131],[-55.975668,2.119731],[-55.978168,2.115331],[-55.973468,2.116231],[-55.969768,2.113131],[-55.973068,2.103231],[-55.971168,2.099931],[-55.966968,2.088531],[-55.961568,2.088331],[-55.953568,2.091131],[-55.948768,2.091631],[-55.945168,2.089131],[-55.943168,2.085731],[-55.941268,2.081331],[-55.938068,2.078631],[-55.935268,2.077131],[-55.929168,2.078631],[-55.926668,2.075331],[-55.928868,2.068431],[-55.932968,2.061231],[-55.932968,2.057931],[-55.929068,2.057531],[-55.926868,2.054531],[-55.923968,2.051831],[-55.920568,2.052531],[-55.908868,2.047531],[-55.905968,2.044631],[-55.903168,2.041031],[-55.902068,2.029431],[-55.903768,2.026331],[-55.907568,2.022231],[-55.910568,2.022131],[-55.910368,2.017531],[-55.910868,2.014531],[-55.906768,2.013531],[-55.905868,2.009131],[-55.908668,2.008131],[-55.908068,2.001331],[-55.912468,1.994031],[-55.913868,1.990731],[-55.918568,1.991931],[-55.922768,1.991231],[-55.925268,1.994831],[-55.929168,1.997531],[-55.931968,1.995731],[-55.935168,1.996731],[-55.936368,1.986731],[-55.936068,1.983531],[-55.931968,1.971331],[-55.928268,1.969531],[-55.927268,1.965731],[-55.926368,1.957231],[-55.922468,1.950531],[-55.922868,1.947131],[-55.929668,1.939231],[-55.927568,1.936931],[-55.923868,1.937331],[-55.921968,1.933331],[-55.920368,1.928331],[-55.920568,1.919131],[-55.911968,1.913131],[-55.910068,1.910531],[-55.901968,1.907931],[-55.900868,1.903331],[-55.901568,1.899931],[-55.901468,1.896931],[-55.903768,1.888131],[-55.909868,1.887131],[-55.914968,1.884931],[-55.923068,1.879931],[-55.924968,1.876331],[-55.929468,1.873131],[-55.934368,1.871731],[-55.935268,1.867631],[-55.938268,1.866131],[-55.939868,1.861831],[-55.944068,1.858931],[-55.954268,1.848731],[-55.956468,1.845231],[-55.962868,1.848131],[-55.966968,1.847431],[-55.970068,1.848331],[-55.970968,1.844731],[-55.975968,1.840531],[-55.979268,1.842131],[-55.982468,1.839431],[-55.983268,1.835731],[-55.995768,1.835131],[-55.999068,1.831531],[-56.004068,1.833931],[-56.007468,1.836131],[-56.011268,1.835831],[-56.024068,1.842731],[-56.029068,1.841631],[-56.032568,1.845131],[-56.036668,1.850231],[-56.041168,1.849931],[-56.043568,1.847331],[-56.046368,1.849531],[-56.049968,1.851031],[-56.059068,1.850931],[-56.066568,1.851931],[-56.075468,1.849931],[-56.077368,1.845231],[-56.081468,1.845931],[-56.083268,1.850231],[-56.085368,1.853131],[-56.090168,1.853931],[-56.092568,1.851531],[-56.095868,1.849331],[-56.098668,1.846631],[-56.104268,1.849131],[-56.112868,1.855131],[-56.117668,1.851031],[-56.118668,1.854531],[-56.120168,1.857331],[-56.126268,1.857731],[-56.129968,1.859331],[-56.131268,1.862931],[-56.132668,1.870131],[-56.136768,1.873431],[-56.141068,1.875131],[-56.146468,1.881931],[-56.150968,1.885631],[-56.152668,1.890931],[-56.156668,1.891931],[-56.160268,1.891431],[-56.165268,1.887331],[-56.168568,1.887731],[-56.170668,1.891331],[-56.168868,1.897931],[-56.170868,1.900731],[-56.177968,1.896331],[-56.182468,1.892731],[-56.191668,1.893931],[-56.195268,1.892231],[-56.198968,1.892731],[-56.200968,1.896331],[-56.204568,1.896131],[-56.208968,1.894431],[-56.212368,1.899731],[-56.215068,1.902131],[-56.234468,1.898731],[-56.235868,1.893931],[-56.237768,1.889931],[-56.240568,1.886731],[-56.240768,1.883331],[-56.241468,1.879731],[-56.244068,1.878331],[-56.248768,1.879731],[-56.255968,1.884231],[-56.258768,1.885631],[-56.263168,1.885631],[-56.265468,1.889731],[-56.272268,1.896731],[-56.275968,1.896931],[-56.280168,1.899431],[-56.282668,1.902531],[-56.289968,1.906631],[-56.290668,1.910731],[-56.295268,1.908831],[-56.298868,1.909731],[-56.302768,1.911731],[-56.304768,1.915731],[-56.308868,1.917731],[-56.309068,1.921131],[-56.311968,1.923131],[-56.317068,1.922531],[-56.321368,1.923731],[-56.324968,1.927631],[-56.327668,1.929531],[-56.329568,1.932631],[-56.332868,1.934131],[-56.335068,1.937331],[-56.339368,1.935531],[-56.341968,1.937031],[-56.348368,1.939231],[-56.351168,1.937731],[-56.354468,1.938731],[-56.358268,1.941531],[-56.364368,1.938131],[-56.369068,1.937531],[-56.371968,1.932931],[-56.378768,1.931531],[-56.380968,1.933331],[-56.385468,1.932631],[-56.388568,1.932931],[-56.390068,1.928931],[-56.388468,1.926131],[-56.390068,1.923531],[-56.397068,1.923231],[-56.399768,1.927631],[-56.403668,1.930431],[-56.408168,1.929831],[-56.411968,1.928331],[-56.414768,1.931231],[-56.419768,1.937931],[-56.422568,1.939131],[-56.423868,1.942031],[-56.422868,1.945931],[-56.428068,1.945931],[-56.432168,1.946431],[-56.435868,1.949131],[-56.436968,1.951931],[-56.441668,1.951431],[-56.444668,1.948731],[-56.451268,1.956331],[-56.454268,1.952531],[-56.461568,1.950931],[-56.465168,1.951331],[-56.468968,1.949231],[-56.473368,1.950031],[-56.482868,1.954331],[-56.487168,1.951931],[-56.487568,1.946331],[-56.492668,1.941731],[-56.495568,1.938131],[-56.498268,1.936931],[-56.501368,1.936931],[-56.503868,1.934531],[-56.509668,1.932631],[-56.513768,1.932131],[-56.517968,1.932531],[-56.522568,1.929331],[-56.524868,1.924731],[-56.531268,1.922331],[-56.535268,1.921831],[-56.538168,1.918731],[-56.541368,1.917131],[-56.546668,1.915531],[-56.552568,1.918131],[-56.555568,1.917431],[-56.560868,1.911031],[-56.570968,1.909731],[-56.577068,1.907731],[-56.579668,1.905931],[-56.582568,1.907331],[-56.586568,1.911031],[-56.587268,1.915331],[-56.590068,1.921531],[-56.594568,1.923131],[-56.596468,1.926131],[-56.595568,1.929731],[-56.596168,1.932931],[-56.598468,1.936531],[-56.603968,1.936131],[-56.607868,1.934531],[-56.612468,1.937031],[-56.617968,1.943931],[-56.621568,1.946131],[-56.624468,1.945331],[-56.629968,1.942531],[-56.632168,1.938331],[-56.636568,1.936731],[-56.639668,1.934331],[-56.641068,1.931531],[-56.646168,1.930131],[-56.649068,1.931231],[-56.650068,1.928131],[-56.650068,1.922331],[-56.651168,1.917331],[-56.654768,1.918231],[-56.662268,1.915331],[-56.666968,1.915531],[-56.669968,1.913331],[-56.673568,1.912931],[-56.676068,1.918931],[-56.679168,1.921131],[-56.681568,1.919331],[-56.681868,1.913831],[-56.686568,1.913331],[-56.692368,1.915331],[-56.695668,1.917331],[-56.702368,1.920431],[-56.704668,1.924031],[-56.709568,1.922731],[-56.713468,1.924331],[-56.716268,1.926131],[-56.720968,1.925931],[-56.722868,1.922131],[-56.726968,1.918731],[-56.730368,1.918231],[-56.734768,1.917331],[-56.736168,1.914631],[-56.737568,1.908731],[-56.743268,1.906531],[-56.746268,1.903031],[-56.749868,1.902931],[-56.750568,1.896331],[-56.753568,1.892731],[-56.756368,1.890731],[-56.762168,1.889931],[-56.764968,1.888531],[-56.766268,1.883531],[-56.766068,1.880331],[-56.768168,1.876131],[-56.773968,1.868931],[-56.781668,1.864531],[-56.785868,1.865331],[-56.788668,1.864331],[-56.787868,1.858731],[-56.788068,1.854531],[-56.791368,1.852431],[-56.797868,1.853531],[-56.798568,1.857331],[-56.795768,1.858231],[-56.795768,1.861531],[-56.798868,1.863731],[-56.801068,1.866131],[-56.798568,1.868731],[-56.798868,1.872631],[-56.801468,1.874131],[-56.809368,1.873931],[-56.812968,1.876731],[-56.817168,1.877731],[-56.820968,1.879231],[-56.821568,1.883331],[-56.825668,1.884131],[-56.828568,1.881731],[-56.830968,1.888931],[-56.834368,1.889331],[-56.837868,1.888131],[-56.845868,1.893331],[-56.849168,1.892131],[-56.852068,1.891931],[-56.856368,1.889331],[-56.859668,1.890731],[-56.858668,1.895331],[-56.861868,1.895731],[-56.864668,1.896731],[-56.866668,1.893331],[-56.881068,1.897231],[-56.886868,1.897131],[-56.888168,1.900131],[-56.891468,1.901931],[-56.893468,1.899431],[-56.899868,1.904131],[-56.907268,1.910531],[-56.906268,1.915331],[-56.908868,1.917131],[-56.910968,1.922531],[-56.915268,1.923931],[-56.919768,1.930431],[-56.923068,1.929331],[-56.925068,1.926831],[-56.932168,1.926531],[-56.940468,1.921531],[-56.949868,1.919531],[-56.950668,1.922731],[-56.955068,1.922931],[-56.959268,1.924531],[-56.961268,1.920431],[-56.968168,1.916731],[-56.968468,1.912331],[-56.970968,1.908831],[-56.971468,1.905731],[-56.976168,1.903031],[-56.981468,1.904431],[-56.982868,1.907331],[-56.987468,1.906331],[-56.991668,1.907431],[-56.996668,1.907931],[-57.000768,1.907331],[-57.004468,1.910931],[-57.009168,1.917131],[-57.014268,1.915131],[-57.017568,1.918931],[-57.024468,1.927931],[-57.023768,1.933931],[-57.025068,1.939831],[-57.028468,1.942031],[-57.030868,1.944231],[-57.031968,1.947131],[-57.034768,1.948731],[-57.044268,1.951331],[-57.047468,1.953331],[-57.050368,1.953631],[-57.053868,1.952531],[-57.056568,1.956931],[-57.060768,1.957931],[-57.064068,1.956131],[-57.066568,1.961131],[-57.067368,1.964431],[-57.071268,1.968831],[-57.071568,1.973131],[-57.070468,1.976931],[-57.070468,1.980531],[-57.072368,1.984331],[-57.070168,1.989531],[-57.071268,1.996731],[-57.073468,2.002531],[-57.077068,2.005931],[-57.082568,2.007731],[-57.082668,2.013931],[-57.081568,2.018931],[-57.083968,2.021731],[-57.086768,2.026531],[-57.090468,2.025531],[-57.094168,2.022531],[-57.096368,2.017931],[-57.100068,2.018931],[-57.102568,2.022731],[-57.106468,2.026931],[-57.111668,2.029731],[-57.116668,2.028031],[-57.117468,2.024431],[-57.116568,2.019731],[-57.116368,2.015031],[-57.119968,2.010331],[-57.129868,2.006531],[-57.132168,2.002731],[-57.140768,2.001131],[-57.146468,1.995331],[-57.145068,1.991531],[-57.147568,1.989031],[-57.153068,1.992631],[-57.158368,1.991931],[-57.163968,1.994831],[-57.168868,1.994331],[-57.179168,1.990331],[-57.183368,1.979631],[-57.186568,1.978931],[-57.189468,1.979631],[-57.194268,1.978531],[-57.199968,1.978931],[-57.203268,1.976731],[-57.207268,1.970931],[-57.211168,1.968831],[-57.210068,1.966131],[-57.214768,1.961531],[-57.220068,1.959431],[-57.222368,1.956531],[-57.225568,1.956731],[-57.229168,1.953631],[-57.229168,1.950331],[-57.230068,1.945631],[-57.229268,1.937731],[-57.232268,1.936931],[-57.237568,1.939531],[-57.237768,1.943431],[-57.241168,1.943431],[-57.244168,1.947331],[-57.247168,1.948531],[-57.252968,1.948531],[-57.255468,1.950531],[-57.257668,1.954931],[-57.256368,1.961331],[-57.262368,1.961931],[-57.264568,1.966331],[-57.266868,1.969331],[-57.271168,1.969931],[-57.273468,1.974331],[-57.270768,1.976531],[-57.267868,1.979931],[-57.268968,1.983731],[-57.272368,1.983731],[-57.277268,1.983131],[-57.284268,1.986131],[-57.287768,1.988231],[-57.301168,1.995531],[-57.304368,1.997631],[-57.307168,1.996731],[-57.309168,1.992131],[-57.312668,1.981331],[-57.313268,1.977331],[-57.318868,1.977331],[-57.323968,1.977931],[-57.329268,1.979631],[-57.332968,1.977131],[-57.338168,1.975231],[-57.345668,1.980331],[-57.351768,1.976531],[-57.356368,1.970531],[-57.356668,1.966131],[-57.354268,1.961331],[-57.358968,1.958931],[-57.365368,1.958131],[-57.369168,1.956531],[-57.368268,1.952231],[-57.361868,1.948331],[-57.357068,1.947331],[-57.356668,1.944231],[-57.359968,1.940631],[-57.361168,1.936531],[-57.361468,1.932131],[-57.364968,1.926131],[-57.367768,1.923931],[-57.370568,1.922531],[-57.375768,1.922531],[-57.383668,1.927031],[-57.392168,1.924731],[-57.395768,1.924031],[-57.398468,1.921831],[-57.402868,1.912931],[-57.406768,1.911731],[-57.410668,1.909931],[-57.413668,1.909731],[-57.417468,1.910731],[-57.419968,1.909131],[-57.423568,1.908331],[-57.427768,1.909531],[-57.431068,1.908031],[-57.433368,1.906131],[-57.433668,1.901131],[-57.432568,1.897231],[-57.432468,1.890931],[-57.434468,1.886931],[-57.436268,1.880631],[-57.434068,1.877731],[-57.429368,1.874131],[-57.432268,1.869531],[-57.431968,1.858531],[-57.436368,1.853131],[-57.440168,1.850931],[-57.439568,1.845131],[-57.444968,1.841331],[-57.444068,1.836731],[-57.441068,1.835331],[-57.439168,1.832931],[-57.437768,1.830031],[-57.437768,1.826931],[-57.440168,1.823531],[-57.444868,1.822531],[-57.446268,1.817731],[-57.448868,1.812031],[-57.451868,1.811531],[-57.450968,1.806531],[-57.453268,1.803931],[-57.457068,1.802131],[-57.460668,1.803331],[-57.463768,1.800431],[-57.468368,1.799731],[-57.474168,1.796131],[-57.476368,1.799031],[-57.477768,1.794631],[-57.481668,1.795431],[-57.482168,1.798531],[-57.485268,1.800131],[-57.486668,1.796131],[-57.487168,1.792731],[-57.490868,1.790731],[-57.493668,1.792731],[-57.499868,1.788831],[-57.501868,1.786031],[-57.500168,1.781531],[-57.499168,1.776531],[-57.496968,1.773531],[-57.497668,1.770331],[-57.497368,1.766931],[-57.499868,1.761331],[-57.501868,1.758131],[-57.508568,1.757531],[-57.509868,1.754531],[-57.514568,1.747331],[-57.516068,1.742131],[-57.515368,1.736831],[-57.514368,1.733931],[-57.516768,1.731831],[-57.515968,1.727931],[-57.514268,1.723131],[-57.518968,1.721331],[-57.521768,1.723331],[-57.522068,1.726331],[-57.526168,1.728131],[-57.529168,1.723831],[-57.531968,1.721631],[-57.536768,1.722331],[-57.541368,1.720531],[-57.540268,1.716931],[-57.536668,1.714731],[-57.535268,1.711531],[-57.534168,1.708331],[-57.535168,1.704331],[-57.537768,1.700731],[-57.541668,1.698731],[-57.550368,1.700731],[-57.552168,1.698131],[-57.553268,1.692531],[-57.557768,1.692331],[-57.561068,1.694531],[-57.564568,1.695931],[-57.572668,1.688931],[-57.577168,1.690531],[-57.577168,1.699931],[-57.576068,1.702731],[-57.581768,1.706331],[-57.583968,1.702131],[-57.590168,1.700031],[-57.592968,1.701931],[-57.597868,1.700731],[-57.600068,1.697531],[-57.604768,1.693131],[-57.609968,1.692831],[-57.614768,1.695631],[-57.619468,1.695931],[-57.621968,1.699931],[-57.629368,1.698531],[-57.632968,1.691531],[-57.636468,1.690631],[-57.641568,1.686731],[-57.645368,1.685931],[-57.650468,1.682531],[-57.654168,1.686531],[-57.655568,1.690531],[-57.660568,1.689231],[-57.662868,1.692731],[-57.667868,1.695631],[-57.669568,1.700031],[-57.668168,1.702731],[-57.670668,1.708131],[-57.672468,1.710831],[-57.675068,1.706131],[-57.684068,1.705731],[-57.686968,1.706531],[-57.689568,1.708631],[-57.692368,1.712231],[-57.698168,1.713931],[-57.697068,1.717131],[-57.697168,1.720931],[-57.705168,1.731031],[-57.708168,1.731331],[-57.711968,1.728731],[-57.711468,1.724331],[-57.708168,1.720931],[-57.710168,1.717731],[-57.718468,1.715531],[-57.716468,1.720931],[-57.719768,1.723131],[-57.724868,1.720231],[-57.731168,1.718831],[-57.736168,1.719531],[-57.738968,1.722431],[-57.744968,1.722931],[-57.752168,1.719131],[-57.758268,1.718731],[-57.760268,1.722731],[-57.763268,1.723331],[-57.766768,1.722731],[-57.768968,1.727431],[-57.774368,1.729931],[-57.777068,1.728231],[-57.777668,1.723131],[-57.780368,1.719331],[-57.783068,1.721131],[-57.785368,1.724331],[-57.792268,1.726731],[-57.793168,1.719731],[-57.795568,1.713931],[-57.794668,1.710331],[-57.795368,1.706531],[-57.796968,1.703331],[-57.799968,1.701931],[-57.803668,1.701931],[-57.803368,1.698531],[-57.798368,1.697131],[-57.796368,1.691131],[-57.797568,1.687331],[-57.799768,1.685331],[-57.803068,1.684731],[-57.809168,1.688431],[-57.813868,1.687031],[-57.819568,1.683931],[-57.822868,1.685131],[-57.827868,1.685131],[-57.836468,1.686731],[-57.840068,1.683731],[-57.841168,1.686531],[-57.844168,1.689131],[-57.846768,1.687031],[-57.846968,1.681131],[-57.849968,1.679331],[-57.853068,1.677931],[-57.853668,1.674731],[-57.850668,1.673531],[-57.852068,1.667931],[-57.857168,1.668731],[-57.863268,1.673931],[-57.866568,1.674731],[-57.870468,1.676731],[-57.873368,1.680431],[-57.877168,1.680431],[-57.878468,1.676331],[-57.877168,1.671831],[-57.880768,1.670331],[-57.884668,1.669631],[-57.889268,1.674331],[-57.895068,1.674531],[-57.899768,1.671131],[-57.902068,1.667931],[-57.902068,1.660231],[-57.904768,1.655931],[-57.908968,1.651331],[-57.913468,1.647731],[-57.920768,1.646731],[-57.926868,1.644931],[-57.937468,1.646531],[-57.940568,1.648531],[-57.945168,1.648731],[-57.950268,1.647731],[-57.953968,1.650531],[-57.959368,1.651331],[-57.957868,1.654331],[-57.961968,1.657331],[-57.965068,1.655231],[-57.970568,1.654431],[-57.978868,1.655931],[-57.981068,1.659531],[-57.985768,1.660231],[-57.990068,1.658531],[-57.990268,1.651531],[-58.002368,1.649431],[-58.002668,1.645831],[-57.996268,1.644431],[-57.992168,1.641131],[-57.989068,1.640531],[-57.986468,1.636931],[-57.982568,1.635531],[-57.980368,1.633331],[-57.979568,1.628731],[-57.982768,1.626731],[-57.982768,1.621931],[-57.982068,1.617931],[-57.985368,1.616931],[-57.984968,1.613131],[-57.982768,1.608531],[-57.983268,1.603931],[-57.981768,1.600231],[-57.981368,1.596531],[-57.983368,1.590531],[-57.983868,1.586331],[-57.982568,1.579531],[-57.978568,1.572831],[-57.980368,1.569131],[-57.982568,1.565931],[-57.986068,1.567031],[-57.989968,1.567531],[-57.988868,1.562531],[-57.991868,1.561531],[-57.993668,1.556531],[-57.994368,1.553331],[-57.992168,1.550131],[-57.989368,1.547731],[-57.988668,1.543931],[-57.990268,1.540731],[-57.994968,1.538831],[-57.996868,1.534531],[-57.998868,1.530731],[-58.001268,1.528331],[-58.000468,1.520831],[-58.005568,1.516931],[-58.005268,1.513131],[-58.004168,1.509931],[-58.004168,1.503131],[-58.008868,1.505131],[-58.015368,1.505931],[-58.021168,1.507831],[-58.023968,1.510931],[-58.027268,1.508731],[-58.029468,1.513331],[-58.036168,1.518631],[-58.040568,1.521131],[-58.043868,1.519731],[-58.052468,1.524131],[-58.060868,1.525531],[-58.065268,1.522231],[-58.065568,1.518331],[-58.068568,1.512731],[-58.069568,1.507531],[-58.073468,1.506931],[-58.076468,1.507831],[-58.085068,1.508131],[-58.083768,1.511431],[-58.085468,1.514931],[-58.097668,1.514131],[-58.100268,1.509931],[-58.104168,1.506931],[-58.107168,1.505931],[-58.111368,1.501331],[-58.117168,1.500531],[-58.121568,1.501331],[-58.129468,1.499131],[-58.135668,1.503431],[-58.139268,1.505131],[-58.145968,1.507331],[-58.149568,1.510031],[-58.147568,1.512531],[-58.146168,1.515531],[-58.148368,1.521331],[-58.150368,1.523531],[-58.152868,1.528031],[-58.155168,1.530131],[-58.155368,1.536731],[-58.153668,1.543131],[-58.156668,1.543731],[-58.159768,1.552931],[-58.157868,1.555931],[-58.160668,1.560331],[-58.164768,1.560931],[-58.171368,1.563431],[-58.179668,1.565531],[-58.183868,1.565331],[-58.186868,1.568131],[-58.189568,1.571731],[-58.193068,1.572331],[-58.194868,1.569731],[-58.197368,1.567331],[-58.200968,1.567031],[-58.212868,1.564831],[-58.216768,1.560531],[-58.220968,1.556731],[-58.225568,1.554031],[-58.229268,1.553931],[-58.233268,1.547531],[-58.236068,1.546831],[-58.239368,1.548731],[-58.241368,1.554031],[-58.245268,1.557331],[-58.250968,1.559131],[-58.254568,1.562031],[-58.257368,1.569231],[-58.262368,1.570931],[-58.266868,1.569731],[-58.271768,1.567531],[-58.276268,1.569131],[-58.284168,1.573331],[-58.288168,1.572531],[-58.291068,1.568931],[-58.292868,1.564231],[-58.296668,1.564831],[-58.301968,1.564831],[-58.317168,1.568431],[-58.317668,1.575931],[-58.315968,1.578631],[-58.314068,1.584731],[-58.314868,1.588031],[-58.314368,1.594131],[-58.319068,1.594731],[-58.322368,1.597131],[-58.327168,1.595231],[-58.329568,1.593531],[-58.332368,1.590831],[-58.337568,1.581331],[-58.342268,1.578131],[-58.344568,1.575931],[-58.345568,1.572831],[-58.344868,1.569931],[-58.343468,1.566731],[-58.345868,1.564531],[-58.350968,1.563931],[-58.360368,1.560331],[-58.360368,1.554731],[-58.361868,1.551331],[-58.359468,1.546531],[-58.360668,1.542431],[-58.363068,1.538131],[-58.367468,1.536931],[-58.374068,1.537931],[-58.378868,1.535531],[-58.382168,1.537331],[-58.389568,1.535531],[-58.391068,1.531531],[-58.394768,1.526531],[-58.395068,1.522931],[-58.393768,1.520031],[-58.389968,1.515331],[-58.384568,1.514131],[-58.383568,1.510931],[-58.387368,1.507731],[-58.391568,1.506531],[-58.392668,1.501731],[-58.390368,1.496231],[-58.385668,1.492931],[-58.385168,1.488731],[-58.381668,1.489731],[-58.376668,1.488131],[-58.372368,1.483031],[-58.384068,1.472731],[-58.385668,1.470131],[-58.390968,1.469931],[-58.396768,1.470931],[-58.403968,1.469931],[-58.406768,1.471531],[-58.412868,1.472731],[-58.416468,1.470931],[-58.421968,1.471131],[-58.425268,1.467131],[-58.430468,1.466931],[-58.439468,1.464431],[-58.442168,1.461731],[-58.444268,1.456531],[-58.448468,1.456131],[-58.454068,1.460331],[-58.457868,1.460831],[-58.459268,1.463531],[-58.461968,1.466131],[-58.465068,1.466331],[-58.472768,1.461131],[-58.477768,1.460831],[-58.480668,1.461531],[-58.483868,1.460731],[-58.488368,1.462131],[-58.490468,1.466631],[-58.493368,1.468331],[-58.496568,1.466331],[-58.505168,1.464931],[-58.508768,1.463031],[-58.509568,1.459431],[-58.507968,1.449231],[-58.507968,1.444931],[-58.502368,1.442831],[-58.498068,1.430331],[-58.503268,1.424931],[-58.503268,1.418531],[-58.501568,1.415131],[-58.505968,1.409731],[-58.505168,1.403331],[-58.500568,1.401331],[-58.495768,1.397231],[-58.490568,1.394731],[-58.487168,1.394331],[-58.485068,1.392131],[-58.479668,1.390331],[-58.479168,1.387331],[-58.485068,1.384931],[-58.481668,1.381931],[-58.479268,1.378331],[-58.475668,1.376131],[-58.471668,1.374331],[-58.470068,1.370931],[-58.465968,1.372631],[-58.464868,1.375531],[-58.461568,1.374331],[-58.457868,1.371531],[-58.461168,1.367131],[-58.464068,1.365131],[-58.465168,1.362131],[-58.468968,1.356531],[-58.471668,1.354931],[-58.470868,1.350931],[-58.474268,1.348531],[-58.473368,1.340831],[-58.473868,1.337931],[-58.473068,1.329131],[-58.470968,1.319531],[-58.476168,1.308431],[-58.478068,1.305731],[-58.483568,1.300431],[-58.486368,1.299931],[-58.495168,1.295131],[-58.493368,1.291031],[-58.493368,1.287931],[-58.496368,1.282131],[-58.497268,1.279131],[-58.494468,1.275331],[-58.494468,1.270831],[-58.496268,1.268131],[-58.504068,1.269131],[-58.504368,1.273331],[-58.507368,1.274431],[-58.508468,1.277331],[-58.512968,1.277731],[-58.514068,1.273931],[-58.517368,1.272731],[-58.519368,1.268631],[-58.520168,1.265731],[-58.517968,1.261931],[-58.519068,1.258331],[-58.522968,1.257831],[-58.524068,1.262731],[-58.524068,1.267131],[-58.527068,1.269731],[-58.529868,1.270731],[-58.533468,1.269131],[-58.535968,1.265731],[-58.538168,1.267731],[-58.537768,1.271731],[-58.538068,1.275831],[-58.539568,1.281631],[-58.538868,1.284931],[-58.540268,1.288131],[-58.542768,1.289931],[-58.546868,1.291831],[-58.549968,1.291831],[-58.554368,1.292731],[-58.556568,1.290531],[-58.559668,1.290331],[-58.561568,1.292731],[-58.564568,1.294631],[-58.567968,1.292731],[-58.569568,1.290331],[-58.569868,1.286031],[-58.577668,1.283331],[-58.579068,1.279131],[-58.577668,1.274731],[-58.579868,1.270831],[-58.581868,1.268531],[-58.582668,1.263531],[-58.585468,1.262131],[-58.588168,1.263531],[-58.587068,1.267231],[-58.588468,1.270031],[-58.592368,1.270331],[-58.595668,1.271131],[-58.601768,1.274131],[-58.605268,1.274731],[-58.608268,1.273931],[-58.612568,1.281131],[-58.614968,1.283031],[-58.618368,1.285131],[-58.622368,1.284731],[-58.628768,1.288731],[-58.633268,1.289131],[-58.637068,1.288331],[-58.639368,1.285531],[-58.642668,1.285931],[-58.645968,1.285531],[-58.650168,1.286731],[-58.652668,1.288331],[-58.656268,1.286931],[-58.659268,1.283731],[-58.661268,1.280531],[-58.664168,1.279431],[-58.666068,1.281631],[-58.669268,1.281331],[-58.676068,1.285231],[-58.677568,1.288331],[-58.677468,1.292131],[-58.680168,1.296331],[-58.684068,1.296731],[-58.686568,1.294931],[-58.694568,1.297531],[-58.697068,1.294631],[-58.705968,1.293731],[-58.710468,1.290131],[-58.710968,1.286931],[-58.709868,1.283531],[-58.711868,1.281131],[-58.713468,1.278031],[-58.714068,1.274431],[-58.718168,1.266131],[-58.719268,1.258531],[-58.720668,1.255531],[-58.720968,1.245331],[-58.716268,1.241131],[-58.715168,1.237631],[-58.717968,1.236331],[-58.719868,1.233931],[-58.721268,1.230731],[-58.721668,1.227731],[-58.725268,1.218731],[-58.728868,1.216931],[-58.730368,1.214131],[-58.730268,1.210731],[-58.734968,1.208331],[-58.737168,1.206331],[-58.739668,1.200031],[-58.744368,1.205731],[-58.747968,1.208131],[-58.751268,1.208631],[-58.754568,1.205331],[-58.761268,1.200031],[-58.764068,1.197131],[-58.769868,1.186531],[-58.773468,1.186231],[-58.776268,1.185531],[-58.778468,1.187731],[-58.779468,1.190631],[-58.786768,1.188931],[-58.791668,1.190531],[-58.794968,1.187731],[-58.793568,1.184731],[-58.797168,1.181931],[-58.800068,1.176731],[-58.803568,1.176131],[-58.805068,1.180131],[-58.809868,1.179031],[-58.811568,1.176331],[-58.821268,1.171131],[-58.825168,1.171331],[-58.824068,1.183331],[-58.826868,1.187031],[-58.831868,1.187931],[-58.836568,1.185531],[-58.845968,1.181931],[-58.850068,1.183131],[-58.854268,1.183431],[-58.856368,1.186231],[-58.854668,1.189831],[-58.856368,1.193431],[-58.859368,1.196331],[-58.859368,1.204131],[-58.866868,1.203331],[-58.870768,1.208931],[-58.870868,1.217731],[-58.874468,1.219731],[-58.874468,1.223331],[-58.876868,1.225531],[-58.879868,1.225531],[-58.882068,1.228931],[-58.891868,1.230931],[-58.895468,1.227931],[-58.898768,1.228931],[-58.904168,1.234131],[-58.908468,1.235331],[-58.912068,1.238231],[-58.905168,1.240931],[-58.904268,1.245331],[-58.905168,1.249331],[-58.902968,1.252031],[-58.899868,1.252531],[-58.895168,1.254931],[-58.892868,1.257831],[-58.889368,1.258931],[-58.886868,1.260331],[-58.888768,1.263131],[-58.892368,1.267531],[-58.898768,1.279431],[-58.902068,1.279931],[-58.918568,1.284931],[-58.922468,1.289931],[-58.923868,1.293531],[-58.921068,1.294631],[-58.919668,1.301731],[-58.915968,1.305131],[-58.917168,1.309131],[-58.915568,1.313131],[-58.917568,1.316131],[-58.924768,1.317531],[-58.929668,1.316731],[-58.932668,1.317531],[-58.938768,1.316331],[-58.942368,1.316531],[-58.944068,1.314131],[-58.949068,1.312731],[-58.953168,1.313331],[-58.956268,1.312031],[-58.961868,1.313131],[-58.965968,1.312531],[-58.970168,1.309731],[-58.973368,1.307631],[-58.975968,1.302631],[-58.978868,1.301731],[-58.981668,1.304731],[-58.982468,1.307931],[-58.985368,1.312531],[-58.988668,1.318331],[-58.989668,1.324931],[-58.992768,1.326431],[-58.997968,1.325531],[-59.001668,1.324131],[-59.005768,1.324231],[-59.013268,1.323931],[-59.021868,1.331131],[-59.027668,1.330331],[-59.030968,1.327831],[-59.038868,1.324231],[-59.042768,1.323331],[-59.048568,1.322731],[-59.052468,1.323931],[-59.054068,1.326731],[-59.054668,1.331131],[-59.056868,1.334331],[-59.060868,1.335531],[-59.066968,1.335131],[-59.067368,1.331131],[-59.070168,1.329731],[-59.074968,1.330531],[-59.087068,1.338531],[-59.089068,1.342531],[-59.090168,1.345931],[-59.095968,1.344731],[-59.099568,1.347931],[-59.102768,1.348331],[-59.104968,1.346331],[-59.108868,1.345531],[-59.114668,1.342731],[-59.118368,1.342731],[-59.122268,1.345931],[-59.127368,1.350731],[-59.131568,1.352431],[-59.139068,1.349131],[-59.145068,1.347331],[-59.152668,1.348831],[-59.154868,1.351031],[-59.162068,1.359131],[-59.168868,1.356731],[-59.171868,1.357131],[-59.176868,1.360431],[-59.179068,1.363931],[-59.182968,1.368131],[-59.187968,1.375131],[-59.196568,1.378331],[-59.204868,1.376531],[-59.206068,1.372031],[-59.212668,1.374731],[-59.225968,1.377331],[-59.230268,1.382731],[-59.234968,1.386731],[-59.241968,1.385531],[-59.246268,1.385631],[-59.253268,1.388331],[-59.258468,1.396131],[-59.270068,1.401631],[-59.272068,1.406631],[-59.277368,1.408031],[-59.281968,1.409931],[-59.280068,1.413331],[-59.275168,1.418531],[-59.279168,1.426131],[-59.282268,1.429731],[-59.284268,1.437031],[-59.287368,1.438931],[-59.288468,1.444731],[-59.284168,1.448731],[-59.287068,1.452231],[-59.292068,1.457931],[-59.297868,1.460331],[-59.302168,1.465231],[-59.307268,1.466331],[-59.310468,1.466131],[-59.313068,1.461131],[-59.319568,1.460331],[-59.324868,1.461331],[-59.327068,1.464131],[-59.326268,1.467731],[-59.327668,1.474531],[-59.322968,1.479531],[-59.321568,1.482131],[-59.322368,1.485331],[-59.330168,1.499731],[-59.332168,1.506331],[-59.329868,1.509131],[-59.329868,1.513931],[-59.333168,1.514131],[-59.339568,1.518331],[-59.347368,1.517131],[-59.353068,1.517131],[-59.359668,1.516431],[-59.358068,1.511131],[-59.361368,1.505131],[-59.362268,1.508331],[-59.365868,1.509731],[-59.371868,1.506731],[-59.379068,1.507731],[-59.382668,1.508731],[-59.380768,1.512131],[-59.379068,1.515531],[-59.379568,1.521731],[-59.384168,1.523031],[-59.384068,1.528931],[-59.394368,1.537131],[-59.395668,1.540931],[-59.395368,1.554531],[-59.398968,1.557131],[-59.403468,1.554731],[-59.412768,1.551731],[-59.415268,1.554531],[-59.422868,1.555731],[-59.431168,1.567331],[-59.430068,1.575531],[-59.427468,1.579131],[-59.426568,1.582931],[-59.427168,1.586331],[-59.432268,1.590531],[-59.437668,1.593831],[-59.438068,1.598831],[-59.443268,1.605731],[-59.444868,1.614731],[-59.448868,1.619531],[-59.457068,1.618331],[-59.465168,1.617631],[-59.472668,1.620531],[-59.478868,1.625531],[-59.482868,1.626731],[-59.484968,1.630331],[-59.488868,1.635531],[-59.489168,1.640731],[-59.494668,1.647231],[-59.496268,1.654131],[-59.495468,1.658531],[-59.493668,1.661331],[-59.494368,1.665931],[-59.493268,1.669331],[-59.493268,1.673531],[-59.499368,1.677131],[-59.502668,1.674331],[-59.506368,1.674731],[-59.507068,1.668931],[-59.510268,1.667931],[-59.512068,1.671331],[-59.512668,1.678331],[-59.514268,1.681231],[-59.520168,1.684731],[-59.523168,1.687531],[-59.526268,1.691331],[-59.527068,1.694731],[-59.526968,1.703531],[-59.533868,1.708331],[-59.534768,1.716631],[-59.538068,1.721131],[-59.544268,1.721331],[-59.547768,1.727131],[-59.550468,1.728231],[-59.554068,1.727131],[-59.557168,1.724631],[-59.560468,1.729631],[-59.564968,1.734331],[-59.570468,1.734531],[-59.576268,1.734631],[-59.580668,1.731831],[-59.584768,1.731731],[-59.588268,1.726531],[-59.593168,1.726331],[-59.597668,1.725131],[-59.600668,1.722431],[-59.608868,1.721931],[-59.611868,1.717731],[-59.616668,1.716531],[-59.622168,1.721931],[-59.629868,1.728131],[-59.631868,1.733531],[-59.632468,1.740131],[-59.638768,1.740431],[-59.643768,1.741731],[-59.648368,1.740731],[-59.655868,1.742331],[-59.659468,1.738231],[-59.663068,1.736831],[-59.664168,1.741131],[-59.663068,1.744731],[-59.664568,1.748431],[-59.664868,1.752531],[-59.667468,1.755331],[-59.671068,1.756331],[-59.676568,1.755631],[-59.680868,1.754131],[-59.690168,1.756331],[-59.691668,1.760931],[-59.690268,1.764331],[-59.688868,1.766931],[-59.686568,1.771331],[-59.685568,1.774731],[-59.688368,1.779431],[-59.686268,1.782331],[-59.684868,1.786731],[-59.684368,1.790331],[-59.679768,1.789931],[-59.679768,1.794531],[-59.680868,1.797331],[-59.677968,1.807631],[-59.672868,1.807531],[-59.668068,1.811931],[-59.664268,1.813431],[-59.659768,1.811231],[-59.654268,1.816931],[-59.655668,1.819731],[-59.658168,1.823931],[-59.655468,1.828931],[-59.653468,1.834131],[-59.650168,1.840231],[-59.649868,1.843531],[-59.652668,1.849931],[-59.656568,1.853231],[-59.659768,1.860131],[-59.662768,1.863931],[-59.666368,1.864331],[-59.669168,1.859631],[-59.665268,1.850531],[-59.666068,1.847731],[-59.669168,1.846631],[-59.671868,1.843731],[-59.674968,1.839731],[-59.679068,1.839331],[-59.681568,1.845931],[-59.690968,1.853131],[-59.703468,1.854631],[-59.707668,1.854131],[-59.711868,1.854331],[-59.720568,1.849531],[-59.726768,1.849331],[-59.734668,1.851531],[-59.737868,1.851731],[-59.745868,1.851931],[-59.747968,1.855531],[-59.751568,1.858531],[-59.752168,1.861731],[-59.753468,1.865731],[-59.752168,1.871231],[-59.749868,1.873931],[-59.747368,1.878731],[-59.749868,1.882331],[-59.752668,1.890731],[-59.755468,1.894931],[-59.759368,1.900531],[-59.755768,1.905531],[-59.757168,1.909131],[-59.754368,1.911531],[-59.753868,1.917431],[-59.756268,1.919531],[-59.755268,1.922731],[-59.749668,1.927531],[-59.745468,1.929531],[-59.746268,1.933331],[-59.745868,1.941131],[-59.743368,1.944531],[-59.739468,1.956931],[-59.738268,1.961131],[-59.737768,1.966331],[-59.739968,1.970131],[-59.742168,1.972431],[-59.740268,1.975531],[-59.738368,1.979331],[-59.738268,1.983531],[-59.734968,1.984631],[-59.735268,1.989031],[-59.733968,1.993731],[-59.734468,1.998331],[-59.734768,2.002731],[-59.733168,2.005131],[-59.731768,2.008931],[-59.734268,2.011931],[-59.734268,2.014931],[-59.732468,2.018631],[-59.727568,2.020031],[-59.723468,2.022731],[-59.721468,2.027331],[-59.724868,2.029331],[-59.728668,2.030931],[-59.728868,2.033831],[-59.731468,2.036531],[-59.731068,2.040331],[-59.732468,2.043731],[-59.735368,2.048531],[-59.737468,2.051831],[-59.736668,2.055131],[-59.737568,2.058331],[-59.739968,2.061531],[-59.740768,2.065131],[-59.741468,2.068431],[-59.741668,2.073731],[-59.739668,2.076431],[-59.739468,2.079931],[-59.737168,2.082731],[-59.736468,2.086931],[-59.735668,2.089731],[-59.732468,2.091931],[-59.729968,2.093831],[-59.727868,2.096131],[-59.724568,2.098331],[-59.722268,2.102131],[-59.722268,2.106031],[-59.723068,2.110431],[-59.721768,2.113731],[-59.722068,2.116931],[-59.723368,2.119531],[-59.724468,2.122331],[-59.728068,2.123731],[-59.727068,2.127931],[-59.726468,2.132731],[-59.728668,2.137731],[-59.732568,2.140931],[-59.734168,2.143631],[-59.737868,2.146131],[-59.739468,2.149431],[-59.737768,2.152531],[-59.738068,2.155731],[-59.739468,2.159331],[-59.741468,2.162931],[-59.740368,2.166731],[-59.739768,2.171131],[-59.737568,2.175131],[-59.739368,2.177531],[-59.740068,2.180331],[-59.736768,2.182931],[-59.736668,2.186731],[-59.736068,2.189731],[-59.733268,2.193131],[-59.731368,2.196431],[-59.729268,2.199931],[-59.727868,2.202731],[-59.726668,2.205531],[-59.726668,2.209331],[-59.728868,2.213331],[-59.728868,2.217331],[-59.729568,2.220531],[-59.730568,2.224631],[-59.730268,2.229631],[-59.729568,2.232731],[-59.726968,2.234931],[-59.723068,2.236531],[-59.720068,2.237631],[-59.720968,2.241231],[-59.722668,2.245331],[-59.721668,2.249131],[-59.723668,2.252531],[-59.725268,2.254931],[-59.726368,2.259231],[-59.729168,2.264531],[-59.727768,2.267931],[-59.725868,2.270031],[-59.724268,2.273031],[-59.723368,2.276331],[-59.725568,2.279431],[-59.727268,2.282131],[-59.730068,2.283831],[-59.732468,2.285731],[-59.736468,2.286531],[-59.739068,2.289631],[-59.740468,2.292731],[-59.745768,2.292131],[-59.749968,2.288131],[-59.752468,2.289931],[-59.756268,2.289931],[-59.761268,2.290531],[-59.764668,2.292431],[-59.767568,2.293931],[-59.770968,2.294631],[-59.774568,2.292131],[-59.777568,2.289531],[-59.780068,2.285931],[-59.783068,2.285131],[-59.785968,2.284531],[-59.788468,2.288331],[-59.793868,2.290931],[-59.796868,2.293731],[-59.799168,2.297531],[-59.803568,2.298731],[-59.804668,2.302331],[-59.805268,2.306231],[-59.809068,2.309531],[-59.811868,2.311131],[-59.815468,2.312931],[-59.818168,2.317331],[-59.821268,2.318331],[-59.824668,2.319231],[-59.827368,2.323131],[-59.828268,2.328331],[-59.831768,2.329131],[-59.834268,2.325331],[-59.836268,2.322331],[-59.838668,2.320631],[-59.841668,2.320531],[-59.843768,2.323331],[-59.844068,2.328931],[-59.848468,2.330031],[-59.852468,2.330731],[-59.854968,2.333931],[-59.854968,2.338331],[-59.857168,2.340531],[-59.860268,2.342531],[-59.862568,2.344931],[-59.866668,2.348131],[-59.869468,2.350231],[-59.869368,2.353231],[-59.869668,2.356731],[-59.872968,2.360431],[-59.877168,2.357331],[-59.880768,2.353531],[-59.883868,2.353531],[-59.886768,2.354931],[-59.890168,2.357131],[-59.892968,2.361131],[-59.896768,2.361531],[-59.898268,2.364731],[-59.898968,2.369531],[-59.902268,2.373131],[-59.905068,2.376931],[-59.905868,2.381131],[-59.907268,2.384931],[-59.908468,2.388331],[-59.908168,2.393631],[-59.905868,2.397731],[-59.901268,2.399731],[-59.898668,2.402731],[-59.897168,2.405531],[-59.895968,2.409331],[-59.895768,2.412731],[-59.897268,2.416731],[-59.898768,2.421331],[-59.897168,2.424531],[-59.893168,2.424731],[-59.892068,2.427631],[-59.894568,2.430931],[-59.898168,2.435131],[-59.900468,2.438431],[-59.899768,2.442531],[-59.897968,2.445331],[-59.896868,2.450031],[-59.894868,2.453131],[-59.894368,2.456931],[-59.895068,2.460831],[-59.894768,2.465231],[-59.898168,2.468831],[-59.900168,2.471631],[-59.899268,2.474631],[-59.897068,2.477931],[-59.897868,2.482131],[-59.900768,2.483131],[-59.902568,2.485931],[-59.904768,2.489931],[-59.907568,2.492331],[-59.910368,2.493731],[-59.912368,2.496131],[-59.912568,2.499831],[-59.913068,2.503331],[-59.916168,2.505631],[-59.920068,2.508331],[-59.919168,2.511931],[-59.919568,2.516931],[-59.921068,2.520731],[-59.918668,2.523731],[-59.918668,2.526631],[-59.921968,2.530131],[-59.923568,2.533731],[-59.924968,2.536331],[-59.926868,2.538831],[-59.929368,2.540531],[-59.932668,2.544531],[-59.934168,2.549531],[-59.938068,2.552931],[-59.937168,2.556231],[-59.935168,2.558431],[-59.933568,2.561531],[-59.931368,2.564231],[-59.929368,2.567731],[-59.930868,2.571131],[-59.934768,2.573131],[-59.935868,2.576331],[-59.937668,2.579731],[-59.940168,2.582231],[-59.942668,2.584431],[-59.947368,2.586331],[-59.951868,2.586731],[-59.955368,2.589131],[-59.958968,2.591531],[-59.962868,2.592331],[-59.965968,2.592131],[-59.970668,2.592531],[-59.972568,2.596531],[-59.972068,2.599631],[-59.970668,2.602731],[-59.969068,2.605531],[-59.966668,2.608731],[-59.962968,2.609631],[-59.959268,2.610331],[-59.962668,2.614031],[-59.964468,2.617631],[-59.964768,2.621531],[-59.963968,2.624831],[-59.965868,2.627331],[-59.968768,2.628731],[-59.971268,2.632731],[-59.972768,2.635331],[-59.975968,2.638131],[-59.977368,2.642731],[-59.975868,2.646131],[-59.974168,2.649131],[-59.972068,2.655131],[-59.972368,2.659131],[-59.974468,2.662431],[-59.974268,2.666531],[-59.976668,2.670731],[-59.980068,2.674731],[-59.982868,2.675431],[-59.985568,2.677331],[-59.988268,2.679831],[-59.990768,2.683431],[-59.991468,2.688331],[-59.989368,2.693431],[-59.990068,2.699231],[-59.990768,2.702131],[-59.991568,2.706531],[-59.991168,2.710531],[-59.989768,2.717331],[-59.990068,2.720531],[-59.992268,2.725231],[-59.992268,2.728731],[-59.992668,2.731731],[-59.992968,2.734631],[-59.991568,2.737531],[-59.989668,2.740431],[-59.988268,2.743331],[-59.987868,2.747031],[-59.987768,2.750631],[-59.988368,2.753931],[-59.990068,2.757831],[-59.991468,2.762331],[-59.992268,2.768331],[-59.991968,2.772231],[-59.991968,2.777331],[-59.992268,2.780531],[-59.993368,2.783731],[-59.993268,2.786931],[-59.991968,2.790331],[-59.991868,2.793731],[-59.990268,2.797531],[-59.987468,2.802131],[-59.988068,2.806731],[-59.988868,2.811531],[-59.989068,2.815131],[-59.989968,2.820631],[-59.990768,2.825931],[-59.991168,2.831531],[-59.991468,2.835531],[-59.991168,2.839931],[-59.990368,2.843731],[-59.988068,2.846531],[-59.985268,2.851331],[-59.984668,2.855531],[-59.985368,2.858731],[-59.986868,2.862331],[-59.985768,2.865131],[-59.982868,2.869031],[-59.983368,2.873731],[-59.984968,2.877031],[-59.988968,2.880531],[-59.988968,2.883531],[-59.986068,2.885631],[-59.982868,2.889131],[-59.979268,2.893931],[-59.978068,2.897531],[-59.978868,2.903331],[-59.982468,2.904131],[-59.984368,2.906531],[-59.986368,2.909731],[-59.984768,2.913131],[-59.983968,2.915931],[-59.982868,2.919131],[-59.982768,2.922931],[-59.983668,2.926531],[-59.983368,2.930931],[-59.980068,2.935131],[-59.977268,2.937731],[-59.974168,2.940131],[-59.970068,2.945131],[-59.967868,2.947331],[-59.963768,2.949231],[-59.961168,2.951131],[-59.959568,2.954331],[-59.960068,2.957531],[-59.962968,2.959431],[-59.964768,2.962931],[-59.962368,2.968531],[-59.960668,2.972931],[-59.958668,2.977131],[-59.957368,2.983131],[-59.955768,2.986131],[-59.954268,2.990131],[-59.952468,2.993731],[-59.949668,2.996231],[-59.947368,2.998931],[-59.947468,3.002731],[-59.949968,3.005631],[-59.955168,3.009231],[-59.957568,3.011731],[-59.960068,3.013631],[-59.961868,3.017531],[-59.960468,3.020731],[-59.959568,3.024331],[-59.958968,3.028331],[-59.957068,3.031531],[-59.954668,3.035731],[-59.951868,3.040731],[-59.951268,3.044131],[-59.951068,3.047531],[-59.950768,3.054731],[-59.951068,3.058431],[-59.952068,3.061231],[-59.953268,3.066331],[-59.954268,3.069131],[-59.956168,3.073731],[-59.956468,3.077131],[-59.955468,3.081731],[-59.951568,3.083131],[-59.946368,3.084431],[-59.940968,3.086331],[-59.937768,3.089931],[-59.938368,3.093831],[-59.939368,3.098131],[-59.936968,3.102331],[-59.933568,3.106331],[-59.929368,3.109931],[-59.924668,3.108731],[-59.923068,3.112331],[-59.922468,3.116731],[-59.922168,3.120131],[-59.918668,3.120931],[-59.916768,3.116931],[-59.915968,3.112331],[-59.912368,3.110331],[-59.908068,3.113931],[-59.907368,3.118331],[-59.908368,3.121231],[-59.909168,3.124831],[-59.912868,3.127031],[-59.917068,3.126331],[-59.918868,3.128931],[-59.918968,3.132731],[-59.916668,3.137531],[-59.912568,3.139131],[-59.908968,3.139131],[-59.907568,3.141931],[-59.908868,3.145331],[-59.912768,3.146131],[-59.916068,3.144931],[-59.919968,3.145031],[-59.918568,3.149431],[-59.914468,3.149131],[-59.910268,3.149131],[-59.904268,3.149131],[-59.901468,3.150731],[-59.900068,3.154931],[-59.901268,3.160231],[-59.903768,3.165131],[-59.905368,3.168931],[-59.907668,3.172531],[-59.909168,3.177331],[-59.910068,3.181231],[-59.911668,3.185731],[-59.912468,3.190631],[-59.912368,3.194731],[-59.910568,3.199231],[-59.909568,3.202831],[-59.908668,3.207231],[-59.908368,3.211331],[-59.906768,3.213931],[-59.902868,3.216131],[-59.898768,3.216631],[-59.895168,3.215731],[-59.892168,3.215231],[-59.888468,3.216331],[-59.885168,3.217931],[-59.882368,3.220231],[-59.878768,3.221531],[-59.875868,3.223131],[-59.874468,3.225731],[-59.875868,3.230131],[-59.879168,3.232931],[-59.882068,3.234631],[-59.885968,3.237331],[-59.887768,3.239931],[-59.887368,3.242931],[-59.884368,3.243931],[-59.881068,3.244731],[-59.879068,3.247331],[-59.881368,3.253931],[-59.881368,3.257331],[-59.880468,3.260331],[-59.877768,3.263331],[-59.875768,3.266331],[-59.873568,3.270331],[-59.872968,3.274731],[-59.871568,3.277331],[-59.868668,3.278731],[-59.863668,3.278531],[-59.858868,3.279131],[-59.857068,3.283731],[-59.855668,3.287331],[-59.853968,3.290531],[-59.852068,3.295131],[-59.852868,3.300931],[-59.850268,3.305731],[-59.846968,3.307531],[-59.843168,3.308131],[-59.841268,3.310331],[-59.840868,3.313331],[-59.841968,3.316731],[-59.841468,3.319931],[-59.838168,3.321331],[-59.834768,3.322531],[-59.833168,3.326131],[-59.829668,3.329531],[-59.827568,3.332231],[-59.830468,3.340731],[-59.832868,3.345531],[-59.833968,3.348731],[-59.834268,3.351931],[-59.831268,3.355131],[-59.827168,3.356531],[-59.824268,3.356531],[-59.820968,3.355731],[-59.817368,3.354531],[-59.810568,3.352331],[-59.806368,3.353931],[-59.804968,3.357331],[-59.804468,3.360731],[-59.804168,3.364331],[-59.804368,3.370331],[-59.809468,3.376131],[-59.811268,3.380331],[-59.811668,3.383731],[-59.812468,3.387331],[-59.813568,3.392131],[-59.815168,3.395831],[-59.817068,3.398731],[-59.819168,3.405231],[-59.821368,3.411731],[-59.821368,3.416331],[-59.814968,3.419531],[-59.812968,3.421831],[-59.810868,3.424731],[-59.811868,3.428531],[-59.814468,3.430331],[-59.817768,3.430131],[-59.822368,3.428331],[-59.825468,3.425931],[-59.829268,3.423131],[-59.832268,3.422531],[-59.836168,3.422531],[-59.839068,3.423931],[-59.841268,3.426531],[-59.840668,3.433731],[-59.840368,3.437031],[-59.840568,3.440931],[-59.839768,3.443931],[-59.836968,3.446431],[-59.833668,3.449231],[-59.830368,3.453331],[-59.828468,3.456931],[-59.826868,3.459931],[-59.825768,3.463531],[-59.824568,3.467931],[-59.822468,3.471931],[-59.818868,3.472331],[-59.815168,3.470531],[-59.811268,3.469731],[-59.810768,3.473731],[-59.812268,3.476931],[-59.814568,3.479331],[-59.818768,3.479331],[-59.824068,3.476731],[-59.826868,3.479931],[-59.824868,3.483131],[-59.821568,3.484531],[-59.815268,3.485331],[-59.811868,3.485731],[-59.808068,3.488231],[-59.803268,3.491131],[-59.801568,3.494731],[-59.802168,3.497531],[-59.802568,3.501331],[-59.803368,3.504731],[-59.805068,3.509531],[-59.808668,3.512831],[-59.812968,3.516431],[-59.815568,3.519331],[-59.818768,3.521531],[-59.822468,3.523031],[-59.826068,3.523931],[-59.831468,3.522131],[-59.834568,3.523931],[-59.837868,3.527931],[-59.839268,3.531131],[-59.839868,3.534531],[-59.841268,3.538131],[-59.843668,3.542331],[-59.844868,3.546831],[-59.842968,3.552131],[-59.845568,3.554031],[-59.848468,3.554831],[-59.852068,3.555331],[-59.856668,3.555931],[-59.860668,3.556931],[-59.864968,3.558131],[-59.869968,3.559731],[-59.872268,3.563431],[-59.868368,3.565131],[-59.865868,3.567531],[-59.862868,3.569531],[-59.859168,3.572531],[-59.862168,3.575331],[-59.866068,3.577131],[-59.862568,3.579331],[-59.859268,3.580531],[-59.857768,3.584931],[-59.856368,3.589131],[-59.854168,3.591931],[-59.851668,3.594531],[-59.850668,3.598731],[-59.850968,3.603131],[-59.848068,3.605331],[-59.844168,3.605331],[-59.840168,3.605931],[-59.834668,3.607731],[-59.830668,3.610131],[-59.827468,3.611731],[-59.823168,3.613931],[-59.819868,3.613131],[-59.816968,3.610731],[-59.816368,3.614731],[-59.816568,3.619331],[-59.813468,3.619031],[-59.810468,3.617131],[-59.806068,3.617131],[-59.803268,3.617631],[-59.800068,3.618931],[-59.795668,3.619531],[-59.791668,3.618131],[-59.787468,3.617331],[-59.784768,3.619331],[-59.781168,3.621931],[-59.777968,3.624131],[-59.775068,3.625631],[-59.770668,3.626531],[-59.765468,3.627531],[-59.768168,3.631931],[-59.763568,3.632731],[-59.759268,3.634231],[-59.758468,3.639331],[-59.757468,3.643131],[-59.756368,3.645831],[-59.753868,3.649931],[-59.751568,3.653031],[-59.748768,3.654131],[-59.745868,3.655731],[-59.744168,3.658331],[-59.741668,3.660731],[-59.738668,3.661731],[-59.735368,3.661931],[-59.732468,3.662731],[-59.729168,3.663331],[-59.724268,3.663831],[-59.721268,3.665731],[-59.719468,3.668531],[-59.719168,3.673931],[-59.717268,3.676531],[-59.714268,3.677931],[-59.710468,3.679831],[-59.708468,3.682931],[-59.706868,3.686231],[-59.704268,3.689131],[-59.701068,3.689131],[-59.697068,3.688731],[-59.692468,3.689131],[-59.689468,3.693331],[-59.688068,3.696131],[-59.686668,3.699531],[-59.682468,3.696931],[-59.679468,3.696931],[-59.674668,3.700031],[-59.668968,3.702831],[-59.667768,3.706931],[-59.665868,3.710531],[-59.663168,3.713931],[-59.663168,3.717931],[-59.665568,3.719931],[-59.668868,3.722131],[-59.671068,3.726331],[-59.669768,3.730531],[-59.667568,3.732531],[-59.664568,3.733131],[-59.665968,3.736831],[-59.668168,3.740431],[-59.670368,3.743331],[-59.673168,3.744031],[-59.674668,3.747331],[-59.673168,3.751731],[-59.674168,3.755131],[-59.677868,3.755331],[-59.679668,3.757531],[-59.676368,3.760031],[-59.672868,3.761931],[-59.669968,3.766431],[-59.668668,3.771931],[-59.666168,3.775531],[-59.665368,3.778731],[-59.663968,3.782131],[-59.659468,3.782931],[-59.655368,3.785731],[-59.650968,3.785531],[-59.647568,3.787131],[-59.644068,3.786331],[-59.640668,3.784731],[-59.637968,3.786031],[-59.636268,3.790131],[-59.635668,3.793131],[-59.633468,3.795331],[-59.629868,3.798531],[-59.626368,3.796131],[-59.628068,3.793231],[-59.631268,3.792331],[-59.632468,3.789331],[-59.630068,3.785631],[-59.624768,3.790131],[-59.619368,3.791031],[-59.616868,3.793131],[-59.615068,3.797131],[-59.612868,3.801331],[-59.609668,3.804331],[-59.606068,3.801731],[-59.603468,3.796831],[-59.596768,3.794931],[-59.595668,3.799331],[-59.594868,3.802531],[-59.594068,3.805931],[-59.594868,3.808731],[-59.597568,3.811131],[-59.597868,3.814531],[-59.593368,3.814731],[-59.589768,3.816331],[-59.587968,3.819131],[-59.585168,3.823131],[-59.582668,3.819731],[-59.578968,3.816931],[-59.577868,3.821331],[-59.578168,3.825331],[-59.578168,3.830831],[-59.580768,3.833531],[-59.584368,3.833931],[-59.586468,3.836931],[-59.585868,3.841131],[-59.587568,3.844731],[-59.588368,3.847931],[-59.588968,3.852431],[-59.586968,3.857331],[-59.590468,3.858231],[-59.592968,3.860131],[-59.591268,3.864031],[-59.590168,3.867131],[-59.591168,3.869831],[-59.592568,3.872931],[-59.593668,3.877531],[-59.594168,3.881931],[-59.593368,3.884931],[-59.591268,3.887831],[-59.587968,3.889131],[-59.583768,3.888931],[-59.579668,3.890931],[-59.576068,3.890731],[-59.576068,3.896331],[-59.571368,3.892131],[-59.567768,3.891131],[-59.567768,3.895331],[-59.568268,3.898331],[-59.567368,3.901531],[-59.566868,3.905131],[-59.566268,3.909931],[-59.565468,3.915731],[-59.561568,3.920731],[-59.558368,3.920431],[-59.555268,3.919931],[-59.552168,3.919131],[-59.548568,3.919131],[-59.544968,3.920731],[-59.541968,3.922731],[-59.539868,3.925431],[-59.542268,3.928931],[-59.539768,3.931731],[-59.536668,3.929331],[-59.532768,3.926731],[-59.528168,3.924731],[-59.525368,3.927631],[-59.524268,3.932931],[-59.526268,3.937731],[-59.522668,3.941331],[-59.518768,3.943431],[-59.516768,3.946331],[-59.519268,3.947831],[-59.522168,3.951331],[-59.520168,3.954531],[-59.522168,3.958331],[-59.524368,3.961331],[-59.525868,3.964331],[-59.526568,3.968031],[-59.530368,3.969131],[-59.533768,3.971331],[-59.537768,3.971531],[-59.542068,3.971331],[-59.544568,3.973531],[-59.544768,3.977731],[-59.548068,3.978231],[-59.551968,3.979131],[-59.556568,3.979131],[-59.558568,3.976331],[-59.560468,3.973131],[-59.564168,3.971531],[-59.566268,3.968531],[-59.567468,3.965231],[-59.569668,3.968031],[-59.572368,3.969931],[-59.576768,3.968831],[-59.580668,3.968031],[-59.584268,3.969131],[-59.585968,3.972731],[-59.586168,3.975931],[-59.583468,3.979531],[-59.580768,3.982131],[-59.577568,3.984131],[-59.574968,3.985431],[-59.572468,3.987631],[-59.574268,3.991731],[-59.575968,3.994331],[-59.578268,3.996231],[-59.578968,3.999331],[-59.581168,4.002331],[-59.584268,4.002531],[-59.583968,3.998331],[-59.584868,3.994831],[-59.589468,3.995331],[-59.592268,3.998431],[-59.595968,4.001531],[-59.593668,4.005631],[-59.592068,4.009231],[-59.593368,4.013131],[-59.594568,4.017531],[-59.597868,4.015531],[-59.600368,4.011731],[-59.603168,4.008531],[-59.606068,4.007031],[-59.608868,4.009531],[-59.610268,4.012731],[-59.613068,4.015931],[-59.611368,4.018631],[-59.608568,4.016331],[-59.605268,4.014931],[-59.601168,4.017131],[-59.602368,4.019731],[-59.603068,4.023331],[-59.601968,4.027731],[-59.604768,4.031131],[-59.609268,4.032431],[-59.612568,4.033831],[-59.615368,4.035731],[-59.618368,4.037331],[-59.620168,4.040531],[-59.619368,4.044331],[-59.618068,4.048131],[-59.617968,4.051331],[-59.621168,4.053531],[-59.625768,4.053931],[-59.629068,4.052331],[-59.632068,4.054031],[-59.634868,4.055731],[-59.637468,4.058731],[-59.640168,4.061731],[-59.641468,4.064731],[-59.643268,4.067531],[-59.646468,4.067731],[-59.649768,4.068131],[-59.653768,4.071131],[-59.652368,4.074131],[-59.650368,4.076431],[-59.648668,4.078931],[-59.646868,4.082231],[-59.645668,4.084931],[-59.643968,4.088731],[-59.640668,4.092331],[-59.638568,4.095931],[-59.637368,4.098731],[-59.636068,4.101931],[-59.634568,4.104931],[-59.632768,4.108131],[-59.630968,4.112931],[-59.627368,4.116231],[-59.625568,4.119331],[-59.625568,4.122331],[-59.624468,4.126331],[-59.622168,4.130131],[-59.619768,4.131931],[-59.623368,4.134731],[-59.626968,4.137331],[-59.631368,4.138531],[-59.635168,4.141731],[-59.640068,4.143331],[-59.644868,4.144431],[-59.648768,4.145531],[-59.651768,4.145831],[-59.655868,4.146131],[-59.660868,4.146131],[-59.663868,4.145831],[-59.666668,4.144131],[-59.669968,4.145031],[-59.673368,4.146531],[-59.677768,4.146731],[-59.683068,4.146931],[-59.687968,4.149431],[-59.692668,4.151531],[-59.696368,4.153931],[-59.699068,4.156931],[-59.702168,4.160131],[-59.705768,4.160531],[-59.709368,4.161931],[-59.712868,4.163331],[-59.715068,4.166331],[-59.718368,4.166731],[-59.721768,4.165731],[-59.723368,4.169531],[-59.722268,4.172731],[-59.723668,4.175731],[-59.727368,4.178931],[-59.730668,4.181531],[-59.729768,4.184831],[-59.727568,4.187531],[-59.728968,4.192031],[-59.730868,4.196131],[-59.732768,4.199231],[-59.734368,4.203331],[-59.737168,4.208331],[-59.738668,4.212131],[-59.738368,4.216531],[-59.736368,4.220531],[-59.736068,4.224331],[-59.736368,4.228731],[-59.739368,4.231831],[-59.739068,4.235931],[-59.736768,4.239031],[-59.735068,4.241931],[-59.732868,4.243931],[-59.730668,4.246931],[-59.728368,4.249831],[-59.726468,4.252331],[-59.724568,4.254531],[-59.722868,4.257031],[-59.719868,4.259931],[-59.716168,4.264131],[-59.711468,4.266431],[-59.711768,4.270731],[-59.715068,4.272731],[-59.719268,4.274331],[-59.722668,4.271731],[-59.725068,4.269131],[-59.728868,4.268131],[-59.732068,4.270331],[-59.733568,4.274431],[-59.731368,4.277131],[-59.729468,4.279931],[-59.731768,4.282931],[-59.731968,4.286031],[-59.729168,4.288531],[-59.724168,4.293531],[-59.720968,4.296731],[-59.719068,4.301131],[-59.715968,4.304331],[-59.711468,4.306531],[-59.707568,4.305331],[-59.704568,4.307131],[-59.703268,4.310931],[-59.705468,4.315531],[-59.703568,4.319931],[-59.700668,4.323131],[-59.698268,4.325031],[-59.695968,4.328631],[-59.692968,4.332231],[-59.689368,4.335731],[-59.685468,4.338031],[-59.682168,4.340231],[-59.679068,4.342731],[-59.676868,4.348331],[-59.678568,4.352331],[-59.679168,4.355531],[-59.681968,4.357731],[-59.683268,4.360731],[-59.682968,4.364331],[-59.680468,4.367931],[-59.677268,4.369331],[-59.673368,4.370531],[-59.670368,4.372331],[-59.670068,4.375631],[-59.672568,4.377331],[-59.676868,4.380531],[-59.679768,4.382831],[-59.683668,4.384931],[-59.689068,4.382731],[-59.692168,4.380131],[-59.694968,4.381131],[-59.697968,4.383731],[-59.702068,4.386331],[-59.705168,4.388631],[-59.709368,4.390931],[-59.712268,4.393931],[-59.716168,4.396531],[-59.720268,4.397931],[-59.721468,4.400531],[-59.719768,4.404131],[-59.720868,4.408831],[-59.723668,4.411031],[-59.727368,4.410731],[-59.730568,4.415931],[-59.734468,4.421531],[-59.737568,4.423931],[-59.741468,4.422331],[-59.744468,4.422731],[-59.747668,4.421531],[-59.752168,4.420731],[-59.755768,4.421331],[-59.755968,4.424731],[-59.759168,4.428931],[-59.760968,4.432531],[-59.763868,4.434131],[-59.765768,4.436731],[-59.768468,4.438431],[-59.771768,4.438731],[-59.776468,4.440631],[-59.781168,4.441531],[-59.779468,4.444931],[-59.780868,4.448131],[-59.783468,4.450031],[-59.786668,4.447731],[-59.789868,4.446731],[-59.793668,4.447531],[-59.796068,4.450031],[-59.796168,4.453331],[-59.795768,4.456931],[-59.794168,4.463031],[-59.795668,4.465531],[-59.800568,4.466631],[-59.804168,4.466331],[-59.805468,4.463031],[-59.805868,4.459931],[-59.806868,4.453631],[-59.809168,4.450331],[-59.811868,4.447731],[-59.817668,4.447731],[-59.822668,4.448331],[-59.827868,4.449931],[-59.831768,4.452731],[-59.833268,4.457531],[-59.838968,4.455531],[-59.844468,4.454931],[-59.848468,4.453531],[-59.852368,4.455331],[-59.856068,4.455331],[-59.860568,4.452731],[-59.864468,4.454531],[-59.867768,4.457931],[-59.871368,4.461331],[-59.870168,4.466031],[-59.866668,4.469731],[-59.863568,4.471631],[-59.866668,4.474631],[-59.870268,4.476531],[-59.874468,4.478231],[-59.874868,4.481531],[-59.873068,4.484631],[-59.875768,4.486531],[-59.878068,4.483531],[-59.878068,4.480531],[-59.878768,4.477731],[-59.880468,4.475131],[-59.884268,4.475931],[-59.887668,4.477431],[-59.890968,4.478131],[-59.893968,4.477731],[-59.897968,4.478531],[-59.900068,4.476031],[-59.902368,4.469731],[-59.903768,4.466131],[-59.905468,4.461331],[-59.910268,4.460831],[-59.913068,4.462731],[-59.915668,4.466331],[-59.914568,4.470531],[-59.913068,4.474531],[-59.911968,4.477931],[-59.915668,4.478231],[-59.920268,4.479931],[-59.926568,4.479931],[-59.930568,4.481531],[-59.928268,4.485931],[-59.926168,4.489931],[-59.929768,4.492331],[-59.934868,4.494531],[-59.937768,4.499131],[-59.941968,4.497631],[-59.946268,4.498931],[-59.950668,4.499831],[-59.954268,4.502931],[-59.959268,4.504931],[-59.962868,4.507531],[-59.966568,4.508731],[-59.971668,4.507831],[-59.971468,4.503931],[-59.972268,4.500931],[-59.972368,4.496731],[-59.974168,4.493331],[-59.974868,4.489531],[-59.972568,4.484331],[-59.973068,4.481331],[-59.976368,4.482931],[-59.978968,4.485331],[-59.983568,4.487131],[-59.988268,4.485731],[-59.991468,4.486731],[-59.994368,4.488131],[-59.997768,4.491131],[-60.000168,4.493131],[-60.002368,4.495131],[-60.005568,4.495731],[-60.009168,4.495531],[-60.011368,4.493531],[-60.013968,4.490931],[-60.017868,4.489931],[-60.021568,4.492331],[-60.024768,4.494031],[-60.028468,4.492531],[-60.032568,4.490931],[-60.036668,4.490431],[-60.039768,4.491131],[-60.043168,4.492531],[-60.046168,4.494531],[-60.049768,4.494331],[-60.053068,4.494731],[-60.056568,4.495331],[-60.059468,4.495131],[-60.064068,4.495331],[-60.067768,4.493931],[-60.070968,4.493731],[-60.071568,4.497031],[-60.071068,4.500631],[-60.069868,4.503731],[-60.068468,4.507031],[-60.067668,4.512331],[-60.066568,4.516131],[-60.064368,4.518531],[-60.066668,4.523331],[-60.069868,4.524331],[-60.073268,4.524731],[-60.078468,4.523931],[-60.080068,4.520731],[-60.081768,4.517931],[-60.085668,4.517531],[-60.085868,4.520731],[-60.084868,4.523731],[-60.083268,4.527531],[-60.084368,4.531631],[-60.087368,4.533331],[-60.090668,4.532931],[-60.093668,4.528731],[-60.098468,4.528331],[-60.103368,4.527531],[-60.104768,4.523731],[-60.102768,4.521131],[-60.098968,4.518531],[-60.097668,4.514731],[-60.099168,4.511731],[-60.101768,4.508531],[-60.105268,4.506531],[-60.107568,4.504531],[-60.110868,4.505131],[-60.114168,4.504231],[-60.117668,4.502031],[-60.120868,4.501931],[-60.122668,4.504231],[-60.124068,4.506931],[-60.128768,4.508131],[-60.131668,4.510631],[-60.134968,4.512331],[-60.137968,4.514531],[-60.142968,4.513631],[-60.146868,4.512331],[-60.150068,4.511431],[-60.153168,4.512131],[-60.156968,4.513931],[-60.159568,4.516731],[-60.161368,4.519431],[-60.160568,4.522931],[-60.158468,4.525331],[-60.158368,4.528331],[-60.158768,4.532331],[-60.158068,4.536031],[-60.157368,4.539131],[-60.156168,4.541831],[-60.154468,4.544931],[-60.154468,4.549531],[-60.156568,4.552631],[-60.159768,4.554531],[-60.160968,4.557931],[-60.160168,4.561931],[-60.157768,4.565131],[-60.156968,4.571331],[-60.155468,4.574731],[-60.152868,4.575931],[-60.149468,4.574231],[-60.147968,4.569731],[-60.144268,4.566931],[-60.139968,4.566531],[-60.136268,4.565931],[-60.138468,4.570931],[-60.138568,4.575931],[-60.139668,4.579331],[-60.135968,4.580731],[-60.133068,4.578931],[-60.130268,4.577131],[-60.128068,4.575331],[-60.124468,4.576431],[-60.122968,4.579131],[-60.125468,4.582131],[-60.128068,4.585531],[-60.129168,4.589931],[-60.130268,4.593331],[-60.130668,4.596531],[-60.128768,4.600131],[-60.124368,4.604131],[-60.119768,4.604931],[-60.116468,4.604531],[-60.113668,4.602931],[-60.111068,4.604331],[-60.108068,4.607731],[-60.104468,4.607331],[-60.100368,4.604331],[-60.096168,4.604531],[-60.094068,4.606731],[-60.090068,4.605731],[-60.086468,4.608231],[-60.082968,4.612131],[-60.079668,4.613531],[-60.076868,4.615731],[-60.073968,4.615131],[-60.070968,4.616531],[-60.070668,4.620731],[-60.072968,4.624331],[-60.074068,4.628331],[-60.075168,4.631731],[-60.074568,4.636331],[-60.070268,4.638531],[-60.069568,4.643131],[-60.070668,4.646531],[-60.072468,4.649731],[-60.075768,4.649131],[-60.075968,4.653331],[-60.074268,4.656931],[-60.072468,4.659331],[-60.070568,4.662131],[-60.068268,4.664931],[-60.065168,4.668131],[-60.062268,4.671331],[-60.060868,4.673931],[-60.058568,4.677631],[-60.054468,4.679731],[-60.053068,4.682931],[-60.050068,4.686231],[-60.046468,4.689131],[-60.044168,4.691331],[-60.041668,4.695131],[-60.037068,4.696731],[-60.032668,4.698931],[-60.030168,4.702531],[-60.027968,4.704531],[-60.025668,4.706331],[-60.026168,4.709431],[-60.026968,4.713031],[-60.029868,4.714931],[-60.032568,4.717331],[-60.035568,4.719131],[-60.037568,4.722131],[-60.038368,4.725931],[-60.036668,4.729631],[-60.035568,4.732531],[-60.033468,4.734631],[-60.030168,4.735931],[-60.027668,4.738531],[-60.025968,4.741931],[-60.025368,4.744831],[-60.024568,4.748931],[-60.024868,4.752331],[-60.025068,4.755631],[-60.024768,4.759731],[-60.026468,4.764131],[-60.026468,4.767531],[-60.025168,4.771131],[-60.023768,4.773931],[-60.023468,4.776931],[-60.022568,4.779731],[-60.022268,4.783031],[-60.026568,4.785531],[-60.029268,4.787431],[-60.033668,4.788331],[-60.035868,4.790531],[-60.035568,4.794331],[-60.034168,4.798231],[-60.034168,4.802931],[-60.030168,4.807631],[-60.025168,4.809831],[-60.022268,4.812531],[-60.024368,4.815131],[-60.027868,4.819231],[-60.026568,4.823531],[-60.025468,4.827731],[-60.025368,4.831731],[-60.022868,4.833931],[-60.018668,4.836331],[-60.016868,4.838531],[-60.014568,4.841531],[-60.013268,4.844131],[-60.013168,4.848831],[-60.011468,4.852931],[-60.010768,4.857331],[-60.009168,4.861831],[-60.009168,4.864931],[-60.010268,4.868931],[-60.009968,4.873331],[-60.006568,4.877031],[-60.005168,4.881731],[-60.005268,4.885531],[-60.006568,4.888531],[-60.005568,4.891731],[-60.005168,4.895031],[-60.004068,4.900131],[-60.001668,4.905531],[-60.002368,4.909731],[-60.002168,4.913531],[-60.001668,4.916731],[-59.998868,4.918731],[-59.998068,4.921831],[-59.998068,4.924931],[-59.997968,4.928331],[-59.996568,4.931731],[-59.993668,4.934331],[-59.992468,4.937531],[-59.994068,4.940131],[-59.994168,4.944731],[-59.993268,4.949931],[-59.990068,4.949931],[-59.989668,4.953531],[-59.990468,4.956331],[-59.991668,4.959431],[-59.992268,4.962731],[-59.993868,4.965131],[-59.991568,4.968831],[-59.989368,4.971931],[-59.987568,4.974331],[-59.986968,4.977731],[-59.990068,4.983731],[-59.989468,4.987631],[-59.987468,4.991331],[-59.987868,4.997331],[-59.988868,5.001931],[-59.986868,5.006531],[-59.985268,5.009131],[-59.985268,5.012331],[-59.984968,5.017231],[-59.980668,5.016431],[-59.978068,5.019131],[-59.977568,5.022931],[-59.976668,5.026631],[-59.975268,5.030531],[-59.977468,5.033731],[-59.977568,5.038531],[-59.978068,5.042331],[-59.976968,5.045931],[-59.975568,5.049531],[-59.977468,5.053531],[-59.975068,5.056231],[-59.972368,5.058931],[-59.970668,5.062731],[-59.971668,5.066731],[-59.971368,5.070531],[-59.971668,5.073531],[-59.973368,5.076431],[-59.976768,5.078931],[-59.981168,5.080531],[-59.984968,5.082931],[-59.989368,5.084131],[-59.993668,5.085531],[-59.997668,5.083531],[-60.000768,5.083131],[-60.004368,5.084131],[-60.008068,5.086131],[-60.011068,5.087731],[-60.013568,5.089331],[-60.017868,5.090531],[-60.021468,5.092931],[-60.025368,5.096531],[-60.028368,5.100231],[-60.030868,5.102731],[-60.033368,5.105131],[-60.036768,5.108231],[-60.041768,5.106731],[-60.045668,5.107931],[-60.044268,5.110931],[-60.048268,5.113431],[-60.051668,5.118131],[-60.052268,5.122631],[-60.056068,5.123931],[-60.057968,5.126131],[-60.059468,5.130331],[-60.061568,5.133931],[-60.065268,5.137731],[-60.071568,5.137731],[-60.077068,5.138131],[-60.080968,5.139331],[-60.083768,5.141331],[-60.090968,5.141331],[-60.094868,5.140531],[-60.096368,5.143931],[-60.098468,5.146131],[-60.098368,5.149331],[-60.099468,5.153531],[-60.101368,5.160931],[-60.102468,5.171131],[-60.103868,5.175331],[-60.104268,5.180431],[-60.106768,5.194131],[-60.109968,5.198931],[-60.116068,5.203931],[-60.120168,5.207531],[-60.124368,5.212731],[-60.125768,5.217131],[-60.127368,5.219531],[-60.130668,5.222131],[-60.133068,5.225931],[-60.134068,5.229931],[-60.134168,5.234931],[-60.135468,5.243531],[-60.135668,5.248731],[-60.138868,5.248331],[-60.147668,5.241131],[-60.150668,5.238931],[-60.154068,5.235731],[-60.156268,5.233131],[-60.159468,5.231331],[-60.162768,5.230331],[-60.165668,5.230331],[-60.171668,5.226731],[-60.177968,5.229631],[-60.182168,5.230731],[-60.187668,5.232731],[-60.194168,5.237331],[-60.195568,5.241131],[-60.192768,5.251331],[-60.196868,5.257031],[-60.198268,5.260531],[-60.201268,5.265531],[-60.205168,5.267931],[-60.211468,5.271131],[-60.218168,5.270031],[-60.220968,5.268931],[-60.228068,5.263731],[-60.233868,5.263131],[-60.246868,5.251731],[-60.249668,5.251131],[-60.253468,5.251731],[-60.257168,5.251931],[-60.264068,5.251131],[-60.267068,5.247931],[-60.269868,5.243531],[-60.270468,5.239531],[-60.270968,5.234331],[-60.277968,5.233931],[-60.282368,5.229531],[-60.285668,5.229131],[-60.289868,5.228231],[-60.295268,5.229531],[-60.298968,5.228231],[-60.301868,5.227731],[-60.305268,5.225931],[-60.309368,5.219131],[-60.311068,5.213531],[-60.313468,5.210531],[-60.319168,5.208331],[-60.323468,5.207131],[-60.327668,5.205731],[-60.333168,5.207531],[-60.336568,5.207931],[-60.344868,5.204931],[-60.349468,5.205331],[-60.352768,5.208531],[-60.356068,5.209731],[-60.359668,5.209131],[-60.361468,5.206331],[-60.363868,5.204731],[-60.367968,5.204731],[-60.371068,5.207531],[-60.370868,5.212931],[-60.373368,5.216131],[-60.378268,5.217531],[-60.380968,5.220731],[-60.384568,5.221531],[-60.386768,5.219731],[-60.390168,5.218731],[-60.394068,5.216931],[-60.398468,5.215531],[-60.401268,5.213931],[-60.405868,5.211331],[-60.410968,5.213931],[-60.413868,5.213031],[-60.418068,5.205731],[-60.418568,5.194531],[-60.427568,5.188931],[-60.430468,5.184331],[-60.433668,5.181531],[-60.445268,5.183431],[-60.449868,5.188931],[-60.449568,5.197131],[-60.449968,5.200931],[-60.452668,5.203131],[-60.455968,5.203131],[-60.462568,5.199531],[-60.465668,5.200031],[-60.467968,5.202531],[-60.471268,5.202531],[-60.474568,5.200731],[-60.478068,5.202131],[-60.481068,5.202531],[-60.485768,5.202731],[-60.489068,5.202131],[-60.494768,5.202831],[-60.500468,5.202731],[-60.504368,5.204531],[-60.509668,5.206331],[-60.515168,5.207131],[-60.519068,5.207931],[-60.523468,5.207131],[-60.528368,5.207931],[-60.533368,5.205531],[-60.536668,5.203531],[-60.540568,5.201731],[-60.542768,5.197831],[-60.546468,5.194531],[-60.551168,5.194931],[-60.555168,5.195331],[-60.558768,5.195331],[-60.564568,5.196331],[-60.570268,5.195931],[-60.577068,5.197831],[-60.587368,5.205531],[-60.590968,5.208331],[-60.591268,5.212731],[-60.592568,5.218031],[-60.594868,5.219731],[-60.598868,5.220131],[-60.602568,5.215831],[-60.608368,5.215231],[-60.613668,5.218031],[-60.617168,5.218031],[-60.621268,5.216131],[-60.625568,5.215231],[-60.629168,5.216931],[-60.634168,5.219531],[-60.639268,5.220231],[-60.644068,5.224931],[-60.647368,5.228531],[-60.651468,5.230531],[-60.656268,5.227731],[-60.659868,5.226931],[-60.665268,5.227731],[-60.675468,5.231831],[-60.679968,5.232131],[-60.687368,5.230731],[-60.691268,5.229331],[-60.697168,5.228931],[-60.699868,5.227131],[-60.702968,5.224931],[-60.704868,5.222431],[-60.708168,5.219331],[-60.712968,5.217731],[-60.716668,5.218331],[-60.719868,5.219731],[-60.723168,5.219931],[-60.724968,5.216631],[-60.727068,5.213931],[-60.728868,5.210331],[-60.732168,5.205731],[-60.735168,5.202531],[-60.732768,5.199731],[-60.728068,5.201131],[-60.725268,5.198531],[-60.722068,5.196431],[-60.718168,5.195631],[-60.710668,5.197131],[-60.705168,5.195331],[-60.701568,5.194231],[-60.698768,5.194931],[-60.694668,5.197131],[-60.691568,5.195531],[-60.686668,5.194231],[-60.683768,5.191331],[-60.680768,5.188731],[-60.680168,5.184131],[-60.680468,5.179531],[-60.678668,5.176131],[-60.674368,5.175431],[-60.668368,5.169331],[-60.661168,5.163831],[-60.659168,5.159531],[-60.656968,5.156131],[-60.656568,5.152131],[-60.655868,5.149131],[-60.655968,5.144931],[-60.656568,5.140931],[-60.657668,5.137531],[-60.658368,5.133931],[-60.657368,5.129131],[-60.655868,5.126331],[-60.655168,5.117531],[-60.654068,5.114331],[-60.651268,5.117131],[-60.648768,5.119031],[-60.645768,5.118331],[-60.642568,5.117331],[-60.640768,5.109631],[-60.643268,5.102731],[-60.644668,5.098731],[-60.644368,5.095731],[-60.642468,5.091131],[-60.640768,5.081531],[-60.642668,5.078531],[-60.642568,5.074731],[-60.641768,5.069531],[-60.642868,5.066331],[-60.644368,5.062931],[-60.644568,5.057631],[-60.642668,5.054731],[-60.638268,5.051331],[-60.632168,5.049331],[-60.630168,5.045731],[-60.628068,5.042931],[-60.627668,5.036531],[-60.625968,5.031131],[-60.623068,5.026131],[-60.619668,5.022531],[-60.616868,5.019331],[-60.612168,5.015931],[-60.613568,5.009531],[-60.612168,5.006531],[-60.608968,5.004531],[-60.603868,5.003431],[-60.599568,4.999131],[-60.598068,4.996231],[-60.596268,4.992531],[-60.594568,4.987131],[-60.593468,4.982131],[-60.593168,4.973831],[-60.592668,4.970731],[-60.590168,4.967131],[-60.586268,4.959431],[-60.584368,4.956731],[-60.584368,4.952131],[-60.588468,4.946331],[-60.589568,4.942731],[-60.589868,4.939731],[-60.589868,4.931131],[-60.591968,4.926831],[-60.594868,4.926331],[-60.598168,4.926331],[-60.603868,4.925331],[-60.608868,4.923131],[-60.612468,4.919631],[-60.616068,4.918131],[-60.618868,4.913831],[-60.621868,4.909531],[-60.624068,4.907131],[-60.625768,4.904131],[-60.625568,4.896531],[-60.628068,4.891931],[-60.629468,4.888631],[-60.632968,4.888131],[-60.639568,4.886331],[-60.644268,4.885031],[-60.647668,4.884931],[-60.652368,4.882831],[-60.652968,4.878331],[-60.651568,4.874731],[-60.649068,4.872631],[-60.649068,4.868131],[-60.653168,4.866931],[-60.656268,4.865331],[-60.659868,4.856031],[-60.659268,4.852331],[-60.659868,4.848831],[-60.663168,4.847731],[-60.666068,4.844531],[-60.668568,4.842731],[-60.673068,4.839931],[-60.674968,4.835531],[-60.675768,4.832131],[-60.680568,4.830031],[-60.685868,4.826331],[-60.687368,4.823331],[-60.687368,4.819731],[-60.692168,4.814231],[-60.695968,4.810531],[-60.699568,4.810531],[-60.705168,4.809731],[-60.712368,4.804731],[-60.716568,4.801331],[-60.719568,4.799731],[-60.721968,4.794931],[-60.724468,4.791731],[-60.726668,4.788731],[-60.724568,4.784531],[-60.721968,4.781531],[-60.721168,4.777931],[-60.723468,4.775831],[-60.725868,4.774131],[-60.729168,4.772731],[-60.733068,4.772531],[-60.735868,4.771531],[-60.738368,4.770031],[-60.740568,4.766331],[-60.742168,4.762531],[-60.744468,4.760331],[-60.747168,4.759131],[-60.749668,4.756331],[-60.751868,4.753931],[-60.755268,4.753731],[-60.758768,4.755531],[-60.761868,4.757831],[-60.765668,4.757731],[-60.769068,4.755631],[-60.772368,4.753431],[-60.776268,4.752531],[-60.780868,4.752931],[-60.784868,4.753731],[-60.789168,4.751931],[-60.791168,4.749131],[-60.794268,4.748431],[-60.798568,4.750331],[-60.803268,4.747931],[-60.806568,4.747631],[-60.808568,4.745531],[-60.810168,4.742531],[-60.811868,4.737631],[-60.813268,4.733531],[-60.814468,4.730131],[-60.816868,4.727331],[-60.820668,4.725531],[-60.826068,4.725531],[-60.830068,4.727931],[-60.834568,4.726331],[-60.834368,4.722331],[-60.837268,4.720131],[-60.837968,4.717131],[-60.840168,4.713731],[-60.843668,4.712231],[-60.846468,4.711131],[-60.848168,4.708131],[-60.850068,4.704731],[-60.852568,4.703131],[-60.856068,4.703931],[-60.858668,4.705731],[-60.862468,4.706531],[-60.866868,4.708131],[-60.870768,4.709431],[-60.873068,4.711931],[-60.875768,4.715131],[-60.878768,4.715531],[-60.880968,4.713531],[-60.883768,4.713031],[-60.887068,4.715731],[-60.891768,4.716931],[-60.896168,4.717131],[-60.899868,4.717531],[-60.902868,4.714431],[-60.904568,4.711131],[-60.907368,4.708931],[-60.909568,4.704331],[-60.912268,4.699731],[-60.912368,4.696131],[-60.911268,4.691931],[-60.910168,4.688431],[-60.911968,4.685931],[-60.912368,4.682331],[-60.913068,4.678731],[-60.914768,4.674531],[-60.915968,4.670931],[-60.917768,4.666831],[-60.919768,4.663531],[-60.922868,4.662331],[-60.927168,4.662131],[-60.931168,4.661031],[-60.933268,4.658331],[-60.935768,4.656131],[-60.940568,4.655931],[-60.944568,4.655731],[-60.947968,4.654131],[-60.948468,4.650331],[-60.948968,4.647231],[-60.950668,4.643931],[-60.950368,4.640331],[-60.949868,4.637331],[-60.946768,4.636931],[-60.943068,4.635331],[-60.939368,4.633731],[-60.938768,4.628731],[-60.937268,4.624531],[-60.935468,4.621931],[-60.933868,4.619531],[-60.933368,4.616231],[-60.934868,4.612931],[-60.936268,4.608231],[-60.937168,4.604131],[-60.937468,4.598731],[-60.936068,4.594131],[-60.934768,4.589131],[-60.932968,4.585331],[-60.936668,4.582731],[-60.940168,4.580031],[-60.943068,4.580731],[-60.946868,4.580031],[-60.950368,4.580731],[-60.953168,4.582531],[-60.956468,4.581131],[-60.956868,4.577531],[-60.955168,4.573531],[-60.954868,4.569131],[-60.954568,4.565331],[-60.953268,4.561931],[-60.953568,4.558731],[-60.956268,4.557131],[-60.957668,4.553531],[-60.958268,4.549331],[-60.957968,4.545731],[-60.960868,4.544631],[-60.963968,4.543731],[-60.967568,4.543231],[-60.970968,4.543131],[-60.974468,4.542431],[-60.978068,4.541731],[-60.981668,4.542131],[-60.984968,4.541831],[-60.986168,4.537931],[-60.987168,4.533031],[-60.990368,4.532931],[-60.993368,4.532431],[-60.996368,4.528931],[-60.996668,4.525831],[-60.993668,4.522931],[-60.994668,4.519331],[-60.998068,4.516731],[-61.001668,4.517731],[-61.005768,4.518331],[-61.010368,4.517931],[-61.014068,4.515331],[-61.017468,4.515931],[-61.018968,4.518531],[-61.022868,4.520031],[-61.027268,4.520031],[-61.031468,4.520031],[-61.034568,4.521531],[-61.037468,4.521531],[-61.040668,4.522731],[-61.044268,4.522931],[-61.047868,4.523531],[-61.051368,4.523731],[-61.055868,4.523031],[-61.060868,4.523531],[-61.065168,4.522931],[-61.068768,4.520731],[-61.072368,4.518631],[-61.075668,4.517531],[-61.078768,4.518131],[-61.082868,4.517931],[-61.085668,4.518531],[-61.088268,4.520731],[-61.090968,4.523031],[-61.094568,4.521331],[-61.096268,4.517531],[-61.100268,4.517231],[-61.102768,4.515031],[-61.105068,4.512531],[-61.108568,4.510631],[-61.112468,4.510331],[-61.116368,4.508731],[-61.119368,4.506331],[-61.122368,4.505931],[-61.125768,4.504531],[-61.127168,4.500131],[-61.130668,4.498331],[-61.133468,4.496131],[-61.134168,4.493331],[-61.135268,4.490131],[-61.139068,4.489031],[-61.142368,4.486131],[-61.144668,4.483231],[-61.146468,4.481031],[-61.149568,4.484931],[-61.150768,4.490731],[-61.151568,4.494831],[-61.155168,4.495531],[-61.159568,4.495931],[-61.163368,4.497631],[-61.165668,4.501931],[-61.170068,4.502031],[-61.172868,4.506131],[-61.175068,4.508931],[-61.177168,4.511931],[-61.181168,4.513631],[-61.183868,4.515331],[-61.186568,4.516931],[-61.188468,4.520031],[-61.192668,4.520531],[-61.196068,4.518631],[-61.199568,4.516131],[-61.203568,4.517931],[-61.205768,4.520831],[-61.208668,4.522731],[-61.211168,4.525831],[-61.214468,4.528031],[-61.216768,4.531631],[-61.219568,4.530531],[-61.220868,4.526631],[-61.221768,4.522931],[-61.225368,4.524331],[-61.228668,4.525731],[-61.233068,4.527131],[-61.238368,4.528331],[-61.242568,4.531931],[-61.246568,4.533031],[-61.248768,4.530731],[-61.251668,4.526331],[-61.254468,4.529331],[-61.255168,4.533331],[-61.257768,4.536731],[-61.262368,4.536531],[-61.265768,4.537431],[-61.268968,4.539331],[-61.270068,4.535131],[-61.271168,4.532331],[-61.273468,4.529731],[-61.276568,4.528531],[-61.278668,4.531131],[-61.281168,4.534531],[-61.285568,4.537131],[-61.291368,4.535531],[-61.295868,4.537331],[-61.298968,4.536031],[-61.302568,4.537431],[-61.305268,4.540331],[-61.306668,4.537431],[-61.309668,4.536031],[-61.313068,4.535531],[-61.316268,4.534331],[-61.322168,4.534931],[-61.324968,4.533531],[-61.325268,4.529331],[-61.327368,4.525731],[-61.329568,4.520531],[-61.328968,4.517531],[-61.327168,4.514531],[-61.324868,4.512531],[-61.322368,4.509231],[-61.322468,4.504131],[-61.319268,4.502731],[-61.313468,4.504231],[-61.310468,4.502331],[-61.308368,4.499531],[-61.306168,4.496131],[-61.302468,4.493731],[-61.296468,4.492631],[-61.295668,4.487731],[-61.296068,4.481731],[-61.293868,4.479931],[-61.290568,4.478131],[-61.285968,4.478731],[-61.280168,4.479131],[-61.279468,4.474931],[-61.279468,4.470231],[-61.281268,4.467131],[-61.287068,4.463731],[-61.289168,4.457731],[-61.294768,4.457931],[-61.298568,4.458531],[-61.302468,4.456531],[-61.305468,4.459131],[-61.309768,4.458131],[-61.313468,4.456531],[-61.314368,4.451131],[-61.316868,4.449731],[-61.320168,4.446331],[-61.323468,4.445631],[-61.324868,4.441531],[-61.322068,4.437731],[-61.321268,4.434331],[-61.321568,4.430331],[-61.326068,4.429831],[-61.332268,4.428331],[-61.337568,4.427631],[-61.338468,4.424731],[-61.338468,4.420731],[-61.341568,4.419631],[-61.344868,4.419131],[-61.349468,4.419131],[-61.352568,4.419331],[-61.356368,4.420331],[-61.362468,4.422531],[-61.366868,4.424731],[-61.371968,4.426731],[-61.376868,4.425731],[-61.380168,4.426731],[-61.383168,4.426331],[-61.387468,4.425731],[-61.391868,4.424331],[-61.400768,4.425731],[-61.405168,4.425431],[-61.407768,4.429531],[-61.414168,4.432131],[-61.418068,4.431731],[-61.423368,4.433131],[-61.426968,4.430931],[-61.427868,4.426331],[-61.431168,4.426331],[-61.436068,4.424931],[-61.440168,4.424331],[-61.441568,4.427131],[-61.437968,4.429831],[-61.436568,4.433331],[-61.439868,4.436131],[-61.442968,4.435931],[-61.445968,4.435331],[-61.449268,4.438731],[-61.453568,4.437731],[-61.456868,4.435731],[-61.461968,4.435531],[-61.462668,4.432131],[-61.462568,4.428331],[-61.466668,4.424331],[-61.471668,4.424531],[-61.474968,4.421331],[-61.477768,4.417931],[-61.481668,4.415331],[-61.487568,4.410531],[-61.495168,4.410231],[-61.499368,4.407731],[-61.503068,4.408331],[-61.506868,4.408331],[-61.510468,4.407131],[-61.513468,4.405531],[-61.513768,4.402531],[-61.517168,4.398731],[-61.516668,4.393731],[-61.515768,4.389731],[-61.520468,4.385331],[-61.520168,4.381131],[-61.519568,4.377531],[-61.521868,4.372631],[-61.520668,4.367531],[-61.520168,4.363931],[-61.520768,4.360731],[-61.519268,4.355331],[-61.517168,4.349531],[-61.521168,4.346931],[-61.525068,4.346931],[-61.526768,4.342931],[-61.525368,4.337931],[-61.522368,4.335831],[-61.520968,4.332731],[-61.521168,4.326431],[-61.516568,4.324131],[-61.513468,4.323531],[-61.508168,4.320631],[-61.510168,4.316131],[-61.512168,4.312931],[-61.512968,4.309331],[-61.515968,4.307631],[-61.517068,4.304731],[-61.520168,4.299931],[-61.524368,4.297731],[-61.526168,4.294531],[-61.524568,4.291731],[-61.524068,4.288331],[-61.531068,4.285431],[-61.538468,4.276331],[-61.541768,4.272731],[-61.544968,4.270331],[-61.548568,4.267931],[-61.552568,4.266131],[-61.554668,4.262331],[-61.555468,4.257031],[-61.558268,4.253431],[-61.562668,4.251131],[-61.567668,4.251731],[-61.572168,4.250631],[-61.575168,4.249131],[-61.578568,4.246731],[-61.583968,4.246531],[-61.587668,4.244031],[-61.591568,4.244531],[-61.595168,4.246931],[-61.599168,4.248331],[-61.601368,4.250531],[-61.604668,4.258331],[-61.608268,4.261131],[-61.614968,4.257831],[-61.616568,4.255331],[-61.623268,4.250931],[-61.627068,4.253331],[-61.630168,4.244831],[-61.631868,4.241131],[-61.635968,4.238231],[-61.638768,4.237531],[-61.642368,4.238131],[-61.644568,4.241231],[-61.645468,4.244731],[-61.644668,4.248331],[-61.646268,4.251931],[-61.648768,4.253331],[-61.652968,4.253931],[-61.656268,4.256331],[-61.657068,4.260631],[-61.665268,4.262531],[-61.670768,4.262531],[-61.673568,4.261331],[-61.676168,4.257831],[-61.680868,4.254231],[-61.684868,4.256331],[-61.688368,4.255631],[-61.693268,4.253931],[-61.697368,4.254931],[-61.703468,4.254731],[-61.706568,4.252731],[-61.710968,4.250331],[-61.715468,4.247931],[-61.720568,4.244831],[-61.724768,4.244831],[-61.730568,4.250131],[-61.730268,4.254531],[-61.725568,4.257531],[-61.723168,4.260331],[-61.723368,4.268531],[-61.726968,4.267931],[-61.732468,4.264731],[-61.736168,4.262531],[-61.736368,4.259231],[-61.738268,4.256531],[-61.742468,4.255531],[-61.749168,4.255531],[-61.754668,4.253431],[-61.758068,4.252331],[-61.761568,4.250631],[-61.765168,4.250531],[-61.769068,4.248331],[-61.772268,4.248931],[-61.775368,4.247931],[-61.772868,4.244331],[-61.771568,4.241731],[-61.769868,4.239331],[-61.766768,4.236531],[-61.763768,4.234931],[-61.765168,4.231531],[-61.769268,4.228731],[-61.774068,4.227331],[-61.777968,4.225731],[-61.782668,4.224131],[-61.785968,4.224631],[-61.786368,4.227731],[-61.787368,4.230731],[-61.790568,4.231031],[-61.796468,4.229131],[-61.802468,4.227331],[-61.801068,4.222731],[-61.801868,4.218331],[-61.806568,4.216331],[-61.807568,4.212931],[-61.807168,4.209731],[-61.808368,4.203531],[-61.814868,4.199931],[-61.819668,4.199731],[-61.819068,4.194931],[-61.817368,4.192531],[-61.815768,4.188431],[-61.816868,4.185531],[-61.816668,4.181531],[-61.818268,4.175731],[-61.818468,4.169131],[-61.823468,4.164131],[-61.832168,4.161331],[-61.836868,4.160231],[-61.840868,4.162731],[-61.845568,4.164131],[-61.848968,4.167931],[-61.849968,4.171731],[-61.852068,4.174031],[-61.858268,4.171731],[-61.861468,4.171131],[-61.870468,4.172531],[-61.874868,4.170331],[-61.874068,4.165731],[-61.872668,4.161931],[-61.870468,4.157431],[-61.872968,4.152531],[-61.877668,4.154131],[-61.881668,4.154931],[-61.886568,4.153531],[-61.890668,4.155531],[-61.895468,4.158531],[-61.898968,4.160531],[-61.903368,4.159531],[-61.907268,4.157331],[-61.912068,4.157731],[-61.915668,4.156331],[-61.919268,4.156331],[-61.923368,4.154931],[-61.921468,4.151331],[-61.921468,4.147931],[-61.923868,4.145831],[-61.924368,4.142131],[-61.924368,4.136431],[-61.925068,4.131731],[-61.925768,4.127031],[-61.926868,4.124331],[-61.926868,4.120531],[-61.930468,4.116231],[-61.931068,4.111831],[-61.928568,4.108231],[-61.930768,4.103231],[-61.934668,4.104531],[-61.939068,4.107131],[-61.942668,4.109131],[-61.945968,4.111831],[-61.947968,4.116231],[-61.948168,4.120531],[-61.950768,4.125531],[-61.954868,4.128431],[-61.959068,4.134731],[-61.960168,4.137731],[-61.963468,4.141731],[-61.971168,4.147731],[-61.975268,4.151131],[-61.976968,4.154431],[-61.978068,4.158731],[-61.981068,4.161931],[-61.980368,4.166331],[-61.982868,4.171731],[-61.981768,4.176331],[-61.981368,4.179831],[-61.987168,4.178531],[-61.990768,4.176331],[-61.993268,4.174931],[-61.998568,4.168131],[-61.999868,4.164631],[-62.004168,4.164931],[-62.007168,4.162431],[-62.008468,4.158531],[-62.011568,4.156131],[-62.014668,4.155531],[-62.018768,4.155231],[-62.021868,4.157131],[-62.023768,4.154931],[-62.026268,4.151131],[-62.029068,4.150131],[-62.031968,4.151931],[-62.033368,4.154731],[-62.033768,4.157931],[-62.038168,4.156331],[-62.041768,4.156131],[-62.045768,4.153331],[-62.048268,4.150331],[-62.051068,4.150831],[-62.055068,4.152531],[-62.062668,4.157431],[-62.066268,4.157431],[-62.069868,4.156331],[-62.076868,4.153331],[-62.078168,4.148731],[-62.080668,4.143631],[-62.078168,4.137531],[-62.075968,4.134131],[-62.073268,4.132531],[-62.070968,4.129531],[-62.072368,4.124831],[-62.075968,4.121931],[-62.078468,4.119531],[-62.082568,4.121231],[-62.088468,4.124131],[-62.090168,4.128331],[-62.097068,4.127531],[-62.099468,4.123731],[-62.099468,4.119531],[-62.103168,4.117631],[-62.106168,4.115131],[-62.110668,4.117131],[-62.114068,4.116931],[-62.118268,4.116731],[-62.117168,4.111831],[-62.116868,4.107731],[-62.117268,4.104531],[-62.113268,4.100931],[-62.115368,4.097331],[-62.113668,4.094731],[-62.112268,4.091331],[-62.116168,4.088331],[-62.121268,4.088531],[-62.126068,4.088331],[-62.127968,4.085731],[-62.133268,4.087131],[-62.136368,4.085131],[-62.140168,4.083331],[-62.142668,4.081331],[-62.143268,4.077731],[-62.144668,4.074731],[-62.147868,4.078531],[-62.156568,4.083931],[-62.159868,4.084931],[-62.161668,4.087131],[-62.161968,4.090531],[-62.166068,4.091331],[-62.171468,4.092131],[-62.176668,4.090231],[-62.179668,4.091131],[-62.190968,4.096631],[-62.193868,4.099331],[-62.193768,4.106531],[-62.194268,4.111331],[-62.197968,4.112931],[-62.205768,4.110931],[-62.209868,4.111331],[-62.214268,4.109531],[-62.217668,4.111131],[-62.220568,4.112131],[-62.224468,4.111731],[-62.228568,4.112631],[-62.230568,4.116531],[-62.234968,4.118331],[-62.240068,4.117931],[-62.244068,4.116931],[-62.246868,4.118131],[-62.248368,4.121931],[-62.248768,4.126131],[-62.252068,4.128731],[-62.257368,4.127731],[-62.260968,4.127931],[-62.265068,4.129931],[-62.270168,4.131131],[-62.275468,4.129231],[-62.278768,4.129531],[-62.281968,4.131731],[-62.284868,4.133531],[-62.286968,4.136131],[-62.288868,4.139731],[-62.293168,4.141331],[-62.296368,4.140531],[-62.299368,4.138331],[-62.303568,4.136431],[-62.307168,4.137731],[-62.315168,4.137131],[-62.318768,4.140731],[-62.321668,4.140531],[-62.324368,4.139331],[-62.326268,4.136431],[-62.328468,4.134531],[-62.332668,4.136931],[-62.336268,4.138931],[-62.338468,4.143931],[-62.341968,4.146931],[-62.347268,4.149331],[-62.350668,4.151931],[-62.352868,4.157331],[-62.353668,4.164331],[-62.357468,4.166331],[-62.362568,4.166331],[-62.365068,4.163131],[-62.369068,4.162731],[-62.374368,4.164931],[-62.377168,4.166731],[-62.383468,4.173131],[-62.387168,4.174931],[-62.389068,4.177531],[-62.393968,4.173531],[-62.398668,4.175431],[-62.400968,4.178131],[-62.406268,4.179831],[-62.410268,4.180331],[-62.414968,4.181531],[-62.417768,4.184331],[-62.422168,4.181731],[-62.425068,4.182531],[-62.429068,4.181931],[-62.432668,4.182531],[-62.435468,4.183131],[-62.438868,4.182331],[-62.445968,4.179331],[-62.448768,4.174331],[-62.453968,4.173931],[-62.458168,4.176831],[-62.462868,4.177631],[-62.464868,4.173731],[-62.466568,4.169931],[-62.468368,4.166731],[-62.470568,4.163531],[-62.466968,4.162431],[-62.462268,4.162731],[-62.455668,4.156931],[-62.459368,4.153331],[-62.462868,4.150731],[-62.463468,4.145831],[-62.461168,4.142131],[-62.464568,4.138931],[-62.470168,4.139131],[-62.474268,4.135931],[-62.476368,4.132531],[-62.480368,4.131131],[-62.488568,4.134231],[-62.490068,4.137831],[-62.491668,4.140931],[-62.495468,4.142531],[-62.498768,4.142531],[-62.502968,4.140531],[-62.507168,4.137131],[-62.507068,4.134131],[-62.506268,4.131131],[-62.507468,4.127531],[-62.510968,4.127331],[-62.514068,4.129731],[-62.518268,4.130531],[-62.522968,4.133131],[-62.527668,4.134731],[-62.530968,4.136331],[-62.531968,4.133531],[-62.528668,4.130631],[-62.525468,4.128131],[-62.522368,4.122331],[-62.524768,4.116231],[-62.531268,4.114031],[-62.535168,4.113531],[-62.541068,4.110931],[-62.544568,4.109331],[-62.549268,4.109331],[-62.552168,4.108231],[-62.550568,4.104531],[-62.547168,4.101031],[-62.544968,4.098831],[-62.547768,4.096531],[-62.551568,4.093331],[-62.551668,4.090131],[-62.552168,4.086131],[-62.554068,4.082131],[-62.557968,4.080031],[-62.555768,4.078131],[-62.550768,4.077531],[-62.546868,4.077531],[-62.542768,4.079331],[-62.540368,4.075331],[-62.542868,4.069931],[-62.544168,4.066731],[-62.543068,4.060931],[-62.540668,4.057931],[-62.536968,4.053531],[-62.533968,4.050331],[-62.533068,4.046831],[-62.535668,4.044931],[-62.538168,4.043231],[-62.541368,4.043931],[-62.548168,4.045131],[-62.552168,4.042331],[-62.555868,4.041331],[-62.557768,4.038531],[-62.561968,4.037331],[-62.561968,4.033331],[-62.559868,4.027931],[-62.560268,4.024431],[-62.557768,4.022131],[-62.556168,4.017931],[-62.559068,4.016131],[-62.563468,4.016931],[-62.568768,4.015331],[-62.572068,4.014931],[-62.575668,4.015731],[-62.580168,4.017731],[-62.581068,4.021531],[-62.582168,4.025731],[-62.586968,4.028031],[-62.587968,4.031331],[-62.591268,4.033531],[-62.594868,4.034931],[-62.599568,4.035931],[-62.604668,4.038331],[-62.607468,4.042431],[-62.610368,4.044131],[-62.614668,4.042131],[-62.617468,4.041331],[-62.620568,4.040331],[-62.624468,4.040531],[-62.629368,4.039631],[-62.633568,4.041331],[-62.638468,4.043931],[-62.642468,4.044131],[-62.647068,4.046131],[-62.652568,4.043731],[-62.655868,4.042331],[-62.657668,4.039931],[-62.657668,4.036331],[-62.660868,4.034731],[-62.665268,4.036331],[-62.669268,4.036331],[-62.674368,4.036731],[-62.679368,4.038331],[-62.682668,4.036331],[-62.685868,4.034731],[-62.689368,4.032431],[-62.697368,4.032731],[-62.702468,4.031531],[-62.705468,4.033331],[-62.710468,4.034531],[-62.713768,4.034731],[-62.717068,4.035731],[-62.721668,4.035131],[-62.729668,4.037731],[-62.732768,4.039331],[-62.736768,4.039331],[-62.739968,4.037131],[-62.743868,4.036731],[-62.747668,4.035231],[-62.752968,4.031631],[-62.752768,4.026531],[-62.749768,4.022131],[-62.754168,4.019731],[-62.756868,4.017931],[-62.761268,4.015731],[-62.766568,4.012531],[-62.768168,4.009131],[-62.768768,4.006331],[-62.766768,4.003731],[-62.766768,4.000531],[-62.767468,3.997531],[-62.765668,3.993731],[-62.762668,3.989531],[-62.762768,3.985331],[-62.758468,3.981731],[-62.749868,3.977431],[-62.744068,3.975531],[-62.745068,3.971331],[-62.750168,3.966131],[-62.752368,3.959931],[-62.755168,3.954131],[-62.757468,3.947831],[-62.761268,3.942331],[-62.764068,3.940331],[-62.769868,3.937931],[-62.772868,3.936731],[-62.778368,3.934331],[-62.782368,3.934331],[-62.783968,3.931531],[-62.785868,3.927531],[-62.783068,3.924031],[-62.783068,3.921131],[-62.783868,3.916531],[-62.786968,3.915131],[-62.788168,3.907731],[-62.788168,3.904431],[-62.788168,3.898931],[-62.788468,3.892931],[-62.783668,3.888531],[-62.780368,3.883531],[-62.775768,3.880331],[-62.776268,3.876131],[-62.773968,3.873731],[-62.772068,3.870931],[-62.767468,3.866131],[-62.757768,3.859631],[-62.758168,3.853931],[-62.754668,3.850531],[-62.759268,3.846331],[-62.762068,3.843731],[-62.765768,3.842931],[-62.771868,3.839131],[-62.771768,3.835131],[-62.769568,3.832531],[-62.764568,3.829131],[-62.761268,3.825931],[-62.759068,3.823331],[-62.756368,3.822131],[-62.752968,3.819931],[-62.750568,3.818131],[-62.748268,3.812931],[-62.744168,3.809131],[-62.737568,3.806231],[-62.732268,3.805331],[-62.729168,3.804731],[-62.729568,3.801831],[-62.731168,3.797331],[-62.733968,3.794131],[-62.738668,3.791331],[-62.742268,3.789531],[-62.743368,3.786031],[-62.741168,3.784131],[-62.736068,3.780131],[-62.735368,3.776131],[-62.738968,3.769931],[-62.739968,3.766431],[-62.739968,3.762831],[-62.739668,3.759131],[-62.739768,3.755531],[-62.738368,3.751131],[-62.738268,3.747531],[-62.737468,3.743931],[-62.735368,3.740431],[-62.734168,3.736331],[-62.734968,3.729131],[-62.734768,3.718531],[-62.733268,3.714331],[-62.731168,3.708331],[-62.732868,3.702731],[-62.736368,3.699731],[-62.736768,3.695931],[-62.736068,3.691931],[-62.736868,3.689131],[-62.739068,3.686231],[-62.743268,3.684531],[-62.744368,3.681731],[-62.743668,3.673931],[-62.747768,3.672931],[-62.752668,3.675331],[-62.756268,3.677531],[-62.758468,3.680331],[-62.762968,3.683931],[-62.768168,3.686231],[-62.771168,3.689531],[-62.773668,3.694231],[-62.775968,3.697131],[-62.779568,3.698531],[-62.783868,3.699531],[-62.785868,3.702131],[-62.788168,3.714131],[-62.791968,3.718831],[-62.796768,3.720131],[-62.800768,3.723331],[-62.802168,3.726031],[-62.803968,3.729331],[-62.808068,3.731831],[-62.813368,3.732731],[-62.818168,3.731731],[-62.822968,3.732731],[-62.826068,3.734931],[-62.831768,3.738231],[-62.836268,3.738231],[-62.838268,3.736131],[-62.840168,3.730531],[-62.842368,3.726931],[-62.844868,3.723831],[-62.848468,3.721331],[-62.850668,3.715131],[-62.853868,3.711131],[-62.859768,3.707131],[-62.864668,3.704131],[-62.867168,3.702731],[-62.869768,3.700531],[-62.873268,3.698131],[-62.879068,3.692031],[-62.883768,3.686731],[-62.886868,3.683431],[-62.889868,3.681731],[-62.892968,3.679331],[-62.896268,3.677531],[-62.900468,3.675931],[-62.903668,3.673931],[-62.907068,3.671831],[-62.912368,3.671831],[-62.917468,3.673931],[-62.919468,3.671731],[-62.921468,3.665531],[-62.921468,3.655231],[-62.922468,3.652131],[-62.924668,3.648931],[-62.927168,3.645531],[-62.928868,3.640031],[-62.930468,3.637331],[-62.932968,3.635331],[-62.934468,3.631731],[-62.935868,3.628731],[-62.939068,3.626131],[-62.942368,3.623931],[-62.945768,3.619731],[-62.947168,3.616231],[-62.949568,3.614031],[-62.953268,3.611531],[-62.957268,3.609631],[-62.960668,3.607731],[-62.963768,3.609631],[-62.966468,3.610931],[-62.970068,3.610131],[-62.974568,3.610331],[-62.978568,3.610731],[-62.983968,3.610131],[-62.990068,3.611731],[-62.994668,3.615331],[-62.996968,3.618131],[-62.999868,3.622031],[-63.002468,3.624831],[-63.005268,3.628731],[-63.007968,3.633531],[-63.010768,3.639331],[-63.014268,3.641331],[-63.016068,3.645831],[-63.020768,3.647731],[-63.023768,3.648931],[-63.027568,3.651531],[-63.028768,3.657731],[-63.029868,3.661731],[-63.031768,3.664931],[-63.036368,3.667431],[-63.039168,3.669131],[-63.043868,3.670431],[-63.046968,3.672331],[-63.054068,3.676131],[-63.056868,3.677131],[-63.059668,3.681131],[-63.065968,3.683931],[-63.070468,3.684731],[-63.074068,3.686231],[-63.077068,3.689131],[-63.078968,3.691531],[-63.080168,3.694131],[-63.075768,3.695531],[-63.071368,3.696131],[-63.068768,3.697731],[-63.066868,3.700531],[-63.064368,3.704131],[-63.062968,3.707531],[-63.063468,3.710731],[-63.063068,3.714131],[-63.062968,3.718031],[-63.062968,3.729931],[-63.063568,3.733931],[-63.061868,3.737131],[-63.059368,3.739731],[-63.059368,3.748731],[-63.061668,3.752031],[-63.065768,3.751931],[-63.069568,3.753131],[-63.076568,3.760631],[-63.079068,3.764331],[-63.082368,3.767231],[-63.084068,3.769931],[-63.085368,3.774931],[-63.086868,3.778531],[-63.092068,3.781631],[-63.095168,3.784731],[-63.100268,3.789131],[-63.103168,3.793231],[-63.111068,3.796131],[-63.113568,3.798531],[-63.119368,3.803531],[-63.124168,3.804331],[-63.128768,3.802631],[-63.137068,3.802931],[-63.145468,3.805431],[-63.150168,3.805931],[-63.155168,3.805931],[-63.163468,3.804831],[-63.168168,3.805431],[-63.170568,3.807531],[-63.173168,3.810331],[-63.179668,3.812931],[-63.185468,3.812531],[-63.193868,3.814531],[-63.201568,3.811931],[-63.204668,3.811931],[-63.207568,3.814531],[-63.211168,3.817531],[-63.213468,3.821431],[-63.214868,3.824931],[-63.218668,3.828931],[-63.221668,3.830331],[-63.223368,3.832931],[-63.225968,3.835131],[-63.225568,3.838331],[-63.227768,3.845231],[-63.231368,3.849631],[-63.231668,3.856531],[-63.232768,3.861731],[-63.231668,3.867531],[-63.232568,3.870531],[-63.233368,3.873331],[-63.232868,3.879131],[-63.232868,3.882831],[-63.230668,3.886331],[-63.227468,3.888331],[-63.222068,3.898531],[-63.221368,3.901531],[-63.221968,3.904431],[-63.220568,3.907131],[-63.218468,3.910231],[-63.217668,3.914531],[-63.215468,3.918131],[-63.213268,3.922531],[-63.212968,3.927531],[-63.212368,3.931731],[-63.210968,3.934331],[-63.209068,3.937031],[-63.207368,3.940531],[-63.208268,3.943431],[-63.204968,3.950031],[-63.207668,3.952531],[-63.211868,3.951931],[-63.217268,3.950931],[-63.223368,3.952731],[-63.226368,3.952731],[-63.230668,3.953631],[-63.234668,3.954131],[-63.240068,3.954331],[-63.246568,3.954531],[-63.250268,3.957131],[-63.253468,3.961131],[-63.257068,3.961131],[-63.260468,3.960831],[-63.264068,3.961331],[-63.269868,3.959431],[-63.272968,3.957731],[-63.277668,3.955531],[-63.281968,3.955831],[-63.282668,3.959131],[-63.282068,3.961931],[-63.283668,3.964931],[-63.285968,3.971931],[-63.289968,3.971331],[-63.293068,3.970931],[-63.296068,3.974631],[-63.298968,3.976931],[-63.307968,3.981331],[-63.311968,3.980931],[-63.314068,3.976731],[-63.313768,3.971931],[-63.314868,3.968531],[-63.311868,3.962131],[-63.315468,3.961931],[-63.320968,3.962731],[-63.325968,3.963331],[-63.331568,3.961931],[-63.334868,3.959731],[-63.338468,3.956931],[-63.341568,3.957731],[-63.348468,3.960131],[-63.353068,3.960731],[-63.361368,3.962731],[-63.364668,3.964131],[-63.368268,3.965831],[-63.375168,3.969531],[-63.379068,3.972731],[-63.381868,3.974531],[-63.387168,3.976731],[-63.389868,3.978931],[-63.393968,3.980531],[-63.398768,3.978931],[-63.401868,3.978531],[-63.405168,3.978131],[-63.408368,3.977131],[-63.413068,3.975531],[-63.418068,3.975731],[-63.423268,3.976031],[-63.427768,3.977131],[-63.432468,3.974531],[-63.436268,3.968531],[-63.440468,3.965531],[-63.443568,3.963331],[-63.447168,3.961331],[-63.451568,3.954731],[-63.447968,3.952131],[-63.444068,3.951131],[-63.439968,3.948531],[-63.439368,3.943931],[-63.441668,3.940531],[-63.438368,3.936431],[-63.432968,3.934331],[-63.428268,3.936131],[-63.425068,3.934731],[-63.418868,3.935331],[-63.416368,3.932631],[-63.416768,3.928731],[-63.420268,3.925131],[-63.417268,3.921531],[-63.414168,3.918231],[-63.412768,3.915731],[-63.411968,3.912731],[-63.413168,3.909131],[-63.418968,3.900731],[-63.422768,3.898331],[-63.425768,3.895531],[-63.429368,3.893331],[-63.433768,3.887531],[-63.436568,3.885031],[-63.438268,3.882731],[-63.435168,3.879231],[-63.434068,3.875531],[-63.434868,3.872531],[-63.434868,3.869331],[-63.434368,3.866131],[-63.437968,3.863231],[-63.441268,3.862931],[-63.447068,3.861131],[-63.451768,3.858531],[-63.458468,3.860431],[-63.461568,3.862531],[-63.468168,3.862331],[-63.470368,3.866231],[-63.473868,3.869031],[-63.481768,3.873731],[-63.488668,3.873731],[-63.491668,3.872931],[-63.493268,3.868131],[-63.498068,3.869031],[-63.502368,3.868331],[-63.502468,3.864931],[-63.498768,3.861831],[-63.499168,3.856831],[-63.497668,3.853931],[-63.495468,3.851331],[-63.495868,3.847331],[-63.496268,3.842531],[-63.498368,3.840231],[-63.500468,3.843331],[-63.502368,3.848131],[-63.506368,3.849631],[-63.510968,3.847431],[-63.517168,3.849931],[-63.519668,3.853231],[-63.522568,3.855531],[-63.526568,3.856331],[-63.531968,3.856731],[-63.534868,3.858531],[-63.536668,3.861831],[-63.539868,3.865131],[-63.544968,3.863531],[-63.548968,3.863131],[-63.551868,3.864931],[-63.553268,3.868131],[-63.554768,3.873331],[-63.554668,3.876731],[-63.553668,3.881731],[-63.554068,3.887531],[-63.555168,3.891131],[-63.560468,3.888331],[-63.563268,3.886331],[-63.572368,3.883531],[-63.579868,3.886331],[-63.589768,3.884931],[-63.592068,3.889931],[-63.584868,3.896531],[-63.585668,3.900131],[-63.589068,3.901131],[-63.591968,3.902131],[-63.593068,3.904931],[-63.591268,3.911931],[-63.587968,3.918231],[-63.592268,3.928331],[-63.595868,3.932631],[-63.599568,3.935531],[-63.602768,3.939731],[-63.606668,3.941931],[-63.608868,3.944231],[-63.615468,3.955531],[-63.617468,3.959731],[-63.620468,3.962731],[-63.624068,3.965731],[-63.627668,3.969331],[-63.631068,3.971931],[-63.634368,3.974631],[-63.638168,3.977131],[-63.642868,3.978531],[-63.644768,3.984131],[-63.647668,3.990431],[-63.648468,3.993331],[-63.649368,3.997031],[-63.652668,4.001931],[-63.655168,4.003931],[-63.658068,4.007031],[-63.661668,4.010331],[-63.667168,4.011131],[-63.671068,4.013331],[-63.675068,4.014931],[-63.676868,4.019131],[-63.680468,4.018131],[-63.683768,4.018531],[-63.689168,4.014731],[-63.688068,4.011431],[-63.685768,4.009531],[-63.686068,4.004131],[-63.689168,3.999831],[-63.687468,3.995731],[-63.686968,3.992631],[-63.691068,3.986131],[-63.691668,3.982331],[-63.690768,3.979131],[-63.694368,3.973831],[-63.694868,3.970731],[-63.696268,3.966331],[-63.695468,3.961931],[-63.695568,3.957731],[-63.697368,3.954731],[-63.700268,3.951331],[-63.700768,3.947831],[-63.700468,3.944231],[-63.697368,3.942731],[-63.693768,3.937031],[-63.690168,3.934731],[-63.685768,3.934831],[-63.681968,3.935331],[-63.679968,3.932631],[-63.678668,3.928931],[-63.674268,3.927331],[-63.673968,3.923731],[-63.670768,3.923131],[-63.663868,3.922531],[-63.668868,3.917431],[-63.672168,3.914631],[-63.677268,3.912731],[-63.683368,3.907731],[-63.690168,3.909131],[-63.695968,3.912931],[-63.701068,3.912131],[-63.704268,3.913731],[-63.707368,3.913831],[-63.710668,3.911731],[-63.709668,3.907331],[-63.712268,3.904131],[-63.721268,3.910731],[-63.723368,3.914131],[-63.726968,3.914931],[-63.733568,3.913331],[-63.738068,3.914931],[-63.740068,3.918731],[-63.743268,3.920931],[-63.739968,3.925331],[-63.738668,3.929031],[-63.741168,3.932631],[-63.752968,3.938431],[-63.755968,3.940531],[-63.761068,3.938931],[-63.767668,3.935931],[-63.772368,3.938731],[-63.777368,3.935531],[-63.785868,3.935531],[-63.789968,3.933931],[-63.797468,3.933431],[-63.802568,3.935531],[-63.808768,3.936931],[-63.812668,3.939131],[-63.816568,3.939531],[-63.820468,3.939731],[-63.824668,3.940931],[-63.828168,3.939731],[-63.834368,3.939831],[-63.837368,3.943131],[-63.840068,3.946331],[-63.844168,3.946931],[-63.847268,3.949531],[-63.851168,3.948931],[-63.853168,3.945131],[-63.857068,3.946431],[-63.862468,3.946431],[-63.867168,3.940331],[-63.870868,3.937531],[-63.877368,3.936231],[-63.879868,3.934531],[-63.884968,3.933331],[-63.890368,3.930931],[-63.893668,3.931131],[-63.900468,3.933431],[-63.904868,3.931931],[-63.909368,3.930031],[-63.915268,3.925931],[-63.926068,3.926131],[-63.928968,3.924331],[-63.930468,3.921331],[-63.935168,3.917731],[-63.936568,3.914531],[-63.935868,3.909531],[-63.937168,3.903331],[-63.938768,3.900731],[-63.941968,3.899731],[-63.945468,3.900331],[-63.947068,3.892931],[-63.949568,3.889931],[-63.950968,3.886431],[-63.956768,3.889331],[-63.959568,3.885531],[-63.959268,3.880531],[-63.960968,3.877031],[-63.961568,3.873931],[-63.961568,3.869531],[-63.964868,3.868331],[-63.966568,3.873431],[-63.968468,3.878431],[-63.972668,3.885931],[-63.975268,3.893331],[-63.977768,3.898531],[-63.979968,3.900531],[-63.982868,3.897531],[-63.987468,3.897231],[-63.990468,3.899131],[-63.992768,3.902531],[-63.996668,3.903031],[-63.997668,3.908331],[-63.998368,3.911731],[-63.999768,3.923531],[-64.000768,3.930331],[-64.001868,3.933131],[-64.014368,3.932931],[-64.018668,3.933431],[-64.030968,3.933931],[-64.035668,3.934331],[-64.035968,3.944131],[-64.047768,3.949731],[-64.050868,3.950931],[-64.051168,3.954331],[-64.052568,3.957231],[-64.057968,3.966331],[-64.063768,3.977731],[-64.065468,3.981331],[-64.068268,3.985431],[-64.070768,3.988531],[-64.074368,3.994731],[-64.075768,3.998731],[-64.083268,4.009931],[-64.087968,4.016931],[-64.091268,4.021131],[-64.093768,4.023331],[-64.097068,4.025131],[-64.098468,4.028531],[-64.099568,4.031631],[-64.099968,4.034731],[-64.095868,4.039531],[-64.094568,4.042731],[-64.095268,4.048231],[-64.096368,4.053531],[-64.098468,4.058931],[-64.100668,4.062731],[-64.101968,4.065531],[-64.104968,4.076131],[-64.108868,4.085531],[-64.111468,4.088331],[-64.112568,4.091331],[-64.114968,4.093831],[-64.117668,4.096131],[-64.121268,4.098531],[-64.124668,4.100231],[-64.133268,4.106031],[-64.136268,4.107531],[-64.141268,4.107731],[-64.144068,4.108531],[-64.147368,4.110331],[-64.150468,4.112531],[-64.152968,4.114731],[-64.156568,4.116731],[-64.159468,4.119031],[-64.160968,4.121931],[-64.163668,4.125531],[-64.168068,4.127931],[-64.171868,4.128931],[-64.174368,4.127531],[-64.177568,4.125631],[-64.184368,4.119731],[-64.190768,4.116731],[-64.201868,4.115331],[-64.212968,4.114931],[-64.218768,4.115431],[-64.224168,4.117531],[-64.232168,4.123931],[-64.239668,4.124731],[-64.244368,4.126731],[-64.248568,4.129131],[-64.251568,4.129531],[-64.254368,4.128331],[-64.261568,4.125631],[-64.265168,4.125931],[-64.269068,4.127931],[-64.272168,4.133931],[-64.273968,4.141731],[-64.276268,4.143931],[-64.289568,4.143931],[-64.293868,4.142231],[-64.296368,4.140331],[-64.299368,4.134231],[-64.302168,4.132531],[-64.306168,4.131331],[-64.314868,4.131331],[-64.324668,4.130331],[-64.335468,4.129131],[-64.345668,4.131131],[-64.386268,4.137131],[-64.397368,4.133531],[-64.403768,4.132031],[-64.431568,4.134731],[-64.442168,4.130631],[-64.448768,4.126131],[-64.452368,4.123331],[-64.457668,4.121231],[-64.466268,4.118931],[-64.476368,4.116931],[-64.493268,4.114031],[-64.500268,4.111731],[-64.503268,4.110431],[-64.506268,4.111131],[-64.509668,4.111831],[-64.517168,4.114031],[-64.520968,4.116231],[-64.524068,4.116131],[-64.529868,4.114331],[-64.535868,4.113931],[-64.544268,4.113931],[-64.551068,4.111331],[-64.556868,4.105531],[-64.560468,4.101731],[-64.579668,4.109131],[-64.586568,4.111331],[-64.592968,4.114031],[-64.600268,4.119031],[-64.608968,4.126731],[-64.616868,4.131331],[-64.623568,4.134931],[-64.627368,4.138531],[-64.631068,4.143531],[-64.640968,4.165331],[-64.654768,4.204331],[-64.658468,4.211531],[-64.664568,4.218031],[-64.684668,4.239331],[-64.691268,4.244731],[-64.699668,4.250331],[-64.706068,4.252931],[-64.724568,4.259931],[-64.730568,4.262531],[-64.738868,4.266931],[-64.744068,4.269931],[-64.750768,4.274131],[-64.757168,4.276531],[-64.764068,4.278931],[-64.780468,4.286731],[-64.788468,4.287131],[-64.793568,4.286931],[-64.796868,4.285731],[-64.799668,4.284131],[-64.804668,4.277731],[-64.808768,4.271731],[-64.817668,4.265331],[-64.819968,4.261431],[-64.821568,4.258531],[-64.822368,4.253431],[-64.824968,4.242931],[-64.825168,4.238931],[-64.821868,4.223331],[-64.821268,4.218031],[-64.821868,4.211931],[-64.820468,4.205331],[-64.814368,4.184731],[-64.810468,4.174731],[-64.807968,4.171731],[-64.803868,4.167131],[-64.796468,4.161931],[-64.789568,4.157131],[-64.783468,4.152731],[-64.753268,4.136931],[-64.745168,4.131731],[-64.740068,4.127731],[-64.736068,4.124131],[-64.732168,4.120331],[-64.723068,4.104931],[-64.714868,4.084131],[-64.712268,4.074231],[-64.708468,4.066531],[-64.705168,4.062531],[-64.695168,4.051731],[-64.686068,4.043531],[-64.683768,4.040331],[-64.682968,4.036331],[-64.681168,4.024731],[-64.680768,4.016331],[-64.675068,4.012531],[-64.673868,4.004731],[-64.664468,3.999731],[-64.658068,3.996131],[-64.654868,3.994531],[-64.650668,3.991931],[-64.646868,3.988531],[-64.643168,3.984631],[-64.633868,3.975131],[-64.628568,3.963031],[-64.624368,3.956531],[-64.619768,3.951331],[-64.614668,3.946731],[-64.609668,3.944931],[-64.602768,3.942831],[-64.597068,3.938431],[-64.585668,3.932131],[-64.580168,3.928331],[-64.578268,3.922531],[-64.577568,3.917931],[-64.571268,3.894931],[-64.568268,3.881931],[-64.563468,3.875931],[-64.557968,3.868531],[-64.552968,3.863731],[-64.547468,3.859131],[-64.540368,3.854631],[-64.533968,3.849331],[-64.530368,3.847131],[-64.524468,3.841931],[-64.522568,3.838731],[-64.512868,3.821331],[-64.509068,3.815131],[-64.505468,3.809831],[-64.500568,3.804031],[-64.496168,3.800131],[-64.492968,3.796731],[-64.490468,3.793231],[-64.488868,3.790531],[-64.485368,3.787431],[-64.482468,3.785731],[-64.477768,3.783031],[-64.472368,3.781631],[-64.468768,3.781331],[-64.459068,3.781331],[-64.455468,3.782431],[-64.451068,3.783531],[-64.447368,3.784131],[-64.443768,3.783831],[-64.433768,3.781531],[-64.428568,3.779931],[-64.425468,3.778031],[-64.422768,3.775831],[-64.420268,3.773331],[-64.416768,3.770831],[-64.409168,3.765731],[-64.403368,3.763931],[-64.396568,3.762531],[-64.389868,3.759731],[-64.376868,3.753331],[-64.368568,3.747631],[-64.364668,3.747031],[-64.357768,3.741231],[-64.352468,3.738531],[-64.346968,3.736731],[-64.342668,3.734931],[-64.339368,3.733131],[-64.335168,3.729631],[-64.332668,3.725531],[-64.330368,3.722431],[-64.327968,3.720531],[-64.325168,3.719531],[-64.321668,3.718331],[-64.297868,3.704131],[-64.288468,3.698731],[-64.286668,3.693931],[-64.286968,3.690331],[-64.286368,3.687031],[-64.283868,3.679331],[-64.282368,3.676731],[-64.280968,3.669531],[-64.278468,3.665331],[-64.275768,3.661331],[-64.272368,3.658531],[-64.267368,3.654731],[-64.261868,3.651331],[-64.257668,3.647731],[-64.253568,3.641331],[-64.251268,3.637531],[-64.249668,3.633331],[-64.246868,3.627731],[-64.244368,3.624831],[-64.241368,3.621931],[-64.231668,3.613231],[-64.209868,3.594731],[-64.205968,3.590531],[-64.203768,3.587531],[-64.200468,3.583331],[-64.196268,3.578931],[-64.187368,3.555431],[-64.184368,3.489331],[-64.161268,3.465131],[-64.148668,3.439831],[-64.147868,3.403931],[-64.139868,3.384731],[-64.145168,3.378331],[-64.146868,3.371231],[-64.140368,3.364931],[-64.132768,3.363931],[-64.132768,3.357131],[-64.136268,3.351031],[-64.134268,3.348731],[-64.132768,3.345231],[-64.127368,3.345931],[-64.125568,3.338731],[-64.117968,3.337531],[-64.114968,3.334931],[-64.115768,3.329131],[-64.117468,3.325531],[-64.118568,3.321431],[-64.115868,3.313331],[-64.116668,3.307631],[-64.119668,3.304831],[-64.118668,3.301531],[-64.119668,3.298231],[-64.121568,3.294331],[-64.123268,3.291531],[-64.119368,3.289331],[-64.118068,3.286731],[-64.118068,3.282331],[-64.117468,3.278531],[-64.120768,3.278731],[-64.125968,3.275831],[-64.129068,3.274331],[-64.132968,3.271931],[-64.136868,3.272531],[-64.138568,3.268631],[-64.144868,3.264931],[-64.144568,3.261331],[-64.147968,3.258331],[-64.150068,3.255331],[-64.153368,3.253931],[-64.150468,3.249331],[-64.156268,3.248431],[-64.158468,3.243731],[-64.157268,3.240131],[-64.156768,3.234331],[-64.154568,3.230131],[-64.154868,3.221531],[-64.156768,3.212531],[-64.158668,3.206731],[-64.166468,3.204731],[-64.169968,3.201331],[-64.170268,3.197131],[-64.172168,3.191131],[-64.174968,3.188731],[-64.176868,3.184131],[-64.176468,3.179531],[-64.181368,3.170431],[-64.181368,3.165331],[-64.187368,3.164131],[-64.189668,3.160731],[-64.192768,3.159131],[-64.195768,3.160231],[-64.200368,3.164631],[-64.205368,3.159931],[-64.206868,3.157131],[-64.210968,3.154331],[-64.220968,3.150131],[-64.223368,3.145031],[-64.223068,3.139731],[-64.225868,3.132031],[-64.225868,3.127931],[-64.223368,3.124131],[-64.218768,3.112131],[-64.219268,3.106031],[-64.216168,3.100131],[-64.218668,3.096131],[-64.218668,3.090731],[-64.213768,3.090531],[-64.208168,3.082231],[-64.199068,3.081731],[-64.192668,3.073931],[-64.185568,3.067831],[-64.174468,3.062031],[-64.179068,3.054831],[-64.174668,3.050731],[-64.168068,3.050431],[-64.158368,3.045331],[-64.156168,3.040131],[-64.147968,3.036531],[-64.146868,3.032331],[-64.144568,3.025831],[-64.146768,3.018931],[-64.152268,3.016331],[-64.147068,3.010631],[-64.152268,3.002931],[-64.157668,2.994031],[-64.160868,2.987331],[-64.152268,2.985131],[-64.144768,2.985931],[-64.139568,2.990731],[-64.132068,2.986831],[-64.123768,2.988231],[-64.118868,2.985731],[-64.117468,2.981031],[-64.112168,2.970131],[-64.106968,2.966531],[-64.109168,2.959731],[-64.107768,2.954131],[-64.100968,2.952131],[-64.097568,2.946931],[-64.096468,2.944131],[-64.093668,2.939831],[-64.094468,2.935131],[-64.091468,2.932931],[-64.084368,2.931231],[-64.079568,2.925431],[-64.073168,2.922931],[-64.070468,2.917431],[-64.074568,2.913131],[-64.077568,2.905931],[-64.077168,2.901331],[-64.071268,2.902931],[-64.069268,2.896931],[-64.069868,2.890731],[-64.075468,2.883331],[-64.078168,2.879931],[-64.078768,2.874131],[-64.076068,2.870331],[-64.067768,2.869731],[-64.060768,2.864731],[-64.052568,2.855531],[-64.051168,2.850731],[-64.046968,2.840231],[-64.042168,2.836731],[-64.041368,2.831731],[-64.034468,2.830731],[-64.032868,2.827731],[-64.027068,2.825031],[-64.020768,2.818131],[-64.014668,2.812331],[-64.016768,2.807331],[-64.018168,2.795331],[-64.016868,2.790331],[-64.014068,2.785931],[-64.016068,2.777731],[-64.012068,2.773931],[-64.004068,2.773331],[-63.998768,2.770031],[-63.996968,2.766331],[-63.999468,2.759931],[-64.005168,2.758931],[-64.005768,2.753331],[-64.003868,2.750331],[-64.003268,2.747331],[-64.002368,2.741731],[-63.999068,2.736831],[-63.994368,2.736831],[-63.991368,2.735731],[-63.988568,2.732531],[-63.983868,2.728531],[-63.986368,2.725231],[-63.987568,2.720731],[-63.987168,2.715731],[-63.990768,2.716531],[-63.995868,2.715231],[-63.996668,2.710831],[-64.000268,2.709431],[-64.006868,2.709431],[-64.008768,2.705031],[-64.001268,2.700031],[-64.000268,2.695931],[-63.997968,2.691331],[-63.994468,2.690131],[-63.988568,2.689831],[-63.986668,2.683931],[-63.989068,2.682131],[-63.988668,2.677931],[-63.990068,2.673731],[-63.990368,2.669331],[-63.989768,2.663531],[-63.987568,2.658031],[-63.987168,2.654931],[-63.988368,2.651631],[-63.986068,2.648731],[-63.991068,2.645831],[-63.991068,2.641931],[-63.994068,2.636131],[-63.996968,2.632531],[-64.003468,2.630331],[-64.007768,2.626731],[-64.005268,2.621231],[-64.011268,2.617331],[-64.011768,2.610431],[-64.009968,2.604631],[-64.014068,2.600131],[-64.018268,2.598831],[-64.018768,2.594731],[-64.021468,2.592731],[-64.025968,2.589731],[-64.028668,2.585731],[-64.026768,2.582531],[-64.027268,2.577231],[-64.031668,2.577831],[-64.033468,2.575531],[-64.038068,2.580031],[-64.042568,2.580031],[-64.044768,2.574931],[-64.046368,2.570331],[-64.048868,2.567531],[-64.048068,2.564531],[-64.046768,2.561231],[-64.044468,2.553731],[-64.048268,2.552131],[-64.047568,2.549031],[-64.046768,2.543931],[-64.045868,2.539531],[-64.044468,2.536331],[-64.045768,2.533331],[-64.045668,2.528531],[-64.046068,2.522131],[-64.047768,2.518531],[-64.054368,2.516931],[-64.056168,2.513131],[-64.058268,2.509131],[-64.060868,2.505631],[-64.059768,2.500331],[-64.056168,2.496531],[-64.052768,2.497031],[-64.047768,2.496231],[-64.043868,2.496731],[-64.041968,2.492531],[-64.039868,2.488931],[-64.038068,2.485331],[-64.034268,2.485431],[-64.032568,2.481731],[-64.032568,2.477331],[-64.031468,2.472731],[-64.027868,2.475131],[-64.026168,2.471331],[-64.023368,2.467531],[-64.022868,2.464731],[-64.018468,2.467331],[-64.015968,2.471131],[-64.014268,2.477331],[-64.008868,2.480131],[-63.999968,2.479131],[-63.997468,2.476031],[-63.991568,2.472731],[-63.986768,2.472131],[-63.982268,2.466931],[-63.976468,2.465131],[-63.972568,2.466631],[-63.968668,2.468031],[-63.966468,2.472431],[-63.960068,2.473531],[-63.958768,2.470731],[-63.959268,2.467731],[-63.954668,2.459431],[-63.950668,2.461331],[-63.946868,2.463531],[-63.943868,2.460831],[-63.939368,2.462731],[-63.937968,2.458931],[-63.935468,2.457131],[-63.926968,2.465131],[-63.925868,2.471531],[-63.920368,2.473731],[-63.915568,2.471931],[-63.912268,2.473531],[-63.904768,2.471131],[-63.899068,2.470231],[-63.895768,2.466531],[-63.892068,2.465831],[-63.886068,2.468831],[-63.882068,2.469131],[-63.880168,2.471531],[-63.878768,2.474531],[-63.875468,2.477131],[-63.874068,2.480531],[-63.871268,2.482931],[-63.868068,2.483231],[-63.863968,2.485431],[-63.860268,2.486831],[-63.856468,2.486731],[-63.848468,2.492631],[-63.845168,2.495331],[-63.834068,2.491131],[-63.830668,2.487131],[-63.823568,2.487331],[-63.818768,2.487531],[-63.810568,2.481831],[-63.806568,2.481731],[-63.799468,2.480331],[-63.795868,2.476531],[-63.794268,2.472731],[-63.791068,2.472731],[-63.787768,2.471931],[-63.784768,2.471131],[-63.783068,2.467331],[-63.783468,2.462531],[-63.781968,2.456931],[-63.776768,2.455031],[-63.773968,2.452731],[-63.773468,2.448731],[-63.770368,2.448731],[-63.767468,2.447531],[-63.761868,2.443931],[-63.759568,2.446431],[-63.756268,2.445531],[-63.753868,2.443431],[-63.750468,2.441931],[-63.746968,2.441931],[-63.736468,2.446131],[-63.733968,2.453331],[-63.731068,2.455031],[-63.728968,2.452231],[-63.726968,2.448931],[-63.718368,2.444931],[-63.712068,2.448531],[-63.711568,2.454331],[-63.708668,2.453631],[-63.705368,2.455331],[-63.703968,2.457931],[-63.697968,2.457731],[-63.694568,2.457231],[-63.691668,2.457931],[-63.690768,2.455031],[-63.689168,2.449931],[-63.688768,2.446731],[-63.685868,2.445331],[-63.681668,2.442531],[-63.674968,2.445331],[-63.672268,2.442831],[-63.669268,2.444531],[-63.665968,2.443731],[-63.664568,2.440331],[-63.662068,2.443131],[-63.658868,2.444131],[-63.655468,2.442731],[-63.652568,2.440631],[-63.649368,2.444531],[-63.645968,2.446731],[-63.643668,2.444931],[-63.639668,2.445531],[-63.636868,2.440631],[-63.632968,2.440931],[-63.630268,2.445131],[-63.625868,2.447531],[-63.622968,2.447831],[-63.617468,2.451131],[-63.619368,2.443931],[-63.615368,2.444131],[-63.612468,2.448531],[-63.606968,2.447331],[-63.604268,2.449231],[-63.602768,2.452731],[-63.603568,2.457231],[-63.593668,2.455731],[-63.590568,2.453131],[-63.580768,2.451731],[-63.576768,2.448531],[-63.572068,2.446731],[-63.569368,2.447831],[-63.564468,2.447131],[-63.561968,2.451431],[-63.559068,2.450931],[-63.558568,2.447531],[-63.555068,2.447131],[-63.555568,2.444131],[-63.555768,2.439131],[-63.553868,2.433131],[-63.553368,2.430331],[-63.555568,2.427531],[-63.555768,2.423531],[-63.552468,2.424731],[-63.549168,2.426531],[-63.546068,2.428731],[-63.542868,2.427531],[-63.539568,2.425731],[-63.536268,2.427131],[-63.533768,2.425331],[-63.529568,2.424031],[-63.526568,2.425431],[-63.525068,2.422731],[-63.519368,2.422731],[-63.513268,2.425331],[-63.509968,2.425931],[-63.507668,2.428331],[-63.503568,2.430431],[-63.502668,2.426531],[-63.498768,2.426831],[-63.495868,2.430331],[-63.494768,2.435731],[-63.490868,2.436531],[-63.487968,2.436931],[-63.487468,2.433731],[-63.488668,2.430931],[-63.488368,2.427331],[-63.483668,2.428931],[-63.480368,2.431931],[-63.478168,2.427631],[-63.475068,2.423731],[-63.470968,2.423131],[-63.470968,2.420131],[-63.471768,2.416831],[-63.472068,2.413331],[-63.469468,2.410731],[-63.466968,2.408031],[-63.464468,2.402331],[-63.460368,2.403931],[-63.455368,2.403931],[-63.455068,2.408531],[-63.454968,2.412731],[-63.451268,2.413831],[-63.448468,2.410231],[-63.445768,2.415531],[-63.441668,2.417731],[-63.441068,2.420931],[-63.441968,2.424531],[-63.440168,2.431731],[-63.436368,2.436131],[-63.434468,2.439231],[-63.434668,2.442531],[-63.430768,2.444531],[-63.426868,2.446931],[-63.422468,2.445131],[-63.419668,2.448731],[-63.416668,2.453531],[-63.412868,2.450731],[-63.410668,2.445931],[-63.412468,2.443131],[-63.409768,2.439831],[-63.405468,2.440531],[-63.406268,2.435731],[-63.404268,2.431231],[-63.400368,2.429731],[-63.397068,2.428931],[-63.392868,2.428531],[-63.389268,2.426831],[-63.388168,2.430931],[-63.383468,2.429831],[-63.382168,2.426731],[-63.378768,2.426731],[-63.372968,2.426331],[-63.371568,2.422731],[-63.371968,2.418731],[-63.370068,2.414531],[-63.367668,2.416031],[-63.364668,2.416731],[-63.366068,2.412731],[-63.366868,2.407731],[-63.366668,2.403331],[-63.366668,2.399931],[-63.364968,2.397231],[-63.365368,2.393631],[-63.363868,2.390031],[-63.358868,2.388631],[-63.355668,2.387131],[-63.355268,2.382331],[-63.356968,2.378931],[-63.359968,2.375631],[-63.362168,2.372631],[-63.366168,2.368131],[-63.369368,2.362331],[-63.373368,2.361131],[-63.375768,2.357531],[-63.376368,2.352131],[-63.376068,2.348131],[-63.374868,2.344331],[-63.376268,2.340831],[-63.372968,2.338031],[-63.368368,2.335831],[-63.366868,2.331331],[-63.361368,2.328531],[-63.361468,2.324731],[-63.362968,2.318131],[-63.366368,2.316131],[-63.366468,2.312931],[-63.361968,2.304831],[-63.361368,2.300931],[-63.363868,2.297531],[-63.365768,2.294131],[-63.367968,2.289631],[-63.365368,2.286331],[-63.364668,2.281531],[-63.361768,2.278031],[-63.361068,2.272931],[-63.360368,2.269331],[-63.364168,2.266331],[-63.366168,2.260931],[-63.367968,2.255331],[-63.367968,2.251331],[-63.369068,2.248131],[-63.368268,2.243131],[-63.370768,2.241231],[-63.374068,2.239931],[-63.376668,2.236131],[-63.378468,2.231831],[-63.380568,2.228231],[-63.378068,2.226331],[-63.376568,2.223831],[-63.374968,2.218531],[-63.374368,2.215131],[-63.371868,2.212131],[-63.386868,2.202131],[-63.395168,2.199731],[-63.395168,2.188431],[-63.388768,2.183131],[-63.390768,2.172531],[-63.394368,2.165731],[-63.393768,2.156931],[-63.397668,2.146931],[-63.405868,2.144331],[-63.414168,2.137831],[-63.421068,2.131331],[-63.427568,2.135331],[-63.434068,2.126331],[-63.444068,2.125331],[-63.451268,2.128431],[-63.460168,2.136431],[-63.466568,2.141131],[-63.474268,2.137831],[-63.475568,2.126731],[-63.485368,2.121231],[-63.492468,2.115431],[-63.500468,2.115431],[-63.509368,2.113731],[-63.514368,2.121131],[-63.528468,2.128331],[-63.536368,2.131131],[-63.545068,2.130531],[-63.553668,2.131131],[-63.561868,2.132531],[-63.568768,2.124731],[-63.585468,2.119731],[-63.594468,2.120331],[-63.601968,2.113931],[-63.606668,2.107531],[-63.617268,2.106731],[-63.618568,2.096331],[-63.622668,2.089131],[-63.630468,2.084731],[-63.633568,2.076131],[-63.637968,2.069231],[-63.644868,2.064831],[-63.653768,2.068131],[-63.662068,2.065531],[-63.664968,2.057531],[-63.663068,2.048731],[-63.660868,2.033331],[-63.662068,2.023531],[-63.668068,2.016931],[-63.674968,2.021331],[-63.692168,2.023331],[-63.688568,2.031631],[-63.693768,2.041031],[-63.703268,2.046331],[-63.711268,2.040331],[-63.718768,2.035231],[-63.728168,2.026331],[-63.731068,2.017931],[-63.739068,2.016331],[-63.742668,2.008531],[-63.740468,1.999731],[-63.743268,1.998931],[-63.751868,1.996131],[-63.760168,2.004131],[-63.768768,1.999731],[-63.774868,1.993331],[-63.777368,1.985331],[-63.784868,1.981731],[-63.793168,1.983231],[-63.799968,1.987531],[-63.808268,1.988231],[-63.815768,1.991131],[-63.823768,1.991131],[-63.824668,1.983231],[-63.829668,1.968331],[-63.837068,1.965131],[-63.845968,1.964131],[-63.849468,1.971631],[-63.854168,1.978531],[-63.861468,1.979931],[-63.869368,1.978931],[-63.878768,1.981331],[-63.887668,1.982531],[-63.890768,1.989531],[-63.898468,1.992531],[-63.906568,1.991531],[-63.914168,1.986331],[-63.922768,1.982931],[-63.931168,1.984631],[-63.938568,1.989331],[-63.946068,1.988131],[-63.954068,1.988231],[-63.961268,1.992531],[-63.967668,1.988231],[-63.975568,1.991231],[-63.981368,1.985931],[-63.987468,1.979131],[-63.995468,1.979931],[-64.001568,1.974931],[-64.011268,1.962531],[-64.017968,1.958931],[-64.019068,1.951331],[-64.033468,1.943931],[-64.041668,1.942731],[-64.045268,1.934131],[-64.053568,1.931131],[-64.061868,1.930731],[-64.061868,1.922531],[-64.060468,1.913831],[-64.061568,1.905931],[-64.064068,1.898731],[-64.063568,1.890731],[-64.061868,1.882731],[-64.065168,1.875631],[-64.067668,1.868531],[-64.071068,1.852431],[-64.065168,1.844731],[-64.056068,1.841131],[-64.054668,1.833531],[-64.055168,1.825531],[-64.062668,1.820631],[-64.057968,1.813131],[-64.061868,1.805431],[-64.062968,1.797531],[-64.062368,1.789631],[-64.066068,1.781331],[-64.070168,1.773531],[-64.072968,1.766331],[-64.077968,1.759131],[-64.076568,1.751331],[-64.068768,1.747631],[-64.065168,1.739931],[-64.066268,1.730731],[-64.072168,1.725931],[-64.070168,1.717331],[-64.066868,1.707931],[-64.061268,1.701731],[-64.063268,1.692831],[-64.066568,1.683931],[-64.065168,1.676131],[-64.075468,1.652731],[-64.087368,1.640331],[-64.089868,1.632831],[-64.092068,1.624731],[-64.095168,1.617131],[-64.107468,1.607331],[-64.111068,1.598831],[-64.112168,1.589431],[-64.120468,1.584931],[-64.123868,1.580531],[-64.126068,1.577731],[-64.135468,1.576931],[-64.144068,1.582531],[-64.152968,1.578631],[-64.159868,1.574531],[-64.167768,1.576131],[-64.173868,1.571131],[-64.174968,1.563131],[-64.180768,1.556931],[-64.187168,1.551831],[-64.193768,1.542731],[-64.194868,1.534131],[-64.194868,1.524931],[-64.202368,1.518331],[-64.206068,1.515931],[-64.209068,1.513931],[-64.215468,1.508531],[-64.223368,1.507031],[-64.231068,1.509531],[-64.240068,1.511331],[-64.247468,1.508331],[-64.254068,1.503931],[-64.261568,1.499831],[-64.265168,1.492131],[-64.267368,1.484631],[-64.275768,1.485431],[-64.278768,1.478531],[-64.288168,1.476331],[-64.302168,1.468331],[-64.304368,1.460531],[-64.312968,1.456531],[-64.312968,1.447831],[-64.317968,1.440131],[-64.326068,1.436131],[-64.327168,1.427931],[-64.329068,1.419331],[-64.324868,1.410931],[-64.326068,1.401931],[-64.329668,1.394931],[-64.337368,1.391431],[-64.342668,1.384231],[-64.341968,1.375531],[-64.335168,1.370931],[-64.337968,1.363531],[-64.345868,1.366131],[-64.352768,1.374831],[-64.356768,1.381331],[-64.359368,1.389931],[-64.377368,1.386431],[-64.385168,1.389331],[-64.393468,1.388531],[-64.399868,1.394931],[-64.398268,1.402731],[-64.395168,1.409731],[-64.393468,1.417731],[-64.397368,1.424531],[-64.391268,1.429731],[-64.388468,1.436931],[-64.383768,1.443331],[-64.377368,1.448331],[-64.374668,1.456531],[-64.378768,1.463731],[-64.373568,1.471131],[-64.364968,1.478231],[-64.357168,1.483931],[-64.351668,1.491731],[-64.348868,1.502031],[-64.351368,1.518331],[-64.358868,1.520531],[-64.367968,1.520031],[-64.374868,1.523931],[-64.383568,1.520531],[-64.397368,1.526931],[-64.402268,1.519731],[-64.409168,1.513931],[-64.410868,1.506131],[-64.414968,1.498431],[-64.421868,1.493531],[-64.424668,1.485331],[-64.430768,1.477431],[-64.438568,1.471931],[-64.449368,1.473331],[-64.453468,1.480331],[-64.468768,1.471631],[-64.476668,1.468031],[-64.482468,1.462531],[-64.487168,1.453531],[-64.492968,1.448331],[-64.500468,1.442731],[-64.512668,1.438931],[-64.521868,1.437731],[-64.527968,1.444131],[-64.531268,1.435331],[-64.530468,1.426131],[-64.536968,1.421731],[-64.545268,1.418931],[-64.553268,1.416831],[-64.559068,1.409931],[-64.562968,1.402131],[-64.568768,1.394131],[-64.573768,1.383531],[-64.582668,1.375531],[-64.579868,1.367531],[-64.582168,1.359131],[-64.576068,1.354131],[-64.580468,1.347431],[-64.590868,1.337531],[-64.602068,1.338331],[-64.611368,1.335831],[-64.616568,1.330031],[-64.624068,1.324131],[-64.634868,1.320331],[-64.639868,1.313331],[-64.644668,1.304831],[-64.654068,1.298931],[-64.660268,1.291331],[-64.668568,1.291831],[-64.676568,1.285531],[-64.684668,1.283831],[-64.701868,1.291331],[-64.705168,1.283831],[-64.704368,1.276131],[-64.709668,1.269331],[-64.712268,1.260631],[-64.714368,1.251131],[-64.721368,1.247331],[-64.722368,1.238531],[-64.729168,1.234631],[-64.738568,1.231731],[-64.746568,1.225531],[-64.757368,1.226331],[-64.763768,1.230931],[-64.772668,1.247531],[-64.780468,1.258331],[-64.788068,1.264131],[-64.793568,1.269331],[-64.791368,1.277531],[-64.789168,1.285731],[-64.803268,1.310531],[-64.822968,1.278531],[-64.824968,1.295131],[-64.836568,1.286331],[-64.845868,1.282731],[-64.852768,1.275831],[-64.861468,1.269331],[-64.852768,1.263531],[-64.857468,1.257031],[-64.863868,1.247531],[-64.868668,1.241131],[-64.868568,1.231831],[-64.878568,1.228531],[-64.886568,1.231831],[-64.887968,1.239531],[-64.891068,1.248331],[-64.898268,1.252731],[-64.907268,1.251331],[-64.906568,1.241731],[-64.912068,1.236131],[-64.914468,1.228131],[-64.918868,1.221631],[-64.926368,1.214731],[-64.935168,1.211331],[-64.943568,1.215731],[-64.945768,1.225231],[-64.951568,1.231731],[-64.960768,1.230331],[-64.966268,1.224631],[-64.969568,1.217331],[-64.966268,1.206131],[-64.961268,1.198331],[-64.960768,1.189731],[-64.970268,1.172931],[-64.978868,1.163831],[-64.991568,1.150531],[-65.006668,1.128931],[-65.016468,1.124531],[-65.022268,1.114931],[-65.035968,1.116531],[-65.045768,1.116931],[-65.054468,1.115431],[-65.061268,1.111831],[-65.065968,1.119031],[-65.064868,1.128731],[-65.060868,1.137731],[-65.066068,1.144731],[-65.071268,1.153531],[-65.078568,1.147531],[-65.088168,1.146131],[-65.095268,1.151331],[-65.103068,1.156631],[-65.110768,1.150731],[-65.119068,1.146531],[-65.122468,1.135031],[-65.129868,1.130631],[-65.138768,1.127531],[-65.146268,1.125931],[-65.155068,1.125131],[-65.151468,1.116531],[-65.150368,1.107531],[-65.151168,1.098131],[-65.154168,1.088731],[-65.152868,1.079531],[-65.153168,1.068431],[-65.153968,1.056231],[-65.158068,1.046331],[-65.158968,1.033531],[-65.166968,1.027131],[-65.169468,1.018531],[-65.166768,1.011431],[-65.157768,1.008731],[-65.147268,1.009231],[-65.150468,1.001531],[-65.154868,0.986831],[-65.161668,0.978531],[-65.164168,0.969931],[-65.164468,0.961131],[-65.164968,0.950531],[-65.171368,0.940331],[-65.177968,0.932931],[-65.182468,0.922531],[-65.188768,0.917731],[-65.197168,0.910931],[-65.207368,0.906931],[-65.205168,0.917131],[-65.208768,0.928931],[-65.217368,0.927931],[-65.221268,0.927631],[-65.225968,0.927531],[-65.233868,0.925431],[-65.240768,0.921131],[-65.249968,0.921331],[-65.256868,0.925331],[-65.263568,0.919631],[-65.269368,0.926831],[-65.264068,0.934131],[-65.269868,0.943331],[-65.277368,0.938331],[-65.286968,0.940331],[-65.294668,0.941331],[-65.302568,0.942031],[-65.314068,0.933931],[-65.321868,0.928131],[-65.329068,0.931731],[-65.331268,0.923531],[-65.333768,0.916031],[-65.338768,0.908831],[-65.339868,0.901131],[-65.343368,0.893531],[-65.349168,0.887531],[-65.356368,0.884731],[-65.354668,0.880331],[-65.351968,0.873131],[-65.358568,0.868531],[-65.366068,0.865731],[-65.373568,0.864731],[-65.376568,0.857731],[-65.376868,0.849531],[-65.384668,0.849131],[-65.391568,0.844131],[-65.394368,0.836131],[-65.397168,0.829131],[-65.397968,0.821331],[-65.405968,0.819731],[-65.413068,0.815631],[-65.406568,0.805331],[-65.399768,0.797531],[-65.396568,0.790531],[-65.400168,0.781631],[-65.394868,0.774431],[-65.399768,0.767131],[-65.395468,0.758331],[-65.397368,0.749831],[-65.413868,0.755131],[-65.415668,0.747631],[-65.410568,0.739731],[-65.421368,0.732131],[-65.421868,0.723331],[-65.423268,0.715831],[-65.423568,0.707931],[-65.429968,0.703331],[-65.438568,0.700331],[-65.442968,0.689831],[-65.452668,0.685531],[-65.461868,0.684731],[-65.472268,0.682631],[-65.480268,0.686931],[-65.484668,0.678931],[-65.494968,0.678331],[-65.500468,0.672131],[-65.512968,0.670331],[-65.522168,0.670931],[-65.530468,0.668131],[-65.533468,0.659131],[-65.540568,0.648931],[-65.545768,0.655531],[-65.553568,0.658331],[-65.557968,0.669931],[-65.564068,0.675731],[-65.567168,0.685731],[-65.571068,0.692731],[-65.572968,0.701131],[-65.576268,0.711731],[-65.584868,0.714731],[-65.591268,0.721631],[-65.583768,0.736331],[-65.575768,0.744731],[-65.575768,0.756131],[-65.573568,0.764331],[-65.564068,0.770031],[-65.556168,0.777731],[-65.548568,0.774731],[-65.544168,0.783331],[-65.539568,0.796831],[-65.540668,0.805331],[-65.530968,0.805331],[-65.524068,0.824731],[-65.527668,0.833331],[-65.521268,0.840131],[-65.514368,0.837231],[-65.508768,0.843531],[-65.500168,0.842531],[-65.503568,0.852431],[-65.504068,0.861131],[-65.505168,0.868531],[-65.493568,0.882031],[-65.496068,0.889331],[-65.504168,0.887731],[-65.512168,0.885331],[-65.513868,0.895531],[-65.509168,0.905131],[-65.508268,0.915531],[-65.521868,0.929531],[-65.524468,0.937531],[-65.530868,0.942731],[-65.536368,0.948131],[-65.530868,0.956131],[-65.537068,0.961131],[-65.541768,0.975531],[-65.549668,0.975531],[-65.557968,0.975931],[-65.561368,0.985931],[-65.557768,0.993331],[-65.567168,0.994331],[-65.572168,0.985131],[-65.581268,1.000531],[-65.585468,1.008931],[-65.591168,1.002331],[-65.598468,1.005131],[-65.606668,1.004531],[-65.610268,1.014331],[-65.617468,1.009931],[-65.627168,1.009231],[-65.626868,1.001331],[-65.624968,0.989031],[-65.637668,1.000531],[-65.644868,1.005331],[-65.652668,1.011931],[-65.663068,1.006931],[-65.669268,1.002531],[-65.674668,0.996931],[-65.678568,0.988931],[-65.686568,0.990931],[-65.688568,0.999731],[-65.695468,1.004131],[-65.705768,1.003131],[-65.712268,0.997531],[-65.721668,1.001731],[-65.730668,1.001331],[-65.739368,0.999731],[-65.745768,0.990731],[-65.750768,0.982531],[-65.761068,0.981031],[-65.764868,0.973131],[-65.767168,0.964131],[-65.774068,0.959131],[-65.779868,0.964131],[-65.787768,0.961931],[-65.793868,0.954131],[-65.801568,0.953631],[-65.809068,0.949131],[-65.816268,0.952131],[-65.822168,0.945531],[-65.831568,0.940131],[-65.842268,0.938431],[-65.862268,0.930931],[-65.879668,0.932631],[-65.873768,0.922131],[-65.879168,0.913131],[-65.881368,0.901631],[-65.890168,0.896131],[-65.897168,0.892231],[-65.901168,0.883731],[-65.908368,0.888931],[-65.916968,0.889331],[-65.925368,0.891331],[-65.936568,0.882031],[-65.935768,0.870731],[-65.933268,0.862531],[-65.938568,0.855931],[-65.945968,0.852731],[-65.948468,0.844331],[-65.951768,0.836331],[-65.957668,0.828931],[-65.964768,0.819931],[-65.964368,0.809531],[-65.971368,0.806131],[-65.977768,0.811931],[-65.983268,0.806231],[-65.992968,0.807131],[-66.000568,0.802631],[-66.017168,0.800131],[-66.037868,0.812031],[-66.055868,0.802331],[-66.069968,0.805131],[-66.074568,0.798731],[-66.075768,0.787331],[-66.078268,0.779131],[-66.076268,0.768331],[-66.088468,0.759131],[-66.102068,0.763631],[-66.114468,0.763531],[-66.121068,0.752031],[-66.132168,0.747931],[-66.141268,0.748131],[-66.150968,0.744531],[-66.160968,0.746231],[-66.163168,0.756131],[-66.172468,0.761331],[-66.182668,0.767231],[-66.188068,0.778731],[-66.202168,0.781331],[-66.212868,0.780731],[-66.318468,0.755131],[-66.595368,0.996231],[-66.599268,0.999731],[-66.856768,1.230331],[-67.009868,1.188431],[-67.087968,1.166831],[-67.084768,1.183331],[-67.082868,1.203531],[-67.087268,1.231731],[-67.085968,1.256131],[-67.089768,1.288131],[-67.088768,1.325031],[-67.085368,1.351031],[-67.083268,1.361831],[-67.080368,1.401331],[-67.072368,1.442731],[-67.073168,1.472931],[-67.078568,1.499831],[-67.077968,1.544531],[-67.079068,1.587231],[-67.081468,1.606531],[-67.081468,1.638331],[-67.086268,1.658031],[-67.099468,1.681931],[-67.101368,1.706331],[-67.099568,1.719331],[-67.097268,1.732731],[-67.106368,1.750631],[-67.115568,1.767731],[-67.124068,1.798931],[-67.139668,1.826731],[-67.156968,1.848831],[-67.174268,1.857131],[-67.206268,1.858231],[-67.218068,1.859931],[-67.228868,1.860931],[-67.243868,1.858231],[-67.260668,1.865431],[-67.278068,1.875631],[-67.286668,1.888631],[-67.289468,1.899431],[-67.300068,1.926731],[-67.310468,1.966631],[-67.316668,2.001331],[-67.326068,2.029731],[-67.330468,2.061231],[-67.329868,2.078331],[-67.336768,2.098131],[-67.336468,2.116731],[-67.339068,2.152131],[-67.340468,2.186731],[-67.343468,2.205531],[-67.364468,2.230331],[-67.389268,2.244031],[-67.406468,2.246231],[-67.410268,2.246731],[-67.430868,2.241731],[-67.438568,2.233231],[-67.442468,2.220131],[-67.448168,2.208131],[-67.462368,2.199131],[-67.479568,2.191131],[-67.500568,2.179031],[-67.521868,2.170331],[-67.540068,2.155931],[-67.550868,2.141731],[-67.555768,2.120931],[-67.557968,2.106031],[-67.572768,2.097931],[-67.586268,2.085531],[-67.590168,2.074531],[-67.597668,2.055931],[-67.607068,2.035531],[-67.619768,2.023731],[-67.642968,2.020331],[-67.671668,2.020331],[-67.697068,2.023531],[-67.725068,2.034131],[-67.749868,2.040131],[-67.768968,2.039331],[-67.779468,2.031131],[-67.798168,1.998131],[-67.808568,1.985331],[-67.818168,1.966931],[-67.832068,1.957231],[-67.835468,1.945531],[-67.851468,1.930331],[-67.859668,1.920331],[-67.882668,1.902931],[-67.902368,1.898531],[-67.912868,1.897931],[-67.910368,1.880631],[-67.906768,1.866131],[-67.911768,1.855931],[-67.922568,1.852331],[-67.924668,1.843531],[-67.930768,1.834931],[-67.941268,1.830731],[-67.961268,1.830531],[-67.973468,1.832931],[-67.983668,1.842331],[-68.004068,1.860331],[-68.024868,1.885531],[-68.043368,1.899731],[-68.053668,1.899431],[-68.065268,1.897931],[-68.079368,1.902531],[-68.087568,1.901331],[-68.094068,1.910231],[-68.103068,1.936231],[-68.114468,1.944231],[-68.119768,1.957731],[-68.122468,1.965831],[-68.129468,1.971631],[-68.133868,1.979531],[-68.140668,1.984931],[-68.150968,1.980931],[-68.158468,1.977731],[-68.166168,1.984631],[-68.182968,1.978931],[-68.188268,1.970931],[-68.198868,1.960831],[-68.208668,1.961731],[-68.218668,1.953531],[-68.223168,1.945631],[-68.235368,1.937931],[-68.243268,1.926831],[-68.245768,1.915531],[-68.247368,1.906331],[-68.249168,1.898531],[-68.250468,1.890031],[-68.253268,1.878731],[-68.259568,1.867631],[-68.263568,1.860731],[-68.263568,1.853131],[-68.266568,1.846131],[-68.266868,1.827231],[-68.257068,1.829331],[-68.244168,1.831331],[-68.233668,1.829931],[-68.235368,1.819131],[-68.239068,1.807131],[-68.244768,1.794931],[-68.240568,1.779331],[-68.236468,1.772531],[-68.228668,1.772731],[-68.220368,1.773331],[-68.208968,1.778331],[-68.202568,1.786331],[-68.187668,1.784731],[-68.176868,1.774131],[-68.169468,1.770731],[-68.175868,1.760931],[-68.179168,1.753731],[-68.159468,1.750131],[-68.157368,1.741931],[-68.156768,1.731731],[-68.164968,1.731731],[-68.697168,1.732131],[-69.000768,1.732131],[-69.178568,1.733531],[-69.357468,1.730331],[-69.384868,1.729631],[-69.393168,1.724131],[-69.393468,1.734631],[-69.401268,1.737931],[-69.413168,1.746531],[-69.418168,1.752331],[-69.426068,1.756931],[-69.434068,1.758131],[-69.441968,1.759731],[-69.451068,1.764331],[-69.457568,1.759231],[-69.468668,1.761931],[-69.474468,1.768631],[-69.478668,1.760031],[-69.486868,1.762131],[-69.487468,1.772231],[-69.495168,1.766931],[-69.503268,1.772131],[-69.512868,1.774431],[-69.520168,1.778931],[-69.536968,1.784931],[-69.552268,1.791731],[-69.561368,1.784331],[-69.567368,1.777331],[-69.575168,1.775831],[-69.582568,1.770331],[-69.592268,1.767731],[-69.603068,1.764331],[-69.620868,1.752531],[-69.628868,1.750631],[-69.630668,1.743331],[-69.636468,1.736831],[-69.645668,1.743531],[-69.657568,1.736831],[-69.669568,1.738531],[-69.681868,1.735731],[-69.683068,1.747031],[-69.691568,1.745531],[-69.700768,1.743931],[-69.711168,1.749531],[-69.717068,1.743731],[-69.728068,1.746931],[-69.741668,1.744531],[-69.752168,1.738931],[-69.757668,1.733531],[-69.768968,1.724331],[-69.777868,1.723531],[-69.785068,1.714931],[-69.785668,1.704931],[-69.795068,1.710131],[-69.805768,1.709731],[-69.821768,1.705031],[-69.830368,1.709431],[-69.826768,1.716331],[-69.842568,1.720931],[-69.844468,1.576931],[-69.845568,1.499731],[-69.844868,1.294131],[-69.844468,1.136331],[-69.844268,1.085531],[-69.835368,1.078331],[-69.830168,1.072131],[-69.812168,1.069231],[-69.801968,1.073731],[-69.795268,1.090231],[-69.784768,1.101531],[-69.766068,1.113231],[-69.754668,1.118731],[-69.740068,1.120731],[-69.730668,1.115931],[-69.721768,1.119831],[-69.710468,1.126531],[-69.706468,1.112531],[-69.709268,1.090231],[-69.706168,1.082231],[-69.698268,1.083631],[-69.684668,1.076431],[-69.671468,1.087731],[-69.660568,1.090831],[-69.649368,1.095531],[-69.640768,1.094931],[-69.631068,1.094931],[-69.621668,1.102431],[-69.606768,1.105331],[-69.594568,1.096531],[-69.587568,1.088531],[-69.566368,1.080731],[-69.556368,1.081731],[-69.542868,1.081331],[-69.532268,1.079731],[-69.521268,1.079731],[-69.509968,1.082231],[-69.493368,1.087931],[-69.483668,1.086731],[-69.472768,1.086531],[-69.457068,1.081931],[-69.447968,1.083631],[-69.437368,1.080731],[-69.439368,1.071731],[-69.435468,1.057631],[-69.416468,1.052531],[-69.404268,1.064131],[-69.395068,1.074931],[-69.385968,1.082731],[-69.379568,1.095231],[-69.367568,1.092731],[-69.361168,1.088031],[-69.348968,1.093731],[-69.331168,1.096331],[-69.321568,1.095731],[-69.308268,1.079131],[-69.306568,1.071331],[-69.295568,1.070331],[-69.289768,1.062531],[-69.277568,1.066931],[-69.265368,1.064231],[-69.253468,1.054831],[-69.246068,1.047731],[-69.236868,1.042131],[-69.225368,1.030231],[-69.213668,1.020831],[-69.205768,1.010031],[-69.203568,0.999731],[-69.220568,0.985131],[-69.211768,0.979931],[-69.206068,0.972331],[-69.194868,0.968531],[-69.183868,0.964431],[-69.173568,0.959931],[-69.163368,0.946131],[-69.171468,0.942331],[-69.185868,0.939231],[-69.190568,0.932631],[-69.189568,0.922531],[-69.184668,0.915531],[-69.185168,0.902931],[-69.171768,0.902731],[-69.162768,0.895831],[-69.154468,0.888131],[-69.143968,0.886331],[-69.135768,0.877331],[-69.136468,0.863731],[-69.142168,0.852331],[-69.154068,0.854331],[-69.166068,0.851931],[-69.165268,0.843031],[-69.165868,0.828531],[-69.159868,0.817531],[-69.151468,0.809831],[-69.150968,0.799931],[-69.146868,0.791531],[-69.145068,0.783031],[-69.152368,0.765331],[-69.160968,0.760331],[-69.172868,0.763131],[-69.177768,0.755631],[-69.187268,0.749331],[-69.186268,0.733231],[-69.180268,0.724531],[-69.166368,0.718831],[-69.153668,0.710131],[-69.144368,0.702531],[-69.136568,0.685731],[-69.132068,0.678731],[-69.127468,0.668231],[-69.120268,0.659531],[-69.115068,0.649931],[-69.116868,0.635531],[-69.127968,0.640331],[-69.133568,0.646331],[-69.145068,0.644931],[-69.156668,0.651331],[-69.170768,0.651631],[-69.180768,0.655931],[-69.193168,0.651531],[-69.195768,0.637331],[-69.201568,0.631531],[-69.200468,0.617331],[-69.203568,0.605331],[-69.208168,0.607531],[-69.212868,0.609631],[-69.226168,0.605731],[-69.238868,0.602431],[-69.244068,0.608731],[-69.254968,0.604531],[-69.265768,0.608231],[-69.276168,0.603131],[-69.285368,0.602131],[-69.298268,0.603531],[-69.293968,0.611131],[-69.285968,0.619731],[-69.292468,0.635331],[-69.287568,0.646531],[-69.301668,0.649331],[-69.311568,0.637531],[-69.325168,0.632831],[-69.340568,0.639331],[-69.341668,0.627531],[-69.352068,0.615331],[-69.358968,0.611831],[-69.368668,0.627531],[-69.382368,0.636431],[-69.391068,0.645831],[-69.400368,0.654931],[-69.408968,0.661031],[-69.409868,0.674731],[-69.420268,0.685331],[-69.428068,0.690931],[-69.436968,0.694231],[-69.437468,0.709731],[-69.446068,0.714331],[-69.459368,0.715731],[-69.462568,0.729131],[-69.469268,0.735331],[-69.481368,0.735731],[-69.497968,0.727931],[-69.505968,0.721331],[-69.510268,0.712531],[-69.519368,0.713531],[-69.527868,0.707731],[-69.534868,0.700031],[-69.532568,0.692331],[-69.533968,0.683731],[-69.539468,0.682131],[-69.543368,0.680931],[-69.555868,0.683131],[-69.566368,0.684131],[-69.566668,0.672531],[-69.579868,0.666531],[-69.590968,0.659131],[-69.591168,0.647931],[-69.594768,0.638931],[-69.605668,0.638931],[-69.606768,0.629231],[-69.618668,0.629531],[-69.626868,0.636431],[-69.634568,0.636431],[-69.640168,0.646731],[-69.643968,0.653531],[-69.647968,0.660931],[-69.656268,0.666031],[-69.666668,0.666831],[-69.679768,0.670731],[-69.690768,0.665531],[-69.691668,0.653531],[-69.699568,0.652931],[-69.711168,0.648031],[-69.717968,0.643131],[-69.720068,0.632831],[-69.721668,0.626131],[-69.725268,0.616931],[-69.740068,0.614931],[-69.750168,0.622031],[-69.764068,0.605531],[-69.775068,0.601731],[-69.785968,0.595731],[-69.792068,0.585831],[-69.800068,0.580731],[-69.809368,0.572331],[-69.813068,0.582931],[-69.819668,0.586131],[-69.831568,0.590131],[-69.837668,0.583531],[-69.847868,0.586931],[-69.860368,0.579931],[-69.870168,0.579931],[-69.887368,0.575031],[-69.895368,0.583131],[-69.906668,0.581331],[-69.914768,0.585331],[-69.925568,0.564831],[-69.932468,0.560131],[-69.942368,0.554331],[-69.955668,0.556731],[-69.966168,0.561231],[-69.971368,0.570931],[-69.987268,0.571331],[-69.999068,0.570331],[-69.991368,0.561131],[-69.995168,0.547731],[-70.004168,0.540931],[-70.015968,0.539331],[-70.022968,0.543531],[-70.026468,0.557931],[-70.035568,0.561531],[-70.043568,0.558931],[-70.043968,0.550431],[-70.044468,0.457231],[-70.045668,0.247531],[-70.046368,0.109131],[-70.046368,0.068331],[-70.046468,-0.000469],[-70.045868,-0.009869],[-70.046368,-0.020969],[-70.045068,-0.030869],[-70.043668,-0.105269],[-70.041368,-0.113869],[-70.041668,-0.124069],[-70.045668,-0.137069],[-70.048668,-0.145669],[-70.058068,-0.158369],[-70.057968,-0.169269],[-70.057268,-0.186669],[-70.051968,-0.192969],[-70.043568,-0.197369],[-70.037568,-0.203969],[-70.030168,-0.209069],[-70.020168,-0.218169],[-70.006068,-0.225369],[-69.996968,-0.234669],[-69.990268,-0.251669],[-69.981368,-0.258569],[-69.975368,-0.269769],[-69.963768,-0.284869],[-69.953568,-0.292169],[-69.948268,-0.301469],[-69.937168,-0.306169],[-69.934068,-0.316569],[-69.929368,-0.323469],[-69.923068,-0.331469],[-69.915568,-0.335969],[-69.907568,-0.342369],[-69.900168,-0.346369],[-69.892468,-0.349169],[-69.883468,-0.344269],[-69.874368,-0.346769],[-69.861968,-0.348169],[-69.854268,-0.346369],[-69.844868,-0.345869],[-69.837868,-0.354269],[-69.835968,-0.361669],[-69.832268,-0.368369],[-69.823468,-0.380969],[-69.813868,-0.381269],[-69.805868,-0.387369],[-69.793968,-0.391569],[-69.791968,-0.400169],[-69.783468,-0.401569],[-69.775368,-0.400169],[-69.769268,-0.407369],[-69.762068,-0.410669],[-69.755468,-0.421069],[-69.749668,-0.427169],[-69.742468,-0.429769],[-69.739168,-0.440469],[-69.733268,-0.446269],[-69.725968,-0.448569],[-69.717668,-0.455069],[-69.708968,-0.457569],[-69.699068,-0.458769],[-69.691068,-0.462369],[-69.686268,-0.468969],[-69.678268,-0.469769],[-69.670368,-0.471669],[-69.663168,-0.474269],[-69.652968,-0.480569],[-69.645068,-0.482869],[-69.646168,-0.491569],[-69.643768,-0.499469],[-69.633268,-0.498369],[-69.622368,-0.501669],[-69.615468,-0.506269],[-69.611068,-0.513469],[-69.611968,-0.521769],[-69.614668,-0.529069],[-69.614668,-0.540269],[-69.606368,-0.544969],[-69.603468,-0.553669],[-69.596168,-0.559469],[-69.593468,-0.568569],[-69.596468,-0.577369],[-69.598168,-0.589069],[-69.604968,-0.599969],[-69.594768,-0.606369],[-69.590468,-0.613269],[-69.588168,-0.622669],[-69.580068,-0.620169],[-69.573268,-0.626069],[-69.575168,-0.636769],[-69.564168,-0.639669],[-69.573768,-0.649769],[-69.575768,-0.658369],[-69.582068,-0.666769],[-69.584768,-0.674769],[-69.585168,-0.684369],[-69.593668,-0.692769],[-69.598468,-0.699669],[-69.602368,-0.706869],[-69.605268,-0.713969],[-69.603868,-0.721669],[-69.611968,-0.723669],[-69.622668,-0.732069],[-69.618068,-0.740869],[-69.626368,-0.749669],[-69.616568,-0.750469],[-69.619768,-0.759169],[-69.609968,-0.761569],[-69.611968,-0.770169],[-69.603068,-0.778769],[-69.595068,-0.787069],[-69.588368,-0.790869],[-69.583768,-0.801569],[-69.574268,-0.801069],[-69.568768,-0.806869],[-69.563068,-0.812269],[-69.559468,-0.822869],[-69.566268,-0.833269],[-69.573568,-0.842269],[-69.561568,-0.848669],[-69.555068,-0.855269],[-69.548068,-0.860869],[-69.538468,-0.861969],[-69.534568,-0.870469],[-69.527868,-0.878269],[-69.523168,-0.886269],[-69.525868,-0.911969],[-69.527368,-0.921869],[-69.523468,-0.929669],[-69.516468,-0.933569],[-69.507968,-0.932969],[-69.502168,-0.942469],[-69.492968,-0.948869],[-69.484968,-0.950669],[-69.478668,-0.957269],[-69.470868,-0.960469],[-69.463468,-0.967269],[-69.462668,-0.976469],[-69.464068,-0.984169],[-69.456268,-0.993269],[-69.449968,-0.998269],[-69.440968,-0.994669],[-69.430268,-0.997669],[-69.421468,-1.000469],[-69.421068,-1.012169],[-69.428368,-1.015669],[-69.436568,-1.026869],[-69.444068,-1.027869],[-69.443468,-1.036669],[-69.433368,-1.039769],[-69.424268,-1.049469],[-69.423968,-1.058869],[-69.428368,-1.072969],[-69.427468,-1.075769],[-69.424968,-1.083569],[-69.410868,-1.101969],[-69.400868,-1.113869],[-69.396768,-1.123369],[-69.395668,-1.132669],[-69.398368,-1.144369],[-69.405868,-1.149469],[-69.413168,-1.157669],[-69.414468,-1.174169],[-69.414168,-1.186669],[-69.419168,-1.198769],[-69.425768,-1.210669],[-69.430268,-1.224569],[-69.431168,-1.232869],[-69.430768,-1.241869],[-69.425468,-1.257169],[-69.418568,-1.266769],[-69.416968,-1.269769],[-69.413868,-1.276169],[-69.411368,-1.281269],[-69.408468,-1.293169],[-69.408368,-1.306869],[-69.409568,-1.324669],[-69.409468,-1.333769],[-69.404568,-1.344469],[-69.399868,-1.353869],[-69.399868,-1.367569],[-69.399868,-1.370769],[-69.409868,-1.373369],[-69.418168,-1.378069],[-69.422468,-1.380669],[-69.429168,-1.386869],[-69.434468,-1.398269],[-69.436968,-1.417469],[-69.436568,-1.429769],[-69.435168,-1.446269],[-69.435268,-1.457869],[-69.440968,-1.470969],[-69.450268,-1.478969],[-69.457568,-1.493369],[-69.456468,-1.508569],[-69.453568,-1.521769],[-69.453268,-1.531269],[-69.485568,-1.720569],[-69.516768,-1.899769],[-69.534468,-2.000469],[-69.613368,-2.440169],[-69.620868,-2.482869],[-69.689468,-2.871569],[-69.690268,-2.876269],[-69.699268,-2.926969],[-69.700368,-2.933069],[-69.712268,-3.000569],[-69.742468,-3.165869],[-69.798668,-3.474269],[-69.799368,-3.477869],[-69.799968,-3.480669],[-69.800468,-3.483669],[-69.825368,-3.619769],[-69.837568,-3.686569],[-69.858568,-3.803569],[-69.883468,-3.941969],[-69.893968,-4.000569],[-69.912268,-4.096669],[-69.921368,-4.143969],[-69.931568,-4.197869],[-69.933268,-4.206869],[-69.935168,-4.216469],[-69.943468,-4.216569],[-69.946268,-4.220269],[-69.951068,-4.227369],[-69.952068,-4.233869],[-69.952668,-4.238569],[-69.952968,-4.243069],[-69.953268,-4.246569],[-69.953768,-4.253369],[-69.954668,-4.266269],[-69.957568,-4.284169],[-69.963768,-4.300569],[-69.968668,-4.310169],[-69.975268,-4.320469],[-69.980868,-4.327369],[-69.985268,-4.328269],[-69.989668,-4.329369],[-70.001668,-4.332169],[-70.011368,-4.336569],[-70.019068,-4.345569],[-70.025868,-4.349869],[-70.032768,-4.355069],[-70.039568,-4.353369],[-70.043668,-4.352269],[-70.044468,-4.342869],[-70.050068,-4.334569],[-70.063468,-4.329869],[-70.072768,-4.329369],[-70.079268,-4.324869],[-70.081268,-4.308369],[-70.071368,-4.296869],[-70.081568,-4.291969],[-70.097568,-4.296469],[-70.103168,-4.288469],[-70.103668,-4.276169],[-70.107768,-4.264369],[-70.113568,-4.271169],[-70.112768,-4.283169],[-70.119468,-4.290269],[-70.128768,-4.293669],[-70.136868,-4.287069],[-70.144268,-4.282769],[-70.151768,-4.280169],[-70.155068,-4.282269],[-70.158168,-4.284469],[-70.161368,-4.296469],[-70.167468,-4.305869],[-70.168068,-4.314669],[-70.159768,-4.319869],[-70.152268,-4.325669],[-70.152368,-4.335469],[-70.160568,-4.339769],[-70.170068,-4.340869],[-70.178268,-4.347069],[-70.180468,-4.357869],[-70.186868,-4.364769],[-70.190168,-4.363269],[-70.195168,-4.363669],[-70.198168,-4.366069],[-70.205668,-4.361069],[-70.206468,-4.353069],[-70.206768,-4.348969],[-70.208968,-4.339469],[-70.208968,-4.328169],[-70.212668,-4.323569],[-70.216468,-4.319069],[-70.222368,-4.324269],[-70.234168,-4.323169],[-70.244068,-4.319869],[-70.255468,-4.318469],[-70.266768,-4.311969],[-70.272668,-4.301069],[-70.265368,-4.297469],[-70.257068,-4.296069],[-70.250268,-4.287069],[-70.255568,-4.277669],[-70.262868,-4.281769],[-70.272668,-4.288469],[-70.279468,-4.292469],[-70.286668,-4.295269],[-70.298268,-4.290669],[-70.289568,-4.282269],[-70.295768,-4.275869],[-70.307168,-4.269369],[-70.315968,-4.259569],[-70.312768,-4.250269],[-70.301368,-4.244769],[-70.290368,-4.241169],[-70.284868,-4.233869],[-70.290668,-4.213469],[-70.295068,-4.200469],[-70.292568,-4.184769],[-70.292268,-4.176469],[-70.298868,-4.166069],[-70.312468,-4.162769],[-70.318868,-4.156769],[-70.325968,-4.146269],[-70.331768,-4.156269],[-70.329668,-4.168069],[-70.332568,-4.178369],[-70.340868,-4.186869],[-70.351368,-4.180769],[-70.361168,-4.169469],[-70.366568,-4.160969],[-70.369168,-4.152569],[-70.375768,-4.141769],[-70.387068,-4.137669],[-70.396268,-4.142169],[-70.419168,-4.140369],[-70.430568,-4.134969],[-70.439468,-4.134069],[-70.446668,-4.141869],[-70.440568,-4.150369],[-70.437368,-4.158469],[-70.443568,-4.165269],[-70.452168,-4.162769],[-70.460668,-4.162769],[-70.463468,-4.173069],[-70.473368,-4.177269],[-70.480268,-4.171969],[-70.487568,-4.161769],[-70.495168,-4.166369],[-70.500468,-4.187669],[-70.503468,-4.197069],[-70.515168,-4.196269],[-70.521468,-4.190769],[-70.515368,-4.178869],[-70.509368,-4.163469],[-70.515768,-4.149769],[-70.520768,-4.142669],[-70.535068,-4.139269],[-70.549268,-4.137169],[-70.546168,-4.150069],[-70.553868,-4.158069],[-70.561568,-4.161469],[-70.565268,-4.168969],[-70.579668,-4.173069],[-70.586568,-4.178869],[-70.593368,-4.182669],[-70.604668,-4.187769],[-70.615068,-4.191369],[-70.624868,-4.192769],[-70.632768,-4.187669],[-70.638768,-4.179669],[-70.638868,-4.166169],[-70.635468,-4.159469],[-70.631368,-4.152869],[-70.626068,-4.143169],[-70.623868,-4.131769],[-70.631568,-4.126669],[-70.640668,-4.127669],[-70.653468,-4.127169],[-70.655468,-4.137369],[-70.654768,-4.148669],[-70.655668,-4.166969],[-70.663368,-4.158669],[-70.665668,-4.146569],[-70.675268,-4.145069],[-70.672768,-4.166969],[-70.674968,-4.178369],[-70.676168,-4.190169],[-70.680868,-4.199669],[-70.686668,-4.199569],[-70.692668,-4.199069],[-70.700968,-4.188369],[-70.710068,-4.188769],[-70.719868,-4.187969],[-70.729968,-4.184369],[-70.737168,-4.178669],[-70.748368,-4.165269],[-70.758868,-4.159869],[-70.767868,-4.161169],[-70.775868,-4.166669],[-70.791468,-4.186069],[-70.808068,-4.183369],[-70.812768,-4.196369],[-70.825668,-4.202969],[-70.830168,-4.218769],[-70.820268,-4.232169],[-70.830468,-4.240069],[-70.832868,-4.250169],[-70.844068,-4.253869],[-70.856368,-4.247669],[-70.868568,-4.250569],[-70.865868,-4.259969],[-70.859668,-4.269369],[-70.849868,-4.278669],[-70.858668,-4.283669],[-70.872668,-4.289169],[-70.879368,-4.292569],[-70.883468,-4.300769],[-70.882968,-4.309069],[-70.879968,-4.322669],[-70.889568,-4.325469],[-70.899868,-4.324569],[-70.908768,-4.333169],[-70.913068,-4.345269],[-70.915568,-4.353969],[-70.925068,-4.361869],[-70.931868,-4.356469],[-70.937168,-4.363669],[-70.936868,-4.375169],[-70.943068,-4.385969],[-70.949268,-4.379469],[-70.962568,-4.379069],[-70.973068,-4.375569],[-70.976468,-4.362869],[-70.984768,-4.352369],[-70.996868,-4.345169],[-70.999968,-4.354469],[-70.989468,-4.361969],[-70.988368,-4.369669],[-70.995768,-4.384569],[-71.007468,-4.387669],[-71.016268,-4.383769],[-71.023968,-4.384869],[-71.030868,-4.397069],[-71.043168,-4.400969],[-71.050468,-4.395669],[-71.047768,-4.383769],[-71.048068,-4.374969],[-71.057168,-4.373269],[-71.058568,-4.386569],[-71.079568,-4.396269],[-71.086168,-4.389969],[-71.079668,-4.379869],[-71.088668,-4.375569],[-71.100568,-4.377369],[-71.110868,-4.384169],[-71.109368,-4.401269],[-71.117668,-4.410569],[-71.126868,-4.402069],[-71.130968,-4.392869],[-71.137868,-4.386569],[-71.153768,-4.383069],[-71.153368,-4.392069],[-71.150368,-4.399869],[-71.160268,-4.406169],[-71.160568,-4.395069],[-71.167168,-4.390469],[-71.172868,-4.395669],[-71.184768,-4.392669],[-71.189168,-4.399069],[-71.188768,-4.414569],[-71.193468,-4.421369],[-71.201368,-4.426069],[-71.205368,-4.413769],[-71.208968,-4.400369],[-71.202168,-4.388969],[-71.207068,-4.379869],[-71.217068,-4.379969],[-71.219768,-4.387369],[-71.220668,-4.405569],[-71.230568,-4.407769],[-71.229168,-4.397369],[-71.228868,-4.387669],[-71.239068,-4.387069],[-71.251268,-4.391269],[-71.258768,-4.387969],[-71.268968,-4.386269],[-71.278068,-4.387969],[-71.271568,-4.396869],[-71.269868,-4.416069],[-71.266568,-4.428669],[-71.272368,-4.434469],[-71.285968,-4.442969],[-71.298268,-4.437469],[-71.301868,-4.430569],[-71.310268,-4.417769],[-71.323968,-4.421469],[-71.318168,-4.432969],[-71.307468,-4.440269],[-71.303268,-4.451769],[-71.314568,-4.458469],[-71.313868,-4.449069],[-71.319968,-4.444569],[-71.327568,-4.442769],[-71.336168,-4.442169],[-71.345368,-4.444669],[-71.347068,-4.434369],[-71.353868,-4.427969],[-71.359468,-4.433669],[-71.369968,-4.435769],[-71.376268,-4.431169],[-71.388568,-4.428069],[-71.396268,-4.432669],[-71.402268,-4.438069],[-71.406268,-4.448169],[-71.409768,-4.451869],[-71.415668,-4.458469],[-71.417768,-4.466169],[-71.430768,-4.466669],[-71.436868,-4.460469],[-71.437368,-4.451269],[-71.449868,-4.451769],[-71.459868,-4.439369],[-71.473168,-4.439569],[-71.481368,-4.443069],[-71.480368,-4.455069],[-71.489368,-4.459869],[-71.497968,-4.449569],[-71.509368,-4.448269],[-71.509568,-4.457269],[-71.507168,-4.465469],[-71.498768,-4.471669],[-71.494668,-4.478569],[-71.494768,-4.487469],[-71.502668,-4.486869],[-71.510368,-4.477869],[-71.521568,-4.468669],[-71.537468,-4.467269],[-71.542168,-4.473869],[-71.541768,-4.484269],[-71.554468,-4.481069],[-71.564068,-4.496069],[-71.569568,-4.507169],[-71.582668,-4.520169],[-71.598368,-4.531569],[-71.605268,-4.533969],[-71.613068,-4.533369],[-71.614168,-4.530369],[-71.616968,-4.528769],[-71.619768,-4.527569],[-71.623268,-4.527869],[-71.625968,-4.525969],[-71.634168,-4.519069],[-71.634268,-4.510969],[-71.624168,-4.507069],[-71.618668,-4.494669],[-71.615768,-4.486769],[-71.614168,-4.479269],[-71.619368,-4.470269],[-71.626568,-4.474969],[-71.630268,-4.482869],[-71.626968,-4.491169],[-71.637668,-4.497169],[-71.644368,-4.503769],[-71.653768,-4.508169],[-71.654868,-4.495469],[-71.663668,-4.504969],[-71.671168,-4.509669],[-71.679668,-4.504369],[-71.689968,-4.502069],[-71.698568,-4.506769],[-71.704268,-4.512969],[-71.714868,-4.512169],[-71.721968,-4.506569],[-71.728368,-4.498869],[-71.739468,-4.497369],[-71.741068,-4.485369],[-71.748368,-4.472569],[-71.755168,-4.477269],[-71.749868,-4.486769],[-71.751868,-4.495269],[-71.761068,-4.503569],[-71.772368,-4.504969],[-71.771568,-4.495269],[-71.776968,-4.487469],[-71.788868,-4.491169],[-71.800468,-4.490869],[-71.811068,-4.497669],[-71.825368,-4.499469],[-71.838968,-4.505269],[-71.847668,-4.509669],[-71.856368,-4.513169],[-71.860368,-4.520669],[-71.868268,-4.526769],[-71.875268,-4.519269],[-71.882768,-4.516069],[-71.889068,-4.521569],[-71.885368,-4.533769],[-71.893568,-4.538169],[-71.903968,-4.528169],[-71.902568,-4.543869],[-71.910268,-4.548869],[-71.910968,-4.539269],[-71.919968,-4.540969],[-71.926968,-4.545069],[-71.921668,-4.554769],[-71.923168,-4.562469],[-71.932168,-4.561569],[-71.930068,-4.571269],[-71.936368,-4.576869],[-71.946268,-4.575769],[-71.947068,-4.584669],[-71.941668,-4.593369],[-71.949868,-4.597669],[-71.945268,-4.604969],[-71.962268,-4.608069],[-71.969568,-4.605269],[-71.976768,-4.608069],[-71.981768,-4.617469],[-71.984468,-4.625469],[-71.993068,-4.623869],[-72.000568,-4.625869],[-72.005168,-4.632169],[-72.005968,-4.641569],[-72.013568,-4.638169],[-72.018268,-4.631369],[-72.026768,-4.628469],[-72.039268,-4.623269],[-72.037568,-4.637369],[-72.042868,-4.644069],[-72.045268,-4.651569],[-72.053368,-4.651569],[-72.062668,-4.653469],[-72.082068,-4.672769],[-72.076868,-4.679469],[-72.090968,-4.688769],[-72.096668,-4.694969],[-72.100268,-4.703169],[-72.107468,-4.706869],[-72.115768,-4.713769],[-72.127068,-4.723369],[-72.133868,-4.717669],[-72.141068,-4.713669],[-72.145768,-4.721469],[-72.152268,-4.726169],[-72.160368,-4.727869],[-72.161368,-4.736469],[-72.169468,-4.734969],[-72.184668,-4.744069],[-72.192768,-4.746569],[-72.187968,-4.754069],[-72.192368,-4.762069],[-72.200968,-4.757369],[-72.206168,-4.751269],[-72.214568,-4.756869],[-72.216468,-4.767869],[-72.224868,-4.772269],[-72.231368,-4.776769],[-72.239968,-4.778669],[-72.247168,-4.780869],[-72.249468,-4.772969],[-72.254068,-4.765369],[-72.260168,-4.772669],[-72.263168,-4.781269],[-72.271568,-4.795869],[-72.280168,-4.798669],[-72.283068,-4.790569],[-72.277568,-4.783669],[-72.291768,-4.779269],[-72.299668,-4.776169],[-72.308368,-4.783469],[-72.320668,-4.777669],[-72.327668,-4.781169],[-72.323568,-4.787769],[-72.324068,-4.796869],[-72.336868,-4.797269],[-72.347768,-4.806169],[-72.356668,-4.805269],[-72.371568,-4.807269],[-72.376268,-4.827569],[-72.383468,-4.831269],[-72.381368,-4.844169],[-72.384868,-4.850969],[-72.383568,-4.862169],[-72.385668,-4.872169],[-72.399068,-4.875169],[-72.404168,-4.881069],[-72.412368,-4.884869],[-72.418668,-4.878069],[-72.427168,-4.881069],[-72.420368,-4.887669],[-72.419768,-4.897869],[-72.430268,-4.902669],[-72.433268,-4.911269],[-72.440768,-4.909769],[-72.444268,-4.901469],[-72.452068,-4.903669],[-72.455068,-4.895669],[-72.464068,-4.896469],[-72.468768,-4.903469],[-72.463968,-4.909869],[-72.457868,-4.915269],[-72.458168,-4.925469],[-72.468068,-4.925569],[-72.476668,-4.929369],[-72.476668,-4.938069],[-72.475968,-4.945769],[-72.481668,-4.953469],[-72.488668,-4.950469],[-72.485068,-4.942669],[-72.490568,-4.936869],[-72.495468,-4.944069],[-72.498068,-4.953869],[-72.508568,-4.950669],[-72.505668,-4.942069],[-72.512468,-4.938769],[-72.521768,-4.936869],[-72.523668,-4.945769],[-72.528068,-4.958169],[-72.539168,-4.961569],[-72.547568,-4.958469],[-72.553868,-4.963269],[-72.557968,-4.970169],[-72.564868,-4.974569],[-72.569568,-4.981469],[-72.577368,-4.985269],[-72.586468,-4.985269],[-72.592568,-4.991569],[-72.606668,-4.995569],[-72.602268,-5.002769],[-72.603068,-5.010969],[-72.609468,-5.016569],[-72.611068,-5.037069],[-72.622268,-5.045369],[-72.629468,-5.051969],[-72.639668,-5.058069],[-72.641468,-5.050069],[-72.648668,-5.054169],[-72.652568,-5.063769],[-72.667868,-5.055169],[-72.673168,-5.054969],[-72.678368,-5.054769],[-72.692068,-5.064569],[-72.699968,-5.059369],[-72.707568,-5.052869],[-72.712368,-5.058869],[-72.720868,-5.059069],[-72.725668,-5.065469],[-72.734268,-5.064069],[-72.735768,-5.072169],[-72.730268,-5.077969],[-72.736868,-5.082669],[-72.739168,-5.091469],[-72.753568,-5.082669],[-72.757968,-5.090669],[-72.760268,-5.098069],[-72.766068,-5.103669],[-72.774068,-5.098869],[-72.780368,-5.103369],[-72.782768,-5.112469],[-72.790968,-5.112569],[-72.798568,-5.115069],[-72.814568,-5.109669],[-72.815768,-5.134569],[-72.815968,-5.138469],[-72.822168,-5.142069],[-72.828268,-5.145469],[-72.835468,-5.148369],[-72.843468,-5.149869],[-72.847568,-5.142569],[-72.856168,-5.143469],[-72.862168,-5.148369],[-72.865068,-5.155669],[-72.872968,-5.155969],[-72.877168,-5.162469],[-72.884968,-5.166769],[-72.884368,-5.174669],[-72.877368,-5.177469],[-72.877068,-5.185569],[-72.868868,-5.199869],[-72.873768,-5.206569],[-72.865768,-5.209769],[-72.863668,-5.217069],[-72.865068,-5.225369],[-72.866968,-5.232869],[-72.863568,-5.239769],[-72.871668,-5.253069],[-72.869068,-5.266369],[-72.864968,-5.272169],[-72.865568,-5.276969],[-72.866668,-5.280169],[-72.868868,-5.289169],[-72.875568,-5.293369],[-72.870068,-5.299369],[-72.879868,-5.310769],[-72.888168,-5.313869],[-72.886068,-5.322669],[-72.890368,-5.330769],[-72.898668,-5.336969],[-72.898668,-5.346169],[-72.903668,-5.353169],[-72.909268,-5.366069],[-72.906968,-5.375169],[-72.914568,-5.377969],[-72.920668,-5.382369],[-72.920368,-5.390169],[-72.923668,-5.397869],[-72.929068,-5.405369],[-72.929368,-5.413069],[-72.935868,-5.418669],[-72.935868,-5.426169],[-72.940168,-5.434169],[-72.942468,-5.441369],[-72.950968,-5.444669],[-72.948468,-5.451769],[-72.951068,-5.459369],[-72.956868,-5.465369],[-72.959068,-5.482769],[-72.957968,-5.491969],[-72.963668,-5.498069],[-72.962868,-5.506369],[-72.959668,-5.514669],[-72.960468,-5.523469],[-72.956168,-5.532269],[-72.953768,-5.540069],[-72.957168,-5.556669],[-72.954568,-5.561369],[-72.951868,-5.566269],[-72.958468,-5.570769],[-72.955668,-5.577969],[-72.950968,-5.584269],[-72.958468,-5.588169],[-72.966268,-5.593169],[-72.969568,-5.601169],[-72.973168,-5.608069],[-72.974168,-5.615869],[-72.974468,-5.624069],[-72.967268,-5.629569],[-72.967368,-5.637069],[-72.965968,-5.645369],[-72.961768,-5.654569],[-72.965168,-5.661669],[-72.971668,-5.657269],[-72.978568,-5.660569],[-72.986168,-5.662269],[-72.990268,-5.669269],[-72.988268,-5.673269],[-72.986368,-5.678369],[-72.987268,-5.681869],[-72.988268,-5.685769],[-72.984968,-5.694269],[-72.992668,-5.695769],[-72.992168,-5.703769],[-73.003868,-5.708169],[-72.998768,-5.714769],[-73.002768,-5.721369],[-73.010468,-5.724469],[-73.021568,-5.731769],[-73.020668,-5.739469],[-73.026968,-5.745269],[-73.034768,-5.750569],[-73.042468,-5.749069],[-73.047468,-5.756069],[-73.049668,-5.765969],[-73.055868,-5.771769],[-73.053668,-5.780569],[-73.055468,-5.789169],[-73.064068,-5.789269],[-73.079268,-5.805869],[-73.095568,-5.813269],[-73.093468,-5.821669],[-73.101368,-5.821769],[-73.110268,-5.824269],[-73.116968,-5.828569],[-73.117468,-5.837669],[-73.116368,-5.845869],[-73.114668,-5.853669],[-73.126568,-5.855069],[-73.137468,-5.858569],[-73.143168,-5.863569],[-73.150968,-5.863369],[-73.156968,-5.869369],[-73.160968,-5.876569],[-73.155868,-5.882469],[-73.169968,-5.892669],[-73.169968,-5.900669],[-73.168168,-5.909269],[-73.174168,-5.915569],[-73.173668,-5.923869],[-73.181568,-5.922869],[-73.182968,-5.932569],[-73.187768,-5.938769],[-73.185768,-5.946869],[-73.186568,-5.955669],[-73.181668,-5.962669],[-73.184068,-5.970269],[-73.194068,-5.984269],[-73.192168,-5.991669],[-73.189068,-5.999169],[-73.202568,-6.005269],[-73.210168,-6.004969],[-73.216168,-6.011769],[-73.217868,-6.019769],[-73.224768,-6.024269],[-73.229968,-6.030669],[-73.237468,-6.032069],[-73.237768,-6.044769],[-73.234668,-6.055169],[-73.233868,-6.063869],[-73.231668,-6.073469],[-73.239668,-6.079569],[-73.235068,-6.085769],[-73.241068,-6.091769],[-73.245468,-6.099469],[-73.250768,-6.104969],[-73.250168,-6.112469],[-73.252668,-6.129869],[-73.249368,-6.137069],[-73.250168,-6.144869],[-73.245468,-6.152069],[-73.240568,-6.158169],[-73.232568,-6.163369],[-73.226668,-6.171369],[-73.220568,-6.178569],[-73.218168,-6.186669],[-73.216968,-6.203269],[-73.220368,-6.212269],[-73.219168,-6.221669],[-73.209068,-6.226469],[-73.204868,-6.233269],[-73.197668,-6.239669],[-73.196268,-6.247169],[-73.192768,-6.256269],[-73.185168,-6.257069],[-73.178368,-6.262369],[-73.172868,-6.268669],[-73.165368,-6.274069],[-73.161968,-6.283069],[-73.166068,-6.290569],[-73.161468,-6.298969],[-73.160368,-6.307969],[-73.160968,-6.317969],[-73.158168,-6.327169],[-73.150968,-6.321669],[-73.148168,-6.329869],[-73.146768,-6.339469],[-73.147168,-6.348369],[-73.145468,-6.356169],[-73.139268,-6.363069],[-73.137768,-6.371869],[-73.133868,-6.378869],[-73.133468,-6.387369],[-73.125268,-6.389669],[-73.116968,-6.394869],[-73.112468,-6.400869],[-73.108868,-6.410169],[-73.110868,-6.419969],[-73.119368,-6.423869],[-73.122468,-6.431869],[-73.118068,-6.439869],[-73.117768,-6.449869],[-73.123568,-6.454669],[-73.123768,-6.463269],[-73.132168,-6.468169],[-73.134068,-6.477269],[-73.139268,-6.483869],[-73.141768,-6.491169],[-73.138468,-6.497969],[-73.142568,-6.506269],[-73.149068,-6.511069],[-73.153368,-6.520069],[-73.159268,-6.524769],[-73.166768,-6.525969],[-73.172568,-6.518169],[-73.184168,-6.527569],[-73.182468,-6.539969],[-73.190168,-6.545269],[-73.198168,-6.544469],[-73.198168,-6.553969],[-73.205168,-6.556869],[-73.200368,-6.564669],[-73.205668,-6.572769],[-73.212868,-6.577869],[-73.219568,-6.573169],[-73.221968,-6.564669],[-73.230068,-6.570469],[-73.233168,-6.577869],[-73.246968,-6.584269],[-73.255668,-6.582669],[-73.262968,-6.586569],[-73.272268,-6.586769],[-73.280368,-6.585369],[-73.288068,-6.587369],[-73.293368,-6.592669],[-73.301568,-6.594769],[-73.310768,-6.592569],[-73.318168,-6.594169],[-73.325768,-6.594269],[-73.331768,-6.599869],[-73.337568,-6.593069],[-73.345968,-6.595169],[-73.354468,-6.594869],[-73.359768,-6.602469],[-73.367268,-6.608069],[-73.374668,-6.611069],[-73.379168,-6.617269],[-73.380768,-6.625169],[-73.380668,-6.634969],[-73.387968,-6.637869],[-73.405068,-6.642869],[-73.412768,-6.642069],[-73.419668,-6.647369],[-73.428268,-6.652269],[-73.436968,-6.650969],[-73.444068,-6.657269],[-73.451468,-6.660969],[-73.458668,-6.665569],[-73.467068,-6.666769],[-73.475968,-6.665269],[-73.482468,-6.671069],[-73.490568,-6.672769],[-73.498268,-6.671869],[-73.506768,-6.674669],[-73.516468,-6.677269],[-73.522568,-6.682469],[-73.529068,-6.686369],[-73.536168,-6.693169],[-73.542468,-6.701069],[-73.550368,-6.706569],[-73.555568,-6.713969],[-73.559668,-6.720869],[-73.576468,-6.726469],[-73.584368,-6.724569],[-73.592568,-6.729969],[-73.601468,-6.733569],[-73.606968,-6.739069],[-73.615768,-6.741169],[-73.621268,-6.746969],[-73.628068,-6.752169],[-73.634868,-6.756369],[-73.642868,-6.762069],[-73.645168,-6.770469],[-73.648468,-6.778169],[-73.653768,-6.784169],[-73.658468,-6.792769],[-73.663168,-6.798969],[-73.666768,-6.806369],[-73.675068,-6.810869],[-73.681568,-6.817969],[-73.685168,-6.826769],[-73.690468,-6.834269],[-73.697368,-6.839369],[-73.707168,-6.839569],[-73.710768,-6.854469],[-73.711468,-6.862569],[-73.716968,-6.870469],[-73.721968,-6.889569],[-73.735368,-6.902269],[-73.741468,-6.909469],[-73.743368,-6.916769],[-73.747268,-6.926069],[-73.752768,-6.932969],[-73.754568,-6.941869],[-73.750568,-6.950669],[-73.746068,-6.958169],[-73.742768,-6.965169],[-73.740868,-6.974869],[-73.738368,-6.982069],[-73.737568,-6.991369],[-73.738568,-6.999369],[-73.729968,-7.006769],[-73.727468,-7.014569],[-73.726768,-7.022569],[-73.733568,-7.036669],[-73.738668,-7.045269],[-73.746368,-7.051069],[-73.763168,-7.071369],[-73.770068,-7.078569],[-73.774268,-7.085169],[-73.782368,-7.089869],[-73.788468,-7.098069],[-73.796668,-7.103169],[-73.801568,-7.112169],[-73.796668,-7.119369],[-73.791768,-7.125169],[-73.793568,-7.131369],[-73.785368,-7.141269],[-73.781968,-7.142169],[-73.777568,-7.145469],[-73.777268,-7.150769],[-73.775168,-7.156169],[-73.765968,-7.163069],[-73.759368,-7.173969],[-73.756568,-7.190969],[-73.755168,-7.197869],[-73.753268,-7.200969],[-73.748368,-7.206769],[-73.744668,-7.210069],[-73.732268,-7.215369],[-73.723868,-7.220869],[-73.713268,-7.234969],[-73.714768,-7.241669],[-73.715168,-7.247969],[-73.715868,-7.257469],[-73.715668,-7.267169],[-73.710868,-7.277369],[-73.703568,-7.285669],[-73.700668,-7.290569],[-73.698868,-7.295669],[-73.699868,-7.303869],[-73.703768,-7.309869],[-73.708968,-7.315469],[-73.711868,-7.321669],[-73.718368,-7.328869],[-73.728668,-7.335169],[-73.746868,-7.343669],[-73.755268,-7.346469],[-73.763868,-7.347369],[-73.759868,-7.340969],[-73.759968,-7.333769],[-73.765768,-7.331469],[-73.769568,-7.331469],[-73.779468,-7.335469],[-73.786768,-7.340069],[-73.794168,-7.343769],[-73.798668,-7.341169],[-73.807968,-7.336969],[-73.817068,-7.335069],[-73.823168,-7.335069],[-73.829568,-7.336469],[-73.842668,-7.343969],[-73.852068,-7.346969],[-73.855068,-7.351669],[-73.859968,-7.368669],[-73.862868,-7.373569],[-73.866868,-7.377369],[-73.869668,-7.378369],[-73.876568,-7.382169],[-73.890168,-7.377669],[-73.896568,-7.379369],[-73.909468,-7.377669],[-73.913468,-7.374369],[-73.918668,-7.365569],[-73.930868,-7.351969],[-73.935168,-7.351969],[-73.942768,-7.361369],[-73.951868,-7.346269],[-73.958668,-7.345069],[-73.963368,-7.347269],[-73.966168,-7.351669],[-73.967068,-7.359769],[-73.962968,-7.364069],[-73.961568,-7.370469],[-73.958668,-7.377769],[-73.948868,-7.394569],[-73.941568,-7.409469],[-73.930768,-7.423969],[-73.927468,-7.451569],[-73.924668,-7.460169],[-73.921868,-7.463969],[-73.919268,-7.465169],[-73.929168,-7.477569],[-73.932168,-7.486769],[-73.932768,-7.494069],[-73.941568,-7.513469],[-73.943168,-7.519369],[-73.948568,-7.526569],[-73.959268,-7.528169],[-73.968768,-7.531569],[-73.974268,-7.532269],[-73.986368,-7.530869],[-73.990468,-7.535869],[-73.989068,-7.543369],[-73.987768,-7.554769],[-73.981968,-7.566269],[-73.972768,-7.565569],[-73.968368,-7.567369],[-73.958168,-7.576569],[-73.950468,-7.585869],[-73.942368,-7.598469],[-73.937368,-7.601769],[-73.932268,-7.607869],[-73.922768,-7.612969],[-73.911668,-7.621869],[-73.908468,-7.624369],[-73.895668,-7.626969],[-73.888268,-7.631269],[-73.886268,-7.634569],[-73.886068,-7.650369],[-73.884968,-7.655169],[-73.879068,-7.661969],[-73.872968,-7.671069],[-73.857168,-7.677569],[-73.854168,-7.677269],[-73.849468,-7.674769],[-73.845268,-7.675069],[-73.842068,-7.677569],[-73.838968,-7.688269],[-73.832368,-7.696269],[-73.825668,-7.712569],[-73.821568,-7.717369],[-73.814568,-7.721169],[-73.809068,-7.722569],[-73.785968,-7.722369],[-73.759668,-7.730069],[-73.755268,-7.731969],[-73.740768,-7.733569],[-73.732068,-7.742169],[-73.722068,-7.748069],[-73.713168,-7.755469],[-73.705368,-7.758269],[-73.696368,-7.763169],[-73.693168,-7.771469],[-73.683768,-7.775969],[-73.681868,-7.789569],[-73.681868,-7.796069],[-73.683268,-7.805569],[-73.686868,-7.820569],[-73.686368,-7.828769],[-73.683868,-7.836769],[-73.683368,-7.842869],[-73.686968,-7.853969],[-73.693868,-7.859669],[-73.697968,-7.866869],[-73.703968,-7.872669],[-73.712968,-7.875469],[-73.741968,-7.872669],[-73.744668,-7.871369],[-73.747268,-7.867269],[-73.757368,-7.857569],[-73.761068,-7.857569],[-73.767168,-7.860869],[-73.766068,-7.870169],[-73.761268,-7.879069],[-73.752768,-7.890669],[-73.757968,-7.894669],[-73.770768,-7.897569],[-73.771868,-7.901969],[-73.770668,-7.904869],[-73.758868,-7.915269],[-73.750868,-7.923369],[-73.746368,-7.935169],[-73.747168,-7.947069],[-73.745868,-7.953569],[-73.743368,-7.956169],[-73.736868,-7.958569],[-73.734268,-7.961269],[-73.731968,-7.966969],[-73.728668,-7.968969],[-73.724168,-7.965069],[-73.722768,-7.960069],[-73.717368,-7.959669],[-73.710868,-7.960669],[-73.703568,-7.959869],[-73.697468,-7.960169],[-73.692468,-7.963769],[-73.688568,-7.971369],[-73.685568,-7.983269],[-73.681968,-7.992269],[-73.678668,-8.003369],[-73.675868,-8.007769],[-73.663368,-8.008169],[-73.657868,-8.006869],[-73.649468,-8.002469],[-73.645768,-8.002969],[-73.639868,-8.007669],[-73.634668,-8.014069],[-73.626868,-8.021469],[-73.623768,-8.028369],[-73.623368,-8.039269],[-73.626568,-8.046869],[-73.630568,-8.053269],[-73.633468,-8.056669],[-73.631568,-8.059969],[-73.624168,-8.063269],[-73.615368,-8.069869],[-73.612168,-8.074569],[-73.606968,-8.086469],[-73.593768,-8.097369],[-73.585368,-8.122769],[-73.589068,-8.130169],[-73.591168,-8.142169],[-73.589868,-8.153469],[-73.585768,-8.164169],[-73.585368,-8.172769],[-73.586468,-8.178069],[-73.586468,-8.186369],[-73.592568,-8.198169],[-73.595268,-8.206569],[-73.591768,-8.206869],[-73.581568,-8.207869],[-73.577668,-8.211269],[-73.577068,-8.214469],[-73.574368,-8.217869],[-73.573568,-8.225569],[-73.571568,-8.229769],[-73.563768,-8.231469],[-73.560168,-8.235269],[-73.557168,-8.245869],[-73.553268,-8.253769],[-73.550568,-8.255669],[-73.540268,-8.262669],[-73.536368,-8.269869],[-73.535968,-8.277269],[-73.539568,-8.287569],[-73.540068,-8.294969],[-73.537268,-8.301469],[-73.531768,-8.307769],[-73.529568,-8.313269],[-73.534768,-8.328469],[-73.537768,-8.334069],[-73.536368,-8.345869],[-73.529268,-8.351369],[-73.527268,-8.356169],[-73.523268,-8.359369],[-73.516068,-8.369669],[-73.505268,-8.377969],[-73.493868,-8.378469],[-73.489768,-8.379169],[-73.485368,-8.379169],[-73.486068,-8.385769],[-73.482768,-8.391069],[-73.472268,-8.393169],[-73.457968,-8.397969],[-73.452968,-8.400969],[-73.446868,-8.402869],[-73.443568,-8.406769],[-73.433368,-8.412069],[-73.421468,-8.406969],[-73.412268,-8.410569],[-73.406668,-8.419169],[-73.405668,-8.434069],[-73.401568,-8.447369],[-73.394368,-8.467269],[-73.386568,-8.469569],[-73.381768,-8.468169],[-73.376668,-8.462269],[-73.373368,-8.466669],[-73.370168,-8.463969],[-73.364968,-8.463369],[-73.360268,-8.465169],[-73.355368,-8.465669],[-73.347068,-8.470569],[-73.335368,-8.467069],[-73.331268,-8.471769],[-73.331768,-8.476669],[-73.327668,-8.481469],[-73.328568,-8.502469],[-73.327968,-8.517069],[-73.331768,-8.527569],[-73.334068,-8.540069],[-73.334368,-8.552469],[-73.337368,-8.570969],[-73.341268,-8.578569],[-73.342868,-8.591769],[-73.343468,-8.596469],[-73.343768,-8.601669],[-73.341268,-8.615769],[-73.338168,-8.617769],[-73.319568,-8.614069],[-73.313768,-8.616069],[-73.311568,-8.621669],[-73.312268,-8.632069],[-73.308868,-8.633169],[-73.301968,-8.629969],[-73.299668,-8.632169],[-73.301868,-8.636469],[-73.297468,-8.650869],[-73.290268,-8.661669],[-73.284768,-8.666369],[-73.275668,-8.669269],[-73.264268,-8.677569],[-73.257168,-8.678869],[-73.252968,-8.682769],[-73.247768,-8.687269],[-73.237768,-8.686569],[-73.231668,-8.684669],[-73.221768,-8.679769],[-73.216268,-8.678869],[-73.208268,-8.680869],[-73.199568,-8.685869],[-73.194668,-8.686969],[-73.176068,-8.694269],[-73.165568,-8.699869],[-73.155368,-8.707669],[-73.149568,-8.714269],[-73.142368,-8.722669],[-73.140468,-8.727069],[-73.139068,-8.734969],[-73.137468,-8.742969],[-73.137668,-8.751269],[-73.138168,-8.759569],[-73.129068,-8.770469],[-73.123068,-8.774569],[-73.119768,-8.778469],[-73.113668,-8.786769],[-73.111468,-8.791769],[-73.111768,-8.815469],[-73.109468,-8.821569],[-73.099968,-8.832569],[-73.094168,-8.837269],[-73.080668,-8.840869],[-73.077968,-8.842669],[-73.077368,-8.860869],[-73.071268,-8.869769],[-73.068268,-8.877669],[-73.064168,-8.893469],[-73.056168,-8.906969],[-73.048168,-8.913669],[-73.042268,-8.915269],[-73.035168,-8.914469],[-73.024068,-8.913469],[-73.008868,-8.912769],[-72.999368,-8.916769],[-72.994668,-8.920269],[-72.992968,-8.924469],[-72.987768,-8.932469],[-72.984668,-8.942469],[-72.978868,-8.953869],[-72.974268,-8.967869],[-72.970568,-8.974769],[-72.966168,-8.979169],[-72.959568,-8.981669],[-72.944368,-8.983969],[-72.936868,-8.988269],[-72.939168,-8.996869],[-72.948468,-9.005669],[-72.952968,-9.007469],[-72.956868,-9.010669],[-72.955168,-9.016069],[-72.948268,-9.025469],[-72.945968,-9.034769],[-72.945268,-9.046769],[-72.941668,-9.062769],[-72.940968,-9.065969],[-72.940168,-9.068869],[-72.945768,-9.075669],[-72.945268,-9.087069],[-72.943868,-9.091969],[-72.943768,-9.102069],[-72.945568,-9.107269],[-72.946368,-9.113269],[-72.952868,-9.128769],[-72.964268,-9.146869],[-72.971668,-9.148169],[-72.980268,-9.155069],[-72.986068,-9.159869],[-73.001568,-9.164469],[-73.008568,-9.167769],[-73.013568,-9.171969],[-73.016268,-9.176569],[-73.016068,-9.182769],[-73.011068,-9.187469],[-72.994368,-9.191069],[-72.994968,-9.194269],[-73.001268,-9.199569],[-73.003468,-9.203469],[-73.007368,-9.206469],[-73.019068,-9.218969],[-73.021868,-9.225869],[-73.025968,-9.229169],[-73.039868,-9.236169],[-73.044968,-9.236869],[-73.053368,-9.226169],[-73.056168,-9.225269],[-73.061068,-9.227069],[-73.065468,-9.230569],[-73.079368,-9.238269],[-73.086568,-9.244469],[-73.091968,-9.261569],[-73.095068,-9.266069],[-73.108068,-9.275369],[-73.111368,-9.279469],[-73.110868,-9.283169],[-73.104268,-9.295269],[-73.100968,-9.298969],[-73.101668,-9.304969],[-73.107168,-9.307469],[-73.119468,-9.309469],[-73.127968,-9.312469],[-73.139268,-9.321769],[-73.147368,-9.333269],[-73.156668,-9.350869],[-73.163668,-9.354169],[-73.186868,-9.360569],[-73.190468,-9.366869],[-73.191668,-9.386569],[-73.193468,-9.392869],[-73.198568,-9.397869],[-73.210368,-9.406469],[-73.211868,-9.411669],[-73.207668,-9.411669],[-72.983668,-9.411669],[-72.980068,-9.411669],[-72.975968,-9.411669],[-72.819568,-9.411669],[-72.804368,-9.411669],[-72.798868,-9.411669],[-72.735768,-9.411669],[-72.720568,-9.411669],[-72.715868,-9.412069],[-72.715868,-9.415369],[-72.717668,-9.418669],[-72.716168,-9.421669],[-72.712568,-9.424669],[-72.710168,-9.429169],[-72.706568,-9.429969],[-72.702568,-9.431569],[-72.699568,-9.428069],[-72.697768,-9.431169],[-72.698468,-9.434469],[-72.694868,-9.433569],[-72.695268,-9.437669],[-72.692468,-9.435869],[-72.687968,-9.433869],[-72.683568,-9.432169],[-72.680068,-9.435869],[-72.676168,-9.438069],[-72.672468,-9.436169],[-72.668568,-9.437969],[-72.668868,-9.441669],[-72.665868,-9.441269],[-72.661368,-9.446069],[-72.656768,-9.446369],[-72.657268,-9.449569],[-72.654168,-9.449969],[-72.651468,-9.445169],[-72.647668,-9.445969],[-72.644868,-9.445169],[-72.639668,-9.443069],[-72.635968,-9.443469],[-72.632768,-9.444069],[-72.629868,-9.443769],[-72.626968,-9.442769],[-72.624468,-9.444969],[-72.621568,-9.447069],[-72.619068,-9.450669],[-72.616168,-9.451569],[-72.612468,-9.448569],[-72.608868,-9.449969],[-72.604268,-9.451069],[-72.600868,-9.453569],[-72.596668,-9.455469],[-72.592668,-9.454269],[-72.589268,-9.455069],[-72.586568,-9.457169],[-72.582868,-9.458669],[-72.577368,-9.457969],[-72.576768,-9.462269],[-72.571268,-9.462569],[-72.566668,-9.460369],[-72.564868,-9.464569],[-72.560868,-9.462969],[-72.558768,-9.465969],[-72.553968,-9.466769],[-72.550468,-9.466169],[-72.545768,-9.466469],[-72.541468,-9.467669],[-72.539768,-9.471469],[-72.537568,-9.468769],[-72.535968,-9.472369],[-72.531668,-9.473069],[-72.531168,-9.476369],[-72.527968,-9.479269],[-72.526968,-9.483569],[-72.523168,-9.485569],[-72.522168,-9.489369],[-72.517368,-9.490569],[-72.516068,-9.487969],[-72.514368,-9.483969],[-72.510268,-9.484469],[-72.504968,-9.485369],[-72.502368,-9.481969],[-72.499068,-9.480669],[-72.495568,-9.483569],[-72.492568,-9.480269],[-72.488268,-9.479669],[-72.484768,-9.482769],[-72.481668,-9.484669],[-72.478968,-9.485769],[-72.474768,-9.483869],[-72.470268,-9.484969],[-72.467268,-9.485669],[-72.463968,-9.485869],[-72.460768,-9.485669],[-72.456468,-9.487869],[-72.452868,-9.484969],[-72.449968,-9.481769],[-72.446768,-9.481069],[-72.443868,-9.481769],[-72.441368,-9.479169],[-72.437168,-9.482169],[-72.432768,-9.481069],[-72.428268,-9.481369],[-72.426868,-9.483969],[-72.423968,-9.480669],[-72.420268,-9.480669],[-72.415568,-9.482269],[-72.412768,-9.481669],[-72.411168,-9.479169],[-72.407568,-9.476969],[-72.403668,-9.480369],[-72.398668,-9.483569],[-72.396868,-9.487269],[-72.392868,-9.486469],[-72.389268,-9.488269],[-72.387068,-9.491069],[-72.382468,-9.491669],[-72.376568,-9.494469],[-72.371568,-9.492269],[-72.368268,-9.489169],[-72.364668,-9.491869],[-72.363268,-9.495769],[-72.360268,-9.495169],[-72.356668,-9.494369],[-72.353868,-9.497169],[-72.351968,-9.500769],[-72.346768,-9.502669],[-72.343968,-9.504469],[-72.340968,-9.505969],[-72.339868,-9.510669],[-72.338968,-9.514669],[-72.340868,-9.518669],[-72.338268,-9.521469],[-72.335368,-9.520969],[-72.335068,-9.523969],[-72.332968,-9.528169],[-72.329268,-9.531969],[-72.327568,-9.534269],[-72.324568,-9.538069],[-72.320968,-9.541169],[-72.317668,-9.543369],[-72.312168,-9.544169],[-72.311268,-9.540969],[-72.306868,-9.539469],[-72.302568,-9.537069],[-72.299968,-9.533769],[-72.294668,-9.534769],[-72.290568,-9.535869],[-72.288868,-9.538169],[-72.287068,-9.540969],[-72.283768,-9.540269],[-72.282568,-9.543669],[-72.282268,-9.548569],[-72.282768,-9.553269],[-72.283968,-9.557469],[-72.283368,-9.561369],[-72.284868,-9.564869],[-72.285068,-9.568269],[-72.284268,-9.572169],[-72.284468,-9.577469],[-72.285268,-9.581869],[-72.285868,-9.585169],[-72.285568,-9.588469],[-72.284268,-9.591469],[-72.285168,-9.595269],[-72.288368,-9.600869],[-72.285868,-9.605269],[-72.282068,-9.608569],[-72.278768,-9.611469],[-72.275468,-9.614369],[-72.270468,-9.618269],[-72.265368,-9.619069],[-72.263868,-9.615569],[-72.259568,-9.614669],[-72.254968,-9.615069],[-72.252968,-9.619669],[-72.253568,-9.623569],[-72.255468,-9.626569],[-72.255968,-9.629369],[-72.257368,-9.632769],[-72.257968,-9.637369],[-72.259968,-9.640669],[-72.259868,-9.643969],[-72.258468,-9.647569],[-72.254568,-9.652269],[-72.251068,-9.655469],[-72.246668,-9.657369],[-72.247368,-9.662469],[-72.248768,-9.666069],[-72.248768,-9.670069],[-72.249768,-9.674469],[-72.251668,-9.677569],[-72.249968,-9.684069],[-72.251268,-9.692969],[-72.259368,-9.706469],[-72.263868,-9.712969],[-72.265068,-9.718769],[-72.264568,-9.721669],[-72.261868,-9.725969],[-72.264068,-9.730669],[-72.268968,-9.737169],[-72.270668,-9.743369],[-72.268668,-9.749369],[-72.264268,-9.752169],[-72.261468,-9.752969],[-72.256268,-9.752169],[-72.251568,-9.753769],[-72.248568,-9.760469],[-72.244368,-9.765069],[-72.233968,-9.763169],[-72.230268,-9.763269],[-72.226368,-9.765069],[-72.220868,-9.768669],[-72.214468,-9.773969],[-72.209068,-9.775369],[-72.201268,-9.773969],[-72.190468,-9.778069],[-72.186968,-9.779469],[-72.175268,-9.781769],[-72.158068,-9.791069],[-72.152868,-9.796669],[-72.150968,-9.798869],[-72.151568,-9.803969],[-72.155168,-9.811569],[-72.163868,-9.820469],[-72.165368,-9.827969],[-72.160668,-9.831869],[-72.157568,-9.834769],[-72.155068,-9.842069],[-72.155968,-9.854769],[-72.155068,-9.860369],[-72.152268,-9.865069],[-72.140668,-9.877469],[-72.142668,-9.882669],[-72.152368,-9.892969],[-72.153968,-9.897669],[-72.156668,-9.902269],[-72.166368,-9.909469],[-72.167268,-9.914269],[-72.173968,-9.921469],[-72.174368,-9.928669],[-72.172868,-9.934869],[-72.168168,-9.939169],[-72.160668,-9.939469],[-72.159868,-9.953269],[-72.155868,-9.960369],[-72.155668,-9.963669],[-72.157368,-9.968669],[-72.162268,-9.974169],[-72.169568,-9.978669],[-72.179668,-9.983869],[-72.181568,-9.991969],[-72.180468,-9.999969],[-72.023968,-9.999969],[-71.970668,-9.999969],[-71.861968,-9.999969],[-71.837068,-9.999969],[-71.826768,-9.999969],[-71.792168,-9.999969],[-71.719168,-9.999969],[-71.680268,-9.999969],[-71.677168,-9.999969],[-71.658168,-9.999969],[-71.585468,-9.999969],[-71.515468,-9.999969],[-71.431868,-9.999969],[-71.377368,-9.999969],[-71.374468,-9.996569],[-71.368868,-9.989669],[-71.363968,-9.984969],[-71.357468,-9.989469],[-71.354668,-9.987969],[-71.352868,-9.976469],[-71.348368,-9.973069],[-71.338768,-9.971969],[-71.322468,-9.985669],[-71.317668,-9.991169],[-71.307968,-9.991969],[-71.299668,-9.989169],[-71.291468,-9.984969],[-71.285368,-9.985069],[-71.282268,-9.983869],[-71.271168,-9.978169],[-71.259068,-9.978069],[-71.254668,-9.971669],[-71.252968,-9.963969],[-71.246568,-9.961969],[-71.240368,-9.966469],[-71.227468,-9.969269],[-71.210768,-9.966269],[-71.205668,-9.947169],[-71.193868,-9.938069],[-71.187368,-9.919669],[-71.181368,-9.917469],[-71.180068,-9.910669],[-71.171668,-9.887969],[-71.166168,-9.883869],[-71.163068,-9.875269],[-71.132368,-9.854769],[-71.128068,-9.852069],[-71.124468,-9.851669],[-71.119968,-9.851769],[-71.115368,-9.852469],[-71.112268,-9.852869],[-71.107468,-9.852769],[-71.102768,-9.851769],[-71.101368,-9.848369],[-71.099568,-9.845569],[-71.096668,-9.844569],[-71.093168,-9.841969],[-71.089368,-9.840169],[-71.085468,-9.839269],[-71.082868,-9.835469],[-71.080768,-9.832269],[-71.078568,-9.830469],[-71.076368,-9.827169],[-71.071868,-9.827169],[-71.067968,-9.826869],[-71.063468,-9.825469],[-71.059868,-9.824569],[-71.056868,-9.820969],[-71.054068,-9.818069],[-71.050868,-9.816269],[-71.047468,-9.817069],[-71.043068,-9.818869],[-71.040068,-9.818869],[-71.037268,-9.817469],[-71.033168,-9.815169],[-71.029768,-9.815569],[-71.026568,-9.817169],[-71.022968,-9.818269],[-71.019368,-9.816269],[-71.015168,-9.817069],[-71.009868,-9.816269],[-71.006068,-9.817169],[-71.002368,-9.816969],[-70.999068,-9.818569],[-70.994368,-9.816869],[-70.992568,-9.814469],[-70.991668,-9.811369],[-70.992168,-9.808369],[-70.992768,-9.803669],[-70.991368,-9.799269],[-70.991068,-9.793869],[-70.990368,-9.789269],[-70.986368,-9.788469],[-70.984968,-9.784769],[-70.983868,-9.781269],[-70.981468,-9.778669],[-70.981768,-9.775769],[-70.980368,-9.772069],[-70.978868,-9.768569],[-70.976168,-9.764669],[-70.974468,-9.760969],[-70.973168,-9.758169],[-70.970568,-9.756569],[-70.966768,-9.755169],[-70.962968,-9.750569],[-70.959268,-9.749169],[-70.957568,-9.746669],[-70.954968,-9.744969],[-70.953168,-9.741969],[-70.948968,-9.742669],[-70.945968,-9.742269],[-70.941668,-9.742969],[-70.938268,-9.743369],[-70.935468,-9.742269],[-70.932168,-9.740769],[-70.928568,-9.741469],[-70.925068,-9.741369],[-70.922768,-9.738569],[-70.920268,-9.736069],[-70.918068,-9.732469],[-70.914868,-9.728569],[-70.912068,-9.725969],[-70.908468,-9.722369],[-70.905968,-9.718969],[-70.903768,-9.715969],[-70.902668,-9.713269],[-70.898168,-9.712069],[-70.896568,-9.707369],[-70.896568,-9.702669],[-70.893168,-9.700669],[-70.891768,-9.697169],[-70.890068,-9.693569],[-70.888568,-9.691069],[-70.886768,-9.688769],[-70.882668,-9.688869],[-70.880568,-9.685469],[-70.880168,-9.680869],[-70.876668,-9.678669],[-70.875468,-9.675069],[-70.871868,-9.673669],[-70.869168,-9.669469],[-70.868668,-9.664969],[-70.864468,-9.663469],[-70.861168,-9.660869],[-70.858068,-9.659769],[-70.855668,-9.656769],[-70.853468,-9.654869],[-70.849868,-9.653769],[-70.846668,-9.656169],[-70.842568,-9.655169],[-70.839368,-9.655969],[-70.836568,-9.652569],[-70.836468,-9.649469],[-70.835768,-9.646469],[-70.834368,-9.643469],[-70.831068,-9.645769],[-70.828168,-9.643469],[-70.824268,-9.643769],[-70.821068,-9.642069],[-70.815968,-9.642069],[-70.811968,-9.639269],[-70.808368,-9.640669],[-70.804768,-9.642669],[-70.799968,-9.640469],[-70.794268,-9.636269],[-70.793168,-9.632769],[-70.790668,-9.630169],[-70.792068,-9.626669],[-70.789768,-9.624169],[-70.785868,-9.621569],[-70.786768,-9.618069],[-70.786168,-9.613569],[-70.782368,-9.611969],[-70.779268,-9.608969],[-70.775368,-9.609969],[-70.773368,-9.606669],[-70.767068,-9.605869],[-70.767068,-9.601269],[-70.762868,-9.602469],[-70.758268,-9.603169],[-70.756068,-9.599169],[-70.755168,-9.595869],[-70.756268,-9.591969],[-70.757168,-9.587869],[-70.757068,-9.582969],[-70.757168,-9.578469],[-70.753768,-9.578169],[-70.754868,-9.574969],[-70.752368,-9.571369],[-70.749468,-9.568169],[-70.753768,-9.567669],[-70.751568,-9.564169],[-70.748868,-9.560469],[-70.745168,-9.561069],[-70.742468,-9.558869],[-70.738268,-9.558069],[-70.736368,-9.561569],[-70.733068,-9.564069],[-70.730568,-9.565469],[-70.729968,-9.568769],[-70.727868,-9.566369],[-70.725068,-9.565169],[-70.722268,-9.562269],[-70.724168,-9.560169],[-70.722668,-9.557469],[-70.724768,-9.555569],[-70.720968,-9.554669],[-70.717968,-9.553569],[-70.716268,-9.550069],[-70.712868,-9.546069],[-70.708968,-9.545769],[-70.703468,-9.543669],[-70.700968,-9.541969],[-70.698168,-9.539769],[-70.693468,-9.538869],[-70.692368,-9.534869],[-70.688468,-9.534469],[-70.684168,-9.531169],[-70.681568,-9.533069],[-70.679368,-9.531169],[-70.675268,-9.528769],[-70.672168,-9.526169],[-70.669268,-9.523669],[-70.666768,-9.521469],[-70.664468,-9.519369],[-70.662468,-9.523369],[-70.660068,-9.520069],[-70.658468,-9.516469],[-70.656268,-9.513969],[-70.653968,-9.510369],[-70.652068,-9.512769],[-70.650068,-9.509869],[-70.650368,-9.506269],[-70.650668,-9.502969],[-70.650968,-9.499669],[-70.648468,-9.498269],[-70.645668,-9.497769],[-70.643168,-9.495269],[-70.639568,-9.496969],[-70.636468,-9.499069],[-70.635168,-9.494669],[-70.631368,-9.492769],[-70.634568,-9.489069],[-70.636068,-9.486369],[-70.632468,-9.484769],[-70.631368,-9.480669],[-70.628868,-9.478369],[-70.624668,-9.477069],[-70.623568,-9.473469],[-70.622268,-9.470069],[-70.619068,-9.471469],[-70.615568,-9.474469],[-70.615768,-9.469769],[-70.611768,-9.465969],[-70.611468,-9.460769],[-70.610868,-9.456269],[-70.607868,-9.457069],[-70.604668,-9.457869],[-70.598468,-9.458969],[-70.596168,-9.456469],[-70.596268,-9.452169],[-70.595668,-9.448169],[-70.596268,-9.444669],[-70.594568,-9.440969],[-70.590368,-9.440469],[-70.586468,-9.443869],[-70.583668,-9.442069],[-70.579968,-9.438869],[-70.575468,-9.436969],[-70.572468,-9.435769],[-70.569568,-9.437669],[-70.569568,-9.432669],[-70.565468,-9.431869],[-70.560468,-9.429969],[-70.557668,-9.433269],[-70.553268,-9.431869],[-70.548868,-9.433369],[-70.546668,-9.429669],[-70.544468,-9.426869],[-70.540668,-9.429969],[-70.537368,-9.432269],[-70.537568,-9.436169],[-70.534768,-9.434669],[-70.532268,-9.432269],[-70.528668,-9.429969],[-70.525868,-9.426869],[-70.524868,-9.429769],[-70.526568,-9.433869],[-70.523468,-9.433869],[-70.519268,-9.431569],[-70.519368,-9.428269],[-70.515368,-9.426469],[-70.511068,-9.424169],[-70.506368,-9.422769],[-70.502968,-9.423269],[-70.502168,-9.426069],[-70.496968,-9.424669],[-70.495068,-9.428069],[-70.494368,-9.433569],[-70.494468,-9.437469],[-70.496568,-9.441269],[-70.498868,-9.442969],[-70.502068,-9.444169],[-70.505968,-9.444969],[-70.509368,-9.445569],[-70.511068,-9.448169],[-70.509868,-9.452069],[-70.507768,-9.455069],[-70.505768,-9.457869],[-70.504068,-9.460869],[-70.506068,-9.464269],[-70.509968,-9.465069],[-70.513768,-9.464069],[-70.514968,-9.458769],[-70.519268,-9.457169],[-70.522568,-9.458969],[-70.521468,-9.461969],[-70.520368,-9.466969],[-70.519768,-9.473469],[-70.516068,-9.478069],[-70.513168,-9.480569],[-70.510668,-9.483069],[-70.508068,-9.485869],[-70.506368,-9.488269],[-70.504568,-9.490469],[-70.502668,-9.493069],[-70.502168,-9.496669],[-70.503468,-9.502369],[-70.505968,-9.504969],[-70.508468,-9.502969],[-70.510268,-9.499369],[-70.510468,-9.495769],[-70.512868,-9.492469],[-70.515368,-9.495769],[-70.515668,-9.499169],[-70.517168,-9.502069],[-70.519768,-9.504369],[-70.524068,-9.504869],[-70.527268,-9.501669],[-70.529868,-9.504469],[-70.529168,-9.509269],[-70.530568,-9.514269],[-70.534468,-9.515369],[-70.537768,-9.513769],[-70.541468,-9.512469],[-70.544568,-9.513869],[-70.546068,-9.516469],[-70.546468,-9.519369],[-70.546068,-9.523669],[-70.542168,-9.525469],[-70.537568,-9.529569],[-70.538068,-9.534169],[-70.540668,-9.536669],[-70.543868,-9.537869],[-70.548668,-9.538669],[-70.552968,-9.538169],[-70.557268,-9.537069],[-70.561568,-9.532369],[-70.563768,-9.529869],[-70.567768,-9.530169],[-70.569868,-9.532769],[-70.567168,-9.534769],[-70.564668,-9.536269],[-70.563068,-9.539469],[-70.564968,-9.543569],[-70.566868,-9.546969],[-70.568068,-9.549669],[-70.568168,-9.553369],[-70.565968,-9.555769],[-70.563068,-9.556369],[-70.559468,-9.556869],[-70.555868,-9.558769],[-70.553268,-9.565469],[-70.553368,-9.569569],[-70.556368,-9.573169],[-70.560168,-9.574569],[-70.567168,-9.571569],[-70.570168,-9.569069],[-70.572868,-9.564569],[-70.577068,-9.562969],[-70.581068,-9.565469],[-70.583968,-9.566969],[-70.587968,-9.565569],[-70.588368,-9.561669],[-70.586468,-9.558669],[-70.584668,-9.555169],[-70.586768,-9.550069],[-70.591268,-9.548069],[-70.595368,-9.550669],[-70.598468,-9.555469],[-70.599468,-9.559069],[-70.599468,-9.562669],[-70.595168,-9.564069],[-70.592068,-9.566969],[-70.588268,-9.570469],[-70.585868,-9.573469],[-70.586168,-9.576769],[-70.586768,-9.579669],[-70.586968,-9.583169],[-70.589468,-9.585869],[-70.585868,-9.587569],[-70.586568,-9.591969],[-70.587568,-9.596469],[-70.590668,-9.601269],[-70.593768,-9.603169],[-70.597568,-9.605669],[-70.597068,-9.608569],[-70.595568,-9.611069],[-70.592368,-9.616569],[-70.591268,-9.622169],[-70.589868,-9.625269],[-70.587668,-9.628769],[-70.587268,-9.632069],[-70.584268,-9.636369],[-70.583268,-9.640369],[-70.579568,-9.643669],[-70.577868,-9.647569],[-70.574868,-9.650069],[-70.573968,-9.654469],[-70.571768,-9.658369],[-70.569668,-9.661269],[-70.566268,-9.665569],[-70.562168,-9.667769],[-70.558068,-9.666769],[-70.553368,-9.667769],[-70.550768,-9.671069],[-70.548968,-9.675769],[-70.546368,-9.678569],[-70.542268,-9.680469],[-70.540568,-9.684469],[-70.538168,-9.689469],[-70.536668,-9.692769],[-70.536168,-9.696069],[-70.534468,-9.699369],[-70.533168,-9.702169],[-70.532368,-9.706169],[-70.530968,-9.709369],[-70.528668,-9.711969],[-70.525968,-9.714469],[-70.528368,-9.717569],[-70.526868,-9.720069],[-70.526768,-9.723069],[-70.527868,-9.725869],[-70.529468,-9.728469],[-70.532268,-9.732269],[-70.532868,-9.736069],[-70.532268,-9.739469],[-70.532768,-9.744369],[-70.534868,-9.747369],[-70.538468,-9.749969],[-70.538868,-9.753869],[-70.537468,-9.757069],[-70.535968,-9.760269],[-70.535868,-9.764269],[-70.538468,-9.767469],[-70.541768,-9.771469],[-70.544968,-9.774869],[-70.545368,-9.777869],[-70.548268,-9.779469],[-70.551868,-9.783469],[-70.554168,-9.785969],[-70.556968,-9.787769],[-70.560868,-9.788369],[-70.565168,-9.785369],[-70.569268,-9.783069],[-70.572068,-9.780469],[-70.574968,-9.777869],[-70.578268,-9.777969],[-70.581168,-9.780169],[-70.583668,-9.781969],[-70.585868,-9.786769],[-70.585468,-9.790669],[-70.587868,-9.795269],[-70.589268,-9.798669],[-70.591168,-9.802569],[-70.596268,-9.801169],[-70.600668,-9.800069],[-70.604268,-9.800069],[-70.607468,-9.800869],[-70.610068,-9.802469],[-70.612268,-9.805269],[-70.613868,-9.810569],[-70.615068,-9.815969],[-70.620168,-9.818069],[-70.623268,-9.820769],[-70.622268,-9.823769],[-70.621868,-9.827869],[-70.620768,-9.831469],[-70.619968,-10.078169],[-70.620468,-10.081469],[-70.620868,-10.095369],[-70.621068,-10.228169],[-70.620268,-10.359269],[-70.620268,-10.363569],[-70.620468,-10.424969],[-70.620568,-10.499969],[-70.620568,-10.508569],[-70.620568,-10.707569],[-70.620768,-10.714769],[-70.620868,-10.811069],[-70.620868,-10.821369],[-70.620868,-10.910669],[-70.620868,-10.999469],[-70.529868,-10.934469],[-70.528968,-10.931169],[-70.526168,-10.932169],[-70.522868,-10.934169],[-70.520668,-10.936269],[-70.519668,-10.939069],[-70.518168,-10.943469],[-70.516568,-10.945969],[-70.512368,-10.949869],[-70.508468,-10.951769],[-70.504368,-10.952169],[-70.501568,-10.955669],[-70.498768,-10.958469],[-70.495068,-10.962569],[-70.490368,-10.963669],[-70.486468,-10.964069],[-70.481168,-10.967869],[-70.478668,-10.971269],[-70.475968,-10.974769],[-70.473468,-10.979269],[-70.471168,-10.984269],[-70.468368,-10.987469],[-70.465368,-10.987469],[-70.462968,-10.989669],[-70.460468,-10.991169],[-70.457168,-10.993369],[-70.452468,-10.995869],[-70.450168,-10.999069],[-70.447868,-11.004069],[-70.445968,-11.007369],[-70.443768,-11.011069],[-70.441268,-11.014269],[-70.440768,-11.017369],[-70.439868,-11.020069],[-70.437668,-11.025069],[-70.438468,-11.028969],[-70.439968,-11.032769],[-70.437968,-11.036669],[-70.435568,-11.038469],[-70.432168,-11.039169],[-70.427568,-11.038469],[-70.422268,-11.038169],[-70.418368,-11.039269],[-70.414568,-11.040569],[-70.410568,-11.041669],[-70.408368,-11.043969],[-70.405368,-11.046069],[-70.401968,-11.045669],[-70.398168,-11.044969],[-70.395068,-11.044969],[-70.391468,-11.045369],[-70.386468,-11.046769],[-70.382668,-11.048569],[-70.380268,-11.051569],[-70.379368,-11.054669],[-70.376968,-11.056669],[-70.373868,-11.059069],[-70.369468,-11.057969],[-70.365768,-11.058669],[-70.361768,-11.059469],[-70.357768,-11.058869],[-70.354268,-11.058569],[-70.350568,-11.060869],[-70.347268,-11.064669],[-70.342668,-11.066269],[-70.339368,-11.065969],[-70.335468,-11.066669],[-70.332668,-11.065469],[-70.327068,-11.064669],[-70.322368,-11.065869],[-70.316568,-11.067669],[-70.313368,-11.068869],[-70.310168,-11.069569],[-70.306868,-11.069169],[-70.302168,-11.067669],[-70.299668,-11.065269],[-70.296768,-11.064569],[-70.292768,-11.064069],[-70.288668,-11.061169],[-70.285968,-11.057569],[-70.281268,-11.055769],[-70.277668,-11.056169],[-70.274368,-11.057769],[-70.270668,-11.057969],[-70.267068,-11.056169],[-70.264968,-11.052769],[-70.263168,-11.050469],[-70.259068,-11.051469],[-70.253868,-11.049369],[-70.248568,-11.048669],[-70.245068,-11.048369],[-70.242168,-11.046769],[-70.239468,-11.048169],[-70.236168,-11.048969],[-70.231168,-11.050769],[-70.228068,-11.048869],[-70.222768,-11.050369],[-70.218668,-11.049769],[-70.214368,-11.051569],[-70.212068,-11.049669],[-70.208268,-11.050469],[-70.204968,-11.051169],[-70.199968,-11.053069],[-70.197068,-11.051869],[-70.192668,-11.050369],[-70.189968,-11.048269],[-70.188768,-11.044469],[-70.179768,-11.042869],[-70.176868,-11.039169],[-70.174268,-11.040969],[-70.171368,-11.040869],[-70.168068,-11.040669],[-70.165068,-11.038869],[-70.161268,-11.040269],[-70.158068,-11.039569],[-70.156268,-11.032769],[-70.152268,-11.032269],[-70.149568,-11.030369],[-70.145968,-11.029869],[-70.141468,-11.028969],[-70.139268,-11.023169],[-70.133768,-11.021769],[-70.129868,-11.020469],[-70.126668,-11.015469],[-70.123768,-11.012169],[-70.121668,-11.009969],[-70.117768,-11.009669],[-70.114368,-11.008069],[-70.116868,-11.006369],[-70.114468,-11.004569],[-70.110368,-11.004069],[-70.107768,-11.007169],[-70.106768,-11.002769],[-70.107768,-10.998869],[-70.107768,-10.994769],[-70.103668,-10.994769],[-70.104168,-10.999069],[-70.101368,-10.998369],[-70.097568,-10.997669],[-70.095568,-10.993669],[-70.095168,-10.988969],[-70.090668,-10.986469],[-70.086468,-10.988869],[-70.083268,-10.985269],[-70.080368,-10.984969],[-70.079868,-10.989469],[-70.076868,-10.989169],[-70.072968,-10.990769],[-70.069668,-10.992569],[-70.065568,-10.991669],[-70.064168,-10.986769],[-70.060268,-10.986869],[-70.056968,-10.986869],[-70.052868,-10.985869],[-70.050468,-10.984369],[-70.047568,-10.979569],[-70.044768,-10.983169],[-70.044668,-10.978869],[-70.040368,-10.979269],[-70.037468,-10.978069],[-70.038068,-10.974769],[-70.035868,-10.971169],[-70.032068,-10.972769],[-70.029768,-10.975669],[-70.026568,-10.975969],[-70.025868,-10.971969],[-70.022368,-10.969269],[-70.017468,-10.968769],[-70.013468,-10.967669],[-70.011068,-10.965169],[-70.009068,-10.962869],[-70.005968,-10.963669],[-70.003568,-10.960469],[-69.999768,-10.961869],[-69.996868,-10.960369],[-69.995868,-10.957569],[-69.995868,-10.953469],[-69.994668,-10.950269],[-69.990768,-10.950769],[-69.988268,-10.952669],[-69.984768,-10.953169],[-69.983968,-10.949569],[-69.984468,-10.946369],[-69.982068,-10.942169],[-69.978468,-10.945269],[-69.975268,-10.947369],[-69.970968,-10.945169],[-69.967968,-10.941269],[-69.964068,-10.938869],[-69.960068,-10.938269],[-69.961568,-10.934469],[-69.957368,-10.934169],[-69.953768,-10.932269],[-69.953768,-10.926869],[-69.949868,-10.924669],[-69.946868,-10.923869],[-69.944068,-10.924669],[-69.940968,-10.924969],[-69.936368,-10.922469],[-69.932968,-10.920569],[-69.929668,-10.921969],[-69.924168,-10.923369],[-69.923668,-10.927469],[-69.923368,-10.930469],[-69.920668,-10.931569],[-69.917068,-10.929369],[-69.917468,-10.925069],[-69.914768,-10.922869],[-69.912068,-10.921469],[-69.907668,-10.921669],[-69.902868,-10.919769],[-69.898668,-10.919169],[-69.894368,-10.920769],[-69.890368,-10.921469],[-69.885968,-10.922569],[-69.882368,-10.922869],[-69.878068,-10.922869],[-69.875768,-10.926169],[-69.872668,-10.928369],[-69.868268,-10.926069],[-69.864968,-10.924769],[-69.861468,-10.925769],[-69.859968,-10.928569],[-69.857268,-10.931669],[-69.855368,-10.927469],[-69.854468,-10.924469],[-69.850968,-10.922869],[-69.846668,-10.922869],[-69.843068,-10.923869],[-69.839568,-10.927969],[-69.835468,-10.927269],[-69.831768,-10.928269],[-69.832168,-10.931669],[-69.829268,-10.932169],[-69.824668,-10.932069],[-69.820268,-10.930469],[-69.816268,-10.929369],[-69.812968,-10.928269],[-69.811968,-10.924469],[-69.809068,-10.924669],[-69.805468,-10.925269],[-69.801868,-10.925269],[-69.798968,-10.926069],[-69.797168,-10.930469],[-69.793968,-10.932269],[-69.791468,-10.930569],[-69.787068,-10.929369],[-69.783168,-10.931169],[-69.779068,-10.933569],[-69.774068,-10.931669],[-69.770668,-10.928669],[-69.768168,-10.930269],[-69.768768,-10.933069],[-69.771868,-10.934869],[-69.772868,-10.938469],[-69.768668,-10.939869],[-69.764268,-10.939369],[-69.759968,-10.938569],[-69.757768,-10.941069],[-69.755468,-10.944369],[-69.751968,-10.947669],[-69.750168,-10.950669],[-69.747168,-10.953869],[-69.746568,-10.958569],[-69.743668,-10.961469],[-69.739668,-10.963369],[-69.739368,-10.966569],[-69.740768,-10.969769],[-69.739168,-10.973369],[-69.734968,-10.973069],[-69.730668,-10.970369],[-69.726768,-10.966969],[-69.723368,-10.964469],[-69.719768,-10.967369],[-69.717668,-10.972769],[-69.711768,-10.973369],[-69.707568,-10.969769],[-69.704668,-10.967369],[-69.701068,-10.965569],[-69.698868,-10.970169],[-69.695168,-10.967069],[-69.692368,-10.963769],[-69.689168,-10.963669],[-69.684368,-10.962269],[-69.679768,-10.960069],[-69.673068,-10.960069],[-69.669568,-10.961469],[-69.666368,-10.958269],[-69.663668,-10.956469],[-69.661968,-10.953769],[-69.658068,-10.951769],[-69.652568,-10.952069],[-69.648368,-10.953169],[-69.644268,-10.954269],[-69.639868,-10.955369],[-69.635668,-10.956769],[-69.631268,-10.955369],[-69.628068,-10.954069],[-69.625168,-10.951469],[-69.621668,-10.949669],[-69.616068,-10.951269],[-69.611668,-10.955069],[-69.611968,-10.950969],[-69.612168,-10.947169],[-69.609468,-10.944969],[-69.606368,-10.943869],[-69.603568,-10.942769],[-69.598968,-10.942069],[-69.594468,-10.943869],[-69.590468,-10.944969],[-69.586768,-10.947869],[-69.585468,-10.944869],[-69.588968,-10.941669],[-69.585768,-10.939869],[-69.579568,-10.940469],[-69.576068,-10.942669],[-69.572368,-10.944169],[-69.567668,-10.944069],[-69.564868,-10.945169],[-69.561568,-10.946369],[-69.558268,-10.946069],[-69.555168,-10.944869],[-69.552568,-10.948169],[-69.551168,-10.951269],[-69.548168,-10.952569],[-69.544268,-10.952469],[-69.541768,-10.949569],[-69.543568,-10.945769],[-69.542768,-10.942369],[-69.541768,-10.938369],[-69.538868,-10.936869],[-69.534868,-10.936169],[-69.529868,-10.936069],[-69.525168,-10.935869],[-69.521768,-10.937969],[-69.519068,-10.936869],[-69.516068,-10.937269],[-69.513168,-10.940569],[-69.510268,-10.942169],[-69.506668,-10.942369],[-69.504068,-10.939469],[-69.500968,-10.936869],[-69.498868,-10.939169],[-69.498368,-10.943869],[-69.496268,-10.947469],[-69.492268,-10.949669],[-69.487568,-10.949369],[-69.484368,-10.949669],[-69.481068,-10.952169],[-69.477068,-10.952369],[-69.478168,-10.947769],[-69.476968,-10.944369],[-69.473368,-10.943869],[-69.470168,-10.946869],[-69.464568,-10.949869],[-69.460968,-10.948869],[-69.461868,-10.944869],[-69.459068,-10.944369],[-69.454268,-10.947869],[-69.453168,-10.944569],[-69.452068,-10.936869],[-69.447668,-10.934369],[-69.443068,-10.934069],[-69.439368,-10.933369],[-69.435468,-10.933369],[-69.429068,-10.936869],[-69.425568,-10.932969],[-69.424968,-10.927469],[-69.422568,-10.924369],[-69.419268,-10.925469],[-69.416168,-10.925869],[-69.413468,-10.929369],[-69.413068,-10.933369],[-69.412768,-10.936869],[-69.408768,-10.933369],[-69.407368,-10.928569],[-69.403368,-10.927969],[-69.400168,-10.930769],[-69.399368,-10.933569],[-69.398668,-10.936569],[-69.397068,-10.940469],[-69.394868,-10.943169],[-69.392568,-10.941269],[-69.394768,-10.938469],[-69.395068,-10.934469],[-69.392168,-10.933069],[-69.388168,-10.932969],[-69.387068,-10.936969],[-69.384268,-10.940969],[-69.380268,-10.939169],[-69.377768,-10.941269],[-69.377668,-10.944569],[-69.377168,-10.948169],[-69.377368,-10.951469],[-69.374368,-10.952869],[-69.372268,-10.949869],[-69.372268,-10.946369],[-69.374168,-10.941069],[-69.369768,-10.937769],[-69.365468,-10.938769],[-69.362468,-10.940569],[-69.359768,-10.942969],[-69.356768,-10.943069],[-69.357768,-10.939069],[-69.356668,-10.935869],[-69.353168,-10.935769],[-69.350268,-10.937269],[-69.346768,-10.936369],[-69.344868,-10.938469],[-69.345568,-10.942769],[-69.346368,-10.946669],[-69.343468,-10.949969],[-69.341568,-10.946369],[-69.340068,-10.942769],[-69.337868,-10.940569],[-69.334568,-10.941269],[-69.333468,-10.946069],[-69.328968,-10.948769],[-69.327168,-10.945269],[-69.327168,-10.938469],[-69.325668,-10.935769],[-69.322368,-10.937169],[-69.320968,-10.941669],[-69.317768,-10.943569],[-69.313768,-10.943269],[-69.310568,-10.943869],[-69.307668,-10.944869],[-69.304668,-10.946669],[-69.301168,-10.946769],[-69.296368,-10.946369],[-69.291768,-10.948569],[-69.287768,-10.948469],[-69.286168,-10.944169],[-69.282868,-10.942669],[-69.279768,-10.944369],[-69.277568,-10.947669],[-69.276168,-10.950969],[-69.273168,-10.952669],[-69.274568,-10.948269],[-69.275068,-10.945269],[-69.273268,-10.942069],[-69.270168,-10.940469],[-69.266068,-10.940269],[-69.262468,-10.939969],[-69.258568,-10.940569],[-69.255168,-10.939169],[-69.251368,-10.938769],[-69.249868,-10.941969],[-69.252968,-10.943869],[-69.257068,-10.944669],[-69.254068,-10.947469],[-69.248868,-10.948569],[-69.244768,-10.949869],[-69.240068,-10.950169],[-69.236768,-10.947869],[-69.234668,-10.943569],[-69.232468,-10.939369],[-69.228868,-10.941969],[-69.224968,-10.946369],[-69.220668,-10.947469],[-69.218368,-10.950269],[-69.217068,-10.953869],[-69.215368,-10.956169],[-69.211768,-10.954869],[-69.207868,-10.951469],[-69.201768,-10.948169],[-69.197968,-10.947069],[-69.193168,-10.948269],[-69.188468,-10.948469],[-69.184868,-10.948469],[-69.183268,-10.952869],[-69.178268,-10.956069],[-69.174168,-10.957069],[-69.170268,-10.958669],[-69.169168,-10.962669],[-69.165968,-10.964069],[-69.162368,-10.964569],[-69.159768,-10.962569],[-69.157668,-10.958169],[-69.154068,-10.955069],[-69.152668,-10.958469],[-69.152868,-10.962969],[-69.146468,-10.961769],[-69.143968,-10.963469],[-69.146868,-10.966169],[-69.148968,-10.969869],[-69.144768,-10.969869],[-69.142068,-10.968369],[-69.138968,-10.965669],[-69.138468,-10.969769],[-69.136068,-10.972269],[-69.132068,-10.969569],[-69.128568,-10.967269],[-69.125268,-10.965669],[-69.121668,-10.966169],[-69.119668,-10.969469],[-69.119968,-10.972369],[-69.120868,-10.976269],[-69.119768,-10.979269],[-69.116968,-10.977769],[-69.115768,-10.974969],[-69.112768,-10.970869],[-69.108268,-10.971169],[-69.105068,-10.975569],[-69.101368,-10.979469],[-69.096468,-10.977569],[-69.092668,-10.974769],[-69.090068,-10.971769],[-69.086868,-10.969069],[-69.083968,-10.969569],[-69.081168,-10.972269],[-69.077868,-10.973369],[-69.075468,-10.969869],[-69.073468,-10.965869],[-69.069668,-10.968769],[-69.068468,-10.973669],[-69.065568,-10.976369],[-69.064068,-10.979269],[-69.062968,-10.982869],[-69.058868,-10.983369],[-69.055568,-10.979969],[-69.052468,-10.974569],[-69.048868,-10.973869],[-69.048868,-10.978369],[-69.044668,-10.979969],[-69.042268,-10.977769],[-69.039868,-10.976269],[-69.037068,-10.978669],[-69.035568,-10.982469],[-69.031568,-10.984769],[-69.027668,-10.981969],[-69.025768,-10.985269],[-69.025668,-10.989369],[-69.023368,-10.991669],[-69.019668,-10.990069],[-69.015768,-10.989369],[-69.012068,-10.990469],[-69.009568,-10.993369],[-69.011268,-10.996569],[-69.014268,-10.999469],[-69.011868,-11.001669],[-69.007368,-11.001669],[-69.004068,-11.004969],[-69.001568,-11.007169],[-68.997668,-11.002669],[-68.994368,-11.002969],[-68.993668,-11.007769],[-68.991868,-11.009969],[-68.987868,-11.009569],[-68.984468,-11.006769],[-68.986368,-11.002769],[-68.986868,-10.997769],[-68.983168,-10.996569],[-68.980568,-10.995269],[-68.978168,-10.992969],[-68.975268,-10.989969],[-68.972668,-10.988269],[-68.969468,-10.986769],[-68.966168,-10.987169],[-68.963468,-10.989369],[-68.960868,-10.991069],[-68.956868,-10.990069],[-68.952168,-10.988969],[-68.952468,-10.993369],[-68.954868,-10.996869],[-68.955768,-11.000969],[-68.952968,-11.002769],[-68.948568,-11.002969],[-68.945768,-11.004569],[-68.946768,-11.009569],[-68.944068,-11.010669],[-68.940468,-11.007769],[-68.937168,-11.004369],[-68.932768,-11.004069],[-68.930868,-11.007069],[-68.930068,-11.010369],[-68.926968,-11.011069],[-68.925068,-11.013469],[-68.923868,-11.016369],[-68.921068,-11.012869],[-68.916468,-11.015769],[-68.913168,-11.018969],[-68.909168,-11.020469],[-68.905968,-11.017069],[-68.903668,-11.012369],[-68.899768,-11.008869],[-68.896168,-11.005169],[-68.892068,-11.007069],[-68.888968,-11.009869],[-68.886768,-11.013469],[-68.883868,-11.009869],[-68.879868,-11.008469],[-68.876268,-11.008469],[-68.872668,-11.008769],[-68.869768,-11.012669],[-68.864668,-11.014069],[-68.860668,-11.015769],[-68.858868,-11.012369],[-68.859168,-11.008769],[-68.859368,-11.004169],[-68.855568,-11.001269],[-68.852768,-10.997969],[-68.848368,-10.991869],[-68.842668,-10.991169],[-68.840868,-10.993369],[-68.840668,-10.996269],[-68.843968,-10.998269],[-68.840368,-11.000869],[-68.836568,-10.998669],[-68.835368,-10.994769],[-68.833768,-10.992169],[-68.830068,-10.993669],[-68.826768,-10.995169],[-68.825768,-10.998269],[-68.829568,-11.000169],[-68.829568,-11.003569],[-68.827068,-11.005269],[-68.822168,-11.002069],[-68.816868,-11.003669],[-68.812368,-11.000569],[-68.808068,-10.998769],[-68.810768,-10.994369],[-68.805468,-10.993269],[-68.801568,-10.992969],[-68.798968,-10.989769],[-68.796068,-10.988669],[-68.792068,-10.989369],[-68.793868,-10.993069],[-68.796868,-10.994669],[-68.796968,-10.998369],[-68.794168,-10.998869],[-68.789568,-10.999669],[-68.786468,-11.003069],[-68.782568,-10.999869],[-68.779268,-10.997769],[-68.777668,-11.003569],[-68.772568,-11.004069],[-68.769268,-11.005269],[-68.765468,-11.004069],[-68.762368,-11.002969],[-68.758568,-11.000869],[-68.758568,-11.005169],[-68.757368,-11.009869],[-68.754168,-11.008769],[-68.751268,-11.007769],[-68.748268,-11.009869],[-68.750268,-11.014369],[-68.749468,-11.018769],[-68.752368,-11.022369],[-68.751668,-11.025969],[-68.751868,-11.029469],[-68.751668,-11.033869],[-68.752068,-11.037069],[-68.756868,-11.038069],[-68.760268,-11.040369],[-68.760968,-11.044169],[-68.764668,-11.047569],[-68.764668,-11.051669],[-68.760668,-11.054769],[-68.762368,-11.058069],[-68.763868,-11.061869],[-68.764568,-11.066369],[-68.762368,-11.070269],[-68.758768,-11.073569],[-68.756268,-11.077969],[-68.757668,-11.082569],[-68.754668,-11.084269],[-68.750768,-11.086269],[-68.748068,-11.090669],[-68.745768,-11.094569],[-68.741868,-11.096369],[-68.738868,-11.094069],[-68.735068,-11.093369],[-68.731768,-11.095669],[-68.729568,-11.097669],[-68.727068,-11.099869],[-68.724268,-11.101369],[-68.720968,-11.104569],[-68.721368,-11.109469],[-68.722068,-11.113569],[-68.719868,-11.116369],[-68.717668,-11.118269],[-68.715868,-11.120869],[-68.714268,-11.123369],[-68.712268,-11.126569],[-68.711168,-11.129869],[-68.711168,-11.134269],[-68.712268,-11.138169],[-68.714068,-11.140369],[-68.715868,-11.143469],[-68.614968,-11.125469],[-68.542768,-11.110269],[-68.543068,-11.105969],[-68.542868,-11.102069],[-68.541668,-11.099169],[-68.539768,-11.096669],[-68.536768,-11.094469],[-68.531968,-11.092669],[-68.526468,-11.091269],[-68.522068,-11.089369],[-68.519268,-11.087869],[-68.516268,-11.083569],[-68.513768,-11.080769],[-68.510968,-11.078269],[-68.508468,-11.074969],[-68.505468,-11.069969],[-68.504868,-11.065269],[-68.503468,-11.062669],[-68.500268,-11.061369],[-68.497668,-11.059469],[-68.495268,-11.056869],[-68.491368,-11.054069],[-68.486468,-11.050769],[-68.482868,-11.050069],[-68.479968,-11.048969],[-68.475668,-11.051169],[-68.471468,-11.050369],[-68.468068,-11.049369],[-68.464768,-11.049669],[-68.460768,-11.046669],[-68.455768,-11.045569],[-68.451068,-11.046069],[-68.447068,-11.046069],[-68.443868,-11.045569],[-68.443068,-11.042769],[-68.439968,-11.040269],[-68.438068,-11.036269],[-68.435468,-11.033769],[-68.433068,-11.031769],[-68.429668,-11.032669],[-68.428068,-11.035369],[-68.426668,-11.038069],[-68.423668,-11.040669],[-68.419568,-11.040669],[-68.415968,-11.039569],[-68.412568,-11.042469],[-68.409868,-11.044969],[-68.409868,-11.048069],[-68.407668,-11.049969],[-68.404868,-11.053569],[-68.400668,-11.052569],[-68.396468,-11.051069],[-68.393168,-11.048569],[-68.390168,-11.044669],[-68.388268,-11.039469],[-68.387768,-11.035569],[-68.389368,-11.032269],[-68.390468,-11.029569],[-68.389668,-11.026769],[-68.388468,-11.023669],[-68.385968,-11.019269],[-68.382468,-11.017069],[-68.377768,-11.014369],[-68.372368,-11.012069],[-68.369368,-11.010769],[-68.366168,-11.009369],[-68.362868,-11.007469],[-68.358868,-11.005969],[-68.354568,-11.005169],[-68.351668,-11.004369],[-68.348368,-11.004469],[-68.344168,-11.005469],[-68.340368,-11.005769],[-68.337568,-11.007469],[-68.337068,-11.010669],[-68.333768,-11.012469],[-68.329568,-11.011769],[-68.326368,-11.009869],[-68.323568,-11.006269],[-68.322468,-11.002669],[-68.318768,-10.999069],[-68.314068,-10.997669],[-68.310468,-10.995869],[-68.308068,-10.992769],[-68.302468,-10.991069],[-68.298068,-10.990469],[-68.294168,-10.990569],[-68.288668,-10.988369],[-68.285868,-10.990369],[-68.282868,-10.990069],[-68.278768,-10.989369],[-68.276168,-10.987869],[-68.271868,-10.983569],[-68.270368,-10.978969],[-68.265968,-10.975669],[-68.262868,-10.975669],[-68.258568,-10.973069],[-68.254568,-10.969469],[-68.252768,-10.966969],[-68.250768,-10.963769],[-68.246868,-10.960469],[-68.242968,-10.959369],[-68.240068,-10.958169],[-68.237468,-10.955769],[-68.236668,-10.952869],[-68.233868,-10.949369],[-68.231968,-10.945969],[-68.230868,-10.943169],[-68.230568,-10.939669],[-68.230668,-10.935769],[-68.229468,-10.932969],[-68.229268,-10.929369],[-68.227068,-10.925369],[-68.228068,-10.921969],[-68.225968,-10.917169],[-68.224468,-10.914469],[-68.223068,-10.911369],[-68.219768,-10.909769],[-68.216268,-10.905869],[-68.211568,-10.905069],[-68.207968,-10.902569],[-68.206168,-10.897269],[-68.205068,-10.892169],[-68.203968,-10.887869],[-68.204368,-10.883869],[-68.205168,-10.879869],[-68.202468,-10.877969],[-68.200168,-10.875569],[-68.198768,-10.872969],[-68.197768,-10.870169],[-68.197368,-10.867169],[-68.196268,-10.864469],[-68.195568,-10.861669],[-68.194568,-10.858569],[-68.191268,-10.857469],[-68.186968,-10.857269],[-68.182968,-10.855569],[-68.180168,-10.852569],[-68.177868,-10.850069],[-68.176968,-10.847269],[-68.174768,-10.844869],[-68.173968,-10.841469],[-68.171768,-10.838469],[-68.168868,-10.837269],[-68.165668,-10.835069],[-68.162868,-10.832669],[-68.159868,-10.829669],[-68.157368,-10.826369],[-68.156268,-10.823569],[-68.153168,-10.821369],[-68.150068,-10.819569],[-68.146868,-10.817069],[-68.143968,-10.814569],[-68.141868,-10.811569],[-68.139268,-10.807969],[-68.136368,-10.807169],[-68.133768,-10.804669],[-68.130468,-10.800269],[-68.127168,-10.797269],[-68.124668,-10.793869],[-68.122768,-10.791069],[-68.119468,-10.788169],[-68.116568,-10.783369],[-68.112568,-10.782069],[-68.109468,-10.780369],[-68.106668,-10.778669],[-68.104268,-10.774769],[-68.104468,-10.770369],[-68.105268,-10.766869],[-68.105668,-10.762369],[-68.102768,-10.759569],[-68.102768,-10.755969],[-68.101368,-10.753269],[-68.099168,-10.751369],[-68.098068,-10.747769],[-68.100368,-10.744769],[-68.103068,-10.740869],[-68.104968,-10.737569],[-68.105568,-10.734269],[-68.106168,-10.731469],[-68.106068,-10.727569],[-68.107568,-10.724569],[-68.105568,-10.721269],[-68.105268,-10.717269],[-68.103868,-10.714769],[-68.101368,-10.712069],[-68.097768,-10.709869],[-68.095368,-10.707669],[-68.095968,-10.704369],[-68.092668,-10.704269],[-68.088968,-10.700769],[-68.085868,-10.696369],[-68.081268,-10.693469],[-68.078568,-10.690469],[-68.076768,-10.687969],[-68.076368,-10.684869],[-68.071868,-10.684469],[-68.066568,-10.683669],[-68.064068,-10.681169],[-68.062468,-10.677169],[-68.058668,-10.674969],[-68.055268,-10.671469],[-68.051568,-10.671069],[-68.047568,-10.671369],[-68.043168,-10.669569],[-68.039168,-10.668169],[-68.035868,-10.666669],[-68.032868,-10.665369],[-68.030668,-10.662869],[-68.032368,-10.660569],[-68.031268,-10.656269],[-68.027268,-10.656569],[-68.023768,-10.654469],[-68.021768,-10.650969],[-68.015068,-10.649869],[-68.011368,-10.648269],[-68.008768,-10.650069],[-68.004568,-10.650469],[-68.002368,-10.647669],[-68.000168,-10.649769],[-67.996668,-10.650869],[-67.992968,-10.651769],[-67.988668,-10.653369],[-67.985368,-10.655169],[-67.981668,-10.657269],[-67.978568,-10.660869],[-67.974568,-10.660569],[-67.971468,-10.658369],[-67.970668,-10.655569],[-67.965968,-10.654069],[-67.962868,-10.651269],[-67.959568,-10.649269],[-67.954568,-10.649869],[-67.951568,-10.652269],[-67.948168,-10.651469],[-67.943568,-10.653369],[-67.940468,-10.655069],[-67.936968,-10.655069],[-67.933268,-10.654769],[-67.928668,-10.654869],[-67.925568,-10.652369],[-67.922268,-10.651569],[-67.917768,-10.651769],[-67.913668,-10.649069],[-67.911968,-10.645669],[-67.909168,-10.642369],[-67.903768,-10.641769],[-67.900368,-10.643469],[-67.897068,-10.644269],[-67.895068,-10.646769],[-67.890468,-10.644369],[-67.889268,-10.640669],[-67.885168,-10.640669],[-67.882368,-10.640069],[-67.877368,-10.640169],[-67.876068,-10.643269],[-67.872668,-10.642869],[-67.868868,-10.641869],[-67.864768,-10.640769],[-67.860268,-10.643469],[-67.857768,-10.646069],[-67.854168,-10.647869],[-67.849568,-10.647869],[-67.844568,-10.649769],[-67.840368,-10.651369],[-67.836168,-10.650069],[-67.833268,-10.650969],[-67.830068,-10.651869],[-67.826568,-10.651569],[-67.822468,-10.654469],[-67.818868,-10.656569],[-67.817668,-10.660669],[-67.814068,-10.663669],[-67.809468,-10.661969],[-67.807568,-10.665969],[-67.804368,-10.667569],[-67.801668,-10.669169],[-67.797868,-10.670569],[-67.794668,-10.674269],[-67.791468,-10.676869],[-67.786968,-10.676069],[-67.782268,-10.676669],[-67.780068,-10.678569],[-67.777368,-10.680469],[-67.773968,-10.683669],[-67.769268,-10.685469],[-67.765068,-10.687669],[-67.762068,-10.684769],[-67.758168,-10.685169],[-67.756268,-10.687669],[-67.755268,-10.691969],[-67.752968,-10.695169],[-67.749468,-10.696569],[-67.745068,-10.697169],[-67.744068,-10.700269],[-67.743668,-10.703269],[-67.742768,-10.707569],[-67.739768,-10.707069],[-67.737968,-10.709369],[-67.735068,-10.711569],[-67.730668,-10.711769],[-67.727368,-10.708569],[-67.725068,-10.706269],[-67.720968,-10.709269],[-67.716568,-10.708469],[-67.712868,-10.707369],[-67.708468,-10.707569],[-67.707868,-10.704369],[-67.706468,-10.700769],[-67.702668,-10.692069],[-67.676868,-10.607869],[-67.675368,-10.603069],[-67.672168,-10.604969],[-67.668368,-10.608269],[-67.663468,-10.612769],[-67.658968,-10.614469],[-67.654268,-10.611069],[-67.647868,-10.604969],[-67.643468,-10.600969],[-67.640368,-10.598669],[-67.637668,-10.594869],[-67.636468,-10.590469],[-67.636268,-10.584569],[-67.634668,-10.581169],[-67.631368,-10.578469],[-67.623068,-10.573469],[-67.619968,-10.572369],[-67.615068,-10.567369],[-67.612168,-10.562669],[-67.611168,-10.557169],[-67.609668,-10.552869],[-67.607568,-10.548169],[-67.605268,-10.544169],[-67.601368,-10.538369],[-67.599268,-10.533669],[-67.597368,-10.528769],[-67.595868,-10.523969],[-67.593968,-10.518969],[-67.591268,-10.515069],[-67.588968,-10.510769],[-67.583968,-10.507469],[-67.579668,-10.504069],[-67.575468,-10.501869],[-67.570168,-10.501869],[-67.567368,-10.499369],[-67.562968,-10.498069],[-67.560768,-10.496069],[-67.556568,-10.496169],[-67.554068,-10.494369],[-67.551668,-10.492469],[-67.547868,-10.489469],[-67.543868,-10.489669],[-67.539968,-10.488669],[-67.535168,-10.488669],[-67.530368,-10.490469],[-67.527268,-10.491069],[-67.519668,-10.490769],[-67.516468,-10.488269],[-67.515668,-10.482169],[-67.513468,-10.478469],[-67.508868,-10.475569],[-67.505468,-10.472569],[-67.501668,-10.470969],[-67.497468,-10.471669],[-67.494668,-10.472269],[-67.491068,-10.472369],[-67.487868,-10.470669],[-67.483368,-10.469069],[-67.479268,-10.468369],[-67.476368,-10.466969],[-67.474168,-10.464269],[-67.471268,-10.461169],[-67.467068,-10.460069],[-67.464068,-10.459769],[-67.458468,-10.458769],[-67.453268,-10.457969],[-67.448868,-10.455369],[-67.444168,-10.453569],[-67.440468,-10.449269],[-67.435868,-10.446569],[-67.436668,-10.442669],[-67.436368,-10.438769],[-67.432968,-10.435169],[-67.430868,-10.431169],[-67.428268,-10.427969],[-67.423868,-10.428869],[-67.419568,-10.429169],[-67.415868,-10.426969],[-67.413468,-10.425069],[-67.413868,-10.422169],[-67.411968,-10.418469],[-67.412868,-10.414569],[-67.413368,-10.410669],[-67.414468,-10.406269],[-67.414468,-10.401169],[-67.417768,-10.397569],[-67.421868,-10.396269],[-67.423268,-10.393269],[-67.421168,-10.388569],[-67.416668,-10.384569],[-67.413168,-10.381369],[-67.410868,-10.378269],[-67.409168,-10.375469],[-67.405668,-10.372969],[-67.401968,-10.372669],[-67.399068,-10.371369],[-67.397668,-10.374169],[-67.395968,-10.376669],[-67.393768,-10.374769],[-67.389568,-10.376969],[-67.384168,-10.379069],[-67.379068,-10.381369],[-67.374668,-10.380769],[-67.371368,-10.379969],[-67.368268,-10.376569],[-67.364168,-10.378569],[-67.362568,-10.381869],[-67.360868,-10.384169],[-67.358568,-10.387869],[-67.355568,-10.391369],[-67.351968,-10.391569],[-67.353068,-10.387369],[-67.353468,-10.382769],[-67.351668,-10.379169],[-67.348068,-10.377969],[-67.344168,-10.376069],[-67.339368,-10.376269],[-67.336968,-10.377969],[-67.333768,-10.378769],[-67.331468,-10.381369],[-67.328268,-10.382369],[-67.324068,-10.380569],[-67.319568,-10.379869],[-67.317068,-10.376369],[-67.313268,-10.376269],[-67.311268,-10.372969],[-67.312768,-10.370069],[-67.314668,-10.367969],[-67.316968,-10.365569],[-67.316368,-10.361669],[-67.317968,-10.358569],[-67.316368,-10.355269],[-67.315568,-10.347069],[-67.317668,-10.344169],[-67.320268,-10.340869],[-67.324968,-10.337969],[-67.327068,-10.334369],[-67.325668,-10.330369],[-67.324068,-10.327069],[-67.321368,-10.324069],[-67.321568,-10.321069],[-67.317668,-10.320469],[-67.314868,-10.317769],[-67.311268,-10.319869],[-67.308068,-10.320969],[-67.305268,-10.321769],[-67.302168,-10.323169],[-67.300068,-10.320469],[-67.296668,-10.320969],[-67.294968,-10.323269],[-67.291468,-10.323269],[-67.289168,-10.320169],[-67.285568,-10.319269],[-67.280968,-10.320269],[-67.276168,-10.321569],[-67.273968,-10.324569],[-67.270368,-10.324869],[-67.268168,-10.327069],[-67.265668,-10.331169],[-67.262068,-10.330769],[-67.257668,-10.328869],[-67.254068,-10.327869],[-67.250968,-10.326769],[-67.247768,-10.324569],[-67.243368,-10.323169],[-67.241468,-10.319069],[-67.238068,-10.318769],[-67.235068,-10.316069],[-67.231668,-10.315469],[-67.227568,-10.316069],[-67.224268,-10.314869],[-67.222068,-10.316669],[-67.220568,-10.319969],[-67.217268,-10.322369],[-67.212268,-10.323169],[-67.209068,-10.322869],[-67.205668,-10.322869],[-67.202068,-10.322069],[-67.198768,-10.323269],[-67.195968,-10.325369],[-67.192768,-10.329069],[-67.190968,-10.333269],[-67.188768,-10.337569],[-67.184968,-10.337869],[-67.182168,-10.338669],[-67.178968,-10.339369],[-67.175568,-10.338669],[-67.171368,-10.337669],[-67.167168,-10.335669],[-67.164768,-10.333569],[-67.163168,-10.329969],[-67.159868,-10.328769],[-67.156568,-10.328569],[-67.153368,-10.327469],[-67.149768,-10.325769],[-67.146868,-10.323469],[-67.145068,-10.325969],[-67.142168,-10.322969],[-67.140168,-10.319069],[-67.138968,-10.315869],[-67.136368,-10.318069],[-67.132968,-10.316269],[-67.128868,-10.315169],[-67.130768,-10.312269],[-67.133568,-10.309869],[-67.136368,-10.309369],[-67.139568,-10.308769],[-67.139568,-10.305469],[-67.137968,-10.302469],[-67.137368,-10.298869],[-67.135668,-10.296169],[-67.132768,-10.294569],[-67.129368,-10.292269],[-67.124768,-10.290569],[-67.120868,-10.292269],[-67.117168,-10.292569],[-67.113268,-10.291169],[-67.109968,-10.288669],[-67.106368,-10.287369],[-67.102768,-10.285569],[-67.099568,-10.285569],[-67.098068,-10.282269],[-67.093168,-10.283769],[-67.088768,-10.285569],[-67.088968,-10.288969],[-67.085468,-10.289869],[-67.082368,-10.288069],[-67.079068,-10.288369],[-67.075968,-10.284769],[-67.072068,-10.284269],[-67.068468,-10.283469],[-67.065268,-10.282269],[-67.061868,-10.280869],[-67.058668,-10.278769],[-67.055768,-10.278669],[-67.051868,-10.276469],[-67.048568,-10.274569],[-67.051568,-10.271769],[-67.051168,-10.267169],[-67.047268,-10.265369],[-67.043668,-10.265969],[-67.042168,-10.263269],[-67.039168,-10.262069],[-67.035168,-10.263469],[-67.032868,-10.259969],[-67.030568,-10.256769],[-67.027268,-10.257169],[-67.023468,-10.256069],[-67.019268,-10.255169],[-67.015668,-10.256769],[-67.012668,-10.254669],[-67.009968,-10.251669],[-67.009568,-10.247969],[-67.006868,-10.245469],[-67.004868,-10.241169],[-67.005968,-10.237569],[-67.006368,-10.233969],[-67.004468,-10.230569],[-67.000468,-10.229169],[-66.998368,-10.231669],[-66.995168,-10.229169],[-66.993568,-10.223769],[-66.988968,-10.221469],[-66.989468,-10.218169],[-66.994668,-10.218369],[-66.997668,-10.218969],[-66.999068,-10.215669],[-66.997268,-10.211969],[-66.993868,-10.209669],[-66.993868,-10.205769],[-66.996168,-10.203569],[-66.995868,-10.199669],[-66.992268,-10.198969],[-66.992168,-10.202669],[-66.988368,-10.201369],[-66.984668,-10.198569],[-66.981068,-10.195469],[-66.974868,-10.195769],[-66.977568,-10.192069],[-66.979768,-10.189469],[-66.975568,-10.188769],[-66.971968,-10.191669],[-66.968768,-10.191669],[-66.966268,-10.189969],[-66.963968,-10.186869],[-66.959968,-10.183969],[-66.955068,-10.188269],[-66.951468,-10.186169],[-66.950668,-10.181669],[-66.949968,-10.177169],[-66.948568,-10.173369],[-66.947668,-10.169269],[-66.946268,-10.164469],[-66.946368,-10.160069],[-66.944868,-10.157669],[-66.941368,-10.155069],[-66.937768,-10.154169],[-66.933568,-10.153069],[-66.933368,-10.148169],[-66.929368,-10.147169],[-66.925868,-10.145169],[-66.923568,-10.142969],[-66.920268,-10.144269],[-66.916368,-10.144569],[-66.911968,-10.146569],[-66.910568,-10.141269],[-66.911168,-10.138469],[-66.913468,-10.136069],[-66.917068,-10.134869],[-66.917168,-10.129869],[-66.913868,-10.128769],[-66.912268,-10.131269],[-66.909168,-10.129869],[-66.908768,-10.125269],[-66.902968,-10.126069],[-66.901168,-10.123069],[-66.897868,-10.121669],[-66.897068,-10.118269],[-66.897268,-10.115069],[-66.897968,-10.111669],[-66.895068,-10.109969],[-66.892068,-10.112569],[-66.889068,-10.114069],[-66.888768,-10.110269],[-66.888968,-10.105369],[-66.888568,-10.101769],[-66.886468,-10.099469],[-66.885668,-10.103569],[-66.883768,-10.107069],[-66.880268,-10.104669],[-66.881268,-10.100369],[-66.878268,-10.097369],[-66.876668,-10.100069],[-66.873268,-10.100569],[-66.871868,-10.093769],[-66.874068,-10.091269],[-66.872968,-10.087569],[-66.875468,-10.083969],[-66.873368,-10.080769],[-66.869668,-10.080969],[-66.866168,-10.083169],[-66.860368,-10.082669],[-66.855368,-10.083269],[-66.851368,-10.081769],[-66.852068,-10.085169],[-66.849168,-10.085169],[-66.844868,-10.085069],[-66.841168,-10.083669],[-66.837868,-10.081269],[-66.839068,-10.076869],[-66.839568,-10.073269],[-66.840068,-10.069669],[-66.835068,-10.066669],[-66.836568,-10.063769],[-66.835468,-10.060869],[-66.832168,-10.059069],[-66.826568,-10.059669],[-66.822368,-10.058369],[-66.819868,-10.055869],[-66.817968,-10.052169],[-66.812468,-10.048869],[-66.808668,-10.048569],[-66.806568,-10.044769],[-66.802268,-10.043069],[-66.805768,-10.040269],[-66.807168,-10.037769],[-66.802468,-10.034869],[-66.800268,-10.032069],[-66.797468,-10.028769],[-66.793868,-10.027269],[-66.792268,-10.024369],[-66.789968,-10.021069],[-66.786268,-10.020369],[-66.778968,-10.016869],[-66.775068,-10.018269],[-66.771768,-10.018669],[-66.772068,-10.015169],[-66.772968,-10.011469],[-66.771168,-10.008769],[-66.768468,-10.007669],[-66.765668,-10.006369],[-66.764568,-10.002969],[-66.764568,-9.999069],[-66.760968,-9.997969],[-66.757068,-9.998569],[-66.754068,-9.998269],[-66.752368,-9.994669],[-66.748368,-9.993369],[-66.743268,-9.995469],[-66.739368,-9.993569],[-66.737468,-9.991469],[-66.735068,-9.987169],[-66.734968,-9.983969],[-66.732868,-9.981169],[-66.729268,-9.979769],[-66.725868,-9.980669],[-66.721968,-9.981369],[-66.722668,-9.978069],[-66.720968,-9.974969],[-66.718768,-9.973069],[-66.715868,-9.974169],[-66.713668,-9.977069],[-66.709268,-9.975969],[-66.704568,-9.974769],[-66.698568,-9.970969],[-66.695468,-9.968369],[-66.691668,-9.965569],[-66.687968,-9.965569],[-66.684868,-9.964869],[-66.680468,-9.965369],[-66.676368,-9.966269],[-66.676168,-9.962069],[-66.677168,-9.957569],[-66.673868,-9.956069],[-66.669968,-9.957369],[-66.668968,-9.952669],[-66.667468,-9.949569],[-66.664568,-9.948469],[-66.666368,-9.945469],[-66.665868,-9.942369],[-66.664968,-9.939569],[-66.663368,-9.936869],[-66.660168,-9.935769],[-66.656768,-9.935169],[-66.654768,-9.938869],[-66.651968,-9.935869],[-66.650468,-9.940569],[-66.648468,-9.943869],[-66.645768,-9.945169],[-66.642568,-9.945269],[-66.641068,-9.948469],[-66.637768,-9.948969],[-66.637068,-9.945769],[-66.635768,-9.940869],[-66.632768,-9.935769],[-66.629868,-9.935569],[-66.626368,-9.931869],[-66.631668,-9.928069],[-66.635268,-9.926169],[-66.633468,-9.921069],[-66.627968,-9.919269],[-66.628468,-9.915269],[-66.633768,-9.912869],[-66.632668,-9.908769],[-66.628268,-9.906169],[-66.624368,-9.904469],[-66.626568,-9.899569],[-66.623368,-9.896769],[-66.620268,-9.894669],[-66.616168,-9.894869],[-66.608968,-9.895169],[-66.603168,-9.897369],[-66.600368,-9.898169],[-66.591668,-9.899069],[-66.587568,-9.900369],[-66.581268,-9.905369],[-66.579268,-9.901869],[-66.578768,-9.894769],[-66.576468,-9.892969],[-66.574268,-9.890069],[-66.570968,-9.892669],[-66.567368,-9.894569],[-66.564568,-9.890969],[-66.562268,-9.888169],[-66.565968,-9.886269],[-66.564568,-9.883469],[-66.560468,-9.880969],[-66.553268,-9.885969],[-66.548868,-9.888769],[-66.546068,-9.885469],[-66.547268,-9.882769],[-66.545268,-9.880569],[-66.543168,-9.877669],[-66.538468,-9.882069],[-66.533668,-9.885169],[-66.527968,-9.887069],[-66.520068,-9.885169],[-66.515768,-9.882369],[-66.513768,-9.876569],[-66.510668,-9.876669],[-66.499468,-9.876269],[-66.501268,-9.881269],[-66.496268,-9.883769],[-66.491068,-9.882469],[-66.491168,-9.879069],[-66.489168,-9.875169],[-66.488068,-9.869769],[-66.482168,-9.868669],[-66.477068,-9.868669],[-66.471668,-9.868569],[-66.467868,-9.871069],[-66.464868,-9.875769],[-66.460668,-9.878569],[-66.455368,-9.879169],[-66.458668,-9.874469],[-66.453968,-9.870869],[-66.448768,-9.871869],[-66.445168,-9.871369],[-66.440168,-9.869469],[-66.437668,-9.866969],[-66.434768,-9.866069],[-66.430768,-9.867669],[-66.426868,-9.870769],[-66.424768,-9.873669],[-66.428268,-9.883869],[-66.432168,-9.891869],[-66.431568,-9.894769],[-66.427168,-9.899269],[-66.419968,-9.898269],[-66.413468,-9.895069],[-66.419468,-9.895169],[-66.423568,-9.891769],[-66.422468,-9.887169],[-66.417768,-9.883469],[-66.411968,-9.880969],[-66.409468,-9.874669],[-66.407668,-9.871969],[-66.402668,-9.868269],[-66.403968,-9.864969],[-66.395168,-9.864169],[-66.382168,-9.867769],[-66.371868,-9.866369],[-66.366668,-9.866069],[-66.363668,-9.865369],[-66.359368,-9.865369],[-66.357268,-9.857569],[-66.356368,-9.854469],[-66.356368,-9.851169],[-66.355568,-9.848369],[-66.351668,-9.847269],[-66.350968,-9.841269],[-66.346168,-9.839269],[-66.340868,-9.840569],[-66.337568,-9.840669],[-66.334268,-9.839769],[-66.328168,-9.836869],[-66.320668,-9.837069],[-66.317368,-9.835369],[-66.315168,-9.831769],[-66.311268,-9.836269],[-66.306868,-9.839869],[-66.304368,-9.835369],[-66.301568,-9.837669],[-66.295268,-9.840669],[-66.290668,-9.841469],[-66.286668,-9.844569],[-66.282268,-9.840869],[-66.282268,-9.831869],[-66.278668,-9.828569],[-66.275368,-9.827669],[-66.275468,-9.834269],[-66.262168,-9.830769],[-66.257668,-9.833469],[-66.253868,-9.832669],[-66.249768,-9.827569],[-66.248568,-9.821869],[-66.242968,-9.822169],[-66.239668,-9.816669],[-66.237168,-9.814569],[-66.234768,-9.816669],[-66.228068,-9.820269],[-66.219768,-9.827869],[-66.214268,-9.833269],[-66.210668,-9.834869],[-66.204868,-9.834869],[-66.199968,-9.831769],[-66.197168,-9.830669],[-66.194168,-9.827869],[-66.197368,-9.823869],[-66.194968,-9.819969],[-66.188368,-9.824269],[-66.185868,-9.821369],[-66.189968,-9.818269],[-66.192168,-9.815569],[-66.196768,-9.813569],[-66.193868,-9.805469],[-66.186868,-9.805469],[-66.181068,-9.803569],[-66.176968,-9.803369],[-66.176468,-9.799169],[-66.173168,-9.793969],[-66.168068,-9.791069],[-66.163068,-9.790269],[-66.159868,-9.787769],[-66.155568,-9.787069],[-66.151468,-9.785969],[-66.147868,-9.786769],[-66.145368,-9.790869],[-66.142068,-9.788669],[-66.136768,-9.788669],[-66.133168,-9.789869],[-66.130168,-9.788969],[-66.127668,-9.786469],[-66.124168,-9.787769],[-66.123268,-9.790669],[-66.117968,-9.789969],[-66.114668,-9.788469],[-66.110268,-9.789269],[-66.110368,-9.785569],[-66.105268,-9.783069],[-66.100268,-9.784769],[-66.097768,-9.787069],[-66.097768,-9.791369],[-66.100268,-9.798269],[-66.101368,-9.803269],[-66.100668,-9.806869],[-66.097368,-9.811569],[-66.091468,-9.813269],[-66.086568,-9.804969],[-66.083668,-9.799269],[-66.079268,-9.794769],[-66.084868,-9.792569],[-66.087268,-9.790869],[-66.079268,-9.786469],[-66.069868,-9.784469],[-66.059368,-9.785969],[-66.053268,-9.784769],[-66.044968,-9.785669],[-66.040668,-9.786969],[-66.035668,-9.787069],[-66.033168,-9.788869],[-66.030168,-9.801669],[-66.028068,-9.806669],[-66.025068,-9.811569],[-66.019268,-9.811369],[-66.013568,-9.804669],[-66.009968,-9.801169],[-66.002168,-9.795069],[-65.999068,-9.794769],[-65.999068,-9.800369],[-65.995868,-9.804069],[-65.992268,-9.803869],[-65.989068,-9.801669],[-65.984968,-9.806169],[-65.981068,-9.807969],[-65.981368,-9.802169],[-65.974768,-9.803069],[-65.965868,-9.804469],[-65.963968,-9.801969],[-65.970068,-9.799269],[-65.973668,-9.798169],[-65.974168,-9.793669],[-65.974968,-9.790569],[-65.974768,-9.785669],[-65.973368,-9.780969],[-65.972868,-9.776469],[-65.970568,-9.774469],[-65.966568,-9.770469],[-65.961768,-9.770769],[-65.957268,-9.769369],[-65.952468,-9.768169],[-65.949068,-9.763969],[-65.946268,-9.762669],[-65.943768,-9.760169],[-65.939968,-9.761269],[-65.938568,-9.765669],[-65.935868,-9.768969],[-65.930768,-9.767169],[-65.927168,-9.762969],[-65.922468,-9.762669],[-65.925268,-9.759369],[-65.922768,-9.756769],[-65.922468,-9.753369],[-65.918868,-9.752669],[-65.914868,-9.754669],[-65.915568,-9.761869],[-65.913068,-9.764069],[-65.908868,-9.764869],[-65.902368,-9.766069],[-65.899768,-9.760769],[-65.890068,-9.757069],[-65.887868,-9.754069],[-65.884668,-9.752169],[-65.881268,-9.751969],[-65.876868,-9.752769],[-65.870868,-9.754169],[-65.868868,-9.760669],[-65.864668,-9.765469],[-65.862168,-9.768169],[-65.865068,-9.770769],[-65.868268,-9.773169],[-65.869168,-9.775869],[-65.868268,-9.782569],[-65.871068,-9.785969],[-65.871868,-9.789869],[-65.868568,-9.793069],[-65.864968,-9.794469],[-65.860568,-9.795069],[-65.853068,-9.793969],[-65.850968,-9.791769],[-65.846668,-9.789469],[-65.841668,-9.789469],[-65.843668,-9.784769],[-65.834368,-9.775969],[-65.829268,-9.766769],[-65.821368,-9.767069],[-65.819668,-9.763969],[-65.819668,-9.756369],[-65.816068,-9.754869],[-65.812468,-9.757169],[-65.807968,-9.761769],[-65.802168,-9.756569],[-65.799368,-9.757669],[-65.802468,-9.766569],[-65.806568,-9.768969],[-65.811268,-9.769569],[-65.813068,-9.771769],[-65.811068,-9.776769],[-65.807968,-9.781269],[-65.805768,-9.788069],[-65.802568,-9.789469],[-65.797168,-9.786269],[-65.795268,-9.791169],[-65.790668,-9.788169],[-65.784568,-9.786769],[-65.781768,-9.783069],[-65.780868,-9.780069],[-65.780168,-9.770969],[-65.775368,-9.765669],[-65.777568,-9.758069],[-65.779468,-9.749069],[-65.779768,-9.741669],[-65.777868,-9.736769],[-65.775068,-9.734969],[-65.770768,-9.734369],[-65.767168,-9.736369],[-65.766568,-9.739669],[-65.768568,-9.743569],[-65.769568,-9.746869],[-65.771568,-9.750969],[-65.771868,-9.755969],[-65.771768,-9.758869],[-65.765368,-9.762169],[-65.756568,-9.766469],[-65.751268,-9.776469],[-65.744968,-9.781769],[-65.739468,-9.781969],[-65.736768,-9.778669],[-65.736168,-9.767869],[-65.734168,-9.763569],[-65.728968,-9.759569],[-65.722768,-9.756569],[-65.718768,-9.755969],[-65.714768,-9.755769],[-65.705168,-9.757069],[-65.696768,-9.750169],[-65.692768,-9.749369],[-65.686268,-9.749369],[-65.684468,-9.752069],[-65.684968,-9.757169],[-65.685768,-9.760969],[-65.682768,-9.761769],[-65.679068,-9.761069],[-65.680568,-9.766369],[-65.685168,-9.768969],[-65.689168,-9.768769],[-65.694668,-9.766869],[-65.700168,-9.764369],[-65.704968,-9.763969],[-65.708168,-9.765969],[-65.709568,-9.771569],[-65.703268,-9.779269],[-65.701368,-9.782769],[-65.699968,-9.789169],[-65.700968,-9.792469],[-65.708168,-9.800769],[-65.710368,-9.804369],[-65.710468,-9.807269],[-65.700168,-9.809069],[-65.693868,-9.812669],[-65.689068,-9.811869],[-65.691068,-9.806569],[-65.690168,-9.800769],[-65.681868,-9.793569],[-65.679768,-9.791369],[-65.673268,-9.782669],[-65.669968,-9.781169],[-65.666368,-9.782669],[-65.664468,-9.786469],[-65.663168,-9.790569],[-65.658868,-9.793469],[-65.652268,-9.791769],[-65.646468,-9.791769],[-65.643968,-9.795069],[-65.645668,-9.799169],[-65.652068,-9.804969],[-65.653668,-9.808669],[-65.651568,-9.813869],[-65.648268,-9.815969],[-65.641268,-9.807269],[-65.637668,-9.804669],[-65.634568,-9.806069],[-65.632968,-9.809869],[-65.633568,-9.816669],[-65.633168,-9.823569],[-65.632168,-9.830069],[-65.630468,-9.834269],[-65.626568,-9.836769],[-65.623768,-9.835969],[-65.618668,-9.832369],[-65.615568,-9.830769],[-65.613268,-9.828569],[-65.606768,-9.824969],[-65.600568,-9.824269],[-65.597868,-9.826569],[-65.599168,-9.835869],[-65.598768,-9.839069],[-65.595868,-9.841969],[-65.591568,-9.841469],[-65.585768,-9.839869],[-65.574868,-9.838269],[-65.568868,-9.838169],[-65.563068,-9.843469],[-65.559068,-9.844569],[-65.554668,-9.841969],[-65.553268,-9.838769],[-65.552968,-9.835369],[-65.554068,-9.831869],[-65.564068,-9.820569],[-65.565468,-9.816569],[-65.565568,-9.813069],[-65.563768,-9.810169],[-65.559368,-9.810769],[-65.556668,-9.808769],[-65.553968,-9.804769],[-65.548268,-9.804469],[-65.543168,-9.803969],[-65.539268,-9.801869],[-65.537268,-9.798869],[-65.535868,-9.788869],[-65.533668,-9.782369],[-65.530868,-9.781269],[-65.528768,-9.784269],[-65.526468,-9.787369],[-65.521868,-9.788369],[-65.518268,-9.791369],[-65.512468,-9.792769],[-65.508068,-9.788969],[-65.502768,-9.786369],[-65.499068,-9.781269],[-65.498268,-9.778369],[-65.498868,-9.775169],[-65.500468,-9.772569],[-65.503868,-9.768469],[-65.503768,-9.759369],[-65.504068,-9.747669],[-65.501268,-9.743269],[-65.501368,-9.733569],[-65.500268,-9.729169],[-65.491868,-9.729469],[-65.486168,-9.729169],[-65.482568,-9.726669],[-65.487768,-9.721369],[-65.489768,-9.714069],[-65.488568,-9.710369],[-65.485568,-9.707669],[-65.482468,-9.713469],[-65.474968,-9.714269],[-65.471768,-9.713669],[-65.465468,-9.710069],[-65.463168,-9.708269],[-65.460368,-9.706569],[-65.455968,-9.704069],[-65.450468,-9.700369],[-65.447068,-9.697069],[-65.443468,-9.692669],[-65.441368,-9.686269],[-65.442668,-9.678669],[-65.446668,-9.673869],[-65.446368,-9.669269],[-65.443468,-9.669269],[-65.440768,-9.670769],[-65.431068,-9.674669],[-65.421768,-9.677269],[-65.413668,-9.678669],[-65.400068,-9.683569],[-65.394868,-9.685769],[-65.391568,-9.687669],[-65.378268,-9.697069],[-65.368268,-9.706769],[-65.363668,-9.711569],[-65.356768,-9.720069],[-65.354568,-9.723669],[-65.351368,-9.731469],[-65.348168,-9.741669],[-65.343068,-9.753469],[-65.339768,-9.758769],[-65.336868,-9.764569],[-65.331768,-9.772369],[-65.327968,-9.780069],[-65.326768,-9.783969],[-65.324868,-9.797469],[-65.322068,-9.811269],[-65.320468,-9.814469],[-65.317668,-9.817769],[-65.307268,-9.823569],[-65.301168,-9.827969],[-65.298068,-9.829569],[-65.292868,-9.833269],[-65.289768,-9.836269],[-65.286968,-9.840869],[-65.285968,-9.845569],[-65.285968,-9.853369],[-65.286668,-9.858569],[-65.288468,-9.865769],[-65.291368,-9.871569],[-65.295768,-9.878369],[-65.299368,-9.882069],[-65.306968,-9.887869],[-65.312168,-9.893169],[-65.316568,-9.898969],[-65.321268,-9.905969],[-65.328468,-9.921169],[-65.331768,-9.929969],[-65.333268,-9.937469],[-65.332868,-9.943569],[-65.332068,-9.949069],[-65.331768,-9.952369],[-65.332568,-9.957369],[-65.333168,-9.964569],[-65.330768,-9.968769],[-65.325468,-9.972769],[-65.323468,-9.974969],[-65.322168,-9.977569],[-65.321868,-9.984669],[-65.321268,-9.992269],[-65.321268,-9.997769],[-65.320268,-10.001669],[-65.321868,-10.009269],[-65.322868,-10.013969],[-65.324068,-10.021469],[-65.325968,-10.028769],[-65.326768,-10.032369],[-65.327868,-10.036669],[-65.329268,-10.043169],[-65.329568,-10.047469],[-65.329568,-10.052569],[-65.328968,-10.055769],[-65.327468,-10.061869],[-65.325768,-10.066569],[-65.323568,-10.070969],[-65.319868,-10.079569],[-65.318168,-10.081869],[-65.315268,-10.085969],[-65.311968,-10.089469],[-65.309168,-10.091669],[-65.303968,-10.094769],[-65.301668,-10.097369],[-65.300568,-10.100869],[-65.300268,-10.104769],[-65.300568,-10.110369],[-65.302168,-10.121969],[-65.301668,-10.127469],[-65.301068,-10.130769],[-65.300368,-10.136069],[-65.300268,-10.139369],[-65.301168,-10.144369],[-65.302768,-10.149369],[-65.305768,-10.156169],[-65.306868,-10.159469],[-65.306868,-10.166369],[-65.305768,-10.172169],[-65.304668,-10.176569],[-65.303368,-10.182169],[-65.301168,-10.187269],[-65.299768,-10.190469],[-65.298168,-10.193869],[-65.295368,-10.198269],[-65.293568,-10.201569],[-65.290868,-10.206469],[-65.289568,-10.209569],[-65.288868,-10.215169],[-65.289268,-10.220869],[-65.293168,-10.227769],[-65.294168,-10.231969],[-65.294468,-10.238269],[-65.296168,-10.240769],[-65.300468,-10.244469],[-65.304168,-10.247669],[-65.307468,-10.251269],[-65.309468,-10.255169],[-65.310868,-10.258169],[-65.312368,-10.263469],[-65.313568,-10.267169],[-65.315268,-10.271869],[-65.317068,-10.277369],[-65.317768,-10.281169],[-65.317968,-10.286269],[-65.319268,-10.291469],[-65.320968,-10.295769],[-65.323968,-10.300469],[-65.326368,-10.304069],[-65.331068,-10.309069],[-65.334568,-10.311869],[-65.337068,-10.314069],[-65.343468,-10.317769],[-65.347768,-10.322169],[-65.350668,-10.325969],[-65.353468,-10.330169],[-65.356168,-10.333569],[-65.358168,-10.336869],[-65.361668,-10.341669],[-65.363868,-10.343769],[-65.366068,-10.345869],[-65.371568,-10.349169],[-65.374868,-10.351269],[-65.378268,-10.355269],[-65.381668,-10.360869],[-65.384568,-10.364969],[-65.389368,-10.370069],[-65.391768,-10.375569],[-65.389668,-10.382469],[-65.388168,-10.385669],[-65.385668,-10.390769],[-65.383868,-10.393769],[-65.381268,-10.397869],[-65.380268,-10.400869],[-65.379068,-10.408969],[-65.379068,-10.416169],[-65.379868,-10.420369],[-65.380168,-10.424169],[-65.380168,-10.429669],[-65.383068,-10.432969],[-65.384268,-10.435569],[-65.386268,-10.439169],[-65.390368,-10.447469],[-65.392868,-10.450969],[-65.395768,-10.454069],[-65.400868,-10.460469],[-65.402868,-10.462669],[-65.405668,-10.464069],[-65.410868,-10.464069],[-65.416668,-10.462869],[-65.420668,-10.462969],[-65.423868,-10.465069],[-65.424668,-10.468369],[-65.425568,-10.471969],[-65.428668,-10.475969],[-65.429668,-10.481769],[-65.429168,-10.484969],[-65.427168,-10.488669],[-65.424668,-10.492969],[-65.419268,-10.497869],[-65.415268,-10.501569],[-65.413468,-10.504369],[-65.410568,-10.509569],[-65.410568,-10.512869],[-65.411968,-10.515369],[-65.414168,-10.518769],[-65.417768,-10.524369],[-65.419468,-10.527369],[-65.420068,-10.530569],[-65.419968,-10.535569],[-65.417868,-10.540369],[-65.415268,-10.543069],[-65.408368,-10.548569],[-65.405668,-10.551869],[-65.404468,-10.554769],[-65.403468,-10.561369],[-65.402668,-10.564169],[-65.402068,-10.568069],[-65.399068,-10.574869],[-65.397868,-10.579869],[-65.397168,-10.583269],[-65.397068,-10.586569],[-65.398368,-10.590169],[-65.402268,-10.592669],[-65.408468,-10.597369],[-65.410568,-10.602269],[-65.409868,-10.608869],[-65.409568,-10.613569],[-65.416468,-10.617669],[-65.416168,-10.621069],[-65.413668,-10.623869],[-65.412268,-10.627969],[-65.410068,-10.631269],[-65.405868,-10.634969],[-65.405168,-10.639569],[-65.403768,-10.642569],[-65.400468,-10.644369],[-65.395968,-10.645669],[-65.386068,-10.645469],[-65.379168,-10.645669],[-65.374668,-10.647069],[-65.371168,-10.648669],[-65.367668,-10.650669],[-65.361768,-10.654469],[-65.358968,-10.656669],[-65.355268,-10.661269],[-65.351768,-10.666669],[-65.349168,-10.671469],[-65.347868,-10.674969],[-65.346768,-10.678669],[-65.345968,-10.681569],[-65.345368,-10.686569],[-65.344568,-10.690769],[-65.343668,-10.699569],[-65.343368,-10.707269],[-65.343368,-10.715069],[-65.344468,-10.721669],[-65.346968,-10.731169],[-65.348168,-10.734969],[-65.349168,-10.738869],[-65.349468,-10.744069],[-65.348368,-10.748069],[-65.346768,-10.752969],[-65.345568,-10.757769],[-65.344768,-10.762169],[-65.344468,-10.765769],[-65.344768,-10.770369],[-65.346268,-10.774069],[-65.348068,-10.778369],[-65.350568,-10.780469],[-65.354168,-10.780969],[-65.358868,-10.779469],[-65.365368,-10.780869],[-65.367268,-10.785569],[-65.367668,-10.789869],[-65.367168,-10.794969],[-65.365068,-10.799269],[-65.362468,-10.801469],[-65.358068,-10.803269],[-65.354168,-10.805069],[-65.348468,-10.806869],[-65.343768,-10.807469],[-65.340068,-10.807669],[-65.337668,-10.809969],[-65.334768,-10.812769],[-65.330668,-10.815969],[-65.326268,-10.818769],[-65.323568,-10.820169],[-65.320968,-10.821869],[-65.317668,-10.824669],[-65.314368,-10.828469],[-65.310568,-10.833269],[-65.307168,-10.837869],[-65.304168,-10.841269],[-65.301468,-10.844169],[-65.298868,-10.847269],[-65.292768,-10.854169],[-65.289168,-10.857769],[-65.284568,-10.861469],[-65.282068,-10.864069],[-65.278768,-10.866369],[-65.276168,-10.869769],[-65.273468,-10.877469],[-65.271468,-10.884869],[-65.268968,-10.896769],[-65.268168,-10.904469],[-65.267168,-10.909769],[-65.266568,-10.915669],[-65.266468,-10.918669],[-65.267468,-10.922569],[-65.274068,-10.922469],[-65.277668,-10.920669],[-65.280168,-10.919169],[-65.284468,-10.919769],[-65.285968,-10.922869],[-65.285868,-10.926569],[-65.283868,-10.931669],[-65.280568,-10.936969],[-65.278468,-10.939669],[-65.274768,-10.943569],[-65.272968,-10.948969],[-65.271868,-10.952869],[-65.269568,-10.958269],[-65.267068,-10.962969],[-65.263968,-10.966669],[-65.261768,-10.968769],[-65.257968,-10.973169],[-65.255268,-10.976969],[-65.252968,-10.980669],[-65.250568,-10.984969],[-65.250268,-10.987869],[-65.250968,-10.990769],[-65.252768,-10.992969],[-65.254968,-10.994769],[-65.257668,-10.996369],[-65.262368,-10.998069],[-65.265768,-10.999369],[-65.269368,-11.000169],[-65.272968,-11.003569],[-65.277268,-11.007369],[-65.281168,-11.010669],[-65.285668,-11.015169],[-65.288868,-11.018169],[-65.292568,-11.021569],[-65.294768,-11.023669],[-65.297168,-11.025969],[-65.300768,-11.031169],[-65.301668,-11.035569],[-65.300768,-11.038769],[-65.298368,-11.041369],[-65.295368,-11.044669],[-65.292468,-11.047869],[-65.289968,-11.050469],[-65.285868,-11.055069],[-65.283068,-11.058269],[-65.281768,-11.060869],[-65.280868,-11.063569],[-65.279568,-11.069669],[-65.279468,-11.074869],[-65.279768,-11.079069],[-65.280868,-11.082369],[-65.284268,-11.089569],[-65.287268,-11.092969],[-65.293568,-11.095669],[-65.303668,-11.097669],[-65.307468,-11.098469],[-65.311568,-11.099569],[-65.315168,-11.100569],[-65.317968,-11.101369],[-65.321068,-11.102369],[-65.325768,-11.104169],[-65.328768,-11.105569],[-65.332068,-11.107069],[-65.335468,-11.109469],[-65.338968,-11.111969],[-65.343768,-11.115769],[-65.347368,-11.118369],[-65.350568,-11.120869],[-65.353368,-11.123869],[-65.356368,-11.127069],[-65.358268,-11.130469],[-65.361468,-11.134869],[-65.362768,-11.137769],[-65.363868,-11.142069],[-65.363668,-11.146169],[-65.361968,-11.150869],[-65.360268,-11.155869],[-65.359368,-11.158769],[-65.357068,-11.165269],[-65.355568,-11.169969],[-65.354268,-11.173269],[-65.352068,-11.181569],[-65.350268,-11.186969],[-65.347568,-11.189469],[-65.344268,-11.190169],[-65.338968,-11.188769],[-65.333768,-11.186069],[-65.330968,-11.185569],[-65.324568,-11.186969],[-65.321368,-11.190469],[-65.319568,-11.193469],[-65.318768,-11.196369],[-65.318568,-11.199369],[-65.319868,-11.204269],[-65.321568,-11.208469],[-65.324068,-11.210869],[-65.330768,-11.211569],[-65.335068,-11.211169],[-65.339568,-11.210769],[-65.345568,-11.210769],[-65.349768,-11.211569],[-65.353368,-11.213469],[-65.356068,-11.215969],[-65.358968,-11.219769],[-65.360268,-11.222369],[-65.361368,-11.228369],[-65.361868,-11.240269],[-65.361868,-11.245569],[-65.361368,-11.250469],[-65.359768,-11.257769],[-65.356668,-11.269069],[-65.355668,-11.272169],[-65.354468,-11.276569],[-65.353168,-11.281169],[-65.350668,-11.289169],[-65.349568,-11.292769],[-65.348468,-11.296469],[-65.346368,-11.303869],[-65.343368,-11.308769],[-65.341268,-11.310869],[-65.338668,-11.312669],[-65.335368,-11.313769],[-65.332368,-11.314069],[-65.316568,-11.314869],[-65.310468,-11.315269],[-65.306668,-11.315569],[-65.299768,-11.315769],[-65.296068,-11.316969],[-65.293168,-11.319869],[-65.291668,-11.324869],[-65.291768,-11.330469],[-65.293868,-11.333169],[-65.298868,-11.335369],[-65.307968,-11.335869],[-65.313768,-11.336969],[-65.325168,-11.338769],[-65.329268,-11.340369],[-65.332268,-11.343669],[-65.334568,-11.349969],[-65.335368,-11.355869],[-65.333668,-11.363369],[-65.329668,-11.374169],[-65.328768,-11.377969],[-65.327068,-11.384369],[-65.326068,-11.390769],[-65.326068,-11.394369],[-65.326468,-11.397269],[-65.326468,-11.401569],[-65.325668,-11.405069],[-65.324968,-11.409869],[-65.324268,-11.414269],[-65.323968,-11.417169],[-65.323568,-11.420069],[-65.322068,-11.426669],[-65.320568,-11.435169],[-65.319968,-11.439969],[-65.318868,-11.447369],[-65.317768,-11.451469],[-65.316668,-11.456269],[-65.315568,-11.459769],[-65.312968,-11.471969],[-65.311068,-11.479569],[-65.310468,-11.485569],[-65.309768,-11.490469],[-65.309068,-11.493569],[-65.307268,-11.497169],[-65.304768,-11.500769],[-65.298968,-11.504169],[-65.291368,-11.505469],[-65.288468,-11.505569],[-65.284768,-11.505969],[-65.280168,-11.507369],[-65.276568,-11.509069],[-65.271768,-11.510669],[-65.267568,-11.511869],[-65.263468,-11.513169],[-65.258468,-11.514269],[-65.250168,-11.515069],[-65.239968,-11.515069],[-65.228868,-11.515669],[-65.224968,-11.516369],[-65.217968,-11.520069],[-65.214068,-11.524369],[-65.212568,-11.528069],[-65.211568,-11.531569],[-65.211768,-11.537569],[-65.212268,-11.542769],[-65.214068,-11.547869],[-65.218168,-11.553569],[-65.222668,-11.557669],[-65.225968,-11.560469],[-65.228168,-11.562469],[-65.231768,-11.566069],[-65.234468,-11.570269],[-65.234968,-11.575669],[-65.234668,-11.579569],[-65.233368,-11.583469],[-65.228668,-11.590569],[-65.226668,-11.593169],[-65.225268,-11.596369],[-65.224768,-11.599869],[-65.225968,-11.605369],[-65.229968,-11.611469],[-65.231668,-11.615369],[-65.231368,-11.619369],[-65.229568,-11.623669],[-65.226968,-11.627369],[-65.224568,-11.630469],[-65.221168,-11.636269],[-65.218368,-11.641069],[-65.217568,-11.645369],[-65.217668,-11.650869],[-65.218968,-11.655869],[-65.221968,-11.661269],[-65.225068,-11.665669],[-65.227468,-11.668869],[-65.229268,-11.671369],[-65.232068,-11.674169],[-65.236068,-11.678369],[-65.239668,-11.682169],[-65.243068,-11.685269],[-65.249968,-11.690769],[-65.253768,-11.693869],[-65.256268,-11.695969],[-65.259668,-11.700269],[-65.260668,-11.705369],[-65.258468,-11.711469],[-65.255268,-11.715869],[-65.250968,-11.720869],[-65.248068,-11.723369],[-65.243668,-11.726369],[-65.239768,-11.728469],[-65.236368,-11.730869],[-65.233868,-11.732469],[-65.230668,-11.734469],[-65.226468,-11.737169],[-65.220868,-11.740069],[-65.217668,-11.742269],[-65.214768,-11.744069],[-65.208668,-11.747169],[-65.205668,-11.749069],[-65.200968,-11.750569],[-65.197468,-11.751869],[-65.191868,-11.754369],[-65.186368,-11.756369],[-65.181368,-11.756569],[-65.178568,-11.756069],[-65.173868,-11.752469],[-65.173668,-11.747769],[-65.174468,-11.744369],[-65.175768,-11.741569],[-65.178868,-11.737769],[-65.183368,-11.733169],[-65.185468,-11.730269],[-65.185768,-11.725969],[-65.183368,-11.721969],[-65.179768,-11.720969],[-65.176168,-11.720869],[-65.171968,-11.720969],[-65.166768,-11.721169],[-65.160068,-11.720869],[-65.147368,-11.720869],[-65.142968,-11.720369],[-65.128068,-11.720569],[-65.122968,-11.719469],[-65.120068,-11.718369],[-65.114768,-11.714269],[-65.106368,-11.708169],[-65.101668,-11.706469],[-65.097668,-11.705669],[-65.094468,-11.706269],[-65.090468,-11.707669],[-65.087968,-11.709269],[-65.085868,-11.711569],[-65.083968,-11.714069],[-65.082068,-11.717269],[-65.080768,-11.719869],[-65.080068,-11.725569],[-65.079968,-11.730869],[-65.079668,-11.735069],[-65.078568,-11.738569],[-65.076568,-11.744369],[-65.075268,-11.748269],[-65.073568,-11.753469],[-65.071368,-11.758769],[-65.068468,-11.763869],[-65.066568,-11.767369],[-65.064968,-11.771869],[-65.063268,-11.777069],[-65.061968,-11.780869],[-65.060268,-11.786769],[-65.059668,-11.790569],[-65.059368,-11.798969],[-65.059868,-11.804369],[-65.060168,-11.813069],[-65.060768,-11.816569],[-65.060768,-11.819969],[-65.061268,-11.824269],[-65.063068,-11.830669],[-65.064368,-11.834369],[-65.065568,-11.837269],[-65.067768,-11.845169],[-65.068868,-11.849169],[-65.069568,-11.852069],[-65.070768,-11.856369],[-65.071368,-11.862569],[-65.070668,-11.869069],[-65.068868,-11.871669],[-65.064868,-11.877969],[-65.060868,-11.882069],[-65.058068,-11.883469],[-65.053268,-11.885469],[-65.050068,-11.885969],[-65.031668,-11.887169],[-65.025368,-11.888769],[-65.022568,-11.889869],[-65.018768,-11.892069],[-65.016568,-11.894369],[-65.015368,-11.897369],[-65.014868,-11.900869],[-65.014968,-11.904169],[-65.016268,-11.911169],[-65.017368,-11.915069],[-65.017868,-11.918069],[-65.018968,-11.921669],[-65.020768,-11.927469],[-65.023468,-11.935269],[-65.024768,-11.938469],[-65.025868,-11.941569],[-65.027368,-11.945169],[-65.030168,-11.950169],[-65.035568,-11.954669],[-65.039568,-11.958169],[-65.041768,-11.961769],[-65.041368,-11.967269],[-65.039168,-11.970269],[-65.036168,-11.968369],[-65.032068,-11.966269],[-65.028368,-11.967369],[-65.025768,-11.970669],[-65.026568,-11.973969],[-65.029268,-11.977569],[-65.032768,-11.980669],[-65.034468,-11.983369],[-65.035068,-11.987569],[-65.033668,-11.992269],[-65.031968,-11.994969],[-65.029568,-11.996969],[-65.025968,-11.998569],[-65.021468,-11.998769],[-65.017968,-11.998569],[-65.015668,-11.996669],[-65.012168,-11.994369],[-65.007368,-11.992969],[-65.001668,-11.993069],[-64.998268,-11.995469],[-64.994068,-12.000169],[-64.992268,-12.002469],[-64.989468,-12.007769],[-64.986368,-12.011569],[-64.984168,-12.014269],[-64.979968,-12.017169],[-64.975568,-12.018569],[-64.971668,-12.017369],[-64.969468,-12.012769],[-64.968168,-12.008269],[-64.966768,-12.003569],[-64.965068,-11.999469],[-64.959368,-11.996369],[-64.952568,-11.994369],[-64.948268,-11.993369],[-64.944868,-11.994969],[-64.941268,-11.999069],[-64.938068,-12.006869],[-64.933768,-12.014369],[-64.929768,-12.020669],[-64.926168,-12.023769],[-64.922868,-12.026269],[-64.918068,-12.028169],[-64.911668,-12.026469],[-64.907668,-12.025069],[-64.904168,-12.022969],[-64.900468,-12.020769],[-64.895768,-12.019769],[-64.890668,-12.016369],[-64.887068,-12.014969],[-64.882768,-12.013469],[-64.878768,-12.012669],[-64.875168,-12.012369],[-64.869068,-12.011769],[-64.863268,-12.012169],[-64.857468,-12.012169],[-64.853668,-12.011069],[-64.848068,-12.008869],[-64.843668,-12.009169],[-64.839568,-12.010669],[-64.835068,-12.013569],[-64.831168,-12.016069],[-64.828768,-12.017969],[-64.826768,-12.020369],[-64.825468,-12.024269],[-64.823468,-12.029069],[-64.818868,-12.035869],[-64.816368,-12.038669],[-64.812968,-12.044269],[-64.809768,-12.053269],[-64.809368,-12.059069],[-64.810568,-12.065969],[-64.814668,-12.071669],[-64.822468,-12.075969],[-64.827468,-12.077469],[-64.831068,-12.080069],[-64.833968,-12.082969],[-64.835968,-12.086769],[-64.839068,-12.091169],[-64.841968,-12.094069],[-64.842668,-12.096969],[-64.843668,-12.100269],[-64.843168,-12.104269],[-64.841568,-12.108169],[-64.837268,-12.115869],[-64.833968,-12.120169],[-64.830068,-12.122369],[-64.824568,-12.121069],[-64.821368,-12.117769],[-64.819868,-12.114669],[-64.817968,-12.111869],[-64.816668,-12.109169],[-64.815268,-12.104969],[-64.813268,-12.100669],[-64.811568,-12.097569],[-64.809468,-12.093769],[-64.807468,-12.091269],[-64.803668,-12.087569],[-64.800468,-12.085869],[-64.790568,-12.085469],[-64.786968,-12.086769],[-64.782768,-12.088969],[-64.777568,-12.090669],[-64.774068,-12.092369],[-64.770368,-12.093669],[-64.766768,-12.095869],[-64.762368,-12.098869],[-64.760268,-12.101269],[-64.759068,-12.105269],[-64.757768,-12.108069],[-64.757468,-12.112269],[-64.757968,-12.115269],[-64.759268,-12.119169],[-64.761768,-12.122669],[-64.763268,-12.125569],[-64.764968,-12.129069],[-64.766768,-12.132369],[-64.767968,-12.135769],[-64.768768,-12.139069],[-64.769068,-12.143669],[-64.767868,-12.146769],[-64.765668,-12.150369],[-64.762868,-12.154069],[-64.757468,-12.157369],[-64.753068,-12.157869],[-64.749868,-12.157569],[-64.746868,-12.156269],[-64.743668,-12.153769],[-64.741568,-12.150669],[-64.740268,-12.147269],[-64.738668,-12.143969],[-64.736868,-12.139569],[-64.735368,-12.131369],[-64.734668,-12.125569],[-64.734168,-12.120769],[-64.734368,-12.117569],[-64.735268,-12.114069],[-64.736068,-12.110869],[-64.738068,-12.106669],[-64.738668,-12.103169],[-64.738268,-12.100269],[-64.731068,-12.093669],[-64.727768,-12.092269],[-64.723968,-12.089769],[-64.721468,-12.087969],[-64.717068,-12.086969],[-64.712868,-12.086269],[-64.707868,-12.087569],[-64.703268,-12.090469],[-64.699968,-12.092669],[-64.697968,-12.094869],[-64.697368,-12.099469],[-64.698268,-12.103569],[-64.700668,-12.106469],[-64.703168,-12.108869],[-64.705068,-12.111169],[-64.708168,-12.115069],[-64.711468,-12.119669],[-64.713768,-12.124069],[-64.715068,-12.127469],[-64.715868,-12.132969],[-64.716768,-12.136069],[-64.717568,-12.144069],[-64.717268,-12.149369],[-64.717568,-12.153969],[-64.716668,-12.157069],[-64.715868,-12.161169],[-64.715168,-12.164569],[-64.714368,-12.168669],[-64.712068,-12.174269],[-64.709268,-12.177469],[-64.705668,-12.179769],[-64.703468,-12.181869],[-64.699068,-12.186569],[-64.694968,-12.189169],[-64.691568,-12.189969],[-64.686268,-12.190969],[-64.680568,-12.191569],[-64.674668,-12.191669],[-64.671468,-12.192669],[-64.667768,-12.194369],[-64.664868,-12.195969],[-64.660868,-12.197869],[-64.657568,-12.199269],[-64.652668,-12.200669],[-64.648968,-12.201769],[-64.645068,-12.202569],[-64.640068,-12.205169],[-64.635268,-12.206869],[-64.631268,-12.208269],[-64.627768,-12.210169],[-64.622668,-12.212269],[-64.619068,-12.213669],[-64.616168,-12.214769],[-64.612168,-12.215169],[-64.607268,-12.215969],[-64.602068,-12.215869],[-64.597668,-12.215969],[-64.593668,-12.215869],[-64.589768,-12.215369],[-64.584268,-12.214369],[-64.580068,-12.214269],[-64.576868,-12.215069],[-64.573268,-12.216969],[-64.568568,-12.219769],[-64.566068,-12.225269],[-64.563368,-12.231169],[-64.560468,-12.233869],[-64.557968,-12.237469],[-64.553068,-12.241469],[-64.546068,-12.242569],[-64.540668,-12.239469],[-64.537468,-12.235769],[-64.534168,-12.232769],[-64.529768,-12.229969],[-64.526268,-12.227269],[-64.523668,-12.225669],[-64.515668,-12.223369],[-64.511768,-12.223069],[-64.508868,-12.224569],[-64.505968,-12.228069],[-64.504968,-12.231369],[-64.503568,-12.234169],[-64.502668,-12.244369],[-64.501668,-12.247269],[-64.499368,-12.251669],[-64.498268,-12.256569],[-64.496968,-12.261069],[-64.495868,-12.266269],[-64.495268,-12.270669],[-64.494668,-12.275969],[-64.494468,-12.279769],[-64.493568,-12.285969],[-64.492968,-12.290569],[-64.492768,-12.294169],[-64.493368,-12.297269],[-64.494368,-12.303969],[-64.495468,-12.310869],[-64.496668,-12.314369],[-64.498068,-12.317669],[-64.499368,-12.324969],[-64.500468,-12.329369],[-64.504168,-12.333169],[-64.507768,-12.335969],[-64.509868,-12.338469],[-64.512368,-12.341969],[-64.512968,-12.347769],[-64.511468,-12.352369],[-64.507768,-12.357469],[-64.503768,-12.362469],[-64.500768,-12.365469],[-64.498368,-12.367169],[-64.494168,-12.367769],[-64.490468,-12.369969],[-64.487468,-12.372469],[-64.483968,-12.374169],[-64.481668,-12.376069],[-64.479268,-12.379169],[-64.475568,-12.380769],[-64.470568,-12.382069],[-64.465168,-12.384069],[-64.460968,-12.386269],[-64.458168,-12.389069],[-64.454868,-12.394369],[-64.452968,-12.399069],[-64.451368,-12.402269],[-64.449268,-12.406769],[-64.447668,-12.409169],[-64.444168,-12.412669],[-64.440768,-12.415869],[-64.436068,-12.418369],[-64.432468,-12.420869],[-64.430768,-12.423269],[-64.428868,-12.426869],[-64.424968,-12.432469],[-64.419768,-12.438369],[-64.416168,-12.441369],[-64.410068,-12.444569],[-64.406668,-12.446669],[-64.402868,-12.447969],[-64.398968,-12.449069],[-64.393768,-12.449269],[-64.389568,-12.449969],[-64.386268,-12.451269],[-64.382668,-12.452369],[-64.375968,-12.452969],[-64.370068,-12.454369],[-64.366868,-12.455369],[-64.363268,-12.456869],[-64.359768,-12.458669],[-64.352868,-12.458969],[-64.349768,-12.459569],[-64.345068,-12.459769],[-64.336568,-12.458469],[-64.327568,-12.457269],[-64.322468,-12.456569],[-64.318268,-12.457169],[-64.307468,-12.457569],[-64.303268,-12.458169],[-64.298968,-12.457869],[-64.295768,-12.457869],[-64.291768,-12.460469],[-64.290568,-12.467669],[-64.291968,-12.471969],[-64.293568,-12.474869],[-64.295268,-12.479169],[-64.296668,-12.482769],[-64.298168,-12.486469],[-64.298868,-12.490769],[-64.297168,-12.495769],[-64.294168,-12.499469],[-64.290868,-12.501369],[-64.285568,-12.502969],[-64.281268,-12.501569],[-64.278368,-12.499769],[-64.275068,-12.496569],[-64.272568,-12.492669],[-64.270668,-12.488669],[-64.266468,-12.485369],[-64.259268,-12.479969],[-64.254668,-12.477769],[-64.251868,-12.475269],[-64.248368,-12.471969],[-64.246068,-12.469869],[-64.242168,-12.463969],[-64.238668,-12.459569],[-64.235268,-12.456169],[-64.231068,-12.455069],[-64.227568,-12.455969],[-64.224768,-12.458669],[-64.222268,-12.460469],[-64.217968,-12.462269],[-64.213268,-12.461569],[-64.209268,-12.462269],[-64.205768,-12.464269],[-64.202568,-12.467569],[-64.199368,-12.470969],[-64.196768,-12.472769],[-64.193468,-12.472669],[-64.189168,-12.470969],[-64.184768,-12.466669],[-64.181168,-12.465569],[-64.173568,-12.466269],[-64.171368,-12.469769],[-64.171168,-12.481969],[-64.171468,-12.484969],[-64.171068,-12.490869],[-64.172768,-12.495769],[-64.173868,-12.500469],[-64.173868,-12.503869],[-64.173368,-12.507069],[-64.171168,-12.510369],[-64.168668,-12.512069],[-64.165568,-12.513869],[-64.160868,-12.514569],[-64.156468,-12.513469],[-64.153668,-12.511469],[-64.151468,-12.509069],[-64.149068,-12.505469],[-64.146568,-12.501669],[-64.145668,-12.498069],[-64.145068,-12.492969],[-64.145068,-12.489969],[-64.144268,-12.482769],[-64.141068,-12.478569],[-64.137668,-12.476969],[-64.134368,-12.476369],[-64.130168,-12.476969],[-64.127768,-12.478869],[-64.124868,-12.482169],[-64.123068,-12.485069],[-64.122168,-12.489369],[-64.122668,-12.493869],[-64.123068,-12.497169],[-64.124168,-12.500769],[-64.122968,-12.504869],[-64.118368,-12.504569],[-64.114968,-12.503569],[-64.112468,-12.501069],[-64.110568,-12.498569],[-64.108068,-12.496669],[-64.105268,-12.495469],[-64.102468,-12.492969],[-64.100968,-12.490069],[-64.099468,-12.486069],[-64.096368,-12.484369],[-64.092068,-12.483869],[-64.089468,-12.485269],[-64.089368,-12.489769],[-64.088968,-12.495269],[-64.086568,-12.498869],[-64.082868,-12.500869],[-64.076368,-12.501269],[-64.073568,-12.499869],[-64.069068,-12.494069],[-64.064568,-12.491169],[-64.059968,-12.490869],[-64.056968,-12.491969],[-64.053068,-12.494969],[-64.050568,-12.497669],[-64.048568,-12.500769],[-64.046068,-12.504569],[-64.043368,-12.510469],[-64.039468,-12.514969],[-64.035868,-12.516069],[-64.032268,-12.515369],[-64.029268,-12.513969],[-64.026468,-12.511769],[-64.024068,-12.509669],[-64.021268,-12.508169],[-64.018468,-12.508769],[-64.013268,-12.514369],[-64.010468,-12.517469],[-64.005768,-12.517069],[-64.002768,-12.512769],[-64.001068,-12.504169],[-63.998368,-12.503069],[-63.995268,-12.503369],[-63.991968,-12.504869],[-63.986468,-12.509169],[-63.983168,-12.511769],[-63.981368,-12.514369],[-63.978568,-12.517169],[-63.976168,-12.520169],[-63.969568,-12.525469],[-63.966668,-12.527569],[-63.963368,-12.529769],[-63.960468,-12.530569],[-63.957068,-12.531269],[-63.952468,-12.531669],[-63.946568,-12.529769],[-63.942768,-12.527669],[-63.939068,-12.526169],[-63.935568,-12.523169],[-63.932768,-12.520669],[-63.927868,-12.516869],[-63.924368,-12.514269],[-63.920368,-12.511269],[-63.914168,-12.510969],[-63.908468,-12.510469],[-63.902868,-12.507669],[-63.900368,-12.505269],[-63.897868,-12.500169],[-63.897868,-12.495569],[-63.900368,-12.488569],[-63.900868,-12.484969],[-63.900468,-12.481769],[-63.895768,-12.475969],[-63.893468,-12.472269],[-63.890668,-12.468469],[-63.889268,-12.464769],[-63.889268,-12.461269],[-63.890668,-12.455169],[-63.888468,-12.448469],[-63.884368,-12.446269],[-63.880268,-12.445569],[-63.876568,-12.446269],[-63.871568,-12.447669],[-63.865368,-12.451569],[-63.861468,-12.454069],[-63.857768,-12.456269],[-63.851668,-12.459369],[-63.848068,-12.460369],[-63.843368,-12.461769],[-63.840168,-12.462869],[-63.836968,-12.463369],[-63.832868,-12.462969],[-63.827468,-12.459269],[-63.823468,-12.453469],[-63.821068,-12.449969],[-63.817968,-12.447069],[-63.814868,-12.447469],[-63.810768,-12.449069],[-63.806068,-12.448469],[-63.802768,-12.446769],[-63.799368,-12.443869],[-63.797268,-12.441269],[-63.794268,-12.435869],[-63.791068,-12.430469],[-63.787268,-12.427969],[-63.783468,-12.429169],[-63.779768,-12.433069],[-63.774868,-12.436669],[-63.768468,-12.440269],[-63.763468,-12.441969],[-63.758768,-12.441669],[-63.746968,-12.439369],[-63.741968,-12.438369],[-63.733668,-12.438569],[-63.729168,-12.440169],[-63.726368,-12.440769],[-63.720968,-12.441869],[-63.716968,-12.443269],[-63.713168,-12.443769],[-63.709768,-12.444869],[-63.705168,-12.445969],[-63.698568,-12.447769],[-63.695968,-12.449069],[-63.691568,-12.449369],[-63.684768,-12.452969],[-63.680068,-12.457869],[-63.676168,-12.461569],[-63.671468,-12.463269],[-63.666968,-12.463269],[-63.659268,-12.461969],[-63.655868,-12.461969],[-63.651768,-12.464069],[-63.647868,-12.465869],[-63.642568,-12.467269],[-63.638968,-12.468369],[-63.633168,-12.470869],[-63.630168,-12.471669],[-63.624068,-12.472269],[-63.620568,-12.474569],[-63.619068,-12.478569],[-63.617268,-12.480969],[-63.614668,-12.484669],[-63.611068,-12.486169],[-63.605568,-12.486969],[-63.593668,-12.489769],[-63.589768,-12.491169],[-63.585068,-12.493669],[-63.581468,-12.496969],[-63.576868,-12.500569],[-63.572868,-12.502369],[-63.569268,-12.502969],[-63.564868,-12.503069],[-63.560268,-12.504169],[-63.553968,-12.506569],[-63.550468,-12.508469],[-63.547168,-12.512969],[-63.544968,-12.516069],[-63.542468,-12.520369],[-63.540068,-12.524469],[-63.538468,-12.527969],[-63.536768,-12.530469],[-63.532368,-12.538869],[-63.527268,-12.545569],[-63.524768,-12.547469],[-63.520968,-12.549969],[-63.515368,-12.554169],[-63.512068,-12.557569],[-63.508168,-12.562769],[-63.505468,-12.565269],[-63.502068,-12.566969],[-63.498568,-12.567369],[-63.494168,-12.567469],[-63.489968,-12.566569],[-63.482868,-12.564169],[-63.478568,-12.562669],[-63.474868,-12.561969],[-63.470668,-12.561669],[-63.465168,-12.562369],[-63.462268,-12.562369],[-63.458168,-12.561869],[-63.451468,-12.562669],[-63.448468,-12.563369],[-63.441868,-12.563569],[-63.438768,-12.564369],[-63.434668,-12.566669],[-63.437168,-12.572469],[-63.438068,-12.576469],[-63.437968,-12.581469],[-63.436568,-12.585469],[-63.433368,-12.588269],[-63.429368,-12.591269],[-63.427268,-12.593669],[-63.426568,-12.597069],[-63.431868,-12.598469],[-63.436068,-12.599569],[-63.440568,-12.600669],[-63.440768,-12.604969],[-63.438068,-12.608269],[-63.433568,-12.609369],[-63.429068,-12.607569],[-63.422168,-12.606669],[-63.418068,-12.607569],[-63.413968,-12.608869],[-63.410968,-12.610369],[-63.408368,-12.613669],[-63.406768,-12.618269],[-63.404568,-12.626569],[-63.403668,-12.629669],[-63.401568,-12.634969],[-63.397068,-12.639969],[-63.393468,-12.643169],[-63.389568,-12.647069],[-63.384968,-12.651269],[-63.378068,-12.655369],[-63.374668,-12.657069],[-63.368668,-12.659469],[-63.364668,-12.658869],[-63.361768,-12.657569],[-63.357568,-12.657069],[-63.354268,-12.656269],[-63.350268,-12.656669],[-63.346268,-12.658469],[-63.343068,-12.660269],[-63.339768,-12.661769],[-63.336968,-12.663869],[-63.334768,-12.666669],[-63.332268,-12.668069],[-63.328568,-12.669669],[-63.322968,-12.671469],[-63.317468,-12.673269],[-63.313568,-12.674969],[-63.310868,-12.676169],[-63.305468,-12.677969],[-63.301168,-12.679669],[-63.295368,-12.681869],[-63.291668,-12.682269],[-63.286268,-12.683269],[-63.281968,-12.683569],[-63.278768,-12.684169],[-63.272568,-12.684169],[-63.267068,-12.683369],[-63.262768,-12.683269],[-63.255468,-12.684969],[-63.251668,-12.686869],[-63.247468,-12.689069],[-63.244068,-12.690469],[-63.239768,-12.690869],[-63.234968,-12.688069],[-63.231768,-12.683669],[-63.237268,-12.679369],[-63.239968,-12.675369],[-63.241068,-12.669669],[-63.245268,-12.665969],[-63.244668,-12.661669],[-63.239668,-12.661669],[-63.236868,-12.662869],[-63.233168,-12.664869],[-63.229568,-12.664769],[-63.226968,-12.663369],[-63.223768,-12.659869],[-63.220168,-12.657069],[-63.216968,-12.655369],[-63.211468,-12.655069],[-63.207068,-12.656169],[-63.202968,-12.656769],[-63.197168,-12.655069],[-63.192768,-12.651469],[-63.189968,-12.647569],[-63.189868,-12.644369],[-63.190268,-12.641069],[-63.191868,-12.638469],[-63.194268,-12.635969],[-63.197168,-12.631269],[-63.196868,-12.626669],[-63.193868,-12.623869],[-63.189068,-12.624069],[-63.185768,-12.624969],[-63.183268,-12.626669],[-63.179768,-12.631769],[-63.177968,-12.635669],[-63.176068,-12.638169],[-63.173968,-12.640369],[-63.168968,-12.642169],[-63.162768,-12.639369],[-63.161768,-12.635769],[-63.162868,-12.632969],[-63.165568,-12.629169],[-63.167468,-12.624969],[-63.167068,-12.620269],[-63.163068,-12.614969],[-63.158868,-12.613969],[-63.155968,-12.615769],[-63.153668,-12.619469],[-63.153468,-12.624469],[-63.153168,-12.630569],[-63.150968,-12.634369],[-63.145368,-12.637369],[-63.137768,-12.639869],[-63.138568,-12.642869],[-63.139868,-12.645469],[-63.134968,-12.648169],[-63.128768,-12.645669],[-63.125868,-12.647069],[-63.122668,-12.653769],[-63.119368,-12.657369],[-63.113568,-12.658969],[-63.106368,-12.656769],[-63.103168,-12.655169],[-63.097768,-12.655869],[-63.093468,-12.658069],[-63.091168,-12.662269],[-63.091668,-12.667469],[-63.092968,-12.671069],[-63.095568,-12.673169],[-63.098468,-12.676569],[-63.098068,-12.680069],[-63.096368,-12.682969],[-63.092868,-12.683869],[-63.087968,-12.684069],[-63.083168,-12.685169],[-63.078568,-12.685769],[-63.074868,-12.684969],[-63.071268,-12.682969],[-63.067668,-12.682669],[-63.063568,-12.684169],[-63.061068,-12.687469],[-63.061268,-12.691869],[-63.064668,-12.696069],[-63.069068,-12.697469],[-63.072068,-12.698769],[-63.077068,-12.700269],[-63.079668,-12.703169],[-63.081868,-12.706769],[-63.082568,-12.710769],[-63.082868,-12.715369],[-63.082368,-12.720569],[-63.080668,-12.725069],[-63.077568,-12.728869],[-63.073868,-12.730569],[-63.069068,-12.730869],[-63.061268,-12.728069],[-63.057268,-12.729269],[-63.054068,-12.731769],[-63.051668,-12.734369],[-63.049468,-12.737769],[-63.047468,-12.740069],[-63.045368,-12.744369],[-63.043168,-12.747669],[-63.041768,-12.750169],[-63.040568,-12.755169],[-63.040068,-12.758169],[-63.040568,-12.762069],[-63.040268,-12.765169],[-63.035968,-12.770669],[-63.035668,-12.774869],[-63.035068,-12.777669],[-63.033068,-12.781269],[-63.028968,-12.782869],[-63.025868,-12.785169],[-63.022168,-12.787769],[-63.019868,-12.791769],[-63.021468,-12.799369],[-63.021168,-12.805269],[-63.018668,-12.806969],[-63.015668,-12.806869],[-63.012468,-12.807969],[-63.008868,-12.809869],[-63.009268,-12.816069],[-63.012068,-12.821069],[-63.012968,-12.824269],[-63.013468,-12.829869],[-63.012168,-12.834069],[-63.009168,-12.837669],[-63.006368,-12.839569],[-63.000968,-12.841769],[-62.991568,-12.841269],[-62.983368,-12.844069],[-62.983168,-12.849469],[-62.981968,-12.853669],[-62.978968,-12.858369],[-62.976168,-12.859769],[-62.970868,-12.858869],[-62.968668,-12.854969],[-62.965468,-12.850269],[-62.963168,-12.847269],[-62.957968,-12.847269],[-62.951268,-12.850569],[-62.950468,-12.854969],[-62.947468,-12.858569],[-62.942968,-12.854569],[-62.941668,-12.846969],[-62.937768,-12.842969],[-62.931868,-12.841969],[-62.926568,-12.841469],[-62.921368,-12.840869],[-62.915668,-12.844169],[-62.910668,-12.850269],[-62.908968,-12.852769],[-62.905868,-12.854669],[-62.900368,-12.855069],[-62.896568,-12.855869],[-62.892668,-12.858269],[-62.890668,-12.860869],[-62.891768,-12.864369],[-62.893668,-12.869469],[-62.894068,-12.872969],[-62.893168,-12.877069],[-62.891068,-12.879869],[-62.888468,-12.882169],[-62.884668,-12.883569],[-62.880468,-12.887169],[-62.878468,-12.890169],[-62.875768,-12.895469],[-62.875168,-12.898669],[-62.872768,-12.906269],[-62.870168,-12.910569],[-62.866068,-12.911969],[-62.861468,-12.912469],[-62.858868,-12.915269],[-62.855368,-12.918169],[-62.845568,-12.923069],[-62.843068,-12.927169],[-62.843468,-12.932169],[-62.847268,-12.936069],[-62.850268,-12.940869],[-62.849768,-12.944369],[-62.845868,-12.948569],[-62.841968,-12.948269],[-62.838968,-12.947369],[-62.836468,-12.943169],[-62.832068,-12.937769],[-62.822968,-12.933769],[-62.817968,-12.935269],[-62.814968,-12.936669],[-62.810268,-12.937969],[-62.805868,-12.940569],[-62.803268,-12.944969],[-62.805868,-12.952569],[-62.807568,-12.954869],[-62.808068,-12.958269],[-62.808868,-12.962069],[-62.806868,-12.968069],[-62.803568,-12.974469],[-62.797468,-12.983869],[-62.796968,-12.987269],[-62.795768,-12.991969],[-62.794268,-12.995169],[-62.787768,-13.002169],[-62.780068,-13.008869],[-62.772968,-13.009969],[-62.767668,-13.012469],[-62.764068,-13.015669],[-62.759668,-13.018169],[-62.756368,-13.017169],[-62.754568,-13.008169],[-62.753468,-13.004669],[-62.752168,-13.002069],[-62.750268,-12.999869],[-62.746868,-12.998869],[-62.743368,-13.001269],[-62.744368,-13.005169],[-62.744168,-13.008769],[-62.740768,-13.012469],[-62.738568,-13.014369],[-62.736468,-13.018569],[-62.733968,-13.021769],[-62.729168,-13.020669],[-62.726968,-13.014669],[-62.728868,-13.008569],[-62.727268,-13.003069],[-62.725068,-13.001269],[-62.719068,-13.003369],[-62.713168,-13.004169],[-62.709268,-13.002469],[-62.706868,-12.999869],[-62.699368,-13.002669],[-62.694368,-12.992169],[-62.690568,-12.991569],[-62.687268,-12.992769],[-62.682468,-12.992969],[-62.676068,-12.991369],[-62.669968,-12.987169],[-62.667168,-12.984669],[-62.664468,-12.980569],[-62.663168,-12.975969],[-62.659768,-12.968669],[-62.655368,-12.966569],[-62.650768,-12.965569],[-62.645368,-12.967669],[-62.645168,-12.974569],[-62.649068,-12.980669],[-62.651468,-12.983969],[-62.652068,-12.989369],[-62.650668,-12.991869],[-62.646468,-12.993069],[-62.641068,-12.990869],[-62.638868,-12.989069],[-62.634968,-12.988569],[-62.631368,-12.990069],[-62.629068,-12.995769],[-62.629868,-12.999669],[-62.631768,-13.004069],[-62.632668,-13.011769],[-62.629168,-13.016069],[-62.625468,-13.017669],[-62.620268,-13.017069],[-62.613668,-13.013569],[-62.610268,-13.011369],[-62.606768,-13.010969],[-62.602568,-13.012669],[-62.600268,-13.017469],[-62.606168,-13.021869],[-62.610668,-13.024269],[-62.614068,-13.026169],[-62.614668,-13.028969],[-62.615268,-13.032869],[-62.614768,-13.036469],[-62.612468,-13.041369],[-62.608968,-13.043969],[-62.600368,-13.048669],[-62.595568,-13.049669],[-62.589268,-13.051169],[-62.581768,-13.054469],[-62.575968,-13.057769],[-62.567468,-13.062169],[-62.562468,-13.063769],[-62.557968,-13.065569],[-62.555268,-13.067369],[-62.551868,-13.070269],[-62.547168,-13.073969],[-62.541168,-13.075469],[-62.534868,-13.073269],[-62.529868,-13.069869],[-62.526468,-13.067069],[-62.523768,-13.065469],[-62.520968,-13.067169],[-62.518168,-13.071669],[-62.513768,-13.075769],[-62.508868,-13.079069],[-62.505268,-13.081769],[-62.501568,-13.082869],[-62.496268,-13.081269],[-62.490768,-13.079269],[-62.486168,-13.077869],[-62.482868,-13.076069],[-62.481668,-13.071869],[-62.481968,-13.068869],[-62.483368,-13.063269],[-62.482568,-13.058769],[-62.479268,-13.057469],[-62.475868,-13.057469],[-62.473068,-13.061569],[-62.472068,-13.066269],[-62.473668,-13.072969],[-62.472568,-13.077469],[-62.467968,-13.078969],[-62.465568,-13.077169],[-62.462968,-13.073469],[-62.461168,-13.066569],[-62.457168,-13.063869],[-62.453268,-13.066069],[-62.452368,-13.070169],[-62.453568,-13.072769],[-62.456868,-13.075969],[-62.459068,-13.081069],[-62.457368,-13.086569],[-62.451868,-13.087669],[-62.448268,-13.085369],[-62.445268,-13.081769],[-62.442768,-13.079869],[-62.439868,-13.079269],[-62.436968,-13.080469],[-62.434868,-13.082669],[-62.433768,-13.086969],[-62.435168,-13.095069],[-62.435868,-13.098369],[-62.434368,-13.101969],[-62.429368,-13.107469],[-62.425868,-13.109969],[-62.418168,-13.117769],[-62.418068,-13.121969],[-62.416968,-13.124669],[-62.413968,-13.128269],[-62.410668,-13.126969],[-62.407268,-13.123869],[-62.403368,-13.118269],[-62.399268,-13.113369],[-62.396168,-13.114369],[-62.394868,-13.118569],[-62.395968,-13.124669],[-62.397368,-13.130169],[-62.392068,-13.134669],[-62.387668,-13.132369],[-62.382468,-13.130769],[-62.379468,-13.133469],[-62.377668,-13.138469],[-62.372468,-13.140669],[-62.369068,-13.140769],[-62.364068,-13.139569],[-62.360868,-13.139869],[-62.356668,-13.142869],[-62.351968,-13.143269],[-62.349568,-13.139069],[-62.345568,-13.137069],[-62.337368,-13.140469],[-62.342368,-13.145769],[-62.340968,-13.149869],[-62.336168,-13.147969],[-62.333268,-13.143169],[-62.330468,-13.139869],[-62.326068,-13.144669],[-62.325368,-13.150069],[-62.321368,-13.152069],[-62.319668,-13.147169],[-62.318768,-13.138469],[-62.316668,-13.134369],[-62.305068,-13.140369],[-62.303268,-13.146069],[-62.299368,-13.150469],[-62.294968,-13.149869],[-62.292768,-13.144869],[-62.287368,-13.140469],[-62.284568,-13.142069],[-62.282568,-13.149869],[-62.278468,-13.155369],[-62.271568,-13.155169],[-62.275468,-13.151269],[-62.276568,-13.146169],[-62.272868,-13.146769],[-62.267868,-13.149069],[-62.264568,-13.153169],[-62.261568,-13.150669],[-62.265068,-13.146869],[-62.259868,-13.146469],[-62.255268,-13.144369],[-62.245868,-13.145069],[-62.245268,-13.142169],[-62.245468,-13.138469],[-62.244368,-13.134969],[-62.243668,-13.130669],[-62.245468,-13.125969],[-62.244968,-13.120769],[-62.243368,-13.117269],[-62.240568,-13.115769],[-62.235768,-13.116969],[-62.232468,-13.120769],[-62.229468,-13.121569],[-62.225568,-13.117969],[-62.223068,-13.113669],[-62.219768,-13.111469],[-62.214768,-13.111369],[-62.211168,-13.113269],[-62.206268,-13.116869],[-62.203168,-13.121169],[-62.200968,-13.124469],[-62.199668,-13.131369],[-62.200668,-13.137369],[-62.201368,-13.141769],[-62.200168,-13.150469],[-62.195168,-13.153969],[-62.190968,-13.153769],[-62.186868,-13.150969],[-62.182268,-13.147569],[-62.178268,-13.142969],[-62.177568,-13.138169],[-62.181368,-13.132969],[-62.183668,-13.127769],[-62.183868,-13.123069],[-62.181368,-13.117669],[-62.178668,-13.115069],[-62.174968,-13.113569],[-62.170368,-13.113869],[-62.166968,-13.116369],[-62.166368,-13.120169],[-62.168568,-13.125469],[-62.169568,-13.129069],[-62.169468,-13.134169],[-62.162568,-13.142569],[-62.160068,-13.146469],[-62.157268,-13.147169],[-62.151768,-13.150069],[-62.151768,-13.154169],[-62.151968,-13.159569],[-62.148668,-13.163369],[-62.142868,-13.161169],[-62.140368,-13.157869],[-62.137468,-13.153769],[-62.134868,-13.149369],[-62.128768,-13.148369],[-62.124168,-13.149769],[-62.119668,-13.153469],[-62.116168,-13.159469],[-62.114168,-13.164469],[-62.117168,-13.168469],[-62.117768,-13.172469],[-62.117668,-13.177169],[-62.115068,-13.184669],[-62.114368,-13.188269],[-62.114468,-13.195169],[-62.114968,-13.203769],[-62.113568,-13.208169],[-62.113568,-13.211569],[-62.108968,-13.218969],[-62.109668,-13.224469],[-62.109968,-13.228969],[-62.109168,-13.234269],[-62.110368,-13.240469],[-62.109368,-13.245769],[-62.109968,-13.250169],[-62.111968,-13.254169],[-62.114968,-13.257369],[-62.113968,-13.260969],[-62.109368,-13.265069],[-62.106468,-13.267969],[-62.100968,-13.270069],[-62.098168,-13.272669],[-62.096168,-13.275769],[-62.093768,-13.278469],[-62.091268,-13.281969],[-62.085968,-13.281969],[-62.084868,-13.285269],[-62.084268,-13.290269],[-62.079068,-13.291969],[-62.074068,-13.292869],[-62.070168,-13.295869],[-62.066568,-13.293669],[-62.062168,-13.289269],[-62.056868,-13.288169],[-62.056068,-13.294969],[-62.057668,-13.300069],[-62.057668,-13.304769],[-62.056868,-13.311669],[-62.052868,-13.314169],[-62.046168,-13.316269],[-62.043168,-13.319069],[-62.039768,-13.324669],[-62.037468,-13.327069],[-62.036268,-13.330069],[-62.032668,-13.333569],[-62.028768,-13.331869],[-62.025068,-13.327569],[-62.017068,-13.327169],[-62.013568,-13.330369],[-62.013168,-13.333469],[-62.014668,-13.340969],[-62.015368,-13.347769],[-62.014068,-13.352269],[-62.011468,-13.358369],[-62.007168,-13.362569],[-62.003068,-13.365369],[-62.000768,-13.369669],[-61.996668,-13.374369],[-61.994368,-13.370769],[-61.996368,-13.367969],[-61.998568,-13.364069],[-61.994768,-13.365269],[-61.987168,-13.366569],[-61.980368,-13.365469],[-61.976468,-13.368269],[-61.971368,-13.374169],[-61.974168,-13.381769],[-61.977268,-13.387969],[-61.974268,-13.389569],[-61.967568,-13.386769],[-61.962268,-13.391069],[-61.968168,-13.402369],[-61.970568,-13.406169],[-61.967568,-13.407869],[-61.961768,-13.408669],[-61.956268,-13.408169],[-61.952068,-13.410569],[-61.947968,-13.415369],[-61.943868,-13.412069],[-61.940268,-13.407769],[-61.935868,-13.410069],[-61.930868,-13.417469],[-61.928668,-13.425569],[-61.924468,-13.429469],[-61.918168,-13.431869],[-61.914268,-13.433669],[-61.907568,-13.434069],[-61.905068,-13.431169],[-61.903768,-13.428269],[-61.899268,-13.426869],[-61.892968,-13.430869],[-61.889868,-13.435469],[-61.887368,-13.440769],[-61.885968,-13.451069],[-61.883268,-13.456769],[-61.883568,-13.463969],[-61.882668,-13.472369],[-61.880968,-13.479569],[-61.882168,-13.487869],[-61.883468,-13.492269],[-61.883168,-13.497269],[-61.879168,-13.501869],[-61.876068,-13.507369],[-61.871968,-13.513269],[-61.869368,-13.525169],[-61.867968,-13.528769],[-61.866068,-13.531669],[-61.861068,-13.535369],[-61.852868,-13.538469],[-61.849468,-13.535969],[-61.848468,-13.531669],[-61.847068,-13.527369],[-61.840168,-13.526969],[-61.838668,-13.534769],[-61.843368,-13.541369],[-61.840968,-13.548869],[-61.837568,-13.543369],[-61.833668,-13.539269],[-61.826068,-13.537069],[-61.821068,-13.533769],[-61.818468,-13.539269],[-61.811268,-13.540269],[-61.812968,-13.535869],[-61.817668,-13.530569],[-61.817068,-13.527369],[-61.805768,-13.529469],[-61.802868,-13.531169],[-61.798068,-13.534469],[-61.789968,-13.537769],[-61.784168,-13.536969],[-61.778068,-13.532869],[-61.776268,-13.527869],[-61.777968,-13.522069],[-61.776568,-13.517669],[-61.769268,-13.519269],[-61.766768,-13.525069],[-61.766068,-13.533169],[-61.764568,-13.539169],[-61.757368,-13.540569],[-61.754468,-13.536969],[-61.753568,-13.531469],[-61.755768,-13.529069],[-61.757768,-13.524069],[-61.751668,-13.520369],[-61.747768,-13.520769],[-61.744168,-13.525869],[-61.736768,-13.527369],[-61.730568,-13.525169],[-61.734668,-13.518569],[-61.730068,-13.518669],[-61.725068,-13.522269],[-61.719768,-13.519569],[-61.713668,-13.517969],[-61.707268,-13.516869],[-61.702968,-13.515069],[-61.704268,-13.511769],[-61.699068,-13.510969],[-61.693768,-13.507969],[-61.694568,-13.501569],[-61.689568,-13.505269],[-61.686068,-13.509069],[-61.680268,-13.506669],[-61.673368,-13.505269],[-61.668868,-13.504969],[-61.668868,-13.509869],[-61.663368,-13.510669],[-61.658468,-13.514669],[-61.651468,-13.518669],[-61.645768,-13.516469],[-61.647368,-13.510769],[-61.645068,-13.506769],[-61.636868,-13.509369],[-61.628868,-13.515469],[-61.622768,-13.514569],[-61.622968,-13.509169],[-61.625568,-13.504869],[-61.626268,-13.499869],[-61.623068,-13.496669],[-61.619068,-13.499169],[-61.618868,-13.505669],[-61.615868,-13.511369],[-61.607168,-13.510469],[-61.604568,-13.504569],[-61.599468,-13.501669],[-61.591268,-13.502969],[-61.585468,-13.500569],[-61.584268,-13.496169],[-61.585868,-13.493569],[-61.584268,-13.490569],[-61.576768,-13.488569],[-61.573168,-13.494369],[-61.576068,-13.500169],[-61.578568,-13.505269],[-61.578968,-13.509869],[-61.576568,-13.513969],[-61.572368,-13.518469],[-61.567668,-13.521169],[-61.563068,-13.521469],[-61.559668,-13.519869],[-61.556368,-13.518169],[-61.553568,-13.519569],[-61.548368,-13.523669],[-61.543068,-13.525369],[-61.534568,-13.528969],[-61.532868,-13.533069],[-61.529768,-13.534469],[-61.525768,-13.534469],[-61.521768,-13.535369],[-61.514068,-13.543069],[-61.508168,-13.547869],[-61.503068,-13.548169],[-61.500168,-13.548569],[-61.495468,-13.547869],[-61.491868,-13.546369],[-61.489068,-13.547469],[-61.479168,-13.553669],[-61.474968,-13.553369],[-61.470268,-13.554669],[-61.465668,-13.554069],[-61.460068,-13.551469],[-61.455068,-13.549669],[-61.442768,-13.547469],[-61.434768,-13.546369],[-61.429468,-13.545369],[-61.423968,-13.542269],[-61.418568,-13.539569],[-61.413168,-13.537869],[-61.409468,-13.537569],[-61.405068,-13.539569],[-61.402368,-13.537769],[-61.404468,-13.533369],[-61.404868,-13.528369],[-61.401268,-13.524069],[-61.394868,-13.521469],[-61.389668,-13.519769],[-61.384368,-13.519369],[-61.378868,-13.520469],[-61.374368,-13.521069],[-61.369668,-13.520969],[-61.365268,-13.521069],[-61.360768,-13.520769],[-61.355668,-13.521469],[-61.350568,-13.521169],[-61.346668,-13.520169],[-61.342268,-13.518269],[-61.340068,-13.515769],[-61.339868,-13.511569],[-61.339468,-13.508069],[-61.336268,-13.505469],[-61.328568,-13.503569],[-61.313468,-13.504369],[-61.308868,-13.504069],[-61.304968,-13.502369],[-61.301068,-13.498269],[-61.301068,-13.494069],[-61.302768,-13.490069],[-61.305468,-13.486369],[-61.305268,-13.481969],[-61.302468,-13.478869],[-61.296368,-13.477769],[-61.291768,-13.480069],[-61.288168,-13.482769],[-61.286968,-13.487969],[-61.285868,-13.492269],[-61.285968,-13.498269],[-61.285568,-13.502069],[-61.280368,-13.505569],[-61.275168,-13.505969],[-61.272268,-13.504169],[-61.269668,-13.501269],[-61.266768,-13.499369],[-61.262368,-13.497369],[-61.255268,-13.496269],[-61.248268,-13.496269],[-61.243268,-13.499069],[-61.241868,-13.501669],[-61.241668,-13.505269],[-61.243568,-13.511369],[-61.241368,-13.515969],[-61.237168,-13.516869],[-61.234768,-13.520069],[-61.233568,-13.525069],[-61.222868,-13.529769],[-61.215168,-13.528669],[-61.212568,-13.526769],[-61.207868,-13.525369],[-61.204268,-13.526969],[-61.198468,-13.533369],[-61.192768,-13.535969],[-61.188568,-13.532269],[-61.185168,-13.530469],[-61.182768,-13.527569],[-61.183268,-13.521869],[-61.187768,-13.516769],[-61.184068,-13.507769],[-61.180468,-13.508769],[-61.182468,-13.514269],[-61.178068,-13.514669],[-61.171168,-13.510669],[-61.160368,-13.515069],[-61.156668,-13.517069],[-61.154868,-13.519569],[-61.153168,-13.527269],[-61.146868,-13.531969],[-61.144268,-13.528669],[-61.145668,-13.523169],[-61.147368,-13.518969],[-61.144068,-13.513469],[-61.137868,-13.512869],[-61.137668,-13.517669],[-61.140668,-13.524769],[-61.139568,-13.528969],[-61.133868,-13.527269],[-61.132068,-13.523369],[-61.125968,-13.519869],[-61.120268,-13.521469],[-61.112468,-13.528369],[-61.106168,-13.531669],[-61.100868,-13.528369],[-61.101668,-13.524869],[-61.104168,-13.520369],[-61.103368,-13.515669],[-61.094768,-13.504869],[-61.095668,-13.499869],[-61.097768,-13.495769],[-61.094568,-13.492169],[-61.088968,-13.491969],[-61.082368,-13.495169],[-61.079068,-13.497969],[-61.075768,-13.499469],[-61.071068,-13.499969],[-61.065968,-13.500569],[-61.063568,-13.502069],[-61.063368,-13.507769],[-61.060268,-13.511769],[-61.054068,-13.511369],[-61.049368,-13.509869],[-61.046468,-13.509269],[-61.041068,-13.507669],[-61.038368,-13.505769],[-61.035568,-13.500969],[-61.035568,-13.496969],[-61.039268,-13.496869],[-61.047468,-13.495169],[-61.050868,-13.495269],[-61.052268,-13.492469],[-61.050868,-13.488669],[-61.046968,-13.484669],[-61.041068,-13.484969],[-61.029768,-13.489969],[-61.025468,-13.490469],[-61.020668,-13.488269],[-61.014868,-13.487469],[-61.012068,-13.489369],[-61.007168,-13.492469],[-61.001368,-13.494769],[-60.996968,-13.494769],[-60.993368,-13.496269],[-60.988568,-13.500969],[-60.990468,-13.504169],[-60.993868,-13.504869],[-60.996368,-13.501969],[-60.999068,-13.499869],[-61.003468,-13.501669],[-61.006368,-13.503369],[-61.009068,-13.507069],[-61.008768,-13.511769],[-61.007168,-13.517169],[-61.003268,-13.520169],[-60.999068,-13.523469],[-60.997968,-13.528669],[-61.001568,-13.529869],[-61.003868,-13.525169],[-61.008768,-13.523269],[-61.012368,-13.529569],[-61.009368,-13.538869],[-61.007068,-13.547469],[-61.005568,-13.550269],[-61.000468,-13.551669],[-60.995568,-13.551069],[-60.991368,-13.549269],[-60.986968,-13.548069],[-60.986468,-13.542169],[-60.986068,-13.538669],[-60.978868,-13.540069],[-60.972068,-13.536969],[-60.967368,-13.536769],[-60.962368,-13.540569],[-60.957968,-13.548869],[-60.950968,-13.551869],[-60.944368,-13.548869],[-60.940268,-13.545269],[-60.934668,-13.541169],[-60.922868,-13.540669],[-60.918668,-13.543369],[-60.916468,-13.546669],[-60.918968,-13.548869],[-60.924668,-13.556969],[-60.922468,-13.564969],[-60.920768,-13.568869],[-60.908868,-13.584769],[-60.902568,-13.589369],[-60.894068,-13.593769],[-60.887068,-13.601969],[-60.883468,-13.610769],[-60.879868,-13.617469],[-60.875168,-13.621369],[-60.868868,-13.622169],[-60.861368,-13.624369],[-60.854168,-13.629369],[-60.844868,-13.631369],[-60.841168,-13.627669],[-60.834868,-13.627069],[-60.828568,-13.629469],[-60.818868,-13.636869],[-60.815168,-13.643569],[-60.810268,-13.654469],[-60.801868,-13.656269],[-60.790868,-13.655569],[-60.786368,-13.656269],[-60.779868,-13.659769],[-60.774068,-13.661169],[-60.770468,-13.665069],[-60.770068,-13.672769],[-60.771268,-13.679669],[-60.769368,-13.684169],[-60.762968,-13.686369],[-60.755168,-13.687269],[-60.751368,-13.686669],[-60.748268,-13.685469],[-60.739668,-13.685269],[-60.735068,-13.686369],[-60.723768,-13.691569],[-60.717568,-13.693769],[-60.709268,-13.692969],[-60.705668,-13.695269],[-60.705768,-13.700769],[-60.704668,-13.704569],[-60.697068,-13.714869],[-60.693768,-13.715369],[-60.694268,-13.709769],[-60.695568,-13.701469],[-60.689968,-13.699369],[-60.686568,-13.703169],[-60.685868,-13.711969],[-60.684068,-13.715969],[-60.680768,-13.719869],[-60.676068,-13.722869],[-60.672168,-13.724169],[-60.665668,-13.729969],[-60.660568,-13.733369],[-60.655568,-13.737469],[-60.656168,-13.733569],[-60.652668,-13.730069],[-60.651568,-13.736069],[-60.646168,-13.738669],[-60.642668,-13.735669],[-60.641468,-13.730869],[-60.636768,-13.728169],[-60.630968,-13.728369],[-60.623368,-13.719469],[-60.619168,-13.720869],[-60.618868,-13.725269],[-60.611668,-13.725269],[-60.609668,-13.730369],[-60.612168,-13.734769],[-60.610868,-13.740269],[-60.607868,-13.736469],[-60.605868,-13.739369],[-60.606668,-13.746269],[-60.604268,-13.747969],[-60.600368,-13.748869],[-60.594268,-13.745469],[-60.591968,-13.743269],[-60.586968,-13.746869],[-60.581568,-13.747669],[-60.574668,-13.747369],[-60.578768,-13.755669],[-60.572368,-13.757069],[-60.566368,-13.757769],[-60.567368,-13.762869],[-60.570268,-13.765069],[-60.569368,-13.768669],[-60.561268,-13.769369],[-60.557668,-13.770769],[-60.550068,-13.781669],[-60.546468,-13.782369],[-60.546768,-13.777569],[-60.548568,-13.773969],[-60.548068,-13.770369],[-60.542468,-13.769269],[-60.531968,-13.771469],[-60.527368,-13.769569],[-60.522968,-13.768969],[-60.518168,-13.772569],[-60.517368,-13.777869],[-60.519268,-13.781569],[-60.522868,-13.784469],[-60.528468,-13.791769],[-60.523168,-13.793169],[-60.511568,-13.791069],[-60.504068,-13.795569],[-60.502068,-13.790869],[-60.497968,-13.789469],[-60.493068,-13.794469],[-60.490068,-13.795769],[-60.487168,-13.796069],[-60.483068,-13.795769],[-60.472568,-13.793669],[-60.467968,-13.795269],[-60.465468,-13.800369],[-60.473968,-13.801169],[-60.477868,-13.803369],[-60.478068,-13.807969],[-60.475268,-13.810269],[-60.467368,-13.812269],[-60.465168,-13.814869],[-60.467568,-13.820269],[-60.470368,-13.822969],[-60.474768,-13.823969],[-60.481968,-13.820169],[-60.486068,-13.819169],[-60.489368,-13.820269],[-60.489668,-13.824569],[-60.485268,-13.830369],[-60.482468,-13.832369],[-60.479668,-13.833269],[-60.474768,-13.829669],[-60.471668,-13.829569],[-60.469068,-13.832169],[-60.475268,-13.837069],[-60.478668,-13.839769],[-60.481668,-13.843369],[-60.484168,-13.848869],[-60.491168,-13.853169],[-60.491868,-13.857069],[-60.487568,-13.858069],[-60.478468,-13.852769],[-60.473068,-13.853169],[-60.466168,-13.855969],[-60.460068,-13.852869],[-60.456268,-13.854769],[-60.456168,-13.858569],[-60.461968,-13.861369],[-60.464268,-13.864369],[-60.464468,-13.872469],[-60.467268,-13.876269],[-60.472868,-13.879069],[-60.475968,-13.884669],[-60.474568,-13.888469],[-60.467568,-13.890669],[-60.467068,-13.885869],[-60.463468,-13.882369],[-60.455068,-13.880969],[-60.451868,-13.882669],[-60.451068,-13.887469],[-60.456068,-13.892869],[-60.455768,-13.897569],[-60.452168,-13.904569],[-60.452668,-13.912769],[-60.451068,-13.917469],[-60.449968,-13.928569],[-60.450668,-13.933269],[-60.450968,-13.937469],[-60.448468,-13.939169],[-60.444868,-13.939669],[-60.446368,-13.933669],[-60.445268,-13.930869],[-60.438568,-13.935169],[-60.431868,-13.939069],[-60.427968,-13.942669],[-60.423868,-13.939369],[-60.420268,-13.937169],[-60.417168,-13.941369],[-60.419168,-13.946569],[-60.416468,-13.949369],[-60.410968,-13.948269],[-60.410668,-13.951469],[-60.418868,-13.954969],[-60.418368,-13.958969],[-60.420068,-13.963669],[-60.422768,-13.962269],[-60.425768,-13.962569],[-60.422868,-13.966269],[-60.420068,-13.968969],[-60.418668,-13.974469],[-60.415068,-13.980569],[-60.412268,-13.981469],[-60.403468,-13.978669],[-60.397668,-13.977469],[-60.392668,-13.977769],[-60.389068,-13.978869],[-60.386868,-13.980969],[-60.382068,-13.987469],[-60.382068,-13.991569],[-60.385668,-13.993369],[-60.390968,-13.992569],[-60.393968,-13.992769],[-60.395468,-13.996969],[-60.398668,-13.996069],[-60.402268,-13.999469],[-60.402268,-14.003469],[-60.401468,-14.009869],[-60.402868,-14.017069],[-60.405068,-14.019869],[-60.406968,-14.022969],[-60.407368,-14.026869],[-60.406968,-14.030869],[-60.410168,-14.033369],[-60.412768,-14.035969],[-60.416168,-14.037769],[-60.416968,-14.041169],[-60.419968,-14.043669],[-60.421368,-14.047169],[-60.425068,-14.048569],[-60.426868,-14.051169],[-60.428268,-14.053869],[-60.428268,-14.057169],[-60.428568,-14.061869],[-60.430768,-14.064069],[-60.432168,-14.068469],[-60.436568,-14.072069],[-60.439468,-14.075969],[-60.441568,-14.078769],[-60.444268,-14.079669],[-60.445568,-14.083169],[-60.448268,-14.085669],[-60.452368,-14.087969],[-60.462068,-14.093669],[-60.466168,-14.094569],[-60.470368,-14.089769],[-60.477268,-14.093169],[-60.479468,-14.096669],[-60.479468,-14.101369],[-60.476968,-14.105269],[-60.473368,-14.108369],[-60.475068,-14.111769],[-60.479968,-14.113069],[-60.483868,-14.116069],[-60.482168,-14.118869],[-60.479468,-14.120869],[-60.478568,-14.123769],[-60.476668,-14.126369],[-60.473168,-14.128269],[-60.474568,-14.130969],[-60.480368,-14.132669],[-60.481768,-14.136869],[-60.479968,-14.141569],[-60.477068,-14.147969],[-60.474268,-14.151769],[-60.475968,-14.156669],[-60.476368,-14.160669],[-60.481968,-14.162869],[-60.484968,-14.165569],[-60.486968,-14.169169],[-60.488668,-14.172169],[-60.488668,-14.175269],[-60.487768,-14.179069],[-60.490068,-14.183269],[-60.491868,-14.188569],[-60.486068,-14.193069],[-60.481768,-14.193569],[-60.476368,-14.192769],[-60.472268,-14.191969],[-60.471668,-14.196269],[-60.471368,-14.199269],[-60.468768,-14.201769],[-60.467568,-14.205669],[-60.468368,-14.210769],[-60.470268,-14.213969],[-60.468068,-14.216169],[-60.465568,-14.218369],[-60.462268,-14.223169],[-60.465468,-14.230269],[-60.463968,-14.234369],[-60.458668,-14.235569],[-60.455068,-14.237569],[-60.449968,-14.240369],[-60.449568,-14.250169],[-60.457368,-14.255269],[-60.461468,-14.258469],[-60.463168,-14.261869],[-60.465168,-14.265169],[-60.463668,-14.267569],[-60.461168,-14.272869],[-60.462068,-14.277569],[-60.462068,-14.280569],[-60.461168,-14.284769],[-60.458968,-14.288869],[-60.456868,-14.291969],[-60.456468,-14.295369],[-60.456268,-14.298369],[-60.456168,-14.304169],[-60.451368,-14.306569],[-60.452068,-14.309469],[-60.453268,-14.313269],[-60.449868,-14.315569],[-60.445268,-14.319269],[-60.440568,-14.321269],[-60.439468,-14.324669],[-60.438868,-14.327869],[-60.435468,-14.330769],[-60.433268,-14.335469],[-60.429368,-14.338769],[-60.425568,-14.343169],[-60.426868,-14.347269],[-60.424268,-14.350369],[-60.422768,-14.353369],[-60.419768,-14.352769],[-60.417768,-14.348369],[-60.413868,-14.349869],[-60.415268,-14.354169],[-60.413868,-14.358569],[-60.410868,-14.359369],[-60.408368,-14.355569],[-60.406468,-14.359169],[-60.409268,-14.361869],[-60.411368,-14.364069],[-60.408368,-14.368069],[-60.405568,-14.364769],[-60.402868,-14.366569],[-60.399768,-14.365769],[-60.396468,-14.364369],[-60.394068,-14.367569],[-60.396168,-14.369769],[-60.395368,-14.373669],[-60.397368,-14.377369],[-60.394268,-14.379169],[-60.395168,-14.382669],[-60.396768,-14.387769],[-60.399568,-14.386369],[-60.400468,-14.382169],[-60.404468,-14.385369],[-60.403468,-14.389269],[-60.400468,-14.390169],[-60.402268,-14.395969],[-60.403768,-14.399869],[-60.402568,-14.402969],[-60.399568,-14.404269],[-60.401268,-14.409869],[-60.403668,-14.411669],[-60.406268,-14.413069],[-60.402668,-14.416169],[-60.400868,-14.419769],[-60.399768,-14.422869],[-60.397068,-14.419769],[-60.394368,-14.422169],[-60.397968,-14.426369],[-60.395068,-14.428869],[-60.399368,-14.432269],[-60.395468,-14.435469],[-60.391568,-14.434069],[-60.387868,-14.435869],[-60.384668,-14.439169],[-60.383068,-14.441669],[-60.381668,-14.445669],[-60.380568,-14.454669],[-60.377968,-14.456469],[-60.379068,-14.460869],[-60.378268,-14.464269],[-60.372468,-14.467669],[-60.368268,-14.468069],[-60.364968,-14.469069],[-60.361968,-14.470569],[-60.361668,-14.474169],[-60.360268,-14.477569],[-60.360768,-14.481369],[-60.361468,-14.485569],[-60.365768,-14.484469],[-60.366168,-14.487769],[-60.358368,-14.491369],[-60.355268,-14.492569],[-60.351768,-14.494369],[-60.348468,-14.496969],[-60.347568,-14.501569],[-60.346968,-14.505269],[-60.344768,-14.507369],[-60.338668,-14.511069],[-60.339868,-14.515969],[-60.341968,-14.519669],[-60.341968,-14.523969],[-60.339068,-14.526969],[-60.336468,-14.529469],[-60.339568,-14.530969],[-60.342568,-14.533469],[-60.338668,-14.535369],[-60.335968,-14.538169],[-60.334368,-14.542769],[-60.335368,-14.546069],[-60.332868,-14.553369],[-60.331468,-14.557169],[-60.328268,-14.558269],[-60.327868,-14.561869],[-60.330768,-14.564969],[-60.331168,-14.568569],[-60.329268,-14.573169],[-60.327868,-14.576869],[-60.325968,-14.579969],[-60.325368,-14.585169],[-60.325968,-14.588669],[-60.325968,-14.592669],[-60.324368,-14.597569],[-60.323968,-14.600969],[-60.323168,-14.604169],[-60.321068,-14.608869],[-60.316368,-14.613669],[-60.312368,-14.615469],[-60.305868,-14.617669],[-60.298968,-14.621369],[-60.291668,-14.625169],[-60.287468,-14.623869],[-60.280168,-14.623669],[-60.276468,-14.622669],[-60.272968,-14.620769],[-60.262668,-14.789969],[-60.259868,-14.836469],[-60.254168,-14.930569],[-60.246268,-15.063769],[-60.244368,-15.096769],[-60.500968,-15.096169],[-60.564968,-15.108669],[-60.533068,-15.146469],[-60.500468,-15.179769],[-60.494068,-15.186869],[-60.384068,-15.310469],[-60.371568,-15.324369],[-60.243868,-15.467669],[-60.238568,-15.473869],[-60.236068,-15.500769],[-60.232168,-15.544969],[-60.228368,-15.586869],[-60.225968,-15.618269],[-60.222868,-15.656669],[-60.214068,-15.758269],[-60.210468,-15.801869],[-60.207268,-15.839069],[-60.203268,-15.885769],[-60.201068,-15.911969],[-60.197068,-15.963369],[-60.193768,-16.000569],[-60.181368,-16.151469],[-60.177268,-16.197769],[-60.171468,-16.265969],[-60.135968,-16.267069],[-60.105668,-16.267169],[-60.060268,-16.267869],[-60.033468,-16.268169],[-60.012468,-16.268969],[-60.001568,-16.268969],[-59.973068,-16.270069],[-59.895068,-16.271769],[-59.869068,-16.272269],[-59.823168,-16.272969],[-59.775068,-16.273769],[-59.705668,-16.274769],[-59.536768,-16.277369],[-59.500168,-16.278369],[-59.496068,-16.278769],[-59.472768,-16.279269],[-59.468168,-16.279069],[-59.267468,-16.287769],[-59.156768,-16.292069],[-59.134068,-16.293069],[-59.114168,-16.293869],[-59.017068,-16.298069],[-59.000168,-16.298869],[-58.965368,-16.300069],[-58.961468,-16.300069],[-58.922268,-16.301669],[-58.875968,-16.303369],[-58.818568,-16.305869],[-58.785968,-16.306869],[-58.744468,-16.308769],[-58.621268,-16.313269],[-58.436568,-16.320969],[-58.430468,-16.321269],[-58.423868,-16.316569],[-58.408368,-16.309169],[-58.399768,-16.303269],[-58.394068,-16.296669],[-58.390768,-16.284469],[-58.390068,-16.274769],[-58.391068,-16.269369],[-58.388568,-16.260969],[-58.382368,-16.264669],[-58.365768,-16.273269],[-58.353168,-16.269269],[-58.346368,-16.273369],[-58.338468,-16.272969],[-58.328268,-16.270369],[-58.326768,-16.267969],[-58.323168,-16.265469],[-58.316868,-16.290869],[-58.303068,-16.307669],[-58.303268,-16.329569],[-58.306368,-16.338369],[-58.308768,-16.360269],[-58.307168,-16.370169],[-58.309368,-16.372969],[-58.314568,-16.371969],[-58.318568,-16.376269],[-58.324368,-16.377969],[-58.327868,-16.382069],[-58.330968,-16.385469],[-58.333768,-16.387669],[-58.339368,-16.386269],[-58.344168,-16.389269],[-58.346268,-16.393769],[-58.344268,-16.396269],[-58.344768,-16.400069],[-58.347568,-16.406669],[-58.350968,-16.412769],[-58.352768,-16.419169],[-58.356068,-16.427169],[-58.354468,-16.431169],[-58.353168,-16.435169],[-58.352868,-16.439969],[-58.347668,-16.454369],[-58.342868,-16.462269],[-58.334668,-16.477869],[-58.333168,-16.484469],[-58.333668,-16.489969],[-58.337868,-16.499969],[-58.343768,-16.517669],[-58.353868,-16.523369],[-58.357768,-16.529269],[-58.385968,-16.543569],[-58.388568,-16.551669],[-58.393768,-16.562769],[-58.413168,-16.570769],[-58.421368,-16.573469],[-58.428068,-16.585669],[-58.436068,-16.592269],[-58.450968,-16.627669],[-58.462968,-16.652269],[-58.460868,-16.666669],[-58.468468,-16.698869],[-58.470268,-16.702069],[-58.470568,-16.705369],[-58.468068,-16.713769],[-58.466768,-16.716669],[-58.466668,-16.720869],[-58.467668,-16.724569],[-58.468168,-16.730869],[-58.469868,-16.733669],[-58.472768,-16.738069],[-58.473168,-16.745869],[-58.469868,-16.750569],[-58.466668,-16.757969],[-58.463168,-16.770769],[-58.463668,-16.778669],[-58.461168,-16.782569],[-58.458668,-16.785869],[-58.463368,-16.792469],[-58.466468,-16.792469],[-58.471968,-16.791369],[-58.472768,-16.797569],[-58.475268,-16.803869],[-58.477068,-16.812169],[-58.477468,-16.815469],[-58.477368,-16.818869],[-58.475968,-16.827369],[-58.469868,-16.833969],[-58.462268,-16.840069],[-58.463368,-16.844169],[-58.467668,-16.849169],[-58.461468,-16.849469],[-58.462268,-16.853469],[-58.465968,-16.857569],[-58.463468,-16.859269],[-58.461468,-16.864069],[-58.466268,-16.868669],[-58.463168,-16.873369],[-58.464868,-16.880169],[-58.467268,-16.884569],[-58.465668,-16.888269],[-58.466268,-16.893769],[-58.467968,-16.897569],[-58.460868,-16.899269],[-58.461968,-16.904069],[-58.466968,-16.910969],[-58.473768,-16.915569],[-58.469768,-16.920869],[-58.468768,-16.923969],[-58.473468,-16.931069],[-58.474468,-16.934869],[-58.472768,-16.937969],[-58.468668,-16.941069],[-58.463168,-16.939369],[-58.460468,-16.937669],[-58.457568,-16.939069],[-58.457568,-16.944569],[-58.458668,-16.947369],[-58.460668,-16.949869],[-58.461768,-16.954369],[-58.461968,-16.958169],[-58.460168,-16.965869],[-58.456168,-16.969269],[-58.452568,-16.968669],[-58.448768,-16.967569],[-58.448268,-16.971669],[-58.447068,-16.978869],[-58.444968,-16.981669],[-58.437768,-16.985369],[-58.431568,-16.990769],[-58.423968,-16.988669],[-58.426568,-16.995869],[-58.427268,-16.999369],[-58.429068,-17.001669],[-58.433768,-17.004369],[-58.435768,-17.008469],[-58.433568,-17.021769],[-58.434968,-17.027269],[-58.430768,-17.029169],[-58.426168,-17.029069],[-58.420368,-17.029769],[-58.417568,-17.032369],[-58.416768,-17.035669],[-58.419168,-17.038069],[-58.425768,-17.036969],[-58.430568,-17.036769],[-58.433868,-17.038869],[-58.433368,-17.046669],[-58.429168,-17.048569],[-58.422868,-17.049669],[-58.422768,-17.053269],[-58.429768,-17.057169],[-58.432168,-17.058769],[-58.432968,-17.063469],[-58.430568,-17.071269],[-58.432768,-17.074569],[-58.435768,-17.078769],[-58.435868,-17.082669],[-58.434668,-17.085669],[-58.425768,-17.089369],[-58.424968,-17.093669],[-58.428368,-17.100069],[-58.429068,-17.105269],[-58.425368,-17.111969],[-58.422468,-17.113369],[-58.419168,-17.113669],[-58.414768,-17.111669],[-58.408368,-17.110369],[-58.404468,-17.108369],[-58.401568,-17.106169],[-58.397068,-17.104669],[-58.391868,-17.105369],[-58.388268,-17.107769],[-58.386068,-17.111369],[-58.385968,-17.115369],[-58.387468,-17.119169],[-58.393768,-17.127969],[-58.397568,-17.136769],[-58.397968,-17.152669],[-58.396868,-17.181569],[-58.394568,-17.185269],[-58.382468,-17.192369],[-58.368668,-17.200469],[-58.364668,-17.199669],[-58.363568,-17.202969],[-58.363368,-17.206169],[-58.364468,-17.213169],[-58.361368,-17.215169],[-58.360668,-17.212369],[-58.356468,-17.212269],[-58.351468,-17.219069],[-58.349468,-17.225269],[-58.346968,-17.228569],[-58.344768,-17.233169],[-58.340568,-17.233869],[-58.337268,-17.240469],[-58.334268,-17.242669],[-58.327068,-17.247369],[-58.323268,-17.251869],[-58.319568,-17.255669],[-58.322068,-17.261269],[-58.318468,-17.267369],[-58.315568,-17.267869],[-58.312768,-17.267069],[-58.309368,-17.266869],[-58.305768,-17.267869],[-58.303268,-17.271469],[-58.303868,-17.277269],[-58.302468,-17.280469],[-58.294168,-17.284469],[-58.292168,-17.287269],[-58.296868,-17.291369],[-58.298668,-17.294669],[-58.298568,-17.297869],[-58.293968,-17.301469],[-58.291068,-17.301869],[-58.287768,-17.301069],[-58.284268,-17.298969],[-58.277268,-17.299969],[-58.275468,-17.304769],[-58.278668,-17.314069],[-58.276468,-17.323569],[-58.270168,-17.327969],[-58.266768,-17.328169],[-58.263568,-17.330369],[-58.262168,-17.334269],[-58.263768,-17.342269],[-58.261468,-17.345169],[-58.256268,-17.345969],[-58.254668,-17.352469],[-58.251568,-17.354269],[-58.246968,-17.354169],[-58.243668,-17.351469],[-58.240268,-17.349569],[-58.233568,-17.351369],[-58.227568,-17.348369],[-58.226368,-17.351669],[-58.227768,-17.355869],[-58.218168,-17.360069],[-58.207168,-17.356169],[-58.203168,-17.356469],[-58.199868,-17.359269],[-58.196568,-17.363669],[-58.195168,-17.368869],[-58.196268,-17.372769],[-58.199968,-17.378569],[-58.200368,-17.382969],[-58.197068,-17.386569],[-58.193468,-17.387969],[-58.190468,-17.389669],[-58.185468,-17.391469],[-58.177168,-17.391469],[-58.169168,-17.389269],[-58.158068,-17.384569],[-58.152368,-17.384069],[-58.149768,-17.387769],[-58.151168,-17.393169],[-58.151168,-17.397169],[-58.152568,-17.401969],[-58.150968,-17.405869],[-58.147368,-17.411469],[-58.144268,-17.414169],[-58.139268,-17.415569],[-58.133268,-17.412469],[-58.129868,-17.411469],[-58.126668,-17.412069],[-58.122768,-17.414569],[-58.120868,-17.419669],[-58.120468,-17.425569],[-58.118668,-17.434369],[-58.118868,-17.441569],[-58.120768,-17.447469],[-58.117268,-17.451069],[-58.109968,-17.452569],[-58.101168,-17.456269],[-58.097768,-17.457269],[-58.090168,-17.460969],[-58.085868,-17.459369],[-58.079668,-17.457669],[-58.076368,-17.456269],[-58.073468,-17.452869],[-58.068268,-17.452369],[-58.065168,-17.450969],[-58.060168,-17.450669],[-58.057968,-17.455369],[-58.053068,-17.458669],[-58.049468,-17.464069],[-58.046468,-17.475869],[-58.044168,-17.478869],[-58.044568,-17.482469],[-58.043868,-17.485269],[-58.044768,-17.489969],[-58.043368,-17.492669],[-58.040068,-17.493569],[-58.034868,-17.493669],[-58.030868,-17.495769],[-58.027568,-17.496269],[-58.022068,-17.495069],[-58.017168,-17.499369],[-58.013268,-17.498669],[-58.010168,-17.499669],[-58.008268,-17.502369],[-58.005968,-17.505269],[-58.000268,-17.506369],[-57.999968,-17.510969],[-57.997468,-17.515169],[-57.992968,-17.515069],[-57.988268,-17.513269],[-57.984668,-17.511069],[-57.980668,-17.510769],[-57.972868,-17.505769],[-57.965568,-17.501569],[-57.962568,-17.500269],[-57.931168,-17.480069],[-57.883468,-17.449569],[-57.752368,-17.564369],[-57.759568,-17.562169],[-57.767368,-17.558269],[-57.771468,-17.557969],[-57.776868,-17.558569],[-57.781168,-17.557269],[-57.785568,-17.555469],[-57.789168,-17.555569],[-57.792768,-17.555769],[-57.795268,-17.559069],[-57.794768,-17.563369],[-57.790368,-17.566669],[-57.785868,-17.569069],[-57.785368,-17.575169],[-57.781668,-17.577369],[-57.786368,-17.580169],[-57.790268,-17.583169],[-57.789868,-17.586469],[-57.786368,-17.585769],[-57.777068,-17.585069],[-57.778768,-17.587669],[-57.782768,-17.592369],[-57.786668,-17.592269],[-57.785068,-17.595069],[-57.778068,-17.594869],[-57.774368,-17.598369],[-57.777868,-17.603169],[-57.783668,-17.606769],[-57.782568,-17.612969],[-57.778768,-17.614369],[-57.773368,-17.611469],[-57.771868,-17.614669],[-57.773168,-17.619369],[-57.773968,-17.625269],[-57.780068,-17.632169],[-57.782868,-17.636069],[-57.783368,-17.639269],[-57.781268,-17.643769],[-57.776468,-17.650069],[-57.775668,-17.656269],[-57.768668,-17.659769],[-57.762868,-17.660169],[-57.759868,-17.664869],[-57.758268,-17.668069],[-57.755668,-17.676369],[-57.753068,-17.681369],[-57.751568,-17.687469],[-57.748368,-17.693469],[-57.741168,-17.693169],[-57.737768,-17.699269],[-57.735568,-17.705469],[-57.734668,-17.710369],[-57.730868,-17.718669],[-57.727768,-17.720569],[-57.724568,-17.721369],[-57.720268,-17.720169],[-57.709568,-17.729769],[-57.720068,-17.771769],[-57.683268,-17.807969],[-57.683068,-17.828169],[-57.720568,-17.827869],[-57.709668,-17.848069],[-57.654068,-17.945669],[-57.631868,-17.985569],[-57.624168,-18.004069],[-57.600068,-18.046369],[-57.581768,-18.108269],[-57.576268,-18.126669],[-57.574868,-18.131869],[-57.505168,-18.200269],[-57.501568,-18.197469],[-57.495268,-18.197869],[-57.491468,-18.202069],[-57.488068,-18.200369],[-57.485068,-18.198169],[-57.482068,-18.197869],[-57.478668,-18.201569],[-57.479168,-18.204569],[-57.480068,-18.207669],[-57.476768,-18.208969],[-57.473468,-18.212969],[-57.473668,-18.217269],[-57.470068,-18.218369],[-57.468068,-18.221969],[-57.464468,-18.223369],[-57.457568,-18.225969],[-57.455168,-18.230569],[-57.499968,-18.236069],[-57.557768,-18.240269],[-57.766568,-18.899269],[-57.719768,-18.898969],[-57.719268,-18.976969],[-57.714268,-18.977269],[-57.710668,-18.979269],[-57.708768,-18.981969],[-57.704368,-18.986469],[-57.702668,-18.989369],[-57.701768,-18.993269],[-57.697368,-18.996869],[-57.696668,-19.000169],[-57.698468,-19.002969],[-57.698568,-19.006269],[-57.693768,-19.010269],[-57.697468,-19.012669],[-57.702568,-19.019869],[-57.704668,-19.022569],[-57.706868,-19.025369],[-57.710168,-19.032569],[-57.720368,-19.032769],[-57.752368,-19.033069],[-57.784468,-19.033869],[-57.855268,-19.182669],[-57.856768,-19.185769],[-57.864168,-19.200769],[-57.874468,-19.222369],[-57.877668,-19.229169],[-57.886268,-19.247469],[-57.965668,-19.413469],[-58.000868,-19.486969],[-58.032268,-19.552469],[-58.131768,-19.758469],[-57.858068,-19.971369],[-57.862468,-19.985569],[-57.879368,-20.007169],[-57.887368,-20.015469],[-57.896268,-20.031169],[-57.900368,-20.039569],[-57.902268,-20.042069],[-57.905468,-20.042869],[-57.908468,-20.039569],[-57.914768,-20.033869],[-57.927568,-20.022969],[-57.935168,-20.020369],[-57.943268,-20.018969],[-57.946268,-20.018769],[-57.952168,-20.019569],[-57.958668,-20.021769],[-57.965868,-20.030869],[-57.969468,-20.041969],[-57.972568,-20.048069],[-57.977768,-20.053369],[-57.983268,-20.056869],[-57.986768,-20.058369],[-57.990068,-20.058269],[-57.994768,-20.056569],[-58.000268,-20.055869],[-58.008268,-20.058369],[-58.014068,-20.057769],[-58.018968,-20.057669],[-58.022868,-20.058069],[-58.026468,-20.059369],[-58.033168,-20.065169],[-58.037268,-20.071769],[-58.039168,-20.082569],[-58.040568,-20.086769],[-58.043968,-20.098669],[-58.048268,-20.104269],[-58.052968,-20.106669],[-58.056668,-20.107169],[-58.061668,-20.106969],[-58.069368,-20.105569],[-58.075368,-20.105269],[-58.081768,-20.106469],[-58.085368,-20.106669],[-58.088968,-20.107769],[-58.093068,-20.110269],[-58.097568,-20.115069],[-58.104568,-20.124469],[-58.108168,-20.130169],[-58.110568,-20.136069],[-58.116168,-20.144369],[-58.122968,-20.148169],[-58.133868,-20.151469],[-58.138568,-20.152269],[-58.149268,-20.151569],[-58.152568,-20.152869],[-58.156468,-20.155669],[-58.159468,-20.158769],[-58.163168,-20.162569],[-58.165268,-20.166169],[-58.167468,-20.168169],[-58.168168,-20.172269],[-58.166168,-20.176469],[-58.158668,-20.181369],[-58.154468,-20.181869],[-58.146468,-20.180469],[-58.139868,-20.180569],[-58.132468,-20.181869],[-58.127168,-20.185269],[-58.123568,-20.189669],[-58.121868,-20.194369],[-58.121968,-20.198469],[-58.124368,-20.202069],[-58.132068,-20.207269],[-58.140368,-20.210069],[-58.147668,-20.211969],[-58.154168,-20.215669],[-58.159868,-20.222369],[-58.163468,-20.227269],[-58.165968,-20.231769],[-58.166368,-20.236469],[-58.165368,-20.242169],[-58.163868,-20.249169],[-58.162068,-20.257169],[-58.159468,-20.263769],[-58.155068,-20.267469],[-58.150068,-20.270369],[-58.144368,-20.271769],[-58.140068,-20.270769],[-58.137168,-20.268569],[-58.136268,-20.265469],[-58.135168,-20.261569],[-58.132768,-20.258769],[-58.130768,-20.256269],[-58.127168,-20.253069],[-58.123268,-20.251269],[-58.119468,-20.249469],[-58.114468,-20.248669],[-58.107568,-20.249069],[-58.101968,-20.250569],[-58.096668,-20.253869],[-58.092568,-20.258769],[-58.089868,-20.264569],[-58.089768,-20.268969],[-58.089768,-20.276769],[-58.090668,-20.284869],[-58.092668,-20.294469],[-58.094768,-20.301169],[-58.097068,-20.306369],[-58.101368,-20.313569],[-58.102868,-20.319869],[-58.100868,-20.328269],[-58.097368,-20.335969],[-58.095668,-20.342869],[-58.093768,-20.351369],[-58.090868,-20.358169],[-58.086968,-20.366169],[-58.083968,-20.372169],[-58.081768,-20.375769],[-58.078968,-20.380669],[-58.076268,-20.384669],[-58.073168,-20.387969],[-58.067168,-20.391069],[-58.061668,-20.393169],[-58.055068,-20.394569],[-58.047468,-20.396769],[-58.043368,-20.398169],[-58.039568,-20.398969],[-58.033468,-20.399369],[-58.027868,-20.399569],[-58.024568,-20.400069],[-58.021768,-20.401869],[-58.019568,-20.406469],[-58.015668,-20.412569],[-58.010768,-20.418869],[-58.007168,-20.423069],[-58.004168,-20.426569],[-58.001368,-20.430769],[-57.998068,-20.436869],[-57.996368,-20.443469],[-57.996868,-20.450669],[-57.998368,-20.455469],[-58.001668,-20.460669],[-58.004668,-20.465569],[-58.006768,-20.468469],[-58.009668,-20.473969],[-58.013568,-20.480269],[-58.015668,-20.486169],[-58.016768,-20.490769],[-58.017168,-20.496869],[-58.018168,-20.503069],[-58.019768,-20.508569],[-58.019868,-20.514369],[-58.017668,-20.522869],[-58.015668,-20.528469],[-58.013268,-20.533369],[-58.010368,-20.539469],[-58.006568,-20.547569],[-58.004868,-20.554469],[-58.003768,-20.559369],[-58.002168,-20.563469],[-57.999368,-20.568869],[-57.997168,-20.572369],[-57.996968,-20.575469],[-57.998568,-20.578469],[-58.002068,-20.582869],[-58.003868,-20.585369],[-58.006568,-20.588969],[-58.007968,-20.591769],[-58.009268,-20.594569],[-58.011068,-20.598469],[-58.012668,-20.604569],[-58.013168,-20.608269],[-58.012468,-20.612569],[-58.010768,-20.616169],[-58.006768,-20.619969],[-58.003468,-20.624069],[-57.999768,-20.627769],[-57.995468,-20.631669],[-57.990268,-20.634069],[-57.984668,-20.636769],[-57.978668,-20.638269],[-57.974568,-20.639969],[-57.970868,-20.643169],[-57.970968,-20.647269],[-57.972768,-20.651569],[-57.974468,-20.658369],[-57.977768,-20.667569],[-57.980868,-20.673969],[-57.984668,-20.680269],[-57.988268,-20.686669],[-57.988868,-20.694069],[-57.987868,-20.699569],[-57.985068,-20.703469],[-57.981068,-20.705669],[-57.975668,-20.706269],[-57.971768,-20.705669],[-57.966968,-20.704369],[-57.962368,-20.704569],[-57.958168,-20.704869],[-57.953568,-20.702169],[-57.950168,-20.698269],[-57.948468,-20.694569],[-57.946868,-20.689969],[-57.945168,-20.686069],[-57.942368,-20.681069],[-57.939168,-20.675369],[-57.936668,-20.669969],[-57.933068,-20.666069],[-57.929168,-20.663969],[-57.923068,-20.664469],[-57.918568,-20.666369],[-57.913668,-20.670769],[-57.911168,-20.674969],[-57.908368,-20.679969],[-57.905068,-20.686569],[-57.903168,-20.689869],[-57.897868,-20.693569],[-57.894068,-20.696869],[-57.890368,-20.701069],[-57.886268,-20.705469],[-57.882168,-20.709069],[-57.877968,-20.713669],[-57.874668,-20.719469],[-57.870168,-20.725369],[-57.868668,-20.730669],[-57.868268,-20.735369],[-57.864768,-20.742269],[-57.864668,-20.746369],[-57.867968,-20.749369],[-57.873368,-20.750769],[-57.878868,-20.750469],[-57.883868,-20.749169],[-57.889568,-20.748569],[-57.896268,-20.747669],[-57.903168,-20.746569],[-57.908668,-20.745569],[-57.914468,-20.744669],[-57.920268,-20.743869],[-57.925468,-20.744169],[-57.930268,-20.744769],[-57.934068,-20.745869],[-57.936668,-20.748269],[-57.941368,-20.752169],[-57.946068,-20.758469],[-57.949568,-20.765169],[-57.951268,-20.772269],[-57.952368,-20.776169],[-57.953968,-20.780669],[-57.956868,-20.784469],[-57.958668,-20.786969],[-57.961268,-20.791469],[-57.961268,-20.794969],[-57.959368,-20.797869],[-57.955768,-20.798869],[-57.951468,-20.800269],[-57.947068,-20.800469],[-57.941268,-20.800769],[-57.935868,-20.799469],[-57.929968,-20.797769],[-57.922168,-20.794769],[-57.917568,-20.792469],[-57.913668,-20.790069],[-57.910968,-20.788869],[-57.905868,-20.788069],[-57.898768,-20.788669],[-57.893268,-20.790669],[-57.889668,-20.793669],[-57.884568,-20.798669],[-57.876668,-20.804369],[-57.873768,-20.807169],[-57.871568,-20.810869],[-57.868068,-20.815169],[-57.863368,-20.819369],[-57.859368,-20.824869],[-57.857268,-20.829669],[-57.854668,-20.835669],[-57.853968,-20.841169],[-57.854968,-20.845569],[-57.857868,-20.850869],[-57.862268,-20.853569],[-57.866468,-20.853869],[-57.869468,-20.853469],[-57.872668,-20.853869],[-57.876968,-20.856469],[-57.883868,-20.862469],[-57.889668,-20.868069],[-57.891868,-20.870069],[-57.894768,-20.872169],[-57.897568,-20.873869],[-57.901568,-20.876669],[-57.904268,-20.878869],[-57.908068,-20.881269],[-57.910968,-20.882069],[-57.914568,-20.883469],[-57.918168,-20.885969],[-57.921968,-20.888569],[-57.926468,-20.891869],[-57.928868,-20.895169],[-57.928068,-20.900169],[-57.926168,-20.902669],[-57.921868,-20.904469],[-57.916468,-20.904469],[-57.911268,-20.903469],[-57.907368,-20.903069],[-57.902068,-20.901769],[-57.897668,-20.902569],[-57.892368,-20.904469],[-57.886468,-20.908469],[-57.881368,-20.914569],[-57.879668,-20.918569],[-57.878768,-20.923869],[-57.877668,-20.929369],[-57.876068,-20.935169],[-57.874468,-20.939869],[-57.871568,-20.943469],[-57.867168,-20.946669],[-57.863568,-20.948769],[-57.856668,-20.949369],[-57.850668,-20.948769],[-57.844468,-20.946369],[-57.841668,-20.942769],[-57.837968,-20.939969],[-57.835468,-20.937769],[-57.833468,-20.935169],[-57.828568,-20.933869],[-57.824868,-20.933869],[-57.821568,-20.935469],[-57.819668,-20.937969],[-57.819068,-20.942069],[-57.818768,-20.945169],[-57.818768,-20.948469],[-57.820968,-20.952069],[-57.823568,-20.956769],[-57.824668,-20.961469],[-57.825168,-20.965169],[-57.824268,-20.968169],[-57.822168,-20.972069],[-57.818868,-20.975969],[-57.817368,-20.979669],[-57.820468,-20.983369],[-57.823568,-20.985769],[-57.827368,-20.989669],[-57.829568,-20.992669],[-57.833268,-20.997169],[-57.837268,-21.001569],[-57.840468,-21.005569],[-57.842668,-21.010369],[-57.845568,-21.016069],[-57.849568,-21.021269],[-57.852568,-21.025369],[-57.857568,-21.031269],[-57.862168,-21.035369],[-57.866168,-21.039169],[-57.868268,-21.041769],[-57.868568,-21.046169],[-57.868068,-21.051969],[-57.867668,-21.060169],[-57.865768,-21.066669],[-57.862268,-21.070569],[-57.859168,-21.074569],[-57.856768,-21.077869],[-57.854468,-21.082169],[-57.850968,-21.089069],[-57.845868,-21.096969],[-57.847368,-21.101269],[-57.850268,-21.106169],[-57.854468,-21.113969],[-57.858968,-21.123569],[-57.863068,-21.129869],[-57.864968,-21.136269],[-57.862468,-21.147369],[-57.860068,-21.158169],[-57.855868,-21.168869],[-57.851668,-21.179469],[-57.848868,-21.187769],[-57.848168,-21.194969],[-57.849168,-21.201769],[-57.849968,-21.207669],[-57.851368,-21.217969],[-57.853068,-21.227069],[-57.857168,-21.233069],[-57.862968,-21.236069],[-57.867668,-21.238669],[-57.877168,-21.247769],[-57.886568,-21.253769],[-57.897968,-21.260369],[-57.905968,-21.265169],[-57.912068,-21.270969],[-57.921368,-21.278769],[-57.920368,-21.284569],[-57.914468,-21.292269],[-57.905668,-21.300569],[-57.894868,-21.307169],[-57.885168,-21.308769],[-57.875768,-21.311069],[-57.869068,-21.313469],[-57.861168,-21.315569],[-57.854668,-21.316869],[-57.852868,-21.320169],[-57.852568,-21.325769],[-57.853668,-21.332069],[-57.855868,-21.338469],[-57.857168,-21.341769],[-57.861068,-21.350569],[-57.866668,-21.356769],[-57.874468,-21.363269],[-57.880268,-21.368069],[-57.884868,-21.371669],[-57.887968,-21.374469],[-57.892368,-21.377969],[-57.896768,-21.383469],[-57.901868,-21.392169],[-57.905568,-21.398769],[-57.908068,-21.402569],[-57.909468,-21.406969],[-57.909568,-21.414469],[-57.910068,-21.420869],[-57.912868,-21.425269],[-57.915568,-21.429969],[-57.919668,-21.437969],[-57.924668,-21.444969],[-57.927168,-21.449869],[-57.927268,-21.452969],[-57.925568,-21.456869],[-57.925068,-21.461969],[-57.926568,-21.468769],[-57.929468,-21.474769],[-57.932268,-21.480269],[-57.934368,-21.483969],[-57.939668,-21.491369],[-57.946368,-21.498569],[-57.954868,-21.505769],[-57.960468,-21.509869],[-57.964568,-21.515369],[-57.967668,-21.521469],[-57.968368,-21.527669],[-57.968468,-21.535269],[-57.965868,-21.551569],[-57.964068,-21.557269],[-57.961568,-21.562369],[-57.956768,-21.566869],[-57.950768,-21.569869],[-57.940968,-21.571869],[-57.936268,-21.573469],[-57.930268,-21.576569],[-57.923368,-21.579269],[-57.918868,-21.582169],[-57.915568,-21.586269],[-57.913968,-21.590369],[-57.914468,-21.595569],[-57.918568,-21.598869],[-57.923568,-21.601769],[-57.928568,-21.605869],[-57.931968,-21.609969],[-57.935268,-21.612869],[-57.937968,-21.615069],[-57.942168,-21.620869],[-57.943168,-21.628469],[-57.939168,-21.638169],[-57.936668,-21.644569],[-57.933368,-21.651569],[-57.929968,-21.657269],[-57.925568,-21.662069],[-57.920268,-21.666169],[-57.911368,-21.670069],[-57.903468,-21.674669],[-57.897168,-21.677969],[-57.892968,-21.679369],[-57.889968,-21.680469],[-57.886068,-21.682769],[-57.883268,-21.687969],[-57.884868,-21.691669],[-57.887768,-21.694869],[-57.890768,-21.697669],[-57.892668,-21.700469],[-57.897568,-21.704969],[-57.900968,-21.707669],[-57.903768,-21.709769],[-57.907868,-21.712569],[-57.919768,-21.719569],[-57.931168,-21.726369],[-57.940968,-21.732869],[-57.945668,-21.740369],[-57.947368,-21.745869],[-57.945568,-21.752069],[-57.940568,-21.757769],[-57.932768,-21.762969],[-57.926668,-21.766769],[-57.917068,-21.769069],[-57.909868,-21.770369],[-57.908468,-21.773969],[-57.909868,-21.776969],[-57.911668,-21.780569],[-57.912868,-21.785369],[-57.914268,-21.790869],[-57.915568,-21.793569],[-57.920068,-21.801069],[-57.924968,-21.809169],[-57.927868,-21.816669],[-57.931068,-21.824569],[-57.935768,-21.829669],[-57.942668,-21.835369],[-57.949668,-21.838769],[-57.955468,-21.840869],[-57.959568,-21.841969],[-57.965668,-21.843069],[-57.969768,-21.844169],[-57.971768,-21.847069],[-57.969568,-21.850969],[-57.965168,-21.851969],[-57.959768,-21.853069],[-57.954968,-21.855369],[-57.947468,-21.859669],[-57.940568,-21.862969],[-57.932768,-21.866669],[-57.926468,-21.870769],[-57.919968,-21.873769],[-57.916168,-21.876269],[-57.913868,-21.879669],[-57.914168,-21.884969],[-57.916768,-21.889269],[-57.921468,-21.890769],[-57.925768,-21.890969],[-57.929768,-21.889869],[-57.934568,-21.888669],[-57.939068,-21.892569],[-57.942668,-21.896769],[-57.947968,-21.900369],[-57.949668,-21.903369],[-57.949668,-21.907269],[-57.947468,-21.910669],[-57.942668,-21.913069],[-57.938068,-21.915269],[-57.936668,-21.919669],[-57.936968,-21.927869],[-57.940468,-21.935569],[-57.945268,-21.944369],[-57.948968,-21.953169],[-57.951868,-21.959769],[-57.954868,-21.965869],[-57.959268,-21.973069],[-57.962668,-21.978369],[-57.965068,-21.983569],[-57.964768,-21.989669],[-57.964468,-21.996269],[-57.964768,-22.001069],[-57.968968,-22.009969],[-57.974968,-22.015369],[-57.983568,-22.020169],[-57.989968,-22.022969],[-57.994468,-22.025069],[-57.999368,-22.027369],[-58.002968,-22.029169],[-58.006268,-22.031469],[-58.008268,-22.034169],[-58.009268,-22.039169],[-58.009568,-22.045269],[-58.007068,-22.049969],[-58.001268,-22.053669],[-57.994068,-22.055569],[-57.987568,-22.059069],[-57.984268,-22.063569],[-57.983268,-22.070669],[-57.986168,-22.079369],[-57.990768,-22.083769],[-57.993668,-22.089369],[-57.989468,-22.090669],[-57.981968,-22.090069],[-57.977868,-22.090169],[-57.973468,-22.090569],[-57.970568,-22.090369],[-57.967068,-22.089269],[-57.965368,-22.086869],[-57.964468,-22.080969],[-57.961768,-22.078769],[-57.958268,-22.081469],[-57.955768,-22.086269],[-57.951768,-22.086969],[-57.949968,-22.083669],[-57.946768,-22.082569],[-57.941968,-22.082869],[-57.938568,-22.086169],[-57.936568,-22.090369],[-57.937668,-22.097369],[-57.935568,-22.101769],[-57.932768,-22.104769],[-57.928068,-22.106769],[-57.923668,-22.106669],[-57.921468,-22.108969],[-57.925568,-22.113569],[-57.928568,-22.116169],[-57.929768,-22.119669],[-57.926168,-22.120169],[-57.921968,-22.121169],[-57.918068,-22.121069],[-57.913968,-22.121569],[-57.910868,-22.123269],[-57.905868,-22.125469],[-57.898368,-22.123869],[-57.893968,-22.122669],[-57.888168,-22.124069],[-57.886868,-22.129369],[-57.883568,-22.129469],[-57.880668,-22.129069],[-57.876268,-22.129969],[-57.872968,-22.129069],[-57.869168,-22.130569],[-57.867568,-22.133769],[-57.865268,-22.135669],[-57.863568,-22.131769],[-57.859968,-22.130269],[-57.856368,-22.128769],[-57.851368,-22.127369],[-57.845968,-22.127469],[-57.841768,-22.124369],[-57.839068,-22.121969],[-57.835168,-22.119769],[-57.828968,-22.120169],[-57.824868,-22.121569],[-57.822968,-22.123869],[-57.823468,-22.127969],[-57.821768,-22.132069],[-57.820968,-22.136069],[-57.818768,-22.138469],[-57.815168,-22.139869],[-57.811968,-22.140169],[-57.809168,-22.142569],[-57.806668,-22.146769],[-57.805168,-22.150069],[-57.801968,-22.150769],[-57.797868,-22.148769],[-57.796468,-22.143469],[-57.793068,-22.140769],[-57.791168,-22.138169],[-57.790568,-22.134969],[-57.789468,-22.131369],[-57.784268,-22.128569],[-57.779668,-22.125869],[-57.774368,-22.127669],[-57.770768,-22.128269],[-57.767368,-22.130969],[-57.763568,-22.135369],[-57.759368,-22.135269],[-57.754868,-22.135169],[-57.750468,-22.137669],[-57.747668,-22.138969],[-57.744068,-22.136069],[-57.738268,-22.133469],[-57.738268,-22.128469],[-57.736368,-22.125469],[-57.734368,-22.122669],[-57.735368,-22.119669],[-57.739668,-22.118069],[-57.741968,-22.114669],[-57.741368,-22.111869],[-57.740068,-22.107069],[-57.737568,-22.102569],[-57.735068,-22.100569],[-57.731068,-22.099769],[-57.728868,-22.102469],[-57.726368,-22.106469],[-57.723368,-22.110269],[-57.719868,-22.113069],[-57.716968,-22.113669],[-57.715168,-22.110569],[-57.715968,-22.106969],[-57.712368,-22.103169],[-57.707668,-22.102769],[-57.704268,-22.098469],[-57.705768,-22.095069],[-57.706768,-22.091969],[-57.703468,-22.091769],[-57.699368,-22.092069],[-57.696268,-22.091169],[-57.693268,-22.089869],[-57.689868,-22.088769],[-57.686168,-22.092569],[-57.681568,-22.096269],[-57.678268,-22.100569],[-57.674768,-22.102769],[-57.670868,-22.101369],[-57.667068,-22.102569],[-57.665068,-22.105669],[-57.660868,-22.105269],[-57.657068,-22.104569],[-57.653668,-22.106769],[-57.649368,-22.106069],[-57.645768,-22.104769],[-57.642068,-22.105369],[-57.638168,-22.105969],[-57.633768,-22.103069],[-57.629068,-22.101669],[-57.624468,-22.100069],[-57.621168,-22.097269],[-57.618068,-22.095369],[-57.613868,-22.094469],[-57.609968,-22.095969],[-57.611068,-22.099169],[-57.612568,-22.103669],[-57.613368,-22.107469],[-57.612968,-22.110369],[-57.610268,-22.112969],[-57.609268,-22.117169],[-57.611468,-22.120269],[-57.612268,-22.123269],[-57.608668,-22.121969],[-57.606068,-22.123369],[-57.607068,-22.126269],[-57.606368,-22.129469],[-57.602868,-22.130969],[-57.598668,-22.130569],[-57.596968,-22.133769],[-57.600268,-22.136269],[-57.599968,-22.139269],[-57.596368,-22.136569],[-57.593168,-22.136869],[-57.594068,-22.140069],[-57.594068,-22.143269],[-57.590868,-22.143669],[-57.588668,-22.139669],[-57.585168,-22.141369],[-57.586268,-22.145369],[-57.585668,-22.149369],[-57.585868,-22.153169],[-57.587868,-22.157569],[-57.588168,-22.162069],[-57.588368,-22.165069],[-57.587368,-22.167769],[-57.584268,-22.169969],[-57.581468,-22.174169],[-57.576568,-22.176169],[-57.572068,-22.175769],[-57.567668,-22.177569],[-57.563068,-22.178269],[-57.558368,-22.177569],[-57.554368,-22.180469],[-57.551068,-22.181869],[-57.547768,-22.181969],[-57.543568,-22.181669],[-57.540568,-22.181169],[-57.537468,-22.180269],[-57.534468,-22.178369],[-57.531668,-22.177269],[-57.528368,-22.175769],[-57.525768,-22.173169],[-57.523968,-22.168969],[-57.520668,-22.170069],[-57.517868,-22.172869],[-57.513568,-22.174969],[-57.512768,-22.178069],[-57.510368,-22.181169],[-57.506468,-22.184269],[-57.501268,-22.185169],[-57.496868,-22.184069],[-57.493568,-22.181869],[-57.491568,-22.184169],[-57.490268,-22.187469],[-57.489368,-22.191069],[-57.486368,-22.190469],[-57.482868,-22.191569],[-57.479168,-22.190169],[-57.475268,-22.188569],[-57.470968,-22.187269],[-57.468468,-22.190469],[-57.465168,-22.192369],[-57.463268,-22.189169],[-57.460368,-22.187669],[-57.456768,-22.189969],[-57.452168,-22.187969],[-57.447468,-22.187269],[-57.444868,-22.189869],[-57.442368,-22.191869],[-57.439068,-22.192069],[-57.438768,-22.195269],[-57.436968,-22.197969],[-57.434368,-22.199969],[-57.431368,-22.198969],[-57.428668,-22.196069],[-57.424368,-22.197869],[-57.427168,-22.201569],[-57.424668,-22.204269],[-57.422468,-22.201569],[-57.421168,-22.198969],[-57.417568,-22.197069],[-57.413168,-22.197369],[-57.409868,-22.199069],[-57.406968,-22.197969],[-57.404268,-22.199669],[-57.400468,-22.201369],[-57.396768,-22.203569],[-57.397968,-22.207369],[-57.395468,-22.208769],[-57.392168,-22.207569],[-57.389668,-22.205369],[-57.386868,-22.204669],[-57.386768,-22.207569],[-57.382068,-22.209269],[-57.378568,-22.212669],[-57.379168,-22.216469],[-57.380168,-22.220869],[-57.380668,-22.225969],[-57.375568,-22.224469],[-57.372668,-22.226969],[-57.375268,-22.228669],[-57.374068,-22.231469],[-57.370768,-22.231369],[-57.368368,-22.228569],[-57.363568,-22.228469],[-57.363968,-22.231669],[-57.361068,-22.233969],[-57.358568,-22.231469],[-57.357868,-22.226969],[-57.354768,-22.228069],[-57.351368,-22.229469],[-57.347068,-22.231669],[-57.342668,-22.229169],[-57.340468,-22.232869],[-57.338468,-22.230569],[-57.334668,-22.229969],[-57.335768,-22.233669],[-57.331068,-22.234269],[-57.329668,-22.238069],[-57.325968,-22.238869],[-57.323468,-22.242669],[-57.320168,-22.245169],[-57.317368,-22.243069],[-57.314668,-22.240369],[-57.316868,-22.237169],[-57.314568,-22.233569],[-57.311268,-22.231969],[-57.310268,-22.228469],[-57.306968,-22.229569],[-57.303568,-22.228469],[-57.304168,-22.225269],[-57.301868,-22.222269],[-57.298568,-22.221969],[-57.295868,-22.219769],[-57.292468,-22.219769],[-57.291368,-22.223869],[-57.287568,-22.221669],[-57.283668,-22.225069],[-57.280468,-22.226369],[-57.277568,-22.230269],[-57.278468,-22.234269],[-57.275368,-22.234969],[-57.274368,-22.231469],[-57.270968,-22.230269],[-57.271268,-22.234669],[-57.269768,-22.237469],[-57.266068,-22.237769],[-57.263168,-22.239069],[-57.260168,-22.239369],[-57.256868,-22.238369],[-57.253768,-22.238969],[-57.251268,-22.241469],[-57.249168,-22.245569],[-57.245868,-22.248569],[-57.241068,-22.250569],[-57.236068,-22.250169],[-57.231768,-22.246869],[-57.227468,-22.243869],[-57.223768,-22.242969],[-57.218368,-22.240269],[-57.216968,-22.235869],[-57.215368,-22.232769],[-57.215368,-22.228369],[-57.211768,-22.226969],[-57.214268,-22.223369],[-57.214068,-22.218669],[-57.210468,-22.218169],[-57.207668,-22.220569],[-57.204668,-22.217969],[-57.203268,-22.215169],[-57.202068,-22.211569],[-57.197768,-22.212069],[-57.194068,-22.213669],[-57.190568,-22.217069],[-57.192368,-22.220969],[-57.189968,-22.224169],[-57.187668,-22.227069],[-57.184168,-22.230869],[-57.183268,-22.235369],[-57.178668,-22.233669],[-57.173968,-22.233369],[-57.169268,-22.233569],[-57.170268,-22.229969],[-57.166368,-22.228169],[-57.164968,-22.232169],[-57.160268,-22.231769],[-57.157368,-22.227269],[-57.154068,-22.230269],[-57.150868,-22.231969],[-57.147668,-22.233069],[-57.143468,-22.231069],[-57.140468,-22.228669],[-57.137368,-22.226669],[-57.132668,-22.226169],[-57.128268,-22.227069],[-57.124468,-22.228069],[-57.121968,-22.229769],[-57.118368,-22.230069],[-57.114768,-22.228169],[-57.109268,-22.225969],[-57.105068,-22.227769],[-57.107868,-22.231069],[-57.109668,-22.235569],[-57.111768,-22.239469],[-57.108568,-22.242469],[-57.104468,-22.244169],[-57.101468,-22.247969],[-57.097068,-22.248069],[-57.093168,-22.248269],[-57.091568,-22.243669],[-57.088968,-22.242169],[-57.086268,-22.245869],[-57.085768,-22.248869],[-57.082668,-22.250869],[-57.079368,-22.248669],[-57.079568,-22.245769],[-57.076568,-22.245169],[-57.073568,-22.246569],[-57.071368,-22.244469],[-57.068268,-22.242969],[-57.064168,-22.243669],[-57.059868,-22.242269],[-57.058768,-22.239069],[-57.059468,-22.235569],[-57.060268,-22.232469],[-57.058568,-22.229969],[-57.053968,-22.231369],[-57.050368,-22.231669],[-57.048168,-22.233969],[-57.048568,-22.237769],[-57.046968,-22.241169],[-57.043168,-22.241869],[-57.042568,-22.238069],[-57.039868,-22.236369],[-57.036268,-22.235669],[-57.031968,-22.234169],[-57.027568,-22.234969],[-57.022868,-22.236369],[-57.020368,-22.234469],[-57.018168,-22.231369],[-57.015668,-22.232869],[-57.012868,-22.234769],[-57.009568,-22.234669],[-57.006068,-22.232069],[-57.003468,-22.230569],[-57.001568,-22.228169],[-57.000468,-22.223769],[-56.996268,-22.223069],[-56.992668,-22.224569],[-56.990068,-22.227069],[-56.989068,-22.230669],[-56.990468,-22.233969],[-56.991168,-22.237169],[-56.989368,-22.239469],[-56.987268,-22.242269],[-56.983868,-22.242569],[-56.980268,-22.243069],[-56.975668,-22.243869],[-56.971968,-22.244169],[-56.970568,-22.241069],[-56.966168,-22.240769],[-56.962668,-22.239969],[-56.959068,-22.238369],[-56.956868,-22.240469],[-56.956168,-22.244769],[-56.954268,-22.248869],[-56.952168,-22.250869],[-56.949568,-22.253569],[-56.946368,-22.255969],[-56.943268,-22.255669],[-56.940168,-22.254869],[-56.935468,-22.254169],[-56.931068,-22.254069],[-56.927468,-22.251269],[-56.923668,-22.254069],[-56.918968,-22.255169],[-56.915668,-22.255269],[-56.917568,-22.258169],[-56.913068,-22.259169],[-56.910068,-22.262869],[-56.906768,-22.265969],[-56.902668,-22.265369],[-56.901868,-22.261469],[-56.902868,-22.258469],[-56.901768,-22.254569],[-56.898968,-22.251369],[-56.894368,-22.248769],[-56.889668,-22.246369],[-56.886268,-22.246069],[-56.883568,-22.247469],[-56.880568,-22.250769],[-56.879168,-22.255669],[-56.877968,-22.259369],[-56.875868,-22.262469],[-56.875568,-22.265769],[-56.876668,-22.268569],[-56.878468,-22.271769],[-56.880068,-22.276169],[-56.875968,-22.279469],[-56.871568,-22.281469],[-56.867968,-22.283869],[-56.867568,-22.287069],[-56.864968,-22.289569],[-56.860268,-22.291769],[-56.856468,-22.289569],[-56.852368,-22.291669],[-56.849868,-22.294669],[-56.847568,-22.296669],[-56.845268,-22.299269],[-56.843168,-22.301369],[-56.840168,-22.301169],[-56.836168,-22.299969],[-56.832668,-22.297769],[-56.829368,-22.296169],[-56.825968,-22.295569],[-56.824268,-22.292569],[-56.822668,-22.289569],[-56.819968,-22.287269],[-56.816568,-22.288069],[-56.812768,-22.286969],[-56.809468,-22.286669],[-56.807268,-22.284469],[-56.803968,-22.284169],[-56.802268,-22.280869],[-56.804468,-22.275969],[-56.807268,-22.271869],[-56.805868,-22.268469],[-56.803568,-22.266069],[-56.804768,-22.262469],[-56.805868,-22.259169],[-56.805068,-22.256269],[-56.804168,-22.252669],[-56.801568,-22.248769],[-56.798568,-22.245869],[-56.795668,-22.243669],[-56.792268,-22.242169],[-56.787768,-22.241869],[-56.789168,-22.244769],[-56.787068,-22.249369],[-56.787068,-22.254069],[-56.784768,-22.257169],[-56.781768,-22.257369],[-56.778168,-22.257769],[-56.776268,-22.259869],[-56.772868,-22.258069],[-56.770968,-22.254869],[-56.767668,-22.253469],[-56.763468,-22.250569],[-56.763568,-22.246869],[-56.766568,-22.244969],[-56.763168,-22.242669],[-56.758468,-22.242269],[-56.755468,-22.244969],[-56.752168,-22.245469],[-56.751868,-22.240469],[-56.749768,-22.237569],[-56.746968,-22.236069],[-56.745768,-22.238969],[-56.742668,-22.241169],[-56.739068,-22.244069],[-56.736068,-22.244469],[-56.732268,-22.246869],[-56.732468,-22.249869],[-56.735268,-22.252969],[-56.733868,-22.256569],[-56.730668,-22.258269],[-56.727368,-22.259669],[-56.724168,-22.262369],[-56.720368,-22.263569],[-56.720168,-22.259969],[-56.719768,-22.256669],[-56.716768,-22.254869],[-56.713668,-22.252669],[-56.712968,-22.249369],[-56.709068,-22.247269],[-56.706768,-22.242769],[-56.704868,-22.237569],[-56.700968,-22.234969],[-56.697768,-22.234669],[-56.695668,-22.231769],[-56.695468,-22.227569],[-56.701068,-22.225669],[-56.703968,-22.221369],[-56.703168,-22.217669],[-56.699668,-22.219869],[-56.696268,-22.219469],[-56.691968,-22.218669],[-56.688568,-22.221269],[-56.685768,-22.220569],[-56.682768,-22.221469],[-56.681568,-22.226369],[-56.682668,-22.230569],[-56.682568,-22.234469],[-56.681568,-22.238069],[-56.679768,-22.242469],[-56.677568,-22.245169],[-56.674468,-22.246269],[-56.671368,-22.248869],[-56.666968,-22.249669],[-56.664468,-22.253269],[-56.660568,-22.253069],[-56.656968,-22.255269],[-56.652768,-22.254969],[-56.650468,-22.258469],[-56.647868,-22.261069],[-56.644668,-22.263469],[-56.641068,-22.263969],[-56.637668,-22.261769],[-56.638168,-22.256269],[-56.639968,-22.252669],[-56.642568,-22.250169],[-56.643168,-22.246569],[-56.641768,-22.244069],[-56.638168,-22.241469],[-56.633868,-22.241169],[-56.631768,-22.244669],[-56.628468,-22.246569],[-56.625468,-22.243269],[-56.622368,-22.241969],[-56.619468,-22.239069],[-56.615268,-22.235869],[-56.612168,-22.234269],[-56.608968,-22.233669],[-56.606468,-22.230869],[-56.607168,-22.226369],[-56.608568,-22.221169],[-56.604268,-22.220369],[-56.601368,-22.219769],[-56.599168,-22.217269],[-56.599168,-22.212669],[-56.596668,-22.214869],[-56.593668,-22.217369],[-56.592068,-22.214269],[-56.588368,-22.212269],[-56.584268,-22.211269],[-56.581468,-22.209869],[-56.581468,-22.205669],[-56.577068,-22.203169],[-56.575468,-22.206869],[-56.571368,-22.207369],[-56.568868,-22.205669],[-56.567668,-22.202069],[-56.562968,-22.199569],[-56.559768,-22.196669],[-56.556568,-22.196069],[-56.557168,-22.192669],[-56.556868,-22.188769],[-56.552868,-22.186569],[-56.554368,-22.180769],[-56.553668,-22.176869],[-56.555868,-22.173669],[-56.556168,-22.169269],[-56.552268,-22.167569],[-56.549268,-22.166369],[-56.547468,-22.164169],[-56.544568,-22.163069],[-56.540568,-22.161669],[-56.536668,-22.160569],[-56.533668,-22.159469],[-56.533668,-22.156469],[-56.537068,-22.157269],[-56.538368,-22.153769],[-56.540268,-22.150869],[-56.539468,-22.147169],[-56.535968,-22.146569],[-56.532568,-22.147569],[-56.528968,-22.148169],[-56.527868,-22.144069],[-56.526168,-22.140369],[-56.522868,-22.140769],[-56.519668,-22.140469],[-56.521468,-22.137669],[-56.523968,-22.133469],[-56.525968,-22.129969],[-56.523668,-22.128069],[-56.524468,-22.125169],[-56.523668,-22.121569],[-56.521868,-22.118269],[-56.520068,-22.114969],[-56.519068,-22.112169],[-56.518668,-22.108869],[-56.515168,-22.106669],[-56.511768,-22.104569],[-56.507768,-22.102369],[-56.508468,-22.099169],[-56.505568,-22.096269],[-56.501668,-22.096969],[-56.498868,-22.095569],[-56.496068,-22.094169],[-56.493268,-22.095569],[-56.488668,-22.094469],[-56.483568,-22.094869],[-56.477468,-22.092669],[-56.476468,-22.088469],[-56.473368,-22.086769],[-56.472668,-22.082969],[-56.470268,-22.079969],[-56.467268,-22.080769],[-56.462668,-22.083569],[-56.462068,-22.079669],[-56.457268,-22.080469],[-56.455768,-22.084369],[-56.452968,-22.082869],[-56.451268,-22.078469],[-56.447868,-22.077869],[-56.446668,-22.083169],[-56.442168,-22.082669],[-56.438468,-22.081869],[-56.435768,-22.084769],[-56.430868,-22.084769],[-56.428568,-22.082169],[-56.424668,-22.082269],[-56.421168,-22.083969],[-56.417868,-22.079569],[-56.413968,-22.079669],[-56.409768,-22.079669],[-56.405868,-22.077969],[-56.402268,-22.079969],[-56.399068,-22.079369],[-56.395068,-22.076069],[-56.392968,-22.079069],[-56.392668,-22.082169],[-56.390768,-22.085369],[-56.390668,-22.088969],[-56.390168,-22.093069],[-56.393968,-22.092569],[-56.393768,-22.097069],[-56.392568,-22.099869],[-56.390068,-22.102069],[-56.386368,-22.104169],[-56.382068,-22.104669],[-56.383268,-22.109169],[-56.382068,-22.112469],[-56.379068,-22.114769],[-56.379568,-22.118069],[-56.377968,-22.121569],[-56.374368,-22.123769],[-56.372468,-22.128269],[-56.370168,-22.132669],[-56.368368,-22.137469],[-56.370168,-22.140769],[-56.372768,-22.143469],[-56.371668,-22.147569],[-56.373368,-22.149869],[-56.370868,-22.152369],[-56.368668,-22.155969],[-56.366368,-22.158369],[-56.366168,-22.162569],[-56.363968,-22.166769],[-56.363668,-22.170069],[-56.360268,-22.171469],[-56.357468,-22.173969],[-56.353468,-22.174469],[-56.350568,-22.173869],[-56.349268,-22.176469],[-56.348368,-22.179469],[-56.345268,-22.180769],[-56.343668,-22.183569],[-56.345868,-22.187169],[-56.343468,-22.189669],[-56.340168,-22.189369],[-56.337968,-22.192969],[-56.336268,-22.197969],[-56.332668,-22.199269],[-56.329968,-22.200669],[-56.328168,-22.203869],[-56.325268,-22.206869],[-56.323468,-22.210369],[-56.321268,-22.212869],[-56.317668,-22.215169],[-56.316268,-22.217869],[-56.313068,-22.216169],[-56.310768,-22.214069],[-56.305168,-22.215369],[-56.300568,-22.217269],[-56.298568,-22.220069],[-56.295268,-22.220669],[-56.292568,-22.222869],[-56.289468,-22.225069],[-56.285268,-22.225869],[-56.284168,-22.230669],[-56.280068,-22.231769],[-56.277568,-22.233569],[-56.275968,-22.236469],[-56.273368,-22.234469],[-56.269768,-22.234369],[-56.266768,-22.235769],[-56.264868,-22.238069],[-56.261368,-22.239169],[-56.258468,-22.237569],[-56.255268,-22.237469],[-56.252368,-22.238569],[-56.249068,-22.237469],[-56.245468,-22.236669],[-56.241868,-22.235669],[-56.237568,-22.237169],[-56.234968,-22.241469],[-56.232768,-22.245169],[-56.232568,-22.249469],[-56.232568,-22.254169],[-56.231968,-22.257369],[-56.229568,-22.259269],[-56.227068,-22.261869],[-56.224468,-22.263269],[-56.221468,-22.263969],[-56.219568,-22.267069],[-56.215368,-22.269269],[-56.213368,-22.272969],[-56.210068,-22.277069],[-56.206168,-22.276169],[-56.201068,-22.276869],[-56.197968,-22.275669],[-56.194468,-22.272769],[-56.189868,-22.274069],[-56.188768,-22.278369],[-56.187268,-22.280969],[-56.185268,-22.278369],[-56.181568,-22.278769],[-56.178268,-22.279869],[-56.174468,-22.280369],[-56.173868,-22.285069],[-56.169768,-22.285269],[-56.165668,-22.286669],[-56.161668,-22.285969],[-56.160068,-22.282869],[-56.157568,-22.284769],[-56.154468,-22.282569],[-56.150968,-22.281969],[-56.147868,-22.283469],[-56.144368,-22.284769],[-56.139868,-22.285269],[-56.136068,-22.285269],[-56.133468,-22.283369],[-56.130168,-22.283869],[-56.128768,-22.280069],[-56.127768,-22.275369],[-56.124468,-22.274269],[-56.123568,-22.271569],[-56.119368,-22.271869],[-56.116068,-22.273769],[-56.112768,-22.274069],[-56.110068,-22.275869],[-56.105868,-22.277569],[-56.101668,-22.278969],[-56.097368,-22.281769],[-56.094768,-22.283769],[-56.091968,-22.285069],[-56.087268,-22.284769],[-56.083268,-22.283069],[-56.079368,-22.284869],[-56.073968,-22.286369],[-56.069368,-22.285869],[-56.067368,-22.283469],[-56.065968,-22.280369],[-56.063368,-22.277369],[-56.060168,-22.276469],[-56.055868,-22.276769],[-56.051968,-22.277969],[-56.047468,-22.278469],[-56.043868,-22.282069],[-56.041168,-22.283169],[-56.037768,-22.282269],[-56.034768,-22.281669],[-56.032768,-22.284469],[-56.029468,-22.284869],[-56.025068,-22.285569],[-56.019668,-22.286769],[-56.016268,-22.288069],[-56.012468,-22.287069],[-56.010268,-22.290269],[-56.011068,-22.293169],[-56.007468,-22.292869],[-56.004368,-22.293069],[-56.002968,-22.289569],[-56.001568,-22.286369],[-55.999168,-22.284469],[-55.995268,-22.282569],[-55.990768,-22.281469],[-55.986668,-22.280969],[-55.982868,-22.279169],[-55.979768,-22.280869],[-55.976968,-22.284269],[-55.973768,-22.287869],[-55.970568,-22.290869],[-55.965168,-22.289169],[-55.961568,-22.289769],[-55.958168,-22.290269],[-55.952868,-22.291169],[-55.949068,-22.291669],[-55.947068,-22.287469],[-55.946068,-22.284469],[-55.942768,-22.282669],[-55.938868,-22.282069],[-55.936268,-22.280469],[-55.933568,-22.279569],[-55.930768,-22.278969],[-55.927268,-22.279069],[-55.922468,-22.279869],[-55.918168,-22.278969],[-55.914868,-22.278469],[-55.911968,-22.279569],[-55.909468,-22.281269],[-55.906168,-22.283469],[-55.902668,-22.284869],[-55.898168,-22.284869],[-55.892368,-22.283769],[-55.887468,-22.282569],[-55.883468,-22.282569],[-55.879468,-22.282369],[-55.874368,-22.283069],[-55.864668,-22.282869],[-55.860268,-22.282569],[-55.856668,-22.280669],[-55.852068,-22.280969],[-55.849468,-22.285969],[-55.843068,-22.287069],[-55.841668,-22.289569],[-55.839068,-22.294169],[-55.835368,-22.296069],[-55.838668,-22.297469],[-55.838468,-22.300869],[-55.835868,-22.304669],[-55.836168,-22.308369],[-55.835068,-22.312169],[-55.832368,-22.314569],[-55.828768,-22.315969],[-55.832368,-22.321069],[-55.831468,-22.324869],[-55.828468,-22.331469],[-55.825768,-22.335969],[-55.824268,-22.339769],[-55.820968,-22.345069],[-55.814668,-22.345569],[-55.809768,-22.349569],[-55.809168,-22.352469],[-55.804368,-22.354669],[-55.800768,-22.355269],[-55.798568,-22.364669],[-55.799668,-22.368569],[-55.803368,-22.370869],[-55.791368,-22.380469],[-55.791068,-22.388469],[-55.788168,-22.388969],[-55.784268,-22.386469],[-55.779768,-22.384269],[-55.776568,-22.385369],[-55.766468,-22.383769],[-55.757068,-22.386069],[-55.747668,-22.384869],[-55.745768,-22.389069],[-55.741968,-22.395369],[-55.745768,-22.403669],[-55.740868,-22.407069],[-55.737168,-22.410969],[-55.737168,-22.413969],[-55.739668,-22.423669],[-55.736368,-22.429069],[-55.736368,-22.435169],[-55.733868,-22.441569],[-55.736668,-22.444569],[-55.737168,-22.447469],[-55.738268,-22.454369],[-55.736868,-22.459669],[-55.741068,-22.461269],[-55.743368,-22.463669],[-55.748068,-22.464469],[-55.746568,-22.469469],[-55.751968,-22.474569],[-55.751268,-22.481669],[-55.747668,-22.483069],[-55.746868,-22.487469],[-55.747368,-22.492269],[-55.747668,-22.495769],[-55.747168,-22.505469],[-55.740768,-22.515469],[-55.740268,-22.519369],[-55.737268,-22.527369],[-55.735568,-22.530869],[-55.733068,-22.534569],[-55.730668,-22.538869],[-55.728868,-22.542769],[-55.725668,-22.548169],[-55.723468,-22.551669],[-55.718468,-22.553969],[-55.713968,-22.557169],[-55.708468,-22.559369],[-55.705468,-22.560469],[-55.698468,-22.563269],[-55.694868,-22.572469],[-55.694868,-22.577569],[-55.688468,-22.581069],[-55.683268,-22.587569],[-55.676568,-22.591969],[-55.669568,-22.593969],[-55.666668,-22.598469],[-55.660968,-22.602369],[-55.651468,-22.607769],[-55.649068,-22.610369],[-55.642968,-22.612169],[-55.636768,-22.617769],[-55.631368,-22.620469],[-55.629468,-22.622769],[-55.627668,-22.624969],[-55.625268,-22.628669],[-55.624468,-22.633469],[-55.624068,-22.637069],[-55.623568,-22.641069],[-55.622468,-22.647069],[-55.622168,-22.651569],[-55.618068,-22.653469],[-55.614368,-22.655069],[-55.613668,-22.659869],[-55.617168,-22.664769],[-55.618268,-22.670369],[-55.617268,-22.677569],[-55.609268,-22.689069],[-55.613568,-22.692769],[-55.614668,-22.699569],[-55.613068,-22.704569],[-55.613868,-22.711469],[-55.613368,-22.716969],[-55.616968,-22.725069],[-55.615868,-22.735869],[-55.612968,-22.738869],[-55.616368,-22.740069],[-55.620068,-22.744669],[-55.619368,-22.749369],[-55.620868,-22.754069],[-55.624068,-22.755669],[-55.625968,-22.759169],[-55.622968,-22.762069],[-55.619968,-22.764569],[-55.618268,-22.767669],[-55.622168,-22.767169],[-55.627668,-22.766569],[-55.630568,-22.767169],[-55.633168,-22.769369],[-55.635968,-22.770769],[-55.636768,-22.773769],[-55.636268,-22.777869],[-55.638968,-22.782569],[-55.642168,-22.785369],[-55.644768,-22.788169],[-55.647868,-22.789969],[-55.650968,-22.792069],[-55.650068,-22.795369],[-55.649468,-22.800369],[-55.650868,-22.804369],[-55.655068,-22.807769],[-55.653368,-22.811869],[-55.653368,-22.816569],[-55.655168,-22.819869],[-55.658168,-22.824069],[-55.660868,-22.827369],[-55.660268,-22.830769],[-55.659168,-22.835869],[-55.658968,-22.840969],[-55.663068,-22.847069],[-55.665668,-22.852469],[-55.663068,-22.857169],[-55.663168,-22.860269],[-55.660868,-22.863269],[-55.659868,-22.868069],[-55.661668,-22.874369],[-55.661668,-22.877969],[-55.661168,-22.882169],[-55.656768,-22.884969],[-55.653668,-22.884869],[-55.650868,-22.887169],[-55.649468,-22.890969],[-55.649068,-22.897869],[-55.651168,-22.902569],[-55.650468,-22.910969],[-55.647968,-22.912869],[-55.647068,-22.921769],[-55.645468,-22.924369],[-55.651568,-22.931069],[-55.650468,-22.934469],[-55.647068,-22.937369],[-55.644268,-22.941269],[-55.647568,-22.949869],[-55.643968,-22.950769],[-55.638268,-22.950469],[-55.635768,-22.955369],[-55.637968,-22.958969],[-55.636768,-22.964769],[-55.633568,-22.967669],[-55.631568,-22.970069],[-55.628768,-22.975069],[-55.626368,-22.977869],[-55.621868,-22.984469],[-55.624068,-22.988369],[-55.627368,-22.988569],[-55.633868,-22.991669],[-55.633268,-22.997269],[-55.628468,-22.998269],[-55.631368,-23.000769],[-55.632768,-23.008269],[-55.634968,-23.013969],[-55.639368,-23.025869],[-55.635168,-23.025469],[-55.632668,-23.028069],[-55.628768,-23.032369],[-55.623768,-23.032869],[-55.619468,-23.036369],[-55.617268,-23.038169],[-55.614168,-23.041069],[-55.611368,-23.048869],[-55.614468,-23.053869],[-55.611968,-23.059369],[-55.611068,-23.066369],[-55.610768,-23.069669],[-55.611368,-23.076769],[-55.617268,-23.081769],[-55.612468,-23.085969],[-55.611968,-23.090469],[-55.604668,-23.098669],[-55.599568,-23.104169],[-55.596468,-23.116469],[-55.595868,-23.119369],[-55.598168,-23.121269],[-55.596968,-23.126369],[-55.595868,-23.130469],[-55.596368,-23.142369],[-55.597268,-23.146869],[-55.596768,-23.152569],[-55.591968,-23.151569],[-55.584268,-23.148669],[-55.573468,-23.143269],[-55.567768,-23.143969],[-55.564168,-23.146569],[-55.560868,-23.148269],[-55.558268,-23.150069],[-55.554768,-23.152969],[-55.549268,-23.155169],[-55.546068,-23.155969],[-55.541768,-23.156169],[-55.540968,-23.159869],[-55.541168,-23.163369],[-55.544468,-23.166969],[-55.540668,-23.169269],[-55.539968,-23.174969],[-55.543668,-23.177469],[-55.543068,-23.180769],[-55.538868,-23.184469],[-55.535868,-23.186069],[-55.532768,-23.190269],[-55.528068,-23.192969],[-55.525168,-23.194869],[-55.523168,-23.197769],[-55.526168,-23.208169],[-55.530068,-23.211569],[-55.534168,-23.216769],[-55.540268,-23.220869],[-55.542768,-23.219269],[-55.546168,-23.220169],[-55.542468,-23.226369],[-55.540368,-23.233969],[-55.536668,-23.235769],[-55.538468,-23.241169],[-55.540368,-23.244069],[-55.535868,-23.251569],[-55.530168,-23.252669],[-55.526168,-23.256869],[-55.522568,-23.259669],[-55.527068,-23.263569],[-55.529868,-23.266469],[-55.532268,-23.268569],[-55.536168,-23.270369],[-55.539568,-23.272869],[-55.543968,-23.274069],[-55.546668,-23.275069],[-55.548968,-23.278369],[-55.553068,-23.279469],[-55.554768,-23.282869],[-55.554668,-23.288169],[-55.551868,-23.296669],[-55.549168,-23.303669],[-55.555868,-23.316269],[-55.554668,-23.320569],[-55.550868,-23.322369],[-55.546068,-23.323569],[-55.538368,-23.329569],[-55.534468,-23.333269],[-55.532068,-23.341169],[-55.527368,-23.342569],[-55.523968,-23.349269],[-55.520668,-23.352269],[-55.519368,-23.365069],[-55.510668,-23.366869],[-55.506368,-23.370269],[-55.504668,-23.374069],[-55.504368,-23.378469],[-55.509568,-23.393469],[-55.513268,-23.400369],[-55.515468,-23.409469],[-55.520368,-23.416469],[-55.522668,-23.419969],[-55.524068,-23.423269],[-55.527068,-23.427169],[-55.529168,-23.429769],[-55.538168,-23.438869],[-55.544668,-23.449269],[-55.543068,-23.451769],[-55.540568,-23.455469],[-55.541768,-23.464769],[-55.543168,-23.474169],[-55.544968,-23.477269],[-55.553868,-23.475669],[-55.561968,-23.476169],[-55.559368,-23.483169],[-55.559068,-23.488669],[-55.552468,-23.488669],[-55.549668,-23.496169],[-55.548168,-23.504469],[-55.547568,-23.511269],[-55.546668,-23.522569],[-55.540368,-23.524569],[-55.542568,-23.529869],[-55.540568,-23.533669],[-55.538968,-23.536769],[-55.537368,-23.540569],[-55.534868,-23.551069],[-55.535968,-23.554969],[-55.532268,-23.559969],[-55.530168,-23.563069],[-55.526468,-23.567369],[-55.531168,-23.571569],[-55.528368,-23.580169],[-55.530968,-23.584369],[-55.538168,-23.591969],[-55.538368,-23.600869],[-55.536268,-23.609969],[-55.535968,-23.617169],[-55.537868,-23.621169],[-55.539768,-23.625169],[-55.537068,-23.628069],[-55.532068,-23.630269],[-55.530368,-23.627769],[-55.520668,-23.625869],[-55.511068,-23.623269],[-55.509968,-23.631269],[-55.498068,-23.638269],[-55.493268,-23.637669],[-55.490368,-23.642369],[-55.483968,-23.640169],[-55.481768,-23.644369],[-55.478068,-23.646869],[-55.474568,-23.650369],[-55.474568,-23.658069],[-55.473968,-23.661169],[-55.474768,-23.667769],[-55.475068,-23.674769],[-55.469168,-23.676869],[-55.465968,-23.681069],[-55.462268,-23.684469],[-55.463368,-23.692669],[-55.463968,-23.698769],[-55.466468,-23.703469],[-55.464268,-23.708269],[-55.462368,-23.712269],[-55.456868,-23.714069],[-55.454968,-23.716569],[-55.452068,-23.715069],[-55.449368,-23.712269],[-55.443468,-23.712569],[-55.441068,-23.710069],[-55.439868,-23.712869],[-55.436268,-23.716669],[-55.442468,-23.722869],[-55.441968,-23.728169],[-55.446568,-23.734969],[-55.445168,-23.738269],[-55.448568,-23.742169],[-55.446668,-23.747969],[-55.443168,-23.752969],[-55.442768,-23.755969],[-55.447168,-23.760169],[-55.443168,-23.765669],[-55.433768,-23.770969],[-55.433368,-23.775169],[-55.432268,-23.782369],[-55.430768,-23.786969],[-55.430168,-23.790069],[-55.435168,-23.793169],[-55.436868,-23.798069],[-55.441068,-23.803369],[-55.444068,-23.809169],[-55.448468,-23.814169],[-55.450668,-23.816369],[-55.452568,-23.819869],[-55.447168,-23.822569],[-55.441568,-23.829269],[-55.441268,-23.832569],[-55.440468,-23.839869],[-55.440168,-23.845969],[-55.440268,-23.853569],[-55.438868,-23.857169],[-55.439668,-23.862569],[-55.439368,-23.866069],[-55.437268,-23.869469],[-55.435768,-23.874069],[-55.436268,-23.877769],[-55.436668,-23.882069],[-55.436968,-23.885369],[-55.437768,-23.890669],[-55.438068,-23.894569],[-55.438768,-23.899369],[-55.439468,-23.904869],[-55.442368,-23.907369],[-55.444868,-23.909769],[-55.445268,-23.914269],[-55.445168,-23.917269],[-55.442168,-23.918369],[-55.438068,-23.919169],[-55.435168,-23.922169],[-55.432768,-23.923869],[-55.427768,-23.926169],[-55.429668,-23.931569],[-55.432668,-23.940569],[-55.426968,-23.939669],[-55.420368,-23.943069],[-55.416768,-23.948469],[-55.417868,-23.953169],[-55.419968,-23.957269],[-55.414268,-23.964569],[-55.405168,-23.964869],[-55.401768,-23.970369],[-55.402868,-23.974169],[-55.396868,-23.975069],[-55.394268,-23.973469],[-55.390168,-23.970969],[-55.387468,-23.967569],[-55.378268,-23.970569],[-55.379068,-23.975269],[-55.375468,-23.979769],[-55.371568,-23.979169],[-55.366668,-23.981369],[-55.363868,-23.982169],[-55.358368,-23.989169],[-55.352468,-23.989969],[-55.349268,-23.993369],[-55.345368,-23.994469],[-55.341168,-23.994469],[-55.335968,-23.992969],[-55.333968,-23.988569],[-55.329868,-23.983069],[-55.325668,-23.976969],[-55.322368,-23.967569],[-55.317668,-23.962869],[-55.312168,-23.965069],[-55.303368,-23.965869],[-55.297468,-23.970569],[-55.287268,-23.975869],[-55.283168,-23.977569],[-55.277668,-23.984469],[-55.274368,-23.984769],[-55.270968,-23.985369],[-55.269668,-23.988269],[-55.266268,-23.989369],[-55.263168,-23.987169],[-55.262068,-23.991669],[-55.260168,-23.994069],[-55.256868,-23.996169],[-55.253068,-23.997669],[-55.247968,-24.000169],[-55.245868,-23.998269],[-55.243068,-24.002369],[-55.240468,-24.005969],[-55.235268,-24.006569],[-55.232868,-24.009969],[-55.228068,-24.013469],[-55.223868,-24.012469],[-55.218668,-24.009669],[-55.215168,-24.005769],[-55.211468,-24.004069],[-55.206868,-24.003569],[-55.204368,-24.000769],[-55.201768,-23.998069],[-55.199068,-23.995069],[-55.198568,-23.987969],[-55.192768,-23.986769],[-55.187368,-23.988369],[-55.181168,-23.988669],[-55.178568,-23.993669],[-55.175568,-23.993269],[-55.165668,-23.988969],[-55.159868,-23.987569],[-55.157868,-23.985369],[-55.155868,-23.983069],[-55.149468,-23.988569],[-55.145668,-23.988669],[-55.141268,-23.987569],[-55.137968,-23.986869],[-55.128768,-23.983669],[-55.126268,-23.979469],[-55.124668,-23.975969],[-55.122668,-23.978669],[-55.118368,-23.977069],[-55.107168,-23.961969],[-55.106968,-23.965169],[-55.099468,-23.969869],[-55.097768,-23.973069],[-55.094168,-23.974969],[-55.092968,-23.977569],[-55.090168,-23.982569],[-55.084268,-23.982769],[-55.080368,-23.984669],[-55.074268,-23.984769],[-55.071668,-23.987469],[-55.063268,-23.992569],[-55.059968,-23.991869],[-55.052568,-23.986169],[-55.051168,-23.980669],[-55.045068,-23.983569],[-55.039568,-23.980269],[-55.035868,-23.977069],[-55.032268,-23.973469],[-55.027268,-23.973069],[-55.023468,-23.972869],[-55.019268,-23.971969],[-55.005168,-23.962669],[-54.998568,-23.957569],[-54.995168,-23.958969],[-54.990868,-23.962269],[-54.986068,-23.962069],[-54.981068,-23.960969],[-54.976368,-23.957669],[-54.972668,-23.960169],[-54.969568,-23.964369],[-54.966668,-23.966169],[-54.955368,-23.965369],[-54.951368,-23.964769],[-54.948568,-23.963669],[-54.944168,-23.964769],[-54.941568,-23.966569],[-54.938068,-23.962869],[-54.933768,-23.963169],[-54.926068,-23.960969],[-54.926168,-23.954669],[-54.926368,-23.950669],[-54.928068,-23.947369],[-54.929968,-23.943169],[-54.923968,-23.936269],[-54.926468,-23.932269],[-54.927268,-23.929369],[-54.926868,-23.924769],[-54.913168,-23.922169],[-54.913368,-23.917069],[-54.911468,-23.914469],[-54.908868,-23.911669],[-54.903368,-23.909569],[-54.900768,-23.912269],[-54.893568,-23.910669],[-54.891068,-23.901469],[-54.885968,-23.897369],[-54.881068,-23.898469],[-54.880468,-23.901769],[-54.877068,-23.905169],[-54.873368,-23.909169],[-54.869168,-23.906169],[-54.862168,-23.907569],[-54.859368,-23.905369],[-54.850268,-23.907869],[-54.849168,-23.902569],[-54.849768,-23.896869],[-54.847268,-23.894569],[-54.844468,-23.892469],[-54.841968,-23.888969],[-54.835468,-23.884069],[-54.832068,-23.884569],[-54.829568,-23.887069],[-54.826768,-23.888169],[-54.822768,-23.889869],[-54.818768,-23.890169],[-54.814168,-23.890369],[-54.810768,-23.883569],[-54.807568,-23.881269],[-54.805768,-23.879069],[-54.799668,-23.877069],[-54.798968,-23.873869],[-54.796368,-23.870869],[-54.791368,-23.868269],[-54.786968,-23.870269],[-54.779868,-23.869669],[-54.776468,-23.868069],[-54.774568,-23.865369],[-54.763968,-23.866169],[-54.761868,-23.858069],[-54.759068,-23.856669],[-54.754568,-23.858669],[-54.749168,-23.860869],[-54.748368,-23.866069],[-54.745268,-23.868669],[-54.736468,-23.865869],[-54.733268,-23.869669],[-54.721168,-23.865469],[-54.710768,-23.864669],[-54.706268,-23.864469],[-54.699968,-23.859969],[-54.697868,-23.857769],[-54.698468,-23.850569],[-54.698468,-23.841969],[-54.691568,-23.833769],[-54.686568,-23.832169],[-54.684068,-23.829669],[-54.680868,-23.828269],[-54.677768,-23.822469],[-54.669468,-23.812469],[-54.668868,-23.816269],[-54.663868,-23.819269],[-54.658068,-23.819569],[-54.653468,-23.820669],[-54.646768,-23.833669],[-54.638268,-23.830469],[-54.631268,-23.829969],[-54.624868,-23.835069],[-54.616568,-23.835069],[-54.608868,-23.851469],[-54.604968,-23.851969],[-54.601368,-23.852069],[-54.598468,-23.849969],[-54.596268,-23.846169],[-54.593768,-23.843369],[-54.587868,-23.838469],[-54.584068,-23.836969],[-54.583168,-23.841769],[-54.581468,-23.845869],[-54.575668,-23.848069],[-54.570668,-23.850369],[-54.566068,-23.853669],[-54.565968,-23.858969],[-54.567768,-23.862569],[-54.570268,-23.867969],[-54.568568,-23.874369],[-54.561568,-23.872169],[-54.556868,-23.870069],[-54.552968,-23.870769],[-54.548268,-23.869469],[-54.543368,-23.868069],[-54.538868,-23.869069],[-54.535068,-23.873069],[-54.531168,-23.871969],[-54.526468,-23.872669],[-54.522968,-23.873569],[-54.520468,-23.875469],[-54.518268,-23.877769],[-54.517168,-23.881369],[-54.514868,-23.885169],[-54.507168,-23.882369],[-54.502768,-23.884369],[-54.497368,-23.884669],[-54.492968,-23.884969],[-54.491568,-23.887469],[-54.486668,-23.893969],[-54.487568,-23.900369],[-54.487268,-23.903669],[-54.480268,-23.901169],[-54.477768,-23.897869],[-54.470568,-23.897869],[-54.466468,-23.899069],[-54.462868,-23.900669],[-54.457368,-23.899369],[-54.451868,-23.900669],[-54.446568,-23.903369],[-54.443268,-23.904269],[-54.440168,-23.904269],[-54.437668,-23.906169],[-54.434768,-23.909169],[-54.431168,-23.911169],[-54.426868,-23.914469],[-54.427468,-23.926669],[-54.432968,-23.928669],[-54.429668,-23.929769],[-54.424968,-23.930869],[-54.421968,-23.940469],[-54.418968,-23.943469],[-54.416468,-23.946069],[-54.414268,-23.953269],[-54.413868,-23.958569],[-54.410368,-23.961469],[-54.404868,-23.962369],[-54.401268,-23.964769],[-54.397368,-23.965069],[-54.394268,-23.965169],[-54.392668,-23.969069],[-54.391468,-23.971969],[-54.389668,-23.974769],[-54.387868,-23.979969],[-54.386768,-23.982769],[-54.384168,-23.985769],[-54.379968,-23.987569],[-54.376668,-23.990769],[-54.374168,-23.989369],[-54.368668,-23.992969],[-54.365568,-23.997669],[-54.361468,-23.999969],[-54.357768,-24.002969],[-54.354968,-24.004969],[-54.351968,-24.007669],[-54.347568,-24.004669],[-54.346268,-24.001369],[-54.341968,-24.002769],[-54.338168,-24.001669],[-54.336468,-24.004869],[-54.327868,-24.005169],[-54.323268,-24.004669],[-54.320468,-24.007969],[-54.318868,-24.011769],[-54.321368,-24.019269],[-54.321668,-24.023369],[-54.317768,-24.028469],[-54.317068,-24.031969],[-54.313568,-24.034169],[-54.311968,-24.038069],[-54.309868,-24.046369],[-54.304068,-24.050869],[-54.301568,-24.054769],[-54.297768,-24.056669],[-54.293168,-24.061269],[-54.289968,-24.067469],[-54.285168,-24.067769],[-54.288368,-24.070669],[-54.293168,-24.077669],[-54.298968,-24.085769],[-54.302268,-24.090169],[-54.305568,-24.094169],[-54.311668,-24.101169],[-54.314068,-24.103969],[-54.323168,-24.109769],[-54.333268,-24.115869],[-54.339768,-24.122669],[-54.343368,-24.133069],[-54.344468,-24.140669],[-54.344868,-24.144369],[-54.345568,-24.157269],[-54.343968,-24.162769],[-54.340468,-24.168869],[-54.334068,-24.179069],[-54.329868,-24.187969],[-54.327468,-24.196369],[-54.327068,-24.210169],[-54.328168,-24.217569],[-54.329968,-24.224169],[-54.330668,-24.230269],[-54.327868,-24.237969],[-54.324868,-24.244669],[-54.322468,-24.251569],[-54.317068,-24.255269],[-54.309668,-24.260969],[-54.297868,-24.270669],[-54.289168,-24.279469],[-54.283168,-24.285669],[-54.277368,-24.291369],[-54.271568,-24.306869],[-54.267568,-24.321869],[-54.261268,-24.338769],[-54.257768,-24.355269],[-54.258168,-24.365769],[-54.260768,-24.375569],[-54.262668,-24.378069],[-54.269868,-24.390369],[-54.276568,-24.402569],[-54.278968,-24.405369],[-54.285268,-24.412569],[-54.292868,-24.424469],[-54.295568,-24.427569],[-54.301568,-24.434169],[-54.306968,-24.437969],[-54.310768,-24.440569],[-54.318168,-24.450669],[-54.322168,-24.457569],[-54.323568,-24.460069],[-54.326568,-24.465969],[-54.327568,-24.473469],[-54.328968,-24.483969],[-54.331068,-24.493369],[-54.333168,-24.498869],[-54.334268,-24.502169],[-54.336168,-24.507969],[-54.335468,-24.517869],[-54.332968,-24.527669],[-54.329268,-24.537069],[-54.324068,-24.551569],[-54.319868,-24.568869],[-54.319368,-24.576069],[-54.317968,-24.590569],[-54.318168,-24.594469],[-54.318768,-24.606769],[-54.321368,-24.622969],[-54.322768,-24.630569],[-54.324868,-24.642369],[-54.324968,-24.645769],[-54.326068,-24.653169],[-54.326868,-24.659469],[-54.327068,-24.662769],[-54.327168,-24.666169],[-54.327568,-24.674169],[-54.331068,-24.690469],[-54.332268,-24.694569],[-54.334268,-24.701069],[-54.341668,-24.714069],[-54.349168,-24.723169],[-54.353468,-24.729669],[-54.355268,-24.732269],[-54.362468,-24.743269],[-54.369968,-24.756269],[-54.375168,-24.760169],[-54.381368,-24.765969],[-54.389868,-24.777269],[-54.390968,-24.786969],[-54.391468,-24.790369],[-54.393168,-24.800869],[-54.394868,-24.811269],[-54.400368,-24.832069],[-54.405168,-24.845269],[-54.410268,-24.858569],[-54.415368,-24.873869],[-54.416368,-24.877069],[-54.423168,-24.898269],[-54.430268,-24.919169],[-54.435868,-24.938069],[-54.436968,-24.941369],[-54.436968,-24.949069],[-54.438468,-24.962669],[-54.440468,-24.973669],[-54.442068,-24.980269],[-54.442768,-24.983869],[-54.446568,-24.999169],[-54.447468,-25.004569],[-54.449268,-25.014069],[-54.451468,-25.022069],[-54.454368,-25.031669],[-54.456068,-25.039569],[-54.459568,-25.046069],[-54.461568,-25.051169],[-54.462868,-25.057169],[-54.460668,-25.060569],[-54.457568,-25.067369],[-54.457568,-25.074269],[-54.458468,-25.081469],[-54.461568,-25.090069],[-54.461968,-25.096369],[-54.459368,-25.101969],[-54.450668,-25.108669],[-54.445768,-25.113869],[-54.441268,-25.121169],[-54.437668,-25.127069],[-54.434468,-25.132969],[-54.431668,-25.140069],[-54.430168,-25.143769],[-54.428268,-25.146569],[-54.424768,-25.153169],[-54.424468,-25.158069],[-54.426868,-25.165369],[-54.428368,-25.167769],[-54.430768,-25.170069],[-54.434068,-25.170769],[-54.437168,-25.169769],[-54.443268,-25.167769],[-54.447768,-25.168669],[-54.452868,-25.176169],[-54.461568,-25.186569],[-54.466768,-25.195969],[-54.473768,-25.211969],[-54.478068,-25.225669],[-54.479568,-25.230369],[-54.483968,-25.249769],[-54.487568,-25.263869],[-54.491168,-25.277869],[-54.496168,-25.287069],[-54.501568,-25.297169],[-54.513268,-25.311269],[-54.514568,-25.313869],[-54.525368,-25.331469],[-54.539168,-25.347369],[-54.544268,-25.351669],[-54.554968,-25.360069],[-54.561368,-25.366969],[-54.571268,-25.378369],[-54.582868,-25.391569],[-54.586468,-25.396569],[-54.588168,-25.403369],[-54.589368,-25.407269],[-54.590968,-25.411969],[-54.592268,-25.414769],[-54.593668,-25.417569],[-54.595668,-25.420369],[-54.597068,-25.423369],[-54.598368,-25.426369],[-54.599468,-25.429469],[-54.600668,-25.433369],[-54.602468,-25.437969],[-54.604268,-25.440869],[-54.606068,-25.443469],[-54.609168,-25.446069],[-54.612968,-25.448869],[-54.616168,-25.450269],[-54.619368,-25.451069],[-54.620068,-25.454569],[-54.619768,-25.459369],[-54.619668,-25.463969],[-54.617768,-25.469269],[-54.615068,-25.472869],[-54.612168,-25.475569],[-54.608068,-25.478869],[-54.605268,-25.480869],[-54.603068,-25.483569],[-54.601668,-25.486969],[-54.601968,-25.491069],[-54.602768,-25.495869],[-54.601968,-25.501569],[-54.600968,-25.505269],[-54.600868,-25.510269],[-54.601168,-25.515969],[-54.601468,-25.520369],[-54.600668,-25.524269],[-54.599568,-25.528069],[-54.598168,-25.531269],[-54.596368,-25.533969],[-54.594868,-25.536969],[-54.594568,-25.540569],[-54.594768,-25.543869],[-54.594568,-25.548369],[-54.594468,-25.551569],[-54.594268,-25.555069],[-54.594868,-25.558769],[-54.595168,-25.562469],[-54.594868,-25.566569],[-54.594868,-25.570969],[-54.594268,-25.575269],[-54.594168,-25.578969],[-54.594168,-25.583469],[-54.593768,-25.588969],[-54.592268,-25.592269],[-54.588668,-25.592569],[-54.584868,-25.592669],[-54.581168,-25.592269],[-54.577068,-25.591169],[-54.571668,-25.591169],[-54.568068,-25.590969],[-54.564168,-25.590069],[-54.561568,-25.588669],[-54.557968,-25.587569],[-54.553568,-25.587869],[-54.549668,-25.590069],[-54.545768,-25.592569],[-54.542268,-25.594869],[-54.538468,-25.596269],[-54.534868,-25.598769],[-54.533868,-25.604769],[-54.534868,-25.609669],[-54.536268,-25.612269],[-54.537768,-25.616169],[-54.535968,-25.620769],[-54.533468,-25.623269],[-54.528068,-25.627669],[-54.523968,-25.628869],[-54.520768,-25.626969],[-54.517068,-25.624669],[-54.513768,-25.621969],[-54.511368,-25.618569],[-54.505968,-25.617169],[-54.502968,-25.614469],[-54.499668,-25.614669],[-54.495468,-25.616569],[-54.492568,-25.618269],[-54.489668,-25.620869],[-54.485868,-25.624369],[-54.483168,-25.627069],[-54.480268,-25.628469],[-54.476668,-25.631069],[-54.473468,-25.633569],[-54.470168,-25.635669],[-54.468168,-25.637869],[-54.465568,-25.641069],[-54.461268,-25.644869],[-54.458668,-25.648669],[-54.455968,-25.651769],[-54.454068,-25.654069],[-54.450768,-25.657769],[-54.448268,-25.661269],[-54.446668,-25.663669],[-54.445168,-25.666369],[-54.443768,-25.669669],[-54.443568,-25.672569],[-54.443468,-25.675469],[-54.442468,-25.678269],[-54.441968,-25.681969],[-54.441268,-25.685469],[-54.440168,-25.688369],[-54.438768,-25.691269],[-54.437468,-25.694069],[-54.435768,-25.696369],[-54.431668,-25.697069],[-54.426868,-25.695569],[-54.423868,-25.692769],[-54.423568,-25.689869],[-54.423868,-25.685169],[-54.425568,-25.679469],[-54.426168,-25.675869],[-54.426868,-25.669969],[-54.426868,-25.666969],[-54.426368,-25.663869],[-54.425568,-25.659869],[-54.423168,-25.656269],[-54.419468,-25.653169],[-54.415568,-25.650869],[-54.412268,-25.648669],[-54.408068,-25.645769],[-54.403368,-25.644069],[-54.400868,-25.642069],[-54.396868,-25.639669],[-54.394768,-25.636469],[-54.392168,-25.633069],[-54.389868,-25.628269],[-54.389068,-25.625269],[-54.388768,-25.621169],[-54.389068,-25.617769],[-54.389968,-25.614769],[-54.390768,-25.611369],[-54.391068,-25.606969],[-54.390668,-25.603569],[-54.387868,-25.598969],[-54.384068,-25.596469],[-54.379668,-25.595269],[-54.375568,-25.593969],[-54.371568,-25.594469],[-54.368668,-25.596369],[-54.365268,-25.599969],[-54.363268,-25.602469],[-54.359968,-25.605569],[-54.356468,-25.607569],[-54.352868,-25.608169],[-54.349868,-25.606969],[-54.345368,-25.604969],[-54.342268,-25.601269],[-54.339868,-25.597369],[-54.337568,-25.593369],[-54.335868,-25.589269],[-54.334868,-25.585369],[-54.332968,-25.580369],[-54.330968,-25.575669],[-54.328968,-25.571869],[-54.326268,-25.569669],[-54.322868,-25.567469],[-54.318768,-25.565469],[-54.314068,-25.564869],[-54.306068,-25.563469],[-54.302768,-25.561969],[-54.298668,-25.559669],[-54.296068,-25.557269],[-54.292268,-25.555269],[-54.288168,-25.554369],[-54.282568,-25.555769],[-54.279468,-25.557969],[-54.276568,-25.562169],[-54.273668,-25.567769],[-54.266068,-25.581769],[-54.263968,-25.584869],[-54.260168,-25.590169],[-54.257768,-25.593469],[-54.253768,-25.596369],[-54.250468,-25.596769],[-54.245568,-25.597369],[-54.242168,-25.597269],[-54.238068,-25.595869],[-54.235568,-25.593769],[-54.234168,-25.590169],[-54.234168,-25.587269],[-54.234668,-25.582969],[-54.235268,-25.579269],[-54.236068,-25.576069],[-54.236768,-25.573269],[-54.237168,-25.568469],[-54.234468,-25.564369],[-54.229668,-25.562969],[-54.224768,-25.564069],[-54.221368,-25.565969],[-54.217968,-25.568769],[-54.214768,-25.570969],[-54.209368,-25.575169],[-54.202668,-25.580669],[-54.199068,-25.582169],[-54.193468,-25.583769],[-54.186268,-25.585369],[-54.182268,-25.585369],[-54.175268,-25.583269],[-54.173568,-25.579269],[-54.173368,-25.575769],[-54.174668,-25.572969],[-54.176168,-25.570269],[-54.179068,-25.566669],[-54.183668,-25.564569],[-54.187668,-25.563069],[-54.192768,-25.562369],[-54.195968,-25.561569],[-54.198868,-25.560569],[-54.202968,-25.558769],[-54.205468,-25.556669],[-54.207868,-25.553269],[-54.208268,-25.548569],[-54.207568,-25.544769],[-54.206268,-25.541669],[-54.204368,-25.539469],[-54.199968,-25.536469],[-54.197068,-25.534869],[-54.191568,-25.534169],[-54.186868,-25.535369],[-54.181568,-25.537869],[-54.175868,-25.540369],[-54.173068,-25.541469],[-54.167268,-25.543069],[-54.163068,-25.542569],[-54.158668,-25.539469],[-54.155368,-25.535969],[-54.152568,-25.531769],[-54.149068,-25.526969],[-54.143968,-25.520669],[-54.141868,-25.518469],[-54.137468,-25.514669],[-54.134368,-25.511569],[-54.129368,-25.508469],[-54.124668,-25.504969],[-54.120268,-25.501569],[-54.115768,-25.498369],[-54.110068,-25.495469],[-54.103568,-25.494369],[-54.097868,-25.495869],[-54.094468,-25.498869],[-54.093068,-25.501869],[-54.092668,-25.509869],[-54.093768,-25.514369],[-54.095368,-25.518469],[-54.096468,-25.521269],[-54.099168,-25.525469],[-54.101968,-25.530669],[-54.105268,-25.535269],[-54.108968,-25.539969],[-54.111368,-25.542769],[-54.115568,-25.547769],[-54.118268,-25.551069],[-54.119968,-25.553969],[-54.121268,-25.557169],[-54.123068,-25.562769],[-54.123368,-25.568069],[-54.121868,-25.575969],[-54.119468,-25.583469],[-54.117768,-25.586569],[-54.113268,-25.597569],[-54.110068,-25.604769],[-54.108568,-25.608269],[-54.105368,-25.614069],[-54.101768,-25.617969],[-54.098468,-25.619169],[-54.093668,-25.619069],[-54.091168,-25.616069],[-54.090168,-25.611969],[-54.088968,-25.606469],[-54.088968,-25.602269],[-54.089568,-25.595869],[-54.089568,-25.590669],[-54.089768,-25.585469],[-54.087268,-25.579569],[-54.085668,-25.574569],[-54.084568,-25.569869],[-54.084068,-25.566069],[-54.083468,-25.562169],[-54.079968,-25.558569],[-54.074268,-25.559069],[-54.071368,-25.559869],[-54.066268,-25.564969],[-54.062768,-25.572369],[-54.060468,-25.577469],[-54.056168,-25.582569],[-54.051168,-25.585069],[-54.045268,-25.585069],[-54.041768,-25.583169],[-54.036268,-25.577669],[-54.032568,-25.571369],[-54.028668,-25.566569],[-54.024768,-25.563769],[-54.020168,-25.563269],[-54.015768,-25.564169],[-54.010768,-25.566569],[-54.006768,-25.570769],[-54.005468,-25.574269],[-54.003468,-25.579069],[-53.999668,-25.582269],[-53.994668,-25.584369],[-53.990868,-25.586769],[-53.988868,-25.589269],[-53.985768,-25.590569],[-53.981068,-25.591969],[-53.977268,-25.594469],[-53.974168,-25.597369],[-53.970968,-25.600669],[-53.973668,-25.604269],[-53.977768,-25.604569],[-53.978468,-25.607769],[-53.977368,-25.612469],[-53.974868,-25.614969],[-53.971968,-25.613669],[-53.967568,-25.612469],[-53.965368,-25.616569],[-53.965168,-25.620069],[-53.964068,-25.623369],[-53.962268,-25.626669],[-53.961468,-25.631269],[-53.963468,-25.635369],[-53.963368,-25.639869],[-53.960968,-25.643469],[-53.956468,-25.645069],[-53.953768,-25.646769],[-53.951268,-25.645369],[-53.948568,-25.641069],[-53.947468,-25.637169],[-53.946668,-25.634269],[-53.945268,-25.631369],[-53.948168,-25.629969],[-53.950168,-25.627169],[-53.953168,-25.624469],[-53.950768,-25.621969],[-53.948568,-25.619069],[-53.948468,-25.615269],[-53.947868,-25.611769],[-53.942768,-25.611469],[-53.941968,-25.614469],[-53.941868,-25.618669],[-53.938768,-25.621069],[-53.935468,-25.621669],[-53.931868,-25.622469],[-53.927268,-25.621369],[-53.924368,-25.618369],[-53.920868,-25.616869],[-53.916668,-25.617269],[-53.915968,-25.622169],[-53.918568,-25.626269],[-53.920668,-25.629169],[-53.918868,-25.632369],[-53.915568,-25.629369],[-53.914468,-25.632769],[-53.913068,-25.635369],[-53.909768,-25.635469],[-53.908368,-25.632369],[-53.904568,-25.629869],[-53.901768,-25.627669],[-53.898668,-25.625469],[-53.895768,-25.623369],[-53.892068,-25.622669],[-53.889068,-25.625569],[-53.891568,-25.628369],[-53.892568,-25.632169],[-53.893168,-25.635169],[-53.894368,-25.638569],[-53.894568,-25.642869],[-53.890368,-25.643269],[-53.886468,-25.644369],[-53.883568,-25.642869],[-53.880268,-25.640969],[-53.876968,-25.644269],[-53.878468,-25.647069],[-53.881668,-25.646869],[-53.884068,-25.649269],[-53.884868,-25.652669],[-53.887068,-25.655169],[-53.889968,-25.657769],[-53.888568,-25.661169],[-53.883868,-25.658369],[-53.880268,-25.656269],[-53.877068,-25.654569],[-53.873268,-25.656269],[-53.869468,-25.657869],[-53.865568,-25.658469],[-53.862468,-25.658969],[-53.860768,-25.663069],[-53.858868,-25.667769],[-53.856368,-25.670369],[-53.855668,-25.673969],[-53.858968,-25.678269],[-53.856368,-25.682269],[-53.851468,-25.683769],[-53.847068,-25.685269],[-53.843168,-25.688769],[-53.847268,-25.689869],[-53.849168,-25.691969],[-53.854268,-25.691569],[-53.853668,-25.696369],[-53.850868,-25.700669],[-53.850968,-25.704869],[-53.853168,-25.706769],[-53.856768,-25.706169],[-53.858268,-25.702469],[-53.862168,-25.699269],[-53.866568,-25.696269],[-53.871968,-25.695169],[-53.869368,-25.698169],[-53.867168,-25.700269],[-53.865468,-25.702869],[-53.867468,-25.706469],[-53.871268,-25.706769],[-53.875468,-25.706769],[-53.878768,-25.708169],[-53.875868,-25.711569],[-53.871868,-25.713469],[-53.868268,-25.714069],[-53.869668,-25.718669],[-53.865368,-25.717869],[-53.861368,-25.718169],[-53.859368,-25.722769],[-53.859968,-25.726769],[-53.863268,-25.730669],[-53.863968,-25.735269],[-53.865868,-25.740069],[-53.864668,-25.744669],[-53.860268,-25.744669],[-53.856768,-25.743869],[-53.853068,-25.742569],[-53.848768,-25.742169],[-53.846668,-25.745169],[-53.844268,-25.746669],[-53.839768,-25.747969],[-53.835468,-25.749369],[-53.834368,-25.752369],[-53.837668,-25.752469],[-53.841168,-25.752069],[-53.841168,-25.756869],[-53.840668,-25.760669],[-53.843668,-25.759369],[-53.847268,-25.757969],[-53.849768,-25.760469],[-53.852068,-25.763169],[-53.855368,-25.765769],[-53.852568,-25.768669],[-53.848168,-25.768969],[-53.843468,-25.769369],[-53.839468,-25.772069],[-53.836868,-25.773969],[-53.834368,-25.776169],[-53.832268,-25.778769],[-53.830768,-25.781469],[-53.832568,-25.784869],[-53.836568,-25.787069],[-53.840968,-25.790569],[-53.837268,-25.791769],[-53.833768,-25.791769],[-53.830168,-25.791369],[-53.827368,-25.790269],[-53.822868,-25.792169],[-53.821768,-25.796369],[-53.822368,-25.799969],[-53.826368,-25.802769],[-53.827868,-25.807169],[-53.823568,-25.810169],[-53.819568,-25.813069],[-53.820268,-25.816369],[-53.823168,-25.815469],[-53.826768,-25.813469],[-53.831568,-25.813269],[-53.835468,-25.814969],[-53.837668,-25.817069],[-53.836468,-25.820569],[-53.835668,-25.824669],[-53.840068,-25.826169],[-53.843768,-25.828469],[-53.845368,-25.831769],[-53.848768,-25.835469],[-53.849868,-25.840169],[-53.847768,-25.842069],[-53.843368,-25.839769],[-53.840368,-25.841969],[-53.838968,-25.845569],[-53.836268,-25.848069],[-53.834368,-25.850369],[-53.835668,-25.853469],[-53.838768,-25.855969],[-53.843068,-25.856969],[-53.842068,-25.859969],[-53.836968,-25.859969],[-53.832668,-25.858869],[-53.833668,-25.862569],[-53.835368,-25.867569],[-53.831768,-25.868869],[-53.827568,-25.869769],[-53.824868,-25.872669],[-53.828568,-25.876069],[-53.832168,-25.878569],[-53.835468,-25.877969],[-53.838768,-25.878869],[-53.839768,-25.882369],[-53.843368,-25.882969],[-53.848068,-25.883469],[-53.847268,-25.887469],[-53.843668,-25.888269],[-53.838368,-25.887669],[-53.834768,-25.889369],[-53.834768,-25.893169],[-53.831568,-25.895369],[-53.826468,-25.895169],[-53.823468,-25.895669],[-53.819868,-25.897569],[-53.820168,-25.900469],[-53.822668,-25.904069],[-53.827168,-25.905369],[-53.830668,-25.905969],[-53.832968,-25.908069],[-53.834368,-25.911769],[-53.832668,-25.914469],[-53.828968,-25.911969],[-53.824968,-25.910569],[-53.821368,-25.911169],[-53.819968,-25.913669],[-53.822868,-25.917169],[-53.821368,-25.920369],[-53.819968,-25.924469],[-53.822368,-25.928869],[-53.826068,-25.928369],[-53.828568,-25.926169],[-53.832568,-25.923169],[-53.833168,-25.928269],[-53.834068,-25.931869],[-53.838368,-25.931969],[-53.842068,-25.932969],[-53.842068,-25.936569],[-53.841968,-25.939469],[-53.840868,-25.942369],[-53.840168,-25.945969],[-53.839768,-25.949969],[-53.839868,-25.953569],[-53.837368,-25.955669],[-53.835168,-25.958969],[-53.830968,-25.960369],[-53.829868,-25.963469],[-53.833968,-25.965069],[-53.835668,-25.968969],[-53.835068,-25.972569],[-53.831768,-25.974569],[-53.827968,-25.975969],[-53.822968,-25.975569],[-53.819368,-25.976269],[-53.816268,-25.978869],[-53.814668,-25.981669],[-53.819068,-25.982469],[-53.818168,-25.986669],[-53.817168,-25.989469],[-53.813768,-25.989669],[-53.810168,-25.989969],[-53.807168,-25.986669],[-53.803568,-25.984769],[-53.801168,-25.989169],[-53.803068,-25.992969],[-53.803668,-25.996369],[-53.800768,-25.999869],[-53.797568,-26.000569],[-53.793968,-25.999369],[-53.791968,-26.002369],[-53.792268,-26.006069],[-53.788068,-26.006769],[-53.784268,-26.007369],[-53.780868,-26.008469],[-53.782568,-26.011769],[-53.779868,-26.015069],[-53.776968,-26.016469],[-53.779468,-26.020169],[-53.775468,-26.022869],[-53.772568,-26.024769],[-53.770968,-26.027269],[-53.771468,-26.030469],[-53.768468,-26.032369],[-53.765368,-26.034469],[-53.762868,-26.035969],[-53.761368,-26.033369],[-53.757668,-26.031969],[-53.755468,-26.034569],[-53.757568,-26.038269],[-53.755268,-26.041669],[-53.752468,-26.038169],[-53.748268,-26.040269],[-53.746368,-26.043969],[-53.742968,-26.040569],[-53.740368,-26.041769],[-53.736868,-26.041669],[-53.734668,-26.044169],[-53.733368,-26.047769],[-53.732468,-26.050769],[-53.730568,-26.054369],[-53.730668,-26.057969],[-53.729268,-26.061069],[-53.727368,-26.065769],[-53.732068,-26.069369],[-53.734368,-26.073169],[-53.737168,-26.077969],[-53.739668,-26.082569],[-53.740468,-26.086269],[-53.740068,-26.090069],[-53.738868,-26.094469],[-53.738368,-26.098669],[-53.739668,-26.103069],[-53.741868,-26.106669],[-53.742968,-26.111069],[-53.741468,-26.115069],[-53.739068,-26.117669],[-53.734768,-26.119469],[-53.731768,-26.122469],[-53.728568,-26.125569],[-53.724268,-26.128269],[-53.720868,-26.128869],[-53.718168,-26.127169],[-53.714768,-26.127669],[-53.710868,-26.130469],[-53.709868,-26.134169],[-53.707668,-26.137069],[-53.706768,-26.140969],[-53.705068,-26.143769],[-53.702968,-26.146769],[-53.701468,-26.149769],[-53.699268,-26.152969],[-53.696768,-26.154569],[-53.692668,-26.156669],[-53.689168,-26.158969],[-53.686668,-26.160969],[-53.682268,-26.162469],[-53.678568,-26.166169],[-53.677568,-26.168869],[-53.676168,-26.171469],[-53.673868,-26.173269],[-53.671868,-26.176569],[-53.669568,-26.179669],[-53.667068,-26.181069],[-53.664468,-26.184469],[-53.660968,-26.186969],[-53.658868,-26.189469],[-53.656768,-26.192669],[-53.653168,-26.193069],[-53.650168,-26.195169],[-53.650368,-26.199669],[-53.652668,-26.203169],[-53.652268,-26.205969],[-53.647968,-26.208669],[-53.644868,-26.209869],[-53.641468,-26.214369],[-53.644068,-26.217069],[-53.646468,-26.220269],[-53.648968,-26.226269],[-53.651168,-26.229969],[-53.653068,-26.235269],[-53.650368,-26.237869],[-53.645368,-26.240769],[-53.642668,-26.243569],[-53.640668,-26.245769],[-53.638168,-26.248769],[-53.639068,-26.251669],[-53.641768,-26.249469],[-53.644768,-26.249969],[-53.643468,-26.254869],[-53.642468,-26.257969],[-53.642068,-26.261569],[-53.642168,-26.265769],[-53.644068,-26.270369],[-53.645168,-26.273969],[-53.645668,-26.278369],[-53.644568,-26.281969],[-53.645668,-26.285869],[-53.647968,-26.288969],[-53.651568,-26.290669],[-53.653468,-26.293869],[-53.655868,-26.296369],[-53.657668,-26.298969],[-53.658368,-26.301969],[-53.660268,-26.305069],[-53.662368,-26.308269],[-53.662568,-26.311569],[-53.664168,-26.314469],[-53.666168,-26.317669],[-53.669268,-26.319569],[-53.669668,-26.323769],[-53.673568,-26.325469],[-53.671368,-26.329269],[-53.673568,-26.331869],[-53.676668,-26.330969],[-53.677468,-26.335069],[-53.681668,-26.334669],[-53.685468,-26.336869],[-53.687268,-26.340169],[-53.688068,-26.343369],[-53.689668,-26.346269],[-53.689168,-26.349969],[-53.690168,-26.353069],[-53.693868,-26.352769],[-53.695668,-26.355269],[-53.692468,-26.356069],[-53.690568,-26.359969],[-53.693568,-26.361469],[-53.696268,-26.363269],[-53.699668,-26.363969],[-53.700968,-26.367269],[-53.701268,-26.372669],[-53.698468,-26.376369],[-53.697968,-26.380269],[-53.698868,-26.383469],[-53.701468,-26.387369],[-53.708468,-26.387369],[-53.708968,-26.390769],[-53.707368,-26.394269],[-53.703968,-26.396769],[-53.701268,-26.397869],[-53.698768,-26.400069],[-53.696868,-26.403469],[-53.699668,-26.407669],[-53.702568,-26.408069],[-53.705768,-26.409469],[-53.704668,-26.412369],[-53.705368,-26.415269],[-53.702868,-26.416769],[-53.698568,-26.416769],[-53.698968,-26.421769],[-53.695968,-26.423569],[-53.694268,-26.426069],[-53.693468,-26.429769],[-53.690568,-26.428069],[-53.687168,-26.428269],[-53.687968,-26.431569],[-53.688768,-26.434769],[-53.687768,-26.439369],[-53.688768,-26.443269],[-53.693768,-26.443269],[-53.697368,-26.444569],[-53.696668,-26.441569],[-53.700368,-26.440469],[-53.704568,-26.442669],[-53.704068,-26.446269],[-53.702868,-26.449969],[-53.700268,-26.452869],[-53.697468,-26.454969],[-53.698168,-26.458969],[-53.699268,-26.462969],[-53.699268,-26.466469],[-53.699268,-26.469469],[-53.702168,-26.467069],[-53.704568,-26.463669],[-53.708668,-26.464869],[-53.712868,-26.467669],[-53.715468,-26.470969],[-53.712868,-26.473369],[-53.709568,-26.474569],[-53.708968,-26.478369],[-53.706268,-26.480669],[-53.704368,-26.476969],[-53.702068,-26.473669],[-53.698568,-26.474169],[-53.696668,-26.476269],[-53.699868,-26.478969],[-53.699268,-26.482869],[-53.698468,-26.485769],[-53.697068,-26.489969],[-53.699868,-26.490469],[-53.702868,-26.490469],[-53.705368,-26.493569],[-53.706468,-26.497169],[-53.708268,-26.500569],[-53.705968,-26.503269],[-53.704568,-26.507069],[-53.708268,-26.506569],[-53.712068,-26.504069],[-53.716268,-26.503469],[-53.719468,-26.506269],[-53.722668,-26.504069],[-53.725368,-26.500869],[-53.729168,-26.501269],[-53.730668,-26.503869],[-53.731068,-26.507469],[-53.730068,-26.511769],[-53.728868,-26.515969],[-53.729168,-26.519369],[-53.728068,-26.522869],[-53.726368,-26.526169],[-53.721968,-26.526569],[-53.718468,-26.525069],[-53.717868,-26.528369],[-53.720968,-26.529769],[-53.724168,-26.531669],[-53.723468,-26.535869],[-53.719268,-26.536369],[-53.721468,-26.540869],[-53.724168,-26.542569],[-53.728068,-26.540869],[-53.731668,-26.538969],[-53.735268,-26.540569],[-53.740868,-26.543569],[-53.741168,-26.547169],[-53.738268,-26.548369],[-53.734168,-26.548869],[-53.730668,-26.548969],[-53.727068,-26.550769],[-53.725568,-26.554769],[-53.725668,-26.558569],[-53.729568,-26.559869],[-53.732868,-26.558669],[-53.736468,-26.560169],[-53.737468,-26.563569],[-53.735668,-26.566569],[-53.731668,-26.566269],[-53.728668,-26.564569],[-53.724268,-26.562769],[-53.722268,-26.566569],[-53.721468,-26.570969],[-53.722068,-26.575469],[-53.722368,-26.580369],[-53.724868,-26.584669],[-53.725268,-26.588669],[-53.728868,-26.587669],[-53.732468,-26.586469],[-53.731168,-26.589369],[-53.728968,-26.592669],[-53.729568,-26.597869],[-53.729568,-26.603069],[-53.730568,-26.607569],[-53.735268,-26.608569],[-53.734968,-26.612769],[-53.732468,-26.614769],[-53.730368,-26.617269],[-53.730268,-26.621569],[-53.732468,-26.623769],[-53.733868,-26.626569],[-53.733368,-26.630469],[-53.736868,-26.630169],[-53.741068,-26.630469],[-53.741468,-26.634069],[-53.741468,-26.637969],[-53.740368,-26.642969],[-53.743368,-26.643969],[-53.746368,-26.640169],[-53.750468,-26.635969],[-53.754368,-26.636069],[-53.758568,-26.638469],[-53.759568,-26.641469],[-53.756568,-26.644369],[-53.753268,-26.645369],[-53.748568,-26.646469],[-53.743368,-26.647969],[-53.739168,-26.646869],[-53.734968,-26.646069],[-53.733868,-26.649769],[-53.733268,-26.653769],[-53.729168,-26.657569],[-53.724768,-26.658869],[-53.723668,-26.655169],[-53.725268,-26.651169],[-53.723368,-26.648169],[-53.720868,-26.652569],[-53.719868,-26.656969],[-53.719468,-26.661769],[-53.718768,-26.665869],[-53.720668,-26.668569],[-53.725668,-26.667569],[-53.726968,-26.670269],[-53.727068,-26.673669],[-53.730268,-26.675769],[-53.731168,-26.678569],[-53.725968,-26.679369],[-53.722368,-26.679469],[-53.718068,-26.681069],[-53.717568,-26.684369],[-53.721168,-26.686869],[-53.724468,-26.690569],[-53.728968,-26.691969],[-53.732868,-26.690569],[-53.734968,-26.688069],[-53.736768,-26.684169],[-53.739768,-26.680869],[-53.743268,-26.680769],[-53.742968,-26.684969],[-53.742968,-26.688369],[-53.741868,-26.691369],[-53.739668,-26.693469],[-53.736368,-26.695569],[-53.733668,-26.699969],[-53.733568,-26.703969],[-53.734768,-26.708269],[-53.734968,-26.712969],[-53.734968,-26.716769],[-53.738568,-26.719169],[-53.743868,-26.719069],[-53.749068,-26.718369],[-53.750868,-26.714469],[-53.752368,-26.711169],[-53.755168,-26.710169],[-53.757168,-26.712569],[-53.757768,-26.715869],[-53.758468,-26.719569],[-53.755768,-26.722869],[-53.751268,-26.724469],[-53.748068,-26.726269],[-53.745468,-26.728169],[-53.743368,-26.730369],[-53.743568,-26.733269],[-53.746568,-26.734969],[-53.749068,-26.736369],[-53.750868,-26.738869],[-53.749468,-26.741869],[-53.746568,-26.741969],[-53.742768,-26.742169],[-53.738368,-26.741869],[-53.735268,-26.739969],[-53.734668,-26.736769],[-53.734168,-26.733669],[-53.731468,-26.731369],[-53.729468,-26.734669],[-53.729268,-26.738369],[-53.727068,-26.741869],[-53.724768,-26.744469],[-53.721668,-26.747669],[-53.717668,-26.749169],[-53.714468,-26.750169],[-53.714768,-26.753369],[-53.716768,-26.756569],[-53.718368,-26.759069],[-53.720868,-26.760969],[-53.724568,-26.762969],[-53.729268,-26.765169],[-53.733168,-26.765669],[-53.736968,-26.763569],[-53.741068,-26.761469],[-53.742968,-26.764069],[-53.738368,-26.766269],[-53.735368,-26.769869],[-53.732468,-26.772969],[-53.729168,-26.774069],[-53.724868,-26.774069],[-53.720268,-26.773669],[-53.716268,-26.772669],[-53.714868,-26.767169],[-53.710168,-26.766069],[-53.706768,-26.766769],[-53.702368,-26.767469],[-53.700268,-26.770969],[-53.704668,-26.772569],[-53.708968,-26.773969],[-53.712068,-26.776169],[-53.716268,-26.779569],[-53.717268,-26.782869],[-53.715568,-26.788469],[-53.712568,-26.793369],[-53.710368,-26.796769],[-53.706468,-26.798269],[-53.701568,-26.798069],[-53.700968,-26.803069],[-53.699268,-26.807169],[-53.697768,-26.810869],[-53.698168,-26.813869],[-53.701368,-26.815269],[-53.705068,-26.815869],[-53.701068,-26.819869],[-53.699968,-26.823469],[-53.698568,-26.828169],[-53.695468,-26.832569],[-53.692468,-26.835069],[-53.689868,-26.837969],[-53.694568,-26.841169],[-53.696068,-26.844569],[-53.695168,-26.847369],[-53.690968,-26.848369],[-53.686668,-26.846369],[-53.683268,-26.843469],[-53.677868,-26.842969],[-53.676168,-26.845569],[-53.674668,-26.849469],[-53.671668,-26.852869],[-53.668368,-26.854269],[-53.664468,-26.855969],[-53.660968,-26.858169],[-53.660868,-26.861669],[-53.663068,-26.864169],[-53.666468,-26.864169],[-53.669168,-26.862969],[-53.672168,-26.861669],[-53.676868,-26.861169],[-53.680868,-26.861369],[-53.685168,-26.861069],[-53.688068,-26.860569],[-53.691268,-26.859669],[-53.695968,-26.858969],[-53.695468,-26.862969],[-53.691568,-26.865769],[-53.687968,-26.866469],[-53.684368,-26.867169],[-53.680768,-26.869769],[-53.683768,-26.870869],[-53.687668,-26.872469],[-53.690968,-26.875569],[-53.693268,-26.879669],[-53.695168,-26.882769],[-53.696068,-26.886369],[-53.693268,-26.889569],[-53.688868,-26.890969],[-53.685268,-26.891569],[-53.680868,-26.892169],[-53.675768,-26.892669],[-53.672768,-26.892969],[-53.672168,-26.896169],[-53.674968,-26.897969],[-53.677468,-26.899769],[-53.679668,-26.902669],[-53.679468,-26.908669],[-53.674668,-26.912069],[-53.678568,-26.915269],[-53.688568,-26.920669],[-53.691268,-26.922569],[-53.694368,-26.924969],[-53.696868,-26.928069],[-53.695668,-26.931169],[-53.692468,-26.933869],[-53.689368,-26.935269],[-53.685568,-26.936869],[-53.679668,-26.938769],[-53.676168,-26.940169],[-53.672468,-26.941269],[-53.669968,-26.943469],[-53.672868,-26.945469],[-53.675768,-26.946269],[-53.679068,-26.945169],[-53.683068,-26.944369],[-53.686368,-26.943169],[-53.688568,-26.941369],[-53.691368,-26.939069],[-53.694868,-26.936969],[-53.698968,-26.935469],[-53.702668,-26.934069],[-53.705968,-26.933269],[-53.709668,-26.934669],[-53.709868,-26.939069],[-53.707368,-26.944269],[-53.705768,-26.946869],[-53.703168,-26.950669],[-53.701568,-26.954269],[-53.702368,-26.957269],[-53.704968,-26.960369],[-53.707968,-26.962569],[-53.711268,-26.965169],[-53.715468,-26.964469],[-53.718468,-26.962869],[-53.720968,-26.960469],[-53.724468,-26.958769],[-53.727268,-26.959669],[-53.728868,-26.963669],[-53.729668,-26.967869],[-53.731168,-26.972769],[-53.735668,-26.974269],[-53.734368,-26.978169],[-53.728868,-26.980669],[-53.723368,-26.982169],[-53.719268,-26.983869],[-53.717368,-26.986969],[-53.718668,-26.990269],[-53.722768,-26.992969],[-53.727868,-26.993669],[-53.730868,-26.992769],[-53.733968,-26.991869],[-53.738268,-26.990869],[-53.743268,-26.992269],[-53.741168,-26.996969],[-53.738668,-26.998769],[-53.734768,-27.001569],[-53.732568,-27.004869],[-53.733168,-27.007969],[-53.736368,-27.010669],[-53.740468,-27.014069],[-53.743868,-27.012769],[-53.745868,-27.010369],[-53.749368,-27.007069],[-53.753768,-27.004869],[-53.757968,-27.005169],[-53.760968,-27.005769],[-53.763568,-27.007769],[-53.762768,-27.011569],[-53.760768,-27.015969],[-53.758768,-27.018169],[-53.755768,-27.019569],[-53.751368,-27.021069],[-53.748368,-27.025169],[-53.748568,-27.032769],[-53.752668,-27.033469],[-53.758468,-27.033869],[-53.761268,-27.037869],[-53.762368,-27.042569],[-53.764668,-27.044669],[-53.767868,-27.041969],[-53.770368,-27.037369],[-53.772868,-27.034269],[-53.775368,-27.031269],[-53.777568,-27.029269],[-53.781168,-27.026769],[-53.785568,-27.026569],[-53.785268,-27.029569],[-53.782768,-27.033369],[-53.780168,-27.036969],[-53.778768,-27.039469],[-53.778768,-27.042469],[-53.778168,-27.045569],[-53.777268,-27.049169],[-53.773968,-27.052869],[-53.770368,-27.056169],[-53.766268,-27.057969],[-53.760768,-27.060169],[-53.759668,-27.063369],[-53.763468,-27.066569],[-53.766768,-27.067669],[-53.771168,-27.066669],[-53.776268,-27.063569],[-53.779268,-27.060769],[-53.782068,-27.057469],[-53.784868,-27.054169],[-53.787368,-27.049769],[-53.790368,-27.044769],[-53.793168,-27.041669],[-53.797468,-27.039769],[-53.801868,-27.040069],[-53.801668,-27.043069],[-53.800768,-27.046369],[-53.799268,-27.049969],[-53.798368,-27.053669],[-53.797768,-27.058569],[-53.794268,-27.062169],[-53.791968,-27.064469],[-53.788868,-27.068269],[-53.784268,-27.071769],[-53.779068,-27.071369],[-53.774468,-27.071369],[-53.772368,-27.073869],[-53.774568,-27.076369],[-53.777568,-27.077969],[-53.781268,-27.078569],[-53.785368,-27.077369],[-53.788468,-27.075769],[-53.792068,-27.072369],[-53.794268,-27.069269],[-53.796168,-27.066669],[-53.799668,-27.067669],[-53.802468,-27.072769],[-53.805468,-27.079069],[-53.803868,-27.083269],[-53.801368,-27.086269],[-53.798168,-27.088369],[-53.793068,-27.091269],[-53.790068,-27.093969],[-53.784868,-27.097369],[-53.778768,-27.100669],[-53.778168,-27.103869],[-53.783468,-27.104969],[-53.787868,-27.105669],[-53.790868,-27.107569],[-53.793868,-27.109769],[-53.797868,-27.109969],[-53.803068,-27.108269],[-53.805568,-27.106469],[-53.807668,-27.103369],[-53.809368,-27.099869],[-53.812268,-27.097869],[-53.816068,-27.099469],[-53.817968,-27.103669],[-53.814368,-27.106469],[-53.811868,-27.107869],[-53.809068,-27.109469],[-53.806568,-27.111769],[-53.805468,-27.116669],[-53.804768,-27.119669],[-53.804968,-27.123269],[-53.807268,-27.125969],[-53.810468,-27.127369],[-53.814968,-27.129369],[-53.818268,-27.129069],[-53.821268,-27.127769],[-53.824868,-27.127369],[-53.824968,-27.131269],[-53.823868,-27.134069],[-53.822068,-27.136769],[-53.819868,-27.138969],[-53.816268,-27.140169],[-53.812168,-27.139569],[-53.808768,-27.138469],[-53.804168,-27.137169],[-53.798968,-27.137069],[-53.798168,-27.140469],[-53.798168,-27.144869],[-53.800368,-27.146769],[-53.803668,-27.146569],[-53.808068,-27.145769],[-53.812668,-27.144869],[-53.815968,-27.144569],[-53.819368,-27.144369],[-53.822468,-27.144369],[-53.825468,-27.144769],[-53.829568,-27.147269],[-53.832968,-27.150469],[-53.836168,-27.153369],[-53.836468,-27.157269],[-53.833468,-27.162269],[-53.833268,-27.166169],[-53.837868,-27.168069],[-53.841568,-27.165569],[-53.843468,-27.162769],[-53.846968,-27.157369],[-53.848968,-27.153969],[-53.850568,-27.150969],[-53.855668,-27.139369],[-53.858568,-27.132669],[-53.861168,-27.128469],[-53.865368,-27.125969],[-53.869768,-27.125169],[-53.875268,-27.125869],[-53.878068,-27.127169],[-53.882668,-27.130669],[-53.884968,-27.135669],[-53.886068,-27.141069],[-53.887368,-27.147869],[-53.887368,-27.150869],[-53.887968,-27.153769],[-53.890168,-27.157669],[-53.892168,-27.160569],[-53.893768,-27.163169],[-53.895168,-27.166669],[-53.898268,-27.170869],[-53.902668,-27.174369],[-53.905468,-27.175469],[-53.909768,-27.176069],[-53.916768,-27.174669],[-53.921368,-27.168969],[-53.925368,-27.163069],[-53.928968,-27.158969],[-53.933568,-27.155869],[-53.940168,-27.152869],[-53.945168,-27.151569],[-53.953168,-27.152869],[-53.957268,-27.156969],[-53.959768,-27.160069],[-53.960668,-27.165069],[-53.958268,-27.170369],[-53.955668,-27.175569],[-53.955168,-27.178369],[-53.955468,-27.183669],[-53.957368,-27.188569],[-53.960068,-27.195269],[-53.963168,-27.197669],[-53.967668,-27.198869],[-53.972268,-27.198869],[-53.977068,-27.197969],[-53.983968,-27.196269],[-53.992168,-27.195969],[-54.000968,-27.196269],[-54.007068,-27.197969],[-54.012168,-27.202569],[-54.014868,-27.208169],[-54.015668,-27.211869],[-54.016468,-27.216969],[-54.015768,-27.223469],[-54.015468,-27.229169],[-54.015768,-27.232869],[-54.017568,-27.238569],[-54.020768,-27.245769],[-54.024368,-27.251569],[-54.027668,-27.254869],[-54.035268,-27.257169],[-54.041468,-27.257969],[-54.047168,-27.259369],[-54.051868,-27.261469],[-54.055568,-27.264569],[-54.060268,-27.269369],[-54.064668,-27.275869],[-54.068768,-27.283369],[-54.070668,-27.286969],[-54.072168,-27.290869],[-54.075668,-27.294469],[-54.081168,-27.298269],[-54.089068,-27.301169],[-54.096468,-27.302769],[-54.100968,-27.303269],[-54.107468,-27.302969],[-54.111068,-27.303669],[-54.114668,-27.303269],[-54.119068,-27.301869],[-54.126268,-27.301469],[-54.129868,-27.301469],[-54.132768,-27.301369],[-54.140068,-27.300069],[-54.143668,-27.299369],[-54.148468,-27.298569],[-54.155168,-27.296469],[-54.159268,-27.292769],[-54.160068,-27.287469],[-54.158868,-27.283969],[-54.156168,-27.280069],[-54.155368,-27.276469],[-54.155368,-27.272369],[-54.155668,-27.268969],[-54.156968,-27.264569],[-54.159468,-27.259369],[-54.162068,-27.256069],[-54.165268,-27.254069],[-54.169468,-27.253569],[-54.174168,-27.254869],[-54.177568,-27.257769],[-54.180768,-27.260169],[-54.183368,-27.262369],[-54.186568,-27.264869],[-54.187368,-27.267969],[-54.189068,-27.271569],[-54.190768,-27.278069],[-54.191568,-27.283069],[-54.192768,-27.288169],[-54.194168,-27.292269],[-54.193468,-27.295769],[-54.192168,-27.300769],[-54.192168,-27.304669],[-54.193268,-27.308369],[-54.195668,-27.312669],[-54.198768,-27.317669],[-54.202368,-27.323569],[-54.204668,-27.327869],[-54.206468,-27.331469],[-54.208668,-27.335869],[-54.210368,-27.339869],[-54.211968,-27.345569],[-54.213268,-27.351169],[-54.213968,-27.358869],[-54.214068,-27.365269],[-54.213268,-27.369669],[-54.212968,-27.375169],[-54.214368,-27.381569],[-54.217268,-27.385369],[-54.222368,-27.389369],[-54.228368,-27.392069],[-54.231968,-27.392969],[-54.235268,-27.393669],[-54.241568,-27.392969],[-54.245868,-27.393169],[-54.252668,-27.394269],[-54.259868,-27.396169],[-54.263968,-27.399269],[-54.267468,-27.404269],[-54.268568,-27.414169],[-54.270668,-27.418669],[-54.270168,-27.424169],[-54.269068,-27.427269],[-54.267868,-27.431169],[-54.268268,-27.436269],[-54.271868,-27.440969],[-54.277268,-27.444869],[-54.283668,-27.447769],[-54.288968,-27.447969],[-54.294168,-27.445969],[-54.297468,-27.441669],[-54.301468,-27.433369],[-54.310568,-27.421869],[-54.320668,-27.412869],[-54.328768,-27.406669],[-54.334368,-27.403169],[-54.338268,-27.403069],[-54.341268,-27.404269],[-54.342568,-27.408169],[-54.342668,-27.412769],[-54.341668,-27.417469],[-54.341768,-27.421169],[-54.341268,-27.425569],[-54.340368,-27.430869],[-54.338968,-27.435769],[-54.337968,-27.439869],[-54.336468,-27.443769],[-54.335068,-27.446669],[-54.335068,-27.451269],[-54.336868,-27.456569],[-54.338468,-27.459569],[-54.340368,-27.463369],[-54.342568,-27.465169],[-54.346368,-27.466969],[-54.350368,-27.466969],[-54.357168,-27.464869],[-54.362968,-27.459769],[-54.369668,-27.452569],[-54.377068,-27.441869],[-54.385168,-27.426969],[-54.388268,-27.422769],[-54.392168,-27.418069],[-54.398668,-27.411669],[-54.405568,-27.407369],[-54.410568,-27.405469],[-54.415668,-27.406969],[-54.418668,-27.408869],[-54.421468,-27.411369],[-54.426568,-27.416069],[-54.430468,-27.419469],[-54.435768,-27.423269],[-54.439068,-27.424669],[-54.444068,-27.424969],[-54.452668,-27.422869],[-54.456068,-27.422169],[-54.459668,-27.422469],[-54.462668,-27.422869],[-54.465868,-27.423569],[-54.469868,-27.425769],[-54.471968,-27.430469],[-54.471968,-27.434369],[-54.469868,-27.437969],[-54.465468,-27.442969],[-54.460368,-27.448569],[-54.452168,-27.453269],[-54.448468,-27.455669],[-54.443868,-27.459869],[-54.442668,-27.464869],[-54.443268,-27.468369],[-54.445768,-27.472069],[-54.449568,-27.475369],[-54.456168,-27.478069],[-54.462968,-27.479669],[-54.474268,-27.481669],[-54.477768,-27.481069],[-54.481668,-27.480969],[-54.486668,-27.480369],[-54.492968,-27.479969],[-54.500568,-27.480269],[-54.506268,-27.482269],[-54.510268,-27.485369],[-54.512468,-27.488969],[-54.514668,-27.493369],[-54.517068,-27.497669],[-54.520468,-27.502769],[-54.524868,-27.506069],[-54.530068,-27.506069],[-54.534468,-27.505669],[-54.537068,-27.502769],[-54.538168,-27.498669],[-54.539468,-27.492969],[-54.542768,-27.486069],[-54.547568,-27.479269],[-54.552168,-27.473469],[-54.556368,-27.468369],[-54.558568,-27.465669],[-54.561268,-27.462569],[-54.566668,-27.457569],[-54.573268,-27.453569],[-54.576568,-27.453269],[-54.580468,-27.453169],[-54.585368,-27.454669],[-54.589368,-27.458169],[-54.591168,-27.462869],[-54.592268,-27.468469],[-54.591768,-27.475069],[-54.593668,-27.482469],[-54.594868,-27.487269],[-54.597368,-27.491669],[-54.602268,-27.497669],[-54.606168,-27.503769],[-54.609668,-27.510969],[-54.611468,-27.516569],[-54.612968,-27.523169],[-54.616368,-27.532869],[-54.620768,-27.538669],[-54.626868,-27.543969],[-54.633468,-27.546069],[-54.639068,-27.545369],[-54.642368,-27.544769],[-54.647968,-27.540269],[-54.651968,-27.531669],[-54.654768,-27.520669],[-54.657268,-27.512369],[-54.660068,-27.508569],[-54.662768,-27.507169],[-54.665568,-27.505769],[-54.670268,-27.504869],[-54.675468,-27.505769],[-54.677868,-27.508869],[-54.679368,-27.512869],[-54.679768,-27.518169],[-54.679768,-27.527569],[-54.677968,-27.533969],[-54.676868,-27.537769],[-54.673868,-27.548169],[-54.672768,-27.553669],[-54.671668,-27.559369],[-54.671468,-27.565569],[-54.674168,-27.570469],[-54.681968,-27.574369],[-54.693068,-27.572869],[-54.698568,-27.571269],[-54.706768,-27.568569],[-54.717268,-27.564869],[-54.723368,-27.563569],[-54.730568,-27.561669],[-54.738568,-27.560869],[-54.741668,-27.561669],[-54.744768,-27.562669],[-54.747168,-27.565269],[-54.749468,-27.567769],[-54.750968,-27.570769],[-54.753468,-27.575369],[-54.758768,-27.581469],[-54.765968,-27.584669],[-54.772968,-27.585169],[-54.778068,-27.583669],[-54.784868,-27.577369],[-54.787768,-27.570169],[-54.790668,-27.557669],[-54.792768,-27.543569],[-54.794168,-27.538869],[-54.795068,-27.534869],[-54.802568,-27.530669],[-54.806868,-27.530169],[-54.810268,-27.530369],[-54.815968,-27.534769],[-54.821268,-27.543869],[-54.826468,-27.553969],[-54.830968,-27.567769],[-54.832568,-27.573169],[-54.833668,-27.577669],[-54.836868,-27.591169],[-54.838668,-27.596369],[-54.839068,-27.600269],[-54.839868,-27.605569],[-54.842668,-27.612469],[-54.845868,-27.617969],[-54.847868,-27.621569],[-54.850668,-27.623869],[-54.854568,-27.627369],[-54.861068,-27.629169],[-54.869168,-27.627069],[-54.878768,-27.625969],[-54.888468,-27.626569],[-54.895168,-27.629169],[-54.903068,-27.636369],[-54.906468,-27.641769],[-54.907068,-27.647869],[-54.904868,-27.656269],[-54.904768,-27.659869],[-54.904268,-27.671669],[-54.903668,-27.682169],[-54.904468,-27.690169],[-54.902568,-27.698569],[-54.902268,-27.702169],[-54.902368,-27.710969],[-54.902368,-27.715569],[-54.905168,-27.725269],[-54.906768,-27.729969],[-54.915268,-27.737969],[-54.920668,-27.744669],[-54.928868,-27.755769],[-54.930768,-27.758869],[-54.937968,-27.770769],[-54.940968,-27.772969],[-54.948468,-27.778469],[-54.954968,-27.778769],[-54.961168,-27.778369],[-54.970268,-27.774569],[-54.977568,-27.770769],[-54.983568,-27.770669],[-54.988668,-27.772169],[-54.992968,-27.775469],[-54.995468,-27.780169],[-54.997368,-27.786769],[-54.999368,-27.791669],[-55.005768,-27.796169],[-55.014268,-27.796969],[-55.022968,-27.794469],[-55.030468,-27.788669],[-55.038368,-27.779169],[-55.044168,-27.773469],[-55.050868,-27.768669],[-55.057968,-27.767969],[-55.065268,-27.770469],[-55.069868,-27.772369],[-55.072668,-27.773469],[-55.080368,-27.778469],[-55.081868,-27.780869],[-55.083768,-27.784869],[-55.084268,-27.791769],[-55.082568,-27.796069],[-55.077368,-27.799769],[-55.070168,-27.803569],[-55.062168,-27.810469],[-55.052768,-27.816069],[-55.042768,-27.820169],[-55.034868,-27.824269],[-55.028468,-27.829369],[-55.024768,-27.835469],[-55.024368,-27.842269],[-55.025468,-27.848169],[-55.030568,-27.854969],[-55.036368,-27.857769],[-55.044268,-27.855669],[-55.052168,-27.853569],[-55.056868,-27.849969],[-55.066868,-27.846969],[-55.078168,-27.844869],[-55.081168,-27.844169],[-55.085368,-27.843069],[-55.090968,-27.843069],[-55.100968,-27.845969],[-55.108968,-27.847869],[-55.113668,-27.848969],[-55.119668,-27.853169],[-55.125868,-27.859369],[-55.127168,-27.864469],[-55.126068,-27.869769],[-55.125268,-27.875169],[-55.124068,-27.881369],[-55.125268,-27.887869],[-55.128068,-27.893769],[-55.133168,-27.895969],[-55.138268,-27.895169],[-55.145368,-27.889369],[-55.152368,-27.883469],[-55.156268,-27.879669],[-55.161668,-27.874669],[-55.165668,-27.866969],[-55.171368,-27.861369],[-55.181368,-27.856969],[-55.187968,-27.855869],[-55.191368,-27.855369],[-55.202668,-27.857769],[-55.210068,-27.863569],[-55.212568,-27.866869],[-55.220368,-27.873569],[-55.224868,-27.877069],[-55.232768,-27.884969],[-55.236868,-27.890969],[-55.239068,-27.895769],[-55.240268,-27.898669],[-55.242168,-27.901169],[-55.245568,-27.905969],[-55.250168,-27.914169],[-55.257768,-27.922169],[-55.266468,-27.929769],[-55.275168,-27.933069],[-55.277968,-27.934069],[-55.285868,-27.932269],[-55.292768,-27.929669],[-55.300468,-27.925269],[-55.309368,-27.922169],[-55.319268,-27.921869],[-55.327168,-27.926669],[-55.330368,-27.931369],[-55.333268,-27.939169],[-55.335368,-27.950169],[-55.337368,-27.959869],[-55.338468,-27.966169],[-55.346968,-27.972269],[-55.357568,-27.973369],[-55.368868,-27.974869],[-55.376068,-27.976169],[-55.382168,-27.979169],[-55.386368,-27.985069],[-55.387168,-27.989969],[-55.385968,-27.993869],[-55.382368,-28.000469],[-55.371568,-28.013969],[-55.369668,-28.017869],[-55.369368,-28.027269],[-55.375568,-28.034169],[-55.386768,-28.042469],[-55.390468,-28.045269],[-55.402268,-28.050069],[-55.410368,-28.053269],[-55.413868,-28.054669],[-55.422568,-28.062969],[-55.425068,-28.067969],[-55.430468,-28.076069],[-55.434768,-28.081769],[-55.438768,-28.086969],[-55.442468,-28.094269],[-55.447868,-28.097369],[-55.452368,-28.097869],[-55.454568,-28.095569],[-55.458768,-28.093669],[-55.462968,-28.090869],[-55.468768,-28.087969],[-55.478868,-28.080969],[-55.487768,-28.076569],[-55.491368,-28.076569],[-55.495468,-28.076769],[-55.499368,-28.080969],[-55.500568,-28.085369],[-55.501968,-28.090069],[-55.504168,-28.094869],[-55.505468,-28.097769],[-55.506668,-28.102769],[-55.509668,-28.109369],[-55.513168,-28.114669],[-55.518968,-28.115569],[-55.524768,-28.114669],[-55.530568,-28.115469],[-55.536268,-28.118569],[-55.540068,-28.123269],[-55.543668,-28.129869],[-55.545768,-28.133469],[-55.547568,-28.136469],[-55.548068,-28.142669],[-55.548268,-28.147369],[-55.549268,-28.155869],[-55.552168,-28.160069],[-55.557468,-28.164469],[-55.564068,-28.163469],[-55.571268,-28.156969],[-55.577068,-28.153469],[-55.585368,-28.147869],[-55.588768,-28.142169],[-55.587868,-28.136769],[-55.585368,-28.131869],[-55.583268,-28.124969],[-55.587568,-28.119469],[-55.592568,-28.117169],[-55.596168,-28.115769],[-55.604768,-28.115569],[-55.609768,-28.117169],[-55.616068,-28.123769],[-55.620768,-28.130969],[-55.622368,-28.138469],[-55.621568,-28.145669],[-55.619768,-28.152369],[-55.622268,-28.160969],[-55.628468,-28.172569],[-55.634168,-28.177769],[-55.642068,-28.179769],[-55.652968,-28.182169],[-55.662068,-28.189169],[-55.670668,-28.198569],[-55.678268,-28.205069],[-55.685168,-28.211469],[-55.692468,-28.218769],[-55.695768,-28.220269],[-55.704668,-28.224269],[-55.718068,-28.226669],[-55.733868,-28.229269],[-55.749968,-28.233669],[-55.762968,-28.238669],[-55.771168,-28.241369],[-55.778668,-28.247969],[-55.782068,-28.255269],[-55.780068,-28.265069],[-55.772168,-28.274369],[-55.768768,-28.275469],[-55.755668,-28.279469],[-55.751268,-28.280169],[-55.742968,-28.281269],[-55.735668,-28.284569],[-55.732168,-28.286369],[-55.723368,-28.292769],[-55.716668,-28.298969],[-55.711868,-28.303869],[-55.701768,-28.311169],[-55.694268,-28.315169],[-55.686868,-28.318769],[-55.680168,-28.322169],[-55.674468,-28.327969],[-55.670368,-28.334369],[-55.669168,-28.340669],[-55.670768,-28.345669],[-55.674668,-28.356369],[-55.680168,-28.369769],[-55.685468,-28.381369],[-55.688768,-28.388169],[-55.690568,-28.395969],[-55.690568,-28.399769],[-55.690468,-28.404769],[-55.690568,-28.413169],[-55.691568,-28.415869],[-55.695168,-28.422869],[-55.704668,-28.427469],[-55.713168,-28.425569],[-55.716468,-28.422169],[-55.719768,-28.418669],[-55.723068,-28.407369],[-55.724968,-28.401969],[-55.728168,-28.392469],[-55.734368,-28.381269],[-55.739968,-28.376969],[-55.746368,-28.373269],[-55.756568,-28.369369],[-55.767068,-28.368069],[-55.776268,-28.367569],[-55.781268,-28.367269],[-55.785368,-28.367269],[-55.796368,-28.367269],[-55.805468,-28.366169],[-55.809468,-28.365769],[-55.821568,-28.363569],[-55.838468,-28.358369],[-55.847368,-28.356069],[-55.850568,-28.355369],[-55.859468,-28.354769],[-55.871068,-28.357169],[-55.878768,-28.361869],[-55.881568,-28.368369],[-55.882768,-28.371069],[-55.884568,-28.374769],[-55.886468,-28.377069],[-55.890068,-28.381069],[-55.895668,-28.389869],[-55.900368,-28.398369],[-55.903068,-28.407569],[-55.902268,-28.411469],[-55.901468,-28.415569],[-55.900868,-28.418669],[-55.895468,-28.429469],[-55.889068,-28.444669],[-55.884868,-28.456869],[-55.882468,-28.464469],[-55.881268,-28.473469],[-55.883868,-28.479169],[-55.896868,-28.480669],[-55.907268,-28.481469],[-55.911168,-28.482569],[-55.923868,-28.485269],[-55.928668,-28.486369],[-55.935468,-28.489669],[-55.939968,-28.491969],[-55.945168,-28.493369],[-55.949268,-28.494469],[-55.960368,-28.494769],[-55.970968,-28.496369],[-55.987168,-28.497969],[-56.002068,-28.501969],[-56.010268,-28.506369],[-56.017568,-28.513569],[-56.023168,-28.522669],[-56.024468,-28.528669],[-56.025668,-28.534769],[-56.024768,-28.541969],[-56.024068,-28.545669],[-56.020768,-28.553269],[-56.012968,-28.562969],[-56.010168,-28.565869],[-56.007368,-28.568769],[-56.005268,-28.572469],[-56.002368,-28.578269],[-56.001268,-28.587969],[-56.003868,-28.598369],[-56.009668,-28.605669],[-56.015768,-28.611169],[-56.018568,-28.613369],[-56.022168,-28.615069],[-56.026568,-28.617269],[-56.030668,-28.619069],[-56.036668,-28.621569],[-56.046068,-28.623669],[-56.056168,-28.629169],[-56.063868,-28.635469],[-56.071868,-28.643469],[-56.076568,-28.648669],[-56.081868,-28.654169],[-56.086168,-28.656969],[-56.094768,-28.664169],[-56.102068,-28.669669],[-56.108668,-28.674669],[-56.119068,-28.681169],[-56.125268,-28.687469],[-56.131368,-28.694669],[-56.133868,-28.698169],[-56.137768,-28.703569],[-56.140368,-28.706069],[-56.143268,-28.709069],[-56.149268,-28.717669],[-56.150968,-28.720869],[-56.155168,-28.730569],[-56.160668,-28.739669],[-56.162868,-28.742669],[-56.165568,-28.746569],[-56.172168,-28.753469],[-56.177168,-28.760669],[-56.183068,-28.767669],[-56.188068,-28.772269],[-56.194068,-28.775169],[-56.201068,-28.774269],[-56.210468,-28.774569],[-56.223168,-28.776769],[-56.236968,-28.777569],[-56.249668,-28.777869],[-56.260968,-28.778969],[-56.271168,-28.781969],[-56.276768,-28.785569],[-56.282368,-28.788769],[-56.289168,-28.793669],[-56.294468,-28.799969],[-56.299668,-28.808069],[-56.301168,-28.816969],[-56.298568,-28.830969],[-56.297268,-28.841269],[-56.297468,-28.857269],[-56.298568,-28.873269],[-56.298168,-28.885169],[-56.300368,-28.896269],[-56.303668,-28.902969],[-56.308868,-28.908669],[-56.315568,-28.916369],[-56.322368,-28.923969],[-56.327368,-28.928369],[-56.332868,-28.932169],[-56.344168,-28.939969],[-56.362468,-28.944169],[-56.378868,-28.947969],[-56.390068,-28.955669],[-56.397068,-28.962869],[-56.406268,-28.972569],[-56.412068,-28.982869],[-56.413968,-28.987569],[-56.415868,-28.992169],[-56.415668,-28.995869],[-56.416168,-29.000569],[-56.412768,-29.005269],[-56.406768,-29.008869],[-56.402268,-29.012069],[-56.399768,-29.015969],[-56.400768,-29.024569],[-56.404268,-29.032369],[-56.409868,-29.038469],[-56.412268,-29.047169],[-56.413068,-29.054369],[-56.413068,-29.061869],[-56.415968,-29.068869],[-56.420868,-29.074569],[-56.430468,-29.079569],[-56.438468,-29.080769],[-56.445968,-29.081869],[-56.459268,-29.083569],[-56.462968,-29.084069],[-56.476468,-29.086169],[-56.489168,-29.086869],[-56.502968,-29.088669],[-56.513968,-29.092269],[-56.523468,-29.097869],[-56.532768,-29.104669],[-56.537568,-29.111369],[-56.540268,-29.113069],[-56.544168,-29.115569],[-56.550468,-29.116469],[-56.554368,-29.115769],[-56.557168,-29.114969],[-56.560468,-29.114769],[-56.567968,-29.114069],[-56.577168,-29.115069],[-56.588668,-29.119769],[-56.593768,-29.126269],[-56.594768,-29.136269],[-56.600668,-29.145669],[-56.610768,-29.160269],[-56.613568,-29.165069],[-56.616868,-29.171069],[-56.623068,-29.177569],[-56.634168,-29.189069],[-56.640768,-29.194569],[-56.645768,-29.200269],[-56.648368,-29.206869],[-56.651168,-29.213969],[-56.654768,-29.223769],[-56.654768,-29.231069],[-56.652268,-29.239769],[-56.649068,-29.254869],[-56.650668,-29.264269],[-56.657568,-29.280869],[-56.660168,-29.285969],[-56.664468,-29.294969],[-56.684168,-29.326069],[-56.689068,-29.333969],[-56.691668,-29.339469],[-56.699868,-29.356369],[-56.705368,-29.360869],[-56.713168,-29.367169],[-56.730068,-29.368669],[-56.746168,-29.368269],[-56.758768,-29.370869],[-56.767668,-29.377669],[-56.770668,-29.382369],[-56.773168,-29.387369],[-56.775168,-29.394769],[-56.777568,-29.404069],[-56.779868,-29.414869],[-56.779268,-29.419769],[-56.779468,-29.423969],[-56.777668,-29.428969],[-56.777868,-29.432169],[-56.779468,-29.437369],[-56.785568,-29.441669],[-56.796868,-29.449069],[-56.801368,-29.454869],[-56.803968,-29.459569],[-56.805468,-29.466269],[-56.808268,-29.473069],[-56.811568,-29.477769],[-56.813868,-29.481069],[-56.822068,-29.489969],[-56.831268,-29.494669],[-56.843968,-29.499069],[-56.846768,-29.500469],[-56.856468,-29.505169],[-56.861768,-29.507769],[-56.872768,-29.514669],[-56.887968,-29.526469],[-56.901868,-29.533769],[-56.911368,-29.543869],[-56.915568,-29.548569],[-56.920668,-29.554469],[-56.929468,-29.566269],[-56.933368,-29.568769],[-56.939968,-29.572869],[-56.950968,-29.580669],[-56.958668,-29.589569],[-56.963668,-29.596169],[-56.967668,-29.601769],[-56.971368,-29.610269],[-56.972068,-29.617269],[-56.969468,-29.622369],[-56.967268,-29.629969],[-56.967868,-29.638169],[-56.970968,-29.643269],[-56.980268,-29.644369],[-56.990568,-29.646569],[-57.000868,-29.651869],[-57.006568,-29.658169],[-57.011468,-29.664469],[-57.016068,-29.674769],[-57.021168,-29.683269],[-57.026968,-29.689369],[-57.033368,-29.695669],[-57.045368,-29.701569],[-57.052168,-29.707569],[-57.057268,-29.713669],[-57.069268,-29.722069],[-57.082868,-29.734669],[-57.094468,-29.743869],[-57.099568,-29.748269],[-57.102768,-29.750269],[-57.106368,-29.752669],[-57.111768,-29.756269],[-57.120568,-29.762069],[-57.123868,-29.764569],[-57.132768,-29.770369],[-57.151968,-29.774769],[-57.171968,-29.780669],[-57.180568,-29.781169],[-57.195268,-29.779769],[-57.207868,-29.777669],[-57.220968,-29.776269],[-57.235368,-29.780669],[-57.248368,-29.792769],[-57.257368,-29.800469],[-57.267668,-29.809369],[-57.270368,-29.810769],[-57.282068,-29.817169],[-57.287068,-29.823169],[-57.297768,-29.834669],[-57.304668,-29.844769],[-57.314468,-29.859969],[-57.324568,-29.872769],[-57.326268,-29.877969],[-57.328268,-29.883869],[-57.329668,-29.887469],[-57.329068,-29.895369],[-57.328568,-29.902569],[-57.326268,-29.911969],[-57.324068,-29.921669],[-57.324068,-29.925269],[-57.323968,-29.939169],[-57.325468,-29.954569],[-57.326868,-29.971469],[-57.337568,-29.989969],[-57.339768,-29.992469],[-57.344868,-29.998269],[-57.352768,-30.008069],[-57.357468,-30.009969],[-57.362168,-30.011869],[-57.370468,-30.014069],[-57.383068,-30.017569],[-57.396268,-30.022669],[-57.407668,-30.030169],[-57.418068,-30.038969],[-57.429168,-30.050569],[-57.436668,-30.059869],[-57.447468,-30.072169],[-57.453568,-30.081469],[-57.455668,-30.090169],[-57.458168,-30.100869],[-57.459768,-30.103369],[-57.462268,-30.107069],[-57.464568,-30.110269],[-57.475268,-30.117969],[-57.485568,-30.124369],[-57.503468,-30.135769],[-57.522568,-30.149269],[-57.525468,-30.151269],[-57.528668,-30.152669],[-57.546668,-30.161169],[-57.569168,-30.171469],[-57.587968,-30.178269],[-57.594068,-30.178969],[-57.600268,-30.178569],[-57.603668,-30.178269],[-57.609268,-30.177569],[-57.617268,-30.176169],[-57.624968,-30.174969],[-57.632668,-30.174769],[-57.639568,-30.176669],[-57.644568,-30.179669],[-57.646768,-30.181669],[-57.648668,-30.185769],[-57.649568,-30.188769],[-57.644368,-30.193169],[-57.639668,-30.190169],[-57.636468,-30.188469],[-57.632068,-30.186969],[-57.626368,-30.186669],[-57.620468,-30.187469],[-57.614668,-30.189169],[-57.611168,-30.189069],[-57.603368,-30.189669],[-57.593768,-30.194369],[-57.584368,-30.199069],[-57.573268,-30.204669],[-57.562968,-30.209269],[-57.559868,-30.211569],[-57.557668,-30.213669],[-57.556368,-30.219469],[-57.556168,-30.224969],[-57.558068,-30.234269],[-57.561368,-30.240469],[-57.564168,-30.245869],[-57.565768,-30.249469],[-57.567968,-30.252169],[-57.567468,-30.255969],[-57.566368,-30.258769],[-57.562368,-30.261769],[-57.558068,-30.263169],[-57.555568,-30.264669],[-57.553368,-30.267869],[-57.550768,-30.272569],[-57.547168,-30.274869],[-57.542068,-30.276969],[-57.536768,-30.279469],[-57.531568,-30.281269],[-57.528168,-30.283369],[-57.525068,-30.285369],[-57.521268,-30.285869],[-57.517068,-30.285569],[-57.512768,-30.285169],[-57.509068,-30.285869],[-57.505968,-30.286969],[-57.503468,-30.288369],[-57.499068,-30.288069],[-57.496668,-30.284469],[-57.495568,-30.279769],[-57.493268,-30.275869],[-57.491468,-30.272069],[-57.489968,-30.268969],[-57.486668,-30.266769],[-57.481668,-30.266569],[-57.476468,-30.266769],[-57.471768,-30.266069],[-57.464768,-30.265169],[-57.460468,-30.267369],[-57.457668,-30.271169],[-57.455468,-30.274469],[-57.452168,-30.275969],[-57.448168,-30.275969],[-57.444868,-30.275369],[-57.439868,-30.275469],[-57.435768,-30.275669],[-57.428268,-30.274869],[-57.423968,-30.276169],[-57.419668,-30.277269],[-57.416368,-30.277869],[-57.414968,-30.280669],[-57.418868,-30.284569],[-57.421468,-30.289169],[-57.421468,-30.293169],[-57.421468,-30.299969],[-57.419268,-30.302469],[-57.415668,-30.301869],[-57.412368,-30.300269],[-57.407568,-30.300469],[-57.402868,-30.301069],[-57.399068,-30.303569],[-57.391468,-30.304369],[-57.389568,-30.301169],[-57.389568,-30.296469],[-57.387468,-30.293069],[-57.384568,-30.288469],[-57.382668,-30.285369],[-57.380768,-30.282369],[-57.378768,-30.279469],[-57.374768,-30.276269],[-57.369768,-30.272969],[-57.364968,-30.270969],[-57.361868,-30.270769],[-57.358868,-30.272369],[-57.357568,-30.276769],[-57.357768,-30.281669],[-57.356068,-30.284169],[-57.352768,-30.284769],[-57.347568,-30.280369],[-57.342868,-30.277669],[-57.339068,-30.276169],[-57.333168,-30.273969],[-57.329268,-30.272569],[-57.325668,-30.272069],[-57.321768,-30.271269],[-57.319568,-30.269369],[-57.317968,-30.263569],[-57.316968,-30.260269],[-57.314368,-30.257669],[-57.311268,-30.258069],[-57.306968,-30.262369],[-57.302568,-30.268669],[-57.301068,-30.273969],[-57.297468,-30.279869],[-57.293068,-30.286369],[-57.288968,-30.290569],[-57.284468,-30.293669],[-57.280868,-30.294169],[-57.277668,-30.292469],[-57.275368,-30.288169],[-57.271168,-30.285369],[-57.269068,-30.281769],[-57.270068,-30.277569],[-57.269268,-30.273669],[-57.267668,-30.270969],[-57.262668,-30.267869],[-57.258468,-30.267069],[-57.256268,-30.269669],[-57.252968,-30.274469],[-57.254368,-30.277869],[-57.255268,-30.282569],[-57.253568,-30.286269],[-57.249968,-30.289169],[-57.245868,-30.289469],[-57.238268,-30.289169],[-57.229268,-30.288969],[-57.220268,-30.289269],[-57.215868,-30.288169],[-57.212868,-30.286669],[-57.210068,-30.284869],[-57.205368,-30.284869],[-57.202568,-30.283169],[-57.202068,-30.279569],[-57.199668,-30.276169],[-57.197468,-30.268969],[-57.196568,-30.265369],[-57.193868,-30.262969],[-57.189868,-30.260369],[-57.186068,-30.258269],[-57.184368,-30.255969],[-57.180168,-30.253569],[-57.175868,-30.250869],[-57.170668,-30.250269],[-57.167568,-30.248269],[-57.168368,-30.245269],[-57.166768,-30.241369],[-57.162768,-30.242269],[-57.158768,-30.238869],[-57.155868,-30.234769],[-57.157668,-30.230569],[-57.160968,-30.228569],[-57.163868,-30.226969],[-57.165268,-30.222769],[-57.163168,-30.218169],[-57.167268,-30.217369],[-57.165268,-30.213969],[-57.166768,-30.210169],[-57.168168,-30.207269],[-57.167568,-30.202869],[-57.168168,-30.198469],[-57.166368,-30.196069],[-57.162868,-30.195269],[-57.160068,-30.193469],[-57.158368,-30.190169],[-57.158468,-30.185269],[-57.155068,-30.182469],[-57.149268,-30.176869],[-57.145968,-30.173069],[-57.144868,-30.168969],[-57.142968,-30.164869],[-57.139668,-30.162069],[-57.137668,-30.159569],[-57.135168,-30.156669],[-57.133468,-30.152269],[-57.132068,-30.148269],[-57.130268,-30.144569],[-57.129568,-30.141369],[-57.125968,-30.140469],[-57.121968,-30.141769],[-57.118568,-30.145069],[-57.114468,-30.145369],[-57.111768,-30.143469],[-57.110068,-30.140669],[-57.108668,-30.138169],[-57.106668,-30.133769],[-57.105668,-30.130169],[-57.106368,-30.125869],[-57.109668,-30.127969],[-57.113968,-30.127169],[-57.114768,-30.123869],[-57.116368,-30.120769],[-57.116468,-30.117669],[-57.114668,-30.113869],[-57.110568,-30.115069],[-57.107868,-30.116369],[-57.105268,-30.115069],[-57.099568,-30.114669],[-57.095568,-30.115069],[-57.094968,-30.119669],[-57.092368,-30.121669],[-57.089268,-30.120469],[-57.087268,-30.118269],[-57.085068,-30.114969],[-57.085468,-30.111469],[-57.091168,-30.112869],[-57.091668,-30.109669],[-57.087968,-30.106769],[-57.087268,-30.101969],[-57.084868,-30.098869],[-57.082968,-30.095969],[-57.080668,-30.093369],[-57.078268,-30.091469],[-57.075368,-30.090669],[-57.072068,-30.087969],[-57.067668,-30.085369],[-57.063768,-30.086169],[-57.061968,-30.089069],[-57.066268,-30.090469],[-57.067668,-30.094169],[-57.068868,-30.098369],[-57.067068,-30.101269],[-57.064068,-30.100869],[-57.060868,-30.099269],[-57.057768,-30.098469],[-57.054368,-30.100269],[-57.049168,-30.102869],[-57.045268,-30.105569],[-57.041068,-30.105069],[-57.035868,-30.103569],[-57.032068,-30.102369],[-57.030068,-30.099769],[-57.030068,-30.096269],[-57.028768,-30.092669],[-57.024768,-30.088469],[-57.019368,-30.087569],[-57.012668,-30.087569],[-57.008868,-30.087669],[-57.005768,-30.087669],[-57.001668,-30.087269],[-56.997768,-30.086269],[-56.992168,-30.085969],[-56.986168,-30.087269],[-56.982068,-30.089269],[-56.979968,-30.092669],[-56.978068,-30.095369],[-56.975968,-30.097569],[-56.971468,-30.097069],[-56.967668,-30.097569],[-56.963368,-30.098969],[-56.959668,-30.099969],[-56.954568,-30.100669],[-56.951368,-30.099769],[-56.948468,-30.099169],[-56.944268,-30.098469],[-56.940468,-30.096969],[-56.936868,-30.094869],[-56.931368,-30.093769],[-56.926068,-30.095269],[-56.921068,-30.095869],[-56.916768,-30.096669],[-56.914168,-30.099469],[-56.911668,-30.102269],[-56.913168,-30.105669],[-56.914868,-30.109269],[-56.911668,-30.109969],[-56.908168,-30.107469],[-56.905068,-30.108569],[-56.904768,-30.112569],[-56.900868,-30.110069],[-56.898468,-30.107869],[-56.895168,-30.104469],[-56.891868,-30.100269],[-56.890368,-30.097269],[-56.889368,-30.093669],[-56.889068,-30.090069],[-56.886768,-30.087869],[-56.883568,-30.087569],[-56.879868,-30.088269],[-56.874768,-30.086569],[-56.873768,-30.089869],[-56.873068,-30.092869],[-56.869768,-30.093669],[-56.866868,-30.091669],[-56.864468,-30.090069],[-56.857268,-30.088969],[-56.854168,-30.088769],[-56.850368,-30.088769],[-56.842568,-30.090169],[-56.833468,-30.092269],[-56.827468,-30.094269],[-56.824068,-30.095569],[-56.822068,-30.097869],[-56.820968,-30.100669],[-56.818868,-30.104969],[-56.815568,-30.107469],[-56.812468,-30.106469],[-56.810468,-30.103569],[-56.807168,-30.103669],[-56.804668,-30.105869],[-56.802968,-30.110069],[-56.801868,-30.116069],[-56.801568,-30.120069],[-56.799368,-30.122269],[-56.795868,-30.123069],[-56.792468,-30.123369],[-56.789468,-30.124369],[-56.784568,-30.125469],[-56.780168,-30.126569],[-56.778168,-30.130669],[-56.777868,-30.134069],[-56.778768,-30.137069],[-56.780068,-30.140769],[-56.781468,-30.145169],[-56.783468,-30.147969],[-56.783868,-30.151169],[-56.782268,-30.157569],[-56.777268,-30.162869],[-56.773968,-30.164169],[-56.769068,-30.163069],[-56.764368,-30.161369],[-56.759568,-30.160569],[-56.755268,-30.162269],[-56.751568,-30.164569],[-56.746568,-30.166669],[-56.741368,-30.168069],[-56.736368,-30.170369],[-56.732768,-30.170869],[-56.729768,-30.171669],[-56.725568,-30.174469],[-56.720568,-30.178869],[-56.716268,-30.179169],[-56.712868,-30.176669],[-56.709868,-30.175769],[-56.705768,-30.176169],[-56.704868,-30.179669],[-56.706168,-30.183269],[-56.707868,-30.187769],[-56.704268,-30.193469],[-56.702068,-30.195569],[-56.699968,-30.198569],[-56.697868,-30.203569],[-56.692068,-30.202569],[-56.689068,-30.199669],[-56.686068,-30.196669],[-56.682768,-30.194869],[-56.680068,-30.195769],[-56.679468,-30.199569],[-56.675268,-30.199969],[-56.669968,-30.199269],[-56.666068,-30.198169],[-56.662868,-30.197369],[-56.660268,-30.198869],[-56.657068,-30.202069],[-56.653368,-30.206069],[-56.649468,-30.206169],[-56.646468,-30.204569],[-56.645668,-30.207869],[-56.648968,-30.211269],[-56.654268,-30.212669],[-56.658468,-30.213469],[-56.662468,-30.215669],[-56.665568,-30.216269],[-56.668168,-30.217569],[-56.667268,-30.220569],[-56.663368,-30.221669],[-56.660168,-30.221169],[-56.656268,-30.220569],[-56.651568,-30.219869],[-56.647668,-30.222269],[-56.645068,-30.225969],[-56.644268,-30.228869],[-56.642068,-30.233869],[-56.637668,-30.237169],[-56.633768,-30.239369],[-56.629668,-30.241969],[-56.626568,-30.244669],[-56.624468,-30.247169],[-56.627668,-30.251569],[-56.630468,-30.254569],[-56.633868,-30.255269],[-56.636768,-30.254369],[-56.639868,-30.254669],[-56.639568,-30.258169],[-56.637368,-30.260369],[-56.633468,-30.263569],[-56.629868,-30.265969],[-56.625468,-30.266569],[-56.621268,-30.265069],[-56.617768,-30.262669],[-56.614668,-30.262069],[-56.612768,-30.265469],[-56.609968,-30.269269],[-56.609168,-30.273369],[-56.608068,-30.277969],[-56.607468,-30.282069],[-56.609168,-30.285669],[-56.611968,-30.288169],[-56.614368,-30.290069],[-56.617968,-30.291769],[-56.620868,-30.294769],[-56.619668,-30.298869],[-56.617268,-30.301169],[-56.613368,-30.300469],[-56.609968,-30.297869],[-56.605568,-30.293569],[-56.600868,-30.294669],[-56.596768,-30.295669],[-56.591668,-30.293669],[-56.586268,-30.290969],[-56.581768,-30.289569],[-56.575368,-30.289969],[-56.574568,-30.295669],[-56.576068,-30.301569],[-56.574268,-30.305269],[-56.568868,-30.308369],[-56.563068,-30.311569],[-56.559368,-30.315469],[-56.557768,-30.319069],[-56.554668,-30.319669],[-56.550868,-30.316569],[-56.548868,-30.313869],[-56.545568,-30.311269],[-56.541768,-30.313069],[-56.540868,-30.316369],[-56.541068,-30.320269],[-56.540668,-30.326269],[-56.538168,-30.329669],[-56.538068,-30.334269],[-56.541768,-30.337569],[-56.546468,-30.338469],[-56.549668,-30.339069],[-56.551568,-30.341269],[-56.551568,-30.344869],[-56.549768,-30.347569],[-56.546868,-30.349569],[-56.544268,-30.352369],[-56.545568,-30.357469],[-56.545068,-30.360869],[-56.540668,-30.360769],[-56.537768,-30.359269],[-56.532368,-30.359769],[-56.527568,-30.360269],[-56.524468,-30.359669],[-56.521568,-30.358869],[-56.518668,-30.360569],[-56.517068,-30.363269],[-56.513568,-30.365469],[-56.510168,-30.367169],[-56.507168,-30.368869],[-56.504868,-30.371669],[-56.505268,-30.374969],[-56.506568,-30.378769],[-56.506368,-30.382069],[-56.502168,-30.384269],[-56.498868,-30.385669],[-56.496368,-30.387069],[-56.493668,-30.391469],[-56.492268,-30.394069],[-56.491868,-30.397169],[-56.488368,-30.398469],[-56.483968,-30.398669],[-56.481768,-30.396069],[-56.480368,-30.392569],[-56.478068,-30.390469],[-56.475268,-30.388769],[-56.470868,-30.387169],[-56.467268,-30.385769],[-56.462568,-30.384969],[-56.458268,-30.388869],[-56.455768,-30.393169],[-56.455368,-30.396869],[-56.454268,-30.400969],[-56.451568,-30.404469],[-56.449368,-30.406469],[-56.445268,-30.410369],[-56.445468,-30.415569],[-56.450468,-30.418369],[-56.452468,-30.422569],[-56.447368,-30.424669],[-56.445168,-30.427169],[-56.440968,-30.431469],[-56.436368,-30.432969],[-56.432168,-30.433769],[-56.426468,-30.434969],[-56.422768,-30.432569],[-56.417168,-30.431869],[-56.414868,-30.436669],[-56.413368,-30.440569],[-56.410368,-30.444069],[-56.408068,-30.446869],[-56.403668,-30.447469],[-56.398668,-30.449269],[-56.398968,-30.454269],[-56.400468,-30.458969],[-56.405868,-30.459869],[-56.406468,-30.465069],[-56.405568,-30.469469],[-56.403968,-30.471969],[-56.401468,-30.474469],[-56.397868,-30.472569],[-56.397068,-30.477069],[-56.395968,-30.481669],[-56.394868,-30.484969],[-56.390368,-30.485669],[-56.386768,-30.488869],[-56.384168,-30.492769],[-56.387668,-30.493369],[-56.385268,-30.496269],[-56.383568,-30.498569],[-56.380468,-30.500269],[-56.377368,-30.501269],[-56.374068,-30.501069],[-56.371268,-30.501869],[-56.367468,-30.502669],[-56.362168,-30.500469],[-56.360568,-30.496169],[-56.363568,-30.496969],[-56.364368,-30.492669],[-56.358868,-30.492169],[-56.354668,-30.493069],[-56.350968,-30.496569],[-56.350968,-30.500169],[-56.348768,-30.504069],[-56.345868,-30.506369],[-56.342968,-30.507069],[-56.340668,-30.509069],[-56.336968,-30.510969],[-56.334068,-30.514269],[-56.334568,-30.517069],[-56.336968,-30.519869],[-56.336468,-30.523169],[-56.332968,-30.525369],[-56.328968,-30.528969],[-56.324268,-30.530169],[-56.320168,-30.531569],[-56.316568,-30.530169],[-56.312168,-30.530969],[-56.308568,-30.530669],[-56.304468,-30.528969],[-56.302168,-30.526769],[-56.298368,-30.525169],[-56.293168,-30.521569],[-56.290268,-30.522669],[-56.288668,-30.526869],[-56.288468,-30.532269],[-56.289468,-30.536169],[-56.288168,-30.540869],[-56.285668,-30.544669],[-56.283168,-30.548069],[-56.280368,-30.550769],[-56.279168,-30.554369],[-56.280968,-30.558569],[-56.276168,-30.560169],[-56.270768,-30.557569],[-56.266768,-30.555169],[-56.263268,-30.556869],[-56.259268,-30.560869],[-56.256868,-30.566269],[-56.258768,-30.568469],[-56.261768,-30.571269],[-56.260968,-30.577069],[-56.260668,-30.580669],[-56.261768,-30.583969],[-56.256768,-30.587369],[-56.253468,-30.585869],[-56.251968,-30.582069],[-56.249468,-30.577469],[-56.246368,-30.574669],[-56.242468,-30.573469],[-56.238568,-30.573469],[-56.234968,-30.574269],[-56.232268,-30.575369],[-56.228068,-30.577969],[-56.224568,-30.581269],[-56.224768,-30.585469],[-56.227868,-30.586569],[-56.232068,-30.586969],[-56.234668,-30.588969],[-56.232868,-30.594169],[-56.228568,-30.595669],[-56.225368,-30.596669],[-56.222368,-30.601169],[-56.220568,-30.605969],[-56.216568,-30.607869],[-56.212868,-30.607869],[-56.208268,-30.606769],[-56.202968,-30.605269],[-56.198568,-30.604469],[-56.194268,-30.603869],[-56.189168,-30.604269],[-56.185468,-30.606469],[-56.182568,-30.608569],[-56.179768,-30.610269],[-56.177468,-30.612169],[-56.173968,-30.614069],[-56.170668,-30.615269],[-56.171668,-30.618269],[-56.174368,-30.620169],[-56.177468,-30.620769],[-56.181068,-30.622969],[-56.182968,-30.625469],[-56.180868,-30.629869],[-56.176468,-30.633469],[-56.173368,-30.634669],[-56.168968,-30.637769],[-56.166468,-30.639669],[-56.165568,-30.644869],[-56.168368,-30.650069],[-56.169968,-30.652969],[-56.169168,-30.656969],[-56.166968,-30.662269],[-56.164568,-30.666369],[-56.162768,-30.668569],[-56.160668,-30.671169],[-56.157868,-30.673869],[-56.155368,-30.676069],[-56.152868,-30.678569],[-56.149068,-30.680469],[-56.144668,-30.680269],[-56.140768,-30.681169],[-56.137668,-30.684369],[-56.138568,-30.687669],[-56.142068,-30.688769],[-56.147268,-30.691569],[-56.150168,-30.694669],[-56.149768,-30.698969],[-56.150068,-30.703569],[-56.148168,-30.705769],[-56.144368,-30.707169],[-56.140768,-30.709069],[-56.136368,-30.710669],[-56.132768,-30.714269],[-56.130168,-30.717369],[-56.128868,-30.721169],[-56.131268,-30.723869],[-56.132068,-30.727269],[-56.131868,-30.731669],[-56.129968,-30.734269],[-56.128268,-30.738869],[-56.123368,-30.739469],[-56.119768,-30.737769],[-56.118268,-30.735069],[-56.116368,-30.732869],[-56.113068,-30.732569],[-56.109968,-30.732169],[-56.106668,-30.732769],[-56.104268,-30.736369],[-56.102768,-30.740069],[-56.101768,-30.743669],[-56.097568,-30.747269],[-56.095968,-30.752769],[-56.092968,-30.755469],[-56.090168,-30.756869],[-56.086468,-30.756669],[-56.082968,-30.753369],[-56.079868,-30.749969],[-56.077168,-30.747969],[-56.072468,-30.745769],[-56.068768,-30.747169],[-56.065968,-30.748769],[-56.063768,-30.752369],[-56.063568,-30.756769],[-56.064168,-30.759969],[-56.065968,-30.762669],[-56.065768,-30.767969],[-56.064068,-30.772069],[-56.062268,-30.774469],[-56.058068,-30.773969],[-56.053568,-30.775069],[-56.048968,-30.775869],[-56.046368,-30.773769],[-56.042468,-30.774469],[-56.039168,-30.775169],[-56.038168,-30.778169],[-56.035668,-30.783369],[-56.030968,-30.784169],[-56.027268,-30.784869],[-56.023968,-30.785869],[-56.021768,-30.789569],[-56.024368,-30.794669],[-56.025068,-30.798569],[-56.021468,-30.800469],[-56.016268,-30.802269],[-56.012968,-30.806369],[-56.015768,-30.810769],[-56.016768,-30.815169],[-56.015468,-30.818269],[-56.011068,-30.818869],[-56.008568,-30.820269],[-56.007668,-30.823169],[-56.005668,-30.826869],[-56.004468,-30.831469],[-56.004568,-30.836469],[-56.003468,-30.839769],[-56.000968,-30.841669],[-55.998368,-30.843369],[-55.994468,-30.845269],[-55.991868,-30.849469],[-55.992268,-30.853169],[-55.990768,-30.855869],[-55.989668,-30.858869],[-55.990468,-30.862269],[-55.990268,-30.865769],[-55.992568,-30.869069],[-55.995068,-30.871869],[-55.997768,-30.873369],[-55.999468,-30.878269],[-56.001368,-30.883469],[-56.003468,-30.886769],[-56.005568,-30.890369],[-56.007768,-30.894569],[-56.007068,-30.899269],[-56.007968,-30.904269],[-56.009668,-30.908869],[-56.010168,-30.912569],[-56.007368,-30.916369],[-56.005968,-30.919269],[-56.005668,-30.922469],[-56.008468,-30.925069],[-56.010168,-30.927569],[-56.010668,-30.932669],[-56.010668,-30.937769],[-56.014268,-30.941269],[-56.013968,-30.944869],[-56.009868,-30.947069],[-56.010668,-30.950169],[-56.012368,-30.953869],[-56.010468,-30.957069],[-56.011268,-30.962569],[-56.010668,-30.967569],[-56.008268,-30.970969],[-56.006368,-30.974569],[-56.009968,-30.979269],[-56.007368,-30.983869],[-56.010668,-30.987469],[-56.012768,-30.991669],[-56.013568,-30.995469],[-56.014868,-30.998569],[-56.016768,-31.001869],[-56.016768,-31.005969],[-56.017668,-31.009169],[-56.016868,-31.014369],[-56.014868,-31.019269],[-56.015168,-31.022969],[-56.016268,-31.027869],[-56.017468,-31.032869],[-56.017968,-31.038469],[-56.017968,-31.043469],[-56.017868,-31.047869],[-56.015668,-31.051069],[-56.014668,-31.054769],[-56.012468,-31.059469],[-56.011068,-31.064669],[-56.009968,-31.067669],[-56.008268,-31.070569],[-56.007668,-31.073869],[-56.008068,-31.077469],[-56.009968,-31.080669],[-56.006268,-31.081869],[-56.002668,-31.082569],[-55.998568,-31.083569],[-55.995768,-31.084269],[-55.992568,-31.084869],[-55.989668,-31.082569],[-55.986668,-31.077169],[-55.982568,-31.074369],[-55.978568,-31.073469],[-55.974868,-31.074669],[-55.968668,-31.074869],[-55.965168,-31.077469],[-55.958968,-31.077369],[-55.955168,-31.080069],[-55.949868,-31.081169],[-55.944368,-31.081869],[-55.941368,-31.083169],[-55.938468,-31.085769],[-55.934368,-31.086969],[-55.930268,-31.086169],[-55.929768,-31.083169],[-55.926968,-31.081269],[-55.924968,-31.076069],[-55.918568,-31.073569],[-55.913068,-31.075669],[-55.909568,-31.074069],[-55.902668,-31.068569],[-55.898668,-31.066669],[-55.895368,-31.068469],[-55.895068,-31.071569],[-55.892168,-31.073869],[-55.890668,-31.077069],[-55.886768,-31.076769],[-55.881368,-31.076069],[-55.876668,-31.072669],[-55.871968,-31.071269],[-55.868268,-31.064869],[-55.866368,-31.061569],[-55.864168,-31.059169],[-55.860268,-31.053569],[-55.858868,-31.051069],[-55.855668,-31.045669],[-55.852768,-31.044569],[-55.848068,-31.043169],[-55.842968,-31.043169],[-55.838668,-31.042569],[-55.832668,-31.043869],[-55.829668,-31.043669],[-55.830168,-31.040569],[-55.826268,-31.039169],[-55.822468,-31.033969],[-55.820468,-31.030969],[-55.816668,-31.027369],[-55.814468,-31.024269],[-55.811868,-31.021569],[-55.813068,-31.016369],[-55.809168,-31.014969],[-55.805768,-31.016369],[-55.801368,-31.015769],[-55.795768,-31.015969],[-55.785368,-31.016569],[-55.780668,-31.015969],[-55.776568,-31.015669],[-55.772068,-31.013469],[-55.766468,-31.009969],[-55.767868,-31.006369],[-55.767868,-31.003469],[-55.771468,-31.001669],[-55.774368,-31.000169],[-55.773268,-30.997369],[-55.768168,-30.996869],[-55.763568,-30.999169],[-55.758568,-30.999369],[-55.756068,-30.997669],[-55.752468,-30.997769],[-55.749968,-30.994469],[-55.750468,-30.991669],[-55.748368,-30.989469],[-55.746168,-30.983569],[-55.745468,-30.979269],[-55.741068,-30.978869],[-55.737868,-30.979769],[-55.733868,-30.981369],[-55.728568,-30.978469],[-55.731168,-30.975269],[-55.729768,-30.970969],[-55.726968,-30.968169],[-55.724768,-30.965669],[-55.725268,-30.962569],[-55.722268,-30.957269],[-55.724268,-30.952169],[-55.722068,-30.948969],[-55.720968,-30.945669],[-55.723168,-30.943069],[-55.719468,-30.941569],[-55.716668,-30.942769],[-55.715868,-30.946569],[-55.713268,-30.948469],[-55.710868,-30.950169],[-55.710068,-30.953769],[-55.707168,-30.954269],[-55.703268,-30.954069],[-55.700668,-30.950469],[-55.697468,-30.947469],[-55.694068,-30.943569],[-55.688768,-30.944969],[-55.689168,-30.948469],[-55.687368,-30.952169],[-55.681568,-30.954069],[-55.674968,-30.955969],[-55.670268,-30.953769],[-55.666168,-30.953969],[-55.664468,-30.947969],[-55.661168,-30.947469],[-55.659468,-30.943469],[-55.660668,-30.939469],[-55.663068,-30.934369],[-55.660268,-30.930569],[-55.656768,-30.926469],[-55.653668,-30.925069],[-55.651168,-30.922869],[-55.647868,-30.921769],[-55.646168,-30.917769],[-55.643268,-30.914769],[-55.642568,-30.911169],[-55.645168,-30.909569],[-55.647868,-30.906669],[-55.648968,-30.903169],[-55.650668,-30.900769],[-55.653168,-30.896569],[-55.653768,-30.890969],[-55.655668,-30.884869],[-55.652868,-30.883269],[-55.657368,-30.878769],[-55.659568,-30.875569],[-55.663068,-30.872669],[-55.660668,-30.869069],[-55.659268,-30.866069],[-55.656668,-30.863569],[-55.650468,-30.865369],[-55.647068,-30.861369],[-55.645168,-30.857469],[-55.646568,-30.854769],[-55.642168,-30.849569],[-55.639268,-30.848469],[-55.637168,-30.845969],[-55.631568,-30.845869],[-55.627668,-30.847369],[-55.623568,-30.844869],[-55.621868,-30.841969],[-55.618668,-30.842269],[-55.615268,-30.842569],[-55.612568,-30.844769],[-55.610568,-30.848169],[-55.605668,-30.849169],[-55.599868,-30.846769],[-55.597568,-30.845069],[-55.595068,-30.843369],[-55.590668,-30.840869],[-55.586968,-30.839569],[-55.585368,-30.836569],[-55.581468,-30.834269],[-55.577868,-30.833969],[-55.577868,-30.837269],[-55.578968,-30.840169],[-55.577068,-30.842569],[-55.574068,-30.842969],[-55.571768,-30.845869],[-55.566668,-30.846669],[-55.564868,-30.851969],[-55.562768,-30.854769],[-55.564168,-30.857769],[-55.564068,-30.861669],[-55.563768,-30.864969],[-55.563468,-30.867969],[-55.559968,-30.870069],[-55.557568,-30.871569],[-55.553968,-30.873369],[-55.552268,-30.877769],[-55.551668,-30.881669],[-55.549168,-30.886269],[-55.546468,-30.889569],[-55.542868,-30.892369],[-55.540368,-30.893969],[-55.537768,-30.895369],[-55.533668,-30.898669],[-55.532368,-30.902069],[-55.528368,-30.899769],[-55.525368,-30.898169],[-55.520068,-30.898669],[-55.516068,-30.898969],[-55.512768,-30.900469],[-55.510168,-30.901769],[-55.508068,-30.904569],[-55.510268,-30.906969],[-55.509568,-30.912569],[-55.506868,-30.918869],[-55.505668,-30.922769],[-55.502968,-30.924969],[-55.498568,-30.926669],[-55.495768,-30.925369],[-55.492668,-30.924669],[-55.488668,-30.925369],[-55.486368,-30.928269],[-55.488568,-30.932269],[-55.489168,-30.937669],[-55.488068,-30.941269],[-55.486368,-30.946669],[-55.483868,-30.949869],[-55.480668,-30.952069],[-55.476468,-30.952869],[-55.472368,-30.952669],[-55.469868,-30.954269],[-55.466268,-30.953169],[-55.463368,-30.950369],[-55.457568,-30.951569],[-55.452068,-30.959369],[-55.448168,-30.958969],[-55.444968,-30.958569],[-55.441268,-30.959869],[-55.440268,-30.963669],[-55.438468,-30.967869],[-55.436868,-30.971969],[-55.432968,-30.973669],[-55.431568,-30.978069],[-55.427168,-30.981169],[-55.425568,-30.985369],[-55.428868,-30.987869],[-55.431868,-30.992669],[-55.435468,-30.992269],[-55.436968,-30.995569],[-55.434668,-30.999769],[-55.436668,-31.004169],[-55.430468,-31.009069],[-55.425068,-31.012969],[-55.422868,-31.016769],[-55.418668,-31.015369],[-55.414468,-31.014869],[-55.411268,-31.017569],[-55.406668,-31.018969],[-55.405968,-31.021769],[-55.405068,-31.025969],[-55.400868,-31.027669],[-55.394268,-31.025969],[-55.387468,-31.021069],[-55.384068,-31.022069],[-55.379968,-31.023469],[-55.375568,-31.021869],[-55.373868,-31.019069],[-55.371268,-31.023369],[-55.373268,-31.026969],[-55.372468,-31.030369],[-55.368068,-31.034869],[-55.363568,-31.035569],[-55.362468,-31.038969],[-55.358668,-31.039969],[-55.354168,-31.039169],[-55.351368,-31.037569],[-55.349768,-31.039969],[-55.348768,-31.042869],[-55.350668,-31.049269],[-55.353168,-31.053669],[-55.352868,-31.056669],[-55.357468,-31.062369],[-55.359668,-31.067469],[-55.353168,-31.069569],[-55.350568,-31.067769],[-55.349868,-31.071369],[-55.345568,-31.075669],[-55.344268,-31.078569],[-55.340168,-31.083269],[-55.334868,-31.085669],[-55.328268,-31.087869],[-55.328768,-31.092569],[-55.332068,-31.096169],[-55.333168,-31.100869],[-55.333468,-31.105069],[-55.329268,-31.109269],[-55.330468,-31.115369],[-55.332868,-31.118069],[-55.336968,-31.119769],[-55.338368,-31.124469],[-55.338968,-31.127669],[-55.338368,-31.132069],[-55.334568,-31.132969],[-55.329968,-31.135169],[-55.327068,-31.137369],[-55.322968,-31.136769],[-55.319968,-31.136769],[-55.318068,-31.140369],[-55.317468,-31.145669],[-55.312968,-31.146169],[-55.305868,-31.142169],[-55.302468,-31.142669],[-55.297468,-31.144369],[-55.294168,-31.144269],[-55.290568,-31.143269],[-55.289968,-31.146769],[-55.290268,-31.150169],[-55.288068,-31.152369],[-55.285568,-31.155969],[-55.289468,-31.160169],[-55.289468,-31.164169],[-55.284768,-31.165569],[-55.283068,-31.168069],[-55.279468,-31.169769],[-55.275068,-31.171069],[-55.271868,-31.172769],[-55.270968,-31.175869],[-55.272868,-31.178569],[-55.276468,-31.178369],[-55.282768,-31.184069],[-55.285168,-31.186069],[-55.283668,-31.188869],[-55.282368,-31.193169],[-55.279268,-31.194369],[-55.273468,-31.194569],[-55.270068,-31.195769],[-55.265668,-31.195269],[-55.262068,-31.195669],[-55.257468,-31.197869],[-55.255768,-31.201369],[-55.253568,-31.203869],[-55.250968,-31.206869],[-55.252468,-31.212369],[-55.250768,-31.215469],[-55.247968,-31.214869],[-55.248268,-31.219469],[-55.247968,-31.225369],[-55.247268,-31.229269],[-55.246868,-31.234269],[-55.247168,-31.237769],[-55.248768,-31.241469],[-55.247768,-31.245269],[-55.248368,-31.248069],[-55.246668,-31.251569],[-55.243668,-31.252169],[-55.240268,-31.254369],[-55.239068,-31.257469],[-55.239368,-31.260969],[-55.234368,-31.258869],[-55.228668,-31.259869],[-55.224468,-31.260969],[-55.220868,-31.261569],[-55.217668,-31.261769],[-55.213668,-31.263169],[-55.210368,-31.262369],[-55.202668,-31.261869],[-55.199268,-31.263869],[-55.194568,-31.264269],[-55.188768,-31.265369],[-55.183268,-31.266569],[-55.179668,-31.269569],[-55.175068,-31.268669],[-55.169268,-31.270669],[-55.167468,-31.273669],[-55.164568,-31.275969],[-55.164168,-31.280569],[-55.163468,-31.285169],[-55.160568,-31.284469],[-55.156468,-31.285569],[-55.152868,-31.289169],[-55.151968,-31.293169],[-55.148368,-31.294669],[-55.145468,-31.296069],[-55.141468,-31.297469],[-55.135668,-31.301069],[-55.132168,-31.301869],[-55.128468,-31.302469],[-55.123768,-31.303869],[-55.121868,-31.308769],[-55.121568,-31.312769],[-55.118568,-31.311869],[-55.113668,-31.311169],[-55.108868,-31.308269],[-55.106168,-31.309669],[-55.103168,-31.313569],[-55.097368,-31.315769],[-55.091168,-31.319069],[-55.087868,-31.320169],[-55.084768,-31.322969],[-55.080768,-31.326069],[-55.077668,-31.327669],[-55.074868,-31.330769],[-55.071268,-31.331069],[-55.068268,-31.330769],[-55.064968,-31.330669],[-55.060168,-31.332269],[-55.057268,-31.331769],[-55.059068,-31.327469],[-55.061568,-31.324869],[-55.058268,-31.322869],[-55.057668,-31.318569],[-55.059168,-31.314969],[-55.052968,-31.312669],[-55.049468,-31.309769],[-55.046768,-31.307469],[-55.043068,-31.306369],[-55.040668,-31.302569],[-55.038968,-31.298969],[-55.037068,-31.294569],[-55.034468,-31.290969],[-55.033768,-31.287369],[-55.035868,-31.283869],[-55.032268,-31.279069],[-55.036168,-31.275769],[-55.032368,-31.273669],[-55.031768,-31.270669],[-55.028168,-31.268969],[-55.023368,-31.269369],[-55.020368,-31.267669],[-55.015968,-31.268269],[-55.011468,-31.268769],[-55.008268,-31.269269],[-55.005268,-31.267569],[-55.002068,-31.270469],[-55.001368,-31.275669],[-55.000768,-31.282369],[-54.995868,-31.283369],[-54.994368,-31.285869],[-54.994068,-31.289169],[-54.988968,-31.293069],[-54.985568,-31.292469],[-54.982868,-31.295369],[-54.979968,-31.302769],[-54.981168,-31.308069],[-54.981368,-31.312169],[-54.976368,-31.317069],[-54.964768,-31.320669],[-54.958468,-31.323769],[-54.954968,-31.330169],[-54.952968,-31.332269],[-54.952968,-31.336169],[-54.953568,-31.339369],[-54.958668,-31.339569],[-54.959868,-31.343769],[-54.960468,-31.347669],[-54.959668,-31.351669],[-54.956468,-31.352769],[-54.952168,-31.352769],[-54.948768,-31.353569],[-54.945668,-31.353869],[-54.942768,-31.354469],[-54.938768,-31.353969],[-54.935168,-31.356669],[-54.935468,-31.359669],[-54.935868,-31.364369],[-54.933568,-31.367969],[-54.936968,-31.370069],[-54.938768,-31.376269],[-54.940768,-31.379969],[-54.936568,-31.382769],[-54.931868,-31.384269],[-54.927768,-31.384369],[-54.921068,-31.379869],[-54.918068,-31.378769],[-54.913368,-31.380269],[-54.908068,-31.381069],[-54.904768,-31.384069],[-54.897968,-31.381269],[-54.899068,-31.377169],[-54.895168,-31.374969],[-54.890968,-31.375569],[-54.885668,-31.379169],[-54.887068,-31.383469],[-54.884368,-31.386069],[-54.883568,-31.389269],[-54.879868,-31.395469],[-54.878068,-31.397969],[-54.869768,-31.401769],[-54.864068,-31.404169],[-54.857868,-31.408169],[-54.860868,-31.417069],[-54.856968,-31.418369],[-54.854968,-31.423569],[-54.850568,-31.425469],[-54.846668,-31.430769],[-54.844568,-31.433869],[-54.840068,-31.438369],[-54.837268,-31.441069],[-54.833668,-31.440569],[-54.828168,-31.436869],[-54.823268,-31.435869],[-54.815168,-31.435169],[-54.811368,-31.434069],[-54.810468,-31.431169],[-54.805568,-31.429969],[-54.802468,-31.429969],[-54.799168,-31.432469],[-54.796368,-31.430769],[-54.792068,-31.432969],[-54.789468,-31.434169],[-54.786368,-31.432969],[-54.783368,-31.431969],[-54.776268,-31.428869],[-54.769368,-31.426569],[-54.765668,-31.426869],[-54.760668,-31.426069],[-54.753468,-31.424769],[-54.749468,-31.427169],[-54.743668,-31.426069],[-54.738368,-31.426069],[-54.735768,-31.428669],[-54.728968,-31.429169],[-54.724268,-31.429969],[-54.722768,-31.432669],[-54.719868,-31.437669],[-54.713668,-31.437969],[-54.706868,-31.439169],[-54.703168,-31.438769],[-54.700968,-31.434769],[-54.697868,-31.436969],[-54.695968,-31.440169],[-54.695168,-31.443169],[-54.692368,-31.445469],[-54.688768,-31.445669],[-54.685268,-31.444669],[-54.682268,-31.445469],[-54.678868,-31.447169],[-54.675468,-31.449869],[-54.671668,-31.453169],[-54.661368,-31.454269],[-54.642068,-31.454869],[-54.630168,-31.455169],[-54.619168,-31.455469],[-54.602368,-31.455969],[-54.587068,-31.458769],[-54.585868,-31.462569],[-54.583168,-31.464869],[-54.579568,-31.470369],[-54.579268,-31.475869],[-54.575968,-31.481669],[-54.571568,-31.482469],[-54.569268,-31.484969],[-54.565968,-31.486869],[-54.562668,-31.486669],[-54.559968,-31.489869],[-54.557168,-31.493669],[-54.552868,-31.492669],[-54.549368,-31.494769],[-54.546868,-31.497769],[-54.540668,-31.499869],[-54.532868,-31.501869],[-54.529268,-31.504569],[-54.524368,-31.506569],[-54.522568,-31.509569],[-54.518168,-31.510469],[-54.514868,-31.511269],[-54.513568,-31.514269],[-54.512668,-31.517069],[-54.509668,-31.521469],[-54.505668,-31.524069],[-54.502968,-31.529069],[-54.501868,-31.532569],[-54.501268,-31.536769],[-54.499368,-31.539269],[-54.496668,-31.540669],[-54.495068,-31.543569],[-54.492168,-31.547469],[-54.490368,-31.552169],[-54.493068,-31.556869],[-54.489468,-31.563069],[-54.485668,-31.565569],[-54.482468,-31.567369],[-54.479568,-31.569969],[-54.473868,-31.569869],[-54.472668,-31.572869],[-54.471468,-31.576269],[-54.470268,-31.579269],[-54.469068,-31.582869],[-54.469168,-31.587569],[-54.468468,-31.591969],[-54.464368,-31.590069],[-54.461168,-31.593369],[-54.458268,-31.595569],[-54.456168,-31.598669],[-54.452968,-31.599269],[-54.455768,-31.601769],[-54.456768,-31.605569],[-54.460168,-31.606169],[-54.463668,-31.608869],[-54.466168,-31.612869],[-54.463268,-31.614069],[-54.464368,-31.617969],[-54.461568,-31.621969],[-54.460368,-31.626369],[-54.457268,-31.629069],[-54.454368,-31.629169],[-54.454568,-31.632769],[-54.454268,-31.635969],[-54.452168,-31.639969],[-54.453768,-31.645469],[-54.453968,-31.650369],[-54.451868,-31.654769],[-54.421368,-31.677869],[-54.402068,-31.692169],[-54.383468,-31.706169],[-54.377068,-31.710969],[-54.351668,-31.729969],[-54.343768,-31.735769],[-54.334668,-31.742669],[-54.317968,-31.755169],[-54.285968,-31.778769],[-54.255268,-31.801869],[-54.236068,-31.816269],[-54.218668,-31.829069],[-54.203968,-31.840069],[-54.188568,-31.851469],[-54.173968,-31.862169],[-54.166368,-31.867969],[-54.163668,-31.869769],[-54.160868,-31.872169],[-54.158068,-31.874069],[-54.155568,-31.876069],[-54.152968,-31.878469],[-54.149468,-31.879469],[-54.147068,-31.881069],[-54.143968,-31.882969],[-54.142668,-31.885969],[-54.143468,-31.889069],[-54.142168,-31.892069],[-54.140668,-31.894569],[-54.137468,-31.896469],[-54.134268,-31.897269],[-54.130968,-31.897569],[-54.127368,-31.898969],[-54.123868,-31.900769],[-54.120768,-31.903169],[-54.116868,-31.904769],[-54.114068,-31.907069],[-54.110568,-31.908069],[-54.108368,-31.910569],[-54.105668,-31.912769],[-54.107068,-31.916769],[-54.104568,-31.920369],[-54.101668,-31.923669],[-54.100868,-31.927169],[-54.098068,-31.928569],[-54.094768,-31.930569],[-54.091268,-31.930769],[-54.090068,-31.934069],[-54.087368,-31.932969],[-54.083968,-31.929769],[-54.080368,-31.928069],[-54.079668,-31.923669],[-54.076768,-31.920869],[-54.073168,-31.919469],[-54.070168,-31.921969],[-54.065968,-31.921669],[-54.062668,-31.917569],[-54.059068,-31.913969],[-54.056568,-31.910569],[-54.054668,-31.906969],[-54.051968,-31.904469],[-54.048868,-31.904469],[-54.045068,-31.902669],[-54.042768,-31.900469],[-54.040668,-31.897869],[-54.037868,-31.897369],[-54.032768,-31.896769],[-54.027668,-31.897669],[-54.024068,-31.898369],[-54.022568,-31.901469],[-54.016568,-31.902969],[-54.012668,-31.904769],[-54.014268,-31.907669],[-54.010468,-31.908069],[-54.007368,-31.908469],[-54.006568,-31.911669],[-54.003068,-31.914169],[-53.999968,-31.914569],[-53.996868,-31.914269],[-53.993368,-31.915269],[-53.990368,-31.917069],[-53.986468,-31.916969],[-53.981968,-31.916669],[-53.977368,-31.917769],[-53.974268,-31.918069],[-53.970968,-31.918469],[-53.968368,-31.920669],[-53.965068,-31.921769],[-53.962868,-31.923569],[-53.961768,-31.927269],[-53.963468,-31.930769],[-53.965868,-31.933569],[-53.967568,-31.936069],[-53.971468,-31.936369],[-53.972268,-31.940569],[-53.970868,-31.943169],[-53.967668,-31.945169],[-53.965868,-31.949269],[-53.962968,-31.950969],[-53.960968,-31.953869],[-53.957368,-31.955369],[-53.952568,-31.956169],[-53.947868,-31.953269],[-53.943468,-31.956769],[-53.939168,-31.958169],[-53.935468,-31.959069],[-53.932168,-31.962269],[-53.929068,-31.962669],[-53.924968,-31.962869],[-53.919468,-31.963669],[-53.916068,-31.965169],[-53.912368,-31.966969],[-53.910068,-31.970369],[-53.907268,-31.974569],[-53.903668,-31.978069],[-53.899368,-31.978669],[-53.896768,-31.983169],[-53.894668,-31.986069],[-53.892168,-31.989469],[-53.892068,-31.994369],[-53.885968,-31.995169],[-53.881368,-31.994769],[-53.878468,-31.995769],[-53.875168,-31.997669],[-53.872368,-31.998869],[-53.870068,-31.996369],[-53.865468,-31.993869],[-53.860668,-31.996269],[-53.856668,-31.997369],[-53.852768,-31.999469],[-53.849868,-32.000769],[-53.851668,-32.003069],[-53.853368,-32.006569],[-53.853468,-32.010469],[-53.852068,-32.014669],[-53.853068,-32.020169],[-53.851768,-32.024069],[-53.851368,-32.028769],[-53.847668,-32.028969],[-53.844568,-32.029569],[-53.840468,-32.031669],[-53.838668,-32.033869],[-53.841968,-32.036669],[-53.840968,-32.039469],[-53.835868,-32.040569],[-53.833768,-32.043569],[-53.833468,-32.046469],[-53.835468,-32.049969],[-53.833668,-32.054069],[-53.831068,-32.055769],[-53.828768,-32.057969],[-53.825768,-32.059469],[-53.820768,-32.059369],[-53.815468,-32.059669],[-53.813768,-32.063269],[-53.810868,-32.065469],[-53.807968,-32.067369],[-53.805868,-32.069569],[-53.802168,-32.070769],[-53.797468,-32.069869],[-53.793968,-32.069169],[-53.790568,-32.069569],[-53.786768,-32.071569],[-53.781568,-32.071269],[-53.777868,-32.071669],[-53.774568,-32.072469],[-53.770468,-32.073169],[-53.767968,-32.077069],[-53.764368,-32.079369],[-53.759868,-32.077669],[-53.755568,-32.077569],[-53.751268,-32.078969],[-53.747168,-32.078269],[-53.746668,-32.082569],[-53.746568,-32.087669],[-53.745168,-32.091269],[-53.741068,-32.092069],[-53.736368,-32.092569],[-53.731768,-32.093769],[-53.726968,-32.095169],[-53.725568,-32.098169],[-53.727068,-32.101169],[-53.728968,-32.103569],[-53.731068,-32.105569],[-53.734668,-32.102769],[-53.739168,-32.100669],[-53.740268,-32.103469],[-53.738268,-32.106769],[-53.739768,-32.111069],[-53.742668,-32.113969],[-53.742768,-32.118069],[-53.739968,-32.121269],[-53.738268,-32.123769],[-53.736368,-32.126269],[-53.734168,-32.129869],[-53.731768,-32.132969],[-53.727768,-32.136469],[-53.725568,-32.141069],[-53.725568,-32.144769],[-53.728068,-32.146769],[-53.731468,-32.147969],[-53.733968,-32.150969],[-53.729468,-32.152669],[-53.724568,-32.151269],[-53.718768,-32.152069],[-53.717068,-32.155069],[-53.718068,-32.159769],[-53.719268,-32.164469],[-53.722268,-32.168069],[-53.723368,-32.173169],[-53.720268,-32.175369],[-53.716568,-32.175569],[-53.713668,-32.176869],[-53.714068,-32.180269],[-53.714768,-32.183369],[-53.713968,-32.187269],[-53.710068,-32.188769],[-53.706268,-32.187369],[-53.702868,-32.188769],[-53.703568,-32.192369],[-53.707068,-32.194569],[-53.710468,-32.196769],[-53.709768,-32.201069],[-53.707068,-32.204269],[-53.703968,-32.206569],[-53.699968,-32.204569],[-53.695168,-32.203869],[-53.692668,-32.207569],[-53.694168,-32.210469],[-53.693068,-32.213669],[-53.690268,-32.215969],[-53.687168,-32.218369],[-53.684168,-32.221669],[-53.682268,-32.225069],[-53.680268,-32.228169],[-53.677168,-32.233269],[-53.676068,-32.237269],[-53.678368,-32.241069],[-53.678068,-32.246869],[-53.677268,-32.250869],[-53.677168,-32.254369],[-53.677468,-32.258569],[-53.675068,-32.260769],[-53.673568,-32.263469],[-53.671968,-32.266069],[-53.669968,-32.268269],[-53.666968,-32.270769],[-53.665268,-32.274469],[-53.660068,-32.275369],[-53.656568,-32.278369],[-53.655868,-32.282269],[-53.656268,-32.285869],[-53.656468,-32.288969],[-53.652668,-32.292269],[-53.648768,-32.293869],[-53.643768,-32.295869],[-53.643468,-32.301569],[-53.646268,-32.308669],[-53.647668,-32.311969],[-53.652268,-32.311669],[-53.656168,-32.311969],[-53.656768,-32.315269],[-53.656168,-32.318769],[-53.651268,-32.321069],[-53.646268,-32.322369],[-53.643268,-32.325169],[-53.644568,-32.329669],[-53.643568,-32.335769],[-53.641268,-32.338469],[-53.638468,-32.343669],[-53.634868,-32.346969],[-53.633268,-32.351169],[-53.633768,-32.355569],[-53.636468,-32.358269],[-53.638568,-32.361369],[-53.640368,-32.364169],[-53.642968,-32.367169],[-53.643668,-32.370469],[-53.644068,-32.375269],[-53.645068,-32.378869],[-53.645068,-32.382969],[-53.639268,-32.385769],[-53.634968,-32.386769],[-53.631568,-32.387869],[-53.627768,-32.389069],[-53.623868,-32.390969],[-53.619668,-32.393669],[-53.615268,-32.397369],[-53.612468,-32.402569],[-53.613268,-32.406269],[-53.614668,-32.411169],[-53.615368,-32.415669],[-53.613068,-32.417869],[-53.609768,-32.420269],[-53.607268,-32.422269],[-53.604268,-32.425069],[-53.601968,-32.429069],[-53.599168,-32.431169],[-53.595568,-32.432969],[-53.592268,-32.433669],[-53.588668,-32.435769],[-53.587368,-32.439469],[-53.586768,-32.442369],[-53.586468,-32.445269],[-53.585068,-32.448569],[-53.583768,-32.451269],[-53.580368,-32.452969],[-53.576568,-32.454669],[-53.573568,-32.456069],[-53.569868,-32.456869],[-53.566568,-32.459269],[-53.565168,-32.461869],[-53.562368,-32.465869],[-53.559068,-32.469469],[-53.556068,-32.472669],[-53.552568,-32.473669],[-53.548268,-32.473069],[-53.544668,-32.473069],[-53.541468,-32.473069],[-53.541168,-32.476169],[-53.542468,-32.479469],[-53.537568,-32.480569],[-53.531668,-32.482469],[-53.528668,-32.485769],[-53.525368,-32.488869],[-53.522868,-32.486369],[-53.523268,-32.482869],[-53.520368,-32.481169],[-53.516068,-32.482769],[-53.516768,-32.486869],[-53.513968,-32.487969],[-53.510468,-32.486069],[-53.508168,-32.483369],[-53.505468,-32.482269],[-53.502368,-32.481369],[-53.499068,-32.481069],[-53.494168,-32.481469],[-53.490068,-32.482069],[-53.486068,-32.483369],[-53.482268,-32.483869],[-53.478668,-32.483869],[-53.474868,-32.482469],[-53.471168,-32.480669],[-53.468368,-32.482869],[-53.464868,-32.484269],[-53.462868,-32.486869],[-53.464068,-32.490069],[-53.466268,-32.492569],[-53.464768,-32.495269],[-53.462568,-32.498269],[-53.462968,-32.503269],[-53.461768,-32.507069],[-53.460468,-32.510969],[-53.457368,-32.514969],[-53.457868,-32.519569],[-53.456468,-32.522969],[-53.453268,-32.525969],[-53.450168,-32.527969],[-53.448168,-32.530669],[-53.446368,-32.533369],[-53.442168,-32.539469],[-53.438868,-32.544969],[-53.436868,-32.548069],[-53.435568,-32.551069],[-53.434368,-32.554469],[-53.433368,-32.557569],[-53.433268,-32.561669],[-53.431368,-32.565469],[-53.426468,-32.563769],[-53.424968,-32.559769],[-53.421368,-32.558569],[-53.416968,-32.562169],[-53.416768,-32.567169],[-53.414768,-32.569869],[-53.412268,-32.572469],[-53.409468,-32.574869],[-53.405668,-32.577869],[-53.403368,-32.579969],[-53.397868,-32.582669],[-53.392668,-32.584769],[-53.388968,-32.586569],[-53.385668,-32.585669],[-53.383268,-32.582869],[-53.380468,-32.578269],[-53.379568,-32.573869],[-53.377668,-32.570969],[-53.373868,-32.569969],[-53.370468,-32.569669],[-53.368268,-32.572069],[-53.366068,-32.575369],[-53.363568,-32.577569],[-53.360568,-32.581469],[-53.358668,-32.585769],[-53.356368,-32.589569],[-53.352768,-32.591969],[-53.348968,-32.592269],[-53.346168,-32.591569],[-53.343768,-32.589769],[-53.339768,-32.585369],[-53.335968,-32.584069],[-53.333168,-32.585069],[-53.330368,-32.587869],[-53.324568,-32.591969],[-53.319568,-32.595969],[-53.313068,-32.598969],[-53.307768,-32.602869],[-53.303068,-32.606769],[-53.299768,-32.611669],[-53.297168,-32.615469],[-53.292168,-32.619469],[-53.288868,-32.621069],[-53.284468,-32.621369],[-53.281268,-32.620569],[-53.278468,-32.617969],[-53.278068,-32.612769],[-53.274768,-32.607469],[-53.271768,-32.605269],[-53.268468,-32.603969],[-53.263968,-32.603669],[-53.260268,-32.602469],[-53.254868,-32.601969],[-53.249468,-32.603169],[-53.245568,-32.607069],[-53.244168,-32.614169],[-53.244168,-32.619469],[-53.243368,-32.623069],[-53.240468,-32.627069],[-53.236968,-32.629669],[-53.230568,-32.632669],[-53.221168,-32.636469],[-53.214568,-32.638769],[-53.209268,-32.639669],[-53.202668,-32.640169],[-53.197168,-32.640769],[-53.193268,-32.641569],[-53.189668,-32.642869],[-53.185468,-32.645669],[-53.182668,-32.649069],[-53.182168,-32.652569],[-53.180568,-32.655069],[-53.175768,-32.657369],[-53.075468,-32.740869],[-53.076868,-32.754369],[-53.079068,-32.768969],[-53.081268,-32.779569],[-53.083268,-32.785969],[-53.085768,-32.788169],[-53.090468,-32.788369],[-53.096468,-32.788069],[-53.105268,-32.787569],[-53.112968,-32.787369],[-53.119168,-32.787569],[-53.124868,-32.788069],[-53.132768,-32.788169],[-53.138468,-32.789269],[-53.142168,-32.790669],[-53.145668,-32.791969],[-53.149568,-32.794469],[-53.152868,-32.798069],[-53.154768,-32.801069],[-53.153168,-32.804369],[-53.150468,-32.807169],[-53.152568,-32.811569],[-53.154868,-32.815269],[-53.158068,-32.820169],[-53.162468,-32.825369],[-53.165868,-32.830969],[-53.171068,-32.837369],[-53.177168,-32.844169],[-53.184868,-32.850369],[-53.231668,-32.871269],[-53.294468,-32.899269],[-53.310168,-32.918669],[-53.272668,-32.927969],[-53.245068,-32.935169],[-53.444368,-33.052969],[-53.518168,-33.153369],[-53.521468,-33.258769],[-53.521768,-33.265069],[-53.507768,-33.353069],[-53.511068,-33.459369],[-53.525168,-33.526269],[-53.523668,-33.593369],[-53.531268,-33.600969],[-53.534568,-33.603369],[-53.532568,-33.607769],[-53.533368,-33.611069],[-53.535868,-33.613269],[-53.534268,-33.616469],[-53.532068,-33.618669],[-53.529268,-33.620869],[-53.527268,-33.624969],[-53.527868,-33.630169],[-53.528968,-33.633269],[-53.528668,-33.636269],[-53.528768,-33.639669],[-53.530468,-33.642569],[-53.531668,-33.646769],[-53.533768,-33.649769],[-53.533068,-33.652669],[-53.531568,-33.656169],[-53.532168,-33.660569],[-53.531468,-33.666069],[-53.528168,-33.669169],[-53.527968,-33.672569],[-53.525668,-33.674469],[-53.529468,-33.677869],[-53.530368,-33.681069],[-53.530168,-33.684369],[-53.530168,-33.687669],[-53.523168,-33.689169],[-53.511868,-33.689869],[-53.492268,-33.690769],[-53.483968,-33.691269],[-53.481068,-33.691369],[-53.475868,-33.691569],[-53.471968,-33.691669],[-53.468668,-33.691869],[-53.462268,-33.692169],[-53.455368,-33.692669],[-53.452168,-33.692769],[-53.447368,-33.692969],[-53.440268,-33.694069],[-53.441268,-33.697869],[-53.437268,-33.700469],[-53.438068,-33.703969],[-53.437368,-33.707369],[-53.437468,-33.712969],[-53.435168,-33.716469],[-53.433768,-33.720869],[-53.435468,-33.724269],[-53.432768,-33.727369],[-53.431068,-33.730869],[-53.431668,-33.734469],[-53.430568,-33.738869],[-53.426868,-33.739469],[-53.423168,-33.742969],[-53.419568,-33.745169],[-53.415868,-33.748269],[-53.411768,-33.749369],[-53.407568,-33.749369],[-53.403368,-33.749469],[-53.399068,-33.748569],[-53.395768,-33.750769],[-53.392168,-33.750569],[-53.389568,-33.748669],[-53.386268,-33.746269],[-53.379868,-33.746969],[-53.374968,-33.744669],[-53.370868,-33.743269],[-53.366968,-33.740769],[-53.364068,-33.738369],[-53.360068,-33.735769],[-53.355268,-33.732169],[-53.350268,-33.728469],[-53.347768,-33.726769],[-53.343968,-33.723769],[-53.341268,-33.721969],[-53.337868,-33.719569],[-53.335068,-33.717669],[-53.332568,-33.715869],[-53.328968,-33.713769],[-53.326568,-33.712269],[-53.323168,-33.709769],[-53.319068,-33.707169],[-53.314968,-33.704269],[-53.312268,-33.702169],[-53.308368,-33.699569],[-53.304168,-33.696669],[-53.300268,-33.694069],[-53.296068,-33.691269],[-53.292168,-33.688769],[-53.288868,-33.686669],[-53.285868,-33.684869],[-53.283468,-33.683369],[-53.279768,-33.681069],[-53.274768,-33.677869],[-53.268968,-33.673869],[-53.264968,-33.671369],[-53.262468,-33.669169],[-53.259568,-33.667069],[-53.256368,-33.664769],[-53.253868,-33.662769],[-53.249768,-33.659869],[-53.246168,-33.657369],[-53.241468,-33.654269],[-53.237768,-33.651569],[-53.233968,-33.648469],[-53.230668,-33.645969],[-53.227368,-33.643169],[-53.224168,-33.640469],[-53.221168,-33.637869],[-53.218168,-33.635469],[-53.213968,-33.632369],[-53.210068,-33.629069],[-53.206868,-33.626369],[-53.204068,-33.624369],[-53.200668,-33.622169],[-53.196668,-33.619769],[-53.193768,-33.618069],[-53.190968,-33.616169],[-53.187468,-33.613869],[-53.184068,-33.611369],[-53.180468,-33.608669],[-53.176668,-33.605869],[-53.173568,-33.603069],[-53.170568,-33.600969],[-53.167168,-33.598469],[-53.162768,-33.595169],[-53.160368,-33.592969],[-53.157268,-33.590869],[-53.152668,-33.587069],[-53.150368,-33.585369],[-53.147068,-33.582569],[-53.144568,-33.580469],[-53.141068,-33.577169],[-53.137468,-33.573869],[-53.135168,-33.572069],[-53.132968,-33.570169],[-53.122468,-33.561069],[-53.119768,-33.558569],[-53.116168,-33.555769],[-53.112268,-33.552269],[-53.110268,-33.550069],[-53.106768,-33.547269],[-53.103568,-33.544769],[-53.101168,-33.542769],[-53.097868,-33.540269],[-53.094168,-33.537069],[-53.090468,-33.534169],[-53.086168,-33.530669],[-53.082268,-33.527669],[-53.077968,-33.524469],[-53.072868,-33.520469],[-53.069868,-33.518169],[-53.066368,-33.515469],[-53.062268,-33.512069],[-53.058268,-33.508869],[-53.054368,-33.505969],[-53.049468,-33.502169],[-53.046668,-33.499669],[-53.042868,-33.496869],[-53.038868,-33.493569],[-53.035868,-33.491169],[-53.032768,-33.488669],[-53.030168,-33.486469],[-53.027068,-33.483969],[-53.023768,-33.481469],[-53.019668,-33.478169],[-53.016268,-33.475569],[-53.013568,-33.473369],[-53.010668,-33.470969],[-53.006568,-33.467669],[-53.002968,-33.464869],[-53.000168,-33.462569],[-52.996568,-33.459769],[-52.992268,-33.456469],[-52.988268,-33.453169],[-52.983368,-33.449569],[-52.980668,-33.447169],[-52.977468,-33.444569],[-52.972768,-33.440969],[-52.969268,-33.438069],[-52.964868,-33.434669],[-52.960668,-33.431669],[-52.957568,-33.428569],[-52.953168,-33.425069],[-52.948468,-33.421669],[-52.944968,-33.418869],[-52.940468,-33.415269],[-52.936368,-33.411769],[-52.932468,-33.408769],[-52.928068,-33.405369],[-52.924468,-33.402569],[-52.920368,-33.399369],[-52.916768,-33.396469],[-52.911668,-33.392469],[-52.905868,-33.387869],[-52.900468,-33.383569],[-52.895668,-33.379569],[-52.890368,-33.375169],[-52.884568,-33.370569],[-52.879068,-33.366169],[-52.876068,-33.363669],[-52.870468,-33.358669],[-52.865768,-33.354669],[-52.860868,-33.350669],[-52.856168,-33.346769],[-52.850068,-33.342069],[-52.845668,-33.338669],[-52.839768,-33.334269],[-52.835168,-33.330669],[-52.829868,-33.326469],[-52.824568,-33.322369],[-52.819368,-33.318469],[-52.815168,-33.315169],[-52.811868,-33.312769],[-52.808368,-33.309469],[-52.801968,-33.304769],[-52.796468,-33.300069],[-52.790668,-33.295369],[-52.786968,-33.292069],[-52.780868,-33.286669],[-52.776568,-33.283069],[-52.772868,-33.279469],[-52.769268,-33.276169],[-52.765968,-33.272869],[-52.760668,-33.267669],[-52.755468,-33.262769],[-52.750568,-33.257769],[-52.746068,-33.253469],[-52.741368,-33.248569],[-52.737768,-33.244769],[-52.733968,-33.241069],[-52.730568,-33.237269],[-52.726668,-33.233069],[-52.722268,-33.228069],[-52.717668,-33.223169],[-52.712968,-33.218069],[-52.709368,-33.213769],[-52.705668,-33.209369],[-52.701268,-33.204369],[-52.698768,-33.201269],[-52.695168,-33.197169],[-52.692368,-33.193569],[-52.687668,-33.188469],[-52.685568,-33.185569],[-52.682768,-33.182169],[-52.680268,-33.179169],[-52.676068,-33.174169],[-52.671968,-33.169169],[-52.666668,-33.162069],[-52.663168,-33.158069],[-52.658868,-33.152569],[-52.654468,-33.146869],[-52.650068,-33.141569],[-52.645468,-33.135469],[-52.640968,-33.129669],[-52.636368,-33.123269],[-52.632368,-33.116869],[-52.627368,-33.109469],[-52.623768,-33.104169],[-52.620168,-33.098069],[-52.615568,-33.090369],[-52.611468,-33.083269],[-52.607168,-33.075769],[-52.603368,-33.069269],[-52.599468,-33.061969],[-52.595668,-33.054669],[-52.593168,-33.050069],[-52.589868,-33.043169],[-52.586568,-33.036669],[-52.584568,-33.031969],[-52.580768,-33.024469],[-52.577168,-33.016869],[-52.572468,-33.008569],[-52.569568,-33.002669],[-52.567468,-32.999069],[-52.564968,-32.994769],[-52.563068,-32.990869],[-52.561268,-32.986869],[-52.559368,-32.983369],[-52.557768,-32.979969],[-52.556068,-32.976469],[-52.554168,-32.973069],[-52.551868,-32.969169],[-52.550068,-32.965569],[-52.548168,-32.961869],[-52.544968,-32.956569],[-52.541968,-32.951269],[-52.539468,-32.946569],[-52.537468,-32.943169],[-52.533968,-32.937669],[-52.530168,-32.931169],[-52.526568,-32.925069],[-52.522168,-32.917869],[-52.518468,-32.911769],[-52.514668,-32.904869],[-52.511468,-32.899069],[-52.506768,-32.890369],[-52.502468,-32.882069],[-52.498568,-32.874069],[-52.494668,-32.866069],[-52.490368,-32.857069],[-52.487868,-32.850969],[-52.485268,-32.844269],[-52.482168,-32.835469],[-52.479168,-32.827969],[-52.475968,-32.819369],[-52.471668,-32.808569],[-52.468368,-32.799369],[-52.466268,-32.793869],[-52.463968,-32.787569],[-52.462568,-32.782669],[-52.460068,-32.775369],[-52.457868,-32.768569],[-52.455768,-32.761769],[-52.453568,-32.753769],[-52.451368,-32.744969],[-52.448568,-32.734969],[-52.446368,-32.725669],[-52.445168,-32.720669],[-52.444368,-32.717269],[-52.443468,-32.713369],[-52.442668,-32.709669],[-52.441368,-32.704569],[-52.440568,-32.701069],[-52.439968,-32.697669],[-52.439168,-32.694069],[-52.438268,-32.690469],[-52.437268,-32.686669],[-52.436568,-32.681869],[-52.435468,-32.677469],[-52.434168,-32.672469],[-52.433268,-32.668169],[-52.431568,-32.662469],[-52.429768,-32.656269],[-52.429068,-32.652569],[-52.427768,-32.647869],[-52.426168,-32.642069],[-52.424768,-32.636369],[-52.423268,-32.629869],[-52.420768,-32.621669],[-52.418168,-32.613069],[-52.415668,-32.605269],[-52.413168,-32.598469],[-52.410968,-32.592369],[-52.409268,-32.587669],[-52.406968,-32.581869],[-52.405068,-32.576769],[-52.403168,-32.570969],[-52.400168,-32.563269],[-52.397668,-32.556569],[-52.395068,-32.548969],[-52.392668,-32.543069],[-52.391568,-32.539969],[-52.388968,-32.533069],[-52.386368,-32.525769],[-52.384168,-32.520069],[-52.381268,-32.512769],[-52.379368,-32.508569],[-52.376568,-32.501869],[-52.373568,-32.494669],[-52.370868,-32.488269],[-52.368068,-32.481669],[-52.365768,-32.476669],[-52.362568,-32.469869],[-52.359768,-32.463969],[-52.356468,-32.457569],[-52.354468,-32.452969],[-52.350668,-32.445169],[-52.347668,-32.438469],[-52.345568,-32.434469],[-52.344168,-32.431669],[-52.340668,-32.424469],[-52.337068,-32.417869],[-52.333468,-32.411169],[-52.330468,-32.405169],[-52.327068,-32.399069],[-52.324368,-32.393269],[-52.321668,-32.388169],[-52.320168,-32.384969],[-52.318268,-32.381869],[-52.316668,-32.378869],[-52.314668,-32.375769],[-52.312768,-32.371969],[-52.310868,-32.368569],[-52.307968,-32.363069],[-52.304968,-32.358169],[-52.301968,-32.353169],[-52.299168,-32.348469],[-52.296668,-32.344269],[-52.293068,-32.338269],[-52.290268,-32.333969],[-52.286268,-32.328169],[-52.283468,-32.323769],[-52.280368,-32.319369],[-52.276768,-32.314069],[-52.271568,-32.306869],[-52.269668,-32.304069],[-52.264968,-32.298069],[-52.262468,-32.295069],[-52.260268,-32.292169],[-52.256068,-32.286969],[-52.250868,-32.279769],[-52.244668,-32.272369],[-52.238968,-32.266069],[-52.233868,-32.260169],[-52.229168,-32.255269],[-52.225268,-32.251269],[-52.220868,-32.246969],[-52.215968,-32.242969],[-52.211868,-32.239669],[-52.208268,-32.235669],[-52.203468,-32.230569],[-52.198968,-32.226669],[-52.195168,-32.223469],[-52.188768,-32.218669],[-52.186068,-32.216469],[-52.181568,-32.212869],[-52.178268,-32.210169],[-52.173368,-32.205769],[-52.170768,-32.203569],[-52.167468,-32.200769],[-52.164768,-32.198469],[-52.162068,-32.196269],[-52.159168,-32.193769],[-52.156268,-32.191369],[-52.153768,-32.189469],[-52.151468,-32.187369],[-52.147268,-32.184069],[-52.143968,-32.181369],[-52.140968,-32.179169],[-52.132968,-32.173869],[-52.129968,-32.172169],[-52.124868,-32.169169],[-52.116868,-32.165569],[-52.110668,-32.163469],[-52.106768,-32.163069],[-52.098468,-32.161169],[-52.082368,-32.159869],[-52.082168,-32.156169],[-52.080668,-32.151769],[-52.077968,-32.146869],[-52.078268,-32.143269],[-52.074668,-32.140469],[-52.069568,-32.135269],[-52.066268,-32.132069],[-52.061568,-32.127069],[-52.057668,-32.123269],[-52.053568,-32.119069],[-52.049668,-32.114969],[-52.044568,-32.109969],[-52.039968,-32.104769],[-52.035568,-32.099969],[-52.031768,-32.095969],[-52.027668,-32.091569],[-52.022668,-32.086269],[-52.018168,-32.081469],[-52.012468,-32.075669],[-52.005968,-32.069069],[-51.999368,-32.062469],[-51.993868,-32.056969],[-51.985768,-32.048969],[-51.981768,-32.044969],[-51.977468,-32.040269],[-51.973368,-32.036369],[-51.968468,-32.031469],[-51.964768,-32.027869],[-51.958468,-32.021869],[-51.952868,-32.016769],[-51.947368,-32.011569],[-51.943468,-32.008069],[-51.936668,-32.001869],[-51.934168,-31.999669],[-51.931568,-31.997369],[-51.927168,-31.993269],[-51.920568,-31.987469],[-51.914568,-31.982769],[-51.910668,-31.979269],[-51.908468,-31.977469],[-51.902668,-31.972769],[-51.895068,-31.966269],[-51.885968,-31.958969],[-51.880268,-31.954669],[-51.874068,-31.950169],[-51.867568,-31.945269],[-51.859968,-31.939669],[-51.853868,-31.935169],[-51.847568,-31.930769],[-51.844468,-31.928569],[-51.839768,-31.925269],[-51.835068,-31.921969],[-51.830768,-31.919169],[-51.826068,-31.915969],[-51.821268,-31.912869],[-51.815768,-31.909769],[-51.812468,-31.907569],[-51.807568,-31.904469],[-51.803668,-31.901969],[-51.800768,-31.900169],[-51.796468,-31.897669],[-51.793068,-31.895669],[-51.790068,-31.893969],[-51.785368,-31.891069],[-51.780868,-31.888469],[-51.775868,-31.885469],[-51.770768,-31.882769],[-51.765368,-31.879869],[-51.759968,-31.876569],[-51.754668,-31.873669],[-51.747968,-31.869969],[-51.742668,-31.867269],[-51.735368,-31.863269],[-51.728068,-31.859469],[-51.722068,-31.856369],[-51.718968,-31.854769],[-51.715968,-31.853169],[-51.712268,-31.851369],[-51.707868,-31.849169],[-51.702868,-31.846669],[-51.699568,-31.844869],[-51.695468,-31.843069],[-51.691268,-31.840869],[-51.686968,-31.838769],[-51.682668,-31.836569],[-51.677968,-31.834369],[-51.674368,-31.832869],[-51.670768,-31.831069],[-51.667468,-31.829569],[-51.663368,-31.827469],[-51.659468,-31.825769],[-51.655468,-31.824269],[-51.651468,-31.822369],[-51.648668,-31.820969],[-51.638268,-31.815969],[-51.624468,-31.809469],[-51.612268,-31.803269],[-51.606368,-31.799969],[-51.600368,-31.796769],[-51.591168,-31.791369],[-51.585168,-31.788169],[-51.577668,-31.783869],[-51.571368,-31.780369],[-51.560168,-31.774069],[-51.550868,-31.769269],[-51.543368,-31.765169],[-51.532368,-31.759269],[-51.502368,-31.742769],[-51.497668,-31.739969],[-51.493068,-31.737469],[-51.489368,-31.735269],[-51.483668,-31.731769],[-51.478868,-31.728869],[-51.475668,-31.726769],[-51.471468,-31.724169],[-51.465668,-31.720569],[-51.462068,-31.718169],[-51.458668,-31.715969],[-51.452068,-31.711869],[-51.447668,-31.709069],[-51.442968,-31.705769],[-51.438068,-31.702669],[-51.432268,-31.698969],[-51.427168,-31.695569],[-51.423168,-31.692669],[-51.418568,-31.689169],[-51.412868,-31.685469],[-51.409268,-31.682669],[-51.404568,-31.679369],[-51.401268,-31.677169],[-51.396568,-31.673669],[-51.392668,-31.670569],[-51.386568,-31.666169],[-51.381368,-31.662469],[-51.375468,-31.657869],[-51.369068,-31.653369],[-51.363568,-31.649469],[-51.358368,-31.645969],[-51.353068,-31.641769],[-51.350368,-31.639869],[-51.344568,-31.636069],[-51.339268,-31.631769],[-51.335468,-31.628769],[-51.330768,-31.625269],[-51.325268,-31.621569],[-51.319868,-31.617669],[-51.314368,-31.613269],[-51.310568,-31.610369],[-51.306968,-31.608069],[-51.303268,-31.605269],[-51.298868,-31.602069],[-51.293868,-31.598669],[-51.289268,-31.595069],[-51.283968,-31.591169],[-51.280868,-31.588669],[-51.276168,-31.585069],[-51.272068,-31.581869],[-51.267468,-31.578569],[-51.262068,-31.574269],[-51.255968,-31.568869],[-51.249368,-31.563869],[-51.243868,-31.559369],[-51.239168,-31.555169],[-51.231968,-31.548969],[-51.226368,-31.543969],[-51.220868,-31.539469],[-51.214468,-31.533369],[-51.207268,-31.526469],[-51.202368,-31.521569],[-51.196868,-31.515669],[-51.189168,-31.507669],[-51.185868,-31.504369],[-51.183068,-31.501369],[-51.177568,-31.495869],[-51.172468,-31.490469],[-51.166668,-31.484669],[-51.162268,-31.480269],[-51.152568,-31.470669],[-51.143268,-31.461169],[-51.133768,-31.451469],[-51.122368,-31.440269],[-51.113668,-31.431569],[-51.107768,-31.425269],[-51.103968,-31.421369],[-51.101368,-31.418869],[-51.098068,-31.415669],[-51.095868,-31.413469],[-51.093068,-31.410669],[-51.088468,-31.406169],[-51.085968,-31.403769],[-51.083268,-31.401269],[-51.080168,-31.398169],[-51.077368,-31.395369],[-51.072768,-31.391069],[-51.068268,-31.386769],[-51.065268,-31.383869],[-51.062468,-31.381069],[-51.058768,-31.377669],[-51.055768,-31.374769],[-51.051368,-31.370469],[-51.047568,-31.367169],[-51.044268,-31.364369],[-51.041668,-31.362169],[-51.038968,-31.358969],[-51.034468,-31.355869],[-51.031168,-31.353069],[-51.027868,-31.350269],[-51.025068,-31.348069],[-51.021268,-31.344869],[-51.017868,-31.342069],[-51.013968,-31.338969],[-51.010768,-31.336169],[-51.006768,-31.333169],[-51.002468,-31.329969],[-50.997168,-31.325969],[-50.991568,-31.321369],[-50.986868,-31.317769],[-50.980668,-31.313069],[-50.975968,-31.309169],[-50.970368,-31.304769],[-50.965368,-31.300469],[-50.961268,-31.296869],[-50.957868,-31.294169],[-50.954268,-31.291469],[-50.950668,-31.288169],[-50.944968,-31.283469],[-50.941268,-31.280369],[-50.937468,-31.277269],[-50.934868,-31.275069],[-50.929468,-31.270769],[-50.923968,-31.266369],[-50.918868,-31.261769],[-50.914768,-31.258269],[-50.909468,-31.253769],[-50.906468,-31.251269],[-50.902268,-31.247769],[-50.899068,-31.244969],[-50.894268,-31.240369],[-50.888968,-31.235569],[-50.884168,-31.231369],[-50.879068,-31.226969],[-50.874068,-31.221969],[-50.869768,-31.217969],[-50.865368,-31.213269],[-50.861768,-31.209869],[-50.857068,-31.205369],[-50.853068,-31.201469],[-50.848868,-31.197069],[-50.845968,-31.194169],[-50.841968,-31.189869],[-50.837068,-31.185269],[-50.833668,-31.182169],[-50.830368,-31.178569],[-50.826768,-31.174769],[-50.822768,-31.170269],[-50.820168,-31.167169],[-50.815468,-31.161969],[-50.810768,-31.156769],[-50.807468,-31.153769],[-50.804368,-31.150469],[-50.800568,-31.146469],[-50.797568,-31.143169],[-50.794968,-31.140369],[-50.791668,-31.136769],[-50.788868,-31.133869],[-50.785568,-31.130469],[-50.782768,-31.127469],[-50.779268,-31.123869],[-50.776268,-31.120469],[-50.773168,-31.116969],[-50.770468,-31.113669],[-50.767168,-31.110069],[-50.763568,-31.105269],[-50.759968,-31.100369],[-50.757168,-31.096669],[-50.753768,-31.091969],[-50.750968,-31.087869],[-50.747168,-31.082169],[-50.744668,-31.078269],[-50.742468,-31.075369],[-50.740368,-31.072069],[-50.738268,-31.068569],[-50.735768,-31.064469],[-50.733068,-31.060469],[-50.729268,-31.054769],[-50.727268,-31.051669],[-50.724968,-31.047869],[-50.722668,-31.044269],[-50.720368,-31.040569],[-50.718668,-31.037769],[-50.716668,-31.034869],[-50.714368,-31.031169],[-50.712068,-31.027569],[-50.709568,-31.023669],[-50.706768,-31.019369],[-50.703568,-31.014669],[-50.700668,-31.010369],[-50.697468,-31.005769],[-50.694868,-31.001969],[-50.692168,-30.998069],[-50.688768,-30.992669],[-50.685468,-30.988269],[-50.682168,-30.983569],[-50.677468,-30.976469],[-50.674968,-30.973069],[-50.672468,-30.969469],[-50.670368,-30.966669],[-50.667768,-30.962869],[-50.664968,-30.958969],[-50.663168,-30.956569],[-50.660068,-30.952669],[-50.658368,-30.949969],[-50.656568,-30.947369],[-50.654768,-30.944869],[-50.651468,-30.940469],[-50.649068,-30.937369],[-50.646768,-30.934069],[-50.645068,-30.931569],[-50.643268,-30.929069],[-50.640368,-30.925069],[-50.637968,-30.922469],[-50.635368,-30.918669],[-50.632368,-30.914769],[-50.630268,-30.911969],[-50.628068,-30.908969],[-50.625268,-30.905169],[-50.622668,-30.901769],[-50.620868,-30.899269],[-50.618268,-30.895969],[-50.615268,-30.891869],[-50.612268,-30.888169],[-50.609968,-30.884969],[-50.607568,-30.882069],[-50.605268,-30.879069],[-50.601968,-30.874369],[-50.598968,-30.870269],[-50.594768,-30.865369],[-50.592068,-30.862169],[-50.589068,-30.858169],[-50.586468,-30.854669],[-50.582968,-30.850369],[-50.580068,-30.846369],[-50.577368,-30.842669],[-50.574368,-30.838969],[-50.571868,-30.835969],[-50.569068,-30.832569],[-50.565968,-30.828269],[-50.563768,-30.825269],[-50.560768,-30.821269],[-50.558268,-30.818169],[-50.555768,-30.814369],[-50.551968,-30.809169],[-50.548968,-30.804969],[-50.547168,-30.802569],[-50.543968,-30.797769],[-50.541768,-30.794669],[-50.539568,-30.791169],[-50.536968,-30.787269],[-50.534168,-30.783169],[-50.530868,-30.778769],[-50.528368,-30.775169],[-50.525868,-30.771269],[-50.522168,-30.765969],[-50.520068,-30.762469],[-50.517168,-30.758269],[-50.514568,-30.754669],[-50.511768,-30.750969],[-50.509868,-30.747969],[-50.506668,-30.743569],[-50.501668,-30.736069],[-50.495768,-30.726669],[-50.492168,-30.721169],[-50.489068,-30.716669],[-50.486368,-30.712369],[-50.483568,-30.707569],[-50.480268,-30.702869],[-50.477768,-30.698969],[-50.474568,-30.694869],[-50.472268,-30.691669],[-50.470268,-30.689069],[-50.467568,-30.684869],[-50.464868,-30.680769],[-50.461568,-30.676169],[-50.459368,-30.673269],[-50.456268,-30.669169],[-50.453568,-30.665069],[-50.450968,-30.661769],[-50.447768,-30.657569],[-50.428668,-30.632069],[-50.397968,-30.593669],[-50.395768,-30.590669],[-50.392368,-30.586869],[-50.389368,-30.582969],[-50.387368,-30.580369],[-50.383268,-30.574869],[-50.380668,-30.571769],[-50.376868,-30.566669],[-50.374068,-30.563069],[-50.370568,-30.557969],[-50.367268,-30.553069],[-50.364768,-30.549669],[-50.361968,-30.545369],[-50.359368,-30.541669],[-50.356768,-30.537769],[-50.353668,-30.532669],[-50.350868,-30.528469],[-50.348168,-30.524569],[-50.345068,-30.519369],[-50.342868,-30.515369],[-50.340068,-30.511069],[-50.337968,-30.507669],[-50.334668,-30.501569],[-50.331468,-30.496369],[-50.329368,-30.492469],[-50.326468,-30.487269],[-50.322468,-30.480269],[-50.320668,-30.476769],[-50.318768,-30.473069],[-50.317368,-30.469769],[-50.314868,-30.464869],[-50.312668,-30.460369],[-50.311268,-30.457369],[-50.309168,-30.453569],[-50.307668,-30.450369],[-50.306068,-30.447069],[-50.304068,-30.442369],[-50.301868,-30.436669],[-50.299968,-30.432269],[-50.297468,-30.425769],[-50.295668,-30.421369],[-50.294168,-30.417169],[-50.292168,-30.412469],[-50.290868,-30.408769],[-50.289468,-30.405169],[-50.287068,-30.398969],[-50.285068,-30.392869],[-50.283168,-30.387669],[-50.281968,-30.384169],[-50.280868,-30.380469],[-50.279168,-30.375969],[-50.277868,-30.371869],[-50.276468,-30.367769],[-50.274068,-30.361969],[-50.272668,-30.358169],[-50.271268,-30.354569],[-50.269668,-30.350669],[-50.267468,-30.344469],[-50.265668,-30.339769],[-50.264068,-30.335469],[-50.262368,-30.331769],[-50.261268,-30.328969],[-50.259868,-30.325369],[-50.258068,-30.320969],[-50.256268,-30.316369],[-50.254868,-30.312769],[-50.253468,-30.308669],[-50.251868,-30.303669],[-50.249168,-30.298569],[-50.247968,-30.295269],[-50.245468,-30.289469],[-50.242568,-30.283069],[-50.241068,-30.278669],[-50.239468,-30.274869],[-50.237868,-30.271069],[-50.236868,-30.268269],[-50.234968,-30.263469],[-50.231668,-30.255169],[-50.229468,-30.249769],[-50.227368,-30.244369],[-50.225268,-30.238969],[-50.224568,-30.236069],[-50.222568,-30.232769],[-50.220868,-30.228069],[-50.219068,-30.222769],[-50.217568,-30.218769],[-50.215968,-30.215369],[-50.214868,-30.212569],[-50.213768,-30.209569],[-50.211268,-30.202969],[-50.209268,-30.197669],[-50.207368,-30.192769],[-50.205368,-30.187669],[-50.203268,-30.182469],[-50.202068,-30.179369],[-50.199968,-30.174169],[-50.198768,-30.170569],[-50.196368,-30.164469],[-50.194668,-30.160069],[-50.191868,-30.152969],[-50.189668,-30.147569],[-50.187968,-30.141869],[-50.184868,-30.134069],[-50.182168,-30.126669],[-50.179968,-30.121869],[-50.178568,-30.117969],[-50.177468,-30.114969],[-50.174668,-30.107569],[-50.172468,-30.102769],[-50.171068,-30.096669],[-50.168368,-30.092669],[-50.166068,-30.086769],[-50.164268,-30.081469],[-50.160968,-30.074269],[-50.158168,-30.067369],[-50.154768,-30.059369],[-50.152368,-30.054069],[-50.150168,-30.049269],[-50.148668,-30.045569],[-50.146168,-30.039969],[-50.143568,-30.034469],[-50.141468,-30.029569],[-50.139368,-30.024869],[-50.136768,-30.019369],[-50.134868,-30.015069],[-50.132768,-30.011069],[-50.130968,-30.006569],[-50.129668,-30.003869],[-50.128468,-30.000469],[-50.126568,-29.995869],[-50.124468,-29.991069],[-50.122768,-29.986669],[-50.121568,-29.983869],[-50.119168,-29.976969],[-50.116868,-29.973369],[-50.115768,-29.970669],[-50.113568,-29.964869],[-50.111068,-29.959269],[-50.109968,-29.956569],[-50.108368,-29.953469],[-50.106368,-29.949269],[-50.104268,-29.945569],[-50.102768,-29.943069],[-50.100668,-29.938369],[-50.099468,-29.935269],[-50.097668,-29.931569],[-50.095568,-29.926869],[-50.093468,-29.922769],[-50.091568,-29.918869],[-50.089468,-29.914469],[-50.086968,-29.909169],[-50.085368,-29.905469],[-50.083668,-29.901569],[-50.080668,-29.895769],[-50.078968,-29.891769],[-50.075968,-29.885669],[-50.073968,-29.881769],[-50.071568,-29.876669],[-50.069668,-29.872769],[-50.066268,-29.865569],[-50.063368,-29.858969],[-50.060868,-29.854769],[-50.059068,-29.850669],[-50.057568,-29.847769],[-50.056168,-29.845169],[-50.054168,-29.841169],[-50.052768,-29.838269],[-50.051068,-29.835069],[-50.048268,-29.830369],[-50.044668,-29.823869],[-50.042768,-29.820169],[-50.040568,-29.816569],[-50.038668,-29.812669],[-50.036668,-29.808669],[-50.034568,-29.805269],[-50.032768,-29.801469],[-50.030868,-29.798169],[-50.028368,-29.793169],[-50.026468,-29.789569],[-50.024268,-29.785569],[-50.022668,-29.782669],[-50.020768,-29.779269],[-50.019268,-29.775869],[-50.017668,-29.772269],[-50.016068,-29.769769],[-50.014268,-29.766069],[-50.012468,-29.762869],[-50.010968,-29.759969],[-50.008768,-29.756269],[-50.007068,-29.752669],[-50.005168,-29.749369],[-50.003468,-29.745769],[-50.000568,-29.740469],[-49.998368,-29.736469],[-49.995868,-29.731969],[-49.993668,-29.728169],[-49.991168,-29.723369],[-49.988568,-29.718669],[-49.985668,-29.713669],[-49.983268,-29.709269],[-49.981368,-29.706069],[-49.979468,-29.702669],[-49.977768,-29.699669],[-49.976368,-29.697069],[-49.974568,-29.694369],[-49.972268,-29.690469],[-49.969768,-29.685869],[-49.968068,-29.682669],[-49.965868,-29.678969],[-49.963768,-29.675869],[-49.962068,-29.672569],[-49.959868,-29.668169],[-49.957268,-29.664269],[-49.955968,-29.661469],[-49.952868,-29.656569],[-49.950368,-29.652569],[-49.948468,-29.649469],[-49.946668,-29.646769],[-49.944668,-29.643269],[-49.943468,-29.640669],[-49.941868,-29.638169],[-49.939968,-29.635269],[-49.938068,-29.632469],[-49.935868,-29.629069],[-49.934468,-29.624669],[-49.931568,-29.621569],[-49.929368,-29.618369],[-49.926568,-29.613869],[-49.924468,-29.610769],[-49.922768,-29.607569],[-49.920268,-29.603969],[-49.917868,-29.600569],[-49.915668,-29.597369],[-49.913068,-29.593469],[-49.910968,-29.590069],[-49.908368,-29.586469],[-49.905368,-29.581869],[-49.902968,-29.578569],[-49.900168,-29.574969],[-49.897868,-29.571669],[-49.895368,-29.567969],[-49.892868,-29.564169],[-49.890668,-29.561269],[-49.888868,-29.558769],[-49.886568,-29.555869],[-49.883868,-29.552169],[-49.881368,-29.548669],[-49.878068,-29.544269],[-49.875568,-29.540569],[-49.872668,-29.536469],[-49.870868,-29.534169],[-49.868368,-29.530369],[-49.865568,-29.526469],[-49.863568,-29.523669],[-49.861668,-29.521469],[-49.859268,-29.517869],[-49.856668,-29.514269],[-49.853468,-29.509969],[-49.851668,-29.507369],[-49.849468,-29.504369],[-49.847268,-29.501369],[-49.844768,-29.497969],[-49.840868,-29.492569],[-49.837968,-29.488869],[-49.835968,-29.485869],[-49.833968,-29.483269],[-49.831868,-29.480369],[-49.829868,-29.477769],[-49.828168,-29.475269],[-49.825768,-29.472569],[-49.823168,-29.469269],[-49.820568,-29.465569],[-49.818468,-29.462869],[-49.815468,-29.459269],[-49.813068,-29.455969],[-49.811068,-29.453269],[-49.809068,-29.450769],[-49.806868,-29.447969],[-49.804068,-29.444069],[-49.799968,-29.439069],[-49.798068,-29.436869],[-49.796068,-29.434369],[-49.794268,-29.431669],[-49.792068,-29.429069],[-49.788868,-29.424969],[-49.786768,-29.422269],[-49.784168,-29.418869],[-49.781968,-29.416069],[-49.779568,-29.413169],[-49.776568,-29.409469],[-49.773668,-29.405669],[-49.770668,-29.401869],[-49.767668,-29.398169],[-49.765668,-29.395769],[-49.763168,-29.392469],[-49.761068,-29.390069],[-49.758068,-29.386469],[-49.755168,-29.382669],[-49.752368,-29.379169],[-49.749668,-29.375869],[-49.746968,-29.372669],[-49.744768,-29.369769],[-49.742468,-29.366969],[-49.740068,-29.363969],[-49.737568,-29.361069],[-49.734968,-29.358669],[-49.731068,-29.356669],[-49.730068,-29.352469],[-49.729968,-29.349569],[-49.728068,-29.347269],[-49.725268,-29.343969],[-49.722268,-29.340169],[-49.720268,-29.337569],[-49.717368,-29.334069],[-49.715068,-29.331469],[-49.713268,-29.327969],[-49.712568,-29.323969],[-49.711568,-29.320569],[-49.710368,-29.317069],[-49.707968,-29.314069],[-49.705768,-29.311269],[-49.702868,-29.307269],[-49.700168,-29.304169],[-49.696768,-29.299969],[-49.694168,-29.296669],[-49.691268,-29.293069],[-49.687768,-29.288769],[-49.685168,-29.285569],[-49.682668,-29.282369],[-49.680468,-29.279869],[-49.678668,-29.277669],[-49.676168,-29.274769],[-49.672768,-29.270669],[-49.669268,-29.266469],[-49.666768,-29.263569],[-49.664768,-29.261069],[-49.662768,-29.258869],[-49.660668,-29.256369],[-49.657668,-29.252969],[-49.654468,-29.249369],[-49.652268,-29.246269],[-49.649868,-29.243669],[-49.647568,-29.240869],[-49.644368,-29.237269],[-49.641568,-29.234469],[-49.638568,-29.231069],[-49.636468,-29.228169],[-49.634168,-29.225669],[-49.631768,-29.223069],[-49.628268,-29.218769],[-49.625968,-29.215869],[-49.623368,-29.212569],[-49.619968,-29.208869],[-49.616968,-29.205369],[-49.614668,-29.203169],[-49.612568,-29.200669],[-49.610568,-29.198569],[-49.607868,-29.195269],[-49.604968,-29.191669],[-49.602768,-29.189369],[-49.600668,-29.187169],[-49.598668,-29.184869],[-49.595868,-29.181169],[-49.592568,-29.177569],[-49.590068,-29.175069],[-49.587268,-29.171969],[-49.584368,-29.169169],[-49.581568,-29.165669],[-49.578968,-29.163069],[-49.576768,-29.160669],[-49.573568,-29.157769],[-49.570168,-29.154169],[-49.567768,-29.151269],[-49.564668,-29.147569],[-49.561568,-29.144069],[-49.557968,-29.140469],[-49.555268,-29.137469],[-49.552568,-29.135169],[-49.550468,-29.132769],[-49.547868,-29.130169],[-49.545268,-29.127469],[-49.542768,-29.124769],[-49.540568,-29.122769],[-49.538068,-29.119969],[-49.534768,-29.116369],[-49.530368,-29.111469],[-49.527368,-29.107769],[-49.525068,-29.104769],[-49.522168,-29.101969],[-49.519268,-29.098969],[-49.516068,-29.095569],[-49.513568,-29.093069],[-49.510368,-29.089769],[-49.506368,-29.085369],[-49.503768,-29.082569],[-49.501568,-29.079869],[-49.499068,-29.077169],[-49.496268,-29.074369],[-49.494068,-29.072069],[-49.491168,-29.069269],[-49.488668,-29.066669],[-49.486368,-29.064169],[-49.483068,-29.060469],[-49.480568,-29.057269],[-49.478468,-29.055169],[-49.476468,-29.052969],[-49.473768,-29.050069],[-49.470868,-29.046869],[-49.468368,-29.044469],[-49.466268,-29.042469],[-49.463368,-29.039569],[-49.460368,-29.036669],[-49.458168,-29.034269],[-49.455968,-29.032069],[-49.453168,-29.029469],[-49.450468,-29.026469],[-49.448168,-29.023669],[-49.445268,-29.020769],[-49.441868,-29.017869],[-49.438868,-29.014369],[-49.435168,-29.010769],[-49.431868,-29.007669],[-49.428568,-29.004169],[-49.424268,-29.000469],[-49.421868,-28.998269],[-49.419168,-28.995769],[-49.416168,-28.992769],[-49.413368,-28.990069],[-49.410268,-28.987169],[-49.407368,-28.984369],[-49.405068,-28.982069],[-49.401768,-28.979169],[-49.398668,-28.975969],[-49.395368,-28.973069],[-49.391768,-28.969769],[-49.388468,-28.966969],[-49.386068,-28.964769],[-49.383868,-28.962669],[-49.381668,-28.960869],[-49.378768,-28.957969],[-49.375768,-28.955469],[-49.372668,-28.952669],[-49.369768,-28.949969],[-49.367568,-28.947969],[-49.364968,-28.945769],[-49.362168,-28.942969],[-49.359468,-28.940569],[-49.355368,-28.936969],[-49.351168,-28.933569],[-49.347268,-28.930169],[-49.343468,-28.927169],[-49.340368,-28.924269],[-49.336968,-28.921469],[-49.334268,-28.919169],[-49.331168,-28.916669],[-49.327468,-28.913469],[-49.324968,-28.911369],[-49.322468,-28.909169],[-49.320168,-28.907269],[-49.316668,-28.903669],[-49.314668,-28.900969],[-49.311868,-28.899769],[-49.308568,-28.897269],[-49.305768,-28.894269],[-49.301968,-28.892669],[-49.298868,-28.890969],[-49.296368,-28.889369],[-49.294268,-28.887169],[-49.291968,-28.884969],[-49.289568,-28.882669],[-49.286268,-28.879669],[-49.283668,-28.877369],[-49.280068,-28.874669],[-49.276468,-28.871669],[-49.274068,-28.869769],[-49.270168,-28.866669],[-49.266468,-28.863869],[-49.263268,-28.861069],[-49.259168,-28.857469],[-49.256368,-28.855069],[-49.253868,-28.853169],[-49.251068,-28.850669],[-49.248368,-28.848469],[-49.245468,-28.846269],[-49.242268,-28.843769],[-49.239168,-28.841269],[-49.236368,-28.839369],[-49.233168,-28.836769],[-49.229568,-28.834269],[-49.226668,-28.832169],[-49.224468,-28.830369],[-49.220868,-28.827869],[-49.217668,-28.825669],[-49.215168,-28.823869],[-49.211868,-28.821369],[-49.209268,-28.819269],[-49.205468,-28.816269],[-49.200968,-28.813069],[-49.197468,-28.810569],[-49.194868,-28.808369],[-49.190968,-28.805869],[-49.187768,-28.802469],[-49.184368,-28.800869],[-49.181368,-28.798969],[-49.178368,-28.796969],[-49.175868,-28.795069],[-49.173068,-28.792769],[-49.170268,-28.791369],[-49.167568,-28.789469],[-49.164468,-28.787369],[-49.161368,-28.785269],[-49.157868,-28.783069],[-49.153468,-28.780069],[-49.149068,-28.777269],[-49.146868,-28.775369],[-49.144268,-28.774069],[-49.140968,-28.771869],[-49.137468,-28.769569],[-49.134168,-28.767369],[-49.131368,-28.765669],[-49.128468,-28.763569],[-49.125568,-28.761869],[-49.122768,-28.759969],[-49.119168,-28.757769],[-49.114968,-28.755269],[-49.111468,-28.753069],[-49.108868,-28.751369],[-49.105568,-28.749369],[-49.099468,-28.745469],[-49.095168,-28.742669],[-49.091568,-28.740369],[-49.088468,-28.738569],[-49.085468,-28.736769],[-49.082168,-28.734669],[-49.078568,-28.732469],[-49.076068,-28.730669],[-49.073268,-28.729269],[-49.069568,-28.727269],[-49.065768,-28.724869],[-49.062768,-28.723069],[-49.058868,-28.721169],[-49.055068,-28.718969],[-49.050368,-28.716169],[-49.047468,-28.714069],[-49.044968,-28.712669],[-49.042568,-28.710969],[-49.039168,-28.709369],[-49.035368,-28.707269],[-49.032368,-28.705669],[-49.028968,-28.703269],[-49.025468,-28.701069],[-49.022668,-28.699369],[-49.018568,-28.697069],[-49.015968,-28.695269],[-49.011768,-28.693569],[-49.007068,-28.690969],[-49.002968,-28.688769],[-48.999468,-28.686569],[-48.995268,-28.684069],[-48.991568,-28.681869],[-48.987868,-28.679669],[-48.984668,-28.677469],[-48.980568,-28.675069],[-48.976968,-28.672869],[-48.973168,-28.670769],[-48.969268,-28.668669],[-48.964768,-28.666369],[-48.960168,-28.664269],[-48.957268,-28.662769],[-48.953768,-28.660869],[-48.950668,-28.659169],[-48.946568,-28.656969],[-48.942768,-28.655069],[-48.940168,-28.653669],[-48.937368,-28.652369],[-48.934468,-28.650869],[-48.931968,-28.649469],[-48.929168,-28.647969],[-48.925568,-28.646269],[-48.922868,-28.644869],[-48.919568,-28.643169],[-48.916068,-28.641569],[-48.912868,-28.639669],[-48.909568,-28.638469],[-48.906268,-28.636769],[-48.902268,-28.634869],[-48.897168,-28.632369],[-48.892068,-28.629969],[-48.887068,-28.627669],[-48.884268,-28.626569],[-48.881368,-28.625269],[-48.878468,-28.624069],[-48.874468,-28.622169],[-48.870468,-28.620469],[-48.866868,-28.618669],[-48.863068,-28.617169],[-48.859168,-28.615869],[-48.855668,-28.614669],[-48.852768,-28.613369],[-48.848968,-28.611969],[-48.845568,-28.610869],[-48.842668,-28.610069],[-48.839468,-28.610269],[-48.836568,-28.611069],[-48.833168,-28.608369],[-48.829368,-28.607069],[-48.825768,-28.606469],[-48.822468,-28.607069],[-48.819268,-28.608569],[-48.815168,-28.606369],[-48.812368,-28.603369],[-48.816068,-28.601969],[-48.817368,-28.597869],[-48.816068,-28.594769],[-48.816968,-28.591669],[-48.815468,-28.588669],[-48.813268,-28.585469],[-48.811268,-28.583169],[-48.808868,-28.580669],[-48.805768,-28.577169],[-48.802968,-28.574569],[-48.800068,-28.572369],[-48.797768,-28.570469],[-48.795368,-28.568469],[-48.792568,-28.567169],[-48.788468,-28.567969],[-48.785568,-28.565469],[-48.788168,-28.563269],[-48.788968,-28.559169],[-48.787568,-28.555869],[-48.785868,-28.553269],[-48.783768,-28.550469],[-48.781468,-28.547869],[-48.778768,-28.545569],[-48.775368,-28.542269],[-48.771868,-28.539569],[-48.768468,-28.537769],[-48.764568,-28.536269],[-48.761768,-28.534469],[-48.761868,-28.531269],[-48.760468,-28.526869],[-48.762368,-28.523469],[-48.761268,-28.520669],[-48.761068,-28.517369],[-48.759068,-28.514369],[-48.756268,-28.511269],[-48.753468,-28.509869],[-48.751868,-28.506769],[-48.748068,-28.506269],[-48.747368,-28.502669],[-48.747268,-28.499069],[-48.745868,-28.496269],[-48.749768,-28.494369],[-48.754168,-28.494369],[-48.758568,-28.494769],[-48.762468,-28.492269],[-48.763968,-28.489169],[-48.765368,-28.485369],[-48.765968,-28.481769],[-48.766068,-28.478669],[-48.766268,-28.474569],[-48.766068,-28.469869],[-48.765968,-28.465869],[-48.765668,-28.462869],[-48.764668,-28.458969],[-48.763168,-28.454269],[-48.761468,-28.450669],[-48.759668,-28.446869],[-48.757168,-28.442669],[-48.755668,-28.440169],[-48.753768,-28.437269],[-48.751568,-28.434169],[-48.749168,-28.430869],[-48.746568,-28.427569],[-48.744168,-28.425769],[-48.741168,-28.425069],[-48.739068,-28.423169],[-48.742568,-28.421069],[-48.746568,-28.416969],[-48.746568,-28.412469],[-48.746268,-28.408469],[-48.745768,-28.405069],[-48.745068,-28.401269],[-48.744368,-28.398369],[-48.743268,-28.395069],[-48.741968,-28.391269],[-48.740068,-28.387169],[-48.738668,-28.383869],[-48.736768,-28.380269],[-48.734268,-28.375969],[-48.732768,-28.373369],[-48.730568,-28.370169],[-48.728668,-28.367169],[-48.726368,-28.364069],[-48.723468,-28.360269],[-48.720968,-28.356669],[-48.718768,-28.353869],[-48.716268,-28.350969],[-48.712868,-28.346969],[-48.710068,-28.343969],[-48.706468,-28.341769],[-48.703168,-28.342069],[-48.702168,-28.338469],[-48.705768,-28.336769],[-48.708168,-28.333269],[-48.709268,-28.328269],[-48.708968,-28.323469],[-48.708168,-28.319569],[-48.707168,-28.316269],[-48.706168,-28.313469],[-48.704668,-28.309369],[-48.703268,-28.305769],[-48.701768,-28.301469],[-48.700268,-28.297869],[-48.698568,-28.294469],[-48.696368,-28.289869],[-48.694968,-28.286969],[-48.693168,-28.283669],[-48.691068,-28.279869],[-48.689068,-28.276469],[-48.686368,-28.272069],[-48.684368,-28.268969],[-48.682468,-28.266069],[-48.680068,-28.262769],[-48.677568,-28.259569],[-48.675568,-28.256769],[-48.673068,-28.254069],[-48.669568,-28.250469],[-48.665568,-28.246969],[-48.660868,-28.244669],[-48.658668,-28.242669],[-48.656468,-28.240369],[-48.651968,-28.238269],[-48.648368,-28.235869],[-48.645768,-28.233669],[-48.646868,-28.230569],[-48.650068,-28.228669],[-48.651768,-28.231669],[-48.655068,-28.230269],[-48.657768,-28.228869],[-48.660868,-28.226969],[-48.662868,-28.223769],[-48.665368,-28.219769],[-48.666668,-28.216969],[-48.666768,-28.213269],[-48.663368,-28.209369],[-48.665668,-28.205969],[-48.663068,-28.202869],[-48.660668,-28.199569],[-48.658468,-28.197369],[-48.657368,-28.193869],[-48.660968,-28.192369],[-48.662868,-28.188769],[-48.662868,-28.183569],[-48.662068,-28.179369],[-48.661468,-28.176469],[-48.660568,-28.173269],[-48.659168,-28.169969],[-48.658068,-28.167069],[-48.656568,-28.164169],[-48.655068,-28.160969],[-48.653068,-28.157169],[-48.650368,-28.153369],[-48.647068,-28.150069],[-48.646268,-28.145769],[-48.644068,-28.143669],[-48.639568,-28.142469],[-48.637468,-28.138969],[-48.641068,-28.137069],[-48.642468,-28.133469],[-48.643268,-28.129169],[-48.640468,-28.126069],[-48.639268,-28.123369],[-48.636468,-28.121969],[-48.633468,-28.122769],[-48.631068,-28.119669],[-48.634568,-28.117969],[-48.635668,-28.114469],[-48.634568,-28.111769],[-48.631868,-28.108969],[-48.635668,-28.107569],[-48.636768,-28.104669],[-48.633768,-28.100869],[-48.632968,-28.096669],[-48.632068,-28.093369],[-48.630968,-28.090069],[-48.631668,-28.085369],[-48.629068,-28.082569],[-48.628068,-28.078469],[-48.625168,-28.074869],[-48.621168,-28.074869],[-48.619068,-28.072969],[-48.616868,-28.070469],[-48.615068,-28.065869],[-48.610368,-28.062969],[-48.608368,-28.059169],[-48.607168,-28.054969],[-48.606668,-28.051569],[-48.607068,-28.047569],[-48.609668,-28.043369],[-48.607868,-28.038469],[-48.605668,-28.035369],[-48.602468,-28.033769],[-48.598968,-28.033469],[-48.598468,-28.030069],[-48.600968,-28.028369],[-48.602268,-28.025069],[-48.604268,-28.020469],[-48.607868,-28.017569],[-48.611068,-28.019369],[-48.615068,-28.022669],[-48.619668,-28.022069],[-48.623268,-28.019669],[-48.626368,-28.016069],[-48.628868,-28.011269],[-48.630268,-28.007769],[-48.631268,-28.004369],[-48.631768,-28.001069],[-48.632068,-27.997369],[-48.631868,-27.992269],[-48.631268,-27.988969],[-48.629868,-27.984969],[-48.629068,-27.982069],[-48.629068,-27.979169],[-48.627968,-27.974569],[-48.625168,-27.971969],[-48.623368,-27.968769],[-48.621268,-27.965069],[-48.620868,-27.961769],[-48.623268,-27.960169],[-48.625468,-27.958269],[-48.624968,-27.953969],[-48.624068,-27.951069],[-48.623068,-27.947369],[-48.620868,-27.944969],[-48.619168,-27.941669],[-48.617468,-27.938769],[-48.615268,-27.935569],[-48.613368,-27.932969],[-48.610668,-27.929369],[-48.607868,-27.925769],[-48.605668,-27.923069],[-48.603668,-27.920769],[-48.601668,-27.918469],[-48.599468,-27.916169],[-48.595968,-27.912769],[-48.591968,-27.909169],[-48.590068,-27.905869],[-48.586268,-27.904469],[-48.582868,-27.905569],[-48.581468,-27.902269],[-48.581768,-27.899069],[-48.580068,-27.895769],[-48.577468,-27.893969],[-48.575168,-27.891469],[-48.573568,-27.886769],[-48.575268,-27.883469],[-48.575968,-27.879069],[-48.578568,-27.882369],[-48.581768,-27.883069],[-48.585068,-27.881669],[-48.588268,-27.882369],[-48.590168,-27.884869],[-48.594468,-27.883769],[-48.597368,-27.880769],[-48.599168,-27.878469],[-48.600568,-27.875169],[-48.601668,-27.870869],[-48.601968,-27.866969],[-48.601768,-27.863269],[-48.600868,-27.858969],[-48.599568,-27.855969],[-48.598068,-27.853369],[-48.595868,-27.850969],[-48.592968,-27.849469],[-48.588668,-27.848069],[-48.583968,-27.847769],[-48.580768,-27.848969],[-48.578768,-27.851369],[-48.576768,-27.847669],[-48.576068,-27.843669],[-48.573268,-27.842069],[-48.569268,-27.835869],[-48.565968,-27.834269],[-48.560868,-27.835369],[-48.559468,-27.838269],[-48.555868,-27.835969],[-48.552468,-27.833969],[-48.549368,-27.832369],[-48.545668,-27.830169],[-48.542568,-27.827069],[-48.541668,-27.824069],[-48.540868,-27.820969],[-48.540068,-27.816969],[-48.538368,-27.812969],[-48.536768,-27.810469],[-48.535868,-27.807769],[-48.536168,-27.803669],[-48.533968,-27.800069],[-48.534568,-27.797169],[-48.532068,-27.792469],[-48.528668,-27.788169],[-48.525468,-27.785369],[-48.522568,-27.783469],[-48.519568,-27.782069],[-48.515668,-27.781269],[-48.511468,-27.781269],[-48.507768,-27.783069],[-48.507668,-27.786769],[-48.507368,-27.790069],[-48.504068,-27.793069],[-48.499468,-27.793969],[-48.495068,-27.794269],[-48.491868,-27.791969],[-48.489368,-27.790569],[-48.486468,-27.788969],[-48.485268,-27.786169],[-48.483868,-27.782769],[-48.487168,-27.778769],[-48.486868,-27.774769],[-48.484668,-27.771469],[-48.480568,-27.769869],[-48.476968,-27.770069],[-48.478268,-27.763069],[-48.482068,-27.761069],[-48.485268,-27.759569],[-48.487868,-27.755969],[-48.492168,-27.756369],[-48.494968,-27.757469],[-48.497768,-27.755769],[-48.499668,-27.752669],[-48.499468,-27.749469],[-48.503468,-27.749469],[-48.506268,-27.747369],[-48.507368,-27.744669],[-48.507668,-27.741369],[-48.507768,-27.737469],[-48.507468,-27.733369],[-48.506668,-27.728669],[-48.505268,-27.724569],[-48.503068,-27.719569],[-48.502168,-27.715069],[-48.500868,-27.712269],[-48.499168,-27.709269],[-48.497468,-27.706469],[-48.495268,-27.703569],[-48.492968,-27.700669],[-48.489968,-27.698169],[-48.487468,-27.696069],[-48.483868,-27.694369],[-48.481668,-27.691269],[-48.480268,-27.686869],[-48.479468,-27.683269],[-48.479168,-27.678969],[-48.478368,-27.675569],[-48.477268,-27.671669],[-48.475968,-27.668069],[-48.474568,-27.664569],[-48.472568,-27.660569],[-48.470868,-27.657269],[-48.468768,-27.654269],[-48.466468,-27.650169],[-48.464368,-27.647169],[-48.461568,-27.643269],[-48.458968,-27.640069],[-48.456868,-27.637469],[-48.454568,-27.634569],[-48.451368,-27.631269],[-48.447768,-27.629469],[-48.445168,-27.626269],[-48.442768,-27.622469],[-48.439168,-27.620069],[-48.437968,-27.617269],[-48.433068,-27.614469],[-48.435568,-27.610269],[-48.434968,-27.606369],[-48.432968,-27.602869],[-48.430068,-27.599569],[-48.428368,-27.595869],[-48.425768,-27.592869],[-48.422468,-27.591569],[-48.419668,-27.592269],[-48.418368,-27.588669],[-48.419168,-27.584369],[-48.416768,-27.580169],[-48.414468,-27.577669],[-48.412068,-27.575369],[-48.412768,-27.572469],[-48.416168,-27.572069],[-48.418868,-27.573169],[-48.422268,-27.573469],[-48.425868,-27.572369],[-48.427868,-27.568769],[-48.428968,-27.565169],[-48.429368,-27.561069],[-48.429168,-27.555469],[-48.428068,-27.549969],[-48.426168,-27.543869],[-48.424168,-27.538769],[-48.422468,-27.534769],[-48.420868,-27.531569],[-48.419468,-27.528669],[-48.417868,-27.525969],[-48.415868,-27.522269],[-48.413168,-27.517669],[-48.409468,-27.511769],[-48.407368,-27.509169],[-48.405368,-27.505969],[-48.403068,-27.502969],[-48.400068,-27.499369],[-48.396768,-27.495469],[-48.394268,-27.492469],[-48.391268,-27.489369],[-48.387368,-27.485769],[-48.384668,-27.483869],[-48.382368,-27.481769],[-48.379168,-27.481369],[-48.375868,-27.479569],[-48.374468,-27.474769],[-48.374368,-27.470569],[-48.375868,-27.467269],[-48.376568,-27.462969],[-48.375168,-27.458969],[-48.373568,-27.455469],[-48.371268,-27.451069],[-48.368268,-27.449269],[-48.363868,-27.448169],[-48.360668,-27.445169],[-48.359268,-27.440469],[-48.361368,-27.437969],[-48.363568,-27.435469],[-48.365368,-27.433269],[-48.367268,-27.435469],[-48.368868,-27.438869],[-48.370068,-27.442369],[-48.372968,-27.443869],[-48.375968,-27.443569],[-48.379168,-27.442669],[-48.382968,-27.441269],[-48.387068,-27.438769],[-48.389868,-27.436569],[-48.392868,-27.433669],[-48.396168,-27.429769],[-48.398668,-27.426169],[-48.400668,-27.422769],[-48.402268,-27.418869],[-48.403668,-27.415569],[-48.403168,-27.412569],[-48.403168,-27.409469],[-48.405468,-27.406269],[-48.410568,-27.405169],[-48.412768,-27.402269],[-48.413468,-27.398969],[-48.414168,-27.395469],[-48.413168,-27.391769],[-48.411968,-27.387969],[-48.410968,-27.384869],[-48.413468,-27.382769],[-48.415968,-27.380969],[-48.483868,-27.378569],[-48.506368,-27.393969],[-48.516468,-27.399769],[-48.519868,-27.402569],[-48.526168,-27.408169],[-48.532768,-27.388269],[-48.532368,-27.382069],[-48.528168,-27.377969],[-48.531168,-27.374169],[-48.532268,-27.371269],[-48.533468,-27.367169],[-48.535368,-27.363969],[-48.536168,-27.361069],[-48.536368,-27.357869],[-48.533668,-27.354169],[-48.534468,-27.349769],[-48.531568,-27.347869],[-48.527368,-27.344869],[-48.526968,-27.340069],[-48.526168,-27.336169],[-48.525168,-27.333269],[-48.529468,-27.334569],[-48.533168,-27.333169],[-48.535268,-27.330369],[-48.537768,-27.325969],[-48.538968,-27.322869],[-48.539768,-27.318469],[-48.539568,-27.312969],[-48.539168,-27.309069],[-48.538468,-27.305869],[-48.540268,-27.302969],[-48.539768,-27.299969],[-48.543068,-27.298869],[-48.544968,-27.302269],[-48.546968,-27.305469],[-48.550068,-27.305269],[-48.552568,-27.306969],[-48.552768,-27.310769],[-48.554168,-27.314169],[-48.558368,-27.314469],[-48.561868,-27.316069],[-48.564168,-27.312969],[-48.564868,-27.309469],[-48.568068,-27.309869],[-48.569968,-27.312269],[-48.573168,-27.314869],[-48.576268,-27.314869],[-48.579268,-27.312969],[-48.581868,-27.314869],[-48.585568,-27.319169],[-48.590068,-27.318469],[-48.593368,-27.316269],[-48.596668,-27.311669],[-48.600368,-27.306069],[-48.603168,-27.301369],[-48.605568,-27.296469],[-48.607768,-27.291769],[-48.609168,-27.288369],[-48.610768,-27.284869],[-48.612168,-27.282269],[-48.613368,-27.278169],[-48.614968,-27.274069],[-48.615368,-27.270069],[-48.615468,-27.266069],[-48.615368,-27.262369],[-48.615468,-27.257169],[-48.615068,-27.253769],[-48.614368,-27.250169],[-48.614368,-27.245869],[-48.613968,-27.241069],[-48.613268,-27.235669],[-48.612168,-27.231669],[-48.610368,-27.227569],[-48.608868,-27.223369],[-48.606668,-27.219469],[-48.602868,-27.217269],[-48.601368,-27.219869],[-48.598368,-27.219069],[-48.595668,-27.217669],[-48.592868,-27.215869],[-48.588968,-27.214069],[-48.585468,-27.211969],[-48.582568,-27.209769],[-48.578168,-27.210369],[-48.575468,-27.206869],[-48.571768,-27.203269],[-48.568568,-27.201469],[-48.564168,-27.199569],[-48.559168,-27.197169],[-48.554668,-27.195969],[-48.552168,-27.191969],[-48.548068,-27.187469],[-48.544968,-27.185169],[-48.542468,-27.182969],[-48.539268,-27.181569],[-48.536368,-27.180869],[-48.532668,-27.180469],[-48.528368,-27.180469],[-48.524268,-27.180769],[-48.520168,-27.181969],[-48.515668,-27.183569],[-48.512468,-27.185469],[-48.509168,-27.187969],[-48.506368,-27.190269],[-48.504168,-27.192669],[-48.501868,-27.195269],[-48.499968,-27.198169],[-48.499768,-27.202669],[-48.501568,-27.206469],[-48.503768,-27.208269],[-48.506268,-27.210369],[-48.509068,-27.211869],[-48.512168,-27.213969],[-48.514968,-27.215969],[-48.515068,-27.218969],[-48.512368,-27.219869],[-48.511068,-27.216769],[-48.508068,-27.216569],[-48.504068,-27.216269],[-48.501268,-27.214769],[-48.498368,-27.215969],[-48.495268,-27.215969],[-48.493368,-27.212969],[-48.489968,-27.211269],[-48.486768,-27.209369],[-48.483568,-27.209669],[-48.480368,-27.208169],[-48.477468,-27.206069],[-48.476368,-27.203269],[-48.476968,-27.199869],[-48.482068,-27.198969],[-48.485368,-27.200469],[-48.488268,-27.202569],[-48.491668,-27.201069],[-48.494668,-27.198869],[-48.496268,-27.196369],[-48.497668,-27.193469],[-48.498868,-27.189169],[-48.499468,-27.184969],[-48.499768,-27.181869],[-48.499668,-27.177569],[-48.499068,-27.173969],[-48.498368,-27.171069],[-48.497368,-27.167869],[-48.495568,-27.165269],[-48.492268,-27.164169],[-48.488368,-27.163769],[-48.484968,-27.162069],[-48.484768,-27.157369],[-48.482768,-27.154069],[-48.478668,-27.153969],[-48.474168,-27.151969],[-48.471968,-27.148369],[-48.468368,-27.145069],[-48.473068,-27.145369],[-48.476468,-27.144669],[-48.476668,-27.140769],[-48.479768,-27.144669],[-48.483668,-27.147869],[-48.487468,-27.148469],[-48.490568,-27.147969],[-48.494768,-27.146269],[-48.499068,-27.145669],[-48.501968,-27.145069],[-48.505168,-27.142869],[-48.507968,-27.140069],[-48.510968,-27.136569],[-48.513268,-27.132069],[-48.512368,-27.129069],[-48.512368,-27.125569],[-48.511368,-27.121169],[-48.507668,-27.118569],[-48.506068,-27.114169],[-48.508168,-27.111469],[-48.509968,-27.115069],[-48.512468,-27.118069],[-48.517168,-27.120769],[-48.521468,-27.118869],[-48.524768,-27.122369],[-48.527668,-27.122969],[-48.529468,-27.126269],[-48.525368,-27.126369],[-48.526768,-27.130269],[-48.530068,-27.133469],[-48.532268,-27.135669],[-48.534768,-27.137469],[-48.536268,-27.140369],[-48.536968,-27.143169],[-48.533668,-27.145469],[-48.537368,-27.150069],[-48.541968,-27.151569],[-48.544168,-27.153769],[-48.548068,-27.156269],[-48.551868,-27.157369],[-48.554768,-27.156569],[-48.556968,-27.153369],[-48.560568,-27.154769],[-48.563768,-27.155169],[-48.567368,-27.154469],[-48.571268,-27.152869],[-48.575968,-27.150369],[-48.579568,-27.147869],[-48.583168,-27.145669],[-48.586568,-27.143669],[-48.590168,-27.139569],[-48.593368,-27.136369],[-48.596168,-27.132769],[-48.599168,-27.129569],[-48.601368,-27.126869],[-48.603968,-27.123269],[-48.606468,-27.119169],[-48.608168,-27.116069],[-48.610068,-27.111669],[-48.611468,-27.108369],[-48.612568,-27.105069],[-48.613568,-27.102069],[-48.613668,-27.099169],[-48.611968,-27.094869],[-48.609268,-27.091969],[-48.605668,-27.091569],[-48.602068,-27.093769],[-48.598968,-27.090369],[-48.595968,-27.087969],[-48.594568,-27.083469],[-48.590368,-27.080469],[-48.593368,-27.078569],[-48.595068,-27.073869],[-48.595068,-27.070169],[-48.593968,-27.066269],[-48.593668,-27.061969],[-48.590368,-27.060469],[-48.588668,-27.057169],[-48.587068,-27.053869],[-48.587668,-27.049669],[-48.587068,-27.045669],[-48.584068,-27.043369],[-48.580768,-27.040269],[-48.581768,-27.035969],[-48.581468,-27.032069],[-48.581068,-27.028069],[-48.578768,-27.024369],[-48.574868,-27.023969],[-48.575768,-27.019369],[-48.573468,-27.016769],[-48.570768,-27.013269],[-48.570568,-27.009169],[-48.574568,-27.009969],[-48.577468,-27.011069],[-48.580168,-27.008769],[-48.581768,-27.005969],[-48.582268,-27.002169],[-48.582668,-26.998769],[-48.582268,-26.994769],[-48.587268,-26.992769],[-48.588468,-26.995469],[-48.590868,-26.997169],[-48.594868,-26.995869],[-48.598368,-26.994169],[-48.601968,-26.996069],[-48.603168,-26.999369],[-48.602368,-27.003369],[-48.606668,-27.005469],[-48.610268,-27.005669],[-48.613568,-27.004969],[-48.616168,-27.003769],[-48.619068,-27.002169],[-48.621668,-26.999869],[-48.624368,-26.997369],[-48.626668,-26.995069],[-48.628768,-26.991669],[-48.631268,-26.987569],[-48.633468,-26.984169],[-48.634368,-26.980569],[-48.634868,-26.977269],[-48.634368,-26.974169],[-48.631668,-26.971969],[-48.628268,-26.971669],[-48.627768,-26.968369],[-48.627668,-26.965169],[-48.625968,-26.961469],[-48.628768,-26.959669],[-48.629068,-26.956769],[-48.629168,-26.952869],[-48.628868,-26.948269],[-48.628468,-26.944969],[-48.627968,-26.941269],[-48.627068,-26.936569],[-48.626268,-26.932569],[-48.624468,-26.929769],[-48.623368,-26.926569],[-48.627368,-26.928369],[-48.631068,-26.928869],[-48.633768,-26.925869],[-48.637368,-26.921869],[-48.641068,-26.918969],[-48.641468,-26.914569],[-48.644268,-26.911269],[-48.643568,-26.906769],[-48.643268,-26.903069],[-48.642868,-26.898369],[-48.642068,-26.893969],[-48.641468,-26.890369],[-48.640668,-26.886369],[-48.639668,-26.882369],[-48.639268,-26.878569],[-48.638268,-26.873269],[-48.637668,-26.869369],[-48.636868,-26.865569],[-48.636268,-26.861969],[-48.635168,-26.857569],[-48.634068,-26.852869],[-48.633068,-26.848669],[-48.632368,-26.845169],[-48.631068,-26.841969],[-48.629568,-26.839069],[-48.628768,-26.836169],[-48.627368,-26.833269],[-48.625168,-26.830469],[-48.623268,-26.827569],[-48.620768,-26.824569],[-48.618868,-26.827869],[-48.615568,-26.825769],[-48.612268,-26.825169],[-48.609368,-26.827469],[-48.606068,-26.826569],[-48.602768,-26.825769],[-48.600968,-26.822669],[-48.599468,-26.819669],[-48.599468,-26.816669],[-48.599268,-26.813769],[-48.598068,-26.811069],[-48.597068,-26.805769],[-48.595068,-26.801569],[-48.593168,-26.798569],[-48.590568,-26.796669],[-48.587268,-26.797469],[-48.585668,-26.794269],[-48.587268,-26.790069],[-48.584868,-26.785569],[-48.587868,-26.783669],[-48.591468,-26.785569],[-48.594868,-26.784169],[-48.596468,-26.781769],[-48.598168,-26.778669],[-48.598368,-26.773969],[-48.602068,-26.776769],[-48.603168,-26.780369],[-48.602768,-26.784769],[-48.605068,-26.787769],[-48.607468,-26.789869],[-48.611168,-26.790369],[-48.614668,-26.790569],[-48.617968,-26.789969],[-48.621268,-26.788669],[-48.625468,-26.786469],[-48.629668,-26.783469],[-48.632668,-26.780569],[-48.634968,-26.777569],[-48.636768,-26.774469],[-48.638868,-26.771269],[-48.640468,-26.767569],[-48.643268,-26.765769],[-48.646768,-26.763169],[-48.649868,-26.764969],[-48.651268,-26.767869],[-48.652868,-26.770969],[-48.656968,-26.772269],[-48.660968,-26.771469],[-48.664168,-26.770369],[-48.667068,-26.768269],[-48.669768,-26.765769],[-48.671668,-26.762969],[-48.673068,-26.760369],[-48.674168,-26.757469],[-48.675068,-26.754569],[-48.676068,-26.751569],[-48.676868,-26.747669],[-48.677868,-26.742469],[-48.679168,-26.736869],[-48.680068,-26.732769],[-48.680568,-26.729769],[-48.681068,-26.725969],[-48.681868,-26.721669],[-48.681968,-26.718069],[-48.681668,-26.714369],[-48.681568,-26.710669],[-48.681368,-26.707569],[-48.681168,-26.704269],[-48.680868,-26.701069],[-48.679768,-26.697969],[-48.682168,-26.694369],[-48.684368,-26.691869],[-48.686868,-26.688869],[-48.687168,-26.685469],[-48.687668,-26.680869],[-48.688468,-26.677169],[-48.688068,-26.672769],[-48.687168,-26.666769],[-48.686568,-26.662769],[-48.686068,-26.659269],[-48.685168,-26.655469],[-48.684368,-26.652269],[-48.683768,-26.648969],[-48.683268,-26.646069],[-48.682168,-26.642169],[-48.682968,-26.638869],[-48.681568,-26.634969],[-48.680068,-26.628769],[-48.679668,-26.624369],[-48.678668,-26.620569],[-48.677568,-26.616869],[-48.676468,-26.612869],[-48.675568,-26.609969],[-48.674668,-26.606969],[-48.673568,-26.604169],[-48.672468,-26.600869],[-48.671068,-26.597269],[-48.669668,-26.593369],[-48.668168,-26.589769],[-48.666968,-26.586469],[-48.665668,-26.583169],[-48.664568,-26.580169],[-48.663168,-26.577469],[-48.661168,-26.572669],[-48.659168,-26.567969],[-48.657568,-26.564369],[-48.656168,-26.560869],[-48.654768,-26.555869],[-48.652368,-26.551169],[-48.650768,-26.547269],[-48.649368,-26.544569],[-48.647968,-26.541669],[-48.646568,-26.538069],[-48.645368,-26.535069],[-48.643468,-26.531269],[-48.642068,-26.528469],[-48.640468,-26.525169],[-48.638868,-26.521769],[-48.636768,-26.517369],[-48.634568,-26.513169],[-48.632968,-26.510369],[-48.630968,-26.506369],[-48.628468,-26.501969],[-48.627068,-26.499469],[-48.625168,-26.496169],[-48.623268,-26.492969],[-48.621668,-26.490469],[-48.618668,-26.485569],[-48.616468,-26.481969],[-48.614168,-26.478369],[-48.611668,-26.474469],[-48.609968,-26.471769],[-48.606768,-26.467669],[-48.603568,-26.464069],[-48.599568,-26.460369],[-48.597068,-26.457269],[-48.595568,-26.453869],[-48.596668,-26.449869],[-48.598168,-26.445969],[-48.598868,-26.443069],[-48.599468,-26.439069],[-48.599468,-26.435169],[-48.599168,-26.430869],[-48.598368,-26.425869],[-48.597568,-26.422569],[-48.596368,-26.418169],[-48.594568,-26.413169],[-48.592968,-26.409169],[-48.591568,-26.405669],[-48.589868,-26.401969],[-48.588668,-26.399269],[-48.587268,-26.396769],[-48.585068,-26.392569],[-48.582568,-26.387769],[-48.579668,-26.383269],[-48.577668,-26.379969],[-48.574968,-26.375969],[-48.572368,-26.371669],[-48.569968,-26.367969],[-48.568268,-26.364769],[-48.565168,-26.359369],[-48.562168,-26.352769],[-48.561268,-26.349969],[-48.560268,-26.346969],[-48.559168,-26.342269],[-48.557768,-26.337269],[-48.556068,-26.332569],[-48.554768,-26.329069],[-48.552968,-26.324569],[-48.550568,-26.319369],[-48.548868,-26.315469],[-48.547468,-26.312769],[-48.546168,-26.309869],[-48.544668,-26.307169],[-48.542468,-26.302469],[-48.539468,-26.297269],[-48.537068,-26.292869],[-48.535068,-26.289469],[-48.533168,-26.285969],[-48.531268,-26.282369],[-48.528768,-26.277969],[-48.526968,-26.274869],[-48.524468,-26.270769],[-48.522168,-26.266869],[-48.520468,-26.264269],[-48.518968,-26.261569],[-48.517168,-26.258869],[-48.515668,-26.256269],[-48.514068,-26.253769],[-48.512168,-26.250569],[-48.510268,-26.247369],[-48.508768,-26.244769],[-48.507068,-26.242169],[-48.504168,-26.237469],[-48.500568,-26.235269],[-48.499768,-26.232069],[-48.498268,-26.228869],[-48.496568,-26.226469],[-48.495768,-26.222669],[-48.494068,-26.218769],[-48.496868,-26.217269],[-48.500768,-26.219269],[-48.501568,-26.223369],[-48.503568,-26.225969],[-48.507168,-26.226369],[-48.512068,-26.225269],[-48.515368,-26.223169],[-48.518268,-26.220969],[-48.520768,-26.217869],[-48.522168,-26.215169],[-48.523468,-26.212569],[-48.525068,-26.208769],[-48.525968,-26.205069],[-48.526568,-26.201469],[-48.527268,-26.196369],[-48.527568,-26.193069],[-48.527668,-26.189669],[-48.527568,-26.186069],[-48.527068,-26.182969],[-48.526268,-26.179669],[-48.524868,-26.176069],[-48.524068,-26.171769],[-48.525368,-26.167169],[-48.528068,-26.164169],[-48.531968,-26.163369],[-48.534868,-26.165969],[-48.537068,-26.168169],[-48.540268,-26.169769],[-48.543868,-26.170369],[-48.548568,-26.170869],[-48.553668,-26.169769],[-48.558268,-26.169169],[-48.564468,-26.168169],[-48.569268,-26.167769],[-48.572868,-26.167169],[-48.575968,-26.165969],[-48.581868,-26.163169],[-48.585368,-26.159769],[-48.587268,-26.156569],[-48.588968,-26.153769],[-48.590068,-26.150469],[-48.591268,-26.147369],[-48.592568,-26.143969],[-48.594568,-26.138969],[-48.596168,-26.134269],[-48.597268,-26.130269],[-48.598368,-26.126669],[-48.598968,-26.123769],[-48.599568,-26.120769],[-48.600468,-26.116369],[-48.600968,-26.111869],[-48.601668,-26.108069],[-48.602068,-26.103169],[-48.602468,-26.099769],[-48.602768,-26.095569],[-48.603068,-26.090069],[-48.603168,-26.085769],[-48.603168,-26.082569],[-48.603068,-26.079369],[-48.603068,-26.076369],[-48.603068,-26.072469],[-48.606068,-26.069669],[-48.608668,-26.066869],[-48.610368,-26.062669],[-48.610568,-26.057769],[-48.610368,-26.054069],[-48.610268,-26.049969],[-48.609768,-26.045769],[-48.609168,-26.040669],[-48.608868,-26.037269],[-48.608368,-26.033069],[-48.607868,-26.029269],[-48.607468,-26.026269],[-48.606768,-26.023169],[-48.606068,-26.018469],[-48.604968,-26.013469],[-48.603868,-26.008469],[-48.602468,-26.002469],[-48.602068,-25.997969],[-48.600568,-25.993669],[-48.599268,-25.989069],[-48.597868,-25.984269],[-48.596468,-25.980569],[-48.595568,-25.977469],[-48.594468,-25.970369],[-48.592868,-25.964769],[-48.591768,-25.960969],[-48.590868,-25.957869],[-48.589468,-25.954069],[-48.587868,-25.949569],[-48.586268,-25.945469],[-48.584668,-25.941269],[-48.583268,-25.938069],[-48.581868,-25.934469],[-48.580368,-25.930569],[-48.578568,-25.926569],[-48.576868,-25.922469],[-48.575468,-25.919269],[-48.573768,-25.916169],[-48.571268,-25.911169],[-48.569068,-25.906969],[-48.566568,-25.902069],[-48.564068,-25.897269],[-48.561868,-25.893269],[-48.560868,-25.889669],[-48.565468,-25.888469],[-48.567368,-25.885769],[-48.567368,-25.882069],[-48.565768,-25.878069],[-48.564168,-25.874769],[-48.562968,-25.871169],[-48.562768,-25.866469],[-48.564168,-25.862469],[-48.564568,-25.856769],[-48.561668,-25.855069],[-48.559068,-25.853669],[-48.554768,-25.852869],[-48.551168,-25.850869],[-48.547868,-25.851469],[-48.544668,-25.849769],[-48.540268,-25.848069],[-48.535668,-25.850969],[-48.535068,-25.847369],[-48.536968,-25.844069],[-48.535968,-25.838669],[-48.534468,-25.832269],[-48.533368,-25.827469],[-48.532068,-25.824269],[-48.530168,-25.820269],[-48.531668,-25.815569],[-48.531168,-25.811969],[-48.529768,-25.808369],[-48.527068,-25.802969],[-48.524068,-25.797569],[-48.521168,-25.792169],[-48.519368,-25.788069],[-48.517168,-25.784169],[-48.515668,-25.780969],[-48.512368,-25.774269],[-48.510768,-25.771269],[-48.509068,-25.768169],[-48.507368,-25.764569],[-48.504668,-25.759969],[-48.502768,-25.756669],[-48.500868,-25.753369],[-48.497268,-25.747269],[-48.492468,-25.739369],[-48.489468,-25.734469],[-48.487468,-25.730869],[-48.484768,-25.726669],[-48.482168,-25.722269],[-48.480068,-25.718669],[-48.477868,-25.714469],[-48.473668,-25.708269],[-48.471968,-25.705669],[-48.470068,-25.702569],[-48.468068,-25.699369],[-48.466168,-25.696369],[-48.464268,-25.693469],[-48.462568,-25.690569],[-48.460668,-25.687969],[-48.457568,-25.683369],[-48.455668,-25.680469],[-48.453568,-25.677569],[-48.450668,-25.673569],[-48.447968,-25.668869],[-48.444968,-25.663869],[-48.442468,-25.659469],[-48.440268,-25.655969],[-48.437668,-25.651769],[-48.435768,-25.648769],[-48.433568,-25.645669],[-48.430468,-25.641469],[-48.427468,-25.637669],[-48.423968,-25.633569],[-48.420568,-25.629869],[-48.417768,-25.626869],[-48.414468,-25.623269],[-48.411768,-25.620769],[-48.408468,-25.617669],[-48.404168,-25.613969],[-48.401568,-25.611969],[-48.397268,-25.608869],[-48.391468,-25.604769],[-48.385268,-25.600669],[-48.379168,-25.597369],[-48.376568,-25.595669],[-48.371168,-25.592569],[-48.368068,-25.590669],[-48.364968,-25.589069],[-48.360768,-25.587269],[-48.357268,-25.585669],[-48.353568,-25.584369],[-48.319868,-25.586469],[-48.312968,-25.575669],[-48.310568,-25.573169],[-48.307568,-25.570469],[-48.305068,-25.568769],[-48.301968,-25.566669],[-48.299168,-25.566069],[-48.301068,-25.563069],[-48.302168,-25.559669],[-48.300268,-25.556169],[-48.298168,-25.552969],[-48.296368,-25.550069],[-48.294468,-25.547869],[-48.290868,-25.546369],[-48.276868,-25.514069],[-48.310768,-25.492569],[-48.301968,-25.492469],[-48.295868,-25.491469],[-48.286968,-25.489169],[-48.283068,-25.486769],[-48.278768,-25.483269],[-48.275668,-25.480569],[-48.273468,-25.478669],[-48.270368,-25.476669],[-48.266268,-25.474169],[-48.262768,-25.472369],[-48.258468,-25.470569],[-48.254968,-25.469469],[-48.251568,-25.467569],[-48.246868,-25.465369],[-48.243268,-25.465369],[-48.238668,-25.465869],[-48.233668,-25.469269],[-48.227368,-25.472269],[-48.223168,-25.473669],[-48.219068,-25.473669],[-48.216168,-25.473769],[-48.213468,-25.471369],[-48.212668,-25.468069],[-48.212068,-25.465169],[-48.211568,-25.462269],[-48.210668,-25.459369],[-48.209268,-25.455169],[-48.207068,-25.449669],[-48.205668,-25.445769],[-48.204568,-25.442969],[-48.202668,-25.438469],[-48.200768,-25.434069],[-48.199568,-25.431169],[-48.197168,-25.426869],[-48.195168,-25.423069],[-48.193168,-25.419569],[-48.191568,-25.416469],[-48.188568,-25.411969],[-48.185468,-25.406969],[-48.181668,-25.401269],[-48.179968,-25.398969],[-48.177968,-25.395969],[-48.175568,-25.392669],[-48.173568,-25.390069],[-48.171468,-25.387169],[-48.169268,-25.384269],[-48.166768,-25.380969],[-48.164568,-25.378069],[-48.162768,-25.375469],[-48.159868,-25.372169],[-48.157268,-25.368869],[-48.154868,-25.366069],[-48.152568,-25.363269],[-48.150468,-25.361069],[-48.147668,-25.357869],[-48.143968,-25.353869],[-48.140368,-25.349969],[-48.137068,-25.346969],[-48.134568,-25.344469],[-48.131368,-25.341469],[-48.127168,-25.337869],[-48.123368,-25.334669],[-48.120468,-25.332369],[-48.116168,-25.329569],[-48.112168,-25.326569],[-48.109268,-25.324569],[-48.105668,-25.321369],[-48.102068,-25.318469],[-48.099568,-25.316269],[-48.098368,-25.312669],[-48.096668,-25.309469],[-48.091168,-25.304369],[-48.084268,-25.296769],[-48.079068,-25.290669],[-48.069368,-25.280169],[-48.063768,-25.274469],[-48.061268,-25.271869],[-48.056368,-25.267369],[-48.052568,-25.263869],[-48.046868,-25.258469],[-48.043068,-25.255269],[-48.034768,-25.247969],[-48.025368,-25.240069],[-48.016768,-25.233069],[-48.013168,-25.230269],[-48.002368,-25.221669],[-47.991568,-25.212969],[-47.983668,-25.206169],[-47.978068,-25.202169],[-47.974568,-25.200969],[-47.972268,-25.198269],[-47.970868,-25.195769],[-47.968768,-25.193769],[-47.965368,-25.190869],[-47.962868,-25.188569],[-47.959768,-25.185869],[-47.956068,-25.182969],[-47.952968,-25.180269],[-47.945968,-25.174269],[-47.942468,-25.171469],[-47.934868,-25.166969],[-47.930868,-25.165069],[-47.927568,-25.162269],[-47.923268,-25.160669],[-47.918868,-25.159769],[-47.914568,-25.159169],[-47.912768,-25.156569],[-47.915568,-25.155869],[-47.918868,-25.154169],[-47.919568,-25.150069],[-47.918968,-25.145669],[-47.916668,-25.143569],[-47.915568,-25.139669],[-47.914468,-25.135369],[-47.913068,-25.130969],[-47.911768,-25.127369],[-47.909868,-25.123569],[-47.908368,-25.119469],[-47.905868,-25.116969],[-47.903368,-25.114469],[-47.900768,-25.110669],[-47.897168,-25.108569],[-47.895768,-25.105269],[-47.899768,-25.104169],[-47.902568,-25.102569],[-47.904068,-25.099569],[-47.904568,-25.094769],[-47.903968,-25.089769],[-47.903068,-25.086469],[-47.902668,-25.082369],[-47.902668,-25.079269],[-47.902568,-25.074869],[-47.902568,-25.070969],[-47.902368,-25.067669],[-47.903668,-25.064469],[-47.907368,-25.063069],[-47.910868,-25.052869],[-47.903768,-25.052469],[-47.900868,-25.052169],[-47.897568,-25.051869],[-47.894568,-25.051969],[-47.890768,-25.052169],[-47.887368,-25.051069],[-47.885968,-25.047469],[-47.885968,-25.043969],[-47.885468,-25.040869],[-47.884668,-25.037069],[-47.883868,-25.033869],[-47.882368,-25.029669],[-47.880268,-25.025069],[-47.878268,-25.021569],[-47.875468,-25.017069],[-47.872368,-25.012469],[-47.867168,-25.005469],[-47.862468,-24.999469],[-47.854268,-24.989469],[-47.850268,-24.984969],[-47.842868,-24.976669],[-47.836468,-24.969869],[-47.821868,-24.955769],[-47.811968,-24.947069],[-47.809668,-24.944869],[-47.806568,-24.942169],[-47.800268,-24.936669],[-47.797268,-24.934369],[-47.789768,-24.927969],[-47.778368,-24.918669],[-47.768468,-24.910569],[-47.759268,-24.902969],[-47.744968,-24.891769],[-47.731468,-24.880569],[-47.715868,-24.868269],[-47.694268,-24.852069],[-47.691368,-24.849969],[-47.685168,-24.845369],[-47.675468,-24.837969],[-47.659568,-24.826569],[-47.653168,-24.821769],[-47.641468,-24.812969],[-47.632068,-24.805869],[-47.622968,-24.798969],[-47.604268,-24.786369],[-47.591968,-24.777669],[-47.582668,-24.771769],[-47.576068,-24.767569],[-47.569968,-24.763569],[-47.565968,-24.761069],[-47.562668,-24.758869],[-47.560168,-24.757369],[-47.556868,-24.755269],[-47.553068,-24.753069],[-47.549968,-24.751269],[-47.547468,-24.749769],[-47.544168,-24.747969],[-47.540268,-24.745769],[-47.535668,-24.743069],[-47.530868,-24.740369],[-47.526168,-24.737769],[-47.521268,-24.735069],[-47.518468,-24.733569],[-47.513268,-24.730569],[-47.510368,-24.728869],[-47.504168,-24.725669],[-47.496068,-24.721469],[-47.489468,-24.718069],[-47.485068,-24.715869],[-47.482468,-24.714469],[-47.461968,-24.704369],[-47.437168,-24.691569],[-47.424768,-24.685169],[-47.421668,-24.682969],[-47.420268,-24.679769],[-47.414168,-24.674969],[-47.409468,-24.673869],[-47.405168,-24.672769],[-47.401468,-24.669669],[-47.396768,-24.665369],[-47.390368,-24.660269],[-47.385268,-24.656769],[-47.378768,-24.652369],[-47.375268,-24.650069],[-47.366968,-24.645069],[-47.362168,-24.642069],[-47.356968,-24.639269],[-47.348968,-24.634269],[-47.340368,-24.629169],[-47.328268,-24.622169],[-47.319368,-24.616869],[-47.309768,-24.610869],[-47.300268,-24.605269],[-47.292168,-24.600269],[-47.280868,-24.593769],[-47.274268,-24.590169],[-47.265668,-24.585169],[-47.262368,-24.583469],[-47.253468,-24.578569],[-47.249468,-24.576469],[-47.243268,-24.574269],[-47.239668,-24.573769],[-47.236468,-24.571669],[-47.233168,-24.572069],[-47.228868,-24.571669],[-47.225368,-24.569069],[-47.224568,-24.565469],[-47.226668,-24.561569],[-47.224968,-24.557469],[-47.221168,-24.554069],[-47.217568,-24.551369],[-47.214568,-24.549169],[-47.211568,-24.547169],[-47.208668,-24.545069],[-47.205668,-24.543069],[-47.201468,-24.540269],[-47.197068,-24.538069],[-47.191668,-24.535969],[-47.187268,-24.534469],[-47.187268,-24.530569],[-47.186068,-24.525369],[-47.182668,-24.522069],[-47.179368,-24.519269],[-47.176368,-24.516769],[-47.173268,-24.514269],[-47.166668,-24.509169],[-47.162868,-24.506269],[-47.157668,-24.502369],[-47.153168,-24.498769],[-47.149468,-24.496069],[-47.144568,-24.492269],[-47.140768,-24.489469],[-47.134668,-24.485269],[-47.131368,-24.482869],[-47.123868,-24.477769],[-47.121268,-24.475869],[-47.112168,-24.469769],[-47.109468,-24.467969],[-47.097268,-24.460169],[-47.090468,-24.455769],[-47.082368,-24.450969],[-47.078568,-24.448769],[-47.070668,-24.443769],[-47.065168,-24.440269],[-47.058668,-24.436369],[-47.053668,-24.433369],[-47.048568,-24.431169],[-47.044768,-24.429669],[-47.040368,-24.428269],[-47.035968,-24.426969],[-47.030468,-24.427169],[-47.027268,-24.425869],[-47.024468,-24.423969],[-47.021868,-24.422469],[-47.020768,-24.419269],[-47.020068,-24.415569],[-47.017068,-24.413369],[-47.013968,-24.412769],[-47.011068,-24.414269],[-47.008468,-24.412769],[-47.006668,-24.409869],[-47.001068,-24.409169],[-47.004368,-24.406269],[-47.004368,-24.402269],[-47.002968,-24.397969],[-47.007368,-24.396769],[-47.010168,-24.394269],[-47.009968,-24.389569],[-47.012868,-24.387969],[-47.015968,-24.387069],[-47.017068,-24.384269],[-47.017468,-24.380169],[-47.015368,-24.375469],[-47.013168,-24.371969],[-47.011068,-24.369469],[-47.008068,-24.366869],[-47.004168,-24.363669],[-47.001668,-24.360269],[-47.000968,-24.357269],[-46.999368,-24.353869],[-46.997368,-24.350869],[-46.999868,-24.348669],[-47.001268,-24.344869],[-47.000168,-24.340969],[-47.001868,-24.336969],[-46.999768,-24.332569],[-46.995868,-24.327569],[-46.993368,-24.324969],[-46.990068,-24.321569],[-46.986868,-24.318469],[-46.984168,-24.315969],[-46.981468,-24.313469],[-46.977868,-24.310269],[-46.972368,-24.305569],[-46.967668,-24.301669],[-46.962868,-24.297869],[-46.958968,-24.294969],[-46.956768,-24.293069],[-46.952968,-24.290269],[-46.950368,-24.288169],[-46.946368,-24.285369],[-46.940568,-24.280969],[-46.936668,-24.278369],[-46.930868,-24.274069],[-46.928268,-24.272569],[-46.920368,-24.267369],[-46.909868,-24.260669],[-46.907068,-24.258869],[-46.898668,-24.253469],[-46.893668,-24.250469],[-46.891268,-24.248769],[-46.887668,-24.246369],[-46.883168,-24.243069],[-46.878268,-24.239769],[-46.874368,-24.237469],[-46.871868,-24.235769],[-46.869068,-24.233969],[-46.866368,-24.232269],[-46.862768,-24.230069],[-46.860268,-24.228369],[-46.857168,-24.226369],[-46.853968,-24.224469],[-46.849468,-24.221469],[-46.843968,-24.217969],[-46.839868,-24.215669],[-46.837268,-24.214069],[-46.833268,-24.211769],[-46.829568,-24.209669],[-46.825968,-24.207569],[-46.820168,-24.204069],[-46.814668,-24.201269],[-46.810868,-24.201569],[-46.807668,-24.200969],[-46.804168,-24.199069],[-46.801468,-24.196869],[-46.799368,-24.194569],[-46.795768,-24.193869],[-46.793068,-24.191969],[-46.790568,-24.189969],[-46.787468,-24.186669],[-46.783768,-24.185169],[-46.779468,-24.182669],[-46.773968,-24.179769],[-46.769368,-24.177469],[-46.765968,-24.175469],[-46.762868,-24.173969],[-46.758468,-24.171469],[-46.754868,-24.169569],[-46.751268,-24.167569],[-46.748568,-24.166169],[-46.745168,-24.164269],[-46.741368,-24.162069],[-46.737568,-24.159869],[-46.733568,-24.157769],[-46.727568,-24.154469],[-46.721268,-24.150869],[-46.715868,-24.147869],[-46.712368,-24.145769],[-46.709768,-24.143669],[-46.702068,-24.139869],[-46.694368,-24.135769],[-46.690168,-24.133769],[-46.686668,-24.131769],[-46.683268,-24.129869],[-46.679068,-24.127669],[-46.675868,-24.125769],[-46.672768,-24.124069],[-46.668968,-24.122169],[-46.662068,-24.118369],[-46.657068,-24.115769],[-46.652868,-24.113569],[-46.649768,-24.111869],[-46.646268,-24.110269],[-46.642668,-24.108369],[-46.635368,-24.104669],[-46.632368,-24.103069],[-46.629068,-24.101469],[-46.626368,-24.100269],[-46.623568,-24.098869],[-46.617668,-24.096169],[-46.613568,-24.094169],[-46.609768,-24.092269],[-46.606068,-24.089269],[-46.600568,-24.087869],[-46.591268,-24.083269],[-46.582968,-24.079569],[-46.574968,-24.075769],[-46.565968,-24.071369],[-46.558368,-24.067769],[-46.549368,-24.063569],[-46.538668,-24.058769],[-46.530168,-24.054769],[-46.520368,-24.050469],[-46.510668,-24.046169],[-46.501568,-24.042269],[-46.497668,-24.040569],[-46.492968,-24.038469],[-46.484168,-24.034769],[-46.479268,-24.032869],[-46.474568,-24.031169],[-46.464768,-24.027269],[-46.454968,-24.023969],[-46.450668,-24.022569],[-46.445468,-24.021069],[-46.434068,-24.018269],[-46.424768,-24.016569],[-46.416168,-24.015669],[-46.408068,-24.015769],[-46.401568,-24.017869],[-46.399468,-24.020769],[-46.399068,-24.025869],[-46.400068,-24.029269],[-46.400068,-24.032369],[-46.396168,-24.030069],[-46.393968,-24.027869],[-46.392068,-24.025469],[-46.390668,-24.022669],[-46.390368,-24.018169],[-46.384968,-24.017669],[-46.386568,-24.014669],[-46.389868,-24.012969],[-46.392068,-24.010269],[-46.391768,-24.007369],[-46.389368,-24.005469],[-46.390768,-24.002369],[-46.392068,-23.997669],[-46.389268,-23.996369],[-46.385368,-23.995469],[-46.381568,-23.994669],[-46.378268,-23.992969],[-46.375768,-23.989669],[-46.374668,-23.986369],[-46.377468,-23.984669],[-46.379068,-23.980969],[-46.381868,-23.978069],[-46.385768,-23.977769],[-46.387968,-23.975669],[-46.384868,-23.973069],[-46.381068,-23.970569],[-46.376568,-23.969569],[-46.373268,-23.972869],[-46.371968,-23.976669],[-46.371068,-23.980569],[-46.367768,-23.981769],[-46.368268,-23.978569],[-46.368568,-23.974869],[-46.366368,-23.973069],[-46.363368,-23.971969],[-46.360368,-23.971369],[-46.356368,-23.970869],[-46.351368,-23.972369],[-46.346268,-23.970669],[-46.342668,-23.971169],[-46.339068,-23.971669],[-46.335468,-23.972069],[-46.332268,-23.972669],[-46.329268,-23.973369],[-46.325468,-23.974569],[-46.321368,-23.976269],[-46.317068,-23.979169],[-46.314968,-23.981069],[-46.311368,-23.984669],[-46.309068,-23.987169],[-46.307268,-23.989969],[-46.305168,-23.993369],[-46.309468,-23.995869],[-46.312968,-23.997769],[-46.316568,-23.997669],[-46.320468,-23.998269],[-46.320668,-24.001269],[-46.320768,-24.004169],[-46.323168,-24.007769],[-46.323268,-24.012669],[-46.322968,-24.016769],[-46.324268,-24.020069],[-46.322468,-24.022569],[-46.319368,-24.024269],[-46.317068,-24.022569],[-46.314868,-24.020369],[-46.312268,-24.022569],[-46.310568,-24.026469],[-46.307168,-24.023669],[-46.305568,-24.020969],[-46.302168,-24.018269],[-46.299168,-24.016069],[-46.295868,-24.015969],[-46.293168,-24.017169],[-46.291668,-24.021069],[-46.288468,-24.024769],[-46.284568,-24.026169],[-46.284868,-24.029269],[-46.285068,-24.032569],[-46.287268,-24.034469],[-46.288068,-24.037569],[-46.288968,-24.040369],[-46.287568,-24.044169],[-46.282668,-24.042169],[-46.281468,-24.038469],[-46.278468,-24.035969],[-46.277668,-24.031269],[-46.279568,-24.027669],[-46.279768,-24.024069],[-46.278468,-24.020669],[-46.275768,-24.017869],[-46.272068,-24.014569],[-46.267668,-24.013269],[-46.264268,-24.012869],[-46.266068,-24.009669],[-46.266468,-24.005969],[-46.263468,-24.002669],[-46.259368,-24.000169],[-46.256568,-23.999469],[-46.253468,-23.997669],[-46.250468,-23.996569],[-46.247668,-23.994769],[-46.243368,-23.992169],[-46.239668,-23.990769],[-46.236368,-23.989969],[-46.232868,-23.989369],[-46.227868,-23.988069],[-46.223168,-23.987269],[-46.217568,-23.986469],[-46.212968,-23.986169],[-46.209268,-23.987169],[-46.205668,-23.989369],[-46.203168,-23.992769],[-46.205668,-23.996269],[-46.206868,-23.999469],[-46.202868,-24.000269],[-46.200168,-23.996869],[-46.196668,-23.994169],[-46.193568,-23.992269],[-46.191068,-23.990069],[-46.186868,-23.991069],[-46.182468,-23.990369],[-46.185168,-23.986969],[-46.185468,-23.982469],[-46.185868,-23.978069],[-46.184968,-23.972369],[-46.185168,-23.967969],[-46.184368,-23.964869],[-46.181868,-23.961569],[-46.177468,-23.960169],[-46.174468,-23.958969],[-46.171768,-23.955969],[-46.169468,-23.951069],[-46.167268,-23.947669],[-46.164568,-23.944869],[-46.166168,-23.941669],[-46.167868,-23.938369],[-46.171168,-23.938869],[-46.173568,-23.940769],[-46.177268,-23.939869],[-46.179668,-23.936369],[-46.180468,-23.932269],[-46.180168,-23.928669],[-46.178368,-23.923869],[-46.173968,-23.920369],[-46.171468,-23.917169],[-46.168068,-23.915269],[-46.168068,-23.912269],[-46.165668,-23.909869],[-46.162768,-23.907869],[-46.159468,-23.906769],[-46.155168,-23.908369],[-46.150868,-23.906669],[-46.152068,-23.903369],[-46.151568,-23.899769],[-46.149868,-23.895769],[-46.147168,-23.893569],[-46.144268,-23.893169],[-46.139868,-23.891369],[-46.137968,-23.886569],[-46.139968,-23.882469],[-46.140368,-23.879469],[-46.138268,-23.877369],[-46.138468,-23.873369],[-46.134968,-23.871669],[-46.136368,-23.869069],[-46.133868,-23.865069],[-46.129568,-23.862969],[-46.124968,-23.859669],[-46.127968,-23.856769],[-46.132368,-23.856969],[-46.132768,-23.852769],[-46.132168,-23.849769],[-46.130268,-23.846369],[-46.126868,-23.842869],[-46.123568,-23.840469],[-46.120868,-23.838669],[-46.118268,-23.836569],[-46.115368,-23.835069],[-46.112268,-23.833469],[-46.108968,-23.831869],[-46.104968,-23.829869],[-46.100568,-23.827669],[-46.096168,-23.825669],[-46.093168,-23.824269],[-46.089368,-23.822369],[-46.085068,-23.820669],[-46.079968,-23.818869],[-46.075668,-23.817369],[-46.071668,-23.815969],[-46.066268,-23.814569],[-46.060868,-23.814069],[-46.057268,-23.814369],[-46.053268,-23.815769],[-46.049368,-23.817969],[-46.046668,-23.820669],[-46.045368,-23.824269],[-46.047468,-23.827969],[-46.050068,-23.829669],[-46.046868,-23.831469],[-46.043168,-23.829569],[-46.039868,-23.826569],[-46.039468,-23.823569],[-46.036268,-23.821069],[-46.038968,-23.817369],[-46.037068,-23.813069],[-46.034168,-23.810469],[-46.030468,-23.808569],[-46.024468,-23.805569],[-46.020168,-23.803969],[-46.014268,-23.801969],[-46.009168,-23.800569],[-46.005668,-23.799769],[-46.002368,-23.799969],[-46.000168,-23.802569],[-45.996668,-23.802469],[-45.993268,-23.800369],[-45.991968,-23.796769],[-45.991168,-23.793369],[-45.988068,-23.791669],[-45.985368,-23.790569],[-45.981768,-23.788969],[-45.977868,-23.787269],[-45.971368,-23.784869],[-45.966968,-23.783469],[-45.958668,-23.781169],[-45.951868,-23.778969],[-45.940768,-23.775469],[-45.926868,-23.771869],[-45.917268,-23.769369],[-45.909568,-23.767869],[-45.897168,-23.765369],[-45.892168,-23.764669],[-45.888568,-23.763769],[-45.885468,-23.763169],[-45.881368,-23.762769],[-45.876968,-23.762369],[-45.870868,-23.760969],[-45.865768,-23.760269],[-45.861668,-23.759869],[-45.855368,-23.759269],[-45.850268,-23.758769],[-45.845868,-23.758469],[-45.841968,-23.757969],[-45.832868,-23.757669],[-45.828968,-23.757469],[-45.822668,-23.757369],[-45.817368,-23.757669],[-45.812968,-23.758069],[-45.807668,-23.759069],[-45.803668,-23.760669],[-45.801868,-23.763469],[-45.803568,-23.768169],[-45.799968,-23.769069],[-45.796468,-23.768969],[-45.793368,-23.769269],[-45.789468,-23.766069],[-45.784268,-23.765369],[-45.778868,-23.764669],[-45.773168,-23.762469],[-45.769868,-23.762369],[-45.765768,-23.762469],[-45.762368,-23.763569],[-45.761068,-23.766469],[-45.757468,-23.769669],[-45.753768,-23.768569],[-45.749068,-23.767569],[-45.744068,-23.767569],[-45.740068,-23.767569],[-45.736168,-23.768169],[-45.732468,-23.768669],[-45.728868,-23.769269],[-45.725668,-23.770069],[-45.720668,-23.772169],[-45.716268,-23.773169],[-45.712568,-23.771469],[-45.708668,-23.770969],[-45.705668,-23.772069],[-45.701768,-23.773169],[-45.697668,-23.773469],[-45.694568,-23.775669],[-45.695968,-23.779769],[-45.694068,-23.782369],[-45.690568,-23.780969],[-45.686268,-23.778169],[-45.684068,-23.775369],[-45.680468,-23.774569],[-45.675868,-23.774569],[-45.671068,-23.775069],[-45.666768,-23.776769],[-45.664468,-23.779869],[-45.664468,-23.784569],[-45.662268,-23.782669],[-45.659468,-23.780869],[-45.655168,-23.778469],[-45.650168,-23.778069],[-45.646568,-23.778669],[-45.642668,-23.778369],[-45.641068,-23.782369],[-45.637668,-23.783369],[-45.633868,-23.783469],[-45.630168,-23.784269],[-45.625868,-23.786969],[-45.625968,-23.791369],[-45.624768,-23.794969],[-45.625568,-23.798869],[-45.624768,-23.801869],[-45.621668,-23.803669],[-45.617568,-23.803269],[-45.616068,-23.799969],[-45.611168,-23.798869],[-45.606768,-23.799469],[-45.601668,-23.797769],[-45.596768,-23.797869],[-45.593668,-23.796069],[-45.589868,-23.795869],[-45.587268,-23.793069],[-45.583168,-23.792269],[-45.579568,-23.792269],[-45.575468,-23.792269],[-45.571868,-23.792169],[-45.566568,-23.791969],[-45.562368,-23.792069],[-45.559168,-23.792869],[-45.556568,-23.794169],[-45.554668,-23.796469],[-45.555168,-23.800369],[-45.552768,-23.802469],[-45.552568,-23.805469],[-45.553568,-23.809069],[-45.549368,-23.809669],[-45.546168,-23.809669],[-45.542468,-23.810269],[-45.537868,-23.814069],[-45.534568,-23.818269],[-45.533468,-23.822769],[-45.535368,-23.824869],[-45.537868,-23.827669],[-45.536468,-23.830369],[-45.532568,-23.828969],[-45.528668,-23.829569],[-45.524068,-23.829269],[-45.520768,-23.831869],[-45.516268,-23.832269],[-45.512468,-23.832569],[-45.511568,-23.836969],[-45.513768,-23.840169],[-45.509368,-23.840869],[-45.503468,-23.841669],[-45.499868,-23.839069],[-45.496568,-23.838369],[-45.492568,-23.837269],[-45.491568,-23.834369],[-45.489468,-23.830669],[-45.484168,-23.829569],[-45.480268,-23.828969],[-45.477268,-23.827369],[-45.474468,-23.824869],[-45.469468,-23.822469],[-45.467268,-23.819369],[-45.462968,-23.819869],[-45.458968,-23.821669],[-45.455168,-23.823469],[-45.451568,-23.825169],[-45.447368,-23.828569],[-45.444668,-23.831869],[-45.441868,-23.828869],[-45.439068,-23.826769],[-45.434668,-23.828169],[-45.430468,-23.831469],[-45.425868,-23.829569],[-45.422468,-23.828269],[-45.420368,-23.824969],[-45.416668,-23.823469],[-45.412868,-23.824269],[-45.410568,-23.822069],[-45.407768,-23.821069],[-45.405868,-23.818869],[-45.408168,-23.813769],[-45.405668,-23.810469],[-45.401268,-23.812669],[-45.397568,-23.809069],[-45.396868,-23.804669],[-45.398168,-23.799969],[-45.399368,-23.796369],[-45.398668,-23.792869],[-45.397668,-23.788669],[-45.398368,-23.784169],[-45.397868,-23.780069],[-45.400368,-23.776969],[-45.401268,-23.772969],[-45.403068,-23.768769],[-45.405868,-23.764669],[-45.408668,-23.760369],[-45.411268,-23.756069],[-45.411668,-23.751069],[-45.409168,-23.747669],[-45.406168,-23.743569],[-45.402668,-23.740769],[-45.399768,-23.736869],[-45.398668,-23.733169],[-45.399268,-23.730269],[-45.397868,-23.727469],[-45.397568,-23.723969],[-45.400668,-23.724869],[-45.404268,-23.725269],[-45.408668,-23.725069],[-45.413068,-23.724269],[-45.416168,-23.725869],[-45.419268,-23.725369],[-45.421368,-23.722569],[-45.422868,-23.718769],[-45.424468,-23.714869],[-45.425568,-23.711869],[-45.429768,-23.712269],[-45.427568,-23.708769],[-45.426968,-23.705669],[-45.427968,-23.700669],[-45.428868,-23.695969],[-45.429468,-23.691669],[-45.430068,-23.687669],[-45.430268,-23.684169],[-45.430468,-23.680469],[-45.430468,-23.676569],[-45.430468,-23.673569],[-45.430068,-23.669569],[-45.429668,-23.665269],[-45.428968,-23.662069],[-45.428368,-23.658669],[-45.427268,-23.654869],[-45.426068,-23.651269],[-45.424668,-23.647169],[-45.422868,-23.643269],[-45.421368,-23.640169],[-45.419768,-23.637669],[-45.418068,-23.635169],[-45.415668,-23.632369],[-45.413068,-23.629169],[-45.409868,-23.626269],[-45.405168,-23.623369],[-45.400768,-23.623269],[-45.398268,-23.625769],[-45.395768,-23.629869],[-45.392068,-23.631069],[-45.389668,-23.633069],[-45.386368,-23.633069],[-45.383868,-23.629869],[-45.381768,-23.627669],[-45.379168,-23.625269],[-45.375768,-23.625469],[-45.373768,-23.627669],[-45.369768,-23.629469],[-45.366668,-23.627369],[-45.363268,-23.625769],[-45.359968,-23.625469],[-45.357468,-23.624069],[-45.355068,-23.619769],[-45.353068,-23.616169],[-45.351468,-23.613369],[-45.349868,-23.610369],[-45.346968,-23.605869],[-45.344168,-23.601669],[-45.340868,-23.597369],[-45.337868,-23.593969],[-45.334268,-23.590469],[-45.330768,-23.587269],[-45.328168,-23.585069],[-45.325768,-23.583169],[-45.322468,-23.581069],[-45.319268,-23.579269],[-45.315168,-23.577869],[-45.310868,-23.575669],[-45.307268,-23.575969],[-45.304068,-23.574569],[-45.299968,-23.573169],[-45.295668,-23.572369],[-45.292868,-23.574269],[-45.288668,-23.572969],[-45.284868,-23.572369],[-45.281468,-23.572769],[-45.278668,-23.574069],[-45.275968,-23.576269],[-45.277268,-23.580969],[-45.279268,-23.583469],[-45.278368,-23.587069],[-45.272868,-23.586769],[-45.269368,-23.587969],[-45.265068,-23.588369],[-45.261068,-23.592369],[-45.258168,-23.590569],[-45.254968,-23.589769],[-45.252668,-23.592669],[-45.248768,-23.592569],[-45.244068,-23.592569],[-45.241168,-23.588169],[-45.237168,-23.584769],[-45.233368,-23.582669],[-45.229468,-23.582169],[-45.225568,-23.583269],[-45.222368,-23.581869],[-45.218168,-23.581569],[-45.214468,-23.581169],[-45.211568,-23.582569],[-45.209268,-23.578869],[-45.210068,-23.574669],[-45.210868,-23.571569],[-45.213768,-23.568869],[-45.212268,-23.565169],[-45.216168,-23.564569],[-45.218368,-23.561869],[-45.217868,-23.558069],[-45.220568,-23.555069],[-45.223668,-23.551569],[-45.226668,-23.551169],[-45.229668,-23.550269],[-45.229768,-23.545069],[-45.228868,-23.541769],[-45.227868,-23.538469],[-45.225268,-23.533769],[-45.220868,-23.529769],[-45.215368,-23.527669],[-45.211268,-23.524469],[-45.206468,-23.522169],[-45.202068,-23.520769],[-45.197368,-23.520169],[-45.194268,-23.520369],[-45.190768,-23.521569],[-45.190168,-23.524369],[-45.187268,-23.527669],[-45.187668,-23.530969],[-45.188568,-23.534269],[-45.185868,-23.538769],[-45.180868,-23.538069],[-45.176868,-23.539569],[-45.173868,-23.542269],[-45.169968,-23.539869],[-45.165568,-23.541069],[-45.162368,-23.541369],[-45.159468,-23.538069],[-45.158968,-23.533469],[-45.158468,-23.530069],[-45.162068,-23.531569],[-45.165868,-23.529269],[-45.166768,-23.525069],[-45.165668,-23.520469],[-45.164468,-23.516369],[-45.167168,-23.512969],[-45.170768,-23.512169],[-45.173168,-23.510169],[-45.172768,-23.506569],[-45.172468,-23.502369],[-45.174768,-23.499369],[-45.172768,-23.495469],[-45.168968,-23.492969],[-45.164968,-23.494169],[-45.163168,-23.497969],[-45.159768,-23.499669],[-45.157368,-23.497769],[-45.153668,-23.498669],[-45.149568,-23.497769],[-45.145068,-23.497669],[-45.143668,-23.500869],[-45.138768,-23.501069],[-45.134968,-23.504569],[-45.134168,-23.509069],[-45.130968,-23.511269],[-45.127968,-23.514069],[-45.124068,-23.515369],[-45.121568,-23.517069],[-45.119368,-23.520169],[-45.114168,-23.519369],[-45.113068,-23.523269],[-45.112268,-23.526169],[-45.107768,-23.524369],[-45.107268,-23.520369],[-45.108268,-23.515669],[-45.109968,-23.511769],[-45.107768,-23.508769],[-45.112768,-23.507369],[-45.118068,-23.505169],[-45.122768,-23.502669],[-45.119168,-23.500569],[-45.115368,-23.497669],[-45.109968,-23.494769],[-45.106768,-23.490769],[-45.103568,-23.490769],[-45.103168,-23.496269],[-45.099568,-23.494069],[-45.095968,-23.492469],[-45.092068,-23.492669],[-45.088968,-23.493269],[-45.085768,-23.494169],[-45.083668,-23.496169],[-45.083768,-23.499469],[-45.084568,-23.502369],[-45.085068,-23.505269],[-45.085368,-23.508769],[-45.085668,-23.512469],[-45.084768,-23.516069],[-45.081868,-23.518669],[-45.080668,-23.513869],[-45.079568,-23.508869],[-45.076768,-23.505969],[-45.076468,-23.502669],[-45.073768,-23.500169],[-45.071368,-23.497469],[-45.068068,-23.493369],[-45.072368,-23.493069],[-45.074068,-23.489369],[-45.073168,-23.484469],[-45.070968,-23.479469],[-45.069068,-23.476169],[-45.066968,-23.473069],[-45.064068,-23.469269],[-45.061268,-23.466969],[-45.058268,-23.466969],[-45.056168,-23.465069],[-45.052768,-23.466169],[-45.048668,-23.463169],[-45.045068,-23.461469],[-45.039468,-23.462269],[-45.035568,-23.464069],[-45.032268,-23.464769],[-45.028968,-23.462269],[-45.030368,-23.459369],[-45.034468,-23.458469],[-45.035868,-23.453869],[-45.036668,-23.449269],[-45.040268,-23.448469],[-45.043368,-23.449569],[-45.046968,-23.452369],[-45.050068,-23.455969],[-45.053968,-23.458169],[-45.057968,-23.457869],[-45.060768,-23.455369],[-45.063768,-23.451869],[-45.066568,-23.447969],[-45.068168,-23.443769],[-45.069068,-23.439569],[-45.069268,-23.436269],[-45.068768,-23.433069],[-45.065168,-23.431669],[-45.060768,-23.430469],[-45.062768,-23.427469],[-45.064168,-23.424969],[-45.062968,-23.422169],[-45.059868,-23.418969],[-45.056568,-23.417469],[-45.053068,-23.416769],[-45.049668,-23.417269],[-45.046668,-23.418469],[-45.045868,-23.421469],[-45.047468,-23.424669],[-45.044268,-23.425069],[-45.042168,-23.422469],[-45.039168,-23.421769],[-45.037768,-23.418469],[-45.034468,-23.415369],[-45.029868,-23.414469],[-45.025468,-23.414169],[-45.022568,-23.415269],[-45.022568,-23.418169],[-45.019368,-23.418469],[-45.014368,-23.418069],[-45.011868,-23.414269],[-45.009368,-23.412469],[-45.008768,-23.408869],[-45.006268,-23.404069],[-45.001668,-23.401569],[-44.997468,-23.399469],[-44.992668,-23.397869],[-44.988368,-23.398669],[-44.984468,-23.397169],[-44.981068,-23.399269],[-44.976368,-23.398769],[-44.974168,-23.395669],[-44.971668,-23.392969],[-44.970968,-23.388969],[-44.967568,-23.386769],[-44.963668,-23.385969],[-44.960868,-23.381769],[-44.958468,-23.379569],[-44.955468,-23.379069],[-44.951868,-23.379169],[-44.949268,-23.377669],[-44.949868,-23.373369],[-44.949268,-23.369969],[-44.948168,-23.366669],[-44.947368,-23.363269],[-44.943868,-23.360069],[-44.940968,-23.356769],[-44.936968,-23.355269],[-44.934168,-23.354269],[-44.929768,-23.353169],[-44.924768,-23.352369],[-44.920668,-23.350269],[-44.917168,-23.347369],[-44.913468,-23.343069],[-44.911468,-23.337969],[-44.908468,-23.335069],[-44.904268,-23.334269],[-44.899868,-23.335069],[-44.895168,-23.336269],[-44.890668,-23.337969],[-44.887368,-23.339569],[-44.884568,-23.343069],[-44.882768,-23.346369],[-44.882168,-23.349469],[-44.885368,-23.352769],[-44.888168,-23.355669],[-44.889668,-23.359269],[-44.887868,-23.362469],[-44.888468,-23.366369],[-44.891568,-23.369669],[-44.888968,-23.371869],[-44.884968,-23.368669],[-44.883068,-23.364669],[-44.879968,-23.363269],[-44.875468,-23.363569],[-44.872668,-23.361469],[-44.870268,-23.359169],[-44.866468,-23.357769],[-44.862468,-23.357569],[-44.857868,-23.358869],[-44.853068,-23.360069],[-44.848668,-23.361369],[-44.844568,-23.363069],[-44.841768,-23.364969],[-44.839468,-23.366969],[-44.837068,-23.370769],[-44.838968,-23.375769],[-44.839468,-23.379469],[-44.842968,-23.382969],[-44.843668,-23.386869],[-44.840168,-23.387469],[-44.835468,-23.386769],[-44.831268,-23.385369],[-44.829068,-23.387369],[-44.826468,-23.385969],[-44.822468,-23.382769],[-44.818268,-23.381269],[-44.813068,-23.380269],[-44.808768,-23.379369],[-44.804768,-23.378369],[-44.801368,-23.375469],[-44.800768,-23.371169],[-44.796668,-23.369369],[-44.791968,-23.369669],[-44.788168,-23.370569],[-44.784768,-23.370869],[-44.783468,-23.375969],[-44.780468,-23.376269],[-44.777268,-23.374869],[-44.773468,-23.373769],[-44.768968,-23.372369],[-44.766068,-23.372369],[-44.763468,-23.370869],[-44.759968,-23.369969],[-44.756768,-23.368669],[-44.752968,-23.367269],[-44.747968,-23.366569],[-44.743268,-23.366169],[-44.739068,-23.366969],[-44.733968,-23.369069],[-44.728968,-23.369069],[-44.724768,-23.368269],[-44.727568,-23.366069],[-44.731468,-23.361169],[-44.729968,-23.355669],[-44.725268,-23.354669],[-44.721268,-23.356669],[-44.720968,-23.353669],[-44.721668,-23.349969],[-44.717868,-23.346269],[-44.711868,-23.344269],[-44.707868,-23.343069],[-44.704568,-23.342669],[-44.702868,-23.340369],[-44.699968,-23.340969],[-44.697868,-23.343369],[-44.694268,-23.343069],[-44.691068,-23.344569],[-44.690168,-23.347269],[-44.685768,-23.347569],[-44.685168,-23.350669],[-44.682568,-23.349469],[-44.682168,-23.346269],[-44.683768,-23.342969],[-44.681868,-23.339869],[-44.678068,-23.338369],[-44.674968,-23.336869],[-44.673568,-23.340669],[-44.672768,-23.344469],[-44.667468,-23.345969],[-44.663068,-23.346469],[-44.659468,-23.345969],[-44.662568,-23.343069],[-44.661768,-23.339069],[-44.657568,-23.341269],[-44.653768,-23.342269],[-44.651168,-23.340569],[-44.648968,-23.336969],[-44.646568,-23.333969],[-44.642868,-23.333169],[-44.638868,-23.331469],[-44.634568,-23.333269],[-44.630968,-23.335469],[-44.629068,-23.338769],[-44.627668,-23.342269],[-44.624068,-23.339369],[-44.620168,-23.340869],[-44.617668,-23.345169],[-44.616568,-23.349869],[-44.613568,-23.347869],[-44.610368,-23.348369],[-44.606968,-23.349469],[-44.607468,-23.353369],[-44.608168,-23.357469],[-44.607768,-23.360369],[-44.607268,-23.364969],[-44.603968,-23.365269],[-44.603168,-23.362269],[-44.600268,-23.359969],[-44.595968,-23.358969],[-44.592068,-23.361769],[-44.589068,-23.361169],[-44.586168,-23.359669],[-44.582868,-23.357269],[-44.580368,-23.354669],[-44.578568,-23.351469],[-44.575668,-23.349169],[-44.572468,-23.345669],[-44.570468,-23.342369],[-44.567768,-23.338369],[-44.565568,-23.335469],[-44.563768,-23.332969],[-44.561968,-23.329969],[-44.562968,-23.326069],[-44.565568,-23.322969],[-44.564068,-23.320269],[-44.561568,-23.316569],[-44.560768,-23.311369],[-44.557768,-23.308069],[-44.556068,-23.304969],[-44.551968,-23.304369],[-44.550068,-23.307169],[-44.548268,-23.304669],[-44.545268,-23.302969],[-44.541768,-23.303069],[-44.540268,-23.300469],[-44.538968,-23.296769],[-44.535968,-23.293069],[-44.531268,-23.290369],[-44.528768,-23.287569],[-44.525668,-23.287769],[-44.523768,-23.290069],[-44.520168,-23.290969],[-44.516768,-23.291769],[-44.513468,-23.292069],[-44.513868,-23.288769],[-44.515368,-23.285869],[-44.519368,-23.283469],[-44.518768,-23.280069],[-44.521468,-23.278769],[-44.524368,-23.276469],[-44.526868,-23.273169],[-44.529468,-23.271769],[-44.533068,-23.270369],[-44.535668,-23.268969],[-44.538868,-23.266869],[-44.542268,-23.269969],[-44.546068,-23.273269],[-44.549768,-23.273669],[-44.552468,-23.271169],[-44.557268,-23.272569],[-44.561968,-23.272269],[-44.565968,-23.271569],[-44.569068,-23.271269],[-44.572468,-23.271069],[-44.576368,-23.269369],[-44.579668,-23.270469],[-44.583268,-23.267669],[-44.584368,-23.263769],[-44.581868,-23.262069],[-44.581268,-23.258869],[-44.579268,-23.256069],[-44.576268,-23.253469],[-44.575468,-23.249369],[-44.577668,-23.246869],[-44.575668,-23.243669],[-44.572468,-23.240769],[-44.569668,-23.238369],[-44.567368,-23.236169],[-44.564168,-23.233869],[-44.560768,-23.230969],[-44.560168,-23.227369],[-44.563868,-23.228869],[-44.567468,-23.229969],[-44.570968,-23.230369],[-44.574068,-23.232869],[-44.577968,-23.232869],[-44.581768,-23.232769],[-44.586468,-23.232569],[-44.591268,-23.232769],[-44.594068,-23.233869],[-44.597768,-23.236569],[-44.596768,-23.241069],[-44.597368,-23.244169],[-44.600568,-23.246969],[-44.605268,-23.249669],[-44.608568,-23.251569],[-44.611368,-23.252069],[-44.614968,-23.252969],[-44.617568,-23.255969],[-44.620568,-23.259169],[-44.621868,-23.263969],[-44.623368,-23.267869],[-44.625568,-23.270069],[-44.627968,-23.274369],[-44.629368,-23.278169],[-44.630968,-23.282269],[-44.633268,-23.284769],[-44.635368,-23.286969],[-44.638568,-23.289469],[-44.642368,-23.287869],[-44.645368,-23.289469],[-44.642968,-23.293869],[-44.639868,-23.297169],[-44.638068,-23.300769],[-44.641868,-23.301669],[-44.646468,-23.301169],[-44.648368,-23.297469],[-44.650868,-23.294969],[-44.655868,-23.293169],[-44.654068,-23.288469],[-44.650068,-23.286669],[-44.648968,-23.283869],[-44.646568,-23.280969],[-44.642668,-23.277569],[-44.640968,-23.274469],[-44.640368,-23.271469],[-44.637768,-23.269269],[-44.635668,-23.264969],[-44.633868,-23.259669],[-44.631368,-23.255269],[-44.628268,-23.251669],[-44.626268,-23.248569],[-44.624968,-23.244669],[-44.620268,-23.242169],[-44.618068,-23.238869],[-44.615368,-23.236869],[-44.613568,-23.234169],[-44.617268,-23.233569],[-44.620768,-23.235269],[-44.624468,-23.236769],[-44.630268,-23.239369],[-44.636068,-23.238569],[-44.639568,-23.234469],[-44.644268,-23.235269],[-44.647868,-23.235269],[-44.652068,-23.235369],[-44.654768,-23.238669],[-44.658368,-23.239669],[-44.660568,-23.242969],[-44.663468,-23.246969],[-44.668068,-23.248269],[-44.669168,-23.245269],[-44.672468,-23.246969],[-44.674168,-23.249669],[-44.678068,-23.251069],[-44.682968,-23.252469],[-44.685168,-23.250569],[-44.680768,-23.246369],[-44.683268,-23.242169],[-44.679068,-23.242269],[-44.675768,-23.242269],[-44.673568,-23.239669],[-44.677168,-23.239169],[-44.676168,-23.236069],[-44.674368,-23.233869],[-44.672268,-23.230969],[-44.669668,-23.233569],[-44.667068,-23.234969],[-44.663868,-23.233169],[-44.660568,-23.231369],[-44.658068,-23.229169],[-44.655468,-23.225869],[-44.658768,-23.225969],[-44.662768,-23.226369],[-44.659568,-23.222069],[-44.660368,-23.218769],[-44.662068,-23.215569],[-44.658168,-23.215069],[-44.654068,-23.217569],[-44.651468,-23.221269],[-44.648668,-23.219869],[-44.646768,-23.217569],[-44.643768,-23.216169],[-44.639368,-23.213669],[-44.638968,-23.217269],[-44.633768,-23.217269],[-44.632768,-23.220969],[-44.629668,-23.223469],[-44.626668,-23.223169],[-44.624668,-23.219769],[-44.624068,-23.215669],[-44.626568,-23.214069],[-44.624768,-23.210369],[-44.622968,-23.207569],[-44.619768,-23.204969],[-44.622968,-23.203569],[-44.626668,-23.201769],[-44.626568,-23.197969],[-44.630568,-23.196269],[-44.635768,-23.196069],[-44.640068,-23.196269],[-44.643168,-23.196369],[-44.645368,-23.193269],[-44.644368,-23.187369],[-44.649068,-23.187669],[-44.653368,-23.189169],[-44.654568,-23.192369],[-44.655568,-23.196269],[-44.657268,-23.200269],[-44.657268,-23.203969],[-44.659768,-23.207569],[-44.663468,-23.206469],[-44.665968,-23.209069],[-44.668068,-23.206469],[-44.671368,-23.210369],[-44.676568,-23.212669],[-44.673868,-23.215869],[-44.677568,-23.219569],[-44.681168,-23.220969],[-44.683868,-23.223369],[-44.688368,-23.221969],[-44.691968,-23.225369],[-44.694168,-23.230369],[-44.697468,-23.232769],[-44.701068,-23.233069],[-44.705768,-23.233869],[-44.709768,-23.234469],[-44.713168,-23.233569],[-44.714768,-23.229569],[-44.712568,-23.227069],[-44.713368,-23.222769],[-44.709868,-23.219769],[-44.710068,-23.216669],[-44.711368,-23.212669],[-44.714568,-23.210969],[-44.715968,-23.208469],[-44.718668,-23.205369],[-44.720568,-23.202069],[-44.720568,-23.196269],[-44.718068,-23.193869],[-44.715068,-23.194169],[-44.713968,-23.190569],[-44.710868,-23.190169],[-44.708668,-23.188269],[-44.707168,-23.185269],[-44.710668,-23.184869],[-44.713768,-23.186869],[-44.716268,-23.183269],[-44.712968,-23.182669],[-44.711168,-23.180169],[-44.709768,-23.176469],[-44.705368,-23.174769],[-44.702068,-23.175869],[-44.698968,-23.173569],[-44.698568,-23.169669],[-44.703468,-23.168669],[-44.706768,-23.165669],[-44.706768,-23.162469],[-44.706868,-23.158869],[-44.705468,-23.156169],[-44.701468,-23.155369],[-44.697668,-23.154269],[-44.695968,-23.150669],[-44.695168,-23.145969],[-44.697768,-23.142569],[-44.697968,-23.139069],[-44.698768,-23.135969],[-44.699268,-23.132069],[-44.695168,-23.130769],[-44.691568,-23.130469],[-44.689168,-23.128569],[-44.689868,-23.124369],[-44.694368,-23.122969],[-44.697368,-23.123369],[-44.698868,-23.119969],[-44.698168,-23.114669],[-44.696368,-23.110369],[-44.694368,-23.106769],[-44.695268,-23.102769],[-44.694568,-23.097069],[-44.692168,-23.092269],[-44.688568,-23.090169],[-44.689168,-23.086769],[-44.690468,-23.082869],[-44.687768,-23.081769],[-44.685868,-23.078769],[-44.686068,-23.074069],[-44.682468,-23.071769],[-44.677268,-23.070269],[-44.677268,-23.066069],[-44.676368,-23.061269],[-44.672868,-23.058269],[-44.670068,-23.056569],[-44.667868,-23.054369],[-44.664168,-23.053569],[-44.661168,-23.055469],[-44.658068,-23.053069],[-44.654568,-23.054469],[-44.650368,-23.055469],[-44.647568,-23.052769],[-44.647668,-23.049469],[-44.644868,-23.046969],[-44.641868,-23.047769],[-44.637868,-23.048669],[-44.636468,-23.051469],[-44.631368,-23.049969],[-44.626268,-23.047469],[-44.621568,-23.044969],[-44.616468,-23.044269],[-44.612968,-23.047869],[-44.609368,-23.048569],[-44.604968,-23.048169],[-44.600068,-23.047469],[-44.597068,-23.045269],[-44.593168,-23.046769],[-44.590068,-23.050069],[-44.590868,-23.053569],[-44.593368,-23.055869],[-44.594068,-23.059069],[-44.591168,-23.058569],[-44.587968,-23.058869],[-44.585068,-23.058069],[-44.582568,-23.055769],[-44.578568,-23.054169],[-44.576868,-23.050269],[-44.574868,-23.047869],[-44.571668,-23.047769],[-44.568768,-23.046469],[-44.566568,-23.043869],[-44.562968,-23.042769],[-44.561068,-23.040069],[-44.557168,-23.037269],[-44.552568,-23.037469],[-44.549368,-23.035969],[-44.547168,-23.034169],[-44.544268,-23.032369],[-44.540868,-23.031269],[-44.535868,-23.029169],[-44.531168,-23.027369],[-44.528168,-23.025169],[-44.525068,-23.025869],[-44.521468,-23.026769],[-44.517368,-23.026469],[-44.513268,-23.026169],[-44.508868,-23.026469],[-44.506368,-23.029269],[-44.502968,-23.028169],[-44.499368,-23.025069],[-44.495468,-23.023669],[-44.492568,-23.020769],[-44.489668,-23.020069],[-44.487168,-23.016269],[-44.484268,-23.010469],[-44.480568,-23.006669],[-44.475668,-23.006769],[-44.471668,-23.008869],[-44.469068,-23.011069],[-44.464868,-23.009269],[-44.461568,-23.008469],[-44.458768,-23.011369],[-44.457868,-23.016269],[-44.452668,-23.015969],[-44.450668,-23.018169],[-44.449368,-23.021469],[-44.447968,-23.025069],[-44.445768,-23.029169],[-44.442768,-23.026269],[-44.439368,-23.024269],[-44.437168,-23.021069],[-44.440468,-23.019769],[-44.441568,-23.016069],[-44.445168,-23.012469],[-44.443768,-23.008269],[-44.442668,-23.005469],[-44.438768,-23.002469],[-44.434068,-23.000969],[-44.430868,-22.998569],[-44.427568,-22.999369],[-44.425768,-22.997169],[-44.429168,-22.994369],[-44.433268,-22.994369],[-44.437968,-22.995669],[-44.440268,-22.992169],[-44.436268,-22.988569],[-44.435468,-22.985369],[-44.436068,-22.982469],[-44.434368,-22.979469],[-44.431368,-22.977769],[-44.432968,-22.975269],[-44.436568,-22.973469],[-44.436868,-22.970169],[-44.435468,-22.966969],[-44.434068,-22.963469],[-44.427868,-22.961869],[-44.427468,-22.958269],[-44.425568,-22.956169],[-44.423168,-22.953469],[-44.421668,-22.949669],[-44.418868,-22.947669],[-44.415668,-22.944369],[-44.412368,-22.941869],[-44.409568,-22.943269],[-44.409868,-22.946669],[-44.412568,-22.948269],[-44.414568,-22.952669],[-44.410868,-22.953569],[-44.408068,-22.951769],[-44.404268,-22.951569],[-44.400068,-22.951469],[-44.399868,-22.954369],[-44.397968,-22.957069],[-44.396268,-22.953269],[-44.396268,-22.949869],[-44.392868,-22.952469],[-44.388968,-22.951769],[-44.386268,-22.952869],[-44.382668,-22.955169],[-44.378268,-22.958469],[-44.380268,-22.962969],[-44.384568,-22.966269],[-44.386068,-22.969169],[-44.383068,-22.971369],[-44.380468,-22.967369],[-44.377768,-22.968769],[-44.374468,-22.966469],[-44.374468,-22.962569],[-44.372368,-22.959269],[-44.367668,-22.960069],[-44.364168,-22.957869],[-44.362168,-22.955669],[-44.358968,-22.956869],[-44.356368,-22.954069],[-44.352468,-22.953569],[-44.353068,-22.949869],[-44.351668,-22.947169],[-44.350068,-22.944569],[-44.353868,-22.943869],[-44.357568,-22.943769],[-44.360568,-22.941669],[-44.364368,-22.942669],[-44.366168,-22.946069],[-44.369168,-22.947869],[-44.370168,-22.941869],[-44.370868,-22.938269],[-44.366968,-22.934869],[-44.362268,-22.932269],[-44.365568,-22.930169],[-44.362868,-22.928069],[-44.359968,-22.924469],[-44.357768,-22.926969],[-44.355268,-22.929369],[-44.352468,-22.930269],[-44.350268,-22.927269],[-44.347568,-22.924169],[-44.343668,-22.922869],[-44.339068,-22.922869],[-44.337268,-22.926069],[-44.332568,-22.927469],[-44.328268,-22.931669],[-44.324068,-22.932469],[-44.324868,-22.935869],[-44.321368,-22.936169],[-44.321568,-22.939069],[-44.323168,-22.942069],[-44.327468,-22.943569],[-44.330768,-22.945169],[-44.335068,-22.947369],[-44.336468,-22.949869],[-44.336268,-22.953169],[-44.333168,-22.951469],[-44.329268,-22.955069],[-44.332868,-22.955969],[-44.336168,-22.957669],[-44.336168,-22.961569],[-44.335868,-22.964469],[-44.332368,-22.966469],[-44.330068,-22.964769],[-44.328768,-22.961469],[-44.325468,-22.960369],[-44.321368,-22.960669],[-44.319568,-22.957269],[-44.313868,-22.957869],[-44.309368,-22.957669],[-44.307968,-22.960169],[-44.303868,-22.957069],[-44.300568,-22.958469],[-44.302468,-22.960869],[-44.305768,-22.962069],[-44.307468,-22.964369],[-44.307968,-22.967269],[-44.310768,-22.970869],[-44.311868,-22.976669],[-44.312768,-22.979969],[-44.315268,-22.982869],[-44.317368,-22.984969],[-44.320468,-22.985769],[-44.323168,-22.983369],[-44.326768,-22.982769],[-44.329368,-22.985369],[-44.327568,-22.989969],[-44.326068,-22.992969],[-44.328568,-22.995469],[-44.332368,-22.995169],[-44.335968,-22.992269],[-44.340368,-22.990769],[-44.345268,-22.991069],[-44.348368,-22.994069],[-44.352068,-22.995769],[-44.354168,-22.998269],[-44.355668,-23.002369],[-44.357768,-23.004869],[-44.356768,-23.007769],[-44.360368,-23.009869],[-44.361068,-23.013469],[-44.362568,-23.017669],[-44.359268,-23.019269],[-44.358068,-23.022569],[-44.353868,-23.021869],[-44.350268,-23.023669],[-44.349268,-23.026969],[-44.350268,-23.030169],[-44.346668,-23.028369],[-44.344768,-23.026269],[-44.342568,-23.024269],[-44.339468,-23.022169],[-44.335968,-23.023969],[-44.331168,-23.020969],[-44.327168,-23.020369],[-44.328268,-23.015969],[-44.326068,-23.014069],[-44.322368,-23.014369],[-44.319368,-23.011369],[-44.315568,-23.013469],[-44.315968,-23.008869],[-44.311868,-23.007069],[-44.306868,-23.005969],[-44.301868,-23.003769],[-44.298568,-23.006869],[-44.297568,-23.010469],[-44.299468,-23.014269],[-44.302968,-23.017169],[-44.304668,-23.022169],[-44.302568,-23.024569],[-44.297868,-23.025669],[-44.293568,-23.024769],[-44.290568,-23.023969],[-44.289768,-23.020769],[-44.288168,-23.017469],[-44.284768,-23.015069],[-44.280568,-23.015369],[-44.278068,-23.011469],[-44.274868,-23.008769],[-44.273968,-23.005169],[-44.270468,-23.002969],[-44.267068,-23.001669],[-44.263568,-23.003569],[-44.261768,-23.006769],[-44.258268,-23.005169],[-44.256568,-23.002369],[-44.253068,-22.999369],[-44.249468,-22.999069],[-44.246268,-23.000569],[-44.241568,-23.001569],[-44.238868,-23.003769],[-44.237168,-23.007369],[-44.234268,-23.009269],[-44.232268,-23.011769],[-44.229668,-23.013769],[-44.226968,-23.011769],[-44.223668,-23.011069],[-44.221168,-23.015069],[-44.223768,-23.018169],[-44.225068,-23.020769],[-44.228068,-23.021769],[-44.231368,-23.022369],[-44.233868,-23.025969],[-44.237168,-23.028369],[-44.236768,-23.031969],[-44.240268,-23.033669],[-44.241068,-23.037569],[-44.243368,-23.041669],[-44.246268,-23.045069],[-44.249768,-23.048569],[-44.246568,-23.049369],[-44.243668,-23.053669],[-44.240868,-23.055269],[-44.236768,-23.055869],[-44.231968,-23.053369],[-44.227068,-23.050769],[-44.222868,-23.048869],[-44.219868,-23.049369],[-44.215868,-23.047469],[-44.211268,-23.045269],[-44.208268,-23.043569],[-44.204268,-23.041369],[-44.201368,-23.038169],[-44.197668,-23.039169],[-44.194068,-23.041469],[-44.193568,-23.044469],[-44.195568,-23.047869],[-44.194868,-23.053069],[-44.189868,-23.052569],[-44.185468,-23.052469],[-44.185168,-23.049169],[-44.182168,-23.045869],[-44.179668,-23.048869],[-44.176168,-23.049669],[-44.173568,-23.048369],[-44.171468,-23.045569],[-44.173068,-23.043069],[-44.176068,-23.040869],[-44.176368,-23.037769],[-44.174668,-23.035269],[-44.171968,-23.033469],[-44.168668,-23.033369],[-44.165568,-23.032369],[-44.160368,-23.032369],[-44.154868,-23.036169],[-44.152268,-23.039569],[-44.150468,-23.036969],[-44.145668,-23.035569],[-44.141068,-23.034869],[-44.137468,-23.033469],[-44.134168,-23.033069],[-44.129868,-23.031769],[-44.126668,-23.028969],[-44.123168,-23.025869],[-44.118668,-23.025069],[-44.114468,-23.023269],[-44.111368,-23.020469],[-44.108868,-23.017069],[-44.105268,-23.014669],[-44.103968,-23.011569],[-44.101668,-23.009369],[-44.098368,-23.007469],[-44.096168,-23.004969],[-44.095568,-23.002169],[-44.095868,-22.997969],[-44.092568,-22.994169],[-44.087268,-22.992569],[-44.083468,-22.992969],[-44.081868,-22.989769],[-44.080968,-22.986369],[-44.079068,-22.981369],[-44.077968,-22.976969],[-44.075968,-22.973669],[-44.076368,-22.970069],[-44.079968,-22.967569],[-44.080768,-22.963269],[-44.080768,-22.959769],[-44.079268,-22.956869],[-44.077068,-22.954369],[-44.073768,-22.951869],[-44.070668,-22.950969],[-44.066668,-22.950269],[-44.061968,-22.948969],[-44.059468,-22.945669],[-44.054768,-22.944169],[-44.052268,-22.942069],[-44.047868,-22.941669],[-44.044468,-22.944169],[-44.040668,-22.947969],[-44.040068,-22.951469],[-44.042868,-22.953569],[-44.045268,-22.955969],[-44.043368,-22.959669],[-44.042168,-22.963169],[-44.044668,-22.965869],[-44.046768,-22.969769],[-44.049668,-22.971769],[-44.052768,-22.973969],[-44.054668,-22.977769],[-44.055768,-22.980569],[-44.052268,-22.982169],[-44.048668,-22.983669],[-44.045268,-22.984469],[-44.041368,-22.983669],[-44.036968,-22.981969],[-44.033368,-22.980569],[-44.032368,-22.976369],[-44.032368,-22.972669],[-44.032268,-22.969569],[-44.031268,-22.966669],[-44.029868,-22.964069],[-44.025468,-22.962569],[-44.022368,-22.960969],[-44.022068,-22.955769],[-44.018268,-22.952969],[-44.013868,-22.950969],[-44.011768,-22.947369],[-44.009268,-22.943869],[-44.005268,-22.942369],[-44.000168,-22.941969],[-43.994968,-22.941269],[-43.990068,-22.938769],[-43.985668,-22.934969],[-43.981668,-22.932969],[-43.977768,-22.931569],[-43.974268,-22.931569],[-43.970968,-22.932169],[-43.967568,-22.933369],[-43.964068,-22.933769],[-43.960168,-22.932169],[-43.955668,-22.928969],[-43.951368,-22.927469],[-43.948168,-22.927169],[-43.945168,-22.928069],[-43.940568,-22.930069],[-43.936568,-22.929969],[-43.933368,-22.929069],[-43.930468,-22.929369],[-43.927568,-22.929169],[-43.924168,-22.929769],[-43.920068,-22.929669],[-43.914868,-22.930269],[-43.910268,-22.930769],[-43.907268,-22.929669],[-43.904068,-22.928269],[-43.901568,-22.926169],[-43.897568,-22.924969],[-43.893468,-22.922769],[-43.889968,-22.922169],[-43.885668,-22.921969],[-43.881868,-22.920269],[-43.880568,-22.915269],[-43.880768,-22.911469],[-43.877968,-22.910369],[-43.874868,-22.907669],[-43.871968,-22.905969],[-43.868268,-22.904769],[-43.865068,-22.903469],[-43.860868,-22.902669],[-43.855268,-22.902069],[-43.851368,-22.903769],[-43.846668,-22.902369],[-43.842268,-22.901769],[-43.839268,-22.905069],[-43.839068,-22.910369],[-43.841968,-22.913869],[-43.845068,-22.916669],[-43.849468,-22.917169],[-43.853068,-22.918569],[-43.850668,-22.921069],[-43.850668,-22.926069],[-43.848968,-22.929669],[-43.844568,-22.929669],[-43.842068,-22.931869],[-43.836568,-22.931569],[-43.833668,-22.931169],[-43.817368,-22.920669],[-43.813068,-22.919969],[-43.809368,-22.917769],[-43.806868,-22.919269],[-43.808368,-22.923169],[-43.802468,-22.923969],[-43.801468,-22.920269],[-43.800768,-22.917269],[-43.798068,-22.916369],[-43.795368,-22.918069],[-43.792768,-22.921869],[-43.789168,-22.924969],[-43.784168,-22.926169],[-43.780168,-22.928269],[-43.776168,-22.931369],[-43.771768,-22.932769],[-43.768268,-22.933269],[-43.766068,-22.935869],[-43.763168,-22.937169],[-43.760168,-22.938469],[-43.757468,-22.939669],[-43.754568,-22.941269],[-43.750968,-22.943569],[-43.746868,-22.945969],[-43.744068,-22.948469],[-43.741168,-22.950669],[-43.736868,-22.953269],[-43.733368,-22.955669],[-43.730268,-22.958469],[-43.725568,-22.960169],[-43.721468,-22.963769],[-43.719268,-22.966269],[-43.718168,-22.970169],[-43.714468,-22.969469],[-43.709668,-22.971669],[-43.705368,-22.976669],[-43.701868,-22.982269],[-43.699868,-22.985769],[-43.696368,-22.985569],[-43.693468,-22.986369],[-43.690268,-22.989369],[-43.686868,-22.985569],[-43.682768,-22.983269],[-43.678568,-22.980669],[-43.674668,-22.980569],[-43.670668,-22.982069],[-43.668168,-22.983669],[-43.664768,-22.986069],[-43.659768,-22.990769],[-43.656968,-22.993869],[-43.655168,-22.997469],[-43.652068,-23.001369],[-43.648468,-23.001269],[-43.644368,-23.001569],[-43.639568,-23.004869],[-43.635468,-23.005969],[-43.630968,-23.005969],[-43.627068,-23.007069],[-43.623768,-23.008469],[-43.620768,-23.011069],[-43.617968,-23.013869],[-43.614968,-23.016869],[-43.611068,-23.019369],[-43.607768,-23.021069],[-43.603968,-23.021869],[-43.599168,-23.024569],[-43.599168,-23.027669],[-43.603168,-23.027869],[-43.604268,-23.030669],[-43.608268,-23.030869],[-43.611368,-23.031169],[-43.615268,-23.031269],[-43.620068,-23.032869],[-43.623568,-23.033369],[-43.626568,-23.033469],[-43.630268,-23.033669],[-43.633868,-23.034469],[-43.638568,-23.035569],[-43.641868,-23.035869],[-43.647068,-23.036969],[-43.651568,-23.038069],[-43.655968,-23.038969],[-43.659768,-23.040369],[-43.663968,-23.041169],[-43.667068,-23.042769],[-43.670368,-23.043969],[-43.673568,-23.044669],[-43.677768,-23.045369],[-43.681568,-23.046369],[-43.686568,-23.047869],[-43.691968,-23.049369],[-43.695668,-23.050569],[-43.699568,-23.051169],[-43.703268,-23.052169],[-43.706868,-23.054469],[-43.703268,-23.055769],[-43.700268,-23.055469],[-43.696768,-23.054669],[-43.693268,-23.054669],[-43.689068,-23.054469],[-43.684768,-23.054369],[-43.680468,-23.053969],[-43.675468,-23.053569],[-43.672468,-23.053369],[-43.666468,-23.052869],[-43.658068,-23.052269],[-43.651468,-23.051669],[-43.644268,-23.051069],[-43.636768,-23.050469],[-43.630268,-23.050269],[-43.624668,-23.050069],[-43.618268,-23.050269],[-43.611768,-23.050069],[-43.608368,-23.050269],[-43.605068,-23.050569],[-43.598968,-23.051169],[-43.595968,-23.051669],[-43.591268,-23.052469],[-43.585368,-23.053569],[-43.581868,-23.054669],[-43.577468,-23.055869],[-43.574568,-23.057669],[-43.572068,-23.059069],[-43.569668,-23.060869],[-43.566868,-23.063069],[-43.568568,-23.066069],[-43.567668,-23.068869],[-43.568068,-23.073169],[-43.565468,-23.074969],[-43.561368,-23.074869],[-43.556968,-23.073569],[-43.553268,-23.074869],[-43.550068,-23.073169],[-43.552268,-23.071069],[-43.551568,-23.068069],[-43.549268,-23.063769],[-43.547468,-23.060469],[-43.544268,-23.059069],[-43.540668,-23.057469],[-43.537468,-23.055869],[-43.535668,-23.053269],[-43.534268,-23.050369],[-43.530168,-23.049469],[-43.525668,-23.048869],[-43.521768,-23.048569],[-43.516768,-23.048569],[-43.512768,-23.048569],[-43.509868,-23.047769],[-43.507068,-23.044469],[-43.504168,-23.040569],[-43.500468,-23.040269],[-43.497968,-23.037569],[-43.494668,-23.036269],[-43.489968,-23.034769],[-43.486168,-23.033669],[-43.479468,-23.032069],[-43.474468,-23.031669],[-43.469868,-23.034169],[-43.468168,-23.030369],[-43.463468,-23.028069],[-43.457868,-23.026169],[-43.454068,-23.025069],[-43.446268,-23.022969],[-43.439168,-23.021469],[-43.433268,-23.020369],[-43.428268,-23.019369],[-43.423868,-23.018269],[-43.419768,-23.017569],[-43.414268,-23.016769],[-43.408668,-23.015769],[-43.404468,-23.015169],[-43.398668,-23.014269],[-43.395668,-23.013869],[-43.391868,-23.013469],[-43.386768,-23.012969],[-43.381568,-23.012469],[-43.377468,-23.012169],[-43.373768,-23.012069],[-43.370468,-23.011769],[-43.365468,-23.011469],[-43.360268,-23.011269],[-43.356668,-23.011069],[-43.352068,-23.011069],[-43.348068,-23.011069],[-43.342368,-23.011069],[-43.339068,-23.011069],[-43.336168,-23.011369],[-43.331268,-23.011769],[-43.327868,-23.012169],[-43.324368,-23.012669],[-43.318168,-23.013869],[-43.315168,-23.014369],[-43.309368,-23.015669],[-43.305768,-23.016069],[-43.302768,-23.016269],[-43.299668,-23.015969],[-43.296768,-23.016069],[-43.292768,-23.015769],[-43.287768,-23.015169],[-43.286968,-23.010469],[-43.283868,-23.007769],[-43.280368,-23.006069],[-43.276968,-23.005169],[-43.275368,-23.002769],[-43.271168,-23.001269],[-43.265368,-23.000169],[-43.260168,-22.999769],[-43.255968,-22.999769],[-43.252368,-22.999169],[-43.249368,-22.999469],[-43.246568,-23.000569],[-43.243268,-23.000769],[-43.240368,-22.999769],[-43.237968,-22.998069],[-43.233568,-22.995169],[-43.229168,-22.990769],[-43.223868,-22.987769],[-43.220368,-22.987169],[-43.215668,-22.987169],[-43.210768,-22.987169],[-43.207068,-22.987169],[-43.203168,-22.987469],[-43.198968,-22.987769],[-43.194568,-22.988569],[-43.190568,-22.989369],[-43.187168,-22.986669],[-43.189068,-22.981369],[-43.187268,-22.976769],[-43.184368,-22.973369],[-43.181068,-22.970869],[-43.177968,-22.968969],[-43.174668,-22.967369],[-43.171368,-22.965869],[-43.167868,-22.964069],[-43.164168,-22.964569],[-43.160868,-22.964869],[-43.159568,-22.961969],[-43.160668,-22.957969],[-43.163868,-22.955169],[-43.160168,-22.953169],[-43.155468,-22.952669],[-43.151268,-22.949869],[-43.154568,-22.947069],[-43.154568,-22.942469],[-43.153068,-22.939569],[-43.158068,-22.942369],[-43.161668,-22.943469],[-43.163868,-22.947069],[-43.167768,-22.949969],[-43.170368,-22.951769],[-43.175868,-22.949669],[-43.179668,-22.947369],[-43.178268,-22.943169],[-43.173768,-22.943469],[-43.169768,-22.940469],[-43.169168,-22.936369],[-43.171168,-22.932269],[-43.170368,-22.928569],[-43.169168,-22.925269],[-43.167768,-22.922269],[-43.168668,-22.919269],[-43.171868,-22.919269],[-43.172468,-22.916369],[-43.169268,-22.915869],[-43.165268,-22.916369],[-43.161468,-22.915569],[-43.159168,-22.913669],[-43.161168,-22.910669],[-43.162068,-22.904769],[-43.165568,-22.904469],[-43.168968,-22.904469],[-43.172168,-22.902269],[-43.175468,-22.899069],[-43.176368,-22.896069],[-43.179668,-22.895169],[-43.183568,-22.894369],[-43.186368,-22.893569],[-43.190568,-22.892069],[-43.194568,-22.892069],[-43.197968,-22.892869],[-43.201068,-22.894269],[-43.203968,-22.895369],[-43.210968,-22.896469],[-43.213468,-22.891869],[-43.215168,-22.888269],[-43.215068,-22.885369],[-43.210868,-22.881569],[-43.208168,-22.878569],[-43.204068,-22.874369],[-43.203268,-22.871569],[-43.206768,-22.869369],[-43.210768,-22.867969],[-43.213768,-22.869469],[-43.214768,-22.865069],[-43.217668,-22.861969],[-43.213168,-22.859669],[-43.215468,-22.857469],[-43.219268,-22.858669],[-43.223368,-22.858269],[-43.226968,-22.855669],[-43.229568,-22.852369],[-43.231668,-22.848769],[-43.231668,-22.844869],[-43.229268,-22.843069],[-43.224568,-22.841169],[-43.226968,-22.837869],[-43.230268,-22.836969],[-43.233268,-22.838669],[-43.237868,-22.838669],[-43.242168,-22.838169],[-43.240468,-22.841269],[-43.241468,-22.844769],[-43.244068,-22.841269],[-43.248368,-22.839269],[-43.252368,-22.837569],[-43.255268,-22.835069],[-43.259168,-22.831169],[-43.263768,-22.827069],[-43.267068,-22.822669],[-43.268968,-22.818869],[-43.270468,-22.815769],[-43.271768,-22.812669],[-43.273668,-22.808869],[-43.272168,-22.806069],[-43.272668,-22.801869],[-43.270768,-22.798969],[-43.271168,-22.796069],[-43.272268,-22.792769],[-43.275068,-22.791369],[-43.276268,-22.785269],[-43.277568,-22.780569],[-43.275068,-22.776569],[-43.272968,-22.773269],[-43.270168,-22.769569],[-43.267368,-22.766269],[-43.264668,-22.763569],[-43.264568,-22.760269],[-43.260968,-22.760269],[-43.257768,-22.757969],[-43.254668,-22.755569],[-43.250968,-22.753769],[-43.246068,-22.751569],[-43.243568,-22.748069],[-43.240468,-22.745469],[-43.237168,-22.742769],[-43.233568,-22.741369],[-43.229968,-22.740069],[-43.226468,-22.741069],[-43.222868,-22.740269],[-43.220168,-22.739369],[-43.216968,-22.737469],[-43.213768,-22.734669],[-43.211968,-22.732269],[-43.212368,-22.729269],[-43.215568,-22.727369],[-43.210968,-22.726369],[-43.206768,-22.726769],[-43.203468,-22.726469],[-43.200268,-22.725069],[-43.197368,-22.723769],[-43.192768,-22.722269],[-43.187168,-22.721969],[-43.181868,-22.720669],[-43.176668,-22.717869],[-43.172168,-22.715469],[-43.167868,-22.713669],[-43.163868,-22.710869],[-43.159468,-22.709569],[-43.156168,-22.708769],[-43.152268,-22.707969],[-43.148768,-22.708169],[-43.143668,-22.708169],[-43.139668,-22.709569],[-43.136368,-22.710969],[-43.133868,-22.714069],[-43.130668,-22.714869],[-43.127668,-22.714569],[-43.124668,-22.713169],[-43.121868,-22.710169],[-43.117968,-22.707169],[-43.116568,-22.703969],[-43.117268,-22.699869],[-43.114768,-22.696069],[-43.111468,-22.694069],[-43.107768,-22.694569],[-43.105568,-22.690569],[-43.103068,-22.687169],[-43.097068,-22.685769],[-43.093168,-22.685569],[-43.089868,-22.683269],[-43.086968,-22.681369],[-43.083668,-22.678069],[-43.079268,-22.680069],[-43.073568,-22.681869],[-43.068868,-22.684369],[-43.066568,-22.687969],[-43.061868,-22.686569],[-43.057968,-22.685769],[-43.054368,-22.686069],[-43.052768,-22.690569],[-43.050468,-22.692769],[-43.046468,-22.692669],[-43.042868,-22.692669],[-43.038068,-22.692369],[-43.033968,-22.694569],[-43.036368,-22.700169],[-43.033368,-22.702569],[-43.031168,-22.704669],[-43.033868,-22.706769],[-43.035268,-22.710969],[-43.034468,-22.714769],[-43.031968,-22.718369],[-43.028768,-22.721369],[-43.025968,-22.725069],[-43.029168,-22.726669],[-43.029268,-22.729769],[-43.029768,-22.733069],[-43.029168,-22.735869],[-43.029068,-22.740869],[-43.032368,-22.742269],[-43.032268,-22.747469],[-43.036668,-22.749769],[-43.040568,-22.751269],[-43.047268,-22.757069],[-43.050768,-22.758069],[-43.054668,-22.760369],[-43.058268,-22.762069],[-43.062768,-22.764669],[-43.066868,-22.769269],[-43.067668,-22.774469],[-43.068868,-22.779469],[-43.071668,-22.781669],[-43.074868,-22.783469],[-43.078468,-22.785169],[-43.080968,-22.788669],[-43.080468,-22.791769],[-43.079668,-22.795269],[-43.078768,-22.798369],[-43.074268,-22.800569],[-43.069368,-22.801169],[-43.066068,-22.802969],[-43.068468,-22.806169],[-43.070968,-22.808269],[-43.073168,-22.811669],[-43.077068,-22.815569],[-43.079568,-22.817769],[-43.082568,-22.820269],[-43.085968,-22.821269],[-43.089268,-22.822469],[-43.093468,-22.823169],[-43.096968,-22.826769],[-43.097268,-22.832169],[-43.096368,-22.836969],[-43.096968,-22.840069],[-43.098368,-22.842669],[-43.101668,-22.844169],[-43.104968,-22.847369],[-43.103368,-22.850869],[-43.100568,-22.849869],[-43.101968,-22.853569],[-43.103968,-22.856769],[-43.107268,-22.859969],[-43.108868,-22.862569],[-43.110368,-22.865269],[-43.111968,-22.868269],[-43.113968,-22.865769],[-43.117168,-22.865869],[-43.120468,-22.868269],[-43.123268,-22.871569],[-43.124768,-22.876069],[-43.129168,-22.876669],[-43.133868,-22.880969],[-43.132968,-22.884269],[-43.129668,-22.887169],[-43.128068,-22.891269],[-43.124868,-22.893569],[-43.128068,-22.895669],[-43.132168,-22.896469],[-43.135668,-22.899369],[-43.136568,-22.902869],[-43.134868,-22.905469],[-43.132668,-22.907369],[-43.129868,-22.908969],[-43.125868,-22.907369],[-43.123368,-22.905169],[-43.120168,-22.905469],[-43.116068,-22.905069],[-43.110668,-22.910869],[-43.110768,-22.913969],[-43.107468,-22.915269],[-43.102868,-22.914569],[-43.099168,-22.914569],[-43.095668,-22.916369],[-43.094868,-22.921469],[-43.096168,-22.926169],[-43.098768,-22.931169],[-43.101768,-22.934069],[-43.105668,-22.935169],[-43.109968,-22.934469],[-43.113268,-22.932769],[-43.113568,-22.928969],[-43.116368,-22.930869],[-43.118268,-22.927969],[-43.120568,-22.923269],[-43.124068,-22.924669],[-43.123068,-22.928569],[-43.124768,-22.930869],[-43.126868,-22.933369],[-43.129568,-22.937969],[-43.126568,-22.938769],[-43.121568,-22.938269],[-43.116568,-22.938069],[-43.116668,-22.941969],[-43.119168,-22.944869],[-43.114668,-22.945269],[-43.111468,-22.948569],[-43.112168,-22.952069],[-43.107068,-22.953469],[-43.103668,-22.955969],[-43.100068,-22.952869],[-43.097668,-22.954669],[-43.093668,-22.954069],[-43.090668,-22.954269],[-43.086468,-22.954669],[-43.081468,-22.955469],[-43.076068,-22.956069],[-43.072768,-22.956869],[-43.069668,-22.959269],[-43.066068,-22.959769],[-43.062468,-22.960469],[-43.058768,-22.961269],[-43.054368,-22.962569],[-43.050868,-22.964069],[-43.047768,-22.967869],[-43.046668,-22.973069],[-43.051168,-22.977069],[-43.053868,-22.980269],[-43.050568,-22.981369],[-43.046668,-22.980069],[-43.043868,-22.977769],[-43.040268,-22.975269],[-43.037368,-22.975569],[-43.033768,-22.974569],[-43.030368,-22.975669],[-43.028668,-22.980269],[-43.024468,-22.979969],[-43.024068,-22.976269],[-43.020468,-22.975969],[-43.017068,-22.976269],[-43.013968,-22.976769],[-43.013768,-22.973169],[-43.010968,-22.970569],[-43.007968,-22.969869],[-43.004668,-22.969769],[-43.001668,-22.969469],[-42.997968,-22.969469],[-42.994768,-22.969469],[-42.991368,-22.969269],[-42.986368,-22.969469],[-42.978868,-22.969569],[-42.974868,-22.969769],[-42.965968,-22.969869],[-42.962068,-22.970369],[-42.956068,-22.970869],[-42.953168,-22.970969],[-42.949068,-22.971469],[-42.944868,-22.972069],[-42.937968,-22.973169],[-42.934168,-22.973769],[-42.931168,-22.974169],[-42.927568,-22.974469],[-42.923068,-22.974569],[-42.918168,-22.974869],[-42.914268,-22.974569],[-42.910568,-22.974169],[-42.906668,-22.973069],[-42.902268,-22.971769],[-42.897968,-22.970569],[-42.893768,-22.969569],[-42.890668,-22.968769],[-42.887368,-22.968169],[-42.883568,-22.967569],[-42.879868,-22.966769],[-42.875168,-22.966169],[-42.870768,-22.965569],[-42.866068,-22.965169],[-42.861068,-22.964769],[-42.857168,-22.964569],[-42.852468,-22.964069],[-42.847368,-22.963969],[-42.843668,-22.963669],[-42.840068,-22.963369],[-42.836568,-22.962969],[-42.832668,-22.962569],[-42.827868,-22.962269],[-42.824868,-22.962069],[-42.820968,-22.961969],[-42.817468,-22.961769],[-42.814168,-22.961569],[-42.810468,-22.961469],[-42.806368,-22.961169],[-42.802568,-22.960969],[-42.798668,-22.960769],[-42.794268,-22.960469],[-42.788868,-22.960169],[-42.783368,-22.960069],[-42.777568,-22.959769],[-42.773368,-22.959369],[-42.768768,-22.959069],[-42.764068,-22.958669],[-42.759268,-22.958469],[-42.755468,-22.958469],[-42.750568,-22.958169],[-42.744368,-22.957569],[-42.740468,-22.957169],[-42.736368,-22.956769],[-42.733068,-22.956469],[-42.728968,-22.956169],[-42.724568,-22.956169],[-42.720268,-22.956069],[-42.716468,-22.956169],[-42.712068,-22.956069],[-42.707568,-22.956269],[-42.703568,-22.956469],[-42.698968,-22.957069],[-42.694368,-22.959669],[-42.691668,-22.961769],[-42.688368,-22.961269],[-42.685468,-22.959869],[-42.682768,-22.957169],[-42.681968,-22.954069],[-42.681968,-22.950769],[-42.681668,-22.947369],[-42.679168,-22.945469],[-42.672868,-22.943269],[-42.668568,-22.942169],[-42.665268,-22.941569],[-42.661168,-22.940769],[-42.657068,-22.939969],[-42.653768,-22.939369],[-42.649468,-22.938569],[-42.644868,-22.938069],[-42.640068,-22.936669],[-42.635368,-22.936569],[-42.631268,-22.936069],[-42.625768,-22.935469],[-42.621368,-22.935169],[-42.612168,-22.934369],[-42.606068,-22.933869],[-42.601668,-22.933569],[-42.595868,-22.933269],[-42.587868,-22.933069],[-42.583168,-22.932969],[-42.578768,-22.932769],[-42.574868,-22.932769],[-42.571868,-22.932769],[-42.566668,-22.932669],[-42.558268,-22.932769],[-42.553668,-22.932769],[-42.550268,-22.932769],[-42.544268,-22.932769],[-42.539268,-22.932969],[-42.532268,-22.933069],[-42.525768,-22.933269],[-42.519268,-22.933269],[-42.512068,-22.933669],[-42.508868,-22.933769],[-42.504468,-22.934069],[-42.500268,-22.934469],[-42.494968,-22.936369],[-42.490368,-22.937369],[-42.486968,-22.935869],[-42.483968,-22.935869],[-42.480668,-22.936369],[-42.476968,-22.936969],[-42.474168,-22.938069],[-42.469868,-22.936969],[-42.465968,-22.936169],[-42.462268,-22.935569],[-42.458768,-22.935169],[-42.454268,-22.934869],[-42.448168,-22.934869],[-42.441668,-22.934869],[-42.437368,-22.934869],[-42.434168,-22.934669],[-42.429468,-22.934669],[-42.422168,-22.934869],[-42.416668,-22.934969],[-42.410868,-22.935169],[-42.405468,-22.935269],[-42.401468,-22.935569],[-42.395768,-22.935869],[-42.392168,-22.935869],[-42.389068,-22.935869],[-42.386068,-22.935769],[-42.380268,-22.934969],[-42.375568,-22.935469],[-42.371668,-22.935469],[-42.367668,-22.935469],[-42.363568,-22.935469],[-42.360368,-22.935469],[-42.357168,-22.935569],[-42.353868,-22.935569],[-42.350668,-22.935769],[-42.347268,-22.935869],[-42.343468,-22.936069],[-42.339068,-22.936169],[-42.333768,-22.936369],[-42.329568,-22.936569],[-42.326368,-22.936669],[-42.322368,-22.936869],[-42.318168,-22.937169],[-42.314068,-22.937369],[-42.308368,-22.937669],[-42.303368,-22.937969],[-42.297868,-22.938369],[-42.292868,-22.938569],[-42.288068,-22.939069],[-42.284768,-22.939169],[-42.280668,-22.938069],[-42.276768,-22.939669],[-42.272968,-22.939869],[-42.268768,-22.939869],[-42.264568,-22.940169],[-42.261268,-22.940269],[-42.258168,-22.940469],[-42.253568,-22.940569],[-42.248368,-22.940869],[-42.244068,-22.940869],[-42.239668,-22.941269],[-42.236068,-22.941369],[-42.232868,-22.941569],[-42.229568,-22.941669],[-42.226368,-22.941969],[-42.223168,-22.942169],[-42.220168,-22.942369],[-42.216768,-22.942669],[-42.213468,-22.942669],[-42.208968,-22.943069],[-42.204868,-22.943469],[-42.199968,-22.943569],[-42.195168,-22.943869],[-42.190568,-22.944169],[-42.187268,-22.944569],[-42.183868,-22.944869],[-42.179668,-22.944969],[-42.175268,-22.945269],[-42.170368,-22.945769],[-42.165068,-22.946069],[-42.159468,-22.946669],[-42.155468,-22.947069],[-42.151568,-22.947369],[-42.147068,-22.947769],[-42.143168,-22.948169],[-42.139568,-22.948469],[-42.135968,-22.948569],[-42.132468,-22.949269],[-42.127368,-22.949569],[-42.123268,-22.949869],[-42.119368,-22.950269],[-42.114968,-22.950769],[-42.111168,-22.950969],[-42.108068,-22.951469],[-42.104468,-22.951869],[-42.100668,-22.952069],[-42.096268,-22.952569],[-42.091968,-22.953269],[-42.088768,-22.953569],[-42.085368,-22.954069],[-42.081468,-22.954569],[-42.075968,-22.955369],[-42.071868,-22.955969],[-42.067768,-22.956769],[-42.063068,-22.957669],[-42.059368,-22.958469],[-42.055468,-22.959369],[-42.051268,-22.960769],[-42.046668,-22.962569],[-42.043568,-22.963969],[-42.040968,-22.965169],[-42.038068,-22.967069],[-42.034868,-22.969769],[-42.032368,-22.973869],[-42.034168,-22.977869],[-42.030968,-22.981369],[-42.026468,-22.982269],[-42.022368,-22.982769],[-42.019668,-22.984269],[-42.017968,-22.986869],[-42.016768,-22.991069],[-42.013568,-22.995569],[-42.012668,-22.989969],[-42.009968,-22.986069],[-42.008268,-22.982769],[-42.010468,-22.979569],[-42.013768,-22.978369],[-42.018668,-22.978669],[-42.020468,-22.973469],[-42.017868,-22.970369],[-42.013168,-22.971969],[-42.014968,-22.968369],[-42.014268,-22.964869],[-42.010168,-22.965369],[-42.007368,-22.966269],[-42.003868,-22.968769],[-42.001668,-22.965669],[-41.997168,-22.964069],[-41.995468,-22.961569],[-41.997768,-22.959369],[-42.002068,-22.959269],[-42.005168,-22.961469],[-42.008468,-22.960369],[-42.007668,-22.955669],[-42.005768,-22.952169],[-42.010668,-22.952569],[-42.014268,-22.954669],[-42.016468,-22.956769],[-42.018668,-22.960069],[-42.023168,-22.960369],[-42.025868,-22.957169],[-42.024568,-22.954269],[-42.024268,-22.950969],[-42.023668,-22.946669],[-42.027668,-22.946269],[-42.032768,-22.945769],[-42.033968,-22.941969],[-42.035668,-22.939669],[-42.036768,-22.936169],[-42.037268,-22.931669],[-42.037568,-22.926669],[-42.037368,-22.922769],[-42.036768,-22.918869],[-42.035868,-22.914969],[-42.034468,-22.910569],[-42.033068,-22.906569],[-42.031568,-22.903369],[-42.029868,-22.900469],[-42.027868,-22.897369],[-42.025068,-22.893969],[-42.022668,-22.891069],[-42.019868,-22.888469],[-42.017168,-22.885969],[-42.014268,-22.883769],[-42.010368,-22.882769],[-42.007368,-22.885369],[-42.004868,-22.887869],[-42.002668,-22.889669],[-42.000768,-22.887469],[-41.998768,-22.884969],[-41.995068,-22.883469],[-41.990568,-22.882069],[-41.987568,-22.879469],[-41.985768,-22.876869],[-41.984168,-22.874369],[-41.980568,-22.872269],[-41.982868,-22.869669],[-41.982268,-22.866669],[-41.984968,-22.863269],[-41.986368,-22.858969],[-41.986468,-22.855269],[-41.986068,-22.851669],[-41.984968,-22.848369],[-41.983668,-22.844769],[-41.982468,-22.841169],[-41.980868,-22.837869],[-41.978868,-22.834269],[-41.976668,-22.830369],[-41.974168,-22.827069],[-41.971668,-22.824069],[-41.967668,-22.821869],[-41.963768,-22.819269],[-41.959368,-22.818869],[-41.955768,-22.816569],[-41.951568,-22.814169],[-41.947468,-22.812969],[-41.943268,-22.813069],[-41.939568,-22.809769],[-41.935168,-22.809769],[-41.932468,-22.811269],[-41.927968,-22.812669],[-41.925768,-22.808769],[-41.928668,-22.807169],[-41.930568,-22.803069],[-41.928968,-22.797869],[-41.926368,-22.793169],[-41.923968,-22.789969],[-41.921368,-22.786969],[-41.918068,-22.784769],[-41.915968,-22.782269],[-41.913468,-22.780569],[-41.910168,-22.778969],[-41.906768,-22.778369],[-41.903968,-22.780069],[-41.902668,-22.782769],[-41.898468,-22.782869],[-41.895368,-22.785869],[-41.892568,-22.784169],[-41.889568,-22.780869],[-41.886468,-22.777869],[-41.884268,-22.780969],[-41.882468,-22.784169],[-41.882368,-22.778669],[-41.884968,-22.774869],[-41.888468,-22.772969],[-41.886568,-22.768969],[-41.883468,-22.770369],[-41.881268,-22.773669],[-41.878068,-22.774369],[-41.877668,-22.770469],[-41.877968,-22.766069],[-41.875468,-22.762369],[-41.873768,-22.765469],[-41.870068,-22.762369],[-41.866668,-22.762069],[-41.865068,-22.758869],[-41.864468,-22.755169],[-41.867268,-22.753569],[-41.870068,-22.755669],[-41.873068,-22.753869],[-41.873268,-22.750169],[-41.871168,-22.746069],[-41.869168,-22.742169],[-41.871968,-22.738569],[-41.875168,-22.741469],[-41.878468,-22.741469],[-41.881368,-22.740769],[-41.882668,-22.744069],[-41.882068,-22.747369],[-41.883068,-22.750569],[-41.885268,-22.753769],[-41.889068,-22.755169],[-41.892968,-22.754569],[-41.895968,-22.752369],[-41.898668,-22.750169],[-41.900868,-22.753569],[-41.903368,-22.755969],[-41.906268,-22.756569],[-41.909868,-22.756669],[-41.908168,-22.760969],[-41.908368,-22.764369],[-41.909868,-22.767669],[-41.912368,-22.769369],[-41.915368,-22.771069],[-41.919568,-22.771469],[-41.923868,-22.770769],[-41.928568,-22.769269],[-41.932968,-22.766769],[-41.935868,-22.764569],[-41.938568,-22.762069],[-41.941668,-22.758869],[-41.944668,-22.755269],[-41.947468,-22.751269],[-41.949568,-22.748369],[-41.950968,-22.745469],[-41.952368,-22.742269],[-41.954668,-22.740069],[-41.957068,-22.737169],[-41.956768,-22.732869],[-41.960368,-22.732469],[-41.963368,-22.732569],[-41.966268,-22.732469],[-41.969468,-22.730569],[-41.973068,-22.729469],[-41.976768,-22.727469],[-41.979268,-22.725269],[-41.981168,-22.722769],[-41.982568,-22.719869],[-41.984368,-22.717069],[-41.986168,-22.713369],[-41.988068,-22.710069],[-41.989168,-22.706869],[-41.990068,-22.703569],[-41.991068,-22.700369],[-41.992168,-22.696569],[-41.993268,-22.692069],[-41.994068,-22.688769],[-41.994668,-22.685469],[-41.995068,-22.682269],[-41.995768,-22.679169],[-41.996368,-22.675069],[-41.996968,-22.670269],[-41.997668,-22.666369],[-41.997968,-22.662869],[-41.998268,-22.658369],[-41.998868,-22.652669],[-41.999168,-22.647269],[-41.999468,-22.642869],[-41.999468,-22.638969],[-41.999468,-22.633869],[-41.999468,-22.629869],[-41.999168,-22.625969],[-41.998868,-22.621869],[-41.998368,-22.617569],[-41.998068,-22.613369],[-41.997768,-22.609669],[-41.997168,-22.606369],[-41.996568,-22.603169],[-41.995068,-22.599569],[-41.991168,-22.597669],[-41.988568,-22.595669],[-41.988268,-22.592569],[-41.987468,-22.589769],[-41.986768,-22.585869],[-41.985768,-22.582269],[-41.984368,-22.577669],[-41.983168,-22.573869],[-41.982168,-22.570969],[-41.981068,-22.567669],[-41.979668,-22.563569],[-41.977568,-22.559069],[-41.976168,-22.555469],[-41.974568,-22.552269],[-41.973068,-22.549369],[-41.971268,-22.546369],[-41.969268,-22.543169],[-41.966968,-22.540069],[-41.964268,-22.537069],[-41.961968,-22.534869],[-41.959668,-22.532769],[-41.955168,-22.531569],[-41.951468,-22.530169],[-41.948568,-22.528969],[-41.945168,-22.528069],[-41.941368,-22.530169],[-41.938768,-22.532269],[-41.936368,-22.535969],[-41.932168,-22.535969],[-41.928968,-22.532369],[-41.926068,-22.530469],[-41.922868,-22.528769],[-41.920568,-22.526169],[-41.918368,-22.520369],[-41.915868,-22.515769],[-41.913468,-22.512369],[-41.910968,-22.509369],[-41.907768,-22.505169],[-41.905168,-22.501669],[-41.903368,-22.499469],[-41.900968,-22.496669],[-41.898468,-22.493669],[-41.895468,-22.490569],[-41.892168,-22.487569],[-41.889268,-22.486169],[-41.885968,-22.486369],[-41.883068,-22.488069],[-41.878068,-22.487469],[-41.876568,-22.484669],[-41.873768,-22.483869],[-41.871868,-22.480669],[-41.868668,-22.478569],[-41.865468,-22.477869],[-41.862568,-22.475269],[-41.861068,-22.470869],[-41.860368,-22.464769],[-41.859468,-22.460869],[-41.857868,-22.457969],[-41.854968,-22.455669],[-41.854768,-22.450469],[-41.852768,-22.446669],[-41.849768,-22.443569],[-41.846968,-22.440869],[-41.843768,-22.437769],[-41.841568,-22.435269],[-41.839468,-22.432969],[-41.837268,-22.430869],[-41.835068,-22.428969],[-41.831768,-22.426469],[-41.828268,-22.424969],[-41.825668,-22.422469],[-41.822668,-22.420269],[-41.819368,-22.416369],[-41.815968,-22.415669],[-41.813368,-22.414169],[-41.808768,-22.411669],[-41.804168,-22.409169],[-41.800768,-22.407369],[-41.797868,-22.405869],[-41.794768,-22.404569],[-41.791668,-22.401269],[-41.788868,-22.399069],[-41.786368,-22.397669],[-41.783668,-22.396069],[-41.780968,-22.394569],[-41.778368,-22.393169],[-41.775768,-22.391869],[-41.771868,-22.389969],[-41.767968,-22.388769],[-41.767368,-22.384969],[-41.770468,-22.384669],[-41.769268,-22.380969],[-41.767168,-22.376669],[-41.770968,-22.376269],[-41.773668,-22.374669],[-41.775868,-22.372369],[-41.774768,-22.368269],[-41.772968,-22.363669],[-41.770368,-22.359669],[-41.767468,-22.356769],[-41.765168,-22.354269],[-41.762768,-22.352069],[-41.759068,-22.349469],[-41.755168,-22.347269],[-41.751368,-22.345169],[-41.747968,-22.343669],[-41.744168,-22.341969],[-41.740068,-22.339569],[-41.735768,-22.336169],[-41.732068,-22.333269],[-41.728868,-22.330969],[-41.726168,-22.328869],[-41.723068,-22.325969],[-41.719568,-22.322769],[-41.716668,-22.320169],[-41.714068,-22.317969],[-41.711468,-22.315869],[-41.708268,-22.313369],[-41.705768,-22.311569],[-41.702668,-22.309169],[-41.699268,-22.306669],[-41.696368,-22.304769],[-41.693168,-22.302569],[-41.689568,-22.299669],[-41.684668,-22.297269],[-41.681568,-22.295369],[-41.678368,-22.293569],[-41.675268,-22.291769],[-41.672468,-22.290269],[-41.669268,-22.288669],[-41.666668,-22.287269],[-41.663168,-22.285569],[-41.659468,-22.283769],[-41.654568,-22.281469],[-41.650468,-22.279569],[-41.646568,-22.277669],[-41.641568,-22.275669],[-41.637768,-22.273969],[-41.634068,-22.272369],[-41.630268,-22.270669],[-41.626668,-22.269369],[-41.624068,-22.268169],[-41.620868,-22.266769],[-41.617268,-22.265169],[-41.614068,-22.264069],[-41.610568,-22.262369],[-41.606668,-22.260669],[-41.603168,-22.259169],[-41.598868,-22.257669],[-41.594868,-22.255669],[-41.590868,-22.254069],[-41.587568,-22.252769],[-41.583968,-22.251269],[-41.578568,-22.249069],[-41.574668,-22.247369],[-41.571868,-22.246269],[-41.567768,-22.244669],[-41.564168,-22.243269],[-41.560868,-22.241869],[-41.557668,-22.240569],[-41.554668,-22.239169],[-41.550568,-22.237869],[-41.545868,-22.236169],[-41.542468,-22.233969],[-41.538168,-22.232769],[-41.533668,-22.230669],[-41.530568,-22.229469],[-41.527668,-22.228169],[-41.523968,-22.226669],[-41.520368,-22.225069],[-41.517568,-22.223969],[-41.514568,-22.222869],[-41.510768,-22.221669],[-41.506768,-22.219869],[-41.502668,-22.218469],[-41.499668,-22.217369],[-41.496868,-22.216469],[-41.493668,-22.215369],[-41.489568,-22.214069],[-41.485268,-22.212669],[-41.480068,-22.211169],[-41.475668,-22.209769],[-41.472868,-22.208969],[-41.469168,-22.207669],[-41.465968,-22.206769],[-41.462868,-22.205769],[-41.459368,-22.204869],[-41.454968,-22.203469],[-41.450968,-22.202169],[-41.448168,-22.201569],[-41.445468,-22.200669],[-41.442668,-22.199969],[-41.439868,-22.199269],[-41.436868,-22.198569],[-41.434068,-22.197769],[-41.430868,-22.197069],[-41.427768,-22.196269],[-41.423968,-22.195169],[-41.419468,-22.193869],[-41.415568,-22.192969],[-41.411268,-22.191669],[-41.407268,-22.190569],[-41.403768,-22.189869],[-41.399468,-22.188769],[-41.395068,-22.187669],[-41.391768,-22.186869],[-41.387168,-22.185569],[-41.382068,-22.184069],[-41.378068,-22.182969],[-41.374668,-22.182169],[-41.370868,-22.181069],[-41.367768,-22.180269],[-41.364768,-22.179469],[-41.361068,-22.178369],[-41.357768,-22.177269],[-41.354568,-22.176369],[-41.350968,-22.175769],[-41.347568,-22.174969],[-41.344768,-22.174169],[-41.340468,-22.173169],[-41.335468,-22.171969],[-41.331768,-22.171069],[-41.327968,-22.169969],[-41.323968,-22.169169],[-41.319068,-22.168069],[-41.315468,-22.167169],[-41.311968,-22.166169],[-41.308668,-22.165269],[-41.305768,-22.164469],[-41.301168,-22.163069],[-41.296468,-22.161969],[-41.291668,-22.160769],[-41.286968,-22.159569],[-41.284168,-22.158969],[-41.280068,-22.157869],[-41.275868,-22.156969],[-41.271768,-22.155669],[-41.267868,-22.154569],[-41.264368,-22.153669],[-41.260768,-22.152569],[-41.257668,-22.151469],[-41.253868,-22.150369],[-41.248768,-22.148669],[-41.244068,-22.147069],[-41.239068,-22.145369],[-41.233768,-22.143569],[-41.229268,-22.142069],[-41.225568,-22.140769],[-41.222268,-22.139669],[-41.218368,-22.138269],[-41.213968,-22.136769],[-41.210368,-22.135169],[-41.206268,-22.133469],[-41.201768,-22.131369],[-41.197068,-22.129369],[-41.193768,-22.128069],[-41.189868,-22.126269],[-41.186268,-22.124369],[-41.183268,-22.122969],[-41.180468,-22.121669],[-41.177568,-22.120269],[-41.174768,-22.119069],[-41.171468,-22.117569],[-41.167868,-22.116069],[-41.164268,-22.114169],[-41.159868,-22.111769],[-41.155568,-22.109269],[-41.152268,-22.107569],[-41.148668,-22.105569],[-41.145468,-22.103969],[-41.142868,-22.102069],[-41.139368,-22.099869],[-41.134868,-22.097269],[-41.135268,-22.093369],[-41.132068,-22.090069],[-41.129568,-22.088269],[-41.126668,-22.086469],[-41.123268,-22.084269],[-41.120468,-22.082569],[-41.116868,-22.081069],[-41.113268,-22.078569],[-41.109468,-22.076369],[-41.106168,-22.074569],[-41.102568,-22.072469],[-41.099468,-22.070769],[-41.095968,-22.068769],[-41.092268,-22.066669],[-41.088368,-22.064469],[-41.083768,-22.061869],[-41.081068,-22.060269],[-41.078568,-22.058769],[-41.075268,-22.056869],[-41.072168,-22.055269],[-41.069568,-22.053869],[-41.065968,-22.052169],[-41.062168,-22.050069],[-41.058368,-22.048269],[-41.054768,-22.046469],[-41.050468,-22.044269],[-41.047168,-22.042569],[-41.043668,-22.040969],[-41.039868,-22.039169],[-41.035568,-22.037069],[-41.031968,-22.035369],[-41.029168,-22.034169],[-41.025868,-22.032669],[-41.021768,-22.030969],[-41.018968,-22.029469],[-41.016468,-22.028069],[-41.013468,-22.026569],[-41.010168,-22.024769],[-41.007468,-22.022969],[-41.004868,-22.021469],[-41.002068,-22.019269],[-40.999368,-22.017369],[-40.996368,-22.014969],[-40.993668,-22.012669],[-40.991368,-22.010769],[-40.989068,-22.008169],[-40.986668,-22.004869],[-40.984768,-22.000969],[-40.983068,-21.996969],[-40.981668,-21.993669],[-40.980268,-21.989769],[-40.978968,-21.985769],[-40.977768,-21.981669],[-40.977068,-21.978469],[-40.976168,-21.974169],[-40.975368,-21.969069],[-40.974868,-21.964269],[-40.974568,-21.959269],[-40.974568,-21.954569],[-40.974568,-21.950669],[-40.974568,-21.947369],[-40.974868,-21.943269],[-40.975568,-21.938869],[-40.976368,-21.934169],[-40.977068,-21.929969],[-40.978068,-21.925369],[-40.979168,-21.920769],[-40.980368,-21.915969],[-40.982168,-21.909569],[-40.983868,-21.903969],[-40.985268,-21.899569],[-40.986368,-21.895069],[-40.987468,-21.891269],[-40.988268,-21.887669],[-40.989368,-21.882769],[-40.990068,-21.879569],[-40.990868,-21.876069],[-40.991568,-21.872369],[-40.992668,-21.866569],[-40.993068,-21.863369],[-40.994668,-21.854969],[-40.994368,-21.850569],[-40.998768,-21.840969],[-40.998768,-21.836569],[-41.000468,-21.832569],[-41.001368,-21.828569],[-41.002668,-21.824569],[-41.003768,-21.820269],[-41.004968,-21.815869],[-41.006068,-21.811369],[-41.006868,-21.808369],[-41.007668,-21.804769],[-41.008568,-21.801069],[-41.009568,-21.796469],[-41.010968,-21.791469],[-41.011768,-21.788369],[-41.012368,-21.785569],[-41.013168,-21.781769],[-41.014268,-21.777969],[-41.014868,-21.775169],[-41.015768,-21.771169],[-41.017068,-21.766569],[-41.017868,-21.762869],[-41.018568,-21.759869],[-41.019268,-21.757069],[-41.019768,-21.754069],[-41.020668,-21.750569],[-41.021468,-21.746969],[-41.022268,-21.742669],[-41.022868,-21.738569],[-41.023668,-21.734469],[-41.023968,-21.730569],[-41.024368,-21.725969],[-41.024568,-21.722269],[-41.024768,-21.719069],[-41.024768,-21.715569],[-41.024568,-21.712269],[-41.024368,-21.709069],[-41.024068,-21.705969],[-41.024068,-21.702569],[-41.023768,-21.698869],[-41.023668,-21.695969],[-41.023268,-21.692669],[-41.022868,-21.687969],[-41.022368,-21.683369],[-41.021568,-21.678969],[-41.020668,-21.675269],[-41.020068,-21.672169],[-41.019368,-21.668869],[-41.018768,-21.664869],[-41.017968,-21.660569],[-41.017368,-21.656969],[-41.016768,-21.653369],[-41.016268,-21.649069],[-41.015668,-21.645669],[-41.015068,-21.640769],[-41.014568,-21.637069],[-41.014268,-21.633469],[-41.013568,-21.629169],[-41.013268,-21.625469],[-41.012768,-21.621569],[-41.015068,-21.619369],[-41.018268,-21.620569],[-41.023368,-21.621569],[-41.027268,-21.621669],[-41.030168,-21.621069],[-41.033068,-21.620069],[-41.035968,-21.619769],[-41.039768,-21.619769],[-41.045368,-21.618369],[-41.048568,-21.617769],[-41.047468,-21.614669],[-41.042768,-21.616169],[-41.037868,-21.615869],[-41.033368,-21.616069],[-41.028368,-21.615769],[-41.022968,-21.615069],[-41.019868,-21.614369],[-41.016468,-21.612469],[-41.019868,-21.607169],[-41.022868,-21.605369],[-41.026268,-21.603869],[-41.029268,-21.602069],[-41.032668,-21.599169],[-41.035968,-21.596969],[-41.038868,-21.594069],[-41.041668,-21.589069],[-41.043868,-21.585969],[-41.047568,-21.588169],[-41.046368,-21.592969],[-41.046968,-21.596169],[-41.048168,-21.599169],[-41.051068,-21.597269],[-41.051568,-21.594469],[-41.053568,-21.585469],[-41.054768,-21.581769],[-41.055468,-21.576769],[-41.056068,-21.573569],[-41.059468,-21.568869],[-41.059768,-21.565469],[-41.060768,-21.561169],[-41.063368,-21.555569],[-41.064568,-21.549169],[-41.069368,-21.535569],[-41.071568,-21.528969],[-41.072668,-21.524769],[-41.073168,-21.521569],[-41.073168,-21.518269],[-41.073168,-21.514869],[-41.072668,-21.510969],[-41.071868,-21.507169],[-41.070968,-21.503069],[-41.069668,-21.499869],[-41.068268,-21.496569],[-41.066368,-21.492669],[-41.063868,-21.488369],[-41.061568,-21.485069],[-41.059068,-21.481769],[-41.057268,-21.479169],[-41.055468,-21.476969],[-41.052268,-21.473669],[-41.049168,-21.470269],[-41.046368,-21.467569],[-41.042468,-21.465669],[-41.039968,-21.463469],[-41.037368,-21.461169],[-41.035568,-21.457569],[-41.032368,-21.454569],[-41.029768,-21.452369],[-41.027368,-21.448569],[-41.023968,-21.445769],[-41.020368,-21.440769],[-41.019068,-21.436969],[-41.017168,-21.433769],[-41.013968,-21.429769],[-41.011268,-21.425869],[-41.008868,-21.422569],[-41.006368,-21.419269],[-41.004868,-21.414569],[-41.003468,-21.410569],[-41.001668,-21.406169],[-40.999868,-21.402869],[-40.998268,-21.400469],[-40.996268,-21.397969],[-40.993868,-21.395769],[-40.991068,-21.393669],[-40.987568,-21.392169],[-40.983868,-21.392069],[-40.981768,-21.389969],[-40.980068,-21.386869],[-40.978068,-21.384069],[-40.975668,-21.381769],[-40.972768,-21.378069],[-40.969468,-21.375169],[-40.968068,-21.371069],[-40.965968,-21.367769],[-40.965168,-21.364969],[-40.964068,-21.362269],[-40.961868,-21.359369],[-40.962968,-21.354169],[-40.963968,-21.349769],[-40.964368,-21.345969],[-40.964568,-21.342569],[-40.964368,-21.337969],[-40.963968,-21.332869],[-40.962968,-21.328269],[-40.961868,-21.323969],[-40.960468,-21.319669],[-40.959568,-21.316569],[-40.958168,-21.312469],[-40.958768,-21.308369],[-40.959068,-21.303969],[-40.959368,-21.301069],[-40.959268,-21.297169],[-40.959868,-21.294169],[-40.960668,-21.290969],[-40.961568,-21.285569],[-40.961868,-21.280469],[-40.962268,-21.275469],[-40.962268,-21.270769],[-40.962068,-21.266769],[-40.961268,-21.262169],[-40.960768,-21.258469],[-40.960168,-21.255569],[-40.958768,-21.250769],[-40.957568,-21.246569],[-40.955768,-21.242569],[-40.953968,-21.237969],[-40.952168,-21.233969],[-40.950168,-21.230069],[-40.948168,-21.226769],[-40.946268,-21.223469],[-40.944268,-21.220569],[-40.942068,-21.217269],[-40.939468,-21.212969],[-40.936868,-21.208669],[-40.935268,-21.204969],[-40.933768,-21.202069],[-40.932168,-21.199069],[-40.930068,-21.195269],[-40.926968,-21.190869],[-40.924668,-21.187469],[-40.922568,-21.184369],[-40.920868,-21.181669],[-40.919168,-21.178969],[-40.917268,-21.176369],[-40.915068,-21.173569],[-40.912568,-21.170669],[-40.908968,-21.167269],[-40.906168,-21.164969],[-40.902668,-21.162569],[-40.899468,-21.160569],[-40.896768,-21.159169],[-40.892968,-21.156569],[-40.890468,-21.153369],[-40.887668,-21.149369],[-40.884568,-21.145769],[-40.881868,-21.143169],[-40.878868,-21.140769],[-40.876268,-21.138769],[-40.873368,-21.137069],[-40.870568,-21.135369],[-40.867768,-21.133769],[-40.864468,-21.132369],[-40.861368,-21.130169],[-40.858868,-21.127669],[-40.857868,-21.124469],[-40.857468,-21.121569],[-40.856068,-21.117569],[-40.854468,-21.113969],[-40.852868,-21.111069],[-40.851668,-21.108269],[-40.849968,-21.104269],[-40.847768,-21.099869],[-40.846268,-21.096369],[-40.844468,-21.092869],[-40.842668,-21.088769],[-40.841468,-21.085469],[-40.840168,-21.082169],[-40.838668,-21.077669],[-40.837368,-21.073469],[-40.836268,-21.069169],[-40.835368,-21.065269],[-40.834268,-21.061369],[-40.833268,-21.057669],[-40.832068,-21.053569],[-40.830468,-21.049169],[-40.828168,-21.045269],[-40.824968,-21.043669],[-40.821368,-21.041969],[-40.818768,-21.038769],[-40.817068,-21.036269],[-40.814368,-21.035169],[-40.812268,-21.032569],[-40.811668,-21.028469],[-40.810868,-21.023969],[-40.809968,-21.019369],[-40.808868,-21.014669],[-40.807168,-21.009869],[-40.804968,-21.005769],[-40.805868,-21.002169],[-40.807968,-20.999669],[-40.809468,-20.995269],[-40.810468,-20.991369],[-40.810868,-20.987469],[-40.811068,-20.983569],[-40.810868,-20.980569],[-40.810868,-20.976669],[-40.810468,-20.972669],[-40.809868,-20.967569],[-40.809368,-20.963669],[-40.808568,-20.958769],[-40.807668,-20.955169],[-40.806868,-20.951569],[-40.803968,-20.943269],[-40.802868,-20.940469],[-40.801168,-20.936269],[-40.799368,-20.932969],[-40.796768,-20.928269],[-40.795368,-20.925769],[-40.790068,-20.918969],[-40.786368,-20.914969],[-40.784168,-20.911469],[-40.781668,-20.908069],[-40.777668,-20.905069],[-40.776568,-20.900469],[-40.774568,-20.895669],[-40.771168,-20.892169],[-40.767368,-20.891269],[-40.764268,-20.887369],[-40.762168,-20.883869],[-40.760668,-20.881369],[-40.759068,-20.878769],[-40.761768,-20.875469],[-40.759968,-20.871869],[-40.758068,-20.868369],[-40.760168,-20.866169],[-40.757768,-20.863569],[-40.754968,-20.859269],[-40.752168,-20.856369],[-40.749668,-20.853969],[-40.746268,-20.850069],[-40.742568,-20.847269],[-40.738668,-20.845269],[-40.733868,-20.843769],[-40.729268,-20.842369],[-40.725968,-20.842069],[-40.722668,-20.845869],[-40.718668,-20.844869],[-40.713968,-20.842569],[-40.710468,-20.839769],[-40.706868,-20.837269],[-40.702868,-20.836169],[-40.699068,-20.833569],[-40.694668,-20.834369],[-40.691968,-20.831469],[-40.689368,-20.827969],[-40.684068,-20.826569],[-40.681168,-20.823769],[-40.676668,-20.822169],[-40.672568,-20.821269],[-40.671068,-20.818469],[-40.667468,-20.817069],[-40.665668,-20.813069],[-40.662068,-20.811169],[-40.657368,-20.810469],[-40.654868,-20.808069],[-40.652568,-20.806069],[-40.649268,-20.807169],[-40.645368,-20.808669],[-40.641468,-20.810169],[-40.637968,-20.811569],[-40.634968,-20.813069],[-40.631368,-20.815869],[-40.629068,-20.820169],[-40.631268,-20.824869],[-40.632768,-20.829569],[-40.632768,-20.832569],[-40.632368,-20.835469],[-40.630768,-20.839469],[-40.627668,-20.840169],[-40.625468,-20.835869],[-40.621868,-20.833969],[-40.619668,-20.830969],[-40.617568,-20.826869],[-40.615768,-20.824269],[-40.614668,-20.819569],[-40.613568,-20.815869],[-40.611868,-20.813269],[-40.610768,-20.809969],[-40.607568,-20.805869],[-40.603068,-20.804969],[-40.598668,-20.804969],[-40.594568,-20.802869],[-40.590168,-20.801969],[-40.586968,-20.804669],[-40.582868,-20.803069],[-40.582368,-20.798269],[-40.580668,-20.794469],[-40.577568,-20.790069],[-40.574568,-20.787569],[-40.576468,-20.783669],[-40.576768,-20.780169],[-40.576568,-20.776969],[-40.575768,-20.773469],[-40.574568,-20.770669],[-40.572668,-20.767969],[-40.570168,-20.764069],[-40.568068,-20.761069],[-40.565268,-20.758469],[-40.562968,-20.755569],[-40.560768,-20.752069],[-40.558668,-20.748669],[-40.556668,-20.746569],[-40.554368,-20.744469],[-40.551868,-20.742269],[-40.548568,-20.740269],[-40.543168,-20.738569],[-40.538868,-20.738569],[-40.535968,-20.742169],[-40.533368,-20.740769],[-40.532268,-20.735869],[-40.527068,-20.733569],[-40.527268,-20.729469],[-40.524268,-20.729269],[-40.520968,-20.728669],[-40.524068,-20.725669],[-40.522968,-20.720869],[-40.520468,-20.716769],[-40.518668,-20.712969],[-40.516568,-20.709569],[-40.514668,-20.705369],[-40.514368,-20.702069],[-40.513568,-20.698169],[-40.512468,-20.695169],[-40.510768,-20.691669],[-40.508868,-20.688569],[-40.507168,-20.685769],[-40.504568,-20.682769],[-40.501668,-20.678569],[-40.499968,-20.675069],[-40.496568,-20.673969],[-40.494368,-20.670869],[-40.492168,-20.668169],[-40.494368,-20.665569],[-40.496268,-20.662869],[-40.494068,-20.659469],[-40.491168,-20.656969],[-40.487468,-20.654769],[-40.484168,-20.653069],[-40.479768,-20.652569],[-40.475568,-20.653469],[-40.474468,-20.656269],[-40.473468,-20.660269],[-40.467668,-20.660969],[-40.467368,-20.656969],[-40.466968,-20.653369],[-40.471968,-20.652369],[-40.470568,-20.649069],[-40.468068,-20.646869],[-40.464868,-20.644869],[-40.468768,-20.642169],[-40.470068,-20.639369],[-40.467868,-20.636769],[-40.469468,-20.633469],[-40.466968,-20.631569],[-40.464868,-20.629669],[-40.465168,-20.625769],[-40.462368,-20.623369],[-40.458468,-20.623069],[-40.454668,-20.623369],[-40.449968,-20.625169],[-40.446568,-20.628769],[-40.446068,-20.632169],[-40.449068,-20.635369],[-40.445668,-20.637469],[-40.441868,-20.634669],[-40.437468,-20.634869],[-40.434968,-20.637469],[-40.433368,-20.641069],[-40.430468,-20.638569],[-40.429368,-20.635769],[-40.425368,-20.635769],[-40.425768,-20.631569],[-40.424668,-20.627769],[-40.423068,-20.624869],[-40.421468,-20.622269],[-40.419268,-20.619069],[-40.415968,-20.615069],[-40.413868,-20.611469],[-40.411968,-20.608969],[-40.410168,-20.606669],[-40.407068,-20.602769],[-40.404468,-20.599169],[-40.403668,-20.595269],[-40.403768,-20.591269],[-40.403668,-20.587969],[-40.402968,-20.584069],[-40.402268,-20.580369],[-40.401168,-20.577469],[-40.400068,-20.574669],[-40.398668,-20.571269],[-40.396868,-20.567169],[-40.395468,-20.564069],[-40.393568,-20.560269],[-40.391868,-20.557169],[-40.390068,-20.554469],[-40.388168,-20.551469],[-40.386368,-20.548869],[-40.384568,-20.546469],[-40.382668,-20.544169],[-40.380468,-20.540869],[-40.378268,-20.538069],[-40.376868,-20.535069],[-40.374868,-20.532069],[-40.371968,-20.528969],[-40.370168,-20.526469],[-40.368368,-20.522569],[-40.364468,-20.518969],[-40.359968,-20.518669],[-40.359668,-20.515069],[-40.359468,-20.510469],[-40.358068,-20.506269],[-40.356368,-20.502369],[-40.354668,-20.499469],[-40.353068,-20.496969],[-40.351368,-20.493069],[-40.349968,-20.488969],[-40.348668,-20.485769],[-40.347868,-20.481669],[-40.347268,-20.478169],[-40.345968,-20.475269],[-40.343968,-20.471669],[-40.341668,-20.467269],[-40.340068,-20.463969],[-40.337968,-20.460169],[-40.335968,-20.456769],[-40.333768,-20.453969],[-40.331768,-20.449969],[-40.329968,-20.445769],[-40.328968,-20.442069],[-40.326868,-20.438069],[-40.325368,-20.434369],[-40.323568,-20.430869],[-40.321768,-20.427969],[-40.319068,-20.426069],[-40.321268,-20.422469],[-40.322168,-20.418869],[-40.321568,-20.415669],[-40.321268,-20.412769],[-40.320268,-20.409169],[-40.319368,-20.405469],[-40.317768,-20.402069],[-40.316368,-20.398469],[-40.314868,-20.394369],[-40.313768,-20.391569],[-40.311568,-20.387369],[-40.309768,-20.384269],[-40.308268,-20.381369],[-40.304968,-20.376569],[-40.303068,-20.372769],[-40.301168,-20.369669],[-40.298368,-20.365769],[-40.295868,-20.362469],[-40.293568,-20.359969],[-40.290868,-20.358169],[-40.288168,-20.356669],[-40.284268,-20.353869],[-40.283368,-20.348369],[-40.283368,-20.344569],[-40.282368,-20.340869],[-40.280668,-20.336569],[-40.277668,-20.333569],[-40.273668,-20.332369],[-40.272368,-20.329269],[-40.268968,-20.328269],[-40.267368,-20.324869],[-40.271468,-20.322469],[-40.276468,-20.320969],[-40.278368,-20.315469],[-40.279068,-20.312369],[-40.276468,-20.310469],[-40.279268,-20.308269],[-40.283368,-20.308769],[-40.287368,-20.309069],[-40.289868,-20.307569],[-40.290268,-20.303269],[-40.289468,-20.298869],[-40.287768,-20.295069],[-40.287068,-20.292169],[-40.289568,-20.290269],[-40.290068,-20.287069],[-40.288468,-20.283169],[-40.286268,-20.280069],[-40.283468,-20.277269],[-40.280868,-20.275369],[-40.277868,-20.273769],[-40.275368,-20.270969],[-40.271868,-20.269369],[-40.268468,-20.267369],[-40.263568,-20.266069],[-40.259068,-20.265969],[-40.254368,-20.267969],[-40.254068,-20.271269],[-40.252068,-20.274369],[-40.249368,-20.278369],[-40.247968,-20.282369],[-40.245868,-20.285869],[-40.241968,-20.289569],[-40.236868,-20.294269],[-40.232768,-20.292269],[-40.233568,-20.284869],[-40.233868,-20.275469],[-40.231168,-20.270369],[-40.230068,-20.265769],[-40.228068,-20.263469],[-40.223668,-20.257169],[-40.220268,-20.258469],[-40.221668,-20.254969],[-40.223368,-20.252369],[-40.220868,-20.248669],[-40.217668,-20.245469],[-40.215468,-20.241469],[-40.213468,-20.238669],[-40.215368,-20.235869],[-40.213768,-20.232269],[-40.210768,-20.230069],[-40.208168,-20.227769],[-40.204968,-20.224269],[-40.201068,-20.219569],[-40.198768,-20.215869],[-40.198868,-20.212369],[-40.198168,-20.208969],[-40.196568,-20.205469],[-40.194568,-20.201369],[-40.192168,-20.198569],[-40.190968,-20.195169],[-40.190468,-20.191869],[-40.190468,-20.186969],[-40.190968,-20.183569],[-40.189168,-20.179769],[-40.188268,-20.176469],[-40.186268,-20.173169],[-40.185168,-20.169569],[-40.184368,-20.166669],[-40.184068,-20.162769],[-40.184068,-20.159169],[-40.183368,-20.155869],[-40.184368,-20.151969],[-40.184068,-20.147869],[-40.182968,-20.144369],[-40.181668,-20.141369],[-40.181868,-20.138469],[-40.181568,-20.134969],[-40.179768,-20.130469],[-40.177968,-20.124369],[-40.176368,-20.120469],[-40.175268,-20.117269],[-40.174968,-20.114169],[-40.172868,-20.110869],[-40.172168,-20.107769],[-40.172768,-20.104969],[-40.173168,-20.100969],[-40.173568,-20.097369],[-40.173068,-20.094169],[-40.173868,-20.088969],[-40.173868,-20.083969],[-40.173568,-20.079669],[-40.173368,-20.076569],[-40.174768,-20.073969],[-40.176468,-20.070969],[-40.178668,-20.069169],[-40.180768,-20.066869],[-40.182268,-20.063769],[-40.184768,-20.061569],[-40.187168,-20.059469],[-40.189168,-20.057269],[-40.192768,-20.054669],[-40.190568,-20.052169],[-40.189168,-20.048369],[-40.189068,-20.045069],[-40.185168,-20.041369],[-40.181568,-20.038969],[-40.177968,-20.038069],[-40.173968,-20.037069],[-40.169768,-20.037369],[-40.163268,-20.037969],[-40.159168,-20.035869],[-40.159168,-20.032569],[-40.158468,-20.029769],[-40.158368,-20.025669],[-40.159268,-20.020669],[-40.157868,-20.015769],[-40.154468,-20.011069],[-40.151468,-20.007169],[-40.148968,-20.005669],[-40.148368,-20.002669],[-40.147668,-19.999369],[-40.148168,-19.995069],[-40.148368,-19.992169],[-40.146868,-19.988569],[-40.143268,-19.985369],[-40.141468,-19.980069],[-40.139268,-19.975869],[-40.137368,-19.972069],[-40.134368,-19.968169],[-40.132768,-19.965469],[-40.133868,-19.961469],[-40.136868,-19.957869],[-40.139868,-19.955469],[-40.143268,-19.953869],[-40.146768,-19.954269],[-40.150168,-19.954269],[-40.153668,-19.952469],[-40.152568,-19.949369],[-40.150068,-19.946569],[-40.147568,-19.945169],[-40.144568,-19.944869],[-40.142068,-19.943069],[-40.137968,-19.941269],[-40.134268,-19.939169],[-40.132168,-19.936369],[-40.129068,-19.934169],[-40.124768,-19.932969],[-40.121068,-19.931869],[-40.117668,-19.930869],[-40.115468,-19.928569],[-40.111968,-19.925769],[-40.107868,-19.923669],[-40.103668,-19.921869],[-40.099868,-19.918869],[-40.098468,-19.915269],[-40.097368,-19.911269],[-40.098068,-19.906269],[-40.095968,-19.902269],[-40.093168,-19.898769],[-40.091968,-19.894569],[-40.089268,-19.892669],[-40.089268,-19.889369],[-40.087668,-19.886769],[-40.086568,-19.883269],[-40.085068,-19.879469],[-40.083268,-19.876869],[-40.081468,-19.874469],[-40.078268,-19.873269],[-40.076768,-19.870469],[-40.074568,-19.867469],[-40.072068,-19.864469],[-40.069168,-19.861669],[-40.067368,-19.858069],[-40.065468,-19.855669],[-40.063368,-19.852469],[-40.060768,-19.849569],[-40.061568,-19.846769],[-40.061968,-19.843069],[-40.059368,-19.839869],[-40.054968,-19.843069],[-40.054668,-19.838769],[-40.057268,-19.836169],[-40.058368,-19.831869],[-40.058068,-19.827169],[-40.056868,-19.821269],[-40.055168,-19.815769],[-40.053568,-19.812769],[-40.051168,-19.809169],[-40.049468,-19.806569],[-40.045668,-19.801369],[-40.041468,-19.796469],[-40.036968,-19.791069],[-40.029868,-19.783169],[-40.025068,-19.778069],[-40.022368,-19.775369],[-40.019768,-19.772569],[-40.015368,-19.768169],[-40.007968,-19.761269],[-40.005168,-19.758469],[-39.996168,-19.750169],[-39.988868,-19.743669],[-39.977868,-19.734169],[-39.971768,-19.728969],[-39.968068,-19.725669],[-39.965368,-19.723869],[-39.962668,-19.721969],[-39.959368,-19.719569],[-39.954568,-19.715869],[-39.951868,-19.713969],[-39.947668,-19.710869],[-39.942768,-19.707269],[-39.939368,-19.704569],[-39.931568,-19.699269],[-39.926068,-19.695969],[-39.918868,-19.691269],[-39.911668,-19.686969],[-39.909168,-19.685469],[-39.905668,-19.683569],[-39.902568,-19.682169],[-39.899768,-19.680769],[-39.894368,-19.678069],[-39.890168,-19.676069],[-39.887068,-19.674969],[-39.882768,-19.672869],[-39.879568,-19.671369],[-39.874968,-19.669469],[-39.870468,-19.667869],[-39.866868,-19.666669],[-39.863068,-19.664969],[-39.859268,-19.663669],[-39.856068,-19.662369],[-39.852568,-19.661169],[-39.849568,-19.660069],[-39.845968,-19.659169],[-39.842268,-19.658169],[-39.838768,-19.657369],[-39.834068,-19.656169],[-39.828268,-19.654769],[-39.824268,-19.654269],[-39.820168,-19.655169],[-39.815568,-19.653769],[-39.811668,-19.650369],[-39.810868,-19.646569],[-39.811268,-19.642869],[-39.809468,-19.637069],[-39.807968,-19.631869],[-39.804668,-19.626669],[-39.802168,-19.622469],[-39.800368,-19.619069],[-39.798168,-19.615269],[-39.796168,-19.611069],[-39.794468,-19.607769],[-39.791768,-19.602869],[-39.789968,-19.599469],[-39.788368,-19.596469],[-39.785968,-19.591269],[-39.783768,-19.587069],[-39.782268,-19.583969],[-39.778368,-19.576069],[-39.774468,-19.567669],[-39.771168,-19.560169],[-39.766768,-19.550869],[-39.762368,-19.539569],[-39.760668,-19.535569],[-39.757068,-19.526969],[-39.754168,-19.520969],[-39.751668,-19.514669],[-39.749868,-19.510469],[-39.748068,-19.506569],[-39.745168,-19.500869],[-39.743368,-19.497269],[-39.741568,-19.493569],[-39.738668,-19.487469],[-39.737568,-19.484769],[-39.735868,-19.480969],[-39.733568,-19.475769],[-39.730668,-19.469269],[-39.728868,-19.463969],[-39.726968,-19.458269],[-39.725868,-19.454669],[-39.724168,-19.447969],[-39.722668,-19.444569],[-39.721368,-19.441569],[-39.720368,-19.438269],[-39.718768,-19.433369],[-39.716968,-19.428869],[-39.714768,-19.423369],[-39.713368,-19.419169],[-39.711268,-19.414469],[-39.709568,-19.410569],[-39.707868,-19.404769],[-39.705768,-19.400769],[-39.703568,-19.394269],[-39.702168,-19.390069],[-39.700968,-19.386069],[-39.699968,-19.382369],[-39.699568,-19.378369],[-39.698468,-19.374469],[-39.697468,-19.371269],[-39.696568,-19.367569],[-39.696068,-19.364769],[-39.695268,-19.360569],[-39.694868,-19.356469],[-39.694268,-19.351669],[-39.693868,-19.348369],[-39.693468,-19.344769],[-39.692768,-19.340169],[-39.692368,-19.335469],[-39.691868,-19.330769],[-39.691368,-19.325169],[-39.690968,-19.321869],[-39.690468,-19.317069],[-39.689868,-19.311569],[-39.689068,-19.304769],[-39.689068,-19.301469],[-39.689068,-19.298569],[-39.689068,-19.293169],[-39.689368,-19.289169],[-39.689868,-19.285669],[-39.690768,-19.279769],[-39.691368,-19.274069],[-39.692368,-19.268469],[-39.693868,-19.260669],[-39.694368,-19.257669],[-39.695468,-19.251269],[-39.696668,-19.244169],[-39.697368,-19.241069],[-39.700468,-19.226669],[-39.701768,-19.220569],[-39.702168,-19.217069],[-39.702968,-19.212869],[-39.703768,-19.209369],[-39.704368,-19.205669],[-39.705468,-19.198469],[-39.705968,-19.195269],[-39.706468,-19.191869],[-39.706868,-19.187969],[-39.707968,-19.182269],[-39.708468,-19.179369],[-39.709068,-19.174669],[-39.709668,-19.170869],[-39.710368,-19.166769],[-39.711268,-19.159469],[-39.711768,-19.156569],[-39.712268,-19.152569],[-39.712868,-19.148169],[-39.713468,-19.143169],[-39.713968,-19.139669],[-39.714468,-19.135269],[-39.715068,-19.130769],[-39.715868,-19.125469],[-39.716268,-19.120469],[-39.717068,-19.116369],[-39.717568,-19.110369],[-39.718368,-19.104969],[-39.720268,-19.099169],[-39.719468,-19.093369],[-39.719868,-19.090069],[-39.720868,-19.086569],[-39.721468,-19.081869],[-39.721968,-19.074969],[-39.722268,-19.067769],[-39.723468,-19.063069],[-39.724468,-19.057669],[-39.725268,-19.052569],[-39.726368,-19.046869],[-39.726768,-19.042469],[-39.728168,-19.033369],[-39.728568,-19.030169],[-39.728968,-19.027069],[-39.729168,-19.024069],[-39.729568,-19.020769],[-39.729968,-19.017069],[-39.730368,-19.013469],[-39.730568,-19.010169],[-39.731068,-19.007069],[-39.731468,-19.003869],[-39.732068,-18.999469],[-39.732768,-18.995469],[-39.733868,-18.988669],[-39.734668,-18.983369],[-39.735368,-18.977869],[-39.736068,-18.973669],[-39.736168,-18.970269],[-39.736368,-18.965469],[-39.736468,-18.961469],[-39.736668,-18.957869],[-39.737468,-18.954669],[-39.738268,-18.951069],[-39.739368,-18.947369],[-39.741068,-18.943469],[-39.742168,-18.939869],[-39.742968,-18.935169],[-39.743268,-18.930769],[-39.743368,-18.925069],[-39.743868,-18.910969],[-39.744068,-18.906469],[-39.744168,-18.902969],[-39.744368,-18.898969],[-39.744668,-18.892969],[-39.745168,-18.888169],[-39.745568,-18.883469],[-39.746168,-18.878769],[-39.746568,-18.875469],[-39.746968,-18.870169],[-39.747668,-18.865269],[-39.748068,-18.860069],[-39.748568,-18.855669],[-39.749068,-18.850369],[-39.749368,-18.844169],[-39.749668,-18.838669],[-39.749668,-18.834269],[-39.749468,-18.827469],[-39.749468,-18.824269],[-39.749368,-18.820569],[-39.749068,-18.816269],[-39.748768,-18.809369],[-39.748368,-18.798669],[-39.748368,-18.794969],[-39.748268,-18.786369],[-39.748268,-18.779469],[-39.748068,-18.775369],[-39.747768,-18.770369],[-39.747668,-18.764669],[-39.747368,-18.757669],[-39.747168,-18.753569],[-39.746968,-18.750569],[-39.746968,-18.747669],[-39.746868,-18.743269],[-39.746568,-18.739369],[-39.746268,-18.735069],[-39.746068,-18.731769],[-39.745868,-18.727269],[-39.746368,-18.719769],[-39.746568,-18.715069],[-39.746568,-18.706169],[-39.746068,-18.702869],[-39.746068,-18.699369],[-39.745768,-18.695269],[-39.745468,-18.690969],[-39.745068,-18.686869],[-39.744468,-18.682469],[-39.744068,-18.678569],[-39.743668,-18.674669],[-39.743268,-18.669669],[-39.743068,-18.666769],[-39.742568,-18.663369],[-39.741868,-18.658069],[-39.741168,-18.654269],[-39.740568,-18.650369],[-39.739968,-18.647069],[-39.738668,-18.642569],[-39.737868,-18.639569],[-39.736868,-18.635669],[-39.735868,-18.632769],[-39.734668,-18.629169],[-39.733568,-18.625769],[-39.732468,-18.622369],[-39.731168,-18.618669],[-39.729568,-18.614669],[-39.728468,-18.610769],[-39.728168,-18.606669],[-39.728068,-18.600669],[-39.728468,-18.596369],[-39.729268,-18.592269],[-39.730268,-18.588269],[-39.730568,-18.583669],[-39.730568,-18.579569],[-39.730368,-18.576269],[-39.730368,-18.572769],[-39.730268,-18.567769],[-39.729968,-18.562469],[-39.729768,-18.557969],[-39.729968,-18.552769],[-39.729968,-18.546469],[-39.729768,-18.542769],[-39.729168,-18.534169],[-39.728468,-18.528769],[-39.728368,-18.525669],[-39.728468,-18.521869],[-39.728068,-18.517069],[-39.727368,-18.513169],[-39.726668,-18.508269],[-39.725668,-18.504069],[-39.724768,-18.499669],[-39.723468,-18.493269],[-39.722868,-18.490069],[-39.721968,-18.486069],[-39.720868,-18.482169],[-39.720068,-18.479269],[-39.718768,-18.475269],[-39.717068,-18.469269],[-39.715868,-18.465169],[-39.714268,-18.460969],[-39.712668,-18.456269],[-39.711268,-18.452369],[-39.709368,-18.447869],[-39.708168,-18.443769],[-39.707068,-18.441069],[-39.706068,-18.438069],[-39.704568,-18.434069],[-39.703268,-18.430269],[-39.701868,-18.425869],[-39.700468,-18.421469],[-39.699268,-18.418069],[-39.697468,-18.414169],[-39.696068,-18.410969],[-39.694668,-18.407369],[-39.693168,-18.402669],[-39.690268,-18.393969],[-39.688368,-18.389269],[-39.686368,-18.384569],[-39.684768,-18.380969],[-39.682668,-18.376369],[-39.680868,-18.372469],[-39.679468,-18.369769],[-39.677568,-18.366169],[-39.676068,-18.362969],[-39.674768,-18.359469],[-39.673568,-18.356669],[-39.671368,-18.352769],[-39.669168,-18.350569],[-39.671468,-18.348369],[-39.668868,-18.343969],[-39.665568,-18.340169],[-39.663968,-18.336469],[-39.663068,-18.332269],[-39.660668,-18.326869],[-39.658468,-18.322969],[-39.659268,-18.319069],[-39.658868,-18.314669],[-39.657368,-18.311369],[-39.655968,-18.308369],[-39.655168,-18.305269],[-39.654568,-18.302469],[-39.653768,-18.299369],[-39.652668,-18.296169],[-39.652068,-18.292869],[-39.652268,-18.289969],[-39.652668,-18.287069],[-39.651568,-18.283369],[-39.650368,-18.279469],[-39.648768,-18.275369],[-39.647668,-18.271869],[-39.646468,-18.268469],[-39.644868,-18.264269],[-39.643168,-18.259869],[-39.642068,-18.256569],[-39.640068,-18.252669],[-39.638168,-18.249069],[-39.637768,-18.245269],[-39.637668,-18.240769],[-39.637068,-18.236469],[-39.634868,-18.231469],[-39.632668,-18.227269],[-39.631268,-18.224569],[-39.629868,-18.221769],[-39.627968,-18.217669],[-39.625468,-18.213469],[-39.622668,-18.209769],[-39.620868,-18.207069],[-39.618868,-18.203269],[-39.616668,-18.199569],[-39.615068,-18.196269],[-39.613568,-18.192669],[-39.610868,-18.187969],[-39.608668,-18.183669],[-39.606768,-18.180869],[-39.605068,-18.178069],[-39.603668,-18.175369],[-39.601968,-18.172769],[-39.599968,-18.169569],[-39.598368,-18.166669],[-39.596168,-18.163169],[-39.594268,-18.159869],[-39.592368,-18.157069],[-39.590368,-18.153769],[-39.587968,-18.149869],[-39.585468,-18.146169],[-39.583668,-18.143569],[-39.581468,-18.140369],[-39.579268,-18.137369],[-39.577068,-18.134069],[-39.573868,-18.130169],[-39.571368,-18.126669],[-39.569368,-18.123869],[-39.563568,-18.117269],[-39.560168,-18.113369],[-39.556868,-18.109969],[-39.554168,-18.107469],[-39.552168,-18.105269],[-39.549768,-18.102769],[-39.547768,-18.098469],[-39.548668,-18.095169],[-39.547268,-18.092269],[-39.545768,-18.088669],[-39.544568,-18.085069],[-39.542568,-18.080669],[-39.541068,-18.077569],[-39.539568,-18.074869],[-39.537868,-18.071569],[-39.535568,-18.067369],[-39.533468,-18.063769],[-39.531968,-18.060869],[-39.529468,-18.056669],[-39.527568,-18.053269],[-39.525968,-18.050569],[-39.524468,-18.047869],[-39.522368,-18.044569],[-39.520368,-18.040969],[-39.517568,-18.036469],[-39.515168,-18.032769],[-39.513168,-18.029769],[-39.511268,-18.026869],[-39.508868,-18.023669],[-39.506668,-18.020169],[-39.504468,-18.016769],[-39.502368,-18.013569],[-39.500468,-18.010469],[-39.498268,-18.007169],[-39.495868,-18.004069],[-39.493368,-18.000769],[-39.491168,-17.997669],[-39.488568,-17.994669],[-39.486168,-17.991669],[-39.483968,-17.988969],[-39.481068,-17.985269],[-39.478068,-17.981769],[-39.475968,-17.979269],[-39.473868,-17.976969],[-39.471468,-17.974469],[-39.468268,-17.970669],[-39.464768,-17.967269],[-39.462668,-17.965069],[-39.460468,-17.962969],[-39.456768,-17.959269],[-39.453268,-17.955769],[-39.450468,-17.953269],[-39.448168,-17.951069],[-39.445168,-17.948469],[-39.441668,-17.945669],[-39.438468,-17.942969],[-39.435868,-17.940769],[-39.433368,-17.938769],[-39.430768,-17.936669],[-39.427968,-17.934669],[-39.424968,-17.932669],[-39.421068,-17.930469],[-39.416668,-17.927769],[-39.412868,-17.925469],[-39.409768,-17.923669],[-39.406168,-17.921769],[-39.402668,-17.920269],[-39.398968,-17.918469],[-39.395468,-17.916969],[-39.392868,-17.915669],[-39.389668,-17.914569],[-39.386768,-17.913369],[-39.381268,-17.911369],[-39.377168,-17.910069],[-39.373068,-17.908769],[-39.367568,-17.907269],[-39.363568,-17.906269],[-39.361068,-17.904469],[-39.359668,-17.901469],[-39.362268,-17.897169],[-39.363668,-17.891869],[-39.356968,-17.890969],[-39.352768,-17.891269],[-39.348368,-17.891569],[-39.340868,-17.892069],[-39.335768,-17.892169],[-39.331468,-17.892869],[-39.326768,-17.892969],[-39.323268,-17.892369],[-39.319168,-17.891369],[-39.315568,-17.889969],[-39.312168,-17.888169],[-39.308768,-17.886469],[-39.304668,-17.884569],[-39.301468,-17.883069],[-39.298868,-17.881769],[-39.295568,-17.880269],[-39.292768,-17.878869],[-39.290068,-17.877769],[-39.287368,-17.876369],[-39.283468,-17.874469],[-39.278968,-17.872169],[-39.275668,-17.869669],[-39.272868,-17.867569],[-39.270468,-17.865769],[-39.267968,-17.863269],[-39.266268,-17.860269],[-39.265668,-17.856769],[-39.266268,-17.853669],[-39.267068,-17.850569],[-39.266068,-17.846669],[-39.264668,-17.843669],[-39.264668,-17.840069],[-39.261768,-17.835769],[-39.259268,-17.831469],[-39.257668,-17.828469],[-39.256668,-17.824969],[-39.254168,-17.822369],[-39.252068,-17.819169],[-39.249468,-17.816369],[-39.246968,-17.813569],[-39.244668,-17.810769],[-39.242168,-17.807769],[-39.239468,-17.805169],[-39.236868,-17.802569],[-39.234968,-17.799669],[-39.232768,-17.797469],[-39.230868,-17.794969],[-39.228368,-17.792769],[-39.225068,-17.789969],[-39.222568,-17.788069],[-39.219768,-17.785869],[-39.215968,-17.782369],[-39.212668,-17.779569],[-39.209768,-17.776869],[-39.206768,-17.773769],[-39.206268,-17.769869],[-39.204668,-17.766369],[-39.203968,-17.762669],[-39.204368,-17.758269],[-39.206868,-17.751569],[-39.207268,-17.746969],[-39.202868,-17.745469],[-39.198568,-17.743369],[-39.194868,-17.742169],[-39.191668,-17.741969],[-39.188468,-17.739369],[-39.185868,-17.735769],[-39.184368,-17.733169],[-39.181668,-17.730669],[-39.178668,-17.728169],[-39.175768,-17.726169],[-39.172768,-17.724269],[-39.169168,-17.721669],[-39.165568,-17.718369],[-39.162368,-17.715069],[-39.157768,-17.710869],[-39.154768,-17.708269],[-39.151968,-17.706069],[-39.148968,-17.703469],[-39.145168,-17.699869],[-39.142068,-17.696869],[-39.139668,-17.694869],[-39.137168,-17.692169],[-39.135768,-17.689169],[-39.138468,-17.684669],[-39.139868,-17.680069],[-39.142968,-17.675469],[-39.145968,-17.671469],[-39.149068,-17.667269],[-39.151568,-17.663769],[-39.154168,-17.660569],[-39.156968,-17.657369],[-39.159868,-17.653669],[-39.162768,-17.650069],[-39.164968,-17.647169],[-39.167168,-17.643969],[-39.169568,-17.640469],[-39.171368,-17.638169],[-39.173568,-17.634369],[-39.175768,-17.631069],[-39.177768,-17.627169],[-39.180068,-17.622969],[-39.181668,-17.619769],[-39.183268,-17.616669],[-39.184468,-17.613569],[-39.185768,-17.610869],[-39.186868,-17.608169],[-39.187968,-17.605369],[-39.189068,-17.601969],[-39.189968,-17.599169],[-39.190768,-17.596269],[-39.191668,-17.593369],[-39.192468,-17.589469],[-39.193468,-17.585469],[-39.193468,-17.580969],[-39.190468,-17.578569],[-39.188368,-17.574269],[-39.187968,-17.569869],[-39.188068,-17.565269],[-39.188468,-17.561069],[-39.189168,-17.557269],[-39.189068,-17.551969],[-39.189668,-17.546769],[-39.190168,-17.542269],[-39.190468,-17.538169],[-39.190468,-17.534869],[-39.190968,-17.529769],[-39.191268,-17.524569],[-39.191268,-17.521169],[-39.191368,-17.516069],[-39.191568,-17.512169],[-39.191668,-17.507469],[-39.191668,-17.504369],[-39.191668,-17.499869],[-39.191668,-17.494369],[-39.191968,-17.490269],[-39.192068,-17.486369],[-39.192168,-17.481669],[-39.192168,-17.476969],[-39.192168,-17.472669],[-39.192168,-17.468769],[-39.191868,-17.463369],[-39.191668,-17.459669],[-39.191668,-17.456569],[-39.191568,-17.452169],[-39.191668,-17.446869],[-39.192068,-17.442669],[-39.192668,-17.439569],[-39.193868,-17.435569],[-39.195168,-17.431669],[-39.196768,-17.427469],[-39.198468,-17.422869],[-39.199968,-17.418469],[-39.201768,-17.413869],[-39.203268,-17.409469],[-39.203768,-17.406169],[-39.204668,-17.402269],[-39.203468,-17.397669],[-39.203568,-17.393269],[-39.204668,-17.390169],[-39.205668,-17.385969],[-39.206768,-17.382069],[-39.207568,-17.378069],[-39.208268,-17.374869],[-39.209268,-17.371969],[-39.209868,-17.369069],[-39.210668,-17.365769],[-39.211468,-17.362269],[-39.212268,-17.358969],[-39.212868,-17.355969],[-39.213668,-17.352269],[-39.214568,-17.348369],[-39.215568,-17.344769],[-39.216268,-17.341569],[-39.217268,-17.337269],[-39.217868,-17.332569],[-39.218468,-17.326769],[-39.219168,-17.321769],[-39.219768,-17.316069],[-39.220268,-17.311369],[-39.220568,-17.306869],[-39.220868,-17.302469],[-39.220968,-17.298669],[-39.220968,-17.294969],[-39.220968,-17.290869],[-39.221168,-17.286369],[-39.220968,-17.282369],[-39.220568,-17.279469],[-39.219168,-17.275969],[-39.219168,-17.272869],[-39.219268,-17.269269],[-39.219468,-17.265669],[-39.218768,-17.261769],[-39.217668,-17.257769],[-39.217068,-17.254169],[-39.216168,-17.250469],[-39.215068,-17.245869],[-39.213768,-17.240769],[-39.213168,-17.235569],[-39.213668,-17.231069],[-39.214068,-17.226969],[-39.214068,-17.222369],[-39.214068,-17.218669],[-39.214068,-17.215469],[-39.214068,-17.210369],[-39.214068,-17.206169],[-39.213668,-17.202169],[-39.213468,-17.197469],[-39.212868,-17.192369],[-39.212568,-17.189069],[-39.212268,-17.185169],[-39.212968,-17.179669],[-39.213168,-17.175069],[-39.212968,-17.170069],[-39.212668,-17.166069],[-39.212068,-17.162069],[-39.210868,-17.157369],[-39.209768,-17.153369],[-39.207868,-17.147269],[-39.206468,-17.143169],[-39.204668,-17.140669],[-39.202568,-17.137769],[-39.201268,-17.133769],[-39.198268,-17.127969],[-39.193768,-17.123569],[-39.188368,-17.119969],[-39.184968,-17.116969],[-39.183268,-17.114169],[-39.181868,-17.111369],[-39.181068,-17.108169],[-39.180468,-17.104269],[-39.180768,-17.100669],[-39.179768,-17.097369],[-39.178968,-17.093769],[-39.179668,-17.090169],[-39.179968,-17.086469],[-39.180168,-17.082569],[-39.179968,-17.079269],[-39.178668,-17.075669],[-39.177468,-17.072769],[-39.176968,-17.068869],[-39.175068,-17.065869],[-39.171868,-17.063569],[-39.171168,-17.058269],[-39.173668,-17.054369],[-39.174268,-17.050369],[-39.173668,-17.045269],[-39.172768,-17.041769],[-39.171668,-17.038069],[-39.171368,-17.033969],[-39.171868,-17.030169],[-39.171968,-17.026569],[-39.171868,-17.022569],[-39.172268,-17.018669],[-39.172168,-17.013869],[-39.170768,-17.007769],[-39.169168,-17.003769],[-39.167468,-17.000169],[-39.165668,-16.996969],[-39.163468,-16.993669],[-39.161268,-16.990069],[-39.159468,-16.987469],[-39.157568,-16.983669],[-39.155868,-16.980969],[-39.155168,-16.978069],[-39.154768,-16.974169],[-39.153968,-16.970569],[-39.153668,-16.966669],[-39.154268,-16.962969],[-39.153768,-16.958769],[-39.152968,-16.955069],[-39.152068,-16.950969],[-39.151268,-16.947069],[-39.151768,-16.943869],[-39.150468,-16.940769],[-39.148968,-16.938369],[-39.146768,-16.934669],[-39.144268,-16.930169],[-39.141568,-16.926469],[-39.139268,-16.923569],[-39.136768,-16.920769],[-39.134868,-16.918469],[-39.132668,-16.915869],[-39.130168,-16.912369],[-39.127668,-16.908869],[-39.125568,-16.906469],[-39.122968,-16.903669],[-39.120268,-16.901469],[-39.116868,-16.899069],[-39.111868,-16.896869],[-39.113568,-16.894269],[-39.116868,-16.892869],[-39.120068,-16.892669],[-39.122668,-16.890069],[-39.125568,-16.888169],[-39.128568,-16.885469],[-39.131768,-16.882469],[-39.134068,-16.879469],[-39.136468,-16.876569],[-39.138968,-16.872669],[-39.141768,-16.868669],[-39.142168,-16.865069],[-39.142368,-16.860669],[-39.142368,-16.856769],[-39.142468,-16.852569],[-39.143668,-16.846969],[-39.144768,-16.843669],[-39.144268,-16.839769],[-39.144268,-16.834669],[-39.144668,-16.830469],[-39.144768,-16.827369],[-39.144768,-16.823869],[-39.144868,-16.819169],[-39.145368,-16.814369],[-39.145368,-16.810869],[-39.145368,-16.806569],[-39.144668,-16.801869],[-39.144268,-16.798869],[-39.144268,-16.795769],[-39.143968,-16.790269],[-39.143168,-16.784769],[-39.142068,-16.779869],[-39.142068,-16.774769],[-39.140768,-16.770769],[-39.141868,-16.767469],[-39.141768,-16.763869],[-39.141268,-16.759969],[-39.140768,-16.756869],[-39.139868,-16.754069],[-39.137368,-16.750269],[-39.133868,-16.750769],[-39.130768,-16.749369],[-39.128068,-16.746969],[-39.128068,-16.744069],[-39.127368,-16.739069],[-39.126268,-16.734469],[-39.125768,-16.730969],[-39.123568,-16.727469],[-39.121868,-16.724769],[-39.119368,-16.722269],[-39.116068,-16.719169],[-39.115868,-16.715669],[-39.114668,-16.712969],[-39.111668,-16.712269],[-39.108268,-16.710369],[-39.106668,-16.707369],[-39.107168,-16.704269],[-39.105568,-16.701069],[-39.103868,-16.697969],[-39.103968,-16.694369],[-39.103868,-16.690769],[-39.104268,-16.686969],[-39.104668,-16.682769],[-39.104268,-16.678569],[-39.103968,-16.674169],[-39.103168,-16.670369],[-39.102768,-16.667269],[-39.102068,-16.664469],[-39.100968,-16.661169],[-39.098668,-16.657069],[-39.094768,-16.654169],[-39.094768,-16.649769],[-39.096168,-16.645669],[-39.095568,-16.642669],[-39.093368,-16.639569],[-39.092668,-16.634969],[-39.091268,-16.630269],[-39.090068,-16.626369],[-39.090868,-16.623569],[-39.092568,-16.620469],[-39.093368,-16.617269],[-39.094168,-16.614369],[-39.094468,-16.610769],[-39.093968,-16.607469],[-39.092268,-16.603369],[-39.090968,-16.600669],[-39.089068,-16.598469],[-39.088668,-16.594869],[-39.087868,-16.590969],[-39.088768,-16.586969],[-39.088668,-16.583169],[-39.087868,-16.580069],[-39.086568,-16.576269],[-39.085368,-16.572769],[-39.085368,-16.568869],[-39.085768,-16.565869],[-39.086468,-16.562269],[-39.086468,-16.557269],[-39.085868,-16.552269],[-39.085368,-16.547769],[-39.084568,-16.544969],[-39.083968,-16.541669],[-39.083168,-16.537869],[-39.081868,-16.533969],[-39.080668,-16.530069],[-39.079668,-16.526269],[-39.078768,-16.522969],[-39.077168,-16.518269],[-39.074668,-16.514369],[-39.073168,-16.509969],[-39.072168,-16.506069],[-39.070968,-16.502069],[-39.069568,-16.498369],[-39.068468,-16.494669],[-39.067668,-16.490269],[-39.067368,-16.486169],[-39.067368,-16.483169],[-39.065968,-16.480269],[-39.064168,-16.477469],[-39.062468,-16.474469],[-39.061668,-16.470869],[-39.061368,-16.466269],[-39.060568,-16.461469],[-39.059968,-16.457269],[-39.063868,-16.455369],[-39.062368,-16.451069],[-39.061068,-16.447369],[-39.061268,-16.443869],[-39.061868,-16.440569],[-39.061968,-16.436269],[-39.061268,-16.432969],[-39.059868,-16.429069],[-39.057268,-16.425469],[-39.054668,-16.422169],[-39.051568,-16.417569],[-39.049468,-16.413169],[-39.047568,-16.409869],[-39.045868,-16.406569],[-39.043568,-16.403669],[-39.041368,-16.400069],[-39.039468,-16.395169],[-39.036668,-16.391369],[-39.034268,-16.388169],[-39.030868,-16.384969],[-39.025468,-16.380969],[-39.021168,-16.378769],[-39.016468,-16.377169],[-39.011768,-16.375969],[-39.008768,-16.374669],[-39.008768,-16.370569],[-39.009368,-16.367569],[-39.009868,-16.364669],[-39.010668,-16.361069],[-39.011868,-16.357869],[-39.012768,-16.354969],[-39.012368,-16.350869],[-39.009968,-16.346169],[-39.007068,-16.343669],[-39.006268,-16.340869],[-39.007668,-16.336769],[-39.007568,-16.332569],[-39.013168,-16.330369],[-39.016468,-16.328569],[-39.018668,-16.326269],[-39.020768,-16.322869],[-39.022568,-16.317969],[-39.023368,-16.312769],[-39.023668,-16.308269],[-39.023668,-16.302269],[-39.023368,-16.296769],[-39.022968,-16.293169],[-39.022568,-16.289469],[-39.021768,-16.285569],[-39.020768,-16.282369],[-39.019768,-16.279569],[-39.018768,-16.276769],[-39.017568,-16.273169],[-39.016768,-16.270069],[-39.015668,-16.267069],[-39.014068,-16.262969],[-39.012468,-16.258769],[-39.011068,-16.255269],[-39.010168,-16.252369],[-39.010968,-16.248369],[-39.010668,-16.244769],[-39.008068,-16.241169],[-39.004868,-16.237569],[-39.002168,-16.234469],[-39.000468,-16.232069],[-38.997968,-16.229169],[-38.995768,-16.227069],[-38.993568,-16.224869],[-38.991368,-16.222369],[-38.989068,-16.220069],[-38.985368,-16.217569],[-38.981068,-16.215869],[-38.978068,-16.215069],[-38.974468,-16.212869],[-38.973368,-16.208969],[-38.973368,-16.205369],[-38.972768,-16.202169],[-38.971968,-16.199069],[-38.969868,-16.195969],[-38.967668,-16.193469],[-38.964768,-16.189669],[-38.961768,-16.184569],[-38.958668,-16.179669],[-38.958268,-16.175769],[-38.958268,-16.171169],[-38.956768,-16.166969],[-38.953568,-16.161769],[-38.950268,-16.158369],[-38.948168,-16.155069],[-38.948268,-16.150969],[-38.949868,-16.147069],[-38.952068,-16.143669],[-38.954568,-16.139669],[-38.955968,-16.134669],[-38.956568,-16.130169],[-38.956468,-16.125569],[-38.956068,-16.120769],[-38.955768,-16.117769],[-38.955368,-16.114469],[-38.955068,-16.111469],[-38.954668,-16.108569],[-38.954268,-16.105269],[-38.953268,-16.102069],[-38.952568,-16.098869],[-38.951068,-16.095169],[-38.949668,-16.092269],[-38.947468,-16.090069],[-38.947368,-16.086469],[-38.946268,-16.083569],[-38.944668,-16.079269],[-38.944168,-16.074369],[-38.943268,-16.070169],[-38.941868,-16.065569],[-38.940468,-16.061969],[-38.939368,-16.058669],[-38.938068,-16.055469],[-38.936268,-16.050469],[-38.934668,-16.046369],[-38.933268,-16.042769],[-38.932268,-16.039869],[-38.930768,-16.036369],[-38.929168,-16.033069],[-38.927268,-16.030569],[-38.924468,-16.028369],[-38.923968,-16.024469],[-38.922768,-16.020969],[-38.921668,-16.016869],[-38.919968,-16.012469],[-38.918368,-16.008569],[-38.916668,-16.004069],[-38.915368,-16.000169],[-38.914468,-15.997269],[-38.913168,-15.993569],[-38.911468,-15.988969],[-38.909868,-15.984669],[-38.908468,-15.979969],[-38.907268,-15.976669],[-38.906168,-15.973469],[-38.905168,-15.970369],[-38.903968,-15.967369],[-38.902268,-15.963169],[-38.900768,-15.959569],[-38.899068,-15.955669],[-38.897668,-15.951769],[-38.896268,-15.948569],[-38.894768,-15.945269],[-38.893168,-15.941569],[-38.891468,-15.937469],[-38.889668,-15.933369],[-38.888168,-15.929769],[-38.886468,-15.926069],[-38.884968,-15.922469],[-38.882768,-15.917569],[-38.881268,-15.913669],[-38.879468,-15.909869],[-38.877668,-15.905669],[-38.875568,-15.900969],[-38.874068,-15.897169],[-38.872668,-15.893769],[-38.871268,-15.890369],[-38.869768,-15.887069],[-38.868068,-15.883469],[-38.866468,-15.879169],[-38.864968,-15.874969],[-38.863568,-15.871569],[-38.862468,-15.868369],[-38.860768,-15.864969],[-38.858868,-15.861169],[-38.856668,-15.857269],[-38.854268,-15.853069],[-38.852868,-15.848669],[-38.852868,-15.844569],[-38.853168,-15.839569],[-38.854168,-15.835069],[-38.857068,-15.830669],[-38.858968,-15.827169],[-38.861368,-15.823869],[-38.865068,-15.821869],[-38.867668,-15.818469],[-38.869368,-15.815869],[-38.871168,-15.813069],[-38.872968,-15.809769],[-38.875168,-15.805469],[-38.877468,-15.800469],[-38.879468,-15.796469],[-38.880968,-15.793569],[-38.882368,-15.790569],[-38.883868,-15.787369],[-38.885368,-15.784169],[-38.887068,-15.780569],[-38.888868,-15.776769],[-38.890468,-15.773669],[-38.891768,-15.770769],[-38.893168,-15.767369],[-38.894568,-15.764369],[-38.896168,-15.760269],[-38.897868,-15.755769],[-38.899368,-15.751369],[-38.900968,-15.746969],[-38.902568,-15.743269],[-38.903668,-15.739669],[-38.904868,-15.736069],[-38.905868,-15.732869],[-38.908068,-15.728669],[-38.910068,-15.724169],[-38.909568,-15.720969],[-38.912068,-15.717669],[-38.916368,-15.716169],[-38.918568,-15.711569],[-38.921068,-15.703269],[-38.923368,-15.699669],[-38.925468,-15.695969],[-38.927468,-15.690969],[-38.928868,-15.686569],[-38.930568,-15.681569],[-38.932268,-15.675469],[-38.933568,-15.670769],[-38.934668,-15.665869],[-38.935868,-15.658669],[-38.936568,-15.654469],[-38.936968,-15.650469],[-38.938068,-15.644769],[-38.938768,-15.638469],[-38.939168,-15.632169],[-38.939368,-15.627369],[-38.939668,-15.621069],[-38.939868,-15.616969],[-38.939968,-15.611169],[-38.940168,-15.605669],[-38.940168,-15.600669],[-38.940468,-15.597569],[-38.942968,-15.593669],[-38.943768,-15.587269],[-38.943168,-15.582869],[-38.943268,-15.579269],[-38.943068,-15.575969],[-38.943268,-15.572069],[-38.943168,-15.564369],[-38.942768,-15.560569],[-38.942668,-15.557269],[-38.942668,-15.553569],[-38.942368,-15.549269],[-38.942168,-15.544269],[-38.942068,-15.540269],[-38.942368,-15.536969],[-38.942668,-15.533069],[-38.942968,-15.528369],[-38.943268,-15.524369],[-38.943568,-15.520669],[-38.944068,-15.516869],[-38.944668,-15.512869],[-38.945168,-15.508769],[-38.945668,-15.505669],[-38.946268,-15.502469],[-38.946768,-15.497669],[-38.947468,-15.493569],[-38.948468,-15.489969],[-38.949268,-15.485769],[-38.950668,-15.481369],[-38.952068,-15.471369],[-38.952168,-15.466569],[-38.953268,-15.462569],[-38.954268,-15.459069],[-38.955368,-15.455369],[-38.956268,-15.451869],[-38.957568,-15.447669],[-38.958968,-15.442069],[-38.960168,-15.437969],[-38.960968,-15.434769],[-38.961868,-15.431169],[-38.963168,-15.427169],[-38.963968,-15.424169],[-38.965168,-15.418869],[-38.966268,-15.414569],[-38.967668,-15.409469],[-38.968668,-15.405369],[-38.969568,-15.401469],[-38.970868,-15.396569],[-38.971368,-15.393769],[-38.972068,-15.390769],[-38.973068,-15.386569],[-38.973968,-15.381069],[-38.974568,-15.376569],[-38.975368,-15.371569],[-38.975968,-15.366869],[-38.976768,-15.363269],[-38.977368,-15.359169],[-38.978168,-15.353669],[-38.979168,-15.348069],[-38.980068,-15.343969],[-38.980568,-15.340669],[-38.981168,-15.337269],[-38.981668,-15.333969],[-38.982268,-15.330369],[-38.982868,-15.325769],[-38.983668,-15.321669],[-38.984168,-15.317669],[-38.984768,-15.312769],[-38.985268,-15.309669],[-38.985668,-15.306169],[-38.986668,-15.301169],[-38.989668,-15.298569],[-38.992268,-15.296969],[-38.991668,-15.292869],[-38.990768,-15.289269],[-38.990868,-15.285069],[-38.991168,-15.281669],[-38.991468,-15.278169],[-38.991868,-15.273669],[-38.991968,-15.269769],[-38.992168,-15.265069],[-38.992468,-15.260769],[-38.992668,-15.256869],[-38.992768,-15.253369],[-38.992968,-15.250469],[-38.993268,-15.246869],[-38.993268,-15.243569],[-38.993368,-15.239969],[-38.994068,-15.234669],[-38.994468,-15.228669],[-38.994968,-15.224469],[-38.995868,-15.220969],[-38.996568,-15.217069],[-38.996568,-15.213669],[-38.996568,-15.210069],[-38.996668,-15.206869],[-38.996568,-15.203169],[-38.996568,-15.198569],[-38.996368,-15.193169],[-38.996168,-15.188069],[-38.995868,-15.184369],[-38.995768,-15.180169],[-38.995768,-15.174969],[-38.995268,-15.169969],[-38.995168,-15.165569],[-38.994968,-15.160869],[-38.994968,-15.157369],[-38.994768,-15.153669],[-38.994768,-15.148969],[-38.994968,-15.144269],[-38.994968,-15.140469],[-38.994968,-15.136569],[-38.995068,-15.132769],[-38.995468,-15.129369],[-38.995468,-15.125769],[-38.995568,-15.120869],[-38.995768,-15.117169],[-38.995768,-15.114169],[-38.995768,-15.109969],[-38.995868,-15.105069],[-38.996168,-15.098969],[-38.996368,-15.094869],[-38.996368,-15.090369],[-38.996268,-15.085669],[-38.996068,-15.079269],[-38.996068,-15.073269],[-38.996068,-15.068469],[-38.996068,-15.063069],[-38.996068,-15.058069],[-38.996168,-15.054369],[-38.996168,-15.050769],[-38.996268,-15.045369],[-38.996368,-15.041369],[-38.996368,-15.037569],[-38.996368,-15.032569],[-38.996368,-15.028369],[-38.996568,-15.025069],[-38.996568,-15.021869],[-38.996568,-15.018169],[-38.996368,-15.013569],[-38.996568,-15.009569],[-38.996568,-15.004569],[-38.996568,-15.000169],[-38.996968,-14.996069],[-38.997268,-14.991169],[-38.997668,-14.986769],[-38.998768,-14.983069],[-38.999668,-14.980269],[-39.001268,-14.977869],[-39.002768,-14.974169],[-39.003768,-14.970169],[-39.004068,-14.966269],[-39.004668,-14.961569],[-39.005268,-14.956869],[-39.006868,-14.952169],[-39.008068,-14.949269],[-39.008868,-14.945969],[-39.010468,-14.941669],[-39.013468,-14.937969],[-39.014568,-14.932969],[-39.015668,-14.930169],[-39.016768,-14.926669],[-39.018268,-14.921369],[-39.018968,-14.916369],[-39.019568,-14.912069],[-39.020068,-14.907569],[-39.020068,-14.902669],[-39.020668,-14.899469],[-39.021268,-14.896469],[-39.021768,-14.893169],[-39.021868,-14.888469],[-39.022368,-14.883469],[-39.022668,-14.877669],[-39.022968,-14.872169],[-39.023268,-14.866369],[-39.023668,-14.861869],[-39.023668,-14.858669],[-39.023768,-14.854469],[-39.023968,-14.850569],[-39.023968,-14.847369],[-39.024068,-14.843169],[-39.024068,-14.837569],[-39.023968,-14.833169],[-39.023968,-14.830169],[-39.024068,-14.825969],[-39.024068,-14.820969],[-39.023968,-14.815869],[-39.023968,-14.811869],[-39.024368,-14.805469],[-39.029168,-14.803569],[-39.028768,-14.798669],[-39.027868,-14.794169],[-39.027668,-14.791169],[-39.027568,-14.787769],[-39.027668,-14.783369],[-39.031468,-14.784469],[-39.035068,-14.783469],[-39.039868,-14.783069],[-39.043168,-14.781269],[-39.046168,-14.779469],[-39.049468,-14.777269],[-39.052568,-14.777869],[-39.054168,-14.774769],[-39.054068,-14.770069],[-39.056068,-14.766369],[-39.057768,-14.762469],[-39.059368,-14.758469],[-39.060568,-14.753869],[-39.061568,-14.749969],[-39.062268,-14.745769],[-39.062668,-14.742269],[-39.062968,-14.739369],[-39.063468,-14.734469],[-39.063768,-14.729469],[-39.064068,-14.725669],[-39.064068,-14.722069],[-39.064468,-14.717669],[-39.064668,-14.713669],[-39.064968,-14.709669],[-39.064968,-14.704869],[-39.064968,-14.699969],[-39.065168,-14.694269],[-39.065168,-14.689069],[-39.065168,-14.684169],[-39.065168,-14.679369],[-39.065168,-14.675769],[-39.065168,-14.672469],[-39.065168,-14.669169],[-39.064868,-14.665869],[-39.064668,-14.662369],[-39.064668,-14.659469],[-39.064168,-14.654569],[-39.063868,-14.649369],[-39.063768,-14.645769],[-39.063568,-14.642569],[-39.063368,-14.639669],[-39.062968,-14.635369],[-39.062468,-14.631369],[-39.061868,-14.626569],[-39.060568,-14.620869],[-39.059368,-14.616169],[-39.057968,-14.611769],[-39.055768,-14.607869],[-39.054668,-14.602569],[-39.052968,-14.598369],[-39.053068,-14.593769],[-39.052568,-14.590169],[-39.050768,-14.586169],[-39.049268,-14.583269],[-39.048268,-14.579069],[-39.048268,-14.574069],[-39.047768,-14.569569],[-39.046468,-14.566369],[-39.045068,-14.563469],[-39.043068,-14.559769],[-39.041668,-14.554769],[-39.040068,-14.551569],[-39.039168,-14.547469],[-39.038368,-14.543169],[-39.037368,-14.540269],[-39.036468,-14.536469],[-39.035268,-14.532269],[-39.035968,-14.528669],[-39.035968,-14.524869],[-39.035868,-14.521069],[-39.034868,-14.517369],[-39.034468,-14.513869],[-39.034868,-14.510169],[-39.033468,-14.506069],[-39.033968,-14.502669],[-39.033968,-14.498869],[-39.033468,-14.494669],[-39.033068,-14.490769],[-39.032368,-14.486169],[-39.031268,-14.481469],[-39.029468,-14.477269],[-39.027368,-14.473169],[-39.026468,-14.469469],[-39.026268,-14.466469],[-39.025868,-14.461569],[-39.025068,-14.458269],[-39.024468,-14.453569],[-39.023468,-14.448769],[-39.022668,-14.444569],[-39.021768,-14.440569],[-39.021168,-14.436969],[-39.020668,-14.433369],[-39.019768,-14.429069],[-39.019068,-14.425469],[-39.018268,-14.420569],[-39.017068,-14.415269],[-39.015968,-14.410869],[-39.015368,-14.406669],[-39.014668,-14.403769],[-39.013968,-14.400969],[-39.013268,-14.397969],[-39.011768,-14.394369],[-39.010668,-14.389669],[-39.009968,-14.384569],[-39.009268,-14.380969],[-39.008468,-14.377369],[-39.007668,-14.373569],[-39.006368,-14.369369],[-39.004168,-14.364969],[-39.003768,-14.361069],[-39.001268,-14.358569],[-38.999968,-14.355869],[-39.001568,-14.353469],[-38.999768,-14.351169],[-39.000168,-14.347669],[-39.001368,-14.344569],[-38.999468,-14.340569],[-38.997968,-14.336469],[-38.997268,-14.333269],[-38.996068,-14.329869],[-38.994168,-14.325969],[-38.993268,-14.321569],[-38.992568,-14.318169],[-38.991168,-14.315469],[-38.989068,-14.312769],[-38.987868,-14.308269],[-38.985368,-14.305469],[-38.983568,-14.302569],[-38.981768,-14.298869],[-38.980568,-14.292869],[-38.983268,-14.290269],[-38.984768,-14.287569],[-38.984468,-14.284469],[-38.983368,-14.281169],[-38.983668,-14.278169],[-38.985368,-14.275369],[-38.989968,-14.275069],[-38.992668,-14.272869],[-38.993868,-14.269669],[-38.994768,-14.265669],[-38.995068,-14.261469],[-38.994768,-14.257369],[-38.994668,-14.253269],[-38.994368,-14.249069],[-38.994068,-14.244469],[-38.993668,-14.239969],[-38.992968,-14.235769],[-38.993668,-14.231969],[-38.993368,-14.228169],[-38.991268,-14.222569],[-38.987968,-14.220969],[-38.989668,-14.218469],[-38.989668,-14.215069],[-38.990268,-14.211569],[-38.990568,-14.207369],[-38.990368,-14.203469],[-38.989668,-14.198469],[-38.988868,-14.194569],[-38.988068,-14.190969],[-38.987268,-14.187669],[-38.986068,-14.182969],[-38.984968,-14.179469],[-38.983568,-14.176569],[-38.981768,-14.173569],[-38.979168,-14.170369],[-38.978068,-14.167269],[-38.978568,-14.162769],[-38.978568,-14.158369],[-38.977768,-14.153969],[-38.976168,-14.150169],[-38.975268,-14.146469],[-38.975368,-14.141369],[-38.974768,-14.138469],[-38.973968,-14.135669],[-38.972668,-14.131269],[-38.971468,-14.126969],[-38.968968,-14.122169],[-38.968668,-14.117969],[-38.967868,-14.114969],[-38.967268,-14.111969],[-38.966468,-14.108869],[-38.965468,-14.105069],[-38.963668,-14.101169],[-38.961468,-14.097569],[-38.960468,-14.094769],[-38.959768,-14.090869],[-38.958968,-14.087569],[-38.957868,-14.084369],[-38.955968,-14.081269],[-38.954668,-14.077469],[-38.954668,-14.073469],[-38.955168,-14.070269],[-38.954668,-14.065569],[-38.953568,-14.062469],[-38.952468,-14.059369],[-38.951568,-14.054769],[-38.951068,-14.049969],[-38.949068,-14.045069],[-38.948868,-14.041169],[-38.948968,-14.037869],[-38.948168,-14.033769],[-38.946868,-14.030169],[-38.945968,-14.026169],[-38.945768,-14.022669],[-38.945268,-14.019769],[-38.944268,-14.017069],[-38.942768,-14.013969],[-38.942768,-14.009869],[-38.943768,-14.005969],[-38.943768,-14.001069],[-38.942968,-13.995769],[-38.942168,-13.991669],[-38.941368,-13.988069],[-38.940168,-13.983369],[-38.939168,-13.978969],[-38.938068,-13.975269],[-38.936868,-13.971969],[-38.934468,-13.968669],[-38.933268,-13.965369],[-38.933268,-13.961469],[-38.932168,-13.957369],[-38.931368,-13.954369],[-38.930268,-13.951269],[-38.929668,-13.948469],[-38.929668,-13.945269],[-38.928268,-13.942669],[-38.927768,-13.938869],[-38.928368,-13.935869],[-38.929768,-13.932969],[-38.930168,-13.928369],[-38.930468,-13.924269],[-38.929968,-13.921069],[-38.928868,-13.916169],[-38.928368,-13.912269],[-38.928568,-13.907769],[-38.930068,-13.903669],[-38.932268,-13.898969],[-38.933668,-13.894269],[-38.934968,-13.891069],[-38.935868,-13.887469],[-38.938568,-13.884269],[-38.941268,-13.883169],[-38.943768,-13.880669],[-38.946368,-13.879069],[-38.952568,-13.873269],[-38.967668,-13.848669],[-38.972268,-13.842369],[-38.981368,-13.829069],[-38.983868,-13.826569],[-38.985368,-13.824069],[-38.986768,-13.821069],[-38.988268,-13.817369],[-38.989968,-13.812769],[-38.991468,-13.809469],[-38.993268,-13.806169],[-38.994768,-13.802769],[-38.996268,-13.798869],[-38.997668,-13.794269],[-38.998568,-13.789769],[-38.999168,-13.786969],[-38.999668,-13.783369],[-39.000168,-13.778769],[-39.000268,-13.774769],[-39.000268,-13.770769],[-39.000168,-13.766769],[-38.999468,-13.762369],[-38.999068,-13.758069],[-38.998568,-13.754569],[-38.998068,-13.750869],[-38.997468,-13.746569],[-38.996568,-13.742669],[-38.995568,-13.738869],[-38.994468,-13.734969],[-38.993368,-13.730569],[-38.992268,-13.727069],[-38.991168,-13.723669],[-38.989468,-13.719469],[-38.988868,-13.715869],[-38.987868,-13.711269],[-38.984968,-13.710369],[-38.983268,-13.707569],[-38.981068,-13.704569],[-38.978468,-13.701069],[-38.975268,-13.697469],[-38.972868,-13.695469],[-38.970568,-13.693169],[-38.968468,-13.691269],[-38.966468,-13.689069],[-38.963968,-13.686669],[-38.967568,-13.683069],[-38.969168,-13.679669],[-38.969768,-13.676369],[-38.971468,-13.671969],[-38.968768,-13.670369],[-38.964368,-13.671369],[-38.959668,-13.670769],[-38.956568,-13.669269],[-38.952068,-13.669669],[-38.949068,-13.666469],[-38.946568,-13.664569],[-38.944168,-13.662069],[-38.939568,-13.659869],[-38.935868,-13.658069],[-38.931868,-13.657569],[-38.928568,-13.657569],[-38.924368,-13.658369],[-38.921468,-13.662269],[-38.920368,-13.666469],[-38.918568,-13.671169],[-38.917268,-13.674369],[-38.914168,-13.675469],[-38.912068,-13.673169],[-38.909268,-13.670369],[-38.906168,-13.668569],[-38.902268,-13.666969],[-38.898668,-13.665269],[-38.899268,-13.660569],[-38.896168,-13.657069],[-38.892568,-13.655069],[-38.891568,-13.651569],[-38.892068,-13.648469],[-38.891268,-13.644069],[-38.892068,-13.639669],[-38.895068,-13.636569],[-38.896168,-13.631269],[-38.900668,-13.627969],[-38.903768,-13.624869],[-38.905968,-13.621569],[-38.905168,-13.616869],[-38.905868,-13.613569],[-38.906668,-13.609969],[-38.904768,-13.607569],[-38.901568,-13.601969],[-38.903468,-13.598369],[-38.906768,-13.596769],[-38.911968,-13.593069],[-38.914768,-13.588669],[-38.914168,-13.584269],[-38.914868,-13.579469],[-38.918868,-13.579269],[-38.921968,-13.579569],[-38.924968,-13.578269],[-38.928268,-13.576069],[-38.930468,-13.572469],[-38.931668,-13.569869],[-38.933268,-13.563069],[-38.933368,-13.559669],[-38.933368,-13.555469],[-38.933268,-13.552269],[-38.933268,-13.548969],[-38.932668,-13.544469],[-38.931968,-13.539969],[-38.931568,-13.535869],[-38.930568,-13.530869],[-38.929768,-13.526869],[-38.928968,-13.523269],[-38.927568,-13.519269],[-38.926168,-13.514969],[-38.924968,-13.511769],[-38.923168,-13.509169],[-38.921168,-13.507069],[-38.918568,-13.503469],[-38.915568,-13.501069],[-38.912468,-13.498769],[-38.911168,-13.495269],[-38.911968,-13.491569],[-38.915568,-13.486669],[-38.917068,-13.482469],[-38.916668,-13.478069],[-38.914268,-13.474469],[-38.910668,-13.473469],[-38.906968,-13.474169],[-38.903468,-13.472269],[-38.900368,-13.468769],[-38.898668,-13.465369],[-38.895768,-13.463169],[-38.892868,-13.460469],[-38.892168,-13.454969],[-38.892668,-13.450169],[-38.895068,-13.447469],[-38.897068,-13.443869],[-38.900068,-13.440569],[-38.900668,-13.436869],[-38.902568,-13.432169],[-38.904568,-13.428969],[-38.905568,-13.426069],[-38.905168,-13.422569],[-38.905368,-13.419169],[-38.906168,-13.415669],[-38.906268,-13.412569],[-38.907068,-13.409569],[-38.907368,-13.406169],[-38.907568,-13.402669],[-38.907368,-13.399069],[-38.907368,-13.395969],[-38.906168,-13.391769],[-38.905968,-13.386069],[-38.909468,-13.380969],[-38.912568,-13.378869],[-38.916168,-13.375769],[-38.919468,-13.378869],[-38.923068,-13.380469],[-38.925468,-13.382969],[-38.927868,-13.385669],[-38.930468,-13.388169],[-38.934468,-13.390369],[-38.936968,-13.393469],[-38.940168,-13.395969],[-38.944568,-13.398269],[-38.950668,-13.389869],[-38.954568,-13.378769],[-38.956468,-13.374369],[-38.957968,-13.371869],[-38.959268,-13.369069],[-38.960468,-13.365869],[-38.961568,-13.362969],[-38.962868,-13.359769],[-38.964068,-13.355869],[-38.965168,-13.351669],[-38.966168,-13.346969],[-38.966768,-13.343469],[-38.967068,-13.340169],[-38.967368,-13.335869],[-38.967568,-13.332369],[-38.967268,-13.329069],[-38.967268,-13.326069],[-38.967268,-13.323169],[-38.967068,-13.319569],[-38.966568,-13.315569],[-38.966168,-13.312669],[-38.965968,-13.309469],[-38.965668,-13.305569],[-38.965168,-13.301169],[-38.964868,-13.296869],[-38.964068,-13.292469],[-38.963668,-13.288669],[-38.962568,-13.284569],[-38.961468,-13.280169],[-38.960368,-13.275469],[-38.959068,-13.271869],[-38.957968,-13.268469],[-38.957068,-13.265669],[-38.956168,-13.262969],[-38.954068,-13.257669],[-38.952168,-13.253569],[-38.950768,-13.250569],[-38.948768,-13.246569],[-38.946368,-13.242169],[-38.944668,-13.239069],[-38.942168,-13.234969],[-38.939168,-13.230669],[-38.937168,-13.227469],[-38.934868,-13.224469],[-38.931968,-13.220969],[-38.929168,-13.218369],[-38.926068,-13.216469],[-38.922868,-13.215069],[-38.920268,-13.212969],[-38.916368,-13.213669],[-38.912768,-13.212669],[-38.909768,-13.212569],[-38.906968,-13.211469],[-38.905168,-13.208469],[-38.902268,-13.205969],[-38.898668,-13.203569],[-38.895068,-13.201769],[-38.890768,-13.199369],[-38.887868,-13.197369],[-38.885468,-13.195169],[-38.882468,-13.193269],[-38.877668,-13.191569],[-38.872768,-13.189069],[-38.868368,-13.186969],[-38.865068,-13.183269],[-38.863268,-13.179369],[-38.861068,-13.177269],[-38.859268,-13.175069],[-38.857168,-13.172469],[-38.854768,-13.169969],[-38.851168,-13.166769],[-38.846668,-13.163769],[-38.843168,-13.160969],[-38.839768,-13.158969],[-38.835468,-13.156269],[-38.831768,-13.153969],[-38.827868,-13.151769],[-38.824668,-13.150369],[-38.821068,-13.149269],[-38.817968,-13.148169],[-38.814468,-13.146769],[-38.811368,-13.146269],[-38.807268,-13.146069],[-38.803368,-13.143769],[-38.797768,-13.137169],[-38.789568,-13.133069],[-38.785668,-13.132369],[-38.780868,-13.129869],[-38.776868,-13.127169],[-38.772568,-13.124669],[-38.768968,-13.123069],[-38.765368,-13.120769],[-38.761568,-13.117769],[-38.760468,-13.114469],[-38.759268,-13.111469],[-38.756668,-13.108069],[-38.753768,-13.104669],[-38.752068,-13.101769],[-38.749868,-13.097369],[-38.747668,-13.093369],[-38.745068,-13.090969],[-38.742268,-13.089869],[-38.739468,-13.090869],[-38.736068,-13.089369],[-38.732468,-13.085869],[-38.730068,-13.083169],[-38.727768,-13.079569],[-38.726668,-13.076069],[-38.724868,-13.072969],[-38.722568,-13.070669],[-38.720568,-13.068569],[-38.717268,-13.065569],[-38.714868,-13.063469],[-38.712568,-13.061169],[-38.710068,-13.059669],[-38.707168,-13.058869],[-38.703268,-13.057669],[-38.698768,-13.056169],[-38.695168,-13.055069],[-38.691368,-13.052469],[-38.688268,-13.049669],[-38.684468,-13.047569],[-38.680768,-13.045369],[-38.677568,-13.042569],[-38.674768,-13.039869],[-38.671468,-13.037569],[-38.666768,-13.037269],[-38.660568,-13.035069],[-38.655468,-13.031669],[-38.652668,-13.028669],[-38.650868,-13.026469],[-38.648968,-13.024069],[-38.646868,-13.020769],[-38.644268,-13.016769],[-38.585468,-13.012469],[-38.539768,-13.010469],[-38.531568,-13.010669],[-38.527568,-13.009969],[-38.523968,-13.011069],[-38.519668,-13.010369],[-38.515368,-13.010669],[-38.511768,-13.011769],[-38.508468,-13.011569],[-38.505468,-13.012069],[-38.501268,-13.011469],[-38.496068,-13.011569],[-38.492168,-13.012669],[-38.489368,-13.014869],[-38.487168,-13.016769],[-38.483968,-13.015669],[-38.480068,-13.015469],[-38.475368,-13.014569],[-38.470968,-13.014569],[-38.468068,-13.013569],[-38.464768,-13.010769],[-38.461168,-13.009069],[-38.458768,-13.007169],[-38.454668,-13.005969],[-38.450668,-13.003469],[-38.447868,-13.000569],[-38.444668,-12.999069],[-38.440968,-12.997469],[-38.439468,-12.994969],[-38.437668,-12.992269],[-38.434668,-12.989069],[-38.431568,-12.985769],[-38.428968,-12.983669],[-38.425868,-12.981169],[-38.421468,-12.978569],[-38.416368,-12.975969],[-38.412768,-12.973769],[-38.409468,-12.971269],[-38.405568,-12.968669],[-38.401468,-12.965869],[-38.397568,-12.962869],[-38.393668,-12.960769],[-38.390968,-12.959069],[-38.388568,-12.957569],[-38.384968,-12.956069],[-38.379668,-12.955769],[-38.377168,-12.953769],[-38.372668,-12.952069],[-38.367468,-12.951069],[-38.362968,-12.952169],[-38.359968,-12.955169],[-38.357168,-12.956469],[-38.353368,-12.956469],[-38.349268,-12.954369],[-38.345568,-12.952169],[-38.342068,-12.949969],[-38.337668,-12.946069],[-38.333968,-12.944169],[-38.331568,-12.941669],[-38.328768,-12.939069],[-38.325168,-12.935269],[-38.322168,-12.932269],[-38.318868,-12.929469],[-38.315168,-12.925369],[-38.313268,-12.922469],[-38.310768,-12.919169],[-38.308868,-12.916669],[-38.306868,-12.913669],[-38.304668,-12.911169],[-38.302568,-12.908869],[-38.298868,-12.904169],[-38.295668,-12.899869],[-38.292768,-12.895969],[-38.288968,-12.891569],[-38.285268,-12.887469],[-38.281668,-12.883069],[-38.280168,-12.879369],[-38.277568,-12.878069],[-38.275068,-12.876069],[-38.270168,-12.875469],[-38.265668,-12.873069],[-38.263468,-12.869669],[-38.260968,-12.867169],[-38.258268,-12.864669],[-38.254468,-12.861369],[-38.250568,-12.858569],[-38.247668,-12.855669],[-38.244968,-12.853469],[-38.241868,-12.849569],[-38.239668,-12.846369],[-38.237468,-12.843969],[-38.234768,-12.840169],[-38.231368,-12.835669],[-38.228068,-12.832369],[-38.225068,-12.829269],[-38.221768,-12.826069],[-38.218968,-12.823469],[-38.216768,-12.821269],[-38.214568,-12.818869],[-38.211868,-12.815569],[-38.208968,-12.812369],[-38.206468,-12.808369],[-38.203268,-12.803869],[-38.200668,-12.799769],[-38.197968,-12.796069],[-38.194368,-12.791169],[-38.191868,-12.787369],[-38.189868,-12.784869],[-38.186568,-12.782869],[-38.184368,-12.780469],[-38.180868,-12.777869],[-38.177168,-12.774369],[-38.174368,-12.771569],[-38.171768,-12.768269],[-38.168868,-12.764269],[-38.167168,-12.761569],[-38.164468,-12.758469],[-38.161168,-12.754469],[-38.158668,-12.751269],[-38.155468,-12.747369],[-38.152568,-12.744069],[-38.149868,-12.740769],[-38.147668,-12.737969],[-38.145768,-12.735869],[-38.143668,-12.733369],[-38.141268,-12.731369],[-38.138568,-12.728169],[-38.134568,-12.723469],[-38.131368,-12.719769],[-38.128568,-12.716169],[-38.125868,-12.712369],[-38.124068,-12.708569],[-38.120768,-12.706269],[-38.118568,-12.703569],[-38.115768,-12.700669],[-38.112568,-12.697369],[-38.109668,-12.693769],[-38.106768,-12.690869],[-38.104968,-12.688469],[-38.102768,-12.686069],[-38.099968,-12.683669],[-38.096168,-12.680869],[-38.093768,-12.679069],[-38.089768,-12.676169],[-38.086268,-12.672169],[-38.083668,-12.668069],[-38.081068,-12.664469],[-38.078768,-12.662069],[-38.076268,-12.659169],[-38.073168,-12.655869],[-38.069568,-12.654069],[-38.067368,-12.651969],[-38.064068,-12.650469],[-38.061268,-12.648769],[-38.059868,-12.645669],[-38.057468,-12.641469],[-38.054668,-12.639269],[-38.051868,-12.637369],[-38.048968,-12.636369],[-38.046368,-12.633869],[-38.044968,-12.629169],[-38.045368,-12.624169],[-38.043568,-12.619469],[-38.042468,-12.614969],[-38.040968,-12.610769],[-38.038668,-12.607869],[-38.036268,-12.604669],[-38.034168,-12.602469],[-38.031968,-12.599869],[-38.030868,-12.594869],[-38.027068,-12.593669],[-38.025068,-12.591169],[-38.021768,-12.588369],[-38.017968,-12.585669],[-38.014668,-12.583669],[-38.011068,-12.581769],[-38.007368,-12.581569],[-38.004468,-12.579269],[-38.001868,-12.577969],[-37.999968,-12.574969],[-37.998368,-12.572069],[-37.996868,-12.569569],[-37.994068,-12.565869],[-37.992968,-12.561869],[-37.991568,-12.559069],[-37.989368,-12.556569],[-37.987468,-12.554369],[-37.986068,-12.551069],[-37.984168,-12.548169],[-37.982768,-12.544769],[-37.981768,-12.540269],[-37.980568,-12.536269],[-37.978868,-12.532869],[-37.976968,-12.529169],[-37.975268,-12.525669],[-37.973168,-12.521469],[-37.971168,-12.518169],[-37.969568,-12.515769],[-37.967268,-12.512769],[-37.964068,-12.509169],[-37.961168,-12.504669],[-37.958968,-12.499469],[-37.957068,-12.496269],[-37.954668,-12.492469],[-37.952168,-12.488869],[-37.950168,-12.486069],[-37.947868,-12.482869],[-37.945168,-12.478969],[-37.941868,-12.474169],[-37.939868,-12.470569],[-37.937468,-12.467569],[-37.935468,-12.465069],[-37.931968,-12.460469],[-37.930068,-12.456869],[-37.928268,-12.453969],[-37.925568,-12.450669],[-37.922768,-12.446569],[-37.918968,-12.442369],[-37.915968,-12.440469],[-37.914468,-12.437269],[-37.912868,-12.433369],[-37.910868,-12.430069],[-37.908068,-12.426669],[-37.905668,-12.423669],[-37.903668,-12.421069],[-37.901468,-12.418069],[-37.897568,-12.413469],[-37.895068,-12.410569],[-37.892568,-12.406969],[-37.889968,-12.403969],[-37.888168,-12.401269],[-37.885768,-12.398669],[-37.882468,-12.394569],[-37.879368,-12.389569],[-37.876568,-12.384869],[-37.874168,-12.381269],[-37.872468,-12.378569],[-37.870768,-12.376269],[-37.868868,-12.373669],[-37.866868,-12.370469],[-37.864668,-12.367169],[-37.862768,-12.363669],[-37.861068,-12.361169],[-37.858868,-12.358069],[-37.856368,-12.354269],[-37.854168,-12.351169],[-37.851968,-12.347769],[-37.848968,-12.343469],[-37.846768,-12.340069],[-37.844868,-12.337269],[-37.842668,-12.334369],[-37.840568,-12.331469],[-37.838768,-12.328569],[-37.837068,-12.326069],[-37.835368,-12.323169],[-37.832868,-12.319869],[-37.829068,-12.314969],[-37.826268,-12.310769],[-37.823568,-12.307269],[-37.820168,-12.302969],[-37.816668,-12.298269],[-37.813568,-12.294169],[-37.810468,-12.290269],[-37.807668,-12.286969],[-37.805268,-12.283669],[-37.802168,-12.280069],[-37.798968,-12.276269],[-37.796368,-12.273169],[-37.793868,-12.270769],[-37.791668,-12.268569],[-37.788868,-12.265069],[-37.786268,-12.261769],[-37.784268,-12.258869],[-37.782068,-12.255169],[-37.779268,-12.251069],[-37.777268,-12.248269],[-37.775768,-12.245769],[-37.773668,-12.242269],[-37.771768,-12.240069],[-37.770068,-12.237269],[-37.768268,-12.234769],[-37.766468,-12.231669],[-37.764568,-12.228469],[-37.762968,-12.225969],[-37.761068,-12.221769],[-37.758068,-12.219569],[-37.756268,-12.216169],[-37.754368,-12.212869],[-37.752468,-12.209569],[-37.750968,-12.207169],[-37.748368,-12.203169],[-37.745168,-12.197469],[-37.742968,-12.193769],[-37.740768,-12.189669],[-37.738068,-12.185769],[-37.736068,-12.182969],[-37.733968,-12.179769],[-37.730868,-12.175069],[-37.728868,-12.171669],[-37.726968,-12.168369],[-37.724568,-12.164769],[-37.723168,-12.162269],[-37.720968,-12.158369],[-37.718768,-12.154469],[-37.716568,-12.150369],[-37.714368,-12.146769],[-37.712068,-12.142869],[-37.710368,-12.139969],[-37.708468,-12.136869],[-37.706468,-12.133769],[-37.704868,-12.130769],[-37.702668,-12.126869],[-37.699268,-12.121569],[-37.697068,-12.117469],[-37.694968,-12.114369],[-37.692468,-12.110769],[-37.690568,-12.107869],[-37.689068,-12.104469],[-37.687368,-12.101469],[-37.686868,-12.097669],[-37.684368,-12.095869],[-37.681868,-12.091269],[-37.678968,-12.086469],[-37.677168,-12.082869],[-37.675268,-12.078869],[-37.673568,-12.074869],[-37.671468,-12.071069],[-37.670268,-12.068069],[-37.668568,-12.064669],[-37.667068,-12.061869],[-37.665668,-12.059369],[-37.663968,-12.055769],[-37.661368,-12.050869],[-37.658468,-12.045669],[-37.656168,-12.041369],[-37.654268,-12.037369],[-37.651868,-12.033369],[-37.649768,-12.029469],[-37.647968,-12.026469],[-37.646568,-12.023369],[-37.644268,-12.019069],[-37.642068,-12.015669],[-37.640668,-12.012669],[-37.637968,-12.008069],[-37.634968,-12.003069],[-37.631568,-11.997269],[-37.629068,-11.992969],[-37.626868,-11.988569],[-37.624468,-11.983669],[-37.621968,-11.979269],[-37.619668,-11.974569],[-37.617968,-11.970869],[-37.616468,-11.967569],[-37.614668,-11.963769],[-37.612868,-11.960669],[-37.610268,-11.955769],[-37.608568,-11.952369],[-37.607068,-11.948769],[-37.605568,-11.945269],[-37.604268,-11.942669],[-37.602568,-11.939169],[-37.601468,-11.936269],[-37.600368,-11.933569],[-37.598968,-11.930469],[-37.597168,-11.926269],[-37.595568,-11.922169],[-37.593968,-11.919269],[-37.591668,-11.914169],[-37.589068,-11.909469],[-37.586968,-11.904769],[-37.584568,-11.899069],[-37.583268,-11.896469],[-37.581168,-11.891369],[-37.578468,-11.885969],[-37.576368,-11.881269],[-37.574068,-11.875869],[-37.572468,-11.872669],[-37.570968,-11.869069],[-37.569068,-11.864769],[-37.567768,-11.861969],[-37.566568,-11.859169],[-37.564968,-11.856369],[-37.563868,-11.853469],[-37.562468,-11.850369],[-37.560868,-11.847369],[-37.559468,-11.843769],[-37.558268,-11.841169],[-37.555868,-11.836269],[-37.554168,-11.832269],[-37.552868,-11.829569],[-37.551668,-11.826769],[-37.549668,-11.822869],[-37.548268,-11.819869],[-37.546468,-11.816269],[-37.544968,-11.812669],[-37.542868,-11.808369],[-37.540568,-11.803069],[-37.538668,-11.798969],[-37.537068,-11.794669],[-37.534768,-11.789569],[-37.532668,-11.784769],[-37.530368,-11.779769],[-37.528068,-11.774769],[-37.526468,-11.770669],[-37.524868,-11.766869],[-37.523468,-11.763969],[-37.521768,-11.760669],[-37.519668,-11.756369],[-37.517668,-11.752069],[-37.515368,-11.747769],[-37.514268,-11.743269],[-37.512368,-11.739969],[-37.509868,-11.737469],[-37.507468,-11.733269],[-37.506068,-11.730369],[-37.504568,-11.727469],[-37.503068,-11.724469],[-37.501268,-11.720869],[-37.499668,-11.717269],[-37.497968,-11.714269],[-37.496568,-11.711469],[-37.494768,-11.707969],[-37.493068,-11.704369],[-37.491868,-11.701569],[-37.489768,-11.698169],[-37.488068,-11.694869],[-37.486368,-11.691569],[-37.483868,-11.686669],[-37.481668,-11.682269],[-37.479668,-11.678269],[-37.478068,-11.675769],[-37.476668,-11.672769],[-37.474968,-11.669269],[-37.473068,-11.666069],[-37.471668,-11.663169],[-37.469768,-11.658969],[-37.467868,-11.655669],[-37.464568,-11.648369],[-37.462968,-11.645769],[-37.461168,-11.641769],[-37.457868,-11.635169],[-37.455968,-11.631769],[-37.454268,-11.628469],[-37.452568,-11.625169],[-37.451268,-11.622369],[-37.448468,-11.616569],[-37.446568,-11.612869],[-37.444668,-11.608569],[-37.441868,-11.603669],[-37.439868,-11.600269],[-37.436268,-11.592969],[-37.433268,-11.586969],[-37.429668,-11.580369],[-37.426868,-11.575169],[-37.423368,-11.568469],[-37.420068,-11.562369],[-37.417568,-11.557469],[-37.415568,-11.553369],[-37.412768,-11.548569],[-37.409768,-11.543369],[-37.406268,-11.536469],[-37.401468,-11.529069],[-37.399468,-11.526169],[-37.395768,-11.520069],[-37.392868,-11.515469],[-37.390668,-11.512669],[-37.388268,-11.508869],[-37.384168,-11.503569],[-37.381068,-11.500169],[-37.379068,-11.497769],[-37.376268,-11.494669],[-37.373568,-11.491169],[-37.371368,-11.488669],[-37.367668,-11.484469],[-37.364168,-11.480269],[-37.361668,-11.477269],[-37.359168,-11.474469],[-37.356368,-11.471269],[-37.353368,-11.467569],[-37.350668,-11.464069],[-37.348868,-11.461469],[-37.348368,-11.457669],[-37.348468,-11.454369],[-37.345968,-11.448269],[-37.341168,-11.442369],[-37.337968,-11.442669],[-37.325968,-11.436069],[-37.319368,-11.429769],[-37.316668,-11.426869],[-37.313868,-11.425369],[-37.312168,-11.422869],[-37.311868,-11.418469],[-37.311568,-11.415369],[-37.310168,-11.408669],[-37.309368,-11.402569],[-37.309368,-11.398969],[-37.309468,-11.394369],[-37.306868,-11.384369],[-37.305568,-11.380669],[-37.304368,-11.377069],[-37.302968,-11.372669],[-37.301068,-11.367269],[-37.298968,-11.362569],[-37.296668,-11.357169],[-37.294568,-11.352569],[-37.293068,-11.349169],[-37.290868,-11.344769],[-37.288468,-11.339769],[-37.286468,-11.335469],[-37.284468,-11.331769],[-37.282668,-11.328169],[-37.280368,-11.323869],[-37.278668,-11.320669],[-37.276768,-11.316869],[-37.274568,-11.313069],[-37.272368,-11.309369],[-37.269368,-11.304069],[-37.267068,-11.300269],[-37.264568,-11.296369],[-37.261768,-11.291969],[-37.260268,-11.289469],[-37.257768,-11.286469],[-37.255768,-11.283369],[-37.252668,-11.279469],[-37.250768,-11.276869],[-37.248768,-11.273969],[-37.246868,-11.271569],[-37.244968,-11.269369],[-37.242768,-11.266469],[-37.239168,-11.262069],[-37.235268,-11.257369],[-37.232868,-11.254169],[-37.230568,-11.251369],[-37.228168,-11.248269],[-37.225868,-11.245569],[-37.223668,-11.242969],[-37.220568,-11.239169],[-37.218768,-11.236969],[-37.216268,-11.233869],[-37.213668,-11.230669],[-37.210668,-11.227269],[-37.208668,-11.224769],[-37.205968,-11.221969],[-37.202868,-11.218669],[-37.199968,-11.215369],[-37.196268,-11.211469],[-37.189468,-11.205069],[-37.185468,-11.200669],[-37.180468,-11.195769],[-37.176668,-11.192369],[-37.173968,-11.189969],[-37.168668,-11.184469],[-37.166068,-11.182469],[-37.164168,-11.179469],[-37.162368,-11.174969],[-37.160568,-11.170269],[-37.157768,-11.164869],[-37.154068,-11.160969],[-37.152268,-11.156569],[-37.150868,-11.151469],[-37.147668,-11.146569],[-37.145668,-11.138869],[-37.144068,-11.134369],[-37.140668,-11.127669],[-37.137168,-11.121269],[-37.134868,-11.117269],[-37.132368,-11.113569],[-37.129468,-11.109169],[-37.125468,-11.102769],[-37.123868,-11.100269],[-37.121968,-11.097669],[-37.119768,-11.094469],[-37.114468,-11.086769],[-37.111668,-11.082869],[-37.109668,-11.079869],[-37.105868,-11.074369],[-37.101368,-11.067969],[-37.099768,-11.065569],[-37.096668,-11.060769],[-37.092068,-11.054169],[-37.088768,-11.049269],[-37.083668,-11.041669],[-37.079268,-11.035269],[-37.076268,-11.031169],[-37.073168,-11.026569],[-37.071368,-11.024069],[-37.068868,-11.020769],[-37.066668,-11.017469],[-37.062468,-11.011869],[-37.059168,-11.007669],[-37.057268,-11.005269],[-37.054668,-11.002169],[-37.052268,-10.999369],[-37.048668,-10.995469],[-37.046168,-10.992469],[-37.044168,-10.990069],[-37.040268,-10.985569],[-37.037068,-10.982169],[-37.034868,-10.978969],[-37.033968,-10.975569],[-37.033868,-10.970269],[-37.035568,-10.965969],[-37.036168,-10.962669],[-37.035668,-10.959869],[-37.034568,-10.957069],[-37.030168,-10.954269],[-37.026268,-10.951569],[-37.024768,-10.949069],[-37.022668,-10.945169],[-37.020168,-10.941869],[-37.018168,-10.938469],[-37.015768,-10.934369],[-37.014268,-10.931369],[-37.012068,-10.927769],[-37.009668,-10.923969],[-37.007068,-10.920269],[-37.004568,-10.916669],[-37.002668,-10.914169],[-37.000268,-10.911269],[-36.998368,-10.908969],[-36.996568,-10.906669],[-36.994768,-10.904169],[-36.991668,-10.900369],[-36.989468,-10.897369],[-36.987568,-10.895169],[-36.983968,-10.890669],[-36.981368,-10.887169],[-36.976968,-10.881669],[-36.973368,-10.876569],[-36.969468,-10.871669],[-36.964568,-10.865869],[-36.961168,-10.861169],[-36.953268,-10.851969],[-36.943568,-10.841169],[-36.938768,-10.836569],[-36.935768,-10.834669],[-36.931868,-10.832169],[-36.930068,-10.829669],[-36.928368,-10.826369],[-36.926168,-10.823469],[-36.924468,-10.821069],[-36.922468,-10.818469],[-36.919668,-10.815169],[-36.916168,-10.811069],[-36.912868,-10.807269],[-36.909268,-10.803669],[-36.906168,-10.800069],[-36.903068,-10.796869],[-36.899568,-10.793069],[-36.895668,-10.788169],[-36.890168,-10.782669],[-36.885368,-10.777269],[-36.879868,-10.771269],[-36.875268,-10.766469],[-36.867468,-10.757969],[-36.860868,-10.751369],[-36.858068,-10.748569],[-36.854168,-10.743369],[-36.849768,-10.742569],[-36.846768,-10.739069],[-36.843368,-10.735569],[-36.840368,-10.732469],[-36.833268,-10.725969],[-36.827868,-10.721369],[-36.820668,-10.715569],[-36.815168,-10.711169],[-36.809468,-10.706769],[-36.805468,-10.703469],[-36.801868,-10.700769],[-36.796868,-10.696869],[-36.792468,-10.693869],[-36.787568,-10.690269],[-36.783368,-10.687469],[-36.779268,-10.685169],[-36.775968,-10.682969],[-36.772068,-10.680469],[-36.769268,-10.678669],[-36.760968,-10.673969],[-36.755268,-10.670369],[-36.750568,-10.667769],[-36.744768,-10.664169],[-36.742268,-10.662569],[-36.738568,-10.660369],[-36.734668,-10.658069],[-36.731968,-10.656969],[-36.725668,-10.653769],[-36.722268,-10.652269],[-36.717668,-10.650369],[-36.699368,-10.643569],[-36.687468,-10.638569],[-36.680868,-10.635169],[-36.673168,-10.629869],[-36.656268,-10.619169],[-36.648368,-10.613269],[-36.639068,-10.606369],[-36.624168,-10.596369],[-36.612568,-10.588369],[-36.599768,-10.580769],[-36.592868,-10.576769],[-36.587068,-10.573769],[-36.583668,-10.572369],[-36.580368,-10.572469],[-36.576068,-10.571769],[-36.564668,-10.566669],[-36.547468,-10.559669],[-36.537868,-10.555869],[-36.527268,-10.551169],[-36.521768,-10.549469],[-36.511468,-10.545569],[-36.500868,-10.541969],[-36.493368,-10.538769],[-36.489668,-10.537369],[-36.486168,-10.536369],[-36.482168,-10.534769],[-36.476668,-10.532769],[-36.469768,-10.530169],[-36.466268,-10.528969],[-36.458268,-10.525669],[-36.454668,-10.523769],[-36.449368,-10.521769],[-36.442468,-10.519269],[-36.436668,-10.517069],[-36.432968,-10.515769],[-36.426868,-10.514669],[-36.422168,-10.514369],[-36.418068,-10.514269],[-36.414168,-10.513469],[-36.408868,-10.511769],[-36.406568,-10.507969],[-36.404168,-10.506369],[-36.401268,-10.503269],[-36.398468,-10.499369],[-36.394868,-10.496569],[-36.391768,-10.496969],[-36.390668,-10.499669],[-36.387668,-10.498569],[-36.385468,-10.495169],[-36.383868,-10.491869],[-36.381768,-10.487769],[-36.379868,-10.484169],[-36.376668,-10.478869],[-36.374468,-10.474969],[-36.372268,-10.471169],[-36.370168,-10.467669],[-36.368068,-10.464569],[-36.366168,-10.461869],[-36.363668,-10.457869],[-36.361668,-10.454269],[-36.360068,-10.451769],[-36.358068,-10.448469],[-36.356068,-10.444369],[-36.354468,-10.441569],[-36.352768,-10.438069],[-36.350668,-10.434469],[-36.349468,-10.431369],[-36.348068,-10.428669],[-36.345968,-10.425069],[-36.344068,-10.421469],[-36.342568,-10.418569],[-36.340568,-10.414969],[-36.338468,-10.411469],[-36.336768,-10.408369],[-36.335168,-10.405869],[-36.333268,-10.402369],[-36.331768,-10.399569],[-36.330068,-10.397069],[-36.328268,-10.394369],[-36.326068,-10.391069],[-36.323868,-10.387669],[-36.322068,-10.385169],[-36.320268,-10.382169],[-36.318568,-10.379869],[-36.315268,-10.375269],[-36.312168,-10.371569],[-36.309868,-10.369069],[-36.307768,-10.366869],[-36.305568,-10.364469],[-36.302168,-10.363269],[-36.298868,-10.361969],[-36.297468,-10.359169],[-36.295368,-10.356969],[-36.293668,-10.353969],[-36.296168,-10.350669],[-36.299968,-10.347269],[-36.302968,-10.344469],[-36.302168,-10.340869],[-36.302568,-10.335069],[-36.302768,-10.330969],[-36.302268,-10.327569],[-36.301568,-10.323569],[-36.300268,-10.318569],[-36.298268,-10.313569],[-36.296768,-10.310469],[-36.295068,-10.307169],[-36.293368,-10.303969],[-36.291368,-10.300469],[-36.288668,-10.296369],[-36.286268,-10.293169],[-36.283868,-10.289869],[-36.281968,-10.287469],[-36.279568,-10.284569],[-36.277568,-10.281969],[-36.275668,-10.279769],[-36.273668,-10.277669],[-36.271268,-10.275369],[-36.268768,-10.272669],[-36.266068,-10.270069],[-36.262668,-10.266769],[-36.258768,-10.263269],[-36.252968,-10.258869],[-36.249768,-10.256569],[-36.246868,-10.254469],[-36.244468,-10.252669],[-36.241868,-10.250469],[-36.239668,-10.248069],[-36.237268,-10.245769],[-36.234968,-10.242769],[-36.232768,-10.239969],[-36.229668,-10.236069],[-36.226968,-10.232469],[-36.224568,-10.229469],[-36.222068,-10.226669],[-36.219468,-10.223969],[-36.216768,-10.221469],[-36.214368,-10.219469],[-36.211468,-10.217269],[-36.208168,-10.214869],[-36.204368,-10.212369],[-36.201268,-10.210469],[-36.198568,-10.208669],[-36.195168,-10.206469],[-36.190968,-10.203569],[-36.187968,-10.201069],[-36.185168,-10.198469],[-36.182768,-10.194569],[-36.180768,-10.190769],[-36.179168,-10.187669],[-36.177268,-10.184469],[-36.175368,-10.181569],[-36.173568,-10.178969],[-36.170768,-10.175569],[-36.168968,-10.173369],[-36.166668,-10.170769],[-36.163468,-10.168069],[-36.159868,-10.165269],[-36.156268,-10.162869],[-36.152568,-10.159869],[-36.150368,-10.156769],[-36.146468,-10.156169],[-36.141768,-10.155369],[-36.137968,-10.156769],[-36.134868,-10.159469],[-36.132368,-10.156169],[-36.130968,-10.153669],[-36.129168,-10.150469],[-36.127668,-10.147369],[-36.125468,-10.143669],[-36.123368,-10.140769],[-36.121568,-10.138569],[-36.117968,-10.136369],[-36.113668,-10.134069],[-36.110268,-10.130269],[-36.108168,-10.125569],[-36.106468,-10.120869],[-36.104268,-10.117169],[-36.102368,-10.114669],[-36.100868,-10.111469],[-36.099468,-10.108869],[-36.097668,-10.105969],[-36.095368,-10.102569],[-36.093668,-10.100069],[-36.091568,-10.097369],[-36.089468,-10.095069],[-36.086168,-10.092569],[-36.082668,-10.090369],[-36.078568,-10.088769],[-36.075468,-10.087569],[-36.072868,-10.086269],[-36.067968,-10.084469],[-36.061968,-10.084869],[-36.057468,-10.083569],[-36.054368,-10.080169],[-36.050068,-10.076269],[-36.045868,-10.074569],[-36.044968,-10.070469],[-36.043168,-10.066269],[-36.041368,-10.062969],[-36.038168,-10.059869],[-36.035568,-10.057169],[-36.032868,-10.053069],[-36.030068,-10.049469],[-36.027268,-10.046169],[-36.025368,-10.042169],[-36.023168,-10.038869],[-36.020768,-10.034569],[-36.018968,-10.031669],[-36.017468,-10.029069],[-36.015768,-10.025969],[-36.014268,-10.022969],[-36.012468,-10.019669],[-36.010668,-10.015669],[-36.008568,-10.012069],[-36.006368,-10.008069],[-36.004168,-10.004469],[-36.002368,-10.001969],[-36.000168,-9.998769],[-35.997268,-9.995269],[-35.994068,-9.990769],[-35.991868,-9.987169],[-35.989468,-9.983969],[-35.987468,-9.981769],[-35.985268,-9.979269],[-35.982868,-9.976769],[-35.981168,-9.974469],[-35.978168,-9.970269],[-35.975568,-9.966969],[-35.974168,-9.963969],[-35.971968,-9.959769],[-35.970068,-9.955769],[-35.968368,-9.952369],[-35.966268,-9.948469],[-35.964868,-9.945269],[-35.963168,-9.941369],[-35.959368,-9.936269],[-35.956868,-9.933369],[-35.954668,-9.930869],[-35.952668,-9.927469],[-35.950668,-9.924269],[-35.948768,-9.921069],[-35.946068,-9.916369],[-35.943168,-9.910969],[-35.940768,-9.907069],[-35.937768,-9.902269],[-35.934468,-9.898169],[-35.929768,-9.894069],[-35.926868,-9.891769],[-35.924268,-9.889669],[-35.921068,-9.887069],[-35.918568,-9.884669],[-35.915668,-9.882069],[-35.913068,-9.880269],[-35.910368,-9.878069],[-35.907368,-9.874769],[-35.906168,-9.870769],[-35.905468,-9.866669],[-35.905068,-9.862469],[-35.903768,-9.859469],[-35.904768,-9.856169],[-35.906268,-9.852469],[-35.903668,-9.848669],[-35.899568,-9.845669],[-35.896568,-9.843669],[-35.893768,-9.842369],[-35.890768,-9.840869],[-35.888168,-9.838169],[-35.885768,-9.835169],[-35.883768,-9.832169],[-35.881368,-9.829069],[-35.878868,-9.825469],[-35.876568,-9.821569],[-35.875168,-9.818569],[-35.873368,-9.815469],[-35.871268,-9.811869],[-35.869368,-9.808869],[-35.866968,-9.805169],[-35.864668,-9.801569],[-35.862468,-9.798269],[-35.860668,-9.795669],[-35.858968,-9.793169],[-35.858268,-9.789969],[-35.854268,-9.786969],[-35.851368,-9.783369],[-35.849468,-9.780869],[-35.847568,-9.778669],[-35.845568,-9.775669],[-35.841768,-9.771869],[-35.838368,-9.769269],[-35.836868,-9.766469],[-35.834768,-9.763269],[-35.832868,-9.759969],[-35.830668,-9.756769],[-35.827568,-9.753769],[-35.825468,-9.751569],[-35.823168,-9.749069],[-35.820468,-9.744769],[-35.818468,-9.740869],[-35.818068,-9.737169],[-35.818468,-9.733869],[-35.815168,-9.732869],[-35.812268,-9.729269],[-35.810168,-9.727069],[-35.806668,-9.724269],[-35.804368,-9.721169],[-35.805868,-9.717269],[-35.801868,-9.715969],[-35.798568,-9.715969],[-35.794968,-9.716569],[-35.793368,-9.713369],[-35.790568,-9.711469],[-35.787768,-9.708769],[-35.785168,-9.705969],[-35.779868,-9.701069],[-35.776568,-9.698169],[-35.773768,-9.694869],[-35.770768,-9.692069],[-35.767868,-9.690169],[-35.764968,-9.688369],[-35.762468,-9.685469],[-35.760668,-9.682769],[-35.758068,-9.680769],[-35.754068,-9.677969],[-35.749368,-9.675069],[-35.745468,-9.673369],[-35.742168,-9.672269],[-35.738368,-9.671469],[-35.734968,-9.671169],[-35.731668,-9.671369],[-35.727768,-9.672469],[-35.724468,-9.674369],[-35.724168,-9.680169],[-35.723468,-9.684069],[-35.720568,-9.680469],[-35.717368,-9.676069],[-35.715068,-9.672569],[-35.712868,-9.669269],[-35.710468,-9.666769],[-35.707668,-9.664869],[-35.704568,-9.664169],[-35.699968,-9.664469],[-35.695768,-9.664169],[-35.697368,-9.659769],[-35.697768,-9.656669],[-35.698268,-9.653469],[-35.699268,-9.649769],[-35.698568,-9.644669],[-35.697868,-9.640069],[-35.697368,-9.635769],[-35.696268,-9.632469],[-35.695168,-9.629469],[-35.693868,-9.626569],[-35.692068,-9.622169],[-35.689968,-9.618569],[-35.687668,-9.615469],[-35.684468,-9.611369],[-35.681168,-9.607769],[-35.678668,-9.604269],[-35.676568,-9.600269],[-35.673868,-9.596969],[-35.670068,-9.594069],[-35.666368,-9.591469],[-35.664468,-9.588669],[-35.662068,-9.586469],[-35.659468,-9.583269],[-35.656768,-9.579869],[-35.655168,-9.576469],[-35.653768,-9.572669],[-35.651568,-9.569969],[-35.648168,-9.567669],[-35.644768,-9.564669],[-35.642068,-9.560869],[-35.639268,-9.558369],[-35.636068,-9.556069],[-35.633268,-9.554369],[-35.629668,-9.552569],[-35.624968,-9.550369],[-35.619968,-9.548669],[-35.616868,-9.546169],[-35.614968,-9.542569],[-35.613068,-9.538469],[-35.608968,-9.534469],[-35.606168,-9.532269],[-35.603668,-9.530869],[-35.600668,-9.529769],[-35.596268,-9.529569],[-35.592268,-9.529569],[-35.590868,-9.522969],[-35.590568,-9.519869],[-35.589868,-9.517069],[-35.588368,-9.514069],[-35.585968,-9.510669],[-35.582568,-9.507669],[-35.580768,-9.505169],[-35.578468,-9.502369],[-35.574168,-9.499569],[-35.569568,-9.495469],[-35.565768,-9.493269],[-35.562668,-9.490769],[-35.559068,-9.487969],[-35.556568,-9.485069],[-35.555868,-9.481369],[-35.555168,-9.477469],[-35.553268,-9.474469],[-35.548968,-9.471269],[-35.546368,-9.468769],[-35.543868,-9.466669],[-35.541968,-9.464269],[-35.539568,-9.461169],[-35.535868,-9.457869],[-35.531968,-9.456869],[-35.529068,-9.453269],[-35.528768,-9.448469],[-35.526868,-9.445169],[-35.523668,-9.441969],[-35.520168,-9.440469],[-35.516768,-9.440469],[-35.513268,-9.439669],[-35.511268,-9.436269],[-35.509268,-9.431869],[-35.506568,-9.428669],[-35.504868,-9.426369],[-35.502968,-9.424169],[-35.500768,-9.421769],[-35.503568,-9.419169],[-35.499868,-9.416769],[-35.497368,-9.411969],[-35.496168,-9.407069],[-35.495768,-9.402269],[-35.496368,-9.398469],[-35.495868,-9.394269],[-35.495168,-9.390769],[-35.494068,-9.387869],[-35.491668,-9.382969],[-35.488568,-9.377369],[-35.485268,-9.372169],[-35.482768,-9.368869],[-35.480368,-9.366369],[-35.478168,-9.364169],[-35.475968,-9.361969],[-35.473068,-9.358569],[-35.469868,-9.355669],[-35.467968,-9.353369],[-35.465568,-9.350369],[-35.462568,-9.346669],[-35.458968,-9.343669],[-35.456068,-9.342569],[-35.452568,-9.341969],[-35.448768,-9.341669],[-35.445668,-9.340169],[-35.442668,-9.339469],[-35.440168,-9.336469],[-35.439168,-9.331469],[-35.437268,-9.327869],[-35.434868,-9.325669],[-35.431968,-9.323969],[-35.428668,-9.322669],[-35.425068,-9.321869],[-35.419968,-9.321569],[-35.416068,-9.319569],[-35.419468,-9.315769],[-35.415868,-9.313769],[-35.412268,-9.310769],[-35.408968,-9.308269],[-35.406168,-9.306669],[-35.401868,-9.305469],[-35.397868,-9.303269],[-35.395368,-9.299969],[-35.394568,-9.296469],[-35.393168,-9.293569],[-35.389268,-9.290969],[-35.386068,-9.285369],[-35.382468,-9.282569],[-35.378068,-9.280369],[-35.373868,-9.277269],[-35.371068,-9.273669],[-35.368368,-9.270769],[-35.365768,-9.267969],[-35.363068,-9.264669],[-35.360068,-9.261769],[-35.356668,-9.258469],[-35.353668,-9.254169],[-35.351668,-9.250769],[-35.349768,-9.248269],[-35.347868,-9.244669],[-35.344268,-9.240069],[-35.342268,-9.236069],[-35.338968,-9.232869],[-35.338768,-9.229669],[-35.335468,-9.226969],[-35.332968,-9.225069],[-35.330768,-9.223169],[-35.329268,-9.220269],[-35.328168,-9.217569],[-35.327368,-9.214769],[-35.324968,-9.211169],[-35.323568,-9.206769],[-35.321668,-9.202469],[-35.319068,-9.198569],[-35.316268,-9.196569],[-35.311568,-9.195269],[-35.307968,-9.194069],[-35.305868,-9.191969],[-35.304168,-9.189669],[-35.301868,-9.185869],[-35.300068,-9.182669],[-35.298368,-9.178669],[-35.296868,-9.174669],[-35.295268,-9.171469],[-35.294968,-9.168569],[-35.295368,-9.165269],[-35.295268,-9.160069],[-35.295268,-9.155869],[-35.291068,-9.156669],[-35.287068,-9.154069],[-35.285568,-9.149369],[-35.286768,-9.145769],[-35.287068,-9.142669],[-35.286668,-9.139269],[-35.285568,-9.135769],[-35.284768,-9.132369],[-35.283168,-9.129169],[-35.281168,-9.126869],[-35.278768,-9.125169],[-35.275068,-9.124469],[-35.271768,-9.123369],[-35.269368,-9.121169],[-35.268268,-9.114669],[-35.265768,-9.110869],[-35.262668,-9.106669],[-35.260168,-9.103069],[-35.258768,-9.099169],[-35.258468,-9.094569],[-35.257668,-9.091669],[-35.256268,-9.088369],[-35.253568,-9.086169],[-35.250868,-9.083469],[-35.248568,-9.081769],[-35.245768,-9.080069],[-35.243668,-9.076869],[-35.242168,-9.073469],[-35.240068,-9.068469],[-35.241868,-9.065969],[-35.239468,-9.061969],[-35.239368,-9.058269],[-35.239668,-9.052969],[-35.238668,-9.048669],[-35.235668,-9.043869],[-35.232868,-9.039569],[-35.230368,-9.036669],[-35.229568,-9.033169],[-35.227468,-9.030969],[-35.226168,-9.027969],[-35.224568,-9.025169],[-35.224268,-9.021869],[-35.223468,-9.019069],[-35.221668,-9.015369],[-35.218668,-9.010969],[-35.215368,-9.006669],[-35.211568,-9.003569],[-35.207668,-8.999469],[-35.204668,-8.996069],[-35.200268,-8.992569],[-35.197368,-8.990269],[-35.192768,-8.987469],[-35.189568,-8.983969],[-35.186368,-8.981169],[-35.182168,-8.978169],[-35.179468,-8.973669],[-35.177268,-8.969869],[-35.175768,-8.966669],[-35.175068,-8.963769],[-35.173668,-8.959769],[-35.172468,-8.956269],[-35.171068,-8.952869],[-35.170368,-8.948769],[-35.169268,-8.944069],[-35.168568,-8.940169],[-35.167168,-8.936369],[-35.164768,-8.931969],[-35.162468,-8.929069],[-35.160068,-8.926369],[-35.157868,-8.923869],[-35.155068,-8.920569],[-35.153168,-8.917469],[-35.152568,-8.914469],[-35.153368,-8.911269],[-35.150768,-8.906269],[-35.147668,-8.902569],[-35.144568,-8.899769],[-35.143268,-8.896469],[-35.142868,-8.892369],[-35.142168,-8.888969],[-35.141468,-8.885369],[-35.139568,-8.881369],[-35.137468,-8.878769],[-35.136068,-8.874969],[-35.134568,-8.871869],[-35.131268,-8.868869],[-35.129368,-8.866669],[-35.129868,-8.863269],[-35.131668,-8.859269],[-35.132168,-8.854569],[-35.133068,-8.849969],[-35.133768,-8.846669],[-35.134268,-8.842569],[-35.134168,-8.838669],[-35.134368,-8.835069],[-35.133768,-8.831869],[-35.131368,-8.827369],[-35.129568,-8.823869],[-35.127668,-8.820969],[-35.125268,-8.817769],[-35.123268,-8.814069],[-35.120868,-8.810769],[-35.119068,-8.806169],[-35.117968,-8.802269],[-35.116068,-8.799969],[-35.113368,-8.796769],[-35.109368,-8.795269],[-35.106668,-8.793969],[-35.104268,-8.790069],[-35.103368,-8.784769],[-35.104568,-8.780569],[-35.105868,-8.775769],[-35.105868,-8.772069],[-35.105068,-8.768769],[-35.103168,-8.764869],[-35.099968,-8.761069],[-35.096968,-8.759569],[-35.093768,-8.757669],[-35.091968,-8.753569],[-35.087968,-8.749669],[-35.086168,-8.746369],[-35.086468,-8.742269],[-35.087368,-8.736069],[-35.089068,-8.731969],[-35.089268,-8.727769],[-35.087868,-8.722369],[-35.086568,-8.719169],[-35.084868,-8.716469],[-35.083168,-8.713669],[-35.079668,-8.710369],[-35.079268,-8.706469],[-35.079368,-8.703469],[-35.082268,-8.701069],[-35.085468,-8.698569],[-35.089468,-8.695569],[-35.087668,-8.690769],[-35.085068,-8.687969],[-35.084368,-8.684469],[-35.083668,-8.681569],[-35.081168,-8.678569],[-35.077968,-8.675769],[-35.072668,-8.672769],[-35.071268,-8.667869],[-35.073168,-8.662269],[-35.072968,-8.657869],[-35.072068,-8.653669],[-35.070168,-8.649269],[-35.067668,-8.643969],[-35.065568,-8.640169],[-35.063268,-8.635969],[-35.061868,-8.632969],[-35.060168,-8.629869],[-35.057968,-8.625469],[-35.054668,-8.619069],[-35.051868,-8.615569],[-35.048068,-8.612469],[-35.049268,-8.607469],[-35.046068,-8.605669],[-35.045068,-8.602469],[-35.046068,-8.599169],[-35.045568,-8.594769],[-35.043568,-8.590869],[-35.040868,-8.588169],[-35.038868,-8.585169],[-35.038168,-8.581269],[-35.036968,-8.578169],[-35.035968,-8.574969],[-35.033168,-8.571169],[-35.029568,-8.567669],[-35.026768,-8.564869],[-35.022268,-8.560869],[-35.018668,-8.559869],[-35.014668,-8.560269],[-35.010468,-8.562469],[-35.007668,-8.563069],[-35.008568,-8.558369],[-35.008468,-8.554169],[-35.005968,-8.551569],[-35.003468,-8.547869],[-35.004068,-8.542869],[-35.003468,-8.539769],[-35.005168,-8.534769],[-35.006268,-8.530169],[-35.006368,-8.524869],[-35.005968,-8.520669],[-35.005468,-8.517669],[-35.004868,-8.514669],[-35.002668,-8.511869],[-35.000168,-8.508869],[-35.000268,-8.504569],[-35.001668,-8.501569],[-35.002368,-8.497969],[-35.001868,-8.494469],[-35.001268,-8.491069],[-34.999868,-8.486669],[-34.998368,-8.483069],[-34.996568,-8.478669],[-34.994668,-8.474569],[-34.992968,-8.471969],[-34.991368,-8.469269],[-34.988868,-8.464769],[-34.986368,-8.461269],[-34.983868,-8.458169],[-34.983868,-8.454369],[-34.983868,-8.450769],[-34.982868,-8.446869],[-34.981068,-8.441569],[-34.979968,-8.438769],[-34.978868,-8.435869],[-34.977468,-8.433269],[-34.975568,-8.428869],[-34.973668,-8.424969],[-34.971468,-8.420269],[-34.969868,-8.416969],[-34.966968,-8.410569],[-34.965168,-8.406969],[-34.963168,-8.402269],[-34.960768,-8.399069],[-34.961468,-8.395069],[-34.970368,-8.389269],[-34.974868,-8.384969],[-34.979668,-8.382169],[-34.972068,-8.380969],[-34.969468,-8.379169],[-34.967268,-8.375969],[-34.969468,-8.372669],[-34.970868,-8.369369],[-34.967668,-8.368369],[-34.965668,-8.371969],[-34.963168,-8.369069],[-34.961168,-8.366169],[-34.958668,-8.364669],[-34.957568,-8.361769],[-34.956568,-8.358169],[-34.953568,-8.355869],[-34.949368,-8.358269],[-34.945468,-8.358869],[-34.942768,-8.356469],[-34.940968,-8.353169],[-34.939668,-8.349469],[-34.940768,-8.345569],[-34.943868,-8.344169],[-34.947668,-8.341969],[-34.949968,-8.337369],[-34.950168,-8.333769],[-34.950268,-8.328969],[-34.949968,-8.324669],[-34.949568,-8.321069],[-34.948168,-8.316869],[-34.946368,-8.312669],[-34.944668,-8.308569],[-34.943068,-8.303669],[-34.946368,-8.302569],[-34.948768,-8.301069],[-34.951068,-8.298869],[-34.951868,-8.295869],[-34.951768,-8.292469],[-34.950668,-8.287269],[-34.948868,-8.283669],[-34.947168,-8.280169],[-34.946268,-8.275969],[-34.945268,-8.271769],[-34.944968,-8.267069],[-34.944568,-8.261269],[-34.942768,-8.256569],[-34.941268,-8.252969],[-34.939068,-8.248869],[-34.937368,-8.246069],[-34.935768,-8.243669],[-34.933768,-8.241369],[-34.931568,-8.239169],[-34.929068,-8.236769],[-34.926968,-8.234669],[-34.924668,-8.231369],[-34.925868,-8.227069],[-34.928568,-8.225269],[-34.925068,-8.222369],[-34.922468,-8.219769],[-34.919268,-8.215869],[-34.917568,-8.211169],[-34.916668,-8.206169],[-34.916068,-8.200469],[-34.916768,-8.195169],[-34.917068,-8.191269],[-34.917468,-8.185769],[-34.916368,-8.181169],[-34.915568,-8.176369],[-34.914468,-8.172769],[-34.913468,-8.168669],[-34.911768,-8.163169],[-34.909868,-8.158369],[-34.908768,-8.155069],[-34.907068,-8.151169],[-34.905468,-8.147169],[-34.904168,-8.144269],[-34.902068,-8.139869],[-34.900068,-8.134969],[-34.897868,-8.129869],[-34.896168,-8.125469],[-34.893768,-8.120869],[-34.891068,-8.116469],[-34.888968,-8.112869],[-34.887668,-8.109969],[-34.886268,-8.107269],[-34.884168,-8.103069],[-34.882368,-8.099469],[-34.881268,-8.096669],[-34.880268,-8.093469],[-34.879168,-8.090169],[-34.878068,-8.086769],[-34.876968,-8.083169],[-34.875568,-8.079669],[-34.874068,-8.075969],[-34.871268,-8.069269],[-34.869668,-8.065169],[-34.868068,-8.061869],[-34.865868,-8.056569],[-34.863268,-8.050869],[-34.861768,-8.048069],[-34.858968,-8.047169],[-34.860668,-8.044169],[-34.863968,-8.040969],[-34.863568,-8.038069],[-34.862268,-8.034169],[-34.860868,-8.031169],[-34.858968,-8.027969],[-34.856968,-8.025669],[-34.852068,-8.022569],[-34.849268,-8.020169],[-34.846668,-8.017169],[-34.843468,-8.013569],[-34.841568,-8.010669],[-34.840168,-8.007369],[-34.839368,-8.003569],[-34.838668,-7.999869],[-34.837368,-7.995869],[-34.838168,-7.992969],[-34.838168,-7.990069],[-34.836568,-7.985369],[-34.835068,-7.981769],[-34.834068,-7.978069],[-34.832568,-7.973469],[-34.830768,-7.967569],[-34.829568,-7.961969],[-34.828268,-7.958169],[-34.828268,-7.954669],[-34.827068,-7.952069],[-34.824768,-7.947969],[-34.823268,-7.942669],[-34.822768,-7.936969],[-34.821568,-7.932169],[-34.820468,-7.927269],[-34.819968,-7.921469],[-34.820268,-7.916669],[-34.821568,-7.911769],[-34.823468,-7.908369],[-34.824568,-7.905169],[-34.824868,-7.901769],[-34.824268,-7.898669],[-34.823768,-7.895369],[-34.823568,-7.890369],[-34.824568,-7.884569],[-34.827068,-7.880269],[-34.829668,-7.877369],[-34.832268,-7.873369],[-34.833668,-7.869769],[-34.834268,-7.866069],[-34.834268,-7.861169],[-34.834268,-7.856169],[-34.835368,-7.850669],[-34.836168,-7.845569],[-34.839068,-7.840369],[-34.841468,-7.844069],[-34.844768,-7.839069],[-34.844468,-7.834569],[-34.843168,-7.831169],[-34.843368,-7.826769],[-34.844468,-7.820569],[-34.846268,-7.816069],[-34.843668,-7.812469],[-34.839068,-7.811069],[-34.836868,-7.808669],[-34.836468,-7.804669],[-34.836868,-7.800469],[-34.836968,-7.796469],[-34.836568,-7.793069],[-34.836168,-7.788669],[-34.834768,-7.783069],[-34.832868,-7.777569],[-34.831168,-7.772969],[-34.829668,-7.768269],[-34.827668,-7.763569],[-34.825768,-7.760169],[-34.824568,-7.757069],[-34.823468,-7.752769],[-34.823268,-7.749769],[-34.823168,-7.746869],[-34.823168,-7.743369],[-34.823168,-7.740269],[-34.823468,-7.736469],[-34.824568,-7.732469],[-34.825268,-7.728469],[-34.827168,-7.725269],[-34.830668,-7.723069],[-34.830768,-7.720069],[-34.832068,-7.716269],[-34.832968,-7.712069],[-34.833168,-7.708569],[-34.832368,-7.704569],[-34.831868,-7.700169],[-34.835168,-7.696769],[-34.839768,-7.694569],[-34.841968,-7.692169],[-34.843768,-7.689469],[-34.847368,-7.687969],[-34.843368,-7.683269],[-34.837968,-7.682469],[-34.834368,-7.683369],[-34.831868,-7.679769],[-34.830168,-7.674969],[-34.829568,-7.670769],[-34.828768,-7.667469],[-34.827468,-7.663669],[-34.826068,-7.659769],[-34.824368,-7.655669],[-34.823168,-7.652069],[-34.821868,-7.648769],[-34.819568,-7.644869],[-34.817768,-7.641769],[-34.815968,-7.638869],[-34.814168,-7.636069],[-34.811668,-7.632969],[-34.808368,-7.628569],[-34.807268,-7.623869],[-34.806868,-7.619669],[-34.808368,-7.616869],[-34.811268,-7.615069],[-34.813468,-7.611669],[-34.815268,-7.608569],[-34.817668,-7.604269],[-34.819668,-7.600569],[-34.820968,-7.597669],[-34.822868,-7.594569],[-34.824968,-7.591969],[-34.826568,-7.587669],[-34.828268,-7.583569],[-34.829268,-7.580669],[-34.830968,-7.576069],[-34.831768,-7.571369],[-34.832268,-7.567669],[-34.833968,-7.564069],[-34.836968,-7.560769],[-34.837568,-7.556569],[-34.837568,-7.553369],[-34.833468,-7.548969],[-34.830468,-7.549369],[-34.827568,-7.550569],[-34.824568,-7.548169],[-34.823468,-7.544769],[-34.822668,-7.539869],[-34.822168,-7.536169],[-34.821068,-7.532669],[-34.819068,-7.528169],[-34.816568,-7.523669],[-34.813068,-7.518769],[-34.810768,-7.515369],[-34.809168,-7.510669],[-34.809868,-7.506569],[-34.811668,-7.502369],[-34.813468,-7.497269],[-34.814068,-7.493669],[-34.814068,-7.490069],[-34.812668,-7.484269],[-34.810768,-7.479969],[-34.808268,-7.476269],[-34.804768,-7.472269],[-34.805568,-7.468369],[-34.807768,-7.465669],[-34.810168,-7.460469],[-34.810768,-7.455669],[-34.810768,-7.451069],[-34.810468,-7.445769],[-34.809668,-7.440569],[-34.809468,-7.437369],[-34.809468,-7.433669],[-34.808868,-7.430069],[-34.808268,-7.426369],[-34.807268,-7.420069],[-34.806868,-7.415569],[-34.806368,-7.412569],[-34.805868,-7.409469],[-34.805468,-7.405869],[-34.804768,-7.402569],[-34.804368,-7.399069],[-34.803368,-7.392969],[-34.803368,-7.387369],[-34.802568,-7.384369],[-34.799968,-7.373869],[-34.798068,-7.369669],[-34.797568,-7.366069],[-34.798868,-7.362469],[-34.799768,-7.358869],[-34.799168,-7.354269],[-34.797868,-7.349569],[-34.797868,-7.346269],[-34.797568,-7.342569],[-34.796768,-7.339269],[-34.795768,-7.335969],[-34.794968,-7.331769],[-34.796368,-7.327869],[-34.798268,-7.322969],[-34.800868,-7.319069],[-34.801968,-7.315269],[-34.802168,-7.311369],[-34.800468,-7.306869],[-34.798568,-7.302769],[-34.799368,-7.299169],[-34.801068,-7.296069],[-34.801068,-7.292869],[-34.801068,-7.289569],[-34.799968,-7.285869],[-34.798968,-7.281969],[-34.799268,-7.277369],[-34.801568,-7.273669],[-34.802468,-7.270669],[-34.803568,-7.267969],[-34.804768,-7.261369],[-34.805168,-7.257069],[-34.805168,-7.253769],[-34.805268,-7.249769],[-34.806868,-7.245469],[-34.807168,-7.242269],[-34.806168,-7.238669],[-34.804468,-7.235769],[-34.804368,-7.231969],[-34.804368,-7.226769],[-34.804068,-7.222069],[-34.804068,-7.218069],[-34.803568,-7.214569],[-34.802168,-7.208769],[-34.801168,-7.206069],[-34.800068,-7.203269],[-34.797768,-7.199369],[-34.795268,-7.195669],[-34.794768,-7.192069],[-34.795268,-7.188369],[-34.795768,-7.185469],[-34.795868,-7.181169],[-34.795768,-7.175269],[-34.795668,-7.169469],[-34.795268,-7.163669],[-34.793868,-7.158369],[-34.793568,-7.154069],[-34.796468,-7.147669],[-34.800468,-7.145969],[-34.803868,-7.145469],[-34.806968,-7.145669],[-34.810468,-7.144869],[-34.813568,-7.142369],[-34.816568,-7.139269],[-34.818868,-7.135369],[-34.821068,-7.130469],[-34.822068,-7.127369],[-34.822868,-7.123369],[-34.822768,-7.120469],[-34.821868,-7.116069],[-34.821268,-7.111969],[-34.823268,-7.109669],[-34.826868,-7.106669],[-34.829668,-7.103169],[-34.831468,-7.100869],[-34.832668,-7.097269],[-34.833168,-7.092369],[-34.832668,-7.087869],[-34.830768,-7.081869],[-34.829668,-7.078169],[-34.829868,-7.074269],[-34.833168,-7.071269],[-34.836968,-7.067769],[-34.840168,-7.063069],[-34.841768,-7.059169],[-34.843368,-7.056169],[-34.842268,-7.052569],[-34.841668,-7.048869],[-34.840468,-7.045369],[-34.837568,-7.039569],[-34.835068,-7.036369],[-34.831068,-7.032669],[-34.829368,-7.028769],[-34.829568,-7.024269],[-34.829068,-7.018969],[-34.828268,-7.015769],[-34.827368,-7.012769],[-34.826768,-7.009869],[-34.825368,-7.004669],[-34.825368,-6.999669],[-34.825968,-6.995769],[-34.826868,-6.989369],[-34.827168,-6.983969],[-34.827468,-6.979769],[-34.827868,-6.974969],[-34.828268,-6.970569],[-34.829668,-6.966769],[-34.832068,-6.965069],[-34.836468,-6.964069],[-34.842268,-6.963469],[-34.842368,-6.966769],[-34.840668,-6.970069],[-34.836168,-6.977769],[-34.835368,-6.981769],[-34.834368,-6.985769],[-34.834068,-6.993569],[-34.835468,-6.999369],[-34.835068,-7.003569],[-34.836868,-7.009569],[-34.839268,-7.012969],[-34.843768,-7.017069],[-34.847268,-7.020169],[-34.850568,-7.024069],[-34.853868,-7.027569],[-34.858268,-7.029569],[-34.864668,-7.029569],[-34.865868,-7.025969],[-34.866668,-7.019069],[-34.870568,-7.011269],[-34.871068,-7.004569],[-34.871968,-6.999469],[-34.872768,-6.992669],[-34.873368,-6.989769],[-34.873768,-6.986469],[-34.869668,-6.978669],[-34.867168,-6.976169],[-34.863268,-6.973669],[-34.858968,-6.971969],[-34.855568,-6.969569],[-34.855068,-6.963969],[-34.856068,-6.959769],[-34.857468,-6.956769],[-34.859968,-6.952569],[-34.862568,-6.947069],[-34.864368,-6.942769],[-34.865468,-6.939169],[-34.866068,-6.934069],[-34.865768,-6.929069],[-34.863968,-6.922769],[-34.862568,-6.918469],[-34.860768,-6.914869],[-34.859168,-6.912269],[-34.857468,-6.909769],[-34.855568,-6.906169],[-34.854468,-6.901269],[-34.859268,-6.899869],[-34.862268,-6.899369],[-34.866068,-6.898269],[-34.870168,-6.896469],[-34.874468,-6.894269],[-34.877168,-6.892469],[-34.880668,-6.889869],[-34.884568,-6.886369],[-34.888268,-6.882069],[-34.890768,-6.878269],[-34.893768,-6.874069],[-34.896768,-6.869069],[-34.899368,-6.865369],[-34.900368,-6.861969],[-34.901568,-6.857469],[-34.902068,-6.854669],[-34.903668,-6.851469],[-34.905368,-6.846969],[-34.906568,-6.843669],[-34.909468,-6.833169],[-34.910268,-6.829669],[-34.911268,-6.825269],[-34.911668,-6.821769],[-34.912568,-6.817069],[-34.913368,-6.811169],[-34.914168,-6.806069],[-34.914468,-6.799969],[-34.914468,-6.796069],[-34.914768,-6.788669],[-34.917068,-6.780069],[-34.918168,-6.774469],[-34.920368,-6.769369],[-34.925768,-6.768269],[-34.932268,-6.763469],[-34.933868,-6.758869],[-34.936268,-6.755769],[-34.938868,-6.753769],[-34.936968,-6.750969],[-34.935168,-6.747669],[-34.933568,-6.744669],[-34.931168,-6.742169],[-34.928968,-6.739369],[-34.931168,-6.736369],[-34.933068,-6.732869],[-34.933868,-6.728169],[-34.932768,-6.723769],[-34.931568,-6.720669],[-34.932268,-6.716669],[-34.933268,-6.713369],[-34.933668,-6.709669],[-34.933668,-6.706469],[-34.933668,-6.701269],[-34.933868,-6.696869],[-34.932568,-6.692369],[-34.930768,-6.688769],[-34.935868,-6.687669],[-34.939568,-6.685769],[-34.942068,-6.684169],[-34.945168,-6.682469],[-34.947768,-6.679669],[-34.951068,-6.675069],[-34.952668,-6.672569],[-34.954568,-6.668369],[-34.956068,-6.663369],[-34.957168,-6.659169],[-34.957868,-6.655969],[-34.958968,-6.650969],[-34.959368,-6.647669],[-34.960168,-6.644569],[-34.961168,-6.641469],[-34.961568,-6.637969],[-34.962268,-6.634569],[-34.962968,-6.630969],[-34.963368,-6.627369],[-34.963968,-6.621969],[-34.963968,-6.618869],[-34.964068,-6.614369],[-34.964068,-6.610269],[-34.963968,-6.606769],[-34.964868,-6.603869],[-34.965868,-6.598969],[-34.966168,-6.590169],[-34.966268,-6.585469],[-34.966268,-6.579869],[-34.966168,-6.574369],[-34.966168,-6.570169],[-34.966168,-6.562269],[-34.966268,-6.554169],[-34.966268,-6.546769],[-34.966568,-6.542469],[-34.966768,-6.538069],[-34.967068,-6.528769],[-34.967368,-6.521069],[-34.967568,-6.510969],[-34.967368,-6.501669],[-34.967368,-6.497169],[-34.967568,-6.491369],[-34.969268,-6.487969],[-34.969868,-6.484669],[-34.969468,-6.480069],[-34.969568,-6.474569],[-34.969468,-6.470969],[-34.970868,-6.466969],[-34.972768,-6.461869],[-34.972768,-6.456769],[-34.973668,-6.452869],[-34.973968,-6.449669],[-34.973468,-6.445969],[-34.973068,-6.442169],[-34.971468,-6.438569],[-34.972068,-6.435769],[-34.974168,-6.432269],[-34.974868,-6.428669],[-34.974968,-6.425069],[-34.974868,-6.421369],[-34.975568,-6.418069],[-34.976968,-6.414469],[-34.979168,-6.410669],[-34.979768,-6.405869],[-34.979968,-6.402069],[-34.981768,-6.397669],[-34.984268,-6.393669],[-34.985268,-6.390469],[-34.986968,-6.386769],[-34.988568,-6.383469],[-34.989668,-6.380669],[-34.990368,-6.377669],[-34.991068,-6.372969],[-34.995868,-6.371269],[-34.999868,-6.369369],[-35.001968,-6.367169],[-35.004868,-6.365769],[-35.009068,-6.366869],[-35.010968,-6.369769],[-35.014068,-6.369669],[-35.016868,-6.367969],[-35.020368,-6.364669],[-35.022968,-6.360569],[-35.024768,-6.357269],[-35.026168,-6.354169],[-35.027568,-6.348869],[-35.028468,-6.344769],[-35.029168,-6.341269],[-35.029468,-6.337969],[-35.030168,-6.334369],[-35.031168,-6.330769],[-35.031568,-6.327869],[-35.032068,-6.324569],[-35.032568,-6.320469],[-35.032668,-6.316069],[-35.031968,-6.311969],[-35.031268,-6.306569],[-35.031968,-6.301469],[-35.032768,-6.297169],[-35.033168,-6.293569],[-35.033368,-6.289469],[-35.034468,-6.286269],[-35.033968,-6.283169],[-35.033768,-6.280169],[-35.033368,-6.275969],[-35.035168,-6.272369],[-35.037368,-6.267569],[-35.037568,-6.263869],[-35.037468,-6.259969],[-35.037268,-6.256569],[-35.036968,-6.252469],[-35.036768,-6.249069],[-35.036768,-6.245469],[-35.036368,-6.241569],[-35.035968,-6.236469],[-35.038168,-6.233569],[-35.040668,-6.231769],[-35.041968,-6.227569],[-35.045268,-6.225669],[-35.049268,-6.225669],[-35.053968,-6.225969],[-35.057668,-6.226269],[-35.061568,-6.225969],[-35.064068,-6.223869],[-35.066368,-6.221269],[-35.069168,-6.222269],[-35.072168,-6.220669],[-35.074668,-6.217069],[-35.076468,-6.213969],[-35.078268,-6.210669],[-35.079568,-6.206269],[-35.081068,-6.200469],[-35.081868,-6.195269],[-35.083668,-6.187969],[-35.087368,-6.184869],[-35.090368,-6.181869],[-35.094168,-6.182569],[-35.095368,-6.178669],[-35.095968,-6.173169],[-35.096168,-6.169169],[-35.096968,-6.164469],[-35.097268,-6.161269],[-35.097668,-6.158069],[-35.097368,-6.153769],[-35.097268,-6.150369],[-35.097568,-6.147369],[-35.097768,-6.143169],[-35.098468,-6.137669],[-35.098068,-6.133169],[-35.098168,-6.129869],[-35.098368,-6.124369],[-35.098368,-6.121269],[-35.098468,-6.117169],[-35.099868,-6.112469],[-35.100268,-6.107169],[-35.099968,-6.104169],[-35.099868,-6.099569],[-35.099568,-6.095669],[-35.099468,-6.091269],[-35.099168,-6.087669],[-35.098968,-6.084369],[-35.099168,-6.081469],[-35.099768,-6.077669],[-35.100268,-6.073269],[-35.097868,-6.069269],[-35.098368,-6.065769],[-35.097268,-6.061869],[-35.096368,-6.057769],[-35.098368,-6.055269],[-35.101368,-6.056569],[-35.104668,-6.054769],[-35.107268,-6.051169],[-35.108868,-6.047569],[-35.109468,-6.044169],[-35.109968,-6.038169],[-35.109968,-6.033069],[-35.109768,-6.028369],[-35.109268,-6.024769],[-35.108968,-6.021769],[-35.108268,-6.018469],[-35.107768,-6.015669],[-35.106368,-6.011569],[-35.106368,-6.007369],[-35.108868,-6.003769],[-35.110868,-5.999869],[-35.112168,-5.996569],[-35.112568,-5.991669],[-35.112868,-5.988369],[-35.116068,-5.985669],[-35.119968,-5.983269],[-35.121068,-5.979969],[-35.122268,-5.977069],[-35.123768,-5.974169],[-35.125568,-5.971269],[-35.128468,-5.967969],[-35.132768,-5.965569],[-35.137668,-5.965869],[-35.141868,-5.964569],[-35.146568,-5.961169],[-35.149468,-5.956869],[-35.151168,-5.952569],[-35.152568,-5.948169],[-35.153468,-5.943169],[-35.154168,-5.937669],[-35.154268,-5.932769],[-35.154268,-5.929369],[-35.156168,-5.925569],[-35.156968,-5.920369],[-35.156468,-5.915269],[-35.156168,-5.910569],[-35.155868,-5.906669],[-35.155168,-5.903669],[-35.154768,-5.900769],[-35.155468,-5.897569],[-35.153468,-5.893169],[-35.152968,-5.887169],[-35.154068,-5.883469],[-35.156768,-5.882069],[-35.160868,-5.879969],[-35.164868,-5.882669],[-35.168568,-5.882369],[-35.171168,-5.880269],[-35.173868,-5.877169],[-35.176368,-5.872669],[-35.178268,-5.867569],[-35.179468,-5.862569],[-35.180168,-5.857869],[-35.180568,-5.852869],[-35.180768,-5.848469],[-35.180768,-5.844569],[-35.180768,-5.839769],[-35.181168,-5.836169],[-35.181168,-5.833169],[-35.181168,-5.829869],[-35.181168,-5.826769],[-35.181368,-5.822069],[-35.181168,-5.819069],[-35.181068,-5.815569],[-35.180768,-5.811069],[-35.180468,-5.806369],[-35.179968,-5.801969],[-35.180068,-5.798569],[-35.181868,-5.795869],[-35.182668,-5.793069],[-35.186368,-5.790369],[-35.188868,-5.786969],[-35.190168,-5.783169],[-35.192668,-5.780869],[-35.192968,-5.777269],[-35.193468,-5.773769],[-35.193868,-5.770069],[-35.194268,-5.766769],[-35.194168,-5.762169],[-35.194268,-5.757669],[-35.197468,-5.753469],[-35.200968,-5.752069],[-35.202868,-5.749769],[-35.203468,-5.746569],[-35.204268,-5.741169],[-35.202968,-5.736769],[-35.202668,-5.733369],[-35.201868,-5.730069],[-35.201068,-5.725269],[-35.200368,-5.720869],[-35.199368,-5.717569],[-35.197868,-5.714069],[-35.196368,-5.708969],[-35.194868,-5.705369],[-35.192468,-5.702069],[-35.193168,-5.698469],[-35.194868,-5.694569],[-35.198968,-5.693869],[-35.202068,-5.694569],[-35.204968,-5.692669],[-35.207868,-5.689169],[-35.210968,-5.685469],[-35.213268,-5.681869],[-35.215468,-5.677569],[-35.216968,-5.673569],[-35.217568,-5.668069],[-35.217568,-5.663169],[-35.216468,-5.658869],[-35.216468,-5.653369],[-35.217568,-5.647869],[-35.217568,-5.643269],[-35.217568,-5.639669],[-35.217268,-5.635769],[-35.216268,-5.630569],[-35.219468,-5.629869],[-35.222868,-5.627669],[-35.224968,-5.623569],[-35.225668,-5.619769],[-35.226468,-5.616169],[-35.227068,-5.613269],[-35.227068,-5.609669],[-35.226668,-5.605969],[-35.225568,-5.602069],[-35.224968,-5.598169],[-35.224868,-5.594269],[-35.226368,-5.589769],[-35.226768,-5.585469],[-35.226368,-5.580769],[-35.228368,-5.575669],[-35.231368,-5.574969],[-35.233868,-5.573569],[-35.236168,-5.571269],[-35.237468,-5.567469],[-35.238668,-5.563269],[-35.241968,-5.559969],[-35.244068,-5.557169],[-35.246168,-5.551969],[-35.248068,-5.546769],[-35.248868,-5.543669],[-35.249368,-5.540269],[-35.249368,-5.535969],[-35.248568,-5.531769],[-35.248768,-5.528369],[-35.249968,-5.524269],[-35.250968,-5.521069],[-35.250768,-5.518169],[-35.255168,-5.517469],[-35.257068,-5.515369],[-35.258768,-5.512069],[-35.259668,-5.508769],[-35.259968,-5.503369],[-35.259868,-5.498369],[-35.258868,-5.493669],[-35.260268,-5.488569],[-35.259868,-5.482869],[-35.262368,-5.481369],[-35.265068,-5.482469],[-35.268468,-5.480669],[-35.272368,-5.478669],[-35.274868,-5.475069],[-35.276268,-5.472369],[-35.278468,-5.470269],[-35.280168,-5.467569],[-35.282668,-5.464469],[-35.286668,-5.461469],[-35.289268,-5.456469],[-35.289968,-5.451769],[-35.290568,-5.447369],[-35.290868,-5.443469],[-35.291668,-5.438769],[-35.292468,-5.435769],[-35.293068,-5.432169],[-35.292868,-5.427469],[-35.296768,-5.426169],[-35.299668,-5.423569],[-35.301068,-5.419969],[-35.302468,-5.417269],[-35.306368,-5.415869],[-35.309068,-5.412469],[-35.310268,-5.409769],[-35.310568,-5.406569],[-35.310468,-5.402269],[-35.310168,-5.398269],[-35.309768,-5.394769],[-35.309868,-5.391269],[-35.312668,-5.387469],[-35.314668,-5.385169],[-35.317468,-5.381269],[-35.321268,-5.377769],[-35.325468,-5.380769],[-35.329668,-5.380969],[-35.334868,-5.379469],[-35.339268,-5.376569],[-35.341968,-5.374169],[-35.344768,-5.371169],[-35.348168,-5.366869],[-35.350668,-5.362869],[-35.352068,-5.360269],[-35.354568,-5.355269],[-35.356068,-5.351469],[-35.357268,-5.347569],[-35.358368,-5.343969],[-35.359468,-5.339569],[-35.359668,-5.335869],[-35.359668,-5.331469],[-35.360768,-5.325669],[-35.361468,-5.319969],[-35.363568,-5.315469],[-35.364368,-5.311969],[-35.364668,-5.308369],[-35.365768,-5.304669],[-35.367168,-5.301569],[-35.367268,-5.297769],[-35.368368,-5.292169],[-35.370068,-5.288069],[-35.370768,-5.284869],[-35.372468,-5.281769],[-35.374768,-5.279069],[-35.377468,-5.276269],[-35.380568,-5.272669],[-35.383768,-5.269769],[-35.384068,-5.266069],[-35.385468,-5.263469],[-35.386768,-5.260669],[-35.388968,-5.256869],[-35.391268,-5.252769],[-35.393668,-5.249369],[-35.396768,-5.245269],[-35.400468,-5.242669],[-35.403068,-5.239669],[-35.404868,-5.236669],[-35.406968,-5.233869],[-35.409468,-5.231369],[-35.412068,-5.227469],[-35.414568,-5.224269],[-35.418168,-5.220569],[-35.423068,-5.218369],[-35.427468,-5.216669],[-35.430168,-5.215369],[-35.434068,-5.213269],[-35.436968,-5.211469],[-35.439168,-5.209569],[-35.442668,-5.207569],[-35.445468,-5.205369],[-35.448168,-5.203769],[-35.451068,-5.201469],[-35.454268,-5.198969],[-35.458268,-5.197369],[-35.460768,-5.194169],[-35.462968,-5.189169],[-35.464368,-5.186069],[-35.465668,-5.183269],[-35.467268,-5.180069],[-35.470568,-5.176069],[-35.474168,-5.171969],[-35.477468,-5.168069],[-35.480368,-5.164169],[-35.484168,-5.160969],[-35.486968,-5.158869],[-35.490068,-5.157269],[-35.493368,-5.157069],[-35.497768,-5.155569],[-35.502668,-5.153769],[-35.506668,-5.154169],[-35.511568,-5.152669],[-35.515768,-5.150969],[-35.520368,-5.149469],[-35.524368,-5.147569],[-35.528368,-5.145369],[-35.531268,-5.144369],[-35.534468,-5.142869],[-35.539168,-5.141469],[-35.543868,-5.140669],[-35.548368,-5.138569],[-35.551968,-5.138169],[-35.555768,-5.137669],[-35.559668,-5.137169],[-35.563768,-5.136369],[-35.567368,-5.134969],[-35.571068,-5.134269],[-35.573768,-5.132669],[-35.577168,-5.130269],[-35.581568,-5.128469],[-35.586468,-5.127969],[-35.589868,-5.126669],[-35.593968,-5.124369],[-35.598068,-5.122969],[-35.603168,-5.121269],[-35.607568,-5.119769],[-35.610768,-5.118369],[-35.613368,-5.116669],[-35.616868,-5.114969],[-35.621868,-5.118369],[-35.626668,-5.119069],[-35.631268,-5.120269],[-35.634968,-5.120069],[-35.639368,-5.119369],[-35.643668,-5.118069],[-35.649368,-5.116369],[-35.654268,-5.114969],[-35.657368,-5.113669],[-35.661668,-5.112469],[-35.664568,-5.111069],[-35.668668,-5.110669],[-35.673968,-5.109769],[-35.678668,-5.108569],[-35.681968,-5.107469],[-35.686768,-5.105769],[-35.691268,-5.104169],[-35.694368,-5.102769],[-35.698268,-5.101969],[-35.702068,-5.104169],[-35.706168,-5.103869],[-35.710168,-5.102869],[-35.713468,-5.100969],[-35.717568,-5.097869],[-35.722268,-5.096969],[-35.725668,-5.097269],[-35.730268,-5.096169],[-35.734668,-5.093369],[-35.738068,-5.093169],[-35.741168,-5.092669],[-35.744768,-5.091569],[-35.748368,-5.089769],[-35.752368,-5.089469],[-35.756068,-5.089269],[-35.759568,-5.088169],[-35.763468,-5.085969],[-35.766768,-5.083969],[-35.769668,-5.082069],[-35.773168,-5.081169],[-35.776468,-5.079969],[-35.780068,-5.077169],[-35.783168,-5.075769],[-35.786468,-5.075269],[-35.790568,-5.077169],[-35.794668,-5.077469],[-35.798968,-5.075669],[-35.802468,-5.073469],[-35.805768,-5.073169],[-35.809168,-5.073269],[-35.812768,-5.073869],[-35.818068,-5.073869],[-35.822168,-5.074269],[-35.825968,-5.074869],[-35.830368,-5.074969],[-35.834368,-5.074269],[-35.838168,-5.073169],[-35.841968,-5.072369],[-35.844868,-5.071369],[-35.847868,-5.070269],[-35.851668,-5.069269],[-35.854668,-5.068769],[-35.858968,-5.067669],[-35.864668,-5.068069],[-35.868568,-5.068769],[-35.871668,-5.068469],[-35.875468,-5.068169],[-35.879068,-5.067969],[-35.882368,-5.067369],[-35.885768,-5.066569],[-35.889268,-5.065769],[-35.892668,-5.064669],[-35.896168,-5.063569],[-35.899768,-5.062469],[-35.904468,-5.060769],[-35.909168,-5.059369],[-35.912768,-5.058769],[-35.915668,-5.057969],[-35.919268,-5.056669],[-35.923868,-5.054969],[-35.928568,-5.052969],[-35.931868,-5.051569],[-35.935468,-5.050469],[-35.939068,-5.049169],[-35.942368,-5.047569],[-35.945268,-5.046069],[-35.949568,-5.044169],[-35.953268,-5.044169],[-35.956568,-5.043869],[-35.959368,-5.043069],[-35.962568,-5.043569],[-35.965668,-5.043869],[-35.970368,-5.042769],[-35.973468,-5.043069],[-35.977468,-5.041769],[-35.981768,-5.043569],[-35.986368,-5.045869],[-35.990268,-5.046069],[-35.993368,-5.046069],[-35.996368,-5.045569],[-35.999368,-5.044969],[-36.003468,-5.045369],[-36.007368,-5.046369],[-36.010368,-5.048069],[-36.014268,-5.049469],[-36.017168,-5.049669],[-36.020368,-5.050069],[-36.023368,-5.050469],[-36.027268,-5.050769],[-36.030668,-5.051069],[-36.034768,-5.051369],[-36.038668,-5.052169],[-36.040068,-5.055869],[-36.042868,-5.057269],[-36.045368,-5.059069],[-36.049268,-5.060769],[-36.053368,-5.062369],[-36.056668,-5.063269],[-36.060868,-5.064069],[-36.066068,-5.064669],[-36.071268,-5.064869],[-36.076068,-5.065269],[-36.082168,-5.067469],[-36.085468,-5.069369],[-36.088668,-5.070669],[-36.091768,-5.072469],[-36.094768,-5.074869],[-36.098468,-5.076869],[-36.102068,-5.078769],[-36.104668,-5.080169],[-36.108968,-5.082569],[-36.113068,-5.085769],[-36.116868,-5.087269],[-36.120068,-5.088669],[-36.122668,-5.090069],[-36.125468,-5.091469],[-36.128568,-5.092269],[-36.131768,-5.092869],[-36.136268,-5.093669],[-36.140768,-5.094469],[-36.144668,-5.094869],[-36.148168,-5.095369],[-36.151168,-5.095569],[-36.155368,-5.095969],[-36.159768,-5.096369],[-36.163068,-5.096469],[-36.168068,-5.096369],[-36.172768,-5.095969],[-36.175868,-5.095969],[-36.180268,-5.095869],[-36.185768,-5.095569],[-36.190768,-5.095369],[-36.194668,-5.095369],[-36.198168,-5.095069],[-36.201768,-5.094869],[-36.205068,-5.095169],[-36.211168,-5.095569],[-36.215368,-5.095669],[-36.218368,-5.095869],[-36.222268,-5.095669],[-36.225968,-5.095569],[-36.229268,-5.095269],[-36.233068,-5.094869],[-36.236668,-5.094569],[-36.240368,-5.095269],[-36.245468,-5.095869],[-36.249468,-5.095569],[-36.252468,-5.094869],[-36.257768,-5.093969],[-36.262368,-5.092669],[-36.267368,-5.090969],[-36.271868,-5.089569],[-36.276168,-5.089469],[-36.280568,-5.090569],[-36.284768,-5.089469],[-36.289268,-5.088169],[-36.293568,-5.090869],[-36.304068,-5.099269],[-36.308568,-5.103069],[-36.311868,-5.099769],[-36.314968,-5.097369],[-36.317968,-5.095269],[-36.323568,-5.091969],[-36.326268,-5.090169],[-36.330768,-5.087369],[-36.335868,-5.086569],[-36.341268,-5.085369],[-36.345168,-5.086469],[-36.351368,-5.086769],[-36.355868,-5.086469],[-36.360268,-5.086469],[-36.363568,-5.086769],[-36.366968,-5.087869],[-36.372668,-5.088769],[-36.375868,-5.087669],[-36.379868,-5.087269],[-36.383768,-5.087569],[-36.387168,-5.087069],[-36.390668,-5.085969],[-36.394268,-5.084669],[-36.398668,-5.083169],[-36.402668,-5.081469],[-36.406668,-5.080669],[-36.411468,-5.079369],[-36.416668,-5.077869],[-36.421968,-5.076069],[-36.425068,-5.074969],[-36.428668,-5.073469],[-36.434168,-5.071369],[-36.438368,-5.069969],[-36.442068,-5.068769],[-36.446368,-5.067369],[-36.449368,-5.066569],[-36.453268,-5.066069],[-36.457368,-5.066269],[-36.460368,-5.068569],[-36.463668,-5.068869],[-36.466668,-5.068769],[-36.470368,-5.068769],[-36.474268,-5.069269],[-36.477068,-5.068469],[-36.481868,-5.066869],[-36.485868,-5.065469],[-36.489968,-5.064169],[-36.495168,-5.062969],[-36.499468,-5.062369],[-36.502968,-5.061869],[-36.508068,-5.062669],[-36.511768,-5.064669],[-36.516868,-5.067469],[-36.519768,-5.067369],[-36.523768,-5.067369],[-36.528668,-5.068269],[-36.532768,-5.070169],[-36.536468,-5.073869],[-36.540568,-5.076369],[-36.542568,-5.079969],[-36.544168,-5.088669],[-36.548868,-5.088369],[-36.552768,-5.087869],[-36.556868,-5.087369],[-36.561268,-5.087069],[-36.564168,-5.086769],[-36.567068,-5.086469],[-36.570968,-5.086169],[-36.574668,-5.085769],[-36.578168,-5.086569],[-36.580668,-5.088169],[-36.584268,-5.085369],[-36.587868,-5.083669],[-36.590868,-5.082669],[-36.594468,-5.081269],[-36.598968,-5.079669],[-36.603468,-5.078969],[-36.607168,-5.078569],[-36.610568,-5.078569],[-36.612168,-5.081869],[-36.609668,-5.088969],[-36.610568,-5.092369],[-36.614168,-5.094169],[-36.617568,-5.093969],[-36.620868,-5.093369],[-36.623768,-5.092369],[-36.627168,-5.091569],[-36.630468,-5.090869],[-36.634368,-5.090069],[-36.638268,-5.089569],[-36.641268,-5.089269],[-36.644568,-5.088769],[-36.648968,-5.087869],[-36.654468,-5.087869],[-36.657668,-5.087569],[-36.660868,-5.086969],[-36.663868,-5.086569],[-36.667568,-5.087269],[-36.672168,-5.086769],[-36.676868,-5.085069],[-36.682168,-5.084769],[-36.686968,-5.087269],[-36.694368,-5.086569],[-36.701468,-5.084769],[-36.716268,-5.081769],[-36.729268,-5.075969],[-36.731368,-5.071869],[-36.734168,-5.068069],[-36.736468,-5.065469],[-36.738968,-5.063869],[-36.741868,-5.062769],[-36.745768,-5.061569],[-36.749668,-5.059969],[-36.752668,-5.058669],[-36.755568,-5.056969],[-36.758568,-5.054969],[-36.762468,-5.052469],[-36.766068,-5.049969],[-36.770068,-5.049669],[-36.774768,-5.051169],[-36.777268,-5.046169],[-36.781768,-5.045269],[-36.785868,-5.044969],[-36.788668,-5.043869],[-36.791368,-5.042469],[-36.794668,-5.040369],[-36.796968,-5.038669],[-36.799968,-5.036469],[-36.803668,-5.033169],[-36.806968,-5.030169],[-36.810168,-5.027669],[-36.812468,-5.025469],[-36.814968,-5.022969],[-36.817368,-5.020469],[-36.819568,-5.017469],[-36.822068,-5.014069],[-36.824868,-5.010969],[-36.828768,-5.007069],[-36.831768,-5.003469],[-36.834568,-4.999769],[-36.837268,-4.996369],[-36.839768,-4.992969],[-36.842668,-4.989769],[-36.845668,-4.986369],[-36.848968,-4.981769],[-36.851668,-4.977869],[-36.854268,-4.973469],[-36.857768,-4.969469],[-36.860368,-4.966569],[-36.862468,-4.964069],[-36.865068,-4.960969],[-36.866968,-4.958269],[-36.870468,-4.957169],[-36.875168,-4.954269],[-36.878468,-4.950969],[-36.882968,-4.949869],[-36.885768,-4.951069],[-36.889368,-4.952169],[-36.895368,-4.952069],[-36.899568,-4.951469],[-36.902568,-4.951469],[-36.906668,-4.950669],[-36.910068,-4.949869],[-36.914468,-4.948169],[-36.920068,-4.945769],[-36.925268,-4.943169],[-36.933868,-4.937769],[-36.942368,-4.931869],[-36.948268,-4.927169],[-36.953768,-4.922869],[-36.956168,-4.921369],[-36.958968,-4.919169],[-36.962268,-4.918869],[-36.965068,-4.921369],[-36.967668,-4.925069],[-36.970668,-4.927469],[-36.974568,-4.929969],[-36.977868,-4.931169],[-36.982168,-4.931869],[-36.986368,-4.931569],[-36.989168,-4.930869],[-36.992668,-4.930169],[-36.995468,-4.929469],[-37.000168,-4.928569],[-37.003568,-4.929969],[-37.005668,-4.933069],[-37.008768,-4.935869],[-37.013168,-4.937469],[-37.017868,-4.939869],[-37.022268,-4.941669],[-37.025768,-4.943869],[-37.028768,-4.946269],[-37.032568,-4.948269],[-37.035968,-4.949569],[-37.039768,-4.949969],[-37.043668,-4.949869],[-37.047268,-4.948869],[-37.051668,-4.947369],[-37.057268,-4.944869],[-37.061668,-4.942369],[-37.064668,-4.940569],[-37.068468,-4.938069],[-37.072368,-4.935469],[-37.074868,-4.933669],[-37.077468,-4.931869],[-37.079968,-4.930269],[-37.082968,-4.929069],[-37.086568,-4.928669],[-37.089868,-4.927469],[-37.092668,-4.926169],[-37.097068,-4.924269],[-37.100068,-4.923369],[-37.103468,-4.922469],[-37.107768,-4.922769],[-37.111468,-4.925069],[-37.115768,-4.926669],[-37.117468,-4.929669],[-37.120868,-4.932969],[-37.124468,-4.935169],[-37.129168,-4.936269],[-37.134168,-4.936069],[-37.137468,-4.935869],[-37.141768,-4.935769],[-37.144568,-4.937769],[-37.143968,-4.941569],[-37.139568,-4.944169],[-37.137468,-4.949569],[-37.141768,-4.949669],[-37.145168,-4.949869],[-37.149068,-4.949369],[-37.152568,-4.948269],[-37.155168,-4.947069],[-37.158068,-4.944869],[-37.160168,-4.941669],[-37.162868,-4.936969],[-37.165668,-4.933669],[-37.167568,-4.931569],[-37.169768,-4.928969],[-37.172768,-4.924969],[-37.174668,-4.922769],[-37.177468,-4.919969],[-37.180468,-4.917169],[-37.183568,-4.915569],[-37.186868,-4.913769],[-37.189568,-4.911969],[-37.192768,-4.909769],[-37.196268,-4.907269],[-37.200168,-4.904069],[-37.204068,-4.900669],[-37.206568,-4.898269],[-37.209868,-4.894869],[-37.213168,-4.891069],[-37.215068,-4.888569],[-37.216968,-4.886469],[-37.218768,-4.884069],[-37.221268,-4.881369],[-37.223468,-4.877669],[-37.225868,-4.874369],[-37.227568,-4.871669],[-37.229468,-4.868869],[-37.231368,-4.866369],[-37.233068,-4.863569],[-37.235268,-4.860269],[-37.237568,-4.856369],[-37.239168,-4.853869],[-37.240868,-4.850669],[-37.242568,-4.847769],[-37.244368,-4.844869],[-37.246868,-4.840969],[-37.249168,-4.836469],[-37.251068,-4.833269],[-37.253268,-4.831269],[-37.254868,-4.827869],[-37.257068,-4.823169],[-37.259168,-4.818769],[-37.262068,-4.811269],[-37.264668,-4.802969],[-37.266268,-4.798169],[-37.268168,-4.793469],[-37.269768,-4.789469],[-37.271268,-4.785669],[-37.272868,-4.780169],[-37.276168,-4.769069],[-37.278768,-4.759069],[-37.280368,-4.754369],[-37.281968,-4.750769],[-37.284768,-4.745769],[-37.286768,-4.742169],[-37.289468,-4.738369],[-37.293368,-4.732269],[-37.295868,-4.729269],[-37.299768,-4.725669],[-37.302568,-4.723369],[-37.308068,-4.718069],[-37.310768,-4.715469],[-37.315268,-4.710469],[-37.321268,-4.704569],[-37.325168,-4.700969],[-37.329068,-4.697669],[-37.333468,-4.694869],[-37.336568,-4.693169],[-37.340868,-4.691569],[-37.345868,-4.690469],[-37.349568,-4.691569],[-37.356068,-4.689469],[-37.361468,-4.686969],[-37.365068,-4.685469],[-37.367968,-4.684169],[-37.372368,-4.682169],[-37.375568,-4.681169],[-37.378768,-4.680769],[-37.383168,-4.679769],[-37.389568,-4.678569],[-37.398268,-4.676869],[-37.403468,-4.675869],[-37.407268,-4.675069],[-37.410668,-4.673969],[-37.414868,-4.672169],[-37.418868,-4.670269],[-37.422168,-4.668869],[-37.425068,-4.667069],[-37.430468,-4.664569],[-37.434368,-4.663369],[-37.440468,-4.661669],[-37.445468,-4.659569],[-37.450768,-4.656969],[-37.454868,-4.655169],[-37.458968,-4.653169],[-37.462668,-4.652069],[-37.467068,-4.651569],[-37.470968,-4.650769],[-37.475568,-4.648369],[-37.478668,-4.646069],[-37.485068,-4.639869],[-37.487468,-4.637369],[-37.489468,-4.634669],[-37.492168,-4.630969],[-37.495068,-4.628369],[-37.499868,-4.626869],[-37.504668,-4.627969],[-37.507668,-4.628769],[-37.511268,-4.631769],[-37.514368,-4.634869],[-37.517868,-4.637369],[-37.520068,-4.640069],[-37.523768,-4.642069],[-37.526868,-4.642569],[-37.530368,-4.642369],[-37.536268,-4.643169],[-37.540268,-4.645669],[-37.545868,-4.644069],[-37.552268,-4.643169],[-37.558568,-4.641569],[-37.562668,-4.639969],[-37.566068,-4.638169],[-37.572468,-4.634269],[-37.579668,-4.629869],[-37.582968,-4.628769],[-37.586168,-4.628269],[-37.589568,-4.626669],[-37.592368,-4.624969],[-37.595268,-4.622969],[-37.603068,-4.617269],[-37.607468,-4.613569],[-37.613268,-4.608569],[-37.615468,-4.606669],[-37.625268,-4.598369],[-37.631068,-4.593169],[-37.635768,-4.589069],[-37.639568,-4.585769],[-37.644668,-4.580669],[-37.648268,-4.577069],[-37.652568,-4.572969],[-37.655368,-4.569969],[-37.657568,-4.567469],[-37.660968,-4.563869],[-37.664468,-4.560469],[-37.667068,-4.557269],[-37.670268,-4.553969],[-37.672768,-4.550769],[-37.675068,-4.547869],[-37.678868,-4.543369],[-37.681868,-4.539769],[-37.685268,-4.535869],[-37.689468,-4.532369],[-37.693568,-4.530369],[-37.697968,-4.526469],[-37.700968,-4.524269],[-37.703468,-4.522369],[-37.705768,-4.520469],[-37.708468,-4.518569],[-37.712868,-4.515169],[-37.716468,-4.511569],[-37.720668,-4.506269],[-37.723868,-4.502069],[-37.726168,-4.498769],[-37.728368,-4.495169],[-37.732468,-4.488369],[-37.736068,-4.481069],[-37.740368,-4.472369],[-37.744668,-4.462969],[-37.746568,-4.457969],[-37.748768,-4.452369],[-37.751568,-4.443269],[-37.753068,-4.439869],[-37.754668,-4.436569],[-37.757068,-4.433369],[-37.759568,-4.430769],[-37.763168,-4.427569],[-37.767868,-4.426669],[-37.768268,-4.422569],[-37.766768,-4.418469],[-37.767068,-4.415369],[-37.768168,-4.411669],[-37.768268,-4.407569],[-37.769568,-4.402569],[-37.774368,-4.402069],[-37.779768,-4.401569],[-37.785068,-4.400369],[-37.789568,-4.397869],[-37.793068,-4.396469],[-37.796668,-4.395669],[-37.800068,-4.398769],[-37.805768,-4.398969],[-37.810868,-4.397969],[-37.815468,-4.395769],[-37.819368,-4.393569],[-37.822768,-4.391369],[-37.826568,-4.389069],[-37.830668,-4.387369],[-37.834068,-4.383869],[-37.838268,-4.380969],[-37.842868,-4.379169],[-37.845968,-4.381669],[-37.850568,-4.381269],[-37.854168,-4.379469],[-37.856368,-4.377369],[-37.862968,-4.372169],[-37.866168,-4.369969],[-37.868568,-4.368369],[-37.871868,-4.366169],[-37.874468,-4.364469],[-37.877768,-4.361869],[-37.880268,-4.359969],[-37.884268,-4.356769],[-37.888468,-4.353469],[-37.892568,-4.350269],[-37.895768,-4.347569],[-37.899368,-4.344769],[-37.902668,-4.342369],[-37.906568,-4.339769],[-37.910168,-4.336269],[-37.916168,-4.330369],[-37.919168,-4.327669],[-37.921468,-4.325669],[-37.924168,-4.323469],[-37.927468,-4.320269],[-37.929968,-4.317669],[-37.934068,-4.313469],[-37.936968,-4.310769],[-37.940168,-4.308369],[-37.944268,-4.304669],[-37.948268,-4.301369],[-37.950768,-4.299369],[-37.953968,-4.296669],[-37.957568,-4.293869],[-37.960068,-4.291769],[-37.963768,-4.288069],[-37.966168,-4.285569],[-37.969768,-4.281969],[-37.973768,-4.277569],[-37.976968,-4.274069],[-37.979968,-4.270669],[-37.982168,-4.268169],[-37.984368,-4.265669],[-37.986468,-4.262969],[-37.989668,-4.260669],[-37.994768,-4.258469],[-37.999368,-4.255169],[-38.003768,-4.253869],[-38.010168,-4.250269],[-38.012768,-4.247769],[-38.015168,-4.245069],[-38.017168,-4.242969],[-38.019368,-4.240769],[-38.022968,-4.236469],[-38.026468,-4.233369],[-38.028368,-4.230969],[-38.030368,-4.228469],[-38.033068,-4.225369],[-38.038068,-4.223069],[-38.042768,-4.219869],[-38.046368,-4.216169],[-38.048868,-4.213969],[-38.051168,-4.211169],[-38.054168,-4.207869],[-38.056868,-4.204569],[-38.061068,-4.199569],[-38.064068,-4.197069],[-38.066868,-4.195469],[-38.070768,-4.191869],[-38.073568,-4.188769],[-38.076068,-4.185469],[-38.079668,-4.181169],[-38.083468,-4.177569],[-38.086168,-4.175069],[-38.090168,-4.171369],[-38.092268,-4.169269],[-38.096468,-4.165369],[-38.100468,-4.161569],[-38.103468,-4.158469],[-38.105868,-4.156269],[-38.110268,-4.153369],[-38.114168,-4.149569],[-38.116868,-4.146769],[-38.120168,-4.142569],[-38.122168,-4.139869],[-38.129368,-4.130269],[-38.134368,-4.122969],[-38.139968,-4.113869],[-38.143968,-4.106669],[-38.145368,-4.103469],[-38.148668,-4.101769],[-38.148968,-4.098169],[-38.151268,-4.094869],[-38.154068,-4.092269],[-38.156268,-4.090169],[-38.158668,-4.087669],[-38.160268,-4.085169],[-38.162068,-4.082869],[-38.164468,-4.079569],[-38.167568,-4.075169],[-38.170068,-4.071369],[-38.171868,-4.068469],[-38.175268,-4.063769],[-38.180568,-4.057669],[-38.182568,-4.053069],[-38.184768,-4.050369],[-38.186968,-4.047269],[-38.188768,-4.044969],[-38.190568,-4.042269],[-38.194268,-4.039569],[-38.198468,-4.037769],[-38.200968,-4.035869],[-38.203968,-4.033069],[-38.207868,-4.028669],[-38.210868,-4.023769],[-38.213968,-4.019569],[-38.216768,-4.016069],[-38.219068,-4.012669],[-38.224568,-4.006369],[-38.226968,-4.002769],[-38.230068,-3.998869],[-38.232468,-3.995869],[-38.235268,-3.992469],[-38.237768,-3.989169],[-38.240768,-3.985669],[-38.242968,-3.983069],[-38.246168,-3.978569],[-38.249068,-3.974869],[-38.251368,-3.972069],[-38.256068,-3.966269],[-38.259968,-3.960669],[-38.262868,-3.957569],[-38.266868,-3.952869],[-38.268768,-3.950669],[-38.271168,-3.947169],[-38.274468,-3.943769],[-38.279168,-3.941369],[-38.284168,-3.941569],[-38.288668,-3.942069],[-38.292768,-3.941069],[-38.296668,-3.939169],[-38.301168,-3.936669],[-38.304768,-3.934969],[-38.308668,-3.932569],[-38.311568,-3.930769],[-38.314868,-3.928569],[-38.319968,-3.924969],[-38.322768,-3.922769],[-38.326068,-3.919969],[-38.328968,-3.917569],[-38.331068,-3.915669],[-38.334568,-3.912369],[-38.337068,-3.909769],[-38.339068,-3.907569],[-38.341968,-3.904769],[-38.345068,-3.901469],[-38.349168,-3.897169],[-38.351968,-3.894369],[-38.354968,-3.890769],[-38.357468,-3.887869],[-38.360268,-3.884869],[-38.369468,-3.872469],[-38.372768,-3.867669],[-38.376068,-3.862769],[-38.377768,-3.860069],[-38.382368,-3.853369],[-38.385668,-3.848169],[-38.388568,-3.843969],[-38.392368,-3.838169],[-38.393968,-3.835069],[-38.396168,-3.831769],[-38.399068,-3.826869],[-38.401768,-3.825369],[-38.401768,-3.821769],[-38.403368,-3.819269],[-38.406268,-3.815569],[-38.408668,-3.811569],[-38.414868,-3.802569],[-38.418068,-3.797869],[-38.420868,-3.793969],[-38.423968,-3.788369],[-38.427268,-3.782569],[-38.429668,-3.778769],[-38.433268,-3.772269],[-38.435468,-3.770369],[-38.436868,-3.767169],[-38.438368,-3.764569],[-38.440168,-3.761769],[-38.442668,-3.757469],[-38.443868,-3.754869],[-38.446068,-3.750269],[-38.447468,-3.747669],[-38.449868,-3.743269],[-38.452068,-3.738869],[-38.453568,-3.735369],[-38.455768,-3.731369],[-38.457568,-3.728069],[-38.458968,-3.724569],[-38.460868,-3.720169],[-38.462368,-3.715869],[-38.463268,-3.712969],[-38.463768,-3.709269],[-38.467568,-3.708169],[-38.470668,-3.706169],[-38.474568,-3.701769],[-38.473668,-3.705369],[-38.474568,-3.710769],[-38.477068,-3.716269],[-38.477568,-3.719769],[-38.481768,-3.721969],[-38.484668,-3.722369],[-38.487568,-3.722369],[-38.490268,-3.723669],[-38.494168,-3.724869],[-38.499068,-3.724469],[-38.503768,-3.721669],[-38.507668,-3.720969],[-38.512368,-3.718969],[-38.516568,-3.717069],[-38.520168,-3.717269],[-38.523968,-3.717869],[-38.526868,-3.719469],[-38.530568,-3.718669],[-38.534768,-3.717569],[-38.539868,-3.715569],[-38.541968,-3.712269],[-38.546068,-3.711569],[-38.549268,-3.709869],[-38.551868,-3.708169],[-38.554468,-3.706469],[-38.558668,-3.705169],[-38.564168,-3.703169],[-38.569568,-3.700969],[-38.574868,-3.698169],[-38.576768,-3.695169],[-38.580368,-3.693769],[-38.585468,-3.693069],[-38.587968,-3.696369],[-38.591168,-3.695169],[-38.594868,-3.694069],[-38.598468,-3.693169],[-38.603868,-3.691669],[-38.607868,-3.690969],[-38.612168,-3.688869],[-38.617768,-3.689669],[-38.622968,-3.689069],[-38.627068,-3.688069],[-38.629868,-3.687269],[-38.633768,-3.686069],[-38.637468,-3.686669],[-38.640968,-3.686869],[-38.645068,-3.685469],[-38.648968,-3.683869],[-38.652868,-3.681669],[-38.656268,-3.679669],[-38.660368,-3.676869],[-38.663068,-3.674969],[-38.665868,-3.673169],[-38.668968,-3.670769],[-38.673968,-3.666769],[-38.676668,-3.664469],[-38.680868,-3.659869],[-38.685168,-3.655569],[-38.689568,-3.651169],[-38.691568,-3.648169],[-38.696068,-3.643169],[-38.699068,-3.640369],[-38.701568,-3.638469],[-38.705668,-3.636069],[-38.708968,-3.633869],[-38.712568,-3.632669],[-38.715668,-3.631369],[-38.719468,-3.629169],[-38.724568,-3.625569],[-38.728368,-3.624469],[-38.731368,-3.623369],[-38.735268,-3.622369],[-38.738668,-3.620869],[-38.741968,-3.619369],[-38.746968,-3.617469],[-38.752368,-3.613869],[-38.755668,-3.611169],[-38.759868,-3.607869],[-38.762468,-3.605669],[-38.766068,-3.601969],[-38.770668,-3.596769],[-38.773168,-3.593469],[-38.776168,-3.589069],[-38.777868,-3.586269],[-38.780068,-3.583469],[-38.783468,-3.579869],[-38.786968,-3.576269],[-38.789468,-3.573469],[-38.791468,-3.570569],[-38.794268,-3.566969],[-38.798268,-3.561869],[-38.800768,-3.557669],[-38.803268,-3.554169],[-38.805768,-3.549669],[-38.808268,-3.546369],[-38.810168,-3.544169],[-38.813368,-3.543469],[-38.816568,-3.544669],[-38.820468,-3.546069],[-38.824868,-3.546469],[-38.828568,-3.546369],[-38.834268,-3.545669],[-38.838668,-3.545069],[-38.842668,-3.543969],[-38.847268,-3.542869],[-38.852068,-3.540669],[-38.854468,-3.538969],[-38.858168,-3.536369],[-38.860568,-3.534469],[-38.863268,-3.532269],[-38.866368,-3.529069],[-38.869368,-3.525469],[-38.871968,-3.523169],[-38.874468,-3.520969],[-38.877068,-3.518569],[-38.880668,-3.515069],[-38.886268,-3.510169],[-38.888568,-3.507769],[-38.891268,-3.506269],[-38.894668,-3.506069],[-38.898368,-3.505669],[-38.901568,-3.505269],[-38.906168,-3.505469],[-38.910568,-3.502969],[-38.913668,-3.499869],[-38.917068,-3.495269],[-38.921468,-3.487769],[-38.924468,-3.482169],[-38.926668,-3.476769],[-38.929468,-3.472569],[-38.932468,-3.464269],[-38.934368,-3.460069],[-38.935268,-3.456869],[-38.936968,-3.453169],[-38.938568,-3.450669],[-38.941668,-3.447869],[-38.944668,-3.445969],[-38.946668,-3.443569],[-38.949268,-3.440469],[-38.952168,-3.437769],[-38.954868,-3.434369],[-38.957368,-3.430869],[-38.959568,-3.427869],[-38.962568,-3.423969],[-38.965868,-3.420069],[-38.967868,-3.417869],[-38.970568,-3.415269],[-38.973768,-3.410969],[-38.976368,-3.409469],[-38.979268,-3.406969],[-38.982768,-3.404769],[-38.988068,-3.401869],[-38.991668,-3.399569],[-38.995068,-3.397869],[-38.998368,-3.397269],[-39.001568,-3.396869],[-39.005668,-3.396869],[-39.008868,-3.398369],[-39.012768,-3.400169],[-39.016068,-3.403369],[-39.020368,-3.404169],[-39.023468,-3.403669],[-39.027868,-3.404769],[-39.030868,-3.405969],[-39.032668,-3.408869],[-39.035368,-3.410969],[-39.040268,-3.411269],[-39.045668,-3.411969],[-39.052468,-3.411269],[-39.056968,-3.409169],[-39.062968,-3.408669],[-39.067668,-3.404769],[-39.071368,-3.402869],[-39.074268,-3.401269],[-39.078268,-3.397569],[-39.083668,-3.393269],[-39.085868,-3.390969],[-39.088768,-3.387469],[-39.091168,-3.384569],[-39.103168,-3.366169],[-39.107868,-3.357269],[-39.110368,-3.350869],[-39.113068,-3.346669],[-39.117268,-3.345369],[-39.121068,-3.344469],[-39.125168,-3.343969],[-39.128068,-3.343769],[-39.130968,-3.344869],[-39.135668,-3.345169],[-39.140768,-3.344869],[-39.144068,-3.343369],[-39.146868,-3.340969],[-39.150668,-3.337869],[-39.156268,-3.335369],[-39.159868,-3.331469],[-39.162768,-3.328269],[-39.165568,-3.325969],[-39.168068,-3.322069],[-39.169968,-3.319869],[-39.177468,-3.309169],[-39.185468,-3.295269],[-39.187668,-3.290669],[-39.189868,-3.287269],[-39.191968,-3.284169],[-39.194568,-3.282269],[-39.196268,-3.279869],[-39.198768,-3.275469],[-39.201868,-3.271869],[-39.205168,-3.267869],[-39.207568,-3.264969],[-39.209368,-3.261869],[-39.212868,-3.257969],[-39.219168,-3.250269],[-39.221668,-3.247169],[-39.224468,-3.244469],[-39.226968,-3.241469],[-39.229568,-3.239169],[-39.232868,-3.237569],[-39.237268,-3.235669],[-39.240868,-3.232869],[-39.244468,-3.229469],[-39.248768,-3.225269],[-39.251068,-3.222869],[-39.254368,-3.220869],[-39.257768,-3.219169],[-39.260668,-3.217969],[-39.263968,-3.217669],[-39.268768,-3.218369],[-39.272868,-3.219769],[-39.276468,-3.219769],[-39.279468,-3.218769],[-39.284468,-3.216969],[-39.287868,-3.215969],[-39.292568,-3.215069],[-39.296968,-3.212669],[-39.300468,-3.210069],[-39.305868,-3.206869],[-39.309068,-3.206869],[-39.312968,-3.205769],[-39.318268,-3.202469],[-39.322168,-3.200669],[-39.325168,-3.198469],[-39.330168,-3.195169],[-39.332868,-3.192669],[-39.335368,-3.189969],[-39.338468,-3.185569],[-39.340668,-3.181569],[-39.345268,-3.177769],[-39.349168,-3.176569],[-39.352068,-3.174769],[-39.356368,-3.173569],[-39.360268,-3.173169],[-39.364668,-3.173269],[-39.367968,-3.175269],[-39.371868,-3.178269],[-39.378468,-3.180269],[-39.378868,-3.183669],[-39.382468,-3.183069],[-39.385768,-3.180869],[-39.388168,-3.179069],[-39.391768,-3.178369],[-39.396868,-3.176669],[-39.399568,-3.174769],[-39.402268,-3.172269],[-39.404068,-3.170069],[-39.407568,-3.166669],[-39.409168,-3.164269],[-39.411768,-3.161169],[-39.419268,-3.155969],[-39.422168,-3.154569],[-39.426168,-3.154769],[-39.431968,-3.151469],[-39.435468,-3.149069],[-39.439068,-3.147669],[-39.442968,-3.146569],[-39.447168,-3.146469],[-39.451068,-3.145669],[-39.455168,-3.145669],[-39.458268,-3.144769],[-39.462868,-3.143469],[-39.469068,-3.139669],[-39.471968,-3.137969],[-39.474968,-3.134969],[-39.478568,-3.129969],[-39.481068,-3.126569],[-39.483268,-3.124369],[-39.486168,-3.119769],[-39.489368,-3.118269],[-39.493368,-3.116869],[-39.496868,-3.114769],[-39.499468,-3.113269],[-39.503068,-3.111369],[-39.508768,-3.109169],[-39.515168,-3.104969],[-39.521568,-3.102469],[-39.527368,-3.098069],[-39.530068,-3.094769],[-39.533068,-3.091169],[-39.537268,-3.088669],[-39.542468,-3.084669],[-39.545068,-3.082269],[-39.550768,-3.079269],[-39.553868,-3.078269],[-39.558368,-3.076069],[-39.562168,-3.075969],[-39.565968,-3.076069],[-39.569268,-3.074569],[-39.573468,-3.071669],[-39.578568,-3.072869],[-39.583268,-3.072469],[-39.586768,-3.071269],[-39.591268,-3.069569],[-39.594268,-3.067969],[-39.597068,-3.065269],[-39.600568,-3.060469],[-39.602768,-3.057269],[-39.606168,-3.051869],[-39.609768,-3.045369],[-39.611068,-3.042469],[-39.613668,-3.038469],[-39.614968,-3.034869],[-39.616168,-3.031269],[-39.617568,-3.028769],[-39.619668,-3.026269],[-39.623068,-3.024369],[-39.628568,-3.021869],[-39.633568,-3.020369],[-39.637468,-3.018969],[-39.641068,-3.018969],[-39.643768,-3.020669],[-39.645968,-3.023369],[-39.648768,-3.024269],[-39.652668,-3.024269],[-39.656768,-3.023169],[-39.659768,-3.021569],[-39.663168,-3.018469],[-39.665268,-3.016269],[-39.670268,-3.010269],[-39.672468,-3.007369],[-39.673968,-3.004669],[-39.676168,-3.001669],[-39.679668,-3.000769],[-39.683268,-2.999069],[-39.687668,-2.996569],[-39.691068,-2.996669],[-39.693868,-2.998269],[-39.696868,-2.999969],[-39.701268,-3.001069],[-39.705068,-3.001069],[-39.709268,-2.999869],[-39.713968,-2.998369],[-39.719768,-2.998269],[-39.722568,-2.995169],[-39.727268,-2.993069],[-39.732468,-2.990469],[-39.736168,-2.987269],[-39.740368,-2.983569],[-39.743668,-2.980569],[-39.746268,-2.978969],[-39.749468,-2.977269],[-39.752468,-2.974169],[-39.756268,-2.970569],[-39.758468,-2.968769],[-39.761068,-2.967069],[-39.765768,-2.963269],[-39.768768,-2.960869],[-39.772668,-2.958269],[-39.776168,-2.955969],[-39.780868,-2.953969],[-39.787068,-2.950969],[-39.790568,-2.950969],[-39.793868,-2.951869],[-39.798568,-2.945769],[-39.804168,-2.942969],[-39.809468,-2.939869],[-39.814368,-2.935869],[-39.818568,-2.934669],[-39.822668,-2.931669],[-39.825368,-2.929669],[-39.829568,-2.926569],[-39.831868,-2.924169],[-39.835368,-2.920869],[-39.837868,-2.918569],[-39.841668,-2.915069],[-39.844868,-2.912369],[-39.850368,-2.908069],[-39.853368,-2.905869],[-39.856968,-2.903369],[-39.861868,-2.899869],[-39.865068,-2.897969],[-39.868268,-2.896869],[-39.872468,-2.896169],[-39.876568,-2.893269],[-39.880968,-2.892469],[-39.885668,-2.889569],[-39.886768,-2.885969],[-39.888568,-2.883769],[-39.892168,-2.881269],[-39.896268,-2.878769],[-39.900468,-2.878069],[-39.899368,-2.882969],[-39.909868,-2.879569],[-39.913968,-2.878769],[-39.919268,-2.876669],[-39.922568,-2.875269],[-39.926468,-2.873369],[-39.930768,-2.871669],[-39.933868,-2.870769],[-39.936268,-2.868869],[-39.939068,-2.867669],[-39.942468,-2.866169],[-39.947168,-2.862869],[-39.950968,-2.860269],[-39.955168,-2.857869],[-39.957868,-2.856469],[-39.960768,-2.855369],[-39.965868,-2.851269],[-39.970868,-2.848369],[-39.979968,-2.844569],[-39.987468,-2.841969],[-39.990468,-2.841769],[-39.987868,-2.846269],[-39.992468,-2.844869],[-39.996968,-2.844469],[-40.000568,-2.844169],[-40.005568,-2.843669],[-40.009568,-2.843169],[-40.012468,-2.842569],[-40.019068,-2.840669],[-40.022868,-2.839569],[-40.026168,-2.838969],[-40.026568,-2.841969],[-40.032268,-2.840069],[-40.035368,-2.840869],[-40.038468,-2.841569],[-40.043968,-2.839369],[-40.048368,-2.837569],[-40.051168,-2.836469],[-40.054668,-2.835069],[-40.059168,-2.834369],[-40.062368,-2.836969],[-40.068168,-2.836269],[-40.072468,-2.836169],[-40.075968,-2.840069],[-40.078768,-2.837869],[-40.080768,-2.834569],[-40.085368,-2.831869],[-40.095868,-2.828269],[-40.100268,-2.827069],[-40.103368,-2.827169],[-40.109968,-2.826469],[-40.113268,-2.826369],[-40.117268,-2.827069],[-40.120268,-2.824869],[-40.126268,-2.823769],[-40.130268,-2.824869],[-40.135368,-2.826069],[-40.133568,-2.829269],[-40.136368,-2.830469],[-40.136568,-2.834369],[-40.139268,-2.837969],[-40.144868,-2.839769],[-40.147968,-2.838669],[-40.151168,-2.836869],[-40.156268,-2.834369],[-40.159868,-2.832569],[-40.163868,-2.828969],[-40.168568,-2.825969],[-40.171468,-2.823469],[-40.173868,-2.821669],[-40.176568,-2.819969],[-40.179968,-2.817769],[-40.182968,-2.814969],[-40.184868,-2.812169],[-40.188768,-2.812169],[-40.192068,-2.811969],[-40.195268,-2.811669],[-40.198268,-2.811569],[-40.201068,-2.810869],[-40.205068,-2.811669],[-40.208968,-2.811269],[-40.212368,-2.811369],[-40.216468,-2.810869],[-40.219868,-2.810769],[-40.223968,-2.810769],[-40.228068,-2.810869],[-40.232468,-2.811569],[-40.236368,-2.814069],[-40.241568,-2.814169],[-40.253268,-2.812369],[-40.256268,-2.811869],[-40.261368,-2.811169],[-40.264268,-2.810769],[-40.267868,-2.810169],[-40.271768,-2.809869],[-40.274768,-2.809469],[-40.278168,-2.809669],[-40.283768,-2.809069],[-40.288168,-2.809069],[-40.294268,-2.808269],[-40.297868,-2.807969],[-40.303368,-2.807969],[-40.306868,-2.807969],[-40.309768,-2.807669],[-40.313568,-2.807269],[-40.317968,-2.806969],[-40.321668,-2.806569],[-40.327068,-2.806069],[-40.332568,-2.805869],[-40.339568,-2.806069],[-40.344168,-2.806669],[-40.350068,-2.807969],[-40.353168,-2.808669],[-40.361168,-2.809969],[-40.365068,-2.810769],[-40.368068,-2.811669],[-40.370868,-2.812169],[-40.376868,-2.812669],[-40.385668,-2.813469],[-40.390668,-2.813769],[-40.400468,-2.813469],[-40.405068,-2.813269],[-40.408068,-2.813069],[-40.411168,-2.812969],[-40.420368,-2.811969],[-40.423968,-2.811069],[-40.428268,-2.811169],[-40.434668,-2.810269],[-40.438068,-2.809369],[-40.449068,-2.805769],[-40.454568,-2.804369],[-40.458268,-2.802269],[-40.462868,-2.800269],[-40.467668,-2.798569],[-40.470568,-2.797469],[-40.473468,-2.796169],[-40.476468,-2.794669],[-40.482468,-2.791969],[-40.488568,-2.788669],[-40.491668,-2.787069],[-40.496868,-2.784769],[-40.500868,-2.784769],[-40.504468,-2.786469],[-40.508068,-2.787069],[-40.512368,-2.788669],[-40.515768,-2.790369],[-40.520068,-2.792469],[-40.519268,-2.797169],[-40.520768,-2.800769],[-40.523668,-2.804469],[-40.525968,-2.807769],[-40.528968,-2.811569],[-40.530868,-2.814169],[-40.534268,-2.817369],[-40.537068,-2.819369],[-40.540968,-2.821369],[-40.546968,-2.823669],[-40.553568,-2.825669],[-40.557968,-2.827069],[-40.560768,-2.827669],[-40.563768,-2.827669],[-40.567168,-2.830769],[-40.570268,-2.832869],[-40.573768,-2.835069],[-40.577568,-2.836769],[-40.580468,-2.837869],[-40.588668,-2.839769],[-40.592568,-2.839269],[-40.595968,-2.839869],[-40.597868,-2.844069],[-40.592868,-2.845969],[-40.596268,-2.846969],[-40.600568,-2.848369],[-40.604568,-2.846269],[-40.608568,-2.842069],[-40.612168,-2.841269],[-40.618368,-2.844569],[-40.625168,-2.845969],[-40.628068,-2.845969],[-40.632468,-2.846969],[-40.637368,-2.847569],[-40.640768,-2.848869],[-40.644268,-2.849169],[-40.649868,-2.848969],[-40.655068,-2.848369],[-40.660868,-2.846369],[-40.665668,-2.844569],[-40.670268,-2.843669],[-40.675268,-2.844869],[-40.679968,-2.845669],[-40.684768,-2.846269],[-40.687468,-2.848469],[-40.690768,-2.851169],[-40.690468,-2.846969],[-40.694868,-2.846769],[-40.699568,-2.846969],[-40.702168,-2.848369],[-40.705668,-2.849269],[-40.709568,-2.849469],[-40.714468,-2.849269],[-40.718468,-2.848969],[-40.725968,-2.850269],[-40.729468,-2.850869],[-40.732868,-2.850969],[-40.736868,-2.850669],[-40.740568,-2.850369],[-40.746968,-2.849469],[-40.751668,-2.849469],[-40.756668,-2.848769],[-40.760968,-2.849169],[-40.765368,-2.850269],[-40.769868,-2.851169],[-40.774068,-2.853069],[-40.778168,-2.855569],[-40.781468,-2.858269],[-40.785168,-2.862169],[-40.790668,-2.866469],[-40.797268,-2.870069],[-40.802168,-2.872769],[-40.805768,-2.873869],[-40.810768,-2.875469],[-40.815268,-2.876569],[-40.821268,-2.877369],[-40.829868,-2.878369],[-40.834668,-2.878769],[-40.838168,-2.880169],[-40.841668,-2.882369],[-40.845068,-2.884869],[-40.847668,-2.880069],[-40.850568,-2.875469],[-40.852868,-2.873369],[-40.854168,-2.869369],[-40.857168,-2.864469],[-40.859668,-2.860269],[-40.863268,-2.857169],[-40.865768,-2.861469],[-40.870868,-2.861669],[-40.875468,-2.860369],[-40.879468,-2.860769],[-40.882668,-2.860669],[-40.885468,-2.861369],[-40.888568,-2.862269],[-40.892368,-2.862269],[-40.898468,-2.861869],[-40.902668,-2.860069],[-40.905868,-2.859769],[-40.906568,-2.864169],[-40.908368,-2.868669],[-40.912068,-2.871869],[-40.915268,-2.873069],[-40.919268,-2.874069],[-40.922468,-2.874369],[-40.925768,-2.874369],[-40.932168,-2.874069],[-40.937668,-2.874069],[-40.942768,-2.873269],[-40.946768,-2.872369],[-40.950468,-2.871669],[-40.955768,-2.872469],[-40.958968,-2.876869],[-40.962868,-2.880269],[-40.966168,-2.881669],[-40.969768,-2.882469],[-40.972868,-2.883169],[-40.975968,-2.883469],[-40.980568,-2.884369],[-40.987168,-2.884069],[-40.991968,-2.884169],[-40.995468,-2.884969],[-40.999868,-2.887069],[-41.001668,-2.889269],[-41.006068,-2.890669],[-41.010268,-2.891469],[-41.015968,-2.892169],[-41.022068,-2.891769],[-41.025068,-2.890969],[-41.029468,-2.891769],[-41.034568,-2.891469],[-41.038168,-2.892669],[-41.041468,-2.892969],[-41.046068,-2.894069],[-41.054168,-2.893969],[-41.059468,-2.894369],[-41.065268,-2.894869],[-41.068168,-2.895069],[-41.077868,-2.894569],[-41.083468,-2.894569],[-41.087668,-2.893969],[-41.091768,-2.892669],[-41.094868,-2.891069],[-41.098168,-2.890669],[-41.100968,-2.891769],[-41.105268,-2.890969],[-41.108168,-2.890769],[-41.106668,-2.894569],[-41.104168,-2.898669],[-41.108968,-2.897269],[-41.111368,-2.894769],[-41.112968,-2.891769],[-41.113668,-2.888269],[-41.116568,-2.885469],[-41.118268,-2.888169],[-41.121168,-2.890069],[-41.124168,-2.891869],[-41.128868,-2.892569],[-41.133168,-2.891869],[-41.137968,-2.892069],[-41.143568,-2.891569],[-41.147968,-2.891769],[-41.154268,-2.890769],[-41.159468,-2.889569],[-41.162768,-2.889369],[-41.165568,-2.888469],[-41.168868,-2.888269],[-41.174168,-2.886869],[-41.177468,-2.886469],[-41.181168,-2.886769],[-41.184068,-2.888969],[-41.187468,-2.890769],[-41.191868,-2.890369],[-41.196768,-2.889069],[-41.200168,-2.888169],[-41.204268,-2.890069],[-41.208668,-2.890369],[-41.216968,-2.889269],[-41.224868,-2.887869],[-41.232768,-2.889269],[-41.238068,-2.888969],[-41.243268,-2.888169],[-41.246268,-2.887469],[-41.251668,-2.886569],[-41.256368,-2.884869],[-41.259568,-2.883769],[-41.262968,-2.884069],[-41.265668,-2.884969],[-41.270368,-2.886769],[-41.273668,-2.889269],[-41.276468,-2.891769],[-41.279268,-2.894569],[-41.283968,-2.899269],[-41.287068,-2.901869],[-41.290268,-2.903769],[-41.293868,-2.906169],[-41.297468,-2.907869],[-41.300468,-2.909469],[-41.303868,-2.911369],[-41.309168,-2.913969],[-41.322768,-2.921369],[-41.329068,-2.923969],[-41.332868,-2.924969],[-41.336468,-2.925869],[-41.341268,-2.926869],[-41.346668,-2.923869],[-41.349468,-2.922869],[-41.356668,-2.921169],[-41.360368,-2.920369],[-41.363668,-2.918069],[-41.368368,-2.917769],[-41.373268,-2.917869],[-41.376668,-2.916169],[-41.380968,-2.914169],[-41.383768,-2.912769],[-41.386868,-2.910069],[-41.390368,-2.907669],[-41.393768,-2.906169],[-41.399068,-2.904469],[-41.403368,-2.906169],[-41.407268,-2.906569],[-41.411268,-2.908369],[-41.416468,-2.909569],[-41.420868,-2.909769],[-41.423968,-2.909469],[-41.427468,-2.908869],[-41.431568,-2.907569],[-41.435568,-2.906169],[-41.438868,-2.906169],[-41.441568,-2.907269],[-41.447368,-2.906169],[-41.451768,-2.903369],[-41.455368,-2.900969],[-41.466168,-2.900069],[-41.471168,-2.899069],[-41.474768,-2.897369],[-41.478968,-2.895969],[-41.482868,-2.897869],[-41.486968,-2.898669],[-41.491168,-2.899569],[-41.494768,-2.901169],[-41.498268,-2.904169],[-41.501568,-2.905969],[-41.504068,-2.907369],[-41.507368,-2.910269],[-41.511068,-2.911669],[-41.515768,-2.911669],[-41.519068,-2.911169],[-41.522868,-2.910969],[-41.527368,-2.910969],[-41.530168,-2.910369],[-41.533368,-2.909569],[-41.536268,-2.908369],[-41.539968,-2.906269],[-41.543668,-2.904169],[-41.547468,-2.902269],[-41.552168,-2.900369],[-41.555068,-2.898969],[-41.558268,-2.897669],[-41.560568,-2.900669],[-41.564168,-2.901569],[-41.567368,-2.902669],[-41.571568,-2.902669],[-41.575268,-2.905069],[-41.578968,-2.906469],[-41.583668,-2.906469],[-41.586868,-2.905969],[-41.590068,-2.905369],[-41.593368,-2.904469],[-41.597868,-2.902569],[-41.602768,-2.900469],[-41.606168,-2.899069],[-41.612468,-2.896469],[-41.616168,-2.894069],[-41.619068,-2.892469],[-41.622668,-2.890669],[-41.625568,-2.888569],[-41.628768,-2.886769],[-41.632768,-2.883769],[-41.635768,-2.881069],[-41.638468,-2.878469],[-41.641468,-2.875469],[-41.643968,-2.872769],[-41.648168,-2.867969],[-41.649768,-2.863669],[-41.652268,-2.861069],[-41.655168,-2.860069],[-41.659768,-2.858569],[-41.665568,-2.856669],[-41.669968,-2.854569],[-41.674368,-2.851769],[-41.677168,-2.850069],[-41.680768,-2.847569],[-41.683668,-2.845069],[-41.688268,-2.841169],[-41.691868,-2.838169],[-41.694668,-2.835769],[-41.698468,-2.832369],[-41.701768,-2.829569],[-41.704568,-2.826769],[-41.706768,-2.824569],[-41.709568,-2.821869],[-41.714468,-2.817469],[-41.719468,-2.812669],[-41.723768,-2.808769],[-41.727068,-2.805269],[-41.730068,-2.803669],[-41.731468,-2.807169],[-41.733968,-2.808569],[-41.737568,-2.808369],[-41.740768,-2.807469],[-41.743368,-2.806069],[-41.746368,-2.804169],[-41.749068,-2.802269],[-41.751368,-2.800569],[-41.755168,-2.796969],[-41.758468,-2.793969],[-41.760768,-2.791769],[-41.763468,-2.789169],[-41.765668,-2.786469],[-41.768268,-2.783369],[-41.770668,-2.780169],[-41.772568,-2.776969],[-41.773968,-2.774269],[-41.775768,-2.771469],[-41.777568,-2.767869],[-41.779268,-2.764069],[-41.780668,-2.760769],[-41.783368,-2.757069],[-41.787068,-2.754869],[-41.790668,-2.752669],[-41.793868,-2.750169],[-41.797468,-2.749769],[-41.801868,-2.750169],[-41.805068,-2.751269],[-41.808368,-2.753369],[-41.811868,-2.756369],[-41.815168,-2.758569],[-41.817968,-2.759669],[-41.820968,-2.760769],[-41.825968,-2.757369],[-41.829568,-2.753769],[-41.826768,-2.750169],[-41.824968,-2.747369],[-41.822068,-2.744969],[-41.817768,-2.741669],[-41.814168,-2.739469],[-41.810468,-2.737969],[-41.807768,-2.736869],[-41.804468,-2.735669],[-41.804368,-2.732269],[-41.807268,-2.730069],[-41.811868,-2.728369],[-41.817368,-2.726969],[-41.822368,-2.725969],[-41.827568,-2.725369],[-41.830468,-2.724869],[-41.833668,-2.724169],[-41.838368,-2.723669],[-41.842368,-2.723469],[-41.845968,-2.723069],[-41.850568,-2.722369],[-41.855568,-2.721969],[-41.858868,-2.721469],[-41.861768,-2.721669],[-41.865268,-2.721669],[-41.869468,-2.721169],[-41.874068,-2.720869],[-41.879068,-2.720269],[-41.882068,-2.720269],[-41.885268,-2.720069],[-41.889068,-2.719769],[-41.892068,-2.719769],[-41.895668,-2.719569],[-41.900068,-2.719469],[-41.905068,-2.719269],[-41.910668,-2.718769],[-41.915568,-2.718969],[-41.918868,-2.719069],[-41.922568,-2.718969],[-41.926568,-2.719069],[-41.931168,-2.718669],[-41.936568,-2.718469],[-41.941268,-2.718669],[-41.945568,-2.718769],[-41.949968,-2.718769],[-41.953568,-2.718669],[-41.959068,-2.718669],[-41.963968,-2.718969],[-41.967068,-2.719169],[-41.970268,-2.719469],[-41.973168,-2.720569],[-41.976668,-2.722269],[-41.982468,-2.723069],[-41.987268,-2.722769],[-41.990368,-2.721969],[-41.994668,-2.720869],[-41.998068,-2.719769],[-42.002068,-2.717369],[-42.007468,-2.714569],[-42.012668,-2.712869],[-42.016868,-2.712869],[-42.019368,-2.715169],[-42.020068,-2.719569],[-42.019568,-2.723069],[-42.018268,-2.725669],[-42.016568,-2.728369],[-42.016068,-2.732469],[-42.016468,-2.736469],[-42.031568,-2.739069],[-42.034468,-2.737169],[-42.037268,-2.734769],[-42.039968,-2.732169],[-42.042468,-2.730069],[-42.044268,-2.727469],[-42.046068,-2.723469],[-42.047868,-2.719769],[-42.049968,-2.716169],[-42.051968,-2.712869],[-42.054168,-2.709269],[-42.055268,-2.705669],[-42.055868,-2.700769],[-42.057768,-2.697869],[-42.060768,-2.695269],[-42.063068,-2.692769],[-42.066268,-2.689869],[-42.069168,-2.687669],[-42.072868,-2.687669],[-42.077568,-2.688869],[-42.081868,-2.690569],[-42.086968,-2.691869],[-42.092368,-2.692969],[-42.095668,-2.693469],[-42.099568,-2.693469],[-42.104268,-2.694069],[-42.108068,-2.694569],[-42.111068,-2.694869],[-42.115268,-2.694869],[-42.118668,-2.694969],[-42.122268,-2.694869],[-42.125468,-2.694669],[-42.128768,-2.695169],[-42.132068,-2.694869],[-42.135468,-2.694869],[-42.139668,-2.694269],[-42.142968,-2.694269],[-42.146468,-2.693769],[-42.150368,-2.693469],[-42.154268,-2.693069],[-42.159268,-2.692669],[-42.162268,-2.692169],[-42.165668,-2.691869],[-42.168868,-2.691369],[-42.171868,-2.691269],[-42.174968,-2.690769],[-42.177968,-2.690269],[-42.181668,-2.689469],[-42.186368,-2.688869],[-42.189568,-2.688469],[-42.193868,-2.687769],[-42.197768,-2.687969],[-42.200968,-2.687769],[-42.204368,-2.687469],[-42.208268,-2.687369],[-42.211768,-2.686969],[-42.215668,-2.687669],[-42.218668,-2.688869],[-42.221168,-2.691869],[-42.229468,-2.696369],[-42.231668,-2.694169],[-42.233268,-2.691369],[-42.235268,-2.688769],[-42.237468,-2.685769],[-42.239968,-2.683369],[-42.243668,-2.680569],[-42.247768,-2.678669],[-42.250968,-2.677269],[-42.254168,-2.676069],[-42.257168,-2.676069],[-42.257068,-2.678969],[-42.255568,-2.682669],[-42.257068,-2.685769],[-42.259868,-2.689369],[-42.259568,-2.692969],[-42.258568,-2.702069],[-42.259168,-2.704869],[-42.259868,-2.708469],[-42.260168,-2.713669],[-42.260468,-2.717669],[-42.261068,-2.721669],[-42.262368,-2.725569],[-42.262368,-2.728869],[-42.260468,-2.732569],[-42.256268,-2.735769],[-42.252668,-2.738069],[-42.264868,-2.757069],[-42.269368,-2.755269],[-42.272968,-2.753869],[-42.276168,-2.753069],[-42.280168,-2.752769],[-42.283968,-2.753069],[-42.286768,-2.754069],[-42.292468,-2.753869],[-42.295368,-2.754169],[-42.299368,-2.754369],[-42.303568,-2.754369],[-42.307668,-2.754169],[-42.310768,-2.754069],[-42.314168,-2.753569],[-42.318068,-2.753069],[-42.322368,-2.752369],[-42.326768,-2.751569],[-42.331468,-2.750569],[-42.336468,-2.749469],[-42.339268,-2.748769],[-42.341968,-2.747669],[-42.345668,-2.745269],[-42.349168,-2.742469],[-42.352068,-2.739969],[-42.354168,-2.736869],[-42.357468,-2.733669],[-42.361368,-2.729269],[-42.362568,-2.724469],[-42.363668,-2.718969],[-42.364668,-2.715469],[-42.369368,-2.714069],[-42.374468,-2.715069],[-42.378768,-2.715469],[-42.382668,-2.715369],[-42.386068,-2.714769],[-42.389268,-2.713969],[-42.392168,-2.712369],[-42.395668,-2.711569],[-42.400368,-2.712669],[-42.404568,-2.713469],[-42.408468,-2.713969],[-42.413168,-2.714069],[-42.417768,-2.714069],[-42.421468,-2.713969],[-42.425468,-2.713169],[-42.430568,-2.712569],[-42.434868,-2.711769],[-42.438768,-2.711169],[-42.441868,-2.710669],[-42.446368,-2.709769],[-42.450168,-2.708969],[-42.454368,-2.707869],[-42.458668,-2.706769],[-42.461768,-2.705969],[-42.465168,-2.704869],[-42.468968,-2.703169],[-42.472068,-2.701769],[-42.475968,-2.699669],[-42.481468,-2.699569],[-42.485668,-2.700369],[-42.487168,-2.703269],[-42.489968,-2.703769],[-42.494068,-2.703569],[-42.495768,-2.700669],[-42.496868,-2.697869],[-42.497668,-2.692669],[-42.498268,-2.687669],[-42.499368,-2.684069],[-42.501268,-2.680269],[-42.504068,-2.678569],[-42.507668,-2.678569],[-42.510668,-2.679369],[-42.513968,-2.680169],[-42.518468,-2.680869],[-42.523668,-2.681169],[-42.527968,-2.681369],[-42.531968,-2.681369],[-42.535868,-2.681169],[-42.538868,-2.680769],[-42.543068,-2.680469],[-42.546868,-2.679969],[-42.550068,-2.679469],[-42.554368,-2.678669],[-42.558268,-2.678669],[-42.561968,-2.678569],[-42.568268,-2.676669],[-42.573468,-2.675069],[-42.577968,-2.673369],[-42.582868,-2.671069],[-42.587268,-2.668969],[-42.590368,-2.666469],[-42.593768,-2.663769],[-42.598068,-2.661269],[-42.603168,-2.657869],[-42.606668,-2.655469],[-42.610268,-2.652869],[-42.612568,-2.650869],[-42.616868,-2.647869],[-42.620868,-2.645069],[-42.624368,-2.641769],[-42.627468,-2.638569],[-42.630968,-2.635269],[-42.634668,-2.631769],[-42.639268,-2.627669],[-42.641568,-2.625569],[-42.643768,-2.623269],[-42.647068,-2.620269],[-42.650368,-2.617269],[-42.653668,-2.614369],[-42.657568,-2.610769],[-42.660068,-2.608269],[-42.661968,-2.606169],[-42.664468,-2.603569],[-42.667868,-2.599969],[-42.671368,-2.596669],[-42.674668,-2.593469],[-42.678268,-2.590069],[-42.680468,-2.587969],[-42.682668,-2.585869],[-42.685168,-2.583969],[-42.687968,-2.581469],[-42.690468,-2.579069],[-42.693268,-2.576469],[-42.696368,-2.573569],[-42.699568,-2.571069],[-42.702068,-2.568869],[-42.704368,-2.567169],[-42.708468,-2.564169],[-42.711568,-2.562169],[-42.714068,-2.560569],[-42.717668,-2.558569],[-42.721368,-2.556669],[-42.726468,-2.554769],[-42.730268,-2.554069],[-42.733568,-2.553569],[-42.737468,-2.554369],[-42.740068,-2.555869],[-42.742168,-2.558269],[-42.745568,-2.559869],[-42.749368,-2.560169],[-42.751668,-2.556869],[-42.754868,-2.553869],[-42.757768,-2.550269],[-42.760668,-2.546969],[-42.763868,-2.545369],[-42.768568,-2.546369],[-42.772568,-2.547569],[-42.777268,-2.547869],[-42.780168,-2.547769],[-42.783968,-2.547869],[-42.790568,-2.547769],[-42.795368,-2.547569],[-42.800068,-2.547269],[-42.803968,-2.547569],[-42.808068,-2.548069],[-42.812168,-2.547869],[-42.817168,-2.546369],[-42.821668,-2.545369],[-42.825268,-2.544669],[-42.828568,-2.543169],[-42.832868,-2.540969],[-42.836768,-2.538969],[-42.840068,-2.536969],[-42.844468,-2.534469],[-42.848368,-2.532569],[-42.852468,-2.530169],[-42.864968,-2.524769],[-42.867968,-2.523369],[-42.871368,-2.521469],[-42.875168,-2.519069],[-42.878068,-2.517569],[-42.881568,-2.515369],[-42.885468,-2.513269],[-42.888468,-2.511769],[-42.892068,-2.510969],[-42.896168,-2.509969],[-42.900068,-2.507769],[-42.903968,-2.505969],[-42.906768,-2.504569],[-42.910568,-2.502469],[-42.914968,-2.499369],[-42.918868,-2.496969],[-42.921468,-2.495769],[-42.924368,-2.494469],[-42.928568,-2.492269],[-42.932768,-2.490069],[-42.937668,-2.487969],[-42.942768,-2.485369],[-42.947068,-2.483369],[-42.950968,-2.481669],[-42.955368,-2.479169],[-42.958668,-2.477769],[-42.961568,-2.476369],[-42.964268,-2.474869],[-42.968968,-2.474469],[-42.973368,-2.473769],[-42.977068,-2.472069],[-42.979968,-2.470969],[-42.982768,-2.469769],[-42.987268,-2.467669],[-42.991068,-2.465869],[-42.996368,-2.463669],[-43.000268,-2.461969],[-43.005668,-2.460469],[-43.008468,-2.459369],[-43.011568,-2.458169],[-43.015368,-2.456569],[-43.019868,-2.454369],[-43.025468,-2.452069],[-43.029468,-2.449969],[-43.033068,-2.448769],[-43.036968,-2.447069],[-43.040268,-2.445669],[-43.044468,-2.443769],[-43.048868,-2.442369],[-43.051868,-2.441369],[-43.054768,-2.440169],[-43.057468,-2.438869],[-43.060468,-2.437669],[-43.064068,-2.435869],[-43.066968,-2.434369],[-43.073468,-2.431169],[-43.079268,-2.427769],[-43.084268,-2.425269],[-43.091468,-2.421669],[-43.096968,-2.419169],[-43.100968,-2.417269],[-43.104668,-2.415669],[-43.107768,-2.414269],[-43.110868,-2.413069],[-43.114668,-2.412069],[-43.120468,-2.411169],[-43.124468,-2.409269],[-43.127168,-2.408169],[-43.130168,-2.406969],[-43.135968,-2.404469],[-43.141068,-2.401969],[-43.144368,-2.400369],[-43.148368,-2.398769],[-43.152668,-2.397069],[-43.155968,-2.395469],[-43.159268,-2.393469],[-43.162268,-2.391869],[-43.165368,-2.390069],[-43.168368,-2.388469],[-43.171868,-2.386569],[-43.175468,-2.384869],[-43.178268,-2.383769],[-43.181968,-2.382369],[-43.185168,-2.380669],[-43.189168,-2.378269],[-43.193768,-2.376069],[-43.200768,-2.372969],[-43.208268,-2.370169],[-43.215168,-2.367769],[-43.222268,-2.365069],[-43.225568,-2.364069],[-43.228568,-2.362869],[-43.231668,-2.361369],[-43.234668,-2.359769],[-43.238568,-2.358369],[-43.243568,-2.357069],[-43.247668,-2.355969],[-43.251068,-2.354969],[-43.255168,-2.353969],[-43.258868,-2.353069],[-43.262968,-2.351969],[-43.267968,-2.350569],[-43.272368,-2.349469],[-43.276268,-2.348169],[-43.281268,-2.346269],[-43.285968,-2.344869],[-43.290668,-2.343369],[-43.296068,-2.342269],[-43.299968,-2.341269],[-43.302968,-2.340869],[-43.306568,-2.340069],[-43.310268,-2.338969],[-43.314668,-2.338169],[-43.317468,-2.337669],[-43.321668,-2.337069],[-43.326368,-2.336769],[-43.331068,-2.336769],[-43.333968,-2.338269],[-43.337568,-2.338969],[-43.340868,-2.339869],[-43.344868,-2.340069],[-43.348368,-2.340169],[-43.352568,-2.340069],[-43.358368,-2.339769],[-43.363568,-2.339569],[-43.368068,-2.339269],[-43.371568,-2.339269],[-43.375168,-2.340069],[-43.377368,-2.343669],[-43.385968,-2.344569],[-43.388268,-2.341569],[-43.390668,-2.338269],[-43.395468,-2.336869],[-43.399768,-2.335869],[-43.403968,-2.335469],[-43.408768,-2.336769],[-43.413468,-2.339069],[-43.416468,-2.340369],[-43.421068,-2.341269],[-43.425068,-2.342269],[-43.429768,-2.343669],[-43.435168,-2.342269],[-43.440268,-2.341969],[-43.443768,-2.344569],[-43.447068,-2.346669],[-43.452068,-2.348369],[-43.456568,-2.349569],[-43.460768,-2.350969],[-43.461468,-2.354969],[-43.462868,-2.357769],[-43.467068,-2.359669],[-43.469868,-2.361169],[-43.472668,-2.362769],[-43.475968,-2.364969],[-43.478468,-2.366869],[-43.481368,-2.369769],[-43.483268,-2.373269],[-43.484168,-2.378069],[-43.483568,-2.384369],[-43.480668,-2.389869],[-43.468068,-2.412069],[-43.466268,-2.415669],[-43.463168,-2.423569],[-43.460368,-2.429969],[-43.457568,-2.434669],[-43.456168,-2.437469],[-43.452168,-2.443269],[-43.454668,-2.446769],[-43.456468,-2.449969],[-43.456168,-2.453469],[-43.454668,-2.457269],[-43.454268,-2.461169],[-43.453968,-2.472669],[-43.454668,-2.476769],[-43.456268,-2.481769],[-43.458168,-2.484169],[-43.461468,-2.486869],[-43.465968,-2.487569],[-43.469568,-2.487969],[-43.474468,-2.487769],[-43.479168,-2.486869],[-43.482868,-2.485769],[-43.485868,-2.483969],[-43.488568,-2.481069],[-43.492768,-2.479669],[-43.500268,-2.478669],[-43.506068,-2.477769],[-43.509068,-2.475569],[-43.511268,-2.470569],[-43.513468,-2.466169],[-43.517368,-2.462969],[-43.518968,-2.460169],[-43.520368,-2.457569],[-43.520368,-2.453569],[-43.518768,-2.449869],[-43.516868,-2.446769],[-43.513268,-2.443869],[-43.511468,-2.440769],[-43.512368,-2.437169],[-43.514368,-2.433569],[-43.514668,-2.429669],[-43.515768,-2.425269],[-43.519668,-2.421669],[-43.523668,-2.419269],[-43.528768,-2.418869],[-43.534168,-2.420269],[-43.537868,-2.422469],[-43.540068,-2.425069],[-43.541368,-2.428669],[-43.543068,-2.432669],[-43.545368,-2.436169],[-43.547868,-2.439169],[-43.550868,-2.441569],[-43.553268,-2.444169],[-43.554668,-2.447469],[-43.554768,-2.452069],[-43.554768,-2.455669],[-43.554068,-2.460069],[-43.554368,-2.463669],[-43.554768,-2.468169],[-43.555268,-2.471969],[-43.556568,-2.475669],[-43.558068,-2.479769],[-43.562468,-2.486369],[-43.565268,-2.489469],[-43.567168,-2.492469],[-43.569868,-2.494469],[-43.575268,-2.497669],[-43.577168,-2.502669],[-43.579568,-2.506569],[-43.584368,-2.506769],[-43.587868,-2.506269],[-43.591968,-2.505569],[-43.596468,-2.504569],[-43.598368,-2.502069],[-43.598168,-2.498269],[-43.595568,-2.494969],[-43.592668,-2.491169],[-43.589768,-2.488569],[-43.586568,-2.487469],[-43.580768,-2.485269],[-43.576868,-2.482269],[-43.573868,-2.479469],[-43.571768,-2.476269],[-43.570168,-2.472569],[-43.570668,-2.469469],[-43.572968,-2.466769],[-43.574268,-2.464069],[-43.576368,-2.460469],[-43.580668,-2.458569],[-43.584068,-2.461269],[-43.586768,-2.465169],[-43.587868,-2.468469],[-43.589068,-2.471769],[-43.589268,-2.474769],[-43.590868,-2.477469],[-43.593768,-2.480869],[-43.598068,-2.483869],[-43.601168,-2.486169],[-43.604168,-2.489969],[-43.605668,-2.494069],[-43.606368,-2.497769],[-43.610268,-2.500469],[-43.611468,-2.503469],[-43.612568,-2.506269],[-43.614968,-2.508069],[-43.617968,-2.509169],[-43.621868,-2.510169],[-43.625168,-2.510269],[-43.628768,-2.508069],[-43.631368,-2.504569],[-43.633868,-2.502469],[-43.637968,-2.500269],[-43.641068,-2.498569],[-43.644768,-2.496869],[-43.648468,-2.495169],[-43.649868,-2.491369],[-43.647568,-2.488569],[-43.647868,-2.485269],[-43.650468,-2.482169],[-43.654868,-2.482769],[-43.660068,-2.485269],[-43.663968,-2.487969],[-43.666968,-2.491069],[-43.669968,-2.494669],[-43.671868,-2.497669],[-43.675468,-2.503769],[-43.680868,-2.512769],[-43.684168,-2.515469],[-43.686968,-2.518169],[-43.689968,-2.519869],[-43.693768,-2.519869],[-43.696868,-2.516069],[-43.700968,-2.512869],[-43.702868,-2.509669],[-43.702868,-2.506669],[-43.701368,-2.503769],[-43.699968,-2.498069],[-43.698468,-2.493269],[-43.696268,-2.488669],[-43.695668,-2.484669],[-43.699068,-2.482769],[-43.704268,-2.485269],[-43.709068,-2.487169],[-43.711168,-2.482569],[-43.713468,-2.478869],[-43.716268,-2.476169],[-43.719468,-2.475269],[-43.722868,-2.474569],[-43.725968,-2.475969],[-43.730068,-2.478169],[-43.733868,-2.479969],[-43.736168,-2.482869],[-43.739668,-2.486469],[-43.742968,-2.490069],[-43.744768,-2.492269],[-43.747468,-2.493669],[-43.751968,-2.494069],[-43.756268,-2.494469],[-43.760768,-2.494769],[-43.765768,-2.494669],[-43.768268,-2.493069],[-43.770668,-2.489769],[-43.773168,-2.486469],[-43.776568,-2.482469],[-43.777568,-2.478069],[-43.776068,-2.473369],[-43.771868,-2.470869],[-43.768168,-2.470069],[-43.765068,-2.468769],[-43.761068,-2.466569],[-43.758168,-2.462869],[-43.756768,-2.459069],[-43.755268,-2.455369],[-43.752468,-2.452569],[-43.749668,-2.450369],[-43.747968,-2.447069],[-43.746568,-2.443769],[-43.743968,-2.440069],[-43.741868,-2.434769],[-43.739068,-2.431169],[-43.735268,-2.428269],[-43.732068,-2.425469],[-43.728868,-2.424169],[-43.725268,-2.423969],[-43.720868,-2.424669],[-43.715368,-2.426169],[-43.709268,-2.426169],[-43.706568,-2.422469],[-43.705768,-2.419269],[-43.703568,-2.414969],[-43.699568,-2.411269],[-43.693468,-2.409469],[-43.689168,-2.405569],[-43.688468,-2.402369],[-43.688068,-2.398669],[-43.685168,-2.397569],[-43.681568,-2.398469],[-43.674668,-2.399869],[-43.669768,-2.400469],[-43.664768,-2.401869],[-43.661468,-2.402869],[-43.657668,-2.401269],[-43.654168,-2.401569],[-43.650368,-2.403469],[-43.645668,-2.403069],[-43.644368,-2.398969],[-43.643268,-2.394569],[-43.641068,-2.392469],[-43.638168,-2.388969],[-43.638768,-2.384369],[-43.637068,-2.381069],[-43.634968,-2.378469],[-43.634368,-2.375169],[-43.633468,-2.372369],[-43.631668,-2.368269],[-43.630668,-2.364969],[-43.629868,-2.362169],[-43.628768,-2.357769],[-43.628568,-2.352269],[-43.628068,-2.348069],[-43.628468,-2.344869],[-43.628068,-2.341269],[-43.627668,-2.337669],[-43.627168,-2.334069],[-43.629068,-2.329569],[-43.629868,-2.324969],[-43.627668,-2.321069],[-43.626268,-2.316969],[-43.625268,-2.313069],[-43.625468,-2.309369],[-43.624468,-2.305569],[-43.622968,-2.302169],[-43.621268,-2.299269],[-43.618368,-2.296369],[-43.614968,-2.294169],[-43.610768,-2.293069],[-43.604968,-2.292469],[-43.600568,-2.293069],[-43.596968,-2.291469],[-43.594568,-2.288969],[-43.593668,-2.285969],[-43.594868,-2.281669],[-43.597268,-2.278669],[-43.599468,-2.275969],[-43.601668,-2.271469],[-43.601968,-2.266769],[-43.602068,-2.262969],[-43.603168,-2.258769],[-43.607268,-2.255969],[-43.610568,-2.253469],[-43.614068,-2.252069],[-43.616968,-2.251869],[-43.620768,-2.251569],[-43.623768,-2.251269],[-43.627068,-2.251269],[-43.632068,-2.251869],[-43.638268,-2.254069],[-43.644368,-2.257769],[-43.650668,-2.260369],[-43.654468,-2.262369],[-43.660368,-2.265069],[-43.669668,-2.269069],[-43.677968,-2.271169],[-43.682268,-2.271869],[-43.686068,-2.272969],[-43.689968,-2.274469],[-43.696268,-2.276569],[-43.700668,-2.278769],[-43.704268,-2.281269],[-43.708968,-2.284169],[-43.713368,-2.286169],[-43.718068,-2.288769],[-43.720268,-2.291369],[-43.721168,-2.295869],[-43.721968,-2.300069],[-43.723168,-2.304469],[-43.723468,-2.308369],[-43.722568,-2.312769],[-43.721668,-2.317169],[-43.721768,-2.322069],[-43.722868,-2.324969],[-43.724568,-2.329269],[-43.727268,-2.333769],[-43.730368,-2.337669],[-43.734368,-2.342369],[-43.737468,-2.346769],[-43.738668,-2.351269],[-43.735368,-2.354169],[-43.731768,-2.356169],[-43.728868,-2.359369],[-43.726668,-2.364369],[-43.725068,-2.367969],[-43.724868,-2.371669],[-43.724868,-2.375869],[-43.725068,-2.379169],[-43.725968,-2.383569],[-43.727468,-2.386869],[-43.730368,-2.389669],[-43.733568,-2.393169],[-43.736468,-2.394369],[-43.739968,-2.395369],[-43.743268,-2.396169],[-43.746868,-2.398669],[-43.750168,-2.402669],[-43.753068,-2.404869],[-43.756368,-2.406269],[-43.758868,-2.410069],[-43.759068,-2.415269],[-43.761768,-2.418869],[-43.765668,-2.420669],[-43.768968,-2.422569],[-43.772268,-2.424269],[-43.780068,-2.428269],[-43.782768,-2.429769],[-43.785368,-2.431569],[-43.788068,-2.433269],[-43.791068,-2.435169],[-43.795068,-2.437669],[-43.798868,-2.439569],[-43.802268,-2.439969],[-43.806068,-2.439169],[-43.809368,-2.436969],[-43.809468,-2.432069],[-43.806568,-2.427569],[-43.804368,-2.423169],[-43.801668,-2.420369],[-43.799668,-2.416769],[-43.799468,-2.413869],[-43.800768,-2.409769],[-43.800268,-2.405069],[-43.798568,-2.401869],[-43.796668,-2.398469],[-43.793368,-2.395069],[-43.797868,-2.391769],[-43.802568,-2.390769],[-43.806568,-2.392569],[-43.810568,-2.395069],[-43.814368,-2.397569],[-43.817768,-2.400469],[-43.820168,-2.402969],[-43.824268,-2.406269],[-43.829968,-2.409869],[-43.833668,-2.412769],[-43.836868,-2.415569],[-43.839468,-2.419169],[-43.839868,-2.424169],[-43.838768,-2.428569],[-43.835968,-2.431169],[-43.833668,-2.434169],[-43.832068,-2.437269],[-43.831768,-2.440469],[-43.834368,-2.443469],[-43.837268,-2.445569],[-43.841268,-2.447469],[-43.842568,-2.452369],[-43.842268,-2.457969],[-43.842568,-2.461569],[-43.843468,-2.468069],[-43.844868,-2.475569],[-43.845968,-2.488569],[-43.846768,-2.501869],[-43.848368,-2.507369],[-43.850068,-2.509969],[-43.855268,-2.514269],[-43.859968,-2.515669],[-43.864068,-2.516569],[-43.867168,-2.516069],[-43.871868,-2.515769],[-43.875468,-2.517669],[-43.877768,-2.521169],[-43.879068,-2.525769],[-43.882168,-2.528769],[-43.887068,-2.531769],[-43.890368,-2.534469],[-43.891868,-2.537069],[-43.892368,-2.540069],[-43.891468,-2.544669],[-43.890468,-2.548969],[-43.891068,-2.553669],[-43.894768,-2.556869],[-43.899568,-2.558069],[-43.902868,-2.557969],[-43.905668,-2.556569],[-43.908768,-2.554769],[-43.914468,-2.554369],[-43.920368,-2.555469],[-43.924468,-2.557169],[-43.927168,-2.558369],[-43.930268,-2.560869],[-43.931568,-2.564169],[-43.932968,-2.567769],[-43.935868,-2.572169],[-43.939768,-2.576969],[-43.945668,-2.586969],[-43.949068,-2.593769],[-43.950968,-2.598069],[-43.953768,-2.605269],[-43.954068,-2.611869],[-43.953968,-2.617769],[-43.956868,-2.621569],[-43.962668,-2.622669],[-43.973668,-2.625769],[-43.981468,-2.630269],[-43.988868,-2.633769],[-43.993668,-2.635169],[-43.998868,-2.636769],[-44.003868,-2.638169],[-44.007168,-2.643469],[-44.009868,-2.647269],[-44.013768,-2.650369],[-44.019268,-2.651169],[-44.022568,-2.652569],[-44.025968,-2.656469],[-44.027868,-2.661669],[-44.027868,-2.666169],[-44.029168,-2.670069],[-44.031168,-2.673369],[-44.035168,-2.676669],[-44.037768,-2.678369],[-44.041668,-2.682969],[-44.043968,-2.687169],[-44.044668,-2.690569],[-44.047168,-2.693169],[-44.050368,-2.698169],[-44.051168,-2.702069],[-44.052268,-2.705669],[-44.053068,-2.708569],[-44.055068,-2.711969],[-44.058268,-2.715669],[-44.061068,-2.718969],[-44.065568,-2.720969],[-44.067668,-2.724569],[-44.067768,-2.728169],[-44.070468,-2.732869],[-44.072868,-2.735569],[-44.075368,-2.739669],[-44.078268,-2.743269],[-44.080768,-2.745769],[-44.084768,-2.748869],[-44.089268,-2.751269],[-44.092268,-2.751869],[-44.094868,-2.753069],[-44.098068,-2.752369],[-44.102268,-2.749369],[-44.106768,-2.748369],[-44.111368,-2.747769],[-44.115268,-2.748769],[-44.117968,-2.752469],[-44.120168,-2.755269],[-44.122668,-2.758169],[-44.125568,-2.759669],[-44.127668,-2.762069],[-44.129668,-2.764369],[-44.132368,-2.765369],[-44.136068,-2.766269],[-44.141268,-2.767069],[-44.147968,-2.768269],[-44.152568,-2.767969],[-44.158768,-2.768469],[-44.163468,-2.768169],[-44.169168,-2.767669],[-44.175068,-2.767069],[-44.179668,-2.766469],[-44.184868,-2.764669],[-44.190268,-2.764569],[-44.194968,-2.765369],[-44.197968,-2.766269],[-44.202068,-2.767069],[-44.208168,-2.767869],[-44.211968,-2.769869],[-44.215868,-2.771769],[-44.220968,-2.771069],[-44.225068,-2.771869],[-44.228568,-2.772669],[-44.232068,-2.774469],[-44.234968,-2.775769],[-44.237268,-2.778169],[-44.240868,-2.780369],[-44.243868,-2.780569],[-44.246868,-2.780469],[-44.250868,-2.780069],[-44.254868,-2.778969],[-44.257768,-2.777269],[-44.260768,-2.774769],[-44.263168,-2.771469],[-44.264368,-2.767069],[-44.265368,-2.762969],[-44.265768,-2.759169],[-44.264568,-2.753869],[-44.262368,-2.749669],[-44.259868,-2.744369],[-44.257668,-2.740869],[-44.255768,-2.738369],[-44.251868,-2.732869],[-44.249068,-2.729969],[-44.245268,-2.728369],[-44.241168,-2.726469],[-44.237168,-2.725269],[-44.232068,-2.724569],[-44.228968,-2.724769],[-44.223468,-2.725669],[-44.219768,-2.723969],[-44.216768,-2.723069],[-44.213668,-2.720969],[-44.209668,-2.719069],[-44.205368,-2.717269],[-44.202068,-2.713669],[-44.199868,-2.709669],[-44.197068,-2.706769],[-44.193468,-2.704669],[-44.188068,-2.704669],[-44.184368,-2.704669],[-44.180768,-2.703869],[-44.176368,-2.701069],[-44.170668,-2.700469],[-44.165868,-2.699569],[-44.163168,-2.697869],[-44.161268,-2.693869],[-44.159568,-2.690569],[-44.157668,-2.688269],[-44.153668,-2.685269],[-44.148168,-2.684169],[-44.143768,-2.682169],[-44.138768,-2.681569],[-44.137068,-2.677469],[-44.135968,-2.672769],[-44.134968,-2.668169],[-44.133068,-2.665369],[-44.133468,-2.661469],[-44.132768,-2.658669],[-44.129368,-2.655169],[-44.125168,-2.654769],[-44.123368,-2.651269],[-44.125168,-2.648469],[-44.121568,-2.646769],[-44.117268,-2.643169],[-44.115268,-2.638969],[-44.113568,-2.636469],[-44.112468,-2.632769],[-44.108168,-2.630169],[-44.105568,-2.628569],[-44.106168,-2.625469],[-44.107268,-2.621569],[-44.107768,-2.617669],[-44.106768,-2.613569],[-44.106068,-2.609269],[-44.105268,-2.604269],[-44.102768,-2.598069],[-44.100268,-2.594769],[-44.097268,-2.592669],[-44.093368,-2.590369],[-44.092268,-2.587069],[-44.092968,-2.583969],[-44.093468,-2.579669],[-44.093368,-2.576069],[-44.090968,-2.573769],[-44.086568,-2.571369],[-44.083468,-2.567469],[-44.081468,-2.563769],[-44.076468,-2.561969],[-44.072668,-2.560269],[-44.068768,-2.559369],[-44.065168,-2.559469],[-44.061968,-2.559869],[-44.057968,-2.562669],[-44.053868,-2.562969],[-44.053268,-2.558769],[-44.051468,-2.555869],[-44.046968,-2.554369],[-44.043168,-2.554669],[-44.040868,-2.557169],[-44.036968,-2.556869],[-44.034568,-2.551669],[-44.033868,-2.545369],[-44.033768,-2.542269],[-44.034268,-2.537869],[-44.033768,-2.533669],[-44.031268,-2.531469],[-44.027668,-2.528769],[-44.027568,-2.524069],[-44.027668,-2.519769],[-44.026568,-2.516269],[-44.024368,-2.513169],[-44.023768,-2.509069],[-44.025068,-2.505169],[-44.027068,-2.500869],[-44.028768,-2.498569],[-44.031268,-2.495469],[-44.034268,-2.491869],[-44.041768,-2.483269],[-44.048368,-2.475669],[-44.050868,-2.472369],[-44.052468,-2.469469],[-44.052268,-2.466269],[-44.051068,-2.462069],[-44.048368,-2.456869],[-44.044568,-2.452869],[-44.038468,-2.450969],[-44.033368,-2.450469],[-44.029268,-2.451269],[-44.025468,-2.450669],[-44.023368,-2.447369],[-44.022868,-2.442369],[-44.022868,-2.439069],[-44.022868,-2.434669],[-44.023468,-2.430869],[-44.025168,-2.426669],[-44.026268,-2.423269],[-44.027268,-2.420069],[-44.028068,-2.416369],[-44.028768,-2.413169],[-44.029468,-2.410069],[-44.031268,-2.406969],[-44.036968,-2.406269],[-44.042168,-2.405969],[-44.047568,-2.405169],[-44.051668,-2.404769],[-44.059068,-2.404069],[-44.063468,-2.403369],[-44.068268,-2.403369],[-44.072368,-2.403669],[-44.077668,-2.404069],[-44.082568,-2.404469],[-44.088968,-2.405369],[-44.094568,-2.406569],[-44.097268,-2.407869],[-44.100668,-2.409769],[-44.103168,-2.411369],[-44.108568,-2.414269],[-44.125268,-2.423569],[-44.132068,-2.427269],[-44.136568,-2.429769],[-44.140668,-2.430769],[-44.145168,-2.432169],[-44.150468,-2.433569],[-44.154868,-2.436669],[-44.156168,-2.440569],[-44.157868,-2.444869],[-44.162468,-2.448769],[-44.167468,-2.452869],[-44.171668,-2.455769],[-44.173868,-2.458269],[-44.177868,-2.459369],[-44.183368,-2.460969],[-44.186268,-2.461469],[-44.190268,-2.462669],[-44.193868,-2.463269],[-44.197468,-2.463669],[-44.201368,-2.464069],[-44.205068,-2.466669],[-44.210468,-2.469769],[-44.214568,-2.470869],[-44.218368,-2.472269],[-44.222068,-2.475069],[-44.225968,-2.476969],[-44.230268,-2.477769],[-44.234968,-2.478369],[-44.238368,-2.478969],[-44.242468,-2.479569],[-44.246268,-2.480969],[-44.250468,-2.481369],[-44.254168,-2.481069],[-44.258568,-2.480969],[-44.263568,-2.481969],[-44.268268,-2.484969],[-44.272568,-2.486369],[-44.276168,-2.486769],[-44.280868,-2.486869],[-44.286468,-2.487169],[-44.292068,-2.486969],[-44.296468,-2.486469],[-44.300068,-2.486369],[-44.303668,-2.487569],[-44.305868,-2.490469],[-44.307168,-2.493669],[-44.309168,-2.496569],[-44.312468,-2.498369],[-44.316068,-2.500569],[-44.319668,-2.502469],[-44.318868,-2.505269],[-44.315968,-2.506269],[-44.312368,-2.505169],[-44.310768,-2.508869],[-44.309068,-2.512969],[-44.307268,-2.516369],[-44.306968,-2.521769],[-44.306968,-2.526169],[-44.307968,-2.529769],[-44.307768,-2.534169],[-44.308268,-2.537069],[-44.310168,-2.539569],[-44.314068,-2.540569],[-44.317668,-2.539569],[-44.318868,-2.536169],[-44.319868,-2.533369],[-44.320468,-2.530169],[-44.321768,-2.527569],[-44.327068,-2.527869],[-44.334368,-2.529069],[-44.339768,-2.530369],[-44.344268,-2.529469],[-44.348068,-2.527269],[-44.349568,-2.530369],[-44.353068,-2.531769],[-44.355568,-2.533469],[-44.355568,-2.538169],[-44.356468,-2.541369],[-44.355268,-2.545069],[-44.355068,-2.548269],[-44.356068,-2.551069],[-44.358968,-2.555469],[-44.362568,-2.558369],[-44.365368,-2.559869],[-44.368268,-2.561669],[-44.371368,-2.562269],[-44.374368,-2.562969],[-44.377368,-2.565269],[-44.375768,-2.568869],[-44.370768,-2.572069],[-44.369368,-2.576069],[-44.368068,-2.581769],[-44.364768,-2.580969],[-44.362968,-2.584069],[-44.360568,-2.587869],[-44.357768,-2.595969],[-44.355668,-2.598869],[-44.354968,-2.602069],[-44.356768,-2.606469],[-44.357768,-2.612169],[-44.359268,-2.615369],[-44.360068,-2.619169],[-44.366868,-2.641869],[-44.367968,-2.647869],[-44.367968,-2.651169],[-44.369068,-2.655069],[-44.370768,-2.657869],[-44.371968,-2.660869],[-44.374768,-2.663369],[-44.378268,-2.666069],[-44.380168,-2.669769],[-44.380168,-2.673669],[-44.379068,-2.677869],[-44.379168,-2.682969],[-44.380168,-2.687469],[-44.381368,-2.690569],[-44.383468,-2.694569],[-44.384968,-2.697869],[-44.385368,-2.700769],[-44.386368,-2.705069],[-44.387468,-2.709369],[-44.388168,-2.712669],[-44.389268,-2.716269],[-44.391068,-2.720569],[-44.389568,-2.723969],[-44.387468,-2.727769],[-44.385468,-2.736069],[-44.385368,-2.740269],[-44.385768,-2.744369],[-44.386468,-2.749169],[-44.388568,-2.753769],[-44.390468,-2.756069],[-44.394068,-2.760169],[-44.397168,-2.763969],[-44.399068,-2.767369],[-44.401868,-2.769269],[-44.403468,-2.772269],[-44.404468,-2.775869],[-44.404768,-2.778769],[-44.405168,-2.781969],[-44.405868,-2.785969],[-44.407868,-2.790069],[-44.409268,-2.793869],[-44.408468,-2.798669],[-44.410268,-2.801369],[-44.409468,-2.805269],[-44.410068,-2.810169],[-44.409568,-2.815169],[-44.408968,-2.821269],[-44.408968,-2.826869],[-44.408368,-2.830669],[-44.407368,-2.836169],[-44.407368,-2.843369],[-44.407268,-2.847269],[-44.407268,-2.851669],[-44.407668,-2.857869],[-44.407068,-2.862169],[-44.406768,-2.865269],[-44.406968,-2.874069],[-44.406468,-2.878769],[-44.406168,-2.883469],[-44.406668,-2.887769],[-44.407068,-2.892069],[-44.407368,-2.895769],[-44.408368,-2.899869],[-44.409768,-2.905069],[-44.410968,-2.908169],[-44.411968,-2.911969],[-44.412868,-2.914769],[-44.414468,-2.918569],[-44.416768,-2.924469],[-44.421468,-2.934469],[-44.422568,-2.937969],[-44.424768,-2.943869],[-44.430768,-2.952169],[-44.433268,-2.955769],[-44.436268,-2.961869],[-44.438568,-2.964769],[-44.441868,-2.969569],[-44.448768,-2.980869],[-44.451068,-2.983869],[-44.453568,-2.987269],[-44.457568,-2.991369],[-44.463268,-2.997169],[-44.466968,-2.999869],[-44.472368,-3.005169],[-44.476668,-3.009269],[-44.490068,-3.021069],[-44.496568,-3.027669],[-44.506868,-3.032769],[-44.515068,-3.036969],[-44.519268,-3.038869],[-44.525368,-3.041169],[-44.532368,-3.043969],[-44.541068,-3.044469],[-44.548868,-3.045369],[-44.562668,-3.045269],[-44.574068,-3.044269],[-44.586768,-3.041669],[-44.591168,-3.041969],[-44.597068,-3.039969],[-44.603968,-3.037769],[-44.610868,-3.033369],[-44.613868,-3.030969],[-44.618368,-3.028369],[-44.621968,-3.026969],[-44.628068,-3.024869],[-44.633468,-3.023969],[-44.638168,-3.022869],[-44.642068,-3.021869],[-44.645968,-3.020369],[-44.650068,-3.018669],[-44.653368,-3.017469],[-44.658168,-3.015369],[-44.662468,-3.012869],[-44.666368,-3.009969],[-44.669568,-3.006769],[-44.671468,-3.004469],[-44.673368,-3.000269],[-44.675268,-2.996369],[-44.676168,-2.993269],[-44.676968,-2.989169],[-44.677868,-2.985069],[-44.678868,-2.981769],[-44.679368,-2.978869],[-44.679368,-2.974569],[-44.678868,-2.970569],[-44.678268,-2.967669],[-44.677568,-2.964469],[-44.676668,-2.960769],[-44.677168,-2.954969],[-44.679168,-2.948469],[-44.680268,-2.943869],[-44.680868,-2.939969],[-44.680768,-2.935469],[-44.680768,-2.928869],[-44.680068,-2.924769],[-44.679668,-2.919469],[-44.677568,-2.913169],[-44.674968,-2.908869],[-44.672468,-2.905969],[-44.670268,-2.904069],[-44.666668,-2.901569],[-44.662868,-2.900169],[-44.658968,-2.897369],[-44.655068,-2.895369],[-44.651468,-2.892169],[-44.648468,-2.888469],[-44.646468,-2.884669],[-44.642668,-2.876269],[-44.636868,-2.865769],[-44.634168,-2.860269],[-44.632768,-2.856069],[-44.632468,-2.852369],[-44.633268,-2.844169],[-44.635368,-2.838969],[-44.638168,-2.834869],[-44.640068,-2.830369],[-44.642068,-2.825969],[-44.643768,-2.821669],[-44.645668,-2.818169],[-44.647268,-2.815569],[-44.649368,-2.812469],[-44.651468,-2.806869],[-44.649068,-2.804169],[-44.648668,-2.796669],[-44.647968,-2.793369],[-44.646768,-2.789569],[-44.646168,-2.785169],[-44.645668,-2.782069],[-44.643568,-2.778369],[-44.641068,-2.775069],[-44.638968,-2.771769],[-44.636368,-2.766769],[-44.633468,-2.761069],[-44.632068,-2.757969],[-44.629968,-2.753569],[-44.626068,-2.745269],[-44.624068,-2.739769],[-44.623268,-2.735369],[-44.623068,-2.730269],[-44.623368,-2.724169],[-44.624368,-2.720569],[-44.625868,-2.713369],[-44.626568,-2.708469],[-44.626068,-2.702169],[-44.622168,-2.698569],[-44.618368,-2.695569],[-44.615568,-2.694869],[-44.611068,-2.691869],[-44.607868,-2.690269],[-44.604968,-2.686269],[-44.604268,-2.682969],[-44.603868,-2.679669],[-44.602268,-2.675869],[-44.600268,-2.671969],[-44.598768,-2.669269],[-44.597268,-2.666369],[-44.594068,-2.662869],[-44.590068,-2.660869],[-44.585368,-2.658069],[-44.583768,-2.654169],[-44.581768,-2.649069],[-44.580168,-2.645369],[-44.578168,-2.639969],[-44.576368,-2.635169],[-44.573268,-2.627769],[-44.571568,-2.623069],[-44.569368,-2.619469],[-44.563068,-2.610069],[-44.560168,-2.607169],[-44.557668,-2.604969],[-44.556568,-2.600269],[-44.554968,-2.595569],[-44.552968,-2.592369],[-44.551868,-2.589569],[-44.550768,-2.586869],[-44.549268,-2.580669],[-44.546468,-2.570669],[-44.544168,-2.564569],[-44.542568,-2.561869],[-44.541168,-2.558269],[-44.538968,-2.551969],[-44.537568,-2.547769],[-44.536968,-2.544669],[-44.537068,-2.540669],[-44.537068,-2.537269],[-44.536668,-2.534269],[-44.535868,-2.530869],[-44.534168,-2.527069],[-44.531268,-2.525669],[-44.527668,-2.525469],[-44.523968,-2.525469],[-44.520768,-2.527269],[-44.518168,-2.529469],[-44.514568,-2.533369],[-44.509968,-2.534269],[-44.505968,-2.530569],[-44.498868,-2.524769],[-44.495068,-2.521769],[-44.489768,-2.520469],[-44.487468,-2.516369],[-44.486468,-2.512669],[-44.485368,-2.509569],[-44.482568,-2.503569],[-44.481668,-2.499669],[-44.479468,-2.493369],[-44.477568,-2.487769],[-44.475568,-2.484369],[-44.473068,-2.481369],[-44.470568,-2.479169],[-44.465568,-2.476669],[-44.461568,-2.476969],[-44.460468,-2.479769],[-44.455668,-2.474169],[-44.450668,-2.467869],[-44.446768,-2.462669],[-44.444568,-2.459369],[-44.442968,-2.456769],[-44.444168,-2.453569],[-44.442968,-2.450469],[-44.444368,-2.446069],[-44.446268,-2.442469],[-44.448968,-2.439369],[-44.451768,-2.437669],[-44.455668,-2.435569],[-44.459068,-2.433769],[-44.467368,-2.431169],[-44.470568,-2.429469],[-44.473068,-2.428069],[-44.478468,-2.429669],[-44.484368,-2.431169],[-44.489668,-2.433269],[-44.493668,-2.434669],[-44.497168,-2.434469],[-44.499768,-2.430269],[-44.498368,-2.425869],[-44.495868,-2.422769],[-44.493268,-2.420369],[-44.488868,-2.416969],[-44.485268,-2.414569],[-44.479168,-2.411769],[-44.474268,-2.412569],[-44.471268,-2.412569],[-44.467568,-2.411969],[-44.463968,-2.410569],[-44.460468,-2.410669],[-44.457568,-2.411669],[-44.454668,-2.412569],[-44.451568,-2.412069],[-44.448168,-2.411969],[-44.444568,-2.413869],[-44.440768,-2.413869],[-44.439468,-2.410869],[-44.436068,-2.408469],[-44.431568,-2.408369],[-44.425068,-2.408469],[-44.420268,-2.409769],[-44.416468,-2.410869],[-44.413368,-2.411969],[-44.408668,-2.409469],[-44.405568,-2.412069],[-44.405568,-2.416769],[-44.401168,-2.414569],[-44.396868,-2.412369],[-44.392068,-2.409769],[-44.387668,-2.408369],[-44.385968,-2.405169],[-44.383268,-2.401969],[-44.381668,-2.398769],[-44.379968,-2.395669],[-44.378868,-2.392869],[-44.375968,-2.390669],[-44.374468,-2.387069],[-44.373068,-2.382069],[-44.372268,-2.377969],[-44.373268,-2.371069],[-44.374368,-2.367169],[-44.376868,-2.362169],[-44.379468,-2.359669],[-44.379168,-2.356169],[-44.374968,-2.355669],[-44.372268,-2.352869],[-44.370268,-2.350269],[-44.367668,-2.348469],[-44.364968,-2.347069],[-44.362868,-2.344869],[-44.361168,-2.341969],[-44.357868,-2.338769],[-44.358568,-2.334069],[-44.360368,-2.330469],[-44.361068,-2.327369],[-44.360668,-2.324369],[-44.361368,-2.320969],[-44.362868,-2.315469],[-44.364368,-2.310769],[-44.366068,-2.306969],[-44.368368,-2.301169],[-44.370768,-2.296069],[-44.372968,-2.291169],[-44.374368,-2.287269],[-44.375568,-2.284469],[-44.377068,-2.281469],[-44.379868,-2.278769],[-44.383568,-2.276969],[-44.386568,-2.276469],[-44.389668,-2.275069],[-44.385668,-2.273269],[-44.384968,-2.270469],[-44.384868,-2.267569],[-44.387768,-2.257769],[-44.389968,-2.249169],[-44.391068,-2.246069],[-44.392068,-2.242469],[-44.392868,-2.238969],[-44.393468,-2.235669],[-44.394768,-2.229669],[-44.395368,-2.225569],[-44.396568,-2.222869],[-44.400668,-2.221769],[-44.403168,-2.218369],[-44.400668,-2.216569],[-44.399468,-2.213669],[-44.403768,-2.208969],[-44.408068,-2.204669],[-44.410268,-2.201869],[-44.413068,-2.198469],[-44.417168,-2.192469],[-44.420368,-2.185469],[-44.422768,-2.181169],[-44.427568,-2.175469],[-44.429368,-2.172469],[-44.433368,-2.166369],[-44.437268,-2.164169],[-44.439868,-2.161969],[-44.444068,-2.158869],[-44.448168,-2.155169],[-44.451468,-2.152869],[-44.454668,-2.151569],[-44.458168,-2.150369],[-44.460868,-2.147269],[-44.463968,-2.145469],[-44.467368,-2.147669],[-44.469468,-2.150469],[-44.473468,-2.151769],[-44.477368,-2.150969],[-44.480668,-2.149069],[-44.484668,-2.146469],[-44.489868,-2.147069],[-44.494068,-2.148169],[-44.497668,-2.148469],[-44.500468,-2.149569],[-44.502968,-2.151569],[-44.507068,-2.152969],[-44.510768,-2.153669],[-44.515768,-2.154069],[-44.521268,-2.155169],[-44.526468,-2.157669],[-44.529868,-2.162069],[-44.528368,-2.165869],[-44.530168,-2.168869],[-44.531468,-2.172769],[-44.533768,-2.176469],[-44.537568,-2.180469],[-44.540268,-2.183769],[-44.539468,-2.189069],[-44.541368,-2.191569],[-44.544268,-2.195169],[-44.547768,-2.197369],[-44.550768,-2.198569],[-44.552468,-2.201569],[-44.556568,-2.201069],[-44.559468,-2.203269],[-44.560568,-2.207169],[-44.561668,-2.210369],[-44.571668,-2.219469],[-44.580168,-2.226969],[-44.583168,-2.228869],[-44.586868,-2.228469],[-44.587268,-2.231769],[-44.586968,-2.235369],[-44.587668,-2.239469],[-44.589868,-2.243269],[-44.592868,-2.244069],[-44.595968,-2.245769],[-44.597568,-2.248869],[-44.599568,-2.251069],[-44.602768,-2.251669],[-44.606068,-2.252969],[-44.609468,-2.254469],[-44.612168,-2.256369],[-44.614968,-2.257769],[-44.617768,-2.260969],[-44.620868,-2.264569],[-44.623268,-2.267669],[-44.624068,-2.270769],[-44.625568,-2.275069],[-44.624768,-2.279769],[-44.626068,-2.285969],[-44.627168,-2.290269],[-44.630668,-2.292469],[-44.634968,-2.294669],[-44.639668,-2.295769],[-44.644368,-2.296169],[-44.647568,-2.295869],[-44.650668,-2.295269],[-44.653768,-2.293869],[-44.656168,-2.290869],[-44.658068,-2.288469],[-44.661668,-2.287269],[-44.666468,-2.287769],[-44.671868,-2.286969],[-44.675068,-2.283369],[-44.677968,-2.280869],[-44.682268,-2.271269],[-44.683868,-2.267069],[-44.685168,-2.263569],[-44.685268,-2.260669],[-44.684868,-2.257769],[-44.682668,-2.255469],[-44.677568,-2.253769],[-44.674468,-2.252769],[-44.670768,-2.251969],[-44.666068,-2.250269],[-44.661268,-2.247969],[-44.657368,-2.245169],[-44.655168,-2.242469],[-44.652268,-2.238569],[-44.648668,-2.237169],[-44.645368,-2.236169],[-44.642168,-2.233969],[-44.638868,-2.231669],[-44.635468,-2.229269],[-44.632168,-2.225369],[-44.628468,-2.221969],[-44.625568,-2.217869],[-44.623768,-2.213969],[-44.620268,-2.210369],[-44.617468,-2.207869],[-44.616468,-2.205069],[-44.614368,-2.202069],[-44.611868,-2.198969],[-44.608668,-2.194369],[-44.605068,-2.192069],[-44.601668,-2.189969],[-44.598668,-2.185769],[-44.595568,-2.181869],[-44.592668,-2.177569],[-44.591268,-2.173569],[-44.587668,-2.166069],[-44.586768,-2.163069],[-44.586168,-2.159769],[-44.586568,-2.156769],[-44.587968,-2.154069],[-44.587568,-2.151169],[-44.583768,-2.147669],[-44.579968,-2.143969],[-44.582668,-2.141769],[-44.586568,-2.138469],[-44.588668,-2.135769],[-44.585968,-2.133869],[-44.581768,-2.132669],[-44.579868,-2.128569],[-44.577468,-2.126669],[-44.567768,-2.126369],[-44.566368,-2.118369],[-44.565468,-2.110269],[-44.562668,-2.107169],[-44.558768,-2.101669],[-44.555868,-2.098369],[-44.553868,-2.094469],[-44.553568,-2.091169],[-44.551368,-2.088669],[-44.547468,-2.090869],[-44.543168,-2.090069],[-44.538068,-2.086869],[-44.533768,-2.084069],[-44.528768,-2.078869],[-44.526568,-2.073869],[-44.522268,-2.072469],[-44.519268,-2.070769],[-44.516768,-2.068269],[-44.514568,-2.065269],[-44.511268,-2.062769],[-44.505968,-2.057969],[-44.503568,-2.055169],[-44.500168,-2.053569],[-44.498368,-2.051169],[-44.496168,-2.048569],[-44.492568,-2.048669],[-44.489968,-2.047469],[-44.486968,-2.044969],[-44.486068,-2.040969],[-44.489668,-2.040269],[-44.492468,-2.038469],[-44.495868,-2.031469],[-44.496368,-2.027869],[-44.497968,-2.025069],[-44.502168,-2.023769],[-44.505668,-2.026269],[-44.509868,-2.029169],[-44.513768,-2.031969],[-44.518468,-2.034569],[-44.522268,-2.034469],[-44.529468,-2.035069],[-44.533668,-2.035569],[-44.539168,-2.033369],[-44.543068,-2.030969],[-44.546368,-2.028169],[-44.550468,-2.026169],[-44.553868,-2.025069],[-44.557268,-2.024369],[-44.560868,-2.023769],[-44.564668,-2.022069],[-44.569668,-2.022569],[-44.572368,-2.025869],[-44.575968,-2.029869],[-44.579068,-2.029069],[-44.576368,-2.024869],[-44.573268,-2.020769],[-44.570268,-2.018169],[-44.566268,-2.016069],[-44.563068,-2.015369],[-44.559168,-2.016069],[-44.555768,-2.017169],[-44.551468,-2.017569],[-44.547568,-2.017869],[-44.544268,-2.017969],[-44.540568,-2.019369],[-44.535168,-2.019369],[-44.531268,-2.017469],[-44.526768,-2.015669],[-44.522568,-2.014269],[-44.518968,-2.013569],[-44.514368,-2.012069],[-44.509368,-2.009969],[-44.506068,-2.007069],[-44.503768,-2.004669],[-44.501868,-2.002469],[-44.497768,-1.999669],[-44.494068,-1.997669],[-44.490568,-1.993669],[-44.486668,-1.991169],[-44.483568,-1.989069],[-44.482768,-1.986069],[-44.486668,-1.982769],[-44.490868,-1.980869],[-44.491168,-1.977469],[-44.493668,-1.975269],[-44.495468,-1.972369],[-44.495768,-1.968769],[-44.499068,-1.966969],[-44.503568,-1.964769],[-44.508468,-1.961469],[-44.510968,-1.958269],[-44.508768,-1.956269],[-44.505568,-1.957669],[-44.503468,-1.959869],[-44.501068,-1.961469],[-44.497968,-1.962569],[-44.493568,-1.962969],[-44.490468,-1.959369],[-44.489468,-1.954369],[-44.490468,-1.948969],[-44.491868,-1.943469],[-44.493368,-1.939869],[-44.494768,-1.935769],[-44.496268,-1.932169],[-44.499668,-1.923869],[-44.508268,-1.900669],[-44.512668,-1.889069],[-44.514968,-1.884969],[-44.517668,-1.882169],[-44.520468,-1.880669],[-44.524268,-1.879469],[-44.529068,-1.879069],[-44.534468,-1.881669],[-44.535968,-1.884269],[-44.538068,-1.887669],[-44.542768,-1.889969],[-44.547768,-1.891069],[-44.551968,-1.887469],[-44.553568,-1.883869],[-44.552868,-1.880169],[-44.551868,-1.876669],[-44.549668,-1.874069],[-44.547768,-1.871169],[-44.545268,-1.866869],[-44.544168,-1.862569],[-44.541368,-1.857869],[-44.539868,-1.853969],[-44.539268,-1.849969],[-44.540968,-1.843769],[-44.541468,-1.839769],[-44.540368,-1.836569],[-44.538868,-1.833669],[-44.537768,-1.830969],[-44.535568,-1.827869],[-44.533468,-1.824869],[-44.534768,-1.822069],[-44.538868,-1.820569],[-44.541768,-1.819669],[-44.544768,-1.820469],[-44.547168,-1.823769],[-44.547768,-1.827669],[-44.548968,-1.831069],[-44.550068,-1.834069],[-44.551868,-1.837869],[-44.554768,-1.837669],[-44.555868,-1.833969],[-44.560268,-1.834269],[-44.563868,-1.835469],[-44.563068,-1.830669],[-44.565768,-1.828169],[-44.567368,-1.824569],[-44.565568,-1.820969],[-44.567668,-1.816869],[-44.566368,-1.813369],[-44.565168,-1.809969],[-44.563468,-1.806969],[-44.564568,-1.802569],[-44.567468,-1.799369],[-44.571568,-1.796169],[-44.576268,-1.795369],[-44.580168,-1.793469],[-44.583668,-1.791469],[-44.586468,-1.789169],[-44.589068,-1.785369],[-44.590168,-1.781569],[-44.587268,-1.779469],[-44.583768,-1.778369],[-44.580368,-1.777269],[-44.576568,-1.777269],[-44.573468,-1.776269],[-44.578768,-1.773669],[-44.582668,-1.772369],[-44.586868,-1.771069],[-44.592068,-1.768969],[-44.595368,-1.768169],[-44.598368,-1.768669],[-44.602468,-1.766269],[-44.606668,-1.767169],[-44.611068,-1.766069],[-44.614968,-1.763569],[-44.617168,-1.759969],[-44.614168,-1.757369],[-44.611368,-1.755569],[-44.606368,-1.751669],[-44.603368,-1.750269],[-44.599968,-1.747969],[-44.598468,-1.743669],[-44.601368,-1.739669],[-44.604968,-1.737469],[-44.607568,-1.734969],[-44.610368,-1.732769],[-44.613868,-1.730969],[-44.616568,-1.729669],[-44.620168,-1.727769],[-44.622668,-1.725969],[-44.625568,-1.724469],[-44.638168,-1.717869],[-44.642468,-1.716469],[-44.645768,-1.715669],[-44.648968,-1.715169],[-44.652368,-1.715469],[-44.656768,-1.718469],[-44.658468,-1.720969],[-44.657568,-1.723969],[-44.653768,-1.724869],[-44.651568,-1.727869],[-44.650068,-1.733969],[-44.649068,-1.737969],[-44.648368,-1.741169],[-44.652968,-1.741369],[-44.653368,-1.746369],[-44.652068,-1.750869],[-44.650768,-1.755169],[-44.647568,-1.759269],[-44.646768,-1.763569],[-44.650468,-1.763169],[-44.652968,-1.767169],[-44.654768,-1.770069],[-44.657668,-1.770669],[-44.662268,-1.770669],[-44.663868,-1.767869],[-44.666468,-1.765369],[-44.670068,-1.766369],[-44.673368,-1.767369],[-44.677968,-1.769069],[-44.681568,-1.771469],[-44.685568,-1.770769],[-44.688768,-1.771769],[-44.691568,-1.771169],[-44.694568,-1.770169],[-44.698568,-1.769069],[-44.702968,-1.769669],[-44.704368,-1.773469],[-44.706468,-1.776469],[-44.708668,-1.779769],[-44.710968,-1.784169],[-44.713768,-1.789569],[-44.716968,-1.789969],[-44.720268,-1.788369],[-44.720168,-1.785069],[-44.719768,-1.781169],[-44.723068,-1.780869],[-44.727468,-1.780869],[-44.731368,-1.781269],[-44.734968,-1.782669],[-44.738268,-1.784769],[-44.741068,-1.785869],[-44.745268,-1.786969],[-44.750168,-1.788169],[-44.754568,-1.789469],[-44.757768,-1.788669],[-44.759368,-1.785869],[-44.758068,-1.782369],[-44.754068,-1.780069],[-44.751868,-1.777269],[-44.749068,-1.774069],[-44.745768,-1.771169],[-44.741868,-1.767869],[-44.738268,-1.765069],[-44.735768,-1.763169],[-44.731468,-1.761069],[-44.727768,-1.759269],[-44.724968,-1.756069],[-44.723168,-1.752369],[-44.719768,-1.751269],[-44.717268,-1.749469],[-44.715168,-1.746569],[-44.713968,-1.742769],[-44.710968,-1.740269],[-44.708468,-1.736869],[-44.704668,-1.739369],[-44.702368,-1.737169],[-44.700268,-1.732569],[-44.700268,-1.727769],[-44.702568,-1.723469],[-44.705668,-1.720569],[-44.708668,-1.717869],[-44.712668,-1.714769],[-44.716168,-1.713969],[-44.718168,-1.716569],[-44.720268,-1.718769],[-44.723368,-1.721169],[-44.726668,-1.722069],[-44.731068,-1.721269],[-44.735368,-1.721669],[-44.738668,-1.721769],[-44.742268,-1.720969],[-44.746268,-1.719869],[-44.750468,-1.717969],[-44.754168,-1.717669],[-44.756868,-1.714769],[-44.759168,-1.711469],[-44.760968,-1.708269],[-44.763168,-1.705169],[-44.766768,-1.703469],[-44.770668,-1.703569],[-44.774068,-1.704569],[-44.776768,-1.705469],[-44.779068,-1.708469],[-44.778768,-1.711769],[-44.781668,-1.712869],[-44.786368,-1.710869],[-44.789768,-1.706769],[-44.794968,-1.705469],[-44.798368,-1.702969],[-44.795368,-1.702169],[-44.792868,-1.699269],[-44.789868,-1.694569],[-44.786768,-1.691969],[-44.783768,-1.690269],[-44.780968,-1.689069],[-44.779468,-1.685269],[-44.778368,-1.681669],[-44.774468,-1.679469],[-44.771468,-1.678269],[-44.767468,-1.676169],[-44.764268,-1.674669],[-44.760468,-1.674169],[-44.757368,-1.671669],[-44.753868,-1.668369],[-44.751968,-1.665269],[-44.749768,-1.662069],[-44.748368,-1.658669],[-44.746868,-1.655469],[-44.746868,-1.651269],[-44.744168,-1.652869],[-44.740568,-1.652869],[-44.737568,-1.650669],[-44.732468,-1.649569],[-44.727768,-1.648469],[-44.722368,-1.647969],[-44.716968,-1.647969],[-44.711768,-1.648169],[-44.708268,-1.647569],[-44.705368,-1.643769],[-44.702568,-1.645469],[-44.697168,-1.643769],[-44.692468,-1.642669],[-44.687668,-1.640969],[-44.684368,-1.642669],[-44.681668,-1.643969],[-44.677468,-1.642169],[-44.673868,-1.643969],[-44.671368,-1.646069],[-44.671668,-1.649069],[-44.670768,-1.653369],[-44.667468,-1.657869],[-44.664268,-1.659769],[-44.661268,-1.662069],[-44.658468,-1.659769],[-44.656768,-1.656269],[-44.653768,-1.649769],[-44.649868,-1.638969],[-44.643968,-1.628369],[-44.640068,-1.624369],[-44.637468,-1.620769],[-44.636368,-1.617269],[-44.638168,-1.614169],[-44.640668,-1.609969],[-44.642068,-1.607269],[-44.644268,-1.604269],[-44.647868,-1.601169],[-44.652368,-1.594169],[-44.654868,-1.590469],[-44.657068,-1.587669],[-44.661668,-1.583969],[-44.665868,-1.581169],[-44.668868,-1.578469],[-44.673268,-1.576569],[-44.675368,-1.573569],[-44.676568,-1.570469],[-44.679168,-1.567969],[-44.682468,-1.565969],[-44.686368,-1.565869],[-44.688368,-1.568469],[-44.689468,-1.571269],[-44.691668,-1.574669],[-44.695268,-1.580769],[-44.699868,-1.583169],[-44.703268,-1.583169],[-44.707568,-1.581269],[-44.709568,-1.578569],[-44.707868,-1.574969],[-44.706868,-1.571369],[-44.706868,-1.568469],[-44.706768,-1.565169],[-44.706168,-1.561569],[-44.705368,-1.558269],[-44.705368,-1.553969],[-44.707868,-1.551869],[-44.712268,-1.553269],[-44.715468,-1.554369],[-44.719268,-1.555469],[-44.723368,-1.556669],[-44.725268,-1.559369],[-44.728368,-1.564469],[-44.733968,-1.571269],[-44.739968,-1.576269],[-44.743068,-1.579369],[-44.748068,-1.581569],[-44.750968,-1.583169],[-44.755168,-1.587269],[-44.757668,-1.591169],[-44.762768,-1.594069],[-44.767068,-1.593969],[-44.768768,-1.590969],[-44.768268,-1.587669],[-44.767568,-1.583269],[-44.767868,-1.577869],[-44.768268,-1.572469],[-44.767868,-1.568569],[-44.767168,-1.563769],[-44.770368,-1.561869],[-44.772368,-1.564969],[-44.773668,-1.567769],[-44.775468,-1.572669],[-44.778068,-1.577669],[-44.781968,-1.579869],[-44.787768,-1.580769],[-44.792068,-1.581169],[-44.795768,-1.584369],[-44.799768,-1.587869],[-44.802868,-1.589269],[-44.806968,-1.588669],[-44.810768,-1.586869],[-44.814068,-1.583269],[-44.817368,-1.580769],[-44.819868,-1.578969],[-44.822668,-1.577369],[-44.826868,-1.575669],[-44.831868,-1.573269],[-44.835468,-1.573569],[-44.836568,-1.579069],[-44.836568,-1.583969],[-44.837268,-1.586969],[-44.837368,-1.591269],[-44.838668,-1.595369],[-44.839468,-1.598469],[-44.841268,-1.602369],[-44.842868,-1.604769],[-44.845568,-1.608669],[-44.848768,-1.611869],[-44.852768,-1.616169],[-44.855668,-1.618269],[-44.859968,-1.618369],[-44.863368,-1.614669],[-44.864968,-1.610369],[-44.866968,-1.607469],[-44.869068,-1.604169],[-44.871268,-1.601969],[-44.875168,-1.601669],[-44.879068,-1.601769],[-44.882968,-1.602269],[-44.886268,-1.603169],[-44.889668,-1.603569],[-44.893568,-1.604169],[-44.896568,-1.604969],[-44.899268,-1.606669],[-44.902368,-1.606669],[-44.905168,-1.604769],[-44.908468,-1.601969],[-44.910868,-1.598469],[-44.912068,-1.595569],[-44.912268,-1.591269],[-44.911368,-1.586569],[-44.910968,-1.581869],[-44.912368,-1.578169],[-44.914468,-1.574369],[-44.918068,-1.570969],[-44.917468,-1.565269],[-44.915068,-1.562369],[-44.913468,-1.559469],[-44.912468,-1.556669],[-44.912768,-1.552969],[-44.915068,-1.548669],[-44.916468,-1.543869],[-44.917468,-1.539869],[-44.913468,-1.540669],[-44.908068,-1.538469],[-44.903668,-1.537369],[-44.900368,-1.535569],[-44.898468,-1.531169],[-44.895468,-1.531969],[-44.897068,-1.528669],[-44.894268,-1.525069],[-44.893968,-1.521869],[-44.890768,-1.518669],[-44.890668,-1.514669],[-44.894568,-1.512469],[-44.892368,-1.509069],[-44.888168,-1.508169],[-44.884868,-1.506569],[-44.884068,-1.503769],[-44.881668,-1.500869],[-44.879068,-1.498069],[-44.877768,-1.494969],[-44.880168,-1.491169],[-44.876568,-1.489969],[-44.872668,-1.487969],[-44.874868,-1.484369],[-44.877768,-1.482869],[-44.881368,-1.481469],[-44.884568,-1.480569],[-44.883468,-1.477769],[-44.879068,-1.478469],[-44.874368,-1.480569],[-44.871568,-1.482169],[-44.868668,-1.483569],[-44.864968,-1.485369],[-44.860768,-1.486369],[-44.857868,-1.484969],[-44.854168,-1.484669],[-44.850968,-1.485869],[-44.847068,-1.487769],[-44.843468,-1.487869],[-44.843068,-1.483169],[-44.843468,-1.479169],[-44.841668,-1.470869],[-44.840168,-1.462269],[-44.838968,-1.456869],[-44.837868,-1.451069],[-44.836968,-1.447469],[-44.836168,-1.443769],[-44.835168,-1.440269],[-44.832868,-1.437269],[-44.830368,-1.433269],[-44.830668,-1.428269],[-44.834368,-1.424469],[-44.837568,-1.421369],[-44.841468,-1.418869],[-44.845868,-1.416169],[-44.849468,-1.414569],[-44.853868,-1.412569],[-44.857168,-1.411969],[-44.860068,-1.411369],[-44.862968,-1.412369],[-44.866568,-1.413669],[-44.870268,-1.414269],[-44.873368,-1.415269],[-44.876068,-1.416969],[-44.879968,-1.418469],[-44.883068,-1.419169],[-44.885268,-1.421669],[-44.881368,-1.424169],[-44.883768,-1.426169],[-44.883868,-1.429769],[-44.884168,-1.433869],[-44.885268,-1.437969],[-44.887468,-1.442369],[-44.892468,-1.442669],[-44.896268,-1.445169],[-44.898968,-1.446269],[-44.901568,-1.449569],[-44.906268,-1.452869],[-44.910168,-1.454969],[-44.911968,-1.457369],[-44.913368,-1.460069],[-44.916168,-1.460869],[-44.920368,-1.462969],[-44.922168,-1.467269],[-44.923568,-1.469869],[-44.926068,-1.472369],[-44.929668,-1.474869],[-44.933568,-1.477069],[-44.935568,-1.480269],[-44.935768,-1.483869],[-44.935768,-1.488269],[-44.939068,-1.490469],[-44.942368,-1.490269],[-44.946068,-1.490869],[-44.949868,-1.491169],[-44.953568,-1.491169],[-44.954568,-1.484769],[-44.949368,-1.482869],[-44.951568,-1.479669],[-44.954968,-1.477769],[-44.958168,-1.474469],[-44.962868,-1.474469],[-44.966168,-1.475569],[-44.969268,-1.478369],[-44.971368,-1.482469],[-44.972868,-1.485569],[-44.974168,-1.489069],[-44.974468,-1.495169],[-44.973868,-1.499169],[-44.972368,-1.503469],[-44.966968,-1.510669],[-44.963968,-1.512169],[-44.960168,-1.514069],[-44.956868,-1.518769],[-44.953468,-1.524269],[-44.951068,-1.529269],[-44.949268,-1.534769],[-44.948168,-1.538369],[-44.947968,-1.541669],[-44.948568,-1.548269],[-44.949268,-1.553069],[-44.951068,-1.557269],[-44.953568,-1.560169],[-44.957068,-1.560769],[-44.960168,-1.559469],[-44.962868,-1.557169],[-44.963268,-1.554069],[-44.961868,-1.551069],[-44.961168,-1.543369],[-44.962268,-1.539969],[-44.963668,-1.536169],[-44.966268,-1.532869],[-44.970668,-1.529469],[-44.975868,-1.527269],[-44.979768,-1.525069],[-44.982168,-1.527869],[-44.985068,-1.529469],[-44.989668,-1.530669],[-44.993668,-1.533069],[-44.996968,-1.534769],[-45.000868,-1.534869],[-45.005168,-1.533369],[-45.007768,-1.529869],[-45.008468,-1.524769],[-45.007068,-1.520769],[-45.003468,-1.519369],[-45.000168,-1.517869],[-44.996668,-1.516269],[-44.992268,-1.514369],[-44.990068,-1.511069],[-44.993068,-1.506769],[-44.994068,-1.502469],[-44.997168,-1.500469],[-44.999868,-1.498069],[-45.001268,-1.494469],[-45.002468,-1.491069],[-45.004368,-1.488369],[-45.006668,-1.486169],[-45.011068,-1.485769],[-45.014868,-1.485369],[-45.018168,-1.487269],[-45.020468,-1.491069],[-45.023968,-1.491369],[-45.028768,-1.492469],[-45.033468,-1.491869],[-45.038668,-1.490569],[-45.042768,-1.491069],[-45.046168,-1.490769],[-45.049768,-1.488569],[-45.052868,-1.486769],[-45.056068,-1.483369],[-45.061268,-1.482469],[-45.064968,-1.482769],[-45.069568,-1.480169],[-45.070168,-1.474569],[-45.070268,-1.470369],[-45.070968,-1.467569],[-45.079068,-1.460369],[-45.084268,-1.458269],[-45.087968,-1.457169],[-45.091268,-1.456269],[-45.095868,-1.455969],[-45.097568,-1.459869],[-45.098968,-1.462569],[-45.100068,-1.467569],[-45.102368,-1.471969],[-45.106668,-1.474469],[-45.110268,-1.475269],[-45.115868,-1.476169],[-45.120068,-1.476369],[-45.122968,-1.476969],[-45.126068,-1.478969],[-45.129068,-1.480669],[-45.131668,-1.483969],[-45.135968,-1.484969],[-45.140468,-1.483969],[-45.143768,-1.481769],[-45.145668,-1.477569],[-45.148168,-1.473769],[-45.150368,-1.470969],[-45.153668,-1.470869],[-45.156968,-1.473369],[-45.160268,-1.477469],[-45.162868,-1.482069],[-45.165668,-1.485369],[-45.166468,-1.488569],[-45.169968,-1.491869],[-45.173568,-1.494169],[-45.177768,-1.495769],[-45.181968,-1.495769],[-45.184868,-1.495269],[-45.187668,-1.493869],[-45.191268,-1.488969],[-45.196768,-1.488269],[-45.199868,-1.491869],[-45.201768,-1.495769],[-45.202168,-1.499669],[-45.203168,-1.505969],[-45.203468,-1.510369],[-45.203968,-1.513969],[-45.205468,-1.518469],[-45.207268,-1.521069],[-45.211168,-1.525469],[-45.212068,-1.528369],[-45.212968,-1.531769],[-45.215568,-1.534169],[-45.217368,-1.536669],[-45.219868,-1.538169],[-45.222268,-1.540669],[-45.225368,-1.542469],[-45.227868,-1.544569],[-45.231068,-1.547169],[-45.232468,-1.551069],[-45.234968,-1.554369],[-45.236368,-1.557969],[-45.236368,-1.561669],[-45.239968,-1.564069],[-45.241668,-1.567969],[-45.242268,-1.570969],[-45.243868,-1.573469],[-45.246868,-1.576369],[-45.248868,-1.581169],[-45.249368,-1.585969],[-45.251668,-1.588969],[-45.254168,-1.591569],[-45.257968,-1.594169],[-45.260968,-1.595969],[-45.263868,-1.597569],[-45.269068,-1.598469],[-45.272968,-1.598669],[-45.277568,-1.598669],[-45.285868,-1.598069],[-45.290268,-1.598069],[-45.293668,-1.598469],[-45.297168,-1.599169],[-45.301868,-1.599469],[-45.306168,-1.599469],[-45.310568,-1.599469],[-45.316368,-1.598469],[-45.321268,-1.597769],[-45.325668,-1.596369],[-45.329668,-1.595369],[-45.334768,-1.594269],[-45.337868,-1.593669],[-45.342068,-1.590169],[-45.343368,-1.586769],[-45.341768,-1.582869],[-45.340568,-1.578469],[-45.338368,-1.575469],[-45.336968,-1.572369],[-45.336268,-1.568569],[-45.334668,-1.565169],[-45.330368,-1.562369],[-45.323868,-1.560169],[-45.319568,-1.557169],[-45.318468,-1.553869],[-45.319368,-1.549369],[-45.321568,-1.545369],[-45.320468,-1.542469],[-45.315968,-1.533869],[-45.315568,-1.528369],[-45.315568,-1.522169],[-45.314868,-1.517869],[-45.313368,-1.514669],[-45.310768,-1.512069],[-45.308768,-1.507769],[-45.308568,-1.503769],[-45.308268,-1.497969],[-45.311268,-1.492669],[-45.314368,-1.489169],[-45.316668,-1.486069],[-45.320668,-1.483269],[-45.323768,-1.481769],[-45.328268,-1.480369],[-45.330968,-1.479269],[-45.337668,-1.477569],[-45.340368,-1.478669],[-45.343668,-1.480269],[-45.347368,-1.478969],[-45.350268,-1.476669],[-45.351768,-1.473969],[-45.356168,-1.471769],[-45.361168,-1.472869],[-45.364968,-1.473469],[-45.368268,-1.473369],[-45.371568,-1.474169],[-45.374768,-1.476269],[-45.378068,-1.478069],[-45.381768,-1.478869],[-45.384968,-1.478169],[-45.387968,-1.475869],[-45.388168,-1.472269],[-45.384368,-1.467569],[-45.379568,-1.464669],[-45.374968,-1.462069],[-45.372268,-1.460869],[-45.368068,-1.459569],[-45.364168,-1.457969],[-45.360568,-1.456869],[-45.356368,-1.455469],[-45.351668,-1.453169],[-45.345968,-1.451069],[-45.342568,-1.450369],[-45.338968,-1.450169],[-45.335468,-1.449269],[-45.332068,-1.447969],[-45.327168,-1.446269],[-45.322068,-1.443769],[-45.317368,-1.441669],[-45.313068,-1.439069],[-45.308868,-1.437969],[-45.302168,-1.438769],[-45.299468,-1.435569],[-45.298968,-1.432769],[-45.298668,-1.429369],[-45.298568,-1.425469],[-45.298268,-1.422469],[-45.297868,-1.416169],[-45.297868,-1.413069],[-45.298168,-1.408469],[-45.298668,-1.403369],[-45.299668,-1.398369],[-45.300768,-1.393969],[-45.301868,-1.389669],[-45.303068,-1.385969],[-45.306868,-1.384969],[-45.309768,-1.383469],[-45.312268,-1.381569],[-45.313268,-1.377369],[-45.313368,-1.373069],[-45.310568,-1.370569],[-45.308268,-1.367469],[-45.307468,-1.362469],[-45.306968,-1.357469],[-45.305868,-1.352069],[-45.305868,-1.348469],[-45.307968,-1.344869],[-45.310468,-1.342569],[-45.310768,-1.339369],[-45.305868,-1.337969],[-45.306168,-1.335069],[-45.309368,-1.332169],[-45.318768,-1.325469],[-45.326768,-1.320469],[-45.332268,-1.317669],[-45.338368,-1.314869],[-45.342668,-1.313569],[-45.347568,-1.312669],[-45.352068,-1.313369],[-45.356668,-1.315469],[-45.361168,-1.318069],[-45.364468,-1.322069],[-45.366168,-1.325469],[-45.364968,-1.328569],[-45.359668,-1.330469],[-45.356468,-1.331769],[-45.354168,-1.335169],[-45.351368,-1.339069],[-45.348668,-1.342069],[-45.346168,-1.344169],[-45.345368,-1.347569],[-45.349268,-1.346969],[-45.352868,-1.345969],[-45.356668,-1.346669],[-45.358068,-1.349869],[-45.360368,-1.353169],[-45.361068,-1.357769],[-45.362968,-1.360669],[-45.366068,-1.362169],[-45.369368,-1.363269],[-45.371968,-1.364669],[-45.375868,-1.366369],[-45.376368,-1.370269],[-45.376268,-1.374869],[-45.375468,-1.378869],[-45.370868,-1.380669],[-45.374368,-1.383769],[-45.372368,-1.388469],[-45.376868,-1.387369],[-45.378568,-1.390669],[-45.377168,-1.393569],[-45.374168,-1.394369],[-45.371568,-1.396069],[-45.374768,-1.399069],[-45.377668,-1.401469],[-45.381368,-1.403169],[-45.384668,-1.404469],[-45.387968,-1.408069],[-45.390168,-1.412269],[-45.392668,-1.414169],[-45.396168,-1.414469],[-45.402568,-1.419169],[-45.407368,-1.421769],[-45.412068,-1.423169],[-45.415868,-1.423369],[-45.419168,-1.422469],[-45.420868,-1.419969],[-45.424468,-1.419269],[-45.427468,-1.422469],[-45.429968,-1.424669],[-45.433368,-1.428069],[-45.436668,-1.430069],[-45.439168,-1.434069],[-45.440568,-1.437769],[-45.441968,-1.440769],[-45.443168,-1.443469],[-45.445568,-1.448169],[-45.449068,-1.452069],[-45.454868,-1.452969],[-45.456868,-1.455669],[-45.456468,-1.458569],[-45.456568,-1.462569],[-45.457868,-1.468069],[-45.459768,-1.471669],[-45.462368,-1.474469],[-45.465468,-1.477569],[-45.470368,-1.479169],[-45.475268,-1.479669],[-45.478368,-1.479669],[-45.481668,-1.478869],[-45.484468,-1.477369],[-45.486968,-1.474469],[-45.488668,-1.470569],[-45.486768,-1.466169],[-45.484968,-1.462569],[-45.481368,-1.459369],[-45.480568,-1.453769],[-45.480668,-1.450269],[-45.482568,-1.447069],[-45.485568,-1.444669],[-45.487168,-1.442069],[-45.486368,-1.439169],[-45.484468,-1.436969],[-45.484368,-1.433669],[-45.483368,-1.429669],[-45.482268,-1.425369],[-45.482468,-1.421069],[-45.485268,-1.419169],[-45.484168,-1.413469],[-45.483568,-1.409169],[-45.482468,-1.405969],[-45.480668,-1.402269],[-45.478568,-1.397869],[-45.477468,-1.392969],[-45.477768,-1.387369],[-45.477068,-1.381769],[-45.476468,-1.377669],[-45.474968,-1.373369],[-45.471168,-1.370069],[-45.467968,-1.367769],[-45.464768,-1.366069],[-45.460468,-1.365769],[-45.456468,-1.365369],[-45.453468,-1.367669],[-45.449168,-1.367069],[-45.445168,-1.363869],[-45.442368,-1.362769],[-45.439968,-1.360269],[-45.437668,-1.357069],[-45.435168,-1.354969],[-45.433068,-1.352069],[-45.429368,-1.354269],[-45.424668,-1.353469],[-45.420768,-1.351669],[-45.416468,-1.346669],[-45.414268,-1.343769],[-45.413068,-1.340969],[-45.410968,-1.336169],[-45.409468,-1.332669],[-45.408368,-1.328869],[-45.407368,-1.324669],[-45.407368,-1.321569],[-45.407268,-1.316569],[-45.407768,-1.312369],[-45.408068,-1.308769],[-45.408468,-1.305869],[-45.410568,-1.301369],[-45.413468,-1.297869],[-45.416668,-1.295769],[-45.419468,-1.294969],[-45.422868,-1.294569],[-45.428068,-1.293969],[-45.431868,-1.293369],[-45.435168,-1.293069],[-45.439168,-1.292769],[-45.443868,-1.292569],[-45.448268,-1.293169],[-45.452668,-1.294769],[-45.456468,-1.296969],[-45.458768,-1.298969],[-45.460768,-1.301169],[-45.461268,-1.303969],[-45.459568,-1.306669],[-45.455168,-1.308569],[-45.451368,-1.309369],[-45.447168,-1.310169],[-45.449668,-1.315169],[-45.453268,-1.316869],[-45.456768,-1.318569],[-45.460968,-1.317469],[-45.465468,-1.319069],[-45.468668,-1.320969],[-45.472368,-1.322469],[-45.475968,-1.325469],[-45.477268,-1.330369],[-45.477068,-1.335469],[-45.479268,-1.337869],[-45.481668,-1.339569],[-45.484268,-1.342669],[-45.486668,-1.344469],[-45.491168,-1.346969],[-45.495768,-1.353869],[-45.495768,-1.350269],[-45.496968,-1.347369],[-45.499368,-1.350969],[-45.500568,-1.353969],[-45.498268,-1.357469],[-45.498268,-1.360869],[-45.500568,-1.364369],[-45.501668,-1.368269],[-45.502068,-1.372369],[-45.504068,-1.376369],[-45.508068,-1.377969],[-45.512768,-1.377969],[-45.517068,-1.376269],[-45.519868,-1.372469],[-45.522068,-1.369669],[-45.523768,-1.367169],[-45.525468,-1.363669],[-45.526468,-1.357569],[-45.525368,-1.353169],[-45.524068,-1.347269],[-45.523968,-1.343469],[-45.522168,-1.336469],[-45.521168,-1.332569],[-45.520068,-1.329369],[-45.519368,-1.324969],[-45.519068,-1.319569],[-45.517368,-1.316669],[-45.515468,-1.311269],[-45.515368,-1.306969],[-45.517168,-1.303269],[-45.520068,-1.301069],[-45.523368,-1.302269],[-45.525468,-1.306169],[-45.528468,-1.308569],[-45.531968,-1.309069],[-45.535068,-1.308369],[-45.538468,-1.305869],[-45.541668,-1.303369],[-45.545268,-1.300769],[-45.546868,-1.296369],[-45.546468,-1.287069],[-45.547568,-1.283969],[-45.548268,-1.281169],[-45.549368,-1.276769],[-45.552168,-1.277869],[-45.554768,-1.281169],[-45.559068,-1.283969],[-45.563768,-1.285669],[-45.568468,-1.286669],[-45.574068,-1.287469],[-45.576868,-1.290669],[-45.579568,-1.293669],[-45.582368,-1.295569],[-45.587368,-1.298069],[-45.590368,-1.299769],[-45.592068,-1.302469],[-45.598368,-1.298569],[-45.596268,-1.294669],[-45.592268,-1.289769],[-45.589768,-1.286669],[-45.587268,-1.283469],[-45.585668,-1.279869],[-45.585068,-1.275769],[-45.585868,-1.272269],[-45.587968,-1.270069],[-45.591668,-1.268269],[-45.594768,-1.267369],[-45.597268,-1.268769],[-45.600268,-1.270769],[-45.604168,-1.272269],[-45.606968,-1.273169],[-45.612168,-1.274869],[-45.617168,-1.276969],[-45.621368,-1.279869],[-45.624368,-1.282369],[-45.628868,-1.283769],[-45.633468,-1.282669],[-45.637368,-1.280569],[-45.639668,-1.277969],[-45.640768,-1.275069],[-45.641768,-1.272269],[-45.641468,-1.269269],[-45.637668,-1.264069],[-45.635268,-1.258169],[-45.635768,-1.254969],[-45.633868,-1.251269],[-45.633468,-1.246569],[-45.633868,-1.243669],[-45.634968,-1.239969],[-45.637468,-1.236169],[-45.641468,-1.232269],[-45.643168,-1.229969],[-45.643768,-1.225969],[-45.643168,-1.221769],[-45.641068,-1.217269],[-45.640068,-1.212869],[-45.639568,-1.208269],[-45.638168,-1.204269],[-45.637868,-1.199969],[-45.637468,-1.196269],[-45.636368,-1.192469],[-45.634568,-1.189669],[-45.631368,-1.186969],[-45.627168,-1.184769],[-45.622168,-1.182669],[-45.618668,-1.180869],[-45.616568,-1.177469],[-45.615568,-1.173869],[-45.614968,-1.170269],[-45.614068,-1.166769],[-45.613568,-1.162869],[-45.613568,-1.159269],[-45.614368,-1.155869],[-45.615768,-1.150969],[-45.617168,-1.147369],[-45.617768,-1.143169],[-45.617968,-1.138169],[-45.618668,-1.135169],[-45.621668,-1.131869],[-45.624768,-1.127969],[-45.627968,-1.124969],[-45.630968,-1.124469],[-45.629568,-1.127969],[-45.627768,-1.130669],[-45.628468,-1.133869],[-45.629168,-1.137169],[-45.630268,-1.140969],[-45.632668,-1.145169],[-45.634568,-1.148369],[-45.634868,-1.152669],[-45.636268,-1.157669],[-45.637068,-1.161369],[-45.637368,-1.165869],[-45.638568,-1.169969],[-45.640368,-1.172769],[-45.642068,-1.176069],[-45.643168,-1.180469],[-45.644768,-1.187969],[-45.646168,-1.195769],[-45.647368,-1.203569],[-45.647968,-1.209069],[-45.648268,-1.214569],[-45.647568,-1.222269],[-45.646768,-1.226969],[-45.646568,-1.232569],[-45.647868,-1.236369],[-45.649868,-1.239669],[-45.654768,-1.241469],[-45.657668,-1.245869],[-45.663968,-1.253769],[-45.666668,-1.255269],[-45.669568,-1.258469],[-45.673368,-1.261769],[-45.676468,-1.263969],[-45.680268,-1.265769],[-45.683868,-1.269069],[-45.686868,-1.272269],[-45.690968,-1.273669],[-45.695968,-1.273169],[-45.699668,-1.272569],[-45.702968,-1.271269],[-45.706468,-1.270069],[-45.708768,-1.267969],[-45.711168,-1.265669],[-45.713368,-1.262869],[-45.716268,-1.260169],[-45.719468,-1.256369],[-45.721768,-1.252669],[-45.723668,-1.249469],[-45.724968,-1.246569],[-45.726668,-1.241069],[-45.727268,-1.236769],[-45.730568,-1.235569],[-45.733968,-1.235069],[-45.735068,-1.231969],[-45.735768,-1.228669],[-45.737168,-1.222869],[-45.737168,-1.219569],[-45.735368,-1.215669],[-45.735368,-1.211469],[-45.735668,-1.207369],[-45.733968,-1.203569],[-45.732568,-1.200669],[-45.728668,-1.194869],[-45.726768,-1.192069],[-45.725268,-1.189169],[-45.722568,-1.185569],[-45.719268,-1.182269],[-45.716668,-1.178569],[-45.714268,-1.175069],[-45.711568,-1.172569],[-45.707968,-1.169269],[-45.705368,-1.165269],[-45.702468,-1.162769],[-45.699868,-1.161369],[-45.698768,-1.158469],[-45.696768,-1.155069],[-45.692368,-1.151769],[-45.690968,-1.146569],[-45.692068,-1.141569],[-45.694068,-1.138169],[-45.696268,-1.135469],[-45.698468,-1.133269],[-45.701568,-1.130969],[-45.704668,-1.128069],[-45.707668,-1.125169],[-45.709868,-1.123069],[-45.713268,-1.119169],[-45.717068,-1.117169],[-45.718968,-1.114369],[-45.720268,-1.110769],[-45.724868,-1.110369],[-45.726968,-1.113569],[-45.726968,-1.117169],[-45.726668,-1.120069],[-45.724868,-1.123569],[-45.724768,-1.128769],[-45.728868,-1.128869],[-45.731368,-1.130469],[-45.730268,-1.134969],[-45.734468,-1.136869],[-45.739068,-1.138469],[-45.742268,-1.141369],[-45.742968,-1.146069],[-45.744368,-1.152269],[-45.746668,-1.154569],[-45.748868,-1.158369],[-45.749468,-1.163169],[-45.752068,-1.165869],[-45.755968,-1.166769],[-45.757368,-1.171869],[-45.759168,-1.175369],[-45.759868,-1.180069],[-45.758868,-1.184369],[-45.761768,-1.188769],[-45.763568,-1.191969],[-45.764668,-1.195169],[-45.767868,-1.198469],[-45.771868,-1.198169],[-45.777668,-1.197469],[-45.781268,-1.193869],[-45.784468,-1.190269],[-45.788468,-1.187669],[-45.792568,-1.185469],[-45.795768,-1.183069],[-45.798968,-1.180469],[-45.799968,-1.177569],[-45.800768,-1.174169],[-45.801868,-1.169969],[-45.800868,-1.166369],[-45.802268,-1.161769],[-45.806568,-1.163169],[-45.809468,-1.164269],[-45.814368,-1.164569],[-45.817968,-1.166669],[-45.821368,-1.169969],[-45.825668,-1.174369],[-45.828968,-1.176869],[-45.829268,-1.181169],[-45.830668,-1.187169],[-45.829568,-1.191569],[-45.827968,-1.194869],[-45.826068,-1.197969],[-45.825668,-1.201869],[-45.830668,-1.205769],[-45.834268,-1.203969],[-45.838668,-1.201269],[-45.840868,-1.204869],[-45.841568,-1.208269],[-45.843668,-1.211769],[-45.846668,-1.213469],[-45.850068,-1.213769],[-45.856468,-1.213969],[-45.860568,-1.213469],[-45.864368,-1.211169],[-45.866868,-1.207969],[-45.868268,-1.203869],[-45.867968,-1.200469],[-45.865068,-1.197069],[-45.863668,-1.192369],[-45.862768,-1.187969],[-45.862468,-1.184969],[-45.862968,-1.181369],[-45.866668,-1.183569],[-45.869668,-1.186369],[-45.871068,-1.189469],[-45.874368,-1.191869],[-45.874468,-1.187669],[-45.872968,-1.183869],[-45.870268,-1.179969],[-45.868668,-1.174769],[-45.869768,-1.171369],[-45.874968,-1.171469],[-45.879868,-1.173969],[-45.883268,-1.176569],[-45.883068,-1.172869],[-45.882168,-1.168869],[-45.880468,-1.164869],[-45.877468,-1.161669],[-45.874468,-1.158669],[-45.872468,-1.155869],[-45.871668,-1.152969],[-45.875468,-1.149569],[-45.879468,-1.148469],[-45.882368,-1.149069],[-45.884868,-1.150869],[-45.887668,-1.153969],[-45.889968,-1.155969],[-45.893168,-1.158669],[-45.897368,-1.163469],[-45.900868,-1.168169],[-45.906768,-1.171069],[-45.911268,-1.165669],[-45.909168,-1.163369],[-45.906768,-1.159869],[-45.904768,-1.156269],[-45.901568,-1.152569],[-45.899568,-1.149769],[-45.896468,-1.147969],[-45.892968,-1.146269],[-45.889568,-1.145469],[-45.886568,-1.143269],[-45.883268,-1.141069],[-45.880468,-1.137769],[-45.878068,-1.134069],[-45.874368,-1.133869],[-45.870068,-1.133069],[-45.865468,-1.130969],[-45.863668,-1.125569],[-45.865068,-1.121569],[-45.867768,-1.118869],[-45.865768,-1.115069],[-45.864468,-1.108569],[-45.862168,-1.106369],[-45.858868,-1.104969],[-45.854968,-1.103169],[-45.849768,-1.100669],[-45.848068,-1.097069],[-45.847268,-1.092869],[-45.845868,-1.089469],[-45.844468,-1.086169],[-45.843468,-1.081769],[-45.843668,-1.078569],[-45.843768,-1.075669],[-45.844268,-1.072469],[-45.844868,-1.069269],[-45.845968,-1.066369],[-45.847868,-1.062169],[-45.849768,-1.058269],[-45.852468,-1.054669],[-45.854968,-1.051969],[-45.858068,-1.050469],[-45.861368,-1.049669],[-45.864668,-1.049469],[-45.867568,-1.050069],[-45.871668,-1.053669],[-45.872168,-1.059369],[-45.874168,-1.063069],[-45.875968,-1.067669],[-45.873768,-1.070169],[-45.871068,-1.072169],[-45.873268,-1.075669],[-45.877968,-1.076269],[-45.882768,-1.078169],[-45.886068,-1.080969],[-45.887768,-1.083969],[-45.889268,-1.086769],[-45.890768,-1.089769],[-45.891768,-1.093169],[-45.894368,-1.096669],[-45.895968,-1.100269],[-45.895768,-1.104269],[-45.894868,-1.107569],[-45.895168,-1.111369],[-45.896168,-1.115269],[-45.898968,-1.118669],[-45.902868,-1.121869],[-45.904868,-1.126269],[-45.906468,-1.130169],[-45.907668,-1.133169],[-45.909468,-1.136069],[-45.911268,-1.139669],[-45.913168,-1.142669],[-45.915968,-1.146769],[-45.918968,-1.151969],[-45.923968,-1.160369],[-45.930168,-1.171069],[-45.935168,-1.177469],[-45.938368,-1.181669],[-45.939868,-1.184369],[-45.941268,-1.187369],[-45.942768,-1.189869],[-45.944668,-1.193269],[-45.946368,-1.196569],[-45.945568,-1.200669],[-45.948268,-1.202669],[-45.952868,-1.202469],[-45.954668,-1.199669],[-45.957168,-1.195969],[-45.956568,-1.192069],[-45.953568,-1.188069],[-45.953968,-1.182969],[-45.956868,-1.185469],[-45.957968,-1.178869],[-45.958168,-1.174369],[-45.956768,-1.171469],[-45.954968,-1.166969],[-45.954868,-1.162269],[-45.958768,-1.159869],[-45.957668,-1.155869],[-45.955468,-1.151969],[-45.953768,-1.147869],[-45.951868,-1.143669],[-45.953268,-1.140369],[-45.957568,-1.140769],[-45.961768,-1.140769],[-45.964468,-1.138169],[-45.964268,-1.134869],[-45.961568,-1.130469],[-45.960368,-1.125269],[-45.962268,-1.122669],[-45.960968,-1.118069],[-45.961468,-1.112469],[-45.963668,-1.109669],[-45.968168,-1.108669],[-45.970868,-1.110269],[-45.974768,-1.112569],[-45.978168,-1.115469],[-45.981468,-1.115069],[-45.982868,-1.111369],[-45.981768,-1.106469],[-45.982168,-1.102769],[-45.981068,-1.099769],[-45.978368,-1.095569],[-45.974868,-1.092569],[-45.971268,-1.091169],[-45.968168,-1.088269],[-45.968368,-1.084369],[-45.968668,-1.081269],[-45.969768,-1.077369],[-45.972268,-1.073169],[-45.974568,-1.070969],[-45.975668,-1.067969],[-45.978168,-1.065169],[-45.983268,-1.065569],[-45.981768,-1.062969],[-45.979268,-1.061369],[-45.976368,-1.060869],[-45.973968,-1.062369],[-45.970668,-1.064869],[-45.967068,-1.063769],[-45.964868,-1.060469],[-45.964568,-1.056869],[-45.966468,-1.054369],[-45.968768,-1.052569],[-45.972568,-1.050569],[-45.977068,-1.049469],[-45.981068,-1.049469],[-45.987168,-1.050069],[-45.991168,-1.051469],[-45.994068,-1.052569],[-45.996568,-1.055169],[-45.998068,-1.058269],[-45.997768,-1.061569],[-45.996968,-1.065469],[-45.999368,-1.068769],[-46.002368,-1.072469],[-46.002968,-1.076069],[-46.006668,-1.079069],[-46.011868,-1.080069],[-46.016268,-1.079269],[-46.020668,-1.083269],[-46.021768,-1.085969],[-46.022968,-1.088969],[-46.024068,-1.092569],[-46.026568,-1.096369],[-46.028968,-1.098469],[-46.031268,-1.101169],[-46.033968,-1.104769],[-46.036768,-1.109969],[-46.040368,-1.112469],[-46.041968,-1.115869],[-46.046068,-1.121069],[-46.045868,-1.124969],[-46.042768,-1.130569],[-46.042168,-1.133569],[-46.042268,-1.140369],[-46.044268,-1.149769],[-46.043968,-1.153369],[-46.038168,-1.164169],[-46.037368,-1.167269],[-46.037268,-1.170369],[-46.039268,-1.173369],[-46.040368,-1.169769],[-46.043068,-1.165869],[-46.045068,-1.161469],[-46.048968,-1.150069],[-46.048968,-1.142869],[-46.051068,-1.140469],[-46.052468,-1.135969],[-46.053668,-1.131369],[-46.057568,-1.132369],[-46.060768,-1.136069],[-46.062668,-1.141769],[-46.064668,-1.144269],[-46.065568,-1.147969],[-46.065268,-1.154769],[-46.066968,-1.160569],[-46.068868,-1.151169],[-46.072968,-1.155969],[-46.074968,-1.160969],[-46.076268,-1.166969],[-46.076568,-1.170669],[-46.074968,-1.185269],[-46.074968,-1.189369],[-46.077068,-1.196269],[-46.081168,-1.196869],[-46.085368,-1.196769],[-46.087868,-1.198269],[-46.092568,-1.201469],[-46.103968,-1.202069],[-46.098068,-1.195969],[-46.093368,-1.180769],[-46.087568,-1.158369],[-46.087068,-1.134369],[-46.081768,-1.126569],[-46.080068,-1.121969],[-46.075768,-1.115569],[-46.063568,-1.105869],[-46.061368,-1.100969],[-46.062268,-1.095969],[-46.063768,-1.091969],[-46.064568,-1.089069],[-46.065968,-1.086169],[-46.068068,-1.084269],[-46.069568,-1.081769],[-46.071368,-1.078569],[-46.074568,-1.074569],[-46.077068,-1.070569],[-46.079668,-1.066969],[-46.081868,-1.064869],[-46.080768,-1.062169],[-46.081568,-1.059369],[-46.085468,-1.059469],[-46.089268,-1.061069],[-46.092668,-1.059769],[-46.093668,-1.056869],[-46.093168,-1.053869],[-46.089868,-1.049969],[-46.085768,-1.048269],[-46.082068,-1.047569],[-46.078268,-1.047269],[-46.074368,-1.046869],[-46.072068,-1.044269],[-46.071268,-1.040669],[-46.069868,-1.037069],[-46.070968,-1.033369],[-46.073268,-1.030069],[-46.076268,-1.026169],[-46.080368,-1.022869],[-46.084668,-1.020769],[-46.087568,-1.019869],[-46.090868,-1.019769],[-46.094868,-1.021069],[-46.099168,-1.024269],[-46.101968,-1.027869],[-46.104468,-1.031169],[-46.107768,-1.033369],[-46.110268,-1.036369],[-46.109668,-1.039569],[-46.113268,-1.038169],[-46.116368,-1.038169],[-46.119468,-1.039169],[-46.123768,-1.040969],[-46.127068,-1.044569],[-46.130568,-1.047169],[-46.134368,-1.051369],[-46.137168,-1.053869],[-46.140368,-1.057169],[-46.143968,-1.063069],[-46.146768,-1.068469],[-46.148268,-1.071669],[-46.149468,-1.075969],[-46.150368,-1.079969],[-46.150368,-1.084669],[-46.152268,-1.087969],[-46.155168,-1.089569],[-46.159568,-1.089869],[-46.164168,-1.089069],[-46.168668,-1.087269],[-46.171368,-1.083969],[-46.170668,-1.077969],[-46.170068,-1.073969],[-46.168968,-1.071269],[-46.166368,-1.067969],[-46.163068,-1.065869],[-46.159868,-1.064469],[-46.155868,-1.063069],[-46.153768,-1.060469],[-46.152568,-1.056569],[-46.150968,-1.051969],[-46.151468,-1.048369],[-46.150668,-1.044769],[-46.150468,-1.041669],[-46.151168,-1.038169],[-46.153468,-1.034269],[-46.156768,-1.031769],[-46.156168,-1.027369],[-46.156968,-1.022269],[-46.156268,-1.019269],[-46.156768,-1.015969],[-46.158868,-1.008869],[-46.159868,-1.005969],[-46.163668,-1.002469],[-46.166368,-1.000869],[-46.169268,-0.999769],[-46.172868,-0.999369],[-46.176168,-1.000469],[-46.178968,-1.003369],[-46.180568,-1.006369],[-46.181968,-1.009269],[-46.183368,-1.012969],[-46.185868,-1.023769],[-46.186568,-1.028369],[-46.186668,-1.033369],[-46.186268,-1.038169],[-46.185268,-1.043669],[-46.184768,-1.048369],[-46.184068,-1.052969],[-46.184768,-1.056869],[-46.184968,-1.061369],[-46.186868,-1.066969],[-46.188468,-1.072169],[-46.190468,-1.076069],[-46.193468,-1.079569],[-46.197868,-1.082869],[-46.201068,-1.084769],[-46.203468,-1.086569],[-46.206868,-1.088769],[-46.210468,-1.092069],[-46.213468,-1.095669],[-46.216168,-1.098169],[-46.218768,-1.099569],[-46.222568,-1.101369],[-46.226368,-1.103169],[-46.229268,-1.104269],[-46.235868,-1.103169],[-46.239468,-1.099969],[-46.236968,-1.094869],[-46.231968,-1.088669],[-46.225668,-1.082569],[-46.218468,-1.074269],[-46.212868,-1.069969],[-46.208268,-1.067469],[-46.205368,-1.062269],[-46.204568,-1.057169],[-46.204668,-1.053069],[-46.205368,-1.049169],[-46.206168,-1.044169],[-46.207268,-1.037469],[-46.209568,-1.033469],[-46.212968,-1.029769],[-46.215168,-1.026769],[-46.215868,-1.023169],[-46.215968,-1.019669],[-46.216768,-1.016569],[-46.217668,-1.013469],[-46.218368,-1.009069],[-46.218368,-1.005569],[-46.218068,-1.002469],[-46.218368,-0.999369],[-46.217668,-0.995869],[-46.217668,-0.992469],[-46.218368,-0.989669],[-46.221168,-0.988969],[-46.221668,-0.985369],[-46.218368,-0.982869],[-46.214368,-0.980369],[-46.210468,-0.976669],[-46.208168,-0.973669],[-46.205168,-0.970969],[-46.202468,-0.968469],[-46.200168,-0.965369],[-46.197968,-0.962069],[-46.194868,-0.958969],[-46.192668,-0.956169],[-46.191568,-0.951869],[-46.189868,-0.948569],[-46.186868,-0.949269],[-46.183768,-0.951569],[-46.179968,-0.952169],[-46.177468,-0.950169],[-46.176068,-0.946269],[-46.175868,-0.941369],[-46.176668,-0.935469],[-46.177168,-0.930869],[-46.177468,-0.927969],[-46.177568,-0.923969],[-46.178068,-0.920369],[-46.178568,-0.917169],[-46.179368,-0.914169],[-46.181168,-0.910569],[-46.185768,-0.905069],[-46.188068,-0.902369],[-46.190968,-0.899569],[-46.193868,-0.896869],[-46.196368,-0.893469],[-46.198868,-0.890069],[-46.200468,-0.887069],[-46.203468,-0.884969],[-46.206768,-0.885269],[-46.210968,-0.887369],[-46.215568,-0.889869],[-46.219568,-0.892169],[-46.222768,-0.893269],[-46.226668,-0.895069],[-46.230668,-0.896469],[-46.233968,-0.897869],[-46.237168,-0.898969],[-46.240068,-0.900069],[-46.244368,-0.901569],[-46.248768,-0.903669],[-46.252968,-0.905869],[-46.256868,-0.907769],[-46.260668,-0.909869],[-46.264068,-0.912769],[-46.265768,-0.916069],[-46.266868,-0.920369],[-46.267868,-0.923969],[-46.269368,-0.928069],[-46.270668,-0.931869],[-46.271168,-0.935269],[-46.271168,-0.939069],[-46.270968,-0.942769],[-46.268668,-0.947369],[-46.267168,-0.952069],[-46.266768,-0.957169],[-46.266568,-0.960469],[-46.267168,-0.963969],[-46.269768,-0.968969],[-46.272868,-0.972769],[-46.276168,-0.975269],[-46.280068,-0.977369],[-46.283768,-0.979269],[-46.287368,-0.981669],[-46.289968,-0.986469],[-46.289468,-0.991669],[-46.288168,-0.994469],[-46.287868,-0.997669],[-46.288468,-1.000569],[-46.291768,-1.002969],[-46.296468,-1.005469],[-46.301168,-1.005769],[-46.304068,-1.007369],[-46.306168,-1.009669],[-46.307968,-1.012069],[-46.308868,-1.015669],[-46.311968,-1.018669],[-46.315568,-1.018969],[-46.318468,-1.022169],[-46.322468,-1.024869],[-46.326268,-1.025369],[-46.329868,-1.025369],[-46.335668,-1.025069],[-46.336968,-1.022169],[-46.339568,-1.020469],[-46.341168,-1.017969],[-46.342268,-1.015069],[-46.343368,-1.012069],[-46.347268,-1.007669],[-46.351968,-1.007769],[-46.356968,-1.009169],[-46.361368,-1.010269],[-46.364368,-1.012069],[-46.366868,-1.014969],[-46.368068,-1.018269],[-46.368668,-1.021869],[-46.370568,-1.025369],[-46.371968,-1.028069],[-46.375468,-1.026569],[-46.379068,-1.026969],[-46.382468,-1.025869],[-46.385368,-1.023769],[-46.388768,-1.021169],[-46.390768,-1.017469],[-46.391568,-1.014069],[-46.394268,-1.011069],[-46.396468,-1.007369],[-46.396468,-1.003769],[-46.395768,-1.000469],[-46.396168,-0.997269],[-46.400368,-0.996969],[-46.403968,-0.996869],[-46.406968,-0.997769],[-46.410668,-0.999069],[-46.413968,-1.000269],[-46.416768,-1.001969],[-46.418668,-1.004169],[-46.420368,-1.006769],[-46.422468,-1.009169],[-46.423868,-1.012469],[-46.423868,-1.017669],[-46.426168,-1.021069],[-46.428968,-1.023969],[-46.432268,-1.025169],[-46.434968,-1.026269],[-46.438068,-1.027269],[-46.441568,-1.027569],[-46.445668,-1.028069],[-46.448868,-1.028369],[-46.452068,-1.028069],[-46.455368,-1.027569],[-46.458168,-1.026969],[-46.461168,-1.026969],[-46.465468,-1.026469],[-46.469168,-1.023669],[-46.469468,-1.019269],[-46.472668,-1.017569],[-46.475868,-1.016369],[-46.475668,-1.013469],[-46.472868,-1.010169],[-46.468768,-1.008869],[-46.466268,-1.006669],[-46.465068,-0.997669],[-46.466568,-0.992969],[-46.468068,-0.989369],[-46.468668,-0.984269],[-46.469868,-0.981369],[-46.473668,-0.978069],[-46.479268,-0.976669],[-46.482768,-0.976269],[-46.486968,-0.976169],[-46.490768,-0.975869],[-46.494068,-0.975269],[-46.493268,-0.970369],[-46.489968,-0.967569],[-46.486968,-0.967069],[-46.483868,-0.966769],[-46.478468,-0.965169],[-46.471168,-0.958769],[-46.467668,-0.954669],[-46.465468,-0.951469],[-46.463968,-0.947369],[-46.462568,-0.939069],[-46.462968,-0.935769],[-46.465168,-0.933369],[-46.467968,-0.930869],[-46.470568,-0.928269],[-46.475868,-0.925769],[-46.480268,-0.923069],[-46.474468,-0.918869],[-46.470568,-0.917469],[-46.467068,-0.914569],[-46.464768,-0.912769],[-46.460368,-0.913169],[-46.458268,-0.910169],[-46.456268,-0.907669],[-46.459068,-0.904869],[-46.456068,-0.903969],[-46.452868,-0.906169],[-46.449368,-0.908869],[-46.444668,-0.910269],[-46.441668,-0.908769],[-46.439068,-0.906769],[-46.436368,-0.904269],[-46.432968,-0.902069],[-46.428368,-0.899769],[-46.425768,-0.898469],[-46.422768,-0.896869],[-46.419968,-0.895169],[-46.417168,-0.892469],[-46.413468,-0.888469],[-46.410068,-0.886769],[-46.410368,-0.882469],[-46.412068,-0.878769],[-46.414168,-0.876269],[-46.417468,-0.872669],[-46.420568,-0.869369],[-46.422868,-0.866869],[-46.426068,-0.865769],[-46.429768,-0.865769],[-46.432168,-0.867269],[-46.434968,-0.867969],[-46.438768,-0.868269],[-46.442168,-0.868269],[-46.445768,-0.869769],[-46.448268,-0.871969],[-46.452068,-0.871969],[-46.456268,-0.871869],[-46.460968,-0.871869],[-46.464768,-0.872269],[-46.467968,-0.873369],[-46.468668,-0.876269],[-46.464468,-0.877669],[-46.461568,-0.879369],[-46.459868,-0.882369],[-46.459768,-0.885669],[-46.463968,-0.888869],[-46.466268,-0.892469],[-46.468768,-0.889069],[-46.470368,-0.885269],[-46.473968,-0.883469],[-46.478668,-0.882769],[-46.481668,-0.879469],[-46.484268,-0.877369],[-46.488568,-0.874469],[-46.494968,-0.872369],[-46.498868,-0.873369],[-46.504068,-0.877669],[-46.508468,-0.880669],[-46.512468,-0.883469],[-46.514568,-0.885669],[-46.513968,-0.889069],[-46.511568,-0.891569],[-46.509168,-0.894269],[-46.505668,-0.898169],[-46.508268,-0.901269],[-46.508768,-0.905869],[-46.510368,-0.909769],[-46.512868,-0.914169],[-46.514868,-0.918169],[-46.513868,-0.922169],[-46.515068,-0.925269],[-46.515468,-0.929769],[-46.519368,-0.932569],[-46.523168,-0.934169],[-46.524868,-0.936969],[-46.525068,-0.940869],[-46.527868,-0.943269],[-46.530068,-0.946069],[-46.530868,-0.949869],[-46.532668,-0.953569],[-46.536968,-0.954669],[-46.537868,-0.950769],[-46.537068,-0.946669],[-46.537568,-0.942969],[-46.538368,-0.938769],[-46.537868,-0.934469],[-46.536668,-0.931169],[-46.535868,-0.926869],[-46.534568,-0.923669],[-46.533068,-0.919469],[-46.532868,-0.913769],[-46.532868,-0.908969],[-46.535968,-0.905869],[-46.540568,-0.906269],[-46.543568,-0.907569],[-46.546468,-0.909469],[-46.549968,-0.911969],[-46.552968,-0.914169],[-46.555768,-0.917069],[-46.556868,-0.920869],[-46.557168,-0.925769],[-46.557468,-0.930269],[-46.558268,-0.933269],[-46.559368,-0.936569],[-46.560768,-0.939169],[-46.562468,-0.941669],[-46.563368,-0.946069],[-46.565968,-0.951269],[-46.568168,-0.957569],[-46.569568,-0.960969],[-46.570968,-0.964769],[-46.572868,-0.969469],[-46.574568,-0.973369],[-46.578168,-0.981369],[-46.582568,-0.981369],[-46.585068,-0.979969],[-46.587968,-0.977069],[-46.589868,-0.973769],[-46.591768,-0.970969],[-46.593468,-0.968069],[-46.595368,-0.964469],[-46.598668,-0.960069],[-46.602368,-0.957569],[-46.606668,-0.956569],[-46.605268,-0.953269],[-46.604268,-0.949069],[-46.602768,-0.944869],[-46.603168,-0.940469],[-46.607468,-0.940169],[-46.611468,-0.941569],[-46.614468,-0.942669],[-46.617668,-0.944169],[-46.620468,-0.946369],[-46.622368,-0.949669],[-46.624468,-0.953569],[-46.625768,-0.956269],[-46.626268,-0.960069],[-46.629068,-0.963969],[-46.631768,-0.966469],[-46.634268,-0.968169],[-46.637068,-0.969469],[-46.639568,-0.957569],[-46.641068,-0.948469],[-46.637168,-0.945669],[-46.634368,-0.942669],[-46.632068,-0.939069],[-46.629868,-0.935569],[-46.628268,-0.930869],[-46.627168,-0.927169],[-46.625568,-0.922169],[-46.628468,-0.918669],[-46.632468,-0.915069],[-46.636468,-0.913869],[-46.639068,-0.911469],[-46.641768,-0.910069],[-46.639668,-0.907569],[-46.636068,-0.905969],[-46.634168,-0.901969],[-46.636068,-0.899069],[-46.636368,-0.895769],[-46.632068,-0.895069],[-46.629168,-0.891569],[-46.630168,-0.887669],[-46.630268,-0.884169],[-46.626068,-0.882669],[-46.622168,-0.880969],[-46.619468,-0.876869],[-46.619968,-0.872369],[-46.616668,-0.871269],[-46.615768,-0.868369],[-46.617668,-0.865069],[-46.615568,-0.858669],[-46.612968,-0.856669],[-46.610068,-0.855269],[-46.605668,-0.855669],[-46.603068,-0.857869],[-46.599468,-0.856769],[-46.596468,-0.854269],[-46.595568,-0.850569],[-46.595568,-0.846369],[-46.595868,-0.843069],[-46.597668,-0.838169],[-46.600268,-0.833569],[-46.601668,-0.830169],[-46.603368,-0.827369],[-46.606668,-0.823169],[-46.608968,-0.820669],[-46.611368,-0.817969],[-46.613968,-0.815169],[-46.616568,-0.813769],[-46.619668,-0.813069],[-46.620768,-0.809769],[-46.619368,-0.806169],[-46.622168,-0.803969],[-46.626068,-0.801969],[-46.629868,-0.800869],[-46.632068,-0.803269],[-46.629168,-0.806169],[-46.627368,-0.809369],[-46.627068,-0.812669],[-46.630168,-0.814569],[-46.633568,-0.811869],[-46.636568,-0.809469],[-46.639268,-0.805269],[-46.638868,-0.801169],[-46.639268,-0.797469],[-46.641568,-0.793869],[-46.645768,-0.792769],[-46.649768,-0.792469],[-46.654768,-0.791669],[-46.660568,-0.791369],[-46.665268,-0.791169],[-46.668868,-0.791469],[-46.671868,-0.791669],[-46.674668,-0.792469],[-46.678068,-0.793969],[-46.679968,-0.796769],[-46.676168,-0.798869],[-46.672768,-0.801369],[-46.668968,-0.804369],[-46.666668,-0.807569],[-46.664968,-0.809969],[-46.663168,-0.812469],[-46.665668,-0.814869],[-46.670668,-0.815169],[-46.673968,-0.816569],[-46.676068,-0.820169],[-46.677268,-0.824269],[-46.676868,-0.827869],[-46.675768,-0.831769],[-46.673968,-0.835169],[-46.671968,-0.838669],[-46.670868,-0.841969],[-46.670068,-0.845869],[-46.670068,-0.849169],[-46.671768,-0.851669],[-46.676068,-0.851469],[-46.678268,-0.847269],[-46.680868,-0.844469],[-46.684468,-0.842269],[-46.686668,-0.839569],[-46.689568,-0.836469],[-46.692768,-0.833669],[-46.696268,-0.834069],[-46.700468,-0.835669],[-46.704068,-0.839069],[-46.707068,-0.839769],[-46.710468,-0.840069],[-46.713368,-0.840969],[-46.715468,-0.843069],[-46.716168,-0.846669],[-46.716268,-0.849769],[-46.716568,-0.852869],[-46.716968,-0.857469],[-46.717668,-0.863269],[-46.721668,-0.866469],[-46.724868,-0.866569],[-46.728068,-0.865869],[-46.731768,-0.864069],[-46.735268,-0.860369],[-46.734768,-0.852469],[-46.734968,-0.848169],[-46.734768,-0.844169],[-46.734268,-0.837569],[-46.736168,-0.831269],[-46.739968,-0.830169],[-46.741068,-0.826069],[-46.740768,-0.821269],[-46.744368,-0.817369],[-46.746268,-0.814469],[-46.750268,-0.814569],[-46.754868,-0.812169],[-46.758068,-0.809069],[-46.757968,-0.805569],[-46.756268,-0.801669],[-46.759068,-0.798569],[-46.762368,-0.800069],[-46.763868,-0.802869],[-46.764368,-0.806869],[-46.764868,-0.811969],[-46.765668,-0.818169],[-46.765768,-0.822769],[-46.765468,-0.829069],[-46.765068,-0.833969],[-46.766868,-0.839769],[-46.769768,-0.840169],[-46.773668,-0.841269],[-46.777368,-0.843169],[-46.780868,-0.845369],[-46.783668,-0.848369],[-46.786268,-0.851169],[-46.787368,-0.854469],[-46.788868,-0.857769],[-46.788168,-0.861469],[-46.788068,-0.866669],[-46.791468,-0.869669],[-46.795568,-0.870869],[-46.800868,-0.872269],[-46.806168,-0.869769],[-46.808068,-0.864769],[-46.809368,-0.859969],[-46.809368,-0.855869],[-46.809168,-0.851669],[-46.808568,-0.848669],[-46.808268,-0.844769],[-46.807168,-0.840869],[-46.806968,-0.837869],[-46.806868,-0.833769],[-46.805468,-0.830469],[-46.806168,-0.826269],[-46.811368,-0.827369],[-46.815268,-0.829569],[-46.817968,-0.831869],[-46.820768,-0.835069],[-46.823568,-0.837869],[-46.827068,-0.841269],[-46.830768,-0.842869],[-46.834068,-0.841169],[-46.833268,-0.837269],[-46.832168,-0.833969],[-46.833168,-0.827569],[-46.836168,-0.824269],[-46.840568,-0.821069],[-46.843468,-0.818769],[-46.839068,-0.817069],[-46.833668,-0.815969],[-46.829268,-0.813769],[-46.826268,-0.810869],[-46.825968,-0.807969],[-46.824868,-0.804369],[-46.828168,-0.800769],[-46.831768,-0.799169],[-46.833968,-0.797169],[-46.835968,-0.794669],[-46.838968,-0.792169],[-46.834668,-0.790669],[-46.830168,-0.791669],[-46.825668,-0.792869],[-46.824268,-0.788769],[-46.825168,-0.785569],[-46.826268,-0.782069],[-46.826768,-0.778169],[-46.829268,-0.774769],[-46.831868,-0.771069],[-46.830668,-0.767869],[-46.829568,-0.764269],[-46.830368,-0.759369],[-46.831868,-0.754569],[-46.835368,-0.752169],[-46.835868,-0.747969],[-46.838768,-0.745469],[-46.842268,-0.743369],[-46.846768,-0.740769],[-46.850068,-0.739369],[-46.853168,-0.739669],[-46.856168,-0.740469],[-46.859668,-0.741069],[-46.862768,-0.741969],[-46.865268,-0.743669],[-46.868268,-0.746069],[-46.871068,-0.749669],[-46.868368,-0.751869],[-46.864368,-0.752969],[-46.861768,-0.754469],[-46.862268,-0.757769],[-46.864068,-0.760269],[-46.869068,-0.760669],[-46.875168,-0.760769],[-46.879068,-0.762869],[-46.882168,-0.765669],[-46.884168,-0.768969],[-46.883868,-0.772369],[-46.882668,-0.776469],[-46.882468,-0.780869],[-46.882668,-0.784469],[-46.882768,-0.787769],[-46.882668,-0.791469],[-46.882968,-0.795669],[-46.882768,-0.801069],[-46.884168,-0.808369],[-46.887368,-0.810769],[-46.892168,-0.812969],[-46.896868,-0.814069],[-46.901168,-0.814569],[-46.905068,-0.815969],[-46.909168,-0.818169],[-46.912768,-0.821069],[-46.914968,-0.825969],[-46.915368,-0.829969],[-46.918368,-0.840069],[-46.918368,-0.844769],[-46.916768,-0.849469],[-46.916068,-0.852369],[-46.919768,-0.856369],[-46.923568,-0.857569],[-46.925068,-0.859969],[-46.926868,-0.862869],[-46.929768,-0.866169],[-46.933368,-0.868269],[-46.936268,-0.869669],[-46.939968,-0.869369],[-46.942768,-0.865569],[-46.943468,-0.860369],[-46.940468,-0.857869],[-46.937668,-0.855069],[-46.938468,-0.849469],[-46.942068,-0.839469],[-46.943468,-0.833969],[-46.944268,-0.830169],[-46.944968,-0.825469],[-46.944368,-0.820169],[-46.943768,-0.816669],[-46.942668,-0.811369],[-46.941968,-0.807969],[-46.949968,-0.800369],[-46.948468,-0.797569],[-46.948268,-0.794169],[-46.950668,-0.791769],[-46.953968,-0.789169],[-46.956768,-0.786169],[-46.959768,-0.782769],[-46.962368,-0.780169],[-46.967268,-0.772869],[-46.969168,-0.766769],[-46.966968,-0.763769],[-46.965568,-0.760269],[-46.962568,-0.756569],[-46.959268,-0.753069],[-46.956068,-0.750469],[-46.952168,-0.746669],[-46.950668,-0.742769],[-46.949568,-0.739669],[-46.948468,-0.736469],[-46.946868,-0.733969],[-46.946368,-0.729769],[-46.948468,-0.726169],[-46.950368,-0.723169],[-46.953268,-0.719869],[-46.956068,-0.716569],[-46.957568,-0.711869],[-46.960068,-0.709669],[-46.963168,-0.708269],[-46.968068,-0.706069],[-46.971968,-0.704669],[-46.974968,-0.704269],[-46.977868,-0.705769],[-46.981068,-0.707269],[-46.985368,-0.709269],[-46.989968,-0.711469],[-46.993668,-0.714569],[-46.993668,-0.718469],[-46.989768,-0.718669],[-46.988968,-0.723669],[-46.990068,-0.727269],[-46.992268,-0.729269],[-46.993368,-0.733269],[-46.995568,-0.736969],[-46.996168,-0.741669],[-47.000568,-0.745769],[-47.003468,-0.748269],[-47.003468,-0.752469],[-47.003768,-0.756769],[-47.003068,-0.759969],[-47.004868,-0.764869],[-47.007068,-0.767369],[-47.010668,-0.769369],[-47.013968,-0.770669],[-47.016468,-0.767069],[-47.013468,-0.762469],[-47.015368,-0.758769],[-47.018168,-0.760469],[-47.021468,-0.764269],[-47.025668,-0.764569],[-47.030068,-0.766369],[-47.032268,-0.770669],[-47.033968,-0.774069],[-47.035568,-0.778369],[-47.036468,-0.781269],[-47.035568,-0.785569],[-47.035268,-0.789269],[-47.036668,-0.793069],[-47.040968,-0.796169],[-47.045568,-0.798069],[-47.049768,-0.798369],[-47.053068,-0.797769],[-47.055868,-0.797269],[-47.059168,-0.795669],[-47.063068,-0.793469],[-47.063368,-0.789869],[-47.063368,-0.785569],[-47.064168,-0.780469],[-47.065568,-0.776569],[-47.067668,-0.774069],[-47.071268,-0.774069],[-47.073468,-0.776869],[-47.073568,-0.781969],[-47.075368,-0.785669],[-47.077568,-0.782769],[-47.078168,-0.777069],[-47.077168,-0.771769],[-47.078568,-0.766769],[-47.081568,-0.764569],[-47.081768,-0.761269],[-47.082168,-0.757769],[-47.081768,-0.754069],[-47.085968,-0.751869],[-47.089768,-0.753569],[-47.094068,-0.755569],[-47.097368,-0.755169],[-47.098968,-0.751669],[-47.096968,-0.749069],[-47.095368,-0.745769],[-47.094068,-0.742469],[-47.091268,-0.738669],[-47.091168,-0.734669],[-47.090168,-0.730969],[-47.089368,-0.727069],[-47.088968,-0.723969],[-47.087968,-0.720969],[-47.090568,-0.717269],[-47.087968,-0.711269],[-47.084068,-0.709369],[-47.081068,-0.710769],[-47.078168,-0.712869],[-47.074968,-0.708969],[-47.074268,-0.704669],[-47.074268,-0.700469],[-47.074968,-0.695169],[-47.077468,-0.691069],[-47.081468,-0.686369],[-47.083768,-0.683369],[-47.085868,-0.680769],[-47.089368,-0.677169],[-47.092968,-0.673269],[-47.097068,-0.672169],[-47.099868,-0.672769],[-47.102868,-0.673969],[-47.106168,-0.675769],[-47.111468,-0.675869],[-47.115368,-0.675869],[-47.118268,-0.675769],[-47.121868,-0.676369],[-47.126368,-0.678669],[-47.129568,-0.682169],[-47.129668,-0.686669],[-47.124768,-0.689469],[-47.124168,-0.693769],[-47.129068,-0.693769],[-47.133768,-0.694269],[-47.137668,-0.695669],[-47.139068,-0.699269],[-47.136868,-0.701569],[-47.134568,-0.703969],[-47.132668,-0.707169],[-47.130268,-0.710369],[-47.128468,-0.713369],[-47.131868,-0.716969],[-47.133068,-0.722269],[-47.134968,-0.725569],[-47.136068,-0.729169],[-47.137968,-0.733569],[-47.145968,-0.742469],[-47.149568,-0.740269],[-47.153068,-0.740469],[-47.155968,-0.742969],[-47.158068,-0.747169],[-47.159768,-0.752369],[-47.160168,-0.756769],[-47.160568,-0.761069],[-47.161968,-0.764269],[-47.165868,-0.765369],[-47.170268,-0.763869],[-47.173568,-0.760669],[-47.176168,-0.753569],[-47.176868,-0.749669],[-47.178068,-0.746869],[-47.178268,-0.740469],[-47.176568,-0.736469],[-47.174668,-0.733969],[-47.171668,-0.730669],[-47.167568,-0.729769],[-47.166468,-0.726769],[-47.166668,-0.723369],[-47.166668,-0.718669],[-47.166668,-0.713369],[-47.167768,-0.708669],[-47.168868,-0.705769],[-47.168168,-0.701869],[-47.167768,-0.697869],[-47.167568,-0.694569],[-47.169968,-0.686969],[-47.170368,-0.683069],[-47.171068,-0.679169],[-47.171068,-0.676169],[-47.173368,-0.673569],[-47.177468,-0.673669],[-47.179768,-0.677269],[-47.183868,-0.679969],[-47.187668,-0.682669],[-47.191668,-0.686369],[-47.194368,-0.688269],[-47.196068,-0.691069],[-47.197068,-0.693869],[-47.198468,-0.696569],[-47.201768,-0.697969],[-47.205468,-0.697769],[-47.209268,-0.695569],[-47.210968,-0.690269],[-47.212268,-0.685769],[-47.211168,-0.681169],[-47.208268,-0.678569],[-47.206768,-0.674969],[-47.206168,-0.667269],[-47.205668,-0.660969],[-47.205968,-0.657669],[-47.204668,-0.654769],[-47.204868,-0.650369],[-47.208268,-0.647669],[-47.211768,-0.645369],[-47.212868,-0.642069],[-47.214768,-0.637769],[-47.216568,-0.635369],[-47.219768,-0.632369],[-47.224268,-0.631369],[-47.228368,-0.630469],[-47.232568,-0.629169],[-47.236468,-0.628269],[-47.241468,-0.627769],[-47.251068,-0.626269],[-47.255268,-0.623669],[-47.260968,-0.625269],[-47.260468,-0.630169],[-47.257968,-0.634969],[-47.253868,-0.636769],[-47.251968,-0.640069],[-47.251568,-0.644269],[-47.256668,-0.646269],[-47.258568,-0.648969],[-47.261268,-0.650669],[-47.261768,-0.647869],[-47.264268,-0.644869],[-47.268268,-0.644369],[-47.271168,-0.645069],[-47.274768,-0.641769],[-47.277668,-0.639669],[-47.280568,-0.638469],[-47.283668,-0.638169],[-47.287268,-0.639369],[-47.289968,-0.642069],[-47.292768,-0.644769],[-47.295268,-0.642869],[-47.294968,-0.639869],[-47.294568,-0.636769],[-47.292268,-0.634869],[-47.291068,-0.631269],[-47.289868,-0.627469],[-47.286268,-0.624869],[-47.285868,-0.620869],[-47.285268,-0.617169],[-47.285068,-0.613869],[-47.285168,-0.610369],[-47.285568,-0.606969],[-47.286168,-0.603569],[-47.288068,-0.600569],[-47.291468,-0.597669],[-47.295068,-0.596169],[-47.298268,-0.595569],[-47.301668,-0.595869],[-47.306168,-0.594869],[-47.309768,-0.594069],[-47.312968,-0.593169],[-47.316568,-0.592269],[-47.320468,-0.591269],[-47.324268,-0.592869],[-47.327068,-0.595969],[-47.329968,-0.597269],[-47.333268,-0.598069],[-47.336968,-0.599169],[-47.341168,-0.599869],[-47.344468,-0.600369],[-47.349268,-0.600669],[-47.354468,-0.602369],[-47.356068,-0.606069],[-47.349568,-0.606769],[-47.347368,-0.609969],[-47.350968,-0.612169],[-47.353968,-0.612869],[-47.357168,-0.611769],[-47.360368,-0.609769],[-47.363668,-0.607069],[-47.365068,-0.603369],[-47.367268,-0.600969],[-47.370468,-0.599969],[-47.373768,-0.600069],[-47.378068,-0.600669],[-47.381668,-0.601469],[-47.384868,-0.603069],[-47.386568,-0.606669],[-47.385668,-0.609969],[-47.384868,-0.612869],[-47.375468,-0.617469],[-47.370868,-0.620069],[-47.367768,-0.623369],[-47.367668,-0.627169],[-47.370468,-0.629969],[-47.375168,-0.631769],[-47.380668,-0.631369],[-47.385168,-0.629969],[-47.388468,-0.628069],[-47.388768,-0.631269],[-47.388868,-0.635369],[-47.390668,-0.639269],[-47.392168,-0.643269],[-47.392968,-0.646869],[-47.394868,-0.652969],[-47.404168,-0.655069],[-47.408068,-0.652269],[-47.410268,-0.650469],[-47.413068,-0.649869],[-47.415868,-0.647669],[-47.417868,-0.645369],[-47.418068,-0.642169],[-47.419768,-0.639869],[-47.422868,-0.642669],[-47.424768,-0.646069],[-47.425868,-0.650069],[-47.426568,-0.655869],[-47.429368,-0.651569],[-47.429768,-0.647669],[-47.430468,-0.643569],[-47.430468,-0.639669],[-47.428968,-0.637169],[-47.426968,-0.634969],[-47.423968,-0.632069],[-47.421968,-0.627369],[-47.420768,-0.624369],[-47.422168,-0.620869],[-47.418568,-0.617969],[-47.416368,-0.612769],[-47.414568,-0.609769],[-47.411768,-0.604269],[-47.410968,-0.600369],[-47.411968,-0.597269],[-47.413468,-0.594769],[-47.414568,-0.591969],[-47.418168,-0.587869],[-47.422168,-0.584869],[-47.426168,-0.584369],[-47.430768,-0.585069],[-47.433768,-0.585069],[-47.439068,-0.584769],[-47.442368,-0.584569],[-47.446068,-0.585169],[-47.448868,-0.585869],[-47.453568,-0.586769],[-47.458468,-0.587969],[-47.462868,-0.589569],[-47.466168,-0.590569],[-47.470068,-0.591269],[-47.472868,-0.593469],[-47.470568,-0.596969],[-47.471968,-0.600969],[-47.475268,-0.601669],[-47.477868,-0.603969],[-47.479668,-0.607869],[-47.480568,-0.612569],[-47.483268,-0.616369],[-47.484668,-0.619069],[-47.482468,-0.622269],[-47.477068,-0.623069],[-47.476368,-0.626569],[-47.473168,-0.629969],[-47.474568,-0.635169],[-47.475568,-0.641569],[-47.474868,-0.645069],[-47.475668,-0.648369],[-47.476968,-0.652569],[-47.478468,-0.656269],[-47.477268,-0.659769],[-47.476368,-0.663969],[-47.473168,-0.670269],[-47.473468,-0.675569],[-47.474168,-0.679769],[-47.472368,-0.684369],[-47.471368,-0.687769],[-47.469868,-0.693769],[-47.470068,-0.708669],[-47.471168,-0.718369],[-47.471768,-0.723469],[-47.472868,-0.729569],[-47.473868,-0.735669],[-47.476468,-0.738069],[-47.480568,-0.738669],[-47.483668,-0.736069],[-47.484668,-0.732769],[-47.487568,-0.729169],[-47.491068,-0.726369],[-47.494068,-0.724169],[-47.495768,-0.721669],[-47.497368,-0.718069],[-47.498368,-0.715169],[-47.499868,-0.712669],[-47.501768,-0.707869],[-47.500468,-0.703769],[-47.498868,-0.699969],[-47.499768,-0.695269],[-47.501568,-0.690169],[-47.504068,-0.686969],[-47.506868,-0.683369],[-47.510168,-0.678669],[-47.513568,-0.675069],[-47.515368,-0.672269],[-47.516868,-0.668969],[-47.518168,-0.664569],[-47.519268,-0.661669],[-47.519768,-0.658469],[-47.520168,-0.655469],[-47.520668,-0.650969],[-47.522568,-0.646769],[-47.525768,-0.645369],[-47.528668,-0.645769],[-47.531168,-0.647869],[-47.534168,-0.645769],[-47.536468,-0.641869],[-47.539968,-0.639069],[-47.537568,-0.635969],[-47.536168,-0.632669],[-47.537268,-0.629069],[-47.538668,-0.625169],[-47.536468,-0.621169],[-47.532868,-0.620569],[-47.531268,-0.617169],[-47.532868,-0.613269],[-47.535268,-0.609369],[-47.537768,-0.605369],[-47.540068,-0.602369],[-47.542768,-0.599569],[-47.545268,-0.597269],[-47.549368,-0.593369],[-47.553368,-0.590169],[-47.556168,-0.587869],[-47.559368,-0.585769],[-47.562668,-0.582869],[-47.567368,-0.581269],[-47.571768,-0.580369],[-47.576268,-0.578569],[-47.580368,-0.577369],[-47.583668,-0.577069],[-47.587868,-0.576769],[-47.587868,-0.581569],[-47.588968,-0.584769],[-47.590368,-0.588269],[-47.591268,-0.593369],[-47.590068,-0.596269],[-47.587268,-0.599469],[-47.583768,-0.602069],[-47.584368,-0.606669],[-47.585668,-0.610269],[-47.586468,-0.613369],[-47.588168,-0.617269],[-47.587368,-0.620869],[-47.586868,-0.624469],[-47.586568,-0.629069],[-47.586468,-0.632969],[-47.586768,-0.637369],[-47.588668,-0.641269],[-47.588968,-0.644369],[-47.590568,-0.648169],[-47.593068,-0.652269],[-47.595868,-0.655169],[-47.597368,-0.658469],[-47.598768,-0.661269],[-47.600368,-0.664569],[-47.601368,-0.667769],[-47.602768,-0.671769],[-47.604268,-0.674669],[-47.606068,-0.678069],[-47.608668,-0.682469],[-47.610568,-0.686269],[-47.609768,-0.690169],[-47.606968,-0.694069],[-47.607868,-0.697669],[-47.610368,-0.699569],[-47.614068,-0.699869],[-47.617968,-0.699969],[-47.619768,-0.702969],[-47.623268,-0.705469],[-47.626068,-0.706269],[-47.630568,-0.706769],[-47.634568,-0.703769],[-47.633468,-0.700169],[-47.631568,-0.696569],[-47.631268,-0.692369],[-47.633468,-0.688569],[-47.636068,-0.686069],[-47.639668,-0.685869],[-47.643968,-0.688569],[-47.644768,-0.684369],[-47.643168,-0.680469],[-47.640668,-0.677569],[-47.638168,-0.672869],[-47.635668,-0.668469],[-47.634368,-0.665569],[-47.633868,-0.662469],[-47.634868,-0.658469],[-47.637668,-0.655469],[-47.640968,-0.653069],[-47.639268,-0.649869],[-47.636768,-0.648369],[-47.635168,-0.644869],[-47.635668,-0.640769],[-47.636768,-0.636069],[-47.634368,-0.633469],[-47.631668,-0.630169],[-47.630268,-0.625569],[-47.631668,-0.621069],[-47.631568,-0.616169],[-47.634168,-0.613269],[-47.637368,-0.616869],[-47.637768,-0.613369],[-47.635268,-0.610369],[-47.631668,-0.607469],[-47.632968,-0.601669],[-47.635668,-0.597869],[-47.638868,-0.594069],[-47.642168,-0.590169],[-47.644568,-0.587969],[-47.647268,-0.585469],[-47.650768,-0.582669],[-47.654568,-0.581069],[-47.658168,-0.578969],[-47.662368,-0.577169],[-47.666668,-0.575669],[-47.670868,-0.575169],[-47.674268,-0.575769],[-47.676968,-0.577169],[-47.679668,-0.579569],[-47.681168,-0.582969],[-47.681568,-0.587269],[-47.684468,-0.589469],[-47.688368,-0.590469],[-47.691268,-0.593669],[-47.694868,-0.595969],[-47.697668,-0.597269],[-47.700768,-0.596269],[-47.701868,-0.592969],[-47.700668,-0.589869],[-47.699868,-0.585769],[-47.698768,-0.580669],[-47.697068,-0.575469],[-47.694768,-0.569969],[-47.693768,-0.564369],[-47.692668,-0.560769],[-47.690968,-0.557769],[-47.690468,-0.554469],[-47.693168,-0.553569],[-47.697768,-0.553669],[-47.702668,-0.554069],[-47.703568,-0.551369],[-47.700768,-0.550069],[-47.701068,-0.547169],[-47.698868,-0.543869],[-47.698568,-0.539769],[-47.700968,-0.536669],[-47.703768,-0.534769],[-47.708668,-0.534469],[-47.713168,-0.534469],[-47.718668,-0.535169],[-47.722768,-0.535569],[-47.725868,-0.535869],[-47.729568,-0.535869],[-47.734368,-0.535969],[-47.739768,-0.536969],[-47.744168,-0.537869],[-47.748368,-0.539569],[-47.751268,-0.541669],[-47.754068,-0.543169],[-47.755268,-0.545869],[-47.751268,-0.548069],[-47.746868,-0.551169],[-47.743668,-0.555169],[-47.742568,-0.559369],[-47.741368,-0.563069],[-47.743268,-0.566269],[-47.746368,-0.566569],[-47.748268,-0.563069],[-47.752368,-0.561969],[-47.756268,-0.561669],[-47.761068,-0.560769],[-47.766468,-0.560769],[-47.770468,-0.563369],[-47.770068,-0.567069],[-47.769268,-0.570769],[-47.768168,-0.574969],[-47.766468,-0.579569],[-47.765468,-0.583269],[-47.763168,-0.586769],[-47.761068,-0.589369],[-47.758768,-0.592069],[-47.757368,-0.595969],[-47.757468,-0.599769],[-47.756768,-0.603969],[-47.756268,-0.608569],[-47.759368,-0.609969],[-47.762668,-0.610669],[-47.765768,-0.610869],[-47.768768,-0.609469],[-47.772168,-0.606369],[-47.773368,-0.602869],[-47.775368,-0.599969],[-47.776168,-0.596769],[-47.776568,-0.593769],[-47.775668,-0.590169],[-47.773668,-0.587269],[-47.775168,-0.584269],[-47.777568,-0.581769],[-47.781768,-0.582569],[-47.786668,-0.584869],[-47.790268,-0.585669],[-47.794968,-0.585469],[-47.797868,-0.585669],[-47.801068,-0.585469],[-47.803368,-0.587669],[-47.807168,-0.587969],[-47.809368,-0.585169],[-47.809068,-0.582069],[-47.808268,-0.579269],[-47.806068,-0.575669],[-47.802868,-0.572169],[-47.799768,-0.569569],[-47.798168,-0.565969],[-47.796368,-0.563269],[-47.797268,-0.559969],[-47.799968,-0.557769],[-47.802968,-0.556369],[-47.806068,-0.555469],[-47.810168,-0.556169],[-47.814868,-0.558369],[-47.817668,-0.560869],[-47.819168,-0.564069],[-47.816368,-0.567969],[-47.815268,-0.572469],[-47.814468,-0.576369],[-47.816868,-0.579669],[-47.818168,-0.583969],[-47.819868,-0.586769],[-47.822068,-0.589769],[-47.824068,-0.592369],[-47.825668,-0.595669],[-47.825668,-0.600269],[-47.826768,-0.605069],[-47.829668,-0.608869],[-47.830168,-0.613369],[-47.829568,-0.617969],[-47.828468,-0.621169],[-47.826768,-0.623669],[-47.824268,-0.626669],[-47.822068,-0.629369],[-47.822168,-0.632669],[-47.820568,-0.636069],[-47.821668,-0.639569],[-47.824568,-0.646269],[-47.826468,-0.653469],[-47.826268,-0.658169],[-47.826768,-0.662869],[-47.829268,-0.667769],[-47.832568,-0.670269],[-47.834768,-0.675769],[-47.835968,-0.679369],[-47.838168,-0.681869],[-47.842068,-0.681969],[-47.845868,-0.677969],[-47.847568,-0.675269],[-47.848968,-0.672469],[-47.852068,-0.669769],[-47.856368,-0.671969],[-47.861368,-0.673069],[-47.864668,-0.671369],[-47.866168,-0.666669],[-47.862968,-0.659869],[-47.857868,-0.655669],[-47.855368,-0.652269],[-47.855568,-0.649269],[-47.855668,-0.646069],[-47.856068,-0.642669],[-47.854568,-0.639269],[-47.852068,-0.635669],[-47.850868,-0.632669],[-47.848068,-0.629069],[-47.845968,-0.625169],[-47.846968,-0.621069],[-47.848168,-0.617169],[-47.849468,-0.613069],[-47.849968,-0.609169],[-47.849868,-0.605569],[-47.849268,-0.601969],[-47.850368,-0.599169],[-47.849568,-0.595969],[-47.848468,-0.591469],[-47.848368,-0.588369],[-47.852068,-0.588769],[-47.855668,-0.589069],[-47.858868,-0.588769],[-47.859468,-0.585769],[-47.857568,-0.583669],[-47.857068,-0.580469],[-47.857768,-0.575969],[-47.858568,-0.571369],[-47.860368,-0.567469],[-47.863668,-0.564169],[-47.867168,-0.562369],[-47.870768,-0.560869],[-47.874368,-0.560469],[-47.877668,-0.559669],[-47.881368,-0.559169],[-47.884868,-0.559369],[-47.887668,-0.558669],[-47.891268,-0.558269],[-47.896268,-0.558269],[-47.900368,-0.558369],[-47.903168,-0.559069],[-47.907068,-0.560169],[-47.911368,-0.561869],[-47.914268,-0.563569],[-47.916668,-0.566269],[-47.914568,-0.568469],[-47.913868,-0.572669],[-47.910668,-0.576369],[-47.908868,-0.579269],[-47.909568,-0.582869],[-47.909768,-0.588369],[-47.909768,-0.593369],[-47.908468,-0.596469],[-47.908068,-0.600369],[-47.911968,-0.603169],[-47.914468,-0.600569],[-47.919468,-0.602069],[-47.920368,-0.605869],[-47.919668,-0.609269],[-47.918168,-0.612269],[-47.916368,-0.616669],[-47.915668,-0.619669],[-47.917468,-0.623269],[-47.920368,-0.625269],[-47.923368,-0.626069],[-47.930068,-0.627469],[-47.932768,-0.629069],[-47.935768,-0.631069],[-47.938868,-0.633069],[-47.941968,-0.632769],[-47.945168,-0.633769],[-47.948768,-0.633869],[-47.952068,-0.632369],[-47.955468,-0.632069],[-47.958468,-0.633569],[-47.960668,-0.636369],[-47.963968,-0.641269],[-47.965068,-0.646869],[-47.964768,-0.651269],[-47.965168,-0.655969],[-47.965168,-0.660069],[-47.963468,-0.665669],[-47.963768,-0.669569],[-47.965168,-0.673569],[-47.967268,-0.676169],[-47.969868,-0.677769],[-47.972568,-0.678969],[-47.975268,-0.680569],[-47.975568,-0.686369],[-47.978868,-0.688569],[-47.980868,-0.690769],[-47.983868,-0.692669],[-47.988268,-0.694169],[-47.993368,-0.693269],[-47.997368,-0.691369],[-47.999468,-0.688369],[-48.002668,-0.686569],[-48.010268,-0.686169]]]},"properties":{"name":"br"},"bbox":[-73.990468,-33.750769,-34.793568,5.271131]},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.86652,41.319141],[-71.857395,41.320868],[-71.851834,41.324733],[-71.847795,41.329526],[-71.837195,41.335075],[-71.829355,41.342482],[-71.83127,41.351188],[-71.836228,41.354037],[-71.837905,41.359082],[-71.837489,41.365555],[-71.831685,41.370873],[-71.832756,41.37546],[-71.830591,41.378904],[-71.833493,41.382366],[-71.832589,41.386614],[-71.841194,41.394227],[-71.842357,41.395322],[-71.842188,41.396702],[-71.840942,41.399439],[-71.841412,41.402978],[-71.843689,41.405304],[-71.842631,41.409778],[-71.842096,41.410648],[-71.839182,41.412447],[-71.834145,41.411677],[-71.829298,41.413691],[-71.824734,41.415108],[-71.82369,41.417524],[-71.818557,41.41993],[-71.812807,41.419495],[-71.806961,41.416705],[-71.803945,41.417483],[-71.801153,41.415446],[-71.79779,41.416763],[-71.787078,41.65167],[-71.795876,41.891424],[-71.799411,42.008224],[-71.591748,42.013673],[-71.528051,42.014917],[-71.49853,42.017265],[-71.381325,42.018807],[-71.381572,41.893426],[-71.338864,41.89849],[-71.340751,41.881576],[-71.333966,41.862537],[-71.342449,41.84466],[-71.335457,41.835726],[-71.346409,41.825272],[-71.347438,41.823181],[-71.339328,41.808551],[-71.340489,41.79708],[-71.340485,41.797033],[-71.334818,41.794916],[-71.334647,41.79484],[-71.332842,41.790515],[-71.332742,41.79016],[-71.329655,41.788488],[-71.329457,41.788327],[-71.330228,41.7856],[-71.33038,41.785411],[-71.328465,41.780701],[-71.261039,41.752083],[-71.225997,41.712355],[-71.195661,41.674898],[-71.175751,41.671534],[-71.176161,41.668239],[-71.132665,41.660212],[-71.135006,41.628496],[-71.139976,41.624002],[-71.142067,41.612621],[-71.140242,41.60503],[-71.138375,41.603613],[-71.131482,41.593408],[-71.122783,41.52395],[-71.12033,41.496567],[-71.170471,41.460818],[-71.194359,41.456332],[-71.247128,41.472113],[-71.275187,41.479246],[-71.277309,41.480277],[-71.278573,41.48364],[-71.279816,41.483694],[-71.296537,41.468999],[-71.304444,41.454611],[-71.310691,41.451019],[-71.337552,41.449106],[-71.39948,41.448912],[-71.437894,41.441154],[-71.4566,41.434008],[-71.455517,41.429393],[-71.455839,41.42222],[-71.45295,41.419109],[-71.452469,41.415998],[-71.453731,41.411315],[-71.452787,41.409039],[-71.462786,41.396344],[-71.470904,41.390725],[-71.47561,41.383902],[-71.48362,41.371459],[-71.480391,41.361715],[-71.48201,41.360227],[-71.488485,41.361293],[-71.498575,41.371957],[-71.507633,41.374715],[-71.514629,41.374389],[-71.519027,41.376575],[-71.532879,41.375839],[-71.538895,41.372908],[-71.549917,41.374358],[-71.584645,41.368565],[-71.597132,41.364233],[-71.607925,41.364541],[-71.665838,41.349946],[-71.696794,41.340209],[-71.716252,41.330473],[-71.733353,41.331357],[-71.751592,41.325405],[-71.765568,41.328787],[-71.780682,41.327469],[-71.82187,41.319667],[-71.841981,41.313219],[-71.855908,41.306914],[-71.858134,41.303218],[-71.86652,41.319141]]]},"properties":{"name":"ri"},"bbox":[-71.86652,41.303218,-71.12033,42.018807]},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-103.064657,32.959097],[-103.064639,33.000106],[-103.06398,33.038693],[-103.059558,33.241728],[-103.059649,33.252511],[-103.059173,33.260362],[-103.057487,33.329476],[-103.056494,33.397068],[-103.055384,33.435256],[-103.052858,33.553381],[-103.053063,33.553403],[-103.052285,33.585908],[-103.051777,33.627599],[-103.051166,33.649202],[-103.051535,33.650487],[-103.050234,33.684178],[-103.049608,33.737766],[-103.049096,33.74627],[-103.047886,33.796166],[-103.046471,33.875145],[-103.045644,33.901537],[-103.044173,33.974557],[-103.043478,34.020439],[-103.04378,34.035816],[-103.043516,34.079382],[-103.043682,34.110056],[-103.043283,34.124264],[-103.043862,34.133232],[-103.043903,34.162064],[-103.043595,34.18126],[-103.043833,34.199838],[-103.043566,34.204873],[-103.043835,34.2049],[-103.043837,34.211545],[-103.043568,34.21437],[-103.043482,34.238098],[-103.043748,34.245595],[-103.043557,34.274781],[-103.043977,34.31141],[-103.043762,34.31275],[-103.043072,34.619782],[-103.043293,34.653098],[-103.042827,34.671188],[-103.043123,34.672589],[-103.042668,34.740129],[-103.042974,34.757315],[-103.042661,34.784966],[-103.042982,34.79215],[-103.042521,35.014239],[-103.042741,35.022395],[-103.04264,35.109974],[-103.043264,35.12506],[-103.042369,35.138464],[-103.042339,35.181922],[-103.042773,35.241293],[-103.042363,35.250017],[-103.042289,35.383144],[-103.041146,35.791583],[-103.04192,35.796425],[-103.041717,35.814066],[-103.042186,35.825217],[-103.041305,35.837694],[-103.040824,36.000037],[-103.041263,36.250031],[-103.041745,36.318267],[-103.041618,36.461804],[-103.041923,36.50035],[-102.875477,36.500238],[-102.821224,36.500632],[-102.750472,36.5004],[-102.729727,36.500672],[-102.625467,36.500364],[-102.250453,36.500369],[-102.24499,36.500704],[-102.22058,36.500333],[-102.12545,36.500324],[-102.122066,36.500684],[-102.012467,36.500581],[-101.993161,36.500278],[-101.986513,36.500526],[-101.899344,36.500424],[-101.878154,36.500026],[-101.838447,36.500026],[-101.834063,36.499556],[-101.826503,36.499533],[-101.74382,36.499799],[-101.699028,36.499711],[-101.698685,36.499508],[-101.411358,36.499332],[-101.375437,36.499343],[-101.373576,36.499583],[-101.125434,36.499519],[-101.098994,36.499118],[-101.05274,36.499567],[-100.977271,36.499593],[-100.977037,36.499926],[-100.513719,36.499286],[-100.334464,36.49942],[-100.32421,36.49997],[-100.308121,36.499618],[-100.276714,36.499881],[-100.181221,36.499633],[-100.177147,36.499635],[-100.177134,36.499862],[-100.172187,36.49959],[-100.172128,36.499882],[-100.16327,36.499609],[-100.16317,36.49989],[-100.158627,36.499626],[-100.158601,36.499898],[-100.155633,36.499566],[-100.15474,36.49988],[-100.152288,36.499632],[-100.147417,36.499872],[-100.147383,36.499613],[-100.14539,36.49985],[-100.133838,36.49964],[-100.12723,36.49986],[-100.127194,36.499638],[-100.115007,36.499867],[-100.114895,36.499568],[-100.11293,36.4999],[-100.109325,36.499893],[-100.109325,36.499639],[-100.05493,36.499881],[-100.000406,36.499702],[-100.000391,35.51913],[-99.999632,35.50044],[-99.999628,35.482947],[-99.99966,35.422364],[-100.000393,35.422369],[-100.000386,35.247405],[-100.000121,35.238798],[-100.00042,35.204641],[-100.000479,34.708601],[-100.000372,34.659853],[-100.000095,34.652869],[-100.00042,34.652598],[-100.000277,34.56045],[-99.99962,34.56017],[-99.998159,34.560662],[-99.99607,34.560729],[-99.992406,34.559367],[-99.990694,34.560243],[-99.985851,34.560078],[-99.982549,34.560773],[-99.980639,34.560686],[-99.977672,34.56146],[-99.974832,34.561311],[-99.973517,34.561957],[-99.971606,34.562169],[-99.970045,34.563491],[-99.969685,34.564517],[-99.96561,34.565844],[-99.962618,34.568136],[-99.962021,34.569143],[-99.958899,34.571271],[-99.957542,34.572709],[-99.957555,34.574169],[-99.956717,34.576524],[-99.955562,34.577616],[-99.953817,34.578527],[-99.944679,34.579135],[-99.934276,34.576761],[-99.929334,34.576714],[-99.923211,34.574552],[-99.921801,34.570253],[-99.909988,34.562135],[-99.906534,34.560387],[-99.903489,34.558362],[-99.900596,34.557202],[-99.898943,34.555804],[-99.896007,34.55553],[-99.89376,34.554219],[-99.888741,34.550452],[-99.884842,34.546953],[-99.880898,34.542219],[-99.878551,34.540648],[-99.87766,34.540577],[-99.876957,34.540098],[-99.876597,34.539709],[-99.876677,34.538975],[-99.876183,34.537901],[-99.875377,34.537073],[-99.875377,34.53736],[-99.874403,34.537095],[-99.873255,34.535348],[-99.872255,34.531722],[-99.870401,34.530221],[-99.868953,34.527615],[-99.867654,34.527191],[-99.864891,34.522993],[-99.862235,34.520506],[-99.861078,34.519986],[-99.858408,34.516969],[-99.856472,34.515744],[-99.855224,34.513655],[-99.853053,34.511585],[-99.846697,34.508522],[-99.843974,34.506502],[-99.834768,34.50174],[-99.832904,34.500068],[-99.83072,34.499267],[-99.828369,34.498878],[-99.825325,34.497596],[-99.822835,34.4981],[-99.821839,34.497848],[-99.819431,34.495192],[-99.816803,34.490199],[-99.81672,34.489718],[-99.817771,34.488733],[-99.818186,34.48784],[-99.81813,34.486007],[-99.818739,34.484976],[-99.815751,34.480693],[-99.814313,34.476204],[-99.80986,34.47183],[-99.806929,34.469791],[-99.802864,34.465668],[-99.801619,34.464019],[-99.801149,34.462324],[-99.798605,34.460125],[-99.797167,34.457674],[-99.795315,34.456116],[-99.793684,34.453894],[-99.789841,34.451718],[-99.78879,34.451489],[-99.787104,34.451763],[-99.786081,34.451099],[-99.785445,34.450045],[-99.784037,34.445509],[-99.782986,34.444364],[-99.775743,34.444225],[-99.774278,34.443285],[-99.772702,34.441269],[-99.765599,34.437488],[-99.764826,34.436434],[-99.764882,34.435266],[-99.765297,34.434373],[-99.766514,34.433411],[-99.767648,34.431854],[-99.767234,34.430502],[-99.764001,34.428302],[-99.759607,34.426674],[-99.75621,34.42271],[-99.754248,34.421289],[-99.75248,34.420533],[-99.750021,34.420348],[-99.748789,34.419753],[-99.748014,34.419112],[-99.747378,34.417784],[-99.746686,34.417395],[-99.74312,34.417282],[-99.742318,34.416709],[-99.740907,34.414763],[-99.734356,34.412429],[-99.733168,34.412521],[-99.730763,34.411698],[-99.730348,34.41124],[-99.727031,34.410554],[-99.726064,34.409958],[-99.725096,34.408355],[-99.724349,34.407852],[-99.720259,34.406295],[-99.717854,34.403708],[-99.716416,34.402815],[-99.715089,34.400754],[-99.714232,34.397822],[-99.714231,34.397089],[-99.714977,34.395325],[-99.714838,34.394524],[-99.712682,34.390928],[-99.710029,34.389669],[-99.709532,34.388523],[-99.707901,34.387539],[-99.706658,34.385981],[-99.705249,34.385775],[-99.704005,34.385982],[-99.701187,34.385203],[-99.700414,34.384699],[-99.696462,34.381036],[-99.695799,34.379272],[-99.69497,34.378333],[-99.690604,34.378219],[-99.686709,34.378654],[-99.682482,34.379822],[-99.678283,34.379799],[-99.673145,34.378516],[-99.671377,34.377714],[-99.669388,34.375652],[-99.668339,34.375487],[-99.665992,34.374185],[-99.662705,34.37368],[-99.659362,34.37439],[-99.658451,34.374723],[-99.65715,34.375833],[-99.654194,34.376519],[-99.649662,34.379885],[-99.648833,34.381603],[-99.648142,34.382312],[-99.646511,34.382541],[-99.644578,34.38167],[-99.642755,34.381555],[-99.639661,34.379905],[-99.633859,34.378757],[-99.631843,34.377703],[-99.631181,34.377061],[-99.630905,34.376007],[-99.62969,34.375482],[-99.62853,34.375401],[-99.628545,34.375076],[-99.626847,34.374356],[-99.624197,34.373577],[-99.621407,34.373784],[-99.619556,34.374627],[-99.616863,34.375076],[-99.616793,34.375391],[-99.611572,34.375643],[-99.610136,34.37656],[-99.607263,34.376928],[-99.600026,34.374688],[-99.596323,34.377137],[-99.596296,34.378741],[-99.595137,34.380322],[-99.592044,34.383163],[-99.587596,34.385867],[-99.586215,34.387402],[-99.585442,34.388914],[-99.584531,34.391205],[-99.584973,34.393175],[-99.584891,34.396336],[-99.585306,34.398122],[-99.584534,34.401673],[-99.583484,34.403735],[-99.583595,34.40504],[-99.584341,34.406346],[-99.58448,34.407673],[-99.583071,34.409598],[-99.582684,34.410995],[-99.581193,34.413927],[-99.581138,34.414752],[-99.58017,34.415943],[-99.58006,34.416653],[-99.576909,34.417799],[-99.574367,34.418281],[-99.569696,34.418418],[-99.567015,34.418304],[-99.565134,34.418006],[-99.564056,34.417388],[-99.562204,34.417319],[-99.555986,34.41464],[-99.554604,34.414571],[-99.549242,34.412715],[-99.541531,34.413241],[-99.539707,34.412782],[-99.53664,34.412736],[-99.533517,34.411796],[-99.529786,34.411452],[-99.52365,34.412206],[-99.520886,34.413144],[-99.518895,34.414289],[-99.517624,34.414494],[-99.51428,34.414035],[-99.511102,34.412705],[-99.506903,34.40952],[-99.503144,34.409289],[-99.500367,34.409677],[-99.498999,34.409173],[-99.497091,34.407731],[-99.496399,34.406495],[-99.494104,34.404755],[-99.493606,34.403495],[-99.491975,34.40203],[-99.490426,34.399694],[-99.487219,34.397955],[-99.481125,34.396683],[-99.479827,34.396803],[-99.477782,34.396288],[-99.476243,34.39636],[-99.473789,34.39535],[-99.472268,34.395602],[-99.470306,34.396748],[-99.468427,34.396634],[-99.466383,34.3959],[-99.464036,34.393634],[-99.462462,34.391137],[-99.462297,34.388639],[-99.461854,34.387241],[-99.462075,34.383462],[-99.461053,34.380666],[-99.459395,34.380117],[-99.457626,34.380117],[-99.456328,34.380392],[-99.455085,34.381264],[-99.454891,34.381905],[-99.455472,34.386097],[-99.454588,34.38864],[-99.453787,34.388663],[-99.451465,34.386922],[-99.450222,34.385021],[-99.449117,34.384333],[-99.445336,34.379768],[-99.444255,34.378134],[-99.443669,34.376457],[-99.442394,34.375453],[-99.441937,34.374412],[-99.441057,34.374042],[-99.440671,34.372774],[-99.438269,34.371164],[-99.437095,34.371144],[-99.436474,34.370539],[-99.434921,34.370634],[-99.433458,34.370223],[-99.431043,34.371117],[-99.431118,34.374003],[-99.429793,34.375003],[-99.429324,34.375834],[-99.430145,34.377589],[-99.43001,34.381019],[-99.429154,34.382849],[-99.427497,34.385136],[-99.424897,34.385823],[-99.423679,34.385663],[-99.421908,34.384201],[-99.42141,34.383355],[-99.420714,34.380386],[-99.417385,34.378838],[-99.414159,34.377773],[-99.413045,34.377012],[-99.412103,34.375041],[-99.410195,34.373402],[-99.409005,34.372758],[-99.407307,34.372593],[-99.405286,34.372858],[-99.400334,34.374623],[-99.398728,34.375832],[-99.397355,34.377868],[-99.396151,34.382546],[-99.396162,34.383502],[-99.396789,34.384777],[-99.396714,34.392667],[-99.395887,34.394197],[-99.395676,34.39769],[-99.394046,34.399976],[-99.393714,34.401439],[-99.39175,34.405533],[-99.387929,34.409469],[-99.387181,34.410842],[-99.387653,34.411984],[-99.389484,34.413432],[-99.391918,34.414674],[-99.394183,34.415177],[-99.395148,34.415855],[-99.396751,34.41721],[-99.397164,34.418607],[-99.396802,34.420968],[-99.397298,34.422411],[-99.397267,34.423924],[-99.396297,34.425298],[-99.393306,34.427613],[-99.393802,34.42901],[-99.393049,34.431921],[-99.395122,34.433044],[-99.396115,34.43497],[-99.395187,34.44203],[-99.393495,34.443679],[-99.389227,34.446863],[-99.386757,34.449521],[-99.381204,34.456879],[-99.377132,34.45855],[-99.37555,34.458789],[-99.368932,34.458461],[-99.366054,34.456743],[-99.35897,34.455807],[-99.355705,34.453082],[-99.354848,34.4518],[-99.35485,34.450539],[-99.355016,34.4496],[-99.356624,34.447467],[-99.356956,34.446481],[-99.35729,34.444854],[-99.357236,34.44286],[-99.356903,34.442082],[-99.350594,34.436992],[-99.345462,34.434031],[-99.34013,34.430102],[-99.33409,34.427525],[-99.333665,34.426293],[-99.330693,34.42442],[-99.328698,34.422383],[-99.326728,34.419111],[-99.326338,34.417667],[-99.325064,34.41634],[-99.32423,34.414464],[-99.322459,34.413685],[-99.320073,34.409267],[-99.319602,34.408879],[-99.318357,34.408306],[-99.316365,34.408215],[-99.313959,34.409085],[-99.309257,34.409704],[-99.305774,34.411055],[-99.304613,34.412062],[-99.300466,34.413344],[-99.299084,34.414236],[-99.294632,34.415381],[-99.289903,34.414739],[-99.28791,34.41403],[-99.285586,34.412358],[-99.284396,34.41103],[-99.282843,34.40748],[-99.28317,34.402946],[-99.28151,34.401457],[-99.280045,34.400655],[-99.276865,34.400058],[-99.27526,34.400104],[-99.272303,34.400812],[-99.269566,34.40191],[-99.268296,34.403558],[-99.267745,34.404955],[-99.266308,34.405481],[-99.264124,34.405159],[-99.261275,34.403508],[-99.260859,34.402203],[-99.261825,34.398677],[-99.261822,34.395036],[-99.261241,34.394073],[-99.258807,34.392078],[-99.258917,34.391255],[-99.261126,34.389561],[-99.264442,34.388099],[-99.271655,34.38769],[-99.272042,34.387919],[-99.273894,34.387577],[-99.275275,34.386616],[-99.274858,34.384922],[-99.274415,34.384349],[-99.272922,34.383547],[-99.272202,34.382356],[-99.269796,34.380843],[-99.264958,34.378756],[-99.260441,34.378078],[-99.259767,34.3776],[-99.259203,34.377004],[-99.259334,34.373621],[-99.258606,34.37265],[-99.256498,34.372229],[-99.254631,34.372419],[-99.250668,34.375518],[-99.248884,34.375995],[-99.247584,34.375551],[-99.246007,34.374235],[-99.242855,34.372676],[-99.243024,34.371142],[-99.243543,34.370711],[-99.246328,34.369828],[-99.247942,34.368487],[-99.24812,34.367433],[-99.247009,34.36478],[-99.246393,34.364397],[-99.244454,34.363701],[-99.241476,34.364536],[-99.237562,34.366701],[-99.236494,34.365805],[-99.236188,34.36439],[-99.237129,34.362723],[-99.237141,34.361095],[-99.236521,34.358569],[-99.234843,34.356441],[-99.234135,34.353464],[-99.232646,34.35254],[-99.228772,34.350986],[-99.227977,34.349464],[-99.228636,34.348564],[-99.23031,34.347506],[-99.232113,34.345576],[-99.234046,34.342173],[-99.234298,34.340451],[-99.232632,34.338872],[-99.230519,34.337777],[-99.227117,34.337767],[-99.221843,34.340007],[-99.219647,34.341365],[-99.217203,34.341508],[-99.208832,34.339172],[-99.206905,34.338277],[-99.20946,34.337984],[-99.210725,34.337337],[-99.21082,34.336826],[-99.210582,34.336292],[-99.210992,34.332101],[-99.21066,34.329206],[-99.209574,34.324925],[-99.205936,34.320582],[-99.205628,34.319201],[-99.206584,34.31696],[-99.211432,34.313967],[-99.213302,34.310673],[-99.213161,34.308476],[-99.212521,34.306278],[-99.210999,34.303392],[-99.209695,34.298904],[-99.210075,34.295587],[-99.211448,34.292247],[-99.21092,34.289661],[-99.209535,34.286364],[-99.208927,34.28522],[-99.207352,34.283525],[-99.203473,34.281944],[-99.200016,34.281167],[-99.196058,34.281472],[-99.195553,34.281282],[-99.195403,34.280849],[-99.195744,34.278286],[-99.194651,34.274552],[-99.194459,34.271881],[-99.196679,34.269252],[-99.196461,34.267806],[-99.196682,34.266198],[-99.198017,34.262723],[-99.199254,34.260791],[-99.199053,34.26054],[-99.1967,34.260973],[-99.193838,34.260307],[-99.191849,34.259001],[-99.191422,34.25783],[-99.192018,34.255632],[-99.193943,34.253374],[-99.196199,34.249385],[-99.196912,34.244382],[-99.195061,34.239218],[-99.190936,34.232442],[-99.189986,34.229756],[-99.18992,34.227277],[-99.192019,34.222282],[-99.192811,34.218888],[-99.192355,34.21674],[-99.191156,34.215296],[-99.189776,34.214357],[-99.186817,34.213555],[-99.173824,34.211794],[-99.164135,34.208976],[-99.160881,34.209207],[-99.159194,34.208931],[-99.156823,34.207214],[-99.153653,34.207328],[-99.15134,34.207603],[-99.148721,34.20877],[-99.147239,34.209914],[-99.145075,34.212385],[-99.14391,34.214838],[-99.142471,34.215408],[-99.141545,34.21669],[-99.139489,34.217353],[-99.13897,34.21866],[-99.138076,34.219233],[-99.133397,34.219665],[-99.130443,34.219478],[-99.128351,34.218835],[-99.127394,34.218055],[-99.126799,34.217115],[-99.126495,34.215396],[-99.127429,34.213838],[-99.130012,34.212263],[-99.131559,34.209417],[-99.131986,34.207436],[-99.131168,34.205742],[-99.129889,34.20446],[-99.12664,34.203064],[-99.124969,34.202972],[-99.121004,34.20185],[-99.119254,34.201809],[-99.11778,34.202447],[-99.116965,34.203729],[-99.115104,34.204895],[-99.111807,34.20598],[-99.108417,34.205271],[-99.108383,34.204788],[-99.109622,34.205084],[-99.110628,34.204968],[-99.111003,34.2046],[-99.110459,34.204257],[-99.108766,34.204235],[-99.108546,34.204143],[-99.108894,34.203524],[-99.108201,34.203547],[-99.106301,34.204698],[-99.103395,34.205046],[-99.102186,34.205483],[-99.100249,34.208867],[-99.099354,34.209852],[-99.097876,34.211019],[-99.096211,34.211705],[-99.094168,34.211658],[-99.092851,34.210742],[-99.093299,34.210124],[-99.092064,34.209368],[-99.088923,34.208475],[-99.0866,34.208702],[-99.083804,34.20973],[-99.080577,34.211483],[-99.079392,34.21155],[-99.075837,34.211249],[-99.070159,34.209074],[-99.066329,34.20843],[-99.063105,34.206851],[-99.060212,34.204794],[-99.059497,34.203926],[-99.058688,34.201296],[-99.057976,34.20061],[-99.048685,34.198248],[-99.044463,34.198106],[-99.043358,34.198242],[-99.041972,34.199359],[-99.040837,34.200864],[-99.03888,34.204669],[-99.037336,34.206446],[-99.03615,34.206901],[-99.02576,34.204807],[-99.024768,34.204418],[-99.024465,34.203984],[-99.020661,34.204684],[-99.017271,34.206314],[-99.015041,34.203896],[-99.013673,34.20319],[-99.012957,34.203194],[-99.009823,34.205289],[-99.008944,34.205167],[-99.005674,34.206594],[-99.002242,34.209374],[-99.001745,34.210353],[-99.004198,34.211954],[-99.004695,34.214145],[-99.003867,34.214895],[-99.001549,34.215599],[-99.000632,34.216715],[-99.000592,34.217672],[-98.997327,34.21865],[-98.995838,34.219652],[-98.991703,34.221427],[-98.988172,34.22131],[-98.985662,34.220417],[-98.980917,34.217059],[-98.980695,34.215735],[-98.978569,34.210123],[-98.97661,34.207885],[-98.97647,34.206198],[-98.974015,34.203482],[-98.972609,34.202591],[-98.968886,34.201218],[-98.966626,34.201101],[-98.965743,34.201465],[-98.962931,34.203833],[-98.962352,34.204562],[-98.961967,34.206272],[-98.962189,34.211177],[-98.961941,34.211838],[-98.959984,34.213272],[-98.958357,34.213704],[-98.951284,34.212189],[-98.95035,34.211578],[-98.949673,34.209995],[-98.948685,34.209229],[-98.947141,34.208862],[-98.942453,34.20506],[-98.94022,34.203686],[-98.936664,34.20002],[-98.935202,34.19789],[-98.934679,34.197523],[-98.9333,34.197317],[-98.928145,34.192689],[-98.927456,34.191155],[-98.92503,34.188635],[-98.923129,34.185978],[-98.920704,34.183435],[-98.918333,34.181831],[-98.915357,34.18096],[-98.909349,34.177499],[-98.905876,34.177178],[-98.896616,34.174495],[-98.895129,34.173509],[-98.892263,34.172294],[-98.891657,34.171355],[-98.890473,34.170392],[-98.887112,34.16826],[-98.884467,34.167618],[-98.880415,34.167272],[-98.87606,34.167705],[-98.874849,34.167522],[-98.872922,34.166584],[-98.871543,34.165027],[-98.871211,34.163012],[-98.872229,34.160446],[-98.874955,34.157031],[-98.874872,34.155657],[-98.873271,34.153596],[-98.869246,34.150207],[-98.868116,34.149635],[-98.865747,34.149132],[-98.86255,34.149111],[-98.860125,34.149913],[-98.858419,34.152732],[-98.85842,34.155389],[-98.8579,34.159627],[-98.857322,34.161094],[-98.855585,34.161621],[-98.853849,34.161553],[-98.850762,34.159882],[-98.846518,34.159654],[-98.844727,34.159082],[-98.843542,34.158143],[-98.842191,34.158051],[-98.840676,34.157296],[-98.837066,34.156495],[-98.836294,34.156678],[-98.834063,34.158259],[-98.833346,34.159107],[-98.832135,34.161787],[-98.831115,34.162154],[-98.825079,34.160391],[-98.815269,34.158101],[-98.812954,34.158444],[-98.80681,34.155901],[-98.804413,34.153931],[-98.799756,34.147883],[-98.797966,34.144608],[-98.796203,34.142775],[-98.792015,34.143736],[-98.79072,34.144584],[-98.789094,34.146485],[-98.788405,34.146668],[-98.783006,34.142337],[-98.778076,34.139495],[-98.771795,34.138302],[-98.76557,34.136376],[-98.761797,34.133785],[-98.760558,34.132388],[-98.759486,34.128882],[-98.759653,34.126912],[-98.75745,34.124713],[-98.757037,34.124633],[-98.749291,34.124238],[-98.746263,34.12554],[-98.741966,34.12553],[-98.740589,34.126294],[-98.739461,34.127394],[-98.737232,34.130992],[-98.737177,34.13255],[-98.73682,34.133374],[-98.735471,34.135208],[-98.734287,34.135758],[-98.731036,34.136011],[-98.728502,34.135279],[-98.726188,34.135486],[-98.723626,34.135189],[-98.718639,34.136473],[-98.717537,34.13645],[-98.716104,34.135947],[-98.714947,34.134847],[-98.71423,34.133404],[-98.71412,34.132144],[-98.712467,34.13116],[-98.710731,34.131206],[-98.70996,34.131549],[-98.706132,34.134986],[-98.703047,34.135903],[-98.700182,34.135995],[-98.696518,34.133521],[-98.693405,34.13375],[-98.690898,34.133018],[-98.690072,34.133155],[-98.685828,34.136041],[-98.68536,34.137187],[-98.68412,34.13879],[-98.678693,34.142135],[-98.67715,34.142501],[-98.676626,34.142913],[-98.673733,34.145868],[-98.672934,34.147472],[-98.670922,34.149373],[-98.665824,34.151617],[-98.663179,34.153312],[-98.659899,34.156128],[-98.655655,34.158258],[-98.652347,34.161029],[-98.650583,34.163113],[-98.649534,34.163433],[-98.648073,34.164441],[-98.643223,34.164531],[-98.639642,34.16343],[-98.63573,34.161618],[-98.629117,34.159806],[-98.621666,34.157195],[-98.616733,34.156418],[-98.613096,34.156282],[-98.611829,34.156558],[-98.608853,34.157521],[-98.606732,34.159034],[-98.603978,34.160249],[-98.602131,34.160593],[-98.599789,34.160571],[-98.597502,34.159128],[-98.592954,34.157297],[-98.583914,34.151298],[-98.579147,34.149695],[-98.578128,34.149031],[-98.577136,34.148962],[-98.572451,34.145091],[-98.571459,34.143488],[-98.569724,34.141586],[-98.56774,34.13996],[-98.567298,34.138242],[-98.566609,34.13744],[-98.560191,34.133202],[-98.558621,34.132973],[-98.553717,34.13366],[-98.552836,34.133568],[-98.55088,34.132583],[-98.550384,34.131736],[-98.550357,34.129239],[-98.551046,34.127818],[-98.551845,34.127131],[-98.554324,34.126605],[-98.557602,34.128437],[-98.558593,34.128254],[-98.559558,34.127704],[-98.560136,34.126926],[-98.560976,34.125092],[-98.560977,34.123922],[-98.558027,34.122856],[-98.55682,34.121079],[-98.555747,34.120134],[-98.55387,34.119542],[-98.550917,34.119334],[-98.536257,34.107347],[-98.533678,34.103269],[-98.530611,34.099843],[-98.5282,34.094961],[-98.524614,34.092595],[-98.521928,34.089803],[-98.516875,34.085984],[-98.513812,34.082011],[-98.504149,34.072287],[-98.501375,34.071921],[-98.49812,34.070307],[-98.494613,34.07009],[-98.491727,34.067771],[-98.489346,34.066579],[-98.488268,34.065473],[-98.487824,34.063768],[-98.486328,34.062598],[-98.483551,34.062277],[-98.480713,34.062499],[-98.473525,34.064734],[-98.471465,34.065665],[-98.468184,34.068991],[-98.466002,34.073081],[-98.465133,34.073729],[-98.461959,34.073836],[-98.454665,34.072577],[-98.45169,34.072615],[-98.449034,34.073462],[-98.446379,34.07543],[-98.445784,34.076827],[-98.445921,34.078413],[-98.445585,34.079298],[-98.443724,34.082152],[-98.442808,34.083144],[-98.440092,34.084311],[-98.432127,34.085622],[-98.42848,34.085523],[-98.42523,34.084799],[-98.423533,34.082843],[-98.420408,34.082314],[-98.417813,34.083029],[-98.414426,34.085074],[-98.411052,34.088592],[-98.410517,34.090807],[-98.409723,34.092509],[-98.409596,34.09407],[-98.411511,34.098615],[-98.411649,34.099554],[-98.411374,34.100324],[-98.409924,34.101247],[-98.407727,34.101369],[-98.406735,34.10114],[-98.403821,34.099279],[-98.402158,34.098653],[-98.40051,34.099042],[-98.399777,34.099973],[-98.398389,34.104566],[-98.398297,34.111333],[-98.398648,34.115728],[-98.39816,34.121396],[-98.400494,34.121778],[-98.400967,34.122236],[-98.400159,34.124364],[-98.399355,34.125093],[-98.398524,34.127356],[-98.398441,34.128456],[-98.394032,34.131913],[-98.389403,34.133217],[-98.38775,34.133033],[-98.385767,34.132162],[-98.383785,34.129916],[-98.382959,34.129549],[-98.382298,34.129572],[-98.380093,34.130831],[-98.379762,34.131174],[-98.37979,34.131839],[-98.380421,34.13429],[-98.383726,34.136307],[-98.384965,34.136651],[-98.386232,34.137728],[-98.386865,34.138873],[-98.387084,34.140912],[-98.38485,34.143844],[-98.384381,34.146317],[-98.383222,34.147806],[-98.381238,34.149454],[-98.378152,34.149957],[-98.376911,34.150552],[-98.374461,34.150758],[-98.370936,34.15186],[-98.370082,34.152616],[-98.367907,34.155824],[-98.366778,34.156649],[-98.365621,34.156993],[-98.364023,34.157109],[-98.348894,34.154502],[-98.343163,34.154115],[-98.341454,34.153153],[-98.336384,34.152444],[-98.333601,34.151688],[-98.331479,34.151391],[-98.328421,34.151643],[-98.325445,34.151025],[-98.32258,34.14972],[-98.31875,34.146421],[-98.315939,34.144864],[-98.314589,34.143695],[-98.310952,34.141932],[-98.308638,34.139755],[-98.301201,34.135472],[-98.300209,34.134579],[-98.296849,34.134189],[-98.293901,34.13302],[-98.280321,34.13075],[-98.276878,34.131046],[-98.272994,34.132213],[-98.271561,34.132282],[-98.268972,34.131616],[-98.266217,34.132051],[-98.264729,34.131913],[-98.2617,34.131568],[-98.257872,34.129665],[-98.256467,34.129481],[-98.253272,34.129732],[-98.247954,34.130717],[-98.241013,34.133103],[-98.239141,34.134547],[-98.235477,34.1348],[-98.232474,34.134641],[-98.231042,34.134023],[-98.225558,34.129283],[-98.225282,34.127245],[-98.2236,34.125093],[-98.219494,34.123469],[-98.216463,34.121821],[-98.209219,34.120997],[-98.208008,34.120539],[-98.20517,34.118341],[-98.201728,34.117058],[-98.187213,34.115341],[-98.170827,34.114171],[-98.16879,34.114262],[-98.166228,34.116255],[-98.157412,34.120467],[-98.154354,34.122734],[-98.14744,34.13068],[-98.147274,34.131939],[-98.145951,34.133932],[-98.142754,34.136359],[-98.141596,34.137847],[-98.140079,34.141008],[-98.138316,34.142519],[-98.136991,34.144786],[-98.135145,34.145494],[-98.134207,34.14751],[-98.130816,34.150532],[-98.128198,34.151057],[-98.125993,34.153164],[-98.123377,34.15454],[-98.122468,34.154678],[-98.120925,34.154358],[-98.11828,34.154749],[-98.114506,34.154727],[-98.109462,34.154111],[-98.107065,34.152531],[-98.105217,34.150173],[-98.103178,34.148318],[-98.101937,34.14683],[-98.100559,34.143486],[-98.100558,34.142135],[-98.103172,34.135194],[-98.103309,34.13414],[-98.102895,34.132605],[-98.102344,34.131918],[-98.100498,34.131369],[-98.094439,34.132379],[-98.092373,34.13215],[-98.090224,34.130181],[-98.089755,34.128211],[-98.090634,34.125093],[-98.09066,34.12198],[-98.092421,34.116917],[-98.095118,34.11119],[-98.099328,34.104295],[-98.104309,34.0982],[-98.109924,34.09293],[-98.112649,34.090867],[-98.114575,34.088668],[-98.118482,34.085619],[-98.119417,34.084474],[-98.119527,34.083672],[-98.121039,34.081266],[-98.121039,34.080327],[-98.120598,34.07925],[-98.120208,34.072127],[-98.11803,34.067065],[-98.114587,34.06228],[-98.11087,34.059876],[-98.101893,34.050969],[-98.100627,34.049984],[-98.09526,34.047626],[-98.093526,34.047192],[-98.087472,34.0441],[-98.083839,34.041719],[-98.082463,34.039428],[-98.082655,34.038191],[-98.08381,34.036656],[-98.089037,34.033838],[-98.091788,34.033654],[-98.093219,34.034547],[-98.09655,34.038051],[-98.098613,34.038852],[-98.101695,34.039057],[-98.103538,34.03853],[-98.105025,34.037545],[-98.106179,34.034887],[-98.106261,34.033696],[-98.104884,34.031841],[-98.103617,34.029207],[-98.099268,34.025429],[-98.098442,34.023918],[-98.095443,34.021697],[-98.089555,34.01927],[-98.087684,34.016888],[-98.085538,34.01595],[-98.084025,34.014369],[-98.082401,34.009834],[-98.083611,34.00949],[-98.084189,34.008528],[-98.084601,34.008368],[-98.087104,34.008344],[-98.088149,34.007932],[-98.088809,34.007176],[-98.088203,34.005481],[-98.08526,34.003259],[-98.082839,34.002412],[-98.078851,34.001542],[-98.073267,34.001016],[-98.071425,34.000096],[-98.061907,33.997971],[-98.05935,33.99678],[-98.055197,33.995841],[-98.048118,33.994474],[-98.044692,33.994282],[-98.041117,33.993456],[-98.033252,33.99389],[-98.027672,33.993357],[-98.025086,33.994091],[-98.022551,33.993612],[-98.019485,33.993804],[-98.017345,33.994303],[-98.015101,33.994136],[-97.999624,33.99711],[-97.998938,33.997024],[-97.990861,33.998873],[-97.987388,33.999823],[-97.985366,34.000959],[-97.983521,34.001559],[-97.980607,34.003599],[-97.979508,34.004722],[-97.97684,34.006051],[-97.974173,34.006716],[-97.972605,34.006144],[-97.97167,34.005434],[-97.969358,34.002136],[-97.967818,34.000946],[-97.967708,34.000576],[-97.96823,34.000785],[-97.96834,34.00053],[-97.963028,33.994235],[-97.958325,33.990846],[-97.95585,33.990136],[-97.952688,33.990114],[-97.947572,33.991053],[-97.946473,33.990732],[-97.94573,33.989839],[-97.94595,33.988396],[-97.948644,33.982601],[-97.949827,33.979188],[-97.95274,33.969567],[-97.954499,33.966451],[-97.956917,33.958502],[-97.958455,33.95612],[-97.958895,33.954516],[-97.960351,33.951928],[-97.965737,33.947392],[-97.966616,33.947415],[-97.968897,33.94588],[-97.972662,33.944527],[-97.974173,33.942832],[-97.974062,33.940289],[-97.972494,33.937907],[-97.971175,33.937129],[-97.965953,33.936191],[-97.963425,33.936237],[-97.955511,33.938186],[-97.954467,33.937774],[-97.953395,33.936445],[-97.952679,33.929482],[-97.953695,33.924373],[-97.954217,33.923549],[-97.957155,33.914454],[-97.958226,33.912897],[-97.961632,33.909414],[-97.965395,33.906917],[-97.968747,33.906023],[-97.970532,33.906297],[-97.973143,33.908014],[-97.974764,33.909709],[-97.975837,33.911633],[-97.976963,33.912549],[-97.978804,33.912548],[-97.979985,33.911402],[-97.983552,33.904002],[-97.98454,33.900703],[-97.984373,33.898024],[-97.9819,33.895322],[-97.97786,33.889825],[-97.974263,33.886706],[-97.974177,33.886347],[-97.967752,33.882214],[-97.960716,33.879733],[-97.957064,33.878767],[-97.951201,33.878396],[-97.942868,33.879062],[-97.942483,33.878776],[-97.941578,33.879181],[-97.938948,33.879466],[-97.934169,33.878109],[-97.93229,33.876495],[-97.928584,33.874187],[-97.91826,33.869948],[-97.914443,33.868642],[-97.912961,33.868481],[-97.909858,33.867221],[-97.909282,33.866625],[-97.907058,33.865571],[-97.905467,33.863531],[-97.901294,33.86124],[-97.898467,33.858925],[-97.896738,33.857985],[-97.894239,33.857068],[-97.888721,33.856723],[-97.888419,33.856265],[-97.889408,33.856288],[-97.883204,33.854362],[-97.879829,33.852436],[-97.878183,33.850534],[-97.875311,33.849721],[-97.871502,33.849093],[-97.864175,33.849745],[-97.852241,33.853091],[-97.847802,33.854735],[-97.843777,33.856813],[-97.841581,33.856272],[-97.83432,33.857634],[-97.833225,33.858334],[-97.831854,33.860087],[-97.831894,33.860774],[-97.831132,33.861741],[-97.825877,33.864474],[-97.822994,33.866467],[-97.820743,33.868895],[-97.819672,33.870544],[-97.818931,33.874003],[-97.819428,33.8779],[-97.819236,33.879091],[-97.817643,33.880992],[-97.815501,33.882],[-97.813853,33.881931],[-97.812508,33.881153],[-97.811464,33.880053],[-97.810119,33.877923],[-97.808938,33.876709],[-97.8074,33.876159],[-97.806659,33.876205],[-97.805423,33.877167],[-97.803473,33.88019],[-97.801578,33.885138],[-97.801631,33.889833],[-97.801136,33.890933],[-97.80163,33.89588],[-97.79891,33.898537],[-97.797015,33.899499],[-97.79479,33.899956],[-97.7924,33.899085],[-97.788145,33.89377],[-97.788145,33.892076],[-97.785317,33.890701],[-97.784656,33.890631],[-97.78128,33.89446],[-97.780839,33.894447],[-97.781003,33.894936],[-97.780041,33.897205],[-97.779683,33.899243],[-97.779682,33.901374],[-97.78034,33.904833],[-97.783717,33.91056],[-97.785474,33.912164],[-97.786133,33.913424],[-97.785913,33.914981],[-97.783522,33.918302],[-97.780499,33.919675],[-97.778301,33.919629],[-97.775527,33.917841],[-97.774072,33.916444],[-97.772672,33.914382],[-97.767781,33.91351],[-97.765446,33.913532],[-97.76377,33.914241],[-97.761736,33.915615],[-97.760224,33.917194],[-97.759399,33.91882],[-97.759834,33.92521],[-97.761425,33.929219],[-97.762661,33.930846],[-97.763043,33.934145],[-97.762768,33.934396],[-97.75499,33.936752],[-97.75295,33.937102],[-97.751143,33.936979],[-97.749172,33.936229],[-97.741327,33.937376],[-97.738467,33.937305],[-97.735507,33.936248],[-97.732261,33.936519],[-97.724698,33.941456],[-97.72428,33.942237],[-97.721172,33.944506],[-97.720647,33.944618],[-97.720604,33.943955],[-97.716637,33.947179],[-97.712194,33.951641],[-97.709539,33.954881],[-97.704159,33.963336],[-97.701769,33.969932],[-97.69946,33.974193],[-97.699185,33.975705],[-97.698581,33.975842],[-97.697564,33.978316],[-97.697206,33.978385],[-97.696134,33.979942],[-97.695694,33.98008],[-97.69311,33.983699],[-97.690058,33.984981],[-97.688738,33.986058],[-97.688711,33.986516],[-97.688023,33.986607],[-97.687694,33.98718],[-97.686016,33.98789],[-97.684229,33.988417],[-97.683762,33.988073],[-97.681425,33.988439],[-97.673669,33.990912],[-97.672514,33.990935],[-97.671277,33.991553],[-97.667703,33.991094],[-97.668033,33.990407],[-97.661489,33.990818],[-97.657585,33.989535],[-97.65621,33.989488],[-97.655633,33.98919],[-97.65566,33.98887],[-97.657255,33.988824],[-97.64964,33.986532],[-97.648209,33.986394],[-97.644059,33.984468],[-97.633778,33.981257],[-97.630728,33.979309],[-97.629601,33.97924],[-97.628941,33.978735],[-97.628694,33.978094],[-97.624573,33.97585],[-97.62185,33.972988],[-97.61756,33.970791],[-97.616075,33.969716],[-97.614151,33.969488],[-97.609091,33.968093],[-97.606974,33.966193],[-97.606726,33.965574],[-97.604526,33.96404],[-97.604333,33.962758],[-97.600979,33.960789],[-97.600896,33.958888],[-97.600401,33.957926],[-97.599466,33.956323],[-97.59798,33.955247],[-97.596358,33.954537],[-97.590971,33.954241],[-97.589597,33.953554],[-97.588827,33.951882],[-97.591409,33.948057],[-97.592151,33.945949],[-97.594377,33.944094],[-97.59542,33.941436],[-97.595419,33.938917],[-97.595034,33.93736],[-97.593302,33.933924],[-97.591405,33.931955],[-97.591212,33.929643],[-97.591514,33.9282],[-97.595084,33.922954],[-97.596155,33.922106],[-97.596979,33.920228],[-97.59695,33.916311],[-97.596289,33.913769],[-97.593816,33.910265],[-97.593239,33.910059],[-97.592799,33.910357],[-97.591288,33.909922],[-97.589914,33.908044],[-97.589282,33.905754],[-97.589254,33.903922],[-97.587441,33.902479],[-97.581078,33.899679],[-97.578082,33.899216],[-97.572349,33.899263],[-97.569404,33.901115],[-97.568715,33.901379],[-97.56834,33.901077],[-97.566956,33.901583],[-97.562788,33.900925],[-97.56055,33.899343],[-97.560686,33.89861],[-97.559917,33.897603],[-97.55827,33.897099],[-97.555002,33.897282],[-97.551541,33.897947],[-97.549399,33.899068],[-97.543246,33.901289],[-97.537999,33.904334],[-97.534207,33.90573],[-97.525277,33.911751],[-97.523904,33.912232],[-97.524096,33.911705],[-97.519838,33.913421],[-97.517173,33.914016],[-97.51099,33.916327],[-97.50605,33.917495],[-97.500271,33.919635],[-97.494846,33.919193],[-97.487716,33.917508],[-97.486508,33.916991],[-97.486395,33.916399],[-97.470542,33.908984],[-97.469113,33.908618],[-97.463564,33.904955],[-97.46142,33.90523],[-97.460267,33.90436],[-97.460431,33.903581],[-97.459772,33.902596],[-97.458069,33.901635],[-97.457492,33.900513],[-97.456722,33.899826],[-97.456283,33.898566],[-97.454689,33.896825],[-97.451887,33.892428],[-97.451058,33.891676],[-97.451026,33.89069],[-97.4513,33.890459],[-97.450807,33.886608],[-97.451499,33.885214],[-97.451776,33.881595],[-97.451199,33.878183],[-97.451469,33.87093],[-97.452182,33.86896],[-97.453281,33.868044],[-97.453968,33.866693],[-97.456025,33.859432],[-97.455723,33.858104],[-97.455915,33.857646],[-97.456931,33.857073],[-97.457617,33.855126],[-97.457974,33.85508],[-97.459566,33.853316],[-97.461486,33.84956],[-97.463202,33.84309],[-97.463242,33.842004],[-97.462768,33.841864],[-97.462307,33.840261],[-97.459068,33.834581],[-97.456048,33.832246],[-97.454594,33.830002],[-97.453057,33.828536],[-97.445235,33.824643],[-97.444879,33.824048],[-97.444193,33.823773],[-97.437364,33.82181],[-97.433264,33.821259],[-97.430297,33.820418],[-97.428786,33.819415],[-97.426799,33.818641],[-97.418191,33.818707],[-97.414155,33.817977],[-97.413692,33.819304],[-97.410387,33.818845],[-97.406435,33.818821],[-97.403263,33.819523],[-97.400083,33.819483],[-97.395129,33.819963],[-97.391617,33.819343],[-97.390575,33.818839],[-97.386205,33.819513],[-97.380288,33.818526],[-97.375775,33.818832],[-97.37469,33.818552],[-97.368731,33.821443],[-97.365497,33.823744],[-97.358513,33.830018],[-97.357334,33.831369],[-97.355991,33.83501],[-97.354318,33.837965],[-97.352946,33.838836],[-97.34971,33.843372],[-97.348338,33.843876],[-97.347213,33.845113],[-97.346747,33.846945],[-97.344388,33.851504],[-97.344141,33.853061],[-97.342797,33.854825],[-97.342166,33.856199],[-97.342138,33.857184],[-97.339641,33.860734],[-97.338379,33.8663],[-97.338106,33.87056],[-97.337244,33.875101],[-97.335915,33.879168],[-97.334845,33.881802],[-97.33361,33.883566],[-97.33188,33.884483],[-97.32864,33.884827],[-97.326608,33.884414],[-97.323779,33.881712],[-97.323367,33.880934],[-97.32334,33.87917],[-97.324218,33.876628],[-97.328057,33.870263],[-97.334178,33.862888],[-97.334644,33.861445],[-97.334616,33.857231],[-97.334177,33.856246],[-97.333436,33.855559],[-97.332063,33.855056],[-97.328729,33.855434],[-97.326098,33.857083],[-97.320346,33.862299],[-97.318091,33.86353],[-97.316389,33.865775],[-97.315511,33.866164],[-97.314257,33.865089],[-97.314254,33.866985],[-97.310727,33.872476],[-97.309946,33.874449],[-97.309426,33.877769],[-97.309442,33.880147],[-97.309846,33.883003],[-97.311192,33.887089],[-97.310324,33.88849],[-97.309172,33.888698],[-97.307633,33.888011],[-97.302224,33.883888],[-97.2972,33.878597],[-97.287808,33.870054],[-97.281032,33.865482],[-97.275487,33.863266],[-97.275903,33.860878],[-97.275241,33.859675],[-97.275607,33.858168],[-97.270644,33.858073],[-97.266874,33.859957],[-97.265839,33.861731],[-97.265087,33.862413],[-97.263446,33.862888],[-97.256628,33.863292],[-97.255639,33.863702],[-97.254235,33.865323],[-97.253163,33.867911],[-97.250293,33.872708],[-97.249209,33.875101],[-97.248789,33.882818],[-97.246537,33.887499],[-97.247124,33.889383],[-97.24687,33.897357],[-97.246302,33.900472],[-97.245049,33.903216],[-97.241536,33.906911],[-97.239467,33.907976],[-97.231587,33.910223],[-97.228462,33.913254],[-97.226936,33.91317],[-97.226243,33.913343],[-97.225815,33.913833],[-97.210921,33.916064],[-97.206141,33.91428],[-97.203174,33.912105],[-97.200372,33.908761],[-97.19845,33.907525],[-97.190813,33.903815],[-97.189165,33.902601],[-97.186584,33.901548],[-97.182575,33.897609],[-97.180845,33.895204],[-97.179307,33.891127],[-97.178155,33.883707],[-97.176426,33.879081],[-97.176343,33.878394],[-97.176591,33.877432],[-97.17703,33.877203],[-97.176975,33.876699],[-97.169947,33.859656],[-97.168685,33.856037],[-97.166629,33.847311],[-97.167262,33.841563],[-97.166824,33.840395],[-97.171627,33.835335],[-97.175826,33.833801],[-97.176869,33.833001],[-97.179943,33.831673],[-97.18137,33.831375],[-97.186254,33.830894],[-97.19369,33.831307],[-97.195832,33.830805],[-97.197509,33.829834],[-97.199801,33.827405],[-97.203514,33.821825],[-97.204995,33.81887],[-97.204748,33.816947],[-97.204829,33.810122],[-97.204911,33.80971],[-97.205323,33.809756],[-97.20557,33.81145],[-97.205789,33.810053],[-97.205569,33.809091],[-97.205705,33.802908],[-97.205431,33.801488],[-97.204827,33.799908],[-97.203236,33.797343],[-97.200959,33.795442],[-97.200492,33.793198],[-97.196843,33.78894],[-97.195554,33.78784],[-97.195691,33.78681],[-97.194786,33.785344],[-97.192838,33.783146],[-97.19122,33.782184],[-97.190397,33.781153],[-97.189328,33.776939],[-97.189383,33.776138],[-97.189712,33.775978],[-97.190809,33.776436],[-97.188513,33.77241],[-97.187724,33.769831],[-97.188108,33.768007],[-97.190691,33.765143],[-97.191321,33.763537],[-97.192817,33.761169],[-97.192851,33.760362],[-97.191454,33.757966],[-97.185325,33.755503],[-97.184968,33.75603],[-97.181843,33.75587],[-97.18272,33.75548],[-97.181843,33.755366],[-97.180143,33.754495],[-97.178209,33.750104],[-97.176302,33.74776],[-97.17463,33.745035],[-97.174,33.74318],[-97.173617,33.739607],[-97.173287,33.738988],[-97.17219,33.737545],[-97.165256,33.730954],[-97.163145,33.729329],[-97.157373,33.725535],[-97.154367,33.724094],[-97.142227,33.719918],[-97.133915,33.718128],[-97.125135,33.71709],[-97.120685,33.717211],[-97.111057,33.719374],[-97.107191,33.721162],[-97.103344,33.723356],[-97.096748,33.728106],[-97.090488,33.735912],[-97.087365,33.741139],[-97.086201,33.744162],[-97.084944,33.752328],[-97.084802,33.7616],[-97.085191,33.764738],[-97.086568,33.770695],[-97.090822,33.78078],[-97.094274,33.787962],[-97.095098,33.792172],[-97.095238,33.798404],[-97.093765,33.802488],[-97.092646,33.804198],[-97.087335,33.808464],[-97.082476,33.811102],[-97.079105,33.812317],[-97.072067,33.814049],[-97.057957,33.816193],[-97.050852,33.816604],[-97.048146,33.817456],[-97.047539,33.822297],[-97.048315,33.82787],[-97.049316,33.829794],[-97.051949,33.832993],[-97.054675,33.835049],[-97.056967,33.836203],[-97.062282,33.83799],[-97.071041,33.839638],[-97.08345,33.840456],[-97.087204,33.841368],[-97.090115,33.843961],[-97.090538,33.845215],[-97.090334,33.847523],[-97.088498,33.851849],[-97.086772,33.853849],[-97.082708,33.85607],[-97.073473,33.859314],[-97.069536,33.860365],[-97.06704,33.860514],[-97.063786,33.859965],[-97.062047,33.859354],[-97.057373,33.857214],[-97.056546,33.856476],[-97.054692,33.853922],[-97.05356,33.850998],[-97.051143,33.84681],[-97.046126,33.83956],[-97.041832,33.837756],[-97.039428,33.837893],[-97.031333,33.841238],[-97.021438,33.846379],[-97.014392,33.853889],[-97.010951,33.857976],[-97.009856,33.859762],[-97.003514,33.865397],[-96.999998,33.867894],[-96.997088,33.871017],[-96.993933,33.875656],[-96.9919,33.87985],[-96.989576,33.882846],[-96.98907,33.884424],[-96.988043,33.886013],[-96.986034,33.888256],[-96.984683,33.888651],[-96.983835,33.890949],[-96.984725,33.903059],[-96.985326,33.906607],[-96.987746,33.914057],[-96.987875,33.917046],[-96.993997,33.928979],[-96.995023,33.932035],[-96.996251,33.942664],[-96.995791,33.946076],[-96.994674,33.948681],[-96.990835,33.952701],[-96.987892,33.954671],[-96.981337,33.956378],[-96.979927,33.956347],[-96.97929,33.955969],[-96.979347,33.95513],[-96.980676,33.951814],[-96.981031,33.94916],[-96.979818,33.941588],[-96.978754,33.939541],[-96.976955,33.937453],[-96.974869,33.93606],[-96.97287,33.935698],[-96.970703,33.937286],[-96.966378,33.939539],[-96.960017,33.941265],[-96.951782,33.944744],[-96.949041,33.946858],[-96.939136,33.951927],[-96.93484,33.954453],[-96.924268,33.959159],[-96.920733,33.959523],[-96.917652,33.95858],[-96.9163,33.957798],[-96.911336,33.95396],[-96.907387,33.950025],[-96.905253,33.947219],[-96.900996,33.938784],[-96.899442,33.933728],[-96.898274,33.9258],[-96.897868,33.920817],[-96.896469,33.913318],[-96.897194,33.902954],[-96.895728,33.896414],[-96.893673,33.893116],[-96.892786,33.889938],[-96.890499,33.885648],[-96.889497,33.881616],[-96.887558,33.878487],[-96.886015,33.875102],[-96.885687,33.873543],[-96.88301,33.868019],[-96.875281,33.860505],[-96.866438,33.853149],[-96.860247,33.849689],[-96.85609,33.84749],[-96.850593,33.847211],[-96.845896,33.848975],[-96.843709,33.850575],[-96.841592,33.852894],[-96.841481,33.857239],[-96.840819,33.863645],[-96.839775,33.868398],[-96.837413,33.871349],[-96.832879,33.874025],[-96.832157,33.874835],[-96.828163,33.874603],[-96.812778,33.872646],[-96.794276,33.868886],[-96.783485,33.863534],[-96.780569,33.860098],[-96.779588,33.857939],[-96.779376,33.856116],[-96.778783,33.854734],[-96.777202,33.848162],[-96.777104,33.843792],[-96.776766,33.841976],[-96.774531,33.838109],[-96.770675,33.829621],[-96.769377,33.827478],[-96.766234,33.825459],[-96.761587,33.824407],[-96.75404,33.824658],[-96.746038,33.825699],[-96.731618,33.828475],[-96.725102,33.830313],[-96.718922,33.830588],[-96.712422,33.831633],[-96.708134,33.83306],[-96.704457,33.835021],[-96.699574,33.839049],[-96.690708,33.849959],[-96.688191,33.854613],[-96.684727,33.862905],[-96.683048,33.869222],[-96.682209,33.873876],[-96.682103,33.876645],[-96.683464,33.884217],[-96.681494,33.894675],[-96.680947,33.896204],[-96.678572,33.900857],[-96.675306,33.909114],[-96.673449,33.912278],[-96.670618,33.914914],[-96.667187,33.91694],[-96.66441,33.917267],[-96.659896,33.916666],[-96.658207,33.915841],[-96.654984,33.913789],[-96.647735,33.907973],[-96.64405,33.905962],[-96.630117,33.895422],[-96.628294,33.894477],[-96.626404,33.894392],[-96.624093,33.895141],[-96.614844,33.894546],[-96.59217,33.895513],[-96.587934,33.894784],[-96.585452,33.891281],[-96.58536,33.888948],[-96.587494,33.884251],[-96.590112,33.880665],[-96.597348,33.875101],[-96.601686,33.872823],[-96.61197,33.869016],[-96.612963,33.867651],[-96.625399,33.856542],[-96.629022,33.852408],[-96.629751,33.850863],[-96.63002,33.848539],[-96.629847,33.846561],[-96.629274,33.8455],[-96.623147,33.841496],[-96.618022,33.839586],[-96.612331,33.838156],[-96.601256,33.834329],[-96.592926,33.830915],[-96.587067,33.828008],[-96.572937,33.819098],[-96.566666,33.818511],[-96.563599,33.819165],[-96.56042,33.818862],[-96.556213,33.819142],[-96.556997,33.817983],[-96.558004,33.817642],[-96.558109,33.817131],[-96.557122,33.817565],[-96.555654,33.819389],[-96.554923,33.819279],[-96.555028,33.818867],[-96.553982,33.819175],[-96.551065,33.819252],[-96.551809,33.818834],[-96.551704,33.818477],[-96.548754,33.819944],[-96.545417,33.820124],[-96.543139,33.820816],[-96.541677,33.820805],[-96.533368,33.82277],[-96.531966,33.823989],[-96.531729,33.823462],[-96.532131,33.823572],[-96.532513,33.822858],[-96.528623,33.821664],[-96.524865,33.819526],[-96.524069,33.817503],[-96.520609,33.812623],[-96.517848,33.806858],[-96.51656,33.802248],[-96.515689,33.795165],[-96.515745,33.791418],[-96.516581,33.788279],[-96.51591,33.787792],[-96.512709,33.782801],[-96.510855,33.780608],[-96.508487,33.778321],[-96.500984,33.772801],[-96.500352,33.773257],[-96.500233,33.772586],[-96.493375,33.77304],[-96.486341,33.772965],[-96.476694,33.77493],[-96.473092,33.775445],[-96.471154,33.775205],[-96.469365,33.775792],[-96.459154,33.775232],[-96.456254,33.776035],[-96.45051,33.780588],[-96.448045,33.781031],[-96.442042,33.780488],[-96.436714,33.779329],[-96.431987,33.779105],[-96.423532,33.776432],[-96.421462,33.774939],[-96.418978,33.771637],[-96.416146,33.766099],[-96.414576,33.761199],[-96.413632,33.759268],[-96.413408,33.757714],[-96.40822,33.750542],[-96.406589,33.749042],[-96.405452,33.748497],[-96.399976,33.743551],[-96.395046,33.738401],[-96.388986,33.733585],[-96.382828,33.729269],[-96.379452,33.725764],[-96.378438,33.723975],[-96.375485,33.720876],[-96.370847,33.717996],[-96.369589,33.716809],[-96.368447,33.714926],[-96.366944,33.711223],[-96.366015,33.705493],[-96.363252,33.70105],[-96.363135,33.694215],[-96.362197,33.691818],[-96.359374,33.689432],[-96.355634,33.687494],[-96.354089,33.686983],[-96.351933,33.687028],[-96.350566,33.686572],[-96.346859,33.686216],[-96.342568,33.686755],[-96.338756,33.688316],[-96.334604,33.692366],[-96.332917,33.693158],[-96.328076,33.694158],[-96.322152,33.694705],[-96.321098,33.695102],[-96.318378,33.697118],[-96.314886,33.702696],[-96.31223,33.706304],[-96.309964,33.710491],[-96.308682,33.713988],[-96.308183,33.716851],[-96.308529,33.71762],[-96.308168,33.71867],[-96.307298,33.71954],[-96.306364,33.723062],[-96.30631,33.729347],[-96.307874,33.735022],[-96.30765,33.737451],[-96.30692,33.738956],[-96.306163,33.744032],[-96.303657,33.748328],[-96.300147,33.755681],[-96.299637,33.75615],[-96.29961,33.756924],[-96.29811,33.759125],[-96.297794,33.761213],[-96.298202,33.761015],[-96.298255,33.7594],[-96.298827,33.758548],[-96.298761,33.760905],[-96.297031,33.763234],[-96.296412,33.766833],[-96.295194,33.768338],[-96.293708,33.769409],[-96.292161,33.76981],[-96.290359,33.770831],[-96.287083,33.771243],[-96.278301,33.770598],[-96.268928,33.767958],[-96.263593,33.767467],[-96.262133,33.766922],[-96.256893,33.763728],[-96.255092,33.761634],[-96.248243,33.759106],[-96.238724,33.753693],[-96.236926,33.753259],[-96.230352,33.748524],[-96.229023,33.748021],[-96.224599,33.748327],[-96.220522,33.74739],[-96.215851,33.749179],[-96.208994,33.750096],[-96.203266,33.751339],[-96.202142,33.752015],[-96.201319,33.751795],[-96.197985,33.752554],[-96.190166,33.75557],[-96.188015,33.75602],[-96.186627,33.755021],[-96.187732,33.756097],[-96.178603,33.760426],[-96.172933,33.765221],[-96.16909,33.770417],[-96.168333,33.772538],[-96.168112,33.774475],[-96.167538,33.774485],[-96.166595,33.77768],[-96.165199,33.78013],[-96.165114,33.781638],[-96.1641,33.784261],[-96.162775,33.786421],[-96.163597,33.786936],[-96.163713,33.787728],[-96.162757,33.788769],[-96.162483,33.789904],[-96.162902,33.791974],[-96.162745,33.792613],[-96.160756,33.79591],[-96.161954,33.799713],[-96.161121,33.802692],[-96.161385,33.803154],[-96.161114,33.805767],[-96.159822,33.81155],[-96.159273,33.812328],[-96.156355,33.813349],[-96.155538,33.81404],[-96.158772,33.813941],[-96.163766,33.813051],[-96.164979,33.81094],[-96.166896,33.809602],[-96.168041,33.808289],[-96.169121,33.806048],[-96.16995,33.805131],[-96.170721,33.803192],[-96.17028,33.803708],[-96.170023,33.803252],[-96.169457,33.804109],[-96.169592,33.800944],[-96.172857,33.801102],[-96.175726,33.802321],[-96.177339,33.805114],[-96.179122,33.810224],[-96.17691,33.813935],[-96.176307,33.814375],[-96.175349,33.814736],[-96.17363,33.81448],[-96.171353,33.814725],[-96.170497,33.815132],[-96.170432,33.815841],[-96.166503,33.817867],[-96.161455,33.81764],[-96.159295,33.818599],[-96.150765,33.816987],[-96.148792,33.819197],[-96.15163,33.831946],[-96.150147,33.835855],[-96.149227,33.837091],[-96.146535,33.838303],[-96.138905,33.839159],[-96.135189,33.838602],[-96.131058,33.837438],[-96.130349,33.837824],[-96.129807,33.838872],[-96.127818,33.839896],[-96.122949,33.839964],[-96.118167,33.837883],[-96.114437,33.835056],[-96.109994,33.832396],[-96.104078,33.83073],[-96.09936,33.83047],[-96.097449,33.832729],[-96.097638,33.837936],[-96.099153,33.842409],[-96.100785,33.844229],[-96.101349,33.845721],[-96.101473,33.84671],[-96.100746,33.847683],[-96.100095,33.847971],[-96.099112,33.847586],[-96.098296,33.847848],[-96.091683,33.846873],[-96.084626,33.846656],[-96.077442,33.844973],[-96.072658,33.842937],[-96.06829,33.84269],[-96.063934,33.841528],[-96.055358,33.838262],[-96.05356,33.838203],[-96.048834,33.836468],[-96.043271,33.838996],[-96.038978,33.84028],[-96.034988,33.842646],[-96.032545,33.845266],[-96.030865,33.848363],[-96.030488,33.85106],[-96.030809,33.85423],[-96.030501,33.855261],[-96.029438,33.856348],[-96.026968,33.857474],[-96.022408,33.857042],[-96.020083,33.855046],[-96.019542,33.853497],[-96.020326,33.849579],[-96.022508,33.84613],[-96.023095,33.844128],[-96.023241,33.842479],[-96.022736,33.841092],[-96.020624,33.840627],[-96.017055,33.841454],[-96.010907,33.844296],[-96.005704,33.845435],[-96.00405,33.845237],[-96.004237,33.845544],[-96.003595,33.846028],[-96.004998,33.845987],[-96.004473,33.846836],[-96.002747,33.848532],[-96.000257,33.849403],[-95.998351,33.85105],[-95.996833,33.853898],[-95.99559,33.857907],[-95.994869,33.861824],[-95.999694,33.862552],[-96.002875,33.86667],[-96.003982,33.868405],[-96.004573,33.870712],[-96.002925,33.87359],[-96.001873,33.873744],[-96.000255,33.87254],[-95.998617,33.87223],[-95.996377,33.871231],[-95.992111,33.868849],[-95.989191,33.86859],[-95.987836,33.867949],[-95.984927,33.865805],[-95.984059,33.860118],[-95.98604,33.856931],[-95.984856,33.852492],[-95.974629,33.855464],[-95.962305,33.857099],[-95.957729,33.858166],[-95.951962,33.858832],[-95.947327,33.858915],[-95.9484,33.858745],[-95.94834,33.858547],[-95.950046,33.857783],[-95.951264,33.857755],[-95.952383,33.85731],[-95.951382,33.857332],[-95.948676,33.858041],[-95.94414,33.859998],[-95.941796,33.861651],[-95.94125,33.862613],[-95.941224,33.864151],[-95.939143,33.866453],[-95.936404,33.871424],[-95.935634,33.875],[-95.933474,33.878614],[-95.9335,33.880031],[-95.932868,33.881372],[-95.932677,33.883173],[-95.932209,33.883882],[-95.931241,33.88464],[-95.92825,33.885354],[-95.925089,33.884936],[-95.918583,33.880838],[-95.913907,33.878854],[-95.909904,33.876639],[-95.901865,33.871366],[-95.895215,33.86758],[-95.890409,33.865563],[-95.887952,33.865408],[-95.886833,33.864935],[-95.88293,33.862033],[-95.885418,33.863353],[-95.885188,33.863012],[-95.881153,33.860555],[-95.879435,33.858961],[-95.877302,33.857873],[-95.87236,33.854369],[-95.867189,33.85129],[-95.861046,33.849799],[-95.860381,33.849805],[-95.860025,33.85025],[-95.85863,33.85069],[-95.856832,33.850141],[-95.85454,33.848225],[-95.848921,33.841784],[-95.843935,33.838198],[-95.837114,33.835646],[-95.830406,33.834785],[-95.823699,33.837406],[-95.820974,33.839516],[-95.819486,33.841296],[-95.818855,33.843021],[-95.819158,33.844982],[-95.818881,33.846663],[-95.819448,33.84902],[-95.821121,33.853068],[-95.821161,33.854233],[-95.820654,33.855447],[-95.820911,33.856172],[-95.81993,33.857546],[-95.817718,33.858331],[-95.816796,33.859331],[-95.815571,33.859853],[-95.810073,33.860271],[-95.806432,33.860832],[-95.805016,33.861381],[-95.802184,33.861562],[-95.797614,33.86059],[-95.791135,33.857875],[-95.788679,33.856408],[-95.784914,33.853353],[-95.783939,33.853111],[-95.782366,33.851079],[-95.781142,33.85087],[-95.779884,33.851331],[-95.775902,33.847311],[-95.771968,33.845604],[-95.770239,33.845202],[-95.763586,33.846824],[-95.757959,33.849566],[-95.75452,33.852218],[-95.752109,33.854953],[-95.751555,33.856035],[-95.751342,33.860287],[-95.752071,33.862029],[-95.754131,33.865249],[-95.757803,33.868975],[-95.760056,33.873817],[-95.76152,33.873118],[-95.762063,33.875107],[-95.762467,33.881144],[-95.761729,33.884317],[-95.759389,33.888768],[-95.757941,33.890752],[-95.756612,33.892028],[-95.752153,33.894577],[-95.748856,33.896081],[-95.745131,33.89669],[-95.736316,33.896866],[-95.733183,33.896447],[-95.731732,33.895513],[-95.729309,33.894623],[-95.728159,33.894633],[-95.726663,33.893506],[-95.71998,33.890944],[-95.717999,33.889667],[-95.71695,33.888288],[-95.715198,33.887001],[-95.712183,33.885519],[-95.700635,33.885845],[-95.699752,33.886216],[-95.694888,33.886787],[-95.690483,33.887936],[-95.688876,33.888486],[-95.687053,33.88989],[-95.684579,33.890646],[-95.683949,33.891571],[-95.67928,33.894364],[-95.677922,33.896976],[-95.672101,33.90228],[-95.670787,33.904406],[-95.669241,33.905848],[-95.668632,33.906995],[-95.665478,33.909004],[-95.66046,33.910162],[-95.65835,33.910258],[-95.657535,33.90965],[-95.656321,33.909377],[-95.655232,33.909914],[-95.651128,33.908631],[-95.64812,33.908128],[-95.638772,33.904938],[-95.635337,33.905263],[-95.634367,33.904727],[-95.632774,33.904815],[-95.631781,33.905534],[-95.629256,33.905895],[-95.627318,33.907806],[-95.626024,33.912501],[-95.624798,33.915664],[-95.62164,33.920513],[-95.619053,33.923015],[-95.61836,33.924208],[-95.618357,33.924849],[-95.616367,33.927626],[-95.614746,33.928561],[-95.613661,33.928414],[-95.611,33.929044],[-95.609074,33.9292],[-95.605132,33.928757],[-95.603138,33.9292],[-95.599108,33.933071],[-95.598416,33.93438],[-95.597954,33.935722],[-95.597959,33.939361],[-95.597522,33.942342],[-95.594085,33.943057],[-95.58984,33.942045],[-95.58787,33.940811],[-95.586598,33.939586],[-95.584542,33.936682],[-95.581854,33.934152],[-95.577324,33.932927],[-95.573998,33.933506],[-95.570264,33.933717],[-95.567393,33.933616],[-95.563784,33.932945],[-95.557711,33.930351],[-95.55421,33.926958],[-95.552799,33.924311],[-95.551312,33.91622],[-95.549114,33.911534],[-95.548234,33.906616],[-95.547832,33.901856],[-95.548479,33.897573],[-95.550313,33.893942],[-95.55121,33.891104],[-95.551216,33.889713],[-95.548961,33.885053],[-95.547638,33.883509],[-95.544141,33.880603],[-95.538576,33.880671],[-95.535721,33.881144],[-95.534306,33.881052],[-95.532622,33.881521],[-95.529811,33.883515],[-95.528007,33.883884],[-95.526523,33.884684],[-95.523788,33.887322],[-95.518529,33.889877],[-95.517553,33.891303],[-95.517428,33.892117],[-95.516433,33.893035],[-95.515979,33.893986],[-95.512759,33.895792],[-95.511439,33.897296],[-95.509526,33.897586],[-95.507952,33.897433],[-95.506619,33.896716],[-95.505788,33.895564],[-95.505092,33.893406],[-95.504838,33.889714],[-95.505656,33.885831],[-95.505365,33.88243],[-95.50621,33.877809],[-95.505776,33.876391],[-95.504999,33.875922],[-95.501634,33.875015],[-95.499913,33.87523],[-95.49204,33.874942],[-95.483531,33.876825],[-95.473296,33.880197],[-95.47047,33.881599],[-95.46883,33.883116],[-95.468554,33.884632],[-95.464938,33.886891],[-95.463594,33.887249],[-95.46144,33.887106],[-95.45973,33.886611],[-95.460091,33.884199],[-95.46279,33.879051],[-95.462847,33.876856],[-95.463785,33.876038],[-95.464339,33.874389],[-95.464225,33.873381],[-95.463336,33.872396],[-95.453655,33.870862],[-95.44988,33.869527],[-95.445466,33.867236],[-95.442746,33.866506],[-95.4383,33.866342],[-95.434546,33.867551],[-95.432372,33.868765],[-95.427684,33.870459],[-95.424606,33.869905],[-95.421651,33.868683],[-95.41871,33.868483],[-95.41582,33.866916],[-95.410715,33.865406],[-95.405209,33.864575],[-95.400493,33.864756],[-95.398042,33.865211],[-95.389695,33.867978],[-95.383826,33.868646],[-95.381415,33.868453],[-95.3788,33.868721],[-95.375743,33.868401],[-95.372733,33.867322],[-95.369301,33.866574],[-95.367832,33.866472],[-95.365626,33.867064],[-95.362571,33.866902],[-95.358374,33.868431],[-95.357383,33.869235],[-95.352359,33.869597],[-95.351422,33.8703],[-95.350322,33.870605],[-95.347728,33.870503],[-95.346587,33.871557],[-95.342513,33.872972],[-95.341114,33.873323],[-95.339879,33.873017],[-95.339064,33.874071],[-95.337706,33.874659],[-95.335696,33.874252],[-95.332071,33.879301],[-95.330458,33.882532],[-95.329936,33.886334],[-95.325535,33.885734],[-95.314428,33.881632],[-95.313697,33.8811],[-95.312564,33.879001],[-95.310318,33.877033],[-95.306397,33.874906],[-95.303478,33.874307],[-95.300975,33.874186],[-95.294513,33.872785],[-95.292747,33.87323],[-95.288926,33.87307],[-95.286798,33.873487],[-95.280725,33.875491],[-95.279025,33.876677],[-95.278174,33.878386],[-95.27864,33.883579],[-95.278244,33.883947],[-95.27794,33.887293],[-95.278163,33.890343],[-95.280691,33.896075],[-95.281784,33.897537],[-95.283952,33.899126],[-95.284558,33.899917],[-95.285591,33.903357],[-95.284629,33.905483],[-95.281537,33.908637],[-95.27596,33.911279],[-95.273198,33.911624],[-95.269949,33.911491],[-95.268697,33.91109],[-95.266385,33.908468],[-95.264997,33.904588],[-95.265086,33.898307],[-95.265825,33.895527],[-95.266142,33.89551],[-95.266656,33.8939],[-95.26578,33.893697],[-95.265141,33.892707],[-95.264425,33.889778],[-95.26212,33.887826],[-95.261026,33.887848],[-95.257724,33.890122],[-95.253187,33.894878],[-95.252671,33.897296],[-95.250217,33.901614],[-95.248501,33.906974],[-95.247597,33.915613],[-95.248187,33.919926],[-95.249661,33.925684],[-95.250426,33.932711],[-95.250893,33.934255],[-95.25084,33.936358],[-95.250001,33.938861],[-95.245996,33.943721],[-95.240539,33.946784],[-95.240605,33.947229],[-95.238746,33.947785],[-95.236557,33.947907],[-95.234191,33.948771],[-95.232879,33.949736],[-95.230884,33.955141],[-95.230258,33.955988],[-95.230423,33.957785],[-95.230142,33.959724],[-95.230865,33.959512],[-95.230444,33.960043],[-95.227574,33.960798],[-95.227076,33.961577],[-95.226041,33.962237],[-95.220488,33.961997],[-95.216947,33.962674],[-95.214137,33.962142],[-95.205761,33.958616],[-95.202615,33.956907],[-95.199541,33.954105],[-95.198104,33.953352],[-95.192551,33.951803],[-95.189478,33.951281],[-95.184968,33.949529],[-95.18028,33.948836],[-95.171503,33.94672],[-95.167792,33.944686],[-95.156961,33.936645],[-95.149069,33.935297],[-95.139484,33.934733],[-95.134861,33.93599],[-95.130157,33.936799],[-95.128171,33.936259],[-95.1247,33.934675],[-95.121184,33.931307],[-95.121327,33.927181],[-95.121727,33.925762],[-95.127731,33.920435],[-95.131642,33.916027],[-95.131644,33.913926],[-95.131041,33.912535],[-95.127364,33.907826],[-95.125777,33.906497],[-95.123101,33.905417],[-95.122488,33.905528],[-95.120893,33.904539],[-95.117768,33.904233],[-95.113148,33.904493],[-95.110388,33.905407],[-95.108622,33.906429],[-95.106784,33.908496],[-95.105176,33.909464],[-95.099943,33.910318],[-95.095778,33.911374],[-95.089801,33.914069],[-95.08557,33.917719],[-95.084655,33.920038],[-95.083198,33.921417],[-95.082229,33.921742],[-95.08006,33.920989],[-95.07795,33.918696],[-95.076782,33.913584],[-95.07783,33.911265],[-95.079742,33.908595],[-95.081606,33.90686],[-95.087583,33.903018],[-95.090219,33.90272],[-95.092064,33.901945],[-95.091003,33.901572],[-95.091503,33.900329],[-95.092946,33.900148],[-95.094765,33.899438],[-95.0963,33.899377],[-95.097408,33.898861],[-95.099351,33.89703],[-95.100003,33.896793],[-95.100378,33.895595],[-95.099856,33.892776],[-95.098709,33.890683],[-95.097786,33.88965],[-95.095833,33.88843],[-95.092118,33.883216],[-95.089607,33.880857],[-95.0874,33.880321],[-95.082408,33.879882],[-95.080102,33.885706],[-95.079834,33.887479],[-95.078696,33.90504],[-95.077704,33.906712],[-95.075908,33.907656],[-95.074988,33.908805],[-95.073966,33.915636],[-95.069476,33.917586],[-95.067955,33.917551],[-95.06676,33.917101],[-95.064512,33.915346],[-95.063459,33.91404],[-95.063318,33.912059],[-95.064235,33.910156],[-95.065432,33.908953],[-95.066979,33.908253],[-95.070573,33.908401],[-95.074629,33.907267],[-95.076417,33.904298],[-95.075876,33.901846],[-95.073597,33.89881],[-95.073267,33.897904],[-95.072918,33.897849],[-95.071801,33.895561],[-95.069952,33.895578],[-95.071231,33.898778],[-95.073528,33.901966],[-95.072413,33.902699],[-95.069128,33.903419],[-95.062284,33.903618],[-95.060105,33.901873],[-95.058834,33.894846],[-95.059088,33.887491],[-95.05846,33.886246],[-95.056333,33.884142],[-95.054787,33.881648],[-95.050572,33.878299],[-95.051319,33.874782],[-95.050704,33.868179],[-95.049025,33.86409],[-95.046568,33.862565],[-95.043921,33.86166],[-95.037207,33.86025],[-95.029715,33.860091],[-95.020672,33.8583],[-95.015745,33.857733],[-95.012214,33.858034],[-95.010185,33.858731],[-95.003589,33.862246],[-95.002187,33.863713],[-95.000223,33.862505],[-94.998019,33.860504],[-94.997124,33.859067],[-94.995524,33.857438],[-94.993921,33.854759],[-94.993418,33.853322],[-94.992671,33.852455],[-94.992163,33.852034],[-94.988487,33.851],[-94.983295,33.851357],[-94.981634,33.852314],[-94.97701,33.857971],[-94.975896,33.860188],[-94.972735,33.861983],[-94.971435,33.862123],[-94.970205,33.861817],[-94.968892,33.860913],[-94.968317,33.856696],[-94.965799,33.848696],[-94.965647,33.843746],[-94.964401,33.837021],[-94.957676,33.835004],[-94.952298,33.834949],[-94.947281,33.832648],[-94.944681,33.831055],[-94.943888,33.830226],[-94.943531,33.828378],[-94.944838,33.82584],[-94.947663,33.823552],[-94.953518,33.816475],[-94.953084,33.815203],[-94.947874,33.808356],[-94.943667,33.806291],[-94.942217,33.80578],[-94.940436,33.805637],[-94.923289,33.808742],[-94.924266,33.812494],[-94.923099,33.815456],[-94.923815,33.819168],[-94.926571,33.826339],[-94.926616,33.827557],[-94.926072,33.828533],[-94.924573,33.829047],[-94.922439,33.829113],[-94.920925,33.828728],[-94.918599,33.82682],[-94.91801,33.826783],[-94.915908,33.82476],[-94.913655,33.821729],[-94.91216,33.819443],[-94.910882,33.815915],[-94.911042,33.815023],[-94.912596,33.812591],[-94.914487,33.808516],[-94.916748,33.808969],[-94.9176,33.807001],[-94.917325,33.805861],[-94.917533,33.80521],[-94.919436,33.80096],[-94.921314,33.798408],[-94.922353,33.793535],[-94.921526,33.790472],[-94.918071,33.78688],[-94.917598,33.786717],[-94.916937,33.784936],[-94.912868,33.779476],[-94.911427,33.778383],[-94.906243,33.77819],[-94.904172,33.777198],[-94.904599,33.775678],[-94.904198,33.773249],[-94.901281,33.77085],[-94.898198,33.769021],[-94.895303,33.768404],[-94.886934,33.769067],[-94.885678,33.765234],[-94.883847,33.763243],[-94.881395,33.761177],[-94.879395,33.760188],[-94.877357,33.758574],[-94.876372,33.75733],[-94.874772,33.756904],[-94.874143,33.757342],[-94.873833,33.758059],[-94.87493,33.767432],[-94.874935,33.768768],[-94.874564,33.769618],[-94.873453,33.77052],[-94.871737,33.770395],[-94.869606,33.769862],[-94.868144,33.768874],[-94.866513,33.76697],[-94.865929,33.765637],[-94.866097,33.763401],[-94.866736,33.76183],[-94.868374,33.760126],[-94.869667,33.759521],[-94.873965,33.75634],[-94.876124,33.755501],[-94.876082,33.754899],[-94.877125,33.753123],[-94.877083,33.75222],[-94.874669,33.749164],[-94.872944,33.748785],[-94.869913,33.746196],[-94.86882,33.745881],[-94.867768,33.745009],[-94.866149,33.744669],[-94.860687,33.741945],[-94.856554,33.74071],[-94.849314,33.739587],[-94.842574,33.739445],[-94.827948,33.740882],[-94.828321,33.734947],[-94.827256,33.734131],[-94.822928,33.732724],[-94.821989,33.732878],[-94.820429,33.733807],[-94.820089,33.734826],[-94.820155,33.736984],[-94.823042,33.747525],[-94.830844,33.758079],[-94.830875,33.759985],[-94.829499,33.764104],[-94.827275,33.766885],[-94.825294,33.768525],[-94.823385,33.769179],[-94.820707,33.768964],[-94.818574,33.767704],[-94.817335,33.765842],[-94.816387,33.763963],[-94.815937,33.759787],[-94.816831,33.754216],[-94.815253,33.751382],[-94.814602,33.751838],[-94.812764,33.752113],[-94.812155,33.750936],[-94.812193,33.747726],[-94.812912,33.745447],[-94.814803,33.743119],[-94.816983,33.741591],[-94.817023,33.740007],[-94.812021,33.735262],[-94.809145,33.73451],[-94.807268,33.733411],[-94.803433,33.732739],[-94.801874,33.732949],[-94.79726,33.736925],[-94.790051,33.739356],[-94.781542,33.743322],[-94.780068,33.744469],[-94.778416,33.748445],[-94.777841,33.753006],[-94.776368,33.756399],[-94.774923,33.758115],[-94.772915,33.759733],[-94.771345,33.760648],[-94.76985,33.761034],[-94.763035,33.759764],[-94.762043,33.759022],[-94.760058,33.758291],[-94.759323,33.75673],[-94.758125,33.756537],[-94.757847,33.755889],[-94.757189,33.753028],[-94.757813,33.750109],[-94.758948,33.748532],[-94.760218,33.748031],[-94.760868,33.74732],[-94.762226,33.746609],[-94.763233,33.746642],[-94.765256,33.746096],[-94.769023,33.746202],[-94.772425,33.746767],[-94.775836,33.746712],[-94.776815,33.746437],[-94.778866,33.745099],[-94.78136,33.74211],[-94.785974,33.738515],[-94.788637,33.735669],[-94.782498,33.730125],[-94.779372,33.728872],[-94.773126,33.727187],[-94.768695,33.726989],[-94.760604,33.727054],[-94.754396,33.73339],[-94.752389,33.734556],[-94.751825,33.734326],[-94.751371,33.733727],[-94.750287,33.729234],[-94.747668,33.725148],[-94.757738,33.717817],[-94.756998,33.71604],[-94.755905,33.715073],[-94.751366,33.71354],[-94.747585,33.714734],[-94.745855,33.716158],[-94.744916,33.718614],[-94.745089,33.722908],[-94.744495,33.724346],[-94.742092,33.726692],[-94.736739,33.727187],[-94.735178,33.726616],[-94.733413,33.725191],[-94.73263,33.723917],[-94.732329,33.722505],[-94.732786,33.720035],[-94.733593,33.718685],[-94.736129,33.71608],[-94.738572,33.714501],[-94.741237,33.713358],[-94.753069,33.710753],[-94.753801,33.708663],[-94.753651,33.706931],[-94.751942,33.704862],[-94.743091,33.701988],[-94.740922,33.700555],[-94.739413,33.69699],[-94.737179,33.692928],[-94.735856,33.691625],[-94.734366,33.691144],[-94.730387,33.691254],[-94.726123,33.690899],[-94.725243,33.690098],[-94.724076,33.689667],[-94.719531,33.688857],[-94.715943,33.694913],[-94.716873,33.700358],[-94.718872,33.703349],[-94.719633,33.703921],[-94.722821,33.704811],[-94.727199,33.705314],[-94.728484,33.705791],[-94.730691,33.707355],[-94.732524,33.709211],[-94.733643,33.711306],[-94.734918,33.714765],[-94.734731,33.715437],[-94.733965,33.715687],[-94.73233,33.71565],[-94.73028,33.71606],[-94.725295,33.714672],[-94.712719,33.708962],[-94.706024,33.706293],[-94.702601,33.704038],[-94.70156,33.702878],[-94.700884,33.701417],[-94.701055,33.700053],[-94.701996,33.698655],[-94.703496,33.697538],[-94.706336,33.696726],[-94.709321,33.697174],[-94.710841,33.696743],[-94.713201,33.69774],[-94.714432,33.697189],[-94.715123,33.695961],[-94.715112,33.694108],[-94.718338,33.688664],[-94.716188,33.687902],[-94.712067,33.687935],[-94.709101,33.688311],[-94.704114,33.687945],[-94.70175,33.687621],[-94.697246,33.686203],[-94.691756,33.685474],[-94.68822,33.68444],[-94.684796,33.684353],[-94.677383,33.688342],[-94.673933,33.691844],[-94.671773,33.693307],[-94.668891,33.694392],[-94.666885,33.694583],[-94.664914,33.694255],[-94.659167,33.692138],[-94.657529,33.690194],[-94.654861,33.688568],[-94.651402,33.685843],[-94.648804,33.686573],[-94.647093,33.690346],[-94.647241,33.692654],[-94.648621,33.697011],[-94.648392,33.69949],[-94.647902,33.700516],[-94.647277,33.701187],[-94.645882,33.701778],[-94.643715,33.701522],[-94.641776,33.700385],[-94.63945,33.698259],[-94.638731,33.69711],[-94.638646,33.695804],[-94.639775,33.693938],[-94.643132,33.690323],[-94.645492,33.685932],[-94.650373,33.684438],[-94.649821,33.683407],[-94.648055,33.681527],[-94.645579,33.6755],[-94.645337,33.673644],[-94.650685,33.670604],[-94.65185,33.670453],[-94.653996,33.671147],[-94.659525,33.675129],[-94.661806,33.675133],[-94.66754,33.6728],[-94.668848,33.671878],[-94.670184,33.670343],[-94.671048,33.668388],[-94.670564,33.665934],[-94.669311,33.664362],[-94.666855,33.662808],[-94.663955,33.661994],[-94.663195,33.661084],[-94.661829,33.660457],[-94.657219,33.660592],[-94.654919,33.659925],[-94.651734,33.660704],[-94.649234,33.662604],[-94.645923,33.661945],[-94.644692,33.66231],[-94.642451,33.663887],[-94.640054,33.663672],[-94.638679,33.663988],[-94.637563,33.665281],[-94.636939,33.667469],[-94.634938,33.667649],[-94.630919,33.673442],[-94.630554,33.674459],[-94.630278,33.678116],[-94.629922,33.679094],[-94.628711,33.680532],[-94.627239,33.681954],[-94.624298,33.682336],[-94.623214,33.682068],[-94.622043,33.682535],[-94.618329,33.681608],[-94.616418,33.680103],[-94.614303,33.677109],[-94.612707,33.673765],[-94.611891,33.67004],[-94.607683,33.665569],[-94.605823,33.664189],[-94.603705,33.663197],[-94.601163,33.662761],[-94.596019,33.663863],[-94.593294,33.665258],[-94.59205,33.667039],[-94.591401,33.669413],[-94.591953,33.672863],[-94.591415,33.673686],[-94.590298,33.674405],[-94.590027,33.67585],[-94.590335,33.67769],[-94.592829,33.6823],[-94.59303,33.684019],[-94.59275,33.684714],[-94.591585,33.685867],[-94.589658,33.686368],[-94.58793,33.686255],[-94.586242,33.685131],[-94.584837,33.682824],[-94.580335,33.67888],[-94.57962,33.677623],[-94.579554,33.675822],[-94.581251,33.673618],[-94.580259,33.672892],[-94.579269,33.670817],[-94.579376,33.669307],[-94.580784,33.666392],[-94.577876,33.665682],[-94.575593,33.66627],[-94.572568,33.6677],[-94.570458,33.668305],[-94.563668,33.669272],[-94.561203,33.668504],[-94.560501,33.667463],[-94.560339,33.666591],[-94.56114,33.664911],[-94.562538,33.663297],[-94.564802,33.661804],[-94.568433,33.660941],[-94.569993,33.660877],[-94.57557,33.659409],[-94.576765,33.658763],[-94.586986,33.65018],[-94.59083,33.645563],[-94.590478,33.645075],[-94.588632,33.644183],[-94.583273,33.643793],[-94.580047,33.6445],[-94.576243,33.646546],[-94.573988,33.649517],[-94.570566,33.652226],[-94.565105,33.654386],[-94.560198,33.656967],[-94.549636,33.660676],[-94.548111,33.66033],[-94.546732,33.659566],[-94.545437,33.657635],[-94.543527,33.656005],[-94.543022,33.655182],[-94.542627,33.653992],[-94.542593,33.651411],[-94.543033,33.649322],[-94.545436,33.646228],[-94.546006,33.645908],[-94.550035,33.645167],[-94.555995,33.642811],[-94.559042,33.641971],[-94.563334,33.640065],[-94.568386,33.637203],[-94.570379,33.630536],[-94.569975,33.62847],[-94.568965,33.627453],[-94.564076,33.626265],[-94.560217,33.626746],[-94.558012,33.626691],[-94.553372,33.627584],[-94.551869,33.628185],[-94.546437,33.631504],[-94.541858,33.636299],[-94.53951,33.637006],[-94.53775,33.638255],[-94.528126,33.641248],[-94.523253,33.641149],[-94.521837,33.640728],[-94.519942,33.639275],[-94.518529,33.63757],[-94.521123,33.634932],[-94.527579,33.630818],[-94.530434,33.628624],[-94.532859,33.62743],[-94.534814,33.625521],[-94.535425,33.624217],[-94.53534,33.622502],[-94.534689,33.621193],[-94.532601,33.619126],[-94.52774,33.615898],[-94.523498,33.615899],[-94.520989,33.617023],[-94.519838,33.618077],[-94.519673,33.619611],[-94.519098,33.62023],[-94.518961,33.620985],[-94.518441,33.621352],[-94.518495,33.622222],[-94.51792,33.623734],[-94.518686,33.624558],[-94.520245,33.629805],[-94.517468,33.633056],[-94.515956,33.63109],[-94.513908,33.626877],[-94.511514,33.623105],[-94.509498,33.621708],[-94.508375,33.62129],[-94.505655,33.620668],[-94.504525,33.620728],[-94.501764,33.621716],[-94.500699,33.622974],[-94.498911,33.623924],[-94.493065,33.624531],[-94.491503,33.625115],[-94.488363,33.627406],[-94.487514,33.628939],[-94.487737,33.630634],[-94.489095,33.633438],[-94.49167,33.636454],[-94.483042,33.638588],[-94.478067,33.639007],[-94.475507,33.638777],[-94.47277,33.637575],[-94.468362,33.637542],[-94.466075,33.636262],[-94.464186,33.637656],[-94.462592,33.641789],[-94.461453,33.643616],[-94.459872,33.644849],[-94.45863,33.645266],[-94.45482,33.644903],[-94.448637,33.642766],[-94.447408,33.641334],[-94.446871,33.640178],[-94.447161,33.639783],[-94.44703,33.638055],[-94.447514,33.636255],[-94.448054,33.635917],[-94.448438,33.634498],[-94.45296,33.633312],[-94.45866,33.632473],[-94.462736,33.63091],[-94.461813,33.630464],[-94.461325,33.629706],[-94.460874,33.628185],[-94.461244,33.625811],[-94.460274,33.624415],[-94.458976,33.623862],[-94.456433,33.624696],[-94.45449,33.625742],[-94.452711,33.622621],[-94.452325,33.618817],[-94.452701,33.617373],[-94.454769,33.615155],[-94.462335,33.610567],[-94.469451,33.607316],[-94.471498,33.605767],[-94.472496,33.604035],[-94.472443,33.603469],[-94.470629,33.601161],[-94.46896,33.599869],[-94.467364,33.599155],[-94.467587,33.598842],[-94.467212,33.599144],[-94.462302,33.598379],[-94.45931,33.600211],[-94.457439,33.600412],[-94.458232,33.59827],[-94.456834,33.597011],[-94.455755,33.594359],[-94.453996,33.592222],[-94.453197,33.59178],[-94.449197,33.59091],[-94.445459,33.590896],[-94.442214,33.591276],[-94.440606,33.592162],[-94.438979,33.59362],[-94.430041,33.591124],[-94.428232,33.590076],[-94.427578,33.589319],[-94.425982,33.586425],[-94.413164,33.569359],[-94.410926,33.568344],[-94.406709,33.568014],[-94.403342,33.568424],[-94.400669,33.569803],[-94.397342,33.571608],[-94.393534,33.574686],[-94.386412,33.58159],[-94.382898,33.583277],[-94.379674,33.580631],[-94.378106,33.577015],[-94.377756,33.57461],[-94.378464,33.571688],[-94.38008,33.568947],[-94.38252,33.567061],[-94.388033,33.565518],[-94.392339,33.565236],[-94.394851,33.566521],[-94.395941,33.565227],[-94.397688,33.564903],[-94.400438,33.562935],[-94.401026,33.561899],[-94.401616,33.559378],[-94.400531,33.557471],[-94.397079,33.553618],[-94.394614,33.551971],[-94.392388,33.551195],[-94.391466,33.550133],[-94.38953,33.546739],[-94.386768,33.545009],[-94.383953,33.544834],[-94.381664,33.544035],[-94.373393,33.544471],[-94.371952,33.544741],[-94.37069,33.545671],[-94.369875,33.545661],[-94.365926,33.544964],[-94.361351,33.544613],[-94.35897,33.54323],[-94.357791,33.54305],[-94.355945,33.54318],[-94.353593,33.544005],[-94.348945,33.548358],[-94.347389,33.551052],[-94.347293,33.552152],[-94.352643,33.56063],[-94.352418,33.562193],[-94.351441,33.563246],[-94.345513,33.567313],[-94.344023,33.567824],[-94.341709,33.567954],[-94.339562,33.567668],[-94.337057,33.56605],[-94.335524,33.564484],[-94.334351,33.562527],[-94.333826,33.557154],[-94.333203,33.555366],[-94.332653,33.554309],[-94.331202,33.552951],[-94.321266,33.54903],[-94.319492,33.548864],[-94.316304,33.549252],[-94.31215,33.550666],[-94.309582,33.551673],[-94.308454,33.552608],[-94.306411,33.555598],[-94.306215,33.557675],[-94.307182,33.559798],[-94.303576,33.56828],[-94.301023,33.573021],[-94.298377,33.576219],[-94.294969,33.579125],[-94.291212,33.581478],[-94.289215,33.582131],[-94.287049,33.58238],[-94.283582,33.581891],[-94.282648,33.580978],[-94.281216,33.578211],[-94.280605,33.574908],[-94.282172,33.572989],[-94.290127,33.568111],[-94.290216,33.565947],[-94.291341,33.563682],[-94.291362,33.561004],[-94.290897,33.559906],[-94.289173,33.559625],[-94.289545,33.558272],[-94.28786,33.557137],[-94.287895,33.556858],[-94.28594,33.556229],[-94.282833,33.557102],[-94.27826,33.557556],[-94.275746,33.558533],[-94.271348,33.562094],[-94.2703,33.563421],[-94.269881,33.566702],[-94.269577,33.566791],[-94.265669,33.573589],[-94.262755,33.577353],[-94.256794,33.583605],[-94.252656,33.586144],[-94.245932,33.589114],[-94.242777,33.589709],[-94.240177,33.589539],[-94.236971,33.587407],[-94.236365,33.585994],[-94.236833,33.580918],[-94.237969,33.577768],[-94.238866,33.576748],[-94.242421,33.574973],[-94.24435,33.57357],[-94.250193,33.56746],[-94.251099,33.565851],[-94.251783,33.56365],[-94.252158,33.560496],[-94.251918,33.559411],[-94.250794,33.55727],[-94.25013,33.556753],[-94.247509,33.55562],[-94.242967,33.554704],[-94.237575,33.552669],[-94.23197,33.552086],[-94.226188,33.552976],[-94.222923,33.554098],[-94.21921,33.556096],[-94.213625,33.563132],[-94.208034,33.566913],[-94.205666,33.567219],[-94.203594,33.566534],[-94.202827,33.564583],[-94.201585,33.559508],[-94.200448,33.557078],[-94.199792,33.556336],[-94.197769,33.555204],[-94.195432,33.555094],[-94.192877,33.556133],[-94.191472,33.557183],[-94.189988,33.560075],[-94.18966,33.561807],[-94.18989,33.563434],[-94.191814,33.566496],[-94.192366,33.570526],[-94.194127,33.573469],[-94.196178,33.575334],[-94.19922,33.57673],[-94.201587,33.577348],[-94.203925,33.576844],[-94.207405,33.574353],[-94.209665,33.57351],[-94.211244,33.573738],[-94.216208,33.576569],[-94.217463,33.579378],[-94.217114,33.580994],[-94.215283,33.582624],[-94.213007,33.583482],[-94.210732,33.582986],[-94.203843,33.579773],[-94.199186,33.580321],[-94.196435,33.581293],[-94.194564,33.582798],[-94.193186,33.585156],[-94.184308,33.594578],[-94.183912,33.594685],[-94.183266,33.594598],[-94.18088,33.592612],[-94.176327,33.591077],[-94.162266,33.588906],[-94.161081,33.587973],[-94.161069,33.586199],[-94.161902,33.582844],[-94.162006,33.580884],[-94.161272,33.57928],[-94.156775,33.575762],[-94.154371,33.575615],[-94.152626,33.575923],[-94.148732,33.580197],[-94.146048,33.581975],[-94.144383,33.582098],[-94.14216,33.58139],[-94.141727,33.580526],[-94.141852,33.57959],[-94.143024,33.577725],[-94.145669,33.5756],[-94.149506,33.573602],[-94.151344,33.571389],[-94.15183,33.569488],[-94.151574,33.568406],[-94.149693,33.566325],[-94.148645,33.565698],[-94.147428,33.565183],[-94.145218,33.564979],[-94.143391,33.565501],[-94.136862,33.570998],[-94.136044,33.571386],[-94.135144,33.571033],[-94.134532,33.570348],[-94.133715,33.565957],[-94.132142,33.560514],[-94.132377,33.559369],[-94.132184,33.556645],[-94.131121,33.552809],[-94.129756,33.55145],[-94.127612,33.550721],[-94.125468,33.551138],[-94.12316,33.553268],[-94.122423,33.554617],[-94.120737,33.560561],[-94.120355,33.5655],[-94.12086,33.567051],[-94.112843,33.566991],[-94.103173,33.570349],[-94.101638,33.571146],[-94.100109,33.5726],[-94.097441,33.573744],[-94.088937,33.575334],[-94.082352,33.57572],[-94.072826,33.572298],[-94.071974,33.574409],[-94.072008,33.576295],[-94.074777,33.580438],[-94.075256,33.58251],[-94.074694,33.584053],[-94.073635,33.584773],[-94.072212,33.584422],[-94.070518,33.582678],[-94.070062,33.581294],[-94.070664,33.578156],[-94.070597,33.576725],[-94.068531,33.571103],[-94.066846,33.568909],[-94.061314,33.56879],[-94.057086,33.568003],[-94.056665,33.567464],[-94.056824,33.562771],[-94.05658,33.560932],[-94.059848,33.559248],[-94.061178,33.559158],[-94.066684,33.560953],[-94.067984,33.56096],[-94.07096,33.56014],[-94.072593,33.559255],[-94.07319,33.558793],[-94.073893,33.55743],[-94.073833,33.556006],[-94.072388,33.554164],[-94.071686,33.553818],[-94.071318,33.554132],[-94.069334,33.553707],[-94.065661,33.550967],[-94.064276,33.550835],[-94.062835,33.551242],[-94.061477,33.550001],[-94.059164,33.550002],[-94.055907,33.550843],[-94.051918,33.55264],[-94.050186,33.551076],[-94.04604,33.551321],[-94.04345,33.552253],[-94.04343,33.551479],[-94.042886,33.420221],[-94.043149,33.409015],[-94.043232,33.354012],[-94.042995,33.345547],[-94.04305,33.255128],[-94.04273,33.241822],[-94.043129,33.117322],[-94.04287,33.092726],[-94.043225,32.808299],[-94.042993,32.80743],[-94.04319,32.797117],[-94.04287,32.787185],[-94.043226,32.770226],[-94.042953,32.767907],[-94.043199,32.755485],[-94.042938,32.659726],[-94.043307,32.640446],[-94.042931,32.619442],[-94.043147,32.610783],[-94.042819,32.591175],[-94.0431,32.58862],[-94.042817,32.574534],[-94.043103,32.573542],[-94.042965,32.5511],[-94.043352,32.522112],[-94.043258,32.516199],[-94.042916,32.513605],[-94.043167,32.510705],[-94.042926,32.494047],[-94.04314,32.4785],[-94.042875,32.471348],[-94.04298,32.388203],[-94.042762,32.375155],[-94.043003,32.373394],[-94.042567,32.185249],[-94.042812,32.144788],[-94.042751,32.125163],[-94.042337,32.119914],[-94.04272,32.086182],[-94.042778,32.024831],[-94.04272,31.999271],[-94.042105,31.998898],[-94.041398,31.996306],[-94.042609,31.99426],[-94.042566,31.993502],[-94.041833,31.992402],[-94.039466,31.992205],[-94.030865,31.995638],[-94.029283,31.995865],[-94.027896,31.995695],[-94.027289,31.995182],[-94.025916,31.99282],[-94.024084,31.99104],[-94.022893,31.99045],[-94.021931,31.990366],[-94.021029,31.99079],[-94.019973,31.992126],[-94.019043,31.992561],[-94.018514,31.992432],[-94.018301,31.991522],[-94.018664,31.990843],[-94.018765,31.989118],[-94.017302,31.986022],[-94.016688,31.983857],[-94.016515,31.981174],[-94.01563,31.979856],[-94.012433,31.9781],[-94.006795,31.97343],[-94.000969,31.961795],[-93.998606,31.958826],[-93.995713,31.95414],[-93.994501,31.952648],[-93.989706,31.948783],[-93.987878,31.944315],[-93.986985,31.943307],[-93.982321,31.939764],[-93.980795,31.935225],[-93.979707,31.93329],[-93.978155,31.927847],[-93.977461,31.926419],[-93.975377,31.92366],[-93.97171,31.920386],[-93.970826,31.919968],[-93.969032,31.920151],[-93.964881,31.923183],[-93.962948,31.924156],[-93.959768,31.923226],[-93.956035,31.917022],[-93.955659,31.912782],[-93.954796,31.911564],[-93.953546,31.910563],[-93.949837,31.910865],[-93.945979,31.910328],[-93.942646,31.910373],[-93.937537,31.909222],[-93.932798,31.910514],[-93.931007,31.911414],[-93.929903,31.912719],[-93.928651,31.912645],[-93.927611,31.910684],[-93.924896,31.908706],[-93.923939,31.9071],[-93.922109,31.905324],[-93.921594,31.904421],[-93.921979,31.903781],[-93.924449,31.903038],[-93.925157,31.902475],[-93.927436,31.898286],[-93.929523,31.895773],[-93.932135,31.893672],[-93.93241,31.893197],[-93.932205,31.892681],[-93.93119,31.891495],[-93.927986,31.893119],[-93.926618,31.894375],[-93.925526,31.894615],[-93.924542,31.892929],[-93.926747,31.891876],[-93.927172,31.890893],[-93.92621,31.888683],[-93.9242,31.886963],[-93.922085,31.886009],[-93.920975,31.885878],[-93.919882,31.886232],[-93.919693,31.886642],[-93.920711,31.889731],[-93.920511,31.890304],[-93.919681,31.890963],[-93.919051,31.890898],[-93.917398,31.889816],[-93.916889,31.889847],[-93.916097,31.890604],[-93.916213,31.892652],[-93.914999,31.892948],[-93.912534,31.892469],[-93.912272,31.891767],[-93.913047,31.89064],[-93.913001,31.890245],[-93.912549,31.890145],[-93.910399,31.892022],[-93.906539,31.892509],[-93.906042,31.891863],[-93.907005,31.890832],[-93.907091,31.890284],[-93.906603,31.889856],[-93.906188,31.889928],[-93.904905,31.891128],[-93.90308,31.893922],[-93.903858,31.89531],[-93.903819,31.895769],[-93.901782,31.897016],[-93.900616,31.896788],[-93.898464,31.894099],[-93.897188,31.891019],[-93.896458,31.886286],[-93.896668,31.885327],[-93.898733,31.883984],[-93.900302,31.881487],[-93.901888,31.880063],[-93.902069,31.879104],[-93.901041,31.876732],[-93.901882,31.875371],[-93.901676,31.87457],[-93.900624,31.873868],[-93.899345,31.873876],[-93.896975,31.875982],[-93.894917,31.876297],[-93.892115,31.875917],[-93.891572,31.874583],[-93.893256,31.873379],[-93.893438,31.871731],[-93.890936,31.869767],[-93.888739,31.869458],[-93.886137,31.865499],[-93.885415,31.865257],[-93.884804,31.865433],[-93.884426,31.866269],[-93.885078,31.868642],[-93.884879,31.869372],[-93.88423,31.869653],[-93.881678,31.868581],[-93.881394,31.86604],[-93.881894,31.864835],[-93.889193,31.856819],[-93.889396,31.8559],[-93.888859,31.855073],[-93.883929,31.855003],[-93.882878,31.854672],[-93.882112,31.852319],[-93.882679,31.851504],[-93.884138,31.850758],[-93.884637,31.850163],[-93.884751,31.849408],[-93.884117,31.847606],[-93.883245,31.847042],[-93.881696,31.846734],[-93.878997,31.845145],[-93.878942,31.844455],[-93.879178,31.844126],[-93.880079,31.843942],[-93.881252,31.844249],[-93.882079,31.844089],[-93.882485,31.843599],[-93.881914,31.842216],[-93.880592,31.841522],[-93.879183,31.841979],[-93.877155,31.841896],[-93.874964,31.840868],[-93.874679,31.83792],[-93.872819,31.836301],[-93.876199,31.834248],[-93.877358,31.832528],[-93.877275,31.831853],[-93.874645,31.829888],[-93.874761,31.821661],[-93.874,31.821065],[-93.872375,31.820752],[-93.871285,31.820189],[-93.870937,31.819383],[-93.870917,31.816837],[-93.87301,31.816272],[-93.873432,31.815813],[-93.873253,31.814886],[-93.871947,31.81392],[-93.870839,31.813783],[-93.868484,31.815253],[-93.867319,31.815316],[-93.861384,31.812297],[-93.860482,31.811516],[-93.859316,31.809115],[-93.854573,31.806651],[-93.85339,31.805467],[-93.853529,31.802607],[-93.852655,31.801108],[-93.851481,31.80015],[-93.847632,31.799635],[-93.84706,31.799861],[-93.846188,31.802021],[-93.842892,31.800676],[-93.839343,31.80033],[-93.838413,31.798002],[-93.835942,31.79569],[-93.835613,31.794489],[-93.837556,31.789792],[-93.837696,31.787858],[-93.836634,31.786263],[-93.835874,31.785731],[-93.835855,31.785216],[-93.836371,31.784547],[-93.837778,31.783708],[-93.838144,31.782082],[-93.837693,31.780817],[-93.836229,31.780487],[-93.832821,31.781316],[-93.831732,31.780914],[-93.830849,31.779859],[-93.830849,31.779094],[-93.833242,31.778143],[-93.83312,31.777522],[-93.831515,31.77691],[-93.827451,31.777741],[-93.825621,31.776895],[-93.823443,31.775098],[-93.822598,31.773559],[-93.823133,31.772085],[-93.824568,31.770449],[-93.825112,31.769257],[-93.825328,31.76717],[-93.825956,31.766509],[-93.828809,31.76563],[-93.829587,31.764204],[-93.829587,31.763568],[-93.829099,31.763294],[-93.827288,31.764075],[-93.82681,31.763777],[-93.826171,31.762327],[-93.826105,31.759894],[-93.826461,31.759193],[-93.827343,31.75937],[-93.827541,31.760885],[-93.828348,31.76107],[-93.829821,31.760619],[-93.830112,31.759644],[-93.830065,31.757895],[-93.830909,31.756606],[-93.830975,31.755671],[-93.831622,31.754592],[-93.835234,31.752843],[-93.836884,31.750171],[-93.835257,31.747236],[-93.831698,31.745514],[-93.826905,31.737596],[-93.824579,31.734397],[-93.822177,31.732675],[-93.815962,31.73011],[-93.81493,31.728688],[-93.814309,31.721919],[-93.812477,31.715246],[-93.81276,31.714415],[-93.816918,31.708765],[-93.816694,31.707917],[-93.816291,31.707497],[-93.811802,31.707485],[-93.811052,31.706112],[-93.811121,31.703681],[-93.809798,31.703082],[-93.807047,31.702813],[-93.797407,31.705615],[-93.79507,31.704975],[-93.794462,31.70332],[-93.794548,31.702076],[-93.803396,31.687812],[-93.805144,31.686957],[-93.805229,31.686424],[-93.804479,31.685664],[-93.804273,31.684969],[-93.804462,31.684089],[-93.806342,31.683033],[-93.806879,31.681571],[-93.810975,31.679846],[-93.811559,31.678134],[-93.812509,31.677005],[-93.814997,31.676595],[-93.816285,31.67536],[-93.815629,31.674035],[-93.812516,31.6719],[-93.812433,31.670245],[-93.815834,31.668058],[-93.816651,31.66801],[-93.817372,31.669166],[-93.816957,31.671031],[-93.817425,31.672146],[-93.820109,31.672552],[-93.82114,31.673611],[-93.822051,31.673967],[-93.823169,31.672893],[-93.826462,31.666919],[-93.826297,31.66305],[-93.825661,31.661022],[-93.822511,31.658153],[-93.821371,31.65661],[-93.819486,31.65265],[-93.818427,31.651479],[-93.817029,31.650928],[-93.813623,31.650926],[-93.812788,31.650441],[-93.811682,31.649309],[-93.811516,31.647435],[-93.813234,31.646491],[-93.816122,31.6489],[-93.816788,31.648949],[-93.818037,31.647892],[-93.818077,31.646189],[-93.817405,31.643572],[-93.817464,31.641496],[-93.816555,31.640276],[-93.816369,31.639258],[-93.818132,31.63682],[-93.818062,31.635568],[-93.816592,31.633669],[-93.815955,31.632279],[-93.816528,31.631787],[-93.818527,31.631473],[-93.819992,31.630626],[-93.820848,31.62902],[-93.820344,31.627089],[-93.817615,31.625843],[-93.816987,31.625175],[-93.817264,31.623752],[-93.816838,31.622509],[-93.817155,31.621872],[-93.820728,31.621441],[-93.823754,31.62064],[-93.82583,31.621382],[-93.826852,31.621047],[-93.82717,31.620276],[-93.825956,31.619535],[-93.822154,31.618522],[-93.818787,31.616603],[-93.818717,31.614556],[-93.819582,31.614121],[-93.822642,31.614529],[-93.827083,31.612857],[-93.827865,31.613496],[-93.827273,31.614401],[-93.82629,31.614903],[-93.825854,31.61591],[-93.827852,31.616551],[-93.832782,31.61075],[-93.833103,31.609038],[-93.836404,31.608002],[-93.838057,31.606795],[-93.83913,31.60354],[-93.837606,31.601826],[-93.839262,31.599981],[-93.839416,31.5992],[-93.838263,31.594709],[-93.835805,31.591449],[-93.834918,31.586212],[-93.830363,31.579355],[-93.82715,31.578477],[-93.823399,31.57498],[-93.820269,31.57286],[-93.818434,31.570943],[-93.8184,31.5696],[-93.819149,31.56893],[-93.82221,31.568834],[-93.822958,31.56813],[-93.822889,31.565914],[-93.821564,31.563696],[-93.817444,31.564092],[-93.81686,31.563084],[-93.816984,31.561674],[-93.818363,31.560164],[-93.821107,31.560471],[-93.820764,31.558221],[-93.818582,31.554826],[-93.813973,31.550556],[-93.81025,31.549878],[-93.809475,31.547863],[-93.808305,31.546383],[-93.803337,31.543622],[-93.800515,31.543449],[-93.799536,31.542977],[-93.799894,31.54187],[-93.802331,31.540733],[-93.803197,31.539828],[-93.803359,31.538787],[-93.799206,31.538075],[-93.798821,31.53653],[-93.798828,31.534817],[-93.798087,31.534044],[-93.790298,31.530773],[-93.787687,31.527344],[-93.785028,31.525962],[-93.780835,31.525384],[-93.776444,31.525376],[-93.767315,31.524082],[-93.760062,31.523933],[-93.754883,31.524796],[-93.75386,31.525331],[-93.75413,31.526406],[-93.757613,31.527554],[-93.758195,31.528731],[-93.758111,31.529872],[-93.7565,31.53054],[-93.7547,31.529865],[-93.753414,31.528284],[-93.751889,31.527475],[-93.749772,31.529783],[-93.748319,31.53056],[-93.747437,31.530682],[-93.747043,31.530175],[-93.747361,31.528415],[-93.746901,31.52794],[-93.746029,31.527434],[-93.743403,31.52726],[-93.742652,31.52656],[-93.742313,31.52289],[-93.740529,31.518142],[-93.740978,31.517568],[-93.741841,31.517236],[-93.743876,31.518064],[-93.744448,31.517853],[-93.744232,31.516829],[-93.742693,31.515694],[-93.737376,31.513864],[-93.735238,31.513496],[-93.732902,31.513451],[-93.730137,31.513972],[-93.72136,31.513848],[-93.714703,31.514156],[-93.71249,31.513361],[-93.711046,31.512161],[-93.710952,31.511427],[-93.711402,31.510652],[-93.713886,31.50864],[-93.714683,31.508163],[-93.718358,31.50794],[-93.719567,31.506921],[-93.719708,31.50584],[-93.71771,31.503972],[-93.717176,31.503029],[-93.717119,31.501916],[-93.717485,31.501496],[-93.718938,31.500953],[-93.720925,31.501862],[-93.7222,31.501981],[-93.723447,31.500938],[-93.723794,31.500178],[-93.723662,31.499252],[-93.724081,31.496401],[-93.722238,31.494967],[-93.721941,31.494283],[-93.721974,31.493653],[-93.722596,31.492769],[-93.72516,31.491397],[-93.729613,31.487922],[-93.731346,31.487274],[-93.735315,31.489074],[-93.735707,31.488757],[-93.736453,31.485676],[-93.737168,31.484622],[-93.741894,31.483537],[-93.742892,31.483779],[-93.745152,31.485638],[-93.748492,31.485117],[-93.752387,31.48274],[-93.752988,31.48171],[-93.752198,31.479551],[-93.751368,31.479072],[-93.750183,31.479314],[-93.748003,31.481648],[-93.746483,31.481828],[-93.745542,31.480396],[-93.745401,31.47812],[-93.748474,31.474808],[-93.749775,31.470747],[-93.749476,31.46869],[-93.741864,31.465872],[-93.731513,31.457474],[-93.726609,31.454864],[-93.721931,31.453447],[-93.720994,31.453752],[-93.717734,31.457106],[-93.71675,31.457548],[-93.715619,31.457054],[-93.713637,31.454474],[-93.711663,31.453049],[-93.70997,31.45276],[-93.709027,31.453404],[-93.708941,31.45443],[-93.709366,31.455945],[-93.709128,31.456746],[-93.707946,31.456979],[-93.70663,31.456793],[-93.703934,31.455493],[-93.703771,31.453831],[-93.709416,31.442995],[-93.709512,31.442025],[-93.708203,31.441557],[-93.693272,31.440078],[-93.692659,31.439597],[-93.692526,31.438201],[-93.692631,31.437192],[-93.701051,31.424629],[-93.702953,31.420371],[-93.704678,31.4189],[-93.704811,31.416703],[-93.70446,31.414953],[-93.704904,31.412924],[-93.704879,31.410881],[-93.701611,31.409334],[-93.697895,31.409679],[-93.695866,31.409392],[-93.690326,31.406591],[-93.688134,31.404762],[-93.682097,31.398332],[-93.681279,31.398049],[-93.676555,31.398733],[-93.674117,31.397681],[-93.671644,31.393352],[-93.670182,31.387184],[-93.669017,31.371379],[-93.669396,31.37053],[-93.67242,31.371187],[-93.673634,31.370964],[-93.673847,31.370633],[-93.673322,31.368682],[-93.670999,31.366221],[-93.669069,31.36543],[-93.667273,31.365413],[-93.658343,31.366845],[-93.652025,31.369008],[-93.648257,31.370855],[-93.647211,31.371109],[-93.644104,31.370645],[-93.641384,31.372455],[-93.639552,31.372591],[-93.639222,31.37202],[-93.641722,31.367377],[-93.644124,31.365528],[-93.64498,31.362966],[-93.644891,31.360174],[-93.645866,31.359008],[-93.647638,31.358097],[-93.652905,31.357116],[-93.657834,31.35562],[-93.667395,31.353501],[-93.668439,31.353012],[-93.669547,31.35057],[-93.668707,31.343939],[-93.669024,31.338829],[-93.67284,31.334278],[-93.674551,31.332641],[-93.676535,31.331454],[-93.677277,31.330483],[-93.676973,31.329612],[-93.673954,31.326186],[-93.673553,31.324542],[-93.675342,31.322033],[-93.676263,31.321351],[-93.680659,31.320341],[-93.682941,31.318999],[-93.683478,31.318109],[-93.683981,31.314621],[-93.687159,31.311403],[-93.687851,31.309835],[-93.687899,31.308543],[-93.687278,31.306068],[-93.68622,31.30399],[-93.683561,31.301507],[-93.680441,31.301592],[-93.67544,31.30104],[-93.671676,31.299586],[-93.668928,31.297975],[-93.667651,31.294986],[-93.665592,31.292702],[-93.6641,31.289731],[-93.659285,31.282106],[-93.658685,31.281624],[-93.657004,31.281736],[-93.655095,31.282857],[-93.651152,31.284487],[-93.650042,31.284677],[-93.648648,31.28423],[-93.647053,31.281161],[-93.644633,31.277764],[-93.644235,31.276612],[-93.643926,31.27123],[-93.642516,31.269508],[-93.641384,31.269157],[-93.639694,31.269163],[-93.635168,31.269979],[-93.628652,31.270488],[-93.622818,31.271338],[-93.620829,31.271299],[-93.620343,31.271025],[-93.620034,31.270419],[-93.620159,31.266333],[-93.619924,31.265178],[-93.617999,31.263371],[-93.615346,31.261862],[-93.614402,31.260869],[-93.613942,31.259375],[-93.615637,31.255127],[-93.615402,31.254166],[-93.613944,31.252858],[-93.614288,31.251631],[-93.621202,31.249642],[-93.621757,31.249127],[-93.62133,31.2481],[-93.620127,31.246953],[-93.617735,31.245744],[-93.616308,31.244595],[-93.617109,31.241005],[-93.616205,31.237548],[-93.616274,31.236838],[-93.618255,31.233105],[-93.618107,31.232685],[-93.617482,31.232135],[-93.616471,31.231979],[-93.612491,31.232689],[-93.610705,31.232152],[-93.609772,31.22909],[-93.608747,31.228014],[-93.608158,31.227835],[-93.601656,31.229523],[-93.598391,31.231097],[-93.597773,31.23112],[-93.596886,31.230626],[-93.596273,31.22951],[-93.596266,31.228856],[-93.596785,31.227986],[-93.599353,31.224949],[-93.59874,31.22385],[-93.595305,31.221815],[-93.59497,31.221314],[-93.595255,31.220314],[-93.595678,31.219798],[-93.603496,31.21671],[-93.603816,31.214161],[-93.603379,31.211343],[-93.603541,31.210673],[-93.604993,31.208053],[-93.607061,31.205766],[-93.607243,31.204806],[-93.606517,31.203755],[-93.601986,31.19991],[-93.601857,31.199393],[-93.601941,31.192887],[-93.601589,31.187511],[-93.602443,31.182541],[-93.600308,31.176158],[-93.589119,31.165889],[-93.587585,31.165577],[-93.583558,31.166868],[-93.57931,31.167404],[-93.578166,31.167855],[-93.57718,31.168571],[-93.572841,31.174548],[-93.569563,31.177574],[-93.564018,31.180312],[-93.560918,31.182486],[-93.554592,31.184823],[-93.551472,31.18558],[-93.549984,31.186627],[-93.548584,31.186476],[-93.545836,31.184215],[-93.544365,31.183478],[-93.542367,31.183193],[-93.53928,31.183547],[-93.536287,31.185312],[-93.535098,31.185612],[-93.53428,31.185425],[-93.532545,31.183314],[-93.531318,31.179806],[-93.532023,31.175978],[-93.532807,31.174265],[-93.535953,31.172409],[-93.542309,31.17164],[-93.542933,31.171277],[-93.543061,31.170658],[-93.542995,31.169643],[-93.5421,31.167888],[-93.538977,31.16515],[-93.537989,31.163427],[-93.536412,31.160387],[-93.536481,31.158471],[-93.540164,31.156054],[-93.546372,31.156599],[-93.548506,31.156195],[-93.5487,31.155839],[-93.548515,31.148229],[-93.546102,31.143354],[-93.544735,31.136066],[-93.543673,31.134106],[-93.53787,31.12657],[-93.537824,31.125181],[-93.539366,31.115207],[-93.539832,31.114152],[-93.540737,31.113573],[-93.544377,31.112404],[-93.545935,31.111197],[-93.548696,31.106035],[-93.549125,31.103231],[-93.548632,31.101203],[-93.549067,31.100219],[-93.550341,31.099651],[-93.558179,31.097983],[-93.558623,31.096926],[-93.558316,31.096481],[-93.554628,31.095188],[-93.553852,31.094584],[-93.553566,31.094164],[-93.553722,31.093869],[-93.554891,31.094829],[-93.557941,31.095874],[-93.559378,31.097678],[-93.561195,31.097783],[-93.562415,31.097529],[-93.563182,31.096988],[-93.563654,31.096009],[-93.563746,31.094522],[-93.563269,31.093592],[-93.560894,31.092226],[-93.558581,31.091504],[-93.557808,31.090692],[-93.556641,31.087435],[-93.555815,31.086965],[-93.554638,31.08687],[-93.552279,31.088327],[-93.550714,31.090985],[-93.550083,31.091072],[-93.549262,31.090412],[-93.548699,31.088637],[-93.549399,31.087602],[-93.551436,31.085735],[-93.552467,31.082489],[-93.552205,31.078931],[-93.551311,31.078661],[-93.542454,31.078336],[-93.54013,31.07794],[-93.537766,31.077213],[-93.532627,31.074552],[-93.527645,31.07451],[-93.527168,31.073189],[-93.528057,31.071022],[-93.528935,31.070234],[-93.528732,31.069214],[-93.525131,31.066551],[-93.523322,31.066186],[-93.52114,31.066325],[-93.520126,31.065816],[-93.518942,31.063162],[-93.518912,31.061863],[-93.521145,31.057275],[-93.522971,31.05667],[-93.528438,31.057176],[-93.530129,31.056814],[-93.531989,31.055715],[-93.532215,31.055236],[-93.531628,31.053627],[-93.53073,31.051749],[-93.527743,31.048317],[-93.526289,31.047272],[-93.524202,31.04635],[-93.519961,31.045168],[-93.518899,31.043736],[-93.519196,31.042694],[-93.519941,31.041876],[-93.521932,31.041413],[-93.524048,31.04152],[-93.52445,31.041139],[-93.524904,31.039947],[-93.524739,31.039007],[-93.523383,31.037716],[-93.521598,31.036301],[-93.518841,31.03607],[-93.510073,31.033423],[-93.508292,31.032352],[-93.508039,31.031532],[-93.508141,31.030245],[-93.50896,31.029017],[-93.515738,31.025203],[-93.522314,31.020098],[-93.524522,31.019642],[-93.531482,31.020243],[-93.532457,31.019719],[-93.53343,31.018971],[-93.534612,31.017323],[-93.537458,31.012202],[-93.539184,31.008212],[-93.540429,31.007808],[-93.543086,31.008299],[-93.54576,31.010033],[-93.547626,31.010373],[-93.549377,31.010143],[-93.551466,31.009237],[-93.552303,31.00831],[-93.554265,31.004547],[-93.555927,31.003744],[-93.562664,31.008907],[-93.564164,31.011512],[-93.565631,31.013156],[-93.566561,31.013057],[-93.567548,31.012672],[-93.571465,31.009599],[-93.572729,31.007743],[-93.573044,31.004712],[-93.573423,31.003858],[-93.574588,31.002363],[-93.577094,31.001003],[-93.578207,30.999995],[-93.577892,30.998764],[-93.575958,30.995714],[-93.574,30.993399],[-93.573365,30.991828],[-93.572216,30.99121],[-93.570479,30.990815],[-93.56543,30.990579],[-93.564299,30.9897],[-93.564164,30.988368],[-93.565551,30.986257],[-93.565885,30.985168],[-93.566858,30.979403],[-93.568296,30.977096],[-93.569295,30.976191],[-93.572798,30.974724],[-93.574332,30.973708],[-93.573537,30.971206],[-93.572159,30.970273],[-93.567737,30.968971],[-93.564841,30.969527],[-93.562556,30.97091],[-93.560537,30.971289],[-93.558861,30.970861],[-93.556106,30.968639],[-93.55354,30.967374],[-93.550651,30.967499],[-93.549841,30.967118],[-93.547314,30.964755],[-93.546933,30.960132],[-93.546327,30.957802],[-93.543122,30.95674],[-93.539274,30.95652],[-93.534628,30.957998],[-93.531758,30.958217],[-93.530927,30.957114],[-93.530507,30.955738],[-93.530534,30.954578],[-93.532224,30.95182],[-93.532555,30.950702],[-93.532367,30.948977],[-93.530936,30.94453],[-93.529814,30.942172],[-93.526439,30.939375],[-93.526013,30.937535],[-93.527262,30.935634],[-93.527837,30.933066],[-93.526457,30.930365],[-93.526474,30.929464],[-93.527471,30.928035],[-93.529636,30.927538],[-93.530703,30.926778],[-93.531234,30.924388],[-93.532008,30.923754],[-93.534173,30.924033],[-93.535832,30.923691],[-93.537974,30.922742],[-93.541782,30.920207],[-93.543423,30.920153],[-93.544116,30.921214],[-93.542073,30.925849],[-93.542589,30.926422],[-93.545718,30.9271],[-93.546838,30.926601],[-93.549283,30.924372],[-93.552085,30.918119],[-93.558562,30.913238],[-93.558737,30.911652],[-93.558087,30.910797],[-93.5561,30.909635],[-93.554674,30.909216],[-93.553026,30.9081],[-93.552916,30.907153],[-93.553995,30.902773],[-93.553116,30.901053],[-93.548623,30.899894],[-93.548643,30.898622],[-93.549202,30.897439],[-93.552475,30.896704],[-93.557806,30.896746],[-93.561564,30.895684],[-93.566316,30.894839],[-93.568158,30.893374],[-93.568508,30.892364],[-93.570222,30.889912],[-93.572957,30.88757],[-93.57408,30.884529],[-93.571855,30.879389],[-93.5717,30.877963],[-93.570604,30.875193],[-93.568137,30.874565],[-93.56559,30.87564],[-93.564795,30.875675],[-93.563233,30.874867],[-93.563014,30.872568],[-93.564651,30.870113],[-93.564504,30.86864],[-93.563011,30.868108],[-93.559763,30.869826],[-93.559142,30.869937],[-93.558616,30.869424],[-93.558502,30.867905],[-93.561394,30.861942],[-93.562147,30.859332],[-93.561911,30.858332],[-93.559653,30.855608],[-93.55792,30.854299],[-93.557314,30.852081],[-93.564101,30.846744],[-93.568195,30.845515],[-93.568717,30.844182],[-93.56797,30.843026],[-93.565803,30.84207],[-93.563494,30.842049],[-93.559854,30.840988],[-93.558024,30.840075],[-93.555603,30.837908],[-93.553626,30.83514],[-93.553104,30.833111],[-93.553311,30.832542],[-93.553744,30.831785],[-93.55732,30.828419],[-93.556179,30.826387],[-93.554057,30.824941],[-93.554433,30.823524],[-93.557842,30.821015],[-93.561912,30.819459],[-93.564164,30.817541],[-93.564579,30.816402],[-93.563763,30.813606],[-93.561153,30.810613],[-93.560707,30.809639],[-93.560791,30.808628],[-93.561349,30.807577],[-93.56298,30.806009],[-93.569318,30.802962],[-93.572471,30.80245],[-93.574677,30.801373],[-93.578437,30.801749],[-93.580535,30.803001],[-93.581505,30.803105],[-93.582229,30.803117],[-93.583775,30.801779],[-93.58415,30.799141],[-93.584094,30.796689],[-93.583188,30.794284],[-93.581388,30.791627],[-93.581921,30.788979],[-93.583693,30.787762],[-93.58716,30.787859],[-93.588939,30.78755],[-93.589381,30.786676],[-93.586956,30.782895],[-93.58445,30.781164],[-93.583165,30.778596],[-93.583815,30.777052],[-93.587143,30.776815],[-93.590049,30.777662],[-93.591731,30.776664],[-93.592714,30.775095],[-93.593505,30.772275],[-93.592722,30.769648],[-93.591558,30.767258],[-93.592101,30.763675],[-93.600501,30.762012],[-93.602161,30.760761],[-93.603663,30.760115],[-93.60492,30.761073],[-93.605225,30.764361],[-93.605941,30.764593],[-93.606653,30.763572],[-93.606086,30.760123],[-93.606496,30.758797],[-93.606785,30.758157],[-93.609178,30.75726],[-93.610447,30.757858],[-93.611365,30.759871],[-93.612372,30.760597],[-93.613474,30.76085],[-93.614346,30.760195],[-93.614728,30.758775],[-93.614777,30.756064],[-93.614038,30.755107],[-93.612424,30.754123],[-93.611723,30.752331],[-93.608364,30.748127],[-93.608414,30.746664],[-93.608998,30.745507],[-93.609946,30.744649],[-93.613696,30.744587],[-93.617753,30.743252],[-93.61913,30.741997],[-93.619031,30.740338],[-93.617689,30.738478],[-93.61282,30.736707],[-93.610645,30.734279],[-93.609134,30.730039],[-93.610081,30.728249],[-93.610953,30.727868],[-93.612393,30.727987],[-93.615307,30.729816],[-93.616569,30.729953],[-93.617719,30.728897],[-93.616885,30.727545],[-93.614893,30.726788],[-93.609814,30.727339],[-93.609047,30.724272],[-93.609544,30.723139],[-93.610637,30.722259],[-93.613274,30.722814],[-93.613746,30.722548],[-93.613644,30.722143],[-93.609699,30.720388],[-93.608326,30.718655],[-93.605391,30.717159],[-93.605817,30.716594],[-93.606868,30.716241],[-93.608298,30.715195],[-93.60872,30.715235],[-93.609569,30.717892],[-93.610046,30.718293],[-93.611211,30.718062],[-93.612598,30.716532],[-93.613331,30.717054],[-93.614447,30.71987],[-93.615669,30.719595],[-93.616438,30.718626],[-93.617229,30.71858],[-93.616185,30.713981],[-93.616437,30.712388],[-93.619655,30.708939],[-93.620157,30.707073],[-93.620123,30.705951],[-93.620773,30.704121],[-93.621809,30.702762],[-93.624466,30.701083],[-93.624676,30.699937],[-93.624384,30.698643],[-93.623279,30.69736],[-93.62102,30.696018],[-93.620373,30.69513],[-93.620442,30.694142],[-93.626647,30.688357],[-93.627228,30.687412],[-93.627709,30.683731],[-93.629887,30.679935],[-93.631345,30.677872],[-93.636054,30.67632],[-93.636974,30.67455],[-93.638215,30.67306],[-93.63964,30.672505],[-93.642697,30.673395],[-93.645306,30.673481],[-93.646623,30.671435],[-93.646847,30.668727],[-93.647302,30.668166],[-93.648584,30.667647],[-93.651473,30.66994],[-93.653494,30.670465],[-93.654972,30.670185],[-93.658269,30.664154],[-93.659745,30.662052],[-93.661251,30.661203],[-93.663572,30.66188],[-93.665753,30.661581],[-93.668189,30.660146],[-93.670358,30.658007],[-93.670662,30.65651],[-93.670035,30.654056],[-93.670536,30.652626],[-93.672094,30.651697],[-93.673838,30.651297],[-93.674224,30.650166],[-93.674134,30.648686],[-93.674761,30.647683],[-93.6786,30.64419],[-93.681086,30.643108],[-93.682972,30.641251],[-93.682868,30.639346],[-93.68078,30.636786],[-93.680415,30.634877],[-93.680799,30.633782],[-93.681763,30.633033],[-93.683819,30.632578],[-93.684211,30.631881],[-93.684715,30.63081],[-93.683887,30.6286],[-93.685121,30.625201],[-93.682072,30.620926],[-93.681802,30.619516],[-93.681983,30.618584],[-93.685702,30.616418],[-93.686905,30.613757],[-93.689134,30.611406],[-93.689072,30.610836],[-93.688287,30.610151],[-93.684396,30.609181],[-93.683372,30.608249],[-93.682843,30.604999],[-93.682082,30.603256],[-93.679553,30.600342],[-93.678767,30.598629],[-93.678662,30.594097],[-93.678949,30.593637],[-93.679609,30.593402],[-93.683649,30.59352],[-93.685066,30.592086],[-93.684933,30.587145],[-93.685466,30.58603],[-93.686573,30.58572],[-93.691552,30.585482],[-93.692222,30.585706],[-93.692437,30.586196],[-93.691751,30.587959],[-93.687804,30.590138],[-93.687912,30.591099],[-93.688739,30.592123],[-93.692869,30.594382],[-93.693976,30.594217],[-93.700892,30.591643],[-93.703297,30.588773],[-93.703908,30.588441],[-93.706034,30.588035],[-93.708482,30.588672],[-93.711318,30.588906],[-93.71253,30.588575],[-93.713782,30.587584],[-93.713732,30.583131],[-93.714032,30.580284],[-93.715068,30.579018],[-93.716821,30.57786],[-93.717911,30.577767],[-93.720477,30.58036],[-93.721493,30.580553],[-93.727844,30.57407],[-93.728062,30.572403],[-93.726165,30.56952],[-93.726423,30.568105],[-93.727616,30.567248],[-93.727818,30.565919],[-93.7243,30.562015],[-93.723945,30.559224],[-93.725403,30.557104],[-93.730144,30.554218],[-93.731423,30.552861],[-93.731155,30.550366],[-93.728763,30.546438],[-93.72876,30.545296],[-93.734801,30.541731],[-93.739494,30.540643],[-93.740253,30.539569],[-93.739634,30.53809],[-93.738053,30.537309],[-93.733326,30.536849],[-93.732416,30.536366],[-93.732209,30.535805],[-93.732806,30.534882],[-93.733821,30.531735],[-93.732793,30.52996],[-93.727722,30.52567],[-93.72478,30.524828],[-93.720484,30.524328],[-93.719788,30.523609],[-93.718693,30.520851],[-93.716473,30.519231],[-93.714322,30.518562],[-93.71287,30.518613],[-93.711579,30.519065],[-93.709155,30.521845],[-93.708633,30.522034],[-93.707683,30.521337],[-93.707692,30.519971],[-93.708903,30.518823],[-93.710223,30.518263],[-93.711022,30.517275],[-93.709892,30.513851],[-93.710019,30.51333],[-93.711412,30.51222],[-93.711762,30.510915],[-93.710106,30.510558],[-93.707653,30.511066],[-93.707559,30.510518],[-93.706358,30.509653],[-93.706809,30.507069],[-93.707346,30.50644],[-93.709726,30.506511],[-93.71062,30.506198],[-93.71072,30.505562],[-93.715145,30.501268],[-93.714124,30.499997],[-93.708536,30.500397],[-93.708669,30.499124],[-93.710395,30.497411],[-93.714495,30.497701],[-93.715377,30.49727],[-93.716602,30.494424],[-93.717069,30.494449],[-93.713819,30.490521],[-93.711995,30.487635],[-93.710247,30.486253],[-93.70955,30.485093],[-93.709763,30.482649],[-93.711727,30.482299],[-93.713178,30.483398],[-93.713842,30.484615],[-93.71483,30.485235],[-93.716173,30.485085],[-93.717421,30.483822],[-93.716811,30.481495],[-93.714455,30.479481],[-93.712853,30.479032],[-93.711081,30.476877],[-93.710519,30.475498],[-93.710303,30.47394],[-93.712226,30.470627],[-93.711854,30.469437],[-93.711061,30.468749],[-93.707167,30.467488],[-93.706377,30.466904],[-93.704842,30.464559],[-93.703877,30.463779],[-93.702396,30.461735],[-93.699426,30.459512],[-93.699036,30.458805],[-93.699128,30.458165],[-93.700359,30.457532],[-93.703719,30.458251],[-93.706339,30.458141],[-93.707144,30.456547],[-93.706936,30.455341],[-93.705367,30.453233],[-93.703076,30.451567],[-93.702103,30.449759],[-93.703802,30.447756],[-93.706835,30.446491],[-93.70744,30.445933],[-93.707465,30.445045],[-93.706945,30.443994],[-93.705852,30.443334],[-93.704633,30.443118],[-93.700836,30.444915],[-93.699332,30.4452],[-93.698306,30.444928],[-93.697725,30.444321],[-93.697578,30.442233],[-93.698135,30.43888],[-93.698927,30.437234],[-93.699277,30.437376],[-93.702023,30.436307],[-93.703393,30.435356],[-93.704154,30.434353],[-93.703853,30.432579],[-93.702368,30.430922],[-93.70214,30.430369],[-93.702329,30.42984],[-93.703254,30.429447],[-93.705501,30.430184],[-93.708255,30.430252],[-93.709445,30.430967],[-93.711254,30.433149],[-93.711928,30.433428],[-93.712747,30.433175],[-93.713369,30.432163],[-93.713359,30.430741],[-93.714039,30.429729],[-93.716472,30.428442],[-93.716905,30.427679],[-93.716874,30.425976],[-93.716369,30.424755],[-93.717062,30.423114],[-93.718051,30.422579],[-93.719178,30.422722],[-93.719622,30.423513],[-93.719274,30.425467],[-93.719799,30.426803],[-93.721934,30.42904],[-93.722767,30.431983],[-93.723846,30.432138],[-93.726106,30.43072],[-93.726824,30.429675],[-93.727152,30.427672],[-93.726834,30.423642],[-93.722744,30.421369],[-93.722277,30.420179],[-93.722749,30.419557],[-93.72671,30.419392],[-93.727548,30.41872],[-93.727871,30.4177],[-93.727551,30.416526],[-93.727724,30.415158],[-93.728721,30.413547],[-93.730608,30.41333],[-93.731988,30.413878],[-93.732988,30.415128],[-93.733917,30.414935],[-93.734984,30.412266],[-93.734892,30.408339],[-93.736764,30.405478],[-93.738273,30.403963],[-93.741679,30.402975],[-93.742037,30.400515],[-93.742882,30.399758],[-93.745498,30.398747],[-93.745338,30.397028],[-93.745681,30.39657],[-93.748372,30.39684],[-93.751016,30.396484],[-93.751997,30.395753],[-93.752242,30.393415],[-93.752615,30.39275],[-93.755025,30.391495],[-93.756773,30.391156],[-93.757668,30.390441],[-93.758753,30.387892],[-93.758612,30.386186],[-93.757877,30.385996],[-93.755774,30.387273],[-93.755149,30.387004],[-93.754822,30.386313],[-93.75533,30.385029],[-93.757959,30.384474],[-93.758466,30.384033],[-93.755789,30.380646],[-93.755226,30.378848],[-93.754981,30.372899],[-93.755356,30.368956],[-93.754697,30.367191],[-93.754857,30.366091],[-93.755967,30.365794],[-93.756495,30.366253],[-93.758051,30.369692],[-93.758633,30.36967],[-93.759215,30.368754],[-93.759216,30.36802],[-93.758505,30.365842],[-93.757687,30.364581],[-93.754939,30.363478],[-93.751744,30.361046],[-93.750979,30.359899],[-93.751429,30.359441],[-93.752169,30.359373],[-93.754045,30.359741],[-93.755367,30.359582],[-93.755976,30.358414],[-93.756064,30.356558],[-93.756803,30.356158],[-93.757532,30.356266],[-93.758502,30.357553],[-93.75893,30.360965],[-93.759218,30.361088],[-93.759709,30.360388],[-93.760326,30.360302],[-93.760779,30.35985],[-93.761022,30.359168],[-93.760938,30.357112],[-93.758118,30.354686],[-93.758703,30.354075],[-93.762183,30.353653],[-93.76248,30.353039],[-93.760727,30.351788],[-93.75821,30.350782],[-93.757718,30.349977],[-93.758541,30.349255],[-93.75981,30.348788],[-93.761779,30.346774],[-93.762308,30.34646],[-93.763413,30.346563],[-93.763655,30.34604],[-93.761112,30.344964],[-93.759533,30.342323],[-93.75988,30.341869],[-93.760749,30.341809],[-93.764356,30.344448],[-93.765489,30.344253],[-93.765655,30.343409],[-93.763925,30.340173],[-93.763089,30.339457],[-93.761277,30.339074],[-93.759191,30.339602],[-93.758658,30.339019],[-93.764109,30.33383],[-93.765851,30.333105],[-93.765829,30.332745],[-93.764252,30.330229],[-93.762958,30.329448],[-93.75947,30.330225],[-93.75812,30.332126],[-93.757274,30.332354],[-93.755584,30.331505],[-93.755374,30.330542],[-93.755561,30.328869],[-93.755244,30.328387],[-93.754478,30.328226],[-93.752337,30.329485],[-93.751676,30.329347],[-93.751783,30.328361],[-93.752392,30.327605],[-93.756013,30.326784],[-93.756198,30.326004],[-93.753321,30.323526],[-93.752688,30.322609],[-93.750711,30.321753],[-93.751239,30.320402],[-93.751041,30.319852],[-93.750262,30.319443],[-93.748305,30.319153],[-93.747815,30.318756],[-93.748458,30.31802],[-93.750181,30.31701],[-93.750201,30.316155],[-93.747821,30.315972],[-93.746868,30.315376],[-93.747021,30.314283],[-93.748619,30.312405],[-93.748609,30.311945],[-93.745648,30.311744],[-93.744211,30.310681],[-93.743296,30.30904],[-93.740918,30.30723],[-93.740965,30.30669],[-93.741377,30.306327],[-93.744352,30.305451],[-93.744293,30.304418],[-93.743364,30.30322],[-93.743029,30.301772],[-93.742424,30.301139],[-93.74149,30.30115],[-93.739643,30.303507],[-93.73852,30.303745],[-93.737129,30.302059],[-93.734546,30.301675],[-93.734855,30.301079],[-93.737938,30.300247],[-93.738113,30.299586],[-93.737556,30.299369],[-93.735891,30.299435],[-93.734228,30.298813],[-93.732906,30.298993],[-93.731903,30.298372],[-93.729922,30.297917],[-93.729046,30.296705],[-93.72799,30.296776],[-93.72625,30.298179],[-93.725511,30.298226],[-93.724797,30.297838],[-93.724659,30.295615],[-93.724208,30.295112],[-93.722808,30.29491],[-93.720566,30.295947],[-93.718982,30.296246],[-93.718347,30.295788],[-93.717157,30.293611],[-93.715413,30.292764],[-93.714779,30.293155],[-93.71478,30.293773],[-93.715996,30.295171],[-93.715996,30.295537],[-93.715521,30.295629],[-93.712269,30.292331],[-93.712558,30.290978],[-93.713385,30.289862],[-93.713653,30.290003],[-93.713652,30.288582],[-93.712908,30.287939],[-93.710573,30.287987],[-93.710439,30.287765],[-93.709532,30.289312],[-93.709477,30.292001],[-93.708354,30.292563],[-93.707756,30.292608],[-93.706061,30.291791],[-93.704584,30.289949],[-93.704589,30.288641],[-93.705254,30.286181],[-93.706251,30.284925],[-93.708596,30.284283],[-93.709053,30.283874],[-93.709419,30.281917],[-93.708446,30.281031],[-93.704917,30.28083],[-93.704203,30.280188],[-93.70406,30.279417],[-93.705626,30.277393],[-93.706526,30.273501],[-93.707365,30.272947],[-93.708165,30.272904],[-93.710084,30.273759],[-93.710416,30.273172],[-93.710152,30.272274],[-93.709663,30.271892],[-93.708005,30.271818],[-93.707757,30.271569],[-93.708618,30.268673],[-93.708666,30.267428],[-93.705732,30.267934],[-93.705452,30.267756],[-93.705911,30.267115],[-93.708054,30.266673],[-93.708819,30.265923],[-93.708717,30.265081],[-93.708054,30.264793],[-93.707468,30.265036],[-93.706881,30.265898],[-93.706575,30.265943],[-93.706218,30.265477],[-93.706448,30.264349],[-93.707979,30.263686],[-93.707266,30.262379],[-93.707266,30.261471],[-93.705126,30.260585],[-93.703289,30.261069],[-93.702983,30.260517],[-93.703544,30.259321],[-93.705372,30.257152],[-93.705733,30.256007],[-93.705666,30.254116],[-93.706301,30.252956],[-93.70695,30.252417],[-93.708789,30.251949],[-93.708928,30.251653],[-93.707326,30.249668],[-93.707432,30.249221],[-93.708916,30.249043],[-93.70905,30.248048],[-93.70831,30.247532],[-93.706266,30.247441],[-93.705542,30.246502],[-93.705932,30.246127],[-93.706439,30.246464],[-93.708249,30.246352],[-93.709081,30.246017],[-93.709531,30.244932],[-93.709018,30.243963],[-93.706939,30.244261],[-93.706993,30.243736],[-93.705002,30.242351],[-93.703218,30.239759],[-93.703099,30.238459],[-93.703683,30.238011],[-93.704181,30.238035],[-93.706668,30.239402],[-93.707812,30.239624],[-93.70945,30.238514],[-93.709569,30.237666],[-93.708401,30.236158],[-93.707656,30.235849],[-93.706095,30.236269],[-93.705625,30.235364],[-93.704661,30.234565],[-93.70449,30.233787],[-93.705288,30.233359],[-93.707623,30.233791],[-93.709513,30.233548],[-93.71013,30.233948],[-93.71013,30.234466],[-93.709679,30.234915],[-93.709749,30.235512],[-93.710323,30.235726],[-93.711098,30.235247],[-93.710837,30.233837],[-93.711433,30.231593],[-93.713427,30.229466],[-93.713496,30.2289],[-93.711856,30.229092],[-93.709509,30.227834],[-93.709867,30.227488],[-93.711081,30.227432],[-93.711983,30.227022],[-93.713113,30.226001],[-93.713642,30.224656],[-93.713371,30.22406],[-93.711154,30.222976],[-93.711176,30.22207],[-93.712023,30.221473],[-93.712152,30.219815],[-93.713058,30.218641],[-93.713755,30.218739],[-93.714853,30.220143],[-93.716065,30.220934],[-93.718463,30.219998],[-93.71965,30.218219],[-93.719938,30.216234],[-93.720689,30.215481],[-93.720544,30.214935],[-93.719861,30.21485],[-93.720287,30.215395],[-93.718199,30.215504],[-93.71702,30.216131],[-93.717788,30.215472],[-93.719542,30.214985],[-93.719557,30.214751],[-93.717517,30.213244],[-93.717119,30.21204],[-93.717693,30.210984],[-93.720413,30.210781],[-93.720997,30.210409],[-93.721259,30.209611],[-93.720931,30.208461],[-93.718219,30.206441],[-93.717438,30.206208],[-93.717007,30.206304],[-93.71548,30.208891],[-93.714996,30.209043],[-93.714192,30.208659],[-93.715003,30.204488],[-93.714617,30.202383],[-93.716371,30.20259],[-93.717904,30.200723],[-93.717102,30.199406],[-93.71533,30.198185],[-93.714755,30.197404],[-93.716134,30.196898],[-93.717648,30.194888],[-93.717839,30.193999],[-93.717523,30.193085],[-93.713227,30.193245],[-93.710622,30.196541],[-93.709121,30.197208],[-93.708222,30.196224],[-93.70823,30.194982],[-93.70794,30.194454],[-93.706044,30.193978],[-93.705495,30.192921],[-93.705663,30.191771],[-93.708992,30.190959],[-93.710858,30.191342],[-93.712024,30.192729],[-93.712552,30.192456],[-93.71281,30.188827],[-93.712423,30.187172],[-93.711422,30.186226],[-93.709548,30.186897],[-93.708795,30.186353],[-93.708896,30.185786],[-93.709573,30.185071],[-93.709712,30.18298],[-93.710684,30.179862],[-93.708027,30.179284],[-93.70709,30.179664],[-93.706609,30.180676],[-93.705621,30.180649],[-93.705488,30.180165],[-93.706399,30.17836],[-93.706538,30.176979],[-93.705196,30.174867],[-93.70424,30.174185],[-93.703429,30.174086],[-93.702612,30.174406],[-93.701239,30.17582],[-93.699953,30.175529],[-93.700254,30.174549],[-93.702094,30.17296],[-93.703,30.171695],[-93.703046,30.169753],[-93.702658,30.167824],[-93.701925,30.166711],[-93.700817,30.166226],[-93.702162,30.165104],[-93.702716,30.161748],[-93.70305,30.161231],[-93.705838,30.159268],[-93.706996,30.157465],[-93.707056,30.154226],[-93.706333,30.152416],[-93.706154,30.150596],[-93.707069,30.14911],[-93.709348,30.147632],[-93.709508,30.146672],[-93.708436,30.146608],[-93.706532,30.147424],[-93.703837,30.149205],[-93.701513,30.152027],[-93.70018,30.15272],[-93.697737,30.152946],[-93.696292,30.151601],[-93.695721,30.148612],[-93.693303,30.141899],[-93.691923,30.141088],[-93.689527,30.141751],[-93.688205,30.141357],[-93.688834,30.139945],[-93.692849,30.135213],[-93.693821,30.13499],[-93.694952,30.135181],[-93.698274,30.138619],[-93.699911,30.138626],[-93.70121,30.137458],[-93.701999,30.129995],[-93.700692,30.125105],[-93.700872,30.123114],[-93.70143,30.122295],[-93.702587,30.121841],[-93.706884,30.121554],[-93.707753,30.120943],[-93.707954,30.120016],[-93.70729,30.119365],[-93.703412,30.117185],[-93.702372,30.114753],[-93.702436,30.112721],[-93.702916,30.111777],[-93.70426,30.110657],[-93.70666,30.110113],[-93.710709,30.109761],[-93.712261,30.109041],[-93.712997,30.107857],[-93.714597,30.101825],[-93.715493,30.100529],[-93.718021,30.098129],[-93.723109,30.094866],[-93.723765,30.09413],[-93.724101,30.09301],[-93.723141,30.088722],[-93.722949,30.08613],[-93.723237,30.08389],[-93.724005,30.082626],[-93.724805,30.082098],[-93.726859,30.082268],[-93.727717,30.08341],[-93.729544,30.087867],[-93.730313,30.089034],[-93.731079,30.089518],[-93.733127,30.088374],[-93.733765,30.08757],[-93.734085,30.08613],[-93.733745,30.08459],[-93.732491,30.082589],[-93.72591,30.078469],[-93.720716,30.072981],[-93.717008,30.069583],[-93.715238,30.06887],[-93.706171,30.067311],[-93.703105,30.066261],[-93.70058,30.063683],[-93.699421,30.060323],[-93.699516,30.058578],[-93.700189,30.057],[-93.701092,30.05604],[-93.704151,30.054208],[-93.706578,30.053751],[-93.711074,30.054391],[-93.711797,30.055671],[-93.712112,30.059221],[-93.713772,30.065687],[-93.715461,30.066579],[-93.717884,30.065554],[-93.719453,30.063808],[-93.719714,30.061943],[-93.719685,30.05605],[-93.720805,30.053043],[-93.722309,30.051059],[-93.727187,30.0465],[-93.734486,30.040803],[-93.737446,30.037283],[-93.739158,30.032627],[-93.739734,30.023987],[-93.741078,30.021571],[-93.743958,30.019539],[-93.74879,30.017491],[-93.755014,30.015363],[-93.75663,30.014163],[-93.761959,30.00906],[-93.767239,30.00338],[-93.768444,30.001694],[-93.769383,29.9977],[-93.770567,29.996532],[-93.772935,29.995588],[-93.776807,29.995396],[-93.780823,29.994276],[-93.785191,29.991956],[-93.788599,29.988836],[-93.790087,29.986564],[-93.792423,29.979108],[-93.794439,29.974773],[-93.796151,29.972037],[-93.803591,29.962309],[-93.806551,29.957445],[-93.807815,29.954549],[-93.810375,29.947349],[-93.813735,29.935126],[-93.815558,29.925094],[-93.817286,29.918422],[-93.821478,29.910182],[-93.830374,29.894358],[-93.838374,29.882853],[-93.845079,29.874835],[-93.85514,29.864099],[-93.859896,29.859921],[-93.86357,29.857177],[-93.872446,29.85165],[-93.880999,29.848215],[-93.886215,29.845719],[-93.895575,29.840247],[-93.903576,29.835],[-93.913672,29.827192],[-93.922744,29.818808],[-93.92572,29.814744],[-93.927992,29.80964],[-93.929208,29.802952],[-93.928808,29.79708],[-93.926504,29.78956],[-93.922407,29.785048],[-93.89847,29.771577],[-93.893863,29.767294],[-93.892246,29.765241],[-93.890821,29.761673],[-93.890789,29.760873],[-93.892773,29.757033],[-93.893829,29.753033],[-93.892805,29.747129],[-93.891637,29.744618],[-93.888821,29.742234],[-93.887557,29.74209],[-93.873941,29.73777],[-93.871908,29.736922],[-93.87002,29.735482],[-93.863204,29.724059],[-93.8445,29.699644],[-93.837412,29.689885],[-93.83554,29.685661],[-93.834196,29.681069],[-93.831076,29.666879],[-93.828708,29.659535],[-93.814351,29.596576],[-93.825794,29.595828],[-93.836491,29.596845],[-93.848588,29.60026],[-93.857983,29.605087],[-93.866531,29.611834],[-93.875006,29.621426],[-93.906043,29.625001],[-94.033565,29.625002],[-94.12518,29.595559],[-94.250184,29.546764],[-94.250184,29.5476],[-94.370351,29.50023],[-94.372494,29.499741],[-94.375187,29.500131],[-94.419249,29.483452],[-94.499452,29.452337],[-94.50019,29.45159],[-94.625192,29.397662],[-94.650311,29.38282],[-94.646981,29.381008],[-94.643555,29.378486],[-94.640821,29.375235],[-94.636046,29.370636],[-94.628585,29.358279],[-94.625192,29.349517],[-94.625192,29.347758],[-94.623898,29.343143],[-94.624169,29.335198],[-94.627306,29.327899],[-94.629026,29.32164],[-94.633492,29.314449],[-94.638018,29.307965],[-94.642421,29.300136],[-94.65036,29.29189],[-94.659644,29.285145],[-94.66622,29.281047],[-94.680295,29.277603],[-94.692309,29.277051],[-94.707561,29.280785],[-94.713311,29.282521],[-94.741166,29.259583],[-94.747932,29.25024],[-94.75074,29.246928],[-94.772686,29.231718],[-94.840151,29.198346],[-94.912171,29.159318],[-94.963661,29.125241],[-94.96424,29.125241],[-95.000202,29.104452],[-95.086398,29.06824],[-95.088357,29.0652],[-95.091622,29.062739],[-95.087257,29.057996],[-95.089036,29.048046],[-95.093799,29.033327],[-95.105447,29.016048],[-95.106528,29.014935],[-95.115124,29.008631],[-95.12577,29.002989],[-95.139469,28.991697],[-95.156695,28.974271],[-95.180835,28.948931],[-95.206428,28.926692],[-95.227228,28.910379],[-95.241681,28.89996],[-95.252791,28.8926],[-95.267365,28.885063],[-95.290812,28.871643],[-95.308121,28.85883],[-95.310199,28.850965],[-95.315422,28.842209],[-95.322113,28.834442],[-95.329847,28.828699],[-95.340722,28.823085],[-95.353471,28.817863],[-95.365442,28.813757],[-95.377987,28.810279],[-95.3839,28.809387],[-95.394172,28.807],[-95.401159,28.805969],[-95.413068,28.805317],[-95.420071,28.805625],[-95.493888,28.76534],[-95.533784,28.750256],[-95.532019,28.750256],[-95.625232,28.702877],[-95.750238,28.638419],[-95.777845,28.625266],[-95.87524,28.582788],[-96.000243,28.532071],[-96.000243,28.533433],[-96.076048,28.500002],[-96.078331,28.500001],[-96.182242,28.452036],[-96.199375,28.442278],[-96.217837,28.431368],[-96.235458,28.421469],[-96.258191,28.407872],[-96.259806,28.400699],[-96.262905,28.394196],[-96.267069,28.388229],[-96.271767,28.382934],[-96.282307,28.375002],[-96.294175,28.368305],[-96.303533,28.36502],[-96.312419,28.363443],[-96.320762,28.362868],[-96.321428,28.360792],[-96.324204,28.356953],[-96.32874,28.352053],[-96.337945,28.3443],[-96.341807,28.342381],[-96.34129,28.340699],[-96.342291,28.335135],[-96.344731,28.325989],[-96.347637,28.32017],[-96.352686,28.312923],[-96.359293,28.305753],[-96.367967,28.297222],[-96.375252,28.29076],[-96.381092,28.287098],[-96.38929,28.282543],[-96.395645,28.279524],[-96.402403,28.278056],[-96.425807,28.268687],[-96.455074,28.255279],[-96.500256,28.235482],[-96.510049,28.23068],[-96.531,28.221164],[-96.556661,28.20648],[-96.596507,28.182998],[-96.618785,28.169522],[-96.640749,28.15539],[-96.666137,28.137684],[-96.730685,28.091268],[-96.746251,28.079622],[-96.784064,28.048554],[-96.844196,28.000296],[-96.875264,27.96992],[-96.908743,27.934091],[-96.938546,27.901199],[-96.959495,27.875302],[-96.984281,27.803783],[-96.987006,27.800842],[-96.99168,27.797166],[-97.008898,27.78679],[-97.013046,27.785288],[-97.021855,27.783364],[-97.037789,27.765692],[-97.046727,27.755049],[-97.050221,27.750308],[-97.125265,27.640597],[-97.165097,27.5683],[-97.167381,27.562816],[-97.199816,27.500319],[-97.250264,27.392308],[-97.256726,27.375321],[-97.288337,27.277584],[-97.296567,27.250323],[-97.304669,27.216929],[-97.306841,27.205748],[-97.309363,27.196109],[-97.309473,27.190842],[-97.311943,27.179492],[-97.313559,27.169689],[-97.315535,27.148146],[-97.316571,27.14113],[-97.319824,27.110023],[-97.321854,27.079308],[-97.32315,27.051146],[-97.322698,27.036033],[-97.323219,27.010256],[-97.321148,27.00033],[-97.320725,26.984484],[-97.31595,26.929289],[-97.313879,26.913126],[-97.310842,26.897682],[-97.306988,26.875334],[-97.300423,26.834613],[-97.296629,26.818647],[-97.292374,26.803255],[-97.282725,26.763423],[-97.251705,26.661866],[-97.224429,26.597694],[-97.217341,26.58467],[-97.214056,26.576766],[-97.212676,26.56688],[-97.212817,26.56403],[-97.212548,26.561651],[-97.201806,26.529057],[-97.196851,26.512843],[-97.184566,26.475852],[-97.167369,26.413108],[-97.156496,26.375348],[-97.126121,26.250351],[-97.125248,26.248285],[-97.125248,26.246333],[-97.124553,26.244415],[-97.121262,26.225549],[-97.117285,26.197964],[-97.113328,26.166312],[-97.112594,26.157957],[-97.110699,26.145367],[-97.110147,26.140583],[-97.109649,26.129468],[-97.10904,26.125354],[-97.108301,26.10451],[-97.100252,26.097664],[-97.097386,26.093508],[-97.09422,26.088376],[-97.092921,26.085102],[-97.089989,26.07534],[-97.08934,26.066115],[-97.090205,26.057169],[-97.091287,26.051598],[-97.094143,26.043044],[-97.097858,26.03862],[-97.091121,25.97384],[-97.125247,25.972593],[-97.146654,25.970969],[-97.147012,25.970516],[-97.14634,25.962614],[-97.146679,25.959391],[-97.146105,25.956657],[-97.147333,25.955701],[-97.147278,25.953991],[-97.147786,25.953143],[-97.150485,25.951472],[-97.156606,25.94902],[-97.158954,25.949119],[-97.160297,25.95025],[-97.160462,25.950985],[-97.158577,25.957571],[-97.158188,25.960365],[-97.158816,25.96222],[-97.160004,25.962371],[-97.164277,25.960621],[-97.16695,25.960225],[-97.1711,25.96164],[-97.171879,25.96228],[-97.173479,25.96457],[-97.175584,25.965573],[-97.177088,25.965346],[-97.177743,25.962709],[-97.178601,25.961459],[-97.179674,25.960749],[-97.187079,25.958483],[-97.187513,25.957584],[-97.187143,25.955227],[-97.187895,25.954513],[-97.189587,25.953795],[-97.193392,25.955091],[-97.196753,25.957449],[-97.197888,25.957926],[-97.201568,25.958458],[-97.203656,25.957988],[-97.205481,25.958287],[-97.206059,25.958652],[-97.206488,25.960115],[-97.206561,25.963231],[-97.207157,25.963646],[-97.209021,25.963722],[-97.209961,25.963458],[-97.214089,25.960311],[-97.220922,25.957272],[-97.22256,25.957326],[-97.22422,25.958629],[-97.225354,25.959094],[-97.228026,25.958937],[-97.229227,25.958758],[-97.233001,25.956711],[-97.239872,25.954975],[-97.243572,25.952786],[-97.244775,25.951272],[-97.244853,25.949951],[-97.245243,25.949225],[-97.24701,25.948234],[-97.248033,25.948097],[-97.253586,25.948366],[-97.257597,25.950112],[-97.260864,25.950933],[-97.276701,25.952146],[-97.27858,25.953428],[-97.28,25.954926],[-97.282197,25.958807],[-97.283013,25.959271],[-97.284446,25.959156],[-97.285523,25.958615],[-97.289239,25.955444],[-97.289702,25.954674],[-97.289638,25.954028],[-97.288389,25.952384],[-97.284741,25.949487],[-97.281254,25.947995],[-97.278528,25.947465],[-97.278284,25.946582],[-97.28039,25.945446],[-97.281037,25.943457],[-97.278937,25.941724],[-97.277485,25.939905],[-97.276387,25.936065],[-97.276696,25.935339],[-97.280046,25.93507],[-97.286873,25.936227],[-97.291786,25.936302],[-97.293243,25.93571],[-97.295005,25.933739],[-97.296108,25.933425],[-97.29815,25.933865],[-97.298659,25.934422],[-97.298893,25.936246],[-97.299615,25.936865],[-97.300716,25.937224],[-97.302541,25.93723],[-97.30421,25.936114],[-97.30459,25.935156],[-97.304691,25.932168],[-97.304216,25.930274],[-97.304505,25.928838],[-97.305319,25.92793],[-97.306903,25.92701],[-97.308231,25.92649],[-97.309739,25.926405],[-97.310856,25.926903],[-97.311487,25.927544],[-97.311734,25.928597],[-97.312635,25.929954],[-97.313962,25.931073],[-97.315177,25.931468],[-97.316784,25.93165],[-97.318582,25.931042],[-97.320567,25.929804],[-97.323951,25.925955],[-97.324916,25.924036],[-97.325102,25.921667],[-97.324651,25.918592],[-97.324869,25.918041],[-97.326003,25.917689],[-97.330249,25.917709],[-97.331241,25.918556],[-97.331805,25.920029],[-97.332678,25.925578],[-97.333623,25.926112],[-97.334077,25.925687],[-97.33451,25.92428],[-97.334267,25.921457],[-97.334483,25.920203],[-97.335936,25.919802],[-97.337834,25.920477],[-97.338437,25.921624],[-97.338357,25.922854],[-97.336541,25.928366],[-97.336436,25.928958],[-97.336819,25.929449],[-97.338064,25.929806],[-97.340778,25.928877],[-97.342507,25.928985],[-97.344231,25.929377],[-97.347354,25.931178],[-97.348274,25.931143],[-97.348906,25.930807],[-97.350394,25.925237],[-97.352979,25.921733],[-97.355441,25.919428],[-97.3615,25.915868],[-97.36764,25.915681],[-97.368517,25.915326],[-97.369113,25.914622],[-97.369393,25.913126],[-97.368351,25.910639],[-97.36842,25.909671],[-97.369123,25.909049],[-97.370215,25.908915],[-97.372158,25.909463],[-97.37349,25.909252],[-97.374914,25.908006],[-97.375118,25.907196],[-97.374844,25.906536],[-97.372365,25.905016],[-97.365976,25.902447],[-97.365675,25.901056],[-97.365909,25.899358],[-97.367262,25.893886],[-97.366957,25.891746],[-97.366287,25.89082],[-97.364886,25.889969],[-97.363427,25.889689],[-97.361037,25.889938],[-97.358467,25.889639],[-97.35675,25.888432],[-97.356629,25.887681],[-97.357401,25.886825],[-97.358747,25.886228],[-97.363522,25.885888],[-97.366723,25.885066],[-97.369042,25.884051],[-97.373197,25.881183],[-97.373864,25.880253],[-97.37413,25.879039],[-97.373337,25.878484],[-97.363823,25.877917],[-97.361702,25.878398],[-97.361367,25.879302],[-97.360657,25.879828],[-97.359497,25.879683],[-97.358573,25.878129],[-97.358605,25.876669],[-97.359263,25.873873],[-97.359192,25.872426],[-97.356693,25.867354],[-97.357193,25.86668],[-97.358752,25.865708],[-97.359384,25.86655],[-97.358933,25.868101],[-97.359364,25.869209],[-97.360072,25.869577],[-97.361455,25.8693],[-97.363247,25.8676],[-97.363976,25.866025],[-97.365723,25.864257],[-97.369144,25.858453],[-97.372278,25.857076],[-97.374155,25.856948],[-97.375772,25.856437],[-97.376575,25.854578],[-97.375558,25.853998],[-97.369756,25.854357],[-97.366583,25.853564],[-97.365393,25.852977],[-97.364585,25.852134],[-97.364099,25.851108],[-97.3641,25.850034],[-97.365185,25.849854],[-97.368197,25.850705],[-97.369403,25.850484],[-97.370778,25.849656],[-97.372042,25.847422],[-97.371842,25.841919],[-97.372279,25.840781],[-97.373187,25.839956],[-97.376551,25.84041],[-97.380663,25.839613],[-97.382063,25.83976],[-97.383381,25.840646],[-97.3862,25.843552],[-97.387138,25.843853],[-97.387863,25.843495],[-97.388246,25.842749],[-97.389075,25.839749],[-97.390072,25.838932],[-97.393366,25.837395],[-97.395041,25.83724],[-97.398496,25.83896],[-97.399655,25.839212],[-97.401823,25.838888],[-97.40366,25.837873],[-97.40525,25.837728],[-97.406166,25.837915],[-97.406701,25.838393],[-97.407088,25.839865],[-97.405042,25.840657],[-97.403426,25.840237],[-97.402272,25.840341],[-97.400663,25.841512],[-97.400158,25.842759],[-97.400776,25.846198],[-97.398744,25.85049],[-97.399212,25.851202],[-97.400694,25.852281],[-97.402253,25.851929],[-97.403585,25.851012],[-97.404314,25.85003],[-97.405798,25.845292],[-97.406731,25.844722],[-97.408247,25.845633],[-97.410051,25.84835],[-97.410564,25.849964],[-97.410214,25.851084],[-97.408105,25.854729],[-97.408304,25.856035],[-97.409262,25.85759],[-97.408856,25.859038],[-97.407859,25.860764],[-97.408014,25.861596],[-97.408806,25.862109],[-97.410018,25.862077],[-97.411314,25.861342],[-97.412612,25.859689],[-97.413926,25.856594],[-97.413618,25.852609],[-97.414579,25.847729],[-97.413558,25.843793],[-97.412223,25.842649],[-97.412349,25.841658],[-97.413055,25.840881],[-97.416718,25.841349],[-97.423016,25.840259],[-97.42609,25.840947],[-97.429761,25.843869],[-97.434598,25.848774],[-97.436046,25.849827],[-97.436937,25.849796],[-97.440442,25.84832],[-97.443362,25.84818],[-97.444515,25.849147],[-97.445849,25.851373],[-97.444116,25.85475],[-97.444451,25.855746],[-97.44513,25.856224],[-97.447497,25.856256],[-97.452149,25.853832],[-97.453182,25.853634],[-97.453985,25.854088],[-97.453656,25.856486],[-97.451768,25.858793],[-97.45138,25.85914],[-97.448744,25.859032],[-97.448271,25.859463],[-97.447679,25.863232],[-97.445586,25.865018],[-97.444873,25.866286],[-97.444653,25.86744],[-97.445097,25.868664],[-97.447153,25.87141],[-97.448321,25.872106],[-97.449482,25.872116],[-97.450267,25.871747],[-97.451526,25.869481],[-97.453491,25.867367],[-97.455598,25.86729],[-97.45669,25.868343],[-97.45713,25.869473],[-97.456331,25.871872],[-97.454724,25.879336],[-97.454895,25.88207],[-97.455601,25.883949],[-97.458332,25.883946],[-97.464181,25.881716],[-97.465338,25.880875],[-97.469507,25.875539],[-97.470122,25.875413],[-97.472321,25.875596],[-97.474103,25.876531],[-97.474743,25.878037],[-97.47467,25.879681],[-97.473149,25.880865],[-97.469418,25.882697],[-97.46846,25.883707],[-97.467772,25.886642],[-97.46834,25.888401],[-97.469342,25.888795],[-97.470819,25.888354],[-97.477089,25.883092],[-97.481769,25.879955],[-97.484865,25.8787],[-97.486444,25.878502],[-97.48764,25.879023],[-97.487561,25.880253],[-97.486273,25.883334],[-97.486749,25.884781],[-97.487161,25.885158],[-97.488472,25.885384],[-97.492814,25.880806],[-97.495094,25.879665],[-97.496687,25.87968],[-97.497355,25.880092],[-97.497457,25.880563],[-97.497615,25.886255],[-97.496513,25.892892],[-97.49643,25.895805],[-97.497386,25.898644],[-97.498204,25.899039],[-97.499553,25.898056],[-97.502073,25.89474],[-97.505319,25.891291],[-97.510769,25.887595],[-97.515135,25.887213],[-97.52034,25.885932],[-97.52175,25.886462],[-97.522489,25.887362],[-97.523317,25.889407],[-97.523447,25.890956],[-97.522862,25.895058],[-97.523862,25.899032],[-97.526102,25.901035],[-97.527342,25.902613],[-97.528346,25.906171],[-97.528799,25.906876],[-97.530309,25.907423],[-97.532087,25.907333],[-97.532863,25.907626],[-97.533482,25.908383],[-97.533757,25.911919],[-97.533055,25.913316],[-97.530144,25.916756],[-97.529855,25.918954],[-97.530182,25.919854],[-97.531623,25.920475],[-97.533987,25.920457],[-97.54038,25.919131],[-97.542125,25.919433],[-97.542962,25.920031],[-97.542975,25.921489],[-97.54253,25.922373],[-97.537349,25.927396],[-97.536987,25.928855],[-97.537229,25.930526],[-97.537794,25.930761],[-97.538571,25.930238],[-97.539884,25.927567],[-97.542484,25.923731],[-97.542982,25.923395],[-97.54399,25.923353],[-97.545099,25.924002],[-97.545477,25.92517],[-97.54544,25.931181],[-97.546014,25.93352],[-97.546667,25.934547],[-97.54974,25.936219],[-97.553868,25.937247],[-97.555914,25.937018],[-97.557586,25.935267],[-97.559355,25.931464],[-97.559324,25.932247],[-97.582865,25.937857],[-97.580908,25.939368],[-97.573474,25.94297],[-97.571468,25.943632],[-97.568993,25.94382],[-97.566663,25.944714],[-97.566113,25.945414],[-97.566062,25.948192],[-97.567957,25.95235],[-97.569342,25.953147],[-97.573998,25.953969],[-97.574406,25.95381],[-97.574668,25.952777],[-97.572998,25.94865],[-97.573223,25.945855],[-97.573918,25.944434],[-97.575181,25.943177],[-97.578236,25.942049],[-97.578955,25.942431],[-97.580048,25.944498],[-97.581167,25.950915],[-97.582052,25.952216],[-97.583012,25.954828],[-97.582968,25.956976],[-97.581716,25.960848],[-97.581747,25.961596],[-97.582373,25.962469],[-97.58312,25.96258],[-97.587742,25.961339],[-97.591765,25.961857],[-97.593888,25.961575],[-97.595678,25.960593],[-97.597562,25.957663],[-97.598311,25.957038],[-97.600561,25.956747],[-97.601478,25.956919],[-97.602591,25.957735],[-97.604484,25.961047],[-97.609107,25.964537],[-97.610572,25.966303],[-97.610389,25.967326],[-97.608725,25.969762],[-97.608077,25.97128],[-97.60765,25.975887],[-97.607957,25.976635],[-97.609992,25.977582],[-97.612891,25.977742],[-97.615119,25.978296],[-97.617666,25.979956],[-97.619331,25.982732],[-97.620197,25.985014],[-97.620264,25.986094],[-97.619847,25.987469],[-97.620687,25.988496],[-97.62172,25.989117],[-97.623686,25.989522],[-97.627965,25.988374],[-97.629857,25.988053],[-97.631571,25.988178],[-97.633081,25.988652],[-97.634436,25.990268],[-97.634367,25.991617],[-97.633215,25.9945],[-97.632379,25.995689],[-97.631137,25.996331],[-97.629786,25.996331],[-97.626111,25.995229],[-97.624565,25.99397],[-97.623937,25.992345],[-97.623015,25.991613],[-97.621267,25.991856],[-97.620309,25.992357],[-97.618712,25.994625],[-97.617834,25.997895],[-97.617467,26.000356],[-97.618282,26.002092],[-97.619127,26.00289],[-97.619816,26.002703],[-97.622017,25.998605],[-97.623816,25.997076],[-97.626011,25.99648],[-97.627704,25.996826],[-97.62831,25.997625],[-97.628154,25.998892],[-97.626396,26.00284],[-97.626357,26.005306],[-97.62695,26.005968],[-97.628505,26.006155],[-97.629977,26.005485],[-97.631889,26.003187],[-97.631886,26.001888],[-97.632224,26.001335],[-97.635072,25.999893],[-97.637321,26.001367],[-97.640706,26.004722],[-97.646769,26.007609],[-97.648411,26.009327],[-97.649377,26.010862],[-97.649562,26.011324],[-97.649268,26.012164],[-97.648177,26.012666],[-97.641221,26.011828],[-97.638874,26.01276],[-97.637609,26.014161],[-97.636767,26.016439],[-97.63733,26.020165],[-97.638293,26.02202],[-97.640578,26.024515],[-97.64522,26.027758],[-97.645991,26.027522],[-97.647683,26.026249],[-97.649638,26.024495],[-97.65054,26.023216],[-97.651086,26.02039],[-97.650185,26.017974],[-97.650939,26.01639],[-97.651442,26.015981],[-97.652771,26.016296],[-97.654368,26.018122],[-97.655647,26.019018],[-97.658627,26.020115],[-97.659753,26.020189],[-97.666207,26.018873],[-97.667001,26.018876],[-97.66813,26.019429],[-97.668196,26.020844],[-97.667428,26.024384],[-97.665826,26.026108],[-97.662378,26.028511],[-97.660699,26.031252],[-97.660524,26.033708],[-97.662728,26.038078],[-97.66351,26.037862],[-97.664178,26.036785],[-97.664193,26.03297],[-97.665052,26.03075],[-97.667693,26.028954],[-97.66848,26.028949],[-97.66955,26.030149],[-97.670379,26.033235],[-97.670859,26.033819],[-97.672436,26.034023],[-97.674548,26.033029],[-97.675906,26.031369],[-97.676163,26.030016],[-97.675628,26.029229],[-97.673727,26.02848],[-97.673418,26.0279],[-97.67402,26.026703],[-97.67576,26.025822],[-97.681101,26.025887],[-97.685669,26.026755],[-97.687813,26.02761],[-97.689249,26.028656],[-97.69226,26.032337],[-97.692777,26.032541],[-97.693333,26.032337],[-97.694117,26.030289],[-97.693705,26.0271],[-97.692702,26.024879],[-97.690471,26.022939],[-97.690123,26.022282],[-97.690684,26.019588],[-97.691369,26.01899],[-97.693099,26.019247],[-97.694889,26.0218],[-97.697422,26.023836],[-97.69784,26.02591],[-97.697232,26.029087],[-97.697287,26.030946],[-97.698816,26.031204],[-97.70171,26.030888],[-97.702521,26.031208],[-97.704708,26.036101],[-97.705422,26.036863],[-97.707296,26.037756],[-97.708629,26.036545],[-97.7093,26.034722],[-97.709514,26.031777],[-97.709239,26.029064],[-97.709661,26.026194],[-97.714757,26.025349],[-97.71862,26.023716],[-97.721113,26.023321],[-97.721469,26.023993],[-97.721171,26.024777],[-97.718887,26.027421],[-97.71827,26.029036],[-97.718716,26.030188],[-97.719764,26.031039],[-97.721702,26.03131],[-97.726071,26.030775],[-97.7349,26.032018],[-97.735419,26.03134],[-97.734889,26.028948],[-97.735071,26.028355],[-97.7326,26.027313],[-97.730174,26.028012],[-97.727702,26.027985],[-97.726268,26.027313],[-97.725551,26.026551],[-97.725276,26.02488],[-97.725719,26.023496],[-97.72647,26.022656],[-97.7308,26.023408],[-97.7317,26.023313],[-97.735745,26.021611],[-97.737103,26.021493],[-97.738217,26.021982],[-97.738232,26.022882],[-97.737471,26.024856],[-97.736401,26.026161],[-97.73608,26.027477],[-97.736271,26.028155],[-97.737774,26.028858],[-97.740729,26.029244],[-97.742404,26.029806],[-97.744683,26.029015],[-97.74581,26.027322],[-97.746911,26.026532],[-97.748699,26.026327],[-97.749376,26.027318],[-97.748508,26.029197],[-97.748663,26.030002],[-97.749717,26.031123],[-97.752072,26.031475],[-97.754055,26.030827],[-97.758523,26.026559],[-97.759422,26.026131],[-97.761583,26.025792],[-97.763425,26.026819],[-97.764081,26.027958],[-97.764136,26.028992],[-97.763103,26.035161],[-97.763272,26.036355],[-97.762671,26.040955],[-97.76312,26.04245],[-97.764219,26.044079],[-97.768065,26.047321],[-97.76986,26.047379],[-97.773458,26.045769],[-97.775547,26.045351],[-97.776126,26.045037],[-97.776828,26.043972],[-97.776902,26.04217],[-97.776349,26.040509],[-97.774914,26.039093],[-97.770557,26.037292],[-97.769331,26.036065],[-97.769406,26.035621],[-97.77024,26.034863],[-97.772972,26.034255],[-97.774936,26.032954],[-97.77594,26.031785],[-97.776194,26.030064],[-97.776816,26.029452],[-97.778356,26.029433],[-97.779144,26.029931],[-97.780836,26.032848],[-97.782526,26.033894],[-97.783695,26.034174],[-97.78817,26.033375],[-97.790246,26.033359],[-97.792955,26.034536],[-97.795194,26.036731],[-97.797261,26.039441],[-97.797869,26.041164],[-97.797649,26.042686],[-97.79583,26.045526],[-97.795122,26.047207],[-97.794414,26.047454],[-97.791102,26.047183],[-97.789757,26.047425],[-97.789004,26.048072],[-97.789028,26.049737],[-97.789899,26.05117],[-97.792981,26.053231],[-97.7967,26.052382],[-97.798428,26.052692],[-97.799148,26.053323],[-97.799878,26.054688],[-97.800325,26.059371],[-97.801317,26.060161],[-97.803099,26.060055],[-97.80757,26.058205],[-97.809599,26.057068],[-97.810972,26.055512],[-97.811997,26.053418],[-97.812428,26.050342],[-97.81238,26.048407],[-97.81116,26.045742],[-97.811547,26.04502],[-97.813389,26.044199],[-97.815196,26.044453],[-97.816457,26.045637],[-97.816451,26.047058],[-97.814942,26.051638],[-97.81489,26.053415],[-97.816253,26.055512],[-97.818054,26.056397],[-97.821533,26.056534],[-97.82594,26.055878],[-97.829315,26.049813],[-97.832391,26.047445],[-97.832779,26.046157],[-97.833456,26.045861],[-97.834665,26.046009],[-97.835983,26.047558],[-97.836044,26.04979],[-97.836608,26.051651],[-97.837403,26.052407],[-97.839386,26.053204],[-97.842779,26.053545],[-97.849594,26.052109],[-97.852374,26.052289],[-97.857773,26.053372],[-97.859787,26.052819],[-97.860504,26.052918],[-97.86139,26.054184],[-97.862294,26.060419],[-97.861765,26.062195],[-97.85991,26.06457],[-97.859391,26.065758],[-97.85933,26.066956],[-97.860702,26.069676],[-97.861776,26.069946],[-97.862828,26.069608],[-97.864076,26.068024],[-97.867372,26.060105],[-97.868268,26.058685],[-97.868606,26.057156],[-97.869061,26.056955],[-97.870744,26.057598],[-97.87407,26.062439],[-97.876935,26.064582],[-97.878755,26.065269],[-97.884117,26.065859],[-97.887041,26.066554],[-97.887648,26.066437],[-97.88843,26.065382],[-97.888393,26.062428],[-97.888811,26.061784],[-97.890677,26.060672],[-97.893652,26.060171],[-97.897933,26.061073],[-97.90106,26.061081],[-97.903549,26.060436],[-97.909862,26.056864],[-97.911245,26.056454],[-97.913882,26.056539],[-97.917994,26.057902],[-97.920123,26.057984],[-97.921388,26.057768],[-97.92523,26.055693],[-97.92719,26.055316],[-97.927981,26.055906],[-97.931397,26.06342],[-97.932286,26.064662],[-97.933924,26.064834],[-97.935984,26.064007],[-97.936787,26.063007],[-97.936967,26.061926],[-97.936098,26.05999],[-97.932868,26.057308],[-97.931801,26.055944],[-97.931981,26.054848],[-97.93282,26.053671],[-97.934247,26.052826],[-97.936607,26.052773],[-97.937924,26.053524],[-97.943401,26.058919],[-97.94526,26.060188],[-97.948046,26.061402],[-97.951175,26.061958],[-97.954551,26.061182],[-97.957001,26.059963],[-97.958988,26.057274],[-97.965437,26.052268],[-97.967335,26.051783],[-97.96942,26.052702],[-97.975045,26.05816],[-97.978761,26.059756],[-97.979831,26.06245],[-97.980163,26.06651],[-97.981339,26.067227],[-97.987302,26.065722],[-97.988121,26.06464],[-97.989766,26.059846],[-97.990477,26.058998],[-97.991493,26.058585],[-97.992491,26.058585],[-97.993553,26.059197],[-97.997253,26.064141],[-98.000285,26.065042],[-98.003516,26.064453],[-98.005919,26.063293],[-98.007386,26.06216],[-98.00882,26.060422],[-98.010698,26.057133],[-98.011978,26.056292],[-98.012641,26.056885],[-98.012428,26.058316],[-98.011013,26.060922],[-98.010853,26.061892],[-98.010971,26.063863],[-98.011932,26.065859],[-98.012675,26.066328],[-98.013652,26.066413],[-98.014233,26.066022],[-98.016012,26.06139],[-98.017336,26.060242],[-98.020091,26.05878],[-98.020741,26.058739],[-98.021392,26.058957],[-98.022703,26.06042],[-98.024203,26.064104],[-98.025537,26.065965],[-98.026355,26.066544],[-98.027801,26.066849],[-98.028973,26.066487],[-98.030132,26.065673],[-98.031487,26.064217],[-98.032717,26.062124],[-98.034115,26.057556],[-98.034403,26.051375],[-98.035451,26.04849],[-98.037506,26.045606],[-98.038367,26.042107],[-98.039239,26.041275],[-98.039845,26.041275],[-98.044517,26.043746],[-98.046228,26.04423],[-98.054701,26.04459],[-98.061169,26.046238],[-98.063052,26.045894],[-98.065094,26.044831],[-98.069953,26.038181],[-98.071198,26.037075],[-98.073054,26.036501],[-98.07662,26.036415],[-98.077576,26.036823],[-98.079906,26.04127],[-98.080003,26.04196],[-98.078104,26.042437],[-98.075051,26.042641],[-98.072365,26.043884],[-98.070857,26.045947],[-98.070021,26.047992],[-98.070025,26.051466],[-98.071162,26.054705],[-98.074069,26.058109],[-98.075073,26.059871],[-98.07568,26.062168],[-98.075981,26.066741],[-98.076544,26.068042],[-98.07774,26.069496],[-98.079087,26.070513],[-98.080495,26.070932],[-98.083113,26.07114],[-98.084689,26.07086],[-98.085387,26.070355],[-98.085849,26.069208],[-98.085204,26.068019],[-98.08225,26.067076],[-98.0814,26.066207],[-98.081102,26.064872],[-98.081884,26.063724],[-98.083088,26.06288],[-98.091038,26.059169],[-98.094432,26.058625],[-98.096728,26.059517],[-98.098487,26.060968],[-98.103811,26.067094],[-98.105505,26.067537],[-98.106922,26.06735],[-98.111143,26.06582],[-98.119758,26.064447],[-98.122724,26.06341],[-98.123996,26.062375],[-98.125844,26.061791],[-98.126872,26.061852],[-98.129269,26.062692],[-98.130369,26.063153],[-98.130776,26.063689],[-98.13125,26.065381],[-98.131014,26.066843],[-98.128964,26.070238],[-98.128367,26.072399],[-98.128869,26.073547],[-98.129797,26.074236],[-98.131829,26.07417],[-98.134432,26.072898],[-98.136013,26.071022],[-98.136802,26.068615],[-98.136515,26.065157],[-98.136796,26.062319],[-98.137302,26.060845],[-98.140656,26.054966],[-98.14238,26.052829],[-98.143828,26.050384],[-98.144787,26.049607],[-98.146506,26.049303],[-98.147777,26.049638],[-98.149381,26.051506],[-98.149372,26.055797],[-98.149917,26.056741],[-98.151665,26.058208],[-98.152979,26.058316],[-98.154074,26.0579],[-98.155609,26.056648],[-98.156682,26.054979],[-98.159262,26.053743],[-98.16188,26.054539],[-98.162489,26.056096],[-98.162096,26.057089],[-98.158334,26.06058],[-98.158422,26.0627],[-98.158839,26.063309],[-98.159679,26.064021],[-98.161684,26.064239],[-98.165337,26.062533],[-98.16655,26.062356],[-98.168829,26.062987],[-98.16996,26.065431],[-98.17115,26.069457],[-98.172126,26.071137],[-98.176296,26.075075],[-98.178292,26.07478],[-98.17924,26.074053],[-98.18022,26.071616],[-98.180319,26.07053],[-98.180059,26.068179],[-98.180404,26.065786],[-98.179836,26.064727],[-98.177106,26.063399],[-98.176673,26.062863],[-98.17654,26.06162],[-98.176935,26.060661],[-98.177875,26.060017],[-98.178787,26.059836],[-98.179721,26.060098],[-98.181954,26.06252],[-98.183606,26.063658],[-98.185405,26.064264],[-98.187835,26.064005],[-98.189061,26.063257],[-98.189508,26.062399],[-98.190006,26.058093],[-98.192305,26.053453],[-98.192981,26.053268],[-98.196572,26.054138],[-98.198466,26.055397],[-98.200871,26.059161],[-98.20256,26.063075],[-98.204959,26.066418],[-98.206878,26.067781],[-98.211395,26.068513],[-98.212791,26.069154],[-98.214402,26.070713],[-98.215214,26.072416],[-98.216832,26.074437],[-98.220673,26.076467],[-98.224833,26.077139],[-98.230097,26.077155],[-98.240076,26.07502],[-98.243682,26.073745],[-98.245997,26.072361],[-98.248737,26.072042],[-98.249954,26.072718],[-98.250957,26.074089],[-98.251541,26.079031],[-98.26317,26.084494],[-98.264514,26.085507],[-98.265394,26.087011],[-98.265906,26.089507],[-98.266754,26.091554],[-98.268386,26.093138],[-98.277218,26.098802],[-98.284291,26.10109],[-98.286211,26.102402],[-98.288535,26.105312],[-98.288209,26.105892],[-98.286547,26.106914],[-98.281187,26.10773],[-98.278851,26.107602],[-98.274482,26.10637],[-98.271298,26.106338],[-98.270482,26.10661],[-98.269944,26.107496],[-98.271578,26.110525],[-98.271829,26.112996],[-98.270338,26.11515],[-98.269144,26.115965],[-98.26726,26.116241],[-98.265974,26.117138],[-98.265314,26.11901],[-98.265698,26.12037],[-98.266898,26.120866],[-98.26854,26.120613],[-98.270235,26.119355],[-98.271816,26.117057],[-98.273743,26.116072],[-98.275161,26.115918],[-98.290595,26.120657],[-98.295187,26.120641],[-98.296195,26.120321],[-98.299345,26.118088],[-98.302979,26.11005],[-98.302787,26.10845],[-98.301827,26.106898],[-98.300643,26.10573],[-98.298179,26.10501],[-98.297875,26.104386],[-98.298019,26.103298],[-98.299571,26.102146],[-98.302803,26.102354],[-98.305027,26.10309],[-98.305971,26.103682],[-98.307075,26.10525],[-98.309447,26.113001],[-98.310339,26.114396],[-98.313171,26.115995],[-98.317301,26.116405],[-98.320878,26.118238],[-98.324868,26.122305],[-98.326296,26.125097],[-98.329905,26.130036],[-98.332388,26.132753],[-98.335204,26.137617],[-98.335284,26.140449],[-98.334532,26.141121],[-98.332724,26.141585],[-98.327908,26.141809],[-98.326916,26.142769],[-98.32706,26.143809],[-98.328436,26.144833],[-98.333108,26.145489],[-98.33562,26.146401],[-98.337428,26.148081],[-98.338244,26.149936],[-98.33842,26.151344],[-98.337508,26.15408],[-98.334532,26.156784],[-98.333316,26.1588],[-98.332948,26.16128],[-98.333156,26.162336],[-98.333444,26.163456],[-98.334564,26.165136],[-98.336837,26.166432],[-98.339413,26.166896],[-98.342923,26.166896],[-98.345781,26.166016],[-98.347525,26.164],[-98.348703,26.160106],[-98.348981,26.15312],[-98.349749,26.152],[-98.350437,26.151568],[-98.352341,26.15112],[-98.353109,26.151392],[-98.354645,26.15304],[-98.356805,26.156448],[-98.358021,26.159232],[-98.358533,26.16192],[-98.357447,26.166544],[-98.357685,26.168832],[-98.358069,26.170112],[-98.359157,26.171832],[-98.360645,26.172544],[-98.361925,26.172368],[-98.362933,26.17184],[-98.364901,26.169888],[-98.3666,26.168782],[-98.367125,26.166944],[-98.366858,26.165847],[-98.365409,26.164221],[-98.364927,26.163063],[-98.364702,26.160891],[-98.365029,26.159156],[-98.367237,26.15768],[-98.368597,26.157088],[-98.374677,26.157568],[-98.380486,26.156816],[-98.383814,26.15696],[-98.386694,26.157872],[-98.388838,26.160464],[-98.391446,26.165856],[-98.393542,26.168016],[-98.39783,26.170624],[-98.401542,26.171648],[-98.402208,26.17217],[-98.402745,26.173259],[-98.402844,26.174875],[-98.402249,26.179523],[-98.402646,26.180761],[-98.404433,26.182564],[-98.406222,26.183229],[-98.414657,26.183794],[-98.41812,26.184648],[-98.420439,26.186735],[-98.423271,26.189983],[-98.425175,26.191535],[-98.431559,26.195071],[-98.439048,26.197471],[-98.440616,26.198367],[-98.44204,26.198751],[-98.444072,26.200895],[-98.44468,26.202783],[-98.444296,26.204671],[-98.442923,26.206869],[-98.442456,26.206989],[-98.440733,26.208726],[-98.439203,26.210923],[-98.438822,26.212022],[-98.438822,26.21422],[-98.440251,26.219442],[-98.443406,26.223653],[-98.445222,26.224571],[-98.446658,26.224389],[-98.45001,26.223019],[-98.453165,26.219724],[-98.453892,26.217424],[-98.454456,26.217062],[-98.456072,26.217598],[-98.456724,26.222883],[-98.458402,26.225317],[-98.459716,26.225961],[-98.461216,26.22612],[-98.463657,26.225272],[-98.468217,26.221589],[-98.471782,26.220187],[-98.479871,26.220103],[-98.481582,26.219379],[-98.483082,26.217546],[-98.483129,26.215309],[-98.482502,26.213511],[-98.479344,26.209941],[-98.478495,26.208292],[-98.477961,26.203359],[-98.478377,26.202303],[-98.479593,26.201471],[-98.482201,26.201375],[-98.482973,26.202043],[-98.483186,26.203348],[-98.481868,26.205476],[-98.481617,26.206469],[-98.482021,26.208588],[-98.482601,26.209822],[-98.483993,26.211438],[-98.485401,26.212366],[-98.486988,26.212923],[-98.490138,26.213177],[-98.492428,26.212921],[-98.495133,26.212128],[-98.500333,26.20975],[-98.503766,26.2088],[-98.505042,26.208793],[-98.506769,26.209404],[-98.507332,26.210171],[-98.507105,26.211675],[-98.503859,26.217451],[-98.501081,26.221347],[-98.500916,26.222211],[-98.501269,26.222922],[-98.502025,26.223344],[-98.506343,26.224135],[-98.511623,26.226995],[-98.514847,26.227218],[-98.51655,26.226708],[-98.519058,26.224939],[-98.521219,26.223037],[-98.521918,26.221574],[-98.52254,26.220996],[-98.523414,26.220894],[-98.524278,26.221245],[-98.525369,26.222651],[-98.526723,26.225443],[-98.526435,26.227723],[-98.525956,26.228662],[-98.521788,26.23253],[-98.521526,26.234423],[-98.521814,26.235642],[-98.523053,26.235934],[-98.524456,26.235565],[-98.525429,26.234805],[-98.529841,26.227936],[-98.531592,26.226544],[-98.53408,26.225604],[-98.535241,26.225677],[-98.537109,26.227721],[-98.539492,26.234224],[-98.543549,26.242436],[-98.544479,26.243753],[-98.545328,26.244536],[-98.55197,26.246346],[-98.554577,26.24738],[-98.557349,26.247482],[-98.559097,26.245519],[-98.559053,26.244976],[-98.557444,26.243411],[-98.552335,26.241192],[-98.547599,26.241135],[-98.546752,26.24046],[-98.546023,26.2392],[-98.545922,26.237097],[-98.54655,26.235512],[-98.547683,26.234277],[-98.548718,26.233714],[-98.55408,26.232853],[-98.556002,26.232105],[-98.558012,26.230016],[-98.559181,26.226274],[-98.560442,26.225237],[-98.561701,26.224811],[-98.562959,26.224908],[-98.564549,26.22688],[-98.564737,26.227818],[-98.564236,26.232459],[-98.564985,26.238619],[-98.566231,26.240833],[-98.567392,26.241624],[-98.571006,26.240471],[-98.574106,26.238585],[-98.576643,26.233834],[-98.57839,26.23384],[-98.579845,26.234776],[-98.58172,26.238759],[-98.58392,26.242023],[-98.584982,26.244301],[-98.584145,26.246178],[-98.579958,26.24943],[-98.579517,26.252245],[-98.580817,26.254741],[-98.582917,26.256472],[-98.583882,26.257008],[-98.587545,26.257816],[-98.591377,26.257563],[-98.596334,26.257972],[-98.599154,26.257612],[-98.608362,26.253388],[-98.611271,26.253282],[-98.612913,26.252727],[-98.613465,26.252028],[-98.614188,26.248864],[-98.614799,26.247727],[-98.616487,26.246761],[-98.617266,26.246809],[-98.618205,26.247562],[-98.618755,26.249254],[-98.618915,26.252412],[-98.619519,26.254659],[-98.621654,26.258774],[-98.622199,26.259481],[-98.623467,26.259666],[-98.624759,26.259221],[-98.625837,26.258338],[-98.627709,26.255763],[-98.632277,26.25214],[-98.6329,26.250348],[-98.633486,26.243265],[-98.63418,26.242612],[-98.636253,26.241866],[-98.642402,26.241829],[-98.644095,26.241356],[-98.648528,26.239481],[-98.652068,26.236897],[-98.654451,26.235933],[-98.659343,26.23533],[-98.664633,26.235351],[-98.669149,26.23653],[-98.672967,26.238423],[-98.676562,26.241562],[-98.67777,26.243236],[-98.678852,26.245576],[-98.679298,26.247308],[-98.679361,26.24921],[-98.677813,26.254784],[-98.677845,26.256915],[-98.678958,26.260064],[-98.68109,26.262803],[-98.685037,26.26462],[-98.687156,26.26512],[-98.689489,26.265296],[-98.693174,26.264849],[-98.700737,26.265966],[-98.710942,26.268692],[-98.718412,26.271417],[-98.719413,26.272304],[-98.720181,26.274507],[-98.719765,26.275911],[-98.719033,26.276853],[-98.717792,26.277624],[-98.715661,26.278423],[-98.712157,26.278977],[-98.710621,26.278929],[-98.70568,26.277418],[-98.703226,26.27717],[-98.701159,26.278023],[-98.699943,26.280005],[-98.699898,26.280858],[-98.700639,26.283731],[-98.701773,26.286143],[-98.704267,26.287982],[-98.708443,26.289181],[-98.709353,26.289189],[-98.712227,26.28722],[-98.714802,26.286077],[-98.71617,26.286197],[-98.718218,26.287253],[-98.718951,26.288237],[-98.719907,26.291052],[-98.721989,26.295046],[-98.724135,26.297054],[-98.727765,26.29877],[-98.729196,26.299027],[-98.73225,26.299108],[-98.734822,26.298352],[-98.736559,26.297517],[-98.74,26.294944],[-98.742621,26.294197],[-98.747755,26.294853],[-98.749407,26.295323],[-98.750973,26.296321],[-98.751974,26.297697],[-98.753012,26.300213],[-98.755067,26.301926],[-98.756123,26.304249],[-98.755948,26.30559],[-98.755209,26.307037],[-98.754216,26.307928],[-98.752708,26.308237],[-98.750353,26.307657],[-98.743685,26.303009],[-98.740419,26.302777],[-98.738469,26.3037],[-98.737235,26.30496],[-98.736528,26.306406],[-98.736161,26.309199],[-98.736652,26.31141],[-98.738457,26.313654],[-98.739927,26.31446],[-98.743477,26.314897],[-98.745069,26.315929],[-98.745821,26.316845],[-98.748049,26.320294],[-98.749379,26.324831],[-98.749469,26.329988],[-98.751127,26.331584],[-98.753776,26.331666],[-98.755002,26.331368],[-98.763488,26.326663],[-98.76824,26.325308],[-98.771321,26.325081],[-98.777028,26.325729],[-98.780245,26.326724],[-98.788955,26.330433],[-98.789706,26.331527],[-98.789673,26.332059],[-98.788333,26.334811],[-98.788018,26.336114],[-98.788313,26.338337],[-98.793073,26.343515],[-98.796252,26.349104],[-98.797257,26.352061],[-98.798211,26.360166],[-98.802238,26.365456],[-98.803946,26.367223],[-98.806618,26.369109],[-98.807348,26.369421],[-98.808354,26.369078],[-98.811396,26.366904],[-98.812928,26.366309],[-98.814,26.366292],[-98.81507,26.366478],[-98.816622,26.367733],[-98.818125,26.36953],[-98.820452,26.371002],[-98.824565,26.370833],[-98.826857,26.369624],[-98.830652,26.365262],[-98.832909,26.363338],[-98.836587,26.361197],[-98.841562,26.358943],[-98.844115,26.35873],[-98.845703,26.35893],[-98.84757,26.35979],[-98.84893,26.36072],[-98.851022,26.36381],[-98.853415,26.365023],[-98.856076,26.365776],[-98.86191,26.36599],[-98.866097,26.364713],[-98.870285,26.362365],[-98.878494,26.360694],[-98.889045,26.357096],[-98.890895,26.356362],[-98.895694,26.353491],[-98.896734,26.35333],[-98.898647,26.35505],[-98.900893,26.359404],[-98.900993,26.361385],[-98.899551,26.366588],[-98.901677,26.371229],[-98.903899,26.37213],[-98.911058,26.371767],[-98.913276,26.3723],[-98.917377,26.374471],[-98.920316,26.377827],[-98.922194,26.37908],[-98.923402,26.381371],[-98.923967,26.383281],[-98.92365,26.386426],[-98.924106,26.387728],[-98.923777,26.392048],[-98.925024,26.393718],[-98.925879,26.394357],[-98.92705,26.394462],[-98.929283,26.393361],[-98.933348,26.38886],[-98.935636,26.385047],[-98.935891,26.383091],[-98.934684,26.379824],[-98.934307,26.377464],[-98.934586,26.374375],[-98.935134,26.372971],[-98.936164,26.371533],[-98.939165,26.369929],[-98.942152,26.369687],[-98.946694,26.370003],[-98.948963,26.371253],[-98.953375,26.375341],[-98.955846,26.376982],[-98.956128,26.377561],[-98.955984,26.379466],[-98.954037,26.382666],[-98.953322,26.384712],[-98.952973,26.390926],[-98.953384,26.392948],[-98.954504,26.394368],[-98.956815,26.396005],[-98.961886,26.398373],[-98.966348,26.399081],[-98.970083,26.399193],[-98.973187,26.400841],[-98.975227,26.40114],[-98.976423,26.400986],[-98.979153,26.399924],[-98.983619,26.395097],[-98.986298,26.392782],[-98.987204,26.392197],[-98.989085,26.391667],[-98.990505,26.39156],[-98.997099,26.392375],[-99.000307,26.392345],[-99.003783,26.393476],[-99.005749,26.393199],[-99.008517,26.392313],[-99.01064,26.392135],[-99.012429,26.393016],[-99.014315,26.395822],[-99.015646,26.399521],[-99.016414,26.400781],[-99.021935,26.407902],[-99.023694,26.409142],[-99.026938,26.410265],[-99.032011,26.412821],[-99.037058,26.413603],[-99.040441,26.412674],[-99.045466,26.409816],[-99.047575,26.406922],[-99.050831,26.404612],[-99.054614,26.401262],[-99.062111,26.397385],[-99.063179,26.39712],[-99.069041,26.397639],[-99.07379,26.396976],[-99.078575,26.397255],[-99.082006,26.396667],[-99.083628,26.397441],[-99.085126,26.398782],[-99.086712,26.402084],[-99.086997,26.403534],[-99.089413,26.4081],[-99.090367,26.408974],[-99.094783,26.410953],[-99.096011,26.411828],[-99.099574,26.417248],[-99.104198,26.421162],[-99.105723,26.423216],[-99.108723,26.4253],[-99.110854,26.426282],[-99.113546,26.43253],[-99.113808,26.434002],[-99.113163,26.43518],[-99.112694,26.435457],[-99.107253,26.437597],[-99.105656,26.438667],[-99.104037,26.440186],[-99.102376,26.442726],[-99.102567,26.445788],[-99.102359,26.447981],[-99.100822,26.450212],[-99.100647,26.451918],[-99.100046,26.453587],[-99.100357,26.458748],[-99.099226,26.461606],[-99.098127,26.463347],[-99.093618,26.4683],[-99.091976,26.472376],[-99.091572,26.477054],[-99.091956,26.477912],[-99.095479,26.481678],[-99.095803,26.483068],[-99.102237,26.495318],[-99.103437,26.496896],[-99.104851,26.500383],[-99.112292,26.507703],[-99.113557,26.510174],[-99.115989,26.512839],[-99.118566,26.516583],[-99.12115,26.518295],[-99.123613,26.520494],[-99.127782,26.525199],[-99.128379,26.525501],[-99.135664,26.526259],[-99.137325,26.52744],[-99.143658,26.527929],[-99.155517,26.531956],[-99.16279,26.535211],[-99.166742,26.536079],[-99.16917,26.538332],[-99.17123,26.541965],[-99.171822,26.54459],[-99.17138,26.549249],[-99.169665,26.553928],[-99.168255,26.555918],[-99.16741,26.560001],[-99.178064,26.620547],[-99.200522,26.656443],[-99.209948,26.693938],[-99.208907,26.724761],[-99.240023,26.745851],[-99.242444,26.788262],[-99.262208,26.815668],[-99.268613,26.843213],[-99.280471,26.858053],[-99.295146,26.86544],[-99.310232,26.864983],[-99.316753,26.865831],[-99.323837,26.873902],[-99.325882,26.877376],[-99.328619,26.878592],[-99.3289,26.879761],[-99.326574,26.884784],[-99.326216,26.890403],[-99.321819,26.906846],[-99.32297,26.912464],[-99.324684,26.915973],[-99.329852,26.919343],[-99.337297,26.922759],[-99.347147,26.925004],[-99.35165,26.92514],[-99.361144,26.928921],[-99.367054,26.929034],[-99.373374,26.931256],[-99.379149,26.93449],[-99.385159,26.940455],[-99.388253,26.944217],[-99.390605,26.951465],[-99.393033,26.95706],[-99.393748,26.96073],[-99.392954,26.963803],[-99.390189,26.966348],[-99.381102,26.970816],[-99.377312,26.973819],[-99.376593,26.977717],[-99.378435,26.980034],[-99.384808,26.981069],[-99.387367,26.982399],[-99.392178,26.987492],[-99.403694,26.997356],[-99.405922,27.002798],[-99.407073,27.006995],[-99.408507,27.00952],[-99.411175,27.011597],[-99.412625,27.013949],[-99.415476,27.01724],[-99.418357,27.017107],[-99.420447,27.016568],[-99.422232,27.015715],[-99.424892,27.013483],[-99.42938,27.010833],[-99.430182,27.010544],[-99.432155,27.010699],[-99.435547,27.012164],[-99.443632,27.01882],[-99.44531,27.02105],[-99.446123,27.023048],[-99.445668,27.026009],[-99.444062,27.031253],[-99.443973,27.036458],[-99.445646,27.043441],[-99.447128,27.047495],[-99.449948,27.053068],[-99.450926,27.055653],[-99.452316,27.060957],[-99.452316,27.062669],[-99.451035,27.066765],[-99.450282,27.067705],[-99.444748,27.072003],[-99.435487,27.077476],[-99.43447,27.078517],[-99.432812,27.081875],[-99.429209,27.090982],[-99.429096,27.092632],[-99.430275,27.094872],[-99.435324,27.098373],[-99.437646,27.100442],[-99.439876,27.103423],[-99.44181,27.105394],[-99.442125,27.106856],[-99.441922,27.108405],[-99.441109,27.110042],[-99.435746,27.116081],[-99.43337,27.119218],[-99.431153,27.124719],[-99.430672,27.125307],[-99.430581,27.126612],[-99.430685,27.131543],[-99.431355,27.13758],[-99.434495,27.140359],[-99.435514,27.14202],[-99.438265,27.144792],[-99.439973,27.148773],[-99.439971,27.151072],[-99.439276,27.152694],[-99.437951,27.154121],[-99.435932,27.155435],[-99.432166,27.157086],[-99.429984,27.159149],[-99.427806,27.167273],[-99.426348,27.176262],[-99.426418,27.178287],[-99.428212,27.185923],[-99.430395,27.193551],[-99.43105,27.196981],[-99.432775,27.201841],[-99.43316,27.204552],[-99.432589,27.209698],[-99.434307,27.212131],[-99.437405,27.214216],[-99.442755,27.21878],[-99.445238,27.223341],[-99.445228,27.225479],[-99.442934,27.231223],[-99.441407,27.236758],[-99.441041,27.242987],[-99.441545,27.249915],[-99.442314,27.251607],[-99.444362,27.253831],[-99.446811,27.25758],[-99.449888,27.2604],[-99.452391,27.264046],[-99.455584,27.266198],[-99.458418,27.266236],[-99.460509,27.267838],[-99.461476,27.268175],[-99.463309,27.268437],[-99.465825,27.26797],[-99.469275,27.265974],[-99.471231,27.265274],[-99.473678,27.263175],[-99.476401,27.26236],[-99.481192,27.259835],[-99.48352,27.259562],[-99.486011,27.259854],[-99.489059,27.261477],[-99.492407,27.264118],[-99.494022,27.26623],[-99.495658,27.269053],[-99.49669,27.272435],[-99.494678,27.277595],[-99.489139,27.28576],[-99.487592,27.289602],[-99.487505,27.292777],[-99.487937,27.294941],[-99.490784,27.298334],[-99.49202,27.300666],[-99.493758,27.301856],[-99.494604,27.303542],[-99.495754,27.304444],[-99.497419,27.305279],[-99.500951,27.306008],[-99.505247,27.305983],[-99.511531,27.304077],[-99.521071,27.303824],[-99.523658,27.304138],[-99.525756,27.305257],[-99.528473,27.305417],[-99.529654,27.306051],[-99.533564,27.310452],[-99.535183,27.31112],[-99.535999,27.31199],[-99.536715,27.31303],[-99.538035,27.316961],[-99.537702,27.317704],[-99.533992,27.320673],[-99.531376,27.323809],[-99.530355,27.324117],[-99.525589,27.323857],[-99.523583,27.324143],[-99.521639,27.324581],[-99.518912,27.326305],[-99.509016,27.333859],[-99.506145,27.336511],[-99.504575,27.338741],[-99.504397,27.339896],[-99.507831,27.348637],[-99.507565,27.351398],[-99.507984,27.353013],[-99.507779,27.354247],[-99.50696,27.35642],[-99.505895,27.357818],[-99.503727,27.36462],[-99.499076,27.37314],[-99.498347,27.373918],[-99.495999,27.375204],[-99.494875,27.377424],[-99.493136,27.37903],[-99.492144,27.380517],[-99.491717,27.383668],[-99.492709,27.386049],[-99.492709,27.391954],[-99.489611,27.399041],[-99.488818,27.405556],[-99.487521,27.411572],[-99.487643,27.413071],[-99.489199,27.41634],[-99.489931,27.418663],[-99.490984,27.424294],[-99.493899,27.432578],[-99.495699,27.438884],[-99.495882,27.440147],[-99.495577,27.444732],[-99.494646,27.44931],[-99.495104,27.451518],[-99.494636,27.452539],[-99.493495,27.453098],[-99.492175,27.455818],[-99.487631,27.460672],[-99.485404,27.464067],[-99.485027,27.464869],[-99.485239,27.465696],[-99.483973,27.467244],[-99.483119,27.469396],[-99.482965,27.473129],[-99.482282,27.476315],[-99.479251,27.478635],[-99.479376,27.481606],[-99.480119,27.48534],[-99.481288,27.488468],[-99.483708,27.491405],[-99.485806,27.493188],[-99.491911,27.497304],[-99.496826,27.500106],[-99.497505,27.500033],[-99.499002,27.499154],[-99.500977,27.500076],[-99.502519,27.500396],[-99.510319,27.499096],[-99.513576,27.499412],[-99.51612,27.498594],[-99.51985,27.496763],[-99.526137,27.496589],[-99.528392,27.49855],[-99.52742,27.503395],[-99.52532,27.510395],[-99.52512,27.515695],[-99.52542,27.518495],[-99.524835,27.523795],[-99.52222,27.534794],[-99.521919,27.544094],[-99.518819,27.553194],[-99.514016,27.556842],[-99.512367,27.562627],[-99.511049,27.564507],[-99.512132,27.568288],[-99.516405,27.572467],[-99.521731,27.574611],[-99.523959,27.576102],[-99.52495,27.576327],[-99.529711,27.579761],[-99.531878,27.582858],[-99.536197,27.591682],[-99.536136,27.592692],[-99.536945,27.596103],[-99.539722,27.603281],[-99.541889,27.606001],[-99.551425,27.611643],[-99.554945,27.614456],[-99.556117,27.614408],[-99.557563,27.612976],[-99.55864,27.611132],[-99.558701,27.609181],[-99.561233,27.607569],[-99.569065,27.605883],[-99.578626,27.602286],[-99.580008,27.602246],[-99.582278,27.602734],[-99.584843,27.603903],[-99.584973,27.605321],[-99.584432,27.606213],[-99.582469,27.606646],[-99.579977,27.607823],[-99.577802,27.610146],[-99.577182,27.6113],[-99.577173,27.615714],[-99.577636,27.618597],[-99.578892,27.619978],[-99.581713,27.620646],[-99.584782,27.622007],[-99.588896,27.625292],[-99.589481,27.626314],[-99.591372,27.627464],[-99.592353,27.628613],[-99.592757,27.634654],[-99.594038,27.638573],[-99.596231,27.639858],[-99.603533,27.641992],[-99.610311,27.640006],[-99.614252,27.63795],[-99.616069,27.637681],[-99.617582,27.638358],[-99.619093,27.640148],[-99.621397,27.643763],[-99.623478,27.644136],[-99.624311,27.644001],[-99.626294,27.64245],[-99.627057,27.640778],[-99.627123,27.638412],[-99.626349,27.637365],[-99.623753,27.635367],[-99.623246,27.634644],[-99.623415,27.633558],[-99.625112,27.63138],[-99.626857,27.629963],[-99.636553,27.626989],[-99.638929,27.626758],[-99.650057,27.630582],[-99.6543,27.629778],[-99.658853,27.631138],[-99.659586,27.632565],[-99.666108,27.636088],[-99.666175,27.638324],[-99.665422,27.640275],[-99.661159,27.643128],[-99.6595,27.645246],[-99.658068,27.648003],[-99.658295,27.650158],[-99.659353,27.652281],[-99.661467,27.654069],[-99.661845,27.655753],[-99.664223,27.657575],[-99.668942,27.659974],[-99.671471,27.660248],[-99.678949,27.658979],[-99.685813,27.661015],[-99.687814,27.662263],[-99.688569,27.663173],[-99.689514,27.665093],[-99.689403,27.66856],[-99.690158,27.668864],[-99.691253,27.668732],[-99.694383,27.666078],[-99.69706,27.662481],[-99.699356,27.655417],[-99.704601,27.654954],[-99.711511,27.658365],[-99.713248,27.660185],[-99.716173,27.661836],[-99.721519,27.666155],[-99.723634,27.669532],[-99.723902,27.673559],[-99.72844,27.67926],[-99.732448,27.685425],[-99.738459,27.693108],[-99.752615,27.706844],[-99.757645,27.712112],[-99.758512,27.717041],[-99.76162,27.722063],[-99.768239,27.72985],[-99.77074,27.732134],[-99.774901,27.73354],[-99.785366,27.730355],[-99.788845,27.730718],[-99.791531,27.731858],[-99.796342,27.735586],[-99.801651,27.741771],[-99.803427,27.750288],[-99.80567,27.758688],[-99.809963,27.769272],[-99.813118,27.773997],[-99.815584,27.775595],[-99.817549,27.776296],[-99.819092,27.776019],[-99.822114,27.767274],[-99.822905,27.766278],[-99.826022,27.764327],[-99.833054,27.76289],[-99.835127,27.762881],[-99.838791,27.764181],[-99.841708,27.766464],[-99.842967,27.768518],[-99.843441,27.771521],[-99.843195,27.773655],[-99.844737,27.778809],[-99.84887,27.787399],[-99.84966,27.79246],[-99.850877,27.793974],[-99.852465,27.794608],[-99.854342,27.794689],[-99.86038,27.793673],[-99.86294,27.794256],[-99.866407,27.794206],[-99.870066,27.794627],[-99.872294,27.795258],[-99.87533,27.79677],[-99.876761,27.797845],[-99.878024,27.800505],[-99.877143,27.804385],[-99.874845,27.808584],[-99.873785,27.813012],[-99.874222,27.816014],[-99.876452,27.819895],[-99.877894,27.825352],[-99.87805,27.827612],[-99.877061,27.832234],[-99.876241,27.83382],[-99.876003,27.837968],[-99.8772,27.84218],[-99.882015,27.850392],[-99.883375,27.85049],[-99.8844,27.851262],[-99.890805,27.85438],[-99.89365,27.856193],[-99.895284,27.857706],[-99.895755,27.85923],[-99.897079,27.8606],[-99.901486,27.864162],[-99.902333,27.866486],[-99.904385,27.875284],[-99.903953,27.878533],[-99.903326,27.880544],[-99.901232,27.884406],[-99.897013,27.88824],[-99.894091,27.89295],[-99.893456,27.899208],[-99.896309,27.905186],[-99.896778,27.907011],[-99.90008,27.912142],[-99.903125,27.913486],[-99.908331,27.914619],[-99.917461,27.917973],[-99.922046,27.922119],[-99.926035,27.927484],[-99.92435,27.929514],[-99.92413,27.931379],[-99.926555,27.935701],[-99.927623,27.936407],[-99.932866,27.93727],[-99.934619,27.938245],[-99.937142,27.940537],[-99.938958,27.949323],[-99.938541,27.954059],[-99.934388,27.96148],[-99.932161,27.96771],[-99.931229,27.979482],[-99.931811,27.980968],[-99.934816,27.98177],[-99.941236,27.982493],[-99.947117,27.98217],[-99.950209,27.983266],[-99.962768,27.983537],[-99.970113,27.985879],[-99.977281,27.989505],[-99.978659,27.989289],[-99.984923,27.990729],[-99.989762,27.992876],[-99.991447,27.99456],[-99.996388,28.001582],[-100.000024,28.010478],[-100.006148,28.018419],[-100.008631,28.023964],[-100.012839,28.037203],[-100.013088,28.04382],[-100.015,28.04888],[-100.016068,28.053296],[-100.017143,28.062274],[-100.017913,28.064788],[-100.018951,28.066441],[-100.021859,28.068881],[-100.028724,28.073119],[-100.031775,28.074391],[-100.040905,28.076969],[-100.046107,28.079069],[-100.053122,28.084731],[-100.055063,28.088182],[-100.056982,28.094208],[-100.057048,28.095657],[-100.055595,28.101142],[-100.055834,28.10272],[-100.056492,28.104187],[-100.058808,28.107292],[-100.065885,28.111738],[-100.067651,28.113603],[-100.071769,28.120842],[-100.075474,28.124882],[-100.076596,28.127629],[-100.077784,28.128663],[-100.07895,28.131028],[-100.080629,28.135474],[-100.081301,28.138475],[-100.082553,28.139743],[-100.082958,28.141059],[-100.082932,28.143099],[-100.083393,28.144035],[-100.084328,28.144819],[-100.086898,28.146783],[-100.090289,28.148313],[-100.109091,28.153586],[-100.110448,28.153573],[-100.114395,28.15474],[-100.119627,28.155588],[-100.124318,28.158111],[-100.126782,28.160037],[-100.128308,28.160574],[-100.129148,28.161806],[-100.133157,28.163563],[-100.134383,28.163737],[-100.136405,28.165362],[-100.141099,28.168148],[-100.142252,28.168372],[-100.155975,28.167383],[-100.15919,28.167647],[-100.160589,28.16816],[-100.168437,28.171542],[-100.171322,28.17623],[-100.174412,28.179448],[-100.177552,28.181585],[-100.178623,28.181623],[-100.185694,28.185781],[-100.196499,28.190218],[-100.197886,28.190004],[-100.201085,28.190558],[-100.202447,28.190554],[-100.203807,28.190049],[-100.208058,28.190383],[-100.210217,28.192248],[-100.211313,28.193899],[-100.212104,28.19651],[-100.213609,28.204703],[-100.214112,28.205694],[-100.213481,28.20714],[-100.213452,28.210416],[-100.214248,28.211769],[-100.215464,28.218872],[-100.216532,28.221821],[-100.216547,28.223503],[-100.217565,28.226934],[-100.220288,28.23221],[-100.223629,28.235223],[-100.227573,28.235858],[-100.230517,28.236034],[-100.231479,28.235697],[-100.232228,28.236058],[-100.234966,28.23518],[-100.241397,28.234938],[-100.244273,28.23413],[-100.246205,28.234091],[-100.251636,28.23618],[-100.257789,28.24034],[-100.26091,28.244832],[-100.26471,28.247843],[-100.265998,28.249337],[-100.267603,28.250269],[-100.270129,28.253721],[-100.27263,28.255876],[-100.27763,28.262453],[-100.280519,28.267968],[-100.283177,28.270634],[-100.284301,28.271074],[-100.285102,28.271808],[-100.28939,28.27349],[-100.291397,28.275397],[-100.293474,28.278474],[-100.294113,28.280404],[-100.294296,28.28438],[-100.293468,28.28598],[-100.293276,28.287368],[-100.292228,28.288647],[-100.292151,28.289899],[-100.290436,28.295089],[-100.289798,28.295774],[-100.287553,28.301095],[-100.285986,28.3091],[-100.286476,28.312295],[-100.288639,28.316976],[-100.289553,28.31758],[-100.293084,28.321908],[-100.294838,28.323213],[-100.299284,28.328716],[-100.300887,28.330242],[-100.303849,28.334188],[-100.305428,28.335196],[-100.309123,28.338674],[-100.309837,28.341557],[-100.310732,28.343227],[-100.313139,28.344788],[-100.314199,28.345859],[-100.315712,28.349662],[-100.317245,28.357381],[-100.320392,28.362117],[-100.322914,28.364679],[-100.323724,28.366026],[-100.325114,28.367245],[-100.32959,28.372652],[-100.331401,28.373939],[-100.332208,28.375265],[-100.339712,28.382491],[-100.341871,28.384953],[-100.344402,28.389662],[-100.346799,28.395752],[-100.348178,28.398189],[-100.349588,28.402604],[-100.34945,28.403714],[-100.346988,28.407232],[-100.345248,28.407889],[-100.343947,28.410119],[-100.341915,28.414607],[-100.337063,28.427152],[-100.336187,28.430181],[-100.337616,28.437723],[-100.337433,28.441217],[-100.337798,28.44296],[-100.33944,28.446436],[-100.341534,28.449571],[-100.348425,28.456047],[-100.350786,28.459246],[-100.357498,28.463642],[-100.361046,28.467332],[-100.36206,28.469303],[-100.367765,28.475019],[-100.368288,28.477196],[-100.368197,28.47891],[-100.365982,28.481116],[-100.36189,28.482301],[-100.35508,28.482105],[-100.352235,28.482638],[-100.35065,28.483629],[-100.344181,28.486249],[-100.33714,28.491729],[-100.334864,28.495111],[-100.333682,28.497878],[-100.333814,28.499252],[-100.33474,28.500261],[-100.338518,28.501833],[-100.346748,28.503841],[-100.353142,28.504247],[-100.356037,28.504871],[-100.357982,28.5056],[-100.360356,28.50777],[-100.362148,28.508399],[-100.364738,28.508621],[-100.376959,28.512023],[-100.379079,28.511639],[-100.386963,28.514023],[-100.388262,28.514863],[-100.394988,28.528358],[-100.396177,28.529619],[-100.397736,28.530424],[-100.400209,28.531095],[-100.402214,28.532657],[-100.405058,28.53578],[-100.409887,28.545605],[-100.411269,28.550705],[-100.411388,28.55196],[-100.408888,28.557281],[-100.405171,28.560712],[-100.40425,28.564233],[-100.402866,28.565887],[-100.397301,28.575578],[-100.3968,28.580401],[-100.397211,28.582069],[-100.398096,28.583508],[-100.398462,28.585169],[-100.400266,28.58653],[-100.402236,28.58735],[-100.406214,28.588666],[-100.408968,28.588924],[-100.419389,28.593429],[-100.426603,28.595145],[-100.429856,28.596441],[-100.431871,28.597841],[-100.433623,28.606117],[-100.435334,28.606986],[-100.444975,28.607806],[-100.44732,28.609325],[-100.448624,28.61705],[-100.447557,28.621163],[-100.446581,28.633599],[-100.445529,28.637144],[-100.445526,28.637765],[-100.446163,28.638598],[-100.445749,28.640626],[-100.447091,28.642197],[-100.449519,28.642962],[-100.4547,28.642186],[-100.455719,28.642275],[-100.460287,28.641021],[-100.462866,28.641364],[-100.474494,28.647071],[-100.476171,28.649219],[-100.478878,28.654416],[-100.479636,28.655225],[-100.483946,28.655811],[-100.486033,28.656948],[-100.48926,28.658002],[-100.492639,28.657869],[-100.495863,28.658569],[-100.498115,28.659605],[-100.500354,28.66196],[-100.501798,28.66738],[-100.507691,28.682875],[-100.509005,28.687974],[-100.510055,28.690723],[-100.510534,28.692669],[-100.510532,28.697972],[-100.510922,28.701539],[-100.511998,28.705352],[-100.511419,28.708024],[-100.508986,28.711014],[-100.50775,28.71332],[-100.506701,28.716745],[-100.507877,28.721571],[-100.507706,28.727769],[-100.507113,28.72891],[-100.506791,28.732015],[-100.507613,28.740599],[-100.508255,28.741199],[-100.50915,28.741435],[-100.513516,28.741726],[-100.515156,28.742947],[-100.515565,28.743943],[-100.515536,28.744943],[-100.514504,28.74819],[-100.514399,28.750252],[-100.515472,28.75248],[-100.519226,28.756161],[-100.52157,28.75764],[-100.522483,28.757786],[-100.527216,28.756168],[-100.528475,28.756106],[-100.531567,28.757181],[-100.532862,28.758118],[-100.533408,28.759207],[-100.533551,28.761078],[-100.533017,28.76328],[-100.532211,28.764763],[-100.530281,28.767052],[-100.530046,28.770423],[-100.530464,28.771681],[-100.53194,28.773771],[-100.535023,28.77587],[-100.536445,28.777622],[-100.537772,28.780776],[-100.537733,28.782688],[-100.536944,28.784292],[-100.53517,28.785758],[-100.53345,28.787821],[-100.532431,28.791063],[-100.533402,28.799282],[-100.534246,28.802556],[-100.535438,28.805195],[-100.536459,28.806276],[-100.538815,28.806673],[-100.542173,28.808466],[-100.5452,28.812082],[-100.545819,28.813308],[-100.546216,28.81597],[-100.545479,28.819954],[-100.546576,28.824923],[-100.547324,28.825817],[-100.548895,28.826214],[-100.55313,28.828249],[-100.561443,28.829174],[-100.562777,28.829183],[-100.56583,28.828338],[-100.570475,28.826036],[-100.573158,28.82731],[-100.574728,28.828788],[-100.575891,28.832949],[-100.576866,28.835157],[-100.576846,28.836168],[-100.576294,28.83895],[-100.574397,28.843148],[-100.572878,28.848206],[-100.575154,28.850941],[-100.580502,28.856008],[-100.588192,28.860238],[-100.59104,28.863054],[-100.591468,28.864272],[-100.590761,28.867369],[-100.590855,28.871052],[-100.590369,28.87189],[-100.590768,28.872697],[-100.592033,28.873232],[-100.596804,28.873402],[-100.598101,28.874314],[-100.598877,28.875591],[-100.598731,28.878096],[-100.597941,28.880146],[-100.594848,28.882215],[-100.591041,28.883008],[-100.589705,28.884988],[-100.589499,28.886358],[-100.591517,28.889286],[-100.592504,28.889448],[-100.594287,28.888831],[-100.594929,28.888166],[-100.59729,28.887811],[-100.59987,28.886469],[-100.60099,28.886331],[-100.602172,28.886617],[-100.603011,28.887227],[-100.603841,28.888391],[-100.603793,28.889458],[-100.602294,28.894154],[-100.602562,28.895315],[-100.60232,28.898055],[-100.600749,28.900076],[-100.60109,28.901288],[-100.602595,28.902214],[-100.604249,28.90238],[-100.607763,28.902323],[-100.61218,28.901292],[-100.614222,28.901718],[-100.615792,28.903049],[-100.617016,28.907072],[-100.618216,28.908522],[-100.620942,28.909546],[-100.622436,28.909773],[-100.623482,28.909601],[-100.624899,28.90827],[-100.624706,28.9066],[-100.625407,28.904898],[-100.627729,28.903363],[-100.631611,28.902839],[-100.632778,28.903766],[-100.633277,28.904583],[-100.634691,28.908708],[-100.636619,28.911508],[-100.639242,28.912603],[-100.640568,28.914212],[-100.640672,28.915249],[-100.63917,28.916289],[-100.636015,28.916567],[-100.632956,28.916245],[-100.631061,28.916915],[-100.629785,28.91879],[-100.629706,28.921146],[-100.630188,28.922177],[-100.630228,28.923333],[-100.63072,28.924006],[-100.632401,28.925032],[-100.636855,28.926306],[-100.638857,28.927622],[-100.640794,28.930333],[-100.642552,28.933674],[-100.64375,28.937528],[-100.645841,28.939867],[-100.650894,28.942128],[-100.651512,28.943432],[-100.651542,28.945577],[-100.648911,28.952632],[-100.647268,28.955457],[-100.646993,28.957079],[-100.647143,28.958306],[-100.648285,28.960656],[-100.648828,28.961017],[-100.649932,28.961092],[-100.650334,28.961544],[-100.650319,28.962336],[-100.64943,28.964152],[-100.647153,28.96612],[-100.646636,28.966929],[-100.646382,28.970724],[-100.647192,28.973056],[-100.648113,28.974004],[-100.648654,28.977422],[-100.648104,28.98386],[-100.647286,28.985298],[-100.645894,28.986421],[-100.64604,28.987981],[-100.646903,28.991777],[-100.647826,28.992933],[-100.649164,28.996285],[-100.648529,28.998941],[-100.648664,29.000243],[-100.650946,29.008254],[-100.653758,29.015356],[-100.65611,29.017224],[-100.660208,29.031497],[-100.660351,29.035849],[-100.661885,29.039655],[-100.663212,29.048042],[-100.663059,29.053466],[-100.662508,29.058107],[-100.664021,29.074164],[-100.664609,29.075392],[-100.665464,29.075973],[-100.665873,29.076782],[-100.666848,29.082596],[-100.670597,29.092045],[-100.6752,29.100741],[-100.680526,29.107006],[-100.683927,29.110239],[-100.688505,29.112591],[-100.69179,29.114854],[-100.692978,29.115384],[-100.702309,29.117482],[-100.709966,29.119684],[-100.727462,29.129123],[-100.729049,29.131466],[-100.737795,29.139079],[-100.739116,29.141658],[-100.73886,29.143271],[-100.737709,29.145489],[-100.737419,29.147443],[-100.738023,29.148815],[-100.739681,29.150486],[-100.743105,29.152686],[-100.74614,29.154149],[-100.750365,29.155241],[-100.758072,29.156321],[-100.759726,29.15715],[-100.76335,29.160084],[-100.763676,29.164845],[-100.765448,29.166326],[-100.76896,29.166045],[-100.772604,29.168369],[-100.773855,29.170836],[-100.775905,29.173344],[-100.775189,29.174996],[-100.768493,29.181832],[-100.766004,29.185847],[-100.765824,29.187473],[-100.766306,29.190446],[-100.766121,29.191296],[-100.767059,29.195287],[-100.76811,29.197364],[-100.769341,29.198911],[-100.773952,29.199846],[-100.775294,29.199698],[-100.776254,29.200929],[-100.77702,29.204329],[-100.774539,29.209728],[-100.774627,29.210634],[-100.775042,29.211637],[-100.777088,29.213506],[-100.779697,29.218698],[-100.780039,29.21912],[-100.781036,29.219432],[-100.781142,29.220511],[-100.78241,29.222511],[-100.783779,29.225997],[-100.785521,29.228137],[-100.786329,29.228501],[-100.787131,29.228346],[-100.790071,29.226391],[-100.791372,29.225945],[-100.793677,29.226466],[-100.795681,29.22773],[-100.79686,29.231386],[-100.797046,29.235586],[-100.7948,29.239587],[-100.794627,29.241612],[-100.795647,29.244111],[-100.797619,29.246776],[-100.80006,29.248797],[-100.806653,29.252264],[-100.809279,29.253152],[-100.816277,29.253864],[-100.816723,29.254557],[-100.816693,29.255639],[-100.813306,29.261057],[-100.813321,29.262158],[-100.813959,29.263137],[-100.815062,29.263926],[-100.816994,29.264332],[-100.818773,29.263915],[-100.823533,29.261742],[-100.826006,29.261513],[-100.831214,29.261826],[-100.832315,29.261342],[-100.83404,29.2614],[-100.839016,29.263259],[-100.840829,29.264457],[-100.842782,29.266981],[-100.845476,29.269145],[-100.849908,29.27211],[-100.8511,29.271732],[-100.853396,29.272606],[-100.855067,29.274946],[-100.855841,29.275546],[-100.857898,29.275879],[-100.864659,29.276076],[-100.873343,29.27849],[-100.876049,29.279585],[-100.878126,29.28086],[-100.878883,29.282193],[-100.88024,29.286296],[-100.88058,29.292108],[-100.881958,29.299057],[-100.882293,29.299873],[-100.885785,29.304286],[-100.886291,29.305966],[-100.886312,29.307322],[-100.886842,29.307848],[-100.891072,29.308765],[-100.894931,29.310351],[-100.896646,29.309105],[-100.899033,29.309643],[-100.904734,29.312136],[-100.906419,29.313032],[-100.907422,29.314528],[-100.908394,29.316927],[-100.909457,29.317608],[-100.913131,29.317821],[-100.916628,29.319204],[-100.917279,29.320462],[-100.917602,29.322547],[-100.918284,29.324147],[-100.919499,29.325318],[-100.921343,29.326197],[-100.9236,29.326785],[-100.926677,29.326583],[-100.928505,29.326976],[-100.930482,29.328531],[-100.934451,29.330818],[-100.940616,29.333109],[-100.941265,29.333926],[-100.941691,29.337422],[-100.943198,29.341985],[-100.945383,29.344517],[-100.948974,29.347246],[-100.950727,29.347711],[-100.96079,29.346914],[-100.964326,29.347342],[-100.970212,29.350802],[-100.971744,29.351371],[-100.97254,29.352349],[-100.972914,29.354521],[-100.983246,29.359121],[-100.995607,29.363403],[-101.002948,29.365083],[-101.004207,29.364772],[-101.009976,29.368267],[-101.012627,29.371282],[-101.014274,29.374123],[-101.013273,29.380347],[-101.013542,29.381188],[-101.014473,29.38211],[-101.016726,29.387275],[-101.019258,29.390907],[-101.021023,29.39279],[-101.024016,29.393698],[-101.030464,29.399584],[-101.035146,29.405334],[-101.036604,29.406108],[-101.0386,29.410714],[-101.037642,29.414681],[-101.039461,29.416505],[-101.040637,29.422447],[-101.043364,29.42988],[-101.050505,29.434621],[-101.054422,29.437949],[-101.056957,29.440773],[-101.056844,29.447599],[-101.058149,29.447834],[-101.059727,29.455097],[-101.060151,29.458661],[-101.077184,29.46419],[-101.087149,29.469414],[-101.103699,29.47055],[-101.115254,29.468459],[-101.123794,29.473721],[-101.12728,29.477071],[-101.130038,29.47842],[-101.132634,29.477314],[-101.137503,29.473542],[-101.14075,29.472993],[-101.143447,29.473155],[-101.146798,29.474187],[-101.151877,29.477005],[-101.152191,29.478449],[-101.152741,29.478609],[-101.161948,29.489524],[-101.168102,29.50022],[-101.171664,29.503951],[-101.173824,29.514568],[-101.179646,29.515444],[-101.192716,29.520285],[-101.227417,29.52235],[-101.235273,29.524854],[-101.250382,29.520701],[-101.254895,29.520341],[-101.260838,29.529932],[-101.261176,29.536776],[-101.260482,29.538968],[-101.255275,29.549307],[-101.250385,29.556621],[-101.248524,29.559211],[-101.242981,29.564129],[-101.24103,29.565028],[-101.25166,29.600247],[-101.252297,29.604167],[-101.250383,29.609193],[-101.249636,29.610204],[-101.247333,29.61848],[-101.250383,29.624171],[-101.254036,29.626879],[-101.262233,29.630607],[-101.263391,29.630962],[-101.266469,29.63101],[-101.269102,29.630128],[-101.274145,29.625214],[-101.277709,29.621025],[-101.278759,29.619467],[-101.280494,29.615181],[-101.280079,29.613273],[-101.278097,29.609371],[-101.277439,29.606593],[-101.278008,29.596549],[-101.27761,29.593231],[-101.277878,29.59081],[-101.279449,29.588238],[-101.280623,29.587249],[-101.281138,29.5859],[-101.285336,29.582018],[-101.290962,29.571537],[-101.292489,29.571574],[-101.296162,29.572778],[-101.305533,29.577925],[-101.305969,29.578792],[-101.307565,29.580214],[-101.311636,29.585127],[-101.311997,29.586063],[-101.312363,29.587367],[-101.313373,29.602259],[-101.312617,29.60764],[-101.312896,29.610657],[-101.311706,29.615372],[-101.305863,29.625213],[-101.301427,29.634624],[-101.300027,29.640702],[-101.301444,29.647233],[-101.302516,29.650425],[-101.303558,29.652281],[-101.306944,29.655768],[-101.310372,29.657682],[-101.314135,29.659054],[-101.333486,29.66089],[-101.337483,29.660786],[-101.346017,29.662241],[-101.347863,29.662209],[-101.349351,29.661681],[-101.350327,29.66066],[-101.35545,29.651003],[-101.35714,29.649267],[-101.358713,29.649106],[-101.361312,29.650063],[-101.363218,29.652638],[-101.365551,29.666912],[-101.367105,29.670898],[-101.368718,29.672408],[-101.372696,29.678057],[-101.373054,29.680191],[-101.373108,29.684137],[-101.371782,29.693258],[-101.372773,29.699428],[-101.375386,29.701807],[-101.388481,29.707629],[-101.396948,29.713947],[-101.398362,29.717],[-101.398175,29.720485],[-101.396294,29.727055],[-101.396271,29.730465],[-101.397009,29.733963],[-101.398599,29.736432],[-101.400636,29.738079],[-101.407663,29.740357],[-101.410024,29.741498],[-101.413227,29.743599],[-101.414875,29.745234],[-101.415584,29.746534],[-101.415936,29.748638],[-101.415722,29.750206],[-101.414588,29.752418],[-101.413211,29.753381],[-101.403926,29.757587],[-101.400155,29.760083],[-101.398983,29.762175],[-101.398445,29.76463],[-101.398672,29.766898],[-101.399736,29.768961],[-101.402319,29.77119],[-101.404067,29.771766],[-101.40596,29.771653],[-101.407983,29.771343],[-101.410933,29.770152],[-101.424208,29.761312],[-101.43627,29.751921],[-101.438146,29.75092],[-101.442589,29.749722],[-101.446202,29.749933],[-101.448881,29.750699],[-101.450298,29.752846],[-101.451215,29.755792],[-101.451974,29.760363],[-101.453074,29.764719],[-101.454588,29.768703],[-101.455224,29.771874],[-101.455125,29.773936],[-101.452947,29.781947],[-101.452806,29.783791],[-101.45378,29.785911],[-101.455799,29.788049],[-101.458309,29.789228],[-101.460906,29.789663],[-101.464403,29.789286],[-101.469489,29.787894],[-101.476275,29.785518],[-101.478864,29.784085],[-101.482515,29.780095],[-101.484457,29.776885],[-101.487089,29.773868],[-101.500389,29.765868],[-101.503223,29.764582],[-101.504956,29.764238],[-101.508274,29.76422],[-101.51758,29.765005],[-101.520351,29.764354],[-101.522811,29.763338],[-101.525648,29.761583],[-101.530256,29.759584],[-101.533874,29.758728],[-101.535998,29.75895],[-101.537276,29.759411],[-101.538638,29.760506],[-101.539191,29.761774],[-101.539432,29.766421],[-101.538466,29.770038],[-101.53792,29.788065],[-101.536916,29.791649],[-101.535218,29.795404],[-101.53501,29.797679],[-101.536166,29.801284],[-101.541901,29.810781],[-101.543881,29.81184],[-101.544769,29.811868],[-101.547382,29.810716],[-101.550918,29.805714],[-101.552485,29.804233],[-101.554059,29.803422],[-101.565446,29.799911],[-101.567749,29.798727],[-101.573216,29.790334],[-101.574119,29.788222],[-101.574332,29.786482],[-101.57291,29.78338],[-101.572789,29.775757],[-101.572223,29.773319],[-101.573629,29.771304],[-101.575807,29.769319],[-101.57754,29.769074],[-101.578627,29.769703],[-101.580247,29.76966],[-101.586899,29.771124],[-101.588593,29.770746],[-101.589443,29.770875],[-101.595863,29.772207],[-101.59889,29.773827],[-101.603681,29.774399],[-101.606648,29.774113],[-101.615674,29.770412],[-101.617906,29.76993],[-101.620336,29.769814],[-101.625133,29.770988],[-101.6269,29.770762],[-101.628769,29.770025],[-101.63029,29.768335],[-101.632715,29.764265],[-101.632961,29.763013],[-101.632796,29.761638],[-101.633951,29.759802],[-101.635464,29.75836],[-101.637748,29.757437],[-101.640177,29.756918],[-101.642883,29.754548],[-101.644567,29.754233],[-101.646936,29.754565],[-101.650758,29.757093],[-101.652965,29.759911],[-101.653145,29.762195],[-101.654459,29.765121],[-101.656004,29.765888],[-101.657663,29.766235],[-101.659687,29.767411],[-101.660268,29.768971],[-101.661724,29.770857],[-101.662994,29.77106],[-101.66614,29.769926],[-101.670623,29.768928],[-101.673629,29.766458],[-101.674564,29.765232],[-101.674965,29.764158],[-101.675299,29.761084],[-101.677804,29.760292],[-101.680002,29.760198],[-101.68144,29.760784],[-101.684555,29.764381],[-101.686219,29.76859],[-101.689634,29.771035],[-101.690109,29.771051],[-101.693945,29.76893],[-101.698177,29.765672],[-101.702393,29.764605],[-101.706113,29.762861],[-101.707177,29.761793],[-101.708873,29.761642],[-101.710724,29.76202],[-101.712056,29.762777],[-101.712781,29.763668],[-101.714439,29.768456],[-101.717778,29.772535],[-101.718713,29.774738],[-101.71973,29.775738],[-101.72261,29.776247],[-101.724956,29.775897],[-101.726329,29.774152],[-101.728289,29.772685],[-101.731236,29.771415],[-101.733352,29.77118],[-101.736078,29.771862],[-101.738692,29.772985],[-101.739228,29.773535],[-101.739864,29.776207],[-101.741335,29.778278],[-101.744315,29.779195],[-101.74628,29.778141],[-101.748894,29.777549],[-101.753881,29.777327],[-101.754392,29.777527],[-101.755347,29.778984],[-101.756124,29.779583],[-101.758591,29.780331],[-101.760308,29.781702],[-101.762899,29.782125],[-101.764299,29.782736],[-101.7711,29.787512],[-101.773825,29.788675],[-101.777045,29.789251],[-101.780556,29.789376],[-101.782767,29.789321],[-101.7849,29.788648],[-101.785957,29.787409],[-101.785586,29.78416],[-101.785773,29.783247],[-101.787141,29.78084],[-101.788531,29.779272],[-101.790762,29.779496],[-101.794631,29.779134],[-101.799496,29.779218],[-101.805114,29.78035],[-101.808059,29.781594],[-101.81081,29.783627],[-101.813135,29.787207],[-101.813977,29.79233],[-101.813462,29.794412],[-101.806515,29.799296],[-101.805,29.801642],[-101.804919,29.802512],[-101.803976,29.802562],[-101.803613,29.803446],[-101.805745,29.80524],[-101.809739,29.807198],[-101.812516,29.809786],[-101.816284,29.81135],[-101.817777,29.811635],[-101.819986,29.811394],[-101.822559,29.810341],[-101.825062,29.808255],[-101.825608,29.807053],[-101.82583,29.80552],[-101.825533,29.803963],[-101.823966,29.800478],[-101.821851,29.798466],[-101.820306,29.79631],[-101.818694,29.7915],[-101.819289,29.790058],[-101.820422,29.788875],[-101.823656,29.787398],[-101.824844,29.787426],[-101.828671,29.788532],[-101.837595,29.793364],[-101.842932,29.798972],[-101.846922,29.802442],[-101.847406,29.803243],[-101.847159,29.804002],[-101.847353,29.80466],[-101.848948,29.806743],[-101.850726,29.807542],[-101.85272,29.807791],[-101.855862,29.807217],[-101.859472,29.803485],[-101.861087,29.802638],[-101.866502,29.798014],[-101.870297,29.795895],[-101.875772,29.793796],[-101.880588,29.79576],[-101.882451,29.793627],[-101.883984,29.793542],[-101.885185,29.794099],[-101.88816,29.796425],[-101.890511,29.79738],[-101.892883,29.797688],[-101.898696,29.798201],[-101.902729,29.798027],[-101.908795,29.798467],[-101.911595,29.79804],[-101.913966,29.796885],[-101.915723,29.795213],[-101.91742,29.79254],[-101.921707,29.78824],[-101.921428,29.787473],[-101.92225,29.786026],[-101.926637,29.783109],[-101.929323,29.782576],[-101.931675,29.784222],[-101.933061,29.78448],[-101.933528,29.785193],[-101.934174,29.787993],[-101.932541,29.789769],[-101.932672,29.793243],[-101.933806,29.797033],[-101.935606,29.799561],[-101.937595,29.800544],[-101.939329,29.800864],[-101.94386,29.800667],[-101.94589,29.801755],[-101.947566,29.800929],[-101.949642,29.798745],[-101.95409,29.795777],[-101.95548,29.795333],[-101.957515,29.795766],[-101.960968,29.797618],[-101.963377,29.800149],[-101.963342,29.801192],[-101.964012,29.803601],[-101.965465,29.805995],[-101.964717,29.809314],[-101.965435,29.810994],[-101.96674,29.812698],[-101.967677,29.813347],[-101.969615,29.813834],[-101.971005,29.813555],[-101.971783,29.814079],[-101.972232,29.815245],[-101.972838,29.815658],[-101.973974,29.815579],[-101.976264,29.81604],[-101.979137,29.815319],[-101.980779,29.815625],[-101.981567,29.81502],[-101.982795,29.811869],[-101.983052,29.809943],[-101.98296,29.808766],[-101.981725,29.806807],[-101.981808,29.806167],[-101.984303,29.799262],[-101.985445,29.797959],[-101.987305,29.796842],[-101.988607,29.796666],[-101.989796,29.79696],[-101.991032,29.797723],[-101.99299,29.800964],[-101.994147,29.804516],[-101.994724,29.805165],[-101.997021,29.806109],[-102.000656,29.805198],[-102.006007,29.801489],[-102.009659,29.800441],[-102.011603,29.799571],[-102.014465,29.797643],[-102.015227,29.797491],[-102.017928,29.798127],[-102.018412,29.798517],[-102.019847,29.801171],[-102.021906,29.802467],[-102.024555,29.802922],[-102.027436,29.801883],[-102.028424,29.80188],[-102.030684,29.802538],[-102.032571,29.803832],[-102.035818,29.804063],[-102.038758,29.803029],[-102.039827,29.802047],[-102.040732,29.800553],[-102.041189,29.799058],[-102.04093,29.797565],[-102.039462,29.794367],[-102.038736,29.793625],[-102.038386,29.792368],[-102.038626,29.791619],[-102.040385,29.790104],[-102.041418,29.789656],[-102.043783,29.790298],[-102.046293,29.78994],[-102.048289,29.788182],[-102.048605,29.787722],[-102.048787,29.786091],[-102.049652,29.785276],[-102.051958,29.784977],[-102.053162,29.785745],[-102.053765,29.786564],[-102.055001,29.78703],[-102.057891,29.786436],[-102.067455,29.786923],[-102.068434,29.786376],[-102.071246,29.787012],[-102.072046,29.786913],[-102.072618,29.786458],[-102.073187,29.786524],[-102.075668,29.788392],[-102.076317,29.790682],[-102.077109,29.792051],[-102.078982,29.793084],[-102.080596,29.792772],[-102.082058,29.79314],[-102.082475,29.793425],[-102.082784,29.794351],[-102.084379,29.795064],[-102.08863,29.793522],[-102.091149,29.793287],[-102.093567,29.791497],[-102.094678,29.791245],[-102.098732,29.792264],[-102.101383,29.793612],[-102.107362,29.79282],[-102.108782,29.791845],[-102.110895,29.792412],[-102.112266,29.793557],[-102.114196,29.793451],[-102.114766,29.792466],[-102.115706,29.792301],[-102.116723,29.793038],[-102.117916,29.796161],[-102.11773,29.797447],[-102.118365,29.79921],[-102.117141,29.800363],[-102.119754,29.802479],[-102.12361,29.801884],[-102.127641,29.798797],[-102.128904,29.79853],[-102.130461,29.798983],[-102.135562,29.801589],[-102.137847,29.802108],[-102.140769,29.802264],[-102.143566,29.80332],[-102.149206,29.810122],[-102.150893,29.811592],[-102.152059,29.811983],[-102.153207,29.811605],[-102.15561,29.812042],[-102.15789,29.813094],[-102.159796,29.814685],[-102.161279,29.818683],[-102.165745,29.823046],[-102.16583,29.824212],[-102.166445,29.825385],[-102.167666,29.826043],[-102.168603,29.82616],[-102.172682,29.825633],[-102.177527,29.825551],[-102.17956,29.82597],[-102.179964,29.826375],[-102.181305,29.83115],[-102.180008,29.833063],[-102.178437,29.836665],[-102.178509,29.839454],[-102.181131,29.844484],[-102.182281,29.845889],[-102.187027,29.848656],[-102.189394,29.848662],[-102.191655,29.846638],[-102.192469,29.845266],[-102.193254,29.842783],[-102.193357,29.839356],[-102.194201,29.837894],[-102.196086,29.836576],[-102.197642,29.836417],[-102.199614,29.83687],[-102.202257,29.839453],[-102.204561,29.840993],[-102.204987,29.841954],[-102.206645,29.843201],[-102.208021,29.843919],[-102.209938,29.844359],[-102.211834,29.844417],[-102.214598,29.84399],[-102.219797,29.840869],[-102.221853,29.840365],[-102.223528,29.84053],[-102.227891,29.843634],[-102.229466,29.845598],[-102.229973,29.847035],[-102.230857,29.847868],[-102.231791,29.848251],[-102.234142,29.848579],[-102.24138,29.847686],[-102.24383,29.848172],[-102.244892,29.848946],[-102.245319,29.850403],[-102.24494,29.852718],[-102.243225,29.858413],[-102.245307,29.863191],[-102.246458,29.864128],[-102.24831,29.864341],[-102.24917,29.864002],[-102.249775,29.863293],[-102.25055,29.861416],[-102.251604,29.859912],[-102.251891,29.858291],[-102.251294,29.856751],[-102.251491,29.855155],[-102.253178,29.853068],[-102.254581,29.852702],[-102.256398,29.852714],[-102.261495,29.853241],[-102.26348,29.854227],[-102.264269,29.85563],[-102.264278,29.857797],[-102.263161,29.861435],[-102.262134,29.862667],[-102.261882,29.86357],[-102.262081,29.864693],[-102.263134,29.866231],[-102.264842,29.867496],[-102.266758,29.868039],[-102.268995,29.867765],[-102.27404,29.864583],[-102.274764,29.863788],[-102.276591,29.862954],[-102.280892,29.862819],[-102.282359,29.863452],[-102.283305,29.864292],[-102.285828,29.870053],[-102.286875,29.871202],[-102.295871,29.87361],[-102.299707,29.877167],[-102.300558,29.877597],[-102.304401,29.877815],[-102.30954,29.877099],[-102.312298,29.877119],[-102.313741,29.87909],[-102.314818,29.879804],[-102.31594,29.879993],[-102.320272,29.879301],[-102.321186,29.878685],[-102.32434,29.873712],[-102.324739,29.872617],[-102.324602,29.87098],[-102.322711,29.86566],[-102.323463,29.863917],[-102.324856,29.863081],[-102.326905,29.862674],[-102.330758,29.86311],[-102.331931,29.862824],[-102.332642,29.863675],[-102.332949,29.865607],[-102.332801,29.867072],[-102.33331,29.868071],[-102.338298,29.868874],[-102.339382,29.869475],[-102.340921,29.869373],[-102.342185,29.868441],[-102.342113,29.866565],[-102.343091,29.865237],[-102.349678,29.862634],[-102.350207,29.861203],[-102.350245,29.857008],[-102.350854,29.854849],[-102.352272,29.852756],[-102.354553,29.851275],[-102.359135,29.850242],[-102.361236,29.84913],[-102.363355,29.847085],[-102.364557,29.845335],[-102.364491,29.843381],[-102.363956,29.841953],[-102.364202,29.841294],[-102.362445,29.835655],[-102.362407,29.834148],[-102.362929,29.831489],[-102.364255,29.829579],[-102.364503,29.828261],[-102.365832,29.825592],[-102.369643,29.820662],[-102.369627,29.819703],[-102.372084,29.813605],[-102.373195,29.807878],[-102.374339,29.806417],[-102.375752,29.802914],[-102.377512,29.799997],[-102.37782,29.797168],[-102.377361,29.794514],[-102.377471,29.791219],[-102.3772,29.789889],[-102.37896,29.788468],[-102.379379,29.787762],[-102.385189,29.785769],[-102.388554,29.78361],[-102.390044,29.781921],[-102.38951,29.780608],[-102.387263,29.778473],[-102.386586,29.777446],[-102.386234,29.774879],[-102.385408,29.773398],[-102.385039,29.771744],[-102.385028,29.770502],[-102.385455,29.769242],[-102.386961,29.76657],[-102.386854,29.765476],[-102.387347,29.76474],[-102.386361,29.762412],[-102.387227,29.761392],[-102.388323,29.761266],[-102.389679,29.76188],[-102.390299,29.762639],[-102.391791,29.7661],[-102.393428,29.768296],[-102.394807,29.769163],[-102.397619,29.769642],[-102.398924,29.769522],[-102.404537,29.765181],[-102.408183,29.765011],[-102.408976,29.764531],[-102.410639,29.765373],[-102.411973,29.768168],[-102.413289,29.768269],[-102.414934,29.769281],[-102.416032,29.769575],[-102.417545,29.769591],[-102.420082,29.768939],[-102.421474,29.769258],[-102.423119,29.770008],[-102.424043,29.771361],[-102.425922,29.7731],[-102.427012,29.773654],[-102.428494,29.773859],[-102.429474,29.774657],[-102.432281,29.775547],[-102.433666,29.776853],[-102.435636,29.776479],[-102.436597,29.775743],[-102.437271,29.774242],[-102.438272,29.773496],[-102.439297,29.773259],[-102.440787,29.773735],[-102.444578,29.776812],[-102.447382,29.777502],[-102.450082,29.777171],[-102.455006,29.77481],[-102.457692,29.774585],[-102.458889,29.775398],[-102.462194,29.78129],[-102.465453,29.78339],[-102.466268,29.783402],[-102.467487,29.78287],[-102.469728,29.780796],[-102.470649,29.779664],[-102.471314,29.777078],[-102.471994,29.776387],[-102.473233,29.776018],[-102.480665,29.776069],[-102.482285,29.777961],[-102.481345,29.780574],[-102.481271,29.781325],[-102.481772,29.782838],[-102.483565,29.784784],[-102.485665,29.785681],[-102.486377,29.786467],[-102.487252,29.786585],[-102.497987,29.781448],[-102.506048,29.78237],[-102.514939,29.784299],[-102.516551,29.784121],[-102.517616,29.78358],[-102.519186,29.780368],[-102.518382,29.778664],[-102.514571,29.775609],[-102.511517,29.774565],[-102.510727,29.773882],[-102.510727,29.771354],[-102.511765,29.769785],[-102.513103,29.769089],[-102.51329,29.768398],[-102.513,29.766569],[-102.513503,29.765439],[-102.514562,29.764994],[-102.520514,29.760739],[-102.523414,29.759546],[-102.527363,29.758426],[-102.534235,29.754938],[-102.540715,29.748069],[-102.543417,29.746505],[-102.546441,29.745769],[-102.547978,29.744644],[-102.550704,29.745191],[-102.551815,29.746039],[-102.553106,29.747873],[-102.554669,29.748728],[-102.555127,29.751329],[-102.554408,29.753769],[-102.555184,29.755862],[-102.557482,29.757877],[-102.55836,29.759096],[-102.560429,29.763718],[-102.56272,29.767509],[-102.563781,29.7684],[-102.564937,29.768772],[-102.565544,29.769628],[-102.565697,29.770928],[-102.567663,29.771463],[-102.56919,29.771455],[-102.570568,29.771005],[-102.571815,29.768964],[-102.573629,29.768202],[-102.574077,29.767358],[-102.574451,29.765969],[-102.573301,29.762486],[-102.57385,29.761631],[-102.572054,29.757189],[-102.572558,29.755885],[-102.573796,29.754896],[-102.576011,29.754691],[-102.576904,29.755119],[-102.578982,29.755417],[-102.580338,29.754991],[-102.582585,29.753522],[-102.582836,29.752958],[-102.58538,29.750897],[-102.589207,29.749069],[-102.591014,29.749093],[-102.591915,29.749514],[-102.592869,29.74914],[-102.594654,29.750699],[-102.595741,29.751211],[-102.597618,29.751415],[-102.599755,29.751229],[-102.604412,29.750155],[-102.606108,29.748858],[-102.609942,29.747785],[-102.612426,29.748272],[-102.61496,29.746654],[-102.617042,29.743449],[-102.62279,29.736339],[-102.62611,29.735418],[-102.629342,29.73531],[-102.63041,29.734181],[-102.631913,29.73427],[-102.634193,29.733805],[-102.638922,29.733932],[-102.639968,29.733628],[-102.645184,29.733839],[-102.651403,29.734765],[-102.653927,29.735509],[-102.656868,29.73516],[-102.660245,29.735629],[-102.664048,29.736667],[-102.667148,29.739129],[-102.667634,29.74015],[-102.66728,29.744164],[-102.667571,29.745099],[-102.668403,29.74593],[-102.669034,29.746106],[-102.67008,29.745684],[-102.672285,29.744363],[-102.673465,29.744732],[-102.673997,29.744574],[-102.675018,29.743969],[-102.677021,29.741523],[-102.678987,29.73402],[-102.681763,29.728073],[-102.68268,29.727291],[-102.683972,29.727311],[-102.685062,29.726867],[-102.686833,29.723774],[-102.687737,29.722753],[-102.689676,29.722098],[-102.690532,29.722673],[-102.691373,29.721372],[-102.691061,29.720751],[-102.690378,29.713829],[-102.690471,29.710091],[-102.690166,29.707308],[-102.689019,29.706036],[-102.689035,29.705038],[-102.690552,29.70355],[-102.694239,29.701104],[-102.695107,29.699989],[-102.697027,29.698776],[-102.698137,29.695637],[-102.698551,29.695545],[-102.699252,29.691254],[-102.6993,29.687269],[-102.699672,29.686287],[-102.699443,29.684999],[-102.696169,29.681927],[-102.695493,29.679914],[-102.693758,29.677785],[-102.693644,29.676685],[-102.696233,29.673129],[-102.696723,29.671958],[-102.698307,29.671634],[-102.70051,29.672561],[-102.704083,29.67134],[-102.706755,29.668474],[-102.708646,29.666987],[-102.709167,29.664874],[-102.711283,29.660467],[-102.712536,29.658694],[-102.715209,29.656405],[-102.718293,29.653998],[-102.721347,29.652607],[-102.722828,29.651427],[-102.724224,29.651143],[-102.72574,29.651417],[-102.725528,29.650051],[-102.724066,29.648515],[-102.724467,29.645844],[-102.725906,29.643242],[-102.729784,29.640652],[-102.73451,29.642143],[-102.736574,29.641825],[-102.737021,29.641496],[-102.736848,29.639834],[-102.741949,29.633193],[-102.742289,29.631978],[-102.741957,29.630319],[-102.741048,29.628712],[-102.74012,29.627782],[-102.739053,29.625557],[-102.738557,29.618176],[-102.738791,29.608828],[-102.739515,29.606392],[-102.740973,29.604509],[-102.741565,29.602828],[-102.741451,29.602069],[-102.739721,29.599925],[-102.740543,29.597499],[-102.743416,29.594876],[-102.74434,29.593559],[-102.746331,29.592648],[-102.749695,29.595085],[-102.753667,29.596245],[-102.756303,29.597598],[-102.760323,29.598603],[-102.761886,29.598643],[-102.765374,29.597757],[-102.768302,29.595209],[-102.768641,29.59468],[-102.768405,29.593334],[-102.765929,29.589527],[-102.763504,29.582012],[-102.762343,29.580548],[-102.762263,29.579751],[-102.763242,29.577818],[-102.763953,29.574747],[-102.764779,29.57334],[-102.766201,29.572206],[-102.767627,29.571798],[-102.768901,29.572743],[-102.769121,29.573303],[-102.770649,29.573838],[-102.77325,29.573674],[-102.773866,29.573124],[-102.773897,29.569659],[-102.773423,29.566865],[-102.774882,29.565136],[-102.7751,29.563722],[-102.776568,29.561809],[-102.777603,29.561377],[-102.777766,29.56098],[-102.777339,29.554749],[-102.775437,29.551588],[-102.773831,29.550371],[-102.77111,29.549031],[-102.771228,29.548397],[-102.773468,29.547184],[-102.776809,29.547055],[-102.778382,29.543592],[-102.780266,29.542466],[-102.783332,29.541918],[-102.789266,29.543679],[-102.789883,29.543672],[-102.791452,29.542824],[-102.792443,29.54177],[-102.793027,29.539946],[-102.792941,29.538837],[-102.791526,29.536016],[-102.792007,29.533004],[-102.792567,29.532444],[-102.795039,29.531237],[-102.79718,29.529398],[-102.798443,29.526667],[-102.803907,29.523954],[-102.80832,29.52293],[-102.808856,29.521198],[-102.808738,29.519948],[-102.807869,29.517554],[-102.806388,29.515381],[-102.807219,29.512826],[-102.806561,29.507012],[-102.807474,29.503851],[-102.806388,29.502887],[-102.805133,29.502497],[-102.804337,29.501177],[-102.804744,29.498785],[-102.807268,29.494295],[-102.806571,29.493594],[-102.805748,29.491436],[-102.804874,29.490353],[-102.803239,29.489082],[-102.802856,29.488396],[-102.801958,29.488233],[-102.800673,29.486235],[-102.80421,29.483716],[-102.808352,29.483305],[-102.810695,29.483816],[-102.812565,29.483636],[-102.814251,29.482398],[-102.814385,29.4799],[-102.815527,29.476004],[-102.815374,29.474444],[-102.814001,29.472408],[-102.813997,29.471401],[-102.815482,29.47116],[-102.816414,29.470522],[-102.817971,29.467113],[-102.82038,29.466009],[-102.822185,29.464558],[-102.823474,29.462581],[-102.823858,29.459955],[-102.825637,29.457945],[-102.825355,29.456072],[-102.825579,29.455463],[-102.823954,29.452112],[-102.821086,29.45189],[-102.819528,29.45072],[-102.822243,29.449123],[-102.823892,29.448806],[-102.825593,29.447421],[-102.829393,29.445884],[-102.831045,29.444254],[-102.830827,29.441028],[-102.831214,29.439933],[-102.831767,29.439391],[-102.831827,29.438652],[-102.831656,29.436532],[-102.830862,29.434353],[-102.830943,29.433879],[-102.832215,29.433393],[-102.83248,29.432431],[-102.830798,29.427879],[-102.829948,29.427277],[-102.828572,29.423584],[-102.826925,29.4177],[-102.828539,29.415518],[-102.830583,29.413967],[-102.831537,29.412082],[-102.833102,29.41114],[-102.833443,29.410498],[-102.833251,29.409291],[-102.832582,29.408445],[-102.826518,29.407563],[-102.826522,29.406341],[-102.825727,29.404186],[-102.826126,29.402962],[-102.825855,29.402544],[-102.824621,29.402603],[-102.823136,29.403425],[-102.819003,29.403599],[-102.813676,29.402326],[-102.812362,29.401443],[-102.812381,29.400525],[-102.813383,29.399085],[-102.815859,29.397016],[-102.82004,29.398348],[-102.825612,29.396946],[-102.826598,29.395941],[-102.829741,29.390769],[-102.83252,29.388922],[-102.83306,29.388086],[-102.834023,29.379056],[-102.834712,29.378492],[-102.837029,29.377894],[-102.84069,29.377641],[-102.84398,29.375749],[-102.845018,29.374441],[-102.844898,29.3696],[-102.845545,29.366937],[-102.845317,29.364732],[-102.842943,29.363004],[-102.841378,29.36272],[-102.840078,29.361851],[-102.839375,29.358922],[-102.843356,29.357775],[-102.845303,29.357699],[-102.849183,29.355921],[-102.856661,29.353603],[-102.859893,29.351771],[-102.862127,29.351343],[-102.872932,29.352259],[-102.875824,29.35358],[-102.876861,29.354711],[-102.877505,29.354891],[-102.880711,29.352639],[-102.884365,29.347946],[-102.884439,29.347412],[-102.88388,29.34599],[-102.882508,29.344603],[-102.880749,29.342088],[-102.879875,29.339148],[-102.880627,29.337185],[-102.881158,29.334315],[-102.884737,29.325995],[-102.88499,29.322133],[-102.88432,29.321197],[-102.88445,29.320678],[-102.88525,29.320147],[-102.886205,29.320316],[-102.887433,29.318755],[-102.887625,29.316783],[-102.888263,29.314836],[-102.887544,29.313217],[-102.887338,29.31163],[-102.890195,29.309472],[-102.892234,29.309499],[-102.893041,29.308907],[-102.893109,29.307473],[-102.892635,29.305885],[-102.890123,29.302415],[-102.888862,29.296517],[-102.88845,29.295832],[-102.888178,29.293359],[-102.889736,29.288748],[-102.890466,29.287978],[-102.891219,29.28739],[-102.894883,29.285956],[-102.896514,29.284831],[-102.897544,29.281992],[-102.89867,29.28073],[-102.899238,29.280456],[-102.901643,29.280659],[-102.902978,29.279225],[-102.903328,29.277842],[-102.903065,29.276081],[-102.902153,29.274644],[-102.900182,29.272783],[-102.899287,29.269092],[-102.902249,29.26482],[-102.903273,29.264681],[-102.905478,29.263623],[-102.906382,29.262055],[-102.906384,29.260083],[-102.905981,29.258269],[-102.904208,29.255471],[-102.903066,29.254335],[-102.900322,29.253964],[-102.898706,29.254424],[-102.896626,29.254114],[-102.89266,29.249172],[-102.887818,29.245796],[-102.884061,29.246173],[-102.88028,29.246066],[-102.880254,29.245505],[-102.879724,29.245176],[-102.874388,29.243552],[-102.871749,29.241776],[-102.871032,29.240706],[-102.871176,29.238767],[-102.870597,29.236109],[-102.870799,29.233949],[-102.871525,29.232744],[-102.871716,29.231719],[-102.868529,29.230365],[-102.866762,29.227744],[-102.866544,29.226258],[-102.867474,29.223883],[-102.873736,29.218868],[-102.877286,29.217087],[-102.877894,29.216334],[-102.878346,29.214056],[-102.878821,29.213627],[-102.882829,29.213003],[-102.884595,29.212207],[-102.885596,29.211116],[-102.890054,29.209959],[-102.890388,29.209332],[-102.891414,29.209424],[-102.895101,29.208521],[-102.897783,29.208636],[-102.899491,29.20946],[-102.900956,29.212364],[-102.903375,29.214712],[-102.905631,29.215826],[-102.907677,29.218136],[-102.90797,29.219155],[-102.908653,29.219663],[-102.912324,29.219418],[-102.914944,29.217476],[-102.916081,29.215743],[-102.916023,29.21196],[-102.91574,29.211213],[-102.913712,29.208907],[-102.912862,29.207554],[-102.912734,29.20673],[-102.913623,29.204384],[-102.913305,29.20256],[-102.914306,29.201082],[-102.914195,29.200143],[-102.917513,29.199294],[-102.918689,29.199349],[-102.918936,29.19903],[-102.918588,29.194186],[-102.918125,29.193007],[-102.917086,29.192235],[-102.917823,29.190887],[-102.9186,29.190515],[-102.919747,29.19076],[-102.924166,29.19344],[-102.925329,29.19376],[-102.932511,29.194735],[-102.934468,29.192997],[-102.935891,29.191119],[-102.937967,29.189429],[-102.937749,29.188534],[-102.938271,29.188198],[-102.939081,29.188151],[-102.939835,29.188551],[-102.940889,29.189939],[-102.941465,29.191735],[-102.942334,29.191852],[-102.943378,29.19141],[-102.944328,29.190599],[-102.945431,29.188905],[-102.945476,29.187915],[-102.944822,29.186724],[-102.945711,29.183075],[-102.946827,29.182432],[-102.947641,29.181083],[-102.949465,29.180493],[-102.950888,29.178162],[-102.950998,29.177385],[-102.950413,29.174442],[-102.950886,29.17362],[-102.952786,29.17394],[-102.954004,29.175201],[-102.954393,29.176485],[-102.955349,29.177904],[-102.957274,29.17904],[-102.958508,29.178827],[-102.962518,29.180176],[-102.966074,29.182575],[-102.968038,29.18274],[-102.973241,29.185657],[-102.975527,29.186298],[-102.97874,29.186433],[-102.981148,29.185738],[-102.983989,29.183994],[-102.986044,29.183219],[-102.989985,29.183472],[-102.991413,29.182061],[-102.992276,29.180603],[-102.994519,29.180013],[-102.995618,29.179291],[-102.996759,29.177729],[-102.997902,29.175119],[-102.998121,29.173769],[-102.996993,29.170479],[-102.995785,29.164008],[-102.995914,29.161134],[-102.996268,29.16022],[-102.999575,29.155897],[-103.002506,29.149959],[-103.008108,29.148382],[-103.008991,29.141378],[-103.008797,29.137569],[-103.011018,29.137052],[-103.012086,29.137179],[-103.014859,29.135347],[-103.015651,29.133995],[-103.015571,29.132715],[-103.01479,29.130614],[-103.013624,29.130236],[-103.012171,29.128703],[-103.011748,29.127465],[-103.012093,29.126187],[-103.013228,29.125265],[-103.014259,29.124978],[-103.016633,29.126204],[-103.016978,29.125925],[-103.018952,29.126148],[-103.020472,29.125628],[-103.02181,29.124745],[-103.022856,29.123505],[-103.023528,29.122048],[-103.02403,29.119753],[-103.025905,29.117387],[-103.027592,29.116021],[-103.02861,29.115509],[-103.032719,29.115168],[-103.034318,29.114294],[-103.035656,29.114222],[-103.037014,29.112901],[-103.036117,29.11078],[-103.032109,29.106827],[-103.032353,29.103832],[-103.033879,29.100972],[-103.036301,29.098872],[-103.039319,29.097044],[-103.041844,29.096108],[-103.045427,29.095427],[-103.047636,29.096032],[-103.049319,29.098013],[-103.054249,29.100798],[-103.05568,29.099654],[-103.056869,29.097723],[-103.05867,29.095814],[-103.061632,29.09425],[-103.064179,29.091476],[-103.066028,29.091437],[-103.068968,29.093488],[-103.069989,29.093708],[-103.071835,29.093015],[-103.073005,29.092199],[-103.075824,29.091537],[-103.078679,29.088079],[-103.07959,29.087946],[-103.080183,29.087437],[-103.07663,29.07977],[-103.077019,29.076017],[-103.079154,29.073564],[-103.083562,29.070849],[-103.087024,29.067887],[-103.087425,29.067108],[-103.085506,29.059961],[-103.085404,29.058383],[-103.085868,29.056633],[-103.085584,29.054645],[-103.0859,29.053736],[-103.088699,29.053729],[-103.089689,29.053352],[-103.090535,29.054098],[-103.090775,29.055541],[-103.091473,29.056981],[-103.091908,29.057256],[-103.092033,29.061644],[-103.091501,29.063523],[-103.09239,29.064704],[-103.094098,29.065121],[-103.09548,29.064727],[-103.096218,29.063845],[-103.096166,29.062595],[-103.096891,29.060768],[-103.097927,29.060477],[-103.100134,29.060675],[-103.100626,29.060323],[-103.100599,29.057835],[-103.100136,29.05718],[-103.09992,29.055613],[-103.100437,29.054716],[-103.100435,29.051375],[-103.101069,29.049301],[-103.103004,29.047598],[-103.105046,29.044468],[-103.105868,29.042454],[-103.106506,29.038179],[-103.10472,29.034205],[-103.103465,29.032661],[-103.100651,29.03091],[-103.097891,29.027174],[-103.097993,29.026264],[-103.099501,29.022201],[-103.101503,29.018099],[-103.103249,29.016353],[-103.10683,29.014704],[-103.108484,29.013329],[-103.112482,29.00761],[-103.113491,29.005643],[-103.116039,29.002552],[-103.117191,29.000484],[-103.117478,28.997774],[-103.116478,28.996298],[-103.115928,28.993401],[-103.115246,28.992024],[-103.114732,28.991623],[-103.113814,28.988604],[-103.114247,28.986642],[-103.11536,28.985398],[-103.116814,28.984416],[-103.118833,28.983709],[-103.121863,28.98445],[-103.123582,28.984301],[-103.125379,28.982439],[-103.127006,28.982056],[-103.129714,28.982734],[-103.131689,28.984045],[-103.132761,28.983652],[-103.134552,28.983755],[-103.135989,28.983371],[-103.139313,28.980552],[-103.144408,28.977467],[-103.151022,28.975448],[-103.1527,28.972656],[-103.153896,28.971606],[-103.154418,28.971547],[-103.155352,28.972044],[-103.156231,28.972981],[-103.160319,28.973844],[-103.163935,28.972204],[-103.166084,28.974397],[-103.166031,28.975598],[-103.165608,28.976548],[-103.165776,28.977496],[-103.166788,28.978513],[-103.170321,28.980422],[-103.172436,28.980694],[-103.174459,28.977795],[-103.176281,28.977804],[-103.176755,28.978069],[-103.178373,28.980824],[-103.180842,28.982398],[-103.190822,28.984163],[-103.191639,28.983946],[-103.198843,28.985872],[-103.200557,28.986777],[-103.202412,28.987195],[-103.203834,28.98723],[-103.206289,28.986575],[-103.207759,28.986547],[-103.212275,28.987622],[-103.214782,28.987726],[-103.218981,28.985652],[-103.219848,28.983318],[-103.220731,28.983601],[-103.221594,28.984368],[-103.225548,28.989978],[-103.227888,28.991857],[-103.229378,28.990301],[-103.229338,28.98981],[-103.229913,28.988935],[-103.231555,28.98738],[-103.236191,28.984622],[-103.236285,28.983683],[-103.237635,28.981862],[-103.238976,28.981331],[-103.250416,28.98043],[-103.251189,28.981735],[-103.251242,28.983247],[-103.251971,28.985348],[-103.253393,28.987019],[-103.25526,28.988474],[-103.256747,28.989028],[-103.259317,28.99068],[-103.259512,28.991643],[-103.262216,28.99349],[-103.266333,28.995981],[-103.267334,28.996072],[-103.269359,28.993309],[-103.26993,28.991105],[-103.269844,28.989268],[-103.271386,28.985362],[-103.274447,28.981581],[-103.27796,28.979176],[-103.279338,28.977002],[-103.281773,28.976641],[-103.285083,28.977491],[-103.286241,28.978211],[-103.286986,28.978172],[-103.288163,28.979382],[-103.288305,28.981385],[-103.284996,28.982084],[-103.283009,28.982971],[-103.282293,28.98449],[-103.281553,28.987696],[-103.281918,28.989638],[-103.284675,28.996976],[-103.28616,29.000258],[-103.286941,29.001273],[-103.288116,29.002409],[-103.29056,29.00315],[-103.293941,29.00492],[-103.295666,29.006399],[-103.298981,29.006678],[-103.300422,29.00821],[-103.301662,29.008426],[-103.304671,29.00652],[-103.306798,29.004194],[-103.308664,29.003426],[-103.310067,29.004085],[-103.313765,29.006987],[-103.314955,29.008449],[-103.316162,29.010689],[-103.316318,29.011581],[-103.316,29.011994],[-103.312748,29.012963],[-103.311219,29.013978],[-103.308628,29.01786],[-103.30778,29.019455],[-103.30671,29.022775],[-103.306735,29.023401],[-103.307657,29.024537],[-103.309141,29.025484],[-103.311237,29.026076],[-103.314341,29.026064],[-103.315208,29.025593],[-103.315881,29.024217],[-103.31859,29.02194],[-103.320921,29.019103],[-103.324815,29.016847],[-103.326359,29.016315],[-103.332551,29.01659],[-103.336486,29.018315],[-103.338751,29.020277],[-103.340695,29.023641],[-103.34201,29.028436],[-103.34021,29.028641],[-103.33796,29.027471],[-103.336108,29.027396],[-103.333589,29.028956],[-103.33011,29.029534],[-103.327248,29.032721],[-103.327696,29.034044],[-103.327122,29.038269],[-103.327492,29.039924],[-103.328702,29.041559],[-103.330613,29.043219],[-103.333972,29.043991],[-103.3367,29.043394],[-103.339281,29.043704],[-103.340758,29.045209],[-103.342294,29.046168],[-103.343678,29.046369],[-103.344334,29.04595],[-103.344901,29.045161],[-103.345868,29.042459],[-103.347802,29.040259],[-103.349144,29.036853],[-103.350528,29.028914],[-103.352595,29.026401],[-103.353504,29.022892],[-103.353901,29.022225],[-103.355608,29.020883],[-103.359603,29.018644],[-103.361934,29.01869],[-103.366763,29.020227],[-103.374597,29.023703],[-103.375829,29.02383],[-103.376512,29.023213],[-103.377277,29.023183],[-103.382961,29.024512],[-103.384568,29.023933],[-103.385637,29.022208],[-103.386505,29.021648],[-103.387384,29.022245],[-103.38812,29.023798],[-103.38705,29.027461],[-103.387745,29.033023],[-103.388644,29.033974],[-103.392261,29.034955],[-103.393013,29.034599],[-103.394142,29.033145],[-103.394982,29.032575],[-103.399365,29.03125],[-103.40105,29.031056],[-103.401917,29.031452],[-103.402448,29.032127],[-103.402785,29.03385],[-103.403442,29.034476],[-103.404323,29.036493],[-103.404332,29.038874],[-103.405079,29.039577],[-103.408339,29.039738],[-103.410968,29.038842],[-103.411883,29.038126],[-103.415414,29.037881],[-103.417396,29.041061],[-103.418999,29.042324],[-103.423557,29.043487],[-103.427601,29.042164],[-103.432095,29.043356],[-103.432072,29.043944],[-103.430677,29.044938],[-103.431126,29.04599],[-103.429584,29.047006],[-103.428869,29.047918],[-103.428894,29.049455],[-103.429895,29.050337],[-103.433707,29.052198],[-103.435125,29.055216],[-103.435111,29.05561],[-103.433987,29.056899],[-103.434221,29.057287],[-103.435494,29.057829],[-103.438396,29.058186],[-103.439546,29.057542],[-103.441077,29.0579],[-103.442269,29.058532],[-103.446978,29.062334],[-103.449667,29.065092],[-103.450019,29.065734],[-103.450246,29.068457],[-103.450614,29.06892],[-103.450319,29.071172],[-103.449548,29.07219],[-103.44993,29.072714],[-103.454046,29.072294],[-103.459023,29.072704],[-103.461694,29.072604],[-103.462307,29.07211],[-103.462228,29.071425],[-103.459097,29.068174],[-103.459684,29.067048],[-103.460935,29.067388],[-103.462596,29.067302],[-103.465878,29.066646],[-103.467094,29.066079],[-103.468483,29.066003],[-103.470107,29.066194],[-103.47135,29.066727],[-103.472151,29.06771],[-103.472618,29.067794],[-103.47393,29.070315],[-103.471289,29.075064],[-103.470039,29.079182],[-103.469743,29.08107],[-103.469936,29.085317],[-103.470348,29.085738],[-103.471448,29.085878],[-103.476202,29.087812],[-103.475257,29.090315],[-103.475558,29.091003],[-103.476495,29.091671],[-103.476955,29.091732],[-103.477283,29.091276],[-103.478551,29.091253],[-103.480683,29.091697],[-103.483406,29.093496],[-103.486453,29.097109],[-103.4897,29.101891],[-103.492351,29.104729],[-103.493639,29.107953],[-103.494612,29.108419],[-103.497562,29.108245],[-103.498762,29.108539],[-103.500165,29.110386],[-103.499763,29.114778],[-103.500377,29.116196],[-103.500934,29.116536],[-103.503233,29.115732],[-103.505884,29.116048],[-103.507822,29.117048],[-103.508321,29.118418],[-103.510674,29.120374],[-103.512852,29.121255],[-103.515261,29.121317],[-103.516854,29.120279],[-103.51987,29.119676],[-103.521535,29.119996],[-103.523855,29.121247],[-103.523959,29.122794],[-103.523297,29.129033],[-103.523849,29.131681],[-103.523772,29.133079],[-103.523029,29.133596],[-103.522804,29.134646],[-103.523378,29.136021],[-103.524835,29.137123],[-103.527249,29.138337],[-103.528424,29.139474],[-103.531739,29.140543],[-103.535085,29.142795],[-103.538212,29.144133],[-103.539806,29.146224],[-103.542237,29.145869],[-103.544671,29.144837],[-103.546375,29.143807],[-103.547616,29.142394],[-103.548444,29.142382],[-103.550211,29.143639],[-103.55238,29.146202],[-103.552965,29.148656],[-103.552055,29.151563],[-103.550081,29.153613],[-103.550372,29.155512],[-103.551315,29.156668],[-103.553692,29.157996],[-103.554482,29.15774],[-103.556108,29.155989],[-103.55702,29.155451],[-103.561401,29.1553],[-103.565417,29.154163],[-103.566214,29.154772],[-103.568876,29.155316],[-103.571962,29.154113],[-103.573684,29.153823],[-103.576078,29.1514],[-103.577319,29.150986],[-103.578073,29.150126],[-103.580009,29.149524],[-103.582856,29.149389],[-103.584486,29.150013],[-103.587444,29.150391],[-103.5911,29.150472],[-103.592241,29.150069],[-103.594581,29.151331],[-103.596132,29.151701],[-103.597147,29.153888],[-103.598293,29.154483],[-103.600418,29.157227],[-103.600667,29.15796],[-103.603182,29.158097],[-103.606179,29.160275],[-103.608875,29.164799],[-103.612231,29.165369],[-103.618985,29.163261],[-103.62218,29.162954],[-103.624631,29.163261],[-103.628384,29.163067],[-103.630188,29.162102],[-103.631319,29.15978],[-103.633657,29.15858],[-103.63483,29.158821],[-103.63759,29.160531],[-103.63976,29.161202],[-103.640745,29.161142],[-103.646174,29.158996],[-103.647564,29.157103],[-103.649178,29.156529],[-103.650586,29.15648],[-103.651676,29.157206],[-103.651975,29.157907],[-103.651903,29.159331],[-103.651109,29.159864],[-103.65062,29.160824],[-103.651287,29.161978],[-103.65305,29.162823],[-103.653633,29.163417],[-103.655264,29.166413],[-103.656141,29.167389],[-103.655984,29.167902],[-103.656712,29.16936],[-103.659619,29.170569],[-103.661164,29.171005],[-103.664632,29.170937],[-103.66783,29.173145],[-103.669307,29.173652],[-103.673492,29.173247],[-103.67774,29.173883],[-103.682553,29.176275],[-103.68461,29.176062],[-103.68628,29.176347],[-103.687771,29.178108],[-103.688568,29.17857],[-103.690233,29.178408],[-103.693611,29.177217],[-103.698164,29.177473],[-103.700317,29.178434],[-103.700241,29.179362],[-103.700649,29.180346],[-103.702553,29.182566],[-103.703295,29.184041],[-103.705162,29.184968],[-103.706013,29.184846],[-103.707345,29.183713],[-103.708965,29.185259],[-103.711134,29.184677],[-103.711747,29.185239],[-103.712958,29.185222],[-103.714438,29.184272],[-103.71546,29.182076],[-103.715559,29.181102],[-103.716618,29.180591],[-103.718561,29.180826],[-103.71918,29.181395],[-103.720121,29.18431],[-103.721656,29.186636],[-103.722843,29.189167],[-103.724947,29.191986],[-103.726213,29.192581],[-103.728725,29.192885],[-103.72961,29.194638],[-103.729457,29.196745],[-103.729792,29.197428],[-103.730779,29.198273],[-103.733892,29.199676],[-103.737055,29.201861],[-103.739187,29.20411],[-103.741098,29.207713],[-103.742545,29.20901],[-103.742646,29.210583],[-103.742216,29.213515],[-103.742318,29.213927],[-103.743086,29.214445],[-103.743182,29.215082],[-103.741102,29.217573],[-103.740875,29.218785],[-103.740924,29.219424],[-103.742246,29.221694],[-103.743459,29.22212],[-103.747629,29.220171],[-103.752874,29.219486],[-103.756362,29.219937],[-103.757365,29.220668],[-103.757657,29.223098],[-103.754878,29.225013],[-103.754261,29.22689],[-103.755117,29.228725],[-103.757395,29.231176],[-103.758549,29.232939],[-103.760166,29.23352],[-103.762782,29.232748],[-103.768393,29.227578],[-103.768508,29.226673],[-103.76753,29.22583],[-103.767533,29.225089],[-103.768831,29.222896],[-103.769706,29.220224],[-103.771574,29.219348],[-103.775086,29.220136],[-103.776698,29.220054],[-103.777147,29.220509],[-103.777534,29.222994],[-103.777955,29.223806],[-103.779874,29.225923],[-103.780692,29.226518],[-103.781443,29.226591],[-103.782029,29.227264],[-103.780591,29.236185],[-103.78073,29.238034],[-103.781489,29.239035],[-103.781681,29.241278],[-103.780716,29.243822],[-103.776733,29.243273],[-103.776253,29.243465],[-103.775916,29.244112],[-103.776089,29.245319],[-103.775072,29.247954],[-103.775542,29.248947],[-103.778477,29.252039],[-103.778807,29.253468],[-103.778732,29.256131],[-103.779969,29.257697],[-103.783626,29.265324],[-103.788613,29.265379],[-103.790566,29.264048],[-103.790909,29.26341],[-103.793487,29.262214],[-103.796176,29.259486],[-103.799364,29.258437],[-103.806369,29.261089],[-103.806945,29.2619],[-103.806782,29.264043],[-103.808879,29.265433],[-103.809173,29.265939],[-103.807612,29.270159],[-103.809396,29.272713],[-103.810111,29.27305],[-103.812178,29.273084],[-103.813517,29.274032],[-103.816142,29.273129],[-103.820753,29.270527],[-103.822634,29.270495],[-103.826207,29.269203],[-103.829628,29.271313],[-103.832317,29.27143],[-103.832511,29.271819],[-103.833772,29.272455],[-103.835491,29.272687],[-103.836956,29.274169],[-103.837348,29.276139],[-103.836708,29.277225],[-103.837638,29.278252],[-103.8423,29.278514],[-103.843887,29.27952],[-103.845589,29.279891],[-103.846985,29.279538],[-103.849315,29.279853],[-103.854307,29.281472],[-103.857412,29.281661],[-103.859373,29.280442],[-103.861384,29.280025],[-103.863178,29.279197],[-103.863876,29.279755],[-103.864546,29.281315],[-103.865763,29.282155],[-103.868945,29.280648],[-103.870076,29.280684],[-103.872515,29.283116],[-103.88012,29.285149],[-103.884487,29.284698],[-103.885689,29.28349],[-103.885637,29.282536],[-103.885239,29.282074],[-103.885624,29.281296],[-103.887584,29.279494],[-103.889395,29.278824],[-103.891972,29.280286],[-103.892863,29.281142],[-103.893164,29.281938],[-103.895921,29.284027],[-103.8986,29.287074],[-103.899292,29.28741],[-103.902212,29.28742],[-103.902886,29.286956],[-103.904609,29.286773],[-103.908867,29.284674],[-103.912078,29.283744],[-103.918887,29.284844],[-103.919116,29.285506],[-103.91894,29.286278],[-103.91769,29.288213],[-103.918288,29.28982],[-103.919703,29.291111],[-103.922755,29.292473],[-103.923667,29.29356],[-103.92572,29.294372],[-103.930071,29.293604],[-103.933679,29.293486],[-103.937011,29.292712],[-103.943774,29.295099],[-103.946333,29.294969],[-103.949239,29.295485],[-103.950033,29.295347],[-103.950861,29.296563],[-103.952194,29.297616],[-103.95456,29.296713],[-103.956082,29.297457],[-103.958146,29.297573],[-103.961152,29.298684],[-103.963476,29.298334],[-103.964806,29.298488],[-103.965995,29.298834],[-103.967648,29.300029],[-103.968397,29.29974],[-103.969694,29.297397],[-103.970834,29.296556],[-103.972294,29.295996],[-103.975808,29.296249],[-103.978094,29.297373],[-103.983342,29.299175],[-103.985491,29.301211],[-103.987869,29.301814],[-103.991659,29.303807],[-103.992867,29.304255],[-104.000678,29.305337],[-104.003356,29.306965],[-104.008177,29.308132],[-104.009118,29.30894],[-104.010806,29.309349],[-104.016238,29.312139],[-104.019398,29.311851],[-104.020218,29.312048],[-104.02746,29.315567],[-104.02873,29.315796],[-104.030258,29.3171],[-104.031571,29.317159],[-104.03434,29.318689],[-104.037497,29.319707],[-104.038307,29.32025],[-104.03919,29.321756],[-104.041354,29.32269],[-104.045958,29.325611],[-104.047069,29.325836],[-104.049672,29.327384],[-104.051147,29.327763],[-104.055165,29.330442],[-104.056691,29.333265],[-104.056141,29.336443],[-104.055523,29.337021],[-104.0561,29.337727],[-104.05936,29.338194],[-104.06219,29.339314],[-104.063717,29.34055],[-104.066746,29.341005],[-104.068873,29.342308],[-104.069302,29.34335],[-104.071222,29.344649],[-104.072332,29.34611],[-104.073532,29.346557],[-104.074428,29.346331],[-104.074774,29.345658],[-104.075779,29.345136],[-104.077902,29.345278],[-104.078839,29.345653],[-104.080379,29.345375],[-104.082256,29.346064],[-104.086172,29.350431],[-104.088109,29.351309],[-104.089244,29.352484],[-104.090909,29.353528],[-104.0909,29.353971],[-104.089487,29.355929],[-104.090092,29.35672],[-104.0895,29.357989],[-104.090025,29.359221],[-104.091208,29.359913],[-104.092264,29.359904],[-104.093671,29.360372],[-104.094475,29.361179],[-104.097754,29.361642],[-104.098207,29.363147],[-104.09774,29.365185],[-104.098201,29.366547],[-104.099495,29.367242],[-104.100925,29.367465],[-104.102991,29.370312],[-104.106579,29.373313],[-104.10956,29.374085],[-104.113371,29.373623],[-104.11511,29.372896],[-104.117715,29.370661],[-104.121318,29.371423],[-104.121707,29.372661],[-104.121741,29.377445],[-104.122289,29.379352],[-104.122941,29.380306],[-104.123215,29.380484],[-104.125974,29.379447],[-104.126923,29.378358],[-104.127979,29.37825],[-104.129447,29.378589],[-104.130758,29.379259],[-104.131422,29.379979],[-104.130909,29.381327],[-104.131383,29.382346],[-104.133266,29.383677],[-104.134919,29.38422],[-104.136329,29.383911],[-104.137809,29.382655],[-104.137918,29.381416],[-104.137285,29.379933],[-104.138199,29.378564],[-104.141158,29.377823],[-104.142158,29.378607],[-104.143202,29.382424],[-104.143152,29.383322],[-104.142481,29.384593],[-104.142424,29.386098],[-104.143339,29.388268],[-104.143787,29.388371],[-104.144455,29.387956],[-104.146438,29.385425],[-104.148373,29.385101],[-104.150158,29.385897],[-104.151519,29.387738],[-104.152045,29.388911],[-104.15131,29.390509],[-104.151568,29.391542],[-104.155195,29.394569],[-104.155981,29.394609],[-104.156569,29.393936],[-104.156343,29.39081],[-104.157393,29.390267],[-104.160378,29.389828],[-104.161553,29.390411],[-104.16232,29.391632],[-104.165004,29.392722],[-104.167443,29.394744],[-104.16843,29.396489],[-104.166697,29.398621],[-104.165376,29.399052],[-104.164691,29.399645],[-104.164512,29.400955],[-104.164771,29.401517],[-104.166089,29.402038],[-104.167484,29.401514],[-104.168508,29.401507],[-104.170364,29.402646],[-104.171133,29.40378],[-104.171068,29.404351],[-104.170257,29.406387],[-104.169391,29.407332],[-104.169674,29.408161],[-104.170605,29.408914],[-104.173757,29.410108],[-104.175938,29.40928],[-104.17755,29.409553],[-104.179438,29.4104],[-104.180136,29.411528],[-104.180058,29.413176],[-104.180407,29.41447],[-104.182306,29.415105],[-104.183889,29.4172],[-104.182824,29.421429],[-104.181504,29.421613],[-104.180901,29.422575],[-104.180792,29.425861],[-104.181065,29.42646],[-104.182306,29.427531],[-104.186114,29.428298],[-104.188881,29.432115],[-104.192924,29.43527],[-104.193603,29.436121],[-104.192823,29.439248],[-104.193109,29.440295],[-104.194142,29.441678],[-104.197548,29.442773],[-104.2006,29.444793],[-104.203656,29.445534],[-104.204189,29.446422],[-104.206225,29.446803],[-104.207846,29.448128],[-104.210077,29.448843],[-104.211166,29.449755],[-104.212023,29.451726],[-104.212899,29.452582],[-104.215641,29.454081],[-104.217705,29.456559],[-104.218262,29.458175],[-104.213583,29.461528],[-104.212433,29.464928],[-104.212914,29.467508],[-104.210808,29.471753],[-104.210954,29.476918],[-104.208923,29.480732],[-104.209153,29.481468],[-104.210044,29.482243],[-104.21169,29.482842],[-104.2129,29.484087],[-104.214147,29.484638],[-104.215529,29.484763],[-104.219669,29.48317],[-104.221539,29.483046],[-104.22347,29.482285],[-104.22524,29.482036],[-104.226724,29.48114],[-104.227521,29.480022],[-104.230698,29.478669],[-104.23221,29.481284],[-104.233523,29.485628],[-104.233904,29.487909],[-104.233219,29.491339],[-104.23382,29.493654],[-104.235005,29.495777],[-104.237134,29.497556],[-104.237968,29.497844],[-104.240317,29.49739],[-104.244623,29.500112],[-104.247178,29.502781],[-104.249505,29.504404],[-104.254295,29.506711],[-104.258305,29.506104],[-104.260659,29.506671],[-104.261441,29.507409],[-104.262034,29.509002],[-104.262278,29.510204],[-104.261301,29.510958],[-104.261243,29.511548],[-104.262175,29.513501],[-104.2657,29.514181],[-104.26885,29.513582],[-104.270482,29.514567],[-104.270773,29.515564],[-104.272244,29.516349],[-104.274246,29.516331],[-104.276481,29.517013],[-104.27773,29.516919],[-104.282072,29.517492],[-104.284827,29.518892],[-104.286621,29.518469],[-104.287098,29.51882],[-104.291929,29.519455],[-104.292436,29.519776],[-104.292703,29.520449],[-104.292874,29.521612],[-104.292571,29.52168],[-104.292895,29.52229],[-104.294195,29.523209],[-104.296789,29.524128],[-104.302801,29.524256],[-104.309184,29.523268],[-104.311475,29.523202],[-104.311696,29.524423],[-104.310631,29.526574],[-104.310946,29.528792],[-104.313114,29.531651],[-104.315476,29.532754],[-104.317925,29.532356],[-104.320896,29.529539],[-104.32051,29.527066],[-104.320618,29.524068],[-104.321486,29.521862],[-104.32248,29.521901],[-104.324095,29.522935],[-104.326598,29.523282],[-104.330727,29.522656],[-104.332533,29.521319],[-104.332769,29.520381],[-104.334553,29.519412],[-104.336221,29.519333],[-104.338201,29.520182],[-104.347405,29.526236],[-104.350243,29.527677],[-104.352684,29.529691],[-104.357532,29.5324],[-104.362498,29.535885],[-104.370421,29.543141],[-104.373135,29.5438],[-104.375044,29.543748],[-104.378932,29.542103],[-104.380531,29.542637],[-104.381563,29.543369],[-104.386143,29.548175],[-104.392374,29.553958],[-104.394268,29.55518],[-104.394913,29.556527],[-104.39391,29.558432],[-104.393893,29.559694],[-104.394905,29.561206],[-104.395859,29.564045],[-104.397269,29.566423],[-104.39744,29.567391],[-104.396925,29.568369],[-104.396928,29.5695],[-104.397543,29.570749],[-104.398921,29.571897],[-104.404747,29.575677],[-104.418129,29.583272],[-104.429355,29.590244],[-104.452025,29.603525],[-104.454848,29.605808],[-104.455262,29.607083],[-104.456369,29.608734],[-104.457436,29.609213],[-104.460726,29.608948],[-104.462952,29.609586],[-104.463819,29.61024],[-104.464867,29.61008],[-104.465508,29.609049],[-104.466549,29.609216],[-104.467582,29.611236],[-104.467591,29.612938],[-104.466666,29.614624],[-104.465816,29.614903],[-104.46543,29.615525],[-104.465619,29.617118],[-104.465397,29.618209],[-104.466387,29.618934],[-104.468495,29.619067],[-104.471787,29.61836],[-104.472807,29.617732],[-104.473404,29.617887],[-104.474142,29.619472],[-104.47415,29.621494],[-104.474752,29.623626],[-104.476049,29.624866],[-104.47647,29.626011],[-104.476428,29.626756],[-104.47581,29.62737],[-104.475991,29.627979],[-104.477326,29.628619],[-104.483292,29.627631],[-104.486141,29.628658],[-104.487391,29.630918],[-104.486961,29.63298],[-104.487179,29.633691],[-104.487822,29.634024],[-104.49006,29.633939],[-104.491696,29.634284],[-104.494934,29.633826],[-104.495303,29.634971],[-104.49675,29.635741],[-104.496752,29.637819],[-104.496266,29.638296],[-104.496231,29.639049],[-104.498003,29.639695],[-104.501832,29.638425],[-104.502646,29.637271],[-104.503199,29.637057],[-104.504055,29.637025],[-104.505123,29.63757],[-104.506923,29.637011],[-104.507152,29.63667],[-104.50692,29.635955],[-104.505749,29.634722],[-104.505633,29.634044],[-104.507124,29.632349],[-104.507659,29.632278],[-104.508462,29.632697],[-104.510223,29.635223],[-104.512756,29.63703],[-104.514031,29.63863],[-104.513982,29.639762],[-104.515589,29.640282],[-104.515891,29.640963],[-104.51532,29.641582],[-104.513934,29.640842],[-104.513194,29.640906],[-104.512447,29.641873],[-104.512893,29.642612],[-104.512636,29.643126],[-104.511663,29.643571],[-104.510101,29.643295],[-104.509878,29.644213],[-104.510684,29.645492],[-104.512001,29.645637],[-104.51243,29.646717],[-104.513745,29.646456],[-104.515423,29.647216],[-104.517107,29.647066],[-104.517597,29.647391],[-104.518466,29.64915],[-104.517059,29.650193],[-104.517245,29.651809],[-104.516594,29.652102],[-104.516581,29.65242],[-104.517203,29.653203],[-104.518476,29.653492],[-104.519408,29.654124],[-104.519964,29.655353],[-104.52189,29.656976],[-104.522269,29.658089],[-104.524112,29.658582],[-104.524682,29.659236],[-104.525263,29.661987],[-104.524785,29.665043],[-104.52498,29.665974],[-104.525686,29.667053],[-104.525227,29.667412],[-104.525397,29.667843],[-104.526176,29.668021],[-104.527766,29.667337],[-104.528224,29.667422],[-104.528875,29.668413],[-104.528427,29.669452],[-104.528614,29.669792],[-104.530116,29.670632],[-104.531202,29.670775],[-104.532283,29.670419],[-104.533386,29.668673],[-104.532599,29.667777],[-104.532656,29.667178],[-104.533616,29.666349],[-104.535575,29.666553],[-104.536415,29.667777],[-104.535184,29.672254],[-104.535864,29.674354],[-104.53887,29.677849],[-104.540337,29.678919],[-104.541277,29.679123],[-104.542387,29.679939],[-104.542604,29.680441],[-104.54388,29.680375],[-104.544099,29.680693],[-104.543842,29.682182],[-104.542273,29.684086],[-104.540617,29.684831],[-104.537724,29.684495],[-104.534299,29.685852],[-104.530824,29.688393],[-104.530119,29.690027],[-104.53021,29.690464],[-104.530624,29.691072],[-104.531709,29.69172],[-104.534217,29.692623],[-104.536095,29.692997],[-104.537053,29.692861],[-104.543832,29.696299],[-104.544181,29.697114],[-104.543561,29.697512],[-104.543607,29.697832],[-104.545123,29.69829],[-104.545932,29.699909],[-104.54453,29.70177],[-104.543382,29.704039],[-104.543829,29.705103],[-104.545075,29.706339],[-104.545221,29.707363],[-104.546163,29.708475],[-104.54625,29.708999],[-104.545761,29.709897],[-104.544023,29.710311],[-104.543909,29.711189],[-104.544559,29.712742],[-104.545451,29.713758],[-104.54672,29.713752],[-104.547535,29.714252],[-104.545009,29.715247],[-104.544881,29.716098],[-104.545599,29.717043],[-104.546358,29.717122],[-104.547143,29.717663],[-104.547662,29.717627],[-104.549997,29.71617],[-104.55167,29.716413],[-104.552287,29.717342],[-104.551344,29.719204],[-104.549998,29.719425],[-104.549159,29.720175],[-104.54912,29.720773],[-104.552155,29.722754],[-104.552448,29.723707],[-104.552041,29.725074],[-104.549549,29.726569],[-104.548905,29.72746],[-104.54892,29.728723],[-104.549546,29.729745],[-104.549326,29.730571],[-104.550063,29.731269],[-104.552666,29.731941],[-104.5536,29.731184],[-104.554129,29.73112],[-104.555149,29.731191],[-104.556248,29.731811],[-104.556507,29.733132],[-104.555668,29.734584],[-104.556393,29.735488],[-104.558611,29.734793],[-104.560435,29.735188],[-104.560246,29.736707],[-104.558934,29.73806],[-104.556416,29.737768],[-104.555716,29.738078],[-104.555368,29.73779],[-104.553997,29.738707],[-104.552562,29.738368],[-104.551154,29.738847],[-104.550955,29.738145],[-104.550327,29.738008],[-104.550058,29.738234],[-104.550382,29.739614],[-104.549848,29.740895],[-104.550401,29.741194],[-104.551559,29.740653],[-104.551339,29.74129],[-104.551859,29.742062],[-104.553877,29.743054],[-104.55439,29.742774],[-104.554482,29.742102],[-104.55539,29.741871],[-104.556698,29.744358],[-104.556624,29.744888],[-104.557144,29.745474],[-104.557932,29.745784],[-104.559343,29.745688],[-104.560036,29.74721],[-104.56195,29.747538],[-104.565165,29.74989],[-104.568838,29.751465],[-104.569941,29.752597],[-104.570182,29.754276],[-104.569299,29.756111],[-104.569614,29.757089],[-104.569011,29.757414],[-104.568481,29.756821],[-104.567887,29.756697],[-104.567118,29.757062],[-104.566577,29.75827],[-104.565661,29.759208],[-104.565942,29.759501],[-104.566817,29.759448],[-104.566892,29.760092],[-104.565732,29.76028],[-104.563883,29.761283],[-104.564194,29.761747],[-104.565164,29.761442],[-104.565812,29.761859],[-104.566246,29.762853],[-104.566158,29.765131],[-104.566513,29.765451],[-104.568207,29.765744],[-104.568517,29.766177],[-104.567841,29.767389],[-104.566468,29.768323],[-104.565573,29.769381],[-104.565929,29.771468],[-104.568451,29.773842],[-104.569089,29.775457],[-104.5703,29.77692],[-104.570473,29.778342],[-104.571446,29.778868],[-104.572252,29.778828],[-104.572538,29.779796],[-104.573218,29.78021],[-104.573668,29.780159],[-104.574082,29.779508],[-104.57441,29.779601],[-104.57426,29.781087],[-104.574714,29.781788],[-104.577197,29.782091],[-104.578921,29.782835],[-104.57899,29.784724],[-104.578603,29.785293],[-104.57895,29.786842],[-104.578234,29.787779],[-104.579926,29.788881],[-104.579281,29.789891],[-104.579874,29.790787],[-104.581744,29.791757],[-104.582463,29.792501],[-104.58227,29.793356],[-104.581402,29.793805],[-104.581506,29.795112],[-104.585193,29.796232],[-104.587602,29.796121],[-104.589,29.795662],[-104.589352,29.795871],[-104.589586,29.796915],[-104.590915,29.798115],[-104.59047,29.799673],[-104.588664,29.799783],[-104.587503,29.80019],[-104.586443,29.800871],[-104.586014,29.802035],[-104.58632,29.803165],[-104.58927,29.806156],[-104.590138,29.808108],[-104.591347,29.809809],[-104.59255,29.810453],[-104.59306,29.80977],[-104.593978,29.809437],[-104.59395,29.808213],[-104.59336,29.808173],[-104.59248,29.808931],[-104.591642,29.808477],[-104.591645,29.808103],[-104.592264,29.807712],[-104.591886,29.806888],[-104.592403,29.806178],[-104.593412,29.806012],[-104.593884,29.805318],[-104.594928,29.805331],[-104.595638,29.806324],[-104.5963,29.8082],[-104.599193,29.811392],[-104.59995,29.813033],[-104.600436,29.815133],[-104.601168,29.816183],[-104.603324,29.817322],[-104.603642,29.81716],[-104.603957,29.816063],[-104.605076,29.815998],[-104.606945,29.817099],[-104.607245,29.819365],[-104.607755,29.819384],[-104.608755,29.818584],[-104.609642,29.818851],[-104.610082,29.819359],[-104.610414,29.820582],[-104.609575,29.822327],[-104.609526,29.823813],[-104.608423,29.827001],[-104.608486,29.827949],[-104.609702,29.828363],[-104.609379,29.827427],[-104.610032,29.827056],[-104.61044,29.827502],[-104.612842,29.82734],[-104.613844,29.828004],[-104.614031,29.829142],[-104.614775,29.829799],[-104.617616,29.829424],[-104.619637,29.830217],[-104.620256,29.833082],[-104.615271,29.833445],[-104.613939,29.833935],[-104.610499,29.836275],[-104.610706,29.837832],[-104.609956,29.838222],[-104.610492,29.83872],[-104.610193,29.839216],[-104.609484,29.839144],[-104.609445,29.839754],[-104.610968,29.841202],[-104.610746,29.84243],[-104.612345,29.842497],[-104.613609,29.844196],[-104.614019,29.845087],[-104.61389,29.846109],[-104.615371,29.846569],[-104.61612,29.846393],[-104.617796,29.844733],[-104.61911,29.844502],[-104.619579,29.843648],[-104.619028,29.842791],[-104.619488,29.841722],[-104.620173,29.84222],[-104.620093,29.842853],[-104.620523,29.843238],[-104.621098,29.842894],[-104.621218,29.842064],[-104.621912,29.841843],[-104.62475,29.842783],[-104.624333,29.844979],[-104.623579,29.845712],[-104.622017,29.846431],[-104.621325,29.847527],[-104.621869,29.848496],[-104.621585,29.849565],[-104.622623,29.849866],[-104.623102,29.850822],[-104.62493,29.851243],[-104.626844,29.850964],[-104.629271,29.852201],[-104.630138,29.853931],[-104.630519,29.856397],[-104.629948,29.860998],[-104.630125,29.86452],[-104.631303,29.865438],[-104.63165,29.867752],[-104.633421,29.870758],[-104.634347,29.871464],[-104.637039,29.872503],[-104.637239,29.873964],[-104.639493,29.873539],[-104.641084,29.873821],[-104.641841,29.874543],[-104.642003,29.875665],[-104.642528,29.876399],[-104.646112,29.878542],[-104.64627,29.879077],[-104.645675,29.881171],[-104.64652,29.883537],[-104.647182,29.883578],[-104.647673,29.884257],[-104.65074,29.886444],[-104.650941,29.887661],[-104.652639,29.888937],[-104.652446,29.889491],[-104.651105,29.890318],[-104.65056,29.891127],[-104.651662,29.892384],[-104.653333,29.892295],[-104.653348,29.890769],[-104.655852,29.889211],[-104.656784,29.889372],[-104.658257,29.890798],[-104.658551,29.892179],[-104.657836,29.895297],[-104.659048,29.89868],[-104.659002,29.899087],[-104.658262,29.899702],[-104.659008,29.901191],[-104.658079,29.902104],[-104.656153,29.902159],[-104.655157,29.902808],[-104.654783,29.903761],[-104.655086,29.905398],[-104.656549,29.90608],[-104.657501,29.905909],[-104.659202,29.90496],[-104.662299,29.905388],[-104.662618,29.905168],[-104.662671,29.90454],[-104.661686,29.903123],[-104.661824,29.902188],[-104.663986,29.901114],[-104.665589,29.901708],[-104.666094,29.902404],[-104.666197,29.903257],[-104.665893,29.905351],[-104.666118,29.906731],[-104.665542,29.908271],[-104.665606,29.908879],[-104.666622,29.909276],[-104.666968,29.910049],[-104.668569,29.911245],[-104.670796,29.911865],[-104.673504,29.910809],[-104.67453,29.91083],[-104.677167,29.913035],[-104.677293,29.914083],[-104.676968,29.914846],[-104.676406,29.914907],[-104.675861,29.915537],[-104.677436,29.91737],[-104.677208,29.917903],[-104.677455,29.918703],[-104.679236,29.920183],[-104.679921,29.921176],[-104.679741,29.924679],[-104.678798,29.925649],[-104.678501,29.926622],[-104.679851,29.926906],[-104.679982,29.927777],[-104.680535,29.928281],[-104.682429,29.92835],[-104.683272,29.929107],[-104.682877,29.930574],[-104.683298,29.931559],[-104.68264,29.931766],[-104.681719,29.930505],[-104.680472,29.930404],[-104.679467,29.931732],[-104.6793,29.932879],[-104.679863,29.933686],[-104.681746,29.934203],[-104.682628,29.935381],[-104.682548,29.936038],[-104.681275,29.937962],[-104.682345,29.939174],[-104.682318,29.939691],[-104.681181,29.94021],[-104.680465,29.939692],[-104.680231,29.938664],[-104.678949,29.938131],[-104.678339,29.938619],[-104.67779,29.940432],[-104.678631,29.941781],[-104.678044,29.942755],[-104.677971,29.943602],[-104.680783,29.945732],[-104.680364,29.946471],[-104.680735,29.947326],[-104.67938,29.947618],[-104.67889,29.948145],[-104.678668,29.949709],[-104.67711,29.9503],[-104.677232,29.95074],[-104.678226,29.951117],[-104.678168,29.951691],[-104.676397,29.952033],[-104.675152,29.950759],[-104.674288,29.950795],[-104.674715,29.952742],[-104.673502,29.953999],[-104.67318,29.954969],[-104.673435,29.956001],[-104.674174,29.956734],[-104.676964,29.956056],[-104.679036,29.956022],[-104.680058,29.955414],[-104.68093,29.955692],[-104.68017,29.956648],[-104.680729,29.957124],[-104.681781,29.9571],[-104.683747,29.956059],[-104.685049,29.956335],[-104.685253,29.956731],[-104.683553,29.960734],[-104.683086,29.963885],[-104.683237,29.966586],[-104.682134,29.967585],[-104.682213,29.968392],[-104.681853,29.969067],[-104.682056,29.969512],[-104.683163,29.969315],[-104.683956,29.970212],[-104.685326,29.970293],[-104.685503,29.970843],[-104.684345,29.971673],[-104.683514,29.971316],[-104.682387,29.97185],[-104.681996,29.973346],[-104.680106,29.974224],[-104.679518,29.975307],[-104.680152,29.977003],[-104.680663,29.977201],[-104.68265,29.976978],[-104.685334,29.974724],[-104.687638,29.973922],[-104.691737,29.973986],[-104.692012,29.975022],[-104.693127,29.97553],[-104.69308,29.975854],[-104.691528,29.976791],[-104.690483,29.978431],[-104.690406,29.979203],[-104.688353,29.98005],[-104.688826,29.982133],[-104.688197,29.983773],[-104.688272,29.984721],[-104.687919,29.985015],[-104.686393,29.985169],[-104.685736,29.987142],[-104.68567,29.990451],[-104.690314,29.990846],[-104.691552,29.9913],[-104.692787,29.992536],[-104.693182,29.993525],[-104.692864,29.994],[-104.689087,29.993931],[-104.688139,29.994573],[-104.687533,29.995673],[-104.687717,29.997598],[-104.688481,29.998768],[-104.688639,29.999662],[-104.689508,29.999868],[-104.689825,30.000854],[-104.688798,30.001748],[-104.688798,30.002229],[-104.690088,30.003398],[-104.690615,30.003398],[-104.692063,30.002183],[-104.691194,30.001106],[-104.691906,30.000781],[-104.693637,30.001376],[-104.694104,30.002516],[-104.693364,30.004294],[-104.693207,30.005826],[-104.693851,30.006984],[-104.693694,30.00774],[-104.693096,30.008172],[-104.692198,30.008276],[-104.691922,30.008792],[-104.690475,30.008229],[-104.690724,30.009571],[-104.689564,30.010455],[-104.689652,30.011343],[-104.690277,30.01215],[-104.690463,30.013497],[-104.689581,30.014457],[-104.689549,30.015105],[-104.692796,30.017808],[-104.693254,30.019128],[-104.694126,30.019433],[-104.697604,30.019443],[-104.700653,30.021131],[-104.702066,30.02123],[-104.703818,30.023417],[-104.703899,30.025808],[-104.702203,30.027701],[-104.702493,30.02899],[-104.702049,30.03023],[-104.702112,30.031028],[-104.700331,30.034039],[-104.7009,30.035643],[-104.699412,30.036016],[-104.6979,30.036994],[-104.696046,30.037125],[-104.695675,30.037664],[-104.696748,30.039006],[-104.697681,30.041242],[-104.698457,30.041994],[-104.699733,30.042532],[-104.705111,30.048623],[-104.706581,30.048842],[-104.707264,30.049867],[-104.705247,30.053781],[-104.703629,30.055055],[-104.704791,30.058325],[-104.703821,30.059351],[-104.702468,30.05979],[-104.702213,30.06019],[-104.703553,30.062963],[-104.703662,30.064196],[-104.702169,30.064972],[-104.699495,30.064773],[-104.697541,30.065243],[-104.695477,30.066676],[-104.693915,30.068721],[-104.693849,30.069458],[-104.691027,30.070496],[-104.693223,30.071694],[-104.693612,30.073219],[-104.693159,30.074015],[-104.690507,30.07415],[-104.687986,30.073771],[-104.687368,30.075685],[-104.6866,30.076581],[-104.687072,30.076782],[-104.687963,30.075871],[-104.689545,30.075649],[-104.690404,30.076135],[-104.690772,30.076727],[-104.690772,30.078015],[-104.690078,30.078929],[-104.687303,30.080666],[-104.685829,30.082063],[-104.685857,30.082581],[-104.686634,30.08325],[-104.686676,30.08395],[-104.68593,30.084859],[-104.684965,30.085301],[-104.68621,30.08597],[-104.686422,30.087177],[-104.6873,30.0875],[-104.687801,30.087469],[-104.68794,30.086843],[-104.686971,30.08664],[-104.687124,30.086014],[-104.687977,30.085911],[-104.688656,30.085336],[-104.689223,30.085384],[-104.689425,30.085869],[-104.688951,30.087487],[-104.689868,30.089342],[-104.689537,30.0902],[-104.687853,30.090407],[-104.687066,30.090835],[-104.685535,30.093209],[-104.685876,30.09524],[-104.685033,30.097694],[-104.685068,30.099849],[-104.685552,30.099988],[-104.686535,30.099517],[-104.686575,30.097946],[-104.687282,30.097019],[-104.688057,30.096869],[-104.687921,30.095657],[-104.688951,30.095259],[-104.69046,30.096278],[-104.691531,30.095901],[-104.692153,30.096084],[-104.692521,30.098062],[-104.692392,30.099378],[-104.694404,30.101979],[-104.692896,30.104023],[-104.692497,30.106359],[-104.691798,30.1072],[-104.691742,30.108725],[-104.691285,30.108783],[-104.689954,30.107808],[-104.690644,30.10699],[-104.690254,30.106308],[-104.687131,30.105867],[-104.686358,30.106373],[-104.685632,30.107855],[-104.685468,30.110032],[-104.685703,30.11059],[-104.686859,30.111036],[-104.689835,30.111473],[-104.691574,30.111222],[-104.691867,30.112256],[-104.691382,30.113049],[-104.691801,30.113512],[-104.692093,30.114991],[-104.691302,30.116506],[-104.690817,30.11651],[-104.690484,30.115756],[-104.689859,30.11598],[-104.689947,30.117021],[-104.690985,30.117888],[-104.692172,30.11774],[-104.693027,30.118353],[-104.693457,30.118189],[-104.693536,30.117098],[-104.693825,30.116884],[-104.694319,30.116986],[-104.695078,30.117811],[-104.695157,30.11894],[-104.694264,30.119981],[-104.693902,30.12159],[-104.694824,30.12456],[-104.695683,30.125613],[-104.695217,30.130053],[-104.695312,30.132282],[-104.696706,30.134457],[-104.696146,30.135128],[-104.695366,30.13441],[-104.694603,30.134223],[-104.694253,30.134688],[-104.694343,30.135752],[-104.693033,30.135451],[-104.692428,30.136848],[-104.692399,30.138406],[-104.6919,30.138852],[-104.690969,30.139069],[-104.689619,30.137622],[-104.689069,30.137724],[-104.689043,30.13986],[-104.689609,30.140372],[-104.689628,30.14094],[-104.688323,30.141788],[-104.686287,30.141457],[-104.686538,30.143297],[-104.685728,30.143707],[-104.685312,30.144733],[-104.685352,30.14528],[-104.68593,30.1457],[-104.687674,30.145298],[-104.689326,30.145635],[-104.689607,30.146571],[-104.688505,30.146868],[-104.688248,30.147371],[-104.688633,30.147996],[-104.689836,30.148624],[-104.690113,30.149226],[-104.689909,30.14986],[-104.687442,30.150878],[-104.686885,30.152139],[-104.687044,30.152743],[-104.689051,30.153421],[-104.689563,30.154269],[-104.687529,30.159552],[-104.687387,30.161571],[-104.687848,30.16418],[-104.688531,30.165666],[-104.688376,30.166822],[-104.687273,30.168283],[-104.686782,30.169618],[-104.686725,30.172403],[-104.686332,30.173281],[-104.687149,30.17557],[-104.687978,30.17639],[-104.687076,30.179342],[-104.688741,30.18091],[-104.691512,30.184627],[-104.692691,30.187092],[-104.693147,30.18926],[-104.695912,30.190159],[-104.697138,30.191568],[-104.697196,30.192233],[-104.696117,30.19557],[-104.697041,30.1978],[-104.699,30.198757],[-104.699808,30.198782],[-104.700404,30.203591],[-104.700327,30.205303],[-104.701928,30.206383],[-104.704122,30.206806],[-104.705066,30.208381],[-104.703766,30.210445],[-104.703888,30.210989],[-104.702471,30.21165],[-104.702475,30.212779],[-104.70526,30.216933],[-104.707949,30.218801],[-104.709415,30.220772],[-104.710164,30.221078],[-104.711269,30.223083],[-104.711092,30.224338],[-104.7079,30.226231],[-104.706078,30.233835],[-104.706255,30.234812],[-104.706699,30.235258],[-104.708285,30.235492],[-104.713195,30.237632],[-104.714157,30.240363],[-104.714921,30.241293],[-104.716303,30.241892],[-104.717348,30.243786],[-104.718554,30.244958],[-104.71895,30.247086],[-104.721274,30.247671],[-104.723999,30.249619],[-104.724509,30.250414],[-104.724474,30.251231],[-104.723877,30.251904],[-104.724146,30.253046],[-104.727516,30.254438],[-104.72974,30.258497],[-104.732117,30.259882],[-104.733722,30.261399],[-104.734788,30.261693],[-104.736837,30.261635],[-104.737501,30.261285],[-104.736826,30.259648],[-104.737511,30.25842],[-104.736523,30.257917],[-104.735988,30.257249],[-104.736011,30.256602],[-104.736645,30.255905],[-104.737871,30.256245],[-104.739637,30.258037],[-104.740392,30.259582],[-104.745505,30.260452],[-104.746872,30.261208],[-104.749012,30.26107],[-104.750712,30.262229],[-104.750878,30.26309],[-104.751632,30.263853],[-104.751586,30.264419],[-104.74958,30.266972],[-104.748607,30.27166],[-104.747858,30.273159],[-104.748593,30.274407],[-104.748957,30.274279],[-104.748814,30.272994],[-104.750094,30.272366],[-104.750768,30.271543],[-104.751349,30.271718],[-104.751472,30.272117],[-104.75108,30.272697],[-104.751097,30.273881],[-104.752057,30.273937],[-104.752746,30.273406],[-104.753229,30.273555],[-104.753862,30.27289],[-104.754111,30.271807],[-104.754725,30.271741],[-104.756249,30.27258],[-104.756241,30.273647],[-104.75678,30.274316],[-104.757184,30.274343],[-104.757994,30.273879],[-104.756915,30.272773],[-104.757194,30.271876],[-104.758479,30.271393],[-104.75899,30.271732],[-104.760166,30.271666],[-104.760534,30.271983],[-104.760456,30.272794],[-104.759673,30.27387],[-104.760076,30.274359],[-104.760607,30.27461],[-104.762509,30.274278],[-104.763176,30.274836],[-104.76298,30.275287],[-104.761332,30.276319],[-104.760419,30.277325],[-104.758275,30.281158],[-104.757893,30.28337],[-104.758139,30.286412],[-104.759209,30.288255],[-104.75958,30.293404],[-104.760939,30.298114],[-104.761288,30.300611],[-104.763018,30.301827],[-104.764088,30.303082],[-104.764888,30.303387],[-104.766158,30.303077],[-104.767091,30.303713],[-104.76669,30.306],[-104.768884,30.304446],[-104.770424,30.303688],[-104.771502,30.303578],[-104.772645,30.302691],[-104.773466,30.302786],[-104.775081,30.304163],[-104.775908,30.304471],[-104.777191,30.304273],[-104.778409,30.303371],[-104.779318,30.303269],[-104.779633,30.303756],[-104.779631,30.305731],[-104.77685,30.307384],[-104.776427,30.3089],[-104.776807,30.3103],[-104.777599,30.311104],[-104.77874,30.311628],[-104.779182,30.312873],[-104.782824,30.316051],[-104.783921,30.316475],[-104.786221,30.316314],[-104.788494,30.317893],[-104.789306,30.318979],[-104.788802,30.321843],[-104.790978,30.321905],[-104.791485,30.322286],[-104.791107,30.324068],[-104.791399,30.325518],[-104.794797,30.32696],[-104.797444,30.330437],[-104.802987,30.331086],[-104.805748,30.332763],[-104.807917,30.333314],[-104.809409,30.333431],[-104.810299,30.332838],[-104.811578,30.332811],[-104.811854,30.333703],[-104.810933,30.335499],[-104.810876,30.337853],[-104.810096,30.339498],[-104.809995,30.341511],[-104.814041,30.343893],[-104.81571,30.343981],[-104.818756,30.347527],[-104.819104,30.347395],[-104.819196,30.346933],[-104.819868,30.34686],[-104.821201,30.348907],[-104.822291,30.349663],[-104.822581,30.350624],[-104.822595,30.351267],[-104.821755,30.351861],[-104.818401,30.351865],[-104.815685,30.352751],[-104.814131,30.353691],[-104.814215,30.357416],[-104.813879,30.359896],[-104.811655,30.361283],[-104.810993,30.362472],[-104.811355,30.366701],[-104.812885,30.366905],[-104.814665,30.366335],[-104.815301,30.36583],[-104.816171,30.365864],[-104.819155,30.367769],[-104.819674,30.368722],[-104.819231,30.370657],[-104.818596,30.371077],[-104.818205,30.372027],[-104.816784,30.372724],[-104.81616,30.37375],[-104.816423,30.375187],[-104.817602,30.375746],[-104.820057,30.374642],[-104.825694,30.37391],[-104.827919,30.373049],[-104.829478,30.373262],[-104.830564,30.372853],[-104.834318,30.373604],[-104.837438,30.373847],[-104.838646,30.375854],[-104.839384,30.376407],[-104.841205,30.377081],[-104.84263,30.378096],[-104.845613,30.379209],[-104.846324,30.380176],[-104.846584,30.381209],[-104.848505,30.383579],[-104.850247,30.384366],[-104.853814,30.385321],[-104.859296,30.390253],[-104.859397,30.391125],[-104.85735,30.393522],[-104.856046,30.395695],[-104.854813,30.399566],[-104.854281,30.400366],[-104.854278,30.40094],[-104.855281,30.40138],[-104.856033,30.403319],[-104.856443,30.407103],[-104.857198,30.407999],[-104.857182,30.408871],[-104.856695,30.409839],[-104.855546,30.410523],[-104.855113,30.411183],[-104.853947,30.411761],[-104.852321,30.412043],[-104.852031,30.413066],[-104.851258,30.413829],[-104.847679,30.413805],[-104.848166,30.416432],[-104.848971,30.417986],[-104.847831,30.419775],[-104.848333,30.421012],[-104.849422,30.421549],[-104.849913,30.421121],[-104.849721,30.419953],[-104.850063,30.419262],[-104.851533,30.418651],[-104.852151,30.418739],[-104.852742,30.419231],[-104.852723,30.420066],[-104.853067,30.420512],[-104.85576,30.420967],[-104.856626,30.421517],[-104.856879,30.422226],[-104.85647,30.423822],[-104.856886,30.424475],[-104.859211,30.42568],[-104.859382,30.426045],[-104.860354,30.425597],[-104.861305,30.426121],[-104.861535,30.426927],[-104.860826,30.427978],[-104.860485,30.429337],[-104.859875,30.429689],[-104.859207,30.430908],[-104.858394,30.431409],[-104.858149,30.432186],[-104.858167,30.433213],[-104.858723,30.433783],[-104.859033,30.434923],[-104.858171,30.436844],[-104.858333,30.437636],[-104.86022,30.439913],[-104.862656,30.440209],[-104.864511,30.441276],[-104.866687,30.440902],[-104.867781,30.440974],[-104.868047,30.441407],[-104.867856,30.44263],[-104.867087,30.444037],[-104.865458,30.444907],[-104.86585,30.446495],[-104.864444,30.450549],[-104.86541,30.452555],[-104.868057,30.453623],[-104.868382,30.454158],[-104.869636,30.459195],[-104.869465,30.45997],[-104.868283,30.460526],[-104.868534,30.463481],[-104.867489,30.464207],[-104.866596,30.464061],[-104.866063,30.464384],[-104.86588,30.46689],[-104.866493,30.469394],[-104.869383,30.474117],[-104.869082,30.475864],[-104.869153,30.478738],[-104.86966,30.479414],[-104.871393,30.479697],[-104.871667,30.480345],[-104.869504,30.484641],[-104.868749,30.484993],[-104.867548,30.484671],[-104.867174,30.485071],[-104.867383,30.488332],[-104.866317,30.492435],[-104.866632,30.494499],[-104.867182,30.494825],[-104.87032,30.494088],[-104.873921,30.495258],[-104.872911,30.497758],[-104.872224,30.501502],[-104.872364,30.502346],[-104.87352,30.504545],[-104.872869,30.507563],[-104.872213,30.508481],[-104.871955,30.51109],[-104.873047,30.511816],[-104.87319,30.513304],[-104.873719,30.513737],[-104.874241,30.513459],[-104.874855,30.512153],[-104.876754,30.511096],[-104.877041,30.511204],[-104.879147,30.515358],[-104.879258,30.517813],[-104.879965,30.517751],[-104.881004,30.5169],[-104.882885,30.516769],[-104.88368,30.516961],[-104.885702,30.51827],[-104.88569,30.518798],[-104.884599,30.520331],[-104.883053,30.520583],[-104.882356,30.521032],[-104.881602,30.520557],[-104.881023,30.520976],[-104.88118,30.521629],[-104.882117,30.522378],[-104.883359,30.522957],[-104.88418,30.522791],[-104.883873,30.523815],[-104.88532,30.523998],[-104.885884,30.524523],[-104.884505,30.525846],[-104.883715,30.526135],[-104.883238,30.524598],[-104.881409,30.523955],[-104.881121,30.524368],[-104.880559,30.528925],[-104.880648,30.529821],[-104.882359,30.532255],[-104.884531,30.533239],[-104.886354,30.533557],[-104.888836,30.534775],[-104.889271,30.535378],[-104.889678,30.537067],[-104.889636,30.538385],[-104.890786,30.54101],[-104.888889,30.542162],[-104.887685,30.544089],[-104.887697,30.546727],[-104.888143,30.547098],[-104.888646,30.547057],[-104.889624,30.545977],[-104.890254,30.546037],[-104.890535,30.546799],[-104.889819,30.549157],[-104.891711,30.550269],[-104.893279,30.550063],[-104.894061,30.550918],[-104.893794,30.551917],[-104.892786,30.55114],[-104.892374,30.551293],[-104.892277,30.551858],[-104.892898,30.552925],[-104.896244,30.552983],[-104.897946,30.554548],[-104.897817,30.556332],[-104.896965,30.557686],[-104.896907,30.559877],[-104.896322,30.560582],[-104.896433,30.561088],[-104.895838,30.562272],[-104.896818,30.565042],[-104.898929,30.568362],[-104.898835,30.570473],[-104.901489,30.572203],[-104.902232,30.573627],[-104.904039,30.57502],[-104.905226,30.576496],[-104.906888,30.577164],[-104.907774,30.582307],[-104.909552,30.585143],[-104.912705,30.58605],[-104.91552,30.585837],[-104.917643,30.585093],[-104.918762,30.585542],[-104.919115,30.586537],[-104.919931,30.587275],[-104.921378,30.590032],[-104.920205,30.590486],[-104.919447,30.593572],[-104.918741,30.594815],[-104.91932,30.596471],[-104.91855,30.597038],[-104.918798,30.597791],[-104.920025,30.597434],[-104.921777,30.598465],[-104.922096,30.602245],[-104.922677,30.603693],[-104.924704,30.605112],[-104.926521,30.605212],[-104.9283,30.603035],[-104.929329,30.599649],[-104.929927,30.599202],[-104.930975,30.599066],[-104.934584,30.600013],[-104.935129,30.600807],[-104.93626,30.601557],[-104.936852,30.60266],[-104.938415,30.603633],[-104.940313,30.602752],[-104.941118,30.602867],[-104.941351,30.603764],[-104.941768,30.604076],[-104.942878,30.603849],[-104.943427,30.603143],[-104.944093,30.602895],[-104.945394,30.603077],[-104.94584,30.604143],[-104.946747,30.604664],[-104.947952,30.604712],[-104.950076,30.603973],[-104.950821,30.604051],[-104.953806,30.606417],[-104.95394,30.608],[-104.95503,30.609357],[-104.956764,30.609276],[-104.95739,30.609881],[-104.959831,30.610595],[-104.963816,30.608595],[-104.966902,30.607895],[-104.971664,30.610014],[-104.973271,30.611702],[-104.974185,30.613234],[-104.975508,30.614245],[-104.97436,30.616235],[-104.974403,30.61678],[-104.974947,30.617253],[-104.976533,30.617534],[-104.977664,30.61813],[-104.978765,30.62107],[-104.980213,30.621952],[-104.979616,30.624605],[-104.980778,30.62552],[-104.979521,30.626706],[-104.979496,30.628598],[-104.980469,30.629833],[-104.982141,30.630275],[-104.982632,30.631701],[-104.982734,30.633874],[-104.9839,30.635025],[-104.98388,30.637111],[-104.984513,30.641342],[-104.983892,30.642798],[-104.984561,30.644245],[-104.98468,30.646726],[-104.985514,30.649899],[-104.985181,30.653127],[-104.98585,30.654575],[-104.985658,30.655268],[-104.984716,30.655636],[-104.985076,30.656795],[-104.986176,30.658076],[-104.985393,30.658332],[-104.985537,30.659158],[-104.986557,30.659547],[-104.985945,30.661233],[-104.986245,30.66215],[-104.98611,30.662767],[-104.990294,30.663326],[-104.991423,30.665132],[-104.993052,30.664914],[-104.993485,30.66596],[-104.99312,30.667018],[-104.993846,30.66852],[-104.995681,30.668714],[-104.996552,30.669158],[-104.997758,30.668994],[-104.999555,30.671465],[-105.001542,30.672704],[-105.00127,30.675199],[-105.002539,30.680087],[-105.002048,30.680426],[-105.002043,30.680878],[-105.004508,30.68309],[-105.005628,30.683076],[-105.006147,30.685476],[-105.006579,30.68606],[-105.007796,30.686221],[-105.010423,30.684584],[-105.012296,30.683832],[-105.013199,30.682562],[-105.016008,30.682878],[-105.016594,30.683509],[-105.016759,30.684875],[-105.017878,30.685086],[-105.019829,30.683931],[-105.02127,30.681509],[-105.025218,30.681287],[-105.026247,30.680722],[-105.026618,30.679428],[-105.027325,30.678881],[-105.028127,30.680004],[-105.028784,30.680264],[-105.030388,30.680143],[-105.031962,30.68099],[-105.033953,30.683335],[-105.036089,30.686658],[-105.038318,30.688082],[-105.040819,30.688935],[-105.041274,30.688874],[-105.042063,30.687663],[-105.042709,30.687353],[-105.044555,30.68781],[-105.045357,30.688957],[-105.047161,30.688074],[-105.047076,30.687433],[-105.044781,30.684964],[-105.044428,30.684183],[-105.044402,30.683205],[-105.045316,30.682668],[-105.045784,30.681876],[-105.045704,30.681029],[-105.04522,30.680559],[-105.045681,30.679917],[-105.048321,30.680285],[-105.048449,30.680728],[-105.047537,30.681704],[-105.048406,30.682458],[-105.050809,30.682174],[-105.051972,30.681569],[-105.055307,30.682156],[-105.055392,30.682753],[-105.054421,30.68418],[-105.054269,30.685104],[-105.055642,30.685544],[-105.056155,30.687206],[-105.056698,30.687864],[-105.05904,30.688015],[-105.060011,30.687285],[-105.059277,30.686812],[-105.059289,30.686452],[-105.061247,30.685738],[-105.061762,30.685845],[-105.062486,30.686532],[-105.063388,30.688938],[-105.062904,30.691385],[-105.061685,30.69466],[-105.06182,30.695953],[-105.062657,30.697015],[-105.062552,30.698502],[-105.065076,30.698372],[-105.066885,30.699256],[-105.068085,30.701572],[-105.068232,30.703702],[-105.06873,30.703668],[-105.069131,30.702549],[-105.070062,30.701885],[-105.073349,30.701527],[-105.075332,30.701893],[-105.07664,30.701239],[-105.077401,30.700012],[-105.07856,30.699708],[-105.080941,30.699846],[-105.081129,30.700336],[-105.080786,30.701441],[-105.082065,30.701301],[-105.082578,30.701678],[-105.082592,30.702088],[-105.081864,30.702981],[-105.080104,30.703315],[-105.079383,30.704343],[-105.079461,30.705605],[-105.080462,30.706389],[-105.080227,30.707724],[-105.081028,30.708471],[-105.082405,30.708648],[-105.083349,30.70997],[-105.087463,30.709877],[-105.087892,30.711437],[-105.086976,30.714451],[-105.087614,30.715488],[-105.088955,30.715897],[-105.091063,30.717177],[-105.094911,30.717197],[-105.09531,30.716058],[-105.095778,30.715891],[-105.098179,30.716479],[-105.098675,30.717477],[-105.098381,30.720045],[-105.099281,30.720868],[-105.099622,30.721953],[-105.100916,30.722544],[-105.103628,30.722755],[-105.105547,30.723808],[-105.105471,30.724597],[-105.103901,30.7253],[-105.103314,30.726337],[-105.103358,30.727076],[-105.103889,30.727828],[-105.103344,30.728598],[-105.103371,30.729129],[-105.10589,30.730483],[-105.106023,30.731821],[-105.106614,30.732221],[-105.107443,30.731633],[-105.106889,30.731098],[-105.107097,30.73015],[-105.107988,30.729908],[-105.108805,30.730087],[-105.11018,30.731295],[-105.110409,30.732116],[-105.111679,30.732868],[-105.111825,30.733261],[-105.111676,30.735716],[-105.110836,30.737681],[-105.110985,30.738563],[-105.110018,30.739108],[-105.10981,30.739564],[-105.11022,30.740248],[-105.111562,30.740104],[-105.112211,30.740502],[-105.111476,30.742351],[-105.110897,30.742648],[-105.110939,30.743552],[-105.113933,30.74598],[-105.116139,30.74466],[-105.115935,30.743578],[-105.116942,30.743009],[-105.11979,30.743159],[-105.120443,30.743853],[-105.120851,30.745894],[-105.119432,30.747519],[-105.119456,30.748354],[-105.118021,30.749083],[-105.118295,30.749726],[-105.119676,30.749995],[-105.121242,30.749563],[-105.122877,30.749545],[-105.124278,30.749227],[-105.125399,30.748101],[-105.127659,30.747845],[-105.128329,30.748161],[-105.12906,30.749992],[-105.129598,30.750376],[-105.133366,30.750734],[-105.137217,30.751737],[-105.139592,30.753023],[-105.140727,30.752214],[-105.141294,30.752676],[-105.142175,30.754696],[-105.143771,30.755205],[-105.147155,30.753648],[-105.148677,30.752258],[-105.150628,30.752003],[-105.151976,30.751462],[-105.15307,30.751689],[-105.156846,30.753972],[-105.158184,30.752862],[-105.16139,30.752133],[-105.161951,30.753351],[-105.161259,30.754789],[-105.161304,30.756263],[-105.160667,30.757546],[-105.158744,30.759394],[-105.157844,30.761305],[-105.15743,30.765512],[-105.157566,30.766819],[-105.156191,30.769773],[-105.158912,30.771014],[-105.160487,30.77036],[-105.162815,30.770719],[-105.165184,30.772897],[-105.166479,30.775539],[-105.166464,30.776441],[-105.167082,30.776594],[-105.168853,30.775823],[-105.169896,30.773017],[-105.170723,30.771728],[-105.172504,30.77053],[-105.172451,30.769936],[-105.173992,30.767531],[-105.175202,30.767353],[-105.176601,30.767975],[-105.179536,30.771369],[-105.180635,30.774021],[-105.182134,30.776272],[-105.184215,30.776452],[-105.184896,30.77696],[-105.185172,30.780593],[-105.184391,30.781573],[-105.185591,30.782518],[-105.185616,30.783736],[-105.185999,30.78455],[-105.190738,30.785697],[-105.191667,30.787138],[-105.192619,30.78997],[-105.194373,30.791034],[-105.195191,30.792304],[-105.195891,30.792111],[-105.196845,30.790727],[-105.199101,30.789016],[-105.199792,30.787731],[-105.200607,30.787365],[-105.202198,30.788004],[-105.20368,30.78793],[-105.20655,30.786346],[-105.207078,30.785576],[-105.207017,30.78432],[-105.209091,30.782655],[-105.209989,30.78265],[-105.211687,30.781766],[-105.213462,30.782201],[-105.214126,30.782631],[-105.214319,30.78335],[-105.214851,30.783726],[-105.216744,30.783385],[-105.216952,30.783634],[-105.216568,30.784611],[-105.218787,30.78536],[-105.219687,30.786262],[-105.22015,30.787763],[-105.220047,30.788898],[-105.218836,30.790434],[-105.218431,30.792113],[-105.217635,30.793167],[-105.217065,30.793416],[-105.215209,30.792858],[-105.212999,30.793232],[-105.211566,30.794334],[-105.211517,30.795311],[-105.210761,30.796813],[-105.20992,30.797068],[-105.209598,30.797628],[-105.21116,30.799626],[-105.212249,30.799798],[-105.213288,30.800806],[-105.213985,30.802183],[-105.213885,30.803838],[-105.215017,30.805893],[-105.218285,30.805759],[-105.223303,30.800872],[-105.224445,30.800741],[-105.225767,30.79957],[-105.227443,30.799191],[-105.228019,30.799272],[-105.229016,30.800162],[-105.228392,30.801393],[-105.228391,30.802867],[-105.230019,30.803827],[-105.230756,30.803788],[-105.232261,30.802969],[-105.233729,30.803056],[-105.23449,30.802647],[-105.238178,30.80366],[-105.239139,30.802419],[-105.241656,30.802215],[-105.242782,30.801601],[-105.244172,30.799812],[-105.246155,30.800477],[-105.247941,30.800115],[-105.249928,30.799236],[-105.252731,30.795867],[-105.253909,30.795875],[-105.255673,30.795095],[-105.256013,30.794402],[-105.25716,30.794354],[-105.25882,30.795489],[-105.259982,30.797396],[-105.261232,30.798497],[-105.26193,30.798648],[-105.264148,30.800335],[-105.265533,30.802636],[-105.265805,30.806495],[-105.266835,30.808481],[-105.268768,30.809309],[-105.271694,30.809382],[-105.27276,30.808274],[-105.274229,30.808167],[-105.274663,30.80755],[-105.275799,30.807003],[-105.276701,30.808497],[-105.277301,30.811284],[-105.279221,30.812905],[-105.279401,30.815698],[-105.282514,30.818279],[-105.285275,30.818682],[-105.286632,30.817891],[-105.287953,30.817877],[-105.288797,30.819124],[-105.289484,30.821584],[-105.289258,30.823779],[-105.289894,30.82478],[-105.291795,30.826193],[-105.294783,30.826344],[-105.299041,30.825399],[-105.300136,30.824771],[-105.300984,30.822504],[-105.300988,30.820615],[-105.300534,30.81919],[-105.302683,30.816133],[-105.303547,30.813665],[-105.304863,30.812438],[-105.305462,30.811421],[-105.306159,30.81132],[-105.306147,30.809838],[-105.307588,30.810032],[-105.308862,30.811089],[-105.30878,30.81373],[-105.307869,30.814732],[-105.309288,30.815647],[-105.30907,30.816706],[-105.309363,30.81704],[-105.309936,30.816814],[-105.310538,30.816031],[-105.311366,30.814017],[-105.311952,30.813391],[-105.314248,30.812452],[-105.314938,30.811363],[-105.316869,30.810913],[-105.317984,30.811944],[-105.319094,30.812259],[-105.318421,30.813444],[-105.318328,30.814552],[-105.317486,30.816573],[-105.317553,30.817261],[-105.315958,30.818717],[-105.316522,30.820414],[-105.317899,30.821577],[-105.318896,30.824046],[-105.318924,30.825056],[-105.31801,30.827175],[-105.318179,30.827816],[-105.319453,30.829084],[-105.320047,30.828804],[-105.319946,30.827789],[-105.320678,30.827372],[-105.324592,30.828303],[-105.32685,30.826084],[-105.327043,30.824705],[-105.329297,30.824975],[-105.330194,30.826134],[-105.328309,30.829066],[-105.327762,30.83031],[-105.327825,30.831087],[-105.328333,30.831486],[-105.332223,30.832382],[-105.333063,30.83319],[-105.334135,30.833633],[-105.335827,30.833341],[-105.337192,30.833481],[-105.337947,30.838023],[-105.339293,30.840475],[-105.341676,30.84047],[-105.342692,30.840998],[-105.345755,30.840612],[-105.347372,30.839516],[-105.347169,30.838708],[-105.347658,30.838044],[-105.348823,30.837639],[-105.351409,30.835625],[-105.351964,30.835544],[-105.353153,30.835927],[-105.354442,30.837781],[-105.353523,30.839569],[-105.353057,30.841278],[-105.353184,30.842021],[-105.354447,30.843339],[-105.356401,30.844328],[-105.357774,30.845433],[-105.35972,30.845942],[-105.360408,30.848584],[-105.361592,30.850545],[-105.363976,30.849701],[-105.367638,30.847693],[-105.370497,30.8475],[-105.372073,30.847612],[-105.373436,30.848422],[-105.374477,30.848617],[-105.375047,30.849965],[-105.376288,30.848851],[-105.377628,30.848814],[-105.376725,30.850546],[-105.377066,30.851262],[-105.37989,30.850615],[-105.382124,30.851202],[-105.382708,30.851966],[-105.383263,30.852106],[-105.383718,30.851819],[-105.384163,30.850585],[-105.384696,30.850497],[-105.385585,30.851325],[-105.38684,30.853502],[-105.387322,30.853734],[-105.38784,30.853638],[-105.389229,30.852255],[-105.391036,30.852289],[-105.391952,30.850594],[-105.394018,30.850913],[-105.394514,30.850234],[-105.394051,30.849358],[-105.39462,30.849021],[-105.395889,30.849295],[-105.398151,30.851277],[-105.399837,30.852077],[-105.401635,30.854266],[-105.401639,30.854658],[-105.400802,30.856314],[-105.39927,30.857737],[-105.395482,30.859089],[-105.394946,30.859757],[-105.394523,30.861288],[-105.395027,30.862192],[-105.394404,30.863107],[-105.395007,30.86399],[-105.39586,30.863933],[-105.395993,30.864305],[-105.39364,30.86693],[-105.393916,30.868007],[-105.394723,30.868992],[-105.394817,30.869619],[-105.394399,30.870563],[-105.39496,30.871194],[-105.394353,30.871891],[-105.392893,30.872519],[-105.392383,30.87316],[-105.391653,30.873309],[-105.391299,30.873853],[-105.392681,30.875766],[-105.393628,30.876381],[-105.397308,30.876219],[-105.399936,30.876674],[-105.40258,30.878791],[-105.404303,30.879676],[-105.402372,30.881658],[-105.400113,30.88294],[-105.399132,30.884255],[-105.398828,30.885329],[-105.400151,30.886629],[-105.399951,30.887694],[-105.399415,30.888305],[-105.400185,30.889382],[-105.401293,30.890174],[-105.402142,30.89028],[-105.40376,30.892106],[-105.408026,30.889361],[-105.412093,30.88856],[-105.412308,30.888922],[-105.412143,30.890443],[-105.410617,30.891572],[-105.410552,30.892048],[-105.412166,30.893843],[-105.413802,30.899567],[-105.416205,30.900188],[-105.421917,30.900483],[-105.424762,30.900996],[-105.425817,30.900396],[-105.426786,30.90192],[-105.427624,30.902562],[-105.428698,30.904533],[-105.430136,30.905604],[-105.432634,30.9061],[-105.434559,30.907685],[-105.435592,30.907832],[-105.436172,30.90748],[-105.439857,30.908877],[-105.440539,30.908349],[-105.441158,30.908449],[-105.442361,30.909442],[-105.444773,30.913336],[-105.44556,30.916124],[-105.44432,30.917258],[-105.446379,30.919355],[-105.446918,30.919613],[-105.447468,30.919392],[-105.448665,30.917723],[-105.450063,30.917039],[-105.451348,30.915727],[-105.452091,30.915653],[-105.453152,30.916206],[-105.4534,30.917517],[-105.454395,30.919345],[-105.453928,30.919768],[-105.452224,30.919971],[-105.451453,30.921041],[-105.451147,30.922064],[-105.451205,30.923963],[-105.451604,30.924827],[-105.452971,30.925085],[-105.456916,30.924515],[-105.457787,30.924923],[-105.459613,30.924802],[-105.460521,30.925408],[-105.462775,30.924964],[-105.464827,30.925857],[-105.46531,30.925386],[-105.465462,30.924551],[-105.466771,30.924279],[-105.467339,30.925552],[-105.467552,30.929668],[-105.46924,30.930505],[-105.469765,30.931119],[-105.470789,30.931239],[-105.470794,30.933712],[-105.473603,30.934388],[-105.474373,30.933885],[-105.475923,30.933817],[-105.478028,30.937984],[-105.479749,30.939536],[-105.481918,30.94074],[-105.483937,30.940983],[-105.486358,30.942625],[-105.486793,30.942481],[-105.487632,30.940962],[-105.488731,30.940815],[-105.490644,30.942261],[-105.491654,30.942407],[-105.49169,30.94345],[-105.491355,30.943806],[-105.490327,30.943709],[-105.488677,30.942515],[-105.488082,30.942856],[-105.488114,30.943725],[-105.490138,30.946469],[-105.493224,30.948663],[-105.493728,30.949461],[-105.496272,30.949273],[-105.497742,30.950169],[-105.498623,30.950134],[-105.498872,30.950418],[-105.49898,30.950826],[-105.497697,30.952396],[-105.497492,30.953239],[-105.496463,30.954325],[-105.49681,30.95542],[-105.495544,30.955655],[-105.49481,30.956255],[-105.494305,30.955261],[-105.49395,30.955624],[-105.493893,30.956424],[-105.494462,30.958045],[-105.495969,30.959542],[-105.496991,30.961401],[-105.498617,30.962725],[-105.499883,30.965719],[-105.501968,30.967737],[-105.503436,30.968026],[-105.506674,30.966507],[-105.508236,30.966295],[-105.511606,30.9665],[-105.513764,30.966261],[-105.515718,30.964857],[-105.516865,30.967207],[-105.516888,30.969428],[-105.517731,30.970322],[-105.517864,30.971098],[-105.520338,30.972974],[-105.521319,30.974689],[-105.521799,30.976286],[-105.522561,30.976801],[-105.52536,30.977332],[-105.527083,30.978178],[-105.532676,30.984697],[-105.535789,30.985022],[-105.538042,30.985734],[-105.53923,30.985507],[-105.541003,30.984634],[-105.543018,30.984644],[-105.555148,30.98847],[-105.557226,30.989673],[-105.563446,30.997165],[-105.565684,31.002336],[-105.570096,31.008203],[-105.5702,31.009427],[-105.568756,31.014606],[-105.570532,31.018007],[-105.571146,31.018656],[-105.571976,31.018936],[-105.576419,31.019387],[-105.578008,31.020078],[-105.581246,31.026653],[-105.581175,31.027902],[-105.579913,31.03039],[-105.579524,31.035695],[-105.584994,31.056964],[-105.585362,31.05767],[-105.588417,31.060457],[-105.593854,31.063243],[-105.595286,31.06431],[-105.596003,31.065285],[-105.596672,31.066924],[-105.598367,31.074318],[-105.602682,31.081817],[-105.604467,31.083744],[-105.606438,31.085278],[-105.627102,31.098405],[-105.628519,31.098655],[-105.640048,31.097639],[-105.641829,31.098333],[-105.642684,31.099583],[-105.646488,31.11308],[-105.647604,31.114979],[-105.648839,31.115877],[-105.659637,31.119655],[-105.661688,31.11995],[-105.663473,31.121113],[-105.665712,31.121999],[-105.679183,31.125937],[-105.7084,31.13593],[-105.710526,31.136975],[-105.71618,31.140567],[-105.717098,31.141534],[-105.717525,31.142415],[-105.717856,31.145653],[-105.718417,31.147635],[-105.719273,31.148894],[-105.741929,31.164602],[-105.743685,31.165254],[-105.745725,31.165363],[-105.76337,31.164127],[-105.76956,31.164876],[-105.77299,31.166702],[-105.774028,31.168474],[-105.775795,31.175829],[-105.78003,31.18274],[-105.780253,31.184941],[-105.779491,31.188338],[-105.779478,31.190228],[-105.780132,31.192326],[-105.782798,31.197459],[-105.784684,31.19898],[-105.792344,31.201202],[-105.794287,31.202286],[-105.818381,31.230146],[-105.836392,31.247722],[-105.850332,31.264968],[-105.853814,31.272521],[-105.857962,31.275561],[-105.869294,31.288955],[-105.870715,31.289939],[-105.874456,31.291309],[-105.876387,31.291668],[-105.89104,31.290095],[-105.894146,31.290749],[-105.895649,31.291758],[-105.8967,31.293122],[-105.901978,31.303434],[-105.903322,31.306788],[-105.906689,31.310045],[-105.907388,31.312214],[-105.908629,31.312745],[-105.913327,31.313058],[-105.922307,31.311952],[-105.931585,31.312781],[-105.932823,31.313362],[-105.937894,31.318223],[-105.93851,31.31907],[-105.947752,31.339589],[-105.94768,31.342008],[-105.945453,31.351015],[-105.945732,31.35295],[-105.953786,31.364749],[-105.955596,31.365304],[-105.968706,31.365619],[-105.970046,31.365977],[-105.987067,31.37975],[-106.002304,31.391147],[-106.004921,31.392456],[-106.016192,31.39352],[-106.075307,31.397615],[-106.081665,31.399223],[-106.084977,31.401446],[-106.103087,31.418478],[-106.108615,31.422375],[-106.112169,31.423567],[-106.124541,31.423729],[-106.129672,31.424348],[-106.132291,31.425081],[-106.154608,31.435894],[-106.156934,31.43736],[-106.15942,31.439308],[-106.170276,31.451289],[-106.175625,31.455206],[-106.180304,31.457107],[-106.200119,31.462411],[-106.204393,31.464605],[-106.207631,31.467104],[-106.217435,31.477921],[-106.219074,31.48028],[-106.21962,31.481561],[-106.223562,31.498074],[-106.224764,31.500929],[-106.225704,31.502252],[-106.235235,31.511238],[-106.237224,31.513858],[-106.245236,31.539123],[-106.246571,31.541661],[-106.248245,31.543488],[-106.254742,31.548043],[-106.279589,31.561138],[-106.28079,31.562096],[-106.28874,31.587157],[-106.292933,31.594306],[-106.296671,31.603509],[-106.297761,31.604306],[-106.300889,31.609624],[-106.300617,31.613262],[-106.302832,31.618677],[-106.302868,31.620785],[-106.303433,31.622193],[-106.307944,31.629519],[-106.324357,31.649739],[-106.32985,31.65849],[-106.334435,31.663555],[-106.349565,31.696712],[-106.351748,31.698592],[-106.370139,31.71071],[-106.37237,31.712569],[-106.374036,31.714845],[-106.378039,31.72831],[-106.380321,31.731378],[-106.381074,31.732082],[-106.387829,31.735902],[-106.394719,31.73925],[-106.408116,31.746995],[-106.412058,31.748789],[-106.415684,31.750893],[-106.421849,31.752928],[-106.431606,31.754103],[-106.435718,31.755275],[-106.447752,31.762669],[-106.45143,31.764427],[-106.452806,31.764571],[-106.455059,31.764169],[-106.466135,31.760007],[-106.467556,31.75921],[-106.4685,31.758249],[-106.469242,31.756834],[-106.470566,31.752737],[-106.472076,31.751049],[-106.473207,31.750493],[-106.484642,31.747809],[-106.487746,31.747809],[-106.490549,31.748924],[-106.494677,31.751804],[-106.496479,31.753843],[-106.500089,31.755527],[-106.501391,31.757042],[-106.503482,31.758168],[-106.505818,31.760472],[-106.507326,31.761192],[-106.508774,31.761018],[-106.51006,31.761258],[-106.511301,31.764089],[-106.511899,31.767746],[-106.513687,31.770711],[-106.514871,31.771588],[-106.517521,31.771643],[-106.520988,31.773829],[-106.523647,31.776223],[-106.525318,31.778681],[-106.528498,31.781497],[-106.528641,31.782307],[-106.528124,31.783394],[-106.528075,31.785241],[-106.527061,31.788712],[-106.527402,31.790011],[-106.528391,31.791],[-106.530362,31.792009],[-106.5318,31.791891],[-106.532795,31.792444],[-106.533937,31.795189],[-106.535431,31.797097],[-106.536005,31.798506],[-106.538377,31.800415],[-106.542127,31.802068],[-106.544157,31.80347],[-106.54714,31.807299],[-106.551237,31.8082],[-106.558444,31.810405],[-106.562951,31.811105],[-106.56341,31.812736],[-106.566472,31.813433],[-106.570944,31.810206],[-106.577244,31.810406],[-106.581345,31.813901],[-106.58214,31.815504],[-106.588051,31.822108],[-106.589061,31.822708],[-106.593825,31.824898],[-106.597307,31.8247],[-106.602806,31.825018],[-106.605297,31.82772],[-106.603841,31.832999],[-106.603446,31.83591],[-106.601944,31.839601],[-106.602043,31.844406],[-106.6062,31.846326],[-106.609098,31.846655],[-106.614788,31.846413],[-106.62184,31.852624],[-106.622026,31.853189],[-106.625773,31.856165],[-106.62746,31.860158],[-106.628173,31.86112],[-106.635922,31.866237],[-106.635892,31.871504],[-106.634874,31.874477],[-106.630804,31.87969],[-106.629191,31.883699],[-106.630686,31.886407],[-106.633922,31.88918],[-106.638155,31.891663],[-106.642901,31.892933],[-106.645584,31.895328],[-106.645478,31.898669],[-106.642643,31.902642],[-106.640062,31.905273],[-106.633667,31.909793],[-106.628933,31.911072],[-106.625568,31.912432],[-106.618751,31.917795],[-106.616146,31.917303],[-106.614349,31.918005],[-106.611847,31.920003],[-106.618409,31.922253],[-106.622117,31.924713],[-106.623932,31.925334],[-106.624996,31.925248],[-106.628654,31.923608],[-106.629742,31.926567],[-106.625339,31.930031],[-106.623826,31.932082],[-106.622529,31.934863],[-106.622117,31.936324],[-106.622371,31.940863],[-106.623659,31.94551],[-106.618229,31.947363],[-106.615253,31.948965],[-106.614321,31.951615],[-106.614375,31.955991],[-106.617707,31.956008],[-106.622818,31.952891],[-106.625123,31.95453],[-106.625534,31.957476],[-106.624298,31.961056],[-106.620453,31.963403],[-106.619371,31.964777],[-106.618745,31.966955],[-106.619569,31.971577],[-106.621841,31.972918],[-106.623186,31.972918],[-106.626523,31.970675],[-106.630102,31.971258],[-106.633868,31.974188],[-106.638193,31.976824],[-106.639536,31.980343],[-106.636497,31.985711],[-106.631186,31.98981],[-106.623568,31.990998],[-106.619449,31.994735],[-106.618486,32.000495],[-106.394127,32.001449],[-106.377165,32.001168],[-106.298762,32.001351],[-106.206157,32.001739],[-106.125534,32.002533],[-105.9232,32.002081],[-105.920223,32.001635],[-105.908383,32.001286],[-105.900751,32.001977],[-105.875288,32.001948],[-105.854059,32.00235],[-105.750511,32.002206],[-105.731353,32.001565],[-105.679527,32.001362],[-105.250514,32.000278],[-104.800928,32.000663],[-104.776185,32.00042],[-104.252421,31.999939],[-103.915663,32.000124],[-103.875476,32.000554],[-103.750471,32.000411],[-103.748317,32.000197],[-103.064422,32.000517],[-103.064348,32.123041],[-103.064566,32.127577],[-103.06438,32.13754],[-103.064788,32.240487],[-103.064842,32.619155],[-103.064815,32.624537],[-103.064537,32.62511],[-103.064871,32.682647],[-103.064691,32.733769],[-103.064968,32.754674],[-103.064682,32.784584],[-103.065075,32.784773],[-103.065078,32.785155],[-103.064725,32.78564],[-103.064722,32.786625],[-103.064916,32.857259],[-103.064566,32.899909],[-103.064657,32.959097]]]},"properties":{"name":"tx"},"bbox":[-106.645584,25.83724,-93.508039,36.500704]}]} \ No newline at end of file diff --git a/test/external/tg/data/point.jsonc b/test/external/tg/data/point.jsonc deleted file mode 100644 index 0c1050920c..0000000000 --- a/test/external/tg/data/point.jsonc +++ /dev/null @@ -1,362 +0,0 @@ -[ - { - "geoms": [ - "POINT(0 0)", - "POINT(0 0)" - ], - "dims": [ 0, 0 ], - "relate": [ "0FFFFFFF2", "0FFFFFFF2" ], - "predicates": { - "equals": ["T", "T"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "T"], - "within": ["T", "T"], - "covers": ["T", "T"], - "coveredby": ["T", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POINT(0 0)", - "POINT(1 0)" - ], - "dims": [ 0, 0 ], - "relate": [ "FF0FFF0F2", "FF0FFF0F2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POINT(0 0)", - "POINT EMPTY" - ], - "dims": [ 0, 0 ], - "relate": [ "FF0FFFFF2", "FFFFFF0F2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POINT EMPTY", - "POINT EMPTY" - ], - "dims": [ 0, 0 ], - "relate": [ "FFFFFFFF2", "FFFFFFFF2" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(0 0, 10 10, 20 0)", - "POINT(0 0)" - ], - "dims": [ 1, 0 ], - "relate": [ "FF10F0FF2", "F0FFFF102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "LINESTRING(0 0, 10 10, 20 0)", - "POINT(5 5)" - ], - "dims": [ 1, 0 ], - "relate": [ "0F1FF0FF2", "0FFFFF102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(0 0, 10 10, 20 0)", - "POINT(10 10)" - ], - "dims": [ 1, 0 ], - "relate": [ "0F1FF0FF2", "0FFFFF102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(0 0, 10 10, 20 0)", - "POINT(20 0)" - ], - "dims": [ 1, 0 ], - "relate": [ "FF10F0FF2", "F0FFFF102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "LINESTRING(1 1,2 2)", - "POINT(1.5 1.5)" - ], - "dims": [ 1, 0 ], - "relate": [ "0F1FF0FF2", "0FFFFF102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING(1 1,2 2,1 1,3 3,2 2)", - "POINT(2 2)" - ], - "dims": [ 1, 0 ], - "relate": [ "FF10F0FF2", "F0FFFF102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON((0 0,10 0,10 10,0 10,0 0))", - "POINT(0 0)" - ], - "dims": [ 2, 0 ], - "relate": [ "FF20F1FF2", "F0FFFF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0))", - "POINT(0 0)" - ], - "dims": [ 2, 0 ], - "relate": [ "FF20F1FF2", "F0FFFF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0))", - "POINT(1 1)" - ], - "dims": [ 2, 0 ], - "relate": [ "0F2FF1FF2", "0FFFFF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(2 2,8 2,8 8,2 8,2 2))", - "POINT(5 5)" - ], - "dims": [ 2, 0 ], - "relate": [ "FF2FF10F2", "FF0FFF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(2 2,8 2,8 8,2 8,2 2))", - "POINT(6 6)" - ], - "dims": [ 2, 0 ], - "relate": [ "FF2FF10F2", "FF0FFF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "LINESTRING (0 0,10 10)", - "POINT (15 15)" - ], - "dims": [ 1, 0 ], - "relate": [ "FF1FF00F2", "FF0FFF102" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - {"type":"Feature","id":"a","geometry":{"type":"Point","coordinates":[0,0]}}, - {"type":"Feature","id":"b","geometry":{"type":"Point","coordinates":[0,0]}}, - ], - "dims": [ 0, 0 ], - "relate": [ "0FFFFFFF2", "0FFFFFFF2" ], - "predicates": { - "equals": ["T", "T"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "T"], - "within": ["T", "T"], - "covers": ["T", "T"], - "coveredby": ["T", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POINT(0 0)", - "MULTIPOINT(0 0)" - ], - "dims": [ 0, 0 ], - "relate": [ "0FFFFFFF2", "0FFFFFFF2" ], - "predicates": { - "equals": ["T", "T"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "T"], - "within": ["T", "T"], - "covers": ["T", "T"], - "coveredby": ["T", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - } -] diff --git a/test/external/tg/data/poly.jsonc b/test/external/tg/data/poly.jsonc deleted file mode 100644 index baeeb5e7b9..0000000000 --- a/test/external/tg/data/poly.jsonc +++ /dev/null @@ -1,723 +0,0 @@ -[ - { - "geoms": [ - "POLYGON ((0 4, 0 5, 1 5, 1 4, 0 4), (0.21 4.1, 0.21 4.81, 0.85 4.81, 0.85 4.1, 0.21 4.1))", - "LINESTRING (-0.11 4.79, 0.21 4.64)" - ], - "dims": [ 2, 1 ], - "relate": [ "1F2001102", "101F00212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(2 2,8 2,8 8,2 8,2 2))", - "POINT(2 6)" - ], - "dims": [ 2, 0 ], - "relate": [ "FF20F1FF2", "F0FFFF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(2 2,8 2,8 8,2 8,2 2))", - "POINT(1 1)" - ], - "dims": [ 2, 0 ], - "relate": [ "FF20F1FF2", "F0FFFF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(2 2,8 2,8 8,2 8,2 2))", - "POINT(0 0)" - ], - "dims": [ 2, 0 ], - "relate": [ "FF20F1FF2", "F0FFFF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON ((1.1 1, 1.4 1, 1.4 1.1, 1.2 1.1, 1.1 1))", - "LINESTRING (1.11 1.05, 1.15 1.1)" - ], - "dims": [ 2, 1 ], - "relate": [ "FF2FF1102", "FF1FF0212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON((0 0,10 0,10 10,0 10,0 0))", - "POLYGON((10 10,20 10,20 20,10 20,10 10))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2F01212", "FF2F01212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON((0 0,10 0,10 10,0 10,0 0))", - "POLYGON((9 9,19 9,19 19,9 19,9 9))" - ], - "dims": [ 2, 2 ], - "relate": [ "212101212", "212101212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["T", "T"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON((0 0,10 0,10 10,0 10,0 0))", - "POLYGON((9 9,19 9,19 19,9 19,9 9))" - ], - "dims": [ 2, 2 ], - "relate": [ "212101212", "212101212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["T", "T"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON((0 0,10 0,10 10,0 10,0 0))", - "POLYGON((0 0,10 0,10 10,0 10,0 0))" - ], - "dims": [ 2, 2 ], - "relate": [ "2FFF1FFF2", "2FFF1FFF2" ], - "predicates": { - "equals": ["T", "T"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "T"], - "within": ["T", "T"], - "covers": ["T", "T"], - "coveredby": ["T", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON((0 0,10 0,10 10,0 10,0 0))", - "POLYGON((1 1,9 1,9 9,1 9,1 1))" - ], - "dims": [ 2, 2 ], - "relate": [ "212FF1FF2", "2FF1FF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((0 3.1, 0 6.1, 4.1 10, 7 5, 7 1.9, 1 2, 0 3.1), (2 5.7, 3.9 7.4, 4.8 7.3, 6 5, 6 3, 4 3, 2 5.7))", - "POLYGON ((6 3, 6 4.1, 5 4.1, 6 3))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2F11212", "FF2F11212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON ((0 0, 0 9.1, 5 10, 10 0, 0 0))", - "POLYGON ((0 0, 0 6, 5 10, 10 6, 10 0, 0 0))" - ], - "dims": [ 2, 2 ], - "relate": [ "212111212", "212111212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["T", "T"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1 0, 1 8, 6.1 9, 10 7.1, 10 3.1, 4.1 4.1, 4.1 1, 1 0), (3 7, 3 4.9, 6 5.5, 7.1 6, 5.1 7, 5.1 6.2, 3.5 6, 3 7))", - "POLYGON ((1 6.8, 1 4.5, 3 5.5, 3 6.8, 1 6.8))" - ], - "dims": [ 2, 2 ], - "relate": [ "212F11FF2", "2FF11F212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1 5, 1 7.1, 3 7.1, 3 5, 1 5))", - "POLYGON ((1 5.5, 1 6.7, 3 6.7, 3 5.5, 1 5.5))" - ], - "dims": [ 2, 2 ], - "relate": [ "212F11FF2", "2FF11F212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((0 0, 0 6, 5 6, 5 0, 0 0))", - "LINESTRING (0 2.9, 0 6, 3 6)" - ], - "dims": [ 2, 1 ], - "relate": [ "FF2101FF2", "F1FF0F212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON ((0.7 7, 0.7 7.2, 0.9 7.2, 0.9 7, 0.7 7))", - "POLYGON ((0.8 7.2, 0.7 7.1, 0.8 7, 0.9 7.1, 0.8 7.2))" - ], - "dims": [ 2, 2 ], - "relate": [ "212F01FF2", "2FF10F212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1 5, 1 7.1, 3 7.1, 3 5, 1 5))", - "LINESTRING (1 6.4, 3 6.4)" - ], - "dims": [ 2, 1 ], - "relate": [ "1F2F01FF2", "1FFF0F212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1 0, 1 8, 6.1 9, 10 7.1, 10 3.1, 4.1 4.1, 4.1 1, 1 0), (3 7, 3 4.9, 6 5.5, 7.1 6, 5.1 7, 5.1 6.2, 3.5 6, 3 7))", - "LINESTRING (1 6.4, 3 6.4)" - ], - "dims": [ 2, 1 ], - "relate": [ "1F2F01FF2", "1FFF0F212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1 0, 1 8, 6.1 9, 10 7.1, 10 3.1, 4.1 4.1, 4.1 1, 1 0), (3 7, 3 4.9, 6 5.5, 7.1 6, 5.1 7, 5.1 6.2, 3.5 6, 3 7))", - "LINESTRING (1 6, 3 6.7, 1.9 3.1, 4.2 4.9, 8.4 4.9, 7.4 7.4, 4.9 7.6, 4.9 6.4, 4.9 6.4, 3.1 7.2, 2.2 7.1)" - ], - "dims": [ 2, 1 ], - "relate": [ "102001FF2", "10F00F212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((0.7 7, 0.7 7.2, 0.9 7.2, 0.9 7, 0.7 7))", - "LINESTRING (0.8 7.2, 0.7 7.1, 0.8 7, 0.9 7.1, 0.8 7.2)" - ], - "dims": [ 2, 1 ], - "relate": [ "1F20F1FF2", "10FFFF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "F"], - "within": ["F", "T"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((0.7 7, 0.7 7.02, 0.72 7.02, 0.72 7, 0.7 7))", - "LINESTRING (0.7 7.011, 0.695 7.023, 0.70675 7.02585, 0.712 7.02)" - ], - "dims": [ 2, 1 ], - "relate": [ "FF2F011F2", "FF1F0F212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON ((0.7 7, 0.7 7.02, 0.72 7.02, 0.72 7, 0.7 7))", - "LINESTRING (0.7 7.00845, 0.7 7.02, 0.72 7.02, 0.72 7.013)" - ], - "dims": [ 2, 1 ], - "relate": [ "FF2101FF2", "F1FF0F212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON ((0.7 7, 0.7 7.02, 0.72 7.02, 0.72 7, 0.7 7), (0.70325 7.00365, 0.70325 7.01545, 0.71735 7.01545, 0.71735 7.00365, 0.70325 7.00365))", - "LINESTRING (0.7054 7.0175, 0.707 7.013)" - ], - "dims": [ 2, 1 ], - "relate": [ "1020F1102", "1010F0212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["T", "T"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((0.7 7, 0.7 7.02, 0.72 7.02, 0.72 7, 0.7 7), (0.70325 7.00365, 0.70325 7.01545, 0.71735 7.01545, 0.71735 7.00365, 0.70325 7.00365))", - "LINESTRING EMPTY" - ], - "dims": [ 2, 1 ], - "relate": [ "FF2FF1FF2", "FFFFFF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1 1, 2 1, 2 2, 1 2, 1 1), (1.2 1.2, 1.2 1.8, 1.8 1.8, 1.8 1.2, 1.2 1.2))", - "LINESTRING (1.35 1.42, 1.56 1.73, 1.66 1.41)" - ], - "dims": [ 2, 1 ], - "relate": [ "FF2FF1102", "FF1FF0212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1 1, 2 1, 2 2, 1 2, 1 1), (1.2 1.2, 1.2 1.8, 1.8 1.8, 1.8 1.2, 1.2 1.2))", - "LINESTRING (0.28 1.55, 0.5 2.01, 0.77 1.54, 0.29 1.53)" - ], - "dims": [ 2, 1 ], - "relate": [ "FF2FF1102", "FF1FF0212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1 1, 2 1, 2 2, 1 2, 1 1), (1.2 1.2, 1.2 1.8, 1.8 1.8, 1.8 1.2, 1.2 1.2))", - "POLYGON ((0.29 1.84, 0.83 1.84, 0.83 1.16, 0.29 1.16, 0.29 1.84))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2FF1212", "FF2FF1212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1 1, 2 1, 2 2, 1 2, 1 1), (1.2 1.2, 1.2 1.8, 1.8 1.8, 1.8 1.2, 1.2 1.2))", - "POLYGON ((1.27 1.7, 1.62 1.7, 1.62 1.38, 1.27 1.38, 1.27 1.7))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2FF1212", "FF2FF1212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1 1.69, 1.5 2, 1.85 1.26, 1.33 1.21, 1.43 1.64, 1 1.69))", - "POLYGON ((0.72 1.91, 1.17 2, 0.98 1.78, 0.84 1.57, 1.33 1.59, 1.22 1.16, 0.67 1.24, 0.66 1.65, 0.72 1.91))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2FF1212", "FF2FF1212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - {"type":"Feature","id":"a","geometry":{"type":"Polygon","coordinates":[[[1,1],[2,1],[2,2],[1,2],[1,1]]]}}, - {"type":"Feature","id":"b","geometry":{"type":"Polygon","coordinates":[[[1,1],[2,1],[2,2],[1,2],[1,1]]]}} - ], - "dims": [ 2, 2 ], - "relate": [ "2FFF1FFF2", "2FFF1FFF2" ], - "predicates": { - "equals": ["T", "T"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["T", "T"], - "within": ["T", "T"], - "covers": ["T", "T"], - "coveredby": ["T", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73))", - "POLYGON ((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2F11212", "FF2F11212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON ((1.08 1.85, 1.39 1.85, 1.39 1.54, 1.08 1.54, 1.08 1.85), (1.13 1.73, 1.32 1.73, 1.32 1.59, 1.13 1.59, 1.13 1.73))", - "POLYGON ((1.44 1.84, 1.57 1.84, 1.57 1.72, 1.44 1.72, 1.44 1.84))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2FF1212", "FF2FF1212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92))", - "POLYGON ((1.13 1.68, 1.25 1.68, 1.25 1.63, 1.13 1.63, 1.13 1.68))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2FF1212", "FF2FF1212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["F", "F"], - "disjoint": ["T", "T"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["F", "F"] - } - }, - { - "geoms": [ - "POLYGON ((1.57 1.92, 1.89 1.92, 1.89 1.61, 1.57 1.61, 1.57 1.92))", - "POLYGON ((1.44 1.84, 1.57 1.84, 1.57 1.72, 1.44 1.72, 1.44 1.84))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2F11212", "FF2F11212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - "POLYGON((1 1,4 1,4 4,1 4,1 2.5,1 1))", - "POLYGON((0 2, 1 2,1 2.5,1 3, 0 3, 0 2))" - ], - "dims": [ 2, 2 ], - "relate": [ "FF2F11212", "FF2F11212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["F", "F"], - "coveredby": ["F", "F"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - { - "geoms": [ - {"type":"Feature","id":"a","geometry":{"type":"Polygon","coordinates":[[[0,0],[10,0],[10,10],[0,10],[0,0]],[[2,2],[8,2],[8,8],[2,8],[2,2]]]}}, - {"type":"Feature","id":"b","geometry":{"type":"Point","coordinates":[0,0]}} - ], - "dims": [ 2, 0 ], - "relate": [ "FF20F1FF2", "F0FFFF212" ], - "predicates": { - "equals": ["F", "F"], - "intersects": ["T", "T"], - "disjoint": ["F", "F"], - "contains": ["F", "F"], - "within": ["F", "F"], - "covers": ["T", "F"], - "coveredby": ["F", "T"], - "crosses": ["F", "F"], - "overlaps": ["F", "F"], - "touches": ["T", "T"] - } - }, - -] From 5c4bf87c91b855b1ef9173e9c467b9fe3af74416 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Wed, 16 Apr 2025 17:08:34 -0400 Subject: [PATCH 09/12] Address code review Co-authored-by: Rafael Schouten --- src/types.jl | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/types.jl b/src/types.jl index 91a9ac0488..48ddbebb8b 100644 --- a/src/types.jl +++ b/src/types.jl @@ -54,24 +54,26 @@ abstract type CLibraryPlanarAlgorithm <: GeometryOpsCore.SingleManifoldAlgorithm function (::Type{T})(; params...) where {T <: CLibraryPlanarAlgorithm} nt = NamedTuple(params) - return T(Planar(), nt) + return T(nt) end (T::Type{<: CLibraryPlanarAlgorithm})(::Planar, params::NamedTuple) = T(params) manifold(alg::CLibraryPlanarAlgorithm) = Planar() best_manifold(alg::CLibraryPlanarAlgorithm, input) = Planar() +# Rebuild methods with manifolds are here. function rebuild(alg::T, m::Planar) where {T <: CLibraryPlanarAlgorithm} - return T(m, alg.params) + return T(alg.params) # TODO: should this not rebuild at all, then, since nothing will change? end - function rebuild(alg::T, m::AutoManifold) where {T <: CLibraryPlanarAlgorithm} - return T(Planar(), alg.params) + return T(alg.params) # "rebuild" as a planar algorithm. end - function rebuild(alg::T, m::M) where {T <: CLibraryPlanarAlgorithm, M <: Manifold} throw(GeometryOpsCore.WrongManifoldException{M, Planar, T}("The algorithm `$(typeof(alg))` is only compatible with planar manifolds.")) end +# Rebuild methods for parameters are here. This ends up being quite useful really. +rebuild(alg::T, params::NamedTuple) where {T <: CLibraryPlanarAlgorithm} = T(params) +rebuild(alg::T; params...) where {T <: CLibraryPlanarAlgorithm} = T(NamedTuple(params)) # These are definitions for convenience, so we don't have to type out # `alg.params` every time. @@ -163,7 +165,6 @@ struct PROJ{M <: Manifold} <: Algorithm{M} params::NamedTuple end -PROJ() = PROJ(Planar(), NamedTuple()) PROJ(; params...) = PROJ(Planar(), NamedTuple(params)) PROJ(m::Manifold) = PROJ(m, NamedTuple()) From e1165761bfb2936a8c87f3b645558bf3b1731ee2 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Wed, 16 Apr 2025 17:11:12 -0400 Subject: [PATCH 10/12] Add tests for new types introduced --- test/runtests.jl | 1 + test/types.jl | 148 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 149 insertions(+) create mode 100644 test/types.jl diff --git a/test/runtests.jl b/test/runtests.jl index 07b08fea26..d1ff3b643a 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -9,6 +9,7 @@ include("helpers.jl") @safetestset "Manifold" begin include("core/manifold.jl") end end +@safetestset "Types" begin include("types.jl") end @safetestset "Primitives" begin include("primitives.jl") end # Methods @safetestset "Angles" begin include("methods/angles.jl") end diff --git a/test/types.jl b/test/types.jl new file mode 100644 index 0000000000..2b44b215a6 --- /dev/null +++ b/test/types.jl @@ -0,0 +1,148 @@ +using Test +using GeometryOps +using GeometryOpsCore + +using GeometryOps: Planar, Spherical, AutoManifold, rebuild, manifold, best_manifold, enforce, get +using GeometryOps: CLibraryPlanarAlgorithm, GEOS, TG, PROJ + +@testset "CLibraryPlanarAlgorithm" begin + # Test that it's a subtype of SingleManifoldAlgorithm{Planar} + @test CLibraryPlanarAlgorithm <: GeometryOpsCore.SingleManifoldAlgorithm{Planar} + + # Test that it requires params::NamedTuple + struct TestAlg <: CLibraryPlanarAlgorithm + params::NamedTuple + end + + # Test constructor with keyword arguments + alg = TestAlg(; a=1, b=2) + @test alg.params == (; a=1, b=2) + + # Test constructor with NamedTuple + alg = TestAlg((; a=1, b=2)) + @test alg.params == (; a=1, b=2) + + # Test null constructor + alg = TestAlg(()) + @test alg.params == NamedTuple() + + # Test manifold methods + @test manifold(alg) == Planar() + @test best_manifold(alg, nothing) == Planar() + + # Test rebuild methods + @test rebuild(alg, Planar()) == TestAlg(alg.params) + @test rebuild(alg, AutoManifold()) == TestAlg(alg.params) + @test_throws GeometryOpsCore.WrongManifoldException rebuild(alg, Spherical()) + @test rebuild(alg, (; c=3, d=4)) == TestAlg((; c=3, d=4)) + @test rebuild(alg; c=3, d=4) == TestAlg((; c=3, d=4)) + + # Test get methods + @test Base.get(alg, :a, 0) == 0 + @test Base.get(alg, :c, 0) == 0 + + # Test enforce method + @test_throws ErrorException enforce(alg, :a, "test") + @test_throws ErrorException enforce(alg, :c, "test") +end + +@testset "GEOS" begin + # Test that it's a subtype of CLibraryPlanarAlgorithm + @test GEOS() isa CLibraryPlanarAlgorithm + + # Test null constructor + alg = GEOS() + @test alg.params == NamedTuple() + @test manifold(alg) == Planar() + + # Test constructor + alg = GEOS(; a=1, b=2) + @test alg.params == (; a=1, b=2) + + # Test manifold methods + @test manifold(alg) == Planar() + @test best_manifold(alg, nothing) == Planar() + + # Test rebuild methods + @test rebuild(alg, Planar()) == GEOS(alg.params) + @test rebuild(alg, AutoManifold()) == GEOS(alg.params) + @test_throws GeometryOpsCore.WrongManifoldException rebuild(alg, Spherical()) + @test rebuild(alg, (; c=3, d=4)) == GEOS((; c=3, d=4)) + @test rebuild(alg; c=3, d=4) == GEOS((; c=3, d=4)) + + # Test get methods + @test Base.get(alg, :a, 0) == 1 + @test Base.get(alg, :c, 0) == 0 + + # Test enforce method + @test enforce(alg, :a, "test") == 1 + @test_throws ErrorException enforce(alg, :c, "test") +end + +@testset "TG" begin + # Test that it's a subtype of CLibraryPlanarAlgorithm + @test TG <: CLibraryPlanarAlgorithm + + # Test null constructor + alg = TG() + @test alg.params == NamedTuple() + @test manifold(alg) == Planar() + + # Test constructor + alg = TG(; a=1, b=2) + @test alg.params == (; a=1, b=2) + + # Test manifold methods + @test manifold(alg) == Planar() + @test best_manifold(alg, nothing) == Planar() + + # Test rebuild methods + @test rebuild(alg, Planar()) == TG(alg.params) + @test rebuild(alg, AutoManifold()) == TG(alg.params) + @test_throws GeometryOpsCore.WrongManifoldException rebuild(alg, Spherical()) + @test rebuild(alg, (; c=3, d=4)) == TG((; c=3, d=4)) + @test rebuild(alg; c=3, d=4) == TG((; c=3, d=4)) + + # Test get methods + @test Base.get(alg, :a, 0) == 1 + @test Base.get(alg, :c, 0) == 0 + + # Test enforce method + @test enforce(alg, :a, "test") == 1 + @test_throws ErrorException enforce(alg, :c, "test") +end + +@testset "PROJ" begin + # Test that it's a subtype of Algorithm + @test PROJ <: GeometryOpsCore.Algorithm + + # Test null constructor + alg = PROJ() + @test alg.manifold == Planar() + @test alg.params == NamedTuple() + + # Test constructors + alg1 = PROJ(; a=1, b=2) + @test alg1.manifold == Planar() + @test alg1.params == (; a=1, b=2) + + alg2 = PROJ(Spherical()) + @test alg2.manifold == Spherical() + @test alg2.params == NamedTuple() + + # Test manifold method + @test manifold(alg1) == Planar() + @test manifold(alg2) == Spherical() + + # Test rebuild methods + @test rebuild(alg1, Spherical()) == PROJ(Spherical(), alg1.params) + @test rebuild(alg1, (; c=3, d=4)) == PROJ(Planar(), (; c=3, d=4)) + + # Test get methods + @test Base.get(alg1, :a, 0) == 1 + @test Base.get(alg1, :c, 0) == 0 + + # Test enforce method + @test enforce(alg1, :a, "test") == 1 + @test_throws ErrorException enforce(alg1, :c, "test") +end \ No newline at end of file From 1f2502b6ed8e1fcb6fce908e224f9c645966ad94 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Wed, 16 Apr 2025 17:25:23 -0400 Subject: [PATCH 11/12] Add TG extension tests --- Project.toml | 3 +- test/extensions/tggeometry.jl | 60 +++++++++++++++++++++++++++++++++++ test/runtests.jl | 1 + 3 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 test/extensions/tggeometry.jl diff --git a/Project.toml b/Project.toml index f72c99996b..de398abd31 100644 --- a/Project.toml +++ b/Project.toml @@ -68,7 +68,8 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" Rasters = "a3a2b9e3-a471-40c9-b274-f788e487c689" SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f" Shapefile = "8e980c4a-a4fe-5da2-b3a7-4b4b0353a2f4" +TGGeometry = "d7e755d2-3c95-4bcf-9b3c-79ab1a78647b" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [targets] -test = ["ArchGDAL", "CoordinateTransformations", "DataFrames", "Distributions", "DimensionalData", "Downloads", "FlexiJoins", "GeoJSON", "Proj", "JLD2", "LibGEOS", "Random", "Rasters", "NaturalEarth", "OffsetArrays", "SafeTestsets", "Shapefile", "Test"] +test = ["ArchGDAL", "CoordinateTransformations", "DataFrames", "Distributions", "DimensionalData", "Downloads", "FlexiJoins", "GeoJSON", "Proj", "JLD2", "LibGEOS", "Random", "Rasters", "NaturalEarth", "OffsetArrays", "SafeTestsets", "Shapefile", "TGGeometry", "Test"] diff --git a/test/extensions/tggeometry.jl b/test/extensions/tggeometry.jl new file mode 100644 index 0000000000..2f5b703968 --- /dev/null +++ b/test/extensions/tggeometry.jl @@ -0,0 +1,60 @@ +using Test + +import GeometryOps as GO, GeoInterface as GI +import TGGeometry + +# This test file is only really certifying that the extension is working... +# we rely on TGGeometry.jl's tests to verify correctness, since it's not an exact +# library and a lot of our tests do check exactness. + +# That's why it isn't included in the main polygon test suite. + +point = (0.0, 0.0) +multipoint = GI.MultiPoint([(0.0, 0.0), (1.0, 1.0)]) +linestring = GI.LineString([(0.0, 0.0), (1.0, 1.0)]) +multilinestring = GI.MultiLineString([[(0.0, 0.0), (1.0, 1.0)], [(2.0, 2.0), (3.0, 3.0)]]) +polygon = GI.Polygon([[(0.0, 0.0), (1.0, 0.0), (1.0, 1.0), (0.0, 1.0), (0.0, 0.0)]]) +multipolygon = GI.MultiPolygon([polygon, GO.transform(p -> (GI.x(p), GI.y(p) + 1.0), polygon)]) + +_xplus5(g) = GO.transform(p -> (GI.x(p) + 5.0, GI.y(p)), g) + +disjoint_point = _xplus5(point) +disjoint_multipoint = _xplus5(multipoint) +disjoint_linestring = _xplus5(linestring) +disjoint_multilinestring = _xplus5(multilinestring) +disjoint_polygon = _xplus5(polygon) +disjoint_multipolygon = _xplus5(multipolygon) + +@testset "Internal consistency with TGGeometry.jl" begin + for funsym in TGGeometry.TG_PREDICATES + for geom1 in (point, multipoint, linestring, multilinestring, polygon, multipolygon) + for geom2 in (point, multipoint, linestring, multilinestring, polygon, multipolygon) + @testset let predicate = funsym, geom1 = geom1, geom2 = geom2 + @test Base.getproperty(TGGeometry, predicate)(geom1, geom2) == Base.getproperty(GO, predicate)(GO.TG(), geom1, geom2) + end + end + for geom2 in (point, multipoint, linestring, multilinestring, polygon, multipolygon) + @testset let predicate = funsym, geom1 = geom1, geom2 = geom2 + @test Base.getproperty(TGGeometry, predicate)(geom1, geom2) == Base.getproperty(GO, predicate)(GO.TG(), geom1, geom2) + end + end + end + end +end + +@testset "Consistency with GeometryOps algorithms for simple cases" begin + for funsym in TGGeometry.TG_PREDICATES + for geom1 in (point, multipoint, linestring, multilinestring, polygon, multipolygon) + for geom2 in (point, multipoint, linestring, multilinestring, polygon, multipolygon) + @testset let predicate = funsym, geom1 = geom1, geom2 = geom2 + @test Base.getproperty(TGGeometry, predicate)(geom1, geom2) == Base.getproperty(GO, predicate)(GO.TG(), geom1, geom2) + end + end + for geom2 in (point, multipoint, linestring, multilinestring, polygon, multipolygon) + @testset let predicate = funsym, geom1 = geom1, geom2 = geom2 + @test Base.getproperty(TGGeometry, predicate)(geom1, geom2) == Base.getproperty(GO, predicate)(GO.TG(), geom1, geom2) + end + end + end + end +end \ No newline at end of file diff --git a/test/runtests.jl b/test/runtests.jl index d1ff3b643a..3d5465c96f 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -40,3 +40,4 @@ end # Extensions @safetestset "FlexiJoins" begin include("extensions/flexijoins.jl") end @safetestset "LibGEOS" begin include("extensions/libgeos.jl") end +@safetestset "TGGeometry" begin include("extensions/tggeometry.jl") end \ No newline at end of file From 9ecce31b77cd44b87aebdbb5c4665988d8caafbb Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Wed, 16 Apr 2025 17:32:00 -0400 Subject: [PATCH 12/12] fix typo --- test/types.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/types.jl b/test/types.jl index 2b44b215a6..9e18e62591 100644 --- a/test/types.jl +++ b/test/types.jl @@ -23,7 +23,7 @@ using GeometryOps: CLibraryPlanarAlgorithm, GEOS, TG, PROJ @test alg.params == (; a=1, b=2) # Test null constructor - alg = TestAlg(()) + alg = TestAlg() @test alg.params == NamedTuple() # Test manifold methods